-- MySQL dump 10.13  Distrib 8.0.44, for macos15 (arm64)
--
-- Host: localhost    Database: mlcms_db
-- ------------------------------------------------------
-- Server version	8.0.44

/*!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 `add_goals`
--

DROP TABLE IF EXISTS `add_goals`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `add_goals` (
  `id` int NOT NULL AUTO_INCREMENT,
  `goals_id` int NOT NULL,
  `goals_values` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `add_goals`
--

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

--
-- Table structure for table `admin_alerts`
--

DROP TABLE IF EXISTS `admin_alerts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_alerts` (
  `id` int NOT NULL AUTO_INCREMENT,
  `keyy` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `check_dated` datetime DEFAULT NULL,
  `updated_dated` datetime DEFAULT NULL,
  `total` int DEFAULT NULL,
  `qr_table` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `qr_dated_f` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `qr_whr` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_alerts`
--

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

--
-- Table structure for table `admin_log_histories`
--

DROP TABLE IF EXISTS `admin_log_histories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_log_histories` (
  `id` int NOT NULL AUTO_INCREMENT,
  `ip_address` varchar(155) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `admin_id` int NOT NULL,
  `session_start` datetime NOT NULL,
  `session_end` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_log_histories`
--

LOCK TABLES `admin_log_histories` WRITE;
/*!40000 ALTER TABLE `admin_log_histories` DISABLE KEYS */;
INSERT INTO `admin_log_histories` VALUES (1,'::1',1,'2025-09-17 02:03:41',NULL),(2,'::1',1,'2025-10-22 03:53:38',NULL),(3,'::1',1,'2025-11-13 00:15:42',NULL),(4,'::1',1,'2026-01-20 04:34:18',NULL),(5,'127.0.0.1',1,'2026-05-07 01:19:44','2026-05-07 01:21:54'),(6,'127.0.0.1',1,'2026-05-07 01:21:58',NULL);
/*!40000 ALTER TABLE `admin_log_histories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `admin_modules`
--

DROP TABLE IF EXISTS `admin_modules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_modules` (
  `id` int NOT NULL AUTO_INCREMENT,
  `module_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `sts` tinyint(1) DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_modules`
--

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

--
-- Table structure for table `albums`
--

DROP TABLE IF EXISTS `albums`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `albums` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `cat_id` int DEFAULT NULL,
  `f_img` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `order_by` int DEFAULT '0',
  `isFeatured` tinyint DEFAULT '0',
  `status` tinyint(1) DEFAULT '1',
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `albums`
--

LOCK TABLES `albums` WRITE;
/*!40000 ALTER TABLE `albums` DISABLE KEYS */;
INSERT INTO `albums` VALUES (11,'Test Album 1',NULL,'test-album-1.webp',0,0,1,'2022-07-07 09:00:49','2024-11-04 09:41:24');
/*!40000 ALTER TABLE `albums` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `assesment_answers`
--

DROP TABLE IF EXISTS `assesment_answers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `assesment_answers` (
  `id` int NOT NULL AUTO_INCREMENT,
  `type` varchar(225) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `client_id` varchar(225) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `lead_id` varchar(225) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `question_id` varchar(225) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `answer` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=397 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `assesment_answers`
--

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

--
-- Table structure for table `assesment_questions`
--

DROP TABLE IF EXISTS `assesment_questions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `assesment_questions` (
  `id` int NOT NULL AUTO_INCREMENT,
  `question` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `pattern` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `value` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `item_order` varchar(225) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `sts` tinyint(1) DEFAULT '1',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `assesment_questions`
--

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

--
-- Table structure for table `blog_categories`
--

DROP TABLE IF EXISTS `blog_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `blog_categories` (
  `id` int NOT NULL AUTO_INCREMENT,
  `cate_title` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `cate_slug` varchar(240) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `cate_description` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `sts` tinyint(1) DEFAULT '1',
  `show_in_header` int DEFAULT '0',
  `is_featured` int DEFAULT '0',
  `featured_img` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `featured_img_title` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `featured_img_alt` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `blog_categories`
--

LOCK TABLES `blog_categories` WRITE;
/*!40000 ALTER TABLE `blog_categories` DISABLE KEYS */;
INSERT INTO `blog_categories` VALUES (8,'Tech','tech','<p>Tech</p>',1,1,0,'tech.webp','Tech','Tech','2025-01-03 07:51:39','2025-01-03 04:49:39',NULL),(9,'Food','food','<p>Food</p>',1,1,0,'food.webp','Food','Food','2025-01-03 04:26:47','2025-01-03 04:51:02',NULL),(10,'Travel','travel','<p>Travel</p>',1,1,0,'travel.webp','Travel','Travel','2025-01-03 04:28:18','2025-01-03 04:49:30',NULL),(11,'Life Style','life-style','<p>Life Style</p>',1,1,0,'life-style.webp','Life Style','Life Style','2025-01-03 04:29:00','2025-01-03 06:00:00',NULL),(12,'Beauty','beauty','<p>Beauty</p>',1,0,0,'beauty.webp','Beauty','Beauty','2025-01-03 04:34:12','2025-01-03 04:50:51',NULL),(13,'Gaming','gaming','<p>Gaming</p>',1,0,0,'gaming.webp','Gaming','Gaming','2025-01-03 04:43:32','2025-01-03 04:43:32',NULL),(14,'Fashion','fashion','<p>Fashion</p>',1,1,1,'fashion.webp','Fashion','Fashion','2025-01-03 05:37:56','2025-01-03 06:00:20',NULL);
/*!40000 ALTER TABLE `blog_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `blog_comments`
--

DROP TABLE IF EXISTS `blog_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `blog_comments` (
  `id` bigint NOT NULL AUTO_INCREMENT,
  `post_id` int NOT NULL,
  `user_name` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `user_emails` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `description` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `sts` tinyint(1) DEFAULT '1',
  `reviewed_status` enum('unreviewed','reviewed') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT 'unreviewed',
  `dated` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `blog_comments`
--

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

--
-- Table structure for table `blog_posts`
--

DROP TABLE IF EXISTS `blog_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `blog_posts` (
  `id` int NOT NULL AUTO_INCREMENT,
  `author_id` int DEFAULT NULL,
  `author_name` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `cate_ids` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `title` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `post_slug` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `description` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `featured_img` varchar(240) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `featured_img_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `featured_img_alt` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `meta_title` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `meta_keywords` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `meta_description` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `sts` tinyint(1) DEFAULT '1',
  `is_featured` tinyint(1) DEFAULT '0',
  `count_comments` int DEFAULT '0',
  `dated` date DEFAULT '2020-01-01',
  `canonical_url` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `show_follow` enum('0','1') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '1',
  `show_index` enum('0','1') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '1',
  `tags` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=57 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `blog_posts`
--

LOCK TABLES `blog_posts` WRITE;
/*!40000 ALTER TABLE `blog_posts` DISABLE KEYS */;
INSERT INTO `blog_posts` VALUES (32,1,'Robert Kcarery','14,11','Elevate Your Style Game with Confidence','elevate-your-style-game-with-confidence','<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>','elevate-your-style-game-with-confidence.webp','Elevate Your Style Game with Confidence','Elevate Your Style Game with Confidence','Elevate Your Style Game with Confidence','Elevate Your Style Game with Confidence','Elevate Your Style Game with Confidence',1,1,0,'2024-11-05',NULL,'1','1','Life Style,Fashion','2025-01-03 05:04:13','2025-01-03 07:22:06',NULL),(33,1,'Robert Kcarery','11,14','Pairing Wine with Gastronomic Delights.','pairing-wine-with-gastronomic-delights','<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>','pairing-wine-with-gastronomic-delights.webp','Pairing Wine with Gastronomic Delights.','Pairing Wine with Gastronomic Delights.','Pairing Wine with Gastronomic Delights.','Pairing Wine with Gastronomic Delights.','Pairing Wine with Gastronomic Delights.',1,1,0,'2024-11-03',NULL,'1','1','life style,fashion','2025-01-03 05:22:01','2025-01-03 07:14:28',NULL),(34,1,'Robert Kcarery','14','Books to Inspire Your Next Adventure.','books-to-inspire-your-next-adventure','<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>','books-to-inspire-your-next-adventure.webp','Books to Inspire Your Next Adventure.','Books to Inspire Your Next Adventure.','Books to Inspire Your Next Adventure.','Books to Inspire Your Next Adventure.','Books to Inspire Your Next Adventure.',1,1,0,'2024-11-02',NULL,'1','1','fashion','2025-01-03 05:48:38','2025-01-03 07:14:28',NULL),(35,1,'Dr. Michael Patrick','14','Digital Digest:Weekly Tech Updates You Can\'t Miss','digital-digest-weekly-tech-updates-you-cant-miss','<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>','digital-digestweekly-tech-updates-you-cant-miss.webp','Digital Digest:Weekly Tech Updates You Can\'t Miss','Digital Digest:Weekly Tech Updates You Can\'t Miss','Digital Digest:Weekly Tech Updates You Can\'t Miss','Digital Digest:Weekly Tech Updates You Can\'t Miss','Digital Digest:Weekly Tech Updates You Can\'t Miss',1,1,0,'2024-11-01',NULL,'1','1','fashion','2025-01-03 05:51:12','2025-01-03 07:14:28',NULL),(36,1,'Dr. Michael Patrick','14','Defining Your Unique Fashion Statement.','defining-your-unique-fashion-statement','<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>','defining-your-unique-fashion-statement.webp','Defining Your Unique Fashion Statement.','Defining Your Unique Fashion Statement.','Defining Your Unique Fashion Statement.','Defining Your Unique Fashion Statement.','Defining Your Unique Fashion Statement.',1,1,0,'2024-10-31',NULL,'1','1','fashion,life style','2025-01-03 05:52:59','2025-01-03 07:14:28',NULL),(37,1,'Jasmine Quinn','11,14','Gaming Gazette: Breaking News and Trending Topics.','gaming-gazette-breaking-news-and-trending-topics','<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>','gaming-gazette-breaking-news-and-trending-topics.webp','Gaming Gazette: Breaking News and Trending Topics.','Gaming Gazette: Breaking News and Trending Topics.','Gaming Gazette: Breaking News and Trending Topics.','Gaming Gazette: Breaking News and Trending Topics.','Gaming Gazette: Breaking News and Trending Topics.',1,1,0,'2024-10-30',NULL,'1','1','fashion,life style','2025-01-03 05:55:28','2025-01-03 07:14:28',NULL),(38,1,'Robert Kcarery','10','Pairing Wine with Gastronomic Delights-1.','pairing-wine-with-gastronomic-delights-1','<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>','pairing-wine-with-gastronomic-delights-1.webp','Pairing Wine with Gastronomic Delights-1.','Pairing Wine with Gastronomic Delights-1.','Pairing Wine with Gastronomic Delights-1.','Pairing Wine with Gastronomic Delights-1.','Pairing Wine with Gastronomic Delights-1.',1,1,0,'2024-10-29',NULL,'1','1','travel','2025-01-03 06:13:56','2025-01-03 07:14:28',NULL),(39,1,'Jasmine Quinn','10','Books to Inspire Your Next Adventure-1.','books-to-inspire-your-next-adventure-1','<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>','books-to-inspire-your-next-adventure-1.webp','Books to Inspire Your Next Adventure.','Books to Inspire Your Next Adventure.','Books to Inspire Your Next Adventure.','Books to Inspire Your Next Adventure.','Books to Inspire Your Next Adventure.',1,1,0,'2024-10-28',NULL,'1','1','travel','2025-01-03 06:16:18','2025-01-03 07:14:28',NULL),(40,1,'Dr. Michael Patrick','10','Digital Digest:Weekly Tech Updates You Can\'t Miss-1','digital-digest-weekly-tech-updates-you-cant-miss-1','<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>','digital-digestweekly-tech-updates-you-cant-miss-1.webp','Digital Digest:Weekly Tech Updates You Can\'t Miss','Digital Digest:Weekly Tech Updates You Can\'t Miss','Digital Digest:Weekly Tech Updates You Can\'t Miss','Digital Digest:Weekly Tech Updates You Can\'t Miss','Digital Digest:Weekly Tech Updates You Can\'t Miss',1,1,0,'2024-10-27',NULL,'1','1','travel','2025-01-03 06:17:47','2025-01-03 07:14:28',NULL),(41,1,'Dr. Michael Patrick','10','Defining Your Unique Fashion Statement-1.','defining-your-unique-fashion-statement-1','<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>','defining-your-unique-fashion-statement-1.webp','Defining Your Unique Fashion Statement.','Defining Your Unique Fashion Statement.','Defining Your Unique Fashion Statement.','Defining Your Unique Fashion Statement.','Defining Your Unique Fashion Statement.',1,1,0,'2024-10-26',NULL,'1','1','travel','2025-01-03 06:19:11','2025-01-03 07:14:28',NULL),(42,1,'Jasmine Quinn','10','Defining Your Unique Fashion Statement.-2','defining-your-unique-fashion-statement-2','<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>','defining-your-unique-fashion-statement-2.webp','Defining Your Unique Fashion Statement.','Defining Your Unique Fashion Statement.','Defining Your Unique Fashion Statement.','Defining Your Unique Fashion Statement.','Defining Your Unique Fashion Statement.',1,1,0,'2024-10-25',NULL,'1','1','Travel','2025-01-03 06:20:40','2025-01-03 07:14:28',NULL),(43,1,'Dr. Michael Patrick','10','Gaming Gazette: Breaking News and Trending Topics-1','gaming-gazette-breaking-news-and-trending-topics-1','<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>','gaming-gazette-breaking-news-and-trending-topics-1.webp','Gaming Gazette: Breaking News and Trending Topics.','Gaming Gazette: Breaking News and Trending Topics.','Gaming Gazette: Breaking News and Trending Topics.','Gaming Gazette: Breaking News and Trending Topics.','Gaming Gazette: Breaking News and Trending Topics.',1,1,0,'2024-10-24',NULL,'1','1','travel','2025-01-03 06:21:46','2025-01-03 07:14:28',NULL),(44,1,'Robert Kcarery','9','Pairing Wine with Gastronomic Delights-2.','pairing-wine-with-gastronomic-delights-2','<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>','pairing-wine-with-gastronomic-delights-2.webp','Pairing Wine with Gastronomic Delights-2.','Pairing Wine with Gastronomic Delights-2.','Pairing Wine with Gastronomic Delights-2.','Pairing Wine with Gastronomic Delights-2.','Pairing Wine with Gastronomic Delights-2.',1,1,0,'2024-10-23',NULL,'1','1','food','2025-01-03 06:23:56','2025-01-03 07:14:28',NULL),(45,1,'Jasmine Quinn','9','Books to Inspire Your Next Adventure-2','books-to-inspire-your-next-adventure-2','<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>','books-to-inspire-your-next-adventure-2.webp','Books to Inspire Your Next Adventure-2','Books to Inspire Your Next Adventure-2','Books to Inspire Your Next Adventure-2','Books to Inspire Your Next Adventure-2','Books to Inspire Your Next Adventure-2',1,1,0,'2024-10-22',NULL,'1','1','food','2025-01-03 06:25:24','2025-01-03 07:14:28',NULL),(46,1,'Jasmine Quinn','9','Digital Digest:Weekly Tech Updates You Can\'t Miss-2','digital-digest-weekly-tech-updates-you-cant-miss-2','<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>','digital-digestweekly-tech-updates-you-cant-miss-2.webp','Digital Digest:Weekly Tech Updates You Can\'t Miss-2','Digital Digest:Weekly Tech Updates You Can\'t Miss-2','Digital Digest:Weekly Tech Updates You Can\'t Miss-2','Digital Digest:Weekly Tech Updates You Can\'t Miss-2','Digital Digest:Weekly Tech Updates You Can\'t Miss-2',1,1,0,'2024-10-21',NULL,'1','1','food','2025-01-03 06:26:52','2025-01-03 07:14:28',NULL),(47,1,'Jasmine Quinn','8','Pairing Wine with Gastronomic Delights-3','pairing-wine-with-gastronomic-delights-3','<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>','pairing-wine-with-gastronomic-delights-3.webp','Pairing Wine with Gastronomic Delights-3','Pairing Wine with Gastronomic Delights-3','Pairing Wine with Gastronomic Delights-3','Pairing Wine with Gastronomic Delights-3','Pairing Wine with Gastronomic Delights-3',1,1,0,'2024-10-20',NULL,'1','1','tech','2025-01-03 06:38:00','2025-01-03 07:14:29',NULL),(48,1,'Robert Kcarery','8','Books to Inspire Your Next Adventure.','books-to-inspire-your-next-adventure-3','<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>','1735904342-books-to-inspire-your-next-adventure.webp','Books to Inspire Your Next Adventure.','Books to Inspire Your Next Adventure.','Books to Inspire Your Next Adventure.','Books to Inspire Your Next Adventure.','Books to Inspire Your Next Adventure.',1,1,0,'2024-10-19',NULL,'1','1','tech','2025-01-03 06:39:27','2025-01-03 07:14:29',NULL),(49,1,'Robert Kcarery','8','Digital Digest:Weekly Tech Updates You Can\'t Miss-3','digital-digest-weekly-tech-updates-you-cant-miss-3','<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>','digital-digestweekly-tech-updates-you-cant-miss-3.webp','Digital Digest:Weekly Tech Updates You Can\'t Miss-3','Digital Digest:Weekly Tech Updates You Can\'t Miss-3','Digital Digest:Weekly Tech Updates You Can\'t Miss-3','Digital Digest:Weekly Tech Updates You Can\'t Miss-3','Digital Digest:Weekly Tech Updates You Can\'t Miss-3',1,1,0,'2024-10-18',NULL,'1','1','tech','2025-01-03 06:40:59','2025-01-03 07:14:29',NULL),(50,1,'Robert Kcarery','8','Defining Your Unique Fashion Statement-3','defining-your-unique-fashion-statement-3','<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>','defining-your-unique-fashion-statement-3.webp','Defining Your Unique Fashion Statement-3','Defining Your Unique Fashion Statement-3','Defining Your Unique Fashion Statement-3','Defining Your Unique Fashion Statement-3','Defining Your Unique Fashion Statement-3',1,1,0,'2024-10-17',NULL,'1','1','tech','2025-01-03 06:42:29','2025-01-03 07:14:29',NULL),(51,1,'Robert Kcarery','12','Pairing Wine with Gastronomic Delights-4','pairing-wine-with-gastronomic-delights-4','<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>','pairing-wine-with-gastronomic-delights-4.webp','Pairing Wine with Gastronomic Delights-4','Pairing Wine with Gastronomic Delights-4','Pairing Wine with Gastronomic Delights-4','Pairing Wine with Gastronomic Delights-4','Pairing Wine with Gastronomic Delights-4',1,1,0,'2024-10-16',NULL,'1','1','beauty','2025-01-03 06:44:07','2025-01-03 07:14:29',NULL),(52,1,'Robert Kcarery','12','Books to Inspire Your Next Adventure-4','books-to-inspire-your-next-adventure-4','<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>','books-to-inspire-your-next-adventure-4.webp','Books to Inspire Your Next Adventure-4','Books to Inspire Your Next Adventure-4','Books to Inspire Your Next Adventure-4','Books to Inspire Your Next Adventure-4','Books to Inspire Your Next Adventure-4',1,1,0,'2024-10-15',NULL,'1','1','beauty','2025-01-03 06:47:11','2025-01-03 07:14:29',NULL),(53,1,'Robert Kcarery','12','Digital Digest:Weekly Tech Updates You Can\'t Miss-4','digital-digest-weekly-tech-updates-you-cant-miss-4','<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>','digital-digestweekly-tech-updates-you-cant-miss-4.webp','Digital Digest:Weekly Tech Updates You Can\'t Miss-4','Digital Digest:Weekly Tech Updates You Can\'t Miss-4','Digital Digest:Weekly Tech Updates You Can\'t Miss-4','Digital Digest:Weekly Tech Updates You Can\'t Miss-4','Digital Digest:Weekly Tech Updates You Can\'t Miss-4',1,1,0,'2024-10-14',NULL,'1','1','beauty','2025-01-03 06:48:59','2025-01-03 07:14:29',NULL),(54,1,'Robert Kcarery','13','Pairing Wine with Gastronomic Delights.-5','pairing-wine-with-gastronomic-delights-5','<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>','pairing-wine-with-gastronomic-delights-5.webp','Pairing Wine with Gastronomic Delights.-5','Pairing Wine with Gastronomic Delights.-5','Pairing Wine with Gastronomic Delights.-5','Pairing Wine with Gastronomic Delights.-5','Pairing Wine with Gastronomic Delights.-5',1,1,0,'2024-10-13',NULL,'1','1','gaming','2025-01-03 06:50:45','2025-01-03 07:14:29',NULL),(55,1,'Jasmine Quinn','13','Pairing Wine with Gastronomic Delights.-6','pairing-wine-with-gastronomic-delights-6','<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>','pairing-wine-with-gastronomic-delights-6.webp','Pairing Wine with Gastronomic Delights.-6','Pairing Wine with Gastronomic Delights.-6','Pairing Wine with Gastronomic Delights.-6','Pairing Wine with Gastronomic Delights.-6','Pairing Wine with Gastronomic Delights.-6',1,1,0,'2024-10-12',NULL,'1','1','gaming','2025-01-03 06:51:44','2025-01-03 07:14:29',NULL),(56,1,'Robert Kcarery','13','Pairing Wine with Gastronomic Delights.-7','pairing-wine-with-gastronomic-delights-7','<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\r\n<p><strong>What is Lorem Ipsum?</strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>','pairing-wine-with-gastronomic-delights-7.webp','Pairing Wine with Gastronomic Delights.-7','Pairing Wine with Gastronomic Delights.-7','Pairing Wine with Gastronomic Delights.-7','Pairing Wine with Gastronomic Delights.-7','Pairing Wine with Gastronomic Delights.-7',1,1,0,'2024-10-13',NULL,'1','1','gaming','2025-01-03 06:52:50','2025-01-03 07:20:06',NULL);
/*!40000 ALTER TABLE `blog_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cache`
--

DROP TABLE IF EXISTS `cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cache` (
  `key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `value` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `expiration` int NOT NULL,
  PRIMARY KEY (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache`
--

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

--
-- Table structure for table `cache_locks`
--

DROP TABLE IF EXISTS `cache_locks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cache_locks` (
  `key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `owner` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `expiration` int NOT NULL,
  PRIMARY KEY (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache_locks`
--

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

--
-- Table structure for table `career_benefits`
--

DROP TABLE IF EXISTS `career_benefits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `career_benefits` (
  `id` int NOT NULL AUTO_INCREMENT,
  `career_id` int DEFAULT '0',
  `title` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=83 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `career_benefits`
--

LOCK TABLES `career_benefits` WRITE;
/*!40000 ALTER TABLE `career_benefits` DISABLE KEYS */;
INSERT INTO `career_benefits` VALUES (75,1,'Advancement opportunities'),(76,1,'Competitive wages'),(77,1,'Health care coverage'),(78,1,'Team-oriented work environment'),(79,1,'Opportunity to travel'),(80,1,'Paid vacation'),(81,1,'Paid holidays and personal time'),(82,1,'Retirement savings plan');
/*!40000 ALTER TABLE `career_benefits` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `careers`
--

DROP TABLE IF EXISTS `careers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `careers` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `apply_by_date_time` timestamp NULL DEFAULT NULL,
  `location` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `type` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `image` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `image_title` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `image_alt` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `status` tinyint(1) DEFAULT '1',
  `sort_order` int DEFAULT '999',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `careers`
--

LOCK TABLES `careers` WRITE;
/*!40000 ALTER TABLE `careers` DISABLE KEYS */;
INSERT INTO `careers` VALUES (1,'Southern area assistant manager','<h1>Williams Forestry &amp; Associates have opportunities for exceptional Team Members looking to work with a leader in the Environmental Reforestation field.</h1>\r\n<p>At WFA we are a company dedicated to our employees. Our success depends on the best efforts by our teams of talented and engaged employees who take pride in what they do, know and exhibit the value of teamwork, collaboration, and help support each other while working safely every day. WFA is looking to bring on highly driven and talented professionals who share our integrity and are committed to providing an exceptional service to our clients.</p>','2023-12-16 08:33:55','Calhoun, GA','Full Time','test-career.jpg','test','test',1,1,'2023-12-16 03:35:05','2024-11-04 04:13:06',NULL);
/*!40000 ALTER TABLE `careers` 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` int NOT NULL AUTO_INCREMENT,
  `title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `orderr` int NOT NULL DEFAULT '0',
  `cat` int NOT NULL,
  `descp` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `img` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `slug` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_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,'Category A',1,0,NULL,NULL,NULL),(2,'Category B',2,0,NULL,NULL,NULL),(5,'A-1',0,1,NULL,NULL,NULL),(6,'A-2',0,1,NULL,NULL,NULL),(7,'Category C',3,0,NULL,NULL,NULL);
/*!40000 ALTER TABLE `categories` 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` int NOT NULL AUTO_INCREMENT,
  `state_id` int DEFAULT NULL,
  `county_id` int DEFAULT NULL,
  `city_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `status` tinyint(1) DEFAULT '1',
  `sort_order` int DEFAULT '9999999',
  `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `ID_STATE` (`state_id`),
  CONSTRAINT `cities_ibfk_1` FOREIGN KEY (`state_id`) REFERENCES `states` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=29881 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_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,2,1,'Adak',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2,2,2,'Akiachak',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(3,2,2,'Akiak',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(4,2,3,'Akutan',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(5,2,4,'Alakanuk',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(6,2,5,'Aleknagik',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(7,2,6,'Allakaket',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(8,2,7,'Ambler',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(9,2,8,'Anaktuvuk Pass',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(10,2,9,'Anchor Point',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(11,2,10,'Anchorage',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(12,2,11,'Anderson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(13,2,12,'Angoon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(14,2,2,'Aniak',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(15,2,6,'Anvik',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(16,2,6,'Arctic Village',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(17,2,1,'Atka',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(18,2,8,'Atqasuk',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(19,2,13,'Auke Bay',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(20,2,8,'Barrow',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(21,2,6,'Beaver',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(22,2,2,'Bethel',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(23,2,6,'Bettles Field',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(24,2,14,'Big Lake',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(25,2,15,'Brevig Mission',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(26,2,7,'Buckland',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(27,2,11,'Cantwell',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(28,2,6,'Central',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(29,2,6,'Chalkyitsik',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(30,2,2,'Chefornak',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(31,2,4,'Chevak',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(32,2,16,'Chicken',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(33,2,17,'Chignik',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(34,2,17,'Chignik Lagoon',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(35,2,17,'Chignik Lake',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(36,2,18,'Chitina',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(37,2,10,'Chugiak',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(38,2,6,'Circle',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(39,2,9,'Clam Gulch',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(40,2,5,'Clarks Point',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(41,2,11,'Clear',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(42,2,19,'Coffman Cove',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(43,2,3,'Cold Bay',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(44,2,9,'Cooper Landing',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(45,2,18,'Copper Center',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(46,2,18,'Cordova',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(47,2,19,'Craig',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(48,2,2,'Crooked Creek',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(49,2,7,'Deering',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(50,2,16,'Delta Junction',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(51,2,11,'Denali National Park',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(52,2,5,'Dillingham',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(53,2,13,'Douglas',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(54,2,1,'Dutch Harbor',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(55,2,16,'Eagle',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(56,2,10,'Eagle River',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(57,2,2,'Eek',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(58,2,17,'Egegik',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(59,2,20,'Eielson Afb',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(60,2,5,'Ekwok',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(61,2,12,'Elfin Cove',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(62,2,15,'Elim',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(63,2,10,'Elmendorf Afb',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(64,2,4,'Emmonak',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(65,2,20,'Ester',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(66,2,20,'Fairbanks',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(67,2,3,'False Pass',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(68,2,16,'Fort Greely',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(69,2,10,'Fort Richardson',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(70,2,20,'Fort Wainwright',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(71,2,6,'Fort Yukon',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(72,2,18,'Gakona',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(73,2,6,'Galena',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(74,2,15,'Gambell',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(75,2,10,'Girdwood',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(76,2,18,'Glennallen',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(77,2,2,'Goodnews Bay',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(78,2,6,'Grayling',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(79,2,12,'Gustavus',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(80,2,21,'Haines',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(81,2,11,'Healy',1,11810,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(82,2,6,'Holy Cross',1,12376,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(83,2,9,'Homer',1,12391,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(84,2,12,'Hoonah',1,12444,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(85,2,4,'Hooper Bay',1,12450,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(86,2,9,'Hope',1,12466,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(87,2,14,'Houston',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(88,2,6,'Hughes',1,12652,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(89,2,6,'Huslia',1,12780,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(90,2,19,'Hydaburg',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(91,2,19,'Hyder',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(92,2,17,'Iliamna',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(93,2,10,'Indian',1,12903,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(94,2,13,'Juneau',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(95,2,22,'Kake',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(96,2,8,'Kaktovik',1,13513,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(97,2,2,'Kalskag',1,13523,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(98,2,6,'Kaltag',1,13524,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(99,2,23,'Karluk',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(100,2,2,'Kasigluk',1,13574,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(101,2,9,'Kasilof',1,13575,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(102,2,9,'Kenai',1,13678,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(103,2,24,'Ketchikan',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(104,2,7,'Kiana',1,13828,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(105,2,3,'King Cove',1,13891,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(106,2,25,'King Salmon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(107,2,2,'Kipnuk',1,13973,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(108,2,7,'Kivalina',1,14019,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(109,2,19,'Klawock',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(110,2,7,'Kobuk',1,14064,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(111,2,23,'Kodiak',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(112,2,2,'Kongiganak',1,14074,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(113,2,4,'Kotlik',1,14086,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(114,2,7,'Kotzebue',1,14087,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(115,2,15,'Koyuk',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(116,2,6,'Koyukuk',1,14091,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(117,2,2,'Kwethluk',1,14122,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(118,2,2,'Kwigillingok',1,14123,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(119,2,6,'Lake Minchumina',1,14381,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(120,2,23,'Larsen Bay',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(121,2,17,'Levelock',1,14988,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(122,2,2,'Lower Kalskag',1,15666,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(123,2,6,'Manley Hot Springs',1,16148,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(124,2,5,'Manokotak',1,16165,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(125,2,4,'Marshall',1,16415,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(126,2,6,'Mc Grath',1,16769,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(127,2,2,'Mekoryuk',1,16956,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(128,2,19,'Metlakatla',1,17147,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(129,2,19,'Meyers Chuck',1,17163,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(130,2,6,'Minto',1,17584,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(131,2,9,'Moose Pass',1,17917,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(132,2,4,'Mountain Village',1,18282,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(133,2,25,'Naknek',1,18436,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(134,2,2,'Napakiak',1,18451,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(135,2,6,'Nenana',1,18616,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(136,2,5,'New Stuyahok',1,18908,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(137,2,2,'Nightmute',1,19121,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(138,2,9,'Nikiski',1,19122,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(139,2,6,'Nikolai',1,19123,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(140,2,1,'Nikolski',1,19124,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(141,2,9,'Ninilchik',1,19138,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(142,2,7,'Noatak',1,19157,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(143,2,15,'Nome',1,19178,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(144,2,17,'Nondalton',1,19182,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(145,2,7,'Noorvik',1,19185,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(146,2,20,'North Pole',1,19367,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(147,2,16,'Northway',1,19457,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(148,2,8,'Nuiqsut',1,19527,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(149,2,6,'Nulato',1,19528,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(150,2,4,'Nunam Iqua',1,19530,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(151,2,2,'Nunapitchuk',1,19531,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(152,2,23,'Old Harbor',1,19830,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(153,2,23,'Ouzinkie',1,20203,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(154,2,14,'Palmer',1,20370,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(155,2,17,'Pedro Bay',1,20708,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(156,2,12,'Pelican',1,20728,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(157,2,17,'Perryville',1,20877,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(158,2,22,'Petersburg',1,20902,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(159,2,17,'Pilot Point',1,10,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(160,2,4,'Pilot Station',1,9,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(161,2,2,'Platinum',1,20,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(162,2,19,'Point Baker',1,8,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(163,2,8,'Point Hope',1,6,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(164,2,8,'Point Lay',1,7,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(165,2,22,'Port Alexander',1,3,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(166,2,17,'Port Alsworth',1,11,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(167,2,17,'Port Heiden',1,12,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(168,2,23,'Port Lions',1,6,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(169,2,8,'Prudhoe Bay',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(170,2,2,'Quinhagak',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(171,2,6,'Rampart',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(172,2,2,'Red Devil',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(173,2,6,'Ruby',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(174,2,4,'Russian Mission',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(175,2,1,'Saint George Island',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(176,2,4,'Saint Marys',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(177,2,15,'Saint Michael',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(178,2,1,'Saint Paul Island',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(179,2,20,'Salcha',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(180,2,3,'Sand Point',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(181,2,15,'Savoonga',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(182,2,4,'Scammon Bay',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(183,2,7,'Selawik',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(184,2,9,'Seldovia',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(185,2,9,'Seward',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(186,2,6,'Shageluk',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(187,2,15,'Shaktoolik',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(188,2,15,'Shishmaref',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(189,2,7,'Shungnak',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(190,2,26,'Sitka',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(191,2,12,'Skagway',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(192,2,14,'Skwentna',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(193,2,2,'Sleetmute',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(194,2,9,'Soldotna',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(195,2,25,'South Naknek',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(196,2,15,'Stebbins',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(197,2,9,'Sterling',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(198,2,6,'Stevens Village',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(199,2,14,'Sutton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(200,2,6,'Takotna',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(201,2,14,'Talkeetna',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(202,2,16,'Tanacross',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(203,2,6,'Tanana',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(204,2,18,'Tatitlek',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(205,2,15,'Teller',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(206,2,12,'Tenakee Springs',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(207,2,19,'Thorne Bay',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(208,2,5,'Togiak',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(209,2,16,'Tok',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(210,2,2,'Toksook Bay',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(211,2,14,'Trapper Creek',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(212,2,2,'Tuluksak',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(213,2,2,'Tuntutuliak',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(214,2,2,'Tununak',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(215,2,20,'Two Rivers',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(216,2,9,'Tyonek',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(217,2,15,'Unalakleet',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(218,2,1,'Unalaska',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(219,2,18,'Valdez',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(220,2,6,'Venetie',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(221,2,8,'Wainwright',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(222,2,15,'Wales',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(223,2,24,'Ward Cove',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(224,2,14,'Wasilla',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(225,2,15,'White Mountain',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(226,2,18,'Whittier',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(227,2,14,'Willow',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(228,2,22,'Wrangell',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(229,2,27,'Yakutat',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(230,1,28,'Abbeville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(231,1,29,'Abernant',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(232,1,30,'Adamsville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(233,1,31,'Addison',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(234,1,30,'Adger',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(235,1,32,'Akron',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(236,1,33,'Alabaster',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(237,1,34,'Alberta',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(238,1,35,'Albertville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(239,1,36,'Alexander City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(240,1,37,'Alexandria',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(241,1,38,'Aliceville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(242,1,39,'Allgood',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(243,1,40,'Alma',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(244,1,41,'Alpine',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(245,1,30,'Alton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(246,1,42,'Altoona',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(247,1,43,'Andalusia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(248,1,44,'Anderson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(249,1,34,'Annemanie',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(250,1,37,'Anniston',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(251,1,35,'Arab',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(252,1,45,'Ardmore',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(253,1,46,'Ariton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(254,1,31,'Arley',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(255,1,34,'Arlington',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(256,1,47,'Ashford',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(257,1,48,'Ashland',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(258,1,49,'Ashville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(259,1,45,'Athens',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(260,1,50,'Atmore',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(261,1,42,'Attalla',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(262,1,51,'Auburn',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(263,1,51,'Auburn University',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(264,1,52,'Autaugaville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(265,1,53,'Axis',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(266,1,54,'Baileyton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(267,1,55,'Banks',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(268,1,56,'Bankston',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(269,1,57,'Bay Minette',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(270,1,53,'Bayou La Batre',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(271,1,58,'Bear Creek',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(272,1,59,'Beatrice',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(273,1,60,'Beaverton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(274,1,56,'Belk',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(275,1,61,'Bellamy',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(276,1,45,'Belle Mina',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(277,1,62,'Bellwood',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(278,1,56,'Berry',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(279,1,30,'Bessemer',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(280,1,52,'Billingsley',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(281,1,30,'Birmingham',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(282,1,33,'Birmingham',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(283,1,62,'Black',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(284,1,39,'Blountsville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(285,1,42,'Boaz',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(286,1,35,'Boaz',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(287,1,63,'Boligee',1,2655,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(288,1,41,'Bon Air',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(289,1,57,'Bon Secour',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(290,1,52,'Booth',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(291,1,34,'Boykin',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(292,1,64,'Brantley',1,2969,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(293,1,54,'Bremen',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(294,1,65,'Brent',1,3014,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(295,1,50,'Brewton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(296,1,66,'Bridgeport',1,3056,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(297,1,65,'Brierfield',1,3087,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(298,1,58,'Brilliant',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(299,1,67,'Brooklyn',1,3240,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(300,1,30,'Brookside',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(301,1,29,'Brookwood',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(302,1,68,'Brownsboro',1,3295,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(303,1,55,'Brundidge',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(304,1,66,'Bryant',1,3374,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(305,1,53,'Bucks',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(306,1,29,'Buhl',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(307,1,67,'Burnt Corn',1,3603,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(308,1,69,'Burnwell',1,3607,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(309,1,70,'Butler',1,3647,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(310,1,37,'Bynum',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(311,1,33,'Calera',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(312,1,71,'Calvert',1,3818,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(313,1,34,'Camden',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(314,1,36,'Camp Hill',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(315,1,40,'Campbell',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(316,1,45,'Capshaw',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(317,1,69,'Carbon Hill',1,4081,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(318,1,30,'Cardiff',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(319,1,40,'Carlton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(320,1,38,'Carrollton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(321,1,67,'Castleberry',1,4316,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(322,1,34,'Catherine',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(323,1,72,'Cecil',1,4391,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(324,1,73,'Cedar Bluff',1,4401,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(325,1,73,'Centre',1,4543,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(326,1,65,'Centreville',1,4547,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(327,1,62,'Chancellor',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(328,1,74,'Chapman',1,4632,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(329,1,71,'Chatom',1,4715,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(330,1,33,'Chelsea',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(331,1,75,'Cherokee',1,4771,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(332,1,41,'Childersburg',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(333,1,37,'Choccolocco',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(334,1,53,'Chunchula',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(335,1,53,'Citronelle',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(336,1,76,'Clanton',1,5027,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(337,1,30,'Clay',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(338,1,77,'Clayton',1,5155,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(339,1,39,'Cleveland',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(340,1,63,'Clinton',1,5296,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(341,1,77,'Clio',1,5313,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(342,1,28,'Clopton',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(343,1,44,'Cloverdale',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(344,1,29,'Coaling',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(345,1,53,'Coden',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(346,1,62,'Coffee Springs',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(347,1,40,'Coffeeville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(348,1,29,'Coker',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(349,1,78,'Collinsville',1,5535,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(350,1,47,'Columbia',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(351,1,33,'Columbiana',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(352,1,49,'Cook Springs',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(353,1,79,'Coosada',1,5807,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(354,1,69,'Cordova',1,5861,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(355,1,29,'Cottondale',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(356,1,80,'Cottonton',1,5972,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(357,1,47,'Cottonwood',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(358,1,81,'Courtland',1,6009,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(359,1,47,'Cowarts',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(360,1,34,'Coy',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(361,1,48,'Cragford',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(362,1,54,'Crane Hill',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(363,1,53,'Creola',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(364,1,49,'Cropwell',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(365,1,78,'Crossville',1,6239,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(366,1,61,'Cuba',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(367,1,54,'Cullman',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(368,1,51,'Cusseta',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(369,1,36,'Dadeville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(370,1,46,'Daleville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(371,1,82,'Danville',1,6549,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(372,1,57,'Daphne',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(373,1,53,'Dauphin Island',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(374,1,36,'Daviston',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(375,1,78,'Dawson',1,6634,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(376,1,37,'De Armanville',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(377,1,79,'Deatsville',1,6718,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(378,1,82,'Decatur',1,6722,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(379,1,71,'Deer Park',1,6766,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(380,1,31,'Delmar',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(381,1,48,'Delta',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(382,1,83,'Demopolis',1,6878,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(383,1,60,'Detroit',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(384,1,40,'Dickinson',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(385,1,83,'Dixons Mills',1,7118,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(386,1,30,'Docena',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(387,1,30,'Dolomite',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(388,1,30,'Dora',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(389,1,47,'Dothan',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(390,1,31,'Double Springs',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(391,1,35,'Douglas',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(392,1,64,'Dozier',1,7284,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(393,1,29,'Duncanville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(394,1,66,'Dutton',1,7525,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(395,1,36,'East Tallassee',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(396,1,37,'Eastaboga',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(397,1,29,'Echola',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(398,1,79,'Eclectic',1,7860,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(399,1,84,'Edwardsville',1,7963,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(400,1,53,'Eight Mile',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(401,1,85,'Elba',1,6,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(402,1,57,'Elberta',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(403,1,69,'Eldridge',1,8061,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(404,1,45,'Elkmont',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(405,1,79,'Elmore',1,8268,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(406,1,29,'Elrod',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(407,1,61,'Emelle',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(408,1,69,'Empire',1,8364,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(409,1,85,'Enterprise',1,7,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(410,1,61,'Epes',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(411,1,86,'Equality',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(412,1,66,'Estillfork',1,8527,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(413,1,38,'Ethelsville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(414,1,77,'Eufaula',1,8563,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(415,1,63,'Eutaw',1,8588,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(416,1,82,'Eva',1,8591,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(417,1,59,'Excel',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(418,1,66,'Fackler',1,8670,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(419,1,30,'Fairfield',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(420,1,57,'Fairhope',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(421,1,82,'Falkville',1,8794,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(422,1,83,'Faunsdale',1,8907,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(423,1,56,'Fayette',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(424,1,87,'Fitzpatrick',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(425,1,88,'Five Points',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(426,1,66,'Flat Rock',1,9094,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(427,1,50,'Flomaton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(428,1,43,'Florala',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(429,1,44,'Florence',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(430,1,57,'Foley',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(431,1,74,'Forest Home',1,9260,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(432,1,63,'Forkland',1,9287,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(433,1,89,'Fort Davis',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(434,1,90,'Fort Deposit',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(435,1,80,'Fort Mitchell',1,9382,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(436,1,78,'Fort Payne',1,9393,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(437,1,46,'Fort Rucker',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(438,1,29,'Fosters',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(439,1,59,'Franklin',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(440,1,71,'Frankville',1,9579,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(441,1,59,'Frisco City',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(442,1,71,'Fruitdale',1,9736,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(443,1,84,'Fruithurst',1,9737,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(444,1,40,'Fulton',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(445,1,30,'Fultondale',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(446,1,34,'Furman',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(447,1,78,'Fyffe',1,9787,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(448,1,42,'Gadsden',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(449,1,40,'Gainestown',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(450,1,61,'Gainesville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(451,1,42,'Gallant',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(452,1,83,'Gallion',1,9846,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(453,1,43,'Gantt',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(454,1,54,'Garden City',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(455,1,30,'Gardendale',1,102,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(456,1,73,'Gaylesville',1,10017,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(457,1,62,'Geneva',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(458,1,74,'Georgiana',1,10092,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(459,1,78,'Geraldine',1,10095,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(460,1,70,'Gilbertown',1,10170,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(461,1,56,'Glen Allen',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(462,1,64,'Glenwood',1,10397,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(463,1,69,'Goodsprings',1,10514,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(464,1,86,'Goodwater',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(465,1,59,'Goodway',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(466,1,38,'Gordo',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(467,1,47,'Gordon',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(468,1,55,'Goshen',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(469,1,72,'Grady',1,10600,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(470,1,91,'Graham',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(471,1,53,'Grand Bay',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(472,1,35,'Grant',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(473,1,30,'Graysville',1,107,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(474,1,65,'Green Pond',1,10858,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(475,1,32,'Greensboro',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(476,1,74,'Greenville',1,10949,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(477,1,40,'Grove Hill',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(478,1,78,'Groveoak',1,11071,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(479,1,58,'Guin',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(480,1,57,'Gulf Shores',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(481,1,35,'Guntersville',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(482,1,68,'Gurley',1,11144,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(483,1,58,'Hackleburg',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(484,1,31,'Haleyville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(485,1,58,'Hamilton',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(486,1,54,'Hanceville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(487,1,89,'Hardaway',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(488,1,33,'Harpersville',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(489,1,62,'Hartford',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(490,1,82,'Hartselle',1,11613,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(491,1,68,'Harvest',1,11633,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(492,1,80,'Hatchechubbee',1,11676,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(493,1,39,'Hayden',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(494,1,90,'Hayneville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(495,1,68,'Hazel Green',1,11786,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(496,1,28,'Headland',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(497,1,84,'Heflin',1,11845,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(498,1,33,'Helena',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(499,1,78,'Henagar',1,11893,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(500,1,66,'Higdon',1,12062,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(501,1,64,'Highland Home',1,12096,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(502,1,81,'Hillsboro',1,12149,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(503,1,92,'Hodges',1,117,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(504,1,48,'Hollins',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(505,1,54,'Holly Pond',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(506,1,66,'Hollytree',1,12345,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(507,1,66,'Hollywood',1,12346,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(508,1,80,'Holy Trinity',1,12377,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(509,1,64,'Honoraville',1,12433,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(510,1,72,'Hope Hull',1,12473,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(511,1,35,'Horton',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(512,1,31,'Houston',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(513,1,68,'Huntsville',1,12752,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(514,1,80,'Hurtsboro',1,12779,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(515,1,50,'Huxford',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(516,1,78,'Ider',1,12849,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(517,1,53,'Irvington',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(518,1,70,'Jachin',1,13122,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(519,1,85,'Jack',1,9,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(520,1,40,'Jackson',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(521,1,36,'Jacksons Gap',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(522,1,37,'Jacksonville',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(523,1,69,'Jasper',1,13237,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(524,1,83,'Jefferson',1,13269,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(525,1,76,'Jemison',1,13299,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(526,1,52,'Jones',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(527,1,54,'Joppa',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(528,1,69,'Kansas',1,13550,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(529,1,29,'Kellerman',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(530,1,86,'Kellyton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(531,1,60,'Kennedy',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(532,1,79,'Kent',1,13741,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(533,1,44,'Killen',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(534,1,30,'Kimberly',1,145,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(535,1,85,'Kinston',1,10,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(536,1,63,'Knoxville',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(537,1,82,'Laceys Spring',1,14234,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(538,1,88,'Lafayette',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(539,1,88,'Lanett',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(540,1,66,'Langston',1,14570,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(541,1,72,'Lapine',1,14600,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(542,1,65,'Lawley',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(543,1,30,'Leeds',1,153,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(544,1,73,'Leesburg',1,14833,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(545,1,75,'Leighton',1,14865,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(546,1,67,'Lenox',1,14915,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(547,1,71,'Leroy',1,14961,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(548,1,45,'Lester',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(549,1,90,'Letohatchee',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(550,1,44,'Lexington',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(551,1,57,'Lillian',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(552,1,41,'Lincoln',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(553,1,83,'Linden',1,15169,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(554,1,48,'Lineville',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(555,1,70,'Lisman',1,15241,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(556,1,57,'Little River',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(557,1,61,'Livingston',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(558,1,51,'Loachapoka',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(559,1,43,'Lockhart',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(560,1,39,'Locust Fork',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(561,1,54,'Logan',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(562,1,77,'Louisville',1,15621,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(563,1,34,'Lower Peach Tree',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(564,1,90,'Lowndesboro',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(565,1,57,'Loxley',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(566,1,64,'Luverne',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(567,1,31,'Lynn',1,15837,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(568,1,45,'Madison',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(569,1,68,'Madison',1,15963,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(570,1,83,'Magnolia',1,15993,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(571,1,57,'Magnolia Springs',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(572,1,71,'Malcolm',1,16035,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(573,1,62,'Malvern',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(574,1,76,'Maplesville',1,16236,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(575,1,52,'Marbury',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(576,1,49,'Margaret',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(577,1,93,'Marion',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(578,1,94,'Marion Junction',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(579,1,72,'Mathews',1,16564,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(580,1,33,'Maylene',1,16651,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(581,1,30,'Mc Calla',1,16704,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(582,1,71,'Mc Intosh',1,16782,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(583,1,74,'Mc Kenzie',1,16792,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(584,1,38,'Mc Shan',1,16821,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(585,1,34,'Mc Williams',1,16824,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(586,1,59,'Megargel',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(587,1,70,'Melvin',1,16995,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(588,1,78,'Mentone',1,17046,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(589,1,68,'Meridianville',1,17083,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(590,1,59,'Mexia',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(591,1,46,'Midland City',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(592,1,87,'Midway',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(593,1,79,'Millbrook',1,17375,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(594,1,48,'Millerville',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(595,1,60,'Millport',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(596,1,71,'Millry',1,17433,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(597,1,94,'Minter',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(598,1,53,'Mobile',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(599,1,59,'Monroeville',1,105,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(600,1,33,'Montevallo',1,17787,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(601,1,72,'Montgomery',1,17810,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(602,1,57,'Montrose',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(603,1,49,'Moody',1,17879,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(604,1,45,'Mooresville',1,17906,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(605,1,30,'Morris',1,17990,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(606,1,40,'Morvin',1,18046,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(607,1,81,'Moulton',1,18083,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(608,1,32,'Moundville',1,18099,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(609,1,81,'Mount Hope',1,18157,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(610,1,72,'Mount Meigs',1,18173,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(611,1,30,'Mount Olive',1,18184,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(612,1,53,'Mount Vernon',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(613,1,30,'Mulga',1,18324,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(614,1,41,'Munford',1,18349,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(615,1,84,'Muscadine',1,18386,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(616,1,75,'Muscle Shoals',1,18388,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(617,1,83,'Myrtlewood',1,18415,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(618,1,83,'Nanafalia',1,18440,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(619,1,31,'Natural Bridge',1,18524,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(620,1,69,'Nauvoo',1,18532,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(621,1,70,'Needham',1,18568,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(622,1,85,'New Brockton',1,12,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(623,1,30,'New Castle',1,18724,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(624,1,68,'New Hope',1,18793,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(625,1,68,'New Market',1,18837,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(626,1,32,'Newbern',1,18957,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(627,1,46,'Newton',1,19064,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(628,1,28,'Newville',1,19089,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(629,1,68,'Normal',1,19209,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(630,1,29,'Northport',1,19448,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(631,1,89,'Notasulga',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(632,1,34,'Oak Hill',1,19572,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(633,1,69,'Oakman',1,19640,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(634,1,49,'Odenville',1,19725,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(635,1,37,'Ohatchee',1,19762,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(636,1,39,'Oneonta',1,19942,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(637,1,51,'Opelika',1,19970,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(638,1,43,'Opp',1,19979,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(639,1,57,'Orange Beach',1,19994,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(640,1,94,'Orrville',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(641,1,68,'Owens Cross Roads',1,20226,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(642,1,37,'Oxford',1,57,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(643,1,46,'Ozark',1,6,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(644,1,66,'Paint Rock',1,155,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(645,1,30,'Palmerdale',1,205,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(646,1,61,'Panola',1,20,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(647,1,47,'Pansey',1,24,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(648,1,69,'Parrish',1,18,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(649,1,33,'Pelham',1,55,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(650,1,49,'Pell City',1,45,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(651,1,70,'Pennington',1,13,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(652,1,57,'Perdido',1,16,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(653,1,59,'Perdue Hill',1,119,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(654,1,87,'Perote',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(655,1,59,'Peterman',1,120,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(656,1,29,'Peterson',1,13,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(657,1,64,'Petrey',1,7,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(658,1,51,'Phenix City',1,66,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(659,1,80,'Phenix City',1,20952,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(660,1,92,'Phil Campbell',1,179,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(661,1,37,'Piedmont',1,58,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(662,1,72,'Pike Road',1,169,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(663,1,46,'Pinckard',1,7,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(664,1,34,'Pine Apple',1,13,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(665,1,34,'Pine Hill',1,14,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(666,1,72,'Pine Level',1,171,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(667,1,30,'Pinson',1,214,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(668,1,66,'Pisgah',1,160,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(669,1,80,'Pittsview',1,21231,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(670,1,94,'Plantersville',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(671,1,30,'Pleasant Grove',1,215,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(672,1,57,'Point Clear',1,17,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(673,1,52,'Prattville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(674,1,66,'Princeton',1,164,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(675,1,69,'Quinton',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(676,1,49,'Ragland',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(677,1,78,'Rainsville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(678,1,29,'Ralph',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(679,1,72,'Ramer',1,178,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(680,1,84,'Ranburne',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(681,1,65,'Randolph',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(682,1,67,'Range',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(683,1,92,'Red Bay',1,190,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(684,1,43,'Red Level',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(685,1,38,'Reform',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(686,1,39,'Remlap',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(687,1,67,'Repton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(688,1,43,'River Falls',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(689,1,49,'Riverside',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(690,1,91,'Roanoke',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(691,1,57,'Robertsdale',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(692,1,86,'Rockford',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(693,1,44,'Rogersville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(694,1,92,'Russellville',1,204,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(695,1,64,'Rutledge',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(696,1,68,'Ryland',1,137,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(697,1,94,'Safford',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(698,1,33,'Saginaw',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(699,1,53,'Saint Elmo',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(700,1,71,'Saint Stephens',1,304,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(701,1,51,'Salem',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(702,1,29,'Samantha',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(703,1,62,'Samson',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(704,1,53,'Saraland',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(705,1,94,'Sardis',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(706,1,53,'Satsuma',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(707,1,32,'Sawyerville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(708,1,30,'Sayre',1,243,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(709,1,66,'Scottsboro',1,176,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(710,1,80,'Seale',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(711,1,66,'Section',1,177,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(712,1,94,'Selma',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(713,1,57,'Seminole',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(714,1,53,'Semmes',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(715,1,30,'Shannon',1,245,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(716,1,75,'Sheffield',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(717,1,33,'Shelby',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(718,1,89,'Shorter',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(719,1,28,'Shorterville',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(720,1,70,'Silas',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(721,1,33,'Siluria',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(722,1,57,'Silverhill',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(723,1,69,'Sipsey',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(724,1,46,'Skipperville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(725,1,62,'Slocomb',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(726,1,51,'Smiths Station',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(727,1,82,'Somerville',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(728,1,57,'Spanish Fort',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(729,1,73,'Spring Garden',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(730,1,49,'Springville',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(731,1,92,'Spruce Pine',1,226,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(732,1,76,'Stanton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(733,1,57,'Stapleton',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(734,1,49,'Steele',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(735,1,33,'Sterrett',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(736,1,66,'Stevenson',1,187,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(737,1,57,'Stockton',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(738,1,60,'Sulligent',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(739,1,69,'Sumiton',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(740,1,57,'Summerdale',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(741,1,71,'Sunflower',1,331,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(742,1,83,'Sweet Water',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(743,1,41,'Sycamore',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(744,1,41,'Sylacauga',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(745,1,78,'Sylvania',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(746,1,41,'Talladega',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(747,1,79,'Tallassee',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(748,1,45,'Tanner',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(749,1,53,'Theodore',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(750,1,83,'Thomaston',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(751,1,40,'Thomasville',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(752,1,76,'Thorsby',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(753,1,71,'Tibbie',1,335,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(754,1,79,'Titus',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(755,1,68,'Toney',1,154,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(756,1,81,'Town Creek',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(757,1,69,'Townley',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(758,1,70,'Toxey',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(759,1,30,'Trafford',1,272,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(760,1,66,'Trenton',1,194,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(761,1,82,'Trinity',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(762,1,55,'Troy',1,105,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(763,1,30,'Trussville',1,273,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(764,1,29,'Tuscaloosa',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(765,1,75,'Tuscumbia',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(766,1,89,'Tuskegee',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(767,1,89,'Tuskegee Institute',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(768,1,90,'Tyler',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(769,1,35,'Union Grove',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(770,1,87,'Union Springs',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(771,1,93,'Uniontown',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(772,1,59,'Uriah',1,171,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(773,1,82,'Valhermoso Springs',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(774,1,88,'Valley',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(775,1,51,'Valley',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(776,1,78,'Valley Head',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(777,1,29,'Vance',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(778,1,33,'Vandiver',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(779,1,76,'Verbena',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(780,1,60,'Vernon',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(781,1,92,'Vina',1,247,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(782,1,33,'Vincent',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(783,1,71,'Vinegar Bend',1,351,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(784,1,54,'Vinemont',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(785,1,59,'Vredenburgh',1,174,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(786,1,91,'Wadley',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(787,1,71,'Wagarville',1,353,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(788,1,42,'Walnut Grove',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(789,1,70,'Ward',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(790,1,30,'Warrior',1,284,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(791,1,44,'Waterloo',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(792,1,30,'Watson',1,288,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(793,1,49,'Wattsville',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(794,1,51,'Waverly',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(795,1,37,'Weaver',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(796,1,47,'Webb',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(797,1,91,'Wedowee',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(798,1,37,'Wellington',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(799,1,86,'Weogufka',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(800,1,65,'West Blocton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(801,1,63,'West Greene',1,136,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(802,1,33,'Westover',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(803,1,79,'Wetumpka',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(804,1,40,'Whatley',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(805,1,53,'Wilmer',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(806,1,33,'Wilsonville',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(807,1,33,'Wilton',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(808,1,58,'Winfield',1,147,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(809,1,43,'Wing',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(810,1,91,'Woodland',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(811,1,65,'Woodstock',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(812,1,66,'Woodville',1,212,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(813,1,61,'York',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(814,4,93,'Adona',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(815,4,95,'Alexander',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(816,4,81,'Alicia',1,345,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(817,4,92,'Alix',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(818,4,96,'Alleene',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(819,4,97,'Alma',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(820,4,98,'Almyra',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(821,4,99,'Alpena',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(822,4,100,'Alpine',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(823,4,30,'Altheimer',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(824,4,92,'Altus',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(825,4,66,'Amagon',1,542,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(826,4,100,'Amity',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(827,4,55,'Antoine',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(828,4,100,'Arkadelphia',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(829,4,101,'Arkansas City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(830,4,102,'Armorel',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(831,4,103,'Ash Flat',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(832,4,96,'Ashdown',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(833,4,104,'Atkins',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(834,4,51,'Aubrey',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(835,4,105,'Augusta',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(836,4,106,'Austin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(837,4,107,'Avoca',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(838,4,108,'Bald Knob',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(839,4,109,'Banks',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(840,4,110,'Barling',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(841,4,111,'Barton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(842,4,102,'Bassett',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(843,4,112,'Batesville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(844,4,95,'Bauxite',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(845,4,113,'Bay',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(846,4,114,'Bearden',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(847,4,115,'Beaver',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(848,4,116,'Bee Branch',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(849,4,108,'Beebe',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(850,4,63,'Beech Grove',1,1832,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(851,4,66,'Beedeville',1,1840,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(852,4,100,'Beirne',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(853,4,107,'Bella Vista',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(854,4,117,'Belleville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(855,4,118,'Ben Lomond',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(856,4,95,'Benton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(857,4,107,'Bentonville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(858,4,99,'Bergman',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(859,4,115,'Berryville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(860,4,119,'Bexar',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(861,4,120,'Big Flat',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(862,4,93,'Bigelow',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(863,4,91,'Biggers',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(864,4,121,'Biscoe',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(865,4,122,'Bismarck',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(866,4,113,'Black Oak',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(867,4,81,'Black Rock',1,2395,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(868,4,123,'Blevins',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(869,4,124,'Blue Mountain',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(870,4,125,'Bluff City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(871,4,117,'Bluffton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(872,4,102,'Blytheville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(873,4,126,'Board Camp',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(874,4,127,'Boles',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(875,4,122,'Bonnerdale',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(876,4,113,'Bono',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(877,4,124,'Booneville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(878,4,108,'Bradford',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(879,4,128,'Bradley',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(880,4,92,'Branch',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(881,4,51,'Brickeys',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(882,4,117,'Briggsville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(883,4,59,'Brinkley',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(884,4,129,'Brockwell',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(885,4,113,'Brookland',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(886,4,95,'Bryant',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(887,4,128,'Buckner',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(888,4,58,'Bull Shoals',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(889,4,102,'Burdette',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(890,4,106,'Cabot',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(891,4,72,'Caddo Gap',1,3718,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(892,4,130,'Caldwell',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(893,4,125,'Cale',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(894,4,129,'Calico Rock',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(895,4,131,'Calion',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(896,4,114,'Camden',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(897,4,119,'Camp',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(898,4,71,'Canehill',1,3977,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(899,4,113,'Caraway',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(900,4,106,'Carlisle',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(901,4,94,'Carthage',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(902,4,93,'Casa',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(903,4,113,'Cash',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(904,4,98,'Casscoe',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(905,4,103,'Cave City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(906,4,107,'Cave Springs',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(907,4,92,'Cecil',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(908,4,97,'Cedarville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(909,4,132,'Center Ridge',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(910,4,107,'Centerton',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(911,4,117,'Centerville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(912,4,92,'Charleston',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(913,4,112,'Charlotte',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(914,4,103,'Cherokee Village',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(915,4,133,'Cherry Valley',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(916,4,97,'Chester',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(917,4,114,'Chidester',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(918,4,116,'Choctaw',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(919,4,59,'Clarendon',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(920,4,134,'Clarkedale',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(921,4,120,'Clarkridge',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(922,4,135,'Clarksville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(923,4,132,'Cleveland',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(924,4,116,'Clinton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(925,4,135,'Coal Hill',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(926,4,136,'College Station',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(927,4,130,'Colt',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(928,4,123,'Columbus',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(929,4,68,'Combs',1,5640,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(930,4,137,'Compton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(931,4,84,'Concord',1,5692,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(932,4,138,'Conway',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(933,4,112,'Cord',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(934,4,48,'Corning',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(935,4,120,'Cotter',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(936,4,105,'Cotton Plant',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(937,4,126,'Cove',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(938,4,106,'Coy',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(939,4,134,'Crawfordsville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(940,4,98,'Crocketts Bluff',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(941,4,139,'Crossett',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(942,4,111,'Crumrod',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(943,4,100,'Curtis',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(944,4,112,'Cushman',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(945,4,116,'Damascus',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(946,4,117,'Danville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(947,4,117,'Dardanelle',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(948,4,48,'Datto',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(949,4,118,'De Queen',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(950,4,121,'De Valls Bluff',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(951,4,98,'De Witt',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(952,4,107,'Decatur',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(953,4,137,'Deer',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(954,4,63,'Delaplaine',1,6812,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(955,4,124,'Delaware',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(956,4,55,'Delight',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(957,4,102,'Dell',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(958,4,116,'Dennard',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(959,4,140,'Dermott',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(960,4,121,'Des Arc',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(961,4,112,'Desha',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(962,4,99,'Diamond City',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(963,4,66,'Diaz',1,7033,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(964,4,141,'Dierks',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(965,4,142,'Doddridge',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(966,4,129,'Dolph',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(967,4,122,'Donaldson',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(968,4,104,'Dover',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(969,4,84,'Drasco',1,7297,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(970,4,102,'Driver',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(971,4,101,'Dumas',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(972,4,97,'Dyer',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(973,4,102,'Dyess',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(974,4,134,'Earle',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(975,4,84,'Edgemont',1,7904,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(976,4,134,'Edmondson',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(977,4,113,'Egypt',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(978,4,131,'El Dorado',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(979,4,108,'El Paso',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(980,4,111,'Elaine',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(981,4,119,'Elizabeth',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(982,4,71,'Elkins',1,8149,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(983,4,71,'Elm Springs',1,8240,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(984,4,143,'Emerson',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(985,4,125,'Emmet',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(986,4,106,'England',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(987,4,138,'Enola',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(988,4,98,'Ethel',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(989,4,102,'Etowah',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(990,4,140,'Eudora',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(991,4,115,'Eureka Springs',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(992,4,71,'Evansville',1,8609,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(993,4,103,'Evening Shade',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(994,4,99,'Everton',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(995,4,116,'Fairfield Bay',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(996,4,71,'Farmington',1,8876,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(997,4,71,'Fayetteville',1,8928,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(998,4,144,'Fifty Six',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(999,4,145,'Fisher',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1000,4,58,'Flippin',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1001,4,112,'Floral',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1002,4,94,'Fordyce',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1003,4,96,'Foreman',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1004,4,130,'Forrest City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1005,4,110,'Fort Smith',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1006,4,142,'Fouke',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1007,4,139,'Fountain Hill',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1008,4,144,'Fox',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1009,4,129,'Franklin',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1010,4,102,'Frenchmans Bayou',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1011,4,122,'Friendship',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1012,4,123,'Fulton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1013,4,120,'Gamaliel',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1014,4,107,'Garfield',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1015,4,142,'Garland City',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1016,4,108,'Garner',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1017,4,120,'Gassville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1018,4,107,'Gateway',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1019,4,142,'Genoa',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1020,4,107,'Gentry',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1021,4,119,'Gepp',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1022,4,146,'Gilbert',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1023,4,98,'Gillett',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1024,4,118,'Gillham',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1025,4,134,'Gilmore',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1026,4,119,'Glencoe',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1027,4,55,'Glenwood',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1028,4,130,'Goodwin',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1029,4,71,'Goshen',1,10559,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(1030,4,102,'Gosnell',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1031,4,147,'Gould',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1032,4,147,'Grady',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1033,4,126,'Grannis',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1034,4,148,'Grapevine',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1035,4,117,'Gravelly',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1036,4,107,'Gravette',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1037,4,115,'Green Forest',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1038,4,138,'Greenbrier',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1039,4,71,'Greenland',1,10913,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(1040,4,48,'Greenway',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1041,4,110,'Greenwood',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1042,4,105,'Gregory',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1043,4,108,'Griffithville',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1044,4,66,'Grubbs',1,11086,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(1045,4,129,'Guion',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1046,4,100,'Gurdon',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1047,4,138,'Guy',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1048,4,110,'Hackett',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1049,4,135,'Hagarville',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1050,4,139,'Hamburg',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1051,4,37,'Hampton',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1052,4,103,'Hardy',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1053,4,37,'Harrell',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1054,4,146,'Harriet',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1055,4,145,'Harrisburg',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1056,4,99,'Harrison',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1057,4,110,'Hartford',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1058,4,135,'Hartman',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1059,4,127,'Harvey',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1060,4,137,'Hasty',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1061,4,126,'Hatfield',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1062,4,132,'Hattieville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1063,4,117,'Havana',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1064,4,51,'Haynes',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1065,4,121,'Hazen',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1066,4,84,'Heber Springs',1,11825,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(1067,4,104,'Hector',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1068,4,111,'Helena',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1069,4,120,'Henderson',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1070,4,95,'Hensley',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1071,4,109,'Hermitage',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1072,4,130,'Heth',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1073,4,121,'Hickory Plains',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1074,4,133,'Hickory Ridge',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1075,4,84,'Higden',1,12061,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(1076,4,108,'Higginson',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1077,4,68,'Hindsville',1,12198,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(1078,4,107,'Hiwasse',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1079,4,59,'Holly Grove',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1080,4,123,'Hope',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1081,4,118,'Horatio',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1082,4,129,'Horseshoe Bend',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1083,4,149,'Hot Springs National Park',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1084,4,149,'Hot Springs Village',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1085,4,93,'Houston',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1086,4,81,'Hoxie',1,12603,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(1087,4,130,'Hughes',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1088,4,106,'Humnoke',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1089,4,30,'Humphrey',1,130,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1090,4,105,'Hunter',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1091,4,110,'Huntington',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1092,4,68,'Huntsville',1,12753,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(1093,4,131,'Huttig',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1094,4,84,'Ida',1,12834,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(1095,4,81,'Imboden',1,12869,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(1096,4,94,'Ivan',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1097,4,66,'Jacksonport',1,104,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1098,4,136,'Jacksonville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1099,4,137,'Jasper',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1100,4,30,'Jefferson',1,138,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1101,4,109,'Jersey',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1102,4,132,'Jerusalem',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1103,4,149,'Jessieville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1104,4,71,'Johnson',1,13380,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(1105,4,102,'Joiner',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1106,4,122,'Jones Mill',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1107,4,113,'Jonesboro',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1108,4,108,'Judsonia',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1109,4,131,'Junction City',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1110,4,102,'Keiser',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1111,4,108,'Kensett',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1112,4,106,'Keo',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1113,4,150,'Kingsland',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1114,4,68,'Kingston',1,13943,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(1115,4,55,'Kirby',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1116,4,48,'Knobel',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1117,4,135,'Knoxville',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1118,4,51,'La Grange',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1119,4,63,'Lafe',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1120,4,113,'Lake City',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1121,4,140,'Lake Village',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1122,4,120,'Lakeview',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1123,4,135,'Lamar',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1124,4,111,'Lambrook',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1125,4,125,'Laneburg',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1126,4,55,'Langley',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1127,4,110,'Lavaca',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1128,4,131,'Lawson',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1129,4,102,'Leachville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1130,4,99,'Lead Hill',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1131,4,148,'Leola',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1132,4,145,'Lepanto',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1133,4,146,'Leslie',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1134,4,108,'Letona',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1135,4,128,'Lewisville',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1136,4,111,'Lexa',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1137,4,63,'Light',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1138,4,71,'Lincoln',1,15143,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(1139,4,136,'Little Rock',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1140,4,136,'Little Rock Air Force Base',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1141,4,118,'Lockesburg',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1142,4,112,'Locust Grove',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1143,4,104,'London',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1144,4,106,'Lonoke',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1145,4,149,'Lonsdale',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1146,4,114,'Louann',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1147,4,107,'Lowell',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1148,4,102,'Luxora',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1149,4,81,'Lynn',1,15838,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(1150,4,95,'Mabelvale',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1151,4,130,'Madison',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1152,4,124,'Magazine',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1153,4,112,'Magness',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1154,4,143,'Magnolia',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1155,4,122,'Malvern',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1156,4,119,'Mammoth Spring',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1157,4,102,'Manila',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1158,4,127,'Mansfield',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1159,4,137,'Marble Falls',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1160,4,144,'Marcella',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1161,4,51,'Marianna',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1162,4,134,'Marion',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1163,4,145,'Marked Tree',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1164,4,63,'Marmaduke',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1165,4,146,'Marshall',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1166,4,111,'Marvell',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1167,4,136,'Maumelle',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1168,4,138,'Mayflower',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1169,4,91,'Maynard',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1170,4,107,'Maysville',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1171,4,123,'Mc Caskill',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1172,4,105,'Mc Crory',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1173,4,48,'Mc Dougal',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1174,4,101,'Mc Gehee',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1175,4,143,'Mc Neil',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1176,4,108,'Mc Rae',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1177,4,129,'Melbourne',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1178,4,111,'Mellwood',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1179,4,126,'Mena',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1180,4,132,'Menifee',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1181,4,110,'Midland',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1182,4,120,'Midway',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1183,4,141,'Mineral Springs',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1184,4,81,'Minturn',1,17585,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(1185,4,113,'Monette',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1186,4,59,'Monroe',1,102,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1187,4,151,'Monticello',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1188,4,139,'Montrose',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1189,4,51,'Moro',1,17977,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1190,4,132,'Morrilton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1191,4,71,'Morrow',1,18026,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(1192,4,30,'Moscow',1,18050,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1193,4,131,'Mount Holly',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1194,4,72,'Mount Ida',1,18160,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(1195,4,137,'Mount Judea',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1196,4,129,'Mount Pleasant',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1197,4,138,'Mount Vernon',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1198,4,120,'Mountain Home',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1199,4,149,'Mountain Pine',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1200,4,144,'Mountain View',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1201,4,97,'Mountainburg',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1202,4,97,'Mulberry',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1203,4,55,'Murfreesboro',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1204,4,141,'Nashville',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1205,4,97,'Natural Dam',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1206,4,124,'New Blaine',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1207,4,150,'New Edinburg',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1208,4,112,'Newark',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1209,4,55,'Newhope',1,19010,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1210,4,66,'Newport',1,145,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1211,4,120,'Norfork',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1212,4,72,'Norman',1,19214,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(1213,4,131,'Norphlet',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1214,4,136,'North Little Rock',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1215,4,91,'O Kean',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1216,4,115,'Oak Grove',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1217,4,58,'Oakland',1,19630,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1218,4,135,'Oark',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1219,4,72,'Oden',1,19723,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(1220,4,96,'Ogden',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1221,4,112,'Oil Trough',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1222,4,100,'Okolona',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1223,4,117,'Ola',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1224,4,99,'Omaha',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1225,4,111,'Oneida',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1226,4,144,'Onia',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1227,4,102,'Osceola',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1228,4,129,'Oxford',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1229,4,123,'Ozan',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1230,4,92,'Ozark',1,174,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1231,4,135,'Ozone',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1232,4,130,'Palestine',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1233,4,108,'Pangburn',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1234,4,63,'Paragould',1,98,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(1235,4,124,'Paris',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1236,4,139,'Parkdale',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1237,4,133,'Parkin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1238,4,127,'Parks',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1239,4,95,'Paron',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1240,4,137,'Parthenon',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1241,4,105,'Patterson',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1242,4,107,'Pea Ridge',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1243,4,48,'Peach Orchard',1,98,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(1244,4,149,'Pearcy',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1245,4,58,'Peel',1,104,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(1246,4,137,'Pelsor',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1247,4,72,'Pencil Bluff',1,20759,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(1248,4,93,'Perry',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1249,4,93,'Perryville',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1250,4,68,'Pettigrew',1,124,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(1251,4,101,'Pickens',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1252,4,48,'Piggott',1,103,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(1253,4,146,'Pindall',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1254,4,30,'Pine Bluff',1,212,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(1255,4,129,'Pineville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1256,4,117,'Plainview',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1257,4,144,'Pleasant Grove',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1258,4,112,'Pleasant Plains',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1259,4,132,'Plumerville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1260,4,91,'Pocahontas',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1261,4,48,'Pollard',1,104,'0000-00-00 00:00:00','2022-05-17 11:49:12',NULL),(1262,4,137,'Ponca',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1263,4,111,'Poplar Grove',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1264,4,81,'Portia',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1265,4,139,'Portland',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1266,4,104,'Pottsville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1267,4,103,'Poughkeepsie',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1268,4,81,'Powhatan',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1269,4,148,'Poyen',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1270,4,71,'Prairie Grove',1,281,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1271,4,148,'Prattsville',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1272,4,125,'Prescott',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1273,4,84,'Prim',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1274,4,134,'Proctor',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1275,4,58,'Pyatt',1,109,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1276,4,84,'Quitman',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1277,4,124,'Ratcliff',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1278,4,81,'Ravenden',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1279,4,91,'Ravenden Springs',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1280,4,48,'Rector',1,106,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1281,4,30,'Redfield',1,228,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1282,4,30,'Reydell',1,230,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1283,4,91,'Reyno',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1284,4,150,'Rison',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1285,4,145,'Rivervale',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1286,4,59,'Roe',1,133,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1287,4,107,'Rogers',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1288,4,136,'Roland',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1289,4,108,'Romance',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1290,4,108,'Rose Bud',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1291,4,112,'Rosie',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1292,4,125,'Rosston',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1293,4,117,'Rover',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1294,4,149,'Royal',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1295,4,97,'Rudy',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1296,4,108,'Russell',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1297,4,104,'Russellville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1298,4,81,'Saffell',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1299,4,129,'Sage',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1300,4,98,'Saint Charles',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1301,4,48,'Saint Francis',1,110,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1302,4,146,'Saint Joe',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1303,4,68,'Saint Paul',1,140,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1304,4,112,'Salado',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1305,4,119,'Salem',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1306,4,141,'Saratoga',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1307,4,116,'Scotland',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1308,4,136,'Scott',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1309,4,124,'Scranton',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1310,4,108,'Searcy',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1311,4,81,'Sedgwick',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1312,4,148,'Sheridan',1,109,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1313,4,30,'Sherrill',1,248,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1314,4,136,'Sherwood',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1315,4,116,'Shirley',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1316,4,103,'Sidney',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1317,4,107,'Siloam Springs',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1318,4,72,'Sims',1,194,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1319,4,131,'Smackover',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1320,4,81,'Smithville',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1321,4,101,'Snow Lake',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1322,4,132,'Solgohachia',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1323,4,94,'Sparkman',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1324,4,71,'Springdale',1,322,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1325,4,132,'Springfield',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1326,4,128,'Stamps',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1327,4,147,'Star City',1,166,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1328,4,113,'State University',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1329,4,114,'Stephens',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1330,4,72,'Story',1,207,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1331,4,81,'Strawberry',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1332,4,131,'Strong',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1333,4,119,'Sturkie',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1334,4,98,'Stuttgart',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1335,4,124,'Subiaco',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1336,4,48,'Success',1,116,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1337,4,112,'Sulphur Rock',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1338,4,107,'Sulphur Springs',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1339,4,71,'Summers',1,330,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1340,4,58,'Summit',1,135,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1341,4,136,'Sweet Home',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1342,4,66,'Swifton',1,188,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1343,4,143,'Taylor',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1344,4,142,'Texarkana',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1345,4,112,'Thida',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1346,4,37,'Thornton',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1347,4,98,'Tichnor',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1348,4,101,'Tillar',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1349,4,104,'Tilly',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1350,4,144,'Timbo',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1351,4,71,'Tontitown',1,338,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1352,4,95,'Traskwood',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1353,4,145,'Trumann',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1354,4,30,'Tucker',1,274,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1355,4,66,'Tuckerman',1,196,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1356,4,84,'Tumbling Shoals',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1357,4,66,'Tupelo',1,197,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1358,4,111,'Turner',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1359,4,134,'Turrell',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1360,4,145,'Tyronza',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1361,4,121,'Ulm',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1362,4,141,'Umpire',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1363,4,97,'Uniontown',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1364,4,131,'Urbana',1,112,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1365,4,99,'Valley Springs',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1366,4,97,'Van Buren',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1367,4,126,'Vandervoort',1,126,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1368,4,133,'Vanndale',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1369,4,137,'Vendor',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1370,4,138,'Vilonia',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1371,4,119,'Viola',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1372,4,129,'Violet Hill',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1373,4,111,'Wabash',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1374,4,30,'Wabbaseka',1,278,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1375,4,63,'Walcott',1,131,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1376,4,145,'Waldenburg',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1377,4,143,'Waldo',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1378,4,127,'Waldron',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1379,4,81,'Walnut Ridge',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1380,4,106,'Ward',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1381,4,91,'Warm Springs',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1382,4,109,'Warren',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1383,4,123,'Washington',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1384,4,101,'Watson',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1385,4,145,'Weiner',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1386,4,68,'Wesley',1,162,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1387,4,71,'West Fork',1,379,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1388,4,111,'West Helena',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1389,4,134,'West Memphis',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1390,4,108,'West Point',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1391,4,102,'West Ridge',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1392,4,137,'Western Grove',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1393,4,130,'Wheatley',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1394,4,100,'Whelen Springs',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1395,4,30,'White Hall',1,293,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1396,4,126,'Wickes',1,129,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1397,4,129,'Wideman',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1398,4,130,'Widener',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1399,4,84,'Wilburn',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1400,4,103,'Williford',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1401,4,125,'Willisville',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1402,4,151,'Wilmar',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1403,4,139,'Wilmot',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1404,4,102,'Wilson',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1405,4,96,'Wilton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1406,4,151,'Winchester',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1407,4,71,'Winslow',1,391,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1408,4,96,'Winthrop',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1409,4,129,'Wiseman',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1410,4,68,'Witter',1,167,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1411,4,146,'Witts Springs',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1412,4,136,'Woodson',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1413,4,138,'Wooster',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1414,4,30,'Wright',1,301,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1415,4,136,'Wrightsville',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1416,4,133,'Wynne',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1417,4,58,'Yellville',1,150,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1418,4,147,'Yorktown',1,204,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1419,3,152,'Aguila',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1420,3,153,'Ajo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1421,3,154,'Alpine',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1422,3,155,'Amado',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1423,3,156,'Apache Junction',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1424,3,153,'Arivaca',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1425,3,156,'Arizona City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1426,3,152,'Arlington',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1427,3,157,'Ash Fork',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1428,3,152,'Avondale',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1429,3,157,'Bagdad',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1430,3,156,'Bapchule',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1431,3,158,'Bellemont',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1432,3,159,'Benson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1433,3,159,'Bisbee',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1434,3,157,'Black Canyon City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1435,3,160,'Blue',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1436,3,161,'Blue Gap',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1437,3,162,'Bouse',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1438,3,159,'Bowie',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1439,3,152,'Buckeye',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1440,3,163,'Bullhead City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1441,3,164,'Bylas',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1442,3,158,'Cameron',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1443,3,157,'Camp Verde',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1444,3,152,'Carefree',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1445,3,156,'Casa Grande',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1446,3,152,'Cashion',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1447,3,153,'Catalina',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1448,3,152,'Cave Creek',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1449,3,164,'Central',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1450,3,154,'Chambers',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1451,3,152,'Chandler',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1452,3,152,'Chandler Heights',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1453,3,154,'Chinle',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1454,3,157,'Chino Valley',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1455,3,163,'Chloride',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1456,3,161,'Cibecue',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1457,3,162,'Cibola',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1458,3,157,'Clarkdale',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1459,3,161,'Clay Springs',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1460,3,165,'Claypool',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1461,3,160,'Clifton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1462,3,159,'Cochise',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1463,3,163,'Colorado City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1464,3,154,'Concho',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1465,3,157,'Congress',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1466,3,156,'Coolidge',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1467,3,157,'Cornville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1468,3,153,'Cortaro',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1469,3,157,'Cottonwood',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1470,3,157,'Crown King',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1471,3,166,'Dateland',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1472,3,154,'Dennehotso',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1473,3,157,'Dewey',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1474,3,163,'Dolan Springs',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1475,3,159,'Douglas',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1476,3,159,'Dragoon',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1477,3,160,'Duncan',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1478,3,154,'Eagar',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1479,3,164,'Eden',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1480,3,162,'Ehrenberg',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1481,3,152,'El Mirage',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1482,3,159,'Elfrida',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1483,3,155,'Elgin',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1484,3,156,'Eloy',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1485,3,158,'Flagstaff',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1486,3,156,'Florence',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1487,3,158,'Forest Lakes',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1488,3,161,'Fort Apache',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1489,3,154,'Fort Defiance',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1490,3,159,'Fort Huachuca',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1491,3,152,'Fort Mcdowell',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1492,3,163,'Fort Mohave',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1493,3,164,'Fort Thomas',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1494,3,152,'Fountain Hills',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1495,3,158,'Fredonia',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1496,3,166,'Gadsden',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1497,3,154,'Ganado',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1498,3,152,'Gila Bend',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1499,3,152,'Gilbert',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1500,3,152,'Glendale',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1501,3,152,'Glendale Luke Afb',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1502,3,165,'Globe',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1503,3,163,'Golden Valley',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1504,3,152,'Goodyear',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1505,3,158,'Grand Canyon',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1506,3,158,'Gray Mountain',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1507,3,153,'Green Valley',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1508,3,154,'Greer',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1509,3,163,'Hackberry',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1510,3,158,'Happy Jack',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1511,3,165,'Hayden',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1512,3,161,'Heber',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1513,3,159,'Hereford',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1514,3,152,'Higley',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1515,3,161,'Holbrook',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1516,3,161,'Hotevilla',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1517,3,154,'Houck',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1518,3,159,'Huachuca City',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1519,3,163,'Hualapai',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1520,3,157,'Humboldt',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1521,3,161,'Indian Wells',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1522,3,157,'Iron Springs',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1523,3,157,'Jerome',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1524,3,161,'Joseph City',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1525,3,158,'Kaibeto',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1526,3,161,'Kayenta',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1527,3,161,'Keams Canyon',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1528,3,156,'Kearny',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1529,3,163,'Kingman',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1530,3,157,'Kirkland',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1531,3,161,'Kykotsmovi Village',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1532,3,163,'Lake Havasu City',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1533,3,157,'Lake Montezuma',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1534,3,161,'Lakeside',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1535,3,152,'Laveen',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1536,3,158,'Leupp',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1537,3,152,'Litchfield Park',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1538,3,163,'Littlefield',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1539,3,154,'Lukachukai',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1540,3,153,'Lukeville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1541,3,154,'Lupton',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1542,3,156,'Mammoth',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1543,3,154,'Many Farms',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1544,3,153,'Marana',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1545,3,158,'Marble Canyon',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1546,3,156,'Maricopa',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1547,3,157,'Mayer',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1548,3,159,'Mc Neal',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1549,3,154,'Mcnary',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1550,3,163,'Meadview',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1551,3,152,'Mesa',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1552,3,165,'Miami',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1553,3,163,'Mohave Valley',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1554,3,160,'Morenci',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1555,3,158,'Mormon Lake',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1556,3,152,'Morristown',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1557,3,153,'Mount Lemmon',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1558,3,158,'Munds Park',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1559,3,159,'Naco',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1560,3,154,'Nazlini',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1561,3,152,'New River',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1562,3,155,'Nogales',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1563,3,158,'North Rim',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1564,3,154,'Nutrioso',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1565,3,163,'Oatman',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1566,3,156,'Oracle',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1567,3,161,'Overgaard',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1568,3,158,'Page',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1569,3,152,'Palo Verde',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1570,3,152,'Paradise Valley',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1571,3,162,'Parker',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1572,3,158,'Parks',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1573,3,155,'Patagonia',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1574,3,157,'Paulden',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1575,3,165,'Payson',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1576,3,163,'Peach Springs',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1577,3,159,'Pearce',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1578,3,152,'Peoria',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1579,3,165,'Peridot',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1580,3,154,'Petrified Forest Natl Pk',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1581,3,152,'Phoenix',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1582,3,156,'Picacho',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1583,3,164,'Pima',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1584,3,165,'Pine',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1585,3,161,'Pinedale',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1586,3,161,'Pinetop',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1587,3,161,'Pinon',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1588,3,159,'Pirtleville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1589,3,161,'Polacca',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1590,3,159,'Pomerene',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1591,3,162,'Poston',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1592,3,157,'Prescott',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1593,3,157,'Prescott Valley',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1594,3,162,'Quartzsite',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1595,3,152,'Queen Creek',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1596,3,156,'Queen Creek',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1597,3,156,'Red Rock',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1598,3,154,'Red Valley',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1599,3,153,'Rillito',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1600,3,157,'Rimrock',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1601,3,155,'Rio Rico',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1602,3,152,'Rio Verde',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1603,3,154,'Rock Point',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1604,3,166,'Roll',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1605,3,165,'Roosevelt',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1606,3,154,'Round Rock',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1607,3,156,'Sacaton',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1608,3,164,'Safford',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1609,3,153,'Sahuarita',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1610,3,159,'Saint David',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1611,3,154,'Saint Johns',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1612,3,154,'Saint Michaels',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1613,3,162,'Salome',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1614,3,165,'San Carlos',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1615,3,166,'San Luis',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1616,3,156,'San Manuel',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1617,3,159,'San Simon',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1618,3,154,'Sanders',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1619,3,153,'Sasabe',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1620,3,152,'Scottsdale',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1621,3,161,'Second Mesa',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1622,3,158,'Sedona',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1623,3,157,'Sedona',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1624,3,157,'Seligman',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1625,3,153,'Sells',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1626,3,161,'Shonto',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1627,3,161,'Show Low',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1628,3,159,'Sierra Vista',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1629,3,157,'Skull Valley',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1630,3,161,'Snowflake',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1631,3,164,'Solomon',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1632,3,166,'Somerton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1633,3,155,'Sonoita',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1634,3,154,'Springerville',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1635,3,156,'Stanfield',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1636,3,152,'Sun City',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1637,3,152,'Sun City West',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1638,3,161,'Sun Valley',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1639,3,158,'Supai',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1640,3,156,'Superior',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1641,3,152,'Surprise',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1642,3,166,'Tacna',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1643,3,161,'Taylor',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1644,3,154,'Teec Nos Pos',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1645,3,152,'Tempe',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1646,3,163,'Temple Bar Marina',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1647,3,164,'Thatcher',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1648,3,152,'Tolleson',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1649,3,159,'Tombstone',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1650,3,158,'Tonalea',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1651,3,152,'Tonopah',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1652,3,165,'Tonto Basin',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1653,3,153,'Topawa',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1654,3,163,'Topock',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1655,3,152,'Tortilla Flat',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1656,3,154,'Tsaile',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1657,3,158,'Tuba City',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1658,3,155,'Tubac',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1659,3,153,'Tucson',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1660,3,155,'Tumacacori',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1661,3,153,'Vail',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1662,3,163,'Valentine',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1663,3,156,'Valley Farms',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1664,3,154,'Vernon',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1665,3,152,'Waddell',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1666,3,166,'Wellton',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1667,3,162,'Wenden',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1668,3,161,'White Mountain Lake',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1669,3,161,'Whiteriver',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1670,3,152,'Wickenburg',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1671,3,163,'Wikieup',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1672,3,159,'Willcox',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1673,3,158,'Williams',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1674,3,163,'Willow Beach',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1675,3,154,'Window Rock',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1676,3,165,'Winkelman',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1677,3,161,'Winslow',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1678,3,152,'Wittmann',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1679,3,161,'Woodruff',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1680,3,157,'Yarnell',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1681,3,165,'Young',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1682,3,152,'Youngtown',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1683,3,163,'Yucca',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1684,3,166,'Yuma',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1685,5,167,'Acampo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1686,5,168,'Acton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1687,5,169,'Adelanto',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1688,5,170,'Adin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1689,5,168,'Agoura Hills',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1690,5,171,'Aguanga',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1691,5,172,'Ahwahnee',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1692,5,173,'Alameda',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1693,5,174,'Alamo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1694,5,173,'Albany',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1695,5,175,'Albion',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1696,5,176,'Alderpoint',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1697,5,168,'Alhambra',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1698,5,177,'Aliso Viejo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1699,5,178,'Alleghany',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1700,5,179,'Alpaugh',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1701,5,180,'Alpine',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1702,5,181,'Alta',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1703,5,168,'Altadena',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1704,5,182,'Altaville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1705,5,170,'Alturas',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1706,5,183,'Alviso',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1707,5,184,'Amador City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1708,5,169,'Amboy',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1709,5,185,'American Canyon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1710,5,177,'Anaheim',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1711,5,186,'Anderson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1712,5,182,'Angels Camp',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1713,5,169,'Angelus Oaks',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1714,5,185,'Angwin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1715,5,187,'Annapolis',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1716,5,188,'Antelope',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1717,5,174,'Antioch',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1718,5,171,'Anza',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1719,5,169,'Apple Valley',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1720,5,181,'Applegate',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1721,5,155,'Aptos',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1722,5,189,'Arbuckle',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1723,5,168,'Arcadia',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1724,5,176,'Arcata',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1725,5,190,'Armona',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1726,5,182,'Arnold',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1727,5,191,'Aromas',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1728,5,192,'Arroyo Grande',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1729,5,168,'Artesia',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1730,5,193,'Artois',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1731,5,194,'Arvin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1732,5,192,'Atascadero',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1733,5,195,'Atherton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1734,5,196,'Atwater',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1735,5,177,'Atwood',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1736,5,197,'Auberry',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1737,5,181,'Auburn',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1738,5,168,'Avalon',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1739,5,190,'Avenal',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1740,5,182,'Avery',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1741,5,192,'Avila Beach',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1742,5,168,'Azusa',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1743,5,179,'Badger',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1744,5,169,'Baker',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1745,5,194,'Bakersfield',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1746,5,168,'Baldwin Park',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1747,5,196,'Ballico',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1748,5,198,'Bangor',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1749,5,171,'Banning',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1750,5,199,'Bard',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1751,5,169,'Barstow',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1752,5,172,'Bass Lake',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1753,5,176,'Bayside',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1754,5,200,'Beale Afb',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1755,5,171,'Beaumont',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1756,5,201,'Beckwourth',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1757,5,201,'Belden',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1758,5,168,'Bell',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1759,5,168,'Bell Gardens',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1760,5,186,'Bella Vista',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1761,5,168,'Bellflower',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1762,5,195,'Belmont',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1763,5,202,'Belvedere Tiburon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1764,5,155,'Ben Lomond',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1765,5,203,'Benicia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1766,5,204,'Benton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1767,5,173,'Berkeley',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1768,5,198,'Berry Creek',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1769,5,174,'Bethel Island',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1770,5,168,'Beverly Hills',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1771,5,205,'Bieber',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1772,5,206,'Big Bar',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1773,5,169,'Big Bear City',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1774,5,169,'Big Bear Lake',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1775,5,186,'Big Bend',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1776,5,197,'Big Creek',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1777,5,207,'Big Oak Flat',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1778,5,208,'Big Pine',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1779,5,191,'Big Sur',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1780,5,198,'Biggs',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1781,5,197,'Biola',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1782,5,203,'Birds Landing',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1783,5,208,'Bishop',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1784,5,201,'Blairsden-graeagle',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1785,5,176,'Blocksburg',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1786,5,169,'Bloomington',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1787,5,169,'Blue Jay',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1788,5,176,'Blue Lake',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1789,5,171,'Blythe',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1790,5,187,'Bodega',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1791,5,187,'Bodega Bay',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1792,5,194,'Bodfish',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1793,5,202,'Bolinas',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1794,5,180,'Bonita',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1795,5,180,'Bonsall',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1796,5,175,'Boonville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1797,5,194,'Boron',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1798,5,180,'Borrego Springs',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1799,5,155,'Boulder Creek',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1800,5,180,'Boulevard',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1801,5,187,'Boyes Hot Springs',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1802,5,191,'Bradley',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1803,5,209,'Brandeis',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1804,5,175,'Branscomb',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1805,5,199,'Brawley',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1806,5,177,'Brea',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1807,5,174,'Brentwood',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1808,5,204,'Bridgeport',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1809,5,176,'Bridgeville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1810,5,195,'Brisbane',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1811,5,155,'Brookdale',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1812,5,210,'Brooks',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1813,5,200,'Browns Valley',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1814,5,200,'Brownsville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1815,5,169,'Bryn Mawr',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1816,5,211,'Buellton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1817,5,177,'Buena Park',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1818,5,168,'Burbank',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1819,5,195,'Burlingame',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1820,5,186,'Burney',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1821,5,206,'Burnt Ranch',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1822,5,197,'Burrel',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1823,5,182,'Burson',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1824,5,193,'Butte City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1825,5,194,'Buttonwillow',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1826,5,174,'Byron',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1827,5,171,'Cabazon',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1828,5,168,'Calabasas',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1829,5,199,'Calexico',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1830,5,194,'Caliente',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1831,5,194,'California City',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1832,5,179,'California Hot Springs',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1833,5,171,'Calimesa',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1834,5,199,'Calipatria',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1835,5,185,'Calistoga',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1836,5,212,'Callahan',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1837,5,175,'Calpella',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1838,5,178,'Calpine',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1839,5,209,'Camarillo',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1840,5,192,'Cambria',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1841,5,213,'Camino',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1842,5,187,'Camp Meeker',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1843,5,179,'Camp Nelson',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1844,5,180,'Camp Pendleton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1845,5,183,'Campbell',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1846,5,180,'Campo',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1847,5,182,'Campo Seco',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1848,5,200,'Camptonville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1849,5,170,'Canby',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1850,5,168,'Canoga Park',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1851,5,194,'Cantil',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1852,5,197,'Cantua Creek',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1853,5,174,'Canyon',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1854,5,168,'Canyon Country',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1855,5,201,'Canyon Dam',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1856,5,210,'Capay',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1857,5,177,'Capistrano Beach',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1858,5,155,'Capitola',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1859,5,180,'Cardiff By The Sea',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1860,5,176,'Carlotta',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1861,5,180,'Carlsbad',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1862,5,191,'Carmel',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1863,5,191,'Carmel By The Sea',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1864,5,191,'Carmel Valley',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1865,5,188,'Carmichael',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1866,5,181,'Carnelian Bay',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1867,5,211,'Carpinteria',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1868,5,168,'Carson',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1869,5,197,'Caruthers',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1870,5,211,'Casmalia',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1871,5,175,'Caspar',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1872,5,186,'Cassel',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1873,5,168,'Castaic',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1874,5,186,'Castella',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1875,5,173,'Castro Valley',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1876,5,191,'Castroville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1877,5,171,'Cathedral City',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1878,5,214,'Catheys Valley',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1879,5,192,'Cayucos',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1880,5,187,'Cazadero',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1881,5,169,'Cedar Glen',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1882,5,125,'Cedar Ridge',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1883,5,169,'Cedarpines Park',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1884,5,170,'Cedarville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1885,5,215,'Ceres',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1886,5,168,'Cerritos',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1887,5,200,'Challenge',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1888,5,168,'Chatsworth',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1889,5,201,'Chester',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1890,5,125,'Chicago Park',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1891,5,198,'Chico',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1892,5,201,'Chilcoot',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1893,5,207,'Chinese Camp',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1894,5,169,'Chino',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1895,5,169,'Chino Hills',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1896,5,172,'Chowchilla',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1897,5,191,'Chualar',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1898,5,180,'Chula Vista',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1899,5,169,'Cima',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1900,5,188,'Citrus Heights',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1901,5,168,'City Of Industry',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1902,5,168,'Claremont',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1903,5,210,'Clarksburg',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1904,5,174,'Clayton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1905,5,216,'Clearlake',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1906,5,216,'Clearlake Oaks',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1907,5,216,'Clearlake Park',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1908,5,167,'Clements',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1909,5,201,'Clio',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1910,5,198,'Clipper Mills',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1911,5,187,'Cloverdale',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1912,5,197,'Clovis',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1913,5,171,'Coachella',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1914,5,197,'Coalinga',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1915,5,172,'Coarsegold',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1916,5,216,'Cobb',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1917,5,204,'Coleville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1918,5,181,'Colfax',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1919,5,213,'Coloma',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1920,5,169,'Colton',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1921,5,207,'Columbia',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1922,5,189,'Colusa',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1923,5,175,'Comptche',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1924,5,168,'Compton',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1925,5,174,'Concord',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1926,5,213,'Cool',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1927,5,182,'Copperopolis',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1928,5,190,'Corcoran',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1929,5,217,'Corning',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1930,5,171,'Corona',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1931,5,177,'Corona Del Mar',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1932,5,180,'Coronado',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1933,5,202,'Corte Madera',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1934,5,177,'Costa Mesa',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1935,5,187,'Cotati',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1936,5,186,'Cottonwood',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1937,5,214,'Coulterville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1938,5,188,'Courtland',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1939,5,175,'Covelo',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1940,5,168,'Covina',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1941,5,183,'Coyote',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1942,5,218,'Crescent City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1943,5,201,'Crescent Mills',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1944,5,196,'Cressey',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1945,5,169,'Crest Park',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1946,5,169,'Crestline',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1947,5,192,'Creston',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1948,5,174,'Crockett',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1949,5,215,'Crows Landing',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1950,5,168,'Culver City',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1951,5,183,'Cupertino',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1952,5,179,'Cutler',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1953,5,176,'Cutten',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1954,5,177,'Cypress',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1955,5,169,'Daggett',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1956,5,195,'Daly City',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1957,5,177,'Dana Point',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1958,5,174,'Danville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1959,5,207,'Dardanelle',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1960,5,208,'Darwin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1961,5,155,'Davenport',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1962,5,210,'Davis',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1963,5,170,'Davis Creek',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1964,5,208,'Death Valley',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1965,5,185,'Deer Park',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1966,5,180,'Del Mar',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1967,5,197,'Del Rey',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1968,5,194,'Delano',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1969,5,196,'Delhi',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1970,5,215,'Denair',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1971,5,180,'Descanso',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1972,5,171,'Desert Center',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1973,5,171,'Desert Hot Springs',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1974,5,174,'Diablo',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1975,5,168,'Diamond Bar',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1976,5,213,'Diamond Springs',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1977,5,202,'Dillon Beach',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1978,5,179,'Dinuba',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1979,5,174,'Discovery Bay',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1980,5,203,'Dixon',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1981,5,200,'Dobbins',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1982,5,212,'Dorris',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1983,5,196,'Dos Palos',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1984,5,175,'Dos Rios',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1985,5,206,'Douglas City',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1986,5,182,'Douglas Flat',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1987,5,168,'Downey',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1988,5,178,'Downieville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1989,5,205,'Doyle',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1990,5,184,'Drytown',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1991,5,168,'Duarte',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1992,5,173,'Dublin',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1993,5,179,'Ducor',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1994,5,180,'Dulzura',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1995,5,187,'Duncans Mills',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1996,5,197,'Dunlap',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1997,5,210,'Dunnigan',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1998,5,212,'Dunsmuir',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(1999,5,198,'Durham',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2000,5,181,'Dutch Flat',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2001,5,170,'Eagleville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2002,5,179,'Earlimart',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2003,5,169,'Earp',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2004,5,177,'East Irvine',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2005,5,213,'Echo Lake',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2006,5,194,'Edison',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2007,5,194,'Edwards',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2008,5,180,'El Cajon',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2009,5,199,'El Centro',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2010,5,174,'El Cerrito',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2011,5,213,'El Dorado',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2012,5,213,'El Dorado Hills',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2013,5,195,'El Granada',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2014,5,168,'El Monte',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2015,5,196,'El Nido',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2016,5,214,'El Portal',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2017,5,168,'El Segundo',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2018,5,174,'El Sobrante',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2019,5,177,'El Toro',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2020,5,187,'El Verano',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2021,5,187,'Eldridge',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2022,5,175,'Elk',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2023,5,193,'Elk Creek',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2024,5,188,'Elk Grove',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2025,5,203,'Elmira',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2026,5,188,'Elverta',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2027,5,173,'Emeryville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2028,5,181,'Emigrant Gap',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2029,5,215,'Empire',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2030,5,180,'Encinitas',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2031,5,168,'Encino',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2032,5,167,'Escalon',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2033,5,180,'Escondido',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2034,5,210,'Esparto',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2035,5,169,'Essex',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2036,5,212,'Etna',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2037,5,176,'Eureka',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2038,5,179,'Exeter',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2039,5,188,'Fair Oaks',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2040,5,202,'Fairfax',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2041,5,203,'Fairfield',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2042,5,186,'Fall River Mills',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2043,5,180,'Fallbrook',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2044,5,179,'Farmersville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2045,5,167,'Farmington',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2046,5,169,'Fawnskin',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2047,5,198,'Feather Falls',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2048,5,194,'Fellows',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2049,5,155,'Felton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2050,5,176,'Ferndale',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2051,5,184,'Fiddletown',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2052,5,176,'Fields Landing',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2053,5,209,'Fillmore',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2054,5,216,'Finley',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2055,5,197,'Firebaugh',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2056,5,214,'Fish Camp',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2057,5,197,'Five Points',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2058,5,125,'Floriston',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2059,5,217,'Flournoy',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2060,5,188,'Folsom',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2061,5,169,'Fontana',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2062,5,177,'Foothill Ranch',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2063,5,198,'Forbestown',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2064,5,169,'Forest Falls',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2065,5,202,'Forest Knolls',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2066,5,198,'Forest Ranch',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2067,5,181,'Foresthill',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2068,5,187,'Forestville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2069,5,212,'Forks Of Salmon',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2070,5,170,'Fort Bidwell',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2071,5,175,'Fort Bragg',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2072,5,218,'Fort Dick',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2073,5,169,'Fort Irwin',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2074,5,212,'Fort Jones',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2075,5,176,'Fortuna',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2076,5,177,'Fountain Valley',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2077,5,197,'Fowler',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2078,5,194,'Frazier Park',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2079,5,155,'Freedom',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2080,5,173,'Fremont',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2081,5,167,'French Camp',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2082,5,186,'French Gulch',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2083,5,197,'Fresno',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2084,5,197,'Friant',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2085,5,177,'Fullerton',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2086,5,187,'Fulton',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2087,5,188,'Galt',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2088,5,176,'Garberville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2089,5,177,'Garden Grove',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2090,5,213,'Garden Valley',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2091,5,168,'Gardena',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2092,5,218,'Gasquet',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2093,5,212,'Gazelle',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2094,5,213,'Georgetown',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2095,5,217,'Gerber',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2096,5,187,'Geyserville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2097,5,183,'Gilroy',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2098,5,187,'Glen Ellen',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2099,5,182,'Glencoe',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2100,5,168,'Glendale',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2101,5,168,'Glendora',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2102,5,216,'Glenhaven',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2103,5,193,'Glenn',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2104,5,194,'Glennville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2105,5,181,'Gold Run',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2106,5,211,'Goleta',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2107,5,191,'Gonzales',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2108,5,178,'Goodyears Bar',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2109,5,179,'Goshen',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2110,5,168,'Granada Hills',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2111,5,169,'Grand Terrace',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2112,5,181,'Granite Bay',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2113,5,125,'Grass Valley',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2114,5,187,'Graton',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2115,5,169,'Green Valley Lake',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2116,5,202,'Greenbrae',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2117,5,191,'Greenfield',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2118,5,212,'Greenview',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2119,5,201,'Greenville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2120,5,213,'Greenwood',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2121,5,212,'Grenada',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2122,5,198,'Gridley',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2123,5,189,'Grimes',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2124,5,213,'Grizzly Flats',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2125,5,207,'Groveland',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2126,5,192,'Grover Beach',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2127,5,211,'Guadalupe',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2128,5,175,'Gualala',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2129,5,169,'Guasti',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2130,5,180,'Guatay',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2131,5,187,'Guerneville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2132,5,210,'Guinda',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2133,5,196,'Gustine',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2134,5,168,'Hacienda Heights',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2135,5,195,'Half Moon Bay',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2136,5,193,'Hamilton City',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2137,5,190,'Hanford',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2138,5,212,'Happy Camp',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2139,5,168,'Harbor City',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2140,5,192,'Harmony',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2141,5,186,'Hat Creek',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2142,5,182,'Hathaway Pines',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2143,5,168,'Hawaiian Gardens',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2144,5,168,'Hawthorne',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2145,5,206,'Hayfork',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2146,5,173,'Hayward',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2147,5,187,'Healdsburg',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2148,5,199,'Heber',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2149,5,169,'Helendale',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2150,5,197,'Helm',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2151,5,171,'Hemet',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2152,5,188,'Herald',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2153,5,174,'Hercules',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2154,5,205,'Herlong',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2155,5,168,'Hermosa Beach',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2156,5,169,'Hesperia',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2157,5,215,'Hickman',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2158,5,216,'Hidden Valley Lake',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2159,5,169,'Highland',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2160,5,196,'Hilmar',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2161,5,169,'Hinkley',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2162,5,219,'Hollister',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2163,5,167,'Holt',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2164,5,199,'Holtville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2165,5,183,'Holy City',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2166,5,171,'Homeland',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2167,5,181,'Homewood',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2168,5,176,'Honeydew',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2169,5,188,'Hood',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2170,5,176,'Hoopa',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2171,5,175,'Hopland',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2172,5,212,'Hornbrook',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2173,5,214,'Hornitos',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2174,5,215,'Hughson',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2175,5,197,'Hume',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2176,5,177,'Huntington Beach',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2177,5,168,'Huntington Park',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2178,5,197,'Huron',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2179,5,206,'Hyampom',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2180,5,176,'Hydesville',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2181,5,171,'Idyllwild',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2182,5,186,'Igo',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2183,5,199,'Imperial',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2184,5,180,'Imperial Beach',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2185,5,208,'Independence',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2186,5,171,'Indian Wells',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2187,5,171,'Indio',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2188,5,168,'Inglewood',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2189,5,202,'Inverness',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2190,5,194,'Inyokern',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2191,5,184,'Ione',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2192,5,177,'Irvine',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2193,5,188,'Isleton',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2194,5,179,'Ivanhoe',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2195,5,184,'Jackson',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2196,5,180,'Jacumba',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2197,5,207,'Jamestown',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2198,5,180,'Jamul',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2199,5,205,'Janesville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2200,5,187,'Jenner',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2201,5,194,'Johannesburg',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2202,5,191,'Jolon',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2203,5,169,'Joshua Tree',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2204,5,180,'Julian',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2205,5,206,'Junction City',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2206,5,204,'June Lake',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2207,5,179,'Kaweah',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2208,5,208,'Keeler',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2209,5,194,'Keene',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2210,5,216,'Kelseyville',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2211,5,202,'Kentfield',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2212,5,187,'Kenwood',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2213,5,197,'Kerman',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2214,5,194,'Kernville',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2215,5,190,'Kettleman City',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2216,5,215,'Keyes',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2217,5,191,'King City',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2218,5,181,'Kings Beach',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2219,5,179,'Kings Canyon National Pk',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2220,5,197,'Kingsburg',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2221,5,220,'Kirkwood',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2222,5,184,'Kit Carson',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2223,5,218,'Klamath',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2224,5,212,'Klamath River',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2225,5,176,'Kneeland',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2226,5,210,'Knights Landing',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2227,5,174,'Knightsen',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2228,5,176,'Korbel',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2229,5,213,'Kyburz',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2230,5,168,'La Canada Flintridge',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2231,5,168,'La Crescenta',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2232,5,215,'La Grange',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2233,5,177,'La Habra',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2234,5,195,'La Honda',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2235,5,180,'La Jolla',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2236,5,180,'La Mesa',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2237,5,168,'La Mirada',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2238,5,177,'La Palma',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2239,5,168,'La Puente',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2240,5,171,'La Quinta',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2241,5,168,'La Verne',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2242,5,177,'Ladera Ranch',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2243,5,174,'Lafayette',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2244,5,177,'Laguna Beach',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2245,5,177,'Laguna Hills',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2246,5,177,'Laguna Niguel',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2247,5,177,'Laguna Woods',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2248,5,202,'Lagunitas',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2249,5,169,'Lake Arrowhead',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2250,5,170,'Lake City',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2251,5,171,'Lake Elsinore',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2252,5,177,'Lake Forest',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2253,5,168,'Lake Hughes',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2254,5,194,'Lake Isabella',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2255,5,186,'Lakehead',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2256,5,216,'Lakeport',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2257,5,197,'Lakeshore',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2258,5,180,'Lakeside',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2259,5,168,'Lakewood',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2260,5,194,'Lamont',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2261,5,168,'Lancaster',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2262,5,169,'Landers',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2263,5,202,'Larkspur',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2264,5,167,'Lathrop',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2265,5,197,'Laton',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2266,5,168,'Lawndale',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2267,5,175,'Laytonville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2268,5,196,'Le Grand',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2269,5,194,'Lebec',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2270,5,204,'Lee Vining',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2271,5,175,'Leggett',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2272,5,179,'Lemon Cove',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2273,5,180,'Lemon Grove',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2274,5,190,'Lemoore',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2275,5,206,'Lewiston',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2276,5,170,'Likely',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2277,5,181,'Lincoln',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2278,5,180,'Lincoln Acres',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2279,5,167,'Linden',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2280,5,179,'Lindsay',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2281,5,205,'Litchfield',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2282,5,208,'Little Lake',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2283,5,175,'Little River',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2284,5,168,'Littlerock',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2285,5,221,'Live Oak',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2286,5,173,'Livermore',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2287,5,196,'Livingston',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2288,5,168,'Llano',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2289,5,167,'Lockeford',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2290,5,191,'Lockwood',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2291,5,167,'Lodi',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2292,5,176,'Loleta',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2293,5,169,'Loma Linda',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2294,5,195,'Loma Mar',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2295,5,168,'Lomita',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2296,5,211,'Lompoc',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2297,5,208,'Lone Pine',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2298,5,207,'Long Barn',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2299,5,168,'Long Beach',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2300,5,170,'Lookout',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2301,5,181,'Loomis',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2302,5,177,'Los Alamitos',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2303,5,211,'Los Alamos',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2304,5,183,'Los Altos',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2305,5,168,'Los Angeles',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2306,5,196,'Los Banos',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2307,5,183,'Los Gatos',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2308,5,155,'Los Gatos',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2309,5,217,'Los Molinos',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2310,5,211,'Los Olivos',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2311,5,192,'Los Osos',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2312,5,194,'Lost Hills',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2313,5,213,'Lotus',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2314,5,216,'Lower Lake',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2315,5,178,'Loyalton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2316,5,216,'Lucerne',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2317,5,169,'Lucerne Valley',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2318,5,169,'Ludlow',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2319,5,168,'Lynwood',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2320,5,169,'Lytle Creek',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2321,5,212,'Macdoel',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2322,5,206,'Mad River',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2323,5,205,'Madeline',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2324,5,172,'Madera',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2325,5,210,'Madison',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2326,5,198,'Magalia',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2327,5,168,'Malibu',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2328,5,204,'Mammoth Lakes',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2329,5,175,'Manchester',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2330,5,168,'Manhattan Beach',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2331,5,167,'Manteca',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2332,5,217,'Manton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2333,5,171,'March Air Reserve Base',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2334,5,194,'Maricopa',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2335,5,191,'Marina',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2336,5,168,'Marina Del Rey',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2337,5,214,'Mariposa',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2338,5,220,'Markleeville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2339,5,202,'Marshall',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2340,5,184,'Martell',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2341,5,174,'Martinez',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2342,5,200,'Marysville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2343,5,188,'Mather',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2344,5,189,'Maxwell',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2345,5,168,'Maywood',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2346,5,194,'Mc Farland',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2347,5,194,'Mc Kittrick',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2348,5,205,'Mcarthur',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2349,5,188,'Mcclellan',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2350,5,212,'Mccloud',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2351,5,176,'Mckinleyville',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2352,5,201,'Meadow Valley',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2353,5,181,'Meadow Vista',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2354,5,171,'Mecca',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2355,5,175,'Mendocino',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2356,5,197,'Mendota',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2357,5,171,'Menifee',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2358,5,195,'Menlo Park',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2359,5,169,'Mentone',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2360,5,196,'Merced',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2361,5,221,'Meridian',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2362,5,207,'Mi Wuk Village',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2363,5,216,'Middletown',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2364,5,214,'Midpines',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2365,5,177,'Midway City',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2366,5,205,'Milford',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2367,5,217,'Mill Creek',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2368,5,202,'Mill Valley',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2369,5,195,'Millbrae',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2370,5,186,'Millville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2371,5,183,'Milpitas',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2372,5,217,'Mineral',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2373,5,171,'Mira Loma',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2374,5,197,'Miramonte',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2375,5,176,'Miranda',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2376,5,168,'Mission Hills',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2377,5,177,'Mission Viejo',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2378,5,207,'Moccasin',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2379,5,215,'Modesto',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2380,5,194,'Mojave',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2381,5,182,'Mokelumne Hill',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2382,5,197,'Mono Hot Springs',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2383,5,168,'Monrovia',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2384,5,212,'Montague',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2385,5,195,'Montara',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2386,5,169,'Montclair',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2387,5,187,'Monte Rio',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2388,5,168,'Montebello',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2389,5,191,'Monterey',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2390,5,168,'Monterey Park',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2391,5,186,'Montgomery Creek',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2392,5,168,'Montrose',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2393,5,209,'Moorpark',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2394,5,174,'Moraga',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2395,5,171,'Moreno Valley',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2396,5,183,'Morgan Hill',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2397,5,169,'Morongo Valley',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2398,5,192,'Morro Bay',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2399,5,195,'Moss Beach',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2400,5,191,'Moss Landing',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2401,5,213,'Mount Aukum',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2402,5,183,'Mount Hamilton',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2403,5,155,'Mount Hermon',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2404,5,180,'Mount Laguna',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2405,5,212,'Mount Shasta',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2406,5,168,'Mount Wilson',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2407,5,171,'Mountain Center',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2408,5,169,'Mountain Pass',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2409,5,182,'Mountain Ranch',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2410,5,183,'Mountain View',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2411,5,168,'Mt Baldy',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2412,5,182,'Murphys',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2413,5,171,'Murrieta',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2414,5,176,'Myers Flat',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2415,5,185,'Napa',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2416,5,180,'National City',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2417,5,175,'Navarro',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2418,5,169,'Needles',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2419,5,198,'Nelson',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2420,5,125,'Nevada City',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2421,5,183,'New Almaden',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2422,5,211,'New Cuyama',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2423,5,173,'Newark',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2424,5,169,'Newberry Springs',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2425,5,209,'Newbury Park',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2426,5,181,'Newcastle',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2427,5,168,'Newhall',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2428,5,215,'Newman',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2429,5,177,'Newport Beach',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2430,5,177,'Newport Coast',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2431,5,202,'Nicasio',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2432,5,216,'Nice',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2433,5,221,'Nicolaus',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2434,5,199,'Niland',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2435,5,192,'Nipomo',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2436,5,169,'Nipton',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2437,5,171,'Norco',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2438,5,125,'Norden',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2439,5,172,'North Fork',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2440,5,188,'North Highlands',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2441,5,168,'North Hills',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2442,5,168,'North Hollywood',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2443,5,171,'North Palm Springs',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2444,5,125,'North San Juan',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2445,5,168,'Northridge',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2446,5,168,'Norwalk',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2447,5,202,'Novato',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2448,5,205,'Nubieber',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2449,5,171,'Nuevo',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2450,5,172,'O Neals',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2451,5,209,'Oak Park',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2452,5,186,'Oak Run',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2453,5,209,'Oak View',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2454,5,215,'Oakdale',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2455,5,172,'Oakhurst',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2456,5,173,'Oakland',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2457,5,174,'Oakley',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2458,5,185,'Oakville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2459,5,186,'Obrien',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2460,5,187,'Occidental',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2461,5,192,'Oceano',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2462,5,180,'Oceanside',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2463,5,199,'Ocotillo',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2464,5,209,'Ojai',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2465,5,208,'Olancha',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2466,5,186,'Old Station',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2467,5,202,'Olema',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2468,5,200,'Olivehurst',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2469,5,181,'Olympic Valley',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2470,5,169,'Ontario',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2471,5,194,'Onyx',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2472,5,177,'Orange',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2473,5,197,'Orange Cove',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2474,5,188,'Orangevale',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2475,5,200,'Oregon House',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2476,5,176,'Orick',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2477,5,174,'Orinda',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2478,5,193,'Orland',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2479,5,176,'Orleans',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2480,5,169,'Oro Grande',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2481,5,179,'Orosi',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2482,5,198,'Oroville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2483,5,209,'Oxnard',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2484,5,191,'Pacific Grove',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2485,5,168,'Pacific Palisades',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2486,5,195,'Pacifica',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2487,5,168,'Pacoima',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2488,5,219,'Paicines',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2489,5,180,'Pala',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2490,5,198,'Palermo',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2491,5,171,'Palm Desert',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2492,5,171,'Palm Springs',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2493,5,168,'Palmdale',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2494,5,183,'Palo Alto',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2495,5,186,'Palo Cedro',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2496,5,199,'Palo Verde',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2497,5,180,'Palomar Mountain',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2498,5,168,'Palos Verdes Peninsula',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2499,5,168,'Panorama City',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2500,5,198,'Paradise',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2501,5,168,'Paramount',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2502,5,169,'Parker Dam',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2503,5,197,'Parlier',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2504,5,168,'Pasadena',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2505,5,217,'Paskenta',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2506,5,192,'Paso Robles',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2507,5,215,'Patterson',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2508,5,169,'Patton',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2509,5,180,'Pauma Valley',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2510,5,217,'Paynes Creek',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2511,5,168,'Pearblossom',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2512,5,191,'Pebble Beach',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2513,5,125,'Penn Valley',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2514,5,187,'Penngrove',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2515,5,181,'Penryn',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2516,5,171,'Perris',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2517,5,195,'Pescadero',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2518,5,187,'Petaluma',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2519,5,176,'Petrolia',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2520,5,169,'Phelan',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2521,5,176,'Phillipsville',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2522,5,175,'Philo',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2523,5,168,'Pico Rivera',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2524,5,173,'Piedmont',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2525,5,197,'Piedra',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2526,5,175,'Piercy',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2527,5,213,'Pilot Hill',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2528,5,184,'Pine Grove',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2529,5,180,'Pine Valley',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2530,5,207,'Pinecrest',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2531,5,174,'Pinole',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2532,5,169,'Pinon Hills',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2533,5,184,'Pioneer',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2534,5,169,'Pioneertown',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2535,5,209,'Piru',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2536,5,192,'Pismo Beach',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2537,5,174,'Pittsburg',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2538,5,179,'Pixley',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2539,5,177,'Placentia',1,103,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2540,5,213,'Placerville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2541,5,196,'Planada',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2542,5,186,'Platina',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2543,5,168,'Playa Del Rey',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2544,5,221,'Pleasant Grove',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2545,5,174,'Pleasant Hill',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2546,5,173,'Pleasanton',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2547,5,184,'Plymouth',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2548,5,175,'Point Arena',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2549,5,209,'Point Mugu Nawc',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2550,5,202,'Point Reyes Station',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2551,5,213,'Pollock Pines',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2552,5,168,'Pomona',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2553,5,185,'Pope Valley',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2554,5,174,'Port Costa',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2555,5,209,'Port Hueneme',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2556,5,209,'Port Hueneme Cbc Base',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2557,5,168,'Porter Ranch',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2558,5,179,'Porterville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2559,5,201,'Portola',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2560,5,195,'Portola Vally',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2561,5,179,'Posey',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2562,5,180,'Potrero',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2563,5,175,'Potter Valley',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2564,5,180,'Poway',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2565,5,197,'Prather',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2566,5,189,'Princeton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2567,5,217,'Proberta',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2568,5,201,'Quincy',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2569,5,200,'Rackerby',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2570,5,182,'Rail Road Flat',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2571,5,197,'Raisin City',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2572,5,180,'Ramona',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2573,5,180,'Ranchita',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2574,5,188,'Rancho Cordova',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2575,5,169,'Rancho Cucamonga',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2576,5,171,'Rancho Mirage',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2577,5,168,'Rancho Palos Verdes',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2578,5,180,'Rancho Santa Fe',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2579,5,177,'Rancho Santa Margarita',1,107,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2580,5,194,'Randsburg',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2581,5,205,'Ravendale',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2582,5,172,'Raymond',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2583,5,217,'Red Bluff',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2584,5,169,'Red Mountain',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2585,5,176,'Redcrest',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2586,5,186,'Redding',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2587,5,169,'Redlands',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2588,5,168,'Redondo Beach',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2589,5,176,'Redway',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2590,5,195,'Redwood City',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2591,5,183,'Redwood Estates',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2592,5,175,'Redwood Valley',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2593,5,197,'Reedley',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2594,5,188,'Represa',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2595,5,213,'Rescue',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2596,5,168,'Reseda',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2597,5,169,'Rialto',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2598,5,179,'Richgrove',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2599,5,174,'Richmond',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2600,5,198,'Richvale',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2601,5,194,'Ridgecrest',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2602,5,169,'Rimforest',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2603,5,176,'Rio Dell',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2604,5,188,'Rio Linda',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2605,5,187,'Rio Nido',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2606,5,221,'Rio Oso',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2607,5,203,'Rio Vista',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2608,5,167,'Ripon',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2609,5,184,'River Pines',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2610,5,215,'Riverbank',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2611,5,197,'Riverdale',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2612,5,171,'Riverside',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2613,5,221,'Robbins',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2614,5,181,'Rocklin',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2615,5,174,'Rodeo',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2616,5,187,'Rohnert Park',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2617,5,194,'Rosamond',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2618,5,168,'Rosemead',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2619,5,181,'Roseville',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2620,5,202,'Ross',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2621,5,125,'Rough And Ready',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2622,5,186,'Round Mountain',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2623,5,168,'Rowland Heights',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2624,5,210,'Rumsey',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2625,5,169,'Running Springs',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2626,5,185,'Rutherford',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2627,5,188,'Ryde',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2628,5,188,'Sacramento',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2629,5,185,'Saint Helena',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2630,5,215,'Salida',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2631,5,191,'Salinas',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2632,5,199,'Salton City',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2633,5,206,'Salyer',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2634,5,176,'Samoa',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2635,5,182,'San Andreas',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2636,5,202,'San Anselmo',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2637,5,191,'San Ardo',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2638,5,169,'San Bernardino',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2639,5,195,'San Bruno',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2640,5,195,'San Carlos',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2641,5,177,'San Clemente',1,113,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2642,5,180,'San Diego',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2643,5,168,'San Dimas',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2644,5,168,'San Fernando',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2645,5,222,'San Francisco',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2646,5,195,'San Francisco',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2647,5,168,'San Gabriel',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2648,5,202,'San Geronimo',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2649,5,195,'San Gregorio',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2650,5,171,'San Jacinto',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2651,5,197,'San Joaquin',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2652,5,183,'San Jose',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2653,5,219,'San Juan Bautista',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2654,5,177,'San Juan Capistrano',1,114,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2655,5,173,'San Leandro',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2656,5,173,'San Lorenzo',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2657,5,191,'San Lucas',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2658,5,192,'San Luis Obispo',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2659,5,180,'San Luis Rey',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2660,5,180,'San Marcos',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2661,5,168,'San Marino',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2662,5,183,'San Martin',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2663,5,195,'San Mateo',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2664,5,192,'San Miguel',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2665,5,174,'San Pablo',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2666,5,168,'San Pedro',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2667,5,202,'San Quentin',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2668,5,202,'San Rafael',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2669,5,174,'San Ramon',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2670,5,192,'San Simeon',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2671,5,180,'San Ysidro',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2672,5,197,'Sanger',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2673,5,177,'Santa Ana',1,115,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2674,5,211,'Santa Barbara',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2675,5,183,'Santa Clara',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2676,5,168,'Santa Clarita',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2677,5,155,'Santa Cruz',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2678,5,168,'Santa Fe Springs',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2679,5,192,'Santa Margarita',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2680,5,211,'Santa Maria',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2681,5,168,'Santa Monica',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2682,5,209,'Santa Paula',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2683,5,196,'Santa Rita Park',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2684,5,187,'Santa Rosa',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2685,5,211,'Santa Ynez',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2686,5,180,'Santa Ysabel',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2687,5,180,'Santee',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2688,5,183,'Saratoga',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2689,5,202,'Sausalito',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2690,5,176,'Scotia',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2691,5,212,'Scott Bar',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2692,5,155,'Scotts Valley',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2693,5,177,'Seal Beach',1,116,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2694,5,191,'Seaside',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2695,5,187,'Sebastopol',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2696,5,199,'Seeley',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2697,5,212,'Seiad Valley',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2698,5,197,'Selma',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2699,5,179,'Sequoia National Park',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2700,5,194,'Shafter',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2701,5,192,'Shandon',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2702,5,186,'Shasta',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2703,5,186,'Shasta Lake',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2704,5,197,'Shaver Lake',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2705,5,182,'Sheep Ranch',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2706,5,181,'Sheridan',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2707,5,168,'Sherman Oaks',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2708,5,213,'Shingle Springs',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2709,5,186,'Shingletown',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2710,5,208,'Shoshone',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2711,5,178,'Sierra City',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2712,5,168,'Sierra Madre',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2713,5,178,'Sierraville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2714,5,168,'Signal Hill',1,102,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2715,5,177,'Silverado',1,117,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2716,5,209,'Simi Valley',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2717,5,169,'Skyforest',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2718,5,188,'Sloughhouse',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2719,5,125,'Smartville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2720,5,218,'Smith River',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2721,5,196,'Snelling',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2722,5,125,'Soda Springs',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2723,5,180,'Solana Beach',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2724,5,191,'Soledad',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2725,5,211,'Solvang',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2726,5,213,'Somerset',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2727,5,212,'Somes Bar',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2728,5,209,'Somis',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2729,5,187,'Sonoma',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2730,5,207,'Sonora',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2731,5,155,'Soquel',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2732,5,207,'Soulsbyville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2733,5,196,'South Dos Palos',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2734,5,168,'South El Monte',1,103,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2735,5,168,'South Gate',1,104,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2736,5,213,'South Lake Tahoe',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2737,5,168,'South Pasadena',1,105,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2738,5,195,'South San Francisco',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2739,5,191,'Spreckels',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2740,5,180,'Spring Valley',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2741,5,179,'Springville',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2742,5,197,'Squaw Valley',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2743,5,207,'Standard',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2744,5,205,'Standish',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2745,5,183,'Stanford',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2746,5,177,'Stanton',1,123,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2747,5,168,'Stevenson Ranch',1,106,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2748,5,196,'Stevinson',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2749,5,187,'Stewarts Point',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2750,5,202,'Stinson Beach',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2751,5,198,'Stirling City',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2752,5,167,'Stockton',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2753,5,189,'Stonyford',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2754,5,201,'Storrie',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2755,5,190,'Stratford',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2756,5,179,'Strathmore',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2757,5,207,'Strawberry',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2758,5,200,'Strawberry Valley',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2759,5,168,'Studio City',1,107,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2760,5,169,'Sugarloaf',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2761,5,203,'Suisun City',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2762,5,179,'Sultana',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2763,5,211,'Summerland',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2764,5,171,'Sun City',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2765,5,168,'Sun Valley',1,108,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2766,5,168,'Sunland',1,109,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2767,5,183,'Sunnyvale',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2768,5,173,'Sunol',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2769,5,177,'Sunset Beach',1,127,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2770,5,177,'Surfside',1,128,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2771,5,205,'Susanville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2772,5,221,'Sutter',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2773,5,184,'Sutter Creek',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2774,5,168,'Sylmar',1,110,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2775,5,194,'Taft',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2776,5,181,'Tahoe City',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2777,5,181,'Tahoe Vista',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2778,5,213,'Tahoma',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2779,5,175,'Talmage',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2780,5,168,'Tarzana',1,111,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2781,5,201,'Taylorsville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2782,5,180,'Tecate',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2783,5,208,'Tecopa',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2784,5,194,'Tehachapi',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2785,5,217,'Tehama',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2786,5,171,'Temecula',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2787,5,168,'Temple City',1,112,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2788,5,192,'Templeton',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2789,5,205,'Termo',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2790,5,179,'Terra Bella',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2791,5,187,'The Sea Ranch',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2792,5,171,'Thermal',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2793,5,167,'Thornton',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2794,5,209,'Thousand Oaks',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2795,5,171,'Thousand Palms',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2796,5,179,'Three Rivers',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2797,5,179,'Tipton',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2798,5,197,'Tollhouse',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2799,5,168,'Toluca Lake',1,113,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2800,5,202,'Tomales',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2801,5,168,'Topanga',1,114,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2802,5,204,'Topaz',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2803,5,168,'Torrance',1,115,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2804,5,177,'Trabuco Canyon',1,134,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2805,5,167,'Tracy',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2806,5,197,'Tranquillity',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2807,5,179,'Traver',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2808,5,203,'Travis Afb',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2809,5,219,'Tres Pinos',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2810,5,176,'Trinidad',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2811,5,206,'Trinity Center',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2812,5,169,'Trona',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2813,5,125,'Truckee',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2814,5,168,'Tujunga',1,116,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2815,5,179,'Tulare',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2816,5,212,'Tulelake',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2817,5,207,'Tuolumne',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2818,5,194,'Tupman',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2819,5,215,'Turlock',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2820,5,177,'Tustin',1,136,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2821,5,201,'Twain',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2822,5,207,'Twain Harte',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2823,5,169,'Twentynine Palms',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2824,5,213,'Twin Bridges',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2825,5,169,'Twin Peaks',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2826,5,175,'Ukiah',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2827,5,173,'Union City',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2828,5,168,'Universal City',1,117,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2829,5,169,'Upland',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2830,5,216,'Upper Lake',1,125,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2831,5,203,'Vacaville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2832,5,168,'Valencia',1,118,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2833,5,182,'Vallecito',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2834,5,203,'Vallejo',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2835,5,180,'Valley Center',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2836,5,187,'Valley Ford',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2837,5,182,'Valley Springs',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2838,5,168,'Valley Village',1,119,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2839,5,168,'Valyermo',1,120,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2840,5,168,'Van Nuys',1,121,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2841,5,168,'Venice',1,122,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2842,5,209,'Ventura',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2843,5,168,'Verdugo City',1,123,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2844,5,167,'Vernalis',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2845,5,167,'Victor',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2846,5,169,'Victorville',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2847,5,169,'Vidal',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2848,5,187,'Villa Grande',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2849,5,177,'Villa Park',1,143,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2850,5,217,'Vina',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2851,5,187,'Vineburg',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2852,5,201,'Vinton',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2853,5,179,'Visalia',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2854,5,180,'Vista',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2855,5,184,'Volcano',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2856,5,182,'Wallace',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2857,5,168,'Walnut',1,124,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2858,5,174,'Walnut Creek',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2859,5,188,'Walnut Grove',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2860,5,180,'Warner Springs',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2861,5,194,'Wasco',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2862,5,125,'Washington',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2863,5,215,'Waterford',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2864,5,155,'Watsonville',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2865,5,179,'Waukena',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2866,5,206,'Weaverville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2867,5,212,'Weed',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2868,5,181,'Weimar',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2869,5,194,'Weldon',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2870,5,205,'Wendel',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2871,5,176,'Weott',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2872,5,168,'West Covina',1,125,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2873,5,168,'West Hills',1,126,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2874,5,168,'West Hollywood',1,127,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2875,5,182,'West Point',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2876,5,210,'West Sacramento',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2877,5,168,'Westlake Village',1,128,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2878,5,209,'Westlake Village',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2879,5,215,'Westley',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2880,5,177,'Westminster',1,154,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2881,5,199,'Westmorland',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2882,5,175,'Westport',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2883,5,205,'Westwood',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2884,5,200,'Wheatland',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2885,5,186,'Whiskeytown',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2886,5,171,'White Water',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2887,5,176,'Whitethorn',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2888,5,186,'Whitmore',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2889,5,168,'Whittier',1,129,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2890,5,171,'Wildomar',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2891,5,189,'Williams',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2892,5,175,'Willits',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2893,5,176,'Willow Creek',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2894,5,193,'Willows',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2895,5,168,'Wilmington',1,130,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2896,5,182,'Wilseyville',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2897,5,188,'Wilton',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2898,5,171,'Winchester',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2899,5,187,'Windsor',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2900,5,168,'Winnetka',1,131,'2022-05-11 11:57:08','2022-05-17 11:49:12',NULL),(2901,5,199,'Winterhaven',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2902,5,210,'Winters',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2903,5,196,'Winton',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2904,5,172,'Wishon',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2905,5,216,'Witter Springs',1,136,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2906,5,194,'Wofford Heights',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2907,5,202,'Woodacre',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2908,5,167,'Woodbridge',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2909,5,179,'Woodlake',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2910,5,210,'Woodland',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2911,5,168,'Woodland Hills',1,132,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2912,5,194,'Woody',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2913,5,169,'Wrightwood',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2914,5,169,'Yermo',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2915,5,179,'Yettem',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2916,5,210,'Yolo',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2917,5,177,'Yorba Linda',1,160,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2918,5,175,'Yorkville',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2919,5,214,'Yosemite National Park',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2920,5,185,'Yountville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2921,5,212,'Yreka',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2922,5,221,'Yuba City',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2923,5,169,'Yucaipa',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2924,5,169,'Yucca Valley',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2925,5,210,'Zamora',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2926,5,206,'Zenia',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2927,6,223,'Agate',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2928,6,224,'Aguilar',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2929,6,71,'Akron',1,199,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(2930,6,225,'Alamosa',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2931,6,226,'Allenspark',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2932,6,227,'Alma',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2933,6,228,'Almont',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2934,6,111,'Amherst',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2935,6,71,'Anton',1,750,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(2936,6,229,'Antonito',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2937,6,230,'Arapahoe',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2938,6,231,'Arboles',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2939,6,232,'Arlington',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2940,6,147,'Arriba',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2941,6,30,'Arvada',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2942,6,233,'Aspen',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2943,6,124,'Atwood',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2944,6,234,'Ault',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2945,6,235,'Aurora',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2946,6,236,'Aurora',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2947,6,237,'Austin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2948,6,238,'Avon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2949,6,239,'Avondale',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2950,6,227,'Bailey',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2951,6,238,'Basalt',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2952,6,240,'Battlement Mesa',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2953,6,241,'Bayfield',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2954,6,242,'Bedrock',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2955,6,243,'Bellvue',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2956,6,235,'Bennett',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2957,6,243,'Berthoud',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2958,6,244,'Bethune',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2959,6,239,'Beulah',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2960,6,245,'Black Hawk',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2961,6,246,'Blanca',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2962,6,224,'Boncarbo',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2963,6,238,'Bond',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2964,6,239,'Boone',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2965,6,226,'Boulder',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2966,6,224,'Branson',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2967,6,247,'Breckenridge',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2968,6,234,'Briggsdale',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2969,6,235,'Brighton',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2970,6,234,'Brighton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2971,6,248,'Broomfield',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2972,6,30,'Broomfield',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2973,6,82,'Brush',1,3358,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(2974,6,249,'Buena Vista',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2975,6,30,'Buffalo Creek',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2976,6,244,'Burlington',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2977,6,238,'Burns',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2978,6,236,'Byers',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2979,6,250,'Cahone',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2980,6,251,'Calhan',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2981,6,252,'Campo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2982,6,253,'Canon City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2983,6,229,'Capulin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2984,6,240,'Carbondale',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2985,6,234,'Carr',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2986,6,251,'Cascade',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2987,6,254,'Castle Rock',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2988,6,237,'Cedaredge',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2989,6,255,'Center',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2990,6,245,'Central City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2991,6,246,'Chama',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2992,6,256,'Cheraw',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2993,6,230,'Cheyenne Wells',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2994,6,231,'Chimney Rock',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2995,6,231,'Chromo',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2996,6,242,'Cimarron',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2997,6,257,'Clark',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2998,6,258,'Clifton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(2999,6,216,'Climax',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3000,6,253,'Coal Creek',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3001,6,253,'Coaldale',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3002,6,66,'Coalmont',1,5376,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(3003,6,258,'Collbran',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3004,6,239,'Colorado City',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3005,6,251,'Colorado Springs',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3006,6,235,'Commerce City',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3007,6,227,'Como',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3008,6,229,'Conejos',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3009,6,30,'Conifer',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3010,6,71,'Cope',1,5816,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(3011,6,259,'Cortez',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3012,6,237,'Cory',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3013,6,253,'Cotopaxi',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3014,6,66,'Cowdrey',1,6040,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(3015,6,260,'Craig',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3016,6,237,'Crawford',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3017,6,261,'Creede',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3018,6,228,'Crested Butte',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3019,6,262,'Crestone',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3020,6,263,'Cripple Creek',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3021,6,124,'Crook',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3022,6,264,'Crowley',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3023,6,234,'Dacono',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3024,6,258,'De Beque',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3025,6,236,'Deer Trail',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3026,6,255,'Del Norte',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3027,6,237,'Delta',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3028,6,235,'Denver',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3029,6,236,'Denver',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3030,6,265,'Denver',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3031,6,30,'Denver',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3032,6,247,'Dillon',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3033,6,260,'Dinosaur',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3034,6,263,'Divide',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3035,6,259,'Dolores',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3036,6,250,'Dove Creek',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3037,6,243,'Drake',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3038,6,266,'Dumont',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3039,6,235,'Dupont',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3040,6,241,'Durango',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3041,6,232,'Eads',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3042,6,238,'Eagle',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3043,6,235,'Eastlake',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3044,6,234,'Eaton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3045,6,237,'Eckert',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3046,6,166,'Eckley',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3047,6,238,'Edwards',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3048,6,267,'Egnar',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3049,6,251,'Elbert',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3050,6,226,'Eldorado Springs',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3051,6,223,'Elizabeth',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3052,6,266,'Empire',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3053,6,236,'Englewood',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3054,6,226,'Erie',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3055,6,243,'Estes Park',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3056,6,234,'Evans',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3057,6,30,'Evergreen',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3058,6,227,'Fairplay',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3059,6,234,'Firestone',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3060,6,244,'Flagler',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3061,6,124,'Fleming',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3062,6,253,'Florence',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3063,6,263,'Florissant',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3064,6,243,'Fort Collins',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3065,6,246,'Fort Garland',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3066,6,234,'Fort Lupton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3067,6,268,'Fort Lyon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3068,6,82,'Fort Morgan',1,9387,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(3069,6,251,'Fountain',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3070,6,256,'Fowler',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3071,6,254,'Franktown',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3072,6,269,'Fraser',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3073,6,234,'Frederick',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3074,6,247,'Frisco',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3075,6,258,'Fruita',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3076,6,234,'Galeton',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3077,6,270,'Garcia',1,9888,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3078,6,271,'Gardner',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3079,6,258,'Gateway',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3080,6,147,'Genoa',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3081,6,266,'Georgetown',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3082,6,234,'Gilcrest',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3083,6,234,'Gill',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3084,6,258,'Glade Park',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3085,6,243,'Glen Haven',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3086,6,240,'Glenwood Springs',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3087,6,30,'Golden',1,104,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3088,6,272,'Granada',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3089,6,269,'Granby',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3090,6,258,'Grand Junction',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3091,6,269,'Grand Lake',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3092,6,249,'Granite',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3093,6,227,'Grant',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3094,6,234,'Greeley',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3095,6,251,'Green Mountain Falls',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3096,6,234,'Grover',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3097,6,227,'Guffey',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3098,6,228,'Gunnison',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3099,6,238,'Gypsum',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3100,6,260,'Hamilton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3101,6,272,'Hartman',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3102,6,227,'Hartsel',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3103,6,268,'Hasty',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3104,6,232,'Haswell',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3105,6,111,'Haxtun',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3106,6,257,'Hayden',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3107,6,235,'Henderson',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3108,6,234,'Hereford',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3109,6,241,'Hesperus',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3110,6,82,'Hillrose',1,12140,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(3111,6,253,'Hillside',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3112,6,224,'Hoehne',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3113,6,272,'Holly',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3114,6,111,'Holyoke',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3115,6,255,'Homelake',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3116,6,225,'Hooper',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3117,6,269,'Hot Sulphur Springs',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3118,6,237,'Hotchkiss',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3119,6,253,'Howard',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3120,6,234,'Hudson',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3121,6,147,'Hugo',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3122,6,226,'Hygiene',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3123,6,266,'Idaho Springs',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3124,6,166,'Idalia',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3125,6,30,'Idledale',1,131,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3126,6,241,'Ignacio',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3127,6,124,'Iliff',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3128,6,30,'Indian Hills',1,134,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3129,6,226,'Jamestown',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3130,6,246,'Jaroso',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3131,6,227,'Jefferson',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3132,6,166,'Joes',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3133,6,234,'Johnstown',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3134,6,273,'Julesburg',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3135,6,147,'Karval',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3136,6,234,'Keenesburg',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3137,6,234,'Kersey',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3138,6,224,'Kim',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3139,6,223,'Kiowa',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3140,6,166,'Kirk',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3141,6,230,'Kit Carson',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3142,6,30,'Kittredge',1,147,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3143,6,269,'Kremmling',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3144,6,229,'La Jara',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3145,6,256,'La Junta',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3146,6,234,'La Salle',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3147,6,271,'La Veta',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3148,6,226,'Lafayette',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3149,6,274,'Lake City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3150,6,227,'Lake George',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3151,6,272,'Lamar',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3152,6,243,'Laporte',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3153,6,254,'Larkspur',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3154,6,268,'Las Animas',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3155,6,237,'Lazear',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3156,6,216,'Leadville',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3157,6,259,'Lewis',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3158,6,147,'Limon',1,102,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3159,6,71,'Lindon',1,15184,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(3160,6,236,'Littleton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3161,6,254,'Littleton',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3162,6,30,'Littleton',1,15316,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3163,6,243,'Livermore',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3164,6,82,'Log Lane Village',1,15411,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(3165,6,258,'Loma',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3166,6,226,'Longmont',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3167,6,234,'Longmont',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3168,6,226,'Louisville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3169,6,254,'Louviers',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3170,6,243,'Loveland',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3171,6,234,'Lucerne',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3172,6,226,'Lyons',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3173,6,258,'Mack',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3174,6,229,'Manassa',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3175,6,259,'Mancos',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3176,6,251,'Manitou Springs',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3177,6,256,'Manzanola',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3178,6,241,'Marvel',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3179,6,243,'Masonville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3180,6,223,'Matheson',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3181,6,260,'Maybell',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3182,6,268,'Mc Clave',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3183,6,238,'Mc Coy',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3184,6,234,'Mead',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3185,6,275,'Meeker',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3186,6,233,'Meredith',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3187,6,124,'Merino',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3188,6,258,'Mesa',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3189,6,259,'Mesa Verde National Park',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3190,6,234,'Milliken',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3191,6,238,'Minturn',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3192,6,224,'Model',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3193,6,262,'Moffat',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3194,6,258,'Molina',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3195,6,249,'Monarch',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3196,6,255,'Monte Vista',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3197,6,242,'Montrose',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3198,6,251,'Monument',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3199,6,30,'Morrison',1,18005,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3200,6,225,'Mosca',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3201,6,249,'Nathrop',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3202,6,242,'Naturita',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3203,6,226,'Nederland',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3204,6,240,'New Castle',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3205,6,234,'New Raymer',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3206,6,226,'Niwot',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3207,6,267,'Norwood',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3208,6,242,'Nucla',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3209,6,234,'Nunn',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3210,6,257,'Oak Creek',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3211,6,228,'Ohio City',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3212,6,242,'Olathe',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3213,6,264,'Olney Springs',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3214,6,267,'Ophir',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3215,6,82,'Orchard',1,20015,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(3216,6,264,'Ordway',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3217,6,71,'Otis',1,20166,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(3218,6,276,'Ouray',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3219,6,273,'Ovid',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3220,6,124,'Padroni',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3221,6,231,'Pagosa Springs',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3222,6,258,'Palisade',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3223,6,251,'Palmer Lake',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3224,6,111,'Paoli',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3225,6,237,'Paonia',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3226,6,240,'Parachute',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3227,6,242,'Paradox',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3228,6,254,'Parker',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3229,6,228,'Parlin',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3230,6,269,'Parshall',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3231,6,124,'Peetz',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3232,6,253,'Penrose',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3233,6,251,'Peyton',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3234,6,257,'Phippsburg',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3235,6,234,'Pierce',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3236,6,30,'Pine',1,211,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(3237,6,226,'Pinecliffe',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3238,6,228,'Pitkin',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3239,6,267,'Placerville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3240,6,234,'Platteville',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3241,6,259,'Pleasant View',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3242,6,249,'Poncha Springs',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3243,6,228,'Powderhorn',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3244,6,252,'Pritchett',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3245,6,239,'Pueblo',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3246,6,251,'Ramah',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3247,6,66,'Rand',1,167,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3248,6,275,'Rangely',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3249,6,238,'Red Cliff',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3250,6,243,'Red Feather Lakes',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3251,6,242,'Redvale',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3252,6,250,'Rico',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3253,6,276,'Ridgway',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3254,6,240,'Rifle',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3255,6,253,'Rockvale',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3256,6,256,'Rocky Ford',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3257,6,234,'Roggen',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3258,6,245,'Rollinsville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3259,6,229,'Romeo',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3260,6,251,'Rush',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3261,6,239,'Rye',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3262,6,262,'Saguache',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3263,6,249,'Salida',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3264,6,246,'San Luis',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3265,6,246,'San Pablo',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3266,6,229,'Sanford',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3267,6,262,'Sargents',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3268,6,254,'Sedalia',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3269,6,273,'Sedgwick',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3270,6,244,'Seibert',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3271,6,234,'Severance',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3272,6,227,'Shawnee',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3273,6,232,'Sheridan Lake',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3274,6,240,'Silt',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3275,6,266,'Silver Plume',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3276,6,247,'Silverthorne',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3277,6,277,'Silverton',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3278,6,223,'Simla',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3279,6,260,'Slater',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3280,6,233,'Snowmass',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3281,6,233,'Snowmass Village',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3282,6,82,'Snyder',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3283,6,228,'Somerset',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3284,6,255,'South Fork',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3285,6,252,'Springfield',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3286,6,257,'Steamboat Springs',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3287,6,124,'Sterling',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3288,6,234,'Stoneham',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3289,6,235,'Strasburg',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3290,6,244,'Stratton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3291,6,264,'Sugar City',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3292,6,256,'Swink',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3293,6,269,'Tabernash',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3294,6,267,'Telluride',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3295,6,243,'Timnath',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3296,6,257,'Toponas',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3297,6,259,'Towaoc',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3298,6,224,'Trinchera',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3299,6,224,'Trinidad',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3300,6,216,'Twin Lakes',1,122,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3301,6,252,'Two Buttes',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3302,6,251,'U S A F Academy',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3303,6,238,'Vail',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3304,6,166,'Vernon',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3305,6,263,'Victor',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3306,6,252,'Vilas',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3307,6,262,'Villa Grove',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3308,6,244,'Vona',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3309,6,66,'Walden',1,203,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3310,6,271,'Walsenburg',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3311,6,252,'Walsh',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3312,6,226,'Ward',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3313,6,235,'Watkins',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3314,6,82,'Weldona',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3315,6,243,'Wellington',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3316,6,278,'Westcliffe',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3317,6,235,'Westminster',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3318,6,224,'Weston',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3319,6,278,'Wetmore',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3320,6,30,'Wheat Ridge',1,292,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3321,6,258,'Whitewater',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3322,6,82,'Wiggins',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3323,6,230,'Wild Horse',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3324,6,272,'Wiley',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3325,6,234,'Windsor',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3326,6,269,'Winter Park',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3327,6,238,'Wolcott',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3328,6,263,'Woodland Park',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3329,6,71,'Woodrow',1,395,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3330,6,233,'Woody Creek',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3331,6,166,'Wray',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3332,6,257,'Yampa',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3333,6,259,'Yellow Jacket',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3334,6,251,'Yoder',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3335,6,166,'Yuma',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3336,7,279,'Abington',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3337,7,280,'Amston',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3338,7,280,'Andover',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3339,7,281,'Ansonia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3340,7,279,'Ashford',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3341,7,282,'Avon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3342,7,279,'Ballouville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3343,7,283,'Baltic',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3344,7,284,'Bantam',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3345,7,284,'Barkhamsted',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3346,7,281,'Beacon Falls',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3347,7,282,'Berlin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3348,7,281,'Bethany',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3349,7,285,'Bethel',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3350,7,284,'Bethlehem',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3351,7,282,'Bloomfield',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3352,7,280,'Bolton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3353,7,285,'Botsford',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3354,7,283,'Bozrah',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3355,7,281,'Branford',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3356,7,285,'Bridgeport',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3357,7,284,'Bridgewater',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3358,7,282,'Bristol',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3359,7,282,'Broad Brook',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3360,7,285,'Brookfield',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3361,7,279,'Brooklyn',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3362,7,282,'Burlington',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3363,7,284,'Canaan',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3364,7,279,'Canterbury',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3365,7,282,'Canton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3366,7,282,'Canton Center',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3367,7,286,'Centerbrook',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3368,7,279,'Central Village',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3369,7,279,'Chaplin',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3370,7,281,'Cheshire',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3371,7,286,'Chester',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3372,7,286,'Clinton',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3373,7,286,'Cobalt',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3374,7,283,'Colchester',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3375,7,284,'Colebrook',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3376,7,282,'Collinsville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3377,7,280,'Columbia',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3378,7,284,'Cornwall',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3379,7,284,'Cornwall Bridge',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3380,7,285,'Cos Cob',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3381,7,280,'Coventry',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3382,7,286,'Cromwell',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3383,7,285,'Danbury',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3384,7,279,'Danielson',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3385,7,285,'Darien',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3386,7,279,'Dayville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3387,7,286,'Deep River',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3388,7,281,'Derby',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3389,7,286,'Durham',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3390,7,282,'East Berlin',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3391,7,284,'East Canaan',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3392,7,282,'East Glastonbury',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3393,7,282,'East Granby',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3394,7,286,'East Haddam',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3395,7,286,'East Hampton',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3396,7,282,'East Hartford',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3397,7,282,'East Hartland',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3398,7,281,'East Haven',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3399,7,279,'East Killingly',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3400,7,283,'East Lyme',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3401,7,282,'East Windsor',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3402,7,282,'East Windsor Hill',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3403,7,279,'East Woodstock',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3404,7,279,'Eastford',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3405,7,285,'Easton',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3406,7,280,'Ellington',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3407,7,282,'Enfield',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3408,7,286,'Essex',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3409,7,279,'Fabyan',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3410,7,285,'Fairfield',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3411,7,284,'Falls Village',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3412,7,282,'Farmington',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3413,7,283,'Gales Ferry',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3414,7,284,'Gaylordsville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3415,7,285,'Georgetown',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3416,7,283,'Gilman',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3417,7,282,'Glastonbury',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3418,7,284,'Goshen',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3419,7,282,'Granby',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3420,7,285,'Greens Farms',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3421,7,285,'Greenwich',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3422,7,279,'Grosvenor Dale',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3423,7,283,'Groton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3424,7,281,'Guilford',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3425,7,286,'Haddam',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3426,7,283,'Hadlyme',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3427,7,281,'Hamden',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3428,7,279,'Hampton',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3429,7,283,'Hanover',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3430,7,282,'Hartford',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3431,7,284,'Harwinton',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3432,7,285,'Hawleyville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3433,7,280,'Hebron',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3434,7,286,'Higganum',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3435,7,286,'Ivoryton',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3436,7,283,'Jewett City',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3437,7,284,'Kent',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3438,7,286,'Killingworth',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3439,7,284,'Lakeside',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3440,7,284,'Lakeville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3441,7,283,'Lebanon',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3442,7,283,'Ledyard',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3443,7,284,'Litchfield',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3444,7,281,'Madison',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3445,7,282,'Manchester',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3446,7,280,'Mansfield Center',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3447,7,280,'Mansfield Depot',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3448,7,282,'Marion',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3449,7,282,'Marlborough',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3450,7,283,'Mashantucket',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3451,7,281,'Meriden',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3452,7,286,'Middle Haddam',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3453,7,281,'Middlebury',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3454,7,286,'Middlefield',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3455,7,286,'Middletown',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3456,7,281,'Milford',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3457,7,282,'Milldale',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3458,7,285,'Monroe',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3459,7,283,'Montville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3460,7,286,'Moodus',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3461,7,279,'Moosup',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3462,7,284,'Morris',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3463,7,283,'Mystic',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3464,7,281,'Naugatuck',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3465,7,282,'New Britain',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3466,7,285,'New Canaan',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3467,7,285,'New Fairfield',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3468,7,284,'New Hartford',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3469,7,281,'New Haven',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3470,7,283,'New London',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3471,7,284,'New Milford',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3472,7,284,'New Preston Marble Dale',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3473,7,282,'Newington',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3474,7,285,'Newtown',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3475,7,283,'Niantic',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3476,7,284,'Norfolk',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3477,7,281,'North Branford',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3478,7,282,'North Canton',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3479,7,283,'North Franklin',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3480,7,282,'North Granby',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3481,7,279,'North Grosvenordale',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3482,7,281,'North Haven',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3483,7,283,'North Stonington',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3484,7,283,'North Westchester',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3485,7,279,'North Windham',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3486,7,284,'Northfield',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3487,7,281,'Northford',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3488,7,285,'Norwalk',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3489,7,283,'Norwich',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3490,7,283,'Oakdale',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3491,7,284,'Oakville',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3492,7,285,'Old Greenwich',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3493,7,283,'Old Lyme',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3494,7,283,'Old Mystic',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3495,7,286,'Old Saybrook',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3496,7,279,'Oneco',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3497,7,281,'Orange',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3498,7,281,'Oxford',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3499,7,283,'Pawcatuck',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3500,7,284,'Pequabuck',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3501,7,284,'Pine Meadow',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3502,7,279,'Plainfield',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3503,7,282,'Plainville',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3504,7,282,'Plantsville',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3505,7,284,'Plymouth',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3506,7,279,'Pomfret',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3507,7,279,'Pomfret Center',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3508,7,282,'Poquonock',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3509,7,286,'Portland',1,106,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3510,7,283,'Preston',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3511,7,281,'Prospect',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3512,7,279,'Putnam',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3513,7,283,'Quaker Hill',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3514,7,279,'Quinebaug',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3515,7,285,'Redding',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3516,7,285,'Redding Center',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3517,7,285,'Redding Ridge',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3518,7,285,'Ridgefield',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3519,7,285,'Riverside',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3520,7,284,'Riverton',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3521,7,286,'Rockfall',1,108,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3522,7,282,'Rocky Hill',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3523,7,279,'Rogers',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3524,7,284,'Roxbury',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3525,7,283,'Salem',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3526,7,284,'Salisbury',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3527,7,285,'Sandy Hook',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3528,7,279,'Scotland',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3529,7,281,'Seymour',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3530,7,284,'Sharon',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3531,7,285,'Shelton',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3532,7,285,'Sherman',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3533,7,282,'Simsbury',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3534,7,280,'Somers',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3535,7,280,'Somersville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3536,7,281,'South Britain',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3537,7,282,'South Glastonbury',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3538,7,284,'South Kent',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3539,7,283,'South Lyme',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3540,7,280,'South Willington',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3541,7,279,'South Windham',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3542,7,282,'South Windsor',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3543,7,279,'South Woodstock',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3544,7,281,'Southbury',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3545,7,282,'Southington',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3546,7,285,'Southport',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3547,7,280,'Stafford',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3548,7,280,'Stafford Springs',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3549,7,280,'Staffordville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3550,7,285,'Stamford',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3551,7,279,'Sterling',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3552,7,285,'Stevenson',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3553,7,283,'Stonington',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3554,7,280,'Storrs Mansfield',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3555,7,285,'Stratford',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3556,7,282,'Suffield',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3557,7,284,'Taconic',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3558,7,283,'Taftville',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3559,7,282,'Tariffville',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3560,7,284,'Terryville',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3561,7,284,'Thomaston',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3562,7,279,'Thompson',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3563,7,280,'Tolland',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3564,7,284,'Torrington',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3565,7,285,'Trumbull',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3566,7,283,'Uncasville',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3567,7,282,'Unionville',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3568,7,280,'Vernon Rockville',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3569,7,283,'Versailles',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3570,7,283,'Voluntown',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3571,7,281,'Wallingford',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3572,7,284,'Washington',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3573,7,284,'Washington Depot',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3574,7,281,'Waterbury',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3575,7,283,'Waterford',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3576,7,284,'Watertown',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3577,7,279,'Wauregan',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3578,7,282,'Weatogue',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3579,7,284,'West Cornwall',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3580,7,282,'West Granby',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3581,7,282,'West Hartford',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3582,7,282,'West Hartland',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3583,7,281,'West Haven',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3584,7,283,'West Mystic',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3585,7,282,'West Simsbury',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3586,7,282,'West Suffield',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3587,7,286,'Westbrook',1,140,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3588,7,285,'Weston',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3589,7,285,'Westport',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3590,7,282,'Wethersfield',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3591,7,279,'Willimantic',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3592,7,280,'Willington',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3593,7,285,'Wilton',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3594,7,284,'Winchester Center',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3595,7,279,'Windham',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3596,7,282,'Windsor',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3597,7,282,'Windsor Locks',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3598,7,284,'Winsted',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3599,7,281,'Wolcott',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3600,7,281,'Woodbridge',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3601,7,284,'Woodbury',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3602,7,279,'Woodstock',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3603,7,279,'Woodstock Valley',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3604,7,283,'Yantic',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3605,9,287,'Naval Anacost Annex',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3606,9,287,'Washington',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3607,9,287,'Washington Navy Yard',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3608,8,288,'Bear',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3609,8,289,'Bethany Beach',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3610,8,289,'Bethel',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3611,8,289,'Bridgeville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3612,8,290,'Camden Wyoming',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3613,8,290,'Cheswold',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3614,8,288,'Claymont',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3615,8,290,'Clayton',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3616,8,289,'Dagsboro',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3617,8,288,'Delaware City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3618,8,289,'Delmar',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3619,8,290,'Dover',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3620,8,290,'Dover Afb',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3621,8,289,'Ellendale',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3622,8,290,'Felton',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3623,8,289,'Fenwick Island',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3624,8,289,'Frankford',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3625,8,290,'Frederica',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3626,8,289,'Georgetown',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3627,8,289,'Greenwood',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3628,8,289,'Harbeson',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3629,8,290,'Harrington',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3630,8,290,'Hartly',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3631,8,288,'Hockessin',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3632,8,290,'Houston',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3633,8,290,'Kenton',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3634,8,288,'Kirkwood',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3635,8,289,'Laurel',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3636,8,289,'Lewes',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3637,8,289,'Lincoln',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3638,8,290,'Little Creek',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3639,8,290,'Magnolia',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3640,8,290,'Marydel',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3641,8,288,'Middletown',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3642,8,289,'Milford',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3643,8,289,'Millsboro',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3644,8,289,'Millville',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3645,8,289,'Milton',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3646,8,288,'Montchanin',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3647,8,289,'Nassau',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3648,8,288,'New Castle',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3649,8,288,'Newark',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3650,8,289,'Ocean View',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3651,8,288,'Odessa',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3652,8,288,'Port Penn',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3653,8,289,'Rehoboth Beach',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3654,8,288,'Rockland',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3655,8,288,'Saint Georges',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3656,8,289,'Seaford',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3657,8,289,'Selbyville',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3658,8,290,'Smyrna',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3659,8,288,'Townsend',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3660,8,290,'Viola',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3661,8,288,'Wilmington',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3662,8,288,'Winterthur',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3663,8,290,'Woodside',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3664,8,288,'Yorklyn',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3665,10,291,'Alachua',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3666,10,66,'Alford',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3667,10,292,'Altamonte Springs',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3668,10,37,'Altha',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3669,10,216,'Altoona',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3670,10,126,'Alturas',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3671,10,51,'Alva',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3672,10,293,'Anna Maria',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3673,10,58,'Anthony',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3674,10,92,'Apalachicola',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3675,10,294,'Apollo Beach',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3676,10,177,'Apopka',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3677,10,295,'Arcadia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3678,10,291,'Archer',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3679,10,296,'Argyle',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3680,10,297,'Aripeka',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3681,10,216,'Astatula',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3682,10,216,'Astor',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3683,10,298,'Atlantic Beach',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3684,10,126,'Auburndale',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3685,10,299,'Avon Park',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3686,10,126,'Babson Park',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3687,10,300,'Bagdad',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3688,10,301,'Baker',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3689,10,294,'Balm',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3690,10,302,'Barberville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3691,10,126,'Bartow',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3692,10,66,'Bascom',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3693,10,303,'Bay Pines',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3694,10,304,'Bell',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3695,10,305,'Belle Glade',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3696,10,303,'Belleair Beach',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3697,10,58,'Belleview',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3698,10,306,'Beverly Hills',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3699,10,59,'Big Pine Key',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3700,10,37,'Blountstown',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3701,10,51,'Boca Grande',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3702,10,305,'Boca Raton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3703,10,51,'Bokeelia',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3704,10,307,'Bonifay',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3705,10,51,'Bonita Springs',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3706,10,308,'Bostwick',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3707,10,309,'Bowling Green',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3708,10,305,'Boynton Beach',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3709,10,293,'Bradenton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3710,10,293,'Bradenton Beach',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3711,10,126,'Bradley',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3712,10,294,'Brandon',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3713,10,310,'Branford',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3714,10,311,'Bristol',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3715,10,312,'Bronson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3716,10,313,'Brooker',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3717,10,314,'Brooksville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3718,10,305,'Bryant',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3719,10,315,'Bryceville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3720,10,316,'Bunnell',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3721,10,61,'Bushnell',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3722,10,315,'Callahan',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3723,10,66,'Campbellton',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3724,10,305,'Canal Point',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3725,10,58,'Candler',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3726,10,50,'Cantonment',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3727,10,317,'Cape Canaveral',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3728,10,51,'Cape Coral',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3729,10,51,'Captiva',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3730,10,92,'Carrabelle',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3731,10,71,'Caryville',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3732,10,302,'Cassadaga',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3733,10,292,'Casselberry',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3734,10,312,'Cedar Key',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3735,10,61,'Center Hill',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3736,10,50,'Century',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3737,10,318,'Chattahoochee',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3738,10,312,'Chiefland',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3739,10,71,'Chipley',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3740,10,319,'Chokoloskee',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3741,10,177,'Christmas',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3742,10,58,'Citra',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3743,10,177,'Clarcona',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3744,10,37,'Clarksville',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3745,10,303,'Clearwater',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3746,10,303,'Clearwater Beach',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3747,10,216,'Clermont',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3748,10,320,'Clewiston',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3749,10,317,'Cocoa',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3750,10,317,'Cocoa Beach',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3751,10,321,'Coconut Creek',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3752,10,61,'Coleman',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3753,10,319,'Copeland',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3754,10,293,'Cortez',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3755,10,66,'Cottondale',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3756,10,322,'Crawfordville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3757,10,308,'Crescent City',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3758,10,301,'Crestview',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3759,10,323,'Cross City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3760,10,303,'Crystal Beach',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3761,10,306,'Crystal River',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3762,10,297,'Crystal Springs',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3763,10,66,'Cypress',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3764,10,297,'Dade City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3765,10,321,'Dania',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3766,10,126,'Davenport',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3767,10,128,'Day',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3768,10,302,'Daytona Beach',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3769,10,302,'De Leon Springs',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3770,10,302,'Debary',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3771,10,321,'Deerfield Beach',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3772,10,296,'Defuniak Springs',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3773,10,302,'Deland',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3774,10,305,'Delray Beach',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3775,10,302,'Deltona',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3776,10,301,'Destin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3777,10,48,'Doctors Inlet',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3778,10,294,'Dover',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3779,10,126,'Dundee',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3780,10,303,'Dunedin',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3781,10,306,'Dunnellon',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3782,10,58,'Dunnellon',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3783,10,294,'Durant',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3784,10,126,'Eagle Lake',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3785,10,291,'Earleton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3786,10,308,'East Palatka',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3787,10,58,'Eastlake Weir',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3788,10,92,'Eastpoint',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3789,10,126,'Eaton Park',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3790,10,71,'Ebro',1,113,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3791,10,308,'Edgar',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3792,10,302,'Edgewater',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3793,10,301,'Eglin Afb',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3794,10,324,'El Jobean',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3795,10,297,'Elfers',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3796,10,325,'Elkton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3797,10,293,'Ellenton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3798,10,324,'Englewood',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3799,10,326,'Englewood',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3800,10,51,'Estero',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3801,10,216,'Eustis',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3802,10,319,'Everglades City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3803,10,291,'Evinston',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3804,10,58,'Fairfield',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3805,10,126,'Fedhaven',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3806,10,320,'Felda',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3807,10,327,'Fellsmere',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3808,10,315,'Fernandina Beach',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3809,10,216,'Ferndale',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3810,10,316,'Flagler Beach',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3811,10,48,'Fleming Island',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3812,10,308,'Florahome',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3813,10,306,'Floral City',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3814,10,321,'Fort Lauderdale',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3815,10,58,'Fort Mc Coy',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3816,10,126,'Fort Meade',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3817,10,51,'Fort Myers',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3818,10,51,'Fort Myers Beach',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3819,10,295,'Fort Ogden',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3820,10,328,'Fort Pierce',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3821,10,301,'Fort Walton Beach',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3822,10,143,'Fort White',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3823,10,329,'Fountain',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3824,10,296,'Freeport',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3825,10,126,'Frostproof',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3826,10,216,'Fruitland Park',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3827,10,291,'Gainesville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3828,10,292,'Geneva',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3829,10,308,'Georgetown',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3830,10,294,'Gibsonton',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3831,10,330,'Glen Saint Mary',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3832,10,302,'Glenwood',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3833,10,292,'Goldenrod',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3834,10,50,'Gonzalez',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3835,10,319,'Goodland',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3836,10,177,'Gotha',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3837,10,66,'Graceville',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3838,10,313,'Graham',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3839,10,216,'Grand Island',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3840,10,66,'Grand Ridge',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3841,10,308,'Grandin',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3842,10,317,'Grant',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3843,10,48,'Green Cove Springs',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3844,10,318,'Greensboro',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3845,10,68,'Greenville',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3846,10,66,'Greenwood',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3847,10,318,'Gretna',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3848,10,216,'Groveland',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3849,10,300,'Gulf Breeze',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3850,10,312,'Gulf Hammock',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3851,10,126,'Haines City',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3852,10,321,'Hallandale',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3853,10,313,'Hampton',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3854,10,325,'Hastings',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3855,10,318,'Havana',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3856,10,291,'Hawthorne',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3857,10,306,'Hernando',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3858,10,331,'Hialeah',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3859,10,291,'High Springs',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3860,10,126,'Highland City',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3861,10,315,'Hilliard',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3862,10,332,'Hobe Sound',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3863,10,306,'Holder',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3864,10,297,'Holiday',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3865,10,308,'Hollister',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3866,10,321,'Hollywood',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3867,10,293,'Holmes Beach',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3868,10,301,'Holt',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3869,10,126,'Homeland',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3870,10,331,'Homestead',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3871,10,306,'Homosassa',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3872,10,306,'Homosassa Springs',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3873,10,323,'Horseshoe Beach',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3874,10,311,'Hosford',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3875,10,216,'Howey In The Hills',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3876,10,297,'Hudson',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3877,10,301,'Hurlburt Field',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3878,10,319,'Immokalee',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3879,10,317,'Indialantic',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3880,10,126,'Indian Lake Estates',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3881,10,303,'Indian Rocks Beach',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3882,10,332,'Indiantown',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3883,10,312,'Inglis',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3884,10,333,'Intercession City',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3885,10,308,'Interlachen',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3886,10,306,'Inverness',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3887,10,59,'Islamorada',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3888,10,291,'Island Grove',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3889,10,314,'Istachatta',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3890,10,298,'Jacksonville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3891,10,325,'Jacksonville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3892,10,298,'Jacksonville Beach',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3893,10,334,'Jasper',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3894,10,300,'Jay',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3895,10,334,'Jennings',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3896,10,332,'Jensen Beach',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3897,10,305,'Jupiter',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3898,10,126,'Kathleen',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3899,10,333,'Kenansville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3900,10,331,'Key Biscayne',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3901,10,59,'Key Colony Beach',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3902,10,59,'Key Largo',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3903,10,59,'Key West',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3904,10,48,'Keystone Heights',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3905,10,177,'Killarney',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3906,10,333,'Kissimmee',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3907,10,126,'Kissimmee',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3908,10,291,'La Crosse',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3909,10,320,'Labelle',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3910,10,297,'Lacoochee',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3911,10,216,'Lady Lake',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3912,10,126,'Lake Alfred',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3913,10,131,'Lake Butler',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3914,10,143,'Lake City',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3915,10,308,'Lake Como',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3916,10,48,'Lake Geneva',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3917,10,126,'Lake Hamilton',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3918,10,305,'Lake Harbor',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3919,10,302,'Lake Helen',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3920,10,292,'Lake Mary',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3921,10,292,'Lake Monroe',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3922,10,61,'Lake Panasoffkee',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3923,10,299,'Lake Placid',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3924,10,126,'Lake Wales',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3925,10,305,'Lake Worth',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3926,10,126,'Lakeland',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3927,10,30,'Lamont',1,152,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3928,10,92,'Lanark Village',1,127,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3929,10,297,'Land O Lakes',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3930,10,303,'Largo',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3931,10,326,'Laurel',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3932,10,301,'Laurel Hill',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3933,10,313,'Lawtey',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3934,10,306,'Lecanto',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3935,10,68,'Lee',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3936,10,216,'Leesburg',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3937,10,51,'Lehigh Acres',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3938,10,321,'Lighthouse Point',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3939,10,294,'Lithia',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3940,10,310,'Live Oak',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3941,10,30,'Lloyd',1,15357,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3942,10,291,'Lochloosa',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3943,10,59,'Long Key',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3944,10,293,'Longboat Key',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3945,10,292,'Longwood',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3946,10,299,'Lorida',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3947,10,126,'Loughman',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3948,10,58,'Lowell',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3949,10,305,'Loxahatchee',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3950,10,143,'Lulu',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3951,10,294,'Lutz',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3952,10,329,'Lynn Haven',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3953,10,330,'Macclenny',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3954,10,68,'Madison',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3955,10,177,'Maitland',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3956,10,317,'Malabar',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3957,10,66,'Malone',1,125,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3958,10,294,'Mango',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3959,10,59,'Marathon',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3960,10,59,'Marathon Shores',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3961,10,319,'Marco Island',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3962,10,66,'Marianna',1,127,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3963,10,301,'Mary Esther',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3964,10,216,'Mascotte',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3965,10,128,'Mayo',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3966,10,310,'Mc Alpin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3967,10,50,'Mc David',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3968,10,58,'Mc Intosh',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3969,10,317,'Melbourne',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3970,10,317,'Melbourne Beach',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3971,10,308,'Melrose',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3972,10,317,'Merritt Island',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3973,10,329,'Mexico Beach',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3974,10,331,'Miami',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3975,10,331,'Miami Beach',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3976,10,291,'Micanopy',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3977,10,292,'Mid Florida',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3978,10,48,'Middleburg',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3979,10,318,'Midway',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3980,10,301,'Milligan',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3981,10,300,'Milton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3982,10,317,'Mims',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3983,10,216,'Minneola',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3984,10,296,'Miramar Beach',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3985,10,50,'Molino',1,17675,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3986,10,30,'Monticello',1,17827,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3987,10,216,'Montverde',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3988,10,335,'Moore Haven',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3989,10,312,'Morriston',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3990,10,296,'Mossy Head',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3991,10,216,'Mount Dora',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3992,10,126,'Mulberry',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3993,10,324,'Murdock',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3994,10,293,'Myakka City',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3995,10,126,'Nalcrest',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3996,10,319,'Naples',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3997,10,300,'Navarre',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3998,10,298,'Neptune Beach',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(3999,10,297,'New Port Richey',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4000,10,302,'New Smyrna Beach',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4001,10,291,'Newberry',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4002,10,301,'Niceville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4003,10,126,'Nichols',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4004,10,314,'Nobleton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4005,10,295,'Nocatee',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4006,10,326,'Nokomis',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4007,10,307,'Noma',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4008,10,51,'North Fort Myers',1,19304,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4009,10,331,'North Miami Beach',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4010,10,305,'North Palm Beach',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4011,10,326,'North Port',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4012,10,310,'O Brien',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4013,10,302,'Oak Hill',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4014,10,177,'Oakland',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4015,10,58,'Ocala',1,19672,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4016,10,331,'Ochopee',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4017,10,58,'Ocklawaha',1,19703,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4018,10,177,'Ocoee',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4019,10,294,'Odessa',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4020,10,216,'Okahumpka',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4021,10,336,'Okeechobee',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4022,10,323,'Old Town',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4023,10,303,'Oldsmar',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4024,10,330,'Olustee',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4025,10,309,'Ona',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4026,10,293,'Oneco',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4027,10,331,'Opa Locka',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4028,10,302,'Orange City',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4029,10,58,'Orange Lake',1,19999,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4030,10,48,'Orange Park',1,20000,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4031,10,58,'Orange Springs',1,20001,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4032,10,317,'Orlando',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4033,10,177,'Orlando',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4034,10,302,'Ormond Beach',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4035,10,326,'Osprey',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4036,10,302,'Osteen',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4037,10,312,'Otter Creek',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4038,10,292,'Oviedo',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4039,10,61,'Oxford',1,19,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4040,10,303,'Ozona',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4041,10,305,'Pahokee',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4042,10,216,'Paisley',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4043,10,308,'Palatka',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4044,10,317,'Palm Bay',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4045,10,305,'Palm Beach',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4046,10,305,'Palm Beach Gardens',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4047,10,332,'Palm City',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4048,10,316,'Palm Coast',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4049,10,303,'Palm Harbor',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4050,10,335,'Palmdale',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4051,10,293,'Palmetto',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4052,10,322,'Panacea',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4053,10,329,'Panama City',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4054,10,329,'Panama City Beach',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4055,10,293,'Parrish',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4056,10,317,'Patrick Afb',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4057,10,296,'Paxton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4058,10,321,'Pembroke Pines',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4059,10,48,'Penney Farms',1,99,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4060,10,50,'Pensacola',1,10,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4061,10,337,'Perry',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4062,10,302,'Pierson',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4063,10,51,'Pineland',1,68,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4064,10,303,'Pinellas Park',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4065,10,68,'Pinetta',1,125,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4066,10,324,'Placida',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4067,10,294,'Plant City',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4068,10,177,'Plymouth',1,104,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4069,10,296,'Point Washington',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4070,10,126,'Polk City',1,108,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4071,10,308,'Pomona Park',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4072,10,321,'Pompano Beach',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4073,10,296,'Ponce De Leon',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4074,10,325,'Ponte Vedra',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4075,10,325,'Ponte Vedra Beach',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4076,10,324,'Port Charlotte',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4077,10,302,'Port Orange',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4078,10,297,'Port Richey',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4079,10,338,'Port Saint Joe',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4080,10,328,'Port Saint Lucie',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4081,10,332,'Port Salerno',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4082,10,324,'Punta Gorda',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4083,10,308,'Putnam Hall',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4084,10,318,'Quincy',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4085,10,131,'Raiford',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4086,10,58,'Reddick',1,114,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4087,10,126,'River Ranch',1,112,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4088,10,294,'Riverview',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4089,10,317,'Rockledge',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4090,10,327,'Roseland',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4091,10,296,'Rosemary Beach',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4092,10,324,'Rotonda West',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4093,10,294,'Ruskin',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4094,10,303,'Safety Harbor',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4095,10,325,'Saint Augustine',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4096,10,333,'Saint Cloud',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4097,10,51,'Saint James City',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4098,10,325,'Saint Johns',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4099,10,297,'Saint Leo',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4100,10,322,'Saint Marks',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4101,10,303,'Saint Petersburg',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4102,10,337,'Salem',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4103,10,297,'San Antonio',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4104,10,308,'San Mateo',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4105,10,330,'Sanderson',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4106,10,292,'Sanford',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4107,10,51,'Sanibel',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4108,10,296,'Santa Rosa Beach',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4109,10,293,'Sarasota',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4110,10,326,'Sarasota',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4111,10,317,'Satellite Beach',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4112,10,308,'Satsuma',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4113,10,317,'Scottsmoor',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4114,10,317,'Sebastian',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4115,10,327,'Sebastian',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4116,10,299,'Sebring',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4117,10,294,'Seffner',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4118,10,303,'Seminole',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4119,10,302,'Seville',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4120,10,337,'Shady Grove',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4121,10,301,'Shalimar',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4122,10,317,'Sharpes',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4123,10,58,'Silver Springs',1,127,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4124,10,66,'Sneads',1,181,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4125,10,322,'Sopchoppy',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4126,10,216,'Sorrento',1,118,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4127,10,305,'South Bay',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4128,10,58,'Sparr',1,130,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4129,10,314,'Spring Hill',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4130,10,297,'Spring Hill',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4131,10,313,'Starke',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4132,10,337,'Steinhatchee',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4133,10,332,'Stuart',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4134,10,311,'Sumatra',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4135,10,58,'Summerfield',1,134,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4136,10,59,'Summerland Key',1,157,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4137,10,61,'Sumterville',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4138,10,294,'Sun City',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4139,10,294,'Sun City Center',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4140,10,323,'Suwannee',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4141,10,294,'Sydney',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4142,10,339,'Tallahassee',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4143,10,293,'Tallevast',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4145,10,294,'Tampa',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4146,10,177,'Tangerine',1,129,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4147,10,303,'Tarpon Springs',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4148,10,216,'Tavares',1,120,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4149,10,59,'Tavernier',1,162,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4150,10,311,'Telogia',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4151,10,293,'Terra Ceia',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4152,10,61,'The Villages',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4153,10,294,'Thonotosassa',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4154,10,317,'Titusville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4155,10,304,'Trenton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4156,10,297,'Trilby',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4157,10,216,'Umatilla',1,124,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4158,10,301,'Valparaiso',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4159,10,294,'Valrico',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4160,10,319,'Vanderbilt Beach',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4161,10,326,'Venice',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4162,10,299,'Venus',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4163,10,71,'Vernon',1,347,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4164,10,327,'Vero Beach',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4165,10,327,'Wabasso',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4166,10,30,'Wacissa',1,279,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4167,10,291,'Waldo',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4168,10,309,'Wauchula',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4169,10,71,'Wausau',1,369,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4170,10,126,'Waverly',1,127,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4171,10,61,'Webster',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4172,10,58,'Weirsdale',1,144,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4173,10,308,'Welaka',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4174,10,310,'Wellborn',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4175,10,297,'Wesley Chapel',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4176,10,305,'West Palm Beach',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4177,10,307,'Westville',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4178,10,37,'Wewahitchka',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4179,10,338,'Wewahitchka',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4180,10,334,'White Springs',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4181,10,61,'Wildwood',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4182,10,312,'Williston',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4183,10,294,'Wimauma',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4184,10,177,'Windermere',1,157,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4185,10,327,'Winter Beach',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4186,10,177,'Winter Garden',1,158,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4187,10,126,'Winter Haven',1,131,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4188,10,177,'Winter Park',1,159,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4189,10,292,'Winter Springs',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4190,10,339,'Woodville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4191,10,131,'Worthington Springs',1,125,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4192,10,216,'Yalaha',1,138,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4193,10,312,'Yankeetown',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4194,10,329,'Youngstown',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4195,10,315,'Yulee',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4196,10,177,'Zellwood',1,161,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4197,10,297,'Zephyrhills',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4198,10,309,'Zolfo Springs',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4199,11,34,'Abbeville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4200,11,73,'Acworth',1,66,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4201,11,340,'Acworth',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4202,11,341,'Adairsville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4203,11,342,'Adel',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4204,11,343,'Adrian',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4205,11,72,'Ailey',1,183,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4206,11,344,'Alamo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4207,11,345,'Alapaha',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4208,11,346,'Albany',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4209,11,311,'Allenhurst',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4210,11,347,'Allentown',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4211,11,348,'Alma',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4212,11,119,'Alpharetta',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4213,11,72,'Alston',1,465,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4214,11,349,'Alto',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4215,11,85,'Ambrose',1,1,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4216,11,270,'Americus',1,576,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4217,11,61,'Americus',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4218,11,61,'Andersonville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4219,11,143,'Appling',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4220,11,350,'Arabi',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4221,11,126,'Aragon',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4222,11,351,'Argyle',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4223,11,37,'Arlington',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4224,11,352,'Armuchee',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4225,11,353,'Arnoldsville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4226,11,354,'Ashburn',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4227,11,40,'Athens',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4228,11,355,'Atlanta',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4229,11,119,'Atlanta',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4230,11,356,'Attapulgus',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4231,11,357,'Auburn',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4232,11,143,'Augusta',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4233,11,358,'Augusta',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4234,11,340,'Austell',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4235,11,30,'Avera',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4236,11,355,'Avondale Estates',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4237,11,359,'Axson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4238,11,360,'Baconton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4239,11,356,'Bainbridge',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4240,11,361,'Baldwin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4241,11,73,'Ball Ground',1,1425,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4242,11,60,'Barnesville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4243,11,362,'Barney',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4244,11,30,'Bartow',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4245,11,362,'Barwick',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4246,11,363,'Baxley',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4247,11,364,'Bellville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4248,11,365,'Berlin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4249,11,357,'Bethlehem',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4250,11,366,'Bishop',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4251,11,367,'Blackshear',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4252,11,131,'Blairsville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4253,11,368,'Blakely',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4254,11,369,'Bloomingdale',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4255,11,370,'Blue Ridge',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4256,11,48,'Bluffton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4257,11,358,'Blythe',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4258,11,366,'Bogart',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4259,11,59,'Bolingbroke',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4260,11,47,'Bonaire',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4261,11,371,'Boneville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4262,11,372,'Boston',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4263,11,82,'Bostwick',1,2764,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4264,11,115,'Bowdon',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4265,11,115,'Bowdon Junction',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4266,11,373,'Bowersville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4267,11,223,'Bowman',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4268,11,374,'Box Springs',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4269,11,66,'Braselton',1,2971,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4270,11,375,'Bremen',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4271,11,356,'Brinson',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4272,11,367,'Bristol',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4273,11,376,'Bronwood',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4274,11,377,'Brookfield',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4275,11,378,'Brooklet',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4276,11,56,'Brooks',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4277,11,85,'Broxton',1,4,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4278,11,379,'Brunswick',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4279,11,375,'Buchanan',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4280,11,82,'Buckhead',1,3408,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4281,11,58,'Buena Vista',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4282,11,380,'Buford',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4283,11,337,'Butler',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4284,11,381,'Byromville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4285,11,382,'Byron',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4286,11,383,'Cadwell',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4287,11,384,'Cairo',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4288,11,385,'Calhoun',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4289,11,384,'Calvary',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4290,11,386,'Camak',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4291,11,360,'Camilla',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4292,11,92,'Canon',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4293,11,73,'Canton',1,4015,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4294,11,68,'Carlton',1,4132,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4295,11,92,'Carnesville',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4296,11,115,'Carrollton',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4297,11,341,'Cartersville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4298,11,341,'Cassville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4299,11,387,'Cataula',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4300,11,352,'Cave Spring',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4301,11,342,'Cecil',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4302,11,368,'Cedar Springs',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4303,11,126,'Cedartown',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4304,11,47,'Centerville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4305,11,388,'Chatsworth',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4306,11,389,'Chauncey',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4307,11,390,'Cherrylog',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4308,11,389,'Chester',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4309,11,391,'Chestnut Mountain',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4310,11,69,'Chickamauga',1,4869,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4311,11,377,'Chula',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4312,11,388,'Cisco',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4313,11,340,'Clarkdale',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4314,11,349,'Clarkesville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4315,11,355,'Clarkston',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4316,11,364,'Claxton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4317,11,392,'Clayton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4318,11,391,'Clermont',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4319,11,108,'Cleveland',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4320,11,356,'Climax',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4321,11,47,'Clinchfield',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4322,11,393,'Clyo',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4323,11,61,'Cobb',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4324,11,394,'Cobbtown',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4325,11,395,'Cochran',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4326,11,396,'Cohutta',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4327,11,68,'Colbert',1,5455,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4328,11,91,'Coleman',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4329,11,394,'Collins',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4330,11,142,'Colquitt',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4331,11,397,'Columbus',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4332,11,68,'Comer',1,5641,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4333,11,361,'Commerce',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4334,11,66,'Commerce',1,5653,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4335,11,55,'Concord',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4336,11,398,'Conley',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4337,11,399,'Conyers',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4338,11,372,'Coolidge',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4339,11,352,'Coosa',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4340,11,350,'Cordele',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4341,11,349,'Cornelia',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4342,11,360,'Cotton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4343,11,137,'Covington',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4344,11,388,'Crandall',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4345,11,353,'Crawford',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4346,11,400,'Crawfordville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4347,11,401,'Crescent',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4348,11,59,'Culloden',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4349,11,402,'Cumming',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4350,11,403,'Cusseta',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4351,11,91,'Cuthbert',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4352,11,380,'Dacula',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4353,11,404,'Dahlonega',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4354,11,364,'Daisy',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4355,11,405,'Dallas',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4356,11,396,'Dalton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4357,11,368,'Damascus',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4358,11,68,'Danielsville',1,6530,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4359,11,406,'Danville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4360,11,401,'Darien',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4361,11,71,'Davisboro',1,6622,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4362,11,376,'Dawson',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4363,11,407,'Dawsonville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4364,11,61,'De Soto',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4365,11,371,'Dearing',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4366,11,355,'Decatur',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4367,11,349,'Demorest',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4368,11,408,'Denton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4369,11,223,'Dewy Rose',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4370,11,383,'Dexter',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4371,11,392,'Dillard',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4372,11,362,'Dixie',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4373,11,365,'Doerun',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4374,11,292,'Donalsonville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4375,11,85,'Douglas',1,5,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4376,11,254,'Douglasville',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4377,11,409,'Dover',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4378,11,406,'Dry Branch',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4379,11,351,'Du Pont',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4380,11,383,'Dublin',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4381,11,383,'Dudley',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4382,11,119,'Duluth',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4383,11,380,'Duluth',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4384,11,383,'East Dublin',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4385,11,390,'East Ellijay',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4386,11,410,'Eastanollee',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4387,11,389,'Eastman',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4388,11,308,'Eatonton',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4389,11,393,'Eden',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4390,11,37,'Edison',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4391,11,223,'Elberton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4392,11,47,'Elko',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4393,11,411,'Ellabell',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4394,11,412,'Ellaville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4395,11,365,'Ellenton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4396,11,355,'Ellenwood',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4397,11,387,'Ellerslie',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4398,11,390,'Ellijay',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4399,11,341,'Emerson',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4400,11,345,'Enigma',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4401,11,370,'Epworth',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4402,11,126,'Esom Hill',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4403,11,388,'Eton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4404,11,143,'Evans',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4405,11,413,'Experiment',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4406,11,119,'Fairburn',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4407,11,385,'Fairmount',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4408,11,351,'Fargo',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4409,11,366,'Farmington',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4410,11,56,'Fayetteville',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4411,11,375,'Felton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4412,11,414,'Fitzgerald',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4413,11,311,'Fleming',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4414,11,69,'Flintstone',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4415,11,415,'Flovilla',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4416,11,391,'Flowery Branch',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4417,11,416,'Folkston',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4418,11,398,'Forest Park',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4419,11,59,'Forsyth',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4420,11,397,'Fort Benning',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4421,11,48,'Fort Gaines',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4422,11,417,'Fort Oglethorpe',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4423,11,311,'Fort Stewart',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4424,11,382,'Fort Valley',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4425,11,397,'Fortson',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4426,11,356,'Fowlstown',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4427,11,418,'Franklin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4428,11,92,'Franklin Springs',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4429,11,365,'Funston',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4430,11,391,'Gainesville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4431,11,343,'Garfield',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4432,11,419,'Gay',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4433,11,374,'Geneva',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4434,11,420,'Georgetown',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4435,11,421,'Gibson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4436,11,391,'Gillsville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4437,11,422,'Girard',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4438,11,418,'Glenn',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4439,11,394,'Glennville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4440,11,344,'Glenwood',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4441,11,296,'Good Hope',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4442,11,347,'Gordon',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4443,11,422,'Gough',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4444,11,358,'Gracewood',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4445,11,423,'Grantville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4446,11,424,'Gray',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4447,11,380,'Grayson',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4448,11,417,'Graysville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4449,11,63,'Greensboro',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4450,11,419,'Greenville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4451,11,413,'Griffin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4452,11,143,'Grovetown',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4453,11,393,'Guyton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4454,11,424,'Haddock',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4455,11,364,'Hagan',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4456,11,90,'Hahira',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4457,11,387,'Hamilton',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4458,11,28,'Hampton',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4459,11,423,'Haralson',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4460,11,57,'Hardwick',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4461,11,143,'Harlem',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4462,11,71,'Harrison',1,164,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4463,11,365,'Hartsfield',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4464,11,373,'Hartwell',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4465,11,136,'Hawkinsville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4466,11,408,'Hazlehurst',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4467,11,108,'Helen',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4468,11,425,'Helena',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4469,11,358,'Hephzibah',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4470,11,426,'Hiawassee',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4471,11,82,'High Shoals',1,12079,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4472,11,427,'Hillsboro',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4473,11,311,'Hinesville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4474,11,405,'Hiram',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4475,11,428,'Hoboken',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4476,11,429,'Hogansville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4477,11,73,'Holly Springs',1,12344,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4478,11,361,'Homer',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4479,11,351,'Homerville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4480,11,428,'Hortense',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4481,11,66,'Hoschton',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4482,11,337,'Howard',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4483,11,68,'Hull',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4484,11,89,'Ideal',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4485,11,68,'Ila',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4486,11,292,'Iron City',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4487,11,347,'Irwinton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4488,11,430,'Irwinville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4489,11,415,'Jackson',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4490,11,425,'Jacksonville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4491,11,368,'Jakin',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4492,11,38,'Jasper',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4493,11,66,'Jefferson',1,107,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4494,11,406,'Jeffersonville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4495,11,379,'Jekyll Island',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4496,11,415,'Jenkinsburg',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4497,11,296,'Jersey',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4498,11,431,'Jesup',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4499,11,386,'Jewell',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4500,11,398,'Jonesboro',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4501,11,59,'Juliette',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4502,11,374,'Junction City',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4503,11,47,'Kathleen',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4504,11,340,'Kennesaw',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4505,11,422,'Keysville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4506,11,432,'Kings Bay',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4507,11,432,'Kingsland',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4508,11,341,'Kingston',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4509,11,135,'Kite',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4510,11,97,'Knoxville',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4511,11,69,'La Fayette',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4512,11,429,'Lagrange',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4513,11,90,'Lake Park',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4514,11,433,'Lakeland',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4515,11,392,'Lakemont',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4516,11,92,'Lavonia',1,131,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4517,11,380,'Lawrenceville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4518,11,37,'Leary',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4519,11,73,'Lebanon',1,14785,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4520,11,51,'Leesburg',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4521,11,342,'Lenox',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4522,11,61,'Leslie',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4523,11,353,'Lexington',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4524,11,380,'Lilburn',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4525,11,381,'Lilly',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4526,11,147,'Lincolnton',1,107,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4527,11,352,'Lindale',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4528,11,254,'Lithia Springs',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4529,11,355,'Lithonia',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4530,11,65,'Lizella',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4531,11,28,'Locust Grove',1,15394,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4532,11,296,'Loganville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4533,11,69,'Lookout Mountain',1,15530,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4534,11,30,'Louisville',1,15624,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4535,11,434,'Louvale',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4536,11,398,'Lovejoy',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4537,11,435,'Ludowici',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4538,11,391,'Lula',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4539,11,425,'Lumber City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4540,11,434,'Lumpkin',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4541,11,419,'Luthersville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4542,11,436,'Lyerly',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4543,11,437,'Lyons',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4544,11,340,'Mableton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4545,11,65,'Macon',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4546,11,82,'Madison',1,15965,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4547,11,394,'Manassas',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4548,11,419,'Manchester',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4549,11,438,'Manor',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4550,11,137,'Mansfield',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4551,11,38,'Marble Hill',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4552,11,340,'Marietta',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4553,11,89,'Marshallville',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4554,11,410,'Martin',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4555,11,30,'Matthews',1,16581,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4556,11,58,'Mauk',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4557,11,353,'Maxeys',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4558,11,361,'Maysville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4559,11,370,'Mc Caysville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4560,11,347,'Mc Intyre',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4561,11,425,'Mc Rae',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4562,11,28,'Mcdonough',1,16844,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4563,11,55,'Meansville',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4564,11,372,'Meigs',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4565,11,393,'Meldrim',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4566,11,436,'Menlo',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4567,11,401,'Meridian',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4568,11,367,'Mershon',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4569,11,386,'Mesena',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4570,11,439,'Metter',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4571,11,397,'Midland',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4572,11,422,'Midville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4573,11,311,'Midway',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4574,11,425,'Milan',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4575,11,57,'Milledgeville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4576,11,440,'Millen',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4577,11,438,'Millwood',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4578,11,60,'Milner',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4579,11,370,'Mineral Bluff',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4580,11,421,'Mitchell',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4581,11,55,'Molena',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4582,11,296,'Monroe',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4583,11,89,'Montezuma',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4584,11,427,'Monticello',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4585,11,383,'Montrose',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4586,11,90,'Moody A F B',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4587,11,423,'Moreland',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4588,11,37,'Morgan',1,17950,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4589,11,370,'Morganton',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4590,11,420,'Morris',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4591,11,398,'Morrow',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4592,11,362,'Morven',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4593,11,365,'Moultrie',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4594,11,349,'Mount Airy',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4595,11,352,'Mount Berry',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4596,11,72,'Mount Vernon',1,18235,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4597,11,115,'Mount Zion',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4598,11,392,'Mountain City',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4599,11,391,'Murrayville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4600,11,97,'Musella',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4601,11,430,'Mystic',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4602,11,428,'Nahunta',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4603,11,345,'Nashville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4604,11,90,'Naylor',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4605,11,73,'Nelson',1,18606,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4606,11,137,'Newborn',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4607,11,409,'Newington',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4608,11,423,'Newnan',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4609,11,330,'Newton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4610,11,85,'Nicholls',1,13,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4611,11,66,'Nicholson',1,19111,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4612,11,380,'Norcross',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4613,11,365,'Norman Park',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4614,11,343,'Norristown',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4615,11,380,'North Metro',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4616,11,386,'Norwood',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4617,11,343,'Nunez',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4618,11,441,'Oakfield',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4619,11,385,'Oakman',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4620,11,391,'Oakwood',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4621,11,372,'Ochlocknee',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4622,11,430,'Ocilla',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4623,11,71,'Oconee',1,19706,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4624,11,431,'Odum',1,108,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4625,11,367,'Offerman',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4626,11,89,'Oglethorpe',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4627,11,409,'Oliver',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4628,11,434,'Omaha',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4629,11,377,'Omega',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4630,11,413,'Orchard Hill',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4631,11,137,'Oxford',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4632,11,119,'Palmetto',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4633,11,376,'Parrott',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4634,11,367,'Patterson',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4635,11,372,'Pavo',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4636,11,56,'Peachtree City',1,120,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4637,11,359,'Pearson',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4638,11,360,'Pelham',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4639,11,411,'Pembroke',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4640,11,66,'Pendergrass',1,158,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4641,11,440,'Perkins',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4642,11,47,'Perry',1,25,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4643,11,355,'Pine Lake',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4644,11,387,'Pine Mountain',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4645,11,387,'Pine Mountain Valley',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4646,11,381,'Pinehurst',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4647,11,34,'Pineview',1,15,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4648,11,34,'Pitts',1,16,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4649,11,61,'Plains',1,22,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4650,11,385,'Plainville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4651,11,369,'Pooler',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4652,11,378,'Portal',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4653,11,137,'Porterdale',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4654,11,441,'Poulan',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4655,11,340,'Powder Springs',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4656,11,442,'Preston',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4657,11,439,'Pulaski',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4658,11,346,'Putney',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4659,11,362,'Quitman',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4660,11,392,'Rabun Gap',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4661,11,385,'Ranger',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4662,11,345,'Ray City',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4663,11,443,'Rayle',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4664,11,354,'Rebecca',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4665,11,119,'Red Oak',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4666,11,355,'Redan',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4667,11,378,'Register',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4668,11,394,'Reidsville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4669,11,383,'Rentz',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4670,11,385,'Resaca',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4671,11,398,'Rex',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4672,11,337,'Reynolds',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4673,11,389,'Rhine',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4674,11,311,'Riceboro',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4675,11,434,'Richland',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4676,11,411,'Richmond Hill',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4677,11,393,'Rincon',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4678,11,417,'Ringgold',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4679,11,444,'Rising Fawn',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4680,11,398,'Riverdale',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4681,11,97,'Roberta',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4682,11,34,'Rochelle',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4683,11,69,'Rock Spring',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4684,11,383,'Rockledge',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4685,11,126,'Rockmart',1,113,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4686,11,396,'Rocky Face',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4687,11,409,'Rocky Ford',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4688,11,352,'Rome',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4689,11,115,'Roopville',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4690,11,69,'Rossville',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4691,11,119,'Roswell',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4692,11,92,'Royston',1,203,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4693,11,337,'Rupert',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4694,11,82,'Rutledge',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4695,11,341,'Rydal',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4696,11,416,'Saint George',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4697,11,432,'Saint Marys',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4698,11,379,'Saint Simons Island',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4699,11,360,'Sale City',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4700,11,71,'Sandersville',1,307,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4701,11,401,'Sapelo Island',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4702,11,422,'Sardis',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4703,11,423,'Sargent',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4704,11,376,'Sasser',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4705,11,108,'Sautee Nacoochee',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4706,11,369,'Savannah',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4707,11,425,'Scotland',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4708,11,355,'Scottdale',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4709,11,431,'Screven',1,137,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4710,11,379,'Sea Island',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4711,11,423,'Senoia',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4712,11,34,'Seville',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4713,11,427,'Shady Dale',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4714,11,352,'Shannon',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4715,11,400,'Sharon',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4716,11,423,'Sharpsburg',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4717,11,91,'Shellman',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4718,11,387,'Shiloh',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4719,11,63,'Siloam',1,115,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4720,11,352,'Silver Creek',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4721,11,59,'Smarr',1,146,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4722,11,51,'Smithville',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4723,11,340,'Smyrna',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4724,11,380,'Snellville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4725,11,296,'Social Circle',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4726,11,445,'Soperton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4727,11,342,'Sparks',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4728,11,446,'Sparta',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4729,11,393,'Springfield',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4730,11,30,'Stapleton',1,252,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4731,11,447,'Statenville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4732,11,378,'Statesboro',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4733,11,357,'Statham',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4734,11,353,'Stephens',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4735,11,343,'Stillmore',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4736,11,28,'Stockbridge',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4737,11,433,'Stockton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4738,11,355,'Stone Mountain',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4739,11,131,'Suches',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4740,11,385,'Sugar Valley',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4741,11,436,'Summerville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4742,11,441,'Sumner',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4743,11,423,'Sunny Side',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4744,11,363,'Surrency',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4745,11,380,'Suwanee',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4746,11,343,'Swainsboro',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4747,11,354,'Sycamore',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4748,11,409,'Sylvania',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4749,11,441,'Sylvester',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4750,11,374,'Talbotton',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4751,11,38,'Talking Rock',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4752,11,375,'Tallapoosa',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4753,11,392,'Tallulah Falls',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4754,11,66,'Talmo',1,191,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4755,11,72,'Tarrytown',1,212,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4756,11,38,'Tate',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4757,11,341,'Taylorsville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4758,11,115,'Temple',1,110,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4759,11,388,'Tennga',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4760,11,71,'Tennille',1,334,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4761,11,448,'The Rock',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4762,11,448,'Thomaston',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4763,11,372,'Thomasville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4764,11,371,'Thomson',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4765,11,377,'Tifton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4766,11,392,'Tiger',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4767,11,443,'Tignall',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4768,11,410,'Toccoa',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4769,11,410,'Toccoa Falls',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4770,11,347,'Toomsboro',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4771,11,401,'Townsend',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4772,11,444,'Trenton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4773,11,436,'Trion',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4774,11,355,'Tucker',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4775,11,396,'Tunnel Hill',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4776,11,423,'Turin',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4777,11,349,'Turnerville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4778,11,343,'Twin City',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4779,11,377,'Ty Ty',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4780,11,369,'Tybee Island',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4781,11,56,'Tyrone',1,147,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4782,11,381,'Unadilla',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4783,11,119,'Union City',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4784,11,63,'Union Point',1,130,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4785,11,397,'Upatoi',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4786,11,72,'Uvalda',1,219,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4787,11,90,'Valdosta',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4788,11,417,'Varnell',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4789,11,437,'Vidalia',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4790,11,381,'Vienna',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4791,11,115,'Villa Rica',1,118,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4792,11,375,'Waco',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4793,11,30,'Wadley',1,280,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4794,11,73,'Waleska',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4795,11,311,'Walthourville',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4796,11,438,'Waresboro',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4797,11,419,'Warm Springs',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4798,11,47,'Warner Robins',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4799,11,386,'Warrenton',1,118,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4800,11,71,'Warthen',1,358,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4801,11,441,'Warwick',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4802,11,443,'Washington',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4803,11,366,'Watkinsville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4804,11,432,'Waverly',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4805,11,387,'Waverly Hall',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4806,11,438,'Waycross',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4807,11,422,'Waynesboro',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4808,11,428,'Waynesville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4809,11,85,'West Green',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4810,11,429,'West Point',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4811,11,442,'Weston',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4812,11,384,'Whigham',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4813,11,341,'White',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4814,11,432,'White Oak',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4815,11,63,'White Plains',1,139,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4816,11,115,'Whitesburg',1,122,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4817,11,444,'Wildwood',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4818,11,392,'Wiley',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4819,11,359,'Willacoochee',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4820,11,55,'Williamson',1,112,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4821,11,357,'Winder',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4822,11,254,'Winston',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4823,11,40,'Winterville',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4824,11,432,'Woodbine',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4825,11,419,'Woodbury',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4826,11,374,'Woodland',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4827,11,73,'Woodstock',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4828,11,430,'Wray',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4829,11,30,'Wrens',1,300,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4830,11,135,'Wrightsville',1,103,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4831,11,448,'Yatesville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4832,11,426,'Young Harris',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4833,11,55,'Zebulon',1,114,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4834,12,449,'Aiea',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4835,12,450,'Anahola',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4836,12,449,'Camp H M Smith',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4837,12,451,'Captain Cook',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4838,12,450,'Eleele',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4839,12,449,'Ewa Beach',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4840,12,449,'Fort Shafter',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4841,12,452,'Haiku',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4842,12,451,'Hakalau',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4843,12,449,'Haleiwa',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4844,12,452,'Hana',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4845,12,450,'Hanalei',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4846,12,450,'Hanamaulu',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4847,12,450,'Hanapepe',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4848,12,449,'Hauula',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4849,12,451,'Hawaii National Park',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4850,12,451,'Hawi',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4851,12,449,'Hickam Afb',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4852,12,451,'Hilo',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4853,12,451,'Holualoa',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4854,12,451,'Honaunau',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4855,12,451,'Honokaa',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4856,12,449,'Honolulu',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4857,12,451,'Honomu',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4858,12,452,'Hoolehua',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4859,12,449,'Kaaawa',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4860,12,449,'Kahuku',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4861,12,452,'Kahului',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4862,12,449,'Kailua',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4863,12,451,'Kailua Kona',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4864,12,450,'Kalaheo',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4865,12,452,'Kalaupapa',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4866,12,451,'Kamuela',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4867,12,449,'Kaneohe',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4868,12,450,'Kapaa',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4869,12,451,'Kapaau',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4870,12,449,'Kapolei',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4871,12,450,'Kaumakani',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4872,12,452,'Kaunakakai',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4873,12,451,'Keaau',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4874,12,451,'Kealakekua',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4875,12,450,'Kealia',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4876,12,451,'Keauhou',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4877,12,450,'Kekaha',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4878,12,452,'Kihei',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4879,12,450,'Kilauea',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4880,12,450,'Koloa',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4881,12,452,'Kualapuu',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4882,12,452,'Kula',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4883,12,449,'Kunia',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4884,12,451,'Kurtistown',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4885,12,452,'Lahaina',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4886,12,449,'Laie',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4887,12,452,'Lanai City',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4888,12,451,'Laupahoehoe',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4889,12,450,'Lawai',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4890,12,450,'Lihue',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4891,12,449,'M C B H Kaneohe Bay',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4892,12,452,'Makawao',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4893,12,450,'Makaweli',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4894,12,452,'Maunaloa',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4895,12,449,'Mililani',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4896,12,451,'Mountain View',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4897,12,451,'Naalehu',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4898,12,451,'Ninole',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4899,12,451,'Ocean View',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4900,12,451,'Ookala',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4901,12,451,'Paauilo',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4902,12,451,'Pahala',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4903,12,451,'Pahoa',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4904,12,452,'Paia',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4905,12,451,'Papaaloa',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4906,12,451,'Papaikou',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4907,12,449,'Pearl City',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4908,12,449,'Pearl Harbor',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4909,12,451,'Pepeekeo',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4910,12,450,'Princeville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4911,12,452,'Pukalani',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4912,12,452,'Puunene',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4913,12,449,'Schofield Barracks',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4914,12,449,'Tripler Army Medical Center',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4915,12,451,'Volcano',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4916,12,449,'Wahiawa',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4917,12,449,'Waialua',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4918,12,449,'Waianae',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4919,12,451,'Waikoloa',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4920,12,452,'Wailuku',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4921,12,449,'Waimanalo',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4922,12,450,'Waimea',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4923,12,449,'Waipahu',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4924,12,449,'Wake Island',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4925,12,449,'Wheeler Army Airfield',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4926,16,453,'Ackley',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4927,16,386,'Ackworth',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4928,16,454,'Adair',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4929,16,94,'Adel',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4930,16,131,'Afton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4931,16,455,'Agency',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4932,16,71,'Ainsworth',1,185,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4933,16,456,'Akron',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4934,16,457,'Albert City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4935,16,59,'Albia',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4936,16,35,'Albion',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4937,16,458,'Alburnett',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4938,16,453,'Alden',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4939,16,92,'Alexander',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4940,16,459,'Algona',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4941,16,126,'Alleman',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4942,16,431,'Allerton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4943,16,74,'Allison',1,402,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4944,16,457,'Alta',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4945,16,460,'Alta Vista',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4946,16,461,'Alton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4947,16,126,'Altoona',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4948,16,462,'Alvord',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4949,16,463,'Amana',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4950,16,464,'Ames',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4951,16,424,'Anamosa',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4952,16,465,'Andover',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4953,16,66,'Andrew',1,668,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4954,16,466,'Anita',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4955,16,126,'Ankeny',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4956,16,467,'Anthon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4957,16,74,'Aplington',1,765,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4958,16,115,'Arcadia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4959,16,468,'Archer',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4960,16,74,'Aredale',1,855,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4961,16,51,'Argyle',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4962,16,97,'Arion',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4963,16,131,'Arispe',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4964,16,56,'Arlington',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4965,16,469,'Armstrong',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4966,16,470,'Arnolds Park',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4967,16,471,'Arthur',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4968,16,333,'Ashton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4969,16,97,'Aspinwall',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4970,16,472,'Atalissa',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4971,16,107,'Atkins',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4972,16,466,'Atlantic',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4973,16,473,'Auburn',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4974,16,474,'Audubon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4975,16,73,'Aurelia',1,1220,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4976,16,475,'Aurora',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4977,16,74,'Austinville',1,1254,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4978,16,476,'Avoca',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4979,16,477,'Ayrshire',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4980,16,442,'Badger',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4981,16,478,'Bagley',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4982,16,66,'Baldwin',1,1410,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4983,16,459,'Bancroft',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4984,16,479,'Barnes City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4985,16,442,'Barnum',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4986,16,30,'Batavia',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4987,16,471,'Battle Creek',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4988,16,427,'Baxter',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4989,16,478,'Bayard',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4990,16,479,'Beacon',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4991,16,480,'Beaman',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4992,16,99,'Beaver',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4993,16,337,'Bedford',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4994,16,107,'Belle Plaine',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4995,16,66,'Bellevue',1,1936,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(4996,16,481,'Belmond',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4997,16,482,'Bennett',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4998,16,483,'Benton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(4999,16,484,'Bernard',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5000,16,126,'Berwick',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5001,16,127,'Bettendorf',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5002,16,68,'Bevington',1,2229,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(5003,16,116,'Birmingham',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5004,16,334,'Blairsburg',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5005,16,107,'Blairstown',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5006,16,455,'Blakesburg',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5007,16,485,'Blanchard',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5008,16,486,'Blencoe',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5009,16,337,'Blockton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5010,16,487,'Bloomfield',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5011,16,127,'Blue Grass',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5012,16,176,'Bode',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5013,16,116,'Bonaparte',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5014,16,126,'Bondurant',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5015,16,99,'Boone',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5016,16,94,'Booneville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5017,16,94,'Bouton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5018,16,99,'Boxholm',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5019,16,461,'Boyden',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5020,16,485,'Braddyville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5021,16,92,'Bradford',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5022,16,176,'Bradgate',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5023,16,475,'Brandon',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5024,16,474,'Brayton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5025,16,115,'Breda',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5026,16,454,'Bridgewater',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5027,16,71,'Brighton',1,3101,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(5028,16,74,'Bristow',1,3143,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(5029,16,446,'Britt',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5030,16,467,'Bronson',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5031,16,488,'Brooklyn',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5032,16,456,'Brunsville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5033,16,465,'Bryant',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5034,16,453,'Buckeye',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5035,16,489,'Buckingham',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5036,16,127,'Buffalo',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5037,16,490,'Buffalo Center',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5038,16,491,'Burlington',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5039,16,442,'Burnside',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5040,16,459,'Burt',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5041,16,58,'Bussey',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5042,16,465,'Calamus',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5043,16,442,'Callender',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5044,16,492,'Calmar',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5045,16,468,'Calumet',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5046,16,465,'Camanche',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5047,16,464,'Cambridge',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5048,16,116,'Cantril',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5049,16,235,'Carbon',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5050,16,386,'Carlisle',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5051,16,360,'Carpenter',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5052,16,115,'Carroll',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5053,16,476,'Carson',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5054,16,476,'Carter Lake',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5055,16,484,'Cascade',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5056,16,478,'Casey',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5057,16,492,'Castalia',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5058,16,486,'Castana',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5059,16,479,'Cedar',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5060,16,493,'Cedar Falls',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5061,16,458,'Cedar Rapids',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5062,16,424,'Center Junction',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5063,16,458,'Center Point',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5064,16,494,'Centerville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5065,16,458,'Central City',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5066,16,92,'Chapin',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5067,16,495,'Chariton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5068,16,352,'Charles City',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5069,16,465,'Charlotte',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5070,16,97,'Charter Oak',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5071,16,461,'Chatsworth',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5072,16,489,'Chelsea',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5073,16,73,'Cherokee',1,4770,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(5074,16,141,'Chester',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5075,16,455,'Chillicothe',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5076,16,63,'Churdan',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5077,16,494,'Cincinnati',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5078,16,442,'Clare',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5079,16,482,'Clarence',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5080,16,485,'Clarinda',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5081,16,481,'Clarion',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5082,16,74,'Clarksville',1,5114,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(5083,16,496,'Clear Lake',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5084,16,337,'Clearfield',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5085,16,73,'Cleghorn',1,5201,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(5086,16,35,'Clemons',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5087,16,56,'Clermont',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5088,16,467,'Climbing Hill',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5089,16,465,'Clinton',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5090,16,431,'Clio',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5091,16,126,'Clive',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5092,16,489,'Clutier',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5093,16,458,'Coggon',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5094,16,485,'Coin',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5095,16,497,'Colesburg',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5096,16,427,'Colfax',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5097,16,485,'College Springs',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5098,16,464,'Collins',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5099,16,464,'Colo',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5100,16,58,'Columbia',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5101,16,498,'Columbus City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5102,16,498,'Columbus Junction',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5103,16,352,'Colwell',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5104,16,472,'Conesville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5105,16,480,'Conrad',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5106,16,463,'Conroy',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5107,16,115,'Coon Rapids',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5108,16,63,'Cooper',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5109,16,135,'Coralville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5110,16,235,'Corning',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5111,16,467,'Correctionville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5112,16,446,'Corwith',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5113,16,431,'Corydon',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5114,16,92,'Coulter',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5115,16,476,'Council Bluffs',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5116,16,71,'Crawfordsville',1,6114,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(5117,16,476,'Crescent',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5118,16,141,'Cresco',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5119,16,131,'Creston',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5120,16,131,'Cromwell',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5121,16,446,'Crystal Lake',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5122,16,466,'Cumberland',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5123,16,386,'Cumming',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5124,16,477,'Curlew',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5125,16,467,'Cushing',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5126,16,477,'Cylinder',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5127,16,176,'Dakota City',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5128,16,58,'Dallas',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5129,16,94,'Dallas Center',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5130,16,63,'Dana',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5131,16,467,'Danbury',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5132,16,491,'Danville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5133,16,127,'Davenport',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5134,16,356,'Davis City',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5135,16,94,'Dawson',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5136,16,442,'Dayton',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5137,16,94,'De Soto',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5138,16,465,'De Witt',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5139,16,356,'Decatur',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5140,16,492,'Decorah',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5141,16,115,'Dedham',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5142,16,488,'Deep River',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5143,16,33,'Defiance',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5144,16,497,'Delaware',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5145,16,497,'Delhi',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5146,16,465,'Delmar',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5147,16,97,'Deloit',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5148,16,499,'Delta',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5149,16,97,'Denison',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5150,16,51,'Denmark',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5151,16,500,'Denver',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5152,16,495,'Derby',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5153,16,270,'Des Moines',1,6963,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5154,16,126,'Des Moines',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5155,16,493,'Dewar',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5156,16,94,'Dexter',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5157,16,483,'Diagonal',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5158,16,48,'Dickens',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5159,16,480,'Dike',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5160,16,127,'Dixon',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5161,16,469,'Dolliver',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5162,16,127,'Donahue',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5163,16,51,'Donnellson',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5164,16,462,'Doon',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5165,16,501,'Dorchester',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5166,16,116,'Douds',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5167,16,496,'Dougherty',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5168,16,97,'Dow City',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5169,16,481,'Dows',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5170,16,487,'Drakesville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5171,16,484,'Dubuque',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5172,16,74,'Dumont',1,7416,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(5173,16,442,'Duncombe',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5174,16,497,'Dundee',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5175,16,493,'Dunkerton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5176,16,502,'Dunlap',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5177,16,484,'Durango',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5178,16,482,'Durant',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5179,16,484,'Dyersville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5180,16,489,'Dysart',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5181,16,481,'Eagle Grove',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5182,16,68,'Earlham',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5183,16,33,'Earling',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5184,16,497,'Earlville',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5185,16,473,'Early',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5186,16,455,'Eddyville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5187,16,398,'Edgewood',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5188,16,489,'Elberon',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5189,16,455,'Eldon',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5190,16,453,'Eldora',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5191,16,127,'Eldridge',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5192,16,56,'Elgin',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5193,16,33,'Elk Horn',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5194,16,398,'Elkader',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5195,16,126,'Elkhart',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5196,16,398,'Elkport',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5197,16,72,'Elliott',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5198,16,483,'Ellston',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5199,16,334,'Ellsworth',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5200,16,141,'Elma',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5201,16,458,'Ely',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5202,16,503,'Emerson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5203,16,477,'Emmetsburg',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5204,16,484,'Epworth',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5205,16,485,'Essex',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5206,16,469,'Estherville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5207,16,493,'Evansdale',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5208,16,48,'Everly',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5209,16,474,'Exira',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5210,16,494,'Exline',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5211,16,475,'Fairbank',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5212,16,458,'Fairfax',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5213,16,30,'Fairfield',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5214,16,484,'Farley',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5215,16,398,'Farmersburg',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5216,16,116,'Farmington',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5217,16,37,'Farnhamville',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5218,16,253,'Farragut',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5219,16,56,'Fayette',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5220,16,459,'Fenton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5221,16,35,'Ferguson',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5222,16,441,'Fertile',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5223,16,487,'Floris',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5224,16,352,'Floyd',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5225,16,504,'Fonda',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5226,16,454,'Fontanelle',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5227,16,490,'Forest City',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5228,16,492,'Fort Atkinson',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5229,16,442,'Fort Dodge',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5230,16,51,'Fort Madison',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5231,16,48,'Fostoria',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5232,16,460,'Fredericksburg',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5233,16,500,'Frederika',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5234,16,479,'Fremont',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5235,16,472,'Fruitland',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5236,16,481,'Galt',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5237,16,471,'Galva',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5238,16,398,'Garber',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5239,16,453,'Garden City',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5240,16,356,'Garden Grove',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5241,16,398,'Garnavillo',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5242,16,446,'Garner',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5243,16,107,'Garrison',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5244,16,489,'Garwin',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5245,16,92,'Geneva',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5246,16,462,'George',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5247,16,499,'Gibson',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5248,16,453,'Gifford',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5249,16,464,'Gilbert',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5250,16,493,'Gilbertville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5251,16,48,'Gillett Grove',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5252,16,35,'Gilman',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5253,16,176,'Gilmore City',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5254,16,489,'Gladbrook',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5255,16,503,'Glenwood',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5256,16,115,'Glidden',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5257,16,481,'Goldfield',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5258,16,446,'Goodell',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5259,16,465,'Goose Lake',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5260,16,442,'Gowrie',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5261,16,477,'Graettinger',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5262,16,441,'Grafton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5263,16,63,'Grand Junction',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5264,16,465,'Grand Mound',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5265,16,356,'Grand River',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5266,16,498,'Grandview',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5267,16,94,'Granger',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5268,16,72,'Grant',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5269,16,461,'Granville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5270,16,337,'Gravity',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5271,16,474,'Gray',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5272,16,497,'Greeley',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5273,16,74,'Greene',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5274,16,454,'Greenfield',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5275,16,48,'Greenville',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5276,16,126,'Grimes',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5277,16,488,'Grinnell',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5278,16,466,'Griswold',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5279,16,480,'Grundy Center',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5280,16,270,'Gruver',1,11092,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5281,16,488,'Guernsey',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5282,16,478,'Guthrie Center',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5283,16,398,'Guttenberg',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5284,16,115,'Halbur',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5285,16,253,'Hamburg',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5286,16,58,'Hamilton',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5287,16,474,'Hamlin',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5288,16,92,'Hampton',1,108,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5289,16,476,'Hancock',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5290,16,441,'Hanlontown',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5291,16,442,'Harcourt',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5292,16,176,'Hardy',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5293,16,33,'Harlan',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5294,16,499,'Harper',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5295,16,501,'Harpers Ferry',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5296,16,333,'Harris',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5297,16,386,'Hartford',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5298,16,468,'Hartley',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5299,16,488,'Hartwick',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5300,16,58,'Harvey',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5301,16,503,'Hastings',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5302,16,504,'Havelock',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5303,16,35,'Haverhill',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5304,16,461,'Hawarden',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5305,16,56,'Hawkeye',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5306,16,499,'Hayesville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5307,16,475,'Hazleton',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5308,16,499,'Hedrick',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5309,16,503,'Henderson',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5310,16,458,'Hiawatha',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5311,16,492,'Highlandville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5312,16,135,'Hills',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5313,16,28,'Hillsboro',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5314,16,456,'Hinton',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5315,16,480,'Holland',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5316,16,471,'Holstein',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5317,16,484,'Holy Cross',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5318,16,463,'Homestead',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5319,16,476,'Honey Creek',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5320,16,497,'Hopkinton',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5321,16,467,'Hornick',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5322,16,461,'Hospers',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5323,16,51,'Houghton',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5324,16,453,'Hubbard',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5325,16,493,'Hudson',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5326,16,461,'Hull',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5327,16,176,'Humboldt',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5328,16,431,'Humeston',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5329,16,464,'Huxley',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5330,16,471,'Ida Grove',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5331,16,253,'Imogene',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5332,16,475,'Independence',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5333,16,386,'Indianola',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5334,16,462,'Inwood',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5335,16,460,'Ionia',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5336,16,135,'Iowa City',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5337,16,453,'Iowa Falls',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5338,16,427,'Ira',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5339,16,461,'Ireton',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5340,16,33,'Irwin',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5341,16,478,'Jamaica',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5342,16,500,'Janesville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5343,16,63,'Jefferson',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5344,16,475,'Jesup',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5345,16,334,'Jewell',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5346,16,126,'Johnston',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5347,16,441,'Joice',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5348,16,37,'Jolley',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5349,16,71,'Kalona',1,193,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5350,16,334,'Kamrar',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5351,16,446,'Kanawha',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5352,16,483,'Kellerton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5353,16,464,'Kelley',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5354,16,427,'Kellogg',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5355,16,441,'Kensett',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5356,16,51,'Keokuk',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5357,16,116,'Keosauqua',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5358,16,499,'Keota',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5359,16,74,'Kesley',1,13785,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(5360,16,499,'Keswick',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5361,16,107,'Keystone',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5362,16,427,'Killduff',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5363,16,474,'Kimballton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5364,16,456,'Kingsley',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5365,16,33,'Kirkman',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5366,16,455,'Kirkville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5367,16,97,'Kiron',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5368,16,446,'Klemme',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5369,16,37,'Knierim',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5370,16,58,'Knoxville',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5371,16,66,'La Motte',1,113,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5372,16,493,'La Porte City',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5373,16,386,'Lacona',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5374,16,463,'Ladora',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5375,16,37,'Lake City',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5376,16,490,'Lake Mills',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5377,16,470,'Lake Park',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5378,16,473,'Lake View',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5379,16,459,'Lakota',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5380,16,356,'Lamoni',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5381,16,475,'Lamont',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5382,16,115,'Lanesboro',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5383,16,424,'Langworthy',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5384,16,501,'Lansing',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5385,16,462,'Larchwood',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5386,16,73,'Larrabee',1,14620,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(5387,16,92,'Latimer',1,129,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5388,16,35,'Laurel',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5389,16,504,'Laurens',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5390,16,460,'Lawler',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5391,16,467,'Lawton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5392,16,127,'Le Claire',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5393,16,35,'Le Grand',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5394,16,456,'Le Mars',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5395,16,459,'Ledyard',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5396,16,442,'Lehigh',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5397,16,479,'Leighton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5398,16,490,'Leland',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5399,16,337,'Lenox',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5400,16,356,'Leon',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5401,16,462,'Lester',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5402,16,498,'Letts',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5403,16,466,'Lewis',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5404,16,386,'Liberty Center',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5405,16,30,'Libertyville',1,155,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5406,16,115,'Lidderdale',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5407,16,141,'Lime Springs',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5408,16,489,'Lincoln',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5409,16,94,'Linden',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5410,16,431,'Lineville',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5411,16,457,'Linn Grove',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5412,16,458,'Lisbon',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5413,16,35,'Liscomb',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5414,16,360,'Little Cedar',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5415,16,462,'Little Rock',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5416,16,502,'Little Sioux',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5417,16,176,'Livermore',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5418,16,30,'Lockridge',1,15381,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5419,16,502,'Logan',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5420,16,37,'Lohrville',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5421,16,459,'Lone Rock',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5422,16,135,'Lone Tree',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5423,16,127,'Long Grove',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5424,16,131,'Lorimor',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5425,16,465,'Lost Nation',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5426,16,59,'Lovilia',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5427,16,465,'Low Moor',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5428,16,482,'Lowden',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5429,16,459,'Lu Verne',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5430,16,398,'Luana',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5431,16,495,'Lucas',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5432,16,99,'Luther',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5433,16,484,'Luxemburg',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5434,16,107,'Luzerne',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5435,16,427,'Lynnville',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5436,16,37,'Lytton',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5437,16,476,'Macedonia',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5438,16,68,'Macksburg',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5439,16,99,'Madrid',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5440,16,502,'Magnolia',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5441,16,488,'Malcom',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5442,16,477,'Mallard',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5443,16,503,'Malvern',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5444,16,497,'Manchester',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5445,16,97,'Manilla',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5446,16,441,'Manly',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5447,16,115,'Manning',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5448,16,37,'Manson',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5449,16,486,'Mapleton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5450,16,66,'Maquoketa',1,126,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5451,16,457,'Marathon',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5452,16,352,'Marble Rock',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5453,16,73,'Marcus',1,16287,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(5454,16,463,'Marengo',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5455,16,458,'Marion',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5456,16,466,'Marne',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5457,16,398,'Marquette',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5458,16,35,'Marshalltown',1,16430,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5459,16,424,'Martelle',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5460,16,386,'Martensdale',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5461,16,499,'Martinsburg',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5462,16,496,'Mason City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5463,16,497,'Masonville',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5464,16,466,'Massena',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5465,16,461,'Matlock',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5466,16,461,'Maurice',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5467,16,464,'Maxwell',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5468,16,56,'Maynard',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5469,16,464,'Mc Callsburg',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5470,16,127,'Mc Causland',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5471,16,476,'Mc Clelland',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5472,16,398,'Mc Gregor',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5473,16,360,'Mc Intire',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5474,16,482,'Mechanicsville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5475,16,491,'Mediapolis',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5476,16,35,'Melbourne',1,16963,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5477,16,58,'Melcher',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5478,16,59,'Melrose',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5479,16,333,'Melvin',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5480,16,478,'Menlo',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5481,16,73,'Meriden',1,17075,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(5482,16,456,'Merrill',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5483,16,496,'Meservey',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5484,16,463,'Middle Amana',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5485,16,491,'Middletown',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5486,16,66,'Miles',1,136,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5487,16,470,'Milford',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5488,16,463,'Millersburg',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5489,16,431,'Millerton',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5490,16,386,'Milo',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5491,16,116,'Milton',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5492,16,94,'Minburn',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5493,16,476,'Minden',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5494,16,503,'Mineola',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5495,16,427,'Mingo',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5496,16,502,'Missouri Valley',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5497,16,126,'Mitchellville',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5498,16,502,'Modale',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5499,16,502,'Mondamin',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5500,16,66,'Monmouth',1,139,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5501,16,398,'Monona',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5502,16,427,'Monroe',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5503,16,488,'Montezuma',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5504,16,424,'Monticello',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5505,16,489,'Montour',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5506,16,472,'Montpelier',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5507,16,51,'Montrose',1,17856,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5508,16,486,'Moorhead',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5509,16,442,'Moorland',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5510,16,494,'Moravia',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5511,16,424,'Morley',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5512,16,498,'Morning Sun',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5513,16,480,'Morrison',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5514,16,472,'Moscow',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5515,16,494,'Moulton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5516,16,107,'Mount Auburn',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5517,16,483,'Mount Ayr',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5518,16,28,'Mount Pleasant',1,18198,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5519,16,116,'Mount Sterling',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5520,16,28,'Mount Union',1,18225,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5521,16,458,'Mount Vernon',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5522,16,467,'Moville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5523,16,40,'Murray',1,18377,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5524,16,472,'Muscatine',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5525,16,494,'Mystic',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5526,16,460,'Nashua',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5527,16,473,'Nemaha',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5528,16,476,'Neola',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5529,16,464,'Nevada',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5530,16,501,'New Albin',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5531,16,460,'New Hampton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5532,16,74,'New Hartford',1,18772,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(5533,16,127,'New Liberty',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5534,16,28,'New London',1,18825,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5535,16,337,'New Market',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5536,16,453,'New Providence',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5537,16,479,'New Sharon',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5538,16,484,'New Vienna',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5539,16,386,'New Virginia',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5540,16,457,'Newell',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5541,16,107,'Newhall',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5542,16,427,'Newton',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5543,16,472,'Nichols',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5544,16,235,'Nodaway',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5545,16,352,'Nora Springs',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5546,16,398,'North Buena Vista',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5547,16,463,'North English',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5548,16,135,'North Liberty',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5549,16,460,'North Washington',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5550,16,485,'Northboro',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5551,16,441,'Northwood',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5552,16,386,'Norwalk',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5553,16,107,'Norway',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5554,16,135,'Oakdale',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5555,16,476,'Oakland',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5556,16,498,'Oakville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5557,16,333,'Ocheyedan',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5558,16,473,'Odebolt',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5559,16,56,'Oelwein',1,19740,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5560,16,99,'Ogden',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5561,16,470,'Okoboji',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5562,16,28,'Olds',1,19851,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5563,16,424,'Olin',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5564,16,499,'Ollie',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5565,16,486,'Onawa',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5566,16,424,'Onslow',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5567,16,56,'Oran',1,19987,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5568,16,461,'Orange City',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5569,16,360,'Orchard',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5570,16,454,'Orient',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5571,16,360,'Osage',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5572,16,40,'Osceola',1,20128,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5573,16,479,'Oskaloosa',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5574,16,492,'Ossian',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5575,16,442,'Otho',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5576,16,58,'Otley',1,20172,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5577,16,467,'Oto',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5578,16,176,'Ottosen',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5579,16,455,'Ottumwa',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5580,16,135,'Oxford',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5581,16,424,'Oxford Junction',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5582,16,456,'Oyens',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5583,16,503,'Pacific Junction',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5584,16,30,'Packwood',1,204,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(5585,16,504,'Palmer',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5586,16,458,'Palo',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5587,16,33,'Panama',1,54,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(5588,16,478,'Panora',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5589,16,74,'Parkersburg',1,20512,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(5590,16,463,'Parnell',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5591,16,63,'Paton',1,99,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(5592,16,68,'Patterson',1,120,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(5593,16,468,'Paullina',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5594,16,58,'Pella',1,105,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(5595,16,484,'Peosta',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5596,16,253,'Percival',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5597,16,94,'Perry',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5598,16,502,'Persia',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5599,16,68,'Peru',1,122,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(5600,16,48,'Peterson',1,20917,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5601,16,467,'Pierson',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5602,16,51,'Pilot Grove',1,21068,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5603,16,99,'Pilot Mound',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5604,16,502,'Pisgah',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5605,16,500,'Plainfield',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5606,16,494,'Plano',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5607,16,127,'Pleasant Valley',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5608,16,58,'Pleasantville',1,107,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(5609,16,504,'Plover',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5610,16,496,'Plymouth',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5611,16,504,'Pocahontas',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5612,16,126,'Polk City',1,109,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5613,16,37,'Pomeroy',1,61,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(5614,16,92,'Popejoy',1,183,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5615,16,33,'Portsmouth',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5616,16,501,'Postville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5617,16,427,'Prairie City',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5618,16,458,'Prairieburg',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5619,16,235,'Prescott',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5620,16,66,'Preston',1,163,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5621,16,468,'Primghar',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5622,16,127,'Princeton',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5623,16,386,'Prole',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5624,16,431,'Promise City',1,123,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5625,16,141,'Protivin',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5626,16,487,'Pulaski',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5627,16,475,'Quasqueton',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5628,16,73,'Quimby',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5629,16,453,'Radcliffe',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5630,16,490,'Rake',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5631,16,115,'Ralston',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5632,16,56,'Randalia',1,127,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5633,16,334,'Randall',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5634,16,253,'Randolph',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5635,16,493,'Raymond',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5636,16,500,'Readlyn',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5637,16,427,'Reasnor',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5638,16,72,'Red Oak',1,181,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5639,16,483,'Redding',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5640,16,94,'Redfield',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5641,16,480,'Reinbeck',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5642,16,457,'Rembrandt',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5643,16,456,'Remsen',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5644,16,176,'Renwick',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5645,16,35,'Rhodes',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5646,16,141,'Riceville',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5647,16,499,'Richland',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5648,16,97,'Ricketts',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5649,16,492,'Ridgeway',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5650,16,469,'Ringsted',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5651,16,63,'Rippey',1,107,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5652,16,71,'Riverside',1,292,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5653,16,253,'Riverton',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5654,16,458,'Robins',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5655,16,496,'Rock Falls',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5656,16,462,'Rock Rapids',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5657,16,461,'Rock Valley',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5658,16,352,'Rockford',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5659,16,496,'Rockwell',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5660,16,37,'Rockwell City',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5661,16,486,'Rodney',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5662,16,464,'Roland',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5663,16,504,'Rolfe',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5664,16,28,'Rome',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5665,16,479,'Rose Hill',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5666,16,481,'Rowan',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5667,16,475,'Rowley',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5668,16,48,'Royal',1,107,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5669,16,352,'Rudd',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5670,16,126,'Runnells',1,114,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5671,16,495,'Russell',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5672,16,477,'Ruthven',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5673,16,176,'Rutland',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5674,16,497,'Ryan',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5675,16,66,'Sabula',1,172,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5676,16,473,'Sac City',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5677,16,360,'Saint Ansgar',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5678,16,35,'Saint Anthony',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5679,16,68,'Saint Charles',1,138,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5680,16,66,'Saint Donatus',1,173,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5681,16,56,'Saint Lucas',1,135,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5682,16,386,'Saint Marys',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5683,16,398,'Saint Olaf',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5684,16,51,'Saint Paul',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5685,16,28,'Salem',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5686,16,467,'Salix',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5687,16,468,'Sanborn',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5688,16,490,'Scarville',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5689,16,473,'Schaller',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5690,16,97,'Schleswig',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5691,16,63,'Scranton',1,114,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5692,16,488,'Searsboro',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5693,16,116,'Selma',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5694,16,467,'Sergeant Bluff',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5695,16,431,'Seymour',1,139,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5696,16,485,'Shambaugh',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5697,16,131,'Shannon City',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5698,16,337,'Sharpsburg',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5699,16,92,'Sheffield',1,217,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5700,16,476,'Shelby',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5701,16,126,'Sheldahl',1,119,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5702,16,468,'Sheldon',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5703,16,74,'Shell Rock',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5704,16,107,'Shellsburg',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5705,16,485,'Shenandoah',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5706,16,484,'Sherrill',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5707,16,333,'Sibley',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5708,16,253,'Sidney',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5709,16,499,'Sigourney',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5710,16,503,'Silver City',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5711,16,461,'Sioux Center',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5712,16,467,'Sioux City',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5713,16,457,'Sioux Rapids',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5714,16,464,'Slater',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5715,16,467,'Sloan',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5716,16,467,'Smithland',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5717,16,486,'Soldier',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5718,16,135,'Solon',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5719,16,37,'Somers',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5720,16,463,'South Amana',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5721,16,499,'South English',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5722,16,48,'Spencer',1,114,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5723,16,491,'Sperry',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5724,16,492,'Spillville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5725,16,470,'Spirit Lake',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5726,16,66,'Spragueville',1,183,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5727,16,66,'Springbrook',1,185,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5728,16,458,'Springville',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5729,16,360,'Stacyville',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5730,16,334,'Stanhope',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5731,16,475,'Stanley',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5732,16,72,'Stanton',1,204,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5733,16,482,'Stanwood',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5734,16,35,'State Center',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5735,16,453,'Steamboat Rock',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5736,16,116,'Stockport',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5737,16,472,'Stockton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5738,16,457,'Storm Lake',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5739,16,464,'Story City',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5740,16,480,'Stout',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5741,16,334,'Stratford',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5742,16,398,'Strawberry Point',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5743,16,478,'Stuart',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5744,16,427,'Sully',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5745,16,500,'Sumner',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5746,16,470,'Superior',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5747,16,468,'Sutherland',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5748,16,496,'Swaledale',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5749,16,58,'Swan',1,136,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5750,16,459,'Swea City',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5751,16,28,'Swedesburg',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5752,16,135,'Swisher',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5753,16,253,'Tabor',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5754,16,489,'Tama',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5755,16,465,'Teeds Grove',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5756,16,115,'Templeton',1,111,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5757,16,470,'Terril',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5758,16,131,'Thayer',1,106,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5759,16,490,'Thompson',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5760,16,176,'Thor',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5761,16,499,'Thornburg',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5762,16,496,'Thornton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5763,16,253,'Thurman',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5764,16,135,'Tiffin',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5765,16,483,'Tingley',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5766,16,482,'Tipton',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5767,16,459,'Titonka',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5768,16,458,'Toddville',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5769,16,360,'Toeterville',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5770,16,489,'Toledo',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5771,16,58,'Tracy',1,139,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5772,16,489,'Traer',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5773,16,476,'Treynor',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5774,16,500,'Tripoli',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5775,16,458,'Troy Mills',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5776,16,457,'Truesdale',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5777,16,68,'Truro',1,156,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5778,16,494,'Udell',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5779,16,476,'Underwood',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5780,16,453,'Union',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5781,16,494,'Unionville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5782,16,479,'University Park',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5783,16,107,'Urbana',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5784,16,126,'Urbandale',1,125,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5785,16,486,'Ute',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5786,16,97,'Vail',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5787,16,107,'Van Horne',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5788,16,94,'Van Meter',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5789,16,356,'Van Wert',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5790,16,504,'Varina',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5791,16,496,'Ventura',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5792,16,463,'Victor',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5793,16,72,'Villisca',1,222,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5794,16,442,'Vincent',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5795,16,489,'Vining',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5796,16,107,'Vinton',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5797,16,458,'Viola',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5798,16,398,'Volga',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5799,16,56,'Wadena',1,153,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5800,16,127,'Walcott',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5801,16,107,'Walford',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5802,16,458,'Walker',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5803,16,473,'Wall Lake',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5804,16,469,'Wallingford',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5805,16,476,'Walnut',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5806,16,498,'Wapello',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5807,16,71,'Washington',1,359,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5808,16,73,'Washta',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5809,16,493,'Waterloo',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5810,16,501,'Waterville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5811,16,107,'Watkins',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5812,16,56,'Waucoma',1,158,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5813,16,94,'Waukee',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5814,16,501,'Waukon',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5815,16,500,'Waverly',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5816,16,28,'Wayland',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5817,16,48,'Webb',1,125,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5818,16,499,'Webster',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5819,16,334,'Webster City',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5820,16,356,'Weldon',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5821,16,71,'Wellman',1,373,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5822,16,480,'Wellsburg',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5823,16,472,'Welton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5824,16,459,'Wesley',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5825,16,477,'West Bend',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5826,16,482,'West Branch',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5827,16,491,'West Burlington',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5828,16,71,'West Chester',1,377,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5829,16,126,'West Des Moines',1,128,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5830,16,487,'West Grove',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5831,16,472,'West Liberty',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5832,16,51,'West Point',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5833,16,56,'West Union',1,161,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5834,16,456,'Westfield',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5835,16,56,'Westgate',1,162,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5836,16,33,'Westphalia',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5837,16,97,'Westside',1,103,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5838,16,51,'Wever',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5839,16,499,'What Cheer',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5840,16,465,'Wheatland',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5841,16,486,'Whiting',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5842,16,459,'Whittemore',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5843,16,453,'Whitten',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5844,16,334,'Williams',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5845,16,463,'Williamsburg',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5846,16,495,'Williamson',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5847,16,472,'Wilton',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5848,16,28,'Winfield',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5849,16,68,'Winterset',1,166,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5850,16,475,'Winthrop',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5851,16,466,'Wiota',1,102,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5852,16,446,'Woden',1,104,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5853,16,502,'Woodbine',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5854,16,40,'Woodburn',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5855,16,94,'Woodward',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5856,16,481,'Woolstock',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5857,16,484,'Worthington',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5858,16,424,'Wyoming',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5859,16,478,'Yale',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5860,16,491,'Yarmouth',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5861,16,485,'Yorktown',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5862,16,464,'Zearing',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5863,16,484,'Zwingle',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5864,13,505,'Aberdeen',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5865,13,506,'Ahsahka',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5866,13,507,'Albion',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5867,13,507,'Almo',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5868,13,508,'American Falls',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5869,13,508,'Arbon',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5870,13,198,'Arco',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5871,13,509,'Arimo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5872,13,253,'Ashton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5873,13,510,'Athol',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5874,13,79,'Atlanta',1,1123,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(5875,13,505,'Atomic City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5876,13,511,'Avery',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5877,13,512,'Bancroft',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5878,13,513,'Banks',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5879,13,505,'Basalt',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5880,13,510,'Bayview',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5881,13,514,'Bellevue',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5882,13,515,'Bern',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5883,13,505,'Blackfoot',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5884,13,516,'Blanchard',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5885,13,517,'Bliss',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5886,13,515,'Bloomington',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5887,13,270,'Boise',1,2644,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5888,13,518,'Boise',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5889,13,519,'Bonners Ferry',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5890,13,520,'Bovill',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5891,13,521,'Bruneau',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5892,13,522,'Buhl',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5893,13,507,'Burley',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5894,13,511,'Calder',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5895,13,523,'Caldwell',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5896,13,71,'Cambridge',1,3848,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(5897,13,514,'Carey',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5898,13,516,'Careywood',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5899,13,524,'Carmen',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5900,13,525,'Cascade',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5901,13,522,'Castleford',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5902,13,510,'Cataldo',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5903,13,278,'Challis',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5904,13,253,'Chester',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5905,13,516,'Clark Fork',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5906,13,511,'Clarkia',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5907,13,278,'Clayton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5908,13,92,'Clifton',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5909,13,524,'Cobalt',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5910,13,516,'Cocolalla',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5911,13,510,'Coeur D Alene',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5912,13,516,'Colburn',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5913,13,512,'Conda',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5914,13,516,'Coolin',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5915,13,526,'Corral',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5916,13,527,'Cottonwood',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5917,13,235,'Council',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5918,13,528,'Craigmont',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5919,13,529,'Culdesac',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5920,13,92,'Dayton',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5921,13,520,'Deary',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5922,13,507,'Declo',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5923,13,530,'Desmet',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5924,13,147,'Dietrich',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5925,13,515,'Dingle',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5926,13,525,'Donnelly',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5927,13,516,'Dover',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5928,13,509,'Downey',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5929,13,531,'Driggs',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5930,13,100,'Dubois',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5931,13,518,'Eagle',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5932,13,519,'Eastport',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5933,13,532,'Eden',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5934,13,527,'Elk City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5935,13,506,'Elk River',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5936,13,278,'Ellis',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5937,13,533,'Emmett',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5938,13,526,'Fairfield',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5939,13,531,'Felt',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5940,13,527,'Fenn',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5941,13,527,'Ferdinand',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5942,13,530,'Fernwood',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5943,13,522,'Filer',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5944,13,505,'Firth',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5945,13,515,'Fish Haven',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5946,13,505,'Fort Hall',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5947,13,92,'Franklin',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5948,13,534,'Fruitland',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5949,13,518,'Garden City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5950,13,513,'Garden Valley',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5951,13,520,'Genesee',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5952,13,515,'Geneva',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5953,13,515,'Georgetown',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5954,13,524,'Gibbonsville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5955,13,79,'Glenns Ferry',1,10371,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(5956,13,517,'Gooding',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5957,13,512,'Grace',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5958,13,521,'Grand View',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5959,13,527,'Grangeville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5960,13,527,'Greencreek',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5961,13,523,'Greenleaf',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5962,13,517,'Hagerman',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5963,13,514,'Hailey',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5964,13,30,'Hamer',1,112,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5965,13,79,'Hammett',1,11318,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(5966,13,522,'Hansen',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5967,13,510,'Harrison',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5968,13,520,'Harvard',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5969,13,510,'Hayden',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5970,13,532,'Hazelton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5971,13,535,'Heyburn',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5972,13,526,'Hill City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5973,13,536,'Holbrook',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5974,13,521,'Homedale',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5975,13,516,'Hope',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5976,13,513,'Horseshoe Bend',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5977,13,198,'Howe',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5978,13,523,'Huston',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5979,13,513,'Idaho City',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5980,13,537,'Idaho Falls',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5981,13,235,'Indian Valley',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5982,13,509,'Inkom',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5983,13,537,'Iona',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5984,13,537,'Irwin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5985,13,253,'Island Park',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5986,13,532,'Jerome',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5987,13,520,'Juliaetta',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5988,13,528,'Kamiah',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5989,13,511,'Kellogg',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5990,13,520,'Kendrick',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5991,13,514,'Ketchum',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5992,13,522,'Kimberly',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5993,13,79,'King Hill',1,13894,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(5994,13,511,'Kingston',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5995,13,527,'Kooskia',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5996,13,516,'Kootenai',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5997,13,518,'Kuna',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5998,13,516,'Laclede',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(5999,13,525,'Lake Fork',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6000,13,529,'Lapwai',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6001,13,509,'Lava Hot Springs',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6002,13,524,'Leadore',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6003,13,524,'Lemhi',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6004,13,506,'Lenore',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6005,13,533,'Letha',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6006,13,529,'Lewiston',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6007,13,30,'Lewisville',1,154,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6008,13,513,'Lowman',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6009,13,527,'Lucile',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6010,13,278,'Mackay',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6011,13,253,'Macks Inn',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6012,13,536,'Malad City',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6013,13,507,'Malta',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6014,13,521,'Marsing',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6015,13,524,'May',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6016,13,525,'Mccall',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6017,13,509,'Mccammon',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6018,13,510,'Medimont',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6019,13,523,'Melba',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6020,13,30,'Menan',1,17010,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6021,13,518,'Meridian',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6022,13,235,'Mesa',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6023,13,523,'Middleton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6024,13,71,'Midvale',1,17278,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6025,13,535,'Minidoka',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6026,13,30,'Monteview',1,17789,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6027,13,515,'Montpelier',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6028,13,198,'Moore',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6029,13,505,'Moreland',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6030,13,520,'Moscow',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6031,13,79,'Mountain Home',1,18265,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6032,13,79,'Mountain Home A F B',1,18266,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6033,13,519,'Moyie Springs',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6034,13,511,'Mullan',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6035,13,521,'Murphy',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6036,13,511,'Murray',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6037,13,522,'Murtaugh',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6038,13,523,'Nampa',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6039,13,519,'Naples',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6040,13,235,'New Meadows',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6041,13,534,'New Plymouth',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6042,13,253,'Newdale',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6043,13,528,'Nezperce',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6044,13,516,'Nordman',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6045,13,524,'North Fork',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6046,13,523,'Notus',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6047,13,507,'Oakley',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6048,13,533,'Ola',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6049,13,516,'Oldtown',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6050,13,506,'Orofino',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6051,13,511,'Osburn',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6052,13,515,'Paris',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6053,13,253,'Parker',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6054,13,523,'Parma',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6055,13,535,'Paul',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6056,13,534,'Payette',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6057,13,529,'Peck',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6058,13,514,'Picabo',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6059,13,506,'Pierce',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6060,13,511,'Pinehurst',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6061,13,505,'Pingree',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6062,13,513,'Placerville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6063,13,530,'Plummer',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6064,13,509,'Pocatello',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6065,13,527,'Pollock',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6066,13,516,'Ponderay',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6067,13,519,'Porthill',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6068,13,510,'Post Falls',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6069,13,520,'Potlatch',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6070,13,92,'Preston',1,184,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6071,13,516,'Priest River',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6072,13,520,'Princeton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6073,13,510,'Rathdrum',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6074,13,528,'Reubens',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6075,13,68,'Rexburg',1,132,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6076,13,147,'Richfield',1,142,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6077,13,30,'Rigby',1,233,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6078,13,527,'Riggins',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6079,13,30,'Ririe',1,237,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6080,13,30,'Roberts',1,238,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6081,13,508,'Rockland',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6082,13,522,'Rogerson',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6083,13,535,'Rupert',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6084,13,516,'Sagle',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6085,13,253,'Saint Anthony',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6086,13,515,'Saint Charles',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6087,13,530,'Saint Maries',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6088,13,524,'Salmon',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6089,13,516,'Sandpoint',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6090,13,530,'Santa',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6091,13,505,'Shelley',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6092,13,147,'Shoshone',1,151,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6093,13,524,'Shoup',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6094,13,511,'Silverton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6095,13,511,'Smelterville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6096,13,512,'Soda Springs',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6097,13,100,'Spencer',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6098,13,510,'Spirit Lake',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6099,13,505,'Springfield',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6100,13,278,'Stanley',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6101,13,518,'Star',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6102,13,527,'Stites',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6103,13,68,'Sugar City',1,149,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6104,13,514,'Sun Valley',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6105,13,537,'Swan Valley',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6106,13,509,'Swanlake',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6107,13,533,'Sweet',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6108,13,524,'Tendoy',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6109,13,530,'Tensed',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6110,13,30,'Terreton',1,264,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6111,13,253,'Teton',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6112,13,531,'Tetonia',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6113,13,92,'Thatcher',1,236,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6114,13,520,'Troy',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6115,13,522,'Twin Falls',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6116,13,537,'Ucon',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6117,13,531,'Victor',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6118,13,520,'Viola',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6119,13,511,'Wallace',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6120,13,527,'Warren',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6121,13,512,'Wayan',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6122,13,506,'Weippe',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6123,13,71,'Weiser',1,372,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6124,13,517,'Wendell',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6125,13,92,'Weston',1,258,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6126,13,527,'White Bird',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6127,13,523,'Wilder',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6128,13,528,'Winchester',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6129,13,510,'Worley',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6130,13,525,'Yellow Pine',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6131,14,538,'Abingdon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6132,14,539,'Adair',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6133,14,71,'Addieville',1,102,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6134,14,540,'Addison',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6135,14,92,'Akin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6136,14,541,'Albany',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6137,14,465,'Albers',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6138,14,542,'Albion',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6139,14,543,'Alden',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6140,14,544,'Aledo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6141,14,82,'Alexander',1,309,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6142,14,544,'Alexis',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6143,14,543,'Algonquin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6144,14,68,'Alhambra',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6145,14,545,'Allendale',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6146,14,546,'Allerton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6147,14,58,'Alma',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6148,14,28,'Alpha',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6149,14,127,'Alsey',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6150,14,342,'Alsip',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6151,14,393,'Altamont',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6152,14,131,'Alto Pass',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6153,14,68,'Alton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6154,14,538,'Altona',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6155,14,546,'Alvin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6156,14,51,'Amboy',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6157,14,547,'Anchor',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6158,14,548,'Ancona',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6159,14,549,'Andalusia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6160,14,28,'Andover',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6161,14,131,'Anna',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6162,14,97,'Annapolis',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6163,14,28,'Annawan',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6164,14,216,'Antioch',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6165,14,550,'Apple River',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6166,14,254,'Arcola',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6167,14,466,'Arenzville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6168,14,89,'Argenta',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6169,14,551,'Arlington',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6170,14,342,'Arlington Heights',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6171,14,552,'Armington',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6172,14,546,'Armstrong',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6173,14,553,'Aroma Park',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6174,14,547,'Arrowsmith',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6175,14,254,'Arthur',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6176,14,554,'Ashkum',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6177,14,466,'Ashland',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6178,14,71,'Ashley',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6179,14,555,'Ashmore',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6180,14,51,'Ashton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6181,14,556,'Assumption',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6182,14,119,'Astoria',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6183,14,557,'Athens',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6184,14,28,'Atkinson',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6185,14,124,'Atlanta',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6186,14,254,'Atwood',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6187,14,558,'Auburn',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6188,14,446,'Augusta',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6189,14,540,'Aurora',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6190,14,559,'Aurora',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6191,14,66,'Ava',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6192,14,465,'Aviston',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6193,14,119,'Avon',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6194,14,560,'Baileyville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6195,14,91,'Baldwin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6196,14,539,'Bardolph',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6197,14,431,'Barnhill',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6198,14,216,'Barrington',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6199,14,55,'Barry',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6200,14,549,'Barstow',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6201,14,465,'Bartelso',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6202,14,540,'Bartlett',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6203,14,446,'Basco',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6204,14,559,'Batavia',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6205,14,37,'Batchtown',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6206,14,561,'Bath',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6207,14,55,'Baylis',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6208,14,466,'Beardstown',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6209,14,124,'Beason',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6210,14,554,'Beaverville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6211,14,465,'Beckemeyer',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6212,14,342,'Bedford Park',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6213,14,562,'Beecher',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6214,14,393,'Beecher City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6215,14,135,'Belknap',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6216,14,30,'Belle Rive',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6217,14,49,'Belleville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6218,14,547,'Bellflower',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6219,14,545,'Bellmont',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6220,14,342,'Bellwood',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6221,14,99,'Belvidere',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6222,14,563,'Bement',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6223,14,564,'Benld',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6224,14,540,'Bensenville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6225,14,565,'Benson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6226,14,92,'Benton',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6227,14,342,'Berkeley',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6228,14,386,'Berwick',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6229,14,342,'Berwyn',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6230,14,68,'Bethalto',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6231,14,566,'Bethany',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6232,14,559,'Big Rock',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6233,14,567,'Biggsville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6234,14,56,'Bingham',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6235,14,28,'Bishop Hill',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6236,14,546,'Bismarck',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6237,14,548,'Blackstone',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6238,14,539,'Blandinsville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6239,14,540,'Bloomingdale',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6240,14,547,'Bloomington',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6241,14,342,'Blue Island',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6242,14,89,'Blue Mound',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6243,14,466,'Bluff Springs',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6244,14,127,'Bluffs',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6245,14,30,'Bluford',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6246,14,135,'Boles',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6247,14,562,'Bolingbrook',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6248,14,568,'Bondville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6249,14,542,'Bone Gap',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6250,14,553,'Bonfield',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6251,14,30,'Bonnie',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6252,14,89,'Boody',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6253,14,553,'Bourbonnais',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6254,14,446,'Bowen',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6255,14,480,'Braceville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6256,14,569,'Bradford',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6257,14,553,'Bradley',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6258,14,562,'Braidwood',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6259,14,465,'Breese',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6260,14,81,'Bridgeport',1,3058,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6261,14,342,'Bridgeview',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6262,14,564,'Brighton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6263,14,570,'Brimfield',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6264,14,571,'Bristol',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6265,14,568,'Broadlands',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6266,14,342,'Broadview',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6267,14,572,'Brocton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6268,14,342,'Brookfield',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6269,14,573,'Brookport',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6270,14,334,'Broughton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6271,14,574,'Browning',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6272,14,542,'Browns',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6273,14,56,'Brownstown',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6274,14,37,'Brussels',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6275,14,119,'Bryant',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6276,14,553,'Buckingham',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6277,14,554,'Buckley',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6278,14,92,'Buckner',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6279,14,551,'Buda',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6280,14,558,'Buffalo',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6281,14,216,'Buffalo Grove',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6282,14,549,'Buffalo Prairie',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6283,14,556,'Bulpitt',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6284,14,135,'Buncombe',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6285,14,564,'Bunker Hill',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6286,14,342,'Burbank',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6287,14,551,'Bureau',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6288,14,559,'Burlington',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6289,14,108,'Burnt Prairie',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6290,14,539,'Bushnell',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6291,14,72,'Butler',1,3643,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6292,14,560,'Byron',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6293,14,575,'Cabery',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6294,14,576,'Cairo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6295,14,99,'Caledonia',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6296,14,577,'Calhoun',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6297,14,342,'Calumet City',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6298,14,254,'Camargo',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6299,14,578,'Cambria',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6300,14,28,'Cambridge',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6301,14,574,'Camden',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6302,14,386,'Cameron',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6303,14,35,'Camp Grove',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6304,14,235,'Camp Point',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6305,14,66,'Campbell Hill',1,3927,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6306,14,548,'Campus',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6307,14,119,'Canton',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6308,14,558,'Cantrall',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6309,14,99,'Capron',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6310,14,549,'Carbon Cliff',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6311,14,66,'Carbondale',1,4086,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6312,14,564,'Carlinville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6313,14,547,'Carlock',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6314,14,465,'Carlyle',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6315,14,567,'Carman',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6316,14,108,'Carmi',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6317,14,540,'Carol Stream',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6318,14,559,'Carpentersville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6319,14,95,'Carrier Mills',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6320,14,63,'Carrollton',1,4190,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6321,14,578,'Carterville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6322,14,446,'Carthage',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6323,14,543,'Cary',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6324,14,100,'Casey',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6325,14,49,'Caseyville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6326,14,569,'Castleton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6327,14,546,'Catlin',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6328,14,453,'Cave In Rock',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6329,14,579,'Cedar Point',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6330,14,580,'Cedarville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6331,14,58,'Centralia',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6332,14,563,'Cerro Gordo',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6333,14,115,'Chadwick',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6334,14,55,'Chambersburg',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6335,14,568,'Champaign',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6336,14,560,'Chana',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6337,14,466,'Chandlerville',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6338,14,562,'Channahon',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6339,14,82,'Chapin',1,4628,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6340,14,555,'Charleston',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6341,14,558,'Chatham',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6342,14,548,'Chatsworth',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6343,14,554,'Chebanse',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6344,14,547,'Chenoa',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6345,14,551,'Cherry',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6346,14,490,'Cherry Valley',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6347,14,91,'Chester',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6348,14,564,'Chesterfield',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6349,14,124,'Chestnut',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6350,14,342,'Chicago',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6351,14,342,'Chicago Heights',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6352,14,342,'Chicago Ridge',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6353,14,570,'Chillicothe',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6354,14,572,'Chrisman',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6355,14,92,'Christopher',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6356,14,342,'Cicero',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6357,14,563,'Cisco',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6358,14,431,'Cisne',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6359,14,554,'Cissna Park',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6360,14,355,'Clare',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6361,14,577,'Claremont',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6362,14,540,'Clarendon Hills',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6363,14,48,'Clay City',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6364,14,235,'Clayton',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6365,14,554,'Claytonville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6366,14,554,'Clifton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6367,14,581,'Clinton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6368,14,480,'Coal City',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6369,14,549,'Coal Valley',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6370,14,235,'Coatsburg',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6371,14,131,'Cobden',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6372,14,92,'Coello',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6373,14,72,'Coffeen',1,5428,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6374,14,539,'Colchester',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6375,14,547,'Colfax',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6376,14,68,'Collinsville',1,5533,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6377,14,546,'Collison',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6378,14,28,'Colona',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6379,14,578,'Colp',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6380,14,59,'Columbia',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6381,14,446,'Colusa',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6382,14,51,'Compton',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6383,14,82,'Concord',1,5697,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6384,14,565,'Congerville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6385,14,547,'Cooksville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6386,14,549,'Cordova',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6387,14,548,'Cornell',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6388,14,124,'Cornland',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6389,14,355,'Cortland',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6390,14,68,'Cottage Hills',1,5958,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6391,14,91,'Coulterville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6392,14,342,'Country Club Hills',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6393,14,33,'Cowden',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6394,14,578,'Creal Springs',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6395,14,554,'Crescent City',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6396,14,562,'Crest Hill',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6397,14,560,'Creston',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6398,14,562,'Crete',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6399,14,552,'Creve Coeur',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6400,14,547,'Cropsey',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6401,14,108,'Crossville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6402,14,543,'Crystal Lake',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6403,14,119,'Cuba',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6404,14,548,'Cullom',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6405,14,93,'Cutler',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6406,14,135,'Cypress',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6407,14,538,'Dahinda',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6408,14,334,'Dahlgren',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6409,14,580,'Dakota',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6410,14,334,'Dale',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6411,14,446,'Dallas City',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6412,14,566,'Dalton City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6413,14,551,'Dalzell',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6414,14,579,'Dana',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6415,14,554,'Danforth',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6416,14,547,'Danvers',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6417,14,546,'Danville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6418,14,540,'Darien',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6419,14,580,'Davis',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6420,14,560,'Davis Junction',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6421,14,558,'Dawson',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6422,14,563,'De Land',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6423,14,66,'De Soto',1,6692,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6424,14,89,'Decatur',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6425,14,552,'Deer Creek',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6426,14,541,'Deer Grove',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6427,14,216,'Deerfield',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6428,14,355,'Dekalb',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6429,14,552,'Delavan',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6430,14,100,'Dennison',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6431,14,551,'Depue',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6432,14,342,'Des Plaines',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6433,14,568,'Dewey',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6434,14,581,'Dewitt',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6435,14,393,'Dieterich',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6436,14,558,'Divernon',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6437,14,30,'Dix',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6438,14,51,'Dixon',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6439,14,342,'Dolton',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6440,14,131,'Dongola',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6441,14,72,'Donnellson',1,7170,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6442,14,554,'Donovan',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6443,14,68,'Dorsey',1,7201,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6444,14,551,'Dover',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6445,14,582,'Dow',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6446,14,66,'Dowell',1,7260,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6447,14,540,'Downers Grove',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6448,14,547,'Downs',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6449,14,71,'Du Bois',1,7354,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6450,14,93,'Du Quoin',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6451,14,577,'Dundas',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6452,14,559,'Dundee',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6453,14,119,'Dunfermline',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6454,14,570,'Dunlap',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6455,14,49,'Dupo',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6456,14,490,'Durand',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6457,14,548,'Dwight',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6458,14,564,'Eagarville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6459,14,579,'Earlville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6460,14,68,'East Alton',1,7609,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6461,14,49,'East Carondelet',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6462,14,550,'East Dubuque',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6463,14,538,'East Galesburg',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6464,14,546,'East Lynn',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6465,14,549,'East Moline',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6466,14,552,'East Peoria',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6467,14,49,'East Saint Louis',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6468,14,561,'Easton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6469,14,104,'Eddyville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6470,14,570,'Edelstein',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6471,14,393,'Edgewood',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6472,14,556,'Edinburg',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6473,14,570,'Edwards',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6474,14,68,'Edwardsville',1,7961,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6475,14,393,'Effingham',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6476,14,565,'El Paso',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6477,14,559,'Elburn',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6478,14,51,'Eldena',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6479,14,95,'Eldorado',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6480,14,63,'Eldred',1,8057,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6481,14,580,'Eleroy',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6482,14,559,'Elgin',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6483,14,550,'Elizabeth',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6484,14,453,'Elizabethtown',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6485,14,342,'Elk Grove Village',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6486,14,124,'Elkhart',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6487,14,66,'Elkville',1,8171,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6488,14,542,'Ellery',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6489,14,575,'Elliott',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6490,14,91,'Ellis Grove',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6491,14,119,'Ellisville',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6492,14,547,'Ellsworth',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6493,14,540,'Elmhurst',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6494,14,570,'Elmwood',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6495,14,342,'Elmwood Park',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6496,14,582,'Elsah',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6497,14,446,'Elvaston',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6498,14,89,'Elwin',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6499,14,562,'Elwood',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6500,14,124,'Emden',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6501,14,548,'Emington',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6502,14,108,'Emma',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6503,14,578,'Energy',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6504,14,108,'Enfield',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6505,14,540,'Eola',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6506,14,583,'Equality',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6507,14,541,'Erie',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6508,14,355,'Esmond',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6509,14,553,'Essex',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6510,14,565,'Eureka',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6511,14,342,'Evanston',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6512,14,91,'Evansville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6513,14,342,'Evergreen Park',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6514,14,92,'Ewing',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6515,14,548,'Fairbury',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6516,14,431,'Fairfield',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6517,14,546,'Fairmount',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6518,14,119,'Fairview',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6519,14,49,'Fairview Heights',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6520,14,56,'Farina',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6521,14,581,'Farmer City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6522,14,72,'Farmersville',1,8856,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6523,14,119,'Farmington',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6524,14,541,'Fenton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6525,14,446,'Ferris',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6526,14,119,'Fiatt',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6527,14,582,'Fidelity',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6528,14,582,'Fieldon',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6529,14,72,'Fillmore',1,9019,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6530,14,33,'Findlay',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6531,14,568,'Fisher',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6532,14,546,'Fithian',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6533,14,548,'Flanagan',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6534,14,97,'Flat Rock',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6535,14,48,'Flora',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6536,14,342,'Flossmoor',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6537,14,568,'Foosland',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6538,14,561,'Forest City',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6539,14,342,'Forest Park',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6540,14,548,'Forrest',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6541,14,560,'Forreston',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6542,14,89,'Forsyth',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6543,14,216,'Fort Sheridan',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6544,14,235,'Fowler',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6545,14,216,'Fox Lake',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6546,14,543,'Fox River Grove',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6547,14,540,'Fox Valley',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6548,14,562,'Frankfort',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6549,14,92,'Frankfort Heights',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6550,14,82,'Franklin',1,9534,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6551,14,51,'Franklin Grove',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6552,14,342,'Franklin Park',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6553,14,574,'Frederick',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6554,14,49,'Freeburg',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6555,14,578,'Freeman Spur',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6556,14,580,'Freeport',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6557,14,541,'Fulton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6558,14,59,'Fults',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6559,14,95,'Galatia',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6560,14,550,'Galena',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6561,14,538,'Galesburg',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6562,14,541,'Galt',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6563,14,28,'Galva',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6564,14,99,'Garden Prairie',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6565,14,480,'Gardner',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6566,14,566,'Gays',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6567,14,431,'Geff',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6568,14,28,'Geneseo',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6569,14,559,'Geneva',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6570,14,355,'Genoa',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6571,14,546,'Georgetown',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6572,14,386,'Gerlaw',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6573,14,580,'German Valley',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6574,14,465,'Germantown',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6575,14,575,'Gibson City',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6576,14,568,'Gifford',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6577,14,559,'Gilberts',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6578,14,564,'Gillespie',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6579,14,554,'Gilman',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6580,14,538,'Gilson',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6581,14,564,'Girard',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6582,14,567,'Gladstone',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6583,14,570,'Glasford',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6584,14,68,'Glen Carbon',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6585,14,540,'Glen Ellyn',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6586,14,558,'Glenarm',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6587,14,342,'Glencoe',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6588,14,540,'Glendale Heights',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6589,14,342,'Glenview',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6590,14,342,'Glenwood',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6591,14,68,'Godfrey',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6592,14,104,'Golconda',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6593,14,235,'Golden',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6594,14,37,'Golden Eagle',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6595,14,431,'Golden Gate',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6596,14,342,'Golf',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6597,14,539,'Good Hope',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6598,14,565,'Goodfield',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6599,14,554,'Goodwine',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6600,14,135,'Goreville',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6601,14,66,'Gorham',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6602,14,582,'Grafton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6603,14,136,'Grand Chain',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6604,14,579,'Grand Ridge',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6605,14,66,'Grand Tower',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6606,14,68,'Granite City',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6607,14,553,'Grant Park',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6608,14,135,'Grantsburg',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6609,14,308,'Granville',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6610,14,548,'Graymont',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6611,14,216,'Grayslake',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6612,14,108,'Grayville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6613,14,216,'Great Lakes',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6614,14,552,'Green Valley',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6615,14,63,'Greenfield',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6616,14,584,'Greenup',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6617,14,557,'Greenview',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6618,14,585,'Greenville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6619,14,547,'Gridley',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6620,14,55,'Griggsville',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6621,14,552,'Groveland',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6622,14,216,'Gurnee',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6623,14,56,'Hagarstown',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6624,14,37,'Hamburg',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6625,14,68,'Hamel',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6626,14,446,'Hamilton',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6627,14,563,'Hammond',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6628,14,559,'Hampshire',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6629,14,549,'Hampton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6630,14,570,'Hanna City',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6631,14,550,'Hanover',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6632,14,342,'Hanover Park',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6633,14,37,'Hardin',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6634,14,51,'Harmon',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6635,14,95,'Harrisburg',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6636,14,89,'Harristown',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6637,14,68,'Hartford',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6638,14,124,'Hartsburg',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6639,14,543,'Harvard',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6640,14,72,'Harvel',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6641,14,342,'Harvey',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6642,14,342,'Harwood Heights',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6643,14,561,'Havana',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6644,14,342,'Hazel Crest',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6645,14,543,'Hebron',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6646,14,59,'Hecker',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6647,14,538,'Henderson',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6648,14,308,'Hennepin',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6649,14,546,'Henning',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6650,14,35,'Henry',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6651,14,104,'Herod',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6652,14,33,'Herrick',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6653,14,578,'Herrin',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6654,14,553,'Herscher',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6655,14,564,'Hettick',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6656,14,547,'Heyworth',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6657,14,342,'Hickory Hills',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6658,14,427,'Hidalgo',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6659,14,68,'Highland',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6660,14,216,'Highland Park',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6661,14,216,'Highwood',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6662,14,72,'Hillsboro',1,105,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6663,14,549,'Hillsdale',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6664,14,342,'Hillside',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6665,14,63,'Hillview',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6666,14,355,'Hinckley',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6667,14,254,'Hindsboro',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6668,14,342,'Hines',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6669,14,540,'Hinsdale',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6670,14,465,'Hoffman',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6671,14,342,'Hoffman Estates',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6672,14,560,'Holcomb',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6673,14,568,'Homer',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6674,14,562,'Homer Glen',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6675,14,342,'Hometown',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6676,14,342,'Homewood',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6677,14,546,'Hoopeston',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6678,14,28,'Hooppole',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6679,14,552,'Hopedale',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6680,14,553,'Hopkins Park',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6681,14,71,'Hoyleton',1,177,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6682,14,547,'Hudson',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6683,14,465,'Huey',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6684,14,55,'Hull',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6685,14,555,'Humboldt',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6686,14,572,'Hume',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6687,14,543,'Huntley',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6688,14,574,'Huntsville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6689,14,578,'Hurst',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6690,14,97,'Hutsonville',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6691,14,549,'Illinois City',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6692,14,558,'Illiopolis',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6693,14,30,'Ina',1,133,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6694,14,546,'Indianola',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6695,14,539,'Industry',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6696,14,216,'Ingleside',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6697,14,48,'Ingraham',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6698,14,119,'Ipava',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6699,14,554,'Iroquois',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6700,14,72,'Irving',1,13037,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6701,14,71,'Irvington',1,184,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6702,14,216,'Island Lake',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6703,14,540,'Itasca',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6704,14,58,'Iuka',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6705,14,568,'Ivesdale',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6706,14,82,'Jacksonville',1,13172,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6707,14,66,'Jacob',1,106,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6708,14,584,'Janesville',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6709,14,582,'Jerseyville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6710,14,584,'Jewett',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6711,14,431,'Johnsonville',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6712,14,578,'Johnston City',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6713,14,562,'Joliet',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6714,14,131,'Jonesboro',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6715,14,573,'Joppa',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6716,14,544,'Joy',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6717,14,583,'Junction',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6718,14,342,'Justice',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6719,14,37,'Kampsville',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6720,14,63,'Kane',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6721,14,559,'Kaneville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6722,14,553,'Kankakee',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6723,14,572,'Kansas',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6724,14,453,'Karbers Ridge',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6725,14,136,'Karnak',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6726,14,551,'Kasbeer',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6727,14,431,'Keenes',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6728,14,545,'Keensburg',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6729,14,544,'Keithsburg',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6730,14,58,'Kell',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6731,14,575,'Kempton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6732,14,342,'Kenilworth',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6733,14,581,'Kenney',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6734,14,580,'Kent',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6735,14,28,'Kewanee',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6736,14,465,'Keyesport',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6737,14,561,'Kilbourne',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6738,14,556,'Kincaid',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6739,14,55,'Kinderhook',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6740,14,355,'Kingston',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6741,14,570,'Kingston Mines',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6742,14,58,'Kinmundy',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6743,14,480,'Kinsman',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6744,14,355,'Kirkland',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6745,14,386,'Kirkwood',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6746,14,538,'Knoxville',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6747,14,569,'La Fayette',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6748,14,342,'La Grange',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6749,14,342,'La Grange Park',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6750,14,446,'La Harpe',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6751,14,551,'La Moille',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6752,14,563,'La Place',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6753,14,235,'La Prairie',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6754,14,35,'La Rose',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6755,14,579,'La Salle',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6756,14,35,'Lacon',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6757,14,551,'Ladd',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6758,14,559,'Lafox',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6759,14,216,'Lake Bluff',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6760,14,216,'Lake Forest',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6761,14,124,'Lake Fork',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6762,14,543,'Lake In The Hills',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6763,14,216,'Lake Villa',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6764,14,216,'Lake Zurich',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6765,14,33,'Lakewood',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6766,14,115,'Lanark',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6767,14,545,'Lancaster',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6768,14,581,'Lane',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6769,14,342,'Lansing',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6770,14,124,'Latham',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6771,14,570,'Laura',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6772,14,124,'Lawndale',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6773,14,81,'Lawrenceville',1,14718,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6774,14,547,'Le Roy',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6775,14,560,'Leaf River',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6776,14,49,'Lebanon',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6777,14,51,'Lee',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6778,14,51,'Lee Center',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6779,14,579,'Leland',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6780,14,342,'Lemont',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6781,14,580,'Lena',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6782,14,49,'Lenzburg',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6783,14,579,'Leonore',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6784,14,555,'Lerna',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6785,14,119,'Lewistown',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6786,14,547,'Lexington',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6787,14,235,'Liberty',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6788,14,216,'Libertyville',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6789,14,235,'Lima',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6790,14,124,'Lincoln',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6791,14,557,'Lincolns New Salem',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6792,14,216,'Lincolnshire',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6793,14,342,'Lincolnwood',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6794,14,560,'Lindenwood',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6795,14,540,'Lisle',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6796,14,72,'Litchfield',1,15250,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6797,14,82,'Literberry',1,15256,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6798,14,386,'Little York',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6799,14,574,'Littleton',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6800,14,119,'Liverpool',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6801,14,68,'Livingston',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6802,14,558,'Loami',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6803,14,562,'Lockport',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6804,14,554,'Loda',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6805,14,92,'Logan',1,136,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6806,14,567,'Lomax',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6807,14,540,'Lombard',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6808,14,119,'London Mills',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6809,14,216,'Long Grove',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6810,14,548,'Long Point',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6811,14,568,'Longview',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6812,14,56,'Loogootee',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6813,14,235,'Loraine',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6814,14,579,'Lostant',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6815,14,48,'Louisville',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6816,14,49,'Lovejoy',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6817,14,490,'Loves Park',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6818,14,566,'Lovington',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6819,14,558,'Lowder',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6820,14,565,'Lowpoint',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6821,14,568,'Ludlow',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6822,14,541,'Lyndon',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6823,14,28,'Lynn Center',1,15840,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6824,14,342,'Lyons',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6825,14,334,'Macedonia',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6826,14,490,'Machesney Park',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6827,14,552,'Mackinaw',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6828,14,539,'Macomb',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6829,14,89,'Macon',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6830,14,68,'Madison',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6831,14,59,'Maeystown',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6832,14,308,'Magnolia',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6833,14,568,'Mahomet',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6834,14,66,'Makanda',1,124,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6835,14,551,'Malden',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6836,14,355,'Malta',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6837,14,127,'Manchester',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6838,14,562,'Manhattan',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6839,14,561,'Manito',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6840,14,551,'Manlius',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6841,14,563,'Mansfield',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6842,14,553,'Manteno',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6843,14,559,'Maple Park',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6844,14,570,'Mapleton',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6845,14,538,'Maquon',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6846,14,543,'Marengo',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6847,14,119,'Marietta',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6848,14,68,'Marine',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6849,14,578,'Marion',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6850,14,49,'Marissa',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6851,14,308,'Mark',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6852,14,342,'Markham',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6853,14,89,'Maroa',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6854,14,579,'Marseilles',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6855,14,100,'Marshall',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6856,14,100,'Martinsville',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6857,14,554,'Martinton',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6858,14,68,'Maryville',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6859,14,49,'Mascoutah',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6860,14,393,'Mason',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6861,14,561,'Mason City',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6862,14,544,'Matherville',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6863,14,342,'Matteson',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6864,14,555,'Mattoon',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6865,14,108,'Maunie',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6866,14,342,'Maywood',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6867,14,480,'Mazon',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6868,14,576,'Mc Clure',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6869,14,580,'Mc Connell',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6870,14,547,'Mc Lean',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6871,14,334,'Mc Leansboro',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6872,14,308,'Mc Nabb',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6873,14,270,'Mchenry',1,16851,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6874,14,543,'Mchenry',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6875,14,558,'Mechanicsburg',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6876,14,567,'Media',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6877,14,540,'Medinah',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6878,14,582,'Medora',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6879,14,342,'Melrose Park',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6880,14,575,'Melvin',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6881,14,91,'Menard',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6882,14,235,'Mendon',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6883,14,579,'Mendota',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6884,14,82,'Meredosia',1,17068,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6885,14,547,'Merna',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6886,14,565,'Metamora',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6887,14,572,'Metcalf',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6888,14,573,'Metropolis',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6889,14,37,'Michael',1,17182,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6890,14,124,'Middletown',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6891,14,342,'Midlothian',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6892,14,549,'Milan',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6893,14,554,'Milford',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6894,14,108,'Mill Shoals',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6895,14,571,'Millbrook',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6896,14,131,'Millcreek',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6897,14,115,'Milledgeville',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6898,14,576,'Miller City',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6899,14,571,'Millington',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6900,14,49,'Millstadt',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6901,14,563,'Milmine',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6902,14,55,'Milton',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6903,14,551,'Mineral',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6904,14,552,'Minier',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6905,14,565,'Minonk',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6906,14,480,'Minooka',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6907,14,33,'Mode',1,17638,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6908,14,564,'Modesto',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6909,14,91,'Modoc',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6910,14,562,'Mokena',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6911,14,549,'Moline',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6912,14,553,'Momence',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6913,14,562,'Monee',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6914,14,386,'Monmouth',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6915,14,560,'Monroe Center',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6916,14,571,'Montgomery',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6917,14,563,'Monticello',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6918,14,393,'Montrose',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6919,14,559,'Mooseheart',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6920,14,68,'Moro',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6921,14,480,'Morris',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6922,14,541,'Morrison',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6923,14,556,'Morrisonville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6924,14,552,'Morton',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6925,14,342,'Morton Grove',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6926,14,570,'Mossville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6927,14,136,'Mound City',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6928,14,136,'Mounds',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6929,14,556,'Mount Auburn',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6930,14,545,'Mount Carmel',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6931,14,115,'Mount Carroll',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6932,14,431,'Mount Erie',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6933,14,560,'Mount Morris',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6934,14,564,'Mount Olive',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6935,14,342,'Mount Prospect',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6936,14,124,'Mount Pulaski',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6937,14,586,'Mount Sterling',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6938,14,30,'Mount Vernon',1,18240,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6939,14,556,'Moweaqua',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6940,14,37,'Mozier',1,18303,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6941,14,89,'Mt Zion',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6942,14,95,'Muddy',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6943,14,585,'Mulberry Grove',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6944,14,92,'Mulkeytown',1,156,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6945,14,546,'Muncie',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6946,14,216,'Mundelein',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6947,14,254,'Murdock',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6948,14,66,'Murphysboro',1,142,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6949,14,82,'Murrayville',1,18381,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(6950,14,51,'Nachusa',1,18423,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6951,14,540,'Naperville',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6952,14,562,'Naperville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6953,14,71,'Nashville',1,253,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6954,14,30,'Nason',1,18502,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6955,14,49,'National Stock Yards',1,18518,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6956,14,446,'Nauvoo',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6957,14,55,'Nebo',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6958,14,584,'Neoga',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6959,14,551,'Neponset',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6960,14,49,'New Athens',1,18669,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6961,14,465,'New Baden',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6962,14,551,'New Bedford',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6963,14,558,'New Berlin',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6964,14,544,'New Boston',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6965,14,135,'New Burnside',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6966,14,55,'New Canton',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6967,14,68,'New Douglas',1,105,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6968,14,583,'New Haven',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6969,14,124,'New Holland',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6970,14,562,'New Lenox',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6971,14,465,'New Memphis',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6972,14,55,'New Salem',1,18897,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6973,14,544,'New Windsor',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6974,14,571,'Newark',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6975,14,254,'Newman',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6976,14,427,'Newton',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6977,14,89,'Niantic',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6978,14,342,'Niles',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6979,14,564,'Nilwood',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6980,14,446,'Niota',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6981,14,577,'Noble',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6982,14,72,'Nokomis',1,152,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6983,14,550,'Nora',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6984,14,547,'Normal',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6985,14,119,'Norris',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6986,14,108,'Norris City',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6987,14,559,'North Aurora',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6988,14,216,'North Chicago',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6989,14,544,'North Henderson',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6990,14,342,'Northbrook',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6991,14,49,'O Fallon',1,19550,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6992,14,540,'Oak Brook',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6993,14,342,'Oak Forest',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6994,14,342,'Oak Lawn',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6995,14,342,'Oak Park',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6996,14,71,'Oakdale',1,266,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6997,14,557,'Oakford',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6998,14,555,'Oakland',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(6999,14,546,'Oakwood',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7000,14,97,'Oblong',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7001,14,33,'Oconee',1,19707,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7002,14,548,'Odell',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7003,14,58,'Odin',1,19734,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7004,14,568,'Ogden',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7005,14,579,'Oglesby',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7006,14,551,'Ohio',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7007,14,72,'Ohlman',1,158,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7008,14,71,'Okawville',1,269,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7009,14,576,'Olive Branch',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7010,14,136,'Olmsted',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7011,14,577,'Olney',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7012,14,342,'Olympia Fields',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7013,14,583,'Omaha',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7014,14,554,'Onarga',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7015,14,538,'Oneida',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7016,14,30,'Opdyke',1,19969,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7017,14,28,'Ophiem',1,19974,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7018,14,567,'Oquawka',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7019,14,580,'Orangeville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7020,14,66,'Oraville',1,154,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7021,14,89,'Oreana',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7022,14,560,'Oregon',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7023,14,92,'Orient',1,170,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7024,14,28,'Orion',1,20050,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7025,14,342,'Orland Park',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7026,14,28,'Osco',1,20130,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7027,14,571,'Oswego',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7028,14,579,'Ottawa',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7029,14,556,'Owaneco',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7030,14,135,'Ozark',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7031,14,342,'Palatine',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7032,14,97,'Palestine',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7033,14,556,'Palmer',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7034,14,564,'Palmyra',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7035,14,235,'Paloma',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7036,14,342,'Palos Heights',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7037,14,342,'Palos Hills',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7038,14,342,'Palos Park',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7039,14,556,'Pana',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7040,14,72,'Panama',1,164,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7041,14,554,'Papineau',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7042,14,572,'Paris',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7043,14,342,'Park Forest',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7044,14,342,'Park Ridge',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7045,14,577,'Parkersburg',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7046,14,58,'Patoka',1,20582,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7047,14,63,'Patterson',1,20592,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7048,14,51,'Paw Paw',1,20627,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7049,14,558,'Pawnee',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7050,14,575,'Paxton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7051,14,235,'Payson',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7052,14,55,'Pearl',1,20681,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7053,14,580,'Pearl City',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7054,14,490,'Pecatonica',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7055,14,552,'Pekin',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7056,14,568,'Penfield',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7057,14,570,'Peoria',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7058,14,570,'Peoria Heights',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7059,14,562,'Peotone',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7060,14,91,'Percy',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7061,14,136,'Perks',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7062,14,55,'Perry',1,20854,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7063,14,579,'Peru',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7064,14,568,'Pesotum',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7065,14,557,'Petersburg',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7066,14,568,'Philo',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7067,14,564,'Piasa',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7068,14,585,'Pierron',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7069,14,93,'Pinckneyville',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7070,14,575,'Piper City',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7071,14,578,'Pittsburg',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7072,14,55,'Pittsfield',1,21223,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7073,14,562,'Plainfield',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7074,14,235,'Plainville',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7075,14,571,'Plano',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7076,14,559,'Plato Center',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7077,14,55,'Pleasant Hill',1,83,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7078,14,558,'Pleasant Plains',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7079,14,446,'Plymouth',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7080,14,585,'Pocahontas',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7081,14,560,'Polo',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7082,14,66,'Pomona',1,162,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7083,14,548,'Pontiac',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7084,14,99,'Poplar Grove',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7085,14,549,'Port Byron',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7086,14,342,'Posen',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7087,14,546,'Potomac',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7088,14,539,'Prairie City',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7089,14,91,'Prairie Du Rocher',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7090,14,544,'Preemption',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7091,14,551,'Princeton',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7092,14,570,'Princeville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7093,14,541,'Prophetstown',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7094,14,342,'Prospect Heights',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7095,14,136,'Pulaski',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7096,14,308,'Putnam',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7097,14,235,'Quincy',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7098,14,71,'Radom',1,285,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7099,14,95,'Raleigh',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7100,14,56,'Ramsey',1,126,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7101,14,546,'Rankin',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7102,14,579,'Ransom',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7103,14,568,'Rantoul',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7104,14,549,'Rapids City',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7105,14,567,'Raritan',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7106,14,72,'Raymond',1,179,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7107,14,91,'Red Bud',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7108,14,553,'Reddick',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7109,14,572,'Redmon',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7110,14,59,'Renault',1,131,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7111,14,549,'Reynolds',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7112,14,543,'Richmond',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7113,14,342,'Richton Park',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7114,14,71,'Richview',1,290,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7115,14,546,'Ridge Farm',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7116,14,583,'Ridgway',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7117,14,580,'Ridott',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7118,14,431,'Rinard',1,129,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7119,14,543,'Ringwood',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7120,14,538,'Rio',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7121,14,342,'River Forest',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7122,14,342,'River Grove',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7123,14,342,'Riverdale',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7124,14,342,'Riverside',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7125,14,558,'Riverton',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7126,14,565,'Roanoke',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7127,14,342,'Robbins',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7128,14,575,'Roberts',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7129,14,97,'Robinson',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7130,14,560,'Rochelle',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7131,14,558,'Rochester',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7132,14,580,'Rock City',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7133,14,541,'Rock Falls',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7134,14,549,'Rock Island',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7135,14,63,'Rockbridge',1,108,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7136,14,490,'Rockford',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7137,14,55,'Rockport',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7138,14,490,'Rockton',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7139,14,91,'Rockwood',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7140,14,342,'Rolling Meadows',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7141,14,570,'Rome',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7142,14,562,'Romeoville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7143,14,63,'Roodhouse',1,110,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7144,14,556,'Rosamond',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7145,14,490,'Roscoe',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7146,14,540,'Roselle',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7147,14,386,'Roseville',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7148,14,453,'Rosiclare',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7149,14,546,'Rossville',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7150,14,216,'Round Lake',1,108,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7151,14,68,'Roxana',1,136,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7152,14,568,'Royal',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7153,14,92,'Royalton',1,202,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7154,14,574,'Rushville',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7155,14,216,'Russell',1,109,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7156,14,579,'Rutland',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7157,14,568,'Sadorus',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7158,14,48,'Sailor Springs',1,109,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7159,14,553,'Saint Anne',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7160,14,538,'Saint Augustine',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7161,14,559,'Saint Charles',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7162,14,119,'Saint David',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7163,14,56,'Saint Elmo',1,134,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7164,14,81,'Saint Francisville',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7165,14,68,'Saint Jacob',1,139,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7166,14,568,'Saint Joseph',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7167,14,49,'Saint Libory',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7168,14,56,'Saint Peter',1,136,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7169,14,427,'Sainte Marie',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7170,14,58,'Salem',1,120,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7171,14,561,'San Jose',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7172,14,58,'Sandoval',1,122,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7173,14,355,'Sandwich',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7174,14,548,'Saunemin',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7175,14,115,'Savanna',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7176,14,568,'Savoy',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7177,14,564,'Sawyerville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7178,14,547,'Saybrook',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7179,14,550,'Scales Mound',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7180,14,342,'Schaumburg',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7181,14,30,'Scheller',1,244,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7182,14,342,'Schiller Park',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7183,14,539,'Sciota',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7184,14,49,'Scott Air Force Base',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7185,14,564,'Scottville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7186,14,544,'Seaton',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7187,14,551,'Seatonville',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7188,14,565,'Secor',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7189,14,579,'Seneca',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7190,14,579,'Serena',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7191,14,92,'Sesser',1,214,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7192,14,490,'Seward',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7193,14,568,'Seymour',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7194,14,355,'Shabbona',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7195,14,115,'Shannon',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7196,14,583,'Shawneetown',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7197,14,551,'Sheffield',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7198,14,33,'Shelbyville',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7199,14,554,'Sheldon',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7200,14,579,'Sheridan',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7201,14,558,'Sherman',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7202,14,544,'Sherrard',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7203,14,564,'Shipman',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7204,14,490,'Shirland',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7205,14,547,'Shirley',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7206,14,56,'Shobonier',1,139,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7207,14,562,'Shorewood',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7208,14,393,'Shumway',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7209,14,575,'Sibley',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7210,14,546,'Sidell',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7211,14,568,'Sidney',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7212,14,33,'Sigel',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7213,14,549,'Silvis',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7214,14,135,'Simpson',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7215,14,431,'Sims',1,144,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7216,14,342,'Skokie',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7217,14,585,'Smithboro',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7218,14,119,'Smithfield',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7219,14,386,'Smithshire',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7220,14,49,'Smithton',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7221,14,355,'Somonauk',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7222,14,585,'Sorento',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7223,14,490,'South Beloit',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7224,14,559,'South Elgin',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7225,14,342,'South Holland',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7226,14,552,'South Pekin',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7227,14,68,'South Roxana',1,146,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7228,14,480,'South Wilmington',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7229,14,35,'Sparland',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7230,14,91,'Sparta',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7231,14,569,'Speer',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7232,14,543,'Spring Grove',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7233,14,551,'Spring Valley',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7234,14,108,'Springerton',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7235,14,558,'Springfield',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7236,14,308,'Standard',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7237,14,547,'Stanford',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7238,14,564,'Staunton',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7239,14,91,'Steeleville',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7240,14,342,'Steger',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7241,14,541,'Sterling',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7242,14,51,'Steward',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7243,14,33,'Stewardson',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7244,14,560,'Stillman Valley',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7245,14,554,'Stockland',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7246,14,550,'Stockton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7247,14,342,'Stone Park',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7248,14,95,'Stonefort',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7249,14,556,'Stonington',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7250,14,97,'Stoy',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7251,14,33,'Strasburg',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7252,14,548,'Strawn',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7253,14,342,'Streamwood',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7254,14,579,'Streator',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7255,14,567,'Stronghurst',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7256,14,51,'Sublette',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7257,14,559,'Sugar Grove',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7258,14,566,'Sullivan',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7259,14,49,'Summerfield',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7260,14,342,'Summit Argo',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7261,14,81,'Sumner',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7262,14,446,'Sutter',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7263,14,355,'Sycamore',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7264,14,119,'Table Grove',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7265,14,557,'Tallula',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7266,14,93,'Tamaroa',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7267,14,576,'Tamms',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7268,14,541,'Tampico',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7269,14,549,'Taylor Ridge',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7270,14,72,'Taylor Springs',1,213,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7271,14,556,'Taylorville',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7272,14,342,'Techny',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7273,14,539,'Tennessee',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7274,14,393,'Teutopolis',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7275,14,30,'Texico',1,265,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7276,14,554,'Thawville',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7277,14,558,'Thayer',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7278,14,576,'Thebes',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7279,14,568,'Thomasboro',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7280,14,92,'Thompsonville',1,237,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7281,14,115,'Thomson',1,112,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7282,14,342,'Thornton',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7283,14,91,'Tilden',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7284,14,546,'Tilton',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7285,14,586,'Timewell',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7287,14,342,'Tinley Park',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7288,14,551,'Tiskilwa',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7289,14,584,'Toledo',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7290,14,568,'Tolono',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7291,14,35,'Toluca',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7292,14,579,'Tonica',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7293,14,561,'Topeka',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7294,14,569,'Toulon',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7295,14,556,'Tovey',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7296,14,547,'Towanda',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7297,14,33,'Tower Hill',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7298,14,552,'Tremont',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7299,14,465,'Trenton',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7300,14,555,'Trilla',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7301,14,579,'Triumph',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7302,14,570,'Trivoli',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7303,14,68,'Troy',1,155,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7304,14,579,'Troy Grove',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7305,14,254,'Tuscola',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7306,14,136,'Ullin',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7307,14,543,'Union',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7308,14,553,'Union Hill',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7309,14,576,'Unity',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7310,14,568,'Urbana',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7311,14,235,'Ursa',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7312,14,579,'Utica',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7313,14,92,'Valier',1,244,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7314,14,59,'Valmeyer',1,172,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7315,14,551,'Van Orin',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7316,14,56,'Vandalia',1,150,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7317,14,35,'Varna',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7318,14,68,'Venice',1,158,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7319,14,66,'Vergennes',1,202,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7320,14,572,'Vermilion',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7321,14,119,'Vermont',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7322,14,58,'Vernon',1,141,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7323,14,216,'Vernon Hills',1,126,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7324,14,480,'Verona',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7325,14,586,'Versailles',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7326,14,538,'Victoria',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7327,14,135,'Vienna',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7328,14,254,'Villa Grove',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7329,14,540,'Villa Park',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7330,14,136,'Villa Ridge',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7331,14,544,'Viola',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7332,14,564,'Virden',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7333,14,466,'Virginia',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7334,14,216,'Wadsworth',1,127,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7335,14,72,'Waggoner',1,223,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7336,14,551,'Walnut',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7337,14,58,'Walnut Hill',1,143,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7338,14,91,'Walsh',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7339,14,72,'Walshville',1,224,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7340,14,30,'Waltonville',1,282,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7341,14,581,'Wapella',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7342,14,550,'Warren',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7343,14,89,'Warrensburg',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7344,14,540,'Warrenville',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7345,14,446,'Warsaw',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7346,14,559,'Wasco',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7347,14,35,'Washburn',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7348,14,552,'Washington',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7349,14,538,'Wataga',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7350,14,59,'Waterloo',1,177,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7351,14,355,'Waterman',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7352,14,554,'Watseka',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7353,14,393,'Watson',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7354,14,216,'Wauconda',1,128,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7355,14,216,'Waukegan',1,129,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7356,14,82,'Waverly',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7357,14,540,'Wayne',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7358,14,431,'Wayne City',1,168,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7359,14,581,'Waynesville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7360,14,579,'Wedron',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7361,14,581,'Weldon',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7362,14,554,'Wellington',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7363,14,35,'Wenona',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7364,14,51,'West Brooklyn',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7365,14,540,'West Chicago',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7366,14,92,'West Frankfort',1,256,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7367,14,427,'West Liberty',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7368,14,446,'West Point',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7369,14,542,'West Salem',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7370,14,100,'West Union',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7371,14,97,'West York',1,102,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7372,14,342,'Westchester',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7373,14,342,'Western Springs',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7374,14,100,'Westfield',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7375,14,540,'Westmont',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7376,14,546,'Westville',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7377,14,540,'Wheaton',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7378,14,427,'Wheeler',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7379,14,342,'Wheeling',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7380,14,63,'White Hall',1,138,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7381,14,563,'White Heath',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7382,14,92,'Whittington',1,261,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7383,14,538,'Williamsfield',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7384,14,558,'Williamsville',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7385,14,93,'Willisville',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7386,14,427,'Willow Hill',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7387,14,342,'Willow Springs',1,102,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7388,14,540,'Willowbrook',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7389,14,342,'Wilmette',1,103,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7390,14,562,'Wilmington',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7391,14,564,'Wilsonville',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7392,14,127,'Winchester',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7393,14,33,'Windsor',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7394,14,540,'Winfield',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7395,14,490,'Winnebago',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7396,14,342,'Winnetka',1,104,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7397,14,580,'Winslow',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7398,14,216,'Winthrop Harbor',1,135,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7399,14,72,'Witt',1,234,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7400,14,131,'Wolf Lake',1,124,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7401,14,543,'Wonder Lake',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7402,14,540,'Wood Dale',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7403,14,68,'Wood River',1,169,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7404,14,28,'Woodhull',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7405,14,554,'Woodland',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7406,14,30,'Woodlawn',1,298,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7407,14,540,'Woodridge',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7408,14,82,'Woodson',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7409,14,543,'Woodstock',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7410,14,560,'Woosung',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7411,14,68,'Worden',1,171,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7412,14,342,'Worth',1,105,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7413,14,63,'Wrights',1,145,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7414,14,551,'Wyanet',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7415,14,569,'Wyoming',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7416,14,48,'Xenia',1,128,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7417,14,427,'Yale',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7418,14,538,'Yates City',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7419,14,571,'Yorkville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7420,14,92,'Zeigler',1,271,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7421,14,216,'Zion',1,139,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7422,15,99,'Advance',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7423,15,119,'Akron',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7424,15,72,'Alamo',1,214,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7425,15,497,'Albany',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7426,15,587,'Albion',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7427,15,68,'Alexandria',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7428,15,107,'Ambia',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7429,15,588,'Amboy',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7430,15,589,'Amo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7431,15,68,'Anderson',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7432,15,590,'Andrews',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7433,15,591,'Angola',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7434,15,334,'Arcadia',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7435,15,592,'Arcola',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7436,15,35,'Argos',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7437,15,593,'Arlington',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7438,15,78,'Ashley',1,1046,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7439,15,119,'Athens',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7440,15,334,'Atlanta',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7441,15,594,'Attica',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7442,15,595,'Atwood',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7443,15,78,'Auburn',1,1189,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7444,15,596,'Aurora',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7445,15,127,'Austin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7446,15,587,'Avilla',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7447,15,81,'Avoca',1,1287,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7448,15,589,'Avon',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7449,15,308,'Bainbridge',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7450,15,135,'Bargersville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7451,15,597,'Batesville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7452,15,92,'Bath',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7453,15,598,'Battle Ground',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7454,15,81,'Bedford',1,1807,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7455,15,58,'Beech Grove',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7456,15,599,'Bellmore',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7457,15,600,'Bennington',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7458,15,56,'Bentonville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7459,15,235,'Berne',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7460,15,100,'Bethlehem',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7461,15,601,'Beverly Shores',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7462,15,538,'Bicknell',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7463,15,590,'Bippus',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7464,15,602,'Birdseye',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7465,15,603,'Blanford',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7466,15,63,'Bloomfield',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7467,15,599,'Bloomingdale',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7468,15,59,'Bloomington',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7469,15,604,'Bluffton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7470,15,33,'Boggstown',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7471,15,601,'Boone Grove',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7472,15,605,'Boonville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7473,15,100,'Borden',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7474,15,431,'Boston',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7475,15,107,'Boswell',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7476,15,35,'Bourbon',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7477,15,48,'Bowling Green',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7478,15,502,'Bradford',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7479,15,93,'Branchville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7480,15,48,'Brazil',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7481,15,35,'Bremen',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7482,15,599,'Bridgeton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7483,15,115,'Bringhurst',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7484,15,606,'Bristol',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7485,15,93,'Bristow',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7486,15,137,'Brook',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7487,15,82,'Brooklyn',1,3242,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7488,15,108,'Brookston',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7489,15,92,'Brookville',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7490,15,589,'Brownsburg',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7491,15,66,'Brownstown',1,3301,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7492,15,131,'Brownsville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7493,15,538,'Bruceville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7494,15,607,'Bryant',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7495,15,598,'Buck Creek',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7496,15,608,'Buckskin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7497,15,108,'Buffalo',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7498,15,588,'Bunker Hill',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7499,15,595,'Burket',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7500,15,115,'Burlington',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7501,15,108,'Burnettsville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7502,15,115,'Burrows',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7503,15,78,'Butler',1,3644,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7504,15,609,'Butlerville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7505,15,431,'Cambridge City',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7506,15,82,'Camby',1,3859,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7507,15,115,'Camden',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7508,15,71,'Campbellsburg',1,3928,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7509,15,30,'Canaan',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7510,15,610,'Cannelburg',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7511,15,93,'Cannelton',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7512,15,48,'Carbon',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7513,15,611,'Carlisle',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7514,15,334,'Carmel',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7515,15,593,'Carthage',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7516,15,603,'Cayuga',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7517,15,92,'Cedar Grove',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7518,15,216,'Cedar Lake',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7519,15,602,'Celestine',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7520,15,48,'Centerpoint',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7521,15,431,'Centerville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7522,15,502,'Central',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7523,15,108,'Chalmers',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7524,15,605,'Chandler',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7525,15,100,'Charlestown',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7526,15,446,'Charlottesville',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7527,15,601,'Chesterton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7528,15,612,'Chrisney',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7529,15,613,'Churubusco',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7530,15,334,'Cicero',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7531,15,598,'Clarks Hill',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7532,15,356,'Clarksburg',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7533,15,100,'Clarksville',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7534,15,48,'Clay City',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7535,15,595,'Claypool',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7536,15,589,'Clayton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7537,15,59,'Clear Creek',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7538,15,614,'Clifford',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7539,15,603,'Clinton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7540,15,308,'Cloverdale',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7541,15,615,'Coal City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7542,15,48,'Coalmont',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7543,15,308,'Coatesville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7544,15,465,'Colfax',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7545,15,613,'Columbia City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7546,15,614,'Columbus',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7547,15,609,'Commiskey',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7548,15,56,'Connersville',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7549,15,588,'Converse',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7550,15,66,'Cortland',1,5925,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7551,15,78,'Corunna',1,5930,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7552,15,48,'Cory',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7553,15,502,'Corydon',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7554,15,594,'Covington',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7555,15,604,'Craigville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7556,15,502,'Crandall',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7557,15,332,'Crane',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7558,15,72,'Crawfordsville',1,6113,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7559,15,587,'Cromwell',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7560,15,597,'Cross Plains',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7561,15,66,'Crothersville',1,6241,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7562,15,216,'Crown Point',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7563,15,35,'Culver',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7564,15,115,'Cutler',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7565,15,616,'Cynthiana',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7566,15,612,'Dale',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7567,15,497,'Daleville',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7568,15,603,'Dana',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7569,15,589,'Danville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7570,15,72,'Darlington',1,6577,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7571,15,598,'Dayton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7572,15,235,'Decatur',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7573,15,538,'Decker',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7574,15,588,'Deedsville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7575,15,119,'Delong',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7576,15,115,'Delphi',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7577,15,427,'Demotte',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7578,15,588,'Denver',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7579,15,502,'Depauw',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7580,15,30,'Deputy',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7581,15,93,'Derby',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7582,15,596,'Dillsboro',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7583,15,35,'Donaldson',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7584,15,431,'Dublin',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7585,15,602,'Dubois',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7586,15,611,'Dugger',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7587,15,607,'Dunkirk',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7588,15,28,'Dunreith',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7589,15,30,'Dupont',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7590,15,216,'Dyer',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7591,15,107,'Earl Park',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7592,15,216,'East Chicago',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7593,15,600,'East Enterprise',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7594,15,497,'Eaton',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7595,15,97,'Eckerty',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7596,15,431,'Economy',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7597,15,135,'Edinburgh',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7598,15,538,'Edwardsport',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7599,15,605,'Elberfeld',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7600,15,502,'Elizabeth',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7601,15,614,'Elizabethtown',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7602,15,606,'Elkhart',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7603,15,59,'Ellettsville',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7604,15,610,'Elnora',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7605,15,68,'Elwood',1,8305,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7606,15,82,'Eminence',1,8341,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7607,15,97,'English',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7608,15,595,'Etna Green',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7609,15,612,'Evanston',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7610,15,617,'Evansville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7611,15,427,'Fair Oaks',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7612,15,611,'Fairbanks',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7613,15,33,'Fairland',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7614,15,148,'Fairmount',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7615,15,593,'Falmouth',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7616,15,611,'Farmersburg',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7617,15,91,'Farmland',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7618,15,602,'Ferdinand',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7619,15,308,'Fillmore',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7620,15,446,'Finly',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7621,15,334,'Fishers',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7622,15,33,'Flat Rock',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7623,15,115,'Flora',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7624,15,600,'Florence',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7625,15,352,'Floyds Knobs',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7626,15,605,'Folsomville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7627,15,618,'Fontanet',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7628,15,465,'Forest',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7629,15,608,'Fort Branch',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7630,15,81,'Fort Ritner',1,9404,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7631,15,592,'Fort Wayne',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7632,15,446,'Fortville',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7633,15,431,'Fountain City',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7634,15,33,'Fountaintown',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7635,15,107,'Fowler',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7636,15,148,'Fowlerton',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7637,15,136,'Francesville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7638,15,608,'Francisco',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7639,15,465,'Frankfort',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7640,15,135,'Franklin',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7641,15,68,'Frankton',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7642,15,71,'Fredericksburg',1,137,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7643,15,615,'Freedom',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7644,15,538,'Freelandville',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7645,15,66,'Freetown',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7646,15,591,'Fremont',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7647,15,177,'French Lick',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7648,15,597,'Friendship',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7649,15,612,'Fulda',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7650,15,119,'Fulton',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7651,15,466,'Galveston',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7652,15,78,'Garrett',1,9957,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7653,15,216,'Gary',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7654,15,148,'Gas City',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7655,15,497,'Gaston',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7656,15,235,'Geneva',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7657,15,612,'Gentryville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7658,15,352,'Georgetown',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7659,15,56,'Glenwood',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7660,15,619,'Goldsmith',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7661,15,137,'Goodland',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7662,15,606,'Goshen',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7663,15,615,'Gosport',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7664,15,592,'Grabill',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7665,15,614,'Grammer',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7666,15,612,'Grandview',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7667,15,620,'Granger',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7668,15,97,'Grantsburg',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7669,15,119,'Grass Creek',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7670,15,611,'Graysville',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7671,15,308,'Greencastle',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7672,15,446,'Greenfield',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7673,15,431,'Greens Fork',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7674,15,28,'Greensboro',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7675,15,356,'Greensburg',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7676,15,141,'Greentown',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7677,15,352,'Greenville',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7678,15,135,'Greenwood',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7679,15,616,'Griffin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7680,15,216,'Griffith',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7681,15,588,'Grissom Arb',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7682,15,621,'Grovertown',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7683,15,596,'Guilford',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7684,15,33,'Gwynneville',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7685,15,431,'Hagerstown',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7686,15,591,'Hamilton',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7687,15,621,'Hamlet',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7688,15,216,'Hammond',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7689,15,622,'Hanna',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7690,15,30,'Hanover',1,116,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7691,15,71,'Hardinsburg',1,162,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7692,15,592,'Harlan',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7693,15,48,'Harmony',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7694,15,59,'Harrodsburg',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7695,15,623,'Hartford City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7696,15,614,'Hartsville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7697,15,612,'Hatfield',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7698,15,608,'Haubstadt',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7699,15,609,'Hayden',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7700,15,608,'Hazleton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7701,15,601,'Hebron',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7702,15,586,'Helmsburg',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7703,15,81,'Heltonville',1,11880,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7704,15,141,'Hemlock',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7705,15,100,'Henryville',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7706,15,216,'Highland',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7707,15,594,'Hillsboro',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7708,15,603,'Hillsdale',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7709,15,592,'Hoagland',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7710,15,216,'Hobart',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7711,15,619,'Hobbs',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7712,15,602,'Holland',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7713,15,597,'Holton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7714,15,593,'Homer',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7715,15,614,'Hope',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7716,15,624,'Howe',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7717,15,591,'Hudson',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7718,15,592,'Huntertown',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7719,15,602,'Huntingburg',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7720,15,590,'Huntington',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7721,15,81,'Huron',1,12769,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7722,15,611,'Hymera',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7723,15,108,'Idaville',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7724,15,334,'Indianapolis',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7725,15,58,'Indianapolis',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7726,15,68,'Ingalls',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7727,15,617,'Inglefield',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7728,15,602,'Ireland',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7729,15,99,'Jamestown',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7730,15,63,'Jasonville',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7731,15,602,'Jasper',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7732,15,100,'Jeffersonville',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7733,15,148,'Jonesboro',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7734,15,614,'Jonesville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7735,15,599,'Judson',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7736,15,619,'Kempton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7737,15,587,'Kendallville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7738,15,28,'Kennard',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7739,15,137,'Kentland',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7740,15,119,'Kewanna',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7741,15,604,'Keystone',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7742,15,587,'Kimmell',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7743,15,594,'Kingman',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7744,15,622,'Kingsbury',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7745,15,622,'Kingsford Heights',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7746,15,465,'Kirklin',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7747,15,28,'Knightstown',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7748,15,48,'Knightsville',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7749,15,621,'Knox',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7750,15,141,'Kokomo',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7751,15,63,'Koleen',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7752,15,601,'Kouts',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7753,15,66,'Kurtz',1,14119,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7754,15,622,'La Crosse',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7755,15,545,'La Fontaine',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7756,15,622,'La Porte',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7757,15,502,'Laconia',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7758,15,72,'Ladoga',1,14257,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7759,15,598,'Lafayette',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7760,15,624,'Lagrange',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7761,15,545,'Lagro',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7762,15,466,'Lake Cicott',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7763,15,216,'Lake Station',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7764,15,137,'Lake Village',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7765,15,545,'Laketon',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7766,15,620,'Lakeville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7767,15,612,'Lamar',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7768,15,502,'Lanesville',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7769,15,587,'Laotto',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7770,15,35,'Lapaz',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7771,15,68,'Lapel',1,14599,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7772,15,613,'Larwill',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7773,15,92,'Laurel',1,130,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7774,15,596,'Lawrenceburg',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7775,15,97,'Leavenworth',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7776,15,99,'Lebanon',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7777,15,595,'Leesburg',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7778,15,119,'Leiters Ford',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7779,15,592,'Leo',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7780,15,93,'Leopold',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7781,15,216,'Leroy',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7782,15,618,'Lewis',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7783,15,28,'Lewisville',1,15025,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7784,15,127,'Lexington',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7785,15,131,'Liberty',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7786,15,604,'Liberty Center',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7787,15,545,'Liberty Mills',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7788,15,587,'Ligonier',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7789,15,612,'Lincoln City',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7790,15,72,'Linden',1,15171,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7791,15,63,'Linton',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7792,15,71,'Little York',1,15304,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7793,15,589,'Lizton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7794,15,466,'Logansport',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7795,15,332,'Loogootee',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7796,15,91,'Losantville',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7797,15,216,'Lowell',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7798,15,466,'Lucerne',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7799,15,91,'Lynn',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7800,15,605,'Lynnville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7801,15,63,'Lyons',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7802,15,608,'Mackey',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7803,15,588,'Macy',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7804,15,30,'Madison',1,15959,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7805,15,593,'Manilla',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7806,15,97,'Marengo',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7807,15,612,'Mariah Hill',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7808,15,148,'Marion',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7809,15,604,'Markle',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7810,15,68,'Markleville',1,16375,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7811,15,599,'Marshall',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7812,15,82,'Martinsville',1,16484,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7813,15,100,'Marysville',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7814,15,148,'Matthews',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7815,15,502,'Mauckport',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7816,15,446,'Maxwell',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7817,15,593,'Mays',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7818,15,446,'Mc Cordsville',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7819,15,599,'Mecca',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7820,15,136,'Medaryville',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7821,15,66,'Medora',1,16940,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7822,15,594,'Mellott',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7823,15,100,'Memphis',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7824,15,595,'Mentone',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7825,15,611,'Merom',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7826,15,216,'Merrillville',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7827,15,92,'Metamora',1,147,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7828,15,588,'Mexico',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7829,15,588,'Miami',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7830,15,622,'Michigan City',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7831,15,465,'Michigantown',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7832,15,606,'Middlebury',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7833,15,28,'Middletown',1,17237,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7834,15,63,'Midland',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7835,15,597,'Milan',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7836,15,595,'Milford',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7837,15,622,'Mill Creek',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7838,15,606,'Millersburg',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7839,15,356,'Millhousen',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7840,15,97,'Milltown',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7841,15,593,'Milroy',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7842,15,431,'Milton',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7843,15,620,'Mishawaka',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7844,15,81,'Mitchell',1,17611,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7845,15,91,'Modoc',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7846,15,624,'Mongo',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7847,15,108,'Monon',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7848,15,235,'Monroe',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7849,15,538,'Monroe City',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7850,15,592,'Monroeville',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7851,15,82,'Monrovia',1,17747,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7852,15,136,'Monterey',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7853,15,599,'Montezuma',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7854,15,610,'Montgomery',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7855,15,108,'Monticello',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7856,15,598,'Montmorenci',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7857,15,623,'Montpelier',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7858,15,28,'Mooreland',1,17898,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7859,15,596,'Moores Hill',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7860,15,82,'Mooresville',1,17905,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7861,15,82,'Morgantown',1,17960,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7862,15,137,'Morocco',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7863,15,597,'Morris',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7864,15,33,'Morristown',1,18012,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7865,15,137,'Mount Ayr',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7866,15,352,'Mount Saint Francis',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7867,15,28,'Mount Summit',1,18220,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7868,15,616,'Mount Vernon',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7869,15,465,'Mulberry',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7870,15,497,'Muncie',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7871,15,216,'Munster',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7872,15,100,'Nabb',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7873,15,597,'Napoleon',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7874,15,606,'Nappanee',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7875,15,586,'Nashville',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7876,15,135,'Needham',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7877,15,352,'New Albany',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7878,15,620,'New Carlisle',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7879,15,28,'New Castle',1,18720,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7880,15,618,'New Goshen',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7881,15,616,'New Harmony',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7882,15,592,'New Haven',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7883,15,611,'New Lebanon',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7884,15,28,'New Lisbon',1,18814,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7885,15,72,'New Market',1,18835,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7886,15,502,'New Middletown',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7887,15,446,'New Palestine',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7888,15,606,'New Paris',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7889,15,356,'New Point',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7890,15,72,'New Richmond',1,18881,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7891,15,72,'New Ross',1,18892,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7892,15,502,'New Salisbury',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7893,15,92,'New Trenton',1,162,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7894,15,100,'New Washington',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7895,15,466,'New Waverly',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7896,15,63,'Newberry',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7897,15,605,'Newburgh',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7898,15,603,'Newport',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7899,15,594,'Newtown',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7900,15,135,'Nineveh',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7901,15,334,'Noblesville',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7902,15,66,'Norman',1,19215,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7903,15,621,'North Judson',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7904,15,620,'North Liberty',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7905,15,545,'North Manchester',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7906,15,589,'North Salem',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7907,15,609,'North Vernon',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7908,15,595,'North Webster',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7909,15,620,'Notre Dame',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7910,15,141,'Oakford',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7911,15,608,'Oakland City',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7912,15,538,'Oaktown',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7913,15,497,'Oakville',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7914,15,610,'Odon',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7915,15,92,'Oldenburg',1,167,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7916,15,466,'Onward',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7917,15,81,'Oolitic',1,19963,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7918,15,621,'Ora',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7919,15,68,'Orestes',1,20035,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7920,15,591,'Orland',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7921,15,177,'Orleans',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7922,15,620,'Osceola',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7923,15,597,'Osgood',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7924,15,604,'Ossian',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7925,15,100,'Otisco',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7926,15,107,'Otterbein',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7927,15,55,'Otwell',1,72,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7928,15,63,'Owensburg',1,96,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7929,15,608,'Owensville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7930,15,107,'Oxford',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7931,15,502,'Palmyra',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7932,15,177,'Paoli',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7933,15,82,'Paragon',1,20462,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7934,15,609,'Paris Crossing',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7935,15,91,'Parker City',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7936,15,608,'Patoka',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7937,15,615,'Patricksburg',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7938,15,600,'Patriot',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7939,15,611,'Paxton',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7940,15,71,'Pekin',1,20719,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7941,15,68,'Pendleton',1,121,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7942,15,607,'Pennville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7943,15,603,'Perrysville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7944,15,431,'Pershing',1,115,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7945,15,588,'Peru',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7946,15,55,'Petersburg',1,76,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7947,15,604,'Petroleum',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7948,15,595,'Pierceton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7949,15,597,'Pierceville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7950,15,618,'Pimento',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7951,15,386,'Pine Village',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7952,15,589,'Pittsboro',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7953,15,589,'Plainfield',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7954,15,610,'Plainville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7955,15,591,'Pleasant Lake',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7956,15,235,'Pleasant Mills',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7957,15,35,'Plymouth',1,70,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(7958,15,615,'Poland',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7959,15,604,'Poneto',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7960,15,601,'Portage',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7961,15,607,'Portland',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7962,15,616,'Poseyville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7963,15,618,'Prairie Creek',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7964,15,618,'Prairieton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7965,15,235,'Preble',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7966,15,608,'Princeton',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7967,15,308,'Putnamville',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7968,15,615,'Quincy',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7969,15,538,'Ragsdale',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7970,15,502,'Ramsey',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7971,15,607,'Redkey',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7972,15,308,'Reelsville',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7973,15,427,'Remington',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7974,15,427,'Rensselaer',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7975,15,108,'Reynolds',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7976,15,612,'Richland',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7977,15,431,'Richmond',1,128,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7978,15,91,'Ridgeville',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7979,15,618,'Riley',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7980,15,625,'Rising Sun',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7981,15,308,'Roachdale',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7982,15,545,'Roann',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7983,15,590,'Roanoke',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7984,15,119,'Rochester',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7985,15,115,'Rockfield',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7986,15,612,'Rockport',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7987,15,599,'Rockville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7988,15,622,'Rolling Prairie',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7989,15,93,'Rome',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7990,15,587,'Rome City',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7991,15,598,'Romney',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7992,15,599,'Rosedale',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7993,15,137,'Roselawn',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7994,15,465,'Rossville',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7995,15,466,'Royal Center',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7996,15,593,'Rushville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7997,15,308,'Russellville',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7998,15,141,'Russiaville',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(7999,15,602,'Saint Anthony',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8000,15,603,'Saint Bernice',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8001,15,93,'Saint Croix',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8002,15,78,'Saint Joe',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8003,15,216,'Saint John',1,112,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8004,15,618,'Saint Mary Of The Woods',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8005,15,612,'Saint Meinrad',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8006,15,356,'Saint Paul',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8007,15,607,'Salamonia',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8008,15,71,'Salem',1,305,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8009,15,621,'San Pierre',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8010,15,538,'Sandborn',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8011,15,612,'Santa Claus',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8012,15,91,'Saratoga',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8013,15,216,'Schererville',1,113,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8014,15,216,'Schneider',1,114,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8015,15,602,'Schnellville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8016,15,609,'Scipio',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8017,15,63,'Scotland',1,113,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8018,15,127,'Scottsburg',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8019,15,465,'Sedalia',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8020,15,618,'Seelyville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8021,15,100,'Sellersburg',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8022,15,497,'Selma',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8023,15,545,'Servia',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8024,15,66,'Seymour',1,178,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8025,15,619,'Sharpsville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8026,15,611,'Shelburn',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8027,15,216,'Shelby',1,115,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8028,15,33,'Shelbyville',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8029,15,618,'Shepardsville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8030,15,334,'Sheridan',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8031,15,624,'Shipshewana',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8032,15,28,'Shirley',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8033,15,332,'Shoals',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8034,15,595,'Silver Lake',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8035,15,59,'Smithville',1,147,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8036,15,63,'Solsberry',1,117,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8037,15,545,'Somerset',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8038,15,608,'Somerville',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8039,15,620,'South Bend',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8040,15,624,'South Milford',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8041,15,613,'South Whitley',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8042,15,58,'Speedway',1,131,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8043,15,615,'Spencer',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8044,15,592,'Spencerville',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8045,15,28,'Spiceland',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8046,15,28,'Springport',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8047,15,81,'Springville',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8048,15,55,'Spurgeon',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8049,15,59,'Stanford',1,153,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8050,15,136,'Star City',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8051,15,386,'State Line',1,105,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8052,15,48,'Staunton',1,115,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8053,15,55,'Stendal',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8054,15,589,'Stilesville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8055,15,59,'Stinesville',1,154,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8056,15,598,'Stockwell',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8057,15,28,'Straughn',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8058,15,624,'Stroh',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8059,15,611,'Sullivan',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8060,15,97,'Sulphur',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8061,15,28,'Sulphur Springs',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8062,15,137,'Sumava Resorts',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8063,15,68,'Summitville',1,150,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8064,15,597,'Sunman',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8065,15,148,'Swayzee',1,118,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8066,15,148,'Sweetser',1,119,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8067,15,63,'Switz City',1,126,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8068,15,595,'Syracuse',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8069,15,107,'Talbot',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8070,15,97,'Taswell',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8071,15,614,'Taylorsville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8072,15,427,'Tefft',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8073,15,93,'Tell City',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8074,15,107,'Templeton',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8075,15,605,'Tennyson',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8077,15,618,'Terre Haute',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8078,15,137,'Thayer',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8079,15,99,'Thorntown',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8080,15,35,'Tippecanoe',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8081,15,619,'Tipton',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8082,15,624,'Topeka',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8083,15,135,'Trafalgar',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8084,15,612,'Troy',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8085,15,81,'Tunnelton',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8086,15,466,'Twelve Mile',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8087,15,35,'Tyner',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8088,15,127,'Underwood',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8089,15,91,'Union City',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8090,15,622,'Union Mills',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8091,15,604,'Uniondale',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8092,15,59,'Unionville',1,170,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8093,15,603,'Universal',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8094,15,148,'Upland',1,123,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8095,15,545,'Urbana',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8096,15,66,'Vallonia',1,199,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8097,15,601,'Valparaiso',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8098,15,148,'Van Buren',1,124,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8099,15,594,'Veedersburg',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8100,15,55,'Velpen',1,108,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8101,15,609,'Vernon',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8102,15,597,'Versailles',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8103,15,600,'Vevay',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8104,15,538,'Vincennes',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8105,15,545,'Wabash',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8106,15,616,'Wadesville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8107,15,606,'Wakarusa',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8108,15,33,'Waldron',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8109,15,620,'Walkerton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8110,15,594,'Wallace',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8111,15,466,'Walton',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8112,15,622,'Wanatah',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8113,15,590,'Warren',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8114,15,595,'Warsaw',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8115,15,610,'Washington',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8116,15,78,'Waterloo',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8117,15,72,'Waveland',1,226,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8118,15,587,'Wawaka',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8119,15,72,'Waynetown',1,227,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8120,15,431,'Webster',1,171,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8121,15,177,'West Baden Springs',1,149,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8122,15,131,'West College Corner',1,118,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8123,15,596,'West Harrison',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8124,15,598,'West Lafayette',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8125,15,386,'West Lebanon',1,123,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8126,15,141,'West Middleton',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8127,15,58,'West Newton',1,145,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8128,15,618,'West Terre Haute',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8129,15,334,'Westfield',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8130,15,538,'Westphalia',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8131,15,598,'Westpoint',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8132,15,356,'Westport',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8133,15,622,'Westville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8134,15,427,'Wheatfield',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8135,15,538,'Wheatland',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8136,15,601,'Wheeler',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8137,15,135,'Whiteland',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8138,15,99,'Whitestown',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8139,15,216,'Whiting',1,131,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8140,15,446,'Wilkinson',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8141,15,81,'Williams',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8142,15,431,'Williamsburg',1,175,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8143,15,386,'Williamsport',1,125,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8144,15,136,'Winamac',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8145,15,91,'Winchester',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8146,15,619,'Windfall',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8147,15,72,'Wingate',1,232,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8148,15,595,'Winona Lake',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8149,15,55,'Winslow',1,113,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8150,15,108,'Wolcott',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8151,15,624,'Wolcottville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8152,15,587,'Wolflake',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8153,15,592,'Woodburn',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8154,15,63,'Worthington',1,144,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8155,15,620,'Wyatt',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8156,15,115,'Yeoman',1,128,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8157,15,592,'Yoder',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8158,15,497,'Yorktown',1,113,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8159,15,466,'Young America',1,103,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8160,15,592,'Zanesville',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8161,15,99,'Zionsville',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8162,17,626,'Abbyville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8163,17,470,'Abilene',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8164,17,462,'Admire',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8165,17,627,'Agenda',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8166,17,111,'Agra',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8167,17,628,'Albert',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8168,17,629,'Alden',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8169,17,593,'Alexander',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8170,17,462,'Allen',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8171,17,630,'Alma',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8172,17,631,'Almena',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8173,17,630,'Alta Vista',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8174,17,632,'Altamont',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8175,17,633,'Alton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8176,17,634,'Altoona',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8177,17,462,'Americus',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8178,17,273,'Andale',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8179,17,74,'Andover',1,661,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8180,17,635,'Anthony',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8181,17,97,'Arcadia',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8182,17,636,'Argonia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8183,17,637,'Arkansas City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8184,17,626,'Arlington',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8185,17,97,'Arma',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8186,17,638,'Arnold',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8187,17,100,'Ashland',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8188,17,95,'Assaria',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8189,17,639,'Atchison',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8190,17,640,'Athol',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8191,17,637,'Atlanta',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8192,17,635,'Attica',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8193,17,641,'Atwood',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8194,17,642,'Auburn',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8195,17,74,'Augusta',1,1203,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8196,17,643,'Aurora',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8197,17,35,'Axtell',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8198,17,644,'Baileyville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8199,17,254,'Baldwin City',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8200,17,147,'Barnard',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8201,17,71,'Barnes',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8202,17,632,'Bartlett',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8203,17,645,'Basehor',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8204,17,73,'Baxter Springs',1,1674,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8205,17,638,'Bazine',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8206,17,35,'Beattie',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8207,17,74,'Beaumont',1,1759,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8208,17,638,'Beeler',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8209,17,636,'Belle Plaine',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8210,17,627,'Belleville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8211,17,360,'Beloit',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8212,17,542,'Belpre',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8213,17,646,'Belvue',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8214,17,647,'Bendena',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8215,17,634,'Benedict',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8216,17,648,'Bennington',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8217,17,273,'Bentley',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8218,17,74,'Benton',1,2067,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8219,17,644,'Bern',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8220,17,642,'Berryton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8221,17,147,'Beverly',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8222,17,230,'Bird City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8223,17,593,'Bison',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8224,17,458,'Blue Mound',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8225,17,35,'Blue Rapids',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8226,17,635,'Bluff City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8227,17,164,'Bogue',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8228,17,649,'Bonner Springs',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8229,17,35,'Bremen',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8230,17,372,'Brewster',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8231,17,650,'Bronson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8232,17,95,'Brookville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8233,17,638,'Brownell',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8234,17,575,'Bucklin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8235,17,588,'Bucyrus',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8236,17,634,'Buffalo',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8237,17,626,'Buhler',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8238,17,80,'Bunker Hill',1,3507,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8239,17,637,'Burden',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8240,17,651,'Burdett',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8241,17,652,'Burdick',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8242,17,653,'Burlingame',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8243,17,654,'Burlington',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8244,17,58,'Burns',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8245,17,655,'Burr Oak',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8246,17,656,'Burrton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8247,17,629,'Bushton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8248,17,657,'Byers',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8249,17,636,'Caldwell',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8250,17,637,'Cambridge',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8251,17,72,'Caney',1,3978,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8252,17,658,'Canton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8253,17,653,'Carbondale',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8254,17,74,'Cassoday',1,4287,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8255,17,659,'Catharine',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8256,17,360,'Cawker City',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8257,17,640,'Cedar',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8258,17,660,'Cedar Point',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8259,17,661,'Cedar Vale',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8260,17,662,'Centerville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8261,17,644,'Centralia',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8262,17,663,'Chanute',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8263,17,470,'Chapman',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8264,17,629,'Chase',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8265,17,661,'Chautauqua',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8266,17,273,'Cheney',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8267,17,97,'Cherokee',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8268,17,72,'Cherryvale',1,4787,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8269,17,632,'Chetopa',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8270,17,664,'Cimarron',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8271,17,66,'Circleville',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8272,17,628,'Claflin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8273,17,48,'Clay Center',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8274,17,631,'Clayton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8275,17,135,'Clearview City',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8276,17,273,'Clearwater',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8277,17,71,'Clifton',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8278,17,643,'Clyde',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8279,17,657,'Coats',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8280,17,72,'Coffeyville',1,5432,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8281,17,372,'Colby',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8282,17,665,'Coldwater',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8283,17,666,'Collyer',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8284,17,662,'Colony',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8285,17,73,'Columbus',1,5622,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8286,17,273,'Colwich',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8287,17,643,'Concordia',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8288,17,636,'Conway Springs',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8289,17,334,'Coolidge',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8290,17,664,'Copeland',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8291,17,644,'Corning',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8292,17,660,'Cottonwood Falls',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8293,17,652,'Council Grove',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8294,17,627,'Courtland',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8295,17,73,'Crestline',1,6155,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8296,17,627,'Cuba',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8297,17,639,'Cummings',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8298,17,667,'Cunningham',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8299,17,668,'Damar',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8300,17,635,'Danville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8301,17,135,'De Soto',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8302,17,72,'Dearing',1,6714,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8303,17,669,'Deerfield',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8304,17,66,'Delia',1,6832,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8305,17,648,'Delphos',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8306,17,66,'Denison',1,6889,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8307,17,632,'Dennis',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8308,17,647,'Denton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8309,17,273,'Derby',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8310,17,637,'Dexter',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8311,17,670,'Dighton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8312,17,575,'Dodge City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8313,17,80,'Dorrance',1,7197,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8314,17,74,'Douglass',1,7228,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8315,17,642,'Dover',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8316,17,633,'Downs',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8317,17,356,'Dresden',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8318,17,58,'Durham',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8319,17,652,'Dwight',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8320,17,645,'Easton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8321,17,135,'Edgerton',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8322,17,632,'Edna',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8323,17,671,'Edson',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8324,17,649,'Edwardsville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8325,17,639,'Effingham',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8326,17,74,'El Dorado',1,8004,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8327,17,74,'Elbing',1,8039,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8328,17,72,'Elk City',1,8113,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8329,17,672,'Elk Falls',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8330,17,673,'Elkhart',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8331,17,628,'Ellinwood',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8332,17,659,'Ellis',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8333,17,674,'Ellsworth',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8334,17,660,'Elmdale',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8335,17,592,'Elsmore',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8336,17,647,'Elwood',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8337,17,646,'Emmett',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8338,17,462,'Emporia',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8339,17,100,'Englewood',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8340,17,664,'Ensign',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8341,17,470,'Enterprise',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8342,17,663,'Erie',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8343,17,655,'Esbon',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8344,17,630,'Eskridge',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8345,17,254,'Eudora',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8346,17,675,'Eureka',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8347,17,586,'Everest',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8348,17,586,'Fairview',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8349,17,675,'Fall River',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8350,17,95,'Falun',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8351,17,97,'Farlington',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8352,17,58,'Florence',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8353,17,588,'Fontana',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8354,17,575,'Ford',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8355,17,655,'Formoso',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8356,17,575,'Fort Dodge',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8357,17,645,'Fort Leavenworth',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8358,17,676,'Fort Riley',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8359,17,650,'Fort Scott',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8360,17,646,'Fostoria',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8361,17,677,'Fowler',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8362,17,35,'Frankfort',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8363,17,97,'Franklin',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8364,17,634,'Fredonia',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8365,17,635,'Freeport',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8366,17,97,'Frontenac',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8367,17,650,'Fulton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8368,17,73,'Galena',1,9822,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8369,17,663,'Galesburg',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8370,17,658,'Galva',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8371,17,678,'Garden City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8372,17,273,'Garden Plain',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8373,17,135,'Gardner',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8374,17,651,'Garfield',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8375,17,650,'Garland',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8376,17,662,'Garnett',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8377,17,592,'Gas',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8378,17,640,'Gaylord',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8379,17,372,'Gem',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8380,17,629,'Geneseo',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8381,17,636,'Geuda Springs',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8382,17,97,'Girard',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8383,17,111,'Glade',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8384,17,643,'Glasco',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8385,17,360,'Glen Elder',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8386,17,273,'Goddard',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8387,17,58,'Goessel',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8388,17,644,'Goff',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8389,17,671,'Goodland',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8390,17,80,'Gorham',1,10549,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8391,17,679,'Gove',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8392,17,679,'Grainfield',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8393,17,30,'Grantville',1,106,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8394,17,628,'Great Bend',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8395,17,662,'Greeley',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8396,17,48,'Green',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8397,17,71,'Greenleaf',1,10917,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8398,17,232,'Greensburg',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8399,17,273,'Greenwich',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8400,17,672,'Grenola',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8401,17,654,'Gridley',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8402,17,679,'Grinnell',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8403,17,95,'Gypsum',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8404,17,71,'Haddam',1,11186,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8405,17,656,'Halstead',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8406,17,675,'Hamilton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8407,17,71,'Hanover',1,11411,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8408,17,680,'Hanston',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8409,17,681,'Hardtner',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8410,17,635,'Harper',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8411,17,462,'Hartford',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8412,17,630,'Harveyville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8413,17,72,'Havana',1,11699,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8414,17,626,'Haven',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8415,17,646,'Havensville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8416,17,232,'Haviland',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8417,17,659,'Hays',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8418,17,273,'Haysville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8419,17,681,'Hazelton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8420,17,670,'Healy',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8421,17,97,'Hepler',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8422,17,470,'Herington',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8423,17,641,'Herndon',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8424,17,656,'Hesston',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8425,17,586,'Hiawatha',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8426,17,647,'Highland',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8427,17,164,'Hill City',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8428,17,58,'Hillsboro',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8429,17,588,'Hillsdale',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8430,17,628,'Hoisington',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8431,17,678,'Holcomb',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8432,17,71,'Hollenberg',1,12312,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8433,17,66,'Holton',1,12367,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8434,17,674,'Holyrood',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8435,17,35,'Home',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8436,17,470,'Hope',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8437,17,586,'Horton',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8438,17,672,'Howard',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8439,17,682,'Hoxie',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8440,17,66,'Hoyt',1,12605,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8441,17,683,'Hudson',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8442,17,684,'Hugoton',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8443,17,592,'Humboldt',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8444,17,360,'Hunter',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8445,17,626,'Hutchinson',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8446,17,72,'Independence',1,12898,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8447,17,664,'Ingalls',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8448,17,658,'Inman',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8449,17,592,'Iola',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8450,17,681,'Isabel',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8451,17,657,'Iuka',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8452,17,643,'Jamestown',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8453,17,356,'Jennings',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8454,17,680,'Jetmore',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8455,17,655,'Jewell',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8456,17,685,'Johnson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8457,17,676,'Junction City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8458,17,674,'Kanopolis',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8459,17,671,'Kanorado',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8460,17,649,'Kansas City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8461,17,273,'Kechi',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8462,17,334,'Kendall',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8463,17,640,'Kensington',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8464,17,662,'Kincaid',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8465,17,667,'Kingman',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8466,17,542,'Kinsley',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8467,17,681,'Kiowa',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8468,17,111,'Kirwin',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8469,17,686,'Kismet',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8470,17,593,'La Crosse',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8471,17,592,'La Harpe',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8472,17,458,'Lacygne',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8473,17,681,'Lake City',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8474,17,669,'Lakin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8475,17,675,'Lamont',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8476,17,639,'Lancaster',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8477,17,92,'Lane',1,128,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8478,17,645,'Lansing',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8479,17,651,'Larned',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8480,17,74,'Latham',1,14641,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8481,17,254,'Lawrence',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8482,17,654,'Le Roy',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8483,17,645,'Leavenworth',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8484,17,135,'Leawood',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8485,17,640,'Lebanon',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8486,17,654,'Lebo',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8487,17,642,'Lecompton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8488,17,58,'Lehigh',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8489,17,135,'Lenexa',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8490,17,631,'Lenora',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8491,17,74,'Leon',1,14928,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8492,17,687,'Leonardville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8493,17,688,'Leoti',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8494,17,372,'Levant',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8495,17,542,'Lewis',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8496,17,686,'Liberal',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8497,17,72,'Liberty',1,15055,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8498,17,593,'Liebenthal',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8499,17,147,'Lincoln',1,103,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8500,17,58,'Lincolnville',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8501,17,658,'Lindsborg',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8502,17,71,'Linn',1,15205,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8503,17,645,'Linwood',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8504,17,629,'Little River',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8505,17,111,'Logan',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8506,17,111,'Long Island',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8507,17,48,'Longford',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8508,17,672,'Longton',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8509,17,674,'Lorraine',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8510,17,58,'Lost Springs',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8511,17,588,'Louisburg',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8512,17,80,'Lucas',1,15703,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8513,17,641,'Ludell',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8514,17,80,'Luray',1,15769,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8515,17,653,'Lyndon',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8516,17,629,'Lyons',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8517,17,683,'Macksville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8518,17,675,'Madison',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8519,17,71,'Mahaska',1,16003,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8520,17,273,'Maize',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8521,17,687,'Manhattan',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8522,17,655,'Mankato',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8523,17,685,'Manter',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8524,17,637,'Maple City',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8525,17,630,'Maple Hill',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8526,17,650,'Mapleton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8527,17,688,'Marienthal',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8528,17,58,'Marion',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8529,17,658,'Marquette',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8530,17,35,'Marysville',1,16508,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8531,17,660,'Matfield Green',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8532,17,66,'Mayetta',1,16641,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8533,17,636,'Mayfield',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8534,17,593,'Mc Cracken',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8535,17,97,'Mc Cune',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8536,17,641,'Mc Donald',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8537,17,630,'Mc Farland',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8538,17,30,'Mc Louth',1,16807,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8539,17,273,'Mcconnell Afb',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8540,17,658,'Mcpherson',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8541,17,677,'Meade',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8542,17,681,'Medicine Lodge',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8543,17,653,'Melvern',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8544,17,30,'Meriden',1,17074,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8545,17,636,'Milan',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8546,17,676,'Milford',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8547,17,636,'Milton',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8548,17,643,'Miltonvale',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8549,17,648,'Minneapolis',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8550,17,100,'Minneola',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8551,17,135,'Mission',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8552,17,672,'Moline',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8553,17,664,'Montezuma',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8554,17,124,'Monument',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8555,17,592,'Moran',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8556,17,48,'Morganville',1,17962,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8557,17,164,'Morland',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8558,17,586,'Morrill',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8559,17,71,'Morrowville',1,18030,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8560,17,684,'Moscow',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8561,17,458,'Mound City',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8562,17,632,'Mound Valley',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8563,17,658,'Moundridge',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8564,17,273,'Mount Hope',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8565,17,97,'Mulberry',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8566,17,232,'Mullinville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8567,17,273,'Mulvane',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8568,17,627,'Munden',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8569,17,667,'Murdock',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8570,17,639,'Muscotah',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8571,17,627,'Narka',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8572,17,667,'Nashville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8573,17,633,'Natoma',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8574,17,675,'Neal',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8575,17,593,'Nekoma',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8576,17,634,'Neodesha',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8577,17,654,'Neosho Falls',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8578,17,462,'Neosho Rapids',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8579,17,638,'Ness City',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8580,17,66,'Netawaka',1,18647,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8581,17,634,'New Albany',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8582,17,95,'New Cambria',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8583,17,135,'New Century',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8584,17,656,'Newton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8585,17,626,'Nickerson',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8586,17,661,'Niotaze',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8587,17,356,'Norcatur',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8588,17,656,'North Newton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8589,17,631,'Norton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8590,17,30,'Nortonville',1,19468,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8591,17,627,'Norway',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8592,17,667,'Norwich',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8593,17,124,'Oakley',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8594,17,356,'Oberlin',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8595,17,542,'Offerle',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8596,17,666,'Ogallah',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8597,17,687,'Ogden',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8598,17,35,'Oketo',1,19795,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8599,17,135,'Olathe',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8600,17,628,'Olmitz',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8601,17,462,'Olpe',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8602,17,646,'Olsburg',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8603,17,646,'Onaga',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8604,17,644,'Oneida',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8605,17,97,'Opolis',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8606,17,653,'Osage City',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8607,17,588,'Osawatomie',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8608,17,633,'Osborne',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8609,17,30,'Oskaloosa',1,201,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8610,17,632,'Oswego',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8611,17,593,'Otis',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8612,17,92,'Ottawa',1,172,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8613,17,653,'Overbrook',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8614,17,135,'Overland Park',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8615,17,636,'Oxford',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8616,17,30,'Ozawkie',1,203,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8617,17,668,'Palco',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8618,17,71,'Palmer',1,20368,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8619,17,588,'Paola',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8620,17,80,'Paradise',1,20452,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8621,17,679,'Park',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8622,17,458,'Parker',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8623,17,632,'Parsons',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8624,17,626,'Partridge',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8625,17,628,'Pawnee Rock',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8626,17,630,'Paxico',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8627,17,58,'Peabody',1,103,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8628,17,636,'Peck',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8629,17,164,'Penokee',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8630,17,30,'Perry',1,207,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8631,17,661,'Peru',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8632,17,659,'Pfeifer',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8633,17,111,'Phillipsburg',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8634,17,675,'Piedmont',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8635,17,678,'Pierceville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8636,17,689,'Piqua',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8637,17,97,'Pittsburg',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8638,17,677,'Plains',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8639,17,668,'Plainville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8640,17,458,'Pleasanton',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8641,17,626,'Plevna',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8642,17,92,'Pomona',1,182,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8643,17,633,'Portis',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8644,17,639,'Potter',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8645,17,74,'Potwin',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8646,17,586,'Powhattan',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8647,17,111,'Prairie View',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8648,17,135,'Prairie Village',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8649,17,657,'Pratt',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8650,17,458,'Prescott',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8651,17,626,'Pretty Prairie',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8652,17,92,'Princeton',1,185,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8653,17,665,'Protection',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8654,17,653,'Quenemo',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8655,17,679,'Quinter',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8656,17,58,'Ramona',1,112,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8657,17,655,'Randall',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8658,17,687,'Randolph',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8659,17,638,'Ransom',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8660,17,92,'Rantoul',1,189,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8661,17,629,'Raymond',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8662,17,462,'Reading',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8663,17,650,'Redfield',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8664,17,627,'Republic',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8665,17,372,'Rexford',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8666,17,673,'Richfield',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8667,17,92,'Richmond',1,194,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8668,17,687,'Riley',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8669,17,73,'Riverton',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8670,17,586,'Robinson',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8671,17,637,'Rock',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8672,17,673,'Rolla',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8673,17,74,'Rosalia',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8674,17,74,'Rose Hill',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8675,17,642,'Rossville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8676,17,658,'Roxbury',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8677,17,651,'Rozel',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8678,17,593,'Rush Center',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8679,17,80,'Russell',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8680,17,644,'Sabetha',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8681,17,230,'Saint Francis',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8682,17,646,'Saint George',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8683,17,683,'Saint John',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8684,17,646,'Saint Marys',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8685,17,663,'Saint Paul',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8686,17,95,'Salina',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8687,17,690,'Satanta',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8688,17,592,'Savonburg',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8689,17,657,'Sawyer',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8690,17,73,'Scammon',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8691,17,627,'Scandia',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8692,17,659,'Schoenchen',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8693,17,127,'Scott City',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8694,17,653,'Scranton',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8695,17,661,'Sedan',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8696,17,656,'Sedgwick',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8697,17,682,'Selden',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8698,17,644,'Seneca',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8699,17,675,'Severy',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8700,17,681,'Sharon',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8701,17,691,'Sharon Springs',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8702,17,135,'Shawnee',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8703,17,135,'Shawnee Mission',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8704,17,642,'Silver Lake',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8705,17,360,'Simpson',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8706,17,640,'Smith Center',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8707,17,66,'Soldier',1,182,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8708,17,470,'Solomon',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8709,17,636,'South Haven',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8710,17,626,'South Hutchinson',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8711,17,575,'Spearville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8712,17,667,'Spivey',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8713,17,135,'Spring Hill',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8714,17,683,'Stafford',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8715,17,663,'Stark',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8716,17,629,'Sterling',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8717,17,135,'Stilwell',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8718,17,668,'Stockton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8719,17,660,'Strong City',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8720,17,690,'Sublette',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8721,17,35,'Summerfield',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8722,17,681,'Sun City',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8723,17,72,'Sycamore',1,210,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8724,17,147,'Sylvan Grove',1,171,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8725,17,626,'Sylvia',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8726,17,334,'Syracuse',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8727,17,470,'Talmage',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8728,17,58,'Tampa',1,137,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8729,17,642,'Tecumseh',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8730,17,648,'Tescott',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8731,17,663,'Thayer',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8732,17,360,'Tipton',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8733,17,645,'Tonganoxie',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8734,17,642,'Topeka',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8735,17,689,'Toronto',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8736,17,74,'Towanda',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8737,17,73,'Treece',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8738,17,692,'Tribune',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8739,17,647,'Troy',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8740,17,626,'Turon',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8741,17,72,'Tyro',1,218,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8742,17,637,'Udall',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8743,17,148,'Ulysses',1,122,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8744,17,650,'Uniontown',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8745,17,638,'Utica',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8746,17,273,'Valley Center',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8747,17,30,'Valley Falls',1,277,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8748,17,653,'Vassar',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8749,17,35,'Vermillion',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8750,17,659,'Victoria',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8751,17,273,'Viola',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8752,17,675,'Virgil',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8753,17,642,'Wakarusa',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8754,17,666,'Wakeeney',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8755,17,48,'Wakefield',1,121,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8756,17,80,'Waldo',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8757,17,635,'Waldron',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8758,17,659,'Walker',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8759,17,691,'Wallace',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8760,17,97,'Walnut',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8761,17,656,'Walton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8762,17,646,'Wamego',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8763,17,71,'Washington',1,360,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8764,17,35,'Waterville',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8765,17,647,'Wathena',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8766,17,654,'Waverly',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8767,17,655,'Webber',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8768,17,73,'Weir',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8769,17,662,'Welda',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8770,17,636,'Wellington',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8771,17,92,'Wellsville',1,252,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8772,17,691,'Weskan',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8773,17,73,'West Mineral',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8774,17,646,'Westmoreland',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8775,17,662,'Westphalia',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8776,17,644,'Wetmore',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8777,17,652,'White City',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8778,17,647,'White Cloud',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8779,17,74,'Whitewater',1,102,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8780,17,66,'Whiting',1,209,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8781,17,273,'Wichita',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8782,17,92,'Williamsburg',1,262,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8783,17,665,'Wilmore',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8784,17,652,'Wilsey',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8785,17,674,'Wilson',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8786,17,30,'Winchester',1,296,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8787,17,658,'Windom',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8788,17,637,'Winfield',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8789,17,124,'Winona',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8790,17,470,'Woodbine',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8791,17,668,'Woodston',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8792,17,575,'Wright',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8793,17,689,'Yates Center',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8794,17,626,'Yoder',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8795,17,667,'Zenda',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8796,18,74,'Aberdeen',1,20,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8797,18,124,'Adairville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8798,18,81,'Adams',1,89,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8799,18,592,'Adolphus',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8800,18,693,'Ages Brookside',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8801,18,465,'Albany',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8802,18,694,'Alexandria',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8803,18,352,'Allen',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8804,18,695,'Allensville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8805,18,696,'Almo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8806,18,465,'Alpha',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8807,18,386,'Alvaton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8808,18,66,'Annville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8809,18,697,'Argillite',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8810,18,698,'Arjay',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8811,18,699,'Arlington',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8812,18,538,'Artemus',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8813,18,93,'Ary',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8814,18,55,'Ashcamp',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8815,18,700,'Asher',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8816,18,701,'Ashland',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8817,18,702,'Athol',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8818,18,124,'Auburn',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8819,18,703,'Augusta',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8820,18,704,'Austin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8821,18,352,'Auxier',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8822,18,93,'Avawam',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8823,18,33,'Bagdad',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8824,18,705,'Bandana',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8825,18,352,'Banner',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8826,18,538,'Barbourville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8827,18,706,'Bardstown',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8828,18,699,'Bardwell',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8829,18,705,'Barlow',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8830,18,567,'Baskett',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8831,18,677,'Battletown',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8832,18,693,'Baxter',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8833,18,702,'Bays',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8834,18,700,'Bear Branch',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8835,18,51,'Beattyville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8836,18,707,'Beaumont',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8837,18,332,'Beauty',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8838,18,352,'Beaver',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8839,18,625,'Beaver Dam',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8840,18,708,'Bedford',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8841,18,709,'Bee Spring',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8842,18,710,'Beech Creek',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8843,18,547,'Beech Grove',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8844,18,710,'Beechmont',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8845,18,55,'Belcher',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8846,18,55,'Belfry',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8847,18,694,'Bellevue',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8848,18,710,'Belton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8849,18,693,'Benham',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8850,18,35,'Benton',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8851,18,68,'Berea',1,2089,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8852,18,502,'Berry',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8853,18,711,'Bethany',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8854,18,712,'Bethelridge',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8855,18,28,'Bethlehem',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8856,18,352,'Betsy Layne',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8857,18,698,'Beverly',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8858,18,352,'Bevinsville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8859,18,713,'Big Clifty',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8860,18,48,'Big Creek',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8861,18,693,'Big Laurel',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8862,18,68,'Bighill',1,2304,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8863,18,538,'Bimble',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8864,18,714,'Blackey',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8865,18,442,'Blackford',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8866,18,81,'Blaine',1,2426,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8867,18,693,'Bledsoe',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8868,18,706,'Bloomfield',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8869,18,352,'Blue River',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8870,18,715,'Boaz',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8871,18,373,'Bonnieville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8872,18,93,'Bonnyman',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8873,18,716,'Booneville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8874,18,135,'Boons Camp',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8875,18,706,'Boston',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8876,18,386,'Bowling Green',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8877,18,58,'Bradfordsville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8878,18,677,'Brandenburg',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8879,18,454,'Breeding',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8880,18,710,'Bremen',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8881,18,717,'Brodhead',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8882,18,136,'Bronston',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8883,18,718,'Brooks',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8884,18,703,'Brooksville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8885,18,710,'Browder',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8886,18,709,'Brownsville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8887,18,538,'Bryants Store',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8888,18,719,'Bryantsville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8889,18,93,'Buckhorn',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8890,18,720,'Buckner',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8891,18,721,'Buffalo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8892,18,93,'Bulan',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8893,18,714,'Burdine',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8894,18,544,'Burgin',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8895,18,584,'Burkesville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8896,18,99,'Burlington',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8897,18,548,'Burna',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8898,18,136,'Burnside',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8899,18,722,'Bush',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8900,18,93,'Busy',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8901,18,723,'Butler',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8902,18,352,'Bypro',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8903,18,724,'Cadiz',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8904,18,547,'Calhoun',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8905,18,694,'California',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8906,18,35,'Calvert City',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8907,18,698,'Calvin',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8908,18,28,'Campbellsburg',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8909,18,337,'Campbellsville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8910,18,711,'Campton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8911,18,55,'Canada',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8912,18,454,'Cane Valley',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8913,18,713,'Caneyville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8914,18,373,'Canmer',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8915,18,82,'Cannel City',1,3986,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8916,18,538,'Cannon',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8917,18,725,'Carlisle',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8918,18,726,'Carrie',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8919,18,115,'Carrollton',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8920,18,727,'Carter',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8921,18,701,'Catlettsburg',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8922,18,704,'Cave City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8923,18,693,'Cawood',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8924,18,453,'Cecilia',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8925,18,707,'Center',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8926,18,625,'Centertown',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8927,18,710,'Central City',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8928,18,724,'Cerulean',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8929,18,706,'Chaplin',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8930,18,700,'Chappell',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8931,18,93,'Chavies',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8932,18,713,'Clarkson',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8933,18,442,'Clay',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8934,18,728,'Clay City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8935,18,702,'Clayhole',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8936,18,729,'Clearfield',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8937,18,710,'Cleaton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8938,18,718,'Clermont',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8939,18,695,'Clifty',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8940,18,730,'Clinton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8941,18,693,'Closplint',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8942,18,731,'Cloverport',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8943,18,693,'Coalgood',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8944,18,693,'Coldiron',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8945,18,454,'Columbia',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8946,18,730,'Columbus',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8947,18,93,'Combs',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8948,18,613,'Corbin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8949,18,148,'Corinth',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8950,18,93,'Cornettsville',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8951,18,567,'Corydon',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8952,18,732,'Covington',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8953,18,706,'Coxs Creek',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8954,18,147,'Crab Orchard',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8955,18,693,'Cranks',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8956,18,134,'Crayne',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8957,18,720,'Crestwood',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8958,18,148,'Crittenden',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8959,18,82,'Crockett',1,6186,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(8960,18,556,'Crofton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8961,18,714,'Cromona',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8962,18,625,'Cromwell',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8963,18,373,'Cub Run',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8964,18,693,'Cumberland',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8965,18,699,'Cunningham',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8966,18,610,'Curdsville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8967,18,731,'Custer',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8968,18,502,'Cynthiana',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8969,18,352,'Dana',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8970,18,733,'Danville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8971,18,352,'David',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8972,18,734,'Dawson Springs',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8973,18,693,'Dayhoit',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8974,18,694,'Dayton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8975,18,723,'De Mossville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8976,18,714,'Deane',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8977,18,332,'Debord',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8978,18,93,'Delphia',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8979,18,726,'Dema',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8980,18,735,'Denniston',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8981,18,727,'Denton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8982,18,538,'Dewitt',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8983,18,696,'Dexter',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8984,18,93,'Dice',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8985,18,442,'Dixon',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8986,18,55,'Dorton',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8987,18,561,'Dover',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8988,18,386,'Drake',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8989,18,710,'Drakesboro',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8990,18,352,'Drift',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8991,18,148,'Dry Ridge',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8992,18,584,'Dubre',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8993,18,74,'Dunbar',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8994,18,625,'Dundee',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8995,18,710,'Dunmor',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8996,18,712,'Dunnville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8997,18,352,'Dwale',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8998,18,93,'Dwarf',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(8999,18,134,'Dycusburg',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9000,18,734,'Earlington',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9001,18,722,'East Bernstadt',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9002,18,135,'East Point',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9003,18,352,'Eastern',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9004,18,453,'Eastview',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9005,18,30,'Eastwood',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9006,18,462,'Eddyville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9007,18,707,'Edmonton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9008,18,704,'Eighty Eight',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9009,18,677,'Ekron',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9010,18,453,'Elizabethtown',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9011,18,736,'Elizaville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9012,18,337,'Elk Horn',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9013,18,82,'Elkfork',1,8135,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(9014,18,55,'Elkhorn City',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9015,18,695,'Elkton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9016,18,729,'Elliottville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9017,18,528,'Emerson',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9018,18,28,'Eminence',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9019,18,613,'Emlyn',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9020,18,726,'Emmalena',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9021,18,714,'Eolia',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9022,18,48,'Eriline',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9023,18,732,'Erlanger',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9024,18,714,'Ermine',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9025,18,700,'Essie',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9026,18,704,'Etoile',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9027,18,136,'Eubank',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9028,18,693,'Evarts',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9029,18,736,'Ewing',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9030,18,82,'Ezel',1,8665,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(9031,18,30,'Fairdale',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9032,18,706,'Fairfield',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9033,18,556,'Fairview',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9034,18,737,'Falcon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9035,18,48,'Fall Rock',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9036,18,713,'Falls Of Rough',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9037,18,723,'Falmouth',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9038,18,715,'Fancy Farm',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9039,18,729,'Farmers',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9040,18,715,'Farmington',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9041,18,55,'Fedscreek',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9042,18,136,'Ferguson',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9043,18,33,'Finchville',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9044,18,30,'Fisherville',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9045,18,726,'Fisty',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9046,18,538,'Flat Lick',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9047,18,135,'Flatgap',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9048,18,697,'Flatwoods',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9049,18,736,'Flemingsburg',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9050,18,99,'Florence',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9051,18,55,'Fords Branch',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9052,18,625,'Fordsville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9053,18,55,'Forest Hills',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9054,18,556,'Fort Campbell',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9055,18,453,'Fort Knox',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9056,18,694,'Fort Thomas',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9057,18,703,'Foster',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9058,18,59,'Fountain Run',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9059,18,698,'Fourmile',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9060,18,698,'Frakes',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9061,18,92,'Frankfort',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9062,18,738,'Franklin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9063,18,739,'Fredonia',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9064,18,55,'Freeburn',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9065,18,735,'Frenchburg',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9066,18,732,'Ft Mitchell',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9067,18,119,'Fulton',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9068,18,59,'Gamaliel',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9069,18,270,'Gapville',1,9883,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9070,18,731,'Garfield',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9071,18,726,'Garner',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9072,18,48,'Garrard',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9073,18,352,'Garrett',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9074,18,528,'Garrison',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9075,18,93,'Gays Creek',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9076,18,127,'Georgetown',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9077,18,703,'Germantown',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9078,18,115,'Ghent',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9079,18,35,'Gilbertsville',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9080,18,538,'Girdler',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9081,18,704,'Glasgow',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9082,18,583,'Glencoe',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9083,18,453,'Glendale',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9084,18,454,'Glens Fork',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9085,18,30,'Glenview',1,103,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9086,18,48,'Goose Rock',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9087,18,714,'Gordon',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9088,18,720,'Goshen',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9089,18,556,'Gracey',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9090,18,454,'Gradyville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9091,18,710,'Graham',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9092,18,727,'Grahn',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9093,18,548,'Grand Rivers',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9094,18,58,'Gravel Switch',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9095,18,538,'Gray',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9096,18,66,'Gray Hawk',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9097,18,693,'Grays Knob',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9098,18,727,'Grayson',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9099,18,538,'Green Road',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9100,18,740,'Greensburg',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9101,18,697,'Greenup',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9102,18,710,'Greenville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9103,18,352,'Grethel',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9104,18,693,'Gulston',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9105,18,737,'Gunlock',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9106,18,677,'Guston',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9107,18,695,'Guthrie',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9108,18,135,'Hagerhill',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9109,18,714,'Hallie',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9110,18,548,'Hampton',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9111,18,734,'Hanson',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9112,18,93,'Happy',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9113,18,93,'Hardburly',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9114,18,35,'Hardin',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9115,18,731,'Hardinsburg',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9116,18,55,'Hardy',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9117,18,373,'Hardyville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9118,18,693,'Harlan',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9119,18,731,'Harned',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9120,18,352,'Harold',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9121,18,30,'Harrods Creek',1,119,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9122,18,544,'Harrodsburg',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9123,18,625,'Hartford',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9124,18,446,'Hawesville',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9125,18,93,'Hazard',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9126,18,696,'Hazel',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9127,18,711,'Hazel Green',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9128,18,99,'Hebron',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9129,18,51,'Heidelberg',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9130,18,538,'Heidrick',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9131,18,55,'Hellier',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9132,18,700,'Helton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9133,18,567,'Henderson',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9134,18,556,'Herndon',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9135,18,59,'Hestand',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9136,18,352,'Hi Hat',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9137,18,119,'Hickman',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9138,18,715,'Hickory',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9139,18,736,'Hillsboro',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9140,18,718,'Hillview',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9141,18,48,'Hima',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9142,18,726,'Hindman',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9143,18,538,'Hinkle',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9144,18,704,'Hiseville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9145,18,727,'Hitchins',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9146,18,721,'Hodgenville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9147,18,592,'Holland',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9148,18,693,'Holmes Mill',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9149,18,741,'Hope',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9150,18,556,'Hopkinsville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9151,18,625,'Horse Branch',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9152,18,373,'Horse Cave',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9153,18,700,'Hoskinston',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9154,18,55,'Huddy',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9155,18,731,'Hudson',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9156,18,352,'Hueysville',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9157,18,698,'Hulen',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9158,18,147,'Hustonville',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9159,18,700,'Hyden',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9160,18,732,'Independence',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9161,18,332,'Inez',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9162,18,698,'Ingram',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9163,18,742,'Irvine',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9164,18,731,'Irvington',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9165,18,547,'Island',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9166,18,716,'Island City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9167,18,714,'Isom',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9168,18,743,'Isonville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9169,18,352,'Ivel',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9170,18,714,'Jackhorn',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9171,18,702,'Jackson',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9172,18,80,'Jamestown',1,13210,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(9173,18,93,'Jeff',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9174,18,72,'Jeffersonville',1,13290,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(9175,18,714,'Jenkins',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9176,18,714,'Jeremiah',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9177,18,74,'Jetson',1,13352,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(9178,18,55,'Jonancy',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9179,18,148,'Jonesville',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9180,18,733,'Junction City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9181,18,135,'Keaton',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9182,18,722,'Keavy',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9183,18,744,'Keene',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9184,18,732,'Kenton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9185,18,693,'Kenvir',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9186,18,698,'Kettle Island',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9187,18,745,'Kevil',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9188,18,55,'Kimper',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9189,18,147,'Kings Mountain',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9190,18,696,'Kirksey',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9191,18,726,'Kite',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9192,18,454,'Knifley',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9193,18,707,'Knob Lick',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9194,18,93,'Krypton',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9195,18,462,'Kuttawa',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9196,18,705,'La Center',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9197,18,556,'La Fayette',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9198,18,720,'La Grange',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9199,18,352,'Lackey',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9200,18,719,'Lancaster',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9201,18,352,'Langley',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9202,18,732,'Latonia',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9203,18,662,'Lawrenceburg',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9204,18,58,'Lebanon',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9205,18,718,'Lebanon Junction',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9206,18,726,'Leburn',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9207,18,548,'Ledbetter',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9208,18,713,'Leitchfield',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9209,18,693,'Lejunior',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9210,18,714,'Letcher',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9211,18,124,'Lewisburg',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9212,18,446,'Lewisport',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9213,18,56,'Lexington',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9214,18,712,'Liberty',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9215,18,55,'Lick Creek',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9216,18,722,'Lily',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9217,18,714,'Linefork',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9218,18,726,'Littcarr',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9219,18,547,'Livermore',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9220,18,717,'Livingston',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9221,18,28,'Lockport',1,15380,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9222,18,722,'London',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9223,18,51,'Lone',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9224,18,55,'Lookout',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9225,18,58,'Loretto',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9226,18,702,'Lost Creek',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9227,18,81,'Louisa',1,15609,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(9228,18,30,'Louisville',1,15620,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9229,18,705,'Lovelaceville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9230,18,332,'Lovely',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9231,18,715,'Lowes',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9232,18,81,'Lowmansville',1,15677,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(9233,18,693,'Loyall',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9234,18,704,'Lucas',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9235,18,693,'Lynch',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9236,18,715,'Lynnville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9237,18,610,'Maceo',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9238,18,71,'Mackville',1,15914,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(9239,18,734,'Madisonville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9240,18,721,'Magnolia',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9241,18,55,'Majestic',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9242,18,726,'Mallie',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9243,18,82,'Malone',1,16058,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(9244,18,709,'Mammoth Cave',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9245,18,48,'Manchester',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9246,18,734,'Manitou',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9247,18,337,'Mannsville',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9248,18,610,'Maple Mount',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9249,18,134,'Marion',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9250,18,584,'Marrowbone',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9251,18,746,'Marshes Siding',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9252,18,81,'Martha',1,16452,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(9253,18,352,'Martin',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9254,18,693,'Mary Alice',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9255,18,148,'Mason',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9256,18,30,'Masonic Home',1,16533,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9257,18,715,'Mayfield',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9258,18,714,'Mayking',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9259,18,561,'Mayslick',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9260,18,561,'Maysville',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9261,18,81,'Mazie',1,16688,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(9262,18,55,'Mc Andrews',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9263,18,55,'Mc Carr',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9264,18,731,'Mc Daniels',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9265,18,352,'Mc Dowell',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9266,18,625,'Mc Henry',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9267,18,66,'Mc Kee',1,130,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9268,18,147,'Mc Kinney',1,111,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9269,18,731,'Mc Quady',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9270,18,714,'Mc Roberts',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9271,18,135,'Meally',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9272,18,735,'Means',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9273,18,715,'Melber',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9274,18,694,'Melbourne',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9275,18,352,'Melvin',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9276,18,712,'Middleburg',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9277,18,698,'Middlesboro',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9278,18,565,'Midway',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9279,18,699,'Milburn',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9280,18,703,'Milford',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9281,18,650,'Millersburg',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9282,18,714,'Millstone',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9283,18,713,'Millwood',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9284,18,708,'Milton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9285,18,561,'Minerva',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9286,18,352,'Minnie',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9287,18,698,'Miracle',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9288,18,716,'Mistletoe',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9289,18,733,'Mitchellsburg',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9290,18,82,'Mize',1,17621,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(9291,18,431,'Monticello',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9292,18,725,'Moorefield',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9293,18,729,'Morehead',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9294,18,131,'Morganfield',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9295,18,74,'Morgantown',1,17961,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(9296,18,732,'Morning View',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9297,18,734,'Mortons Gap',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9298,18,612,'Mount Eden',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9299,18,59,'Mount Hermon',1,107,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9300,18,747,'Mount Olivet',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9301,18,721,'Mount Sherman',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9302,18,72,'Mount Sterling',1,18216,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(9303,18,717,'Mount Vernon',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9304,18,718,'Mount Washington',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9305,18,726,'Mousie',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9306,18,55,'Mouthcard',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9307,18,700,'Mozelle',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9308,18,677,'Muldraugh',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9309,18,373,'Munfordville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9310,18,696,'Murray',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9311,18,736,'Muses Mills',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9312,18,55,'Myra',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9313,18,136,'Nancy',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9314,18,706,'Nazareth',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9315,18,734,'Nebo',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9316,18,714,'Neon',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9317,18,58,'Nerinx',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9318,18,613,'Nevisdale',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9319,18,28,'New Castle',1,18721,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9320,18,696,'New Concord',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9321,18,706,'New Haven',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9322,18,706,'New Hope',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9323,18,615,'New Liberty',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9324,18,694,'Newport',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9325,18,744,'Nicholasville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9326,18,650,'North Middletown',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9327,18,734,'Nortonville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9328,18,556,'Oak Grove',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9329,18,386,'Oakland',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9330,18,135,'Oil Springs',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9331,18,625,'Olaton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9332,18,727,'Olive Hill',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9333,18,124,'Olmstead',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9334,18,741,'Olympia',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9335,18,48,'Oneida',1,19935,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9336,18,82,'Ophir',1,19975,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(9337,18,717,'Orlando',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9338,18,610,'Owensboro',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9339,18,615,'Owenton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9340,18,741,'Owingsville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9341,18,745,'Paducah',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9342,18,719,'Paint Lick',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9343,18,135,'Paintsville',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9344,18,650,'Paris',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9345,18,704,'Park City',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9346,18,746,'Parkers Lake',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9347,18,733,'Parksville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9348,18,714,'Partridge',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9349,18,693,'Pathfork',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9350,18,677,'Payneville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9351,18,446,'Pellville',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9352,18,556,'Pembroke',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9353,18,28,'Pendleton',1,70,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(9354,18,615,'Perry Park',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9355,18,733,'Perryville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9356,18,99,'Petersburg',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9357,18,720,'Pewee Valley',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9358,18,55,'Phelps',1,77,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(9359,18,610,'Philpot',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9360,18,55,'Phyllis',1,78,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(9361,18,55,'Pikeville',1,80,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(9362,18,332,'Pilgrim',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9363,18,746,'Pine Knot',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9364,18,711,'Pine Ridge',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9365,18,726,'Pine Top',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9366,18,698,'Pineville',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9367,18,55,'Pinsonfork',1,81,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(9368,18,726,'Pippa Passes',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9369,18,722,'Pittsburg',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9370,18,28,'Pleasureville',1,71,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(9371,18,736,'Plummers Landing',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9372,18,442,'Poole',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9373,18,28,'Port Royal',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9374,18,710,'Powderly',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9375,18,714,'Premium',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9376,18,741,'Preston',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9377,18,352,'Prestonsburg',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9378,18,51,'Primrose',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9379,18,739,'Princeton',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9380,18,352,'Printer',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9381,18,30,'Prospect',1,223,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9382,18,442,'Providence',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9383,18,693,'Putney',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9384,18,528,'Quincy',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9385,18,55,'Raccoon',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9386,18,453,'Radcliff',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9387,18,55,'Ransom',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9388,18,726,'Raven',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9389,18,742,'Ravenna',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9390,18,58,'Raywick',1,113,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9391,18,726,'Redfox',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9392,18,567,'Reed',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9393,18,55,'Regina',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9394,18,717,'Renfro Valley',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9395,18,746,'Revelo',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9396,18,625,'Reynolds Station',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9397,18,677,'Rhodelia',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9398,18,716,'Ricetown',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9399,18,68,'Richmond',1,133,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9400,18,453,'Rineyville',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9401,18,135,'River',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9402,18,700,'Roark',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9403,18,567,'Robards',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9404,18,55,'Robinson Creek',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9405,18,74,'Rochester',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9406,18,386,'Rockfield',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9407,18,613,'Rockholds',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9408,18,55,'Rockhouse',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9409,18,625,'Rockport',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9410,18,709,'Rocky Hill',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9411,18,711,'Rogers',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9412,18,625,'Rosine',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9413,18,709,'Roundhill',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9414,18,702,'Rousseau',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9415,18,93,'Rowdy',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9416,18,714,'Roxana',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9417,18,737,'Royalton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9418,18,547,'Rumsey',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9419,18,701,'Rush',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9420,18,697,'Russell',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9421,18,80,'Russell Springs',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9422,18,124,'Russellville',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9423,18,547,'Sacramento',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9424,18,127,'Sadieville',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9425,18,71,'Saint Catharine',1,299,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9426,18,734,'Saint Charles',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9427,18,58,'Saint Francis',1,117,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9428,18,51,'Saint Helens',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9429,18,58,'Saint Mary',1,118,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9430,18,548,'Salem',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9431,18,741,'Salt Lick',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9432,18,544,'Salvisa',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9433,18,737,'Salyersville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9434,18,115,'Sanders',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9435,18,66,'Sandgap',1,174,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9436,18,743,'Sandy Hook',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9437,18,726,'Sassafras',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9438,18,93,'Saul',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9439,18,538,'Scalf',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9440,18,136,'Science Hill',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9441,18,592,'Scottsville',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9442,18,93,'Scuddy',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9443,18,442,'Sebree',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9444,18,714,'Seco',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9445,18,715,'Sedalia',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9446,18,48,'Sextons Creek',1,112,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9447,18,695,'Sharon Grove',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9448,18,741,'Sharpsburg',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9449,18,55,'Shelbiana',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9450,18,55,'Shelby Gap',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9451,18,33,'Shelbyville',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9452,18,718,'Shepherdsville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9453,18,55,'Sidney',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9454,18,613,'Siler',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9455,18,694,'Silver Grove',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9456,18,33,'Simpsonville',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9457,18,135,'Sitka',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9458,18,700,'Sizerock',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9459,18,728,'Slade',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9460,18,442,'Slaughters',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9461,18,93,'Slemp',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9462,18,700,'Smilax',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9463,18,567,'Smith Mills',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9464,18,28,'Smithfield',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9465,18,548,'Smithland',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9466,18,386,'Smiths Grove',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9467,18,727,'Soldier',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9468,18,136,'Somerset',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9469,18,453,'Sonora',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9470,18,710,'South Carrollton',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9471,18,697,'South Portsmouth',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9472,18,697,'South Shore',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9473,18,124,'South Union',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9474,18,55,'South Williamson',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9475,18,583,'Sparta',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9476,18,567,'Spottsville',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9477,18,71,'Springfield',1,324,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9478,18,135,'Staffordsville',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9479,18,135,'Stambaugh',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9480,18,127,'Stamping Ground',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9481,18,147,'Stanford',1,165,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9482,18,610,'Stanley',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9483,18,728,'Stanton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9484,18,352,'Stanville',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9485,18,746,'Stearns',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9486,18,55,'Steele',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9487,18,731,'Stephensport',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9488,18,700,'Stinnett',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9489,18,55,'Stone',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9490,18,698,'Stoney Fork',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9491,18,55,'Stopover',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9492,18,746,'Strunk',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9493,18,131,'Sturgis',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9494,18,131,'Sullivan',1,102,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9495,18,28,'Sulphur',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9496,18,707,'Summer Shade',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9497,18,740,'Summersville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9498,18,709,'Sweeden',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9499,18,715,'Symsonia',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9500,18,136,'Tateville',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9501,18,612,'Taylorsville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9502,18,352,'Teaberry',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9503,18,135,'Thelma',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9504,18,714,'Thornton',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9505,18,700,'Thousandsticks',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9506,18,548,'Tiline',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9507,18,528,'Tollesboro',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9508,18,134,'Tolu',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9509,18,332,'Tomahawk',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9510,18,59,'Tompkinsville',1,167,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9511,18,726,'Topmost',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9512,18,693,'Totz',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9513,18,352,'Tram',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9514,18,695,'Trenton',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9515,18,538,'Trosper',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9516,18,28,'Turners Station',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9517,18,135,'Tutor Key',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9518,18,66,'Tyner',1,198,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9519,18,81,'Ulysses',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9520,18,99,'Union',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9521,18,731,'Union Star',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9522,18,131,'Uniontown',1,110,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9523,18,453,'Upton',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9524,18,610,'Utica',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9525,18,135,'Van Lear',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9526,18,528,'Vanceburg',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9527,18,702,'Vancleve',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9528,18,55,'Varney',1,107,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9529,18,99,'Verona',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9530,18,565,'Versailles',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9531,18,726,'Vest',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9532,18,93,'Vicco',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9533,18,716,'Vincent',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9534,18,453,'Vine Grove',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9535,18,93,'Viper',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9536,18,55,'Virgie',1,109,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9537,18,68,'Waco',1,160,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9538,18,33,'Waddy',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9539,18,538,'Walker',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9540,18,736,'Wallingford',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9541,18,693,'Wallins Creek',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9542,18,99,'Walton',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9543,18,66,'Waneta',1,205,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9544,18,700,'Warbranch',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9545,18,332,'Warfield',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9546,18,583,'Warsaw',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9547,18,561,'Washington',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9548,18,715,'Water Valley',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9549,18,131,'Waverly',1,115,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9550,18,352,'Wayland',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9551,18,147,'Waynesburg',1,191,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9552,18,81,'Webbville',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9553,18,731,'Webster',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9554,18,352,'Weeksbury',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9555,18,74,'Welchs Creek',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9556,18,735,'Wellington',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9557,18,700,'Wendover',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9558,18,82,'West Liberty',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9559,18,610,'West Louisville',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9560,18,745,'West Paducah',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9561,18,453,'West Point',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9562,18,136,'West Somerset',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9563,18,135,'West Van Lear',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9564,18,720,'Westport',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9565,18,731,'Westview',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9566,18,442,'Wheatcroft',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9567,18,352,'Wheelwright',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9568,18,702,'Whick',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9569,18,453,'White Mills',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9570,18,734,'White Plains',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9571,18,714,'Whitesburg',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9572,18,610,'Whitesville',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9573,18,746,'Whitley City',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9574,18,705,'Wickliffe',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9575,18,717,'Wildie',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9576,18,727,'Willard',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9577,18,613,'Williamsburg',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9578,18,135,'Williamsport',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9579,18,148,'Williamstown',1,129,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9580,18,71,'Willisburg',1,389,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9581,18,744,'Wilmore',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9582,18,100,'Winchester',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9583,18,712,'Windsor',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9584,18,715,'Wingo',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9585,18,742,'Winston',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9586,18,135,'Wittensville',1,102,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9587,18,538,'Woodbine',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9588,18,386,'Woodburn',1,127,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9589,18,74,'Woodbury',1,103,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9591,18,700,'Wooton',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9592,18,697,'Worthington',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9593,18,115,'Worthville',1,127,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9594,18,82,'Wrigley',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9595,18,700,'Yeaddiss',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9596,18,93,'Yerkes',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9597,18,712,'Yosemite',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9598,18,51,'Zoe',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9599,19,546,'Abbeville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9600,19,748,'Abita Springs',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9601,19,749,'Acme',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9602,19,750,'Addis',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9603,19,751,'Aimwell',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9604,19,752,'Akers',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9605,19,548,'Albany',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9606,19,753,'Alexandria',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9607,19,754,'Ama',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9608,19,755,'Amelia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9609,19,752,'Amite',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9610,19,756,'Anacoco',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9611,19,71,'Angie',1,682,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(9612,19,757,'Angola',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9613,19,758,'Arabi',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9614,19,759,'Arcadia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9615,19,577,'Archibald',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9616,19,760,'Arnaudville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9617,19,761,'Ashland',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9618,19,762,'Athens',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9619,19,763,'Atlanta',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9620,19,764,'Avery Island',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9621,19,765,'Baker',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9622,19,755,'Baldwin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9623,19,753,'Ball',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9624,19,30,'Barataria',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9625,19,766,'Barksdale Afb',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9626,19,767,'Basile',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9627,19,92,'Baskin',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9628,19,768,'Bastrop',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9629,19,769,'Batchelor',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9630,19,765,'Baton Rouge',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9631,19,770,'Belcher',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9632,19,771,'Bell City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9633,19,772,'Belle Chasse',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9634,19,773,'Belle Rose',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9635,19,774,'Belmont',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9636,19,148,'Bentley',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9637,19,766,'Benton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9638,19,131,'Bernice',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9639,19,755,'Berwick',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9640,19,770,'Bethany',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9641,19,759,'Bienville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9642,19,770,'Blanchard',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9643,19,71,'Bogalusa',1,2628,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(9644,19,768,'Bonita',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9645,19,772,'Boothville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9646,19,775,'Bordelonville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9647,19,766,'Bossier City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9648,19,776,'Bourg',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9649,19,754,'Boutte',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9650,19,753,'Boyce',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9651,19,772,'Braithwaite',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9652,19,777,'Branch',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9653,19,778,'Breaux Bridge',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9654,19,779,'Brittany',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9655,19,128,'Broussard',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9656,19,750,'Brusly',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9657,19,775,'Bunkie',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9658,19,772,'Buras',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9659,19,779,'Burnside',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9660,19,748,'Bush',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9661,19,778,'Cade',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9662,19,114,'Calhoun',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9663,19,763,'Calvin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9664,19,780,'Cameron',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9665,19,761,'Campti',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9666,19,128,'Carencro',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9667,19,781,'Carville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9668,19,759,'Castor',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9669,19,778,'Cecilia',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9670,19,775,'Center Point',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9671,19,755,'Centerville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9672,19,758,'Chalmette',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9673,19,755,'Charenton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9674,19,92,'Chase',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9675,19,767,'Chataignier',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9676,19,66,'Chatham',1,4705,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(9677,19,776,'Chauvin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9678,19,753,'Cheneyville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9679,19,147,'Choudrant',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9680,19,777,'Church Point',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9681,19,761,'Clarence',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9682,19,739,'Clarks',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9683,19,749,'Clayton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9684,19,782,'Clinton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9685,19,761,'Cloutierville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9686,19,148,'Colfax',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9687,19,768,'Collinston',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9688,19,739,'Columbia',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9689,19,783,'Convent',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9690,19,774,'Converse',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9691,19,442,'Cotton Valley',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9692,19,775,'Cottonport',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9693,19,784,'Coushatta',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9694,19,748,'Covington',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9695,19,780,'Creole',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9696,19,777,'Crowley',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9697,19,92,'Crowville',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9698,19,442,'Cullen',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9699,19,785,'Cut Off',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9700,19,779,'Darrow',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9701,19,546,'Delcambre',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9702,19,577,'Delhi',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9703,19,68,'Delta',1,6862,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(9704,19,548,'Denham Springs',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9705,19,771,'Dequincy',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9706,19,786,'Deridder',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9707,19,754,'Des Allemands',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9708,19,754,'Destrehan',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9709,19,753,'Deville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9710,19,763,'Dodson',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9711,19,779,'Donaldsonville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9712,19,776,'Donner',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9713,19,131,'Downsville',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9714,19,442,'Doyline',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9715,19,786,'Dry Creek',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9716,19,148,'Dry Prong',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9717,19,147,'Dubach',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9718,19,442,'Dubberly',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9719,19,776,'Dulac',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9720,19,779,'Duplessis',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9721,19,775,'Dupont',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9722,19,128,'Duson',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9723,19,753,'Echo',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9724,19,787,'Edgard',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9725,19,775,'Effie',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9726,19,777,'Egan',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9727,19,592,'Elizabeth',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9728,19,766,'Elm Grove',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9729,19,753,'Elmer',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9730,19,788,'Elton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9731,19,772,'Empire',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9732,19,751,'Enterprise',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9733,19,789,'Epps',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9734,19,546,'Erath',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9735,19,114,'Eros',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9736,19,750,'Erwinville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9737,19,777,'Estherwood',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9738,19,782,'Ethel',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9739,19,760,'Eunice',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9740,19,777,'Evangeline',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9741,19,756,'Evans',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9742,19,775,'Evergreen',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9743,19,114,'Fairbanks',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9744,19,131,'Farmerville',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9745,19,788,'Fenton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9746,19,749,'Ferriday',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9747,19,774,'Fisher',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9748,19,753,'Flatwoods',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9749,19,761,'Flora',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9750,19,774,'Florien',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9751,19,752,'Fluker',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9752,19,748,'Folsom',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9753,19,769,'Fordoche',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9754,19,789,'Forest',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9755,19,753,'Forest Hill',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9756,19,92,'Fort Necessity',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9757,19,756,'Fort Polk',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9758,19,755,'Franklin',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9759,19,71,'Franklinton',1,9569,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(9760,19,548,'French Settlement',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9761,19,295,'Frierson',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9762,19,785,'Galliano',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9763,19,755,'Garden City',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9764,19,753,'Gardner',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9765,19,787,'Garyville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9766,19,779,'Geismar',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9767,19,148,'Georgetown',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9768,19,785,'Gheens',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9769,19,759,'Gibsland',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9770,19,776,'Gibson',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9771,19,92,'Gilbert',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9772,19,770,'Gilliam',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9773,19,753,'Glenmora',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9774,19,295,'Gloster',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9775,19,769,'Glynn',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9776,19,785,'Golden Meadow',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9777,19,761,'Goldonna',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9778,19,779,'Gonzales',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9779,19,761,'Gorum',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9780,19,147,'Grambling',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9781,19,783,'Gramercy',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9782,19,295,'Grand Cane',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9783,19,780,'Grand Chenier',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9784,19,760,'Grand Coteau',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9785,19,30,'Grand Isle',1,105,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9786,19,592,'Grant',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9787,19,776,'Gray',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9788,19,739,'Grayson',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9789,19,790,'Greensburg',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9790,19,765,'Greenwell Springs',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9791,19,770,'Greenwood',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9792,19,30,'Gretna',1,109,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9793,19,781,'Grosse Tete',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9794,19,546,'Gueydan',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9795,19,780,'Hackberry',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9796,19,754,'Hahnville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9797,19,784,'Hall Summit',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9798,19,775,'Hamburg',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9799,19,752,'Hammond',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9800,19,751,'Harrisonburg',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9801,19,30,'Harvey',1,120,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9802,19,766,'Haughton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9803,19,771,'Hayes',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9804,19,762,'Haynesville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9805,19,442,'Heflin',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9806,19,775,'Hessmer',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9807,19,783,'Hester',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9808,19,753,'Hineston',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9809,19,66,'Hodge',1,12253,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(9810,19,548,'Holden',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9811,19,762,'Homer',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9812,19,756,'Hornbeck',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9813,19,770,'Hosston',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9814,19,776,'Houma',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9815,19,752,'Husser',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9816,19,770,'Ida',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9817,19,752,'Independence',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9818,19,769,'Innis',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9819,19,777,'Iota',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9820,19,771,'Iowa',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9821,19,782,'Jackson',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9822,19,759,'Jamestown',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9823,19,769,'Jarreau',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9824,19,764,'Jeanerette',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9825,19,579,'Jena',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9826,19,788,'Jennings',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9827,19,92,'Jigger',1,121,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9828,19,768,'Jones',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9829,19,66,'Jonesboro',1,13420,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(9830,19,751,'Jonesville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9831,19,763,'Joyce',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9832,19,546,'Kaplan',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9833,19,295,'Keatchie',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9834,19,770,'Keithville',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9835,19,739,'Kelly',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9836,19,30,'Kenner',1,144,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9837,19,752,'Kentwood',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9838,19,789,'Kilbourne',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9839,19,592,'Kinder',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9840,19,785,'Kraemer',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9841,19,760,'Krotz Springs',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9842,19,756,'Kurthwood',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9843,19,787,'La Place',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9844,19,773,'Labadieville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9845,19,788,'Lacassine',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9846,19,748,'Lacombe',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9847,19,128,'Lafayette',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9848,19,30,'Lafitte',1,150,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9849,19,788,'Lake Arthur',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9850,19,771,'Lake Charles',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9851,19,791,'Lake Providence',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9852,19,769,'Lakeland',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9853,19,785,'Larose',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9854,19,760,'Lawtell',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9855,19,760,'Lebeau',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9856,19,592,'Leblanc',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9857,19,753,'Lecompte',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9858,19,756,'Leesville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9859,19,753,'Lena',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9860,19,760,'Leonville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9861,19,769,'Lettsworth',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9862,19,753,'Libuse',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9863,19,131,'Lillie',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9864,19,762,'Lisbon',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9865,19,548,'Livingston',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9866,19,769,'Livonia',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9867,19,785,'Lockport',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9868,19,295,'Logansport',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9869,19,753,'Longleaf',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9870,19,295,'Longstreet',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9871,19,786,'Longville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9872,19,752,'Loranger',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9873,19,764,'Loreauville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9874,19,769,'Lottie',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9875,19,754,'Luling',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9876,19,783,'Lutcher',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9877,19,764,'Lydia',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9878,19,748,'Madisonville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9879,19,767,'Mamou',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9880,19,748,'Mandeville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9881,19,577,'Mangham',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9882,19,295,'Mansfield',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9883,19,775,'Mansura',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9884,19,774,'Many',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9885,19,781,'Maringouin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9886,19,131,'Marion',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9887,19,775,'Marksville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9888,19,30,'Marrero',1,16406,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9889,19,761,'Marthaville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9890,19,785,'Mathews',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9891,19,548,'Maurepas',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9892,19,546,'Maurice',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9893,19,761,'Melrose',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9894,19,760,'Melville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9895,19,768,'Mer Rouge',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9896,19,758,'Meraux',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9897,19,777,'Mermentau',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9898,19,786,'Merryville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9899,19,30,'Metairie',1,17136,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9900,19,128,'Milton',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9901,19,442,'Minden',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9902,19,592,'Mittie',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9903,19,114,'Monroe',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9904,19,776,'Montegut',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9905,19,749,'Monterey',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9906,19,148,'Montgomery',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9907,19,770,'Mooringsport',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9908,19,753,'Mora',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9909,19,775,'Moreauville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9910,19,755,'Morgan City',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9911,19,769,'Morganza',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9912,19,760,'Morrow',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9913,19,777,'Morse',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9914,19,787,'Mount Airy',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9915,19,71,'Mount Hermon',1,18146,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(9916,19,773,'Napoleonville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9917,19,752,'Natalbany',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9918,19,761,'Natchez',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9919,19,761,'Natchitoches',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9920,19,774,'Negreet',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9921,19,764,'New Iberia',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9922,19,30,'New Orleans',1,18856,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9923,19,792,'New Orleans',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9924,19,769,'New Roads',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9925,19,754,'New Sarpy',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9926,19,793,'Newellton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9927,19,756,'Newllano',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9928,19,774,'Noble',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9929,19,754,'Norco',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9930,19,782,'Norwood',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9931,19,789,'Oak Grove',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9932,19,768,'Oak Ridge',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9933,19,592,'Oakdale',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9934,19,592,'Oberlin',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9935,19,770,'Oil City',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9936,19,579,'Olla',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9937,19,760,'Opelousas',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9938,19,769,'Oscar',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9939,19,753,'Otis',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9940,19,773,'Paincourtville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9941,19,760,'Palmetto',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9942,19,754,'Paradis',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9943,19,755,'Patterson',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9944,19,783,'Paulina',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9945,19,748,'Pearl River',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9946,19,295,'Pelican',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9947,19,546,'Perry',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9948,19,773,'Pierre Part',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9949,19,772,'Pilottown',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9950,19,790,'Pine Grove',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9951,19,767,'Pine Prairie',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9952,19,753,'Pineville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9953,19,789,'Pioneer',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9954,19,756,'Pitkin',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9955,19,766,'Plain Dealing',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9956,19,781,'Plaquemine',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9957,19,773,'Plattenville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9958,19,775,'Plaucheville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9959,19,774,'Pleasant Hill',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9960,19,772,'Pointe A La Hache',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9961,19,148,'Pollock',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9962,19,752,'Ponchatoula',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9963,19,750,'Port Allen',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9964,19,760,'Port Barre',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9965,19,772,'Port Sulphur',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9966,19,761,'Powhatan',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9967,19,779,'Prairieville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9968,19,765,'Pride',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9969,19,766,'Princeton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9970,19,761,'Provencal',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9971,19,66,'Quitman',1,166,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9972,19,785,'Raceland',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9973,19,786,'Ragley',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9974,19,777,'Rayne',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9975,19,577,'Rayville',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9976,19,767,'Reddell',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9977,19,592,'Reeves',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9978,19,787,'Reserve',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9979,19,751,'Rhinehart',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9980,19,759,'Ringgold',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9981,19,788,'Roanoke',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9982,19,761,'Robeline',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9983,19,752,'Robert',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9984,19,770,'Rodessa',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9985,19,781,'Rosedale',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9986,19,752,'Roseland',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9987,19,756,'Rosepine',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9988,19,769,'Rougon',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9989,19,753,'Ruby',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9990,19,147,'Ruston',1,147,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9991,19,779,'Saint Amant',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9992,19,748,'Saint Benedict',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9993,19,758,'Saint Bernard',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9994,19,757,'Saint Francisville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9995,19,781,'Saint Gabriel',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9996,19,783,'Saint James',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9997,19,793,'Saint Joseph',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9998,19,767,'Saint Landry',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(9999,19,778,'Saint Martinville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10000,19,763,'Saint Maurice',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10001,19,754,'Saint Rose',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10002,19,759,'Saline',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10003,19,442,'Sarepta',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10004,19,776,'Schriever',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10005,19,128,'Scott',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10006,19,442,'Shongaloo',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10007,19,770,'Shreveport',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10008,19,442,'Sibley',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10009,19,751,'Sicily Island',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10010,19,753,'Sieper',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10011,19,763,'Sikes',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10012,19,775,'Simmesport',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10013,19,756,'Simpson',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10014,19,147,'Simsboro',1,154,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10015,19,786,'Singer',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10016,19,756,'Slagle',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10017,19,782,'Slaughter',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10018,19,748,'Slidell',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10019,19,791,'Sondheimer',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10020,19,779,'Sorrento',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10021,19,131,'Spearsville',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10022,19,548,'Springfield',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10023,19,442,'Springhill',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10024,19,771,'Starks',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10025,19,577,'Start',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10026,19,114,'Sterlington',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10027,19,295,'Stonewall',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10028,19,786,'Sugartown',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10029,19,771,'Sulphur',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10030,19,762,'Summerfield',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10031,19,748,'Sun',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10032,19,760,'Sunset',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10033,19,781,'Sunshine',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10034,19,114,'Swartz',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10035,19,748,'Talisheek',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10036,19,68,'Tallulah',1,152,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10037,19,752,'Tangipahoa',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10038,19,759,'Taylor',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10039,19,776,'Theriot',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10040,19,785,'Thibodaux',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10041,19,752,'Tickfaw',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10042,19,753,'Tioga',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10043,19,791,'Transylvania',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10044,19,579,'Trout',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10045,19,579,'Tullos',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10046,19,757,'Tunica',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10047,19,767,'Turkey Creek',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10048,19,783,'Uncle Sam',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10049,19,579,'Urania',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10050,19,783,'Vacherie',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10051,19,71,'Varnado',1,344,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10052,19,772,'Venice',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10053,19,769,'Ventress',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10054,19,749,'Vidalia',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10055,19,767,'Ville Platte',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10056,19,771,'Vinton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10057,19,758,'Violet',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10058,19,770,'Vivian',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10059,19,757,'Wakefield',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10060,19,548,'Walker',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10061,19,760,'Washington',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10062,19,793,'Waterproof',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10063,19,548,'Watson',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10064,19,788,'Welsh',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10065,19,114,'West Monroe',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10066,19,771,'Westlake',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10067,19,30,'Westwego',1,291,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10068,19,757,'Weyanoke',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10069,19,781,'White Castle',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10070,19,749,'Wildsville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10071,19,782,'Wilson',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10072,19,763,'Winnfield',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10073,19,92,'Winnsboro',1,267,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10074,19,92,'Wisner',1,269,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10075,19,753,'Woodworth',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10076,19,128,'Youngsville',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10077,19,765,'Zachary',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10078,19,774,'Zwolle',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10079,22,456,'Abington',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10080,22,456,'Accord',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10081,22,286,'Acton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10082,22,794,'Acushnet',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10083,22,795,'Adams',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10084,22,796,'Agawam',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10085,22,797,'Allston',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10086,22,798,'Amesbury',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10087,22,799,'Amherst',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10088,22,798,'Andover',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10089,22,286,'Arlington',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10090,22,286,'Arlington Heights',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10091,22,800,'Ashburnham',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10092,22,286,'Ashby',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10093,22,92,'Ashfield',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10094,22,286,'Ashland',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10095,22,795,'Ashley Falls',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10096,22,794,'Assonet',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10097,22,800,'Athol',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10098,22,794,'Attleboro',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10099,22,794,'Attleboro Falls',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10100,22,800,'Auburn',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10101,22,286,'Auburndale',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10102,22,801,'Avon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10103,22,286,'Ayer',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10104,22,801,'Babson Park',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10105,22,800,'Baldwinville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10106,22,802,'Barnstable',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10107,22,800,'Barre',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10108,22,795,'Becket',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10109,22,286,'Bedford',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10110,22,799,'Belchertown',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10111,22,801,'Bellingham',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10112,22,286,'Belmont',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10113,22,794,'Berkley',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10114,22,795,'Berkshire',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10115,22,800,'Berlin',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10116,22,92,'Bernardston',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10117,22,798,'Beverly',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10118,22,286,'Billerica',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10119,22,800,'Blackstone',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10120,22,796,'Blandford',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10121,22,800,'Bolton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10122,22,796,'Bondsville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10123,22,797,'Boston',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10124,22,286,'Boxborough',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10125,22,798,'Boxford',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10126,22,800,'Boylston',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10127,22,801,'Braintree',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10128,22,456,'Brant Rock',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10129,22,802,'Brewster',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10130,22,456,'Bridgewater',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10131,22,797,'Brighton',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10132,22,796,'Brimfield',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10133,22,456,'Brockton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10134,22,800,'Brookfield',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10135,22,801,'Brookline',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10136,22,801,'Brookline Village',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10137,22,456,'Bryantville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10138,22,92,'Buckland',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10139,22,286,'Burlington',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10140,22,802,'Buzzards Bay',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10141,22,798,'Byfield',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10142,22,286,'Cambridge',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10143,22,801,'Canton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10144,22,286,'Carlisle',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10145,22,456,'Carver',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10146,22,802,'Cataumet',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10147,22,802,'Centerville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10148,22,92,'Charlemont',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10149,22,797,'Charlestown',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10150,22,800,'Charlton',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10151,22,800,'Charlton City',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10152,22,800,'Charlton Depot',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10153,22,794,'Chartley',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10154,22,802,'Chatham',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10155,22,286,'Chelmsford',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10156,22,797,'Chelsea',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10157,22,800,'Cherry Valley',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10158,22,795,'Cheshire',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10159,22,796,'Chester',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10160,22,799,'Chesterfield',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10161,22,286,'Chestnut Hill',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10162,22,796,'Chicopee',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10163,22,803,'Chilmark',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10164,22,800,'Clinton',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10165,22,801,'Cohasset',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10166,22,92,'Colrain',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10167,22,286,'Concord',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10168,22,92,'Conway',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10169,22,802,'Cotuit',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10170,22,802,'Cummaquid',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10171,22,799,'Cummington',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10172,22,803,'Cuttyhunk',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10173,22,795,'Dalton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10174,22,798,'Danvers',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10175,22,794,'Dartmouth',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10176,22,801,'Dedham',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10177,22,92,'Deerfield',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10178,22,802,'Dennis',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10179,22,802,'Dennis Port',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10180,22,286,'Devens',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10181,22,794,'Dighton',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10182,22,800,'Douglas',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10183,22,801,'Dover',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10184,22,286,'Dracut',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10185,22,795,'Drury',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10186,22,800,'Dudley',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10187,22,286,'Dunstable',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10188,22,456,'Duxbury',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10189,22,797,'East Boston',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10190,22,456,'East Bridgewater',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10191,22,800,'East Brookfield',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10192,22,802,'East Dennis',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10193,22,802,'East Falmouth',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10194,22,794,'East Freetown',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10195,22,796,'East Longmeadow',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10196,22,794,'East Mansfield',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10197,22,802,'East Orleans',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10198,22,795,'East Otis',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10199,22,800,'East Princeton',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10200,22,802,'East Sandwich',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10201,22,794,'East Taunton',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10202,22,800,'East Templeton',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10203,22,801,'East Walpole',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10204,22,456,'East Wareham',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10205,22,801,'East Weymouth',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10206,22,802,'Eastham',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10207,22,799,'Easthampton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10208,22,794,'Easton',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10209,22,803,'Edgartown',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10210,22,456,'Elmwood',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10211,22,92,'Erving',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10212,22,798,'Essex',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10213,22,286,'Everett',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10214,22,794,'Fairhaven',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10215,22,794,'Fall River',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10216,22,802,'Falmouth',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10217,22,800,'Fayville',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10218,22,796,'Feeding Hills',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10219,22,800,'Fiskdale',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10220,22,800,'Fitchburg',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10221,22,802,'Forestdale',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10222,22,801,'Foxboro',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10223,22,286,'Framingham',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10224,22,801,'Franklin',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10225,22,800,'Gardner',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10226,22,798,'Georgetown',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10227,22,800,'Gilbertville',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10228,22,92,'Gill',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10229,22,795,'Glendale',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10230,22,798,'Gloucester',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10231,22,799,'Goshen',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10232,22,800,'Grafton',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10233,22,799,'Granby',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10234,22,796,'Granville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10235,22,795,'Great Barrington',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10236,22,456,'Green Harbor',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10237,22,456,'Greenbush',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10238,22,92,'Greenfield',1,104,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10239,22,286,'Groton',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10240,22,798,'Groveland',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10241,22,799,'Hadley',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10242,22,456,'Halifax',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10243,22,798,'Hamilton',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10244,22,796,'Hampden',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10245,22,456,'Hanover',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10246,22,286,'Hanscom Afb',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10247,22,456,'Hanson',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10248,22,800,'Hardwick',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10249,22,800,'Harvard',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10250,22,802,'Harwich',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10251,22,802,'Harwich Port',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10252,22,799,'Hatfield',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10253,22,798,'Hathorne',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10254,22,798,'Haverhill',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10255,22,799,'Haydenville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10256,22,92,'Heath',1,111,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10257,22,456,'Hingham',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10258,22,795,'Hinsdale',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10259,22,801,'Holbrook',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10260,22,800,'Holden',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10261,22,796,'Holland',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10262,22,286,'Holliston',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10263,22,796,'Holyoke',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10264,22,800,'Hopedale',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10265,22,286,'Hopkinton',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10266,22,795,'Housatonic',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10267,22,800,'Hubbardston',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10268,22,286,'Hudson',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10269,22,456,'Hull',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10270,22,456,'Humarock',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10271,22,799,'Huntington',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10272,22,802,'Hyannis',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10273,22,802,'Hyannis Port',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10274,22,797,'Hyde Park',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10275,22,798,'Ipswich',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10276,22,797,'Jamaica Plain',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10277,22,800,'Jefferson',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10278,22,456,'Kingston',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10279,22,92,'Lake Pleasant',1,126,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10280,22,456,'Lakeville',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10281,22,800,'Lancaster',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10282,22,795,'Lanesboro',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10283,22,798,'Lawrence',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10284,22,795,'Lee',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10285,22,799,'Leeds',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10286,22,800,'Leicester',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10287,22,795,'Lenox',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10288,22,795,'Lenox Dale',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10289,22,800,'Leominster',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10290,22,92,'Leverett',1,134,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10291,22,286,'Lexington',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10292,22,286,'Lincoln',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10293,22,800,'Linwood',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10294,22,286,'Littleton',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10295,22,796,'Longmeadow',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10296,22,286,'Lowell',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10297,22,796,'Ludlow',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10298,22,800,'Lunenburg',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10299,22,798,'Lynn',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10300,22,798,'Lynnfield',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10301,22,286,'Malden',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10302,22,800,'Manchaug',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10303,22,798,'Manchester',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10304,22,456,'Manomet',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10305,22,794,'Mansfield',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10306,22,798,'Marblehead',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10307,22,456,'Marion',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10308,22,286,'Marlborough',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10309,22,456,'Marshfield',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10310,22,456,'Marshfield Hills',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10311,22,802,'Marstons Mills',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10312,22,802,'Mashpee',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10313,22,797,'Mattapan',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10314,22,456,'Mattapoisett',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10315,22,286,'Maynard',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10316,22,801,'Medfield',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10317,22,286,'Medford',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10318,22,801,'Medway',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10319,22,286,'Melrose',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10320,22,800,'Mendon',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10321,22,803,'Menemsha',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10322,22,798,'Merrimac',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10323,22,798,'Methuen',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10324,22,456,'Middleboro',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10325,22,799,'Middlefield',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10326,22,798,'Middleton',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10327,22,800,'Milford',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10328,22,795,'Mill River',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10329,22,800,'Millbury',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10330,22,92,'Millers Falls',1,148,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10331,22,801,'Millis',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10332,22,800,'Millville',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10333,22,801,'Milton',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10334,22,801,'Milton Village',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10335,22,456,'Minot',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10336,22,456,'Monponsett',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10337,22,92,'Monroe Bridge',1,150,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10338,22,796,'Monson',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10339,22,92,'Montague',1,152,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10340,22,795,'Monterey',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10341,22,802,'Monument Beach',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10342,22,798,'Nahant',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10343,22,804,'Nantucket',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10344,22,286,'Natick',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10345,22,801,'Needham',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10346,22,801,'Needham Heights',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10347,22,794,'New Bedford',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10348,22,800,'New Braintree',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10349,22,92,'New Salem',1,160,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10350,22,286,'New Town',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10351,22,798,'Newbury',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10352,22,798,'Newburyport',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10353,22,286,'Newton',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10354,22,286,'Newton Center',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10355,22,286,'Newton Highlands',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10356,22,286,'Newton Lower Falls',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10357,22,286,'Newton Upper Falls',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10358,22,286,'Newtonville',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10359,22,286,'Nonantum',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10360,22,801,'Norfolk',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10361,22,795,'North Adams',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10362,22,799,'North Amherst',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10363,22,798,'North Andover',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10364,22,794,'North Attleboro',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10365,22,286,'North Billerica',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10366,22,800,'North Brookfield',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10367,22,456,'North Carver',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10368,22,802,'North Chatham',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10369,22,286,'North Chelmsford',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10370,22,794,'North Dartmouth',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10371,22,794,'North Dighton',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10372,22,802,'North Eastham',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10373,22,794,'North Easton',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10374,22,795,'North Egremont',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10375,22,802,'North Falmouth',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10376,22,800,'North Grafton',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10377,22,799,'North Hatfield',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10378,22,456,'North Marshfield',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10379,22,800,'North Oxford',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10380,22,456,'North Pembroke',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10381,22,286,'North Reading',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10382,22,456,'North Scituate',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10383,22,802,'North Truro',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10384,22,800,'North Uxbridge',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10385,22,286,'North Waltham',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10386,22,801,'North Weymouth',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10387,22,799,'Northampton',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10388,22,800,'Northborough',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10389,22,800,'Northbridge',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10390,22,92,'Northfield',1,166,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10391,22,794,'Norton',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10392,22,456,'Norwell',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10393,22,801,'Norwood',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10394,22,286,'Nutting Lake',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10395,22,803,'Oak Bluffs',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10396,22,800,'Oakham',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10397,22,456,'Ocean Bluff',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10398,22,456,'Onset',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10399,22,92,'Orange',1,169,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10400,22,802,'Orleans',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10401,22,802,'Osterville',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10402,22,795,'Otis',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10403,22,800,'Oxford',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10404,22,796,'Palmer',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10405,22,800,'Paxton',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10406,22,798,'Peabody',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10407,22,456,'Pembroke',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10408,22,286,'Pepperell',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10409,22,800,'Petersham',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10410,22,286,'Pinehurst',1,102,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10411,22,795,'Pittsfield',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10412,22,799,'Plainfield',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10413,22,801,'Plainville',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10414,22,456,'Plymouth',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10415,22,456,'Plympton',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10416,22,802,'Pocasset',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10417,22,798,'Prides Crossing',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10418,22,800,'Princeton',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10419,22,802,'Provincetown',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10420,22,801,'Quincy',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10421,22,801,'Randolph',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10422,22,794,'Raynham',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10423,22,794,'Raynham Center',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10424,22,286,'Reading',1,107,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10425,22,797,'Readville',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10426,22,794,'Rehoboth',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10427,22,797,'Revere',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10428,22,795,'Richmond',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10429,22,800,'Rochdale',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10430,22,456,'Rochester',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10431,22,456,'Rockland',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10432,22,798,'Rockport',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10433,22,797,'Roslindale',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10434,22,92,'Rowe',1,199,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10435,22,798,'Rowley',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10436,22,800,'Royalston',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10437,22,796,'Russell',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10438,22,800,'Rutland',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10439,22,802,'Sagamore',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10440,22,802,'Sagamore Beach',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10441,22,798,'Salem',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10442,22,798,'Salisbury',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10443,22,795,'Sandisfield',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10444,22,802,'Sandwich',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10445,22,798,'Saugus',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10446,22,795,'Savoy',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10447,22,456,'Scituate',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10448,22,794,'Seekonk',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10449,22,801,'Sharon',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10450,22,795,'Sheffield',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10451,22,92,'Shelburne Falls',1,218,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10452,22,801,'Sheldonville',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10453,22,286,'Sherborn',1,112,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10454,22,286,'Shirley',1,113,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10455,22,800,'Shrewsbury',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10456,22,92,'Shutesbury',1,222,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10457,22,804,'Siasconset',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10458,22,802,'Silver Beach',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10459,22,794,'Somerset',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10460,22,286,'Somerville',1,114,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10461,22,800,'South Barre',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10462,22,456,'South Carver',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10463,22,802,'South Chatham',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10464,22,794,'South Dartmouth',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10465,22,92,'South Deerfield',1,223,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10466,22,802,'South Dennis',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10467,22,794,'South Easton',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10468,22,795,'South Egremont',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10469,22,800,'South Grafton',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10470,22,799,'South Hadley',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10471,22,798,'South Hamilton',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10472,22,802,'South Harwich',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10473,22,800,'South Lancaster',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10474,22,795,'South Lee',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10475,22,802,'South Orleans',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10476,22,801,'South Walpole',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10477,22,802,'South Wellfleet',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10478,22,801,'South Weymouth',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10479,22,802,'South Yarmouth',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10480,22,799,'Southampton',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10481,22,800,'Southborough',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10482,22,800,'Southbridge',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10483,22,795,'Southfield',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10484,22,796,'Southwick',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10485,22,800,'Spencer',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10486,22,796,'Springfield',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10487,22,800,'Sterling',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10488,22,800,'Still River',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10489,22,795,'Stockbridge',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10490,22,286,'Stoneham',1,119,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10491,22,801,'Stoughton',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10492,22,286,'Stow',1,120,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10493,22,800,'Sturbridge',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10494,22,286,'Sudbury',1,121,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10495,22,92,'Sunderland',1,232,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10496,22,800,'Sutton',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10497,22,798,'Swampscott',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10498,22,794,'Swansea',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10499,22,794,'Taunton',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10500,22,800,'Templeton',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10501,22,286,'Tewksbury',1,122,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10502,22,796,'Thorndike',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10503,22,796,'Three Rivers',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10504,22,798,'Topsfield',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10505,22,286,'Townsend',1,124,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10506,22,802,'Truro',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10507,22,92,'Turners Falls',1,239,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10508,22,286,'Tyngsboro',1,125,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10509,22,795,'Tyringham',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10510,22,800,'Upton',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10511,22,800,'Uxbridge',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10512,22,286,'Village Of Nagog Woods',1,127,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10513,22,803,'Vineyard Haven',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10514,22,286,'Waban',1,128,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10515,22,286,'Wakefield',1,130,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10516,22,796,'Wales',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10517,22,801,'Walpole',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10518,22,286,'Waltham',1,131,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10519,22,799,'Ware',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10520,22,456,'Wareham',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10521,22,800,'Warren',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10522,22,92,'Warwick',1,248,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10523,22,286,'Watertown',1,133,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10524,22,286,'Waverley',1,134,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10525,22,286,'Wayland',1,135,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10526,22,800,'Webster',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10527,22,801,'Wellesley',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10528,22,801,'Wellesley Hills',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10529,22,802,'Wellfleet',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10530,22,92,'Wendell',1,253,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10531,22,92,'Wendell Depot',1,254,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10532,22,798,'Wenham',1,103,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10533,22,802,'West Barnstable',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10534,22,798,'West Boxford',1,104,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10535,22,800,'West Boylston',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10536,22,456,'West Bridgewater',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10537,22,800,'West Brookfield',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10538,22,802,'West Chatham',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10539,22,799,'West Chesterfield',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10540,22,803,'West Chop',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10541,22,802,'West Dennis',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10542,22,802,'West Falmouth',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10543,22,286,'West Groton',1,136,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10544,22,802,'West Harwich',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10545,22,799,'West Hatfield',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10546,22,802,'West Hyannisport',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10547,22,286,'West Medford',1,137,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10548,22,800,'West Millbury',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10549,22,798,'West Newbury',1,105,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10550,22,286,'West Newton',1,138,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10551,22,797,'West Roxbury',1,114,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10552,22,796,'West Springfield',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10553,22,795,'West Stockbridge',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10554,22,803,'West Tisbury',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10555,22,286,'West Townsend',1,139,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10556,22,456,'West Wareham',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10557,22,800,'West Warren',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10558,22,802,'West Yarmouth',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10559,22,800,'Westborough',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10560,22,796,'Westfield',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10561,22,286,'Westford',1,141,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10562,22,800,'Westminster',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10563,22,286,'Weston',1,142,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10564,22,794,'Westport',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10565,22,794,'Westport Point',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10566,22,801,'Westwood',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10567,22,801,'Weymouth',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10568,22,92,'Whately',1,259,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10569,22,800,'Wheelwright',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10570,22,456,'White Horse Beach',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10571,22,800,'Whitinsville',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10572,22,456,'Whitman',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10573,22,796,'Wilbraham',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10574,22,799,'Williamsburg',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10575,22,795,'Williamstown',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10576,22,286,'Wilmington',1,143,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10577,22,800,'Winchendon',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10578,22,800,'Winchendon Springs',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10579,22,286,'Winchester',1,144,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10580,22,795,'Windsor',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10581,22,797,'Winthrop',1,118,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10582,22,286,'Woburn',1,145,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10583,22,802,'Woods Hole',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10584,22,286,'Woodville',1,147,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10585,22,800,'Worcester',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10586,22,796,'Woronoco',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10587,22,799,'Worthington',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10588,22,801,'Wrentham',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10589,22,802,'Yarmouth Port',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10590,21,805,'Abell',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10591,21,806,'Aberdeen',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10592,21,806,'Aberdeen Proving Ground',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10593,21,806,'Abingdon',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10594,21,807,'Accident',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10595,21,808,'Accokeek',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10596,21,809,'Adamstown',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10597,21,810,'Allen',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10598,21,808,'Andrews Air Force Base',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10599,21,811,'Annapolis',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10600,21,141,'Annapolis Junction',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10601,21,808,'Aquasco',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10602,21,811,'Arnold',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10603,21,72,'Ashton',1,1055,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(10604,21,805,'Avenue',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10605,21,812,'Baldwin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10606,21,811,'Baltimore',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10607,21,812,'Baltimore',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10608,21,813,'Baltimore',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10609,21,814,'Barclay',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10610,21,72,'Barnesville',1,1534,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(10611,21,815,'Barstow',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10612,21,816,'Barton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10613,21,72,'Beallsville',1,1725,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(10614,21,806,'Bel Air',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10615,21,817,'Bel Alton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10616,21,806,'Belcamp',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10617,21,808,'Beltsville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10618,21,817,'Benedict',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10619,21,806,'Benson',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10620,21,800,'Berlin',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10621,21,72,'Bethesda',1,2193,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(10622,21,818,'Bethlehem',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10623,21,290,'Betterton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10624,21,71,'Big Pool',1,2275,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(10625,21,800,'Bishopville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10626,21,807,'Bittinger',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10627,21,810,'Bivalve',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10628,21,808,'Bladensburg',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10629,21,807,'Bloomington',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10630,21,71,'Boonsboro',1,2729,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(10631,21,812,'Boring',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10632,21,808,'Bowie',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10633,21,72,'Boyds',1,2849,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(10634,21,374,'Bozman',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10635,21,809,'Braddock Heights',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10636,21,808,'Brandywine',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10637,21,808,'Brentwood',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10638,21,72,'Brinklow',1,3117,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(10639,21,72,'Brookeville',1,3214,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(10640,21,812,'Brooklandville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10641,21,813,'Brooklyn',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10642,21,815,'Broomes Island',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10643,21,71,'Brownsville',1,3315,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(10644,21,809,'Brunswick',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10645,21,817,'Bryans Road',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10646,21,817,'Bryantown',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10647,21,809,'Buckeystown',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10648,21,809,'Burkittsville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10649,21,72,'Burtonsville',1,3625,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(10650,21,805,'Bushwood',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10651,21,812,'Butler',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10652,21,72,'Cabin John',1,3704,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(10653,21,805,'California',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10654,21,805,'Callaway',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10655,21,819,'Cambridge',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10656,21,808,'Capitol Heights',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10657,21,71,'Cascade',1,4252,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(10658,21,812,'Catonsville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10659,21,71,'Cavetown',1,4372,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(10660,21,820,'Cecilton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10661,21,814,'Centreville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10662,21,805,'Chaptico',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10663,21,820,'Charlestown',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10664,21,805,'Charlotte Hall',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10665,21,812,'Chase',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10666,21,808,'Cheltenham',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10667,21,815,'Chesapeake Beach',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10668,21,820,'Chesapeake City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10669,21,814,'Chester',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10670,21,290,'Chestertown',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10671,21,814,'Chestertown',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10672,21,72,'Chevy Chase',1,4855,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(10673,21,71,'Chewsville',1,4858,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(10674,21,820,'Childs',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10675,21,819,'Church Creek',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10676,21,814,'Church Hill',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10677,21,811,'Churchton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10678,21,806,'Churchville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10679,21,374,'Claiborne',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10680,21,72,'Clarksburg',1,5094,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(10681,21,141,'Clarksville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10682,21,71,'Clear Spring',1,5179,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(10683,21,805,'Clements',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10684,21,808,'Clinton',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10685,21,817,'Cobb Island',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10686,21,812,'Cockeysville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10687,21,808,'College Park',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10688,21,820,'Colora',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10689,21,805,'Coltons Point',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10690,21,141,'Columbia',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10691,21,805,'Compton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10692,21,820,'Conowingo',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10693,21,141,'Cooksville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10694,21,374,'Cordova',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10695,21,816,'Corriganville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10696,21,819,'Crapo',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10697,21,821,'Crisfield',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10698,21,819,'Crocheron',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10699,21,811,'Crofton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10700,21,811,'Crownsville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10701,21,814,'Crumpton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10702,21,816,'Cumberland',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10703,21,811,'Curtis Bay',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10704,21,72,'Damascus',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10705,21,805,'Dameron',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10706,21,806,'Darlington',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10707,21,811,'Davidsonville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10708,21,141,'Dayton',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10709,21,821,'Deal Island',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10710,21,811,'Deale',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10711,21,810,'Delmar',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10712,21,818,'Denton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10713,21,72,'Derwood',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10714,21,72,'Dickerson',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10715,21,808,'District Heights',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10716,21,815,'Dowell',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10717,21,805,'Drayden',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10718,21,812,'Dundalk',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10719,21,815,'Dunkirk',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10720,21,820,'Earleville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10721,21,819,'East New Market',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10722,21,374,'Easton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10723,21,816,'Eckhart Mines',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10724,21,800,'Eden',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10725,21,811,'Edgewater',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10726,21,806,'Edgewood',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10727,21,820,'Elk Mills',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10728,21,141,'Elkridge',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10729,21,820,'Elkton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10730,21,816,'Ellerslie',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10731,21,141,'Ellicott City',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10732,21,809,'Emmitsburg',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10733,21,812,'Essex',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10734,21,821,'Ewell',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10735,21,71,'Fairplay',1,124,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10736,21,806,'Fallston',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10737,21,817,'Faulkner',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10738,21,818,'Federalsburg',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10739,21,115,'Finksburg',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10740,21,819,'Fishing Creek',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10741,21,816,'Flintstone',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10742,21,806,'Forest Hill',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10743,21,812,'Fork',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10744,21,811,'Fort George G Meade',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10745,21,812,'Fort Howard',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10746,21,808,'Fort Washington',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10747,21,809,'Frederick',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10748,21,812,'Freeland',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10749,21,811,'Friendship',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10750,21,807,'Friendsville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10751,21,816,'Frostburg',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10752,21,810,'Fruitland',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10753,21,141,'Fulton',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10754,21,71,'Funkstown',1,140,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10755,21,72,'Gaithersburg',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10756,21,290,'Galena',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10757,21,811,'Galesville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10758,21,811,'Gambrills',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10759,21,72,'Garrett Park',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10760,21,820,'Georgetown',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10761,21,72,'Germantown',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10762,21,811,'Gibson Island',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10763,21,800,'Girdletree',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10764,21,812,'Glen Arm',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10765,21,811,'Glen Burnie',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10766,21,72,'Glen Echo',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10767,21,141,'Glenelg',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10768,21,808,'Glenn Dale',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10769,21,141,'Glenwood',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10770,21,812,'Glyndon',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10771,21,818,'Goldsboro',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10772,21,807,'Grantsville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10773,21,814,'Grasonville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10774,21,805,'Great Mills',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10775,21,808,'Greenbelt',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10776,21,818,'Greensboro',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10777,21,806,'Gunpowder',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10778,21,812,'Gwynn Oak',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10779,21,71,'Hagerstown',1,158,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10780,21,812,'Halethorpe',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10781,21,115,'Hampstead',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10782,21,71,'Hancock',1,160,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10783,21,811,'Hanover',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10784,21,811,'Harmans',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10785,21,811,'Harwood',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10786,21,806,'Havre De Grace',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10787,21,810,'Hebron',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10788,21,805,'Helen',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10789,21,818,'Henderson',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10790,21,141,'Highland',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10791,21,818,'Hillsboro',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10792,21,805,'Hollywood',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10793,21,817,'Hughesville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10794,21,812,'Hunt Valley',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10795,21,815,'Huntingtown',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10796,21,819,'Hurlock',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10797,21,808,'Hyattsville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10798,21,812,'Hydes',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10799,21,809,'Ijamsville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10800,21,817,'Indian Head',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10801,21,814,'Ingleside',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10802,21,817,'Ironsides',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10803,21,817,'Issue',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10804,21,806,'Jarrettsville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10805,21,809,'Jefferson',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10806,21,141,'Jessup',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10807,21,806,'Joppa',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10808,21,71,'Keedysville',1,194,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10809,21,290,'Kennedyville',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10810,21,72,'Kensington',1,114,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10811,21,115,'Keymar',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10812,21,812,'Kingsville',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10813,21,807,'Kitzmiller',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10814,21,809,'Knoxville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10815,21,817,'La Plata',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10816,21,809,'Ladiesburg',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10817,21,808,'Lanham',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10818,21,811,'Laurel',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10819,21,141,'Laurel',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10820,21,808,'Laurel',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10821,21,805,'Leonardtown',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10822,21,805,'Lexington Park',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10823,21,809,'Libertytown',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10824,21,115,'Lineboro',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10825,21,819,'Linkwood',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10826,21,811,'Linthicum Heights',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10827,21,141,'Lisbon',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10828,21,816,'Little Orleans',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10829,21,816,'Lonaconing',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10830,21,812,'Long Green',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10831,21,811,'Lothian',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10832,21,805,'Loveville',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10833,21,816,'Luke',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10834,21,815,'Lusby',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10835,21,812,'Lutherville Timonium',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10836,21,819,'Madison',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10837,21,115,'Manchester',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10838,21,821,'Manokin',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10839,21,817,'Marbury',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10840,21,810,'Mardela Springs',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10841,21,821,'Marion Station',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10842,21,115,'Marriottsville',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10843,21,818,'Marydel',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10844,21,812,'Maryland Line',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10845,21,290,'Massey',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10846,21,71,'Maugansville',1,228,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10847,21,811,'Mayo',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10848,21,807,'Mc Henry',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10849,21,374,'Mcdaniel',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10850,21,805,'Mechanicsville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10851,21,812,'Middle River',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10852,21,809,'Middletown',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10853,21,816,'Midland',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10854,21,816,'Midlothian',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10855,21,811,'Millersville',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10856,21,290,'Millington',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10857,21,812,'Monkton',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10858,21,809,'Monrovia',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10859,21,72,'Montgomery Village',1,137,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10860,21,805,'Morganza',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10861,21,809,'Mount Airy',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10862,21,808,'Mount Rainier',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10863,21,816,'Mount Savage',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10864,21,817,'Mount Victoria',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10865,21,809,'Myersville',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10866,21,817,'Nanjemoy',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10867,21,810,'Nanticoke',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10868,21,374,'Neavitt',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10869,21,809,'New Market',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10870,21,809,'New Midway',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10871,21,115,'New Windsor',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10872,21,800,'Newark',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10873,21,817,'Newburg',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10874,21,374,'Newcomb',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10875,21,815,'North Beach',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10876,21,820,'North East',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10877,21,812,'Nottingham',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10878,21,807,'Oakland',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10879,21,800,'Ocean City',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10880,21,811,'Odenton',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10881,21,816,'Oldtown',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10882,21,72,'Olney',1,159,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10883,21,815,'Owings',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10884,21,812,'Owings Mills',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10885,21,374,'Oxford',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10886,21,808,'Oxon Hill',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10887,21,805,'Park Hall',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10888,21,812,'Parkton',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10889,21,812,'Parkville',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10890,21,810,'Parsonsburg',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10891,21,811,'Pasadena',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10892,21,805,'Patuxent River',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10893,21,812,'Perry Hall',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10894,21,820,'Perry Point',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10895,21,806,'Perryman',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10896,21,820,'Perryville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10897,21,812,'Phoenix',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10898,21,812,'Pikesville',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10899,21,805,'Piney Point',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10900,21,816,'Pinto',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10901,21,810,'Pittsville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10902,21,800,'Pocomoke City',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10903,21,809,'Point Of Rocks',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10904,21,817,'Pomfret',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10905,21,72,'Poolesville',1,174,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(10906,21,820,'Port Deposit',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10907,21,815,'Port Republic',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10908,21,817,'Port Tobacco',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10909,21,72,'Potomac',1,176,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10910,21,810,'Powellville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10911,21,818,'Preston',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10912,21,814,'Price',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10913,21,815,'Prince Frederick',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10914,21,821,'Princess Anne',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10915,21,806,'Pylesville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10916,21,810,'Quantico',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10917,21,814,'Queen Anne',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10918,21,814,'Queenstown',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10919,21,812,'Randallstown',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10920,21,816,'Rawlings',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10921,21,821,'Rehobeth',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10922,21,812,'Reisterstown',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10923,21,819,'Rhodesdale',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10924,21,812,'Riderwood',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10925,21,805,'Ridge',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10926,21,818,'Ridgely',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10927,21,820,'Rising Sun',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10928,21,811,'Riva',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10929,21,808,'Riverdale',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10930,21,290,'Rock Hall',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10931,21,817,'Rock Point',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10932,21,72,'Rockville',1,184,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10933,21,809,'Rocky Ridge',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10934,21,71,'Rohrersville',1,296,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10935,21,812,'Rosedale',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10936,21,374,'Royal Oak',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10937,21,809,'Sabillasville',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10938,21,805,'Saint Inigoes',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10939,21,71,'Saint James',1,301,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10940,21,815,'Saint Leonard',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10941,21,805,'Saint Marys City',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10942,21,374,'Saint Michaels',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10943,21,810,'Salisbury',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10944,21,72,'Sandy Spring',1,189,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10945,21,141,'Savage',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10946,21,805,'Scotland',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10947,21,819,'Secretary',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10948,21,811,'Severn',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10949,21,811,'Severna Park',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10950,21,811,'Shady Side',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10951,21,71,'Sharpsburg',1,313,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10952,21,810,'Sharptown',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10953,21,374,'Sherwood',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10954,21,800,'Showell',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10955,21,72,'Silver Spring',1,193,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10956,21,141,'Simpsonville',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10957,21,71,'Smithsburg',1,319,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10958,21,800,'Snow Hill',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10959,21,815,'Solomons',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10960,21,808,'Southern Md Facility',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10961,21,812,'Sparks Glencoe',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10962,21,812,'Sparrows Point',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10963,21,72,'Spencerville',1,198,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10964,21,816,'Spring Gap',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10965,21,812,'Stevenson',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10966,21,814,'Stevensville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10967,21,290,'Still Pond',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10968,21,800,'Stockton',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10969,21,806,'Street',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10970,21,72,'Suburb Maryland Fac',1,208,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10971,21,814,'Sudlersville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10972,21,808,'Suitland',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10973,21,815,'Sunderland',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10974,21,807,'Swanton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10975,21,115,'Sykesville',1,107,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10976,21,72,'Takoma Park',1,211,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10977,21,805,'Tall Timbers',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10978,21,115,'Taneytown',1,109,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10979,21,819,'Taylors Island',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10980,21,808,'Temple Hills',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10981,21,818,'Templeville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10982,21,809,'Thurmont',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10983,21,374,'Tilghman',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10984,21,819,'Toddville',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10985,21,812,'Towson',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10986,21,811,'Tracys Landing',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10987,21,374,'Trappe',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10988,21,809,'Tuscarora',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10989,21,810,'Tyaskin',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10990,21,821,'Tylerton',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10991,21,115,'Union Bridge',1,116,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10992,21,809,'Unionville',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10993,21,821,'Upper Fairmount',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10994,21,812,'Upper Falls',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10995,21,808,'Upper Marlboro',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10996,21,812,'Upperco',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10997,21,805,'Valley Lee',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10998,21,819,'Vienna',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(10999,21,817,'Waldorf',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11000,21,809,'Walkersville',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11001,21,820,'Warwick',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11002,21,72,'Washington Grove',1,225,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11003,21,817,'Welcome',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11004,21,141,'West Friendship',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11005,21,811,'West River',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11006,21,816,'Westernport',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11007,21,115,'Westminster',1,120,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11008,21,821,'Westover',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11009,21,800,'Whaleyville',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11010,21,806,'White Hall',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11011,21,812,'White Marsh',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11012,21,817,'White Plains',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11013,21,806,'Whiteford',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11014,21,810,'Willards',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11015,21,71,'Williamsport',1,388,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11016,21,812,'Windsor Mill',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11017,21,819,'Wingate',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11018,21,374,'Wittman',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11019,21,141,'Woodbine',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11020,21,809,'Woodsboro',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11021,21,141,'Woodstock',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11022,21,819,'Woolford',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11023,21,290,'Worton',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11024,21,374,'Wye Mills',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11025,20,822,'Abbot',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11026,20,823,'Acton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11027,20,71,'Addison',1,105,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(11028,20,824,'Albion',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11029,20,823,'Alfred',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11030,20,147,'Alna',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11031,20,825,'Andover',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11032,20,821,'Anson',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11033,20,826,'Ashland',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11034,20,821,'Athens',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11035,20,827,'Auburn',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11036,20,824,'Augusta',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11037,20,446,'Aurora',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11038,20,584,'Bailey Island',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11039,20,71,'Baileyville',1,1373,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(11040,20,828,'Bangor',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11041,20,446,'Bar Harbor',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11042,20,823,'Bar Mills',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11043,20,446,'Bass Harbor',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11044,20,829,'Bath',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11045,20,71,'Beals',1,1726,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(11046,20,830,'Belfast',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11047,20,824,'Belgrade',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11048,20,824,'Belgrade Lakes',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11049,20,826,'Benedicta',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11050,20,446,'Bernard',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11051,20,823,'Berwick',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11052,20,825,'Bethel',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11053,20,823,'Biddeford',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11054,20,823,'Biddeford Pool',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11055,20,821,'Bingham',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11056,20,446,'Birch Harbor',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11057,20,826,'Blaine',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11058,20,446,'Blue Hill',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11059,20,147,'Boothbay',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11060,20,147,'Boothbay Harbor',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11061,20,829,'Bowdoin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11062,20,829,'Bowdoinham',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11063,20,828,'Bradford',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11064,20,828,'Bradley',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11065,20,147,'Bremen',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11066,20,828,'Brewer',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11067,20,826,'Bridgewater',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11068,20,584,'Bridgton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11069,20,147,'Bristol',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11070,20,446,'Brooklin',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11071,20,830,'Brooks',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11072,20,446,'Brooksville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11073,20,71,'Brookton',1,3264,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(11074,20,825,'Brownfield',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11075,20,822,'Brownville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11076,20,822,'Brownville Junction',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11077,20,584,'Brunswick',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11078,20,825,'Bryant Pond',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11079,20,825,'Buckfield',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11080,20,446,'Bucksport',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11081,20,828,'Burlington',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11082,20,830,'Burnham',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11083,20,584,'Bustins Island',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11084,20,823,'Buxton',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11085,20,71,'Calais',1,3745,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(11086,20,821,'Cambridge',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11087,20,538,'Camden',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11088,20,821,'Canaan',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11089,20,825,'Canton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11090,20,584,'Cape Elizabeth',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11091,20,823,'Cape Neddick',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11092,20,823,'Cape Porpoise',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11093,20,821,'Caratunk',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11094,20,826,'Caribou',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11095,20,828,'Carmel',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11096,20,584,'Casco',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11097,20,446,'Castine',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11098,20,825,'Center Lovell',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11099,20,147,'Chamberlain',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11100,20,828,'Charleston',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11101,20,584,'Chebeague Island',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11102,20,71,'Cherryfield',1,4785,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(11103,20,824,'China Village',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11104,20,826,'Clayton Lake',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11105,20,584,'Cliff Island',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11106,20,824,'Clinton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11107,20,71,'Columbia Falls',1,5602,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(11108,20,147,'Coopers Mills',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11109,20,446,'Corea',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11110,20,828,'Corinna',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11111,20,828,'Corinth',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11112,20,823,'Cornish',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11113,20,446,'Cranberry Isles',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11114,20,826,'Crouseville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11115,20,584,'Cumberland Center',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11116,20,584,'Cumberland Foreside',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11117,20,538,'Cushing',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11118,20,71,'Cutler',1,6397,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(11119,20,147,'Damariscotta',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11120,20,71,'Danforth',1,6524,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(11121,20,827,'Danville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11122,20,446,'Deer Isle',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11123,20,825,'Denmark',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11124,20,71,'Dennysville',1,6909,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(11125,20,821,'Detroit',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11126,20,828,'Dexter',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11127,20,825,'Dixfield',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11128,20,828,'Dixmont',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11129,20,822,'Dover Foxcroft',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11130,20,147,'Dresden',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11131,20,92,'Dryden',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11132,20,827,'Durham',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11133,20,826,'Eagle Lake',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11134,20,825,'East Andover',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11135,20,584,'East Baldwin',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11136,20,446,'East Blue Hill',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11137,20,147,'East Boothbay',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11138,20,92,'East Dixfield',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11139,20,827,'East Livermore',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11140,20,71,'East Machias',1,7705,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(11141,20,828,'East Millinocket',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11142,20,828,'East Newport',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11143,20,446,'East Orland',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11144,20,823,'East Parsonsfield',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11145,20,827,'East Poland',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11146,20,824,'East Vassalboro',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11147,20,823,'East Waterboro',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11148,20,92,'East Wilton',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11149,20,824,'East Winthrop',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11150,20,826,'Easton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11151,20,71,'Eastport',1,7820,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(11152,20,828,'Eddington',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11153,20,147,'Edgecomb',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11154,20,823,'Eliot',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11155,20,446,'Ellsworth',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11156,20,826,'Estcourt Station',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11157,20,828,'Etna',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11158,20,92,'Eustis',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11159,20,828,'Exeter',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11160,20,821,'Fairfield',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11161,20,584,'Falmouth',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11162,20,824,'Farmingdale',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11163,20,92,'Farmington',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11164,20,92,'Farmington Falls',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11165,20,826,'Fort Fairfield',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11166,20,826,'Fort Kent',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11167,20,826,'Fort Kent Mills',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11168,20,830,'Frankfort',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11169,20,446,'Franklin',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11170,20,830,'Freedom',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11171,20,584,'Freeport',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11172,20,446,'Frenchboro',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11173,20,826,'Frenchville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11174,20,538,'Friendship',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11175,20,825,'Fryeburg',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11176,20,824,'Gardiner',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11177,20,828,'Garland',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11178,20,829,'Georgetown',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11179,20,538,'Glen Cove',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11180,20,584,'Gorham',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11181,20,446,'Gouldsboro',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11182,20,826,'Grand Isle',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11183,20,71,'Grand Lake Stream',1,10668,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(11184,20,584,'Gray',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11185,20,828,'Greenbush',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11186,20,827,'Greene',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11187,20,822,'Greenville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11188,20,822,'Greenville Junction',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11189,20,825,'Greenwood',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11190,20,822,'Guilford',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11191,20,824,'Hallowell',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11192,20,828,'Hampden',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11193,20,446,'Hancock',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11194,20,825,'Hanover',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11195,20,446,'Harborside',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11196,20,821,'Harmony',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11197,20,584,'Harpswell',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11198,20,71,'Harrington',1,11518,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(11199,20,584,'Harrison',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11200,20,821,'Hartland',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11201,20,825,'Hebron',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11202,20,821,'Hinckley',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11203,20,825,'Hiram',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11204,20,828,'Holden',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11205,20,823,'Hollis Center',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11206,20,538,'Hope',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11207,20,826,'Houlton',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11208,20,828,'Howland',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11209,20,828,'Hudson',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11210,20,446,'Hulls Cove',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11211,20,826,'Island Falls',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11212,20,538,'Isle Au Haut',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11213,20,147,'Isle Of Springs',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11214,20,830,'Islesboro',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11215,20,446,'Islesford',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11216,20,821,'Jackman',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11217,20,92,'Jay',1,120,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11218,20,147,'Jefferson',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11219,20,71,'Jonesboro',1,190,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11220,20,71,'Jonesport',1,192,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11221,20,828,'Kenduskeag',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11222,20,823,'Kennebunk',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11223,20,823,'Kennebunkport',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11224,20,824,'Kents Hill',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11225,20,92,'Kingfield',1,123,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11226,20,828,'Kingman',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11227,20,823,'Kittery',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11228,20,823,'Kittery Point',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11229,20,828,'Lagrange',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11230,20,71,'Lambert Lake',1,202,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11231,20,823,'Lebanon',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11232,20,828,'Lee',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11233,20,827,'Leeds',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11234,20,828,'Levant',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11235,20,827,'Lewiston',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11236,20,830,'Liberty',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11237,20,823,'Limerick',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11238,20,826,'Limestone',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11239,20,823,'Limington',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11240,20,828,'Lincoln',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11241,20,830,'Lincolnville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11242,20,830,'Lincolnville Center',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11243,20,827,'Lisbon',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11244,20,827,'Lisbon Falls',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11245,20,824,'Litchfield',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11246,20,446,'Little Deer Isle',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11247,20,827,'Livermore',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11248,20,827,'Livermore Falls',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11249,20,584,'Long Island',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11250,20,825,'Lovell',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11251,20,71,'Lubec',1,216,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11252,20,71,'Machias',1,217,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11253,20,71,'Machiasport',1,218,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11254,20,826,'Madawaska',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11255,20,821,'Madison',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11256,20,824,'Manchester',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11257,20,826,'Mapleton',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11258,20,826,'Mars Hill',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11259,20,538,'Matinicus',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11260,20,828,'Mattawamkeag',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11261,20,827,'Mechanic Falls',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11262,20,71,'Meddybemps',1,233,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11263,20,828,'Medway',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11264,20,825,'Mexico',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11265,20,71,'Milbridge',1,240,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11266,20,828,'Milford',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11267,20,828,'Millinocket',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11268,20,822,'Milo',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11269,20,827,'Minot',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11270,20,147,'Monhegan',1,116,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11271,20,824,'Monmouth',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11272,20,830,'Monroe',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11273,20,822,'Monson',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11274,20,826,'Monticello',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11275,20,823,'Moody',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11276,20,830,'Morrill',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11277,20,446,'Mount Desert',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11278,20,824,'Mount Vernon',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11279,20,584,'Naples',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11280,20,584,'New Gloucester',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11281,20,147,'New Harbor',1,121,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11282,20,826,'New Limerick',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11283,20,821,'New Portland',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11284,20,92,'New Sharon',1,161,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11285,20,826,'New Sweden',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11286,20,92,'New Vineyard',1,163,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11287,20,147,'Newcastle',1,122,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11288,20,823,'Newfield',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11289,20,828,'Newport',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11290,20,825,'Newry',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11291,20,147,'Nobleboro',1,124,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11292,20,821,'Norridgewock',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11293,20,821,'North Anson',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11294,20,823,'North Berwick',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11295,20,584,'North Bridgton',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11296,20,538,'North Haven',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11297,20,92,'North Jay',1,165,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11298,20,824,'North Monmouth',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11299,20,827,'North Turner',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11300,20,824,'North Vassalboro',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11301,20,823,'North Waterboro',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11302,20,825,'North Waterford',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11303,20,584,'North Yarmouth',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11304,20,446,'Northeast Harbor',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11305,20,825,'Norway',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11306,20,826,'Oakfield',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11307,20,824,'Oakland',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11308,20,823,'Ocean Park',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11309,20,823,'Ogunquit',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11310,20,828,'Olamon',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11311,20,823,'Old Orchard Beach',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11312,20,828,'Old Town',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11313,20,92,'Oquossoc',1,168,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11314,20,826,'Orient',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11315,20,446,'Orland',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11316,20,828,'Orono',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11317,20,828,'Orrington',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11318,20,584,'Orrs Island',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11319,20,538,'Owls Head',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11320,20,826,'Oxbow',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11321,20,825,'Oxford',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11322,20,830,'Palermo',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11323,20,821,'Palmyra',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11324,20,825,'Paris',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11325,20,823,'Parsonsfield',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11326,20,828,'Passadumkeag',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11327,20,828,'Patten',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11328,20,584,'Peaks Island',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11329,20,147,'Pemaquid',1,134,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11330,20,71,'Pembroke',1,20753,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11331,20,446,'Penobscot',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11332,20,826,'Perham',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11333,20,71,'Perry',1,20859,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11334,20,825,'Peru',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11335,20,92,'Phillips',1,180,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11336,20,829,'Phippsburg',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11337,20,821,'Pittsfield',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11338,20,828,'Plymouth',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11339,20,827,'Poland',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11340,20,538,'Port Clyde',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11341,20,826,'Portage',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11342,20,825,'Porter',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11343,20,584,'Portland',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11344,20,584,'Pownal',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11345,20,826,'Presque Isle',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11346,20,71,'Princeton',1,282,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11347,20,446,'Prospect Harbor',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11348,20,824,'Randolph',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11349,20,92,'Rangeley',1,188,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11350,20,584,'Raymond',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11351,20,824,'Readfield',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11352,20,829,'Richmond',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11353,20,71,'Robbinston',1,293,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11354,20,538,'Rockland',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11355,20,538,'Rockport',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11356,20,821,'Rockwood',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11357,20,147,'Round Pond',1,144,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11358,20,825,'Roxbury',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11359,20,825,'Rumford',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11361,20,827,'Sabattus',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11362,20,823,'Saco',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11363,20,826,'Saint Agatha',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11364,20,821,'Saint Albans',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11365,20,826,'Saint David',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11366,20,826,'Saint Francis',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11367,20,446,'Salsbury Cove',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11368,20,830,'Sandy Point',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11369,20,823,'Sanford',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11370,20,822,'Sangerville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11371,20,446,'Sargentville',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11372,20,584,'Scarborough',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11373,20,446,'Seal Cove',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11374,20,446,'Seal Harbor',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11375,20,830,'Searsmont',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11376,20,830,'Searsport',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11377,20,584,'Sebago',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11378,20,584,'Sebago Lake',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11379,20,829,'Sebasco Estates',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11380,20,822,'Sebec',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11381,20,446,'Sedgwick',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11382,20,823,'Shapleigh',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11383,20,821,'Shawmut',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11384,20,826,'Sheridan',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11385,20,826,'Sherman',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11386,20,822,'Shirley Mills',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11387,20,826,'Sinclair',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11388,20,821,'Skowhegan',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11389,20,821,'Smithfield',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11390,20,826,'Smyrna Mills',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11391,20,821,'Solon',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11392,20,446,'Sorrento',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11393,20,823,'South Berwick',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11394,20,147,'South Bristol',1,159,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11395,20,584,'South Casco',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11396,20,824,'South China',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11397,20,584,'South Freeport',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11398,20,824,'South Gardiner',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11399,20,825,'South Paris',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11400,20,584,'South Portland',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11401,20,538,'South Thomaston',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11402,20,584,'South Windham',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11403,20,147,'Southport',1,160,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11404,20,446,'Southwest Harbor',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11405,20,828,'Springfield',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11406,20,823,'Springvale',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11407,20,538,'Spruce Head',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11408,20,147,'Squirrel Island',1,164,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11409,20,828,'Stacyville',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11410,20,584,'Standish',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11411,20,584,'Steep Falls',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11412,20,828,'Stetson',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11413,20,71,'Steuben',1,325,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11414,20,828,'Stillwater',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11415,20,826,'Stockholm',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11416,20,830,'Stockton Springs',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11417,20,825,'Stoneham',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11418,20,446,'Stonington',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11419,20,92,'Stratton',1,229,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11420,20,92,'Strong',1,230,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11421,20,446,'Sullivan',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11422,20,825,'Sumner',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11423,20,446,'Sunset',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11424,20,446,'Surry',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11425,20,446,'Swans Island',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11426,20,92,'Temple',1,235,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11427,20,538,'Tenants Harbor',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11428,20,538,'Thomaston',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11429,20,830,'Thorndike',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11430,20,71,'Topsfield',1,339,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11431,20,829,'Topsham',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11432,20,147,'Trevett',1,180,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11433,20,830,'Troy',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11434,20,827,'Turner',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11435,20,538,'Union',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11436,20,830,'Unity',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11437,20,826,'Van Buren',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11438,20,71,'Vanceboro',1,343,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11439,20,824,'Vassalboro',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11440,20,824,'Vienna',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11441,20,538,'Vinalhaven',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11442,20,71,'Waite',1,354,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11443,20,147,'Waldoboro',1,187,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11444,20,826,'Wallagrass',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11445,20,147,'Walpole',1,190,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11446,20,538,'Warren',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11447,20,826,'Washburn',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11448,20,538,'Washington',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11449,20,823,'Waterboro',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11450,20,825,'Waterford',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11451,20,824,'Waterville',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11452,20,824,'Wayne',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11453,20,92,'Weld',1,251,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11454,20,823,'Wells',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11455,20,71,'Wesley',1,374,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11456,20,584,'West Baldwin',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11457,20,825,'West Bethel',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11458,20,147,'West Boothbay Harbor',1,194,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11459,20,828,'West Enfield',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11460,20,92,'West Farmington',1,255,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11461,20,821,'West Forks',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11462,20,823,'West Kennebunk',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11463,20,827,'West Minot',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11464,20,823,'West Newfield',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11465,20,825,'West Paris',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11466,20,827,'West Poland',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11467,20,538,'West Rockport',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11468,20,584,'Westbrook',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11469,20,826,'Westfield',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11470,20,147,'Whitefield',1,196,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11471,20,71,'Whiting',1,386,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11472,20,92,'Wilton',1,265,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11473,20,584,'Windham',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11474,20,824,'Windsor',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11475,20,828,'Winn',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11476,20,446,'Winter Harbor',1,103,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11477,20,830,'Winterport',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11478,20,824,'Winthrop',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11479,20,147,'Wiscasset',1,200,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11480,20,829,'Woolwich',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11481,20,826,'Wytopitlock',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11482,20,584,'Yarmouth',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11483,20,823,'York',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11484,20,823,'York Beach',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11485,20,823,'York Harbor',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11486,23,831,'Acme',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11487,23,290,'Ada',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11488,23,832,'Addison',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11489,23,832,'Adrian',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11490,23,833,'Afton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11491,23,834,'Ahmeek',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11492,23,835,'Akron',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11493,23,469,'Alanson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11494,23,836,'Alba',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11495,23,37,'Albion',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11496,23,836,'Alden',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11497,23,837,'Alger',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11498,23,49,'Algonac',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11499,23,838,'Allegan',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11500,23,839,'Allen',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11501,23,431,'Allen Park',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11502,23,648,'Allendale',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11503,23,49,'Allenton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11504,23,834,'Allouez',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11505,23,840,'Alma',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11506,23,841,'Almont',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11507,23,842,'Alpena',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11508,23,843,'Alpha',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11509,23,290,'Alto',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11510,23,843,'Amasa',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11511,23,49,'Anchorville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11512,23,844,'Ann Arbor',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11513,23,845,'Applegate',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11514,23,846,'Arcadia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11515,23,845,'Argyle',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11516,23,847,'Armada',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11517,23,848,'Arnold',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11518,23,840,'Ashley',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11519,23,37,'Athens',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11520,23,849,'Atlanta',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11521,23,850,'Atlantic Mine',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11522,23,851,'Atlas',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11523,23,841,'Attica',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11524,23,837,'Au Gres',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11525,23,852,'Au Train',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11526,23,329,'Auburn',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11527,23,853,'Auburn Hills',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11528,23,854,'Augusta',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11529,23,49,'Avoca',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11530,23,59,'Azalia',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11531,23,855,'Bad Axe',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11532,23,856,'Bailey',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11533,23,216,'Baldwin',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11534,23,857,'Bancroft',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11535,23,116,'Bangor',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11536,23,840,'Bannister',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11537,23,858,'Baraga',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11538,23,859,'Barbeau',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11539,23,237,'Bark River',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11540,23,345,'Baroda',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11541,23,860,'Barryton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11542,23,861,'Barton City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11543,23,465,'Bath',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11544,23,37,'Battle Creek',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11545,23,329,'Bay City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11546,23,855,'Bay Port',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11547,23,862,'Bay Shore',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11548,23,846,'Bear Lake',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11549,23,862,'Beaver Island',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11550,23,863,'Beaverton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11551,23,37,'Bedford',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11552,23,864,'Belding',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11553,23,836,'Bellaire',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11554,23,431,'Belleville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11555,23,865,'Bellevue',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11556,23,290,'Belmont',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11557,23,329,'Bentley',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11558,23,345,'Benton Harbor',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11559,23,866,'Benzonia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11560,23,867,'Bergland',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11561,23,853,'Berkley',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11562,23,345,'Berrien Center',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11563,23,345,'Berrien Springs',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11564,23,868,'Bessemer',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11565,23,866,'Beulah',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11566,23,848,'Big Bay',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11567,23,860,'Big Rapids',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11568,23,869,'Birch Run',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11569,23,853,'Birmingham',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11570,23,870,'Bitely',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11571,23,861,'Black River',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11572,23,871,'Blanchard',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11573,23,832,'Blissfield',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11574,23,853,'Bloomfield Hills',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11575,23,116,'Bloomingdale',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11576,23,872,'Boon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11577,23,862,'Boyne City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11578,23,862,'Boyne Falls',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11579,23,838,'Bradley',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11580,23,561,'Branch',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11581,23,869,'Brant',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11582,23,840,'Breckenridge',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11583,23,116,'Breedsville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11584,23,846,'Brethren',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11585,23,869,'Bridgeport',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11586,23,844,'Bridgewater',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11587,23,345,'Bridgman',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11588,23,548,'Brighton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11589,23,859,'Brimley',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11590,23,832,'Britton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11591,23,870,'Brohman',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11592,23,873,'Bronson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11593,23,66,'Brooklyn',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11594,23,845,'Brown City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11595,23,867,'Bruce Crossing',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11596,23,469,'Brutus',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11597,23,345,'Buchanan',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11598,23,872,'Buckley',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11599,23,37,'Burlington',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11600,23,838,'Burnips',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11601,23,874,'Burr Oak',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11602,23,869,'Burt',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11603,23,833,'Burt Lake',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11604,23,851,'Burton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11605,23,857,'Byron',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11606,23,290,'Byron Center',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11607,23,872,'Cadillac',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11608,23,290,'Caledonia',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11609,23,850,'Calumet',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11610,23,839,'Camden',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11611,23,290,'Cannonsburg',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11612,23,431,'Canton',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11613,23,49,'Capac',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11614,23,59,'Carleton',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11615,23,875,'Carney',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11616,23,835,'Caro',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11617,23,469,'Carp Lake',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11618,23,869,'Carrollton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11619,23,876,'Carson City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11620,23,845,'Carsonville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11621,23,49,'Casco',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11622,23,855,'Caseville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11623,23,856,'Casnovia',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11624,23,843,'Caspian',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11625,23,835,'Cass City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11626,23,466,'Cassopolis',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11627,23,877,'Cedar',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11628,23,876,'Cedar Lake',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11629,23,290,'Cedar Springs',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11630,23,878,'Cedarville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11631,23,832,'Cement City',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11632,23,847,'Center Line',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11633,23,836,'Central Lake',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11634,23,874,'Centreville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11635,23,37,'Ceresco',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11636,23,848,'Champion',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11637,23,470,'Channing',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11638,23,862,'Charlevoix',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11639,23,865,'Charlotte',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11640,23,216,'Chase',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11641,23,850,'Chassell',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11642,23,852,'Chatham',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11643,23,833,'Cheboygan',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11644,23,844,'Chelsea',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11645,23,869,'Chesaning',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11646,23,860,'Chippewa Lake',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11647,23,879,'Clare',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11648,23,66,'Clarklake',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11649,23,853,'Clarkston',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11650,23,864,'Clarksville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11651,23,853,'Clawson',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11652,23,832,'Clayton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11653,23,841,'Clifford',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11654,23,854,'Climax',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11655,23,832,'Clinton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11656,23,847,'Clinton Township',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11657,23,851,'Clio',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11658,23,880,'Cloverdale',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11659,23,548,'Cohoctah',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11660,23,873,'Coldwater',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11661,23,881,'Coleman',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11662,23,345,'Coloma',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11663,23,874,'Colon',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11664,23,841,'Columbiaville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11665,23,49,'Columbus',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11666,23,882,'Comins',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11667,23,853,'Commerce Township',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11668,23,854,'Comstock',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11669,23,290,'Comstock Park',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11670,23,66,'Concord',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11671,23,648,'Conklin',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11672,23,874,'Constantine',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11673,23,469,'Conway',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11674,23,883,'Cooks',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11675,23,648,'Coopersville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11676,23,846,'Copemish',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11677,23,850,'Copper City',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11678,23,834,'Copper Harbor',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11679,23,876,'Coral',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11680,23,237,'Cornell',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11681,23,857,'Corunna',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11682,23,116,'Covert',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11683,23,858,'Covington',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11684,23,469,'Cross Village',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11685,23,845,'Croswell',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11686,23,876,'Crystal',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11687,23,843,'Crystal Falls',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11688,23,861,'Curran',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11689,23,878,'Curtis',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11690,23,561,'Custer',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11691,23,859,'Dafter',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11692,23,875,'Daggett',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11693,23,884,'Dansville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11694,23,853,'Davisburg',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11695,23,851,'Davison',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11696,23,859,'De Tour Village',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11697,23,431,'Dearborn',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11698,23,431,'Dearborn Heights',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11699,23,116,'Decatur',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11700,23,845,'Decker',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11701,23,845,'Deckerville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11702,23,832,'Deerfield',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11703,23,852,'Deerton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11704,23,835,'Deford',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11705,23,880,'Delton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11706,23,431,'Detroit',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11707,23,465,'Dewitt',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11708,23,844,'Dexter',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11709,23,865,'Dimondale',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11710,23,850,'Dodgeville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11711,23,850,'Dollar Bay',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11712,23,838,'Dorr',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11713,23,838,'Douglas',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11714,23,466,'Dowagiac',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11715,23,880,'Dowling',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11716,23,853,'Drayton Plains',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11717,23,859,'Drummond Island',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11718,23,841,'Dryden',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11719,23,59,'Dundee',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11720,23,857,'Durand',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11721,23,465,'Eagle',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11722,23,49,'East China',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11723,23,862,'East Jordan',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11724,23,884,'East Lansing',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11725,23,37,'East Leroy',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11726,23,885,'East Tawas',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11727,23,846,'Eastlake',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11728,23,847,'Eastpointe',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11729,23,836,'Eastport',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11730,23,865,'Eaton Rapids',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11731,23,345,'Eau Claire',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11732,23,852,'Eben Junction',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11733,23,859,'Eckerman',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11734,23,431,'Ecorse',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11735,23,881,'Edenville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11736,23,876,'Edmore',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11737,23,466,'Edwardsburg',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11738,23,866,'Elberta',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11739,23,836,'Elk Rapids',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11740,23,855,'Elkton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11741,23,836,'Ellsworth',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11742,23,840,'Elm Hall',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11743,23,886,'Elmira',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11744,23,465,'Elsie',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11745,23,840,'Elwell',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11746,23,49,'Emmett',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11747,23,877,'Empire',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11748,23,878,'Engadine',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11749,23,59,'Erie',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11750,23,237,'Escanaba',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11751,23,329,'Essexville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11752,23,465,'Eureka',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11753,23,333,'Evart',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11754,23,867,'Ewen',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11755,23,49,'Fair Haven',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11756,23,835,'Fairgrove',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11757,23,882,'Fairview',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11758,23,887,'Falmouth',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11759,23,853,'Farmington',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11760,23,879,'Farwell',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11761,23,470,'Felch',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11762,23,838,'Fennville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11763,23,851,'Fenton',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11764,23,876,'Fenwick',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11765,23,853,'Ferndale',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11766,23,648,'Ferrysburg',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11767,23,888,'Fife Lake',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11768,23,846,'Filer City',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11769,23,855,'Filion',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11770,23,431,'Flat Rock',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11771,23,851,'Flint',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11772,23,851,'Flushing',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11773,23,845,'Forestville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11774,23,49,'Fort Gratiot',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11775,23,470,'Foster City',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11776,23,835,'Fostoria',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11777,23,561,'Fountain',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11778,23,465,'Fowler',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11779,23,548,'Fowlerville',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11780,23,869,'Frankenmuth',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11781,23,866,'Frankfort',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11782,23,853,'Franklin',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11783,23,847,'Fraser',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11784,23,97,'Frederic',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11785,23,561,'Free Soil',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11786,23,869,'Freeland',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11787,23,880,'Freeport',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11788,23,870,'Fremont',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11789,23,839,'Frontier',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11790,23,856,'Fruitport',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11791,23,854,'Fulton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11792,23,843,'Gaastra',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11793,23,835,'Gagetown',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11794,23,851,'Gaines',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11795,23,854,'Galesburg',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11796,23,345,'Galien',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11797,23,237,'Garden',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11798,23,431,'Garden City',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11799,23,886,'Gaylord',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11800,23,851,'Genesee',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11801,23,883,'Germfask',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11802,23,835,'Gilford',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11803,23,237,'Gladstone',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11804,23,863,'Gladwin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11805,23,877,'Glen Arbor',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11806,23,838,'Glenn',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11807,23,861,'Glennie',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11808,23,116,'Gobles',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11809,23,859,'Goetzville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11810,23,469,'Good Hart',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11811,23,49,'Goodells',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11812,23,851,'Goodrich',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11813,23,878,'Gould City',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11814,23,290,'Gowen',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11815,23,851,'Grand Blanc',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11816,23,648,'Grand Haven',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11817,23,116,'Grand Junction',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11818,23,865,'Grand Ledge',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11819,23,852,'Grand Marais',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11820,23,290,'Grand Rapids',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11821,23,290,'Grandville',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11822,23,870,'Grant',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11823,23,66,'Grass Lake',1,10771,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(11824,23,831,'Grawn',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11825,23,97,'Grayling',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11826,23,861,'Greenbush',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11827,23,867,'Greenland',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11828,23,876,'Greenville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11829,23,548,'Gregory',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11830,23,431,'Grosse Ile',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11831,23,431,'Grosse Pointe',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11832,23,883,'Gulliver',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11833,23,848,'Gwinn',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11834,23,841,'Hadley',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11835,23,345,'Hagar Shores',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11836,23,885,'Hale',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11837,23,548,'Hamburg',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11838,23,838,'Hamilton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11839,23,431,'Hamtramck',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11840,23,850,'Hancock',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11841,23,66,'Hanover',1,11406,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(11842,23,345,'Harbert',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11843,23,855,'Harbor Beach',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11844,23,469,'Harbor Springs',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11845,23,431,'Harper Woods',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11846,23,872,'Harrietta',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11847,23,875,'Harris',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11848,23,879,'Harrison',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11849,23,847,'Harrison Township',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11850,23,861,'Harrisville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11851,23,49,'Harsens Island',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11852,23,889,'Hart',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11853,23,116,'Hartford',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11854,23,548,'Hartland',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11855,23,884,'Haslett',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11856,23,880,'Hastings',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11857,23,890,'Hawks',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11858,23,853,'Hazel Park',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11859,23,869,'Hemlock',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11860,23,857,'Henderson',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11861,23,875,'Hermansville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11862,23,842,'Herron',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11863,23,333,'Hersey',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11864,23,889,'Hesperia',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11865,23,878,'Hessel',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11866,23,880,'Hickory Corners',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11867,23,891,'Higgins Lake',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11868,23,853,'Highland',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11869,23,431,'Highland Park',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11870,23,849,'Hillman',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11871,23,839,'Hillsdale',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11872,23,648,'Holland',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11873,23,853,'Holly',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11874,23,884,'Holt',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11875,23,856,'Holton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11876,23,37,'Homer',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11877,23,866,'Honor',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11878,23,881,'Hope',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11879,23,838,'Hopkins',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11880,23,66,'Horton',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11881,23,850,'Houghton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11882,23,891,'Houghton Lake',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11883,23,891,'Houghton Lake Heights',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11884,23,876,'Howard City',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11885,23,548,'Howell',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11886,23,842,'Hubbard Lake',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11887,23,864,'Hubbardston',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11888,23,850,'Hubbell',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11889,23,832,'Hudson',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11890,23,648,'Hudsonville',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11891,23,859,'Hulbert',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11892,23,853,'Huntington Woods',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11893,23,59,'Ida',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11894,23,216,'Idlewild',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11895,23,841,'Imlay City',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11896,23,833,'Indian River',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11897,23,875,'Ingalls',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11898,23,431,'Inkster',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11899,23,831,'Interlochen',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11900,23,864,'Ionia',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11901,23,470,'Iron Mountain',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11902,23,843,'Iron River',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11903,23,216,'Irons',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11904,23,868,'Ironwood',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11905,23,848,'Ishpeming',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11906,23,840,'Ithaca',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11907,23,66,'Jackson',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11908,23,648,'Jamestown',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11909,23,832,'Jasper',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11910,23,49,'Jeddo',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11911,23,648,'Jenison',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11912,23,839,'Jerome',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11913,23,886,'Johannesburg',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11914,23,466,'Jones',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11915,23,839,'Jonesville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11916,23,854,'Kalamazoo',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11917,23,846,'Kaleva',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11918,23,888,'Kalkaska',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11919,23,329,'Kawkawlin',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11920,23,850,'Kearsarge',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11921,23,853,'Keego Harbor',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11922,23,116,'Kendall',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11923,23,290,'Kent City',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11924,23,836,'Kewadin',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11925,23,859,'Kincheloe',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11926,23,855,'Kinde',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11927,23,470,'Kingsford',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11928,23,831,'Kingsley',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11929,23,835,'Kingston',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11930,23,859,'Kinross',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11931,23,59,'La Salle',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11932,23,842,'Lachine',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11933,23,116,'Lacota',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11934,23,857,'Laingsburg',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11935,23,879,'Lake',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11936,23,866,'Lake Ann',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11937,23,887,'Lake City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11938,23,879,'Lake George',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11939,23,877,'Lake Leelanau',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11940,23,850,'Lake Linden',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11941,23,864,'Lake Odessa',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11942,23,853,'Lake Orion',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11943,23,548,'Lakeland',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11944,23,345,'Lakeside',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11945,23,876,'Lakeview',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11946,23,853,'Lakeville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11947,23,59,'Lambertville',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11948,23,648,'Lamont',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11949,23,858,'Lanse',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11950,23,865,'Lansing',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11951,23,884,'Lansing',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11952,23,841,'Lapeer',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11953,23,116,'Lawrence',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11954,23,116,'Lawton',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11955,23,877,'Leland',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11956,23,851,'Lennon',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11957,23,853,'Leonard',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11958,23,874,'Leonidas',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11959,23,333,'Leroy',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11960,23,884,'Leslie',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11961,23,469,'Levering',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11962,23,849,'Lewiston',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11963,23,845,'Lexington',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11964,23,861,'Lincoln',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11965,23,431,'Lincoln Park',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11966,23,851,'Linden',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11967,23,329,'Linwood',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11968,23,839,'Litchfield',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11969,23,848,'Little Lake',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11970,23,431,'Livonia',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11971,23,885,'Long Lake',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11972,23,470,'Loretto',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11973,23,290,'Lowell',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11974,23,561,'Ludington',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11975,23,59,'Luna Pier',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11976,23,892,'Lupton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11977,23,216,'Luther',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11978,23,882,'Luzerne',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11979,23,864,'Lyons',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11980,23,648,'Macatawa',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11981,23,878,'Mackinac Island',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11982,23,833,'Mackinaw City',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11983,23,847,'Macomb',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11984,23,853,'Madison Heights',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11985,23,836,'Mancelona',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11986,23,844,'Manchester',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11987,23,846,'Manistee',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11988,23,883,'Manistique',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11989,23,832,'Manitou Beach',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11990,23,872,'Manton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11991,23,877,'Maple City',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11992,23,465,'Maple Rapids',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11993,23,466,'Marcellus',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11994,23,868,'Marenisco',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11995,23,49,'Marine City',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11996,23,333,'Marion',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11997,23,845,'Marlette',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11998,23,648,'Marne',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(11999,23,848,'Marquette',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12000,23,37,'Marshall',1,16418,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12001,23,838,'Martin',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12002,23,49,'Marysville',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12003,23,884,'Mason',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12004,23,867,'Mass City',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12005,23,116,'Mattawan',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12006,23,59,'Maybee',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12007,23,831,'Mayfield',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12008,23,835,'Mayville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12009,23,887,'Mc Bain',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12010,23,893,'Mc Millan',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12011,23,876,'Mcbrides',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12012,23,889,'Mears',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12013,23,860,'Mecosta',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12014,23,845,'Melvin',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12015,23,431,'Melvindale',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12016,23,49,'Memphis',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12017,23,874,'Mendon',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12018,23,875,'Menominee',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12019,23,869,'Merrill',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12020,23,887,'Merritt',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12021,23,872,'Mesick',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12022,23,841,'Metamora',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12023,23,848,'Michigamme',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12024,23,66,'Michigan Center',1,17186,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(12025,23,840,'Middleton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12026,23,880,'Middleville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12027,23,881,'Midland',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12028,23,861,'Mikado',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12029,23,59,'Milan',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12030,23,853,'Milford',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12031,23,890,'Millersburg',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12032,23,835,'Millington',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12033,23,845,'Minden City',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12034,23,882,'Mio',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12035,23,834,'Mohawk',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12036,23,838,'Moline',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12037,23,59,'Monroe',1,103,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12038,23,856,'Montague',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12039,23,873,'Montgomery',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12040,23,851,'Montrose',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12041,23,878,'Moran',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12042,23,832,'Morenci',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12043,23,860,'Morley',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12044,23,857,'Morrice',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12045,23,839,'Moscow',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12046,23,839,'Mosherville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12047,23,847,'Mount Clemens',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12048,23,851,'Mount Morris',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12049,23,871,'Mount Pleasant',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12050,23,864,'Muir',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12051,23,833,'Mullett Lake',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12052,23,865,'Mulliken',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12053,23,329,'Munger',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12054,23,852,'Munising',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12055,23,66,'Munith',1,18355,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(12056,23,856,'Muskegon',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12057,23,875,'Nadeau',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12058,23,237,'Nahma',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12059,23,66,'Napoleon',1,18465,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(12060,23,880,'Nashville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12061,23,885,'National City',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12062,23,848,'National Mine',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12063,23,878,'Naubinway',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12064,23,854,'Nazareth',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12065,23,848,'Negaunee',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12066,23,847,'New Baltimore',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12067,23,431,'New Boston',1,103,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12068,23,345,'New Buffalo',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12069,23,889,'New Era',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12070,23,847,'New Haven',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12071,23,853,'New Hudson',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12072,23,857,'New Lothrop',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12073,23,345,'New Troy',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12074,23,870,'Newaygo',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12075,23,893,'Newberry',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12076,23,59,'Newport',1,111,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12077,23,345,'Niles',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12078,23,850,'Nisula',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12079,23,839,'North Adams',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12080,23,841,'North Branch',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12081,23,840,'North Star',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12082,23,49,'North Street',1,19399,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12083,23,877,'Northport',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12084,23,431,'Northville',1,107,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12085,23,66,'Norvell',1,19470,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(12086,23,470,'Norway',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12087,23,874,'Nottawa',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12088,23,853,'Novi',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12089,23,648,'Nunica',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12090,23,853,'Oak Park',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12091,23,853,'Oakland',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12092,23,869,'Oakley',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12093,23,469,'Oden',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12094,23,884,'Okemos',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12095,23,831,'Old Mission',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12096,23,865,'Olivet',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12097,23,877,'Omena',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12098,23,837,'Omer',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12099,23,890,'Onaway',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12100,23,846,'Onekama',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12101,23,884,'Onondaga',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12102,23,832,'Onsted',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12103,23,867,'Ontonagon',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12104,23,864,'Orleans',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12105,23,853,'Ortonville',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12106,23,885,'Oscoda',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12107,23,854,'Oshtemo',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12108,23,839,'Osseo',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12109,23,842,'Ossineke',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12110,23,851,'Otisville',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12111,23,838,'Otsego',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12112,23,59,'Ottawa Lake',1,116,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(12113,23,841,'Otter Lake',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12114,23,465,'Ovid',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12115,23,855,'Owendale',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12116,23,857,'Owosso',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12117,23,853,'Oxford',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12118,23,850,'Painesdale',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12119,23,848,'Palmer',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12120,23,845,'Palms',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12121,23,832,'Palmyra',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12122,23,864,'Palo',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12123,23,859,'Paradise',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12124,23,860,'Paris',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12125,23,66,'Parma',1,156,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(12126,23,116,'Paw Paw',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12127,23,548,'Pearces',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12128,23,845,'Peck',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12129,23,850,'Pelkie',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12130,23,469,'Pellston',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12131,23,889,'Pentwater',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12132,23,237,'Perkins',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12133,23,840,'Perrinton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12134,23,875,'Perronville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12135,23,857,'Perry',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12136,23,59,'Petersburg',1,121,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(12137,23,469,'Petoskey',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12138,23,864,'Pewamo',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12139,23,859,'Pickford',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12140,23,876,'Pierson',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12141,23,855,'Pigeon',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12142,23,548,'Pinckney',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12143,23,329,'Pinconning',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12144,23,839,'Pittsford',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12145,23,838,'Plainwell',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12146,23,66,'Pleasant Lake',1,161,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(12147,23,853,'Pleasant Ridge',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12148,23,431,'Plymouth',1,119,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12149,23,878,'Pointe Aux Pins',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12150,23,840,'Pompeii',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12151,23,853,'Pontiac',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12152,23,855,'Port Austin',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12153,23,855,'Port Hope',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12154,23,49,'Port Huron',1,46,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(12155,23,845,'Port Sanilac',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12156,23,854,'Portage',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12157,23,864,'Portland',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12158,23,890,'Posen',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12159,23,865,'Potterville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12160,23,875,'Powers',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12161,23,892,'Prescott',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12162,23,890,'Presque Isle',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12163,23,891,'Prudenville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12164,23,838,'Pullman',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12165,23,873,'Quincy',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12166,23,470,'Quinnesec',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12167,23,470,'Ralph',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12168,23,868,'Ramsay',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12169,23,888,'Rapid City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12170,23,237,'Rapid River',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12171,23,856,'Ravenna',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12172,23,847,'Ray',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12173,23,839,'Reading',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12174,23,431,'Redford',1,127,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12175,23,333,'Reed City',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12176,23,835,'Reese',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12177,23,860,'Remus',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12178,23,848,'Republic',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12179,23,863,'Rhodes',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12180,23,854,'Richland',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12181,23,847,'Richmond',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12182,23,835,'Richville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12183,23,832,'Riga',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12184,23,431,'River Rouge',1,131,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12185,23,840,'Riverdale',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12186,23,345,'Riverside',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12187,23,431,'Riverview',1,132,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12188,23,66,'Rives Junction',1,170,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12189,23,853,'Rochester',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12190,23,237,'Rock',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12191,23,290,'Rockford',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12192,23,867,'Rockland',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12193,23,431,'Rockwood',1,133,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12194,23,860,'Rodney',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12195,23,890,'Rogers City',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12196,23,847,'Romeo',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12197,23,431,'Romulus',1,134,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12198,23,891,'Roscommon',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12199,23,892,'Rose City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12200,23,871,'Rosebush',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12201,23,847,'Roseville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12202,23,889,'Rothbury',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12203,23,853,'Royal Oak',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12204,23,859,'Rudyard',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12205,23,852,'Rumely',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12206,23,855,'Ruth',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12207,23,869,'Saginaw',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12208,23,470,'Sagola',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12209,23,869,'Saint Charles',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12210,23,49,'Saint Clair',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12211,23,847,'Saint Clair Shores',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12212,23,891,'Saint Helen',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12213,23,878,'Saint Ignace',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12214,23,465,'Saint Johns',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12215,23,345,'Saint Joseph',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12216,23,840,'Saint Louis',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12217,23,844,'Salem',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12218,23,844,'Saline',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12219,23,59,'Samaria',1,135,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12220,23,832,'Sand Creek',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12221,23,290,'Sand Lake',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12222,23,845,'Sandusky',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12223,23,881,'Sanford',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12224,23,864,'Saranac',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12225,23,838,'Saugatuck',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12226,23,859,'Sault Sainte Marie',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12227,23,345,'Sawyer',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12228,23,854,'Schoolcraft',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12229,23,854,'Scotts',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12230,23,561,'Scottville',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12231,23,333,'Sears',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12232,23,855,'Sebewaing',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12233,23,883,'Seney',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12234,23,857,'Shaftsburg',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12235,23,889,'Shelby',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12236,23,838,'Shelbyville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12237,23,871,'Shepherd',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12238,23,876,'Sheridan',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12239,23,873,'Sherwood',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12240,23,852,'Shingleton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12241,23,850,'Sidnaw',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12242,23,876,'Sidney',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12243,23,841,'Silverwood',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12244,23,876,'Six Lakes',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12245,23,848,'Skandia',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12246,23,858,'Skanee',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12247,23,49,'Smiths Creek',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12248,23,864,'Smyrna',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12249,23,845,'Snover',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12250,23,345,'Sodus',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12251,23,839,'Somerset',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12252,23,839,'Somerset Center',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12253,23,888,'South Boardman',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12254,23,892,'South Branch',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12255,23,116,'South Haven',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12256,23,853,'South Lyon',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12257,23,850,'South Range',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12258,23,59,'South Rockwood',1,149,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12259,23,853,'Southfield',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12260,23,431,'Southgate',1,151,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12261,23,875,'Spalding',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12262,23,290,'Sparta',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12263,23,66,'Spring Arbor',1,184,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12264,23,648,'Spring Lake',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12265,23,66,'Springport',1,186,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12266,23,861,'Spruce',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12267,23,843,'Stambaugh',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12268,23,837,'Standish',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12269,23,876,'Stanton',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12270,23,860,'Stanwood',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12271,23,875,'Stephenson',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12272,23,837,'Sterling',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12273,23,847,'Sterling Heights',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12274,23,345,'Stevensville',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12275,23,884,'Stockbridge',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12276,23,859,'Strongs',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12277,23,874,'Sturgis',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12278,23,840,'Sumner',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12279,23,865,'Sunfield',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12280,23,877,'Suttons Bay',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12281,23,851,'Swartz Creek',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12282,23,856,'Sylvan Beach',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12283,23,885,'Tawas City',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12284,23,431,'Taylor',1,156,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12285,23,832,'Tecumseh',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12286,23,37,'Tekonsha',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12287,23,59,'Temperance',1,164,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12288,23,866,'Thompsonville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12289,23,345,'Three Oaks',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12290,23,874,'Three Rivers',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12291,23,832,'Tipton',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12292,23,850,'Toivola',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12293,23,833,'Topinabee',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12294,23,833,'Tower',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12295,23,831,'Traverse City',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12296,23,852,'Trenary',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12297,23,431,'Trenton',1,159,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12298,23,867,'Trout Creek',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12299,23,859,'Trout Lake',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12300,23,853,'Troy',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12301,23,876,'Trufant',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12302,23,837,'Turner',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12303,23,835,'Tuscola',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12304,23,333,'Tustin',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12305,23,856,'Twin Lake',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12306,23,837,'Twining',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12307,23,855,'Ubly',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12308,23,466,'Union',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12309,23,873,'Union City',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12310,23,853,'Union Lake',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12311,23,345,'Union Pier',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12312,23,835,'Unionville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12313,23,329,'University Center',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12314,23,847,'Utica',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12315,23,466,'Vandalia',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12316,23,886,'Vanderbilt',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12317,23,835,'Vassar',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12318,23,865,'Vermontville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12319,23,857,'Vernon',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12320,23,876,'Vestaburg',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12321,23,854,'Vicksburg',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12322,23,470,'Vulcan',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12323,23,868,'Wakefield',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12324,23,839,'Waldron',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12325,23,561,'Walhalla',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12326,23,889,'Walkerville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12327,23,875,'Wallace',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12328,23,853,'Walled Lake',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12329,23,862,'Walloon Lake',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12330,23,847,'Warren',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12331,23,847,'Washington',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12332,23,853,'Waterford',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12333,23,886,'Waters',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12334,23,868,'Watersmeet',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12335,23,345,'Watervliet',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12336,23,858,'Watton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12337,23,838,'Wayland',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12338,23,431,'Wayne',1,165,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12339,23,884,'Webberville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12340,23,871,'Weidman',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12341,23,237,'Wells',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12342,23,846,'Wellston',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12343,23,853,'West Bloomfield',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12344,23,892,'West Branch',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12345,23,648,'West Olive',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12346,23,431,'Westland',1,173,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12347,23,832,'Weston',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12348,23,465,'Westphalia',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12349,23,852,'Wetmore',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12350,23,840,'Wheeler',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12351,23,870,'White Cloud',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12352,23,853,'White Lake',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12353,23,874,'White Pigeon',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12354,23,867,'White Pine',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12355,23,856,'Whitehall',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12356,23,844,'Whitmore Lake',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12357,23,844,'Whittaker',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12358,23,885,'Whittemore',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12359,23,831,'Williamsburg',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12360,23,884,'Williamston',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12361,23,844,'Willis',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12362,23,875,'Wilson',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12363,23,871,'Winn',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12364,23,853,'Wixom',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12365,23,833,'Wolverine',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12366,23,880,'Woodland',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12367,23,431,'Wyandotte',1,182,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12368,23,290,'Wyoming',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12369,23,49,'Yale',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12370,23,844,'Ypsilanti',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12371,23,648,'Zeeland',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12372,24,894,'Ada',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12373,24,895,'Adams',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12374,24,896,'Adolph',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12375,24,897,'Adrian',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12376,24,71,'Afton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12377,24,466,'Ah Gwah Ching',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12378,24,898,'Aitkin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12379,24,899,'Akeley',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12380,24,900,'Albany',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12381,24,901,'Albert Lea',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12382,24,684,'Alberta',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12383,24,481,'Albertville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12384,24,896,'Alborn',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12385,24,901,'Alden',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12386,24,902,'Aldrich',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12387,24,254,'Alexandria',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12388,24,903,'Almelund',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12389,24,66,'Alpha',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12390,24,904,'Altura',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12391,24,35,'Alvarado',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12392,24,905,'Amboy',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12393,24,906,'Andover',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12394,24,907,'Angle Inlet',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12395,24,896,'Angora',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12396,24,481,'Annandale',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12397,24,906,'Anoka',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12398,24,908,'Appleton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12399,24,147,'Arco',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12400,24,35,'Argyle',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12401,24,909,'Arlington',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12402,24,148,'Ashby',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12403,24,910,'Askov',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12404,24,911,'Atwater',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12405,24,912,'Audubon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12406,24,896,'Aurora',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12407,24,895,'Austin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12408,24,388,'Avoca',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12409,24,900,'Avon',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12410,24,896,'Babbitt',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12411,24,466,'Backus',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12412,24,913,'Badger',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12413,24,506,'Bagley',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12414,24,462,'Balaton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12415,24,48,'Barnesville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12416,24,914,'Barnum',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12417,24,148,'Barrett',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12418,24,915,'Barry',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12419,24,916,'Battle Lake',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12420,24,907,'Baudette',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12421,24,917,'Baxter',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12422,24,71,'Bayport',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12423,24,915,'Beardsley',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12424,24,216,'Beaver Bay',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12425,24,918,'Beaver Creek',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12426,24,919,'Becker',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12427,24,920,'Bejou',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12428,24,900,'Belgrade',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12429,24,127,'Belle Plaine',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12430,24,921,'Bellingham',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12431,24,126,'Beltrami',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12432,24,922,'Belview',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12433,24,923,'Bemidji',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12434,24,466,'Bena',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12435,24,899,'Benedict',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12436,24,908,'Benson',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12437,24,695,'Bertha',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12438,24,906,'Bethel',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12439,24,924,'Big Falls',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12440,24,919,'Big Lake',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12441,24,897,'Bigelow',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12442,24,925,'Bigfork',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12443,24,926,'Bingham Lake',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12444,24,924,'Birchdale',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12445,24,927,'Bird Island',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12446,24,896,'Biwabik',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12447,24,923,'Blackduck',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12448,24,911,'Blomkest',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12449,24,928,'Blooming Prairie',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12450,24,929,'Blue Earth',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12451,24,916,'Bluffton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12452,24,930,'Bock',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12453,24,894,'Borup',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12454,24,925,'Bovey',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12455,24,931,'Bowlus',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12456,24,925,'Bowstring',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12457,24,921,'Boyd',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12458,24,932,'Braham',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12459,24,917,'Brainerd',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12460,24,254,'Brandon',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12461,24,933,'Breckenridge',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12462,24,897,'Brewster',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12463,24,929,'Bricelyn',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12464,24,896,'Brimson',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12465,24,896,'Britt',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12466,24,910,'Brook Park',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12467,24,934,'Brooks',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12468,24,896,'Brookston',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12469,24,900,'Brooten',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12470,24,695,'Browerville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12471,24,935,'Browns Valley',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12472,24,895,'Brownsdale',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12473,24,47,'Brownsville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12474,24,936,'Brownton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12475,24,910,'Bruno',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12476,24,931,'Buckman',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12477,24,481,'Buffalo',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12478,24,927,'Buffalo Lake',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12479,24,896,'Buhl',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12480,24,937,'Burnsville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12481,24,695,'Burtrum',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12482,24,938,'Butterfield',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12483,24,939,'Byron',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12484,24,47,'Caledonia',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12485,24,912,'Callaway',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12486,24,925,'Calumet',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12487,24,932,'Cambridge',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12488,24,933,'Campbell',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12489,24,940,'Canby',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12490,24,941,'Cannon Falls',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12491,24,942,'Canton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12492,24,896,'Canyon',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12493,24,254,'Carlos',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12494,24,914,'Carlton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12495,24,943,'Carver',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12496,24,466,'Cass Lake',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12497,24,937,'Castle Rock',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12498,24,906,'Cedar',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12499,24,903,'Center City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12500,24,332,'Ceylon',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12501,24,944,'Champlin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12502,24,388,'Chandler',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12503,24,943,'Chanhassen',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12504,24,943,'Chaska',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12505,24,942,'Chatfield',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12506,24,903,'Chisago City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12507,24,896,'Chisholm',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12508,24,684,'Chokio',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12509,24,906,'Circle Pines',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12510,24,859,'Clara City',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12511,24,389,'Claremont',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12512,24,695,'Clarissa',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12513,24,940,'Clarkfield',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12514,24,901,'Clarks Grove',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12515,24,919,'Clear Lake',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12516,24,506,'Clearbrook',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12517,24,481,'Clearwater',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12518,24,922,'Clements',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12519,24,945,'Cleveland',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12520,24,126,'Climax',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12521,24,915,'Clinton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12522,24,916,'Clitherall',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12523,24,908,'Clontarf',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12524,24,914,'Cloquet',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12525,24,925,'Cohasset',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12526,24,481,'Cokato',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12527,24,900,'Cold Spring',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12528,24,925,'Coleraine',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12529,24,900,'Collegeville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12530,24,943,'Cologne',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12531,24,586,'Comfrey',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12532,24,48,'Comstock',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12533,24,901,'Conger',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12534,24,896,'Cook',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12535,24,915,'Correll',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12536,24,946,'Cosmos',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12537,24,71,'Cottage Grove',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12538,24,896,'Cotton',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12539,24,462,'Cottonwood',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12540,24,947,'Courtland',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12541,24,896,'Crane Lake',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12542,24,914,'Cromwell',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12543,24,126,'Crookston',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12544,24,917,'Crosby',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12545,24,917,'Crosslake',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12546,24,944,'Crystal Bay',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12547,24,388,'Currie',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12548,24,931,'Cushing',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12549,24,104,'Cyrus',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12550,24,904,'Dakota',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12551,24,932,'Dalbo',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12552,24,916,'Dalton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12553,24,927,'Danube',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12554,24,908,'Danvers',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12555,24,938,'Darfur',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12556,24,946,'Darwin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12557,24,946,'Dassel',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12558,24,921,'Dawson',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12559,24,944,'Dayton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12560,24,916,'Deer Creek',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12561,24,925,'Deer River',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12562,24,917,'Deerwood',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12563,24,481,'Delano',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12564,24,929,'Delavan',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12565,24,941,'Dennison',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12566,24,916,'Dent',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12567,24,912,'Detroit Lakes',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12568,24,895,'Dexter',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12569,24,48,'Dilworth',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12570,24,389,'Dodge Center',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12571,24,948,'Donaldson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12572,24,684,'Donnelly',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12573,24,939,'Dover',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12574,24,388,'Dovray',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12575,24,896,'Duluth',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12576,24,935,'Dumont',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12577,24,629,'Dundas',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12578,24,332,'Dunnell',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12579,24,695,'Eagle Bend',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12580,24,905,'Eagle Lake',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12581,24,126,'East Grand Forks',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12582,24,929,'Easton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12583,24,940,'Echo',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12584,24,944,'Eden Prairie',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12585,24,946,'Eden Valley',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12586,24,949,'Edgerton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12587,24,925,'Effie',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12588,24,47,'Eitzen',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12589,24,148,'Elbow Lake',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12590,24,950,'Elgin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12591,24,916,'Elizabeth',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12592,24,919,'Elk River',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12593,24,127,'Elko',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12594,24,895,'Elkton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12595,24,928,'Ellendale',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12596,24,897,'Ellsworth',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12597,24,929,'Elmore',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12598,24,900,'Elrosa',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12599,24,896,'Ely',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12600,24,945,'Elysian',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12601,24,896,'Embarrass',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12602,24,917,'Emily',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12603,24,901,'Emmons',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12604,24,916,'Erhard',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12605,24,126,'Erskine',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12606,24,914,'Esko',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12607,24,586,'Essig',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12608,24,126,'Euclid',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12609,24,254,'Evansville',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12610,24,896,'Eveleth',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12611,24,944,'Excelsior',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12612,24,939,'Eyota',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12613,24,927,'Fairfax',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12614,24,332,'Fairmont',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12615,24,629,'Faribault',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12616,24,937,'Farmington',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12617,24,254,'Farwell',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12618,24,466,'Federal Dam',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12619,24,48,'Felton',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12620,24,916,'Fergus Falls',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12621,24,126,'Fertile',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12622,24,917,'Fifty Lakes',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12623,24,216,'Finland',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12624,24,910,'Finlayson',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12625,24,126,'Fisher',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12626,24,931,'Flensburg',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12627,24,894,'Flom',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12628,24,896,'Floodwood',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12629,24,107,'Foley',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12630,24,896,'Forbes',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12631,24,71,'Forest Lake',1,131,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12632,24,930,'Foreston',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12633,24,917,'Fort Ripley',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12634,24,126,'Fosston',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12635,24,942,'Fountain',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12636,24,933,'Foxhome',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12637,24,927,'Franklin',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12638,24,912,'Frazee',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12639,24,901,'Freeborn',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12640,24,900,'Freeport',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12641,24,941,'Frontenac',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12642,24,929,'Frost',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12643,24,388,'Fulda',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12644,24,905,'Garden City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12645,24,254,'Garfield',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12646,24,917,'Garrison',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12647,24,462,'Garvin',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12648,24,894,'Gary',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12649,24,35,'Gatzke',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12650,24,909,'Gaylord',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12651,24,901,'Geneva',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12652,24,48,'Georgetown',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12653,24,462,'Ghent',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12654,24,909,'Gibbon',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12655,24,896,'Gilbert',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12656,24,107,'Gilman',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12657,24,936,'Glencoe',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12658,24,901,'Glenville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12659,24,104,'Glenwood',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12660,24,48,'Glyndon',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12661,24,506,'Gonvick',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12662,24,905,'Good Thunder',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12663,24,941,'Goodhue',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12664,24,925,'Goodland',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12665,24,951,'Goodridge',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12666,24,915,'Graceville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12667,24,332,'Granada',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12668,24,342,'Grand Marais',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12669,24,895,'Grand Meadow',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12670,24,342,'Grand Portage',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12671,24,925,'Grand Rapids',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12672,24,932,'Grandy',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12673,24,940,'Granite Falls',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12674,24,910,'Grasston',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12675,24,909,'Green Isle',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12676,24,913,'Greenbush',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12677,24,900,'Greenwald',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12678,24,695,'Grey Eagle',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12679,24,946,'Grove City',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12680,24,35,'Grygla',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12681,24,126,'Gully',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12682,24,466,'Hackensack',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12683,24,948,'Hallock',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12684,24,948,'Halma',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12685,24,894,'Halstad',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12686,24,943,'Hamburg',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12687,24,944,'Hamel',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12688,24,937,'Hampton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12689,24,684,'Hancock',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12690,24,940,'Hanley Falls',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12691,24,481,'Hanover',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12692,24,586,'Hanska',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12693,24,918,'Hardwick',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12694,24,942,'Harmony',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12695,24,903,'Harris',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12696,24,901,'Hartland',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12697,24,937,'Hastings',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12698,24,48,'Hawley',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12699,24,389,'Hayfield',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12700,24,901,'Hayward',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12701,24,927,'Hector',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12702,24,909,'Henderson',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12703,24,147,'Hendricks',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12704,24,894,'Hendrum',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12705,24,916,'Henning',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12706,24,910,'Henriette',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12707,24,148,'Herman',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12708,24,66,'Heron Lake',1,11989,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(12709,24,695,'Hewitt',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12710,24,896,'Hibbing',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12711,24,898,'Hill City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12712,24,931,'Hillman',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12713,24,918,'Hills',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12714,24,910,'Hinckley',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12715,24,923,'Hines',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12716,24,48,'Hitterdal',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12717,24,148,'Hoffman',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12718,24,47,'Hokah',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12719,24,900,'Holdingford',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12720,24,949,'Holland',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12721,24,901,'Hollandale',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12722,24,908,'Holloway',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12723,24,254,'Holmes City',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12724,24,914,'Holyoke',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12725,24,904,'Homer',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12726,24,928,'Hope',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12727,24,944,'Hopkins',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12728,24,47,'Houston',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12729,24,342,'Hovland',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12730,24,944,'Howard Lake',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12731,24,481,'Howard Lake',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12732,24,896,'Hoyt Lakes',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12733,24,71,'Hugo',1,12663,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(12734,24,948,'Humboldt',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12735,24,929,'Huntley',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12736,24,936,'Hutchinson',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12737,24,949,'Ihlen',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12738,24,924,'International Falls',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12739,24,937,'Inver Grove Heights',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12740,24,388,'Iona',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12741,24,896,'Iron',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12742,24,917,'Ironton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12743,24,216,'Isabella',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12744,24,932,'Isanti',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12745,24,930,'Isle',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12746,24,147,'Ivanhoe',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12747,24,66,'Jackson',1,13148,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(12748,24,925,'Jacobson',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12749,24,952,'Janesville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12750,24,918,'Jasper',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12751,24,926,'Jeffers',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12752,24,917,'Jenkins',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12753,24,127,'Jordan',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12754,24,924,'Kabetogama',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12755,24,897,'Kanaranzi',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12756,24,911,'Kandiyohi',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12757,24,948,'Karlstad',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12758,24,945,'Kasota',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12759,24,389,'Kasson',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12760,24,925,'Keewatin',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12761,24,923,'Kelliher',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12762,24,950,'Kellogg',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12763,24,948,'Kennedy',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12764,24,918,'Kenneth',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12765,24,254,'Kensington',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12766,24,933,'Kent',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12767,24,941,'Kenyon',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12768,24,908,'Kerkhoven',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12769,24,910,'Kerrick',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12770,24,914,'Kettle River',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12771,24,929,'Kiester',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12772,24,629,'Kilkenny',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12773,24,900,'Kimball',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12774,24,896,'Kinney',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12775,24,216,'Knife River',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12776,24,47,'La Crescent',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12777,24,938,'La Salle',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12778,24,947,'Lafayette',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12779,24,147,'Lake Benton',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12780,24,948,'Lake Bronson',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12781,24,950,'Lake City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12782,24,905,'Lake Crystal',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12783,24,71,'Lake Elmo',1,14340,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(12784,24,899,'Lake George',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12785,24,917,'Lake Hubert',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12786,24,911,'Lake Lillian',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12787,24,912,'Lake Park',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12788,24,388,'Lake Wilson',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12789,24,66,'Lakefield',1,14421,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(12790,24,71,'Lakeland',1,14428,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(12791,24,937,'Lakeville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12792,24,922,'Lamberton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12793,24,948,'Lancaster',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12794,24,942,'Lanesboro',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12795,24,895,'Lansing',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12796,24,899,'Laporte',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12797,24,931,'Lastrup',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12798,24,945,'Le Center',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12799,24,895,'Le Roy',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12800,24,945,'Le Sueur',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12801,24,920,'Lengby',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12802,24,506,'Leonard',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12803,24,897,'Leota',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12804,24,936,'Lester Prairie',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12805,24,904,'Lewiston',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12806,24,938,'Lewisville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12807,24,903,'Lindstrom',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12808,24,897,'Lismore',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12809,24,946,'Litchfield',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12810,24,931,'Little Falls',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12811,24,924,'Littlefork',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12812,24,924,'Loman',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12813,24,944,'Long Lake',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12814,24,695,'Long Prairie',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12815,24,466,'Longville',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12816,24,629,'Lonsdale',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12817,24,944,'Loretto',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12818,24,104,'Lowry',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12819,24,922,'Lucan',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12820,24,342,'Lutsen',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12821,24,918,'Luverne',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12822,24,895,'Lyle',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12823,24,462,'Lynd',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12824,24,942,'Mabel',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12825,24,938,'Madelia',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12826,24,921,'Madison',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12827,24,905,'Madison Lake',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12828,24,918,'Magnolia',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12829,24,920,'Mahnomen',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12830,24,896,'Makinen',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12831,24,905,'Mankato',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12832,24,947,'Mankato',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12833,24,389,'Mantorville',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12834,24,481,'Maple Lake',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12835,24,944,'Maple Plain',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12836,24,481,'Maple Plain',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12837,24,905,'Mapleton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12838,24,925,'Marble',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12839,24,925,'Marcell',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12840,24,924,'Margie',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12841,24,921,'Marietta',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12842,24,71,'Marine On Saint Croix',1,16331,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(12843,24,462,'Marshall',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12844,24,925,'Max',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12845,24,943,'Mayer',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12846,24,859,'Maynard',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12847,24,950,'Mazeppa',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12848,24,898,'Mc Grath',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12849,24,898,'Mcgregor',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12850,24,126,'Mcintosh',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12851,24,896,'Meadowlands',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12852,24,928,'Medford',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12853,24,900,'Melrose',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12854,24,896,'Melrude',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12855,24,902,'Menahga',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12856,24,937,'Mendota',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12857,24,126,'Mentor',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12858,24,917,'Merrifield',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12859,24,35,'Middle River',1,17203,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12860,24,930,'Milaca',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12861,24,859,'Milan',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12862,24,950,'Millville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12863,24,922,'Milroy',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12864,24,254,'Miltona',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12865,24,906,'Minneapolis',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12866,24,944,'Minneapolis',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12867,24,462,'Minneota',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12868,24,904,'Minnesota City',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12869,24,929,'Minnesota Lake',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12870,24,944,'Minnetonka',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12871,24,944,'Minnetonka Beach',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12872,24,924,'Mizpah',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12873,24,859,'Montevideo',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12874,24,945,'Montgomery',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12875,24,943,'Monticello',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12876,24,481,'Monticello',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12877,24,481,'Montrose',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12878,24,48,'Moorhead',1,17911,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12879,24,914,'Moose Lake',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12880,24,953,'Mora',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12881,24,922,'Morgan',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12882,24,684,'Morris',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12883,24,629,'Morristown',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12884,24,927,'Morton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12885,24,931,'Motley',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12886,24,944,'Mound',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12887,24,896,'Mountain Iron',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12888,24,926,'Mountain Lake',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12889,24,908,'Murdock',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12890,24,933,'Nashua',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12891,24,925,'Nashwauk',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12892,24,944,'Navarre',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12893,24,920,'Naytahwaush',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12894,24,254,'Nelson',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12895,24,629,'Nerstrand',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12896,24,896,'Nett Lake',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12897,24,899,'Nevis',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12898,24,909,'New Auburn',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12899,24,943,'New Germany',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12900,24,911,'New London',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12901,24,127,'New Market',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12902,24,900,'New Munich',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12903,24,127,'New Prague',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12904,24,952,'New Richland',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12905,24,586,'New Ulm',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12906,24,916,'New York Mills',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12907,24,35,'Newfolden',1,19003,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12908,24,71,'Newport',1,19029,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(12909,24,947,'Nicollet',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12910,24,126,'Nielsville',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12911,24,902,'Nimrod',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12912,24,917,'Nisswa',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12913,24,148,'Norcross',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12914,24,903,'North Branch',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12915,24,629,'Northfield',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12916,24,924,'Northome',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12917,24,332,'Northrop',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12918,24,943,'Norwood',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12919,24,943,'Norwood Young America',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12920,24,948,'Noyes',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12921,24,907,'Oak Island',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12922,24,107,'Oak Park',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12923,24,915,'Odessa',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12924,24,938,'Odin',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12925,24,912,'Ogema',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12926,24,953,'Ogilvie',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12927,24,66,'Okabena',1,19781,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(12928,24,934,'Oklee',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12929,24,927,'Olivia',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12930,24,930,'Onamia',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12931,24,332,'Ormsby',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12932,24,939,'Oronoco',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12933,24,896,'Orr',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12934,24,915,'Ortonville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12935,24,912,'Osage',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12936,24,254,'Osakis',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12937,24,35,'Oslo',1,69,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(12938,24,944,'Osseo',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12939,24,942,'Ostrander',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12940,24,916,'Ottertail',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12941,24,466,'Outing',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12942,24,928,'Owatonna',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12943,24,898,'Palisade',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12944,24,899,'Park Rapids',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12945,24,916,'Parkers Prairie',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12946,24,900,'Paynesville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12947,24,930,'Pease',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12948,24,916,'Pelican Rapids',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12949,24,905,'Pemberton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12950,24,925,'Pengilly',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12951,24,923,'Pennington',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12952,24,911,'Pennock',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12953,24,917,'Pequot Lakes',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12954,24,916,'Perham',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12955,24,894,'Perley',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12956,24,942,'Peterson',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12957,24,931,'Pierz',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12958,24,466,'Pillager',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12959,24,910,'Pine City',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12960,24,941,'Pine Island',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12961,24,466,'Pine River',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12962,24,949,'Pipestone',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12963,24,950,'Plainview',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12964,24,936,'Plato',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12965,24,934,'Plummer',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12966,24,923,'Ponemah',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12967,24,912,'Ponsford',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12968,24,940,'Porter',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12969,24,942,'Preston',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12970,24,930,'Princeton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12971,24,911,'Prinsburg',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12972,24,127,'Prior Lake',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12973,24,923,'Puposky',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12974,24,895,'Racine',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12975,24,931,'Randall',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12976,24,937,'Randolph',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12977,24,924,'Ranier',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12978,24,911,'Raymond',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12979,24,897,'Reading',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12980,24,950,'Reads Landing',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12981,24,934,'Red Lake Falls',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12982,24,941,'Red Wing',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12983,24,923,'Redby',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12984,24,923,'Redlake',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12985,24,922,'Redwood Falls',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12986,24,466,'Remer',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12987,24,927,'Renville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12988,24,922,'Revere',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12989,24,107,'Rice',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12990,24,900,'Richmond',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12991,24,916,'Richville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12992,24,912,'Richwood',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12993,24,912,'Rochert',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12994,24,939,'Rochester',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12995,24,910,'Rock Creek',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12996,24,944,'Rockford',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12997,24,481,'Rockford',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12998,24,900,'Rockville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(12999,24,944,'Rogers',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13000,24,904,'Rollingstone',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13001,24,913,'Roosevelt',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13002,24,900,'Roscoe',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13003,24,895,'Rose Creek',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13004,24,913,'Roseau',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13005,24,937,'Rosemount',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13006,24,933,'Rothsay',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13007,24,897,'Round Lake',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13008,24,931,'Royalton',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13009,24,903,'Rush City',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13010,24,942,'Rushford',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13011,24,897,'Rushmore',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13012,24,462,'Russell',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13013,24,949,'Ruthton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13014,24,48,'Sabin',1,108,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13015,24,927,'Sacred Heart',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13016,24,896,'Saginaw',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13017,24,944,'Saint Bonifacius',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13018,24,904,'Saint Charles',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13019,24,905,'Saint Clair',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13020,24,107,'Saint Cloud',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13021,24,900,'Saint Cloud',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13022,24,906,'Saint Francis',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13023,24,951,'Saint Hilaire',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13024,24,938,'Saint James',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13025,24,900,'Saint Joseph',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13026,24,944,'Saint Louis Park',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13027,24,900,'Saint Martin',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13028,24,481,'Saint Michael',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13029,24,937,'Saint Paul',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13030,24,944,'Saint Paul',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13031,24,954,'Saint Paul',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13032,24,71,'Saint Paul',1,302,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13033,24,71,'Saint Paul Park',1,303,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13034,24,947,'Saint Peter',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13035,24,900,'Saint Stephen',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13036,24,948,'Saint Vincent',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13037,24,913,'Salol',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13038,24,922,'Sanborn',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13039,24,910,'Sandstone',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13040,24,919,'Santiago',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13041,24,895,'Sargeant',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13042,24,900,'Sartell',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13043,24,900,'Sauk Centre',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13044,24,107,'Sauk Rapids',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13045,24,127,'Savage',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13046,24,914,'Sawyer',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13047,24,71,'Scandia',1,310,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13048,24,342,'Schroeder',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13049,24,922,'Seaforth',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13050,24,586,'Searles',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13051,24,902,'Sebeka',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13052,24,903,'Shafer',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13053,24,127,'Shakopee',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13054,24,894,'Shelly',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13055,24,332,'Sherburn',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13056,24,506,'Shevlin',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13057,24,896,'Side Lake',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13058,24,216,'Silver Bay',1,116,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13059,24,481,'Silver Creek',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13060,24,936,'Silver Lake',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13061,24,388,'Slayton',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13062,24,586,'Sleepy Eye',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13063,24,923,'Solway',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13064,24,896,'Soudan',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13065,24,481,'South Haven',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13066,24,924,'South International Falls',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13067,24,937,'South Saint Paul',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13068,24,911,'Spicer',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13069,24,47,'Spring Grove',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13070,24,925,'Spring Lake',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13071,24,944,'Spring Park',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13072,24,942,'Spring Valley',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13073,24,586,'Springfield',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13074,24,925,'Squaw Lake',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13075,24,903,'Stacy',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13076,24,932,'Stanchfield',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13077,24,695,'Staples',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13078,24,104,'Starbuck',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13079,24,918,'Steen',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13080,24,35,'Stephen',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13081,24,936,'Stewart',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13082,24,939,'Stewartville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13083,24,71,'Stillwater',1,326,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13084,24,904,'Stockton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13085,24,926,'Storden',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13086,24,35,'Strandquist',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13087,24,913,'Strathcona',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13088,24,910,'Sturgeon Lake',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13089,24,911,'Sunburg',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13090,24,925,'Swan River',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13091,24,931,'Swanville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13092,24,466,'Swatara',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13093,24,913,'Swift',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13094,24,925,'Taconite',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13095,24,925,'Talmoon',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13096,24,898,'Tamarack',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13097,24,895,'Taopi',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13098,24,462,'Taunton',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13099,24,903,'Taylors Falls',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13100,24,923,'Tenstrike',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13101,24,951,'Thief River Falls',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13102,24,935,'Tintah',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13103,24,342,'Tofte',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13104,24,896,'Tower',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13105,24,462,'Tracy',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13106,24,126,'Trail',1,122,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13107,24,332,'Trimont',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL);
INSERT INTO `cities` VALUES (13108,24,949,'Trosky',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13109,24,332,'Truman',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13110,24,896,'Twig',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13111,24,901,'Twin Lakes',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13112,24,894,'Twin Valley',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13113,24,216,'Two Harbors',1,123,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13114,24,147,'Tyler',1,185,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13115,24,48,'Ulen',1,119,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13116,24,916,'Underwood',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13117,24,931,'Upsala',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13118,24,904,'Utica',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13119,24,916,'Vergas',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13120,24,937,'Vermillion',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13121,24,902,'Verndale',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13122,24,905,'Vernon Center',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13123,24,922,'Vesta',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13124,24,943,'Victoria',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13125,24,35,'Viking',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13126,24,104,'Villard',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13127,24,916,'Vining',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13128,24,896,'Virginia',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13129,24,950,'Wabasha',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13130,24,922,'Wabasso',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13131,24,943,'Waconia',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13132,24,902,'Wadena',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13133,24,930,'Wahkon',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13134,24,900,'Waite Park',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13135,24,952,'Waldorf',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13136,24,466,'Walker',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13137,24,922,'Walnut Grove',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13138,24,895,'Waltham',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13139,24,941,'Wanamingo',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13140,24,922,'Wanda',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13141,24,913,'Wannaska',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13142,24,925,'Warba',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13143,24,35,'Warren',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13144,24,913,'Warroad',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13145,24,629,'Warsaw',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13146,24,952,'Waseca',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13147,24,923,'Waskish',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13148,24,943,'Watertown',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13149,24,945,'Waterville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13150,24,946,'Watkins',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13151,24,859,'Watson',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13152,24,912,'Waubun',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13153,24,481,'Waverly',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13154,24,944,'Wayzata',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13155,24,629,'Webster',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13156,24,941,'Welch',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13157,24,332,'Welcome',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13158,24,929,'Wells',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13159,24,148,'Wendell',1,127,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13160,24,389,'West Concord',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13161,24,695,'West Union',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13162,24,926,'Westbrook',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13163,24,935,'Wheaton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13164,24,912,'White Earth',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13165,24,71,'Willernie',1,387,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13166,24,907,'Williams',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13167,24,911,'Willmar',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13168,24,910,'Willow River',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13169,24,897,'Wilmont',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13170,24,923,'Wilton',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13171,24,926,'Windom',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13172,24,126,'Winger',1,130,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13173,24,929,'Winnebago',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13174,24,904,'Winona',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13175,24,936,'Winsted',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13176,24,909,'Winthrop',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13177,24,896,'Winton',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13178,24,925,'Wirt',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13179,24,912,'Wolf Lake',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13180,24,933,'Wolverton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13181,24,940,'Wood Lake',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13182,24,949,'Woodstock',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13183,24,897,'Worthington',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13184,24,914,'Wrenshall',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13185,24,914,'Wright',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13186,24,942,'Wykoff',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13187,24,903,'Wyoming',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13188,24,943,'Young America',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13189,24,944,'Young America',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13190,24,919,'Zimmerman',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13191,24,950,'Zumbro Falls',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13192,24,941,'Zumbrota',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13193,26,955,'Adrian',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13194,26,956,'Advance',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13195,26,475,'Agency',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13196,26,427,'Alba',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13197,26,957,'Albany',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13198,26,126,'Aldrich',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13199,26,100,'Alexandria',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13200,26,441,'Allendale',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13201,26,896,'Allenton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13202,26,128,'Alma',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13203,26,610,'Altamont',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13204,26,958,'Altenburg',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13205,26,959,'Alton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13206,26,960,'Amazonia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13207,26,355,'Amity',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13208,26,955,'Amoret',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13209,26,955,'Amsterdam',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13210,26,89,'Anabel',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13211,26,961,'Anderson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13212,26,55,'Annada',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13213,26,843,'Annapolis',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13214,26,102,'Anniston',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13215,26,49,'Appleton City',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13216,26,962,'Arbela',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13217,26,963,'Arbyrd',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13218,26,843,'Arcadia',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13219,26,466,'Archie',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13220,26,444,'Arcola',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13221,26,653,'Argyle',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13222,26,141,'Armstrong',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13223,26,30,'Arnold',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13224,26,95,'Arrow Rock',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13225,26,628,'Asbury',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13226,26,63,'Ash Grove',1,1000,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13227,26,55,'Ashburn',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13228,26,99,'Ashland',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13229,26,89,'Atlanta',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13230,26,754,'Augusta',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13231,26,81,'Aurora',1,1239,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13232,26,964,'Auxvasse',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13233,26,254,'Ava',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13234,26,427,'Avilla',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13235,26,965,'Bakersfield',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13236,26,896,'Ballwin',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13237,26,538,'Baring',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13238,26,966,'Barnard',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13239,26,82,'Barnett',1,1536,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13240,26,30,'Barnhart',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13241,26,128,'Bates City',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13242,26,92,'Beaufort',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13243,26,71,'Belgrade',1,1877,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13244,26,956,'Bell City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13245,26,967,'Belle',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13246,26,843,'Belleview',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13247,26,72,'Bellflower',1,1940,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13248,26,466,'Belton',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13249,26,127,'Benton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13250,26,968,'Benton City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13251,26,92,'Berger',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13252,26,956,'Bernie',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13253,26,102,'Bertrand',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13254,26,502,'Bethany',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13255,26,33,'Bethel',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13256,26,969,'Beulah',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13257,26,89,'Bevier',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13258,26,556,'Billings',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13259,26,970,'Birch Tree',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13260,26,971,'Bismarck',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13261,26,843,'Bixby',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13262,26,972,'Black',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13263,26,95,'Blackburn',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13264,26,973,'Blackwater',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13265,26,971,'Blackwell',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13266,26,28,'Blairstown',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13267,26,974,'Bland',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13268,26,127,'Blodgett',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13269,26,956,'Bloomfield',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13270,26,975,'Bloomsdale',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13271,26,144,'Blue Eye',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13272,26,66,'Blue Springs',1,2580,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13273,26,502,'Blythedale',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13274,26,115,'Bogard',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13275,26,63,'Bois D Arc',1,2643,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13276,26,960,'Bolckow',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13277,26,126,'Bolivar',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13278,26,971,'Bonne Terre',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13279,26,653,'Bonnots Mill',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13280,26,973,'Boonville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13281,26,976,'Boss',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13282,26,115,'Bosworth',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13283,26,97,'Bourbon',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13284,26,55,'Bowling Green',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13285,26,977,'Bradleyville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13286,26,978,'Bragg City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13287,26,978,'Braggadocio',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13288,26,979,'Brandsville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13289,26,977,'Branson',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13290,26,454,'Brashear',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13291,26,739,'Braymer',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13292,26,93,'Brazeau',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13293,26,739,'Breckenridge',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13294,26,597,'Briar',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13295,26,896,'Bridgeton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13296,26,126,'Brighton',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13297,26,967,'Brinktown',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13298,26,965,'Brixey',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13299,26,756,'Bronaugh',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13300,26,458,'Brookfield',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13301,26,63,'Brookline',1,3234,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13302,26,74,'Broseley',1,3276,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13303,26,458,'Browning',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13304,26,956,'Brownwood',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13305,26,142,'Brumley',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13306,26,556,'Bruner',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13307,26,980,'Brunswick',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13308,26,458,'Bucklin',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13309,26,66,'Buckner',1,3425,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13310,26,981,'Bucyrus',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13311,26,94,'Buffalo',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13312,26,973,'Bunceton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13313,26,972,'Bunker',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13314,26,958,'Burfordville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13315,26,966,'Burlington Junction',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13316,26,955,'Butler',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13317,26,880,'Butterfield',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13318,26,981,'Cabool',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13319,26,71,'Cadet',1,3722,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13320,26,502,'Cainsville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13321,26,91,'Cairo',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13322,26,71,'Caledonia',1,3759,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13323,26,28,'Calhoun',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13324,26,982,'California',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13325,26,89,'Callao',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13326,26,983,'Camden',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13327,26,984,'Camden Point',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13328,26,432,'Camdenton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13329,26,465,'Cameron',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13330,26,963,'Campbell',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13331,26,985,'Canalou',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13332,26,528,'Canton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13333,26,144,'Cape Fair',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13334,26,958,'Cape Girardeau',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13335,26,482,'Caplinger Mills',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13336,26,963,'Cardwell',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13337,26,427,'Carl Junction',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13338,26,115,'Carrollton',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13339,26,427,'Carterville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13340,26,427,'Carthage',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13341,26,978,'Caruthersville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13342,26,431,'Cascade',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13343,26,880,'Cassville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13344,26,92,'Catawissa',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13345,26,985,'Catron',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13346,26,979,'Caulfield',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13347,26,30,'Cedar Hill',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13348,26,977,'Cedarcreek',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13349,26,986,'Center',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13350,26,987,'Centertown',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13351,26,135,'Centerview',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13352,26,972,'Centerville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13353,26,99,'Centralia',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13354,26,556,'Chadwick',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13355,26,127,'Chaffee',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13356,26,653,'Chamois',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13357,26,102,'Charleston',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13358,26,97,'Cherryville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13359,26,896,'Chesterfield',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13360,26,556,'Chestnutridge',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13361,26,135,'Chilhowee',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13362,26,548,'Chillicothe',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13363,26,548,'Chula',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13364,26,33,'Clarence',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13365,26,91,'Clark',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13366,26,982,'Clarksburg',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13367,26,355,'Clarksdale',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13368,26,55,'Clarksville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13369,26,963,'Clarkton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13370,26,966,'Clearmont',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13371,26,466,'Cleveland',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13372,26,556,'Clever',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13373,26,91,'Clifton Hill',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13374,26,432,'Climax Springs',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13375,26,28,'Clinton',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13376,26,431,'Clubb',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13377,26,966,'Clyde',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13378,26,574,'Coatsville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13379,26,610,'Coffey',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13380,26,107,'Cole Camp',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13381,26,49,'Collins',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13382,26,99,'Columbia',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13383,26,127,'Commerce',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13384,26,966,'Conception',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13385,26,966,'Conception Junction',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13386,26,128,'Concordia',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13387,26,988,'Conway',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13388,26,97,'Cook',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13389,26,978,'Cooter',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13390,26,128,'Corder',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13391,26,960,'Cosby',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13392,26,754,'Cottleville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13393,26,959,'Couch',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13394,26,739,'Cowgill',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13395,26,989,'Craig',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13396,26,144,'Crane',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13397,26,28,'Creighton',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13398,26,136,'Crocker',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13399,26,990,'Cross Timbers',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13400,26,30,'Crystal City',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13401,26,97,'Cuba',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13402,26,55,'Curryville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13403,26,444,'Dadeville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13404,26,958,'Daisy',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13405,26,980,'Dalton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13406,26,957,'Darlington',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13407,26,97,'Davisville',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13408,26,548,'Dawn',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13409,26,475,'De Kalb',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13410,26,30,'De Soto',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13411,26,115,'De Witt',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13412,26,984,'Dearborn',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13413,26,28,'Deepwater',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13414,26,756,'Deerfield',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13415,26,978,'Deering',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13416,26,754,'Defiance',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13417,26,958,'Delta',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13418,26,441,'Denver',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13419,26,843,'Des Arc',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13420,26,136,'Devils Elbow',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13421,26,956,'Dexter',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13422,26,137,'Diamond',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13423,26,442,'Diggins',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13424,26,30,'Dittmer',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13425,26,136,'Dixon',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13426,26,971,'Doe Run',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13427,26,597,'Doniphan',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13428,26,965,'Dora',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13429,26,128,'Dover',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13430,26,574,'Downing',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13431,26,955,'Drexel',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13432,26,254,'Drury',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13433,26,956,'Dudley',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13434,26,427,'Duenweg',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13435,26,969,'Duke',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13436,26,126,'Dunnegan',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13437,26,528,'Durham',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13438,26,958,'Dutchtown',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13439,26,386,'Dutzow',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13440,26,880,'Eagle Rock',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13441,26,502,'Eagleville',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13442,26,896,'Earth City',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13443,26,466,'East Lynne',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13444,26,102,'East Prairie',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13445,26,475,'Easton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13446,26,969,'Edgar Springs',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13447,26,984,'Edgerton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13448,26,538,'Edina',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13449,26,107,'Edwards',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13450,26,482,'El Dorado Springs',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13451,26,142,'Eldon',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13452,26,988,'Eldridge',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13453,26,981,'Elk Creek',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13454,26,94,'Elkland',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13455,26,972,'Ellington',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13456,26,727,'Ellsinore',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13457,26,89,'Elmer',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13458,26,966,'Elmo',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13459,26,147,'Elsberry',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13460,26,33,'Emden',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13461,26,970,'Eminence',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13462,26,128,'Emma',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13463,26,55,'Eolia',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13464,26,956,'Essex',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13465,26,89,'Ethel',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13466,26,126,'Eudora',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13467,26,987,'Eugene',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13468,26,981,'Eunice',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13469,26,896,'Eureka',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13470,26,444,'Everton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13471,26,528,'Ewing',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13472,26,89,'Excello',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13473,26,48,'Excelsior Springs',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13474,26,880,'Exeter',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13475,26,74,'Fagus',1,8672,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13476,26,63,'Fair Grove',1,8674,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13477,26,126,'Fair Play',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13478,26,597,'Fairdealing',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13479,26,639,'Fairfax',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13480,26,355,'Fairport',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13481,26,137,'Fairview',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13482,26,988,'Falcon',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13483,26,968,'Farber',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13484,26,984,'Farley',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13485,26,971,'Farmington',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13486,26,93,'Farrar',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13487,26,475,'Faucett',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13488,26,141,'Fayette',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13489,26,896,'Fenton',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13490,26,30,'Festus',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13491,26,960,'Fillmore',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13492,26,74,'Fisk',1,9066,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13493,26,126,'Flemington',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13494,26,30,'Fletcher',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13495,26,754,'Flinthill',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13496,26,82,'Florence',1,9151,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13497,26,896,'Florissant',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13498,26,147,'Foley',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13499,26,442,'Fordland',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13500,26,989,'Forest City',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13501,26,754,'Foristell',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13502,26,977,'Forsyth',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13503,26,136,'Fort Leonard Wood',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13504,26,982,'Fortuna',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13505,26,955,'Foster',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13506,26,55,'Frankford',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13507,26,141,'Franklin',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13508,26,68,'Fredericktown',1,9606,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13509,26,653,'Freeburg',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13510,26,466,'Freeman',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13511,26,81,'Freistatt',1,9659,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13512,26,727,'Fremont',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13513,26,971,'French Village',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13514,26,958,'Friedheim',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13515,26,93,'Frohna',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13516,26,964,'Fulton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13517,26,965,'Gainesville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13518,26,144,'Galena',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13519,26,610,'Gallatin',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13520,26,480,'Galt',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13521,26,466,'Garden City',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13522,26,556,'Garrison',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13523,26,974,'Gasconade',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13524,26,597,'Gatewood',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13525,26,957,'Gentry',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13526,26,92,'Gerald',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13527,26,454,'Gibbs',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13528,26,963,'Gibson',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13529,26,985,'Gideon',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13530,26,95,'Gilliam',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13531,26,502,'Gilman City',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13532,26,991,'Gipsy',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13533,26,141,'Glasgow',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13534,26,991,'Glenallen',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13535,26,896,'Glencoe',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13536,26,574,'Glenwood',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13537,26,978,'Gobler',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13538,26,880,'Golden',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13539,26,628,'Golden City',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13540,26,961,'Goodman',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13541,26,958,'Gordonville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13542,26,962,'Gorin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13543,26,465,'Gower',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13544,26,481,'Graff',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13545,26,966,'Graham',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13546,26,66,'Grain Valley',1,10629,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13547,26,137,'Granby',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13548,26,727,'Grandin',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13549,26,66,'Grandview',1,10699,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13550,26,962,'Granger',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13551,26,441,'Grant City',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13552,26,82,'Gravois Mills',1,10790,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13553,26,92,'Gray Summit',1,102,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13554,26,956,'Grayridge',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13555,26,611,'Green Castle',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13556,26,611,'Green City',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13557,26,992,'Green Ridge',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13558,26,444,'Greenfield',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13559,26,454,'Greentop',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13560,26,431,'Greenville',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13561,26,66,'Greenwood',1,10992,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13562,26,896,'Grover',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13563,26,481,'Grovespring',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13564,26,92,'Grubville',1,107,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13565,26,966,'Guilford',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13566,26,115,'Hale',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13567,26,126,'Half Way',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13568,26,99,'Hallsville',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13569,26,81,'Halltown',1,11261,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13570,26,739,'Hamilton',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13571,26,58,'Hannibal',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13572,26,965,'Hardenville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13573,26,983,'Hardin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13574,26,611,'Harris',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13575,26,99,'Harrisburg',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13576,26,466,'Harrisonville',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13577,26,99,'Hartsburg',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13578,26,981,'Hartshorn',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13579,26,481,'Hartville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13580,26,74,'Harviell',1,11642,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13581,26,756,'Harwood',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13582,26,502,'Hatfield',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13583,26,147,'Hawk Point',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13584,26,978,'Hayti',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13585,26,896,'Hazelwood',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13586,26,960,'Helena',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13587,26,30,'Hematite',1,123,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13588,26,987,'Henley',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13589,26,983,'Henrietta',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13590,26,30,'Herculaneum',1,126,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13591,26,974,'Hermann',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13592,26,990,'Hermitage',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13593,26,91,'Higbee',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13594,26,128,'Higginsville',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13595,26,72,'High Hill',1,12072,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13596,26,982,'High Point',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13597,26,30,'High Ridge',1,127,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13598,26,556,'Highlandville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13599,26,30,'Hillsboro',1,128,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13600,26,963,'Holcomb',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13601,26,135,'Holden',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13602,26,978,'Holland',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13603,26,59,'Holliday',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13604,26,977,'Hollister',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13605,26,48,'Holt',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13606,26,964,'Holts Summit',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13607,26,966,'Hopkins',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13608,26,963,'Hornersville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13609,26,30,'House Springs',1,129,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13610,26,981,'Houston',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13611,26,992,'Houstonia',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13612,26,981,'Huggins',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13613,26,992,'Hughesville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13614,26,126,'Humansville',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13615,26,955,'Hume',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13616,26,611,'Humphreys',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13617,26,33,'Hunnewell',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13618,26,91,'Huntsville',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13619,26,538,'Hurdland',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13620,26,144,'Hurley',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13621,26,142,'Iberia',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13622,26,30,'Imperial',1,132,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13623,26,66,'Independence',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13624,26,107,'Ionia',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13625,26,71,'Irondale',1,183,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13626,26,843,'Ironton',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13627,26,965,'Isabella',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13628,26,958,'Jackson',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13629,26,91,'Jacksonville',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13630,26,976,'Jadwin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13631,26,610,'Jameson',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13632,26,610,'Jamesport',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13633,26,982,'Jamestown',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13634,26,427,'Jasper',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13635,26,987,'Jefferson City',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13636,26,482,'Jerico Springs',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13637,26,969,'Jerome',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13638,26,72,'Jonesburg',1,113,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13639,26,427,'Joplin',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13640,26,100,'Kahoka',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13641,26,142,'Kaiser',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13642,26,48,'Kansas City',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13643,26,66,'Kansas City',1,110,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13644,26,984,'Kansas City',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13645,26,48,'Kearney',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13646,26,127,'Kelso',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13647,26,963,'Kennett',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13648,26,985,'Kewanee',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13649,26,980,'Keytesville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13650,26,739,'Kidder',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13651,26,144,'Kimberling City',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13652,26,30,'Kimmswick',1,146,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13653,26,957,'King City',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13654,26,964,'Kingdom City',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13655,26,739,'Kingston',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13656,26,135,'Kingsville',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13657,26,977,'Kirbyville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13658,26,454,'Kirksville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13659,26,977,'Kissee Mills',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13660,26,971,'Knob Lick',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13661,26,135,'Knob Noster',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13662,26,538,'Knox City',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13663,26,653,'Koeltztown',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13664,26,959,'Koshkonong',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13665,26,528,'La Belle',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13666,26,528,'La Grange',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13667,26,992,'La Monte',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13668,26,89,'La Plata',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13669,26,81,'La Russell',1,14209,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13670,26,92,'Labadie',1,124,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13671,26,458,'Laclede',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13672,26,968,'Laddonia',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13673,26,432,'Lake Ozark',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13674,26,754,'Lake Saint Louis',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13675,26,976,'Lake Spring',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13676,26,628,'Lamar',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13677,26,144,'Lampe',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13678,26,961,'Lanagan',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13679,26,574,'Lancaster',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13680,26,136,'Laquey',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13681,26,480,'Laredo',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13682,26,982,'Latham',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13683,26,465,'Lathrop',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13684,26,82,'Laurie',1,14681,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13685,26,983,'Lawson',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13686,26,971,'Leadwood',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13687,26,97,'Leasburg',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13688,26,988,'Lebanon',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13689,26,66,'Lees Summit',1,119,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13690,26,135,'Leeton',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13691,26,976,'Lenox',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13692,26,33,'Lentner',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13693,26,33,'Leonard',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13694,26,991,'Leopold',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13695,26,92,'Leslie',1,133,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13696,26,972,'Lesterville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13697,26,66,'Levasy',1,120,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13698,26,528,'Lewistown',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13699,26,128,'Lexington',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13700,26,628,'Liberal',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13701,26,48,'Liberty',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13702,26,981,'Licking',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13703,26,30,'Liguori',1,156,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13704,26,985,'Lilbourn',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13705,26,107,'Lincoln',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13706,26,653,'Linn',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13707,26,432,'Linn Creek',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13708,26,458,'Linneus',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13709,26,308,'Livonia',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13710,26,610,'Lock Springs',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13711,26,444,'Lockwood',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13712,26,431,'Lodi',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13713,26,987,'Lohman',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13714,26,66,'Lone Jack',1,122,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13715,26,92,'Lonedell',1,137,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13716,26,94,'Long Lane',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13717,26,653,'Loose Creek',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13718,26,94,'Louisburg',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13719,26,55,'Louisiana',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13720,26,431,'Lowndes',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13721,26,49,'Lowry City',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13722,26,308,'Lucerne',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13723,26,548,'Ludlow',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13724,26,92,'Luebbering',1,139,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13725,26,100,'Luray',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13726,26,988,'Lynchburg',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13727,26,432,'Macks Creek',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13728,26,481,'Macomb',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13729,26,89,'Macon',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13730,26,59,'Madison',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13731,26,989,'Maitland',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13732,26,963,'Malden',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13733,26,95,'Malta Bend',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13734,26,481,'Mansfield',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13735,26,30,'Mapaville',1,16215,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13736,26,991,'Marble Hill',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13737,26,458,'Marceline',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13738,26,81,'Marionville',1,16362,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13739,26,68,'Marquand',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13740,26,95,'Marshall',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13741,26,442,'Marshfield',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13742,26,985,'Marston',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13743,26,386,'Marthasville',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13744,26,968,'Martinsburg',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13745,26,502,'Martinsville',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13746,26,896,'Maryland Heights',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13747,26,966,'Maryville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13748,26,985,'Matthews',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13749,26,355,'Maysville',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13750,26,128,'Mayview',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13751,26,58,'Maywood',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13752,26,93,'Mc Bride',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13753,26,254,'Mc Clurg',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13754,26,957,'Mc Fall',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13755,26,431,'Mc Gee',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13756,26,982,'Mc Girk',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13757,26,458,'Meadville',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13758,26,962,'Memphis',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13759,26,980,'Mendon',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13760,26,544,'Mercer',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13761,26,653,'Meta',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13762,26,756,'Metz',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13763,26,968,'Mexico',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13764,26,95,'Miami',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13765,26,843,'Middle Brook',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13766,26,72,'Middletown',1,132,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13767,26,611,'Milan',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13768,26,628,'Milford',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13769,26,431,'Mill Spring',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13770,26,81,'Miller',1,17390,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13771,26,958,'Millersville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13772,26,756,'Milo',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13773,26,628,'Mindenmines',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13774,26,71,'Mineral Point',1,243,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13775,26,48,'Missouri City',1,17607,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13776,26,91,'Moberly',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13777,26,964,'Mokane',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13778,26,880,'Monett',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13779,26,59,'Monroe City',1,104,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13780,26,72,'Montgomery City',1,136,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13781,26,528,'Monticello',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13782,26,970,'Montier',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13783,26,432,'Montreal',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13784,26,28,'Montrose',1,17850,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13785,26,979,'Moody',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13786,26,548,'Mooresville',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13787,26,992,'Mora',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13788,26,985,'Morehouse',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13789,26,127,'Morley',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13790,26,974,'Morrison',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13791,26,126,'Morrisville',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13792,26,30,'Morse Mill',1,18034,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13793,26,48,'Mosby',1,18047,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13794,26,147,'Moscow Mills',1,117,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13795,26,989,'Mound City',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13796,26,756,'Moundville',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13797,26,974,'Mount Sterling',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13798,26,81,'Mount Vernon',1,18232,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13799,26,481,'Mountain Grove',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13800,26,979,'Mountain View',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13801,26,959,'Myrtle',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13802,26,128,'Napoleon',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13803,26,597,'Naylor',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13804,26,427,'Neck City',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13805,26,74,'Neelyville',1,18577,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13806,26,95,'Nelson',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13807,26,137,'Neosho',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13808,26,756,'Nevada',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13809,26,964,'New Bloomfield',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13810,26,458,'New Boston',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13811,26,89,'New Cambria',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13812,26,72,'New Florence',1,147,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13813,26,141,'New Franklin',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13814,26,502,'New Hampton',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13815,26,92,'New Haven',1,159,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13816,26,986,'New London',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13817,26,985,'New Madrid',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13818,26,754,'New Melle',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13819,26,538,'Newark',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13820,26,969,'Newburg',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13821,26,137,'Newtonia',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13822,26,611,'Newtown',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13823,26,442,'Niangua',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13824,26,556,'Nixa',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13825,26,965,'Noble',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13826,26,961,'Noel',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13827,26,115,'Norborne',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13828,26,481,'Norwood',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13829,26,538,'Novelty',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13830,26,454,'Novinger',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13831,26,754,'O Fallon',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13832,26,66,'Oak Grove',1,149,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13833,26,958,'Oak Ridge',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13834,26,128,'Odessa',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13835,26,958,'Old Appleton',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13836,26,147,'Old Monroe',1,128,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13837,26,556,'Oldfield',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13838,26,142,'Olean',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13839,26,147,'Olney',1,129,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13840,26,127,'Oran',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13841,26,989,'Oregon',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13842,26,427,'Oronogo',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13843,26,983,'Orrick',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13844,26,432,'Osage Beach',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13845,26,355,'Osborn',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13846,26,49,'Osceola',1,20125,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13847,26,973,'Otterville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13848,26,974,'Owensville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13849,26,597,'Oxly',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13850,26,556,'Ozark',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13851,26,92,'Pacific',1,175,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13852,26,58,'Palmyra',1,20394,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13853,26,59,'Paris',1,20472,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13854,26,971,'Park Hills',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13855,26,985,'Parma',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13856,26,966,'Parnell',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13857,26,431,'Patterson',1,114,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13858,26,991,'Patton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13859,26,610,'Pattonsburg',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13860,26,979,'Peace Valley',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13861,26,466,'Peculiar',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13862,26,127,'Perkins',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13863,26,986,'Perry',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13864,26,93,'Perryville',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13865,26,30,'Pevely',1,20935,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13866,26,58,'Philadelphia',1,20955,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13867,26,988,'Phillipsburg',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13868,26,966,'Pickering',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13869,26,431,'Piedmont',1,116,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13870,26,81,'Pierce City',1,21029,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13871,26,973,'Pilot Grove',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13872,26,843,'Pilot Knob',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13873,26,961,'Pineville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13874,26,990,'Pittsburg',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13875,26,981,'Plato',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13876,26,984,'Platte City',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13877,26,465,'Plattsburg',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13878,26,466,'Pleasant Hill',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13879,26,63,'Pleasant Hope',1,101,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13880,26,538,'Plevna',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13881,26,958,'Pocahontas',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13882,26,977,'Point Lookout',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13883,26,126,'Polk',1,106,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13884,26,611,'Pollock',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13885,26,739,'Polo',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13886,26,979,'Pomona',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13887,26,144,'Ponce De Leon',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13888,26,965,'Pontiac',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13889,26,74,'Poplar Bluff',1,75,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(13890,26,754,'Portage Des Sioux',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13891,26,985,'Portageville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13892,26,964,'Portland',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13893,26,71,'Potosi',1,280,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13894,26,979,'Pottersville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13895,26,961,'Powell',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13896,26,977,'Powersite',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13897,26,308,'Powersville',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13898,26,973,'Prairie Home',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13899,26,990,'Preston',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13900,26,544,'Princeton',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13901,26,977,'Protem',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13902,26,427,'Purcell',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13903,26,458,'Purdin',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13904,26,880,'Purdy',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13905,26,956,'Puxico',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13906,26,574,'Queen City',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13907,26,990,'Quincy',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13908,26,74,'Qulin',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13909,26,137,'Racine',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13910,26,966,'Ravenwood',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13911,26,981,'Raymondville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13912,26,466,'Raymore',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13913,26,983,'Rayville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13914,26,960,'Rea',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13915,26,972,'Redford',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13916,26,427,'Reeds',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13917,26,144,'Reeds Spring',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13918,26,91,'Renick',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13919,26,63,'Republic',1,105,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13920,26,100,'Revere',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13921,26,972,'Reynolds',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13922,26,72,'Rhineland',1,182,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13923,26,955,'Rich Hill',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13924,26,756,'Richards',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13925,26,136,'Richland',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13926,26,983,'Richmond',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13927,26,71,'Richwoods',1,291,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13928,26,977,'Ridgedale',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13929,26,502,'Ridgeway',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13930,26,985,'Risco',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13931,26,984,'Riverside',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13932,26,963,'Rives',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13933,26,432,'Roach',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13934,26,92,'Robertsville',1,196,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13935,26,981,'Roby',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13936,26,99,'Rocheport',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13937,26,639,'Rock Port',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13938,26,977,'Rockaway Beach',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13939,26,965,'Rockbridge',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13940,26,955,'Rockville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13941,26,961,'Rocky Comfort',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13942,26,82,'Rocky Mount',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13943,26,442,'Rogersville',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13944,26,969,'Rolla',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13945,26,74,'Rombauer',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13946,26,49,'Roscoe',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13947,26,974,'Rosebud',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13948,26,960,'Rosendale',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13949,26,980,'Rothville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13950,26,977,'Rueter',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13951,26,968,'Rush Hill',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13952,26,475,'Rushville',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13953,26,987,'Russellville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13954,26,962,'Rutledge',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13955,26,137,'Saginaw',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13956,26,92,'Saint Albans',1,205,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13957,26,896,'Saint Ann',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13958,26,754,'Saint Charles',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13959,26,92,'Saint Clair',1,208,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13960,26,142,'Saint Elizabeth',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13961,26,969,'Saint James',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13962,26,475,'Saint Joseph',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13963,26,896,'Saint Louis',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13964,26,993,'Saint Louis',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13965,26,975,'Saint Mary',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13966,26,100,'Saint Patrick',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13967,26,754,'Saint Peters',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13968,26,136,'Saint Robert',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13969,26,987,'Saint Thomas',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13970,26,975,'Sainte Genevieve',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13971,26,976,'Salem',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13972,26,980,'Salisbury',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13973,26,59,'Santa Fe',1,136,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13974,26,427,'Sarcoxie',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13975,26,960,'Savannah',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13976,26,986,'Saverton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13977,26,756,'Schell City',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13978,26,127,'Scott City',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13979,26,992,'Sedalia',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13980,26,991,'Sedgewickville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13981,26,880,'Seligman',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13982,26,963,'Senath',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13983,26,137,'Seneca',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13984,26,442,'Seymour',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13985,26,33,'Shelbina',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13986,26,33,'Shelbyville',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13987,26,756,'Sheldon',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13988,26,880,'Shell Knob',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13989,26,441,'Sheridan',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13990,26,431,'Shook',1,141,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13991,26,66,'Sibley',1,180,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13992,26,127,'Sikeston',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13993,26,147,'Silex',1,153,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13994,26,431,'Silva',1,143,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13995,26,966,'Skidmore',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13996,26,95,'Slater',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13997,26,992,'Smithton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13998,26,48,'Smithville',1,113,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(13999,26,981,'Solo',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14000,26,979,'South Fork',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14001,26,444,'South Greenfield',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14002,26,961,'South West City',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14003,26,556,'Sparta',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14004,26,480,'Spickard',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14005,26,556,'Spokane',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14006,26,63,'Springfield',1,121,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14007,26,254,'Squires',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14008,26,957,'Stanberry',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14009,26,92,'Stanton',1,227,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14010,26,137,'Stark City',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14011,26,964,'Steedman',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14012,26,978,'Steele',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14013,26,97,'Steelville',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14014,26,137,'Stella',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14015,26,115,'Stet',1,106,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14016,26,355,'Stewartsville',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14017,26,482,'Stockton',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14018,26,81,'Stotts City',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14019,26,988,'Stoutland',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14020,26,59,'Stoutsville',1,155,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14021,26,82,'Stover',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14022,26,63,'Strafford',1,124,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14023,26,466,'Strasburg',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14024,26,991,'Sturdivant',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14025,26,99,'Sturgeon',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14026,26,981,'Success',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14027,26,92,'Sullivan',1,231,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14028,26,981,'Summersville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14029,26,980,'Sumner',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14030,26,432,'Sunrise Beach',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14031,26,95,'Sweet Springs',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14032,26,82,'Syracuse',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14033,26,985,'Tallapoosa',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14034,26,977,'Taneyville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14035,26,639,'Tarkio',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14036,26,58,'Taylor',1,138,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14037,26,964,'Tebbetts',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14038,26,965,'Tecumseh',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14039,26,959,'Thayer',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14040,26,965,'Theodosia',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14041,26,968,'Thompson',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14042,26,965,'Thornfield',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14043,26,71,'Tiff',1,336,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14044,26,961,'Tiff City',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14045,26,115,'Tina',1,113,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14046,26,982,'Tipton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14047,26,386,'Treloar',1,111,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14048,26,480,'Trenton',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14049,26,465,'Trimble',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14050,26,980,'Triplett',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14051,26,147,'Troy',1,181,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14052,26,147,'Truxton',1,183,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14053,26,94,'Tunas',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14054,26,63,'Turners',1,129,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14055,26,465,'Turney',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14056,26,142,'Tuscumbia',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14057,26,965,'Udall',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14058,26,142,'Ulman',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14059,26,92,'Union',1,240,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14060,26,355,'Union Star',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14061,26,93,'Uniontown',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14062,26,308,'Unionville',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14063,26,94,'Urbana',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14064,26,28,'Urich',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14065,26,548,'Utica',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14066,26,971,'Valles Mines',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14067,26,896,'Valley Park',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14068,26,727,'Van Buren',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14069,26,968,'Vandalia',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14070,26,127,'Vanduser',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14071,26,254,'Vanzant',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14072,26,81,'Verona',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14073,26,82,'Versailles',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14074,26,843,'Viburnum',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14075,26,967,'Vichy',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14076,26,967,'Vienna',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14077,26,92,'Villa Ridge',1,246,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14078,26,49,'Vista',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14079,26,843,'Vulcan',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14080,26,427,'Waco',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14081,26,984,'Waldron',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14082,26,756,'Walker',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14083,26,63,'Walnut Grove',1,132,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14084,26,977,'Walnut Shade',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14085,26,431,'Wappapello',1,163,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14086,26,978,'Wardell',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14087,26,135,'Warrensburg',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14088,26,386,'Warrenton',1,119,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14089,26,107,'Warsaw',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14090,26,880,'Washburn',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14091,26,92,'Washington',1,249,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14092,26,965,'Wasola',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14093,26,639,'Watson',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14094,26,128,'Waverly',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14095,26,100,'Wayland',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14096,26,136,'Waynesville',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14097,26,355,'Weatherby',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14098,26,990,'Weaubleau',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14099,26,427,'Webb City',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14100,26,128,'Wellington',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14101,26,72,'Wellsville',1,228,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14102,26,81,'Wentworth',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14103,26,754,'Wentzville',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14104,26,97,'Wesco',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14105,26,754,'West Alton',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14106,26,979,'West Plains',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14107,26,639,'Westboro',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14108,26,984,'Weston',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14109,26,653,'Westphalia',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14110,26,990,'Wheatland',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14111,26,880,'Wheaton',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14112,26,548,'Wheeling',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14113,26,135,'Whiteman Air Force Base',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14114,26,963,'Whiteoak',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14115,26,147,'Whiteside',1,197,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14116,26,958,'Whitewater',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14117,26,63,'Willard',1,141,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14118,26,964,'Williamsburg',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14119,26,528,'Williamstown',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14120,26,431,'Williamsville',1,177,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14121,26,979,'Willow Springs',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14122,26,28,'Windsor',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14123,26,94,'Windyville',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14124,26,147,'Winfield',1,199,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14125,26,611,'Winigan',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14126,26,970,'Winona',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14127,26,610,'Winston',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14128,26,102,'Wolf Island',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14129,26,973,'Wooldridge',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14130,26,441,'Worth',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14131,26,308,'Worthington',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14132,26,386,'Wright City',1,128,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14133,26,100,'Wyaconda',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14134,26,102,'Wyatt',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14135,26,981,'Yukon',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14136,26,991,'Zalma',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14137,26,965,'Zanoni',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14138,25,128,'Abbeville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14139,25,59,'Aberdeen',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14140,25,70,'Ackerman',1,51,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(14141,25,994,'Algoma',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14142,25,995,'Alligator',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14143,25,59,'Amory',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14144,25,996,'Anguilla',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14145,25,71,'Arcola',1,841,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(14146,25,997,'Arkabutla',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14147,25,90,'Artesia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14148,25,107,'Ashland',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14149,25,71,'Avon',1,1298,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(14150,25,44,'Bailey',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14151,25,51,'Baldwyn',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14152,25,37,'Banner',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14153,25,788,'Bassfield',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14154,25,998,'Batesville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14155,25,446,'Bay Saint Louis',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14156,25,427,'Bay Springs',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14157,25,93,'Beaumont',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14158,25,59,'Becker',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14159,25,51,'Belden',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14160,25,420,'Belen',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14161,25,442,'Bellefontaine',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14162,25,999,'Belmont',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14163,25,1000,'Belzoni',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14164,25,995,'Benoit',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14165,25,1001,'Benton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14166,25,1001,'Bentonia',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14167,25,995,'Beulah',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14168,25,37,'Big Creek',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14169,25,502,'Biloxi',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14170,25,1002,'Blue Mountain',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14171,25,131,'Blue Springs',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14172,25,147,'Bogue Chitto',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14173,25,1003,'Bolton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14174,25,1004,'Booneville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14175,25,995,'Boyle',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14176,25,1005,'Brandon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14177,25,738,'Braxton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14178,25,147,'Brookhaven',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14179,25,1006,'Brooklyn',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14180,25,1007,'Brooksville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14181,25,37,'Bruce',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14182,25,431,'Buckatunna',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14183,25,92,'Bude',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14184,25,999,'Burnsville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14185,25,35,'Byhalia',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14186,25,1003,'Byram',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14187,25,59,'Caledonia',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14188,25,37,'Calhoun City',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14189,25,68,'Camden',1,3873,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(14190,25,68,'Canton',1,4023,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(14191,25,1008,'Carriere',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14192,25,115,'Carrollton',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14193,25,788,'Carson',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14194,25,1009,'Carthage',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14195,25,996,'Cary',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14196,25,1010,'Cascilla',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14197,25,48,'Cedarbluff',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14198,25,347,'Centreville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14199,25,1010,'Charleston',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14200,25,55,'Chatawa',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14201,25,71,'Chatham',1,4714,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(14202,25,137,'Chunky',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14203,25,431,'Clara',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14204,25,1011,'Clarksdale',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14205,25,995,'Cleveland',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14206,25,1003,'Clinton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14207,25,1011,'Coahoma',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14208,25,1012,'Coffeeville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14209,25,115,'Coila',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14210,25,997,'Coldwater',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14211,25,43,'Collins',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14212,25,44,'Collinsville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14213,25,58,'Columbia',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14214,25,90,'Columbus',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14215,25,998,'Como',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14216,25,137,'Conehatta',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14217,25,1013,'Corinth',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14218,25,998,'Courtland',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14219,25,90,'Crawford',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14220,25,998,'Crenshaw',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14221,25,1014,'Crosby',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14222,25,420,'Crowder',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14223,25,307,'Cruger',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14224,25,1015,'Crystal Springs',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14225,25,738,'D Lo',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14226,25,44,'Daleville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14227,25,420,'Darling',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14228,25,1016,'De Kalb',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14229,25,137,'Decatur',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14230,25,996,'Delta City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14231,25,999,'Dennis',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14232,25,37,'Derma',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14233,25,446,'Diamondhead',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14234,25,502,'Diberville',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14235,25,1017,'Doddsville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14236,25,1017,'Drew',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14237,25,1011,'Dublin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14238,25,72,'Duck Hill',1,7381,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(14239,25,1002,'Dumas',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14240,25,995,'Duncan',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14241,25,1018,'Dundee',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14242,25,307,'Durant',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14243,25,424,'Eastabuchie',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14244,25,994,'Ecru',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14245,25,1003,'Edwards',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14246,25,1019,'Elliott',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14247,25,424,'Ellisville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14248,25,1010,'Enid',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14249,25,40,'Enterprise',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14250,25,66,'Escatawpa',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14251,25,1020,'Ethel',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14252,25,131,'Etta',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14253,25,442,'Eupora',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14254,25,420,'Falcon',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14255,25,1002,'Falkner',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14256,25,1011,'Farrell',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14257,25,30,'Fayette',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14258,25,55,'Fernwood',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14259,25,68,'Flora',1,9140,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(14260,25,1005,'Florence',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14261,25,1005,'Flowood',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14262,25,127,'Forest',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14263,25,58,'Foxworth',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14264,25,70,'French Camp',1,9671,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(14265,25,1011,'Friars Point',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14266,25,1021,'Fulton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14267,25,1015,'Gallman',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14268,25,59,'Gattman',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14269,25,66,'Gautier',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14270,25,1015,'Georgetown',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14271,25,1013,'Glen',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14272,25,71,'Glen Allan',1,10273,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(14273,25,1010,'Glendora',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14274,25,1014,'Gloster',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14275,25,1021,'Golden',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14276,25,307,'Goodman',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14277,25,1019,'Gore Springs',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14278,25,1022,'Grace',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14279,25,71,'Greenville',1,10969,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(14280,25,1023,'Greenwood',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14281,25,59,'Greenwood Springs',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14282,25,1019,'Grenada',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14283,25,502,'Gulfport',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14284,25,995,'Gunnison',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14285,25,51,'Guntown',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14286,25,59,'Hamilton',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14287,25,127,'Harperville',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14288,25,30,'Harriston',1,118,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14289,25,738,'Harrisville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14290,25,1006,'Hattiesburg',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14291,25,1015,'Hazlehurst',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14292,25,427,'Heidelberg',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14293,25,762,'Hermanville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14294,25,1024,'Hernando',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14295,25,137,'Hickory',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14296,25,107,'Hickory Flat',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14297,25,127,'Hillsboro',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14298,25,1019,'Holcomb',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14299,25,71,'Hollandale',1,12308,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(14300,25,1001,'Holly Bluff',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14301,25,1017,'Holly Ridge',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14302,25,35,'Holly Springs',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14303,25,1024,'Horn Lake',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14304,25,460,'Houlka',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14305,25,460,'Houston',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14306,25,66,'Hurley',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14307,25,997,'Independence',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14308,25,1017,'Indianola',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14309,25,1017,'Inverness',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14310,25,1000,'Isola',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14311,25,1023,'Itta Bena',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14312,25,999,'Iuka',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14313,25,1003,'Jackson',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14314,25,1005,'Jackson',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14315,25,81,'Jayess',1,13254,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(14316,25,1011,'Jonestown',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14317,25,72,'Kilmichael',1,13857,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(14318,25,446,'Kiln',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14319,25,58,'Kokomo',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14320,25,1020,'Kosciusko',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14321,25,127,'Lake',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14322,25,1024,'Lake Cormorant',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14323,25,446,'Lakeshore',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14324,25,35,'Lamar',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14325,25,420,'Lambert',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14326,25,44,'Lauderdale',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14327,25,424,'Laurel',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14328,25,137,'Lawrence',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14329,25,63,'Leakesville',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14330,25,71,'Leland',1,14876,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(14331,25,1009,'Lena',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14332,25,307,'Lexington',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14333,25,1014,'Liberty',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14334,25,137,'Little Rock',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14335,25,502,'Long Beach',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14336,25,30,'Lorman',1,15564,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14337,25,427,'Louin',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14338,25,1000,'Louise',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14339,25,31,'Louisville',1,15616,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14340,25,1025,'Lucedale',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14341,25,127,'Ludlow',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14342,25,1011,'Lula',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14343,25,60,'Lumberton',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14344,25,1011,'Lyon',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14345,25,442,'Maben',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14346,25,1007,'Macon',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14347,25,1009,'Madden',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14348,25,68,'Madison',1,15942,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(14349,25,738,'Magee',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14350,25,55,'Magnolia',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14351,25,1021,'Mantachie',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14352,25,442,'Mantee',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14353,25,1004,'Marietta',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14354,25,44,'Marion',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14355,25,420,'Marks',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14356,25,442,'Mathiston',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14357,25,1022,'Mayersville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14358,25,90,'Mayhew',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14359,25,1020,'Mc Adams',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14360,25,92,'Mc Call Creek',1,143,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14361,25,115,'Mc Carley',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14362,25,1020,'Mc Cool',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14363,25,144,'Mc Henry',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14364,25,63,'Mc Lain',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14365,25,1008,'Mc Neill',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14366,25,55,'Mccomb',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14367,25,92,'Meadville',1,144,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14368,25,738,'Mendenhall',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14369,25,44,'Meridian',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14370,25,995,'Merigold',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14371,25,71,'Metcalfe',1,17144,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(14372,25,107,'Michigan City',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14373,25,1000,'Midnight',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14374,25,1023,'Minter City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14375,25,1026,'Mississippi State',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14376,25,640,'Mize',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14377,25,1023,'Money',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14378,25,81,'Monticello',1,17817,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(14379,25,48,'Montpelier',1,17841,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14380,25,51,'Mooreville',1,17908,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14381,25,1017,'Moorhead',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14382,25,1023,'Morgan City',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14383,25,127,'Morton',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14384,25,424,'Moselle',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14385,25,427,'Moss',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14386,25,66,'Moss Point',1,140,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14387,25,995,'Mound Bayou',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14388,25,43,'Mount Olive',1,18181,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14389,25,35,'Mount Pleasant',1,18192,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14390,25,131,'Myrtle',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14391,25,235,'Natchez',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14392,25,63,'Neely',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14393,25,1024,'Nesbit',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14394,25,1021,'Nettleton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14395,25,131,'New Albany',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14396,25,93,'New Augusta',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14397,25,1004,'New Site',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14398,25,81,'Newhebron',1,19009,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(14399,25,137,'Newton',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14400,25,1008,'Nicholson',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14401,25,115,'North Carrollton',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14402,25,31,'Noxapater',1,19519,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14403,25,81,'Oak Vale',1,19588,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(14404,25,1012,'Oakland',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14405,25,66,'Ocean Springs',1,151,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14406,25,460,'Okolona',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14407,25,1024,'Olive Branch',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14408,25,55,'Osyka',1,20159,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14409,25,424,'Ovett',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14410,25,128,'Oxford',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14411,25,995,'Pace',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14412,25,40,'Pachuta',1,19,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(14413,25,996,'Panther Burn',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14414,25,1017,'Parchman',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14415,25,128,'Paris',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14416,25,66,'Pascagoula',1,157,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(14417,25,502,'Pass Christian',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14418,25,762,'Pattison',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14419,25,427,'Paulding',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14420,25,1005,'Pearl',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14421,25,446,'Pearlington',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14422,25,1005,'Pelahatchie',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14423,25,144,'Perkinston',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14424,25,1006,'Petal',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14425,25,48,'Pheba',1,102,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(14426,25,1027,'Philadelphia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14427,25,1010,'Philipp',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14428,25,1008,'Picayune',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14429,25,307,'Pickens',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14430,25,1005,'Piney Woods',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14431,25,738,'Pinola',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14432,25,37,'Pittsboro',1,59,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(14433,25,51,'Plantersville',1,69,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(14434,25,1003,'Pocahontas',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14435,25,994,'Pontotoc',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14436,25,998,'Pope',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14437,25,1008,'Poplarville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14438,25,762,'Port Gibson',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14439,25,1016,'Porterville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14440,25,35,'Potts Camp',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14441,25,59,'Prairie',1,129,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14442,25,788,'Prentiss',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14443,25,1016,'Preston',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14444,25,1005,'Puckett',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14445,25,127,'Pulaski',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14446,25,60,'Purvis',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14447,25,40,'Quitman',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14448,25,640,'Raleigh',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14449,25,994,'Randolph',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14450,25,1003,'Raymond',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14451,25,35,'Red Banks',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14452,25,386,'Redwood',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14453,25,1011,'Rena Lara',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14454,25,1005,'Richland',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14455,25,93,'Richton',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14456,25,68,'Ridgeland',1,134,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14457,25,1013,'Rienzi',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14458,25,1002,'Ripley',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14459,25,1018,'Robinsonville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14460,25,996,'Rolling Fork',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14461,25,1017,'Rome',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14462,25,427,'Rose Hill',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14463,25,995,'Rosedale',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14464,25,92,'Roxie',1,201,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14465,25,1017,'Ruleville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14466,25,147,'Ruth',1,148,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14467,25,1020,'Sallis',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14468,25,51,'Saltillo',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14469,25,424,'Sandersville',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14470,25,1005,'Sandhill',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14471,25,58,'Sandy Hook',1,123,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14472,25,998,'Sarah',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14473,25,998,'Sardis',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14474,25,1001,'Satartia',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14475,25,502,'Saucier',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14476,25,1023,'Schlater',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14477,25,1012,'Scobey',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14478,25,1016,'Scooba',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14479,25,995,'Scott',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14480,25,127,'Sebastopol',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14481,25,43,'Seminary',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14482,25,997,'Senatobia',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14483,25,51,'Shannon',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14484,25,68,'Sharon',1,142,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14485,25,995,'Shaw',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14486,25,995,'Shelby',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14487,25,1011,'Sherard',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14488,25,994,'Sherman',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14489,25,40,'Shubuta',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14490,25,1007,'Shuqualak',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14491,25,235,'Sibley',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14492,25,115,'Sidon',1,103,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14493,25,1000,'Silver City',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14494,25,81,'Silver Creek',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14495,25,37,'Slate Spring',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14496,25,1018,'Sledge',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14497,25,1014,'Smithdale',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14498,25,59,'Smithville',1,148,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14499,25,81,'Sontag',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14500,25,424,'Soso',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14501,25,1024,'Southaven',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14502,25,1005,'Star',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14503,25,1026,'Starkville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14504,25,63,'State Line',1,123,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14505,25,90,'Steens',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14506,25,446,'Stennis Space Center',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14507,25,72,'Stewart',1,206,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14508,25,71,'Stoneville',1,328,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14509,25,40,'Stonewall',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14510,25,427,'Stringer',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14511,25,1026,'Sturgis',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14512,25,55,'Summit',1,102,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14513,25,1010,'Sumner',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14514,25,60,'Sumrall',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14515,25,1017,'Sunflower',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14516,25,1010,'Swan Lake',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14517,25,1023,'Swiftown',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14518,25,128,'Taylor',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14519,25,640,'Taylorsville',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14520,25,307,'Tchula',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14521,25,1003,'Terry',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14522,25,994,'Thaxton',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14523,25,1009,'Thomastown',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14524,25,1019,'Tie Plant',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14525,25,1012,'Tillatoba',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14526,25,1001,'Tinsley',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14527,25,1002,'Tiplersville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14528,25,1010,'Tippo',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14529,25,999,'Tishomingo',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14530,25,128,'Toccopola',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14531,25,44,'Toomsuba',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14532,25,1003,'Tougaloo',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14533,25,460,'Trebloc',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14534,25,1021,'Tremont',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14535,25,128,'Tula',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14536,25,1018,'Tunica',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14537,25,51,'Tupelo',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14538,25,1010,'Tutwiler',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14539,25,1028,'Tylertown',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14540,25,1027,'Union',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14541,25,30,'Union Church',1,275,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14542,25,128,'University',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14543,25,1003,'Utica',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14544,25,115,'Vaiden',1,117,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14545,25,1022,'Valley Park',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14546,25,460,'Van Vleet',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14547,25,420,'Vance',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14548,25,66,'Vancleave',1,200,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14549,25,37,'Vardaman',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14550,25,1001,'Vaughan',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14551,25,51,'Verona',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14552,25,386,'Vicksburg',1,113,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14553,25,35,'Victoria',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14554,25,427,'Vossburg',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14555,25,1024,'Walls',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14556,25,1002,'Walnut',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14557,25,1009,'Walnut Grove',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14558,25,442,'Walthall',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14559,25,235,'Washington',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14560,25,1012,'Water Valley',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14561,25,35,'Waterford',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14562,25,446,'Waveland',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14563,25,431,'Waynesboro',1,169,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14564,25,71,'Wayside',1,370,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14565,25,1010,'Webb',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14566,25,70,'Weir',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14567,25,1015,'Wesson',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14568,25,307,'West',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14569,25,48,'West Point',1,126,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14570,25,1004,'Wheeler',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14571,25,1005,'Whitfield',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14572,25,144,'Wiggins',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14573,25,72,'Winona',1,233,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14574,25,995,'Winstonville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14575,25,71,'Winterville',1,392,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14576,25,460,'Woodland',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14577,25,347,'Woodville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14578,25,1001,'Yazoo City',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14579,27,1029,'Absarokee',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14580,27,1030,'Acton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14581,27,261,'Alberton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14582,27,68,'Alder',1,292,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(14583,27,727,'Alzada',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14584,27,1031,'Anaconda',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14585,27,1032,'Angela',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14586,27,682,'Antelope',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14587,27,216,'Arlee',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14588,27,1032,'Ashland',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14589,27,1033,'Augusta',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14590,27,728,'Avon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14591,27,1034,'Babb',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14592,27,1035,'Bainville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14593,27,1036,'Baker',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14594,27,1030,'Ballantine',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14595,27,30,'Basin',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14596,27,1037,'Bearcreek',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14597,27,1037,'Belfry',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14598,27,583,'Belgrade',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14599,27,1038,'Belt',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14600,27,1039,'Biddle',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14601,27,216,'Big Arm',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14602,27,1040,'Big Sandy',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14603,27,583,'Big Sky',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14604,27,1041,'Big Timber',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14605,27,1042,'Bigfork',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14606,27,1043,'Bighorn',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14607,27,1030,'Billings',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14608,27,1032,'Birney',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14609,27,1038,'Black Eagle',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14610,27,407,'Bloomfield',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14611,27,1044,'Bonner',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14612,27,30,'Boulder',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14613,27,1045,'Box Elder',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14614,27,1037,'Boyd',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14615,27,727,'Boyes',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14616,27,583,'Bozeman',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14617,27,1046,'Brady',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14618,27,1037,'Bridger',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14619,27,1039,'Broadus',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14620,27,1030,'Broadview',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14621,27,1035,'Brockton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14622,27,1047,'Brockway',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14623,27,1034,'Browning',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14624,27,240,'Brusett',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14625,27,1048,'Buffalo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14626,27,1049,'Busby',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14627,27,1050,'Butte',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14628,27,531,'Bynum',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14629,27,68,'Cameron',1,3889,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(14630,27,1033,'Canyon Creek',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14631,27,727,'Capitol',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14632,27,30,'Cardwell',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14633,27,1040,'Carter',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14634,27,1038,'Cascade',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14635,27,216,'Charlo',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14636,27,311,'Chester',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14637,27,514,'Chinook',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14638,27,531,'Choteau',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14639,27,1047,'Circle',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14640,27,30,'Clancy',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14641,27,1044,'Clinton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14642,27,227,'Clyde Park',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14643,27,1048,'Coffee Creek',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14644,27,240,'Cohagen',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14645,27,1032,'Colstrip',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14646,27,1042,'Columbia Falls',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14647,27,1029,'Columbus',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14648,27,1044,'Condon',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14649,27,1051,'Conner',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14650,27,1046,'Conrad',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14651,27,227,'Cooke City',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14652,27,1042,'Coram',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14653,27,1051,'Corvallis',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14654,27,577,'Crane',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14655,27,1049,'Crow Agency',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14656,27,1035,'Culbertson',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14657,27,1030,'Custer',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14658,27,1034,'Cut Bank',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14659,27,682,'Dagmar',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14660,27,1051,'Darby',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14661,27,216,'Dayton',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14662,27,261,'De Borgia',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14663,27,1049,'Decker',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14664,27,728,'Deer Lodge',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14665,27,1052,'Dell',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14666,27,1048,'Denton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14667,27,1052,'Dillon',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14668,27,1050,'Divide',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14669,27,1053,'Dixon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14670,27,111,'Dodson',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14671,27,1054,'Drummond',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14672,27,1046,'Dupuyer',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14673,27,531,'Dutton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14674,27,1034,'East Glacier Park',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14675,27,1033,'East Helena',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14676,27,1037,'Edgar',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14677,27,727,'Ekalaka',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14678,27,728,'Elliston',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14679,27,216,'Elmo',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14680,27,227,'Emigrant',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14681,27,68,'Ennis',1,8413,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(14682,27,1042,'Essex',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14683,27,1055,'Ethridge',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14684,27,147,'Eureka',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14685,27,531,'Fairfield',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14686,27,577,'Fairview',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14687,27,121,'Fallon',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14688,27,1029,'Fishtail',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14689,27,1056,'Flaxville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14690,27,1051,'Florence',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14691,27,1040,'Floweree',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14692,27,1048,'Forest Grove',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14693,27,1032,'Forsyth',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14694,27,1040,'Fort Benton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14695,27,1033,'Fort Harrison',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14696,27,525,'Fort Peck',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14697,27,1038,'Fort Shaw',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14698,27,147,'Fortine',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14699,27,525,'Frazer',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14700,27,1044,'Frenchtown',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14701,27,1035,'Froid',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14702,27,1037,'Fromberg',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14703,27,1055,'Galata',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14704,27,583,'Gallatin Gateway',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14705,27,227,'Gardiner',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14706,27,728,'Garrison',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14707,27,1049,'Garryowen',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14708,27,1040,'Geraldine',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14709,27,1057,'Geyser',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14710,27,1045,'Gildford',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14711,27,525,'Glasgow',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14712,27,1052,'Glen',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14713,27,407,'Glendive',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14714,27,525,'Glentana',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14715,27,728,'Gold Creek',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14716,27,1051,'Grantsdale',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14717,27,1048,'Grass Range',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14718,27,1038,'Great Falls',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14719,27,1041,'Greycliff',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14720,27,1054,'Hall',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14721,27,1051,'Hamilton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14722,27,727,'Hammond',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14723,27,1049,'Hardin',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14724,27,514,'Harlem',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14725,27,1058,'Harlowton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14726,27,68,'Harrison',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14727,27,1032,'Hathaway',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14728,27,261,'Haugan',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14729,27,1045,'Havre',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14730,27,514,'Hays',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14731,27,1046,'Heart Butte',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14732,27,1033,'Helena',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14733,27,728,'Helmville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14734,27,1053,'Heron',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14735,27,1040,'Highwood',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14736,27,1048,'Hilger',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14737,27,1045,'Hingham',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14738,27,525,'Hinsdale',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14739,27,1057,'Hobson',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14740,27,514,'Hogeland',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14741,27,682,'Homestead',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14742,27,1053,'Hot Springs',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14743,27,1042,'Hungry Horse',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14744,27,1030,'Huntley',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14745,27,1044,'Huson',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14746,27,1043,'Hysham',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14747,27,1032,'Ingomar',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14748,27,1045,'Inverness',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14749,27,278,'Ismay',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14750,27,1052,'Jackson',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14751,27,30,'Jefferson City',1,140,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14752,27,1037,'Joliet',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14753,27,311,'Joplin',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14754,27,240,'Jordan',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14755,27,1058,'Judith Gap',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14756,27,1042,'Kalispell',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14757,27,1055,'Kevin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14758,27,1042,'Kila',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14759,27,278,'Kinsey',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14760,27,1045,'Kremlin',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14761,27,1042,'Lake Mc Donald',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14762,27,1042,'Lakeside',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14763,27,577,'Lambert',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14764,27,1032,'Lame Deer',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14765,27,525,'Larslan',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14766,27,1030,'Laurel',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14767,27,1059,'Lavina',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14768,27,1046,'Ledger',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14769,27,1048,'Lewistown',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14770,27,147,'Libby',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14771,27,1052,'Lima',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14772,27,1033,'Lincoln',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14773,27,407,'Lindsay',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14774,27,227,'Livingston',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14775,27,514,'Lloyd',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14776,27,1049,'Lodge Grass',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14777,27,1044,'Lolo',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14778,27,1040,'Loma',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14779,27,1053,'Lonepine',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14780,27,111,'Loring',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14781,27,311,'Lothair',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14782,27,1038,'Malmstrom A F B',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14783,27,111,'Malta',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14784,27,583,'Manhattan',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14785,27,1042,'Marion',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14786,27,1042,'Martin City',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14787,27,1060,'Martinsdale',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14788,27,1033,'Marysville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14789,27,68,'Mc Allister',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14790,27,1041,'Mc Leod',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14791,27,682,'Medicine Lake',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14792,27,1050,'Melrose',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14793,27,1061,'Melstone',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14794,27,1041,'Melville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14795,27,121,'Mildred',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14796,27,278,'Miles City',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14797,27,1044,'Milltown',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14798,27,1044,'Missoula',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14799,27,1057,'Moccasin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14800,27,1030,'Molt',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14801,27,1038,'Monarch',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14802,27,1048,'Moore',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14803,27,240,'Mosby',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14804,27,1061,'Musselshell',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14805,27,525,'Nashua',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14806,27,1038,'Neihart',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14807,27,68,'Norris',1,112,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14808,27,1053,'Noxon',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14809,27,1029,'Nye',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14810,27,1055,'Oilmont',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14811,27,1039,'Olive',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14812,27,1042,'Olney',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14813,27,525,'Opheim',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14814,27,1039,'Otter',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14815,27,682,'Outlook',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14816,27,728,'Ovando',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14817,27,216,'Pablo',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14818,27,1053,'Paradise',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14819,27,1029,'Park City',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14820,27,1056,'Peerless',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14821,27,531,'Pendroy',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14822,27,1054,'Philipsburg',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14823,27,1051,'Pinesdale',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14824,27,1053,'Plains',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14825,27,682,'Plentywood',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14826,27,1036,'Plevna',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14827,27,1052,'Polaris',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14828,27,1042,'Polebridge',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14829,27,216,'Polson',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14830,27,1030,'Pompeys Pillar',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14831,27,68,'Pony',1,128,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(14832,27,1035,'Poplar',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14833,27,1039,'Powderville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14834,27,531,'Power',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14835,27,227,'Pray',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14836,27,216,'Proctor',1,102,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14837,27,1049,'Pryor',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14838,27,1062,'Radersburg',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14839,27,1050,'Ramsay',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14840,27,1029,'Rapelje',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14841,27,216,'Ravalli',1,104,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14842,27,682,'Raymond',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14843,27,1057,'Raynesford',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14844,27,1037,'Red Lodge',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14845,27,682,'Redstone',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14846,27,1029,'Reed Point',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14847,27,682,'Reserve',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14848,27,147,'Rexford',1,141,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14849,27,407,'Richey',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14850,27,525,'Richland',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14851,27,1060,'Ringling',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14852,27,1037,'Roberts',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14853,27,216,'Rollins',1,106,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14854,27,216,'Ronan',1,107,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14855,27,1037,'Roscoe',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14856,27,1032,'Rosebud',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14857,27,1061,'Roundup',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14858,27,1048,'Roy',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14859,27,1045,'Rudyard',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14860,27,1059,'Ryegate',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14861,27,111,'Saco',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14862,27,216,'Saint Ignatius',1,111,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14863,27,525,'Saint Marie',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14864,27,261,'Saint Regis',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14865,27,1049,'Saint Xavier',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14866,27,261,'Saltese',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14867,27,1038,'Sand Coulee',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14868,27,240,'Sand Springs',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14869,27,1043,'Sanders',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14870,27,577,'Savage',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14871,27,1056,'Scobey',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14872,27,1044,'Seeley Lake',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14873,27,1058,'Shawmut',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14874,27,1055,'Shelby',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14875,27,1030,'Shepherd',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14876,27,68,'Sheridan',1,143,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14877,27,577,'Sidney',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14878,27,227,'Silver Gate',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14879,27,68,'Silver Star',1,144,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14880,27,1038,'Simms',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14881,27,1042,'Somers',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14882,27,227,'Springdale',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14883,27,1057,'Stanford',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14884,27,1051,'Stevensville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14885,27,1038,'Stockett',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14886,27,147,'Stryker',1,168,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14887,27,1051,'Sula',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14888,27,1032,'Sumatra',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14889,27,1038,'Sun River',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14890,27,1055,'Sunburst',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14891,27,261,'Superior',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14892,27,1055,'Sweet Grass',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14893,27,1063,'Teigen',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14894,27,121,'Terry',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14895,27,1053,'Thompson Falls',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14896,27,583,'Three Forks',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14897,27,1062,'Toston',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14898,27,1062,'Townsend',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14899,27,147,'Trego',1,179,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14900,27,1053,'Trout Creek',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14901,27,147,'Troy',1,182,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14902,27,514,'Turner',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14903,27,68,'Twin Bridges',1,157,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14904,27,1058,'Two Dot',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14905,27,1038,'Ulm',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14906,27,1046,'Valier',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14907,27,525,'Vandalia',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14908,27,1038,'Vaughn',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14909,27,1051,'Victor',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14910,27,1047,'Vida',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14911,27,68,'Virginia City',1,159,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14912,27,278,'Volborg',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14913,27,1031,'Warm Springs',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14914,27,1042,'West Glacier',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14915,27,583,'West Yellowstone',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14916,27,682,'Westby',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14917,27,1060,'White Sulphur Springs',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14918,27,1042,'Whitefish',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14919,27,30,'Whitehall',1,295,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14920,27,1056,'Whitetail',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14921,27,111,'Whitewater',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14922,27,311,'Whitlash',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14923,27,1064,'Wibaux',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14924,27,1036,'Willard',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14925,27,583,'Willow Creek',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14926,27,227,'Wilsall',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14927,27,1048,'Winifred',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14928,27,1063,'Winnett',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14929,27,1062,'Winston',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14930,27,1052,'Wisdom',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14931,27,1052,'Wise River',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14932,27,1033,'Wolf Creek',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14933,27,1035,'Wolf Point',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14934,27,1030,'Worden',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14935,27,1049,'Wyola',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14936,27,1049,'Yellowtail',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14937,27,111,'Zortman',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14938,27,514,'Zurich',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14939,34,1065,'Aberdeen',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14940,34,1066,'Advance',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14941,34,1067,'Ahoskie',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14942,34,1068,'Alamance',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14943,34,1069,'Albemarle',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14944,34,1070,'Albertson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14945,34,1071,'Alexander',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14946,34,1072,'Alexis',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14947,34,1073,'Alliance',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14948,34,1074,'Almond',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14949,34,1068,'Altamahaw',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14950,34,73,'Andrews',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14951,34,1075,'Angier',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14952,34,1076,'Ansonville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14953,34,1077,'Apex',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14954,34,1073,'Arapahoe',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14955,34,1078,'Ararat',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14956,34,1071,'Arden',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14957,34,1079,'Ash',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14958,34,91,'Asheboro',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14959,34,1071,'Asheville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14960,34,1080,'Atkinson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14961,34,1081,'Atlantic',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14962,34,1081,'Atlantic Beach',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14963,34,1082,'Aulander',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14964,34,1083,'Aurora',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14965,34,1084,'Autryville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14966,34,1085,'Avon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14967,34,1086,'Ayden',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14968,34,1087,'Aydlett',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14969,34,1069,'Badin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14970,34,1088,'Bahama',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14971,34,1089,'Bailey',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14972,34,360,'Bakersville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14973,34,66,'Balsam',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14974,34,1090,'Balsam Grove',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14975,34,1091,'Banner Elk',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14976,34,1087,'Barco',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14977,34,1092,'Barium Springs',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14978,34,1071,'Barnardsville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14979,34,1093,'Barnesville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14980,34,567,'Bat Cave',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14981,34,1083,'Bath',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14982,34,1094,'Battleboro',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14983,34,1073,'Bayboro',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14984,34,369,'Bear Creek',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14985,34,1081,'Beaufort',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14986,34,402,'Belews Creek',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14987,34,1083,'Belhaven',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14988,34,1086,'Bellarthur',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14989,34,1072,'Belmont',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14990,34,1095,'Belvidere',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14991,34,369,'Bennett',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14992,34,1096,'Benson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14993,34,1072,'Bessemer City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14994,34,402,'Bethania',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14995,34,1086,'Bethel',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14996,34,1070,'Beulaville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14997,34,72,'Biscoe',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14998,34,634,'Black Creek',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(14999,34,1071,'Black Mountain',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15000,34,1097,'Bladenboro',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15001,34,1098,'Blanch',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15002,34,1083,'Blounts Creek',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15003,34,1099,'Blowing Rock',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15004,34,150,'Boiling Springs',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15005,34,1079,'Bolivia',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15006,34,1100,'Bolton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15007,34,369,'Bonlee',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15008,34,443,'Boomer',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15009,34,1099,'Boone',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15010,34,1101,'Boonville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15011,34,1102,'Bostic',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15012,34,48,'Brasstown',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15013,34,1090,'Brevard',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15014,34,1103,'Bridgeton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15015,34,51,'Broadway',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15016,34,1104,'Browns Summit',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15017,34,1100,'Brunswick',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15018,34,1074,'Bryson City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15019,34,1075,'Buies Creek',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15020,34,1105,'Bullock',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15021,34,92,'Bunn',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15022,34,1075,'Bunnlevel',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15023,34,1080,'Burgaw',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15024,34,1068,'Burlington',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15025,34,1106,'Burnsville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15026,34,1105,'Butner',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15027,34,1085,'Buxton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15028,34,369,'Bynum',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15029,34,1079,'Calabash',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15030,34,1070,'Calypso',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15031,34,432,'Camden',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15032,34,1075,'Cameron',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15033,34,1107,'Camp Lejeune',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15034,34,1071,'Candler',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15035,34,72,'Candor',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15036,34,1108,'Canton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15037,34,1102,'Caroleen',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15038,34,1109,'Carolina Beach',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15039,34,177,'Carrboro',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15040,34,1065,'Carthage',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15041,34,1077,'Cary',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15042,34,150,'Casar',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15043,34,66,'Cashiers',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15044,34,1089,'Castalia',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15045,34,1109,'Castle Hayne',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15046,34,1110,'Catawba',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15047,34,91,'Cedar Falls',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15048,34,177,'Cedar Grove',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15049,34,1081,'Cedar Island',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15050,34,1090,'Cedar Mountain',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15051,34,1100,'Cerro Gordo',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15052,34,1100,'Chadbourn',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15053,34,177,'Chapel Hill',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15054,34,1111,'Charlotte',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15055,34,1074,'Cherokee',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15056,34,1103,'Cherry Point',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15057,34,1072,'Cherryville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15058,34,1102,'Chimney Rock',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15059,34,729,'China Grove',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15060,34,1070,'Chinquapin',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15061,34,1083,'Chocowinity',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15062,34,1110,'Claremont',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15063,34,1100,'Clarendon',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15064,34,1097,'Clarkton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15065,34,1096,'Clayton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15066,34,402,'Clemmons',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15067,34,729,'Cleveland',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15068,34,1102,'Cliffside',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15069,34,1104,'Climax',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15070,34,1084,'Clinton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15071,34,1108,'Clyde',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15072,34,1075,'Coats',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15073,34,1067,'Cofield',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15074,34,1087,'Coinjock',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15075,34,1082,'Colerain',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15076,34,1104,'Colfax',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15077,34,739,'Collettsville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15078,34,1112,'Columbia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15079,34,126,'Columbus',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15080,34,424,'Comfort',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15081,34,1067,'Como',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15082,34,1113,'Concord',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15083,34,1094,'Conetoe',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15084,34,422,'Connellys Springs',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15085,34,1110,'Conover',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15086,34,1114,'Conway',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15087,34,1066,'Cooleemee',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15088,34,1115,'Corapeake',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15089,34,358,'Cordova',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15090,34,1111,'Cornelius',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15091,34,1087,'Corolla',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15092,34,1097,'Council',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15093,34,1103,'Cove City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15094,34,1072,'Cramerton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15095,34,1105,'Creedmoor',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15096,34,1116,'Creston',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15097,34,71,'Creswell',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15098,34,1091,'Crossnore',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15099,34,147,'Crouse',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15100,34,1116,'Crumpler',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15101,34,73,'Culberson',1,6308,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(15102,34,66,'Cullowhee',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15103,34,584,'Cumberland',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15104,34,51,'Cumnock',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15105,34,1080,'Currie',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15106,34,1087,'Currituck',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15107,34,1072,'Dallas',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15108,34,567,'Dana',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15109,34,1117,'Danbury',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15110,34,1111,'Davidson',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15111,34,1081,'Davis',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15112,34,1099,'Deep Gap',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15113,34,1118,'Deep Run',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15114,34,1100,'Delco',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15115,34,1119,'Denton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15116,34,147,'Denver',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15117,34,66,'Dillsboro',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15118,34,1078,'Dobson',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15119,34,1103,'Dover',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15120,34,422,'Drexel',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15121,34,1097,'Dublin',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15122,34,431,'Dudley',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15123,34,1075,'Dunn',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15124,34,1095,'Durants Neck',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15125,34,1088,'Durham',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15126,34,1065,'Eagle Springs',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15127,34,150,'Earl',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15128,34,1101,'East Bend',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15129,34,567,'East Flat Rock',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15130,34,729,'East Spencer',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15131,34,1120,'Eden',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15132,34,1121,'Edenton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15133,34,567,'Edneyville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15134,34,1083,'Edward',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15135,34,177,'Efland',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15136,34,1122,'Elizabeth City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15137,34,1097,'Elizabethtown',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15138,34,1091,'Elk Park',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15139,34,1078,'Elkin',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15140,34,1102,'Ellenboro',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15141,34,358,'Ellerbe',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15142,34,634,'Elm City',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15143,34,1068,'Elon',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15144,34,1081,'Emerald Isle',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15145,34,1123,'Enfield',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15146,34,1124,'Engelhard',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15147,34,1071,'Enka',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15148,34,1125,'Ennice',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15149,34,1103,'Ernul',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15150,34,1075,'Erwin',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15151,34,72,'Ether',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15152,34,567,'Etowah',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15153,34,1115,'Eure',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15154,34,332,'Everetts',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15155,34,1100,'Evergreen',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15156,34,1100,'Fair Bluff',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15157,34,1124,'Fairfield',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15158,34,1093,'Fairmont',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15159,34,1071,'Fairview',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15160,34,1070,'Faison',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15161,34,729,'Faith',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15162,34,584,'Falcon',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15163,34,1086,'Falkland',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15164,34,150,'Fallston',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15165,34,1086,'Farmville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15166,34,584,'Fayetteville',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15167,34,443,'Ferguson',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15168,34,567,'Flat Rock',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15169,34,1116,'Fleetwood',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15170,34,567,'Fletcher',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15171,34,164,'Fontana Dam',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15172,34,1102,'Forest City',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15173,34,584,'Fort Bragg',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15174,34,1086,'Fountain',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15175,34,1096,'Four Oaks',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15176,34,89,'Franklin',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15177,34,92,'Franklinton',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15178,34,91,'Franklinville',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15179,34,431,'Fremont',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15180,34,1085,'Frisco',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15181,34,1077,'Fuquay Varina',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15182,34,1084,'Garland',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15183,34,1077,'Garner',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15184,34,1114,'Garysburg',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15185,34,1114,'Gaston',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15186,34,1072,'Gastonia',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15187,34,1115,'Gates',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15188,34,1115,'Gatesville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15189,34,1117,'Germanton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15190,34,567,'Gerton',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15191,34,962,'Gibson',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15192,34,1104,'Gibsonville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15193,34,1125,'Glade Valley',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15194,34,422,'Glen Alpine',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15195,34,1116,'Glendale Springs',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15196,34,66,'Glenville',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15197,34,1126,'Glenwood',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15198,34,1081,'Gloucester',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15199,34,1084,'Godwin',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15200,34,729,'Gold Hill',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15201,34,431,'Goldsboro',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15202,34,369,'Goldston',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15203,34,1068,'Graham',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15204,34,1087,'Grandy',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15205,34,739,'Granite Falls',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15206,34,729,'Granite Quarry',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15207,34,1073,'Grantsboro',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15208,34,1116,'Grassy Creek',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15209,34,1106,'Green Mountain',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15210,34,1098,'Greensboro',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15211,34,1104,'Greensboro',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15212,34,1086,'Greenville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15213,34,1086,'Grifton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15214,34,1086,'Grimesland',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15215,34,150,'Grover',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15216,34,369,'Gulf',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15217,34,1123,'Halifax',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15218,34,1100,'Hallsboro',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15219,34,332,'Hamilton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15220,34,358,'Hamlet',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15221,34,1080,'Hampstead',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15222,34,1101,'Hamptonville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15223,34,1087,'Harbinger',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15224,34,1081,'Harkers Island',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15225,34,1092,'Harmony',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15226,34,1084,'Harrells',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15227,34,1067,'Harrellsville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15228,34,1102,'Harris',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15229,34,1113,'Harrisburg',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15230,34,332,'Hassell',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15231,34,1085,'Hatteras',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15232,34,1103,'Havelock',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15233,34,1068,'Haw River',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15234,34,48,'Hayesville',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15235,34,443,'Hays',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15236,34,1108,'Hazelwood',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15237,34,1127,'Henderson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15238,34,567,'Hendersonville',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15239,34,1114,'Henrico',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15240,34,1102,'Henrietta',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15241,34,1095,'Hertford',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15242,34,1110,'Hickory',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15243,34,576,'Hiddenite',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15244,34,1104,'High Point',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15245,34,1072,'High Shoals',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15246,34,1065,'Highfalls',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15247,34,89,'Highlands',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15248,34,422,'Hildebran',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15249,34,177,'Hillsborough',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15250,34,1115,'Hobbsville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15251,34,1123,'Hobgood',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15252,34,1073,'Hobucken',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15253,34,358,'Hoffman',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15254,34,1123,'Hollister',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15255,34,1107,'Holly Ridge',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15256,34,1077,'Holly Springs',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15257,34,63,'Hookerton',1,12439,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(15258,34,584,'Hope Mills',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15259,34,567,'Horse Shoe',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15260,34,68,'Hot Springs',1,12542,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(15261,34,1107,'Hubert',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15262,34,739,'Hudson',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15263,34,1111,'Huntersville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15264,34,1128,'Hurdle Mills',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15265,34,422,'Icard',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15266,34,131,'Indian Trail',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15267,34,147,'Iron Station',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15268,34,1084,'Ivanhoe',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15269,34,1114,'Jackson',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15270,34,1065,'Jackson Springs',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15271,34,1107,'Jacksonville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15272,34,1104,'Jamestown',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15273,34,332,'Jamesville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15274,34,1087,'Jarvisburg',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15275,34,1116,'Jefferson',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15276,34,422,'Jonas Ridge',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15277,34,1101,'Jonesville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15278,34,1104,'Julian',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15279,34,1113,'Kannapolis',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15280,34,1082,'Kelford',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15281,34,1097,'Kelly',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15282,34,1070,'Kenansville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15283,34,1096,'Kenly',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15284,34,402,'Kernersville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15285,34,1085,'Kill Devil Hills',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15286,34,1117,'King',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15287,34,150,'Kings Mountain',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15288,34,1118,'Kinston',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15289,34,1075,'Kipling',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15290,34,1127,'Kittrell',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15291,34,1085,'Kitty Hawk',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15292,34,1077,'Knightdale',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15293,34,1087,'Knotts Island',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15294,34,1109,'Kure Beach',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15295,34,1118,'La Grange',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15296,34,1108,'Lake Junaluska',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15297,34,1102,'Lake Lure',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15298,34,1090,'Lake Toxaway',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15299,34,1100,'Lake Waccamaw',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15300,34,1065,'Lakeview',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15301,34,729,'Landis',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15302,34,1116,'Lansing',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15303,34,150,'Lattimore',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15304,34,962,'Laurel Hill',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15305,34,1125,'Laurel Springs',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15306,34,962,'Laurinburg',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15307,34,150,'Lawndale',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15308,34,1117,'Lawsonville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15309,34,1098,'Leasburg',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15310,34,1071,'Leicester',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15311,34,1079,'Leland',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15312,34,51,'Lemon Springs',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15313,34,739,'Lenoir',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15314,34,1082,'Lewiston Woodville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15315,34,402,'Lewisville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15316,34,1119,'Lexington',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15317,34,91,'Liberty',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15318,34,1076,'Lilesville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15319,34,1075,'Lillington',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15320,34,147,'Lincolnton',1,108,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15321,34,584,'Linden',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15322,34,1091,'Linville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15323,34,422,'Linville Falls',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15324,34,1119,'Linwood',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15325,34,1126,'Little Switzerland',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15326,34,1123,'Littleton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15327,34,1069,'Locust',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15328,34,1079,'Longwood',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15329,34,92,'Louisburg',1,138,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15330,34,1072,'Lowell',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15331,34,1078,'Lowgap',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15332,34,1073,'Lowland',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15333,34,634,'Lucama',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15334,34,1093,'Lumber Bridge',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15335,34,1093,'Lumberton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15336,34,126,'Lynn',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15337,34,1094,'Macclesfield',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15338,34,386,'Macon',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15339,34,1120,'Madison',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15340,34,1108,'Maggie Valley',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15341,34,1070,'Magnolia',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15342,34,1110,'Maiden',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15343,34,1075,'Mamers',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15344,34,1085,'Manns Harbor',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15345,34,1127,'Manson',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15346,34,1085,'Manteo',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15347,34,1087,'Maple',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15348,34,1080,'Maple Hill',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15349,34,73,'Marble',1,16264,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(15350,34,1114,'Margarettsville',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15351,34,1093,'Marietta',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15352,34,1126,'Marion',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15353,34,68,'Mars Hill',1,16410,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(15354,34,68,'Marshall',1,16421,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(15355,34,1081,'Marshallberg',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15356,34,131,'Marshville',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15357,34,358,'Marston',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15358,34,1111,'Matthews',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15359,34,131,'Matthews',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15360,34,63,'Maury',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15361,34,1093,'Maxton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15362,34,1120,'Mayodan',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15363,34,424,'Maysville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15364,34,1072,'Mc Adenville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15365,34,1076,'Mc Farlan',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15366,34,443,'Mc Grady',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15367,34,1104,'Mc Leansville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15368,34,1107,'Mccutcheon Field',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15369,34,1068,'Mebane',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15370,34,1073,'Merritt',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15371,34,1082,'Merry Hill',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15372,34,1106,'Micaville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15373,34,1096,'Micro',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15374,34,1127,'Middleburg',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15375,34,1089,'Middlesex',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15376,34,1113,'Midland',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15377,34,1107,'Midway Park',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15378,34,126,'Mill Spring',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15379,34,443,'Millers Creek',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15380,34,567,'Mills River',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15381,34,1098,'Milton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15382,34,270,'Milwaukee',1,17502,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15383,34,131,'Mineral Springs',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15384,34,1091,'Minneapolis',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15385,34,1069,'Misenheimer',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15386,34,1066,'Mocksville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15387,34,369,'Moncure',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15388,34,131,'Monroe',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15389,34,1091,'Montezuma',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15390,34,1071,'Montreat',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15391,34,150,'Mooresboro',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15392,34,1092,'Mooresville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15393,34,443,'Moravian Falls',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15394,34,1081,'Morehead City',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15395,34,422,'Morganton',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15396,34,1077,'Morrisville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15397,34,1076,'Morven',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15398,34,1078,'Mount Airy',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15399,34,72,'Mount Gilead',1,139,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15400,34,1072,'Mount Holly',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15401,34,1092,'Mount Mourne',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15402,34,431,'Mount Olive',1,102,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15403,34,1113,'Mount Pleasant',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15404,34,729,'Mount Ulla',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15405,34,567,'Mountain Home',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15406,34,1087,'Moyock',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15407,34,1067,'Murfreesboro',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15408,34,73,'Murphy',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15409,34,1085,'Nags Head',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15410,34,1100,'Nakina',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15411,34,567,'Naples',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15412,34,1089,'Nashville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15413,34,1126,'Nebo',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15414,34,1103,'New Bern',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15415,34,1077,'New Hill',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15416,34,1069,'New London',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15417,34,1111,'Newell',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15418,34,1091,'Newland',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15419,34,1081,'Newport',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15420,34,1110,'Newton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15421,34,1084,'Newton Grove',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15422,34,386,'Norlina',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15423,34,358,'Norman',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15424,34,443,'North Wilkesboro',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15425,34,1069,'Norwood',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15426,34,332,'Oak City',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15427,34,1079,'Oak Island',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15428,34,1104,'Oak Ridge',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15429,34,1069,'Oakboro',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15430,34,1079,'Ocean Isle Beach',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15431,34,1124,'Ocracoke',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15432,34,1126,'Old Fort',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15433,34,1092,'Olin',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15434,34,1075,'Olivia',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15435,34,1073,'Oriental',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15436,34,1093,'Orrum',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15437,34,89,'Otto',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15438,34,1105,'Oxford',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15439,34,1083,'Pantego',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15440,34,1093,'Parkton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15441,34,332,'Parmele',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15442,34,739,'Patterson',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15443,34,1111,'Paw Creek',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15444,34,1076,'Peachland',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15445,34,1098,'Pelham',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15446,34,1093,'Pembroke',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15447,34,1114,'Pendleton',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15448,34,360,'Penland',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15449,34,1090,'Penrose',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15450,34,402,'Pfafftown',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15451,34,431,'Pikeville',1,117,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15452,34,1078,'Pilot Mountain',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15453,34,1117,'Pine Hall',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15454,34,1096,'Pine Level',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15455,34,1065,'Pinebluff',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15456,34,1065,'Pinehurst',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15457,34,1091,'Pineola',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15458,34,1094,'Pinetops',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15459,34,1083,'Pinetown',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15460,34,1111,'Pineville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15461,34,1125,'Piney Creek',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15462,34,1118,'Pink Hill',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15463,34,1117,'Pinnacle',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15464,34,1090,'Pisgah Forest',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15465,34,369,'Pittsboro',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15466,34,1104,'Pleasant Garden',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15467,34,1114,'Pleasant Hill',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15468,34,1091,'Plumtree',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15469,34,71,'Plymouth',1,21378,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15470,34,1087,'Point Harbor',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15471,34,1076,'Polkton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15472,34,150,'Polkville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15473,34,424,'Pollocksville',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15474,34,584,'Pope A F B',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15475,34,1087,'Poplar Branch',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15476,34,1114,'Potecasi',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15477,34,1087,'Powells Point',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15478,34,1082,'Powellsville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15479,34,1096,'Princeton',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15480,34,1093,'Proctorville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15481,34,1098,'Prospect Hill',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15482,34,1098,'Providence',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15483,34,443,'Purlear',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15484,34,1129,'Raeford',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15485,34,1077,'Raleigh',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15486,34,91,'Ramseur',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15487,34,91,'Randleman',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15488,34,1089,'Red Oak',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15489,34,1093,'Red Springs',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15490,34,1120,'Reidsville',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15491,34,1088,'Research Triangle Park',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15492,34,1093,'Rex',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15493,34,739,'Rhodhiss',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15494,34,1114,'Rich Square',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15495,34,1069,'Richfield',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15496,34,1107,'Richlands',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15497,34,1071,'Ridgecrest',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15498,34,386,'Ridgeway',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15499,34,1100,'Riegelwood',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15500,34,1123,'Roanoke Rapids',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15501,34,1125,'Roaring Gap',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15502,34,443,'Roaring River',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15503,34,1065,'Robbins',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15504,34,164,'Robbinsville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15505,34,332,'Robersonville',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15506,34,358,'Rockingham',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15507,34,729,'Rockwell',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15508,34,1094,'Rocky Mount',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15509,34,1089,'Rocky Mount',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15510,34,1080,'Rocky Point',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15511,34,1085,'Rodanthe',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15512,34,1115,'Roduco',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15513,34,1077,'Rolesville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15514,34,443,'Ronda',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15515,34,71,'Roper',1,297,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15516,34,1070,'Rose Hill',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15517,34,1084,'Roseboro',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15518,34,1090,'Rosman',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15519,34,1088,'Rougemont',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15520,34,1093,'Rowland',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15521,34,1128,'Roxboro',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15522,34,1082,'Roxobel',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15523,34,1120,'Ruffin',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15524,34,402,'Rural Hall',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15525,34,422,'Rutherford College',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15526,34,1102,'Rutherfordton',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15527,34,1093,'Saint Pauls',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15528,34,1084,'Salemburg',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15529,34,729,'Salisbury',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15530,34,1081,'Salter Path',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15531,34,126,'Saluda',1,117,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15532,34,1085,'Salvo',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15533,34,1117,'Sandy Ridge',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15534,34,51,'Sanford',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15535,34,1090,'Sapphire',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15536,34,634,'Saratoga',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15537,34,1068,'Saxapahaw',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15538,34,89,'Scaly Mountain',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15539,34,1123,'Scotland Neck',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15540,34,1092,'Scotts',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15541,34,1116,'Scottville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15542,34,1124,'Scranton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15543,34,1114,'Seaboard',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15544,34,91,'Seagrove',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15545,34,1081,'Sealevel',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15546,34,1104,'Sedalia',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15547,34,1096,'Selma',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15548,34,1128,'Semora',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15549,34,431,'Seven Springs',1,138,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15550,34,1114,'Severn',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15551,34,1079,'Shallotte',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15552,34,1093,'Shannon',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15553,34,1089,'Sharpsburg',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15554,34,1087,'Shawboro',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15555,34,150,'Shelby',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15556,34,1110,'Sherrills Ford',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15557,34,432,'Shiloh',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15558,34,369,'Siler City',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15559,34,1078,'Siloam',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15560,34,1086,'Simpson',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15561,34,634,'Sims',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15562,34,1071,'Skyland',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15563,34,1096,'Smithfield',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15564,34,1081,'Smyrna',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15565,34,1107,'Sneads Ferry',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15566,34,1068,'Snow Camp',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15567,34,63,'Snow Hill',1,116,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15568,34,91,'Sophia',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15569,34,432,'South Mills',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15570,34,1065,'Southern Pines',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15571,34,1119,'Southmont',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15572,34,1079,'Southport',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15573,34,1125,'Sparta',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15574,34,1094,'Speed',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15575,34,729,'Spencer',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15576,34,1102,'Spindale',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15577,34,1089,'Spring Hope',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15578,34,584,'Spring Lake',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15579,34,360,'Spruce Pine',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15580,34,1081,'Stacy',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15581,34,91,'Staley',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15582,34,1069,'Stanfield',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15583,34,1072,'Stanley',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15584,34,634,'Stantonsburg',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15585,34,72,'Star',1,205,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15586,34,1078,'State Road',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15587,34,1092,'Statesville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15588,34,584,'Stedman',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15589,34,1081,'Stella',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15590,34,1105,'Stem',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15591,34,1086,'Stokes',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15592,34,1104,'Stokesdale',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15593,34,1120,'Stoneville',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15594,34,1073,'Stonewall',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15595,34,576,'Stony Point',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15596,34,1105,'Stovall',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15597,34,1085,'Stumpy Point',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15598,34,1099,'Sugar Grove',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15599,34,1104,'Summerfield',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15600,34,1115,'Sunbury',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15601,34,1079,'Sunset Beach',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15602,34,1079,'Supply',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15603,34,1071,'Swannanoa',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15604,34,1124,'Swanquarter',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15605,34,1107,'Swansboro',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15606,34,1068,'Swepsonville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15607,34,66,'Sylva',1,189,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15608,34,1100,'Tabor City',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15609,34,1097,'Tar Heel',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15610,34,1107,'Tarawa Terrace',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15611,34,1094,'Tarboro',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15612,34,576,'Taylorsville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15613,34,1070,'Teachey',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15614,34,1110,'Terrell',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15615,34,1119,'Thomasville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15616,34,443,'Thurmond',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15617,34,1123,'Tillery',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15618,34,1128,'Timberlake',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15619,34,1078,'Toast',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15620,34,402,'Tobaccoville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15621,34,1116,'Todd',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15622,34,73,'Topton',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15623,34,1127,'Townsville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15624,34,443,'Traphill',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15625,34,424,'Trenton',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15626,34,91,'Trinity',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15627,34,1092,'Troutman',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15628,34,72,'Troy',1,216,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15629,34,126,'Tryon',1,123,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15630,34,66,'Tuckasegee',1,195,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15631,34,1084,'Turkey',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15632,34,1092,'Turnersburg',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15633,34,567,'Tuxedo',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15634,34,1121,'Tyner',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15635,34,1092,'Union Grove',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15636,34,1102,'Union Mills',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15637,34,422,'Valdese',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15638,34,147,'Vale',1,186,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15639,34,1099,'Valle Crucis',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15640,34,1103,'Vanceboro',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15641,34,1073,'Vandemere',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15642,34,1065,'Vass',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15643,34,386,'Vaughan',1,112,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15644,34,1099,'Vilas',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15645,34,150,'Waco',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15646,34,584,'Wade',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15647,34,1076,'Wadesboro',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15648,34,962,'Wagram',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15649,34,1077,'Wake Forest',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15650,34,402,'Walkertown',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15651,34,1070,'Wallace',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15652,34,1119,'Wallburg',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15653,34,1117,'Walnut Cove',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15654,34,63,'Walstonburg',1,133,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15655,34,1085,'Wanchese',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15656,34,48,'Warne',1,124,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15657,34,1116,'Warrensville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15658,34,386,'Warrenton',1,120,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15659,34,1070,'Warsaw',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15660,34,1083,'Washington',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15661,34,1085,'Waves',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15662,34,131,'Waxhaw',1,116,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15663,34,1108,'Waynesville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15664,34,1071,'Weaverville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15665,34,66,'Webster',1,206,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15666,34,1119,'Welcome',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15667,34,1123,'Weldon',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15668,34,1077,'Wendell',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15669,34,1120,'Wentworth',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15670,34,1065,'West End',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15671,34,1116,'West Jefferson',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15672,34,1078,'Westfield',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15673,34,1089,'Whitakers',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15674,34,1097,'White Oak',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15675,34,1078,'White Plains',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15676,34,1100,'Whiteville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15677,34,1104,'Whitsett',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15678,34,66,'Whittier',1,211,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15679,34,443,'Wilkesboro',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15680,34,1080,'Willard',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15681,34,332,'Williamston',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15682,34,1081,'Williston',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15683,34,1077,'Willow Spring',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15684,34,1109,'Wilmington',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15685,34,634,'Wilson',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15686,34,1096,'Wilsons Mills',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15687,34,1082,'Windsor',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15688,34,1095,'Winfall',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15689,34,131,'Wingate',1,123,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15690,34,1079,'Winnabow',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15691,34,402,'Winston Salem',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15692,34,1086,'Winterville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15693,34,1067,'Winton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15694,34,386,'Wise',1,126,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15695,34,1114,'Woodland',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15696,34,729,'Woodleaf',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15697,34,1109,'Wrightsville Beach',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15698,34,1101,'Yadkinville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15699,34,1098,'Yanceyville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15700,34,92,'Youngsville',1,270,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15701,34,1077,'Zebulon',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15702,34,1099,'Zionville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15703,34,567,'Zirconia',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15704,35,577,'Abercrombie',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15705,35,466,'Absaraka',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15706,35,1130,'Adams',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15707,35,1131,'Agate',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15708,35,1132,'Alamo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15709,35,1133,'Alexander',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15710,35,673,'Almont',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15711,35,1134,'Alsen',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15712,35,1135,'Ambrose',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15713,35,466,'Amenia',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15714,35,1136,'Amidon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15715,35,543,'Anamoose',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15716,35,706,'Aneta',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15717,35,1137,'Antler',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15718,35,466,'Argusville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15719,35,1133,'Arnegard',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15720,35,466,'Arthur',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15721,35,1138,'Arvilla',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15722,35,401,'Ashley',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15723,35,466,'Ayr',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15724,35,1139,'Baldwin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15725,35,543,'Balfour',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15726,35,367,'Balta',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15727,35,543,'Bantry',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15728,35,577,'Barney',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15729,35,1140,'Bathgate',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15730,35,1059,'Beach',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15731,35,1131,'Belcourt',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15732,35,569,'Belfield',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15733,35,547,'Benedict',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15734,35,1141,'Berlin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15735,35,1142,'Berthold',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15736,35,544,'Beulah',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15737,35,1143,'Binford',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15738,35,1144,'Bisbee',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15739,35,1139,'Bismarck',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15740,35,1145,'Blanchard',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15741,35,1137,'Bottineau',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15742,35,422,'Bowbells',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15743,35,604,'Bowdon',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15744,35,1146,'Bowman',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15745,35,1147,'Braddock',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15746,35,604,'Bremen',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15747,35,954,'Brocket',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15748,35,1148,'Buchanan',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15749,35,466,'Buffalo',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15750,35,1142,'Burlington',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15751,35,547,'Butte',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15752,35,1145,'Buxton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15753,35,1145,'Caledonia',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15754,35,1134,'Calvin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15755,35,1144,'Cando',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15756,35,461,'Cannon Ball',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15757,35,1142,'Carpio',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15758,35,1149,'Carrington',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15759,35,148,'Carson',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15760,35,1133,'Cartwright',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15761,35,466,'Casselton',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15762,35,604,'Cathay',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15763,35,1140,'Cavalier',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15764,35,1150,'Cayuga',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15765,35,1151,'Center',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15766,35,604,'Chaseley',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15767,35,577,'Christine',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15768,35,954,'Churchs Ferry',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15769,35,1148,'Cleveland',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15770,35,1145,'Clifford',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15771,35,1150,'Cogswell',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15772,35,547,'Coleharbor',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15773,35,577,'Colfax',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15774,35,422,'Columbus',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15775,35,1143,'Cooperstown',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15776,35,1148,'Courtenay',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15777,35,954,'Crary',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15778,35,1135,'Crosby',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15779,35,1140,'Crystal',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15780,35,1145,'Cummings',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15781,35,706,'Dahlen',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15782,35,466,'Davenport',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15783,35,1152,'Dawson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15784,35,1153,'Dazey',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15785,35,543,'Deering',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15786,35,682,'Denhoff',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15787,35,1142,'Des Lacs',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15788,35,954,'Devils Lake',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15789,35,1141,'Dickey',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15790,35,569,'Dickinson',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15791,35,1154,'Dodge',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15792,35,1142,'Donnybrook',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15793,35,1142,'Douglas',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15794,35,543,'Drake',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15795,35,1140,'Drayton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15796,35,1139,'Driscoll',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15797,35,1154,'Dunn Center',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15798,35,1131,'Dunseith',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15799,35,1141,'Edgeley',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15800,35,1130,'Edinburg',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15801,35,954,'Edmore',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15802,35,1144,'Egeland',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15803,35,148,'Elgin',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15804,35,1155,'Ellendale',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15805,35,1138,'Emerado',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15806,35,1156,'Enderlin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15807,35,1132,'Epping',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15808,35,466,'Erie',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15809,35,1157,'Esmond',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15810,35,1130,'Fairdale',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15811,35,1158,'Fairfield',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15812,35,577,'Fairmount',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15813,35,466,'Fargo',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15814,35,604,'Fessenden',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15815,35,1153,'Fingal',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15816,35,928,'Finley',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15817,35,673,'Flasher',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15818,35,422,'Flaxton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15819,35,1155,'Forbes',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15820,35,1130,'Fordville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15821,35,1130,'Forest River',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15822,35,1150,'Forman',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15823,35,1156,'Fort Ransom',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15824,35,1157,'Fort Totten',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15825,35,461,'Fort Yates',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15826,35,1135,'Fortuna',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15827,35,124,'Fredonia',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15828,35,1155,'Fullerton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15829,35,124,'Gackle',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15830,35,1145,'Galesburg',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15831,35,466,'Gardner',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15832,35,547,'Garrison',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15833,35,1138,'Gilby',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15834,35,569,'Gladstone',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15835,35,1140,'Glasston',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15836,35,673,'Glen Ullin',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15837,35,927,'Glenburn',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15838,35,1149,'Glenfield',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15839,35,544,'Golden Valley',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15840,35,1059,'Golva',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15841,35,682,'Goodrich',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15842,35,1149,'Grace City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15843,35,1130,'Grafton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15844,35,1138,'Grand Forks',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15845,35,1138,'Grand Forks Afb',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15846,35,466,'Grandin',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15847,35,543,'Granville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15848,35,1133,'Grassy Butte',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15849,35,1132,'Grenora',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15850,35,1150,'Gwinner',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15851,35,1147,'Hague',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15852,35,1154,'Halliday',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15853,35,1140,'Hamilton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15854,35,954,'Hampden',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15855,35,577,'Hankinson',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15856,35,1143,'Hannaford',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15857,35,1134,'Hannah',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15858,35,1144,'Hansboro',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15859,35,604,'Harvey',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15860,35,466,'Harwood',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15861,35,1145,'Hatton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15862,35,1150,'Havana',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15863,35,1147,'Hazelton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15864,35,544,'Hazen',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15865,35,673,'Hebron',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15866,35,1140,'Hensel',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15867,35,235,'Hettinger',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15868,35,1145,'Hillsboro',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15869,35,1130,'Hoople',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15870,35,928,'Hope',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15871,35,466,'Horace',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15872,35,466,'Hunter',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15873,35,604,'Hurdsfield',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15874,35,1138,'Inkster',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15875,35,1148,'Jamestown',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15876,35,1143,'Jessie',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15877,35,1141,'Jud',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15878,35,543,'Karlsruhe',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15879,35,1153,'Kathryn',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15880,35,1133,'Keene',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15881,35,1142,'Kenmare',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15882,35,1148,'Kensal',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15883,35,1154,'Killdeer',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15884,35,466,'Kindred',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15885,35,1147,'Kintyre',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15886,35,1157,'Knox',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15887,35,1137,'Kramer',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15888,35,1141,'Kulm',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15889,35,706,'Lakota',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15890,35,1141,'Lamoure',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15891,35,1134,'Langdon',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15892,35,1130,'Lankin',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15893,35,1137,'Lansford',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15894,35,1138,'Larimore',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15895,35,954,'Lawton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15896,35,1157,'Leeds',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15897,35,569,'Lefor',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15898,35,401,'Lehr',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15899,35,466,'Leonard',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15900,35,577,'Lidgerwood',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15901,35,422,'Lignite',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15902,35,1147,'Linton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15903,35,1156,'Lisbon',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15904,35,1153,'Litchville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15905,35,928,'Luverne',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15906,35,1157,'Maddock',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15907,35,1134,'Maida',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15908,35,1142,'Makoti',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15909,35,673,'Mandan',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15910,35,1133,'Mandaree',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15911,35,1154,'Manning',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15912,35,577,'Mantador',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15913,35,1138,'Manvel',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15914,35,466,'Mapleton',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15915,35,1141,'Marion',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15916,35,1136,'Marmarth',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15917,35,1154,'Marshall',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15918,35,682,'Martin',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15919,35,547,'Max',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15920,35,1137,'Maxbass',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15921,35,1145,'Mayville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15922,35,682,'Mcclusky',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15923,35,1132,'Mcgregor',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15924,35,1149,'Mchenry',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15925,35,577,'Mcleod',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15926,35,706,'Mcville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15927,35,1148,'Medina',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15928,35,1158,'Medora',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15929,35,1138,'Mekinock',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15930,35,1139,'Menoken',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15931,35,547,'Mercer',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15932,35,706,'Michigan',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15933,35,1150,'Milnor',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15934,35,1134,'Milton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15935,35,1157,'Minnewaukan',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15936,35,1142,'Minot',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15937,35,1142,'Minot Afb',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15938,35,1130,'Minto',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15939,35,1139,'Moffit',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15940,35,927,'Mohall',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15941,35,1148,'Montpelier',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15942,35,577,'Mooreton',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15943,35,1159,'Mott',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15944,35,1140,'Mountain',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15945,35,1134,'Munich',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15946,35,1131,'Mylo',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15947,35,124,'Napoleon',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15948,35,1140,'Neche',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15949,35,1134,'Nekoma',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15950,35,1159,'New England',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15951,35,148,'New Leipzig',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15952,35,1160,'New Rockford',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15953,35,673,'New Salem',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15954,35,1161,'New Town',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15955,35,1137,'Newburg',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15956,35,1138,'Niagara',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15957,35,1153,'Nome',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15958,35,1135,'Noonan',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15959,35,1138,'Northwood',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15960,35,543,'Norwich',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15961,35,1155,'Oakes',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15962,35,1157,'Oberon',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15963,35,1153,'Oriska',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15964,35,1134,'Osnabrock',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15965,35,466,'Page',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15966,35,1161,'Palermo',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15967,35,1130,'Park River',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15968,35,1161,'Parshall',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15969,35,706,'Pekin',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15970,35,1140,'Pembina',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15971,35,954,'Penn',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15972,35,1144,'Perth',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15973,35,706,'Petersburg',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15974,35,1152,'Pettibone',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15975,35,1153,'Pillsbury',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15976,35,1148,'Pingree',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15977,35,1130,'Pisek',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15978,35,1161,'Plaza',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15979,35,422,'Portal',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15980,35,1145,'Portland',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15981,35,422,'Powers Lake',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15982,35,148,'Raleigh',1,103,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15983,35,1132,'Ray',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15984,35,235,'Reeder',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15985,35,1139,'Regan',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15986,35,1159,'Regent',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15987,35,1138,'Reynolds',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15988,35,1146,'Rhame',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15989,35,569,'Richardton',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15990,35,547,'Riverdale',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15991,35,1152,'Robinson',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15992,35,1144,'Rocklake',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15993,35,1153,'Rogers',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15994,35,1131,'Rolette',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15995,35,1131,'Rolla',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15996,35,547,'Roseglen',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15997,35,1161,'Ross',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15998,35,367,'Rugby',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(15999,35,547,'Ruso',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16000,35,1150,'Rutland',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16001,35,1142,'Ryder',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16002,35,673,'Saint Anthony',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16003,35,1131,'Saint John',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16004,35,1157,'Saint Michael',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16005,35,1140,'Saint Thomas',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16006,35,1153,'Sanborn',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16007,35,1134,'Sarles',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16008,35,1142,'Sawyer',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16009,35,1146,'Scranton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16010,35,461,'Selfridge',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16011,35,1059,'Sentinel Butte',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16012,35,928,'Sharon',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16013,35,1156,'Sheldon',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16014,35,927,'Sherwood',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16015,35,1160,'Sheyenne',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16016,35,148,'Shields',1,110,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16017,35,461,'Solen',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16018,35,1137,'Souris',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16019,35,569,'South Heart',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16020,35,1153,'Spiritwood',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16021,35,1161,'Stanley',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16022,35,544,'Stanton',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16023,35,954,'Starkweather',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16024,35,1152,'Steele',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16025,35,1139,'Sterling',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16026,35,1150,'Stirum',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16027,35,1147,'Strasburg',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16028,35,1148,'Streeter',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16029,35,1142,'Surrey',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16030,35,1143,'Sutton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16031,35,604,'Sykeston',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16032,35,1152,'Tappen',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16033,35,569,'Taylor',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16034,35,1138,'Thompson',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16035,35,1132,'Tioga',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16036,35,1157,'Tokio',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16037,35,927,'Tolley',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16038,35,706,'Tolna',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16039,35,466,'Tower City',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16040,35,543,'Towner',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16041,35,1132,'Trenton',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16042,35,547,'Turtle Lake',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16043,35,1152,'Tuttle',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16044,35,547,'Underwood',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16045,35,543,'Upham',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16046,35,1153,'Valley City',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16047,35,543,'Velva',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16048,35,1141,'Verona',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16049,35,543,'Voltaire',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16050,35,577,'Wahpeton',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16051,35,577,'Walcott',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16052,35,1134,'Wales',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16053,35,1140,'Walhalla',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16054,35,1157,'Warwick',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16055,35,547,'Washburn',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16056,35,1133,'Watford City',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16057,35,954,'Webster',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16058,35,466,'West Fargo',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16059,35,1137,'Westhope',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16060,35,466,'Wheatland',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16061,35,1161,'White Earth',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16062,35,1132,'Wildrose',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16063,35,1132,'Williston',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16064,35,1137,'Willow City',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16065,35,547,'Wilton',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16066,35,1153,'Wimbledon',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16067,35,1139,'Wing',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16068,35,401,'Wishek',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16069,35,367,'Wolford',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16070,35,1148,'Woodworth',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16071,35,577,'Wyndmere',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16072,35,1157,'York',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16073,35,1148,'Ypsilanti',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16074,35,1132,'Zahl',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16075,35,544,'Zap',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16076,35,401,'Zeeland',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16077,28,74,'Abie',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16078,28,1162,'Adams',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16079,28,586,'Ainsworth',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16080,28,99,'Albion',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16081,28,391,'Alda',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16082,28,1163,'Alexandria',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16083,28,1164,'Allen',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16084,28,1165,'Alliance',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16085,28,693,'Alma',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16086,28,466,'Alvo',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16087,28,989,'Amelia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16088,28,389,'Ames',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16089,28,1166,'Amherst',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16090,28,1167,'Angora',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16091,28,278,'Anselmo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16092,28,278,'Ansley',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16093,28,1168,'Arapahoe',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16094,28,525,'Arcadia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16095,28,1169,'Archer',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16096,28,71,'Arlington',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16097,28,278,'Arnold',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16098,28,1170,'Arthur',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16099,28,148,'Ashby',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16100,28,1171,'Ashland',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16101,28,671,'Ashton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16102,28,989,'Atkinson',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16103,28,969,'Atlanta',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16104,28,644,'Auburn',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16105,28,334,'Aurora',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16106,28,466,'Avoca',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16107,28,1172,'Axtell',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16108,28,235,'Ayr',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16109,28,1173,'Bancroft',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16110,28,1162,'Barneston',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16111,28,344,'Bartlett',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16112,28,1174,'Bartley',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16113,28,918,'Bassett',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16114,28,68,'Battle Creek',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16115,28,1167,'Bayard',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16116,28,1162,'Beatrice',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16117,28,1168,'Beaver City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16118,28,686,'Beaver Crossing',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16119,28,686,'Bee',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16120,28,1173,'Beemer',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16121,28,482,'Belden',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16122,28,99,'Belgrade',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16123,28,1175,'Bellevue',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16124,28,74,'Bellwood',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16125,28,1163,'Belvidere',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16126,28,823,'Benedict',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16127,28,1176,'Benkelman',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16128,28,1177,'Bennet',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16129,28,254,'Bennington',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16130,28,969,'Bertrand',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16131,28,1178,'Big Springs',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16132,28,682,'Bingham',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16133,28,442,'Bladen',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16134,28,71,'Blair',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16135,28,538,'Bloomfield',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16136,28,92,'Bloomington',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16137,28,442,'Blue Hill',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16138,28,1162,'Blue Springs',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16139,28,141,'Boelus',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16140,28,254,'Boys Town',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16141,28,823,'Bradshaw',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16142,28,147,'Brady',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16143,28,74,'Brainard',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16144,28,514,'Brewster',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16145,28,1167,'Bridgeport',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16146,28,701,'Bristow',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16147,28,1167,'Broadwater',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16148,28,644,'Brock',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16149,28,278,'Broken Bow',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16150,28,644,'Brownville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16151,28,1179,'Brule',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16152,28,1163,'Bruning',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16153,28,74,'Bruno',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16154,28,1180,'Brunswick',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16155,28,651,'Burchard',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16156,28,1181,'Burr',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16157,28,240,'Burwell',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16158,28,1182,'Bushnell',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16159,28,701,'Butte',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16160,28,1163,'Byron',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16161,28,391,'Cairo',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16162,28,278,'Callaway',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16163,28,1168,'Cambridge',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16164,28,92,'Campbell',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16165,28,1163,'Carleton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16166,28,431,'Carroll',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16167,28,1171,'Cedar Bluffs',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16168,28,466,'Cedar Creek',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16169,28,99,'Cedar Rapids',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16170,28,538,'Center',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16171,28,1169,'Central City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16172,28,1171,'Ceresco',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16173,28,1183,'Chadron',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16174,28,989,'Chambers',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16175,28,660,'Champion',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16176,28,1169,'Chapman',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16177,28,1178,'Chappell',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16178,28,1163,'Chester',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16179,28,1169,'Clarks',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16180,28,1184,'Clarkson',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16181,28,1162,'Clatonia',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16182,28,48,'Clay Center',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16183,28,1180,'Clearwater',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16184,28,1185,'Cody',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16185,28,482,'Coleridge',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16186,28,1171,'Colon',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16187,28,984,'Columbus',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16188,28,278,'Comstock',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16189,28,1164,'Concord',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16190,28,135,'Cook',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16191,28,686,'Cordova',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16192,28,1162,'Cortland',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16193,28,407,'Cozad',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16194,28,135,'Crab Orchard',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16195,28,1186,'Craig',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16196,28,1183,'Crawford',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16197,28,538,'Creighton',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16198,28,984,'Creston',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16199,28,95,'Crete',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16200,28,538,'Crofton',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16201,28,1185,'Crookston',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16202,28,1187,'Culbertson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16203,28,1188,'Curtis',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16204,28,937,'Dakota City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16205,28,230,'Dalton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16206,28,1174,'Danbury',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16207,28,141,'Dannebrog',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16208,28,1163,'Davenport',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16209,28,1177,'Davey',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16210,28,74,'David City',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16211,28,1189,'Dawson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16212,28,30,'Daykin',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16213,28,95,'De Witt',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16214,28,1186,'Decatur',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16215,28,1177,'Denton',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16216,28,1163,'Deshler',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16217,28,48,'Deweese',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16218,28,147,'Dickens',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16219,28,30,'Diller',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16220,28,1182,'Dix',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16221,28,1164,'Dixon',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16222,28,389,'Dodge',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16223,28,391,'Doniphan',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16224,28,95,'Dorchester',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16225,28,1181,'Douglas',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16226,28,651,'Du Bois',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16227,28,1181,'Dunbar',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16228,28,984,'Duncan',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16229,28,514,'Dunning',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16230,28,74,'Dwight',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16231,28,466,'Eagle',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16232,28,407,'Eddyville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16233,28,48,'Edgar',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16234,28,1168,'Edison',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16235,28,141,'Elba',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16236,28,1180,'Elgin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16237,28,135,'Elk Creek',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16238,28,254,'Elkhorn',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16239,28,682,'Ellsworth',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16240,28,1166,'Elm Creek',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16241,28,466,'Elmwood',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16242,28,1190,'Elsie',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16243,28,1185,'Elsmere',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16244,28,1191,'Elwood',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16245,28,525,'Elyria',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16246,28,937,'Emerson',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16247,28,989,'Emmet',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16248,28,660,'Enders',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16249,28,30,'Endicott',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16250,28,344,'Ericson',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16251,28,1188,'Eustis',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16252,28,989,'Ewing',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16253,28,942,'Exeter',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16254,28,30,'Fairbury',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16255,28,48,'Fairfield',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16256,28,942,'Fairmont',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16257,28,1189,'Falls City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16258,28,407,'Farnam',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16259,28,141,'Farwell',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16260,28,1162,'Filley',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16261,28,1177,'Firth',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16262,28,482,'Fordyce',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16263,28,71,'Fort Calhoun',1,133,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16264,28,92,'Franklin',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16265,28,389,'Fremont',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16266,28,95,'Friend',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16267,28,1192,'Fullerton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16268,28,969,'Funk',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16269,28,686,'Garland',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16270,28,942,'Geneva',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16271,28,1192,'Genoa',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16272,28,1193,'Gering',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16273,28,1166,'Gibbon',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16274,28,1163,'Gilead',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16275,28,334,'Giltner',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16276,28,48,'Glenvil',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16277,28,686,'Goehner',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16278,28,682,'Gordon',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16279,28,407,'Gothenburg',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16280,28,942,'Grafton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16281,28,391,'Grand Island',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16282,28,1190,'Grant',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16283,28,692,'Greeley',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16284,28,466,'Greenwood',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16285,28,823,'Gresham',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16286,28,1175,'Gretna',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16287,28,442,'Guide Rock',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16288,28,230,'Gurley',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16289,28,367,'Hadar',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16290,28,1176,'Haigler',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16291,28,1177,'Hallam',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16292,28,372,'Halsey',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16293,28,334,'Hampton',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16294,28,1194,'Hardy',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16295,28,1195,'Harrisburg',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16296,28,461,'Harrison',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16297,28,482,'Hartington',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16298,28,48,'Harvard',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16299,28,235,'Hastings',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16300,28,682,'Hay Springs',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16301,28,1196,'Hayes Center',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16302,28,671,'Hazard',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16303,28,1172,'Heartwell',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16304,28,1163,'Hebron',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16305,28,1165,'Hemingford',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16306,28,823,'Henderson',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16307,28,1168,'Hendley',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16308,28,71,'Herman',1,168,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16309,28,147,'Hershey',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16310,28,1177,'Hickman',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16311,28,92,'Hildreth',1,115,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16312,28,1168,'Holbrook',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16313,28,969,'Holdrege',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16314,28,235,'Holstein',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16315,28,937,'Homer',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16316,28,389,'Hooper',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16317,28,334,'Hordville',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16318,28,431,'Hoskins',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16319,28,1184,'Howells',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16320,28,937,'Hubbard',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16321,28,1163,'Hubbell',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16322,28,1189,'Humboldt',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16323,28,984,'Humphrey',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16324,28,148,'Hyannis',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16325,28,660,'Imperial',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16326,28,442,'Inavale',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16327,28,1174,'Indianola',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16328,28,48,'Inland',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16329,28,989,'Inman',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16330,28,1171,'Ithaca',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16331,28,937,'Jackson',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16332,28,30,'Jansen',1,137,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16333,28,644,'Johnson',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16334,28,586,'Johnstown',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16335,28,644,'Julian',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16336,28,235,'Juniata',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16337,28,1166,'Kearney',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16338,28,235,'Kenesaw',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16339,28,71,'Kennard',1,13704,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(16340,28,1179,'Keystone',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16341,28,1185,'Kilgore',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16342,28,1182,'Kimball',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16343,28,1175,'La Vista',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16344,28,682,'Lakeside',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16345,28,482,'Laurel',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16346,28,1194,'Lawrence',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16347,28,1174,'Lebanon',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16348,28,1184,'Leigh',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16349,28,1179,'Lemoyne',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16350,28,1197,'Lewellen',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16351,28,651,'Lewiston',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16352,28,407,'Lexington',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16353,28,1162,'Liberty',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16354,28,1177,'Lincoln',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16355,28,984,'Lindsay',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16356,28,74,'Linwood',1,15219,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(16357,28,1197,'Lisco',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16358,28,671,'Litchfield',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16359,28,230,'Lodgepole',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16360,28,586,'Long Pine',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16361,28,969,'Loomis',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16362,28,1181,'Lorton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16363,28,466,'Louisville',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16364,28,671,'Loup City',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16365,28,1193,'Lyman',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16366,28,701,'Lynch',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16367,28,1186,'Lyons',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16368,28,1198,'Macy',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16369,28,68,'Madison',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16370,28,1190,'Madrid',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16371,28,482,'Magnet',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16372,28,1177,'Malcolm',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16373,28,1171,'Malmo',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16374,28,466,'Manley',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16375,28,334,'Marquette',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16376,28,1183,'Marsland',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16377,28,1177,'Martell',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16378,28,1164,'Maskell',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16379,28,278,'Mason City',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16380,28,1176,'Max',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16381,28,147,'Maxwell',1,110,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16382,28,1188,'Maywood',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16383,28,1174,'Mc Cook',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16384,28,823,'Mc Cool Junction',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16385,28,1193,'Mcgrew',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16386,28,367,'Mclean',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16387,28,1171,'Mead',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16388,28,68,'Meadow Grove',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16389,28,1193,'Melbeta',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16390,28,1171,'Memphis',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16391,28,278,'Merna',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16392,28,1185,'Merriman',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16393,28,686,'Milford',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16394,28,1166,'Miller',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16395,28,942,'Milligan',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16396,28,1199,'Mills',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16397,28,1193,'Minatare',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16398,28,1172,'Minden',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16399,28,1193,'Mitchell',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16400,28,984,'Monroe',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16401,28,1188,'Moorefield',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16402,28,1193,'Morrill',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16403,28,1171,'Morse Bluff',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16404,28,1200,'Mullen',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16405,28,466,'Murdock',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16406,28,466,'Murray',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16407,28,701,'Naper',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16408,28,92,'Naponee',1,157,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16409,28,1181,'Nebraska City',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16410,28,466,'Nehawka',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16411,28,1180,'Neligh',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16412,28,1194,'Nelson',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16413,28,644,'Nemaha',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16414,28,1185,'Nenzel',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16415,28,1164,'Newcastle',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16416,28,68,'Newman Grove',1,109,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16417,28,1199,'Newport',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16418,28,389,'Nickerson',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16419,28,538,'Niobrara',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16420,28,68,'Norfolk',1,110,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16421,28,389,'North Bend',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16422,28,525,'North Loup',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16423,28,147,'North Platte',1,126,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16424,28,1194,'Oak',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16425,28,1180,'Oakdale',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16426,28,1186,'Oakland',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16427,28,278,'Oconto',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16428,28,1162,'Odell',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16429,28,1166,'Odessa',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16430,28,1175,'Offutt A F B',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16431,28,1179,'Ogallala',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16432,28,942,'Ohiowa',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16433,28,254,'Omaha',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16434,28,1175,'Omaha',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16435,28,989,'Oneill',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16436,28,48,'Ong',1,19943,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16437,28,1180,'Orchard',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16438,28,525,'Ord',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16439,28,693,'Orleans',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16440,28,126,'Osceola',1,104,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16441,28,1197,'Oshkosh',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16442,28,367,'Osmond',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16443,28,1181,'Otoe',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16444,28,407,'Overton',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16445,28,1168,'Oxford',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16446,28,989,'Page',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16447,28,1187,'Palisade',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16448,28,1169,'Palmer',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16449,28,1181,'Palmyra',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16450,28,1177,'Panama',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16451,28,1175,'Papillion',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16452,28,1176,'Parks',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16453,28,651,'Pawnee City',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16454,28,1179,'Paxton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16455,28,1198,'Pender',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16456,28,644,'Peru',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16457,28,99,'Petersburg',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16458,28,334,'Phillips',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16459,28,1162,'Pickrell',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16460,28,367,'Pierce',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16461,28,685,'Pilger',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16462,28,367,'Plainview',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16463,28,984,'Platte Center',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16464,28,466,'Plattsmouth',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16465,28,686,'Pleasant Dale',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16466,28,1166,'Pleasanton',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16467,28,30,'Plymouth',1,217,'0000-00-00 00:00:00','2022-05-17 11:49:13',NULL),(16468,28,126,'Polk',1,107,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16469,28,1164,'Ponca',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16470,28,230,'Potter',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16471,28,1171,'Prague',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16472,28,99,'Primrose',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16473,28,514,'Purdum',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16474,28,693,'Ragan',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16475,28,482,'Randolph',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16476,28,1166,'Ravenna',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16477,28,1177,'Raymond',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16478,28,442,'Red Cloud',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16479,28,693,'Republican City',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16480,28,1163,'Reynolds',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16481,28,74,'Rising City',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16482,28,1166,'Riverdale',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16483,28,92,'Riverton',1,195,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16484,28,1177,'Roca',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16485,28,671,'Rockville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16486,28,1184,'Rogers',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16487,28,1198,'Rosalie',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16488,28,235,'Roseland',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16489,28,1180,'Royal',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16490,28,1189,'Rulo',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16491,28,682,'Rushville',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16492,28,1194,'Ruskin',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16493,28,99,'Saint Edward',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16494,28,482,'Saint Helena',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16495,28,141,'Saint Libory',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16496,28,141,'Saint Paul',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16497,28,1189,'Salem',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16498,28,278,'Sargent',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16499,28,48,'Saronville',1,111,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16500,28,1184,'Schuyler',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16501,28,692,'Scotia',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16502,28,1193,'Scottsbluff',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16503,28,389,'Scribner',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16504,28,372,'Seneca',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16505,28,686,'Seward',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16506,28,126,'Shelby',1,118,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16507,28,1166,'Shelton',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16508,28,942,'Shickley',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16509,28,1189,'Shubert',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16510,28,230,'Sidney',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16511,28,1169,'Silver Creek',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16512,28,1191,'Smithfield',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16513,28,389,'Snyder',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16514,28,466,'South Bend',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16515,28,937,'South Sioux City',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16516,28,692,'Spalding',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16517,28,1185,'Sparks',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16518,28,701,'Spencer',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16519,28,1177,'Sprague',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16520,28,1175,'Springfield',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16521,28,1199,'Springview',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16522,28,1175,'St Columbans',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16523,28,693,'Stamford',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16524,28,685,'Stanton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16525,28,686,'Staplehurst',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16526,28,124,'Stapleton',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16527,28,30,'Steele City',1,253,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16528,28,651,'Steinauer',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16529,28,1189,'Stella',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16530,28,135,'Sterling',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16531,28,1188,'Stockville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16532,28,942,'Strang',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16533,28,1187,'Stratton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16534,28,126,'Stromsburg',1,121,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16535,28,989,'Stuart',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16536,28,407,'Sumner',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16537,28,1194,'Superior',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16538,28,74,'Surprise',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16539,28,147,'Sutherland',1,170,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16540,28,48,'Sutton',1,117,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16541,28,95,'Swanton',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16542,28,1181,'Syracuse',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16543,28,651,'Table Rock',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16544,28,1181,'Talmage',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16545,28,1201,'Taylor',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16546,28,135,'Tecumseh',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16547,28,1186,'Tekamah',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16548,28,372,'Thedford',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16549,28,1198,'Thurston',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16550,28,68,'Tilden',1,153,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16551,28,95,'Tobias',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16552,28,1187,'Trenton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16553,28,48,'Trumbull',1,118,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16554,28,658,'Tryon',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16555,28,389,'Uehling',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16556,28,74,'Ulysses',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16557,28,1181,'Unadilla',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16558,28,466,'Union',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16559,28,92,'Upland',1,242,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16560,28,686,'Utica',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16561,28,1185,'Valentine',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16562,28,254,'Valley',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16563,28,1171,'Valparaiso',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16564,28,1190,'Venango',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16565,28,538,'Verdigre',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16566,28,1189,'Verdon',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16567,28,1162,'Virginia',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16568,28,823,'Waco',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16569,28,1171,'Wahoo',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16570,28,1164,'Wakefield',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16571,28,147,'Wallace',1,189,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16572,28,1198,'Walthill',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16573,28,1177,'Walton',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16574,28,71,'Washington',1,361,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16575,28,1164,'Waterbury',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16576,28,254,'Waterloo',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16577,28,660,'Wauneta',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16578,28,538,'Wausa',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16579,28,1177,'Waverly',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16580,28,431,'Wayne',1,166,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16581,28,466,'Weeping Water',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16582,28,147,'Wellfleet',1,192,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16583,28,1173,'West Point',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16584,28,95,'Western',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16585,28,278,'Westerville',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16586,28,1171,'Weston',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16587,28,682,'Whiteclay',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16588,28,148,'Whitman',1,128,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16589,28,1183,'Whitney',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16590,28,95,'Wilber',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16591,28,1172,'Wilcox',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16592,28,407,'Willow Island',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16593,28,1168,'Wilsonville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16594,28,1198,'Winnebago',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16595,28,538,'Winnetoon',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16596,28,431,'Winside',1,179,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16597,28,389,'Winslow',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16598,28,1173,'Wisner',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16599,28,692,'Wolbach',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16600,28,1185,'Wood Lake',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16601,28,391,'Wood River',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16602,28,1162,'Wymore',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16603,28,482,'Wynot',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16604,28,823,'York',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16605,28,1171,'Yutan',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16606,30,611,'Acworth',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16607,30,1202,'Alstead',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16608,30,1203,'Alton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16609,30,1203,'Alton Bay',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16610,30,294,'Amherst',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16611,30,1204,'Andover',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16612,30,294,'Antrim',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16613,30,1205,'Ashland',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16614,30,1202,'Ashuelot',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16615,30,1120,'Atkinson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16616,30,1120,'Auburn',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16617,30,1203,'Barnstead',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16618,30,1206,'Barrington',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16619,30,115,'Bartlett',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16620,30,1205,'Bath',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16621,30,294,'Bedford',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16622,30,1203,'Belmont',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16623,30,294,'Bennington',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16624,30,1207,'Berlin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16625,30,1205,'Bethlehem',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16626,30,1204,'Bow',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16627,30,1204,'Bradford',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16628,30,1207,'Bretton Woods',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16629,30,1205,'Bristol',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16630,30,294,'Brookline',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16631,30,1205,'Campton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16632,30,1205,'Canaan',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16633,30,1120,'Candia',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16634,30,1204,'Canterbury',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16635,30,1203,'Center Barnstead',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16636,30,1203,'Center Harbor',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16637,30,115,'Center Ossipee',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16638,30,115,'Center Sandwich',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16639,30,1206,'Center Strafford',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16640,30,115,'Center Tuftonboro',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16641,30,611,'Charlestown',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16642,30,115,'Chatham',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16643,30,1120,'Chester',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16644,30,1202,'Chesterfield',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16645,30,1204,'Chichester',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16646,30,115,'Chocorua',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16647,30,611,'Claremont',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16648,30,1207,'Colebrook',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16649,30,1204,'Concord',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16650,30,1204,'Contoocook',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16651,30,115,'Conway',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16652,30,611,'Cornish',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16653,30,611,'Cornish Flat',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16654,30,1204,'Danbury',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16655,30,1120,'Danville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16656,30,1120,'Deerfield',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16657,30,1120,'Derry',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16658,30,1206,'Dover',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16659,30,1202,'Drewsville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16660,30,1202,'Dublin',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16661,30,1204,'Dunbarton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16662,30,1206,'Durham',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16663,30,1204,'East Andover',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16664,30,1120,'East Candia',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16665,30,1120,'East Derry',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16666,30,1120,'East Hampstead',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16667,30,115,'East Wakefield',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16668,30,115,'Eaton Center',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16669,30,115,'Effingham',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16670,30,1204,'Elkins',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16671,30,1205,'Enfield',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16672,30,1205,'Enfield Center',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16673,30,1120,'Epping',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16674,30,1204,'Epsom',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16675,30,1207,'Errol',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16676,30,1205,'Etna',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16677,30,1120,'Exeter',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16678,30,1206,'Farmington',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16679,30,1202,'Fitzwilliam',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16680,30,294,'Francestown',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16681,30,1205,'Franconia',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16682,30,1204,'Franklin',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16683,30,115,'Freedom',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16684,30,1120,'Fremont',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16685,30,611,'Georges Mills',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16686,30,1203,'Gilford',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16687,30,1203,'Gilmanton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16688,30,1203,'Gilmanton Iron Works',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16689,30,1202,'Gilsum',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16690,30,115,'Glen',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16691,30,1205,'Glencliff',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16692,30,294,'Goffstown',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16693,30,1207,'Gorham',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16694,30,611,'Goshen',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16695,30,1205,'Grafton',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16696,30,611,'Grantham',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16697,30,294,'Greenfield',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16698,30,1120,'Greenland',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16699,30,294,'Greenville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16700,30,611,'Guild',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16701,30,1120,'Hampstead',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16702,30,1120,'Hampton',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16703,30,1120,'Hampton Falls',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16704,30,294,'Hancock',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16705,30,1205,'Hanover',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16706,30,1202,'Harrisville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16707,30,1205,'Haverhill',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16708,30,1205,'Hebron',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16709,30,1204,'Henniker',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16710,30,1204,'Hill',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16711,30,294,'Hillsborough',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16712,30,1202,'Hinsdale',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16713,30,1205,'Holderness',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16714,30,294,'Hollis',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16715,30,1204,'Hooksett',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16716,30,294,'Hudson',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16717,30,115,'Intervale',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16718,30,115,'Jackson',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16719,30,1202,'Jaffrey',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16720,30,1207,'Jefferson',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16721,30,115,'Kearsarge',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16722,30,1202,'Keene',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16723,30,1120,'Kingston',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16724,30,1203,'Laconia',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16725,30,1207,'Lancaster',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16726,30,1205,'Lebanon',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16727,30,1206,'Lee',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16728,30,611,'Lempster',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16729,30,1205,'Lincoln',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16730,30,1205,'Lisbon',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16731,30,294,'Litchfield',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16732,30,1205,'Littleton',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16733,30,1203,'Lochmere',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16734,30,1120,'Londonderry',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16735,30,1204,'Loudon',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16736,30,1205,'Lyme',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16737,30,1205,'Lyme Center',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16738,30,294,'Lyndeborough',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16739,30,1206,'Madbury',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16740,30,115,'Madison',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16741,30,294,'Manchester',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16742,30,1202,'Marlborough',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16743,30,1202,'Marlow',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16744,30,115,'Melvin Village',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16745,30,1203,'Meredith',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16746,30,611,'Meriden',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16747,30,294,'Merrimack',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16748,30,1207,'Milan',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16749,30,294,'Milford',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16750,30,1206,'Milton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16751,30,1206,'Milton Mills',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16752,30,115,'Mirror Lake',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16753,30,1205,'Monroe',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16754,30,294,'Mont Vernon',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16755,30,115,'Moultonborough',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16756,30,1207,'Mount Washington',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16757,30,294,'Nashua',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16758,30,1202,'Nelson',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16759,30,294,'New Boston',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16760,30,1120,'New Castle',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16761,30,1206,'New Durham',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16762,30,1203,'New Hampton',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16763,30,294,'New Ipswich',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16764,30,1204,'New London',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16765,30,1204,'Newbury',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16766,30,1120,'Newfields',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16767,30,1206,'Newington',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16768,30,1120,'Newmarket',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16769,30,611,'Newport',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16770,30,1120,'Newton',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16771,30,1120,'Newton Junction',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16772,30,115,'North Conway',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16773,30,1120,'North Hampton',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16774,30,1205,'North Haverhill',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16775,30,1120,'North Salem',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16776,30,115,'North Sandwich',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16777,30,1207,'North Stratford',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16778,30,1204,'North Sutton',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16779,30,1202,'North Walpole',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16780,30,1205,'North Woodstock',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16781,30,1207,'Northumberland',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16782,30,1120,'Northwood',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16783,30,1120,'Nottingham',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16784,30,1205,'Orford',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16785,30,115,'Ossipee',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16786,30,294,'Pelham',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16787,30,294,'Peterborough',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16788,30,1205,'Piermont',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16789,30,1205,'Pike',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16790,30,1207,'Pittsburg',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16791,30,1204,'Pittsfield',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16792,30,611,'Plainfield',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16793,30,1120,'Plaistow',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16794,30,1205,'Plymouth',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16795,30,1120,'Portsmouth',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16796,30,1207,'Randolph',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16797,30,1120,'Raymond',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16798,30,1202,'Rindge',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16799,30,1206,'Rochester',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16800,30,1206,'Rollinsford',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16801,30,1205,'Rumney',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16802,30,1120,'Rye',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16803,30,1120,'Rye Beach',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16804,30,1120,'Salem',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16805,30,1204,'Salisbury',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16806,30,1203,'Sanbornton',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16807,30,115,'Sanbornville',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16808,30,1120,'Sandown',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16809,30,1120,'Seabrook',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16810,30,115,'Silver Lake',1,104,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16811,30,1206,'Somersworth',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16812,30,611,'South Acworth',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16813,30,1120,'South Hampton',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16814,30,1204,'South Newbury',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16815,30,1204,'South Sutton',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16816,30,115,'South Tamworth',1,105,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16817,30,1202,'Spofford',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16818,30,611,'Springfield',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16819,30,1205,'Stinson Lake',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16820,30,1202,'Stoddard',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16821,30,1206,'Strafford',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16822,30,1120,'Stratham',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16823,30,1205,'Sugar Hill',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16824,30,1202,'Sullivan',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16825,30,611,'Sunapee',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16826,30,1204,'Suncook',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16827,30,1202,'Swanzey',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16828,30,115,'Tamworth',1,108,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16829,30,294,'Temple',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16830,30,1205,'Thornton',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16831,30,1203,'Tilton',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16832,30,1202,'Troy',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16833,30,1207,'Twin Mountain',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16834,30,115,'Union',1,115,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16835,30,1202,'Walpole',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16836,30,1204,'Warner',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16837,30,1205,'Warren',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16838,30,611,'Washington',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16839,30,1205,'Waterville Valley',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16840,30,294,'Weare',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16841,30,1205,'Wentworth',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16842,30,1202,'West Chesterfield',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16843,30,1205,'West Lebanon',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16844,30,1120,'West Nottingham',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16845,30,115,'West Ossipee',1,119,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16846,30,294,'West Peterborough',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16847,30,1207,'West Stewartstown',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16848,30,1202,'West Swanzey',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16849,30,1202,'Westmoreland',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16850,30,1207,'Whitefield',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16851,30,1204,'Wilmot',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16852,30,294,'Wilton',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16853,30,1202,'Winchester',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16854,30,1120,'Windham',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16855,30,1203,'Winnisquam',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16856,30,115,'Wolfeboro',1,123,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16857,30,115,'Wolfeboro Falls',1,124,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16858,30,115,'Wonalancet',1,125,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16859,30,1205,'Woodstock',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16860,30,1205,'Woodsville',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16861,31,1208,'Absecon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16862,31,1209,'Adelphia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16863,31,386,'Allamuchy',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16864,31,1210,'Allendale',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16865,31,1209,'Allenhurst',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16866,31,1209,'Allentown',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16867,31,1209,'Allenwood',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16868,31,1211,'Alloway',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16869,31,1210,'Alpine',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16870,31,289,'Andover',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16871,31,1212,'Annandale',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16872,31,1212,'Asbury',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16873,31,1209,'Asbury Park',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16874,31,432,'Atco',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16875,31,1208,'Atlantic City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16876,31,1209,'Atlantic Highlands',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16877,31,432,'Audubon',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16878,31,289,'Augusta',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16879,31,1213,'Avalon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16880,31,286,'Avenel',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16881,31,1209,'Avon By The Sea',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16882,31,1212,'Baptistown',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16883,31,1214,'Barnegat',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16884,31,1214,'Barnegat Light',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16885,31,432,'Barrington',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16886,31,821,'Basking Ridge',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16887,31,1215,'Bayonne',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16888,31,1214,'Bayville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16889,31,1214,'Beach Haven',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16890,31,1214,'Beachwood',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16891,31,821,'Bedminster',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16892,31,1209,'Belford',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16893,31,821,'Belle Mead',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16894,31,798,'Belleville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16895,31,432,'Bellmawr',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16896,31,1209,'Belmar',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16897,31,386,'Belvidere',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16898,31,1210,'Bergenfield',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16899,31,131,'Berkeley Heights',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16900,31,432,'Berlin',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16901,31,821,'Bernardsville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16902,31,1216,'Beverly',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16903,31,1216,'Birmingham',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16904,31,432,'Blackwood',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16905,31,386,'Blairstown',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16906,31,821,'Blawenburg',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16907,31,798,'Bloomfield',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16908,31,1217,'Bloomingdale',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16909,31,1212,'Bloomsbury',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16910,31,1210,'Bogota',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16911,31,652,'Boonton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16912,31,1216,'Bordentown',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16913,31,821,'Bound Brook',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16914,31,1209,'Bradley Beach',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16915,31,289,'Branchville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16916,31,1214,'Brick',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16917,31,1218,'Bridgeport',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16918,31,584,'Bridgeton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16919,31,821,'Bridgewater',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16920,31,1209,'Brielle',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16921,31,1208,'Brigantine',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16922,31,386,'Broadway',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16923,31,652,'Brookside',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16924,31,1216,'Browns Mills',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16925,31,652,'Budd Lake',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16926,31,1208,'Buena',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16927,31,1216,'Burlington',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16928,31,652,'Butler',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16929,31,386,'Buttzville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16930,31,798,'Caldwell',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16931,31,1212,'Califon',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16932,31,432,'Camden',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16933,31,1213,'Cape May',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16934,31,1213,'Cape May Court House',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16935,31,1213,'Cape May Point',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16936,31,1210,'Carlstadt',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16937,31,286,'Carteret',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16938,31,432,'Cedar Brook',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16939,31,798,'Cedar Grove',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16940,31,652,'Cedar Knolls',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16941,31,584,'Cedarville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16942,31,386,'Changewater',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16943,31,652,'Chatham',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16944,31,1216,'Chatsworth',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16945,31,432,'Cherry Hill',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16946,31,652,'Chester',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16947,31,1216,'Chesterfield',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16948,31,131,'Clark',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16949,31,1218,'Clarksboro',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16950,31,1218,'Clayton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16951,31,432,'Clementon',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16952,31,1210,'Cliffside Park',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16953,31,1209,'Cliffwood',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16954,31,1217,'Clifton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16955,31,1212,'Clinton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16956,31,1210,'Closter',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16957,31,1208,'Cologne',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16958,31,286,'Colonia',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16959,31,1209,'Colts Neck',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16960,31,386,'Columbia',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16961,31,1216,'Columbus',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16962,31,1216,'Cookstown',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16963,31,286,'Cranbury',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16964,31,131,'Cranford',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16965,31,1209,'Cream Ridge',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16966,31,1210,'Cresskill',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16967,31,286,'Dayton',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16968,31,1209,'Deal',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16969,31,1211,'Deepwater',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16970,31,584,'Deerfield Street',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16971,31,386,'Delaware',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16972,31,584,'Delmont',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16973,31,1216,'Delran',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16974,31,1210,'Demarest',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16975,31,1213,'Dennisville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16976,31,652,'Denville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16977,31,584,'Dividing Creek',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16978,31,584,'Dorchester',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16979,31,1208,'Dorothy',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16980,31,652,'Dover',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16981,31,1210,'Dumont',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16982,31,286,'Dunellen',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16983,31,286,'East Brunswick',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16984,31,652,'East Hanover',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16985,31,798,'East Orange',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16986,31,1210,'East Rutherford',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16987,31,1209,'Eatontown',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16988,31,1210,'Edgewater',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16989,31,286,'Edison',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16990,31,1208,'Egg Harbor City',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16991,31,1208,'Egg Harbor Township',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16992,31,131,'Elizabeth',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16993,31,1211,'Elmer',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16994,31,1210,'Elmwood Park',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16995,31,1208,'Elwood',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16996,31,1210,'Emerson',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16997,31,1210,'Englewood',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16998,31,1210,'Englewood Cliffs',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(16999,31,1209,'Englishtown',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17000,31,798,'Essex Fells',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17001,31,1208,'Estell Manor',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17002,31,1218,'Ewan',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17003,31,544,'Ewing',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17004,31,1209,'Fair Haven',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17005,31,1210,'Fair Lawn',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17006,31,798,'Fairfield',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17007,31,584,'Fairton',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17008,31,1210,'Fairview',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17009,31,131,'Fanwood',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17010,31,821,'Far Hills',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17011,31,1209,'Farmingdale',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17012,31,821,'Flagtown',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17013,31,652,'Flanders',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17014,31,1212,'Flemington',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17015,31,1216,'Florence',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17016,31,652,'Florham Park',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17017,31,286,'Fords',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17018,31,1214,'Forked River',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17019,31,1216,'Fort Dix',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17020,31,1210,'Fort Lee',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17021,31,1209,'Fort Monmouth',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17022,31,584,'Fortescue',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17023,31,289,'Franklin',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17024,31,1210,'Franklin Lakes',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17025,31,821,'Franklin Park',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17026,31,1218,'Franklinville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17027,31,1209,'Freehold',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17028,31,1212,'Frenchtown',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17029,31,1210,'Garfield',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17030,31,131,'Garwood',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17031,31,432,'Gibbsboro',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17032,31,1218,'Gibbstown',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17033,31,652,'Gillette',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17034,31,821,'Gladstone',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17035,31,1218,'Glassboro',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17036,31,289,'Glasser',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17037,31,1212,'Glen Gardner',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17038,31,798,'Glen Ridge',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17039,31,1210,'Glen Rock',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17040,31,432,'Glendora',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17041,31,289,'Glenwood',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17042,31,432,'Gloucester City',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17043,31,1213,'Goshen',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17044,31,386,'Great Meadows',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17045,31,1213,'Green Creek',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17046,31,652,'Green Village',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17047,31,289,'Greendell',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17048,31,584,'Greenwich',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17049,31,1218,'Grenloch',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17050,31,652,'Greystone Park',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17051,31,1210,'Hackensack',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17052,31,386,'Hackettstown',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17053,31,432,'Haddon Heights',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17054,31,432,'Haddon Township',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17055,31,432,'Haddonfield',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17056,31,1216,'Hainesport',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17057,31,1217,'Haledon',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17058,31,289,'Hamburg',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17059,31,1208,'Hammonton',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:13',NULL),(17060,31,1212,'Hampton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17061,31,1211,'Hancocks Bridge',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17062,31,1210,'Harrington Park',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17063,31,1215,'Harrison',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17064,31,1218,'Harrisonville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17065,31,1210,'Hasbrouck Heights',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17066,31,1217,'Haskell',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17067,31,1210,'Haworth',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17068,31,1217,'Hawthorne',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17069,31,1209,'Hazlet',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17070,31,584,'Heislerville',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17071,31,286,'Helmetta',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17072,31,1217,'Hewitt',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17073,31,652,'Hibernia',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17074,31,1212,'High Bridge',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17075,31,289,'Highland Lakes',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17076,31,286,'Highland Park',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17077,31,1209,'Highlands',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17078,31,544,'Hightstown',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17079,31,821,'Hillsborough',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17080,31,1210,'Hillsdale',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17081,31,131,'Hillside',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17082,31,1210,'Ho Ho Kus',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17083,31,1215,'Hoboken',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17084,31,270,'Holmdel',1,12351,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17085,31,1209,'Holmdel',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17086,31,289,'Hopatcong',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17087,31,386,'Hope',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17088,31,544,'Hopewell',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17089,31,1209,'Howell',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17090,31,1209,'Imlaystown',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17091,31,652,'Ironia',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17092,31,798,'Irvington',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17093,31,286,'Iselin',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17094,31,1214,'Island Heights',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17095,31,1214,'Jackson',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17096,31,1215,'Jersey City',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17097,31,1216,'Jobstown',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17098,31,386,'Johnsonburg',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17099,31,1216,'Juliustown',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17100,31,1209,'Keansburg',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17101,31,1215,'Kearny',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17102,31,286,'Keasbey',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17103,31,286,'Kendall Park',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17104,31,131,'Kenilworth',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17105,31,652,'Kenvil',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17106,31,1209,'Keyport',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17107,31,821,'Kingston',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17108,31,289,'Lafayette',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17109,31,652,'Lake Hiawatha',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17110,31,652,'Lake Hopatcong',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17111,31,1214,'Lakehurst',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17112,31,1214,'Lakewood',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17113,31,1212,'Lambertville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17114,31,652,'Landing',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17115,31,1208,'Landisville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17116,31,1214,'Lanoka Harbor',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17117,31,1214,'Lavallette',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17118,31,432,'Lawnside',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17119,31,289,'Layton',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17120,31,1212,'Lebanon',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17121,31,652,'Ledgewood',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17122,31,1208,'Leeds Point',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17123,31,584,'Leesburg',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17124,31,1209,'Leonardo',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17125,31,1210,'Leonia',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17126,31,821,'Liberty Corner',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17127,31,652,'Lincoln Park',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17128,31,1209,'Lincroft',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17129,31,131,'Linden',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17130,31,1208,'Linwood',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17131,31,1214,'Little Egg Harbor Twp',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17132,31,1217,'Little Falls',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17133,31,1210,'Little Ferry',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17134,31,1209,'Little Silver',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17135,31,1212,'Little York',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17136,31,798,'Livingston',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17137,31,1210,'Lodi',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17138,31,1209,'Long Branch',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17139,31,652,'Long Valley',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17140,31,1208,'Longport',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17141,31,1216,'Lumberton',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17142,31,1210,'Lyndhurst',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17143,31,821,'Lyons',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17144,31,652,'Madison',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17145,31,432,'Magnolia',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17146,31,1210,'Mahwah',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17147,31,1218,'Malaga',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17148,31,1214,'Manahawkin',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17149,31,1209,'Manasquan',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17150,31,1214,'Manchester Township',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17151,31,1214,'Mantoloking',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17152,31,1218,'Mantua',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17153,31,821,'Manville',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17154,31,1216,'Maple Shade',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17155,31,798,'Maplewood',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17156,31,1208,'Margate City',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17157,31,1209,'Marlboro',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17158,31,1216,'Marlton',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17159,31,1213,'Marmora',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17160,31,821,'Martinsville',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17161,31,1209,'Matawan',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17162,31,584,'Mauricetown',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17163,31,1208,'Mays Landing',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17164,31,1210,'Maywood',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17165,31,289,'Mc Afee',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17166,31,1216,'Medford',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17167,31,652,'Mendham',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17168,31,432,'Merchantville',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17169,31,286,'Metuchen',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17170,31,1218,'Mickleton',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17171,31,286,'Middlesex',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17172,31,1209,'Middletown',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17173,31,289,'Middleville',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17174,31,1210,'Midland Park',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17175,31,1212,'Milford',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17176,31,798,'Millburn',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17177,31,652,'Millington',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17178,31,1209,'Millstone Township',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17179,31,286,'Milltown',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17180,31,584,'Millville',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17181,31,1208,'Milmay',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17182,31,652,'Mine Hill',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17183,31,1208,'Minotola',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17184,31,1208,'Mizpah',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17185,31,1209,'Monmouth Beach',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17186,31,286,'Monmouth Junction',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17187,31,286,'Monroe Township',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17188,31,1211,'Monroeville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17189,31,289,'Montague',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17190,31,798,'Montclair',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17191,31,1210,'Montvale',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17192,31,652,'Montville',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17193,31,1210,'Moonachie',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17194,31,1216,'Moorestown',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17195,31,1209,'Morganville',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17196,31,652,'Morristown',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17197,31,652,'Mount Arlington',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17198,31,432,'Mount Ephraim',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17199,31,652,'Mount Freedom',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17200,31,1216,'Mount Holly',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17201,31,1216,'Mount Laurel',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17202,31,1218,'Mount Royal',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17203,31,652,'Mount Tabor',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17204,31,652,'Mountain Lakes',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17205,31,131,'Mountainside',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17206,31,1218,'Mullica Hill',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17207,31,1218,'National Park',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17208,31,1209,'Navesink',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17209,31,1209,'Neptune',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17210,31,821,'Neshanic Station',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17211,31,652,'Netcong',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17212,31,286,'New Brunswick',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17213,31,1214,'New Egypt',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17214,31,1216,'New Gretna',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17215,31,1216,'New Lisbon',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17216,31,1210,'New Milford',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17217,31,131,'New Providence',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17218,31,652,'New Vernon',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17219,31,798,'Newark',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17220,31,1218,'Newfield',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17221,31,1217,'Newfoundland',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17222,31,584,'Newport',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17223,31,289,'Newton',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17224,31,1208,'Newtonville',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17225,31,1211,'Norma',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17226,31,1214,'Normandy Beach',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17227,31,1210,'North Arlington',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17228,31,1215,'North Bergen',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17229,31,286,'North Brunswick',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17230,31,1208,'Northfield',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17231,31,1210,'Northvale',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17232,31,1210,'Norwood',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17233,31,798,'Nutley',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17234,31,1217,'Oak Ridge',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17235,31,1209,'Oakhurst',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17236,31,1210,'Oakland',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17237,31,1213,'Ocean City',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17238,31,1214,'Ocean Gate',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17239,31,1209,'Ocean Grove',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17240,31,1213,'Ocean View',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17241,31,1209,'Oceanport',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17242,31,1208,'Oceanville',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17243,31,289,'Ogdensburg',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17244,31,286,'Old Bridge',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17245,31,1212,'Oldwick',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17246,31,1210,'Oradell',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17247,31,798,'Orange',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17248,31,386,'Oxford',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17249,31,1210,'Palisades Park',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17250,31,1216,'Palmyra',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17251,31,1210,'Paramus',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17252,31,1210,'Park Ridge',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17253,31,286,'Parlin',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17254,31,652,'Parsippany',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17255,31,1217,'Passaic',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17256,31,1217,'Paterson',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17257,31,1218,'Paulsboro',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17258,31,821,'Peapack',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17259,31,1211,'Pedricktown',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17260,31,1216,'Pemberton',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17261,31,544,'Pennington',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17262,31,1211,'Penns Grove',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17263,31,432,'Pennsauken',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17264,31,1211,'Pennsville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17265,31,652,'Pequannock',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17266,31,286,'Perth Amboy',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17267,31,386,'Phillipsburg',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17268,31,652,'Picatinny Arsenal',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17269,31,1214,'Pine Beach',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17270,31,652,'Pine Brook',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17271,31,286,'Piscataway',1,103,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17272,31,1218,'Pitman',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17273,31,1212,'Pittstown',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17274,31,131,'Plainfield',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17275,31,286,'Plainsboro',1,104,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17276,31,1208,'Pleasantville',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17277,31,821,'Pluckemin',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17278,31,1214,'Point Pleasant Beach',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17279,31,1208,'Pomona',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17280,31,1217,'Pompton Lakes',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17281,31,652,'Pompton Plains',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17282,31,584,'Port Elizabeth',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17283,31,1209,'Port Monmouth',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17284,31,386,'Port Murray',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17285,31,584,'Port Norris',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17286,31,286,'Port Reading',1,105,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17287,31,1208,'Port Republic',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17288,31,1212,'Pottersville',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17289,31,544,'Princeton',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17290,31,1212,'Quakertown',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17291,31,1211,'Quinton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17292,31,131,'Rahway',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17293,31,1210,'Ramsey',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17294,31,1216,'Rancocas',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17295,31,652,'Randolph',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17296,31,821,'Raritan',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17297,31,1212,'Readington',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17298,31,1209,'Red Bank',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17299,31,1208,'Richland',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17300,31,1218,'Richwood',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17301,31,1210,'Ridgefield',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17302,31,1210,'Ridgefield Park',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17303,31,1210,'Ridgewood',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17304,31,1212,'Ringoes',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17305,31,1217,'Ringwood',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17306,31,1213,'Rio Grande',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17307,31,1210,'River Edge',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17308,31,652,'Riverdale',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17309,31,1216,'Riverton',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17310,31,1210,'Rochelle Park',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17311,31,652,'Rockaway',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17312,31,821,'Rocky Hill',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17313,31,1216,'Roebling',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17314,31,1209,'Roosevelt',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17315,31,798,'Roseland',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17316,31,131,'Roselle',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17317,31,131,'Roselle Park',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17318,31,1212,'Rosemont',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17319,31,584,'Rosenhayn',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17320,31,1209,'Rumson',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17321,31,432,'Runnemede',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17322,31,1210,'Rutherford',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17323,31,1210,'Saddle Brook',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17324,31,1210,'Saddle River',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17325,31,1211,'Salem',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17326,31,286,'Sayreville',1,110,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17327,31,652,'Schooleys Mountain',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17328,31,131,'Scotch Plains',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17329,31,1209,'Sea Girt',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17330,31,1213,'Sea Isle City',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17331,31,1214,'Seaside Heights',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17332,31,1214,'Seaside Park',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17333,31,1215,'Secaucus',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17334,31,1212,'Sergeantsville',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17335,31,286,'Sewaren',1,111,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17336,31,1218,'Sewell',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17337,31,584,'Shiloh',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17338,31,798,'Short Hills',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17339,31,1209,'Shrewsbury',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17340,31,432,'Sicklerville',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17341,31,821,'Skillman',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17342,31,432,'Somerdale',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17343,31,1208,'Somers Point',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17344,31,821,'Somerset',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17345,31,821,'Somerville',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17346,31,286,'South Amboy',1,115,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17347,31,821,'South Bound Brook',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17348,31,1213,'South Dennis',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17349,31,1210,'South Hackensack',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17350,31,798,'South Orange',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17351,31,286,'South Plainfield',1,116,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17352,31,286,'South River',1,117,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17353,31,1213,'South Seaville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17354,31,289,'Sparta',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17355,31,286,'Spotswood',1,118,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17356,31,1209,'Spring Lake',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17357,31,131,'Springfield',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17358,31,289,'Stanhope',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17359,31,1212,'Stanton',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17360,31,386,'Stewartsville',1,106,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17361,31,289,'Stillwater',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17362,31,652,'Stirling',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17363,31,289,'Stockholm',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17364,31,1212,'Stockton',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17365,31,1213,'Stone Harbor',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17366,31,432,'Stratford',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17367,31,1213,'Strathmere',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17368,31,652,'Succasunna',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17369,31,131,'Summit',1,104,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17370,31,289,'Sussex',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17371,31,289,'Swartswood',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17372,31,1218,'Swedesboro',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17373,31,1216,'Tabernacle',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17374,31,1210,'Teaneck',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17375,31,1210,'Tenafly',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17376,31,1209,'Tennent',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17377,31,1210,'Teterboro',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17378,31,1218,'Thorofare',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17379,31,1212,'Three Bridges',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17380,31,544,'Titusville',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17381,31,1214,'Toms River',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17382,31,1217,'Totowa',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17383,31,652,'Towaco',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17384,31,1210,'Township Of Washington',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17385,31,289,'Tranquility',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17387,31,1216,'Trenton',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17388,31,544,'Trenton',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17389,31,1213,'Tuckahoe',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17390,31,131,'Union',1,107,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17391,31,1215,'Union City',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17392,31,131,'Vauxhall',1,113,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17393,31,1208,'Ventnor City',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17394,31,289,'Vernon',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17395,31,798,'Verona',1,102,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17396,31,386,'Vienna',1,114,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17397,31,1213,'Villas',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17398,31,584,'Vineland',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17399,31,432,'Voorhees',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17400,31,1210,'Waldwick',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17401,31,1210,'Wallington',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17402,31,289,'Wallpack Center',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17403,31,1217,'Wanaque',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17404,31,1214,'Waretown',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17405,31,821,'Warren',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17406,31,386,'Washington',1,121,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17407,31,821,'Watchung',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17408,31,432,'Waterford Works',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17409,31,1217,'Wayne',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17410,31,1215,'Weehawken',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17411,31,1218,'Wenonah',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17412,31,432,'West Berlin',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17413,31,1214,'West Creek',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17414,31,1209,'West Long Branch',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17415,31,1217,'West Milford',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17416,31,1215,'West New York',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17417,31,798,'West Orange',1,106,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17418,31,544,'West Windsor',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17419,31,131,'Westfield',1,120,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17420,31,1218,'Westville',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17421,31,1210,'Westwood',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17422,31,652,'Wharton',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17423,31,652,'Whippany',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17424,31,1212,'Whitehouse',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17425,31,1212,'Whitehouse Station',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17426,31,1213,'Whitesboro',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17427,31,1209,'Wickatunk',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17428,31,1213,'Wildwood',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17429,31,1218,'Williamstown',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17430,31,1216,'Willingboro',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17431,31,544,'Windsor',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17432,31,432,'Winslow',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17433,31,1210,'Wood Ridge',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17434,31,1213,'Woodbine',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17435,31,286,'Woodbridge',1,146,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17436,31,1218,'Woodbury',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17437,31,1218,'Woodbury Heights',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17438,31,1210,'Woodcliff Lake',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17439,31,1211,'Woodstown',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17440,31,1216,'Wrightstown',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17441,31,1210,'Wyckoff',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17442,31,821,'Zarephath',1,103,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17443,32,1219,'Abiquiu',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17444,32,256,'Alamogordo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17445,32,1220,'Albuquerque',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17446,32,1219,'Alcalde',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17447,32,1221,'Algodones',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17448,32,147,'Alto',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17449,32,1222,'Amalia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17450,32,131,'Amistad',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17451,32,1184,'Angel Fire',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17452,32,1223,'Animas',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17453,32,1224,'Anthony',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17454,32,1225,'Anton Chico',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17455,32,1226,'Aragon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17456,32,148,'Arenas Valley',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17457,32,178,'Arrey',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17458,32,1222,'Arroyo Hondo',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17459,32,1222,'Arroyo Seco',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17460,32,1160,'Artesia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17461,32,277,'Aztec',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17462,32,1227,'Bard',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17463,32,148,'Bayard',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17464,32,1228,'Belen',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17465,32,256,'Bent',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17466,32,1224,'Berino',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17467,32,1221,'Bernalillo',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17468,32,277,'Blanco',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17469,32,277,'Bloomfield',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17470,32,1229,'Bluewater',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17471,32,1228,'Bosque',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17472,32,1228,'Bosque Farms',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17473,32,1230,'Brimhall',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17474,32,1231,'Broadview',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17475,32,148,'Buckhorn',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17476,32,1232,'Buena Vista',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17477,32,178,'Caballo',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17478,32,1219,'Canjilon',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17479,32,1231,'Cannon Afb',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17480,32,1219,'Canones',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17481,32,147,'Capitan',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17482,32,1233,'Caprock',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17483,32,131,'Capulin',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17484,32,1160,'Carlsbad',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17485,32,147,'Carrizozo',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17486,32,1222,'Carson',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17487,32,1229,'Casa Blanca',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17488,32,1035,'Causey',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17489,32,1219,'Cebolla',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17490,32,1220,'Cedar Crest',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17491,32,1234,'Cedarvale',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17492,32,1235,'Cerrillos',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17493,32,1222,'Cerro',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17494,32,1232,'Chacon',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17495,32,1219,'Chama',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17496,32,1224,'Chamberino',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17497,32,1222,'Chamisal',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17498,32,1224,'Chaparral',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17499,32,1219,'Chimayo',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17500,32,1230,'Church Rock',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17501,32,1184,'Cimarron',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17502,32,1236,'Claunch',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17503,32,131,'Clayton',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17504,32,1232,'Cleveland',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17505,32,148,'Cliff',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17506,32,1234,'Clines Corners',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17507,32,256,'Cloudcroft',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17508,32,1231,'Clovis',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17509,32,1221,'Cochiti Lake',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17510,32,1221,'Cochiti Pueblo',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17511,32,1237,'Columbus',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17512,32,267,'Conchas Dam',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17513,32,1230,'Continental Divide',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17514,32,1219,'Cordova',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17515,32,147,'Corona',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17516,32,1221,'Corrales',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17517,32,1222,'Costilla',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17518,32,1221,'Counselor',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17519,32,1219,'Coyote',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17520,32,1233,'Crossroads',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17521,32,1230,'Crownpoint',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17522,32,1221,'Cuba',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17523,32,1229,'Cubero',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17524,32,1225,'Cuervo',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17525,32,1226,'Datil',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17526,32,1237,'Deming',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17527,32,178,'Derry',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17528,32,131,'Des Moines',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17529,32,1238,'Dexter',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17530,32,1219,'Dixon',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17531,32,1224,'Dona Ana',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17532,32,1035,'Dora',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17533,32,1219,'Dulce',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17534,32,1184,'Eagle Nest',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17535,32,1235,'Edgewood',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17536,32,1222,'El Prado',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17537,32,1219,'El Rito',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17538,32,178,'Elephant Butte',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17539,32,1035,'Elida',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17540,32,1219,'Embudo',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17541,32,1234,'Encino',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17542,32,1219,'Espanola',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17543,32,1234,'Estancia',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17544,32,1233,'Eunice',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17545,32,1224,'Fairacres',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17546,32,277,'Farmington',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17547,32,148,'Faywood',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17548,32,1229,'Fence Lake',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17549,32,277,'Flora Vista',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17550,32,1035,'Floyd',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17551,32,131,'Folsom',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17552,32,148,'Fort Bayard',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17553,32,147,'Fort Stanton',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17554,32,1239,'Fort Sumner',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17555,32,1230,'Fort Wingate',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17556,32,277,'Fruitland',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17557,32,1219,'Gallina',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17558,32,1230,'Gallup',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17559,32,1230,'Gamerco',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17560,32,1224,'Garfield',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17561,32,267,'Garita',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17562,32,148,'Gila',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17563,32,131,'Gladstone',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17564,32,147,'Glencoe',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17565,32,1226,'Glenwood',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17566,32,1235,'Glorieta',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17567,32,1231,'Grady',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17568,32,1229,'Grants',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17569,32,131,'Grenville',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17570,32,1232,'Guadalupita',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17571,32,148,'Hachita',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17572,32,1238,'Hagerman',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17573,32,148,'Hanover',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17574,32,1224,'Hatch',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17575,32,1219,'Hernandez',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17576,32,256,'High Rolls Mountain Park',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17577,32,178,'Hillsboro',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17578,32,1233,'Hobbs',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17579,32,256,'Holloman Air Force Base',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17580,32,1232,'Holman',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17581,32,147,'Hondo',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17582,32,1160,'Hope',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17583,32,1227,'House',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17584,32,148,'Hurley',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17585,32,267,'Ilfeld',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17586,32,1220,'Isleta',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17587,32,1233,'Jal',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17588,32,1230,'Jamestown',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17589,32,1228,'Jarales',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17590,32,1221,'Jemez Pueblo',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17591,32,1221,'Jemez Springs',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17592,32,1035,'Kenna',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17593,32,277,'Kirtland',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17594,32,1220,'Kirtland Afb',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17595,32,1221,'La Jara',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17596,32,1236,'La Joya',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17597,32,1225,'La Loma',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17598,32,256,'La Luz',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17599,32,1219,'La Madera',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17600,32,1224,'La Mesa',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17601,32,277,'La Plata',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17602,32,1229,'Laguna',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17603,32,1238,'Lake Arthur',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17604,32,1160,'Lakewood',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17605,32,1235,'Lamy',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17606,32,1224,'Las Cruces',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17607,32,267,'Las Vegas',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17608,32,1236,'Lemitar',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17609,32,147,'Lincoln',1,104,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17610,32,1219,'Lindrith',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17611,32,1035,'Lingo',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17612,32,1222,'Llano',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17613,32,1160,'Loco Hills',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17614,32,1227,'Logan',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17615,32,1223,'Lordsburg',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17616,32,1240,'Los Alamos',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17617,32,1228,'Los Lunas',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17618,32,1219,'Los Ojos',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17619,32,1160,'Loving',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17620,32,1233,'Lovington',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17621,32,1226,'Luna',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17622,32,1236,'Magdalena',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17623,32,1160,'Malaga',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17624,32,1233,'Maljamar',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17625,32,1184,'Maxwell',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17626,32,256,'Mayhill',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17627,32,1227,'Mc Alister',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17628,32,1233,'Mc Donald',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17629,32,1234,'Mc Intosh',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17630,32,1219,'Medanales',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17631,32,1231,'Melrose',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17632,32,1230,'Mentmore',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17633,32,256,'Mescalero',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17634,32,1224,'Mesilla',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17635,32,1224,'Mesilla Park',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17636,32,1224,'Mesquite',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17637,32,1230,'Mexican Springs',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17638,32,1184,'Miami',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17639,32,1229,'Milan',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17640,32,1241,'Mills',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17641,32,1035,'Milnesand',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17642,32,148,'Mimbres',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17643,32,267,'Montezuma',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17644,32,178,'Monticello',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17645,32,1233,'Monument',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17646,32,1232,'Mora',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17647,32,1234,'Moriarty',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17648,32,1241,'Mosquero',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17649,32,1234,'Mountainair',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17650,32,148,'Mule Creek',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17651,32,277,'Nageezi',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17652,32,1227,'Nara Visa',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17653,32,1230,'Navajo',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17654,32,277,'Navajo Dam',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17655,32,1229,'New Laguna',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17656,32,277,'Newcomb',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17657,32,1225,'Newkirk',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17658,32,147,'Nogal',1,125,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17659,32,1232,'Ocate',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17660,32,1222,'Ojo Caliente',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17661,32,1232,'Ojo Feliz',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17662,32,1224,'Organ',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17663,32,256,'Orogrande',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17664,32,1229,'Paguate',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17665,32,267,'Pecos',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17666,32,1221,'Pena Blanca',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17667,32,1222,'Penasco',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17668,32,1035,'Pep',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17669,32,1228,'Peralta',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17670,32,1219,'Petaca',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17671,32,147,'Picacho',1,136,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17672,32,1226,'Pie Town',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17673,32,1229,'Pinehill',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17674,32,256,'Pinon',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17675,32,148,'Pinos Altos',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17676,32,1221,'Placitas',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17677,32,1223,'Playas',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17678,32,1236,'Polvadera',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17679,32,1221,'Ponderosa',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17680,32,1035,'Portales',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17681,32,1230,'Prewitt',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17682,32,1228,'Pueblo Of Acoma',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17683,32,1227,'Quay',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17684,32,1226,'Quemado',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17685,32,1222,'Questa',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17686,32,1224,'Radium Springs',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17687,32,1232,'Rainsville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17688,32,1230,'Ramah',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17689,32,1222,'Ranchos De Taos',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17690,32,1184,'Raton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17691,32,1222,'Red River',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17692,32,148,'Redrock',1,104,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17693,32,1221,'Regina',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17694,32,1230,'Rehoboth',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17695,32,1226,'Reserve',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17696,32,267,'Ribera',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17697,32,1224,'Rincon',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17698,32,1221,'Rio Rancho',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17699,32,267,'Rociada',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17700,32,1223,'Rodeo',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17701,32,1035,'Rogers',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17702,32,1238,'Roswell',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17703,32,267,'Rowe',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17704,32,1241,'Roy',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17705,32,147,'Ruidoso',1,145,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17706,32,147,'Ruidoso Downs',1,146,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17707,32,256,'Sacramento',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17708,32,1231,'Saint Vrain',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17709,32,1224,'Salem',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17710,32,1236,'San Acacia',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17711,32,1236,'San Antonio',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17712,32,1222,'San Cristobal',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17713,32,1229,'San Fidel',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17714,32,1227,'San Jon',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17715,32,267,'San Jose',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17716,32,1219,'San Juan Pueblo',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17717,32,1224,'San Miguel',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17718,32,147,'San Patricio',1,149,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17719,32,1229,'San Rafael',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17720,32,1221,'San Ysidro',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17721,32,1220,'Sandia Park',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17722,32,277,'Sanostee',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17723,32,148,'Santa Clara',1,107,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17724,32,1235,'Santa Cruz',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17725,32,1235,'Santa Fe',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17726,32,1225,'Santa Rosa',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17727,32,1224,'Santa Teresa',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17728,32,1221,'Santo Domingo Pueblo',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17729,32,267,'Sapello',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17730,32,131,'Sedan',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17731,32,267,'Serafina',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17732,32,277,'Sheep Springs',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17733,32,277,'Shiprock',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17734,32,148,'Silver City',1,111,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17735,32,1230,'Smith Lake',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17736,32,1236,'Socorro',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17737,32,1241,'Solano',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17738,32,1184,'Springer',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17739,32,1235,'Stanley',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17740,32,1224,'Sunland Park',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17741,32,256,'Sunspot',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17742,32,1239,'Taiban',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17743,32,1222,'Taos',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17744,32,1222,'Taos Ski Valley',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17745,32,1233,'Tatum',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17746,32,267,'Tererro',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17747,32,1235,'Tesuque',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17748,32,1231,'Texico',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17749,32,1230,'Thoreau',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17750,32,1219,'Tierra Amarilla',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17751,32,1220,'Tijeras',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17752,32,256,'Timberon',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17753,32,147,'Tinnie',1,176,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17754,32,1230,'Tohatchi',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17755,32,1228,'Tome',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17756,32,1234,'Torreon',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17757,32,1222,'Trampas',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17758,32,267,'Trementina',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17759,32,1222,'Tres Piedras',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17760,32,1219,'Truchas',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17761,32,178,'Truth Or Consequences',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17762,32,1227,'Tucumcari',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17763,32,256,'Tularosa',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17764,32,148,'Tyrone',1,121,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17765,32,1184,'Ute Park',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17766,32,1222,'Vadito',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17767,32,1224,'Vado',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17768,32,1222,'Valdez',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17769,32,1219,'Vallecitos',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17770,32,1232,'Valmora',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17771,32,1230,'Vanderwagen',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17772,32,1225,'Vaughn',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17773,32,1236,'Veguita',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17774,32,1219,'Velarde',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17775,32,267,'Villanueva',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17776,32,1232,'Wagon Mound',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17777,32,277,'Waterflow',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17778,32,1232,'Watrous',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17779,32,256,'Weed',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17780,32,1224,'White Sands Missile Range',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17781,32,1160,'Whites City',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17782,32,1234,'Willard',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17783,32,178,'Williamsburg',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17784,32,178,'Winston',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17785,32,1230,'Yatahey',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17786,32,1239,'Yeso',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17787,32,1219,'Youngsville',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17788,32,1230,'Zuni',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17789,29,147,'Alamo',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17790,29,1242,'Amargosa Valley',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17791,29,1243,'Austin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17792,29,1244,'Baker',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17793,29,1243,'Battle Mountain',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17794,29,1242,'Beatty',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17795,29,100,'Blue Diamond',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17796,29,100,'Boulder City',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17797,29,100,'Bunkerville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17798,29,100,'Cal Nev Ari',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17799,29,147,'Caliente',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17800,29,1245,'Carlin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17801,29,1246,'Carson City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17802,29,254,'Carson City',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17803,29,1247,'Crescent Valley',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17804,29,1248,'Crystal Bay',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17805,29,462,'Dayton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17806,29,1245,'Deeth',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17807,29,176,'Denio',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17808,29,1244,'Duckwater',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17809,29,1249,'Dyer',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17810,29,1245,'Elko',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17811,29,1244,'Ely',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17812,29,1248,'Empire',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17813,29,1247,'Eureka',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17814,29,1250,'Fallon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17815,29,462,'Fernley',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17816,29,1242,'Gabbs',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17817,29,254,'Gardnerville',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17818,29,254,'Genoa',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17819,29,1248,'Gerlach',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17820,29,254,'Glenbrook',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17821,29,176,'Golconda',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17822,29,1249,'Goldfield',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17823,29,1245,'Halleck',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17824,29,261,'Hawthorne',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17825,29,100,'Henderson',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17826,29,147,'Hiko',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17827,29,1251,'Imlay',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17828,29,1248,'Incline Village',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17829,29,100,'Indian Springs',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17830,29,1245,'Jackpot',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17831,29,1245,'Jarbidge',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17832,29,100,'Jean',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17833,29,1245,'Lamoille',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17834,29,100,'Las Vegas',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17835,29,100,'Laughlin',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17836,29,100,'Logandale',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17837,29,1251,'Lovelock',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17838,29,1244,'Lund',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17839,29,261,'Luning',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17840,29,1242,'Manhattan',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17841,29,176,'Mc Dermitt',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17842,29,1244,'Mc Gill',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17843,29,1242,'Mercury',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17844,29,100,'Mesquite',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17845,29,261,'Mina',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17846,29,254,'Minden',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17847,29,100,'Moapa',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17848,29,1245,'Montello',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17849,29,1245,'Mountain City',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17850,29,100,'Nellis Afb',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17851,29,1248,'Nixon',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17852,29,100,'North Las Vegas',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17853,29,176,'Orovada',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17854,29,100,'Overton',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17855,29,1245,'Owyhee',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17856,29,1242,'Pahrump',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17857,29,147,'Panaca',1,133,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17858,29,176,'Paradise Valley',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17859,29,147,'Pioche',1,137,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17860,29,1248,'Reno',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17861,29,1242,'Round Mountain',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17862,29,1245,'Ruby Valley',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17863,29,1244,'Ruth',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17864,29,261,'Schurz',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17865,29,100,'Searchlight',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17866,29,462,'Silver City',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17867,29,462,'Silver Springs',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17868,29,1249,'Silverpeak',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17869,29,100,'Sloan',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17870,29,462,'Smith',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17871,29,1248,'Sparks',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17872,29,1245,'Spring Creek',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17873,29,254,'Stateline',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17874,29,1248,'Sun Valley',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17875,29,100,'The Lakes',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17876,29,1242,'Tonopah',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17877,29,1245,'Tuscarora',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17878,29,176,'Valmy',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17879,29,1248,'Verdi',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17880,29,1252,'Virginia City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17881,29,1248,'Wadsworth',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17882,29,1248,'Washoe Valley',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17883,29,462,'Wellington',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17884,29,1245,'Wells',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17885,29,1245,'West Wendover',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17886,29,176,'Winnemucca',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17887,29,462,'Yerington',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17888,29,254,'Zephyr Cove',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17889,33,1253,'Accord',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17890,33,63,'Acra',1,60,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(17891,33,30,'Adams',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17892,33,59,'Adams Basin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17893,33,30,'Adams Center',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17894,33,591,'Addison',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17895,33,386,'Adirondack',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17896,33,1254,'Afton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17897,33,1255,'Akron',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17898,33,1256,'Albany',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17899,33,315,'Albertson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17900,33,792,'Albion',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17901,33,1256,'Alcove',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17902,33,1255,'Alden',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17903,33,536,'Alder Creek',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17904,33,851,'Alexander',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17905,33,30,'Alexandria Bay',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17906,33,816,'Alfred',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17907,33,816,'Alfred Station',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17908,33,1257,'Allegany',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17909,33,816,'Allentown',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17910,33,816,'Alma',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17911,33,816,'Almond',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17912,33,574,'Alpine',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17913,33,1258,'Alplaus',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17914,33,1256,'Altamont',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17915,33,1259,'Altmar',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17916,33,431,'Alton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17917,33,465,'Altona',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17918,33,797,'Amagansett',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17919,33,1260,'Amawalk',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17920,33,1261,'Amenia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17921,33,797,'Amityville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17922,33,72,'Amsterdam',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17923,33,143,'Ancram',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17924,33,143,'Ancramdale',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17925,33,497,'Andes',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17926,33,816,'Andover',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17927,33,816,'Angelica',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17928,33,1255,'Angola',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17929,33,1261,'Annandale On Hudson',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17930,33,30,'Antwerp',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17931,33,1262,'Apalachin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17932,33,1263,'Appleton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17933,33,1264,'Apulia Station',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17934,33,797,'Aquebogue',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17935,33,1265,'Arcade',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17936,33,177,'Arden',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17937,33,1260,'Ardsley',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17938,33,1260,'Ardsley On Hudson',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17939,33,71,'Argyle',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17940,33,591,'Arkport',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17941,33,497,'Arkville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17942,33,1260,'Armonk',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17943,33,1266,'Arverne',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17944,33,63,'Ashland',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17945,33,661,'Ashville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17946,33,1266,'Astoria',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17947,33,63,'Athens',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17948,33,386,'Athol',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17949,33,1255,'Athol Springs',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17950,33,591,'Atlanta',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17951,33,315,'Atlantic Beach',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17952,33,1265,'Attica',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17953,33,465,'Au Sable Forks',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17954,33,1267,'Auburn',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17955,33,72,'Auriesville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17956,33,1267,'Aurora',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17957,33,143,'Austerlitz',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17958,33,536,'Ava',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17959,33,1268,'Averill Park',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17960,33,591,'Avoca',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17961,33,548,'Avon',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17962,33,797,'Babylon',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17963,33,1254,'Bainbridge',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17964,33,386,'Bakers Mills',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17965,33,315,'Baldwin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17966,33,1260,'Baldwin Place',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17967,33,1264,'Baldwinsville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17968,33,1269,'Ballston Lake',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17969,33,1269,'Ballston Spa',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17970,33,1261,'Bangall',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17971,33,1263,'Barker',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17972,33,536,'Barneveld',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17973,33,1261,'Barrytown',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17974,33,611,'Barryville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17975,33,1262,'Barton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17976,33,851,'Basom',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17977,33,851,'Batavia',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17978,33,591,'Bath',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17979,33,797,'Bay Shore',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17980,33,797,'Bayport',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17981,33,1266,'Bayside',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17982,33,315,'Bayville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17983,33,1261,'Beacon',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17984,33,1270,'Bear Mountain',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17985,33,1253,'Bearsville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17986,33,574,'Beaver Dams',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17987,33,528,'Beaver Falls',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17988,33,1260,'Bedford',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17989,33,1260,'Bedford Hills',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17990,33,816,'Belfast',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17991,33,1266,'Bellerose',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17992,33,30,'Belleville',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17993,33,315,'Bellmore',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17994,33,1271,'Bellona',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17995,33,797,'Bellport',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17996,33,177,'Bellvale',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17997,33,816,'Belmont',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17998,33,661,'Bemus Point',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(17999,33,851,'Bergen',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18000,33,1262,'Berkshire',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18001,33,1268,'Berlin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18002,33,1256,'Berne',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18003,33,1259,'Bernhards Bay',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18004,33,611,'Bethel',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18005,33,315,'Bethpage',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18006,33,1272,'Bible School Park',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18007,33,1273,'Big Flats',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18008,33,1253,'Big Indian',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18009,33,1261,'Billings',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18010,33,1272,'Binghamton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18011,33,816,'Black Creek',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18012,33,30,'Black River',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18013,33,1270,'Blauvelt',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18014,33,1265,'Bliss',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18015,33,1274,'Blodgett Mills',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18016,33,1275,'Bloomfield',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18017,33,177,'Blooming Grove',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18018,33,611,'Bloomingburg',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18019,33,798,'Bloomingdale',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18020,33,1253,'Bloomington',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18021,33,497,'Bloomville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18022,33,536,'Blossvale',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18023,33,334,'Blue Mountain Lake',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18024,33,797,'Blue Point',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18025,33,797,'Bohemia',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18026,33,1253,'Boiceville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18027,33,816,'Bolivar',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18028,33,386,'Bolton Landing',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18029,33,92,'Bombay',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18030,33,536,'Boonville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18031,33,1255,'Boston',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18032,33,68,'Bouckville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18033,33,497,'Bovina Center',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18034,33,1255,'Bowmansville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18035,33,574,'Bradford',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18036,33,1268,'Brainard',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18037,33,92,'Brainardsville',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18038,33,1271,'Branchport',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18039,33,1255,'Brant',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18040,33,386,'Brant Lake',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18041,33,528,'Brantingham',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18042,33,1276,'Brasher Falls',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18043,33,1273,'Breesport',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18044,33,1266,'Breezy Point',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18045,33,797,'Brentwood',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18046,33,1264,'Brewerton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18047,33,308,'Brewster',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18048,33,1260,'Briarcliff Manor',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18049,33,797,'Bridgehampton',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18050,33,1264,'Bridgeport',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18051,33,536,'Bridgewater',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18052,33,1276,'Brier Hill',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18053,33,797,'Brightwaters',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18054,33,119,'Broadalbin',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18055,33,59,'Brockport',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18056,33,661,'Brocton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18057,33,1277,'Bronx',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18058,33,1260,'Bronxville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18059,33,68,'Brookfield',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18060,33,797,'Brookhaven',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18061,33,190,'Brooklyn',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18062,33,1278,'Brooktondale',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18063,33,30,'Brownville',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18064,33,92,'Brushton',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18065,33,1260,'Buchanan',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18066,33,1255,'Buffalo',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18067,33,177,'Bullville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18068,33,574,'Burdett',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18069,33,92,'Burke',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18070,33,611,'Burlingham',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18071,33,886,'Burlington Flats',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18072,33,1269,'Burnt Hills',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18073,33,1263,'Burt',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18074,33,1268,'Buskirk',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18075,33,851,'Byron',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18076,33,465,'Cadyville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18077,33,63,'Cairo',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18078,33,30,'Calcium',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18079,33,548,'Caledonia',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18080,33,611,'Callicoon',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18081,33,611,'Callicoon Center',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18082,33,797,'Calverton',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18083,33,1266,'Cambria Heights',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18084,33,71,'Cambridge',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18085,33,536,'Camden',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18086,33,591,'Cameron',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18087,33,591,'Cameron Mills',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18088,33,1264,'Camillus',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18089,33,591,'Campbell',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18090,33,177,'Campbell Hall',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18091,33,143,'Canaan',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18092,33,72,'Canajoharie',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18093,33,1275,'Canandaigua',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18094,33,816,'Canaseraga',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18095,33,68,'Canastota',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18096,33,1262,'Candor',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18097,33,816,'Caneadea',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18098,33,591,'Canisteo',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18099,33,1276,'Canton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18100,33,30,'Cape Vincent',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18101,33,315,'Carle Place',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18102,33,1279,'Carlisle',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18103,33,308,'Carmel',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18104,33,119,'Caroga Lake',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18105,33,30,'Carthage',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18106,33,661,'Cassadaga',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18107,33,536,'Cassville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18108,33,1265,'Castile',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18109,33,1272,'Castle Creek',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18110,33,1261,'Castle Point',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18111,33,1268,'Castleton On Hudson',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18112,33,528,'Castorland',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18113,33,1267,'Cato',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18114,33,63,'Catskill',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18115,33,1257,'Cattaraugus',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18116,33,1267,'Cayuga',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18117,33,574,'Cayuta',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18118,33,68,'Cazenovia',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18119,33,315,'Cedarhurst',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18120,33,661,'Celoron',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18121,33,797,'Center Moriches',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18122,33,797,'Centereach',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18123,33,797,'Centerport',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18124,33,816,'Centerville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18125,33,1279,'Central Bridge',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18126,33,797,'Central Islip',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18127,33,1259,'Central Square',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18128,33,177,'Central Valley',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18129,33,816,'Ceres',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18130,33,536,'Chadwicks',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18131,33,1255,'Chaffee',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18132,33,465,'Champlain',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18133,33,1260,'Chappaqua',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18134,33,1279,'Charlotteville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18135,33,1276,'Chase Mills',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18136,33,92,'Chateaugay',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18137,33,143,'Chatham',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18138,33,30,'Chaumont',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18139,33,661,'Chautauqua',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18140,33,465,'Chazy',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18141,33,1261,'Chelsea',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18142,33,1273,'Chemung',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18143,33,1272,'Chenango Bridge',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18144,33,1272,'Chenango Forks',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18145,33,661,'Cherry Creek',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18146,33,1268,'Cherry Plain',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18147,33,886,'Cherry Valley',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18148,33,177,'Chester',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18149,33,386,'Chestertown',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18150,33,1253,'Chichester',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18151,33,1276,'Childwold',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18152,33,1276,'Chippewa Bay',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18153,33,68,'Chittenango',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18154,33,59,'Churchville',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18155,33,465,'Churubusco',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18156,33,1264,'Cicero',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18157,33,1274,'Cincinnatus',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18158,33,177,'Circleville',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18159,33,1255,'Clarence',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18160,33,1255,'Clarence Center',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18161,33,792,'Clarendon',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18162,33,536,'Clark Mills',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18163,33,59,'Clarkson',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18164,33,1256,'Clarksville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18165,33,611,'Claryville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18166,33,143,'Claverack',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18167,33,1264,'Clay',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18168,33,30,'Clayton',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18169,33,536,'Clayville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18170,33,71,'Clemons',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18171,33,1259,'Cleveland',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18172,33,386,'Cleverdale',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18173,33,1269,'Clifton Park',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18174,33,1275,'Clifton Springs',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18175,33,63,'Climax',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18176,33,536,'Clinton',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18177,33,1261,'Clinton Corners',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18178,33,1253,'Clintondale',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18179,33,68,'Clockville',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18180,33,431,'Clyde',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18181,33,661,'Clymer',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18182,33,1279,'Cobleskill',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18183,33,611,'Cochecton',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18184,33,611,'Cochecton Center',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18185,33,1256,'Coeymans',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18186,33,1256,'Coeymans Hollow',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18187,33,591,'Cohocton',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18188,33,1256,'Cohoes',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18189,33,1280,'Cold Brook',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18190,33,308,'Cold Spring',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18191,33,797,'Cold Spring Harbor',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18192,33,1255,'Colden',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18193,33,1266,'College Point',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18194,33,886,'Colliersville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18195,33,1255,'Collins',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18196,33,1255,'Collins Center',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18197,33,1276,'Colton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18198,33,143,'Columbiaville',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18199,33,797,'Commack',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18200,33,71,'Comstock',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18201,33,548,'Conesus',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18202,33,1257,'Conewango Valley',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18203,33,1270,'Congers',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18204,33,1272,'Conklin',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18205,33,1253,'Connelly',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18206,33,92,'Constable',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18207,33,528,'Constableville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18208,33,1259,'Constantia',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18209,33,591,'Coopers Plains',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18210,33,886,'Cooperstown',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18211,33,143,'Copake',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18212,33,143,'Copake Falls',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18213,33,528,'Copenhagen',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18214,33,797,'Copiague',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18215,33,797,'Coram',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18216,33,1272,'Corbettsville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18217,33,851,'Corfu',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18218,33,1269,'Corinth',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18219,33,591,'Corning',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18220,33,177,'Cornwall',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18221,33,177,'Cornwall On Hudson',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18222,33,63,'Cornwallville',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18223,33,1266,'Corona',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18224,33,1274,'Cortland',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18225,33,1260,'Cortlandt Manor',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18226,33,71,'Cossayuna',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18227,33,1253,'Cottekill',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18228,33,1265,'Cowlesville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18229,33,63,'Coxsackie',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18230,33,1253,'Cragsmoor',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18231,33,1276,'Cranberry Lake',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18232,33,143,'Craryville',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18233,33,1255,'Crittenden',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18234,33,528,'Croghan',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18235,33,1260,'Crompond',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18236,33,1268,'Cropseyville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18237,33,1260,'Cross River',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18238,33,1260,'Croton Falls',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18239,33,1260,'Croton On Hudson',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18240,33,798,'Crown Point',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18241,33,816,'Cuba',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18242,33,177,'Cuddebackville',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18243,33,797,'Cutchogue',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18244,33,1265,'Dale',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18245,33,548,'Dalton',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18246,33,465,'Dannemora',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18247,33,548,'Dansville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18248,33,851,'Darien Center',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18249,33,497,'Davenport',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18250,33,497,'Davenport Center',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18251,33,1257,'Dayton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18252,33,1276,'De Kalb Junction',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18253,33,1276,'De Peyster',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18254,33,68,'De Ruyter',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18255,33,536,'Deansboro',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18256,33,797,'Deer Park',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18257,33,528,'Deer River',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18258,33,30,'Deferiet',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18259,33,497,'Delancey',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18260,33,1258,'Delanson',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18261,33,1257,'Delevan',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18262,33,497,'Delhi',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18263,33,1256,'Delmar',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18264,33,1264,'Delphi Falls',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18265,33,528,'Denmark',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18266,33,497,'Denver',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18267,33,30,'Depauville',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18268,33,1255,'Depew',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18269,33,1272,'Deposit',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18270,33,1255,'Derby',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18271,33,661,'Dewittville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18272,33,30,'Dexter',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18273,33,386,'Diamond Point',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18274,33,92,'Dickinson Center',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18275,33,1260,'Dobbs Ferry',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18276,33,1280,'Dolgeville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18277,33,1256,'Dormansville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18278,33,1261,'Dover Plains',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18279,33,497,'Downsville',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18280,33,1271,'Dresden',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18281,33,1278,'Dryden',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18282,33,1258,'Duanesburg',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18283,33,1271,'Dundee',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18284,33,661,'Dunkirk',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18285,33,63,'Durham',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18286,33,536,'Durhamville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18287,33,1280,'Eagle Bay',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18288,33,1268,'Eagle Bridge',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18289,33,63,'Earlton',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18290,33,1254,'Earlville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18291,33,1255,'East Amherst',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18292,33,1255,'East Aurora',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18293,33,1256,'East Berne',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18294,33,851,'East Bethany',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18295,33,1275,'East Bloomfield',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18296,33,497,'East Branch',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18297,33,143,'East Chatham',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18298,33,1255,'East Concord',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18299,33,63,'East Durham',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18300,33,1266,'East Elmhurst',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18301,33,1268,'East Greenbush',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18302,33,797,'East Hampton',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18303,33,1274,'East Homer',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18304,33,797,'East Islip',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18305,33,63,'East Jewett',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18306,33,797,'East Marion',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18307,33,315,'East Meadow',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18308,33,497,'East Meredith',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18309,33,797,'East Moriches',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18310,33,1268,'East Nassau',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18311,33,797,'East Northport',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18312,33,315,'East Norwich',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18313,33,1257,'East Otto',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18314,33,851,'East Pembroke',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18315,33,1254,'East Pharsalia',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18316,33,797,'East Quogue',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18317,33,1257,'East Randolph',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18318,33,59,'East Rochester',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18319,33,315,'East Rockaway',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18320,33,1268,'East Schodack',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18321,33,797,'East Setauket',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18322,33,886,'East Springfield',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18323,33,1264,'East Syracuse',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18324,33,431,'East Williamson',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18325,33,886,'East Worcester',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18326,33,1260,'Eastchester',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18327,33,797,'Eastport',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18328,33,68,'Eaton',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18329,33,1255,'Eden',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18330,33,886,'Edmeston',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18331,33,1276,'Edwards',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18332,33,851,'Elba',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18333,33,1264,'Elbridge',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18334,33,611,'Eldred',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18335,33,798,'Elizabethtown',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18336,33,143,'Elizaville',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18337,33,63,'Elka Park',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18338,33,465,'Ellenburg',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18339,33,465,'Ellenburg Center',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18340,33,465,'Ellenburg Depot',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18341,33,1253,'Ellenville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18342,33,1257,'Ellicottville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18343,33,661,'Ellington',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18344,33,30,'Ellisburg',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18345,33,1255,'Elma',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18346,33,1266,'Elmhurst',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18347,33,1273,'Elmira',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18348,33,315,'Elmont',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18349,33,1260,'Elmsford',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18350,33,1272,'Endicott',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18351,33,1272,'Endwell',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18352,33,68,'Erieville',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18353,33,1273,'Erin',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18354,33,1253,'Esopus',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18355,33,72,'Esperance',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18356,33,798,'Essex',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18357,33,1278,'Etna',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18358,33,30,'Evans Mills',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18359,33,1264,'Fabius',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18360,33,1267,'Fair Haven',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18361,33,59,'Fairport',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18362,33,661,'Falconer',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18363,33,611,'Fallsburg',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18364,33,792,'Fancher',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18365,33,1266,'Far Rockaway',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18366,33,1257,'Farmersville Station',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18367,33,315,'Farmingdale',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18368,33,1275,'Farmington',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18369,33,797,'Farmingville',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18370,33,1255,'Farnham',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18371,33,1281,'Fayette',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18372,33,1264,'Fayetteville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18373,33,30,'Felts Mills',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18374,33,611,'Ferndale',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18375,33,1256,'Feura Bush',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18376,33,816,'Fillmore',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18377,33,661,'Findley Lake',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18378,33,1276,'Fine',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18379,33,1275,'Fishers',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18380,33,797,'Fishers Island',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18381,33,30,'Fishers Landing',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18382,33,1261,'Fishkill',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18383,33,497,'Fishs Eddy',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18384,33,497,'Fleischmanns',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18385,33,315,'Floral Park',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18386,33,1266,'Floral Park',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18387,33,177,'Florida',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18388,33,1266,'Flushing',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18389,33,886,'Fly Creek',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18390,33,72,'Fonda',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18391,33,1266,'Forest Hills',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18392,33,611,'Forestburgh',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18393,33,536,'Forestport',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18394,33,661,'Forestville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18395,33,71,'Fort Ann',1,132,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18396,33,92,'Fort Covington',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18397,33,30,'Fort Drum',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18398,33,71,'Fort Edward',1,134,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18399,33,72,'Fort Hunter',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18400,33,72,'Fort Johnson',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18401,33,177,'Fort Montgomery',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18402,33,72,'Fort Plain',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18403,33,1280,'Frankfort',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18404,33,497,'Franklin',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18405,33,536,'Franklin Springs',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18406,33,315,'Franklin Square',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18407,33,1257,'Franklinville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18408,33,661,'Fredonia',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18409,33,1257,'Freedom',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18410,33,63,'Freehold',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18411,33,315,'Freeport',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18412,33,1278,'Freeville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18413,33,611,'Fremont Center',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18414,33,1266,'Fresh Meadows',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18415,33,661,'Frewsburg',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18416,33,816,'Friendship',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18417,33,1259,'Fulton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18418,33,1279,'Fultonham',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18419,33,72,'Fultonville',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18420,33,92,'Gabriels',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18421,33,1265,'Gainesville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18422,33,1279,'Gallupville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18423,33,1269,'Galway',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18424,33,1269,'Gansevoort',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18425,33,315,'Garden City',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18426,33,1253,'Gardiner',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18427,33,1270,'Garnerville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18428,33,886,'Garrattsville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18429,33,308,'Garrison',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18430,33,1263,'Gasport',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18431,33,548,'Geneseo',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18432,33,1275,'Geneva',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18433,33,1267,'Genoa',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18434,33,68,'Georgetown',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18435,33,143,'Germantown',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18436,33,661,'Gerry',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18437,33,1255,'Getzville',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18438,33,143,'Ghent',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18439,33,886,'Gilbertsville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18440,33,1279,'Gilboa',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18441,33,1253,'Glasco',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18442,33,1272,'Glen Aubrey',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18443,33,315,'Glen Cove',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18444,33,315,'Glen Head',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18445,33,1266,'Glen Oaks',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18446,33,611,'Glen Spey',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18447,33,611,'Glen Wild',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18448,33,528,'Glenfield',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18449,33,1253,'Glenford',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18450,33,1261,'Glenham',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18451,33,1256,'Glenmont',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18452,33,386,'Glens Falls',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18453,33,1255,'Glenwood',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18454,33,315,'Glenwood Landing',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18455,33,119,'Gloversville',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18456,33,1260,'Goldens Bridge',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18457,33,1275,'Gorham',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18458,33,177,'Goshen',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18459,33,1276,'Gouverneur',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18460,33,1257,'Gowanda',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18461,33,1268,'Grafton',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18462,33,611,'Grahamsville',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18463,33,497,'Grand Gorge',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18464,33,1255,'Grand Island',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18465,33,1260,'Granite Springs',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18466,33,71,'Granville',1,150,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18467,33,30,'Great Bend',1,108,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18468,33,315,'Great Neck',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18469,33,797,'Great River',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18470,33,1257,'Great Valley',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18471,33,1254,'Greene',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18472,33,1269,'Greenfield Center',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18473,33,1253,'Greenfield Park',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18474,33,661,'Greenhurst',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18475,33,797,'Greenlawn',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18476,33,797,'Greenport',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18477,33,315,'Greenvale',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18478,33,63,'Greenville',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18479,33,71,'Greenwich',1,155,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18480,33,591,'Greenwood',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18481,33,177,'Greenwood Lake',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18482,33,528,'Greig',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18483,33,1278,'Groton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18484,33,548,'Groveland',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18485,33,1256,'Guilderland',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18486,33,1256,'Guilderland Center',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18487,33,1254,'Guilford',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18488,33,1269,'Hadley',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18489,33,72,'Hagaman',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18490,33,386,'Hague',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18491,33,1276,'Hailesboro',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18492,33,63,'Haines Falls',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18493,33,497,'Halcottsville',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18494,33,1275,'Hall',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18495,33,1255,'Hamburg',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18496,33,497,'Hamden',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18497,33,68,'Hamilton',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18498,33,59,'Hamlin',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18499,33,1276,'Hammond',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18500,33,591,'Hammondsport',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18501,33,71,'Hampton',1,159,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18502,33,797,'Hampton Bays',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18503,33,497,'Hancock',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18504,33,611,'Hankins',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18505,33,63,'Hannacroix',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18506,33,1276,'Hannawa Falls',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18507,33,1259,'Hannibal',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18508,33,1274,'Harford',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18509,33,497,'Harpersfield',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18510,33,1272,'Harpursville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18511,33,177,'Harriman',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18512,33,611,'Harris',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18513,33,1260,'Harrison',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18514,33,528,'Harrisville',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18515,33,71,'Hartford',1,165,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18516,33,1260,'Hartsdale',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18517,33,886,'Hartwick',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18518,33,1259,'Hastings',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18519,33,1260,'Hastings On Hudson',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18520,33,797,'Hauppauge',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18521,33,1270,'Haverstraw',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18522,33,1260,'Hawthorne',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18523,33,574,'Hector',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18524,33,1276,'Helena',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18525,33,548,'Hemlock',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18526,33,315,'Hempstead',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18527,33,30,'Henderson',1,124,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18528,33,30,'Henderson Harbor',1,125,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18529,33,59,'Henrietta',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18530,33,63,'Hensonville',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18531,33,1280,'Herkimer',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18532,33,1276,'Hermon',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18533,33,1276,'Heuvelton',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18534,33,315,'Hewlett',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18535,33,315,'Hicksville',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18536,33,1253,'High Falls',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18537,33,1253,'Highland',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18538,33,177,'Highland Falls',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18539,33,611,'Highland Lake',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18540,33,177,'Highland Mills',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18541,33,1253,'Highmount',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18542,33,1270,'Hillburn',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18543,33,143,'Hillsdale',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18544,33,59,'Hilton',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18545,33,1271,'Himrod',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18546,33,536,'Hinckley',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18547,33,1257,'Hinsdale',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18548,33,497,'Hobart',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18549,33,334,'Hoffmeister',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18550,33,92,'Hogansburg',1,118,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18551,33,797,'Holbrook',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18552,33,1255,'Holland',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18553,33,536,'Holland Patent',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18554,33,792,'Holley',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18555,33,1266,'Hollis',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18556,33,143,'Hollowville',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18557,33,1261,'Holmes',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18558,33,797,'Holtsville',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18559,33,1274,'Homer',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18560,33,1275,'Honeoye',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18561,33,59,'Honeoye Falls',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18562,33,1268,'Hoosick',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18563,33,1268,'Hoosick Falls',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18564,33,1261,'Hopewell Junction',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18565,33,591,'Hornell',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18566,33,1273,'Horseheads',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18567,33,611,'Hortonville',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18568,33,816,'Houghton',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18569,33,1266,'Howard Beach',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18570,33,177,'Howells',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18571,33,1279,'Howes Cave',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18572,33,68,'Hubbardsville',1,12619,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(18573,33,143,'Hudson',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18574,33,71,'Hudson Falls',1,12644,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(18575,33,1261,'Hughsonville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18576,33,177,'Huguenot',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18577,33,71,'Huletts Landing',1,12670,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(18578,33,816,'Hume',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18579,33,548,'Hunt',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18580,33,63,'Hunter',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18581,33,797,'Huntington',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18582,33,797,'Huntington Station',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18583,33,1253,'Hurley',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18584,33,611,'Hurleyville',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18585,33,1261,'Hyde Park',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18586,33,1280,'Ilion',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18587,33,334,'Indian Lake',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18588,33,334,'Inlet',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18589,33,1281,'Interlaken',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18590,33,315,'Inwood',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18591,33,1275,'Ionia',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18592,33,661,'Irving',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18593,33,1260,'Irvington',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18594,33,315,'Island Park',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18595,33,797,'Islandia',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18596,33,797,'Islip',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18597,33,797,'Islip Terrace',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18598,33,1278,'Ithaca',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18599,33,1266,'Jackson Heights',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18600,33,1278,'Jacksonville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18601,33,1266,'Jamaica',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18602,33,797,'Jamesport',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18603,33,661,'Jamestown',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18604,33,1264,'Jamesville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18605,33,591,'Jasper',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18606,33,1265,'Java Center',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18607,33,1265,'Java Village',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18608,33,798,'Jay',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18609,33,1279,'Jefferson',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18610,33,1260,'Jefferson Valley',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18611,33,611,'Jeffersonville',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18612,33,315,'Jericho',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18613,33,63,'Jewett',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18614,33,386,'Johnsburg',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18615,33,177,'Johnson',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18616,33,1272,'Johnson City',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18617,33,1268,'Johnsonville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18618,33,119,'Johnstown',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18619,33,1264,'Jordan',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18620,33,1280,'Jordanville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18621,33,591,'Kanona',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18622,33,1260,'Katonah',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18623,33,386,'Kattskill Bay',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18624,33,611,'Kauneonga Lake',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18625,33,798,'Keene',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18626,33,798,'Keene Valley',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18627,33,465,'Keeseville',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18628,33,792,'Kendall',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18629,33,661,'Kennedy',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18630,33,611,'Kenoza Lake',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18631,33,792,'Kent',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18632,33,1253,'Kerhonkson',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18633,33,1271,'Keuka Park',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18634,33,1266,'Kew Gardens',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18635,33,611,'Kiamesha Lake',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18636,33,1257,'Kill Buck',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18637,33,1272,'Killawog',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18638,33,143,'Kinderhook',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18639,33,1267,'King Ferry',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18640,33,797,'Kings Park',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18641,33,1253,'Kingston',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18642,33,1264,'Kirkville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18643,33,1272,'Kirkwood',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18644,33,792,'Knowlesville',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18645,33,1256,'Knox',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18646,33,536,'Knoxboro',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18647,33,30,'La Fargeville',1,149,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18648,33,1264,'La Fayette',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18649,33,1259,'Lacona',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18650,33,1261,'Lagrangeville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18651,33,92,'Lake Clear',1,125,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18652,33,386,'Lake George',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18653,33,797,'Lake Grove',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18654,33,1253,'Lake Hill',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18655,33,611,'Lake Huntington',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18656,33,1253,'Lake Katrine',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18657,33,386,'Lake Luzerne',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18658,33,308,'Lake Peekskill',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18659,33,798,'Lake Placid',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18660,33,334,'Lake Pleasant',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18661,33,1255,'Lake View',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18662,33,1271,'Lakemont',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18663,33,548,'Lakeville',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18664,33,661,'Lakewood',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18665,33,1255,'Lancaster',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18666,33,63,'Lanesville',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18667,33,1278,'Lansing',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18668,33,1260,'Larchmont',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18669,33,1256,'Latham',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18670,33,797,'Laurel',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18671,33,886,'Laurens',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18672,33,315,'Lawrence',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18673,33,1276,'Lawrenceville',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18674,33,1255,'Lawtons',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18675,33,851,'Le Roy',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18676,33,536,'Lee Center',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18677,33,63,'Leeds',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18678,33,548,'Leicester',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18679,33,1257,'Leon',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18680,33,68,'Leonardsville',1,14942,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(18681,33,315,'Levittown',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18682,33,798,'Lewis',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18683,33,1263,'Lewiston',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18684,33,63,'Lexington',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18685,33,611,'Liberty',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18686,33,661,'Lily Dale',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18687,33,548,'Lima',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18688,33,30,'Limerick',1,157,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18689,33,1257,'Limestone',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18690,33,1260,'Lincolndale',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18691,33,797,'Lindenhurst',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18692,33,591,'Lindley',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18693,33,851,'Linwood',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18694,33,1276,'Lisbon',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18695,33,1272,'Lisle',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18696,33,1280,'Little Falls',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18697,33,816,'Little Genesee',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18698,33,1266,'Little Neck',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18699,33,1257,'Little Valley',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18700,33,1274,'Little York',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18701,33,1264,'Liverpool',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18702,33,143,'Livingston',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18703,33,611,'Livingston Manor',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18704,33,548,'Livonia',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18705,33,548,'Livonia Center',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18706,33,611,'Loch Sheldrake',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18707,33,1267,'Locke',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18708,33,1263,'Lockport',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18709,33,1262,'Lockwood',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18710,33,315,'Locust Valley',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18711,33,1281,'Lodi',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18712,33,315,'Long Beach',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18713,33,611,'Long Eddy',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18714,33,1266,'Long Island City',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18715,33,334,'Long Lake',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18716,33,30,'Lorraine',1,15565,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18717,33,1273,'Lowman',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18718,33,528,'Lowville',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18719,33,1259,'Lycoming',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18720,33,315,'Lynbrook',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18721,33,792,'Lyndonville',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18722,33,465,'Lyon Mountain',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18723,33,431,'Lyons',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18724,33,528,'Lyons Falls',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18725,33,431,'Macedon',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18726,33,1257,'Machias',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18727,33,68,'Madison',1,15952,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(18728,33,1276,'Madrid',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18729,33,308,'Mahopac',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18730,33,308,'Mahopac Falls',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18731,33,1272,'Maine',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18732,33,143,'Malden Bridge',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18733,33,1253,'Malden On Hudson',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18734,33,1259,'Mallory',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18735,33,92,'Malone',1,141,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18736,33,315,'Malverne',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18737,33,1260,'Mamaroneck',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18738,33,1275,'Manchester',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18739,33,315,'Manhasset',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18740,33,1264,'Manlius',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18741,33,30,'Mannsville',1,16162,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18742,33,797,'Manorville',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18743,33,661,'Maple Springs',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18744,33,1259,'Maple View',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18745,33,63,'Maplecrest',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18746,33,1274,'Marathon',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18747,33,1264,'Marcellus',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18748,33,536,'Marcy',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18749,33,497,'Margaretville',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18750,33,1264,'Marietta',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18751,33,1255,'Marilla',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18752,33,431,'Marion',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18753,33,1253,'Marlboro',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18754,33,528,'Martinsburg',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18755,33,1267,'Martville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18756,33,1260,'Maryknoll',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18757,33,886,'Maryland',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18758,33,497,'Masonville',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18759,33,1266,'Maspeth',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18760,33,315,'Massapequa',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18761,33,315,'Massapequa Park',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18762,33,1276,'Massena',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18763,33,797,'Mastic',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18764,33,797,'Mastic Beach',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18765,33,797,'Mattituck',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18766,33,177,'Maybrook',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18767,33,119,'Mayfield',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18768,33,661,'Mayville',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18769,33,536,'Mc Connellsville',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18770,33,1254,'Mc Donough',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18771,33,1274,'Mc Graw',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18772,33,1278,'Mc Lean',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18773,33,1269,'Mechanicville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18774,33,574,'Mecklenburg',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18775,33,797,'Medford',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18776,33,792,'Medina',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18777,33,1256,'Medusa',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18778,33,143,'Mellenville',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18779,33,1268,'Melrose',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18780,33,797,'Melville',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18781,33,1264,'Memphis',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18782,33,59,'Mendon',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18783,33,497,'Meridale',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18784,33,1267,'Meridian',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18785,33,315,'Merrick',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18786,33,1259,'Mexico',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18787,33,71,'Middle Falls',1,17197,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(18788,33,71,'Middle Granville',1,17198,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(18789,33,1269,'Middle Grove',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18790,33,797,'Middle Island',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18791,33,1266,'Middle Village',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18792,33,1279,'Middleburgh',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18793,33,1263,'Middleport',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18794,33,1271,'Middlesex',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18795,33,177,'Middletown',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18796,33,1280,'Middleville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18797,33,886,'Milford',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18798,33,315,'Mill Neck',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18799,33,1261,'Millbrook',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18800,33,797,'Miller Place',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18801,33,1261,'Millerton',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18802,33,1273,'Millport',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18803,33,1260,'Millwood',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18804,33,1253,'Milton',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18805,33,315,'Mineola',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18806,33,798,'Minerva',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18807,33,1259,'Minetto',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18808,33,798,'Mineville',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18809,33,1264,'Minoa',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18810,33,1263,'Model City',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18811,33,1253,'Modena',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18812,33,1280,'Mohawk',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18813,33,1260,'Mohegan Lake',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18814,33,92,'Moira',1,149,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18815,33,611,'Mongaup Valley',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18816,33,177,'Monroe',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18817,33,1270,'Monsey',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18818,33,797,'Montauk',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18819,33,1267,'Montezuma',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18820,33,177,'Montgomery',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18821,33,611,'Monticello',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18822,33,574,'Montour Falls',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18823,33,1260,'Montrose',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18824,33,465,'Mooers',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18825,33,465,'Mooers Forks',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18826,33,1267,'Moravia',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18827,33,798,'Moriah',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18828,33,798,'Moriah Center',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18829,33,797,'Moriches',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18830,33,886,'Morris',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18831,33,465,'Morrisonville',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18832,33,1276,'Morristown',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18833,33,68,'Morrisville',1,18020,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(18834,33,59,'Morton',1,106,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18835,33,1264,'Mottville',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18836,33,1260,'Mount Kisco',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18837,33,1253,'Mount Marion',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18838,33,548,'Mount Morris',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18839,33,797,'Mount Sinai',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18840,33,1253,'Mount Tremper',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18841,33,1254,'Mount Upton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18842,33,1260,'Mount Vernon',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18843,33,886,'Mount Vision',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18844,33,611,'Mountain Dale',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18845,33,177,'Mountainville',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18846,33,59,'Mumford',1,110,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18847,33,68,'Munnsville',1,18356,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(18848,33,1270,'Nanuet',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18849,33,1253,'Napanoch',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18850,33,1275,'Naples',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18851,33,611,'Narrowsburg',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18852,33,1268,'Nassau',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18853,33,30,'Natural Bridge',1,18523,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18854,33,1264,'Nedrow',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18855,33,72,'Nelliston',1,18596,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(18856,33,797,'Nesconset',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18857,33,611,'Neversink',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18858,33,63,'New Baltimore',1,18678,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(18859,33,1254,'New Berlin',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18860,33,1270,'New City',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18861,33,177,'New Hampton',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18862,33,536,'New Hartford',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18863,33,1259,'New Haven',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18864,33,315,'New Hyde Park',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18865,33,497,'New Kingston',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18866,33,143,'New Lebanon',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18867,33,886,'New Lisbon',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18868,33,177,'New Milford',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18869,33,1253,'New Paltz',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18870,33,1260,'New Rochelle',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18871,33,798,'New Russia',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18872,33,797,'New Suffolk',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18873,33,177,'New Windsor',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18874,33,68,'New Woodstock',1,18936,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(18875,33,1282,'New York',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18876,33,536,'New York Mills',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18877,33,431,'Newark',1,104,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18878,33,1262,'Newark Valley',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18879,33,177,'Newburgh',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18880,33,798,'Newcomb',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18881,33,1263,'Newfane',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18882,33,1278,'Newfield',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18883,33,1280,'Newport',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18884,33,1276,'Newton Falls',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18885,33,1256,'Newtonville',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18886,33,1263,'Niagara Falls',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18887,33,1263,'Niagara University',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18888,33,1262,'Nichols',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18889,33,1276,'Nicholville',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18890,33,1272,'Nineveh',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18891,33,661,'Niobe',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18892,33,143,'Niverville',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18893,33,1276,'Norfolk',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18894,33,797,'North Babylon',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18895,33,92,'North Bangor',1,164,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18896,33,536,'North Bay',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18897,33,1279,'North Blenheim',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18898,33,1255,'North Boston',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18899,33,611,'North Branch',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18900,33,68,'North Brookfield',1,19270,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(18901,33,143,'North Chatham',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18902,33,59,'North Chili',1,19284,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18903,33,1255,'North Collins',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18904,33,386,'North Creek',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18905,33,1255,'North Evans',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18906,33,71,'North Granville',1,19311,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(18907,33,59,'North Greece',1,19312,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18908,33,1268,'North Hoosick',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18909,33,798,'North Hudson',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18910,33,1265,'North Java',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18911,33,1276,'North Lawrence',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18912,33,1254,'North Norwich',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18913,33,1254,'North Pitcher',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18914,33,386,'North River',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18915,33,431,'North Rose',1,106,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18916,33,1260,'North Salem',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18917,33,1263,'North Tonawanda',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18918,33,797,'Northport',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18919,33,119,'Northville',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18920,33,1254,'Norwich',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18921,33,1276,'Norwood',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18922,33,548,'Nunda',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18923,33,1270,'Nyack',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18924,33,63,'Oak Hill',1,19571,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(18925,33,797,'Oakdale',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18926,33,851,'Oakfield',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18927,33,1266,'Oakland Gardens',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18928,33,1275,'Oaks Corners',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18929,33,611,'Obernburg',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18930,33,797,'Ocean Beach',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18931,33,315,'Oceanside',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18932,33,574,'Odessa',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18933,33,1276,'Ogdensburg',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18934,33,1263,'Olcott',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18935,33,315,'Old Bethpage',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18936,33,143,'Old Chatham',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18937,33,1280,'Old Forge',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18938,33,315,'Old Westbury',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18939,33,1257,'Olean',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18940,33,1253,'Olivebridge',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18941,33,798,'Olmstedville',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18942,33,68,'Oneida',1,19932,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(18943,33,886,'Oneonta',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18944,33,431,'Ontario',1,109,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18945,33,431,'Ontario Center',1,110,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18946,33,1270,'Orangeburg',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18947,33,1255,'Orchard Park',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18948,33,797,'Orient',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18949,33,536,'Oriskany',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18950,33,536,'Oriskany Falls',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18951,33,1259,'Orwell',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18952,33,1260,'Ossining',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18953,33,1276,'Oswegatchie',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18954,33,1259,'Oswego',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18955,33,886,'Otego',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18956,33,177,'Otisville',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18957,33,1257,'Otto',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18958,33,1272,'Ouaquaga',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18959,33,1281,'Ovid',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18960,33,1262,'Owego',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18961,33,92,'Owls Head',1,173,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18962,33,30,'Oxbow',1,202,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(18963,33,1254,'Oxford',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18964,33,315,'Oyster Bay',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18965,33,1266,'Ozone Park',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18966,33,591,'Painted Post',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18967,33,72,'Palatine Bridge',1,20335,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(18968,33,63,'Palenville',1,97,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(18969,33,1270,'Palisades',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18970,33,431,'Palmyra',1,113,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18971,33,661,'Panama',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18972,33,798,'Paradox',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18973,33,1259,'Parish',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18974,33,1276,'Parishville',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18975,33,611,'Parksville',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18976,33,797,'Patchogue',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18977,33,308,'Patterson',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18978,33,1258,'Pattersonville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18979,33,92,'Paul Smiths',1,177,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18980,33,851,'Pavilion',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18981,33,1261,'Pawling',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18982,33,1270,'Pearl River',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18983,33,797,'Peconic',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18984,33,1260,'Peekskill',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18985,33,1260,'Pelham',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18986,33,59,'Penfield',1,118,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(18987,33,1271,'Penn Yan',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18988,33,1259,'Pennellville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18989,33,591,'Perkinsville',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18990,33,1265,'Perry',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18991,33,1257,'Perrysburg',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18992,33,465,'Peru',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18993,33,68,'Peterboro',1,123,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(18994,33,1268,'Petersburg',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18995,33,1275,'Phelps',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18996,33,30,'Philadelphia',1,209,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(18997,33,611,'Phillipsport',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18998,33,143,'Philmont',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(18999,33,1253,'Phoenicia',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19000,33,1259,'Phoenix',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19001,33,1276,'Piercefield',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19002,33,1270,'Piermont',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19003,33,30,'Pierrepont Manor',1,210,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(19004,33,548,'Piffard',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19005,33,1265,'Pike',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19006,33,177,'Pine Bush',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19007,33,1273,'Pine City',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19008,33,1253,'Pine Hill',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19009,33,177,'Pine Island',1,102,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19010,33,1261,'Pine Plains',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19011,33,1273,'Pine Valley',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19012,33,334,'Piseco',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19013,33,1254,'Pitcher',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19014,33,59,'Pittsford',1,123,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(19015,33,315,'Plainview',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19016,33,1264,'Plainville',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19017,33,1253,'Plattekill',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19018,33,465,'Plattsburgh',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19019,33,1261,'Pleasant Valley',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19020,33,1260,'Pleasantville',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19021,33,30,'Plessis',1,216,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(19022,33,1254,'Plymouth',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19023,33,1268,'Poestenkill',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19024,33,315,'Point Lookout',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19025,33,1280,'Poland',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19026,33,1270,'Pomona',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19027,33,1264,'Pompey',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19028,33,611,'Pond Eddy',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19029,33,1267,'Poplar Ridge',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19030,33,1267,'Port Byron',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19031,33,1260,'Port Chester',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19032,33,1272,'Port Crane',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19033,33,1253,'Port Ewen',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19034,33,1275,'Port Gibson',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19035,33,798,'Port Henry',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19036,33,797,'Port Jefferson',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19037,33,797,'Port Jefferson Station',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19038,33,177,'Port Jervis',1,105,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19039,33,798,'Port Kent',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19040,33,528,'Port Leyden',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19041,33,315,'Port Washington',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19042,33,1265,'Portageville',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19043,33,1269,'Porter Corners',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19044,33,661,'Portland',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19045,33,886,'Portlandville',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19046,33,1257,'Portville',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19047,33,1276,'Potsdam',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19048,33,386,'Pottersville',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19049,33,1261,'Poughkeepsie',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19050,33,1261,'Poughquag',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19051,33,1260,'Pound Ridge',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19052,33,591,'Prattsburgh',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19053,33,63,'Prattsville',1,102,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19054,33,1274,'Preble',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19055,33,1256,'Preston Hollow',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19056,33,536,'Prospect',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19057,33,1259,'Pulaski',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19058,33,591,'Pulteney',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19059,33,431,'Pultneyville',1,125,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19060,33,1260,'Purchase',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19061,33,1260,'Purdys',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19062,33,63,'Purling',1,103,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19063,33,71,'Putnam Station',1,284,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19064,33,308,'Putnam Valley',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19065,33,1276,'Pyrites',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19066,33,1258,'Quaker Street',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19067,33,1266,'Queens Village',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19068,33,386,'Queensbury',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19069,33,797,'Quogue',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19070,33,92,'Rainbow Lake',1,187,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19071,33,1257,'Randolph',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19072,33,1263,'Ransomville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19073,33,334,'Raquette Lake',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19074,33,1256,'Ravena',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19075,33,798,'Ray Brook',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19076,33,1276,'Raymondville',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19077,33,574,'Reading Center',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19078,33,431,'Red Creek',1,126,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19079,33,1261,'Red Hook',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19080,33,1259,'Redfield',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19081,33,465,'Redford',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19082,33,30,'Redwood',1,229,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19083,33,1266,'Rego Park',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19084,33,536,'Remsen',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19085,33,797,'Remsenburg',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19086,33,1268,'Rensselaer',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19087,33,1276,'Rensselaer Falls',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19088,33,1256,'Rensselaerville',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19089,33,548,'Retsof',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19090,33,1269,'Rexford',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19091,33,591,'Rexville',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19092,33,1261,'Rhinebeck',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19093,33,1261,'Rhinecliff',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19094,33,816,'Richburg',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19095,33,886,'Richfield Springs',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19096,33,1262,'Richford',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19097,33,1259,'Richland',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19098,33,1266,'Richmond Hill',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19099,33,1279,'Richmondville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19100,33,1276,'Richville',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19101,33,797,'Ridge',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19102,33,1266,'Ridgewood',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19103,33,1253,'Rifton',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19104,33,386,'Riparius',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19105,33,661,'Ripley',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19106,33,797,'Riverhead',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19107,33,59,'Rochester',1,132,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19108,33,1269,'Rock City Falls',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19109,33,611,'Rock Hill',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19110,33,574,'Rock Stream',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19111,33,177,'Rock Tavern',1,111,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19112,33,1266,'Rockaway Park',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19113,33,315,'Rockville Centre',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19114,33,797,'Rocky Point',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19115,33,30,'Rodman',1,239,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19116,33,536,'Rome',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19117,33,1281,'Romulus',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19118,33,797,'Ronkonkoma',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19119,33,315,'Roosevelt',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19120,33,1276,'Rooseveltown',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19121,33,611,'Roscoe',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19122,33,431,'Rose',1,135,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19123,33,886,'Roseboom',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19124,33,1266,'Rosedale',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19125,33,1253,'Rosendale',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19126,33,315,'Roslyn',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19127,33,315,'Roslyn Heights',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19128,33,1258,'Rotterdam Junction',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19129,33,1269,'Round Lake',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19130,33,63,'Round Top',1,111,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19131,33,465,'Rouses Point',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19132,33,497,'Roxbury',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19133,33,1253,'Ruby',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19134,33,59,'Rush',1,134,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19135,33,816,'Rushford',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19136,33,1271,'Rushville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19137,33,1276,'Russell',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19138,33,1260,'Rye',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19139,33,334,'Sabael',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19140,33,30,'Sackets Harbor',1,242,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19141,33,797,'Sag Harbor',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19142,33,797,'Sagaponack',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19143,33,1266,'Saint Albans',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19144,33,1257,'Saint Bonaventure',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19145,33,797,'Saint James',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19146,33,72,'Saint Johnsville',1,186,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19147,33,92,'Saint Regis Falls',1,209,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19148,33,1257,'Salamanca',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19149,33,71,'Salem',1,306,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19150,33,1280,'Salisbury Center',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19151,33,177,'Salisbury Mills',1,112,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19152,33,1261,'Salt Point',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19153,33,1263,'Sanborn',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19154,33,1268,'Sand Lake',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19155,33,1257,'Sandusky',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19156,33,1259,'Sandy Creek',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19157,33,536,'Sangerfield',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19158,33,465,'Saranac',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19159,33,92,'Saranac Lake',1,211,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19160,33,1269,'Saratoga Springs',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19161,33,1255,'Sardinia',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19162,33,1253,'Saugerties',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19163,33,536,'Sauquoit',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19164,33,431,'Savannah',1,136,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19165,33,591,'Savona',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19166,33,797,'Sayville',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19167,33,1260,'Scarsdale',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19168,33,1268,'Schaghticoke',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19169,33,1258,'Schenectady',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19170,33,886,'Schenevus',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19171,33,1268,'Schodack Landing',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19172,33,1279,'Schoharie',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19173,33,798,'Schroon Lake',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19174,33,465,'Schuyler Falls',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19175,33,886,'Schuyler Lake',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19176,33,1269,'Schuylerville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19177,33,816,'Scio',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19178,33,1267,'Scipio Center',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19179,33,548,'Scottsburg',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19180,33,59,'Scottsville',1,141,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19181,33,315,'Sea Cliff',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19182,33,315,'Seaford',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19183,33,797,'Selden',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19184,33,1256,'Selkirk',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19185,33,1275,'Seneca Castle',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19186,33,1281,'Seneca Falls',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19187,33,798,'Severance',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19188,33,1253,'Shandaken',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19189,33,1279,'Sharon Springs',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19190,33,797,'Shelter Island',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19191,33,797,'Shelter Island Heights',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19192,33,1260,'Shenorock',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19193,33,1254,'Sherburne',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19194,33,661,'Sheridan',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19195,33,661,'Sherman',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19196,33,536,'Sherrill',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19197,33,497,'Shinhopple',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19198,33,797,'Shirley',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19199,33,1253,'Shokan',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19200,33,797,'Shoreham',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19201,33,1275,'Shortsville',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19202,33,1260,'Shrub Oak',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19203,33,71,'Shushan',1,315,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19204,33,497,'Sidney',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19205,33,497,'Sidney Center',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19206,33,386,'Silver Bay',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19207,33,661,'Silver Creek',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19208,33,1265,'Silver Lake',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19209,33,1265,'Silver Springs',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19210,33,661,'Sinclairville',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19211,33,1264,'Skaneateles',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19212,33,1264,'Skaneateles Falls',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19213,33,177,'Slate Hill',1,118,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19214,33,1278,'Slaterville Springs',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19215,33,1256,'Slingerlands',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19216,33,1279,'Sloansville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19217,33,1270,'Sloatsburg',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19218,33,611,'Smallwood',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19219,33,1262,'Smithboro',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19220,33,797,'Smithtown',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19221,33,1254,'Smithville Flats',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19222,33,1254,'Smyrna',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19223,33,431,'Sodus',1,146,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19224,33,431,'Sodus Point',1,147,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19225,33,68,'Solsville',1,145,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19226,33,1260,'Somers',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19227,33,548,'Sonyea',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19228,33,797,'Sound Beach',1,102,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19229,33,1256,'South Bethlehem',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19230,33,431,'South Butler',1,148,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19231,33,851,'South Byron',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19232,33,63,'South Cairo',1,118,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19233,33,1276,'South Colton',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19234,33,1257,'South Dayton',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19235,33,611,'South Fallsburg',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19236,33,1269,'South Glens Falls',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19237,33,797,'South Jamesport',1,103,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19238,33,497,'South Kortright',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19239,33,548,'South Lima',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19240,33,1254,'South New Berlin',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19241,33,1254,'South Otselic',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19242,33,1266,'South Ozone Park',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19243,33,1254,'South Plymouth',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19244,33,1266,'South Richmond Hill',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19245,33,1260,'South Salem',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19246,33,1255,'South Wales',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19247,33,797,'Southampton',1,104,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19248,33,177,'Southfields',1,121,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19249,33,797,'Southold',1,105,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19250,33,1270,'Sparkill',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19251,33,177,'Sparrow Bush',1,122,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19252,33,334,'Speculator',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19253,33,1262,'Spencer',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19254,33,59,'Spencerport',1,151,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19255,33,143,'Spencertown',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19256,33,797,'Speonk',1,106,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19257,33,72,'Sprakers',1,200,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19258,33,1255,'Spring Brook',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19259,33,1253,'Spring Glen',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19260,33,1270,'Spring Valley',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19261,33,886,'Springfield Center',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19262,33,1266,'Springfield Gardens',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19263,33,1255,'Springville',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19264,33,548,'Springwater',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19265,33,1261,'Staatsburg',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19266,33,851,'Stafford',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19267,33,497,'Stamford',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19268,33,1261,'Stanfordville',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19269,33,1275,'Stanley',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19270,33,1276,'Star Lake',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19271,33,358,'Staten Island',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19272,33,1257,'Steamburg',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19273,33,1263,'Stella Niagara',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19274,33,1268,'Stephentown',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19275,33,1267,'Sterling',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19276,33,177,'Sterling Forest',1,124,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19277,33,1269,'Stillwater',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19278,33,536,'Stittville',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19279,33,661,'Stockton',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19280,33,1253,'Stone Ridge',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19281,33,797,'Stony Brook',1,107,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19282,33,386,'Stony Creek',1,107,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19283,33,1270,'Stony Point',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19284,33,1261,'Stormville',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19285,33,143,'Stottville',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19286,33,661,'Stow',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19287,33,119,'Stratford',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19288,33,1265,'Strykersville',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19289,33,143,'Stuyvesant',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19290,33,143,'Stuyvesant Falls',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19291,33,1270,'Suffern',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19292,33,177,'Sugar Loaf',1,126,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19293,33,1279,'Summit',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19294,33,611,'Summitville',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19295,33,1266,'Sunnyside',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19296,33,63,'Surprise',1,125,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19297,33,816,'Swain',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19298,33,611,'Swan Lake',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19299,33,536,'Sylvan Beach',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19300,33,315,'Syosset',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19301,33,1264,'Syracuse',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19302,33,536,'Taberg',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19303,33,1270,'Tallman',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19304,33,63,'Tannersville',1,128,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19305,33,1270,'Tappan',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19306,33,1260,'Tarrytown',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19307,33,1280,'Thendara',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19308,33,30,'Theresa',1,266,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19309,33,1270,'Thiells',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19310,33,177,'Thompson Ridge',1,132,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19311,33,611,'Thompsonville',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19312,33,1260,'Thornwood',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19313,33,30,'Thousand Island Park',1,267,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19314,33,30,'Three Mile Bay',1,268,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19315,33,798,'Ticonderoga',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19316,33,1253,'Tillson',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19317,33,1262,'Tioga Center',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19318,33,1261,'Tivoli',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19319,33,1270,'Tomkins Cove',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19320,33,1255,'Tonawanda',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19321,33,497,'Treadwell',1,102,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19322,33,72,'Tribes Hill',1,215,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19323,33,591,'Troupsburg',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19324,33,497,'Trout Creek',1,103,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19325,33,1256,'Troy',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19326,33,1268,'Troy',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19327,33,1278,'Trumansburg',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19328,33,1274,'Truxton',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19329,33,1260,'Tuckahoe',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19330,33,1264,'Tully',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19331,33,1272,'Tunnel',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19332,33,92,'Tupper Lake',1,238,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19333,33,528,'Turin',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19334,33,177,'Tuxedo Park',1,137,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19335,33,574,'Tyrone',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19336,33,1253,'Ulster Park',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19337,33,886,'Unadilla',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19338,33,431,'Union Hill',1,161,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19339,33,1267,'Union Springs',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19340,33,315,'Uniondale',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19341,33,177,'Unionville',1,138,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19342,33,798,'Upper Jay',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19343,33,797,'Upton',1,108,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19344,33,536,'Utica',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19345,33,177,'Vails Gate',1,140,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19346,33,143,'Valatie',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19347,33,1260,'Valhalla',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19348,33,1270,'Valley Cottage',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19349,33,1268,'Valley Falls',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19350,33,315,'Valley Stream',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19351,33,661,'Van Buren Point',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19352,33,1273,'Van Etten',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19353,33,1280,'Van Hornesville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19354,33,1265,'Varysburg',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19355,33,1261,'Verbank',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19356,33,92,'Vermontville',1,245,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19357,33,536,'Vernon',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19358,33,536,'Vernon Center',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19359,33,536,'Verona',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19360,33,536,'Verona Beach',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19361,33,1260,'Verplanck',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19362,33,1257,'Versailles',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19363,33,1272,'Vestal',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19364,33,1275,'Victor',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19365,33,1269,'Victory Mills',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19366,33,1256,'Voorheesville',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19367,33,1260,'Waccabuc',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19368,33,1276,'Waddington',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19369,33,797,'Wading River',1,109,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19370,33,797,'Wainscott',1,110,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19371,33,177,'Walden',1,144,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19372,33,1255,'Wales Center',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19373,33,1253,'Walker Valley',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19374,33,1253,'Wallkill',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19375,33,497,'Walton',1,108,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19376,33,431,'Walworth',1,162,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19377,33,68,'Wampsville',1,161,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19378,33,1276,'Wanakena',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19379,33,315,'Wantagh',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19380,33,1261,'Wappingers Falls',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19381,33,1264,'Warners',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19382,33,1279,'Warnerville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19383,33,386,'Warrensburg',1,117,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19384,33,1265,'Warsaw',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19385,33,177,'Warwick',1,145,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19386,33,536,'Washington Mills',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19387,33,177,'Washingtonville',1,147,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19388,33,1261,'Wassaic',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19389,33,797,'Water Mill',1,111,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19390,33,1269,'Waterford',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19391,33,1281,'Waterloo',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19392,33,792,'Waterport',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19393,33,30,'Watertown',1,286,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19394,33,536,'Waterville',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19395,33,1256,'Watervliet',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19396,33,574,'Watkins Glen',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19397,33,1262,'Waverly',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19398,33,1253,'Wawarsing',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19399,33,591,'Wayland',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19400,33,574,'Wayne',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19401,33,59,'Webster',1,179,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19402,33,1267,'Weedsport',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19403,33,30,'Wellesley Island',1,290,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19404,33,334,'Wells',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19405,33,886,'Wells Bridge',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19406,33,1273,'Wellsburg',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19407,33,816,'Wellsville',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19408,33,797,'West Babylon',1,112,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19409,33,1275,'West Bloomfield',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19410,33,886,'West Burlington',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19411,33,1253,'West Camp',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19412,33,465,'West Chazy',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19413,33,816,'West Clarksville',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19414,33,143,'West Copake',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19415,33,63,'West Coxsackie',1,135,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19416,33,497,'West Davenport',1,110,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19417,33,68,'West Eaton',1,163,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19418,33,68,'West Edmeston',1,164,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19419,33,1255,'West Falls',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19420,33,1279,'West Fulton',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19421,33,1260,'West Harrison',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19422,33,1270,'West Haverstraw',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19423,33,315,'West Hempstead',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19424,33,59,'West Henrietta',1,180,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19425,33,1253,'West Hurley',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19426,33,797,'West Islip',1,113,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19427,33,63,'West Kill',1,137,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19428,33,143,'West Lebanon',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19429,33,528,'West Leyden',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19430,33,1259,'West Monroe',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19431,33,1270,'West Nyack',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19432,33,886,'West Oneonta',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19433,33,1253,'West Park',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19434,33,177,'West Point',1,152,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19435,33,1268,'West Sand Lake',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19436,33,797,'West Sayville',1,115,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19437,33,1253,'West Shokan',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19438,33,1276,'West Stockholm',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19439,33,1257,'West Valley',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19440,33,1280,'West Winfield',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19441,33,611,'Westbrookville',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19442,33,315,'Westbury',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19443,33,536,'Westdale',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19444,33,1256,'Westerlo',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19445,33,536,'Westernville',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19446,33,661,'Westfield',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19447,33,886,'Westford',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19448,33,797,'Westhampton',1,116,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19449,33,797,'Westhampton Beach',1,117,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19450,33,536,'Westmoreland',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19451,33,1257,'Westons Mills',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19452,33,798,'Westport',1,107,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19453,33,177,'Westtown',1,155,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19454,33,386,'Wevertown',1,124,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19455,33,92,'Whippleville',1,260,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19456,33,611,'White Lake',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19457,33,1260,'White Plains',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19458,33,611,'White Sulphur Springs',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19459,33,71,'Whitehall',1,385,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19460,33,536,'Whitesboro',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19461,33,1266,'Whitestone',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19462,33,816,'Whitesville',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19463,33,1272,'Whitney Point',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19464,33,1281,'Willard',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19465,33,1274,'Willet',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19466,33,431,'Williamson',1,176,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19467,33,1259,'Williamstown',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19468,33,315,'Williston Park',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19469,33,1253,'Willow',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19470,33,798,'Willsboro',1,108,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19471,33,1262,'Willseyville',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19472,33,798,'Wilmington',1,109,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19473,33,1263,'Wilson',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19474,33,63,'Windham',1,143,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19475,33,1272,'Windsor',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19476,33,1261,'Wingdale',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19477,33,1276,'Winthrop',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19478,33,798,'Witherbee',1,110,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19479,33,431,'Wolcott',1,180,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19480,33,611,'Woodbourne',1,102,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19481,33,315,'Woodbury',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19482,33,536,'Woodgate',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19483,33,1266,'Woodhaven',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19484,33,591,'Woodhull',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19485,33,315,'Woodmere',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19486,33,611,'Woodridge',1,103,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19487,33,1266,'Woodside',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19488,33,1253,'Woodstock',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19489,33,886,'Worcester',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19490,33,611,'Wurtsboro',1,104,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19491,33,797,'Wyandanch',1,119,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19492,33,1268,'Wynantskill',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19493,33,1265,'Wyoming',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19494,33,797,'Yaphank',1,120,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19495,33,1260,'Yonkers',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19496,33,548,'York',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19497,33,1257,'Yorkshire',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19498,33,1260,'Yorktown Heights',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19499,33,536,'Yorkville',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19500,33,1263,'Youngstown',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19501,33,611,'Youngsville',1,105,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19502,33,611,'Yulan',1,106,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19503,36,586,'Aberdeen',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19504,36,453,'Ada',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19505,36,1283,'Adamsville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19506,36,334,'Addyston',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19507,36,1284,'Adelphi',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19508,36,30,'Adena',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19509,36,247,'Akron',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19510,36,1285,'Albany',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19511,36,1286,'Alexandria',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19512,36,453,'Alger',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19513,36,1287,'Alledonia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19514,36,569,'Alliance',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19515,36,63,'Alpha',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19516,36,1281,'Alvada',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19517,36,1132,'Alvordton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19518,36,285,'Amanda',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19519,36,1288,'Amelia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19520,36,1285,'Amesville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19521,36,1289,'Amherst',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19522,36,92,'Amlin',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19523,36,30,'Amsterdam',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19524,36,1290,'Andover',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19525,36,33,'Anna',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19526,36,1291,'Ansonia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19527,36,405,'Antwerp',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19528,36,431,'Apple Creek',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19529,36,446,'Arcadia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19530,36,1291,'Arcanum',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19531,36,119,'Archbold',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19532,36,446,'Arlington',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19533,36,1292,'Ashland',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19534,36,497,'Ashley',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19535,36,1290,'Ashtabula',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19536,36,1293,'Ashville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19537,36,1285,'Athens',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19538,36,1281,'Attica',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19539,36,1294,'Atwater',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19540,36,115,'Augusta',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19541,36,1294,'Aurora',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19542,36,1290,'Austinburg',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19543,36,587,'Ava',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19544,36,1289,'Avon',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19545,36,1289,'Avon Lake',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19546,36,1284,'Bainbridge',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19547,36,1295,'Bakersville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19548,36,1296,'Baltic',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19549,36,285,'Baltimore',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19550,36,1287,'Bannock',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19551,36,247,'Barberton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19552,36,71,'Barlow',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19553,36,1287,'Barnesville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19554,36,71,'Bartlett',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19555,36,1287,'Barton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19556,36,1281,'Bascom',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19557,36,1288,'Batavia',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19558,36,247,'Bath',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19559,36,1297,'Bay Village',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19560,36,569,'Beach City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19561,36,1297,'Beachwood',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19562,36,59,'Beallsville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19563,36,55,'Beaver',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19564,36,592,'Beaverdam',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19565,36,1297,'Bedford',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19566,36,1287,'Bellaire',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19567,36,63,'Bellbrook',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19568,36,124,'Belle Center',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19569,36,587,'Belle Valley',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19570,36,124,'Bellefontaine',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19571,36,855,'Bellevue',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19572,36,577,'Bellville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19573,36,1287,'Belmont',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19574,36,308,'Belmore',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19575,36,1298,'Beloit',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19576,36,71,'Belpre',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19577,36,446,'Benton Ridge',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19578,36,235,'Bentonville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19579,36,1297,'Berea',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19580,36,30,'Bergholz',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19581,36,495,'Berkey',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19582,36,307,'Berlin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19583,36,1298,'Berlin Center',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19584,36,1255,'Berlin Heights',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19585,36,1288,'Bethel',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19586,36,1287,'Bethesda',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19587,36,1281,'Bettsville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19588,36,71,'Beverly',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19589,36,1299,'Bidwell',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19590,36,307,'Big Prairie',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19591,36,1255,'Birmingham',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19592,36,92,'Blacklick',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19593,36,538,'Bladensburg',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19594,36,1287,'Blaine',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19595,36,1132,'Blakeslee',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19596,36,465,'Blanchester',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19597,36,1295,'Blissfield',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19598,36,1300,'Bloomdale',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19599,36,56,'Bloomingburg',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19600,36,30,'Bloomingdale',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19601,36,1281,'Bloomville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19602,36,235,'Blue Creek',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19603,36,1283,'Blue Rock',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19604,36,592,'Bluffton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19605,36,1296,'Bolivar',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19606,36,33,'Botkins',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19607,36,1284,'Bourneville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19608,36,502,'Bowerston',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19609,36,63,'Bowersville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19610,36,1300,'Bowling Green',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19611,36,588,'Bradford',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19612,36,1300,'Bradner',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19613,36,1294,'Brady Lake',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19614,36,1297,'Brecksville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19615,36,569,'Brewster',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19616,36,92,'Brice',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19617,36,1287,'Bridgeport',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19618,36,30,'Brilliant',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19619,36,538,'Brinkhaven',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19620,36,1301,'Bristolville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19621,36,1297,'Broadview Heights',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19622,36,131,'Broadway',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19623,36,1297,'Brook Park',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19624,36,1301,'Brookfield',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19625,36,72,'Brookville',1,3267,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(19626,36,1286,'Brownsville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19627,36,1302,'Brunswick',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19628,36,1132,'Bryan',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19629,36,1285,'Buchtel',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19630,36,1286,'Buckeye Lake',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19631,36,1303,'Buckland',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19632,36,97,'Bucyrus',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19633,36,1304,'Buffalo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19634,36,1305,'Buford',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19635,36,431,'Burbank',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19636,36,1301,'Burghill',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19637,36,1306,'Burgoon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19638,36,544,'Burkettsville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19639,36,1307,'Burton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19640,36,577,'Butler',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19641,36,1304,'Byesville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19642,36,568,'Cable',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19643,36,502,'Cadiz',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19644,36,592,'Cairo',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19645,36,587,'Caldwell',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19646,36,58,'Caledonia',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19647,36,1304,'Cambridge',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19648,36,1308,'Camden',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19649,36,59,'Cameron',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19650,36,334,'Camp Dennison',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19651,36,1298,'Campbell',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19652,36,569,'Canal Fulton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19653,36,92,'Canal Winchester',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19654,36,1298,'Canfield',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19655,36,270,'Canton',1,4020,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19656,36,569,'Canton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19657,36,1309,'Carbon Hill',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19658,36,1285,'Carbondale',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19659,36,1310,'Cardington',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19660,36,1311,'Carey',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19661,36,285,'Carroll',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19662,36,115,'Carrollton',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19663,36,588,'Casstown',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19664,36,1255,'Castalia',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19665,36,100,'Catawba',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19666,36,405,'Cecil',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19667,36,63,'Cedarville',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19668,36,544,'Celina',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19669,36,538,'Centerburg',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19670,36,1297,'Chagrin Falls',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19671,36,1307,'Chagrin Falls',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19672,36,1283,'Chandlersville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19673,36,1307,'Chardon',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19674,36,307,'Charm',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19675,36,97,'Chatfield',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19676,36,1285,'Chauncey',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19677,36,235,'Cherry Fork',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19678,36,81,'Chesapeake',1,4792,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(19679,36,1299,'Cheshire',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19680,36,1312,'Chester',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19681,36,82,'Chesterhill',1,4837,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(19682,36,1307,'Chesterland',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19683,36,1310,'Chesterville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19684,36,544,'Chickasaw',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19685,36,1284,'Chillicothe',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19686,36,1288,'Chilo',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19687,36,1302,'Chippewa Lake',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19688,36,568,'Christiansburg',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19689,36,1288,'Cincinnati',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19690,36,334,'Cincinnati',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19691,36,1293,'Circleville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19692,36,59,'Clarington',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19693,36,1284,'Clarksburg',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19694,36,465,'Clarksville',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19695,36,648,'Clay Center',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19696,36,72,'Clayton',1,5150,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(19697,36,1297,'Cleveland',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19698,36,334,'Cleves',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19699,36,63,'Clifton',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19700,36,247,'Clinton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19701,36,308,'Cloverdale',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19702,36,1306,'Clyde',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19703,36,71,'Coal Run',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19704,36,66,'Coalton',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19705,36,544,'Coldwater',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19706,36,1287,'Colerain',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19707,36,74,'College Corner',1,5506,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(19708,36,855,'Collins',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19709,36,74,'Collinsville',1,5538,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(19710,36,28,'Colton',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19711,36,1289,'Columbia Station',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19712,36,1313,'Columbiana',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19713,36,497,'Columbus',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19714,36,92,'Columbus',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19715,36,308,'Columbus Grove',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19716,36,1293,'Commercial Point',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19717,36,1295,'Conesville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19718,36,1290,'Conneaut',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19719,36,588,'Conover',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19720,36,308,'Continental',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19721,36,1314,'Convoy',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19722,36,1285,'Coolville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19723,36,93,'Corning',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19724,36,1301,'Cortland',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19725,36,1295,'Coshocton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19726,36,588,'Covington',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19727,36,1315,'Creola',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19728,36,97,'Crestline',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19729,36,431,'Creston',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19730,36,93,'Crooksville',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19731,36,1286,'Croton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19732,36,1299,'Crown City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19733,36,465,'Cuba',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19734,36,1304,'Cumberland',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19735,36,648,'Curtice',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19736,36,1300,'Custar',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19737,36,71,'Cutler',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19738,36,247,'Cuyahoga Falls',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19739,36,1300,'Cygnet',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19740,36,55,'Cynthiana',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19741,36,431,'Dalton',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19742,36,1298,'Damascus',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19743,36,538,'Danville',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19744,36,63,'Dayton',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19745,36,72,'Dayton',1,6653,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(19746,36,124,'De Graff',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19747,36,586,'Decatur',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19748,36,1294,'Deerfield',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19749,36,502,'Deersville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19750,36,1316,'Defiance',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19751,36,497,'Delaware',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19752,36,115,'Dellroy',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19753,36,592,'Delphos',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19754,36,119,'Delta',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19755,36,1296,'Dennison',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19756,36,1293,'Derby',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19757,36,1304,'Derwent',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19758,36,28,'Deshler',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19759,36,587,'Dexter City',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19760,36,1294,'Diamond',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19761,36,30,'Dillonvale',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19762,36,453,'Dola',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19763,36,100,'Donnelsville',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19764,36,1290,'Dorset',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19765,36,1296,'Dover',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19766,36,431,'Doylestown',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19767,36,1283,'Dresden',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19768,36,92,'Dublin',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19769,36,1300,'Dunbridge',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19770,36,1283,'Duncan Falls',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19771,36,1296,'Dundee',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19772,36,453,'Dunkirk',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19773,36,308,'Dupont',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19774,36,569,'East Canton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19775,36,1307,'East Claridon',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19776,36,1283,'East Fultonham',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19777,36,124,'East Liberty',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19778,36,1313,'East Liverpool',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19779,36,1313,'East Palestine',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19780,36,1313,'East Rochester',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19781,36,569,'East Sparta',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19782,36,30,'East Springfield',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19783,36,216,'Eastlake',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19784,36,1308,'Eaton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19785,36,1132,'Edgerton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19786,36,1310,'Edison',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19787,36,1132,'Edon',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19788,36,1308,'Eldorado',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19789,36,1314,'Elgin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19790,36,1313,'Elkton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19791,36,1298,'Ellsworth',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19792,36,648,'Elmore',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19793,36,1289,'Elyria',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19794,36,30,'Empire',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19795,36,72,'Englewood',1,8400,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(19796,36,100,'Enon',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19797,36,1286,'Etna',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19798,36,1297,'Euclid',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19799,36,1316,'Evansport',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19800,36,63,'Fairborn',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19801,36,74,'Fairfield',1,8723,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(19802,36,247,'Fairlawn',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19803,36,1287,'Fairpoint',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19804,36,1304,'Fairview',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19805,36,1301,'Farmdale',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19806,36,1316,'Farmer',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19807,36,72,'Farmersville',1,8857,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(19808,36,119,'Fayette',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19809,36,586,'Fayetteville',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19810,36,586,'Feesburg',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19811,36,1288,'Felicity',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19812,36,446,'Findlay',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19813,36,1281,'Flat Rock',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19814,36,71,'Fleming',1,129,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19815,36,588,'Fletcher',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19816,36,1287,'Flushing',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19817,36,453,'Forest',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19818,36,308,'Fort Jennings',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19819,36,33,'Fort Loramie',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19820,36,544,'Fort Recovery',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19821,36,1281,'Fostoria',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19822,36,1301,'Fowler',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19823,36,1284,'Frankfort',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19824,36,386,'Franklin',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19825,36,1317,'Franklin Furnace',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19826,36,1283,'Frazeysburg',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19827,36,431,'Fredericksburg',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19828,36,538,'Fredericktown',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19829,36,502,'Freeport',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19830,36,1306,'Fremont',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19831,36,1295,'Fresno',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19832,36,1317,'Friendship',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19833,36,1310,'Fulton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19834,36,1283,'Fultonham',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19835,36,497,'Galena',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19836,36,97,'Galion',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19837,36,1299,'Gallipolis',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19838,36,92,'Galloway',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19839,36,538,'Gambier',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19840,36,1294,'Garrettsville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19841,36,1297,'Gates Mills',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19842,36,1290,'Geneva',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19843,36,648,'Genoa',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19844,36,586,'Georgetown',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19845,36,72,'Germantown',1,10106,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(19846,36,1291,'Gettysburg',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19847,36,1306,'Gibsonburg',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19848,36,1301,'Girard',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19849,36,308,'Glandorf',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19850,36,1287,'Glencoe',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19851,36,93,'Glenford',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19852,36,307,'Glenmont',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19853,36,1285,'Glouster',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19854,36,1296,'Gnadenhutten',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19855,36,592,'Gomer',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19856,36,1288,'Goshen',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19857,36,1289,'Grafton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19858,36,1300,'Grand Rapids',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19859,36,216,'Grand River',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19860,36,1286,'Granville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19861,36,1286,'Gratiot',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19862,36,1308,'Gratis',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19863,36,71,'Graysville',1,151,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19864,36,648,'Graytown',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19865,36,247,'Green',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19866,36,58,'Green Camp',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19867,36,1281,'Green Springs',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19868,36,1305,'Greenfield',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19869,36,1298,'Greenford',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19870,36,569,'Greentown',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19871,36,1291,'Greenville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19872,36,855,'Greenwich',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19873,36,28,'Grelton',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19874,36,92,'Grove City',1,105,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19875,36,92,'Groveport',1,106,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19876,36,405,'Grover Hill',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19877,36,1285,'Guysville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19878,36,648,'Gypsum',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19879,36,1284,'Hallsville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19880,36,1315,'Hamden',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19881,36,586,'Hamersville',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19882,36,74,'Hamilton',1,11289,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(19883,36,28,'Hamler',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19884,36,30,'Hammondsville',1,114,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19885,36,59,'Hannibal',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19886,36,1313,'Hanoverton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19887,36,495,'Harbor View',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19888,36,115,'Harlem Springs',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19889,36,1311,'Harpster',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19890,36,92,'Harrisburg',1,110,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19891,36,334,'Harrison',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19892,36,502,'Harrisville',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19893,36,592,'Harrod',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19894,36,1301,'Hartford',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19895,36,569,'Hartville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19896,36,386,'Harveysburg',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19897,36,1300,'Haskins',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19898,36,1317,'Haverhill',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19899,36,405,'Haviland',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19900,36,1309,'Haydenville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19901,36,1292,'Hayesville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19902,36,1286,'Heath',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19903,36,1286,'Hebron',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19904,36,1306,'Helena',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19905,36,1316,'Hicksville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19906,36,285,'Hideaway Hls',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19907,36,586,'Higginsport',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19908,36,1305,'Highland',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19909,36,92,'Hilliard',1,116,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19910,36,1305,'Hillsboro',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19911,36,1302,'Hinckley',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19912,36,1294,'Hiram',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19913,36,1285,'Hockingport',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19914,36,28,'Holgate',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19915,36,495,'Holland',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19916,36,1291,'Hollansburg',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19917,36,1287,'Holloway',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19918,36,307,'Holmesville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19919,36,1286,'Homer',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19920,36,1302,'Homerville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19921,36,1313,'Homeworth',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19922,36,334,'Hooven',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19923,36,502,'Hopedale',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19924,36,1283,'Hopewell',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19925,36,33,'Houston',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19926,36,538,'Howard',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19927,36,1300,'Hoytville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19928,36,1301,'Hubbard',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19929,36,247,'Hudson',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19930,36,1307,'Huntsburg',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19931,36,124,'Huntsville',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19932,36,1255,'Huron',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19933,36,1310,'Iberia',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19934,36,1297,'Independence',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19935,36,30,'Irondale',1,135,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19936,36,81,'Ironton',1,13028,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(19937,36,131,'Irwin',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19938,36,648,'Isle Saint George',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19939,36,66,'Jackson',1,103,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19940,36,33,'Jackson Center',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19941,36,1286,'Jacksontown',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19942,36,1285,'Jacksonville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19943,36,1287,'Jacobsburg',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19944,36,63,'Jamestown',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19945,36,55,'Jasper',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19946,36,1290,'Jefferson',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19947,36,56,'Jeffersonville',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19948,36,446,'Jenera',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19949,36,1292,'Jeromesville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19950,36,1300,'Jerry City',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19951,36,59,'Jerusalem',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19952,36,1316,'Jewell',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19953,36,502,'Jewett',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19954,36,1286,'Johnstown',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19955,36,93,'Junction City',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19956,36,308,'Kalida',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19957,36,1281,'Kansas',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19958,36,1295,'Keene',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19959,36,1255,'Kelleys Island',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19960,36,1313,'Kensington',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19961,36,1294,'Kent',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19962,36,453,'Kenton',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19963,36,1299,'Kerr',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19964,36,33,'Kettlersville',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19965,36,431,'Kidron',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19966,36,497,'Kilbourne',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19967,36,307,'Killbuck',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19968,36,1304,'Kimbolton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19969,36,386,'Kings Mills',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19970,36,1284,'Kingston',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19971,36,1290,'Kingsville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19972,36,1301,'Kinsman',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19973,36,1304,'Kipling',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19974,36,1289,'Kipton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19975,36,1311,'Kirby',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19976,36,1286,'Kirkersville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19977,36,81,'Kitts Hill',1,14016,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(19978,36,1132,'Kunkle',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19979,36,58,'La Rue',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19980,36,648,'Lacarne',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19981,36,592,'Lafayette',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19982,36,1287,'Lafferty',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19983,36,1289,'Lagrange',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19984,36,59,'Laings',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19985,36,1298,'Lake Milton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19986,36,247,'Lakemore',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19987,36,648,'Lakeside Marblehead',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19988,36,124,'Lakeview',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19989,36,307,'Lakeville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19990,36,1297,'Lakewood',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19991,36,285,'Lancaster',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19992,36,1312,'Langsville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19993,36,1287,'Lansing',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19994,36,55,'Latham',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19995,36,405,'Latty',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19996,36,588,'Laura',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19997,36,1309,'Laurelville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19998,36,1301,'Leavittsburg',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(19999,36,386,'Lebanon',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20000,36,465,'Lees Creek',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20001,36,1305,'Leesburg',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20002,36,115,'Leesville',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20003,36,1313,'Leetonia',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20004,36,308,'Leipsic',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20005,36,1300,'Lemoyne',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20006,36,497,'Lewis Center',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20007,36,1308,'Lewisburg',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20008,36,124,'Lewistown',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20009,36,59,'Lewisville',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20010,36,28,'Liberty Center',1,15070,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20011,36,592,'Lima',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20012,36,1303,'Lima',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20013,36,569,'Limaville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20014,36,1306,'Lindsey',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20015,36,1313,'Lisbon',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20016,36,1302,'Litchfield',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20017,36,285,'Lithopolis',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20018,36,71,'Little Hocking',1,15278,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20019,36,92,'Lockbourne',1,135,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20020,36,1302,'Lodi',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20021,36,1309,'Logan',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20022,36,68,'London',1,15449,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20023,36,1284,'Londonderry',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20024,36,1312,'Long Bottom',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20025,36,1289,'Lorain',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20026,36,1304,'Lore City',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20027,36,1292,'Loudonville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20028,36,569,'Louisville',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20029,36,1288,'Loveland',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20030,36,71,'Lowell',1,15660,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20031,36,1298,'Lowellville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20032,36,71,'Lower Salem',1,15669,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20033,36,577,'Lucas',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20034,36,1317,'Lucasville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20035,36,1300,'Luckey',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20036,36,588,'Ludlow Falls',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20037,36,1305,'Lynchburg',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20038,36,235,'Lynx',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20039,36,119,'Lyons',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20040,36,247,'Macedonia',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20041,36,71,'Macksburg',1,15912,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20042,36,216,'Madison',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20043,36,131,'Magnetic Springs',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20044,36,569,'Magnolia',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20045,36,386,'Maineville',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20046,36,59,'Malaga',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20047,36,28,'Malinta',1,16045,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20048,36,82,'Malta',1,16061,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20049,36,115,'Malvern',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20050,36,235,'Manchester',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20051,36,577,'Mansfield',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20052,36,1294,'Mantua',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20053,36,1297,'Maple Heights',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20054,36,33,'Maplewood',1,16247,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20055,36,1288,'Marathon',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20056,36,1310,'Marengo',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20057,36,544,'Maria Stein',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20058,36,71,'Marietta',1,16316,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20059,36,58,'Marion',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20060,36,1316,'Mark Center',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20061,36,431,'Marshallville',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20062,36,58,'Martel',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20063,36,648,'Martin',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20064,36,1287,'Martins Ferry',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20065,36,538,'Martinsburg',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20066,36,465,'Martinsville',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20067,36,131,'Marysville',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20068,36,386,'Mason',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20069,36,569,'Massillon',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20070,36,1301,'Masury',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20071,36,495,'Maumee',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20072,36,569,'Maximo',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20073,36,1287,'Maynard',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20074,36,1315,'Mc Arthur',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20075,36,28,'Mc Clure',1,16717,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20076,36,446,'Mc Comb',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20077,36,1311,'Mc Cutchenville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20078,36,1317,'Mc Dermott',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20079,36,1301,'Mc Donald',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20080,36,453,'Mc Guffey',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20081,36,82,'Mcconnelsville',1,16840,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20082,36,568,'Mechanicsburg',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20083,36,115,'Mechanicstown',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20084,36,1302,'Medina',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20085,36,100,'Medway',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20086,36,1281,'Melmore',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20087,36,405,'Melrose',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20088,36,544,'Mendon',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20089,36,216,'Mentor',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20090,36,1301,'Mesopotamia',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20091,36,119,'Metamora',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20092,36,72,'Miamisburg',1,17176,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20093,36,334,'Miamitown',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20094,36,1288,'Miamiville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20095,36,648,'Middle Bass',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20096,36,1314,'Middle Point',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20097,36,569,'Middlebranch',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20098,36,124,'Middleburg',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20099,36,1307,'Middlefield',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20100,36,1312,'Middleport',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20101,36,74,'Middletown',1,17247,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20102,36,465,'Midland',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20103,36,1296,'Midvale',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20104,36,1255,'Milan',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20105,36,1288,'Milford',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20106,36,131,'Milford Center',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20107,36,1300,'Millbury',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20108,36,56,'Milledgeville',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20109,36,308,'Miller City',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20110,36,307,'Millersburg',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20111,36,285,'Millersport',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20112,36,1285,'Millfield',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20113,36,1300,'Milton Center',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20114,36,1296,'Mineral City',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20115,36,1301,'Mineral Ridge',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20116,36,569,'Minerva',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20117,36,1317,'Minford',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20118,36,568,'Mingo',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20119,36,30,'Mingo Junction',1,17549,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20120,36,1303,'Minster',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20121,36,1294,'Mogadore',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20122,36,495,'Monclova',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20123,36,74,'Monroe',1,17726,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20124,36,855,'Monroeville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20125,36,544,'Montezuma',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20126,36,1132,'Montpelier',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20127,36,1307,'Montville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20128,36,58,'Morral',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20129,36,1287,'Morristown',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20130,36,386,'Morrow',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20131,36,1288,'Moscow',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20132,36,446,'Mount Blanchard',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20133,36,446,'Mount Cory',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20134,36,431,'Mount Eaton',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20135,36,1310,'Mount Gilead',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20136,36,307,'Mount Hope',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20137,36,538,'Mount Liberty',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20138,36,586,'Mount Orab',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20139,36,93,'Mount Perry',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20140,36,30,'Mount Pleasant',1,18188,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20141,36,334,'Mount Saint Joseph',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20142,36,68,'Mount Sterling',1,18214,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20143,36,538,'Mount Vernon',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20144,36,453,'Mount Victory',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20145,36,1305,'Mowrystown',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20146,36,93,'Moxahala',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20147,36,247,'Munroe Falls',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20148,36,1309,'Murray City',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20149,36,1292,'Nankin',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20150,36,28,'Napoleon',1,18468,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20151,36,1283,'Nashport',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20152,36,307,'Nashville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20153,36,569,'Navarre',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20154,36,495,'Neapolis',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20155,36,1287,'Neffs',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20156,36,1313,'Negley',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20157,36,1285,'Nelsonville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20158,36,1311,'Nevada',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20159,36,1288,'Neville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20160,36,92,'New Albany',1,158,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20161,36,502,'New Athens',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20162,36,28,'New Bavaria',1,18679,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20163,36,58,'New Bloomington',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20164,36,1303,'New Bremen',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20165,36,100,'New Carlisle',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20166,36,1283,'New Concord',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20167,36,1303,'New Hampshire',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20168,36,855,'New Haven',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20169,36,1293,'New Holland',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20170,36,1303,'New Knoxville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20171,36,72,'New Lebanon',1,18806,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20172,36,93,'New Lexington',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20173,36,855,'New London',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20174,36,1291,'New Madison',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20175,36,1285,'New Marshfield',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20176,36,71,'New Matamoras',1,18841,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20177,36,1298,'New Middletown',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20178,36,1308,'New Paris',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20179,36,1296,'New Philadelphia',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20180,36,1315,'New Plymouth',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20181,36,1288,'New Richmond',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20182,36,1281,'New Riegel',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20183,36,502,'New Rumley',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20184,36,1298,'New Springfield',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20185,36,93,'New Straitsville',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20186,36,465,'New Vienna',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20187,36,97,'New Washington',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20188,36,1313,'New Waterford',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20189,36,1291,'New Weston',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20190,36,1286,'Newark',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20191,36,1307,'Newbury',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20192,36,1296,'Newcomerstown',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20193,36,71,'Newport',1,19039,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20194,36,1301,'Newton Falls',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20195,36,1288,'Newtonsville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20196,36,1316,'Ney',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20197,36,1301,'Niles',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20198,36,1300,'North Baltimore',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20199,36,334,'North Bend',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20200,36,1294,'North Benton',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20201,36,1301,'North Bloomfield',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20202,36,569,'North Canton',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20203,36,855,'North Fairfield',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20204,36,1313,'North Georgetown',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20205,36,100,'North Hampton',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20206,36,1298,'North Jackson',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20207,36,1290,'North Kingsville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20208,36,569,'North Lawrence',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20209,36,568,'North Lewisburg',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20210,36,1298,'North Lima',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20211,36,1297,'North Olmsted',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20212,36,1289,'North Ridgeville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20213,36,97,'North Robinson',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20214,36,1297,'North Royalton',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20215,36,1291,'North Star',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20216,36,247,'Northfield',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20217,36,1300,'Northwood',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20218,36,855,'Norwalk',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20219,36,1283,'Norwich',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20220,36,1292,'Nova',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20221,36,1307,'Novelty',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20222,36,648,'Oak Harbor',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20223,36,66,'Oak Hill',1,19570,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20224,36,405,'Oakwood',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20225,36,1289,'Oberlin',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20226,36,97,'Oceola',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20227,36,1314,'Ohio City',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20228,36,74,'Okeana',1,19790,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20229,36,28,'Okolona',1,19803,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20230,36,1281,'Old Fort',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20231,36,1304,'Old Washington',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20232,36,1297,'Olmsted Falls',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20233,36,577,'Ontario',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20234,36,1301,'Orangeville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20235,36,495,'Oregon',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20236,36,386,'Oregonia',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20237,36,1293,'Orient',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20238,36,431,'Orrville',1,111,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20239,36,1290,'Orwell',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20240,36,1291,'Osgood',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20241,36,497,'Ostrander',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20242,36,308,'Ottawa',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20243,36,308,'Ottoville',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20244,36,1317,'Otway',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20245,36,74,'Overpeck',1,20210,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20246,36,1288,'Owensville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20247,36,74,'Oxford',1,20260,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20248,36,216,'Painesville',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20249,36,1291,'Palestine',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20250,36,308,'Pandora',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20251,36,569,'Paris',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20252,36,1307,'Parkman',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20253,36,1286,'Pataskala',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20254,36,1299,'Patriot',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20255,36,405,'Paulding',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20256,36,405,'Payne',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20257,36,81,'Pedro',1,20707,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20258,36,235,'Peebles',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20259,36,33,'Pemberton',1,56,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20260,36,1300,'Pemberville',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20261,36,247,'Peninsula',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20262,36,216,'Perry',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20263,36,1300,'Perrysburg',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20264,36,1292,'Perrysville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20265,36,1298,'Petersburg',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20266,36,119,'Pettisville',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20267,36,72,'Phillipsburg',1,20971,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20268,36,1283,'Philo',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20269,36,285,'Pickerington',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20270,36,1287,'Piedmont',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20271,36,1290,'Pierpont',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20272,36,55,'Piketon',1,79,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20273,36,30,'Piney Fork',1,213,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20274,36,1132,'Pioneer',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20275,36,588,'Piqua',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20276,36,1291,'Pitsburg',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20277,36,68,'Plain City',1,127,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20278,36,1295,'Plainfield',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20279,36,1304,'Pleasant City',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20280,36,588,'Pleasant Hill',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20281,36,386,'Pleasant Plain',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20282,36,285,'Pleasantville',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20283,36,855,'Plymouth',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20284,36,1292,'Polk',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20285,36,1312,'Pomeroy',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20286,36,648,'Port Clinton',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20287,36,33,'Port Jefferson',1,57,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20288,36,1296,'Port Washington',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20289,36,465,'Port William',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20290,36,1300,'Portage',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20291,36,1312,'Portland',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20292,36,1317,'Portsmouth',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20293,36,588,'Potsdam',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20294,36,497,'Powell',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20295,36,1287,'Powhatan Point',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20296,36,81,'Proctorville',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20297,36,58,'Prospect',1,108,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20298,36,648,'Put In Bay',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20299,36,1304,'Quaker City',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20300,36,124,'Quincy',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20301,36,1312,'Racine',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20302,36,497,'Radnor',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20303,36,1294,'Randolph',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20304,36,1317,'Rarden',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20305,36,1294,'Ravenna',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20306,36,446,'Rawson',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20307,36,1315,'Ray',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20308,36,30,'Rayland',1,227,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20309,36,131,'Raymond',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20310,36,1312,'Reedsville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20311,36,465,'Reesville',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20312,36,71,'Reno',1,287,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20313,36,1281,'Republic',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20314,36,92,'Reynoldsburg',1,192,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20315,36,247,'Richfield',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20316,36,30,'Richmond',1,232,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20317,36,1284,'Richmond Dale',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20318,36,131,'Richwood',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20319,36,28,'Ridgeville Corners',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20320,36,453,'Ridgeway',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20321,36,1299,'Rio Grande',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20322,36,586,'Ripley',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20323,36,1300,'Risingsun',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20324,36,431,'Rittman',1,130,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20325,36,569,'Robertsville',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20326,36,81,'Rock Camp',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20327,36,1290,'Rock Creek',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20328,36,1309,'Rockbridge',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20329,36,544,'Rockford',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20330,36,648,'Rocky Ridge',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20331,36,1297,'Rocky River',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20332,36,1313,'Rogers',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20333,36,1290,'Rome',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20334,36,1294,'Rootstown',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20335,36,1283,'Roseville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20336,36,568,'Rosewood',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20337,36,74,'Ross',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20338,36,1291,'Rossburg',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20339,36,1300,'Rossford',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20340,36,453,'Roundhead',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20341,36,1300,'Rudolph',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20342,36,124,'Rushsylvania',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20343,36,285,'Rushville',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20344,36,124,'Russells Point',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20345,36,586,'Russellville',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20346,36,33,'Russia',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20347,36,1312,'Rutland',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20348,36,465,'Sabina',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20349,36,1287,'Saint Clairsville',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20350,36,544,'Saint Henry',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20351,36,1303,'Saint Johns',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20352,36,1286,'Saint Louisville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20353,36,1303,'Saint Marys',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20354,36,568,'Saint Paris',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20355,36,1313,'Salem',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20356,36,1304,'Salesville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20357,36,1313,'Salineville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20358,36,1255,'Sandusky',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20359,36,1296,'Sandyville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20360,36,587,'Sarahsville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20361,36,586,'Sardinia',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20362,36,59,'Sardis',1,137,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20363,36,1292,'Savannah',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20364,36,502,'Scio',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20365,36,1317,'Scioto Furnace',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20366,36,1314,'Scott',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20367,36,81,'Scottown',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20368,36,235,'Seaman',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20369,36,1298,'Sebring',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20370,36,68,'Sedalia',1,141,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20371,36,1304,'Senecaville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20372,36,74,'Seven Mile',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20373,36,1302,'Seville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20374,36,1285,'Shade',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20375,36,1287,'Shadyside',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20376,36,74,'Shandon',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20377,36,1302,'Sharon Center',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20378,36,1285,'Sharpsburg',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20379,36,1310,'Shauck',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20380,36,93,'Shawnee',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20381,36,1289,'Sheffield Lake',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20382,36,577,'Shelby',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20383,36,115,'Sherrodsville',1,102,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20384,36,1316,'Sherwood',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20385,36,577,'Shiloh',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20386,36,431,'Shreve',1,142,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20387,36,33,'Sidney',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20388,36,1305,'Sinking Spring',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20389,36,30,'Smithfield',1,250,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20390,36,431,'Smithville',1,145,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20391,36,1297,'Solon',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20392,36,1296,'Somerdale',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20393,36,93,'Somerset',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20394,36,74,'Somerville',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20395,36,1309,'South Bloomingville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20396,36,100,'South Charleston',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20397,36,386,'South Lebanon',1,102,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20398,36,81,'South Point',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20399,36,1284,'South Salem',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20400,36,68,'South Solon',1,147,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20401,36,100,'South Vienna',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20402,36,1317,'South Webster',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20403,36,1301,'Southington',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20404,36,1310,'Sparta',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20405,36,1302,'Spencer',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20406,36,592,'Spencerville',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20407,36,63,'Spring Valley',1,120,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20408,36,386,'Springboro',1,104,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20409,36,100,'Springfield',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20410,36,59,'Stafford',1,152,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20411,36,431,'Sterling',1,154,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20412,36,30,'Steubenville',1,254,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20413,36,1285,'Stewart',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20414,36,1296,'Stillwater',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20415,36,55,'Stockdale',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20416,36,82,'Stockport',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20417,36,1296,'Stone Creek',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20418,36,1300,'Stony Ridge',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20419,36,235,'Stout',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20420,36,285,'Stoutsville',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20421,36,247,'Stow',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20422,36,1296,'Strasburg',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20423,36,30,'Stratton',1,255,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20424,36,1294,'Streetsboro',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20425,36,1297,'Strongsville',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20426,36,1298,'Struthers',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20427,36,1132,'Stryker',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20428,36,285,'Sugar Grove',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20429,36,1296,'Sugarcreek',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20430,36,1292,'Sullivan',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20431,36,97,'Sulphur Springs',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20432,36,587,'Summerfield',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20433,36,1286,'Summit Station',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20434,36,1313,'Summitville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20435,36,497,'Sunbury',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20436,36,119,'Swanton',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20437,36,1311,'Sycamore',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20438,36,59,'Sycamore Valley',1,160,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20439,36,495,'Sylvania',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20440,36,1312,'Syracuse',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20441,36,247,'Tallmadge',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20442,36,1293,'Tarlton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20443,36,334,'Terrace Park',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20444,36,1285,'The Plains',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20445,36,1307,'Thompson',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20446,36,93,'Thornville',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20447,36,1299,'Thurman',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20448,36,285,'Thurston',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20449,36,1281,'Tiffin',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20450,36,30,'Tiltonsville',1,269,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20451,36,588,'Tipp City',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20452,36,502,'Tippecanoe',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20453,36,97,'Tiro',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20454,36,495,'Toledo',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20455,36,1300,'Toledo',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20456,36,1300,'Tontogany',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20457,36,30,'Toronto',1,271,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20458,36,100,'Tremont City',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20459,36,74,'Trenton',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20460,36,1285,'Trimble',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20461,36,1283,'Trinway',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20462,36,588,'Troy',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20463,36,1312,'Tuppers Plains',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20464,36,1296,'Tuscarawas',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20465,36,247,'Twinsburg',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20466,36,1296,'Uhrichsville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20467,36,1291,'Union City',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20468,36,1309,'Union Furnace',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20469,36,569,'Uniontown',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20470,36,1290,'Unionville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20471,36,131,'Unionville Center',1,111,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20472,36,1303,'Uniopolis',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20473,36,1311,'Upper Sandusky',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20474,36,568,'Urbana',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20475,36,1286,'Utica',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20476,36,1302,'Valley City',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20477,36,446,'Van Buren',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20478,36,1314,'Van Wert',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20479,36,72,'Vandalia',1,221,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20480,36,446,'Vanlue',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20481,36,308,'Vaughnsville',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20482,36,1314,'Venedocia',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20483,36,1255,'Vermilion',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20484,36,1308,'Verona',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20485,36,1291,'Versailles',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20486,36,1306,'Vickery',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20487,36,1301,'Vienna',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20488,36,71,'Vincent',1,350,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20489,36,1299,'Vinton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20490,36,1302,'Wadsworth',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20491,36,55,'Wakefield',1,110,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20492,36,855,'Wakeman',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20493,36,1300,'Walbridge',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20494,36,58,'Waldo',1,142,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20495,36,1295,'Walhonding',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20496,36,307,'Walnut Creek',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20497,36,1303,'Wapakoneta',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20498,36,1287,'Warnock',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20499,36,1301,'Warren',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20500,36,1295,'Warsaw',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20501,36,56,'Washington Court House',1,157,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20502,36,1313,'Washingtonville',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20503,36,71,'Waterford',1,367,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20504,36,81,'Waterloo',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20505,36,71,'Watertown',1,368,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20506,36,495,'Waterville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20507,36,119,'Wauseon',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20508,36,55,'Waverly',1,111,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20509,36,1294,'Wayland',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20510,36,1300,'Wayne',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20511,36,569,'Waynesburg',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20512,36,1303,'Waynesfield',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20513,36,386,'Waynesville',1,122,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20514,36,1289,'Wellington',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20515,36,66,'Wellston',1,207,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20516,36,1313,'Wellsville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20517,36,1308,'West Alexandria',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20518,36,74,'West Chester',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20519,36,1308,'West Elkton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20520,36,1301,'West Farmington',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20521,36,68,'West Jefferson',1,165,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20522,36,1295,'West Lafayette',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20523,36,124,'West Liberty',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20524,36,1308,'West Manchester',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20525,36,124,'West Mansfield',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20526,36,1300,'West Millgrove',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20527,36,588,'West Milton',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20528,36,1313,'West Point',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20529,36,1317,'West Portsmouth',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20530,36,285,'West Rushville',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20531,36,431,'West Salem',1,172,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20532,36,235,'West Union',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20533,36,1132,'West Unity',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20534,36,497,'Westerville',1,111,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20535,36,92,'Westerville',1,257,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20536,36,1302,'Westfield Center',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20537,36,1297,'Westlake',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20538,36,1300,'Weston',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20539,36,568,'Westville',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20540,36,1311,'Wharton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20541,36,1317,'Wheelersburg',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20542,36,71,'Whipple',1,384,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20543,36,1283,'White Cottage',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20544,36,495,'Whitehouse',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20545,36,216,'Wickliffe',1,132,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20546,36,63,'Wilberforce',1,140,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20547,36,1315,'Wilkesville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20548,36,855,'Willard',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20549,36,1288,'Williamsburg',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20550,36,1290,'Williamsfield',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20551,36,1293,'Williamsport',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20552,36,446,'Williamstown',1,102,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20553,36,648,'Williston',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20554,36,216,'Willoughby',1,133,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20555,36,81,'Willow Wood',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20556,36,1314,'Willshire',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20557,36,465,'Wilmington',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20558,36,569,'Wilmot',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20559,36,235,'Winchester',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20560,36,1294,'Windham',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20561,36,1290,'Windsor',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20562,36,307,'Winesburg',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20563,36,71,'Wingett Run',1,390,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20564,36,1313,'Winona',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20565,36,30,'Wolf Run',1,297,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20566,36,59,'Woodsfield',1,183,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20567,36,568,'Woodstock',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20568,36,1306,'Woodville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20569,36,431,'Wooster',1,181,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20570,36,1314,'Wren',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20571,36,63,'Xenia',1,146,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20572,36,63,'Yellow Springs',1,147,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20573,36,1291,'Yorkshire',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20574,36,30,'Yorkville',1,302,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20575,36,1298,'Youngstown',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20576,36,1315,'Zaleski',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20577,36,124,'Zanesfield',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20578,36,1283,'Zanesville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20579,36,1296,'Zoar',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20580,37,411,'Achille',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20581,37,994,'Ada',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20582,37,1318,'Adair',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20583,37,981,'Adams',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20584,37,30,'Addington',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20585,37,648,'Afton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20586,37,147,'Agra',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20587,37,411,'Albany',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20588,37,770,'Albert',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20589,37,1319,'Albion',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20590,37,1320,'Alderson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20591,37,384,'Alex',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20592,37,1321,'Aline',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20593,37,994,'Allen',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20594,37,66,'Altus',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20595,37,66,'Altus Afb',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20596,37,1322,'Alva',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20597,37,384,'Amber',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20598,37,1323,'Ames',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20599,37,1321,'Amorita',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20600,37,770,'Anadarko',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20601,37,1319,'Antlers',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20602,37,770,'Apache',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20603,37,278,'Arapaho',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20604,37,1324,'Arcadia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20605,37,727,'Ardmore',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20606,37,1325,'Arkoma',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20607,37,659,'Arnett',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20608,37,646,'Asher',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20609,37,1326,'Atoka',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20610,37,1327,'Atwood',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20611,37,653,'Avant',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20612,37,1328,'Balko',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20613,37,653,'Barnsdall',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20614,37,71,'Bartlesville',1,1576,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20615,37,1329,'Battiest',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20616,37,1328,'Beaver',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20617,37,1330,'Beggs',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20618,37,411,'Bennington',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20619,37,1331,'Bessie',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20620,37,1324,'Bethany',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20621,37,1329,'Bethel',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20622,37,1332,'Big Cabin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20623,37,587,'Billings',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20624,37,770,'Binger',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20625,37,240,'Bison',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20626,37,1333,'Bixby',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20627,37,1334,'Blackwell',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20628,37,66,'Blair',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20629,37,1335,'Blanchard',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20630,37,1320,'Blanco',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20631,37,1320,'Blocker',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20632,37,648,'Bluejacket',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20633,37,1336,'Boise City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20634,37,411,'Bokchito',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20635,37,1325,'Bokoshe',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20636,37,1337,'Boley',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20637,37,70,'Boswell',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20638,37,292,'Bowlegs',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20639,37,1338,'Boynton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20640,37,384,'Bradley',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20641,37,1338,'Braggs',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20642,37,1334,'Braman',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20643,37,1339,'Bristow',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20644,37,1333,'Broken Arrow',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20645,37,1340,'Broken Arrow',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20646,37,1329,'Broken Bow',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20647,37,1096,'Bromide',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20648,37,635,'Buffalo',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20649,37,454,'Bunch',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20650,37,653,'Burbank',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20651,37,1321,'Burlington',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20652,37,1341,'Burneyville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20653,37,1331,'Burns Flat',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20654,37,278,'Butler',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20655,37,1335,'Byars',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20656,37,665,'Cache',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20657,37,411,'Caddo',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20658,37,411,'Calera',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20659,37,1342,'Calumet',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20660,37,1327,'Calvin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20661,37,1343,'Camargo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20662,37,1325,'Cameron',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20663,37,1320,'Canadian',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20664,37,1326,'Caney',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20665,37,514,'Canton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20666,37,1331,'Canute',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20667,37,648,'Cardin',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20668,37,1321,'Carmen',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20669,37,770,'Carnegie',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20670,37,147,'Carney',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20671,37,240,'Carrier',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20672,37,1344,'Carter',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20673,37,411,'Cartwright',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20674,37,1345,'Cashion',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20675,37,1337,'Castle',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20676,37,1346,'Catoosa',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20677,37,770,'Cement',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20678,37,1347,'Centrahoma',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20679,37,147,'Chandler',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20680,37,665,'Chattanooga',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20681,37,401,'Checotah',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20682,37,1346,'Chelsea',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20683,37,1321,'Cherokee',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20684,37,1323,'Chester',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20685,37,1348,'Cheyenne',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20686,37,384,'Chickasha',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20687,37,1324,'Choctaw',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20688,37,1318,'Chouteau',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20689,37,1346,'Claremore',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20690,37,1347,'Clarita',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20691,37,1319,'Clayton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20692,37,1323,'Cleo Springs',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20693,37,651,'Cleveland',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20694,37,278,'Clinton',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20695,37,1347,'Coalgate',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20696,37,411,'Colbert',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20697,37,497,'Colcord',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20698,37,1096,'Coleman',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20699,37,1333,'Collinsville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20700,37,1331,'Colony',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20701,37,410,'Comanche',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20702,37,648,'Commerce',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20703,37,1342,'Concho',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20704,37,1096,'Connerville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20705,37,73,'Cookson',1,5778,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20706,37,71,'Copan',1,5814,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20707,37,1331,'Cordell',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20708,37,1331,'Corn',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20709,37,1338,'Council Hill',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20710,37,410,'Countyline',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20711,37,240,'Covington',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20712,37,1340,'Coweta',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20713,37,124,'Coyle',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20714,37,1348,'Crawford',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20715,37,124,'Crescent',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20716,37,292,'Cromwell',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20717,37,1320,'Crowder',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20718,37,1349,'Cushing',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20719,37,278,'Custer City',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20720,37,770,'Cyril',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20721,37,1322,'Dacoma',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20722,37,1326,'Daisy',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20723,37,147,'Davenport',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20724,37,1350,'Davidson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20725,37,388,'Davis',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20726,37,148,'Deer Creek',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20727,37,1351,'Delaware',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20728,37,1339,'Depew',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20729,37,1352,'Devol',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20730,37,1330,'Dewar',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20731,37,71,'Dewey',1,6997,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20732,37,1335,'Dibble',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20733,37,1331,'Dill City',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20734,37,1318,'Disney',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20735,37,388,'Dougherty',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20736,37,240,'Douglas',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20737,37,1345,'Dover',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20738,37,240,'Drummond',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20739,37,1339,'Drumright',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20740,37,66,'Duke',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20741,37,410,'Duncan',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20742,37,411,'Durant',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20743,37,1348,'Durham',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20744,37,1327,'Dustin',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20745,37,1329,'Eagletown',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20746,37,770,'Eakly',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20747,37,646,'Earlsboro',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20748,37,1324,'Edmond',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20749,37,1342,'El Reno',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20750,37,66,'Eldorado',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20751,37,665,'Elgin',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20752,37,1344,'Elk City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20753,37,66,'Elmer',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20754,37,1353,'Elmore City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20755,37,240,'Enid',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20756,37,1344,'Erick',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20757,37,497,'Eucha',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20758,37,401,'Eufaula',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20759,37,653,'Fairfax',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20760,37,648,'Fairland',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20761,37,240,'Fairmont',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20762,37,1323,'Fairview',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20763,37,1325,'Fanshawe',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20764,37,659,'Fargo',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20765,37,1326,'Farris',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20766,37,665,'Faxon',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20767,37,1343,'Fay',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20768,37,1336,'Felt',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20769,37,1319,'Finley',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20770,37,994,'Fittstown',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20771,37,994,'Fitzhugh',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20772,37,665,'Fletcher',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20773,37,1328,'Forgan',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20774,37,770,'Fort Cobb',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20775,37,1338,'Fort Gibson',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20776,37,665,'Fort Sill',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20777,37,1354,'Fort Supply',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20778,37,70,'Fort Towson',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20779,37,1331,'Foss',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20780,37,410,'Foster',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20781,37,727,'Fox',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20782,37,1346,'Foyil',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20783,37,994,'Francis',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20784,37,1350,'Frederick',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20785,37,1322,'Freedom',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20786,37,659,'Gage',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20787,37,1355,'Gans',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20788,37,240,'Garber',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20789,37,1329,'Garvin',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20790,37,1328,'Gate',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20791,37,514,'Geary',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20792,37,727,'Gene Autry',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20793,37,665,'Geronimo',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20794,37,1349,'Glencoe',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20795,37,1333,'Glenpool',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20796,37,1329,'Golden',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20797,37,1321,'Goltry',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20798,37,981,'Goodwell',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20799,37,1355,'Gore',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20800,37,232,'Gotebo',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20801,37,1356,'Gould',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20802,37,1357,'Gowen',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20803,37,770,'Gracemont',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20804,37,727,'Graham',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20805,37,1350,'Grandfield',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20806,37,1358,'Granite',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20807,37,70,'Grant',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20808,37,514,'Greenfield',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20809,37,497,'Grove',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20810,37,124,'Guthrie',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20811,37,981,'Guymon',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20812,37,1320,'Haileyville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20813,37,651,'Hallett',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20814,37,1348,'Hammon',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20815,37,401,'Hanna',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20816,37,981,'Hardesty',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20817,37,1324,'Harrah',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20818,37,1320,'Hartshorne',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20819,37,1338,'Haskell',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20820,37,30,'Hastings',1,121,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20821,37,1329,'Haworth',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20822,37,66,'Headrick',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20823,37,727,'Healdton',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20824,37,1325,'Heavener',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20825,37,1321,'Helena',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20826,37,411,'Hendrix',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20827,37,727,'Hennepin',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20828,37,1345,'Hennessey',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20829,37,1330,'Henryetta',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20830,37,240,'Hillsdale',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20831,37,770,'Hinton',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20832,37,514,'Hitchcock',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20833,37,401,'Hitchita',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20834,37,232,'Hobart',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20835,37,1325,'Hodgen',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20836,37,1327,'Holdenville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20837,37,1356,'Hollis',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20838,37,1350,'Hollister',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20839,37,653,'Hominy',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20840,37,981,'Hooker',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20841,37,1322,'Hopeton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20842,37,1325,'Howe',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20843,37,690,'Hoyt',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20844,37,70,'Hugo',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20845,37,73,'Hulbert',1,12666,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20846,37,240,'Hunter',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20847,37,770,'Hydro',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20848,37,1329,'Idabel',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20849,37,665,'Indiahoma',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20850,37,1320,'Indianola',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20851,37,1346,'Inola',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20852,37,1323,'Isabella',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20853,37,497,'Jay',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20854,37,1333,'Jenks',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20855,37,651,'Jennings',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20856,37,1321,'Jet',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20857,37,1324,'Jones',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20858,37,497,'Kansas',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20859,37,1334,'Kaw City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20860,37,1339,'Kellyville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20861,37,411,'Kemp',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20862,37,1096,'Kenefic',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20863,37,1336,'Kenton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20864,37,690,'Keota',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20865,37,1318,'Ketchum',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20866,37,1336,'Keyes',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20867,37,1325,'Kiamichi Christian Mission',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20868,37,1339,'Kiefer',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20869,37,1345,'Kingfisher',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20870,37,35,'Kingston',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20871,37,690,'Kinta',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20872,37,1320,'Kiowa',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20873,37,292,'Konawa',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20874,37,1320,'Krebs',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20875,37,240,'Kremlin',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20876,37,240,'Lahoma',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20877,37,1327,'Lamar',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20878,37,148,'Lamont',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20879,37,1326,'Lane',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20880,37,1318,'Langley',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20881,37,124,'Langston',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20882,37,635,'Laverne',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20883,37,665,'Lawton',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20884,37,35,'Lebanon',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20885,37,1343,'Leedey',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20886,37,1325,'Leflore',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20887,37,1347,'Lehigh',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20888,37,1351,'Lenapah',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20889,37,1341,'Leon',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20890,37,1333,'Leonard',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20891,37,690,'Lequire',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20892,37,150,'Lexington',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20893,37,1353,'Lindsay',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20894,37,410,'Loco',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20895,37,1318,'Locust Grove',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20896,37,727,'Lone Grove',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20897,37,232,'Lone Wolf',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20898,37,514,'Longdale',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20899,37,770,'Lookeba',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20900,37,1350,'Loveland',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20901,37,1345,'Loyal',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20902,37,587,'Lucien',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20903,37,1324,'Luther',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20904,37,646,'Macomb',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20905,37,35,'Madill',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20906,37,148,'Manchester',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20907,37,1358,'Mangum',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20908,37,1350,'Manitou',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20909,37,1339,'Mannford',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20910,37,1096,'Mannsville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20911,37,651,'Maramec',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20912,37,1355,'Marble City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20913,37,1341,'Marietta',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20914,37,587,'Marland',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20915,37,410,'Marlow',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20916,37,124,'Marshall',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20917,37,66,'Martha',1,128,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20918,37,646,'Maud',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20919,37,635,'May',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20920,37,1353,'Maysville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20921,37,1320,'Mcalester',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20922,37,690,'Mccurtain',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20923,37,646,'Mcloud',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20924,37,411,'Mead',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20925,37,148,'Medford',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20926,37,665,'Medicine Park',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20927,37,147,'Meeker',1,112,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20928,37,665,'Meers',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20929,37,1323,'Meno',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20930,37,124,'Meridian',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20931,37,648,'Miami',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20932,37,1096,'Milburn',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20933,37,1339,'Milfay',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20934,37,1096,'Mill Creek',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20935,37,1329,'Millerton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20936,37,384,'Minco',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20937,37,1355,'Moffett',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20938,37,1325,'Monroe',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20939,37,73,'Moodys',1,17883,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20940,37,1354,'Mooreland',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20941,37,1330,'Morris',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20942,37,587,'Morrison',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20943,37,1339,'Mounds',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20944,37,232,'Mountain Park',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20945,37,232,'Mountain View',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20946,37,1319,'Moyers',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20947,37,1355,'Muldrow',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20948,37,124,'Mulhall',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20949,37,1325,'Muse',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20950,37,1338,'Muskogee',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20951,37,1342,'Mustang',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20952,37,1354,'Mutual',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20953,37,1334,'Nardin',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20954,37,148,'Nash',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20955,37,1319,'Nashoba',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20956,37,150,'Newalla',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20957,37,1335,'Newcastle',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20958,37,1334,'Newkirk',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20959,37,1324,'Nicoma Park',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20960,37,384,'Ninnekah',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20961,37,150,'Noble',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20962,37,150,'Norman',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20963,37,648,'North Miami',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20964,37,1351,'Nowata',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20965,37,1333,'Oakhurst',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20966,37,497,'Oaks',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20967,37,1343,'Oakwood',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20968,37,71,'Ochelata',1,19698,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20969,37,1339,'Oilton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20970,37,1345,'Okarche',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20971,37,1340,'Okay',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20972,37,514,'Okeene',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20973,37,1337,'Okemah',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20974,37,150,'Oklahoma City',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20975,37,1324,'Oklahoma City',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20976,37,1330,'Okmulgee',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20977,37,1338,'Oktaha',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20978,37,66,'Olustee',1,153,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20979,37,1345,'Omega',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20980,37,1346,'Oologah',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20981,37,124,'Orlando',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20982,37,653,'Osage',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20983,37,30,'Oscar',1,20121,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20984,37,1341,'Overbrook',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20985,37,1333,'Owasso',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20986,37,1337,'Paden',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20987,37,1325,'Panama',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20988,37,1357,'Panola',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20989,37,1353,'Paoli',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20990,37,73,'Park Hill',1,20491,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20991,37,1353,'Pauls Valley',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20992,37,653,'Pawhuska',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20993,37,651,'Pawnee',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20994,37,73,'Peggs',1,20715,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(20995,37,1349,'Perkins',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20996,37,587,'Perry',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20997,37,648,'Picher',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20998,37,1329,'Pickens',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(20999,37,1342,'Piedmont',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21000,37,1320,'Pittsburg',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21001,37,411,'Platter',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21002,37,384,'Pocasset',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21003,37,1325,'Pocola',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21004,37,1334,'Ponca City',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21005,37,148,'Pond Creek',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21006,37,1340,'Porter',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21007,37,1338,'Porum',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21008,37,1325,'Poteau',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21009,37,147,'Prague',1,138,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21010,37,1330,'Preston',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21011,37,454,'Proctor',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21012,37,653,'Prue',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21013,37,1318,'Pryor',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21014,37,1335,'Purcell',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21015,37,1343,'Putnam',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21016,37,648,'Quapaw',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21017,37,1320,'Quinton',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21018,37,651,'Ralston',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21019,37,71,'Ramona',1,286,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21020,37,1352,'Randlett',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21021,37,727,'Ratliff City',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21022,37,1319,'Rattan',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21023,37,1096,'Ravia',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21024,37,1357,'Red Oak',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21025,37,587,'Red Rock',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21026,37,1340,'Redbird',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21027,37,401,'Rentiesville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21028,37,1348,'Reydon',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21029,37,30,'Ringling',1,235,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21030,37,1329,'Ringold',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21031,37,1323,'Ringwood',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21032,37,1349,'Ripley',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21033,37,1331,'Rocky',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21034,37,994,'Roff',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21035,37,1355,'Roland',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21036,37,232,'Roosevelt',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21037,37,1318,'Rose',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21038,37,635,'Rosston',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21039,37,1329,'Rufe',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21040,37,384,'Rush Springs',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21041,37,30,'Ryan',1,240,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21042,37,1351,'S Coffeyville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21043,37,646,'Saint Louis',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21044,37,1318,'Salina',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21045,37,1355,'Sallisaw',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21046,37,1333,'Sand Springs',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21047,37,1339,'Sapulpa',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21048,37,292,'Sasakwa',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21049,37,1320,'Savanna',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21050,37,70,'Sawyer',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21051,37,1344,'Sayre',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21052,37,1330,'Schulter',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21053,37,1343,'Seiling',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21054,37,292,'Seminole',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21055,37,1331,'Sentinel',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21056,37,1325,'Shady Point',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21057,37,1339,'Shamrock',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21058,37,1354,'Sharon',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21059,37,659,'Shattuck',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21060,37,646,'Shawnee',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21061,37,653,'Shidler',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21062,37,1333,'Skiatook',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21063,37,1339,'Slick',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21064,37,1329,'Smithville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21065,37,1319,'Snow',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21066,37,232,'Snyder',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21067,37,70,'Soper',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21068,37,514,'Southard',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21069,37,147,'Sparks',1,161,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21070,37,1318,'Spavinaw',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21071,37,1324,'Spencer',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21072,37,70,'Spencerville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21073,37,1333,'Sperry',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21074,37,1325,'Spiro',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21075,37,727,'Springer',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21076,37,665,'Sterling',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21077,37,401,'Stidham',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21078,37,690,'Stigler',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21079,37,1349,'Stillwater',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21080,37,454,'Stilwell',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21081,37,994,'Stonewall',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21082,37,1318,'Strang',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21083,37,1353,'Stratford',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21084,37,1326,'Stringtown',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21085,37,147,'Stroud',1,167,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21086,37,1327,'Stuart',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21087,37,388,'Sulphur',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21088,37,1348,'Sweetwater',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21089,37,70,'Swink',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21090,37,1338,'Taft',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21091,37,73,'Tahlequah',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21092,37,1346,'Talala',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21093,37,1357,'Talihina',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21094,37,1343,'Taloga',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21095,37,727,'Tatums',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21096,37,646,'Tecumseh',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21097,37,1352,'Temple',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21098,37,651,'Terlton',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21099,37,30,'Terral',1,262,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21100,37,981,'Texhoma',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21101,37,1344,'Texola',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21102,37,1341,'Thackerville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21103,37,278,'Thomas',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21104,37,1324,'Tinker Afb',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21105,37,1350,'Tipton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21106,37,1096,'Tishomingo',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21107,37,1334,'Tonkawa',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21108,37,147,'Tryon',1,184,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21109,37,1339,'Tulsa',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21110,37,1333,'Tulsa',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21111,37,1347,'Tupelo',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21112,37,1328,'Turpin',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21113,37,1319,'Tuskahoma',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21114,37,727,'Tussy',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21115,37,384,'Tuttle',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21116,37,497,'Twin Oaks',1,104,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21117,37,981,'Tyrone',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21118,37,1342,'Union City',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21119,37,1329,'Valliant',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21120,37,410,'Velma',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21121,37,71,'Vera',1,346,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21122,37,384,'Verden',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21123,37,1355,'Vian',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21124,37,1343,'Vici',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21125,37,1332,'Vinita',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21126,37,1356,'Vinson',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21127,37,1340,'Wagoner',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21128,37,1338,'Wainwright',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21129,37,148,'Wakita',1,125,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21130,37,1352,'Walters',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21131,37,646,'Wanette',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21132,37,1351,'Wann',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21133,37,1096,'Wapanucka',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21134,37,1320,'Wardville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21135,37,1338,'Warner',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21136,37,1335,'Washington',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21137,37,770,'Washita',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21138,37,514,'Watonga',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21139,37,1329,'Watson',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21140,37,454,'Watts',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21141,37,240,'Waukomis',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21142,37,30,'Waurika',1,289,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21143,37,1335,'Wayne',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21144,37,1322,'Waynoka',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21145,37,278,'Weatherford',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21146,37,1338,'Webbers Falls',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21147,37,1332,'Welch',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21148,37,1337,'Weleetka',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21149,37,73,'Welling',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21150,37,147,'Wellston',1,193,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21151,37,454,'Westville',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21152,37,1327,'Wetumka',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21153,37,292,'Wewoka',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21154,37,1324,'Wheatland',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21155,37,690,'Whitefield',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21156,37,1325,'Whitesboro',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21157,37,1357,'Wilburton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21158,37,1358,'Willow',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21159,37,727,'Wilson',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21160,37,1325,'Wister',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21161,37,1354,'Woodward',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21162,37,1329,'Wright City',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21163,37,648,'Wyandotte',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21164,37,1353,'Wynnewood',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21165,37,653,'Wynona',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21166,37,1349,'Yale',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21167,37,1342,'Yukon',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21168,38,1359,'Adams',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21169,38,216,'Adel',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21170,38,1360,'Adrian',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21171,38,1231,'Agness',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21172,38,458,'Albany',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21173,38,1207,'Allegany',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21174,38,107,'Alsea',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21175,38,670,'Alvadore',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21176,38,1361,'Amity',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21177,38,1362,'Antelope',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21178,38,1363,'Arch Cape',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21179,38,1364,'Arlington',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21180,38,1360,'Arock',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21181,38,66,'Ashland',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21182,38,30,'Ashwood',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21183,38,1363,'Astoria',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21184,38,1359,'Athena',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21185,38,58,'Aumsville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21186,38,58,'Aurora',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21187,38,254,'Azalea',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21188,38,330,'Baker City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21189,38,1207,'Bandon',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21190,38,71,'Banks',1,1468,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21191,38,148,'Bates',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21192,38,1365,'Bay City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21193,38,1366,'Beatty',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21194,38,1365,'Beaver',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21195,38,1367,'Beavercreek',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21196,38,71,'Beaverton',1,1789,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21197,38,1368,'Bend',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21198,38,670,'Blachly',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21199,38,107,'Blodgett',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21200,38,670,'Blue River',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21201,38,1366,'Bly',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21202,38,1310,'Boardman',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21203,38,1366,'Bonanza',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21204,38,1367,'Boring',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21205,38,1369,'Bridal Veil',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21206,38,330,'Bridgeport',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21207,38,1367,'Brightwood',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21208,38,1207,'Broadbent',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21209,38,1360,'Brogan',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21210,38,1231,'Brookings',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21211,38,1368,'Brothers',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21212,38,458,'Brownsville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21213,38,1370,'Burns',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21214,38,66,'Butte Falls',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21215,38,71,'Buxton',1,3669,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21216,38,254,'Camas Valley',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21217,38,30,'Camp Sherman',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21218,38,1367,'Canby',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21219,38,1363,'Cannon Beach',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21220,38,148,'Canyon City',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21221,38,254,'Canyonville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21222,38,1361,'Carlton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21223,38,1371,'Cascade Locks',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21224,38,458,'Cascadia',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21225,38,1372,'Cave Junction',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21226,38,66,'Central Point',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21227,38,1366,'Chemult',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21228,38,670,'Cheshire',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21229,38,1366,'Chiloquin',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21230,38,216,'Christmas Valley',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21231,38,1367,'Clackamas',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21232,38,143,'Clatskanie',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21233,38,1365,'Cloverdale',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21234,38,1367,'Colton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21235,38,143,'Columbia City',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21236,38,1364,'Condon',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21237,38,1207,'Coos Bay',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21238,38,1207,'Coquille',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21239,38,1369,'Corbett',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21240,38,71,'Cornelius',1,5875,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21241,38,107,'Corvallis',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21242,38,670,'Cottage Grove',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21243,38,131,'Cove',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21244,38,458,'Crabtree',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21245,38,1370,'Crane',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21246,38,1366,'Crater Lake',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21247,38,458,'Crawfordsville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21248,38,1366,'Crescent',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21249,38,1366,'Crescent Lake',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21250,38,670,'Creswell',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21251,38,670,'Culp Creek',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21252,38,30,'Culver',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21253,38,254,'Curtin',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21254,38,1366,'Dairy',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21255,38,126,'Dallas',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21256,38,1367,'Damascus',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21257,38,254,'Days Creek',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21258,38,1361,'Dayton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21259,38,148,'Dayville',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21260,38,670,'Deadwood',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21261,38,143,'Deer Island',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21262,38,147,'Depoe Bay',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21263,38,58,'Detroit',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21264,38,670,'Dexter',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21265,38,1370,'Diamond',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21266,38,254,'Dillard',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21267,38,58,'Donald',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21268,38,670,'Dorena',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21269,38,254,'Drain',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21270,38,1370,'Drewsey',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21271,38,1362,'Dufur',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21272,38,1361,'Dundee',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21273,38,330,'Durkee',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21274,38,1367,'Eagle Creek',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21275,38,66,'Eagle Point',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21276,38,1359,'Echo',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21277,38,147,'Eddyville',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21278,38,131,'Elgin',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21279,38,254,'Elkton',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21280,38,670,'Elmira',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21281,38,1373,'Enterprise',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21282,38,1367,'Estacada',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21283,38,670,'Eugene',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21284,38,1369,'Fairview',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21285,38,670,'Fall Creek',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21286,38,126,'Falls City',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21287,38,1370,'Fields',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21288,38,670,'Florence',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21289,38,71,'Forest Grove',1,9252,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21290,38,1366,'Fort Klamath',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21291,38,216,'Fort Rock',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21292,38,344,'Fossil',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21293,38,458,'Foster',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21294,38,1370,'Frenchglen',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21295,38,71,'Gales Creek',1,9824,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21296,38,254,'Gardiner',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21297,38,1365,'Garibaldi',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21298,38,71,'Gaston',1,9994,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21299,38,58,'Gates',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21300,38,58,'Gervais',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21301,38,1366,'Gilchrist',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21302,38,1367,'Gladstone',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21303,38,254,'Glendale',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21304,38,147,'Gleneden Beach',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21305,38,254,'Glide',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21306,38,1231,'Gold Beach',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21307,38,66,'Gold Hill',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21308,38,1367,'Government Camp',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21309,38,126,'Grand Ronde',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21310,38,1372,'Grants Pass',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21311,38,671,'Grass Valley',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21312,38,1369,'Gresham',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21313,38,330,'Haines',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21314,38,330,'Halfway',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21315,38,458,'Halsey',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21316,38,1363,'Hammond',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21317,38,1367,'Happy Valley',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21318,38,1360,'Harper',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21319,38,458,'Harrisburg',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21320,38,1365,'Hebo',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21321,38,1359,'Helix',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21322,38,1310,'Heppner',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21323,38,330,'Hereford',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21324,38,1359,'Hermiston',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21325,38,71,'Hillsboro',1,12152,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21326,38,1370,'Hines',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21327,38,1371,'Hood River',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21328,38,58,'Hubbard',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21329,38,330,'Huntington',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21330,38,58,'Idanha',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21331,38,254,'Idleyld Park',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21332,38,131,'Imbler',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21333,38,1373,'Imnaha',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21334,38,126,'Independence',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21335,38,1310,'Ione',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21336,38,1360,'Ironside',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21337,38,1310,'Irrigon',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21338,38,66,'Jacksonville',1,105,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21339,38,1360,'Jamieson',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21340,38,58,'Jefferson',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21341,38,148,'John Day',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21342,38,1360,'Jordan Valley',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21343,38,1373,'Joseph',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21344,38,670,'Junction City',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21345,38,1360,'Juntura',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21346,38,58,'Keizer',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21347,38,1366,'Keno',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21348,38,671,'Kent',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21349,38,1372,'Kerby',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21350,38,148,'Kimberly',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21351,38,1366,'Klamath Falls',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21352,38,131,'La Grande',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21353,38,1368,'La Pine',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21354,38,1361,'Lafayette',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21355,38,1367,'Lake Oswego',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21356,38,1207,'Lakeside',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21357,38,216,'Lakeview',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21358,38,1231,'Langlois',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21359,38,458,'Lebanon',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21360,38,1310,'Lexington',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21361,38,147,'Lincoln City',1,106,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21362,38,147,'Logsden',1,109,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21363,38,148,'Long Creek',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21364,38,670,'Lorane',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21365,38,1373,'Lostine',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21366,38,670,'Lowell',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21367,38,458,'Lyons',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21368,38,30,'Madras',1,15974,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21369,38,1366,'Malin',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21370,38,71,'Manning',1,16154,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21371,38,1365,'Manzanita',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21372,38,670,'Mapleton',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21373,38,670,'Marcola',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21374,38,1367,'Marylhurst',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21375,38,1362,'Maupin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21376,38,1361,'Mcminnville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21377,38,1359,'Meacham',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21378,38,66,'Medford',1,16917,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21379,38,58,'Mehama',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21380,38,1372,'Merlin',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21381,38,1366,'Merrill',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21382,38,1366,'Midland',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21383,38,1364,'Mikkalo',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21384,38,458,'Mill City',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21385,38,1359,'Milton Freewater',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21386,38,344,'Mitchell',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21387,38,1367,'Molalla',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21388,38,126,'Monmouth',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21389,38,107,'Monroe',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21390,38,148,'Monument',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21391,38,671,'Moro',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21392,38,1362,'Mosier',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21393,38,58,'Mount Angel',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21394,38,1371,'Mount Hood Parkdale',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21395,38,148,'Mount Vernon',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21396,38,1367,'Mulino',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21397,38,1372,'Murphy',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21398,38,254,'Myrtle Creek',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21399,38,1207,'Myrtle Point',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21400,38,1365,'Nehalem',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21401,38,147,'Neotsu',1,120,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21402,38,1365,'Neskowin',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21403,38,1365,'Netarts',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21404,38,216,'New Pine Creek',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21405,38,1361,'Newberg',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21406,38,147,'Newport',1,123,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21407,38,1207,'North Bend',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21408,38,71,'North Plains',1,19365,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21409,38,131,'North Powder',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21410,38,670,'Noti',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21411,38,1360,'Nyssa',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21412,38,1372,'O Brien',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21413,38,254,'Oakland',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21414,38,670,'Oakridge',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21415,38,1365,'Oceanside',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21416,38,1371,'Odell',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21417,38,1360,'Ontario',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21418,38,1231,'Ophir',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21419,38,1367,'Oregon City',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21420,38,147,'Otis',1,131,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21421,38,147,'Otter Rock',1,132,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21422,38,330,'Oxbow',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21423,38,1365,'Pacific City',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21424,38,216,'Paisley',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21425,38,1374,'Paulina',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21426,38,1359,'Pendleton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21427,38,107,'Philomath',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21428,38,66,'Phoenix',1,159,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21429,38,1359,'Pilot Rock',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21430,38,670,'Pleasant Hill',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21431,38,216,'Plush',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21432,38,1231,'Port Orford',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21433,38,1367,'Portland',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21434,38,1369,'Portland',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21435,38,71,'Portland',1,279,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21436,38,1374,'Post',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21437,38,1374,'Powell Butte',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21438,38,1207,'Powers',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21439,38,148,'Prairie City',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21440,38,1370,'Princeton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21441,38,1374,'Prineville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21442,38,66,'Prospect',1,165,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21443,38,143,'Rainier',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21444,38,1368,'Redmond',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21445,38,254,'Reedsport',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21446,38,1367,'Rhododendron',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21447,38,330,'Richland',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21448,38,126,'Rickreall',1,111,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21449,38,254,'Riddle',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21450,38,1370,'Riley',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21451,38,1360,'Riverside',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21452,38,1365,'Rockaway Beach',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21453,38,66,'Rogue River',1,171,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21454,38,147,'Rose Lodge',1,143,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21455,38,254,'Roseburg',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21456,38,671,'Rufus',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21457,38,670,'Saginaw',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21458,38,58,'Saint Benedict',1,116,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21459,38,143,'Saint Helens',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21460,38,58,'Saint Paul',1,119,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21461,38,58,'Salem',1,121,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21462,38,126,'Salem',1,116,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21463,38,1367,'Sandy',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21464,38,143,'Scappoose',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21465,38,458,'Scio',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21466,38,58,'Scotts Mills',1,124,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21467,38,254,'Scottsburg',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21468,38,147,'Seal Rock',1,150,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21469,38,1363,'Seaside',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21470,38,1372,'Selma',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21471,38,148,'Seneca',1,108,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21472,38,66,'Shady Cove',1,179,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21473,38,1362,'Shaniko',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21474,38,458,'Shedd',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21475,38,1361,'Sheridan',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21476,38,71,'Sherwood',1,314,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21477,38,147,'Siletz',1,152,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21478,38,216,'Silver Lake',1,117,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21479,38,58,'Silverton',1,128,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21480,38,1368,'Sisters',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21481,38,1231,'Sixes',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21482,38,147,'South Beach',1,158,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21483,38,1366,'Sprague River',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21484,38,344,'Spray',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21485,38,670,'Springfield',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21486,38,1359,'Stanfield',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21487,38,58,'Stayton',1,132,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21488,38,58,'Sublimity',1,133,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21489,38,216,'Summer Lake',1,119,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21490,38,131,'Summerville',1,103,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21491,38,330,'Sumpter',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21492,38,254,'Sutherlin',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21493,38,458,'Sweet Home',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21494,38,670,'Swisshome',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21495,38,66,'Talent',1,190,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21496,38,458,'Tangent',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21497,38,254,'Tenmile',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21498,38,30,'Terrebonne',1,263,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21499,38,1362,'The Dalles',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21500,38,670,'Thurston',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21501,38,147,'Tidewater',1,175,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21502,38,1365,'Tillamook',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21503,38,254,'Tiller',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21504,38,71,'Timber',1,337,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21505,38,147,'Toledo',1,177,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21506,38,1363,'Tolovana Park',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21507,38,66,'Trail',1,193,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21508,38,1369,'Troutdale',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21509,38,71,'Tualatin',1,341,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21510,38,58,'Turner',1,140,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21511,38,1362,'Tygh Valley',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21512,38,1359,'Ukiah',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21513,38,1359,'Umatilla',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21514,38,254,'Umpqua',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21515,38,131,'Union',1,108,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21516,38,330,'Unity',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21517,38,1360,'Vale',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21518,38,670,'Veneta',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21519,38,143,'Vernonia',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21520,38,670,'Vida',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21521,38,147,'Waldport',1,188,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21522,38,1373,'Wallowa',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21523,38,670,'Walterville',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21524,38,670,'Walton',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21525,38,30,'Warm Springs',1,283,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21526,38,143,'Warren',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21527,38,1363,'Warrenton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21528,38,671,'Wasco',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21529,38,1231,'Wedderburn',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21530,38,1367,'Welches',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21531,38,1367,'West Linn',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21532,38,1360,'Westfall',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21533,38,670,'Westfir',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21534,38,670,'Westlake',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21535,38,1359,'Weston',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21536,38,1365,'Wheeler',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21537,38,66,'White City',1,208,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21538,38,254,'Wilbur',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21539,38,1372,'Wilderville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21540,38,1361,'Willamina',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21541,38,1372,'Williams',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21542,38,1367,'Wilsonville',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21543,38,254,'Winchester',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21544,38,254,'Winston',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21545,38,1372,'Wolf Creek',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21546,38,58,'Woodburn',1,148,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21547,38,147,'Yachats',1,202,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21548,38,1361,'Yamhill',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21549,38,254,'Yoncalla',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21550,39,1375,'Aaronsburg',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21551,39,235,'Abbottstown',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21552,39,72,'Abington',1,31,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21553,39,1114,'Ackermanville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21554,39,1376,'Acme',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21555,39,821,'Acosta',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21556,39,56,'Adah',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21557,39,1376,'Adamsburg',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21558,39,1177,'Adamstown',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21559,39,97,'Adamsville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21560,39,821,'Addison',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21561,39,1377,'Adrian',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21562,39,823,'Airville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21563,39,1177,'Akron',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21564,39,313,'Alba',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21565,39,1255,'Albion',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21566,39,1037,'Albrightsville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21567,39,1378,'Alburtis',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21568,39,63,'Aleppo',1,303,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21569,39,1379,'Alexandria',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21570,39,1328,'Aliquippa',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21571,39,71,'Allenport',1,379,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21572,39,1380,'Allensville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21573,39,1378,'Allentown',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21574,39,131,'Allenwood',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21575,39,56,'Allison',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21576,39,1381,'Allison Park',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21577,39,1382,'Allport',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21578,39,1383,'Altoona',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21579,39,1384,'Alum Bank',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21580,39,1385,'Alverda',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21581,39,1376,'Alverton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21582,39,92,'Amberson',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21583,39,72,'Ambler',1,558,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21584,39,1328,'Ambridge',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21585,39,71,'Amity',1,604,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21586,39,59,'Analomink',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21587,39,1386,'Andreas',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21588,39,30,'Anita',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21589,39,1387,'Annville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21590,39,1388,'Antes Fort',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21591,39,1376,'Apollo',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21592,39,1037,'Aquashicola',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21593,39,1385,'Arcadia',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21594,39,1389,'Archbald',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21595,39,72,'Arcola',1,842,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21596,39,1376,'Ardara',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21597,39,72,'Ardmore',1,849,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21598,39,235,'Arendtsville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21599,39,143,'Aristes',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21600,39,1385,'Armagh',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21601,39,1376,'Armbrust',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21602,39,1262,'Arnot',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21603,39,1376,'Arona',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21604,39,1384,'Artemas',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21605,39,1037,'Ashfield',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21606,39,1386,'Ashland',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21607,39,1390,'Ashville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21608,39,235,'Aspers',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21609,39,497,'Aston',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21610,39,1391,'Atglen',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21611,39,313,'Athens',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21612,39,97,'Atlantic',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21613,39,71,'Atlasburg',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21614,39,1386,'Auburn',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21615,39,72,'Audubon',1,1197,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21616,39,1385,'Aultman',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21617,39,1392,'Austin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21618,39,71,'Avella',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21619,39,465,'Avis',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21620,39,1391,'Avondale',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21621,39,1376,'Avonmore',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21622,39,1328,'Baden',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21623,39,1177,'Bainbridge',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21624,39,1381,'Bairdford',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21625,39,1381,'Bakerstown',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21626,39,72,'Bala Cynwyd',1,1404,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21627,39,1393,'Bally',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21628,39,1114,'Bangor',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21629,39,1386,'Barnesville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21630,39,1177,'Bart',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21631,39,1393,'Barto',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21632,39,59,'Bartonsville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21633,39,1114,'Bath',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21634,39,1177,'Bausman',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21635,39,1394,'Beach Haven',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21636,39,431,'Beach Lake',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21637,39,71,'Beallsville',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21638,39,1394,'Bear Creek',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21639,39,386,'Bear Lake',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21640,39,1328,'Beaver',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21641,39,1328,'Beaver Falls',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21642,39,1037,'Beaver Meadows',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21643,39,1395,'Beaver Springs',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21644,39,1390,'Beaverdale',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21645,39,1395,'Beavertown',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21646,39,1382,'Beccaria',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21647,39,1393,'Bechtelsville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21648,39,1384,'Bedford',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21649,39,1396,'Bedminster',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21650,39,465,'Beech Creek',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21651,39,56,'Belle Vernon',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21652,39,1375,'Bellefonte',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21653,39,1380,'Belleville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21654,39,1383,'Bellwood',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21655,39,1390,'Belsano',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21656,39,235,'Bendersville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21657,39,672,'Benezett',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21658,39,1396,'Bensalem',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21659,39,71,'Bentleyville',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21660,39,143,'Benton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21661,39,821,'Berlin',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21662,39,1393,'Bernville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21663,39,1397,'Berrysburg',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21664,39,143,'Berwick',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21665,39,1391,'Berwyn',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21666,39,81,'Bessemer',1,2160,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21667,39,1393,'Bethel',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21668,39,1381,'Bethel Park',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21669,39,1378,'Bethlehem',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21670,39,1114,'Bethlehem',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21671,39,1385,'Beyer',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21672,39,119,'Big Cove Tannery',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21673,39,30,'Big Run',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21674,39,1382,'Bigler',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21675,39,235,'Biglerville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21676,39,1391,'Birchrunville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21677,39,1177,'Bird In Hand',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21678,39,1393,'Birdsboro',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21679,39,1385,'Black Lick',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21680,39,93,'Blain',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21681,39,1379,'Blairs Mills',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21682,39,1385,'Blairsville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21683,39,59,'Blakeslee',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21684,39,1375,'Blanchard',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21685,39,1390,'Blandburg',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21686,39,1393,'Blandon',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21687,39,1396,'Blooming Glen',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21688,39,143,'Bloomsburg',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21689,39,1262,'Blossburg',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21690,39,1177,'Blue Ball',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21691,39,72,'Blue Bell',1,2547,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21692,39,92,'Blue Ridge Summit',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21693,39,1375,'Boalsburg',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21694,39,63,'Bobtown',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21695,39,584,'Boiling Springs',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21696,39,1376,'Bolivar',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21697,39,821,'Boswell',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21698,39,1376,'Bovard',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21699,39,1393,'Bowers',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21700,39,584,'Bowmansdale',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21701,39,1037,'Bowmanstown',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21702,39,1177,'Bowmansville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21703,39,74,'Boyers',1,2852,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21704,39,1393,'Boyertown',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21705,39,821,'Boynton',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21706,39,1381,'Brackenridge',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21707,39,1398,'Brackney',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21708,39,1381,'Braddock',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21709,39,1376,'Bradenville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21710,39,1399,'Bradford',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21711,39,1381,'Bradfordwoods',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21712,39,1386,'Branchdale',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21713,39,74,'Branchton',1,2937,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21714,39,1391,'Brandamore',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21715,39,672,'Brandy Camp',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21716,39,63,'Brave',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21717,39,1384,'Breezewood',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21718,39,1378,'Breinigsville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21719,39,72,'Bridgeport',1,3051,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21720,39,1381,'Bridgeville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21721,39,56,'Brier Hill',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21722,39,1382,'Brisbin',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21723,39,1396,'Bristol',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21724,39,1379,'Broad Top',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21725,39,672,'Brockport',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21726,39,1386,'Brockton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21727,39,30,'Brockway',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21728,39,59,'Brodheadsville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21729,39,823,'Brogue',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21730,39,497,'Brookhaven',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21731,39,1398,'Brooklyn',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21732,39,30,'Brookville',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21733,39,497,'Broomall',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21734,39,56,'Brownfield',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21735,39,1177,'Brownstown',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21736,39,56,'Brownsville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21737,39,74,'Bruin',1,3334,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21738,39,1385,'Brush Valley',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21739,39,72,'Bryn Athyn',1,3385,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21740,39,497,'Bryn Mawr',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21741,39,59,'Buck Hill Falls',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21742,39,1396,'Buckingham',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21743,39,1381,'Buena Vista',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21744,39,1384,'Buffalo Mills',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21745,39,71,'Bulger',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21746,39,1381,'Bunola',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21747,39,71,'Burgettstown',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21748,39,313,'Burlington',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21749,39,1380,'Burnham',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21750,39,1382,'Burnside',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21751,39,119,'Burnt Cabins',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21752,39,55,'Bushkill',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21753,39,74,'Butler',1,3654,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21754,39,672,'Byrnedale',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21755,39,74,'Cabot',1,3712,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21756,39,1377,'Cadogan',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21757,39,821,'Cairnbrook',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21758,39,71,'California',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21759,39,1400,'Callensburg',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21760,39,74,'Callery',1,3804,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21761,39,1376,'Calumet',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21762,39,1379,'Calvin',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21763,39,1394,'Cambra',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21764,39,97,'Cambridge Springs',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21765,39,1388,'Cammal',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21766,39,584,'Camp Hill',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21767,39,1387,'Campbelltown',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21768,39,313,'Camptown',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21769,39,59,'Canadensis',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21770,39,71,'Canonsburg',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21771,39,313,'Canton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21772,39,1389,'Carbondale',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21773,39,56,'Cardale',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21774,39,584,'Carlisle',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21775,39,544,'Carlton',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21776,39,63,'Carmichaels',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21777,39,1381,'Carnegie',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21778,39,1390,'Carrolltown',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21779,39,1396,'Carversville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21780,39,235,'Cashtown',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21781,39,1390,'Cassandra',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21782,39,1379,'Cassville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21783,39,465,'Castanea',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21784,39,1378,'Catasauqua',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21785,39,143,'Catawissa',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21786,39,71,'Cecil',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21787,39,1388,'Cedar Run',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21788,39,72,'Cedars',1,4445,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21789,39,1378,'Center Valley',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21790,39,1393,'Centerport',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21791,39,97,'Centerville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21792,39,821,'Central City',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21793,39,1375,'Centre Hall',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21794,39,497,'Chadds Ford',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21795,39,1396,'Chalfont',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21796,39,56,'Chalk Hill',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21797,39,92,'Chambersburg',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21798,39,1385,'Chambersville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21799,39,1376,'Champion',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21800,39,386,'Chandlers Valley',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21801,39,71,'Charleroi',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21802,39,1391,'Chatham',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21803,39,72,'Cheltenham',1,4752,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21804,39,1385,'Cherry Tree',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21805,39,1114,'Cherryville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21806,39,1390,'Chest Springs',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21807,39,497,'Chester',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21808,39,497,'Chester Heights',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21809,39,1391,'Chester Springs',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21810,39,56,'Chestnut Ridge',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21811,39,1381,'Cheswick',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21812,39,497,'Cheyney',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21813,39,74,'Chicora',1,4876,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21814,39,1389,'Chinchilla',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21815,39,1177,'Christiana',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21816,39,1381,'Clairton',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21817,39,1375,'Clarence',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21818,39,386,'Clarendon',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21819,39,1376,'Claridge',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21820,39,1401,'Clarington',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21821,39,1400,'Clarion',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21822,39,544,'Clark',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21823,39,544,'Clarks Mills',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21824,39,1389,'Clarks Summit',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21825,39,1385,'Clarksburg',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21826,39,63,'Clarksville',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21827,39,1383,'Claysburg',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21828,39,71,'Claysville',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21829,39,1382,'Clearfield',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21830,39,1384,'Clearville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21831,39,1398,'Clifford',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21832,39,497,'Clifton Heights',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21833,39,1328,'Clinton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21834,39,1402,'Clintonville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21835,39,1385,'Clune',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21836,39,1385,'Clymer',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21837,39,71,'Coal Center',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21838,39,1403,'Coal Township',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21839,39,1386,'Coaldale',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21840,39,1382,'Coalport',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21841,39,1391,'Coatesville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21842,39,1375,'Coburn',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21843,39,97,'Cochranton',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21844,39,1391,'Cochranville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21845,39,1404,'Cocolamus',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21846,39,823,'Codorus',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21847,39,1388,'Cogan Station',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21848,39,71,'Cokeburg',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21849,39,72,'Collegeville',1,5516,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21850,39,72,'Colmar',1,5545,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21851,39,1177,'Columbia',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21852,39,313,'Columbia Cross Roads',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21853,39,386,'Columbus',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21854,39,1390,'Colver',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21855,39,1385,'Commodore',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21856,39,92,'Concord',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21857,39,497,'Concordville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21858,39,1177,'Conestoga',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21859,39,821,'Confluence',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21860,39,97,'Conneaut Lake',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21861,39,97,'Conneautville',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21862,39,56,'Connellsville',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21863,39,74,'Connoquenessing',1,5734,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21864,39,72,'Conshohocken',1,5744,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21865,39,1328,'Conway',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21866,39,1394,'Conyngham',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21867,39,1401,'Cooksburg',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21868,39,30,'Coolspring',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21869,39,1378,'Coopersburg',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21870,39,1402,'Cooperstown',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21871,39,1378,'Coplay',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21872,39,1385,'Coral',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21873,39,1381,'Coraopolis',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21874,39,1387,'Cornwall',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21875,39,1255,'Corry',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21876,39,30,'Corsica',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21877,39,1392,'Coudersport',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21878,39,1381,'Coulters',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21879,39,1390,'Coupon',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21880,39,1262,'Covington',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21881,39,270,'Cowanesque',1,6035,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21882,39,1377,'Cowansville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21883,39,1376,'Crabtree',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21884,39,823,'Craley',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21885,39,1402,'Cranberry',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21886,39,74,'Cranberry Twp',1,6082,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21887,39,1255,'Cranesville',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21888,39,72,'Creamery',1,6122,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21889,39,1385,'Creekside',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21890,39,1381,'Creighton',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21891,39,1381,'Crescent',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21892,39,59,'Cresco',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21893,39,1390,'Cresson',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21894,39,1386,'Cressona',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21895,39,1399,'Crosby',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21896,39,1392,'Cross Fork',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21897,39,1400,'Crown',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21898,39,1396,'Croydon',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21899,39,63,'Crucible',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21900,39,497,'Crum Lynne',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21901,39,119,'Crystal Spring',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21902,39,1381,'Cuddy',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21903,39,1386,'Cumbola',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21904,39,1400,'Curllsville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21905,39,1383,'Curryville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21906,39,1381,'Curtisville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21907,39,1382,'Curwensville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21908,39,1399,'Custer City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21909,39,1399,'Cyclone',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21910,39,672,'Dagus Mines',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21911,39,71,'Daisytown',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21912,39,1394,'Dallas',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21913,39,823,'Dallastown',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21914,39,1403,'Dalmatia',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21915,39,1389,'Dalton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21916,39,431,'Damascus',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21917,39,1396,'Danboro',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21918,39,1114,'Danielsville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21919,39,1405,'Danville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21920,39,497,'Darby',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21921,39,1328,'Darlington',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21922,39,1376,'Darragh',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21923,39,1397,'Dauphin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21924,39,821,'Davidsville',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21925,39,56,'Dawson',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21926,39,1377,'Dayton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21927,39,30,'De Lancey',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21928,39,672,'De Young',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21929,39,1384,'Defiance',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21930,39,1386,'Delano',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21931,39,59,'Delaware Water Gap',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21932,39,1376,'Delmont',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21933,39,823,'Delta',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21934,39,71,'Denbo',1,102,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21935,39,1177,'Denver',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21936,39,1399,'Derrick City',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21937,39,1376,'Derry',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21938,39,1391,'Devault',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21939,39,1391,'Devon',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21940,39,1403,'Dewart',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21941,39,56,'Dickerson Run',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21942,39,1389,'Dickson City',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21943,39,63,'Dilliner',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21944,39,823,'Dillsburg',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21945,39,1385,'Dilltown',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21946,39,1398,'Dimock',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21947,39,55,'Dingmans Ferry',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21948,39,1377,'Distant',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21949,39,1385,'Dixonville',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21950,39,1376,'Donegal',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21951,39,71,'Donora',1,105,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21952,39,1403,'Dornsife',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21953,39,1393,'Douglassville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21954,39,823,'Dover',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21955,39,1391,'Downingtown',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21956,39,92,'Doylesburg',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21957,39,1396,'Doylestown',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21958,39,1381,'Dravosburg',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21959,39,72,'Dresher',1,7309,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21960,39,497,'Drexel Hill',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21961,39,1382,'Drifting',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21962,39,1394,'Drifton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21963,39,780,'Driftwood',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21964,39,1177,'Drumore',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21965,39,1394,'Drums',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21966,39,92,'Dry Run',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21967,39,1382,'Du Bois',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21968,39,1396,'Dublin',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21969,39,1379,'Dudley',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21970,39,1399,'Duke Center',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21971,39,56,'Dunbar',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21972,39,93,'Duncannon',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21973,39,1383,'Duncansville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21974,39,71,'Dunlevy',1,107,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21975,39,1390,'Dunlo',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21976,39,1381,'Duquesne',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21977,39,1396,'Durham',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21978,39,1394,'Duryea',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21979,39,611,'Dushore',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21980,39,1390,'Dysart',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21981,39,611,'Eagles Mere',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21982,39,72,'Eagleville',1,7580,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21983,39,72,'Earlington',1,7594,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21984,39,1393,'Earlville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21985,39,235,'East Berlin',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21986,39,1400,'East Brady',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21987,39,74,'East Butler',1,7636,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21988,39,1177,'East Earl',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21989,39,1383,'East Freedom',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21990,39,72,'East Greenville',1,7675,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(21991,39,1401,'East Hickory',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21992,39,1381,'East Mc Keesport',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21993,39,56,'East Millsboro',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21994,39,1177,'East Petersburg',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21995,39,1381,'East Pittsburgh',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21996,39,823,'East Prospect',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21997,39,1399,'East Smethport',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21998,39,313,'East Smithfield',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(21999,39,1255,'East Springfield',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22000,39,59,'East Stroudsburg',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22001,39,1378,'East Texas',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22002,39,1376,'East Vandergrift',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22003,39,1404,'East Waterford',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22004,39,1114,'Easton',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22005,39,74,'Eau Claire',1,7839,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22006,39,1390,'Ebensburg',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22007,39,1394,'Ebervale',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22008,39,497,'Edgemont',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22009,39,1255,'Edinboro',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22010,39,81,'Edinburg',1,7923,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22011,39,59,'Effort',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22012,39,71,'Eighty Four',1,114,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22013,39,71,'Elco',1,115,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22014,39,1377,'Elderton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22015,39,1399,'Eldred',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22016,39,1255,'Elgin',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22017,39,1381,'Elizabeth',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22018,39,1177,'Elizabethtown',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22019,39,1397,'Elizabethville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22020,39,72,'Elkins Park',1,8150,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22021,39,1262,'Elkland',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22022,39,93,'Elliottsburg',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22023,39,71,'Ellsworth',1,117,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22024,39,81,'Ellwood City',1,8232,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22025,39,1177,'Elm',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22026,39,1389,'Elmhurst',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22027,39,1390,'Elmora',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22028,39,71,'Elrama',1,119,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22029,39,1390,'Elton',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22030,39,1391,'Elverson',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22031,39,1403,'Elysburg',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22032,39,1390,'Emeigh',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22033,39,823,'Emigsville',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22034,39,1402,'Emlenton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22035,39,1378,'Emmaus',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22036,39,780,'Emporium',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22037,39,1401,'Endeavor',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22038,39,584,'Enola',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22039,39,81,'Enon Valley',1,8418,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22040,39,1379,'Entriken',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22041,39,1177,'Ephrata',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22042,39,431,'Equinunk',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22043,39,1255,'Erie',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22044,39,1385,'Ernest',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22045,39,1396,'Erwinna',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22046,39,497,'Essington',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22047,39,823,'Etters',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22048,39,74,'Evans City',1,8599,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22049,39,1384,'Everett',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22050,39,56,'Everson',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22051,39,1376,'Export',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22052,39,1391,'Exton',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22053,39,1265,'Factoryville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22054,39,56,'Fairbank',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22055,39,56,'Fairchance',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22056,39,235,'Fairfield',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22057,39,821,'Fairhope',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22058,39,1396,'Fairless Hills',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22059,39,1400,'Fairmount City',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22060,39,1255,'Fairview',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22061,39,72,'Fairview Village',1,8779,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22062,39,1390,'Fallentimber',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22063,39,1265,'Falls',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22064,39,30,'Falls Creek',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22065,39,92,'Fannettsburg',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22066,39,56,'Farmington',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22067,39,544,'Farrell',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22068,39,823,'Fawn Grove',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22069,39,56,'Fayette City',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22070,39,92,'Fayetteville',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22071,39,1396,'Feasterville Trevose',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22072,39,823,'Felton',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22073,39,74,'Fenelton',1,8956,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22074,39,1396,'Ferndale',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22075,39,71,'Finleyville',1,128,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22076,39,1400,'Fisher',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22077,39,1384,'Fishertown',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22078,39,1389,'Fleetville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22079,39,1393,'Fleetwood',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22080,39,1375,'Fleming',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22081,39,1114,'Flicksville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22082,39,1390,'Flinton',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22083,39,72,'Flourtown',1,9175,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22084,39,1378,'Fogelsville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22085,39,497,'Folcroft',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22086,39,497,'Folsom',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22087,39,1328,'Fombell',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22088,39,1376,'Forbes Road',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22089,39,672,'Force',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22090,39,1377,'Ford City',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22091,39,1377,'Ford Cliff',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22092,39,1398,'Forest City',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22093,39,1396,'Forest Grove',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22094,39,74,'Forestville',1,9277,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22095,39,611,'Forksville',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22096,39,821,'Fort Hill',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22097,39,119,'Fort Littleton',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22098,39,92,'Fort Loudon',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22099,39,1396,'Fort Washington',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22100,39,72,'Fort Washington',1,9429,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22101,39,1396,'Fountainville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22102,39,1400,'Foxburg',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22103,39,1386,'Frackville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22104,39,72,'Franconia',1,9516,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22105,39,1402,'Franklin',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22106,39,823,'Franklintown',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22107,39,72,'Frederick',1,9597,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22108,39,1387,'Fredericksburg',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22109,39,71,'Fredericktown',1,138,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22110,39,544,'Fredonia',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22111,39,1395,'Freeburg',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22112,39,1328,'Freedom',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22113,39,1394,'Freeland',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22114,39,1377,'Freeport',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22115,39,1382,'Frenchville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22116,39,821,'Friedens',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22117,39,1386,'Friedensburg',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22118,39,1398,'Friendsville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22119,39,30,'Frostburg',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22120,39,1400,'Fryburg',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22121,39,1396,'Furlong',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22122,39,1262,'Gaines',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22123,39,1392,'Galeton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22124,39,1390,'Gallitzin',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22125,39,56,'Gans',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22126,39,1177,'Gap',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22127,39,63,'Garards Fort',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22128,39,1396,'Gardenville',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22129,39,235,'Gardners',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22130,39,386,'Garland',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22131,39,821,'Garrett',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22132,39,71,'Gastonville',1,143,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22133,39,1393,'Geigertown',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22134,39,1392,'Genesee',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22135,39,1328,'Georgetown',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22136,39,1378,'Germansville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22137,39,235,'Gettysburg',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22138,39,56,'Gibbon Glade',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22139,39,1398,'Gibson',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22140,39,1381,'Gibsonia',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22141,39,1399,'Gifford',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22142,39,59,'Gilbert',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22143,39,1386,'Gilberton',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22144,39,72,'Gilbertsville',1,10173,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22145,39,313,'Gillett',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22146,39,1385,'Gipsy',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22147,39,1255,'Girard',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22148,39,1386,'Girardville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22149,39,72,'Gladwyne',1,10249,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22150,39,1390,'Glasgow',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22151,39,1381,'Glassport',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22152,39,1385,'Glen Campbell',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22153,39,1382,'Glen Hope',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22154,39,1394,'Glen Lyon',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22155,39,497,'Glen Mills',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22156,39,1382,'Glen Richey',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22157,39,497,'Glen Riddle Lima',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22158,39,823,'Glen Rock',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22159,39,1391,'Glenmoore',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22160,39,497,'Glenolden',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22161,39,1381,'Glenshaw',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22162,39,72,'Glenside',1,10381,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22163,39,823,'Glenville',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22164,39,1177,'Goodville',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22165,39,1386,'Gordon',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22166,39,1177,'Gordonville',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22167,39,431,'Gouldsboro',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22168,39,497,'Gradyville',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22169,39,1382,'Grampian',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22170,39,386,'Grand Valley',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22171,39,584,'Grantham',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22172,39,1397,'Grantville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22173,39,1380,'Granville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22174,39,313,'Granville Summit',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22175,39,1376,'Grapeville',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22176,39,1382,'Grassflat',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22177,39,1397,'Gratz',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22178,39,821,'Gray',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22179,39,63,'Graysville',1,10818,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22180,39,1398,'Great Bend',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22181,39,55,'Greeley',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22182,39,72,'Green Lane',1,10855,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22183,39,92,'Greencastle',1,103,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22184,39,1381,'Greenock',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22185,39,63,'Greensboro',1,10928,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22186,39,1376,'Greensburg',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22187,39,55,'Greentown',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22188,39,544,'Greenville',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22189,39,56,'Grindstone',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22190,39,544,'Grove City',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22191,39,313,'Grover',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22192,39,97,'Guys Mills',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22193,39,72,'Gwynedd',1,11165,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22194,39,72,'Gwynedd Valley',1,11166,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22195,39,544,'Hadley',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22196,39,1397,'Halifax',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22197,39,1398,'Hallstead',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22198,39,1393,'Hamburg',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22199,39,30,'Hamilton',1,113,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22200,39,431,'Hamlin',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22201,39,1376,'Hannastown',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22202,39,823,'Hanover',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22203,39,1255,'Harborcreek',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22204,39,1398,'Harford',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22205,39,1394,'Harleigh',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22206,39,72,'Harleysville',1,11477,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22207,39,97,'Harmonsburg',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22208,39,74,'Harmony',1,11485,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22209,39,1397,'Harrisburg',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22210,39,1376,'Harrison City',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22211,39,1392,'Harrison Valley',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22212,39,119,'Harrisonville',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22213,39,74,'Harrisville',1,11560,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22214,39,131,'Hartleton',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22215,39,97,'Hartstown',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22216,39,1394,'Harveys Lake',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22217,39,1381,'Harwick',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22218,39,1390,'Hastings',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22219,39,72,'Hatboro',1,11673,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22220,39,72,'Hatfield',1,11681,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22221,39,72,'Haverford',1,11706,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22222,39,497,'Havertown',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22223,39,1382,'Hawk Run',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22224,39,55,'Hawley',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22225,39,1400,'Hawthorn',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22226,39,1399,'Hazel Hurst',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22227,39,1394,'Hazleton',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22228,39,1386,'Hegins',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22229,39,1385,'Heilwood',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22230,39,1114,'Hellertown',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22231,39,71,'Hendersonville',1,11912,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22232,39,59,'Henryville',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22233,39,1393,'Hereford',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22234,39,74,'Herman',1,11964,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22235,39,1376,'Herminie',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22236,39,544,'Hermitage',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22237,39,1403,'Herndon',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22238,39,1398,'Herrick Center',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22239,39,1397,'Hershey',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22240,39,1379,'Hesston',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22241,39,56,'Hibbs',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22242,39,71,'Hickory',1,12039,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22243,39,821,'Hidden Valley',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22244,39,1397,'Highspire',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22245,39,56,'Hiller',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22246,39,74,'Hilliards',1,12135,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22247,39,1385,'Hillsdale',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22248,39,611,'Hillsgrove',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22249,39,81,'Hillsville',1,12177,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22250,39,1396,'Hilltown',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22251,39,63,'Holbrook',1,12272,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22252,39,1396,'Holicong',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22253,39,1383,'Hollidaysburg',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22254,39,821,'Hollsopple',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22255,39,497,'Holmes',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22256,39,1177,'Holtwood',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22257,39,1385,'Home',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22258,39,1385,'Homer City',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22259,39,1381,'Homestead',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22260,39,431,'Honesdale',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22261,39,1391,'Honey Brook',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22262,39,1404,'Honey Grove',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22263,39,1328,'Hookstown',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22264,39,821,'Hooversville',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22265,39,1398,'Hop Bottom',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22266,39,1177,'Hopeland',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22267,39,1384,'Hopewell',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22268,39,56,'Hopwood',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22269,39,72,'Horsham',1,12525,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22270,39,1376,'Hostetter',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22271,39,71,'Houston',1,12567,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22272,39,1382,'Houtzdale',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22273,39,1375,'Howard',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22274,39,1388,'Hughesville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22275,39,1395,'Hummels Wharf',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22276,39,1397,'Hummelstown',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22277,39,1376,'Hunker',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22278,39,1394,'Hunlock Creek',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22279,39,1379,'Huntingdon',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22280,39,72,'Huntingdon Valley',1,12723,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22281,39,1394,'Huntington Mills',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22282,39,119,'Hustontown',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22283,39,1376,'Hutchinson',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22284,39,1382,'Hyde',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22285,39,1376,'Hyde Park',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22286,39,97,'Hydetown',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22287,39,1384,'Hyndman',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22288,39,465,'Hyner',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22289,39,93,'Ickesburg',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22290,39,235,'Idaville',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22291,39,1384,'Imler',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22292,39,1391,'Immaculata',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22293,39,1381,'Imperial',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22294,39,56,'Indian Head',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22295,39,1385,'Indiana',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22296,39,1381,'Indianola',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22297,39,1328,'Industry',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22298,39,1381,'Ingomar',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22299,39,1177,'Intercourse',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22300,39,386,'Irvine',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22301,39,1382,'Irvona',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22302,39,1376,'Irwin',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22303,39,56,'Isabella',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22304,39,1398,'Jackson',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22305,39,544,'Jackson Center',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22306,39,1376,'Jacobs Creek',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22307,39,672,'James City',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22308,39,1379,'James Creek',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22309,39,544,'Jamestown',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22310,39,1396,'Jamison',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22311,39,1376,'Jeannette',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22312,39,63,'Jefferson',1,13272,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22313,39,72,'Jenkintown',1,13309,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22314,39,821,'Jenners',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22315,39,821,'Jennerstown',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22316,39,1389,'Jermyn',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22317,39,821,'Jerome',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22318,39,1388,'Jersey Mills',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22319,39,1388,'Jersey Shore',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22320,39,1389,'Jessup',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22321,39,1037,'Jim Thorpe',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22322,39,71,'Joffre',1,13371,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22323,39,672,'Johnsonburg',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22324,39,1390,'Johnstown',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22325,39,1376,'Jones Mills',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22326,39,1387,'Jonestown',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22327,39,1385,'Josephine',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22328,39,1375,'Julian',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22329,39,1037,'Junedale',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22330,39,1399,'Kane',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22331,39,821,'Kantner',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22332,39,74,'Karns City',1,13570,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22333,39,1382,'Karthaus',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22334,39,56,'Keisterville',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22335,39,1386,'Kelayres',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22336,39,1391,'Kelton',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22337,39,1391,'Kemblesville',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22338,39,1393,'Kempton',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22339,39,1402,'Kennerdell',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22340,39,1391,'Kennett Square',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22341,39,1385,'Kent',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22342,39,672,'Kersey',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22343,39,1391,'Kimberton',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22344,39,1391,'King Of Prussia',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22345,39,72,'King Of Prussia',1,13896,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22346,39,1398,'Kingsley',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22347,39,1394,'Kingston',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22348,39,1396,'Kintnersville',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22349,39,1177,'Kinzers',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22350,39,1177,'Kirkwood',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22351,39,1377,'Kittanning',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22352,39,1387,'Kleinfeltersville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22353,39,1386,'Klingerstown',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22354,39,1400,'Knox',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22355,39,30,'Knox Dale',1,148,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22356,39,1262,'Knoxville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22357,39,1328,'Koppel',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22358,39,1400,'Kossuth',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22359,39,1395,'Kreamer',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22360,39,59,'Kresgeville',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22361,39,1403,'Kulpmont',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22362,39,72,'Kulpsville',1,14110,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22363,39,59,'Kunkletown',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22364,39,1393,'Kutztown',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22365,39,1382,'Kylertown',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22366,39,56,'La Belle',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22367,39,1382,'La Jose',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22368,39,1389,'La Plume',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22369,39,1265,'Laceyville',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22370,39,55,'Lackawaxen',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22371,39,72,'Lafayette Hill',1,14275,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22372,39,1396,'Lahaska',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22373,39,1388,'Lairdsville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22374,39,431,'Lake Ariel',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22375,39,1255,'Lake City',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22376,39,431,'Lake Como',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22377,39,1037,'Lake Harmony',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22378,39,56,'Lake Lynn',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22379,39,1265,'Lake Winola',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22380,39,431,'Lakeville',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22381,39,431,'Lakewood',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22382,39,465,'Lamar',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22383,39,1400,'Lamartine',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22384,39,1177,'Lampeter',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22385,39,1177,'Lancaster',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22386,39,1391,'Landenberg',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22387,39,1386,'Landingville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22388,39,93,'Landisburg',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22389,39,1177,'Landisville',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22390,39,1398,'Lanesboro',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22391,39,71,'Langeloth',1,14560,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22392,39,1396,'Langhorne',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22393,39,72,'Lansdale',1,14578,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22394,39,497,'Lansdowne',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22395,39,1382,'Lanse',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22396,39,1037,'Lansford',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22397,39,611,'Laporte',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22398,39,1376,'Larimer',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22399,39,1376,'Latrobe',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22400,39,1394,'Lattimer Mines',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22401,39,1376,'Laughlintown',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22402,39,131,'Laurelton',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22403,39,1378,'Laurys Station',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22404,39,1386,'Lavelle',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22405,39,1387,'Lawn',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22406,39,71,'Lawrence',1,14706,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22407,39,1262,'Lawrenceville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22408,39,1398,'Lawton',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22409,39,313,'Le Raysville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22410,39,1387,'Lebanon',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22411,39,1403,'Leck Kill',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22412,39,56,'Leckrone',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22413,39,1382,'Lecontes Mills',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22414,39,72,'Lederach',1,14804,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22415,39,1377,'Leechburg',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22416,39,1400,'Leeper',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22417,39,1393,'Leesport',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22418,39,1381,'Leetsdale',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22419,39,1114,'Lehigh Valley',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22420,39,1037,'Lehighton',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22421,39,1394,'Lehman',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22422,39,56,'Leisenring',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22423,39,92,'Lemasters',1,132,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22424,39,1375,'Lemont',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22425,39,56,'Lemont Furnace',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22426,39,584,'Lemoyne',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22427,39,1393,'Lenhartsville',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22428,39,497,'Lenni',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22429,39,1398,'Lenoxville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22430,39,1177,'Leola',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22431,39,1396,'Levittown',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22432,39,1399,'Lewis Run',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22433,39,823,'Lewisberry',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22434,39,131,'Lewisburg',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22435,39,1380,'Lewistown',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22436,39,1391,'Lewisville',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22437,39,1262,'Liberty',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22438,39,1400,'Lickingville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22439,39,143,'Lightstreet',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22440,39,1376,'Ligonier',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22441,39,1390,'Lilly',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22442,39,1393,'Limekiln',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22443,39,1378,'Limeport',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22444,39,1400,'Limestone',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22445,39,1391,'Lincoln University',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22446,39,1388,'Linden',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22447,39,1396,'Line Lexington',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22448,39,97,'Linesville',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22449,39,1391,'Lionville',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22450,39,821,'Listie',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22451,39,1177,'Lititz',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22452,39,1398,'Little Meadows',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22453,39,235,'Littlestown',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22454,39,93,'Liverpool',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22455,39,1386,'Llewellyn',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22456,39,465,'Lock Haven',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22457,39,1403,'Locust Gap',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22458,39,1386,'Locustdale',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22459,39,465,'Loganton',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22460,39,823,'Loganville',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22461,39,59,'Long Pond',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22462,39,611,'Lopez',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22463,39,1390,'Loretto',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22464,39,1386,'Lost Creek',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22465,39,1376,'Lowber',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22466,39,1376,'Loyalhanna',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22467,39,1384,'Loysburg',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22468,39,93,'Loysville',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22469,39,1385,'Lucernemines',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22470,39,1400,'Lucinda',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22471,39,1399,'Ludlow',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22472,39,1396,'Lumberville',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22473,39,92,'Lurgan',1,140,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22474,39,1382,'Luthersburg',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22475,39,1376,'Luxor',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22476,39,1394,'Luzerne',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22477,39,1397,'Lykens',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22478,39,1391,'Lyndell',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22479,39,74,'Lyndora',1,15834,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22480,39,1393,'Lyon Station',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22481,39,465,'Mackeyville',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22482,39,1378,'Macungie',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22483,39,1382,'Madera',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22484,39,1376,'Madison',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22485,39,1375,'Madisonburg',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22486,39,1386,'Mahanoy City',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22487,39,1386,'Mahanoy Plane',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22488,39,1262,'Mainesburg',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22489,39,72,'Mainland',1,16017,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22490,39,1391,'Malvern',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22491,39,1376,'Mammoth',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22492,39,823,'Manchester',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22493,39,1177,'Manheim',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22494,39,1384,'Manns Choice',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22495,39,1376,'Manor',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22496,39,1377,'Manorville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22497,39,1262,'Mansfield',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22498,39,1379,'Mapleton Depot',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22499,39,1386,'Mar Lin',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22500,39,1400,'Marble',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22501,39,1385,'Marchand',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22502,39,497,'Marcus Hook',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22503,39,71,'Marianna',1,16307,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22504,39,1401,'Marienville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22505,39,1177,'Marietta',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22506,39,92,'Marion',1,142,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22507,39,1385,'Marion Center',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22508,39,1403,'Marion Heights',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22509,39,821,'Markleton',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22510,39,56,'Markleysburg',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22511,39,74,'Mars',1,16409,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22512,39,59,'Marshalls Creek',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22513,39,1390,'Marsteller',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22514,39,56,'Martin',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22515,39,1177,'Martindale',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22516,39,1114,'Martins Creek',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22517,39,1383,'Martinsburg',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22518,39,1386,'Mary D',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22519,39,93,'Marysville',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22520,39,56,'Masontown',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22521,39,55,'Matamoras',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22522,39,63,'Mather',1,16559,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22523,39,1380,'Mattawana',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22524,39,1393,'Maxatawny',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22525,39,1400,'Mayport',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22526,39,1177,'Maytown',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22527,39,1404,'Mc Alisterville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22528,39,56,'Mc Clellandtown',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22529,39,1380,'Mc Clure',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22530,39,119,'Mc Connellsburg',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22531,39,1379,'Mc Connellstown',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22532,39,71,'Mc Donald',1,16748,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22533,39,465,'Mc Elhattan',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22534,39,1403,'Mc Ewensville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22535,39,1377,'Mc Grann',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22536,39,1385,'Mc Intyre',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22537,39,1255,'Mc Kean',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22538,39,1381,'Mc Kees Rocks',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22539,39,235,'Mc Knightstown',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22540,39,235,'Mc Sherrystown',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22541,39,1380,'Mc Veytown',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22542,39,1386,'Mcadoo',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22543,39,1382,'Mcgees Mills',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22544,39,1381,'Mckeesport',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22545,39,71,'Meadow Lands',1,16879,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22546,39,97,'Meadville',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22547,39,584,'Mechanicsburg',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22548,39,1396,'Mechanicsville',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22549,39,497,'Media',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22550,39,1265,'Mehoopany',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22551,39,56,'Melcroft',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22552,39,1391,'Mendenhall',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22553,39,1385,'Mentcle',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22554,39,544,'Mercer',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22555,39,92,'Mercersburg',1,145,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22556,39,72,'Merion Station',1,17086,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22557,39,56,'Merrittstown',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22558,39,1393,'Mertztown',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22559,39,1265,'Meshoppen',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22560,39,1404,'Mexico',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22561,39,821,'Meyersdale',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22562,39,1395,'Middleburg',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22563,39,1262,'Middlebury Center',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22564,39,1386,'Middleport',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22565,39,1397,'Middletown',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22566,39,1328,'Midland',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22567,39,71,'Midway',1,17287,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22568,39,1404,'Mifflin',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22569,39,131,'Mifflinburg',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22570,39,1404,'Mifflintown',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22571,39,143,'Mifflinville',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22572,39,313,'Milan',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22573,39,431,'Milanville',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22574,39,611,'Mildred',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22575,39,1375,'Milesburg',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22576,39,55,'Milford',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22577,39,1396,'Milford Square',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22578,39,1379,'Mill Creek',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22579,39,465,'Mill Hall',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22580,39,56,'Mill Run',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22581,39,1255,'Mill Village',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22582,39,1397,'Millersburg',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22583,39,93,'Millerstown',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22584,39,1177,'Millersville',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22585,39,1262,'Millerton',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22586,39,1375,'Millheim',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22587,39,131,'Millmont',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22588,39,55,'Millrift',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22589,39,1392,'Mills',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22590,39,71,'Millsboro',1,17440,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22591,39,143,'Millville',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22592,39,1394,'Milnesville',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22593,39,1380,'Milroy',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22594,39,1403,'Milton',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22595,39,1390,'Mineral Point',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22596,39,1382,'Mineral Springs',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22597,39,1386,'Minersville',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22598,39,1375,'Mingoville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22599,39,59,'Minisink Hills',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22600,39,1391,'Modena',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22601,39,1393,'Mohnton',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22602,39,1393,'Mohrsville',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22603,39,1328,'Monaca',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22604,39,1376,'Monessen',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22605,39,1393,'Monocacy Station',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22606,39,71,'Monongahela',1,17712,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22607,39,313,'Monroeton',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22608,39,1381,'Monroeville',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22609,39,92,'Mont Alto',1,151,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22610,39,72,'Mont Clare',1,17754,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22611,39,1403,'Montandon',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22612,39,1388,'Montgomery',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22613,39,72,'Montgomeryville',1,17815,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22614,39,1388,'Montoursville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22615,39,1398,'Montrose',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22616,39,1389,'Moosic',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22617,39,1382,'Morann',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22618,39,1381,'Morgan',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22619,39,1393,'Morgantown',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22620,39,1262,'Morris',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22621,39,1262,'Morris Run',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22622,39,1382,'Morrisdale',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22623,39,1396,'Morrisville',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22624,39,497,'Morton',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22625,39,1389,'Moscow',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22626,39,1375,'Moshannon',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22627,39,1393,'Mount Aetna',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22628,39,1114,'Mount Bethel',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22629,39,56,'Mount Braddock',1,103,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22630,39,1403,'Mount Carmel',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22631,39,1387,'Mount Gretna',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22632,39,584,'Mount Holly Springs',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22633,39,1399,'Mount Jewett',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22634,39,1177,'Mount Joy',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22635,39,63,'Mount Morris',1,18177,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22636,39,1376,'Mount Pleasant',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22637,39,1395,'Mount Pleasant Mills',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22638,39,59,'Mount Pocono',1,108,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22639,39,1379,'Mount Union',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22640,39,823,'Mount Wolf',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22641,39,1394,'Mountain Top',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22642,39,59,'Mountainhome',1,109,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22643,39,1177,'Mountville',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22644,39,1386,'Muir',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22645,39,1388,'Muncy',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22646,39,611,'Muncy Valley',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22647,39,1382,'Munson',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22648,39,1376,'Murrysville',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22649,39,71,'Muse',1,18392,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22650,39,1387,'Myerstown',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22651,39,1394,'Nanticoke',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22652,39,1390,'Nanty Glo',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22653,39,72,'Narberth',1,18474,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22654,39,1177,'Narvon',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22655,39,1381,'Natrona Heights',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22656,39,1114,'Nazareth',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22657,39,119,'Needmore',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22658,39,1379,'Neelyton',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22659,39,1378,'Neffs',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22660,39,1262,'Nelson',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22661,39,63,'Nemacolin',1,18610,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22662,39,1394,'Nescopeck',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22663,39,1037,'Nesquehoning',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22664,39,313,'New Albany',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22665,39,1376,'New Alexandria',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22666,39,821,'New Baltimore',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22667,39,81,'New Bedford',1,18680,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22668,39,131,'New Berlin',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22669,39,1393,'New Berlinville',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22670,39,1400,'New Bethlehem',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22671,39,93,'New Bloomfield',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22672,39,1328,'New Brighton',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22673,39,93,'New Buffalo',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22674,39,81,'New Castle',1,18717,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22675,39,131,'New Columbia',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22676,39,584,'New Cumberland',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22677,39,1376,'New Derry',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22678,39,71,'New Eagle',1,18739,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22679,39,1384,'New Enterprise',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22680,39,1376,'New Florence',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22681,39,823,'New Freedom',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22682,39,63,'New Freeport',1,18753,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22683,39,1328,'New Galilee',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22684,39,56,'New Geneva',1,109,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22685,39,93,'New Germantown',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22686,39,1177,'New Holland',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22687,39,1396,'New Hope',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22688,39,1376,'New Kensington',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22689,39,584,'New Kingstown',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22690,39,1391,'New London',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22691,39,1398,'New Milford',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22692,39,1382,'New Millport',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22693,39,235,'New Oxford',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22694,39,1384,'New Paris',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22695,39,823,'New Park',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22696,39,1386,'New Philadelphia',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22697,39,1177,'New Providence',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22698,39,1386,'New Ringgold',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22699,39,56,'New Salem',1,18896,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22700,39,1376,'New Stanton',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22701,39,1378,'New Tripoli',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22702,39,81,'New Wilmington',1,18932,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22703,39,584,'Newburg',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22704,39,56,'Newell',1,18993,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22705,39,431,'Newfoundland',1,105,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22706,39,1387,'Newmanstown',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22707,39,93,'Newport',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22708,39,1383,'Newry',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22709,39,1380,'Newton Hamilton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22710,39,1396,'Newtown',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22711,39,497,'Newtown Square',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22712,39,584,'Newville',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22713,39,1265,'Nicholson',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22714,39,1390,'Nicktown',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22715,39,63,'Nineveh',1,19135,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22716,39,56,'Normalville',1,19211,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22717,39,1391,'Norristown',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22718,39,72,'Norristown',1,19232,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22719,39,1377,'North Apollo',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22720,39,465,'North Bend',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22721,39,1255,'North East',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22722,39,1255,'North Springfield',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22723,39,1381,'North Versailles',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22724,39,72,'North Wales',1,19411,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22725,39,74,'North Washington',1,19415,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22726,39,1114,'Northampton',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22727,39,1390,'Northern Cambria',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22728,39,1385,'Northpoint',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22729,39,1403,'Northumberland',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22730,39,1376,'Norvelt',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22731,39,497,'Norwood',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22732,39,1391,'Nottingham',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22733,39,1265,'Noxen',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22734,39,1377,'Nu Mine',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22735,39,143,'Numidia',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22736,39,1386,'Nuremberg',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22737,39,1377,'Oak Ridge',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22738,39,1381,'Oakdale',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22739,39,1404,'Oakland Mills',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22740,39,1381,'Oakmont',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22741,39,72,'Oaks',1,19644,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22742,39,56,'Ohiopyle',1,115,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22743,39,1402,'Oil City',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22744,39,1382,'Olanta',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22745,39,1389,'Old Forge',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22746,39,1378,'Old Zionsville',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22747,39,1393,'Oley',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22748,39,30,'Oliveburg',1,198,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22749,39,56,'Oliver',1,116,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22750,39,1389,'Olyphant',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22751,39,1386,'Oneida',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22752,39,1387,'Ono',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22753,39,143,'Orangeville',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22754,39,1379,'Orbisonia',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22755,39,1378,'Orefield',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22756,39,72,'Oreland',1,20033,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22757,39,92,'Orrstown',1,171,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22758,39,235,'Orrtanna',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22759,39,431,'Orson',1,112,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22760,39,1375,'Orviston',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22761,39,1386,'Orwigsburg',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22762,39,1262,'Osceola',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22763,39,1382,'Osceola Mills',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22764,39,1396,'Ottsville',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22765,39,1391,'Oxford',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22766,39,72,'Palm',1,20354,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22767,39,1037,'Palmerton',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22768,39,1387,'Palmyra',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22769,39,1391,'Paoli',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22770,39,1177,'Paradise',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22771,39,1377,'Parker',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22772,39,1391,'Parker Ford',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22773,39,1391,'Parkesburg',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22774,39,1390,'Parkhill',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22775,39,1037,'Parryville',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22776,39,1390,'Patton',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22777,39,55,'Paupack',1,73,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22778,39,1403,'Paxinos',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22779,39,1395,'Paxtonville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22780,39,1177,'Peach Bottom',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22781,39,235,'Peach Glen',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22782,39,1389,'Peckville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22783,39,1114,'Pen Argyl',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22784,39,1382,'Penfield',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22785,39,1376,'Penn',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22786,39,1385,'Penn Run',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22787,39,1395,'Penns Creek',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22788,39,1396,'Penns Park',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22789,39,72,'Pennsburg',1,20798,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22790,39,1375,'Pennsylvania Furnace',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22791,39,1177,'Penryn',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22792,39,1177,'Pequea',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22793,39,1396,'Perkasie',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22794,39,72,'Perkiomenville',1,20844,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22795,39,56,'Perryopolis',1,121,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22796,39,1379,'Petersburg',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22797,39,74,'Petrolia',1,20927,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22798,39,497,'Philadelphia',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22799,39,1406,'Philadelphia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22800,39,1375,'Philipsburg',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22801,39,1391,'Phoenixville',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22802,39,1388,'Picture Rocks',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22803,39,1397,'Pillow',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22804,39,1393,'Pine Forge',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22805,39,1386,'Pine Grove',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22806,39,1375,'Pine Grove Mills',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22807,39,1396,'Pineville',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22808,39,1396,'Pipersville',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22809,39,1381,'Pitcairn',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22810,39,1386,'Pitman',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22811,39,1381,'Pittsburgh',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22812,39,386,'Pittsfield',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22813,39,1394,'Pittston',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22814,39,584,'Plainfield',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22815,39,92,'Pleasant Hall',1,181,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22816,39,431,'Pleasant Mount',1,118,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22817,39,1376,'Pleasant Unity',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22818,39,1402,'Pleasantville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22819,39,1396,'Plumsteadville',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22820,39,1385,'Plumville',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22821,39,1394,'Plymouth',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22822,39,72,'Plymouth Meeting',1,173,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22823,39,59,'Pocono Lake',1,124,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22824,39,59,'Pocono Lake Preserve',1,125,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22825,39,59,'Pocono Manor',1,126,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22826,39,59,'Pocono Pines',1,127,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22827,39,59,'Pocono Summit',1,128,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22828,39,1391,'Pocopson',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22829,39,56,'Point Marion',1,123,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(22830,39,1396,'Point Pleasant',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22831,39,1402,'Polk',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22832,39,1391,'Pomeroy',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22833,39,1399,'Port Allegany',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22834,39,1386,'Port Carbon',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22835,39,1386,'Port Clinton',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22836,39,1375,'Port Matilda',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22837,39,1404,'Port Royal',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22838,39,1395,'Port Trevorton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22839,39,1390,'Portage',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22840,39,823,'Porters Sideling',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22841,39,74,'Portersville',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22842,39,1114,'Portland',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22843,39,1382,'Pottersdale',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22844,39,1403,'Potts Grove',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22845,39,1391,'Pottstown',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22846,39,72,'Pottstown',1,177,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22847,39,1386,'Pottsville',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22848,39,431,'Poyntelle',1,120,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22849,39,1381,'Presto',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22850,39,431,'Preston Park',1,121,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22851,39,1376,'Pricedale',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22852,39,431,'Prompton',1,124,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22853,39,74,'Prospect',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22854,39,497,'Prospect Park',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22855,39,71,'Prosperity',1,283,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22856,39,81,'Pulaski',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22857,39,30,'Punxsutawney',1,224,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22858,39,1386,'Quakake',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22859,39,1396,'Quakertown',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22860,39,1177,'Quarryville',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22861,39,821,'Quecreek',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22862,39,1384,'Queen',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22863,39,1387,'Quentin',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22864,39,92,'Quincy',1,186,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22865,39,823,'Railroad',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22866,39,1388,'Ralston',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22867,39,1382,'Ramey',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22868,39,1389,'Ransom',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22869,39,1386,'Ravine',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22870,39,1393,'Reading',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22871,39,1177,'Reamstown',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22872,39,1375,'Rebersburg',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22873,39,1403,'Rebuck',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22874,39,1376,'Rector',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22875,39,72,'Red Hill',1,180,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22876,39,823,'Red Lion',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22877,39,59,'Reeders',1,130,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22878,39,1380,'Reedsville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22879,39,1177,'Refton',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22880,39,1393,'Rehrersburg',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22881,39,1177,'Reinholds',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22882,39,74,'Renfrew',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22883,39,1402,'Reno',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22884,39,465,'Renovo',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22885,39,56,'Republic',1,129,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22886,39,1396,'Revere',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22887,39,1390,'Revloc',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22888,39,1399,'Rew',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22889,39,1387,'Rexmont',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22890,39,30,'Reynoldsville',1,231,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22891,39,1177,'Rheems',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22892,39,63,'Rices Landing',1,106,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22893,39,97,'Riceville',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22894,39,1396,'Richboro',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22895,39,71,'Richeyville',1,288,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22896,39,1404,'Richfield',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22897,39,1387,'Richland',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22898,39,1396,'Richlandtown',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22899,39,1384,'Riddlesburg',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22900,39,672,'Ridgway',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22901,39,497,'Ridley Park',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22902,39,1396,'Riegelsville',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22903,39,1376,'Rillton',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22904,39,1400,'Rimersburg',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22905,39,30,'Ringgold',1,234,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22906,39,1386,'Ringtown',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22907,39,1403,'Riverside',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22908,39,1399,'Rixford',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22909,39,1262,'Roaring Branch',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22910,39,1383,'Roaring Spring',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22911,39,1379,'Robertsdale',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22912,39,1393,'Robesonia',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22913,39,1385,'Robinson',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22914,39,1328,'Rochester',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22915,39,1385,'Rochester Mills',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22916,39,1394,'Rock Glen',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22917,39,1379,'Rockhill Furnace',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22918,39,1382,'Rockton',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22919,39,821,'Rockwood',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22920,39,63,'Rogersville',1,109,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22921,39,313,'Rome',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22922,39,56,'Ronco',1,131,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22923,39,1177,'Ronks',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22924,39,71,'Roscoe',1,298,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22925,39,1385,'Rossiter',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22926,39,823,'Rossville',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22927,39,1392,'Roulette',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22928,39,1402,'Rouseville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22929,39,92,'Rouzerville',1,198,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22930,39,55,'Rowland',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22931,39,92,'Roxbury',1,200,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22932,39,72,'Royersford',1,185,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22933,39,1376,'Ruffs Dale',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22934,39,1381,'Rural Ridge',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22935,39,1377,'Rural Valley',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22936,39,1396,'Rushland',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22937,39,386,'Russell',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22938,39,1381,'Russellton',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22939,39,1262,'Sabinsville',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22940,39,1386,'Sacramento',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22941,39,1391,'Sadsburyville',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22942,39,97,'Saegertown',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22943,39,1377,'Sagamore',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22944,39,1390,'Saint Benedict',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22945,39,1390,'Saint Boniface',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22946,39,1386,'Saint Clair',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22947,39,1394,'Saint Johns',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22948,39,672,'Saint Marys',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22949,39,1390,'Saint Michael',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22950,39,1391,'Saint Peters',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22951,39,1400,'Saint Petersburg',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22952,39,92,'Saint Thomas',1,210,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22953,39,72,'Salford',1,187,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22954,39,72,'Salfordville',1,188,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22955,39,1376,'Salina',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22956,39,821,'Salisbury',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22957,39,1390,'Salix',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22958,39,465,'Salona',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22959,39,1379,'Saltillo',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22960,39,1385,'Saltsburg',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22961,39,544,'Sandy Lake',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22962,39,1375,'Sandy Ridge',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22963,39,74,'Sarver',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22964,39,72,'Sassamansville',1,190,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22965,39,74,'Saxonburg',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22966,39,1384,'Saxton',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22967,39,59,'Saylorsburg',1,138,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22968,39,313,'Sayre',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22969,39,71,'Scenery Hill',1,311,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22970,39,1387,'Schaefferstown',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22971,39,1384,'Schellsburg',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22972,39,1377,'Schenley',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22973,39,1378,'Schnecksville',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22974,39,1386,'Schuylkill Haven',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22975,39,72,'Schwenksville',1,191,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22976,39,59,'Sciota',1,139,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22977,39,92,'Scotland',1,212,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22978,39,59,'Scotrun',1,140,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22979,39,1376,'Scottdale',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22980,39,1389,'Scranton',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22981,39,821,'Seanor',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22982,39,1395,'Selinsgrove',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22983,39,1396,'Sellersville',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22984,39,1386,'Seltzer',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22985,39,1377,'Seminole',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22986,39,1402,'Seneca',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22987,39,823,'Seven Valleys',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22988,39,1376,'Seward',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22989,39,1381,'Sewickley',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22990,39,1379,'Shade Gap',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22991,39,92,'Shady Grove',1,216,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22992,39,1403,'Shamokin',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22993,39,1395,'Shamokin Dam',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22994,39,821,'Shanksville',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22995,39,544,'Sharon',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22996,39,497,'Sharon Hill',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22997,39,544,'Sharpsville',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22998,39,1393,'Shartlesville',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(22999,39,1394,'Shavertown',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23000,39,1394,'Shawanese',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23001,39,59,'Shawnee On Delaware',1,143,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23002,39,1382,'Shawville',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23003,39,544,'Sheakleyville',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23004,39,386,'Sheffield',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23005,39,1385,'Shelocta',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23006,39,1386,'Shenandoah',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23007,39,1386,'Sheppton',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23008,39,93,'Shermans Dale',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23009,39,1394,'Shickshinny',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23010,39,1392,'Shinglehouse',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23011,39,584,'Shippensburg',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23012,39,1400,'Shippenville',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23013,39,1328,'Shippingport',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23014,39,1379,'Shirleysburg',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23015,39,1393,'Shoemakersville',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23016,39,55,'Shohola',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23017,39,823,'Shrewsbury',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23018,39,611,'Shunk',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23019,39,1390,'Sidman',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23020,39,30,'Sigel',1,249,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23021,39,1177,'Silver Spring',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23022,39,1396,'Silverdale',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23023,39,780,'Sinnamahoning',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23024,39,821,'Sipesville',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23025,39,1384,'Six Mile Run',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23026,39,72,'Skippack',1,195,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23027,39,59,'Skytop',1,145,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23028,39,1388,'Slate Run',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23029,39,1378,'Slatedale',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23030,39,1378,'Slatington',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23031,39,1376,'Slickville',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23032,39,1400,'Sligo',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23033,39,74,'Slippery Rock',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23034,39,71,'Slovan',1,318,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23035,39,1399,'Smethport',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23036,39,1385,'Smicksburg',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23037,39,56,'Smithfield',1,141,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23038,39,1382,'Smithmill',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23039,39,1376,'Smithton',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23040,39,56,'Smock',1,142,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23041,39,1382,'Smokerun',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23042,39,1177,'Smoketown',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23043,39,1375,'Snow Shoe',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23044,39,1400,'Snydersburg',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23045,39,1403,'Snydertown',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23046,39,1396,'Solebury',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23047,39,821,'Somerset',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23048,39,72,'Souderton',1,196,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23049,39,431,'South Canaan',1,149,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23050,39,1390,'South Fork',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23051,39,1398,'South Gibson',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23052,39,1328,'South Heights',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23053,39,1398,'South Montrose',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23054,39,92,'South Mountain',1,224,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23055,39,1381,'South Park',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23056,39,431,'South Sterling',1,150,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23057,39,1396,'Southampton',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23058,39,1391,'Southeastern',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23059,39,71,'Southview',1,321,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23060,39,1376,'Southwest',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23061,39,1390,'Spangler',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23062,39,97,'Spartansburg',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23063,39,1396,'Spinnerstown',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23064,39,63,'Spraggs',1,119,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23065,39,30,'Sprankle Mills',1,251,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23066,39,1377,'Spring Church',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23067,39,1391,'Spring City',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23068,39,386,'Spring Creek',1,103,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23069,39,1386,'Spring Glen',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23070,39,823,'Spring Grove',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23071,39,72,'Spring House',1,202,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23072,39,1375,'Spring Mills',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23073,39,72,'Spring Mount',1,203,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23074,39,92,'Spring Run',1,225,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23075,39,97,'Springboro',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23076,39,1381,'Springdale',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23077,39,497,'Springfield',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23078,39,821,'Springs',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23079,39,1396,'Springtown',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23080,39,1398,'Springville',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23081,39,1383,'Sproul',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23082,39,1379,'Spruce Creek',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23083,39,1384,'St Clairsville',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23084,39,1376,'Stahlstown',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23085,39,56,'Star Junction',1,145,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23086,39,1385,'Starford',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23087,39,431,'Starlight',1,152,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23088,39,431,'Starrucca',1,153,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23089,39,1375,'State College',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23090,39,92,'State Line',1,228,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23091,39,431,'Sterling',1,155,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23092,39,1177,'Stevens',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23093,39,313,'Stevensville',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23094,39,823,'Stewartstown',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23095,39,143,'Stillwater',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23096,39,71,'Stockdale',1,327,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23097,39,1114,'Stockertown',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23098,39,544,'Stoneboro',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23099,39,821,'Stoystown',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23100,39,71,'Strabane',1,329,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23101,39,1177,'Strasburg',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23102,39,1400,'Strattanville',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23103,39,1393,'Strausstown',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23104,39,1385,'Strongstown',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23105,39,59,'Stroudsburg',1,156,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23106,39,30,'Stump Creek',1,257,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23107,39,1381,'Sturgeon',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23108,39,386,'Sugar Grove',1,108,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23109,39,313,'Sugar Run',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23110,39,1394,'Sugarloaf',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23111,39,584,'Summerdale',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23112,39,1390,'Summerhill',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23113,39,30,'Summerville',1,259,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23114,39,1037,'Summit Hill',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23115,39,1386,'Summit Station',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23116,39,72,'Sumneytown',1,209,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23117,39,1403,'Sunbury',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23118,39,1391,'Suplee',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23119,39,1398,'Susquehanna',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23120,39,1376,'Sutersville',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23121,39,497,'Swarthmore',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23122,39,1394,'Sweet Valley',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23123,39,131,'Swengel',1,105,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23124,39,59,'Swiftwater',1,159,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23125,39,1394,'Sybertsville',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23126,39,63,'Sycamore',1,127,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23127,39,30,'Sykesville',1,261,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23128,39,313,'Sylvania',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23129,39,55,'Tafton',1,103,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23130,39,1177,'Talmage',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23131,39,1386,'Tamaqua',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23132,39,55,'Tamiment',1,104,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23133,39,59,'Tannersville',1,161,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23134,39,1381,'Tarentum',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23135,39,1376,'Tarrs',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23136,39,1114,'Tatamy',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23137,39,1389,'Taylor',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23138,39,71,'Taylorstown',1,332,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23139,39,72,'Telford',1,214,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23140,39,1393,'Temple',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23141,39,1377,'Templeton',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23142,39,1177,'Terre Hill',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23143,39,823,'Thomasville',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23144,39,1398,'Thompson',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23145,39,1404,'Thompsontown',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23146,39,1391,'Thorndale',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23147,39,497,'Thornton',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23148,39,1379,'Three Springs',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23149,39,386,'Tidioute',1,109,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23150,39,30,'Timblin',1,270,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23151,39,1262,'Tioga',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23152,39,386,'Tiona',1,110,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23153,39,1401,'Tionesta',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23154,39,1383,'Tipton',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23155,39,821,'Tire Hill',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23156,39,97,'Titusville',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23157,39,59,'Tobyhanna',1,165,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23158,39,1379,'Todd',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23159,39,1393,'Topton',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23160,39,1376,'Torrance',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23161,39,1391,'Toughkenamon',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23162,39,313,'Towanda',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23163,39,1386,'Tower City',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23164,39,97,'Townville',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23165,39,1376,'Trafford',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23166,39,544,'Transfer',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23167,39,1114,'Treichlers',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23168,39,1386,'Tremont',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23169,39,1037,'Tresckow',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23170,39,1403,'Trevorton',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23171,39,1378,'Trexlertown',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23172,39,1388,'Trout Run',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23173,39,1382,'Troutville',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23174,39,1395,'Troxelville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23175,39,313,'Troy',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23176,39,1396,'Trumbauersville',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23177,39,1265,'Tunkhannock',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23178,39,1403,'Turbotville',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23179,39,1400,'Turkey City',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23180,39,1381,'Turtle Creek',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23181,39,1399,'Turtlepoint',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23182,39,1386,'Tuscarora',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23183,39,1390,'Twin Rocks',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23184,39,431,'Tyler Hill',1,160,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23185,39,1400,'Tylersburg',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23186,39,72,'Tylersport',1,217,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23187,39,465,'Tylersville',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23188,39,1383,'Tyrone',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23189,39,56,'Uledi',1,148,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23190,39,313,'Ulster',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23191,39,1392,'Ulysses',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23192,39,1255,'Union City',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23193,39,1398,'Union Dale',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23194,39,56,'Uniontown',1,149,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23195,39,1391,'Unionville',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23196,39,1376,'United',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23197,39,55,'Unity House',1,106,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23198,39,1388,'Unityville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23199,39,1375,'University Park',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23200,39,1396,'Upper Black Eddy',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23201,39,497,'Upper Darby',1,105,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23202,39,92,'Upperstrasburg',1,243,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23203,39,821,'Ursina',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23204,39,1402,'Utica',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23205,39,1391,'Uwchland',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23206,39,74,'Valencia',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23207,39,30,'Valier',1,276,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23208,39,1391,'Valley Forge',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23209,39,72,'Valley Forge',1,220,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23210,39,1386,'Valley View',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23211,39,71,'Van Voorhis',1,342,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23212,39,56,'Vanderbilt',1,151,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23213,39,1376,'Vandergrift',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23214,39,97,'Venango',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23215,39,71,'Venetia',1,345,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23216,39,1402,'Venus',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23217,39,1381,'Verona',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23218,39,71,'Vestaburg',1,348,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23219,39,131,'Vicksburg',1,114,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23220,39,81,'Villa Maria',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23221,39,497,'Villanova',1,106,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23222,39,1390,'Vintondale',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23223,39,1393,'Virginville',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23224,39,81,'Volant',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23225,39,1400,'Vowinckel',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23226,39,1391,'Wagontown',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23227,39,1382,'Wallaceton',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23228,39,497,'Wallingford',1,107,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23229,39,584,'Walnut Bottom',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23230,39,1114,'Walnutport',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23231,39,30,'Walston',1,281,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23232,39,56,'Waltersburg',1,154,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23233,39,81,'Wampum',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23234,39,1394,'Wapwallopen',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23235,39,119,'Warfordsburg',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23236,39,1396,'Warminster',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23237,39,386,'Warren',1,116,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23238,39,313,'Warren Center',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23239,39,1381,'Warrendale',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23240,39,1396,'Warrington',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23241,39,1379,'Warriors Mark',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23242,39,71,'Washington',1,362,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23243,39,1177,'Washington Boro',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23244,39,1396,'Washington Crossing',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23245,39,1405,'Washingtonville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23246,39,119,'Waterfall',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23247,39,1255,'Waterford',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23248,39,1388,'Waterville',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23249,39,1403,'Watsontown',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23250,39,1255,'Wattsburg',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23251,39,1389,'Waverly',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23252,39,431,'Waymart',1,164,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23253,39,497,'Wayne',1,109,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23254,39,92,'Waynesboro',1,250,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23255,39,63,'Waynesburg',1,134,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23256,39,1037,'Weatherly',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23257,39,1376,'Webster',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23258,39,672,'Weedville',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23259,39,131,'Weikert',1,117,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23260,39,821,'Wellersburg',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23261,39,119,'Wells Tannery',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23262,39,1262,'Wellsboro',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23263,39,823,'Wellsville',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23264,39,1376,'Wendel',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23265,39,1393,'Wernersville',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23266,39,71,'West Alexander',1,375,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23267,39,1391,'West Chester',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23268,39,1382,'West Decatur',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23269,39,1381,'West Elizabeth',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23270,39,71,'West Finley',1,378,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23271,39,1391,'West Grove',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23272,39,1401,'West Hickory',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23273,39,1385,'West Lebanon',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23274,39,56,'West Leisenring',1,159,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23275,39,544,'West Middlesex',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23276,39,71,'West Middletown',1,381,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23277,39,1381,'West Mifflin',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23278,39,131,'West Milton',1,119,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23279,39,1376,'West Newton',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23280,39,81,'West Pittsburg',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23281,39,72,'West Point',1,229,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23282,39,821,'West Salisbury',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23283,39,1255,'West Springfield',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23284,39,74,'West Sunbury',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23285,39,1177,'West Willow',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23286,39,1262,'Westfield',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23287,39,71,'Westland',1,383,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23288,39,1376,'Westmoreland City',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23289,39,1394,'Weston',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23290,39,1382,'Westover',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23291,39,465,'Westport',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23292,39,1391,'Westtown',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23293,39,1381,'Wexford',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23294,39,544,'Wheatland',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23295,39,56,'White',1,163,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23296,39,131,'White Deer',1,121,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23297,39,1394,'White Haven',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23298,39,431,'White Mills',1,174,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23299,39,1378,'Whitehall',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23300,39,1376,'Whitney',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23301,39,56,'Wickhaven',1,164,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23302,39,1397,'Wiconisco',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23303,39,1377,'Widnoon',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23304,39,143,'Wilburton',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23305,39,672,'Wilcox',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23306,39,1381,'Wildwood',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23307,39,1394,'Wilkes Barre',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23308,39,1383,'Williamsburg',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23309,39,92,'Williamson',1,263,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23310,39,1388,'Williamsport',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23311,39,1397,'Williamstown',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23312,39,72,'Willow Grove',1,231,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23313,39,92,'Willow Hill',1,264,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23314,39,1177,'Willow Street',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23315,39,1381,'Wilmerding',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23316,39,1390,'Wilmore',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23317,39,1382,'Winburne',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23318,39,1114,'Wind Gap',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23319,39,63,'Wind Ridge',1,142,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23320,39,821,'Windber',1,102,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23321,39,823,'Windsor',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23322,39,131,'Winfield',1,122,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23323,39,1177,'Witmer',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23324,39,1393,'Womelsdorf',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23325,39,1384,'Wood',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23326,39,1384,'Woodbury',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23327,39,1382,'Woodland',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23328,39,497,'Woodlyn',1,112,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23329,39,1375,'Woodward',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23330,39,465,'Woolrich',1,102,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23331,39,72,'Worcester',1,236,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23332,39,1377,'Worthington',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23333,39,30,'Worthville',1,299,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23334,39,72,'Woxall',1,237,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23335,39,823,'Wrightsville',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23336,39,313,'Wyalusing',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23337,39,1376,'Wyano',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23338,39,1396,'Wycombe',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23339,39,72,'Wyncote',1,238,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23340,39,72,'Wynnewood',1,239,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23341,39,1394,'Wyoming',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23342,39,313,'Wysox',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23343,39,1377,'Yatesboro',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23344,39,1380,'Yeagertown',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23345,39,823,'York',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23346,39,823,'York Haven',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23347,39,823,'York New Salem',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23348,39,235,'York Springs',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23349,39,1376,'Youngstown',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23350,39,386,'Youngsville',1,129,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23351,39,1376,'Youngwood',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23352,39,1376,'Yukon',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23353,39,74,'Zelienople',1,104,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23354,39,72,'Zieglerville',1,240,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23355,39,1386,'Zion Grove',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23356,39,1396,'Zionhill',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23357,39,1378,'Zionsville',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23358,39,92,'Zullinger',1,272,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23359,40,1407,'Adjuntas',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23360,40,1408,'Aguada',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23361,40,1409,'Aguadilla',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23362,40,1410,'Aguas Buenas',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23363,40,1411,'Aguirre',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23364,40,1412,'Aibonito',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23365,40,1413,'Anasco',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23366,40,1414,'Angeles',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23367,40,1415,'Arecibo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23368,40,1416,'Arroyo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23369,40,1415,'Bajadero',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23370,40,1417,'Barceloneta',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23371,40,1418,'Barranquitas',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23372,40,1419,'Bayamon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23373,40,1420,'Boqueron',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23374,40,1420,'Cabo Rojo',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23375,40,1421,'Caguas',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23376,40,1422,'Camuy',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23377,40,1423,'Canovanas',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23378,40,1424,'Carolina',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23379,40,1425,'Castaner',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23380,40,1426,'Catano',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23381,40,1427,'Cayey',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23382,40,1428,'Ceiba',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23383,40,1429,'Ciales',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23384,40,1430,'Cidra',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23385,40,1431,'Coamo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23386,40,1432,'Comerio',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23387,40,1433,'Corozal',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23388,40,1434,'Coto Laurel',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23389,40,1435,'Culebra',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23390,40,1436,'Dorado',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23391,40,1437,'Ensenada',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23392,40,1438,'Fajardo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23393,40,1439,'Florida',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23394,40,277,'Fort Buchanan',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23395,40,1415,'Garrochales',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23396,40,1437,'Guanica',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23397,40,1440,'Guayama',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23398,40,1441,'Guayanilla',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23399,40,1442,'Guaynabo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23400,40,1443,'Gurabo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23401,40,1444,'Hatillo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23402,40,1445,'Hormigueros',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23403,40,1446,'Humacao',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23404,40,1447,'Isabela',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23405,40,1448,'Jayuya',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23406,40,1449,'Juana Diaz',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23407,40,1450,'Juncos',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23408,40,1412,'La Plata',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23409,40,1451,'Lajas',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23410,40,1425,'Lares',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23411,40,1452,'Las Marias',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23412,40,1453,'Las Piedras',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23413,40,1454,'Loiza',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23414,40,1455,'Luquillo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23415,40,1456,'Manati',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23416,40,1457,'Maricao',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23417,40,1458,'Maunabo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23418,40,1459,'Mayaguez',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23419,40,1434,'Mercedita',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23420,40,1460,'Moca',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23421,40,1461,'Morovis',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23422,40,1462,'Naguabo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23423,40,1463,'Naranjito',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23424,40,1464,'Orocovis',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23425,40,255,'Palmer',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23426,40,1465,'Patillas',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23427,40,1466,'Penuelas',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23428,40,1434,'Ponce',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23429,40,1438,'Puerto Real',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23430,40,1446,'Punta Santiago',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23431,40,1467,'Quebradillas',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23432,40,1468,'Rincon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23433,40,1462,'Rio Blanco',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23434,40,255,'Rio Grande',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23435,40,1428,'Roosevelt Roads',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23436,40,1469,'Rosario',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23437,40,1470,'Sabana Grande',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23438,40,1415,'Sabana Hoyos',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23439,40,1471,'Sabana Seca',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23440,40,1472,'Saint Just',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23441,40,1411,'Salinas',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23442,40,1409,'San Antonio',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23443,40,1469,'San German',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23444,40,277,'San Juan',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23445,40,1473,'San Lorenzo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23446,40,1474,'San Sebastian',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23447,40,1475,'Santa Isabel',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23448,40,1476,'Toa Alta',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23449,40,1471,'Toa Baja',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23450,40,1472,'Trujillo Alto',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23451,40,1414,'Utuado',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23452,40,1477,'Vega Alta',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23453,40,1478,'Vega Baja',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23454,40,1479,'Vieques',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23455,40,1480,'Villalba',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23456,40,1481,'Yabucoa',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23457,40,1482,'Yauco',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23458,41,1483,'Adamsville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23459,41,1484,'Albion',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23460,41,71,'Ashaway',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23461,41,794,'Barrington',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23462,41,71,'Block Island',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23463,41,71,'Bradford',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23464,41,794,'Bristol',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23465,41,71,'Carolina',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23466,41,1484,'Central Falls',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23467,41,71,'Charlestown',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23468,41,1484,'Chepachet',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23469,41,1484,'Clayville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23470,41,290,'Coventry',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23471,41,1484,'Cranston',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23472,41,1484,'Cumberland',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23473,41,290,'East Greenwich',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23474,41,1484,'East Providence',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23475,41,71,'Exeter',1,123,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23476,41,1484,'Fiskeville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23477,41,1484,'Forestdale',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23478,41,1484,'Foster',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23479,41,1484,'Glendale',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23480,41,290,'Greene',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23481,41,1484,'Greenville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23482,41,1484,'Harmony',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23483,41,1484,'Harrisville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23484,41,1484,'Hope',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23485,41,71,'Hope Valley',1,174,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23486,41,71,'Hopkinton',1,175,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23487,41,1483,'Jamestown',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23488,41,1484,'Johnston',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23489,41,71,'Kenyon',1,196,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23490,41,71,'Kingston',1,198,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23491,41,1484,'Lincoln',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23492,41,1483,'Little Compton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23493,41,1484,'Manville',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23494,41,1484,'Mapleville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23495,41,1483,'Middletown',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23496,41,71,'Narragansett',1,252,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23497,41,1483,'Newport',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23498,41,71,'North Kingstown',1,261,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23499,41,1484,'North Providence',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23500,41,1484,'North Scituate',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23501,41,1484,'North Smithfield',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23502,41,1484,'Oakland',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23503,41,1484,'Pascoag',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23504,41,1484,'Pawtucket',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23505,41,71,'Peace Dale',1,272,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23506,41,1483,'Portsmouth',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23507,41,1484,'Providence',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23508,41,794,'Prudence Island',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23509,41,1484,'Riverside',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23510,41,71,'Rockville',1,294,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23511,41,1484,'Rumford',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23512,41,71,'Saunderstown',1,309,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23513,41,71,'Shannock',1,312,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23514,41,1484,'Slatersville',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23515,41,71,'Slocum',1,317,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23516,41,1484,'Smithfield',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23517,41,1483,'Tiverton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23518,41,71,'Wakefield',1,356,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23519,41,794,'Warren',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23520,41,290,'Warwick',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23521,41,290,'West Greenwich',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23522,41,71,'West Kingston',1,380,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23523,41,290,'West Warwick',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23524,41,71,'Westerly',1,382,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23525,41,71,'Wood River Junction',1,393,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23526,41,1484,'Woonsocket',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23527,41,71,'Wyoming',1,397,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23528,42,1485,'Abbeville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23529,42,1486,'Adams Run',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23530,42,1487,'Aiken',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23531,42,1488,'Alcolu',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23532,42,1489,'Allendale',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23533,42,662,'Anderson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23534,42,1490,'Andrews',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23535,42,1491,'Arcadia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23536,42,1486,'Awendaw',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23537,42,1492,'Aynor',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23538,42,577,'Ballentine',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23539,42,1493,'Bamberg',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23540,42,1494,'Barnwell',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23541,42,1495,'Batesburg',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23542,42,1487,'Bath',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23543,42,1083,'Beaufort',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23544,42,1487,'Beech Island',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23545,42,662,'Belton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23546,42,1496,'Bennettsville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23547,42,1497,'Bethera',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23548,42,1498,'Bethune',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23549,42,51,'Bishopville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23550,42,73,'Blacksburg',1,2402,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(23551,42,1391,'Blackstock',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23552,42,1494,'Blackville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23553,42,285,'Blair',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23554,42,1496,'Blenheim',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23555,42,1083,'Bluffton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23556,42,577,'Blythewood',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23557,42,1491,'Boiling Springs',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23558,42,1497,'Bonneau',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23559,42,823,'Bowling Green',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23560,42,1499,'Bowman',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23561,42,675,'Bradley',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23562,42,1499,'Branchville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23563,42,1500,'Brunson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23564,42,131,'Buffalo',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23565,42,1501,'Cades',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23566,42,1485,'Calhoun Falls',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23567,42,1498,'Camden',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23568,42,37,'Cameron',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23569,42,1491,'Campobello',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23570,42,1502,'Canadys',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23571,42,131,'Carlisle',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23572,42,1498,'Cassatt',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23573,42,823,'Catawba',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23574,42,1495,'Cayce',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23575,42,58,'Centenary',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23576,42,38,'Central',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23577,42,1495,'Chapin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23578,42,1503,'Chappells',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23579,42,1497,'Charleston',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23580,42,1486,'Charleston',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23581,42,1486,'Charleston Afb',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23582,42,1504,'Cheraw',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23583,42,1491,'Chesnee',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23584,42,1391,'Chester',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23585,42,1504,'Chesterfield',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23586,42,1505,'Clarks Hill',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23587,42,1487,'Clearwater',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23588,42,38,'Clemson',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23589,42,1506,'Cleveland',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23590,42,1491,'Clifton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23591,42,383,'Clinton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23592,42,1496,'Clio',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23593,42,823,'Clover',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23594,42,1495,'Columbia',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23595,42,577,'Columbia',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23596,42,1506,'Conestee',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23597,42,1491,'Converse',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23598,42,1492,'Conway',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23599,42,427,'Coosawhatchie',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23600,42,1499,'Cope',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23601,42,1497,'Cordesville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23602,42,1499,'Cordova',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23603,42,1502,'Cottageville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23604,42,1507,'Coward',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23605,42,1491,'Cowpens',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23606,42,1500,'Crocketville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23607,42,1497,'Cross',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23608,42,1491,'Cross Anchor',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23609,42,383,'Cross Hill',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23610,42,1083,'Dale',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23611,42,61,'Dalzell',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23612,42,1508,'Darlington',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23613,42,1083,'Daufuskie Island',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23614,42,1488,'Davis Station',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23615,42,1493,'Denmark',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23616,42,1509,'Dillon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23617,42,1485,'Donalds',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23618,42,819,'Dorchester',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23619,42,1491,'Drayton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23620,42,1485,'Due West',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23621,42,1491,'Duncan',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23622,42,1500,'Early Branch',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23623,42,38,'Easley',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23624,42,577,'Eastover',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23625,42,1510,'Edgefield',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23626,42,1391,'Edgemoor',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23627,42,1502,'Edisto Island',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23628,42,1507,'Effingham',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23629,42,1493,'Ehrhardt',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23630,42,1498,'Elgin',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23631,42,1494,'Elko',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23632,42,51,'Elliott',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23633,42,1499,'Elloree',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23634,42,1491,'Enoree',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23635,42,1500,'Estill',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23636,42,1499,'Eutawville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23637,42,366,'Fair Play',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23638,42,1489,'Fairfax',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23639,42,1491,'Fairforest',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23640,42,1491,'Fingerville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23641,42,1507,'Florence',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23642,42,1486,'Folly Beach',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23643,42,1509,'Fork',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23644,42,1391,'Fort Lawn',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23645,42,1177,'Fort Mill',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23646,42,823,'Fort Mill',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23647,42,1506,'Fountain Inn',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23648,42,1500,'Furman',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23649,42,1488,'Gable',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23650,42,577,'Gadsden',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23651,42,73,'Gaffney',1,9797,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(23652,42,1492,'Galivants Ferry',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23653,42,1500,'Garnett',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23654,42,1495,'Gaston',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23655,42,1490,'Georgetown',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23656,42,1500,'Gifford',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23657,42,1495,'Gilbert',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23658,42,1491,'Glendale',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23659,42,1487,'Gloverville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23660,42,1497,'Goose Creek',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23661,42,1491,'Gramling',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23662,42,1487,'Graniteville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23663,42,383,'Gray Court',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23664,42,1391,'Great Falls',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23665,42,1501,'Greeleyville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23666,42,1502,'Green Pond',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23667,42,1492,'Green Sea',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23668,42,1506,'Greenville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23669,42,1491,'Greenville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23670,42,675,'Greenwood',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23671,42,1506,'Greer',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23672,42,58,'Gresham',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23673,42,819,'Grover',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23674,42,1509,'Hamer',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23675,42,1500,'Hampton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23676,42,427,'Hardeeville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23677,42,819,'Harleyville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23678,42,1508,'Hartsville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23679,42,1177,'Heath Springs',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23680,42,1501,'Hemingway',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23681,42,823,'Hickory Grove',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23682,42,1494,'Hilda',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23683,42,1083,'Hilton Head Island',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23684,42,675,'Hodges',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23685,42,1499,'Holly Hill',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23686,42,1486,'Hollywood',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23687,42,662,'Honea Path',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23688,42,577,'Hopkins',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23689,42,61,'Horatio',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23690,42,1497,'Huger',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23691,42,1491,'Inman',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23692,42,577,'Irmo',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23693,42,1502,'Islandton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23694,42,1486,'Isle Of Palms',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23695,42,662,'Iva',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23696,42,1487,'Jackson',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23697,42,1502,'Jacksonboro',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23698,42,1497,'Jamestown',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23699,42,1504,'Jefferson',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23700,42,285,'Jenkinsville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23701,42,383,'Joanna',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23702,42,1486,'Johns Island',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23703,42,1507,'Johnsonville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23704,42,1510,'Johnston',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23705,42,131,'Jonesville',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23706,42,1177,'Kershaw',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23707,42,1503,'Kinards',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23708,42,1501,'Kingstree',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23709,42,662,'La France',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23710,42,1497,'Ladson',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23711,42,1083,'Ladys Island',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23712,42,1507,'Lake City',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23713,42,1509,'Lake View',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23714,42,1508,'Lamar',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23715,42,1177,'Lancaster',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23716,42,1391,'Lando',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23717,42,1491,'Landrum',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23718,42,1501,'Lane',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23719,42,1487,'Langley',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23720,42,1509,'Latta',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23721,42,383,'Laurens',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23722,42,1495,'Leesville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23723,42,1495,'Lexington',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23724,42,38,'Liberty',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23725,42,1498,'Liberty Hill',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23726,42,1503,'Little Mountain',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23727,42,1492,'Little River',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23728,42,1509,'Little Rock',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23729,42,1083,'Lobeco',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23730,42,131,'Lockhart',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23731,42,1502,'Lodge',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23732,42,366,'Long Creek',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23733,42,1492,'Longs',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23734,42,1492,'Loris',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23735,42,1485,'Lowndesville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23736,42,1498,'Lugoff',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23737,42,1500,'Luray',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23738,42,1508,'Lydia',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23739,42,1491,'Lyman',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23740,42,51,'Lynchburg',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23741,42,1488,'Manning',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23742,42,1506,'Marietta',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23743,42,58,'Marion',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23744,42,1489,'Martin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23745,42,1506,'Mauldin',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23746,42,61,'Mayesville',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23747,42,1491,'Mayo',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23748,42,1504,'Mc Bee',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23749,42,1486,'Mc Clellanville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23750,42,1496,'Mc Coll',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23751,42,823,'Mc Connells',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23752,42,1505,'Mc Cormick',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23753,42,1500,'Miley',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23754,42,1509,'Minturn',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23755,42,1505,'Modoc',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23756,42,1497,'Moncks Corner',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23757,42,1487,'Monetta',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23758,42,1487,'Montmorenci',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23759,42,1491,'Moore',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23760,42,1505,'Mount Carmel',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23761,42,1504,'Mount Croghan',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23762,42,1486,'Mount Pleasant',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23763,42,366,'Mountain Rest',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23764,42,383,'Mountville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23765,42,58,'Mullins',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23766,42,1492,'Murrells Inlet',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23767,42,1492,'Myrtle Beach',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23768,42,1499,'Neeses',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23769,42,1501,'Nesmith',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23770,42,1487,'New Ellenton',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23771,42,1488,'New Zion',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23772,42,1503,'Newberry',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23773,42,366,'Newry',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23774,42,1492,'Nichols',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23775,42,675,'Ninety Six',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23776,42,38,'Norris',1,19226,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23777,42,1499,'North',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23778,42,1487,'North Augusta',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23779,42,1497,'North Charleston',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23780,42,1486,'North Charleston',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23781,42,819,'North Charleston',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23782,42,1492,'North Myrtle Beach',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23783,42,1499,'Norway',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23784,42,1083,'Okatie',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23785,42,1507,'Olanta',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23786,42,1493,'Olar',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23787,42,1499,'Orangeburg',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23788,42,1491,'Pacolet',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23789,42,1491,'Pacolet Mills',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23790,42,1504,'Pageland',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23791,42,1507,'Pamplico',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23792,42,1505,'Parksville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23793,42,1504,'Patrick',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23794,42,1491,'Pauline',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23795,42,1490,'Pawleys Island',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23796,42,1503,'Peak',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23797,42,1495,'Pelion',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23798,42,662,'Pelzer',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23799,42,662,'Pendleton',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23800,42,38,'Pickens',1,13,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(23801,42,1506,'Piedmont',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23802,42,427,'Pineland',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23803,42,1497,'Pineville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23804,42,61,'Pinewood',1,21,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(23805,42,1497,'Pinopolis',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23806,42,1505,'Plum Branch',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23807,42,1503,'Pomaria',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23808,42,1083,'Port Royal',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23809,42,1503,'Prosperity',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23810,42,58,'Rains',1,111,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23811,42,1486,'Ravenel',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23812,42,819,'Reevesville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23813,42,1491,'Reidville',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23814,42,61,'Rembert',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23815,42,1391,'Richburg',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23816,42,366,'Richland',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23817,42,1511,'Ridge Spring',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23818,42,427,'Ridgeland',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23819,42,819,'Ridgeville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23820,42,285,'Ridgeway',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23821,42,285,'Rion',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23822,42,823,'Rock Hill',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23823,42,1491,'Roebuck',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23824,42,1502,'Round O',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23825,42,1499,'Rowesville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23826,42,1504,'Ruby',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23827,42,1502,'Ruffin',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23828,42,1497,'Russellville',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23829,42,819,'Saint George',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23830,42,1083,'Saint Helena Island',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23831,42,37,'Saint Matthews',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23832,42,1497,'Saint Stephen',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23833,42,366,'Salem',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23834,42,1487,'Salley',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23835,42,1501,'Salters',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23836,42,1511,'Saluda',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23837,42,662,'Sandy Springs',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23838,42,1499,'Santee',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23839,42,1488,'Sardinia',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23840,42,1500,'Scotia',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23841,42,1507,'Scranton',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23842,42,1083,'Seabrook',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23843,42,58,'Sellers',1,125,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23844,42,366,'Seneca',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23845,42,823,'Sharon',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23846,42,61,'Shaw A F B',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23847,42,1083,'Sheldon',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23848,42,1503,'Silverstreet',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23849,42,1506,'Simpsonville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23850,42,38,'Six Mile',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23851,42,1506,'Slater',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23852,42,1502,'Smoaks',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23853,42,823,'Smyrna',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23854,42,1508,'Society Hill',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23855,42,1491,'Spartanburg',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23856,42,1499,'Springfield',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23857,42,662,'Starr',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23858,42,1491,'Startex',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23859,42,577,'State Park',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23860,42,1486,'Sullivans Island',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23861,42,1488,'Summerton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23862,42,819,'Summerville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23863,42,61,'Sumter',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23864,42,38,'Sunset',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23865,42,1495,'Swansea',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23866,42,1489,'Sycamore',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23867,42,366,'Tamassee',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23868,42,1496,'Tatum',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23869,42,1506,'Taylors',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23870,42,1506,'Tigerville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23871,42,427,'Tillman',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23872,42,1507,'Timmonsville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23873,42,662,'Townville',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23874,42,1506,'Travelers Rest',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23875,42,1510,'Trenton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23876,42,675,'Troy',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23877,42,1488,'Turbeville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23878,42,1489,'Ulmer',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23879,42,1491,'Una',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23880,42,131,'Union',1,109,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23881,42,1177,'Van Wyck',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23882,42,1499,'Vance',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23883,42,1500,'Varnville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23884,42,1487,'Vaucluse',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23885,42,1486,'Wadmalaw Island',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23886,42,1487,'Wagener',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23887,42,366,'Walhalla',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23888,42,1496,'Wallace',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23889,42,1502,'Walterboro',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23890,42,1511,'Ward',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23891,42,675,'Ware Shoals',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23892,42,1487,'Warrenville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23893,42,383,'Waterloo',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23894,42,61,'Wedgefield',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23895,42,1491,'Wellford',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23896,42,1495,'West Columbia',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23897,42,366,'West Union',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23898,42,366,'Westminster',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23899,42,1498,'Westville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23900,42,577,'White Rock',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23901,42,1491,'White Stone',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23902,42,1503,'Whitmire',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23903,42,1502,'Williams',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23904,42,662,'Williamston',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23905,42,1494,'Williston',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23906,42,1487,'Windsor',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23907,42,285,'Winnsboro',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23908,42,1491,'Woodruff',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23909,42,1500,'Yemassee',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23910,42,823,'York',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23911,43,586,'Aberdeen',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23912,43,1512,'Agar',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23913,43,1513,'Akaska',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23914,43,131,'Alcester',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23915,43,1514,'Alexandria',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23916,43,1515,'Allen',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23917,43,1516,'Alpena',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23918,43,35,'Amherst',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23919,43,1517,'Andover',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23920,43,1518,'Arlington',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23921,43,254,'Armour',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23922,43,1519,'Artesian',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23923,43,1520,'Ashton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23924,43,1178,'Astoria',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23925,43,1521,'Aurora',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23926,43,1522,'Avon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23927,43,1518,'Badger',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23928,43,1523,'Baltic',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23929,43,586,'Barnard',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23930,43,970,'Batesland',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23931,43,586,'Bath',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23932,43,198,'Belle Fourche',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23933,43,66,'Belvidere',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23934,43,131,'Beresford',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23935,43,148,'Big Stone City',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23936,43,1190,'Bison',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23937,43,677,'Black Hawk',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23938,43,1327,'Blunt',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23939,43,1524,'Bonesteel',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23940,43,1525,'Bowdle',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23941,43,951,'Box Elder',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23942,43,100,'Bradley',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23943,43,1523,'Brandon',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23944,43,1178,'Brandt',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23945,43,1520,'Brentford',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23946,43,1526,'Bridgewater',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23947,43,1517,'Bristol',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23948,43,35,'Britton',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23949,43,1521,'Brookings',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23950,43,1521,'Bruce',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23951,43,1527,'Bryant',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23952,43,1241,'Buffalo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23953,43,278,'Buffalo Gap',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23954,43,1528,'Bullhead',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23955,43,48,'Burbank',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23956,43,1524,'Burke',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23957,43,1241,'Camp Crook',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23958,43,1526,'Canistota',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23959,43,1529,'Canova',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23960,43,147,'Canton',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23961,43,951,'Caputa',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23962,43,100,'Carpenter',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23963,43,1529,'Carthage',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23964,43,1527,'Castlewood',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23965,43,1530,'Cavour',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23966,43,354,'Centerville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23967,43,1531,'Chamberlain',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23968,43,354,'Chancellor',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23969,43,1532,'Cherry Creek',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23970,43,216,'Chester',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23971,43,1533,'Claire City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23972,43,586,'Claremont',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23973,43,100,'Clark',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23974,43,1178,'Clear Lake',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23975,43,1534,'Colman',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23976,43,1535,'Colome',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23977,43,1523,'Colton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23978,43,586,'Columbia',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23979,43,1520,'Conde',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23980,43,1533,'Corona',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23981,43,254,'Corsica',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23982,43,1536,'Cresbard',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23983,43,1523,'Crooks',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23984,43,278,'Custer',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23985,43,1524,'Dallas',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23986,43,1537,'Dante',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23987,43,354,'Davis',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23988,43,1518,'De Smet',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23989,43,81,'Deadwood',1,6704,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(23990,43,1523,'Dell Rapids',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23991,43,254,'Delmont',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23992,43,1538,'Dimock',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23993,43,1520,'Doland',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23994,43,424,'Draper',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23995,43,1532,'Dupree',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23996,43,1343,'Eagle Butte',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23997,43,35,'Eden',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23998,43,1539,'Edgemont',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(23999,43,1534,'Egan',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24000,43,131,'Elk Point',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24001,43,1521,'Elkton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24002,43,677,'Ellsworth Afb',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24003,43,1514,'Emery',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24004,43,677,'Enning',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24005,43,1518,'Erwin',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24006,43,1527,'Estelline',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24007,43,1540,'Ethan',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24008,43,658,'Eureka',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24009,43,278,'Fairburn',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24010,43,1524,'Fairfax',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24011,43,147,'Fairview',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24012,43,677,'Faith',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24013,43,1536,'Faulkton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24014,43,1529,'Fedora',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24015,43,586,'Ferney',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24016,43,1534,'Flandreau',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24017,43,1541,'Florence',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24018,43,677,'Fort Meade',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24019,43,1542,'Fort Pierre',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24020,43,1166,'Fort Thompson',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24021,43,1520,'Frankfort',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24022,43,586,'Frederick',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24023,43,1538,'Freeman',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24024,43,1514,'Fulton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24025,43,1166,'Gann Valley',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24026,43,100,'Garden City',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24027,43,1523,'Garretson',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24028,43,1178,'Gary',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24029,43,1543,'Gayville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24030,43,1537,'Geddes',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24031,43,1392,'Gettysburg',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24032,43,1343,'Glencross',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24033,43,1513,'Glenham',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24034,43,1178,'Goodwin',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24035,43,1524,'Gregory',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24036,43,1517,'Grenville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24037,43,586,'Groton',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24038,43,1535,'Hamill',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24039,43,147,'Harrisburg',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24040,43,254,'Harrison',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24041,43,1327,'Harrold',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24042,43,1523,'Hartford',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24043,43,1542,'Hayes',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24044,43,1527,'Hayti',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24045,43,1527,'Hazel',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24046,43,586,'Hecla',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24047,43,1541,'Henry',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24048,43,278,'Hermosa',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24049,43,694,'Herreid',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24050,43,1524,'Herrick',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24051,43,1124,'Highmore',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24052,43,951,'Hill City',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24053,43,1530,'Hitchcock',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24054,43,1124,'Holabird',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24055,43,1525,'Hosmer',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24056,43,1539,'Hot Springs',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24057,43,586,'Houghton',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24058,43,1392,'Hoven',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24059,43,1529,'Howard',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24060,43,677,'Howes',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24061,43,147,'Hudson',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24062,43,1523,'Humboldt',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24063,43,354,'Hurley',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24064,43,1530,'Huron',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24065,43,1535,'Ideal',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24066,43,66,'Interior',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24067,43,1525,'Ipswich',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24068,43,48,'Irene',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24069,43,1518,'Iroquois',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24070,43,1343,'Isabel',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24071,43,1513,'Java',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24072,43,131,'Jefferson',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24073,43,66,'Kadoka',1,109,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24074,43,1538,'Kaylor',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24075,43,1528,'Keldron',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24076,43,1544,'Kennebec',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24077,43,951,'Keystone',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24078,43,1531,'Kimball',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24079,43,1541,'Kranzburg',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24080,43,970,'Kyle',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24081,43,148,'Labolt',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24082,43,1537,'Lake Andes',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24083,43,35,'Lake City',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24084,43,1527,'Lake Norden',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24085,43,1518,'Lake Preston',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24086,43,1516,'Lane',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24087,43,35,'Langford',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24088,43,1343,'Lantry',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24089,43,81,'Lead',1,14750,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(24090,43,1392,'Lebanon',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24091,43,1190,'Lemmon',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24092,43,147,'Lennox',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24093,43,658,'Leola',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24094,43,1543,'Lesterville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24095,43,1519,'Letcher',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24096,43,1528,'Little Eagle',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24097,43,1190,'Lodgepole',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24098,43,66,'Long Valley',1,123,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24099,43,658,'Longlake',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24100,43,1544,'Lower Brule',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24101,43,1241,'Ludlow',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24102,43,1523,'Lyons',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24103,43,216,'Madison',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24104,43,970,'Manderson',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24105,43,586,'Mansfield',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24106,43,354,'Marion',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24107,43,1515,'Martin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24108,43,1537,'Marty',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24109,43,148,'Marvin',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24110,43,1528,'Mc Intosh',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24111,43,1528,'Mc Laughlin',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24112,43,1190,'Meadow',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24113,43,1520,'Mellette',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24114,43,1538,'Menno',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24115,43,1545,'Midland',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24116,43,148,'Milbank',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24117,43,1545,'Milesville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24118,43,1546,'Miller',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24119,43,695,'Mission',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24120,43,1543,'Mission Hill',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24121,43,1540,'Mitchell',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24122,43,1513,'Mobridge',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24123,43,354,'Monroe',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24124,43,1526,'Montrose',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24125,43,1528,'Morristown',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24126,43,694,'Mound City',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24127,43,1540,'Mount Vernon',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24128,43,677,'Mud Butte',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24129,43,424,'Murdo',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24130,43,81,'Nemo',1,18613,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(24131,43,1533,'New Effington',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24132,43,254,'New Holland',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24133,43,951,'New Underwood',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24134,43,198,'Newell',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24135,43,198,'Nisland',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24136,43,1547,'Norris',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24137,43,131,'North Sioux City',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24138,43,1520,'Northville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24139,43,216,'Nunda',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24140,43,1544,'Oacoma',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24141,43,1539,'Oelrichs',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24142,43,970,'Oglala',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24143,43,424,'Okaton',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24144,43,695,'Okreek',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24145,43,1518,'Oldham',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24146,43,1538,'Olivet',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24147,43,1536,'Onaka',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24148,43,1512,'Onida',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24149,43,1539,'Oral',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24150,43,1546,'Orient',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24151,43,1533,'Ortley',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24152,43,951,'Owanka',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24153,43,354,'Parker',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24154,43,1538,'Parkston',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24155,43,695,'Parmelee',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24156,43,1533,'Peever',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24157,43,1545,'Philip',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24158,43,1537,'Pickstown',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24159,43,677,'Piedmont',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24160,43,1517,'Pierpont',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24161,43,1327,'Pierre',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24162,43,970,'Pine Ridge',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24163,43,1548,'Plankinton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24164,43,1537,'Platte',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24165,43,694,'Pollock',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24166,43,970,'Porcupine',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24167,43,1190,'Prairie City',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24168,43,1544,'Presho',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24169,43,278,'Pringle',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24170,43,1531,'Pukwana',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24171,43,951,'Quinn',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24172,43,1241,'Ralph',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24173,43,216,'Ramona',1,103,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24174,43,951,'Rapid City',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24175,43,100,'Raymond',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24176,43,1520,'Redfield',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24177,43,1241,'Redig',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24178,43,1546,'Ree Heights',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24179,43,1544,'Reliance',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24180,43,1523,'Renner',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24181,43,1241,'Reva',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24182,43,148,'Revillo',1,105,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24183,43,1343,'Ridgeview',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24184,43,1536,'Rockham',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24185,43,1525,'Roscoe',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24186,43,695,'Rosebud',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24187,43,1533,'Rosholt',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24188,43,1517,'Roslyn',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24189,43,1523,'Rowena',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24190,43,216,'Rutland',1,110,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24191,43,1524,'Saint Charles',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24192,43,695,'Saint Francis',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24193,43,1546,'Saint Lawrence',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24194,43,81,'Saint Onge',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24195,43,1526,'Salem',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24196,43,951,'Scenic',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24197,43,1522,'Scotland',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24198,43,1513,'Selby',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24199,43,1536,'Seneca',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24200,43,1521,'Sinai',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24201,43,147,'Sioux Falls',1,155,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24202,43,1523,'Sioux Falls',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24203,43,1533,'Sisseton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24204,43,1539,'Smithwick',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24205,43,1541,'South Shore',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24206,43,81,'Spearfish',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24207,43,1526,'Spencer',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24208,43,1522,'Springfield',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24209,43,1124,'Stephan',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24210,43,1548,'Stickney',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24211,43,148,'Stockholm',1,115,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24212,43,148,'Strandburg',1,116,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24213,43,586,'Stratford',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24214,43,677,'Sturgis',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24215,43,1533,'Summit',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24216,43,1522,'Tabor',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24217,43,147,'Tea',1,173,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24218,43,1343,'Timber Lake',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24219,43,1392,'Tolstoy',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24220,43,1178,'Toronto',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24221,43,1528,'Trail City',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24222,43,1534,'Trent',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24223,43,1538,'Tripp',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24224,43,1520,'Tulare',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24225,43,1520,'Turton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24226,43,1515,'Tuthill',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24227,43,148,'Twin Brooks',1,120,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24228,43,1522,'Tyndall',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24229,43,677,'Union Center',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24230,43,1543,'Utica',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24231,43,198,'Vale',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24232,43,1523,'Valley Springs',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24233,43,35,'Veblen',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24234,43,48,'Vermillion',1,120,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24235,43,354,'Viborg',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24236,43,100,'Vienna',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24237,43,1530,'Virgil',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24238,43,1544,'Vivian',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24239,43,1521,'Volga',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24240,43,1543,'Volin',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24241,43,1537,'Wagner',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24242,43,48,'Wakonda',1,122,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24243,43,1528,'Wakpala',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24244,43,1528,'Walker',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24245,43,951,'Wall',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24246,43,1541,'Wallace',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24247,43,66,'Wanblee',1,204,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24248,43,586,'Warner',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24249,43,951,'Wasta',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24250,43,1528,'Watauga',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24251,43,1541,'Watertown',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24252,43,1517,'Waubay',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24253,43,1517,'Webster',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24254,43,216,'Wentworth',1,130,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24255,43,1530,'Wessington',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24256,43,1516,'Wessington Springs',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24257,43,586,'Westport',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24258,43,1521,'White',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24259,43,1548,'White Lake',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24260,43,677,'White Owl',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24261,43,1547,'White River',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24262,43,1343,'Whitehorse',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24263,43,81,'Whitewood',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24264,43,100,'Willow Lake',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24265,43,1533,'Wilmot',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24266,43,216,'Winfred',1,134,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24267,43,1535,'Winner',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24268,43,1535,'Witten',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24269,43,1530,'Wolsey',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24270,43,1547,'Wood',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24271,43,1519,'Woonsocket',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24272,43,147,'Worthing',1,201,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24273,43,970,'Wounded Knee',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24274,43,1530,'Yale',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24275,43,1543,'Yankton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24276,44,747,'Adams',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24277,44,1549,'Adamsville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24278,44,63,'Afton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24279,44,1550,'Alamo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24280,44,39,'Alcoa',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24281,44,355,'Alexandria',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24282,44,1551,'Allardt',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24283,44,1552,'Allons',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24284,44,1552,'Allred',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24285,44,1552,'Alpine',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24286,44,480,'Altamont',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24287,44,662,'Andersonville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24288,44,1119,'Antioch',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24289,44,334,'Apison',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24290,44,1553,'Ardmore',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24291,44,33,'Arlington',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24292,44,85,'Arnold A F B',1,2,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(24293,44,578,'Arrington',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24294,44,762,'Arthur',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24295,44,1554,'Ashland City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24296,44,1555,'Athens',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24297,44,619,'Atoka',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24298,44,115,'Atwood',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24299,44,1556,'Auburntown',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24300,44,334,'Bakewell',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24301,44,356,'Bath Springs',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24302,44,308,'Baxter',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24303,44,1557,'Bean Station',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24304,44,68,'Beech Bluff',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24305,44,85,'Beechgrove',1,3,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(24306,44,480,'Beersheba Springs',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24307,44,35,'Belfast',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24308,44,1384,'Bell Buckle',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24309,44,1550,'Bells',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24310,44,92,'Belvidere',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24311,44,126,'Benton',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24312,44,1549,'Bethel Springs',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24313,44,636,'Bethpage',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24314,44,434,'Big Rock',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24315,44,107,'Big Sandy',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24316,44,334,'Birchwood',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24317,44,1557,'Blaine',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24318,44,308,'Bloomington Springs',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24319,44,611,'Blountville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24320,44,611,'Bluff City',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24321,44,1558,'Bogota',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24322,44,1559,'Bolivar',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24323,44,730,'Bon Aqua',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24324,44,56,'Braden',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24325,44,608,'Bradford',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24326,44,1556,'Bradyville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24327,44,578,'Brentwood',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24328,44,662,'Briceville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24329,44,619,'Brighton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24330,44,611,'Bristol',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24331,44,1108,'Brownsville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24332,44,115,'Bruceton',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24333,44,33,'Brunswick',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24334,44,640,'Brush Creek',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24335,44,28,'Buchanan',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24336,44,115,'Buena Vista',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24337,44,308,'Buffalo Valley',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24338,44,1560,'Bulls Gap',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24339,44,434,'Bumpus Mills',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24340,44,619,'Burlison',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24341,44,1561,'Burns',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24342,44,135,'Butler',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24343,44,1562,'Bybee',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24344,44,1563,'Byrdstown',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24345,44,1555,'Calhoun',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24346,44,107,'Camden',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24347,44,386,'Campaign',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24348,44,640,'Carthage',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24349,44,694,'Caryville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24350,44,636,'Castalian Springs',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24351,44,115,'Cedar Grove',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24352,44,747,'Cedar Hill',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24353,44,48,'Celina',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24354,44,730,'Centerville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24355,44,35,'Chapel Hill',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24356,44,1554,'Chapmansboro',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24357,44,109,'Charleston',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24358,44,1561,'Charlotte',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24359,44,334,'Chattanooga',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24360,44,640,'Chestnut Mound',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24361,44,1549,'Chewalla',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24362,44,1102,'Christiana',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24363,44,63,'Chuckey',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24364,44,1560,'Church Hill',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24365,44,762,'Clairfield',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24366,44,1551,'Clarkrange',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24367,44,115,'Clarksburg',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24368,44,72,'Clarksville',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24369,44,109,'Cleveland',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24370,44,431,'Clifton',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24371,44,662,'Clinton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24372,44,82,'Coalfield',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24373,44,480,'Coalmont',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24374,44,59,'Cokercreek',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24375,44,578,'College Grove',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24376,44,334,'Collegedale',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24377,44,33,'Collierville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24378,44,431,'Collinwood',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24379,44,1564,'Columbia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24380,44,28,'Como',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24381,44,126,'Conasauga',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24382,44,308,'Cookeville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24383,44,126,'Copperhill',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24384,44,33,'Cordova',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24385,44,35,'Cornersville',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24386,44,538,'Corryton',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24387,44,1562,'Cosby',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24388,44,28,'Cottage Grove',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24389,44,636,'Cottontown',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24390,44,453,'Counce',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24391,44,619,'Covington',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24392,44,92,'Cowan',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24393,44,584,'Crab Orchard',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24394,44,1552,'Crawford',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24395,44,1550,'Crockett Mills',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24396,44,747,'Cross Plains',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24397,44,584,'Crossville',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24398,44,453,'Crump',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24399,44,1564,'Culleoka',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24400,44,434,'Cumberland City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24401,44,1561,'Cumberland Furnace',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24402,44,762,'Cumberland Gap',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24403,44,72,'Cunningham',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24404,44,431,'Cypress Inn',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24405,44,30,'Dandridge',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24406,44,567,'Darden',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24407,44,1565,'Dayton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24408,44,1312,'Decatur',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24409,44,356,'Decaturville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24410,44,92,'Decherd',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24411,44,82,'Deer Lodge',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24412,44,1562,'Del Rio',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24413,44,126,'Delano',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24414,44,147,'Dellrose',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24415,44,68,'Denmark',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24416,44,1561,'Dickson',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24417,44,640,'Dixon Springs',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24418,44,434,'Dover',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24419,44,355,'Dowelltown',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24420,44,108,'Doyle',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24421,44,1566,'Dresden',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24422,44,619,'Drummonds',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24423,44,730,'Duck River',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24424,44,126,'Ducktown',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24425,44,694,'Duff',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24426,44,1566,'Dukedom',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24427,44,1567,'Dunlap',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24428,44,608,'Dyer',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24429,44,1558,'Dyersburg',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24430,44,33,'Eads',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24431,44,762,'Eagan',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24432,44,1102,'Eagleville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24433,44,608,'Eaton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24434,44,1560,'Eidson',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24435,44,127,'Elgin',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24436,44,727,'Elizabethton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24437,44,1553,'Elkton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24438,44,33,'Ellendale',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24439,44,640,'Elmwood',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24440,44,147,'Elora',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24441,44,1555,'Englewood',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24442,44,1391,'Enville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24443,44,47,'Erin',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24444,44,1568,'Erwin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24445,44,92,'Estill Springs',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24446,44,81,'Ethridge',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24447,44,1555,'Etowah',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24448,44,107,'Eva',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24449,44,1565,'Evensville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24450,44,578,'Fairview',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24451,44,71,'Fall Branch',1,125,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24452,44,126,'Farner',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24453,44,147,'Fayetteville',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24454,44,1549,'Finger',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24455,44,1558,'Finley',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24456,44,81,'Five Points',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24457,44,1568,'Flag Pond',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24458,44,147,'Flintville',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24459,44,1102,'Fosterville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24460,44,147,'Frankewing',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24461,44,578,'Franklin',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24462,44,1550,'Friendship',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24463,44,39,'Friendsville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24464,44,1550,'Fruitvale',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24465,44,1550,'Gadsden',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24466,44,66,'Gainesboro',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24467,44,636,'Gallatin',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24468,44,56,'Gallaway',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24469,44,44,'Gates',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24470,44,118,'Gatlinburg',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24471,44,1312,'Georgetown',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24472,44,33,'Germantown',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24473,44,608,'Gibson',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24474,44,634,'Gladeville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24475,44,1566,'Gleason',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24476,44,1119,'Goodlettsville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24477,44,1553,'Goodspring',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24478,44,640,'Gordonsville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24479,44,1559,'Grand Junction',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24480,44,1565,'Grandview',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24481,44,66,'Granville',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24482,44,1565,'Graysville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24483,44,1569,'Greenback',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24484,44,747,'Greenbrier',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24485,44,63,'Greeneville',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24486,44,1566,'Greenfield',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24487,44,1551,'Grimsley',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24488,44,480,'Gruetli Laager',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24489,44,58,'Guild',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24490,44,1549,'Guys',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24491,44,44,'Halls',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24492,44,1564,'Hampshire',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24493,44,727,'Hampton',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24494,44,1570,'Harriman',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24495,44,334,'Harrison',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24496,44,762,'Harrogate',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24497,44,1562,'Hartford',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24498,44,1571,'Hartsville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24499,44,538,'Heiskell',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24500,44,127,'Helenwood',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24501,44,1391,'Henderson',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24502,44,636,'Hendersonville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24503,44,44,'Henning',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24504,44,28,'Henry',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24505,44,1119,'Hermitage',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24506,44,640,'Hickman',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24507,44,1559,'Hickory Valley',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24508,44,1552,'Hilham',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24509,44,85,'Hillsboro',1,8,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(24510,44,334,'Hixson',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24511,44,528,'Hohenwald',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24512,44,107,'Holladay',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24513,44,115,'Hollow Rock',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24514,44,1572,'Hornbeak',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24515,44,1559,'Hornsby',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24516,44,608,'Humboldt',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24517,44,115,'Huntingdon',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24518,44,92,'Huntland',1,119,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24519,44,127,'Huntsville',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24520,44,567,'Huron',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24521,44,1000,'Hurricane Mills',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24522,44,608,'Idlewild',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24523,44,434,'Indian Mound',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24524,44,81,'Iron City',1,13012,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(24525,44,1391,'Jacks Creek',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24526,44,694,'Jacksboro',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24527,44,68,'Jackson',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24528,44,1551,'Jamestown',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24529,44,58,'Jasper',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24530,44,30,'Jefferson City',1,141,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24531,44,694,'Jellico',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24532,44,1119,'Joelton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24533,44,71,'Johnson City',1,189,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24534,44,71,'Jonesborough',1,191,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24535,44,147,'Kelso',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24536,44,608,'Kenton',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24537,44,611,'Kingsport',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24538,44,1570,'Kingston',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24539,44,1554,'Kingston Springs',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24540,44,538,'Knoxville',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24541,44,118,'Kodak',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24542,44,446,'Kyles Ford',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24543,44,694,'La Follette',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24544,44,56,'La Grange',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24545,44,1102,'La Vergne',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24546,44,56,'Laconia',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24547,44,89,'Lafayette',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24548,44,662,'Lake City',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24549,44,640,'Lancaster',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24550,44,82,'Lancing',1,14528,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(24551,44,1102,'Lascassas',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24552,44,135,'Laurel Bloomery',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24553,44,115,'Lavinia',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24554,44,81,'Lawrenceburg',1,14714,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(24555,44,634,'Lebanon',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24556,44,1569,'Lenoir City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24557,44,1558,'Lenox',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24558,44,81,'Leoma',1,14926,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(24559,44,35,'Lewisburg',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24560,44,567,'Lexington',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24561,44,355,'Liberty',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24562,44,71,'Limestone',1,208,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24563,44,93,'Linden',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24564,44,1552,'Livingston',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24565,44,93,'Lobelville',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24566,44,762,'Lone Mountain',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24567,44,334,'Lookout Mountain',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24568,44,81,'Loretto',1,15556,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(24569,44,1569,'Loudon',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24570,44,39,'Louisville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24571,44,1573,'Lowland',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24572,44,334,'Lupton City',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24573,44,1391,'Luray',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24574,44,131,'Luttrell',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24575,44,431,'Lutts',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24576,44,730,'Lyles',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24577,44,1065,'Lynchburg',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24578,44,1553,'Lynnville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24579,44,56,'Macon',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24580,44,1119,'Madison',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24581,44,59,'Madisonville',1,89,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24582,44,85,'Manchester',1,11,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(24583,44,28,'Mansfield',1,16178,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24584,44,1566,'Martin',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24585,44,39,'Maryville',1,16513,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24586,44,538,'Mascot',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24587,44,619,'Mason',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24588,44,1550,'Maury City',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24589,44,131,'Maynardville',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24590,44,109,'Mc Donald',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24591,44,1000,'Mc Ewen',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24592,44,115,'Mc Kenzie',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24593,44,115,'Mc Lemoresville',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24594,44,386,'Mc Minnville',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24595,44,608,'Medina',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24596,44,68,'Medon',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24597,44,33,'Memphis',1,17007,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24598,44,68,'Mercer',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24599,44,1549,'Michie',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24600,44,1559,'Middleton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24601,44,63,'Midway',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24602,44,608,'Milan',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24603,44,1549,'Milledgeville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24604,44,727,'Milligan College',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24605,44,33,'Millington',1,17425,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24606,44,1102,'Milton',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24607,44,1553,'Minor Hill',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24608,44,636,'Mitchellville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24609,44,63,'Mohawk',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24610,44,1552,'Monroe',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24611,44,480,'Monteagle',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24612,44,308,'Monterey',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24613,44,1560,'Mooresburg',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24614,44,453,'Morris Chapel',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24615,44,386,'Morrison',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24616,44,1573,'Morristown',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24617,44,56,'Moscow',1,102,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24618,44,63,'Mosheim',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24619,44,48,'Moss',1,18070,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24620,44,1560,'Mount Carmel',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24621,44,634,'Mount Juliet',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24622,44,1564,'Mount Pleasant',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24623,44,135,'Mountain City',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24624,44,71,'Mountain Home',1,250,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24625,44,147,'Mulberry',1,118,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24626,44,619,'Munford',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24627,44,1102,'Murfreesboro',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24628,44,1119,'Nashville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24629,44,1000,'New Johnsonville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24630,44,30,'New Market',1,18833,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24631,44,762,'New Tazewell',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24632,44,1558,'Newbern',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24633,44,694,'Newcomb',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24634,44,1562,'Newport',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24635,44,1555,'Niota',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24636,44,578,'Nolensville',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24637,44,634,'Norene',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24638,44,1384,'Normandy',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24639,44,662,'Norris',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24640,44,730,'Nunnelly',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24641,44,662,'Oak Ridge',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24642,44,82,'Oakdale',1,19591,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(24643,44,68,'Oakfield',1,115,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24644,44,56,'Oakland',1,19619,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24645,44,1572,'Obion',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24646,44,126,'Ocoee',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24647,44,1119,'Old Hickory',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24648,44,126,'Oldfort',1,102,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24649,44,453,'Olivehill',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24650,44,1570,'Oliver Springs',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24651,44,127,'Oneida',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24652,44,730,'Only',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24653,44,334,'Ooltewah',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24654,44,747,'Orlinda',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24655,44,1551,'Pall Mall',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24656,44,480,'Palmer',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24657,44,1566,'Palmersville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24658,44,72,'Palmyra',1,20388,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(24659,44,28,'Paris',1,20474,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24660,44,1562,'Parrottsville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24661,44,356,'Parsons',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24662,44,1554,'Pegram',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24663,44,480,'Pelham',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24664,44,147,'Petersburg',1,135,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24665,44,82,'Petros',1,20929,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(24666,44,1569,'Philadelphia',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24667,44,453,'Pickwick Dam',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24668,44,118,'Pigeon Forge',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24669,44,1574,'Pikeville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24670,44,611,'Piney Flats',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24671,44,68,'Pinson',1,126,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(24672,44,694,'Pioneer',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24673,44,584,'Pleasant Hill',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24674,44,640,'Pleasant Shade',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24675,44,1554,'Pleasant View',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24676,44,1559,'Pocahontas',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24677,44,636,'Portland',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24678,44,1557,'Powder Springs',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24679,44,538,'Powell',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24680,44,578,'Primm Springs',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24681,44,1553,'Prospect',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24682,44,762,'Pruden',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24683,44,1553,'Pulaski',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24684,44,28,'Puryear',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24685,44,108,'Quebeck',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24686,44,1549,'Ramer',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24687,44,1556,'Readyville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24688,44,567,'Reagan',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24689,44,89,'Red Boiling Springs',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24690,44,126,'Reliance',1,110,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24691,44,1555,'Riceville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24692,44,1552,'Rickman',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24693,44,640,'Riddleton',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24694,44,216,'Ridgely',1,105,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24695,44,747,'Ridgetop',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24696,44,44,'Ripley',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24697,44,1572,'Rives',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24698,44,727,'Roan Mountain',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24699,44,127,'Robbins',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24700,44,386,'Rock Island',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24701,44,39,'Rockford',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24702,44,1102,'Rockvale',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24703,44,1570,'Rockwood',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24704,44,1560,'Rogersville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24705,44,56,'Rossville',1,132,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24706,44,82,'Rugby',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24707,44,1573,'Russellville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24708,44,608,'Rutherford',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24709,44,1557,'Rutledge',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24710,44,81,'Saint Joseph',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24711,44,334,'Sale Creek',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24712,44,453,'Saltillo',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24713,44,1572,'Samburg',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24714,44,1564,'Santa Fe',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24715,44,567,'Sardis',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24716,44,1559,'Saulsbury',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24717,44,453,'Savannah',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24718,44,356,'Scotts Hill',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24719,44,1549,'Selmer',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24720,44,58,'Sequatchie',1,126,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24721,44,118,'Sevierville',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24722,44,92,'Sewanee',1,215,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24723,44,118,'Seymour',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24724,44,135,'Shady Valley',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24725,44,1566,'Sharon',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24726,44,131,'Sharps Chapel',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24727,44,762,'Shawanee',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24728,44,1384,'Shelbyville',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24729,44,92,'Sherwood',1,221,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24730,44,453,'Shiloh',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24731,44,334,'Signal Mountain',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24732,44,1559,'Silerton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24733,44,308,'Silver Point',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24734,44,1561,'Slayden',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24735,44,386,'Smartt',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24736,44,355,'Smithville',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24737,44,1102,'Smyrna',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24738,44,446,'Sneedville',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24739,44,334,'Soddy Daisy',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24740,44,56,'Somerville',1,143,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24741,44,1572,'South Fulton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24742,44,58,'South Pittsburg',1,129,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24743,44,72,'Southside',1,197,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24744,44,108,'Sparta',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24745,44,762,'Speedwell',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24746,44,116,'Spencer',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24747,44,1565,'Spring City',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24748,44,68,'Spring Creek',1,148,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24749,44,1564,'Spring Hill',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24750,44,747,'Springfield',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24751,44,28,'Springville',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24752,44,1108,'Stanton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24753,44,1549,'Stantonville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24754,44,47,'Stewart',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24755,44,30,'Strawberry Plains',1,256,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24756,44,356,'Sugar Tree',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24757,44,81,'Summertown',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24758,44,85,'Summitville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24759,44,82,'Sunbright',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24760,44,1560,'Surgoinsville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24761,44,59,'Sweetwater',1,158,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24762,44,147,'Taft',1,172,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24763,44,1573,'Talbott',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24764,44,39,'Tallassee',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24765,44,762,'Tazewell',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24766,44,71,'Telford',1,333,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24767,44,59,'Tellico Plains',1,163,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24768,44,1312,'Ten Mile',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24769,44,47,'Tennessee Ridge',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24770,44,578,'Thompsons Station',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24771,44,1557,'Thorn Hill',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24772,44,1558,'Tigrett',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24773,44,619,'Tipton',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24774,44,216,'Tiptonville',1,121,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24775,44,1559,'Toone',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24776,44,39,'Townsend',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24777,44,480,'Tracy City',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24778,44,135,'Trade',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24779,44,608,'Trenton',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24780,44,115,'Trezevant',1,114,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24781,44,1558,'Trimble',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24782,44,1572,'Troy',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24783,44,85,'Tullahoma',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24784,44,126,'Turtletown',1,124,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24785,44,1568,'Unicoi',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24786,44,1572,'Union City',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24787,44,1384,'Unionville',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24788,44,1561,'Vanleer',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24789,44,386,'Viola',1,115,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24790,44,59,'Vonore',1,173,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24791,44,39,'Walland',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24792,44,108,'Walling',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24793,44,82,'Wartburg',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24794,44,1384,'Wartrace',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24795,44,1557,'Washburn',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24796,44,727,'Watauga',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24797,44,634,'Watertown',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24798,44,1000,'Waverly',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24799,44,431,'Waynesboro',1,170,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24800,44,636,'Westmoreland',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24801,44,81,'Westpoint',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24802,44,115,'Westport',1,121,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24803,44,1561,'White Bluff',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24804,44,747,'White House',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24805,44,30,'White Pine',1,294,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24806,44,1119,'Whites Creek',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24807,44,1573,'Whitesburg',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24808,44,58,'Whiteside',1,146,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24809,44,1559,'Whiteville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24810,44,66,'Whitleyville',1,210,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24811,44,1567,'Whitwell',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24812,44,1552,'Wilder',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24813,44,567,'Wildersville',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24814,44,1564,'Williamsport',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24815,44,56,'Williston',1,165,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24816,44,92,'Winchester',1,266,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24817,44,127,'Winfield',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24818,44,1556,'Woodbury',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24819,44,1572,'Woodland Mills',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24820,44,72,'Woodlawn',1,235,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24821,44,216,'Wynnburg',1,137,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24822,44,608,'Yorkville',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24823,44,115,'Yuma',1,129,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24824,45,1045,'Abbott',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24825,45,32,'Abernathy',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24826,45,337,'Abilene',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24827,45,126,'Ace',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24828,45,332,'Ackerly',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24829,45,94,'Addison',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24830,45,1575,'Adkins',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24831,45,720,'Adrian',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24832,45,1576,'Afton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24833,45,1577,'Agua Dulce',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24834,45,352,'Aiken',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24835,45,1223,'Alamo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24836,45,664,'Alanreed',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24837,45,1300,'Alba',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24838,45,1578,'Albany',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24839,45,1579,'Aledo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24840,45,1580,'Alice',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24841,45,387,'Alief',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24842,45,1581,'Allen',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24843,45,1582,'Alleyton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24844,45,344,'Allison',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24845,45,1583,'Alpine',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24846,45,1582,'Altair',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24847,45,73,'Alto',1,488,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(24848,45,135,'Alvarado',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24849,45,1584,'Alvin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24850,45,1585,'Alvord',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24851,45,1392,'Amarillo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24852,45,1586,'Amarillo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24853,45,1587,'Amherst',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24854,45,88,'Anahuac',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24855,45,1588,'Anderson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24856,45,1589,'Andrews',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24857,45,1584,'Angleton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24858,45,1581,'Anna',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24859,45,784,'Annona',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24860,45,424,'Anson',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24861,45,251,'Anthony',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24862,45,1590,'Anton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24863,45,206,'Apple Springs',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24864,45,1045,'Aquilla',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24865,45,1591,'Aransas Pass',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24866,45,1592,'Archer City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24867,45,1593,'Argyle',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24868,45,1594,'Arlington',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24869,45,1595,'Armstrong',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24870,45,640,'Arp',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24871,45,561,'Art',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24872,45,579,'Artesia Wells',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24873,45,60,'Arthur City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24874,45,1596,'Asherton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24875,45,1597,'Aspermont',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24876,45,1575,'Atascosa',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24877,45,567,'Athens',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24878,45,466,'Atlanta',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24879,45,1593,'Aubrey',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24880,45,1598,'Austin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24881,45,1599,'Austin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24882,45,578,'Austin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24883,45,1600,'Austwell',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24884,45,659,'Avalon',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24885,45,784,'Avery',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24886,45,466,'Avinger',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24887,45,424,'Avoca',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24888,45,1601,'Axtell',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24889,45,1579,'Azle',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24890,45,1594,'Azle',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24891,45,1602,'Bacliff',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24892,45,784,'Bagwell',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24893,45,370,'Bailey',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24894,45,1603,'Baird',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24895,45,1604,'Ballinger',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24896,45,1605,'Balmorhea',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24897,45,1606,'Bandera',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24898,45,586,'Bangs',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24899,45,1577,'Banquete',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24900,45,659,'Bardwell',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24901,45,387,'Barker',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24902,45,542,'Barksdale',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24903,45,1607,'Barnhart',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24904,45,1608,'Barry',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24905,45,1142,'Barstow',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24906,45,698,'Bartlett',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24907,45,1609,'Bastrop',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24908,45,1610,'Batesville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24909,45,453,'Batson',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24910,45,1611,'Bay City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24911,45,1600,'Bayside',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24912,45,387,'Baytown',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24913,45,1612,'Beasley',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24914,45,30,'Beaumont',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24915,45,998,'Beckville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24916,45,1594,'Bedford',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24917,45,1588,'Bedias',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24918,45,1613,'Beeville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24919,45,387,'Bellaire',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24920,45,48,'Bellevue',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24921,45,713,'Bells',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24922,45,1614,'Bellville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24923,45,1615,'Belmont',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24924,45,698,'Belton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24925,45,1580,'Ben Bolt',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24926,45,237,'Ben Franklin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24927,45,1616,'Ben Wheeler',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24928,45,298,'Benavides',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24929,45,1617,'Bend',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24930,45,538,'Benjamin',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24931,45,1618,'Berclair',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24932,45,571,'Bergheim',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24933,45,1619,'Bertram',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24934,45,1583,'Big Bend National Park',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24935,45,1620,'Big Lake',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24936,45,1621,'Big Sandy',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24937,45,141,'Big Spring',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24938,45,1596,'Big Wells',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24939,45,1622,'Bigfoot',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24940,45,1577,'Bishop',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24941,45,466,'Bivins',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24942,45,1623,'Blackwell',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24943,45,1624,'Blanco',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24944,45,586,'Blanket',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24945,45,1625,'Bledsoe',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24946,45,1614,'Bleiblerville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24947,45,1611,'Blessing',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24948,45,466,'Bloomburg',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24949,45,1608,'Blooming Grove',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24950,45,1626,'Bloomington',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24951,45,60,'Blossom',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24952,45,1581,'Blue Ridge',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24953,45,48,'Bluegrove',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24954,45,1627,'Bluff Dale',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24955,45,1628,'Bluffton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24956,45,1045,'Blum',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24957,45,571,'Boerne',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24958,45,784,'Bogata',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24959,45,1629,'Boling',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24960,45,137,'Bon Wier',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24961,45,370,'Bonham',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24962,45,1630,'Booker',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24963,45,1538,'Borger',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24964,45,1631,'Bovina',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24965,45,1632,'Bowie',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24966,45,1585,'Boyd',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24967,45,720,'Boys Ranch',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24968,45,1633,'Brackettville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24969,45,1634,'Brady',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24970,45,1045,'Brandon',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24971,45,734,'Brashear',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24972,45,1584,'Brazoria',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24973,45,410,'Breckenridge',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24974,45,747,'Bremond',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24975,45,71,'Brenham',1,3013,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(24976,45,177,'Bridge City',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24977,45,1585,'Bridgeport',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24978,45,1619,'Briggs',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24979,45,344,'Briscoe',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24980,45,1635,'Broaddus',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24981,45,774,'Bronson',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24982,45,1636,'Bronte',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24983,45,427,'Brookeland',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24984,45,586,'Brookesmith',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24985,45,1637,'Brookshire',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24986,45,60,'Brookston',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24987,45,1638,'Brownfield',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24988,45,567,'Brownsboro',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24989,45,780,'Brownsville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24990,45,586,'Brownwood',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24991,45,1601,'Bruceville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24992,45,1639,'Bruni',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24993,45,1640,'Bryan',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24994,45,1641,'Bryson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24995,45,1628,'Buchanan Dam',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24996,45,1642,'Buckholts',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24997,45,1598,'Buda',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24998,45,339,'Buffalo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(24999,45,337,'Buffalo Gap',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25000,45,1643,'Bula',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25001,45,640,'Bullard',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25002,45,1644,'Bulverde',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25003,45,427,'Buna',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25004,45,688,'Burkburnett',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25005,45,1645,'Burkett',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25006,45,137,'Burkeville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25007,45,135,'Burleson',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25008,45,1642,'Burlington',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25009,45,1619,'Burnet',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25010,45,71,'Burton',1,3623,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(25011,45,1392,'Bushland',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25012,45,48,'Byers',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25013,45,1045,'Bynum',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25014,45,1065,'Cactus',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25015,45,410,'Caddo',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25016,45,1646,'Caddo Mills',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25017,45,1647,'Caldwell',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25018,45,137,'Call',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25019,45,1648,'Calliham',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25020,45,747,'Calvert',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25021,45,126,'Camden',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25022,45,1642,'Cameron',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25023,45,1649,'Camp Wood',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25024,45,1646,'Campbell',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25025,45,1650,'Campbellton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25026,45,1651,'Canadian',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25027,45,1616,'Canton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25028,45,251,'Canutillo',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25029,45,1586,'Canyon',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25030,45,1644,'Canyon Lake',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25031,45,1652,'Carbon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25032,45,1653,'Carlsbad',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25033,45,334,'Carlton',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25034,45,56,'Carmine',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25035,45,1596,'Carrizo Springs',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25036,45,94,'Carrollton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25037,45,1593,'Carrollton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25038,45,998,'Carthage',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25039,45,652,'Cason',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25040,45,1628,'Castell',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25041,45,1302,'Castroville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25042,45,1614,'Cat Spring',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25043,45,1596,'Catarina',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25044,45,662,'Cayuga',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25045,45,1609,'Cedar Creek',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25046,45,94,'Cedar Hill',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25047,45,1611,'Cedar Lane',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25048,45,578,'Cedar Park',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25049,45,1654,'Cee Vee',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25050,45,1646,'Celeste',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25051,45,1581,'Celina',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25052,45,33,'Center',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25053,45,1655,'Center Point',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25054,45,339,'Centerville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25055,45,206,'Centralia',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25056,45,567,'Chandler',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25057,45,387,'Channelview',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25058,45,1656,'Channing',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25059,45,1577,'Chapman Ranch',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25060,45,71,'Chappell Hill',1,4640,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(25061,45,1650,'Charlotte',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25062,45,1608,'Chatfield',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25063,45,1617,'Cherokee',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25064,45,1657,'Chester',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25065,45,1585,'Chico',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25066,45,60,'Chicota',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25067,45,1658,'Childress',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25068,45,1559,'Chillicothe',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25069,45,1659,'Chilton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25070,45,30,'China',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25071,45,1601,'China Spring',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25072,45,1660,'Chireno',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25073,45,1647,'Chriesman',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25074,45,1650,'Christine',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25075,45,1653,'Christoval',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25076,45,1225,'Cibolo',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25077,45,1652,'Cisco',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25078,45,1661,'Clarendon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25079,45,784,'Clarksville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25080,45,1377,'Claude',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25081,45,998,'Clayton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25082,45,135,'Cleburne',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25083,45,311,'Cleveland',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25084,45,1662,'Clifton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25085,45,251,'Clint',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25086,45,1584,'Clute',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25087,45,1603,'Clyde',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25088,45,141,'Coahoma',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25089,45,1663,'Coldspring',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25090,45,1645,'Coleman',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25091,45,1640,'College Station',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25092,45,1611,'Collegeport',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25093,45,1594,'Colleyville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25094,45,713,'Collinsville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25095,45,1657,'Colmesneil',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25096,45,360,'Colorado City',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25097,45,1582,'Columbus',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25098,45,665,'Comanche',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25099,45,780,'Combes',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25100,45,571,'Comfort',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25101,45,1646,'Commerce',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25102,45,734,'Como',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25103,45,1664,'Comstock',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25104,45,1665,'Concan',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25105,45,298,'Concepcion',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25106,45,339,'Concord',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25107,45,72,'Conroe',1,5742,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(25108,45,1575,'Converse',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25109,45,1666,'Cookville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25110,45,45,'Coolidge',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25111,45,237,'Cooper',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25112,45,1581,'Copeville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25113,45,94,'Coppell',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25114,45,1667,'Copperas Cove',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25115,45,1577,'Corpus Christi',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25116,45,126,'Corrigan',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25117,45,1608,'Corsicana',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25118,45,1615,'Cost',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25119,45,32,'Cotton Center',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25120,45,579,'Cotulla',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25121,45,578,'Coupland',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25122,45,1045,'Covington',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25123,45,1668,'Coyanosa',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25124,45,1669,'Crandall',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25125,45,1670,'Crane',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25126,45,1662,'Cranfills Gap',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25127,45,1601,'Crawford',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25128,45,1671,'Cresson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25129,45,47,'Crockett',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25130,45,387,'Crosby',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25131,45,1672,'Crosbyton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25132,45,1603,'Cross Plains',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25133,45,1673,'Crowell',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25134,45,1594,'Crowley',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25135,45,1577,'Crp Christi',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25136,45,1610,'Crystal City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25137,45,1674,'Cuero',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25138,45,734,'Cumby',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25139,45,73,'Cuney',1,6348,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(25140,45,60,'Cunningham',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25141,45,1660,'Cushing',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25142,45,387,'Cypress',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25143,45,1302,'D Hanis',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25144,45,652,'Daingerfield',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25145,45,311,'Daisetta',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25146,45,739,'Dale',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25147,45,1675,'Dalhart',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25148,45,126,'Dallardsville',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25149,45,1581,'Dallas',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25150,45,94,'Dallas',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25151,45,1584,'Damon',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25152,45,1584,'Danbury',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25153,45,1584,'Danciger',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25154,45,1629,'Danevang',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25155,45,1630,'Darrouzett',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25156,45,1642,'Davilla',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25157,45,1676,'Dawn',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25158,45,1608,'Dawson',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25159,45,311,'Dayton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25160,45,998,'De Berry',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25161,45,1677,'De Kalb',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25162,45,665,'De Leon',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25163,45,1647,'Deanville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25164,45,1585,'Decatur',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25165,45,387,'Deer Park',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25166,45,1664,'Del Rio',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25167,45,1599,'Del Valle',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25168,45,1678,'Dell City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25169,45,1679,'Delmita',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25170,45,713,'Denison',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25171,45,1579,'Dennis',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25172,45,1593,'Denton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25173,45,1680,'Denver City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25174,45,60,'Deport',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25175,45,1652,'Desdemona',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25176,45,94,'Desoto',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25177,45,784,'Detroit',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25178,45,311,'Devers',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25179,45,1302,'Devine',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25180,45,137,'Deweyville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25181,45,1621,'Diana',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25182,45,1681,'Diboll',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25183,45,1576,'Dickens',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25184,45,1602,'Dickinson',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25185,45,734,'Dike',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25186,45,1622,'Dilley',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25187,45,51,'Dime Box',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25188,45,1682,'Dimmitt',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25189,45,1683,'Dinero',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25190,45,72,'Dobbin',1,7120,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(25191,45,370,'Dodd City',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25192,45,69,'Dodge',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25193,45,1684,'Dodson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25194,45,1685,'Donie',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25195,45,1223,'Donna',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25196,45,1634,'Doole',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25197,45,1686,'Doss',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25198,45,1657,'Doucette',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25199,45,352,'Dougherty',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25200,45,1660,'Douglass',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25201,45,466,'Douglassville',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25202,45,1598,'Driftwood',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25203,45,1598,'Dripping Springs',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25204,45,1577,'Driscoll',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25205,45,376,'Dryden',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25206,45,1627,'Dublin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25207,45,1065,'Dumas',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25208,45,94,'Duncanville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25209,45,1687,'Dunn',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25210,45,337,'Dyess Afb',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25211,45,1582,'Eagle Lake',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25212,45,1688,'Eagle Pass',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25213,45,586,'Early',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25214,45,1587,'Earth',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25215,45,1629,'East Bernard',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25216,45,1652,'Eastland',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25217,45,1689,'Easton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25218,45,1690,'Ecleto',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25219,45,370,'Ector',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25220,45,1223,'Edcouch',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25221,45,1601,'Eddy',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25222,45,1691,'Eden',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25223,45,1616,'Edgewood',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25224,45,1223,'Edinburg',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25225,45,32,'Edmonson',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25226,45,66,'Edna',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25227,45,1591,'Edroy',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25228,45,1629,'Egypt',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25229,45,1629,'El Campo',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25230,45,1688,'El Indio',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25231,45,251,'El Paso',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25232,45,1692,'Eldorado',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25233,45,688,'Electra',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25234,45,1609,'Elgin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25235,45,662,'Elkhart',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25236,45,56,'Ellinger',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25237,45,1601,'Elm Mott',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25238,45,1611,'Elmaton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25239,45,1575,'Elmendorf',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25240,45,1669,'Elmo',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25241,45,1223,'Elsa',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25242,45,502,'Elysian Fields',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25243,45,1693,'Emory',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25244,45,579,'Encinal',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25245,45,362,'Encino',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25246,45,665,'Energy',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25247,45,237,'Enloe',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25248,45,659,'Ennis',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25249,45,1643,'Enochs',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25250,45,1691,'Eola',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25251,45,1694,'Era',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25252,45,391,'Estelline',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25253,45,1660,'Etoile',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25254,45,1594,'Euless',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25255,45,567,'Eustace',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25256,45,427,'Evadale',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25257,45,1667,'Evant',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25258,45,251,'Fabens',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25259,45,1685,'Fairfield',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25260,45,1679,'Falcon Heights',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25261,45,362,'Falfurrias',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25262,45,1690,'Falls City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25263,45,1618,'Fannin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25264,45,1581,'Farmersville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25265,45,1695,'Farnsworth',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25266,45,1631,'Farwell',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25267,45,1696,'Fate',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25268,45,56,'Fayetteville',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25269,45,739,'Fentress',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25270,45,659,'Ferris',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25271,45,1587,'Fieldton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25272,45,1644,'Fischer',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25273,45,1667,'Flat',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25274,45,56,'Flatonia',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25275,45,640,'Flint',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25276,45,1697,'Flomot',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25277,45,578,'Florence',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25278,45,634,'Floresville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25279,45,1593,'Flower Mound',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25280,45,352,'Floydada',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25281,45,1687,'Fluvanna',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25282,45,339,'Flynn',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25283,45,1630,'Follett',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25284,45,1632,'Forestburg',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25285,45,1669,'Forney',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25286,45,659,'Forreston',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25287,45,141,'Forsan',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25288,45,251,'Fort Bliss',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25289,45,408,'Fort Davis',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25290,45,1678,'Fort Hancock',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25291,45,557,'Fort Mc Kavett',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25292,45,1668,'Fort Stockton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25293,45,1594,'Fort Worth',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25294,45,579,'Fowlerton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25295,45,66,'Francitas',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25296,45,747,'Franklin',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25297,45,662,'Frankston',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25298,45,1657,'Fred',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25299,45,1686,'Fredericksburg',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25300,45,561,'Fredonia',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25301,45,1584,'Freeport',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25302,45,298,'Freer',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25303,45,1612,'Fresno',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25304,45,1602,'Friendswood',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25305,45,1631,'Friona',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25306,45,1581,'Frisco',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25307,45,1593,'Frisco',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25308,45,1538,'Fritch',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25309,45,1608,'Frost',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25310,45,1616,'Fruitvale',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25311,45,1612,'Fulshear',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25312,45,1698,'Fulton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25313,45,1699,'Gail',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25314,45,1694,'Gainesville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25315,45,387,'Galena Park',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25316,45,73,'Gallatin',1,9841,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(25317,45,1602,'Galveston',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25318,45,66,'Ganado',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25319,45,1679,'Garciasville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25320,45,1700,'Garden City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25321,45,1701,'Gardendale',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25322,45,94,'Garland',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25323,45,1660,'Garrison',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25324,45,1582,'Garwood',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25325,45,998,'Gary',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25326,45,1667,'Gatesville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25327,45,1642,'Gause',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25328,45,1683,'George West',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25329,45,578,'Georgetown',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25330,45,1225,'Geronimo',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25331,45,51,'Giddings',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25332,45,1602,'Gilchrist',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25333,45,1690,'Gillett',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25334,45,1621,'Gilmer',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25335,45,290,'Girard',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25336,45,1668,'Girvin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25337,45,1689,'Gladewater',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25338,45,1629,'Glen Flora',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25339,45,1702,'Glen Rose',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25340,45,1582,'Glidden',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25341,45,370,'Gober',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25342,45,135,'Godley',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25343,45,1300,'Golden',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25344,45,1645,'Goldsboro',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25345,45,1701,'Goldsmith',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25346,45,503,'Goldthwaite',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25347,45,1618,'Goliad',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25348,45,1615,'Gonzales',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25349,45,1653,'Goodfellow Afb',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25350,45,126,'Goodrich',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25351,45,1703,'Gordon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25352,45,713,'Gordonville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25353,45,538,'Goree',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25354,45,1652,'Gorman',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25355,45,1645,'Gouldbusk',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25356,45,1703,'Graford',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25357,45,1704,'Graham',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25358,45,1671,'Granbury',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25359,45,94,'Grand Prairie',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25360,45,1616,'Grand Saline',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25361,45,1142,'Grandfalls',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25362,45,135,'Grandview',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25363,45,578,'Granger',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25364,45,47,'Grapeland',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25365,45,1594,'Grapevine',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25366,45,1646,'Greenville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25367,45,1585,'Greenwood',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25368,45,1591,'Gregory',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25369,45,45,'Groesbeck',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25370,45,1705,'Groom',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25371,45,30,'Groves',1,110,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25372,45,206,'Groveton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25373,45,1679,'Grulla',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25374,45,1706,'Gruver',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25375,45,1707,'Guerra',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25376,45,713,'Gunter',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25377,45,665,'Gustine',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25378,45,1708,'Guthrie',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25379,45,1612,'Guy',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25380,45,32,'Hale Center',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25381,45,1709,'Hallettsville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25382,45,502,'Hallsville',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25383,45,1594,'Haltom City',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25384,45,334,'Hamilton',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25385,45,424,'Hamlin',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25386,45,30,'Hamshire',1,115,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25387,45,88,'Hankamer',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25388,45,1710,'Happy',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25389,45,311,'Hardin',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25390,45,1223,'Hargill',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25391,45,698,'Harker Heights',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25392,45,502,'Harleton',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25393,45,780,'Harlingen',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25394,45,1686,'Harper',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25395,45,1711,'Harrold',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25396,45,1682,'Hart',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25397,45,1656,'Hartley',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25398,45,1615,'Harwood',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25399,45,690,'Haskell',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25400,45,1594,'Haslet',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25401,45,1300,'Hawkins',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25402,45,424,'Hawley',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25403,45,747,'Hearne',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25404,45,1707,'Hebbronville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25405,45,1661,'Hedley',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25406,45,698,'Heidenheimer',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25407,45,1575,'Helotes',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25408,45,774,'Hemphill',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25409,45,1637,'Hempstead',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25410,45,1712,'Henderson',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25411,45,48,'Henrietta',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25412,45,1676,'Hereford',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25413,45,1687,'Hermleigh',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25414,45,1601,'Hewitt',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25415,45,557,'Hext',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25416,45,334,'Hico',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25417,45,1223,'Hidalgo',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25418,45,1630,'Higgins',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25419,45,1602,'High Island',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25420,45,387,'Highlands',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25421,45,1657,'Hillister',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25422,45,1045,'Hillsboro',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25423,45,1602,'Hitchcock',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25424,45,1690,'Hobson',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25425,45,1674,'Hochheim',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25426,45,387,'Hockley',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25427,45,698,'Holland',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25428,45,1592,'Holliday',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25429,45,1302,'Hondo',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25430,45,370,'Honey Grove',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25431,45,1677,'Hooks',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25432,45,1628,'Horseshoe Bay',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25433,45,1612,'Houston',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25434,45,387,'Houston',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25435,45,713,'Howe',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25436,45,1045,'Hubbard',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25437,45,387,'Huffman',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25438,45,387,'Hufsmith',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25439,45,466,'Hughes Springs',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25440,45,311,'Hull',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25441,45,387,'Humble',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25442,45,1629,'Hungerford',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25443,45,1655,'Hunt',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25444,45,1681,'Huntington',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25445,45,69,'Huntsville',1,12749,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(25446,45,1594,'Hurst',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25447,45,94,'Hutchins',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25448,45,578,'Hutto',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25449,45,1624,'Hye',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25450,45,1713,'Idalou',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25451,45,1668,'Imperial',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25452,45,1614,'Industry',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25453,45,1626,'Inez',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25454,45,1591,'Ingleside',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25455,45,1655,'Ingram',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25456,45,1588,'Iola',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25457,45,688,'Iowa Park',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25458,45,1687,'Ira',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25459,45,1668,'Iraan',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25460,45,1662,'Iredell',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25461,45,1045,'Irene',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25462,45,94,'Irving',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25463,45,659,'Italy',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25464,45,1045,'Itasca',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25465,45,370,'Ivanhoe',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25466,45,1641,'Jacksboro',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25467,45,73,'Jacksonville',1,13162,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(25468,45,578,'Jarrell',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25469,45,427,'Jasper',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25470,45,290,'Jayton',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25471,45,58,'Jefferson',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25472,45,1641,'Jermyn',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25473,45,339,'Jewett',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25474,45,33,'Joaquin',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25475,45,1624,'Johnson City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25476,45,1712,'Joinerville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25477,45,1667,'Jonesboro',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25478,45,502,'Jonesville',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25479,45,1581,'Josephine',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25480,45,135,'Joshua',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25481,45,1650,'Jourdanton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25482,45,1689,'Judson',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25483,45,1714,'Junction',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25484,45,1715,'Justiceburg',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25485,45,1593,'Justin',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25486,45,688,'Kamay',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25487,45,502,'Karnack',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25488,45,1690,'Karnes City',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25489,45,1612,'Katy',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25490,45,387,'Katy',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25491,45,1669,'Kaufman',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25492,45,135,'Keene',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25493,45,1594,'Keller',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25494,45,1602,'Kemah',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25495,45,1669,'Kemp',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25496,45,1716,'Kempner',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25497,45,571,'Kendalia',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25498,45,1612,'Kendleton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25499,45,1690,'Kenedy',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25500,45,47,'Kennard',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25501,45,1594,'Kennedale',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25502,45,1614,'Kenney',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25503,45,1608,'Kerens',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25504,45,1717,'Kermit',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25505,45,1675,'Kerrick',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25506,45,1655,'Kerrville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25507,45,466,'Kildare',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25508,45,1689,'Kilgore',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25509,45,698,'Killeen',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25510,45,1225,'Kingsbury',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25511,45,1628,'Kingsland',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25512,45,1718,'Kingsville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25513,45,387,'Kingwood',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25514,45,427,'Kirbyville',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25515,45,1685,'Kirvin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25516,45,237,'Klondike',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25517,45,1653,'Knickerbocker',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25518,45,1665,'Knippa',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25519,45,141,'Knott',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25520,45,538,'Knox City',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25521,45,1662,'Kopperl',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25522,45,45,'Kosse',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25523,45,453,'Kountze',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25524,45,1710,'Kress',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25525,45,1593,'Krum',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25526,45,1640,'Kurten',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25527,45,1598,'Kyle',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25528,45,1223,'La Blanca',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25529,45,1302,'La Coste',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25530,45,780,'La Feria',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25531,45,56,'La Grange',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25532,45,1223,'La Joya',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25533,45,1602,'La Marque',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25534,45,387,'La Porte',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25535,45,1610,'La Pryor',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25536,45,66,'La Salle',1,14211,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(25537,45,634,'La Vernia',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25538,45,1223,'La Villa',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25539,45,66,'La Ward',1,14224,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(25540,45,370,'Ladonia',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25541,45,1662,'Laguna Park',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25542,45,1712,'Laird Hill',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25543,45,237,'Lake Creek',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25544,45,1593,'Lake Dallas',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25545,45,1584,'Lake Jackson',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25546,45,1606,'Lakehills',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25547,45,391,'Lakeview',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25548,45,407,'Lamesa',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25549,45,1716,'Lampasas',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25550,45,94,'Lancaster',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25551,45,1629,'Lane City',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25552,45,1712,'Laneville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25553,45,1664,'Langtry',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25554,45,1639,'Laredo',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25555,45,567,'Larue',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25556,45,1719,'Lasara',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25557,45,47,'Latexo',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25558,45,1664,'Laughlin A F B',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25559,45,1581,'Lavon',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25560,45,337,'Lawn',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25561,45,1631,'Lazbuddie',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25562,45,1602,'League City',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25563,45,1649,'Leakey',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25564,45,1599,'Leander',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25565,45,578,'Leander',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25566,45,56,'Ledbetter',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25567,45,1720,'Leesburg',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25568,45,1615,'Leesville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25569,45,664,'Lefors',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25570,45,126,'Leggett',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25571,45,1661,'Lelia Lake',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25572,45,1650,'Leming',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25573,45,332,'Lenorah',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25574,45,339,'Leona',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25575,45,370,'Leonard',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25576,45,1601,'Leroy',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25577,45,1590,'Levelland',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25578,45,1593,'Lewisville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25579,45,51,'Lexington',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25580,45,311,'Liberty',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25581,45,578,'Liberty Hill',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25582,45,135,'Lillian',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25583,45,51,'Lincoln',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25584,45,640,'Lindale',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25585,45,466,'Linden',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25586,45,1694,'Lindsay',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25587,45,1627,'Lingleville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25588,45,1223,'Linn',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25589,45,1671,'Lipan',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25590,45,1630,'Lipscomb',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25591,45,1629,'Lissie',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25592,45,1593,'Little Elm',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25593,45,698,'Little River Academy',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25594,45,1587,'Littlefield',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25595,45,1584,'Liverpool',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25596,45,126,'Livingston',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25597,45,1628,'Llano',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25598,45,739,'Lockhart',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25599,45,352,'Lockney',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25600,45,58,'Lodi',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25601,45,1634,'Lohn',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25602,45,66,'Lolita',1,15433,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(25603,45,1716,'Lometa',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25604,45,1714,'London',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25605,45,1646,'Lone Oak',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25606,45,652,'Lone Star',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25607,45,998,'Long Branch',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25608,45,1689,'Longview',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25609,45,1721,'Loop',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25610,45,1722,'Lopeno',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25611,45,360,'Loraine',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25612,45,1601,'Lorena',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25613,45,1672,'Lorenzo',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25614,45,1223,'Los Ebanos',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25615,45,780,'Los Fresnos',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25616,45,780,'Los Indios',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25617,45,1659,'Lott',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25618,45,1629,'Louise',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25619,45,47,'Lovelady',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25620,45,1704,'Loving',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25621,45,1691,'Lowake',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25622,45,780,'Lozano',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25623,45,1713,'Lubbock',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25624,45,424,'Lueders',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25625,45,1681,'Lufkin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25626,45,739,'Luling',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25627,45,453,'Lumberton',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25628,45,1719,'Lyford',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25629,45,1647,'Lyons',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25630,45,1650,'Lytle',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25631,45,567,'Mabank',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25632,45,1669,'Mabank',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25633,45,1575,'Macdona',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25634,45,68,'Madisonville',1,15971,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(25635,45,72,'Magnolia',1,15992,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(25636,45,567,'Malakoff',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25637,45,1045,'Malone',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25638,45,1599,'Manchaca',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25639,45,1599,'Manor',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25640,45,1594,'Mansfield',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25641,45,1584,'Manvel',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25642,45,1643,'Maple',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25643,45,1583,'Marathon',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25644,45,1619,'Marble Falls',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25645,45,1723,'Marfa',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25646,45,466,'Marietta',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25647,45,1225,'Marion',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25648,45,1611,'Markham',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25649,45,1659,'Marlin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25650,45,339,'Marquez',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25651,45,502,'Marshall',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25652,45,1601,'Mart',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25653,45,739,'Martindale',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25654,45,1660,'Martinsville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25655,45,1623,'Maryneal',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25656,45,561,'Mason',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25657,45,1065,'Masterson',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25658,45,1697,'Matador',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25659,45,1611,'Matagorda',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25660,45,1591,'Mathis',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25661,45,1677,'Maud',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25662,45,177,'Mauriceville',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25663,45,739,'Maxwell',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25664,45,586,'May',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25665,45,73,'Maydelle',1,16636,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(25666,45,659,'Maypearl',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25667,45,1724,'Mc Camey',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25668,45,1725,'Mc Caulley',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25669,45,1609,'Mc Dade',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25670,45,1601,'Mc Gregor',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25671,45,466,'Mc Leod',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25672,45,1599,'Mc Neil',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25673,45,1225,'Mc Queeney',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25674,45,1576,'Mcadoo',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25675,45,1223,'Mcallen',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25676,45,1626,'Mcfaddin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25677,45,1581,'Mckinney',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25678,45,664,'Mclean',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25679,45,1638,'Meadow',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25680,45,1606,'Medina',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25681,45,1592,'Megargel',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25682,45,1581,'Melissa',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25683,45,1634,'Melvin',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25684,45,391,'Memphis',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25685,45,557,'Menard',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25686,45,1726,'Mentone',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25687,45,1223,'Mercedes',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25688,45,1653,'Mereta',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25689,45,1662,'Meridian',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25690,45,1646,'Merit',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25691,45,337,'Merkel',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25692,45,1045,'Mertens',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25693,45,1607,'Mertzon',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25694,45,94,'Mesquite',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25695,45,45,'Mexia',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25696,45,1674,'Meyersville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25697,45,1533,'Miami',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25698,45,1302,'Mico',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25699,45,1611,'Midfield',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25700,45,1724,'Midkiff',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25701,45,881,'Midland',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25702,45,659,'Midlothian',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25703,45,68,'Midway',1,17289,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(25704,45,774,'Milam',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25705,45,1642,'Milano',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25706,45,1604,'Miles',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25707,45,659,'Milford',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25708,45,1691,'Millersview',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25709,45,1640,'Millican',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25710,45,1579,'Millsap',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25711,45,1712,'Minden',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25712,45,1300,'Mineola',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25713,45,1613,'Mineral',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25714,45,1703,'Mineral Wells',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25715,45,1703,'Mingus',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25716,45,1639,'Mirando City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25717,45,1223,'Mission',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25718,45,1612,'Missouri City',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25719,45,344,'Mobeetie',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25720,45,1142,'Monahans',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25721,45,88,'Mont Belvieu',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25722,45,1632,'Montague',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25723,45,662,'Montalba',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25724,45,72,'Montgomery',1,17801,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(25725,45,1601,'Moody',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25726,45,1622,'Moore',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25727,45,1578,'Moran',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25728,45,1662,'Morgan',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25729,45,1627,'Morgan Mill',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25730,45,1706,'Morse',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25731,45,1625,'Morton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25732,45,126,'Moscow',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25733,45,1709,'Moulton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25734,45,1667,'Mound',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25735,45,1045,'Mount Calm',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25736,45,1712,'Mount Enterprise',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25737,45,1666,'Mount Pleasant',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25738,45,92,'Mount Vernon',1,155,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25739,45,1655,'Mountain Home',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25740,45,1694,'Muenster',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25741,45,56,'Muldoon',1,107,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25742,45,1643,'Muleshoe',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25743,45,503,'Mullin',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25744,45,747,'Mumford',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25745,45,538,'Munday',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25746,45,567,'Murchison',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25747,45,1694,'Myra',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25748,45,1660,'Nacogdoches',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25749,45,1582,'Nada',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25750,45,652,'Naples',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25751,45,1677,'Nash',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25752,45,1302,'Natalia',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25753,45,1594,'Naval Air Station/ Jrb',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25754,45,1640,'Navasota',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25755,45,1588,'Navasota',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25756,45,1682,'Nazareth',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25757,45,662,'Neches',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25758,45,30,'Nederland',1,18565,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25759,45,1612,'Needville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25760,45,1702,'Nemo',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25761,45,1581,'Nevada',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25762,45,747,'New Baden',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25763,45,1677,'New Boston',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25764,45,1644,'New Braunfels',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25765,45,72,'New Caney',1,146,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25766,45,1713,'New Deal',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25767,45,1727,'New Home',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25768,45,1712,'New London',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25769,45,73,'New Summerfield',1,18910,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(25770,45,1614,'New Ulm',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25771,45,69,'New Waverly',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25772,45,1585,'Newark',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25773,45,1704,'Newcastle',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25774,45,137,'Newton',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25775,45,1615,'Nixon',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25776,45,1632,'Nocona',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25777,45,1623,'Nolan',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25778,45,698,'Nolanville',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25779,45,30,'Nome',1,19179,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25780,45,1674,'Nordheim',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25781,45,339,'Normangee',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25782,45,1613,'Normanna',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25783,45,387,'North Houston',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25784,45,1594,'North Richland Hills',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25785,45,68,'North Zulch',1,114,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25786,45,1604,'Norton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25787,45,1701,'Notrees',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25788,45,1645,'Novice',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25789,45,1626,'Nursery',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25790,45,690,'O Brien',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25791,45,1663,'Oakhurst',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25792,45,1582,'Oakland',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25793,45,1683,'Oakville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25794,45,339,'Oakwood',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25795,45,1711,'Odell',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25796,45,1591,'Odem',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25797,45,1701,'Odessa',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25798,45,1727,'Odonnell',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25799,45,1667,'Oglesby',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25800,45,1639,'Oilton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25801,45,1711,'Oklaunion',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25802,45,1597,'Old Glory',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25803,45,1584,'Old Ocean',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25804,45,1652,'Olden',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25805,45,780,'Olmito',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25806,45,1704,'Olney',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25807,45,1587,'Olton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25808,45,652,'Omaha',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25809,45,126,'Onalaska',1,103,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25810,45,177,'Orange',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25811,45,1580,'Orange Grove',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25812,45,177,'Orangefield',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25813,45,1612,'Orchard',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25814,45,1621,'Ore City',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25815,45,1605,'Orla',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25816,45,1615,'Ottine',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25817,45,337,'Ovalo',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25818,45,1712,'Overton',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25819,45,1550,'Ozona',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25820,45,1654,'Paducah',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25821,45,1609,'Paige',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25822,45,1691,'Paint Rock',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25823,45,1611,'Palacios',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25824,45,662,'Palestine',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25825,45,659,'Palmer',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25826,45,1703,'Palo Pinto',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25827,45,1671,'Paluxy',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25828,45,664,'Pampa',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25829,45,634,'Pandora',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25830,45,1705,'Panhandle',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25831,45,1690,'Panna Maria',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25832,45,998,'Panola',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25833,45,1585,'Paradise',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25834,45,60,'Paris',1,20470,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25835,45,387,'Pasadena',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25836,45,1637,'Pattison',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25837,45,60,'Pattonville',1,20607,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25838,45,1613,'Pawnee',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25839,45,1584,'Pearland',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25840,45,1622,'Pearsall',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25841,45,1579,'Peaster',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25842,45,237,'Pecan Gap',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25843,45,1605,'Pecos',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25844,45,1650,'Peggy',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25845,45,698,'Pendleton',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25846,45,1045,'Penelope',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25847,45,1223,'Penitas',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25848,45,206,'Pennington',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25849,45,1701,'Penwell',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25850,45,1590,'Pep',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25851,45,1641,'Perrin',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25852,45,1695,'Perryton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25853,45,32,'Petersburg',1,20910,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25854,45,48,'Petrolia',1,20926,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25855,45,1613,'Pettus',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25856,45,60,'Petty',1,20934,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25857,45,1599,'Pflugerville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25858,45,1223,'Pharr',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25859,45,734,'Pickton',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25860,45,1629,'Pierce',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25861,45,1593,'Pilot Point',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25862,45,72,'Pinehurst',1,21132,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25863,45,774,'Pineland',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25864,45,1720,'Pittsburg',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25865,45,1626,'Placedo',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25866,45,1680,'Plains',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25867,45,32,'Plainview',1,10,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(25868,45,1581,'Plano',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25869,45,1588,'Plantersville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25870,45,1650,'Pleasanton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25871,45,1611,'Pledger',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25872,45,56,'Plum',1,122,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(25873,45,1693,'Point',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25874,45,37,'Point Comfort',1,60,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(25875,45,1663,'Pointblank',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25876,45,1681,'Pollok',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25877,45,1593,'Ponder',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25878,45,561,'Pontotoc',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25879,45,1579,'Poolville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25880,45,1577,'Port Aransas',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25881,45,30,'Port Arthur',1,218,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(25882,45,1602,'Port Bolivar',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25883,45,780,'Port Isabel',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25884,45,37,'Port Lavaca',1,62,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(25885,45,1719,'Port Mansfield',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25886,45,30,'Port Neches',1,221,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(25887,45,37,'Port O Connor',1,63,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(25888,45,72,'Porter',1,175,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25889,45,1591,'Portland',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25890,45,1715,'Post',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25891,45,1650,'Poteet',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25892,45,634,'Poth',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25893,45,713,'Pottsboro',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25894,45,334,'Pottsville',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25895,45,60,'Powderly',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25896,45,1608,'Powell',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25897,45,567,'Poynor',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25898,45,45,'Prairie Hill',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25899,45,739,'Prairie Lea',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25900,45,1637,'Prairie View',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25901,45,1580,'Premont',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25902,45,1723,'Presidio',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25903,45,1712,'Price',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25904,45,503,'Priddy',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25905,45,1581,'Princeton',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25906,45,665,'Proctor',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25907,45,1223,'Progreso',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25908,45,1581,'Prosper',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25909,45,1608,'Purdon',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25910,45,1667,'Purmela',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25911,45,1603,'Putnam',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25912,45,1142,'Pyote',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25913,45,1684,'Quail',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25914,45,1559,'Quanah',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25915,45,466,'Queen City',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25916,45,1688,'Quemado',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25917,45,1646,'Quinlan',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25918,45,1728,'Quitaque',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25919,45,1300,'Quitman',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25920,45,1702,'Rainbow',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25921,45,1672,'Ralls',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25922,45,370,'Randolph',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25923,45,1652,'Ranger',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25924,45,1724,'Rankin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25925,45,1713,'Ransom Canyon',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25926,45,47,'Ratcliff',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL);
INSERT INTO `cities` VALUES (25927,45,370,'Ravenna',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25928,45,1719,'Raymondville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25929,45,311,'Raywood',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25930,45,1659,'Reagan',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25931,45,298,'Realitos',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25932,45,659,'Red Oak',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25933,45,1609,'Red Rock',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25934,45,1723,'Redford',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25935,45,1677,'Redwater',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25936,45,1600,'Refugio',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25937,45,73,'Reklaw',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25938,45,1585,'Rhome',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25939,45,1608,'Rice',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25940,45,1588,'Richards',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25941,45,94,'Richardson',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25942,45,1608,'Richland',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25943,45,1617,'Richland Springs',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25944,45,1612,'Richmond',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25945,45,1601,'Riesel',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25946,45,1632,'Ringgold',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25947,45,1649,'Rio Frio',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25948,45,1679,'Rio Grande City',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25949,45,780,'Rio Hondo',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25950,45,1302,'Rio Medina',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25951,45,135,'Rio Vista',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25952,45,1652,'Rising Star',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25953,45,69,'Riverside',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25954,45,1718,'Riviera',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25955,45,1593,'Roanoke',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25956,45,1588,'Roans Prairie',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25957,45,1697,'Roaring Springs',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25958,45,1636,'Robert Lee',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25959,45,1577,'Robstown',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25960,45,1725,'Roby',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25961,45,1634,'Rochelle',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25962,45,690,'Rochester',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25963,45,1582,'Rock Island',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25964,45,1642,'Rockdale',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25965,45,1698,'Rockport',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25966,45,542,'Rocksprings',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25967,45,1696,'Rockwall',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25968,45,1645,'Rockwood',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25969,45,698,'Rogers',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25970,45,1679,'Roma',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25971,45,311,'Romayor',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25972,45,1714,'Roosevelt',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25973,45,1590,'Ropesville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25974,45,1609,'Rosanky',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25975,45,1623,'Roscoe',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25976,45,1659,'Rosebud',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25977,45,1612,'Rosenberg',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25978,45,1584,'Rosharon',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25979,45,1601,'Ross',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25980,45,1669,'Rosser',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25981,45,1694,'Rosston',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25982,45,1725,'Rotan',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25983,45,1624,'Round Mountain',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25984,45,578,'Round Rock',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25985,45,56,'Round Top',1,133,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25986,45,1604,'Rowena',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25987,45,94,'Rowlett',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25988,45,60,'Roxton',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25989,45,1696,'Royse City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25990,45,690,'Rule',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25991,45,1690,'Runge',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25992,45,73,'Rusk',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25993,45,311,'Rye',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25994,45,1665,'Sabinal',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25995,45,30,'Sabine Pass',1,241,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25996,45,94,'Sachse',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25997,45,1660,'Sacul',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25998,45,713,'Sadler',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(25999,45,1575,'Saint Hedwig',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26000,45,1632,'Saint Jo',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26001,45,698,'Salado',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26002,45,1679,'Salineno',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26003,45,1678,'Salt Flat',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26004,45,734,'Saltillo',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26005,45,1684,'Sam Norwood',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26006,45,1653,'San Angelo',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26007,45,1575,'San Antonio',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26008,45,1644,'San Antonio',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26009,45,1635,'San Augustine',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26010,45,780,'San Benito',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26011,45,298,'San Diego',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26012,45,251,'San Elizario',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26013,45,1614,'San Felipe',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26014,45,1679,'San Isidro',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26015,45,1223,'San Juan',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26016,45,1598,'San Marcos',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26017,45,1719,'San Perlita',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26018,45,1617,'San Saba',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26019,45,1722,'San Ygnacio',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26020,45,376,'Sanderson',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26021,45,1580,'Sandia',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26022,45,1538,'Sanford',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26023,45,1593,'Sanger',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26024,45,1645,'Santa Anna',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26025,45,1679,'Santa Elena',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26026,45,1602,'Santa Fe',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26027,45,780,'Santa Maria',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26028,45,780,'Santa Rosa',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26029,45,1703,'Santo',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26030,45,1605,'Saragosa',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26031,45,453,'Saratoga',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26032,45,1595,'Sarita',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26033,45,1659,'Satin',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26034,45,370,'Savoy',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26035,45,1225,'Schertz',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26036,45,56,'Schulenburg',1,138,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26037,45,578,'Schwertner',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26038,45,1592,'Scotland',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26039,45,502,'Scottsville',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26040,45,92,'Scroggins',1,213,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26041,45,1669,'Scurry',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26042,45,387,'Seabrook',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26043,45,37,'Seadrift',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26044,45,94,'Seagoville',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26045,45,1721,'Seagraves',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26046,45,1614,'Sealy',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26047,45,1719,'Sebastian',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26048,45,1225,'Seguin',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26049,45,1712,'Selman City',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26050,45,1721,'Seminole',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26051,45,1729,'Seymour',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26052,45,1713,'Shallowater',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26053,45,344,'Shamrock',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26054,45,1668,'Sheffield',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26055,45,33,'Shelbyville',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26056,45,1663,'Shepherd',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26057,45,688,'Sheppard Afb',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26058,45,1582,'Sheridan',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26059,45,713,'Sherman',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26060,45,1709,'Shiner',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26061,45,1588,'Shiro',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26062,45,665,'Sidney',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26063,45,1678,'Sierra Blanca',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26064,45,453,'Silsbee',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26065,45,1636,'Silver',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26066,45,1728,'Silverton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26067,45,1677,'Simms',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26068,45,1612,'Simonton',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26069,45,1591,'Sinton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26070,45,1705,'Skellytown',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26071,45,1613,'Skidmore',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26072,45,1713,'Slaton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26073,45,1585,'Slidell',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26074,45,1615,'Smiley',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26075,45,1609,'Smithville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26076,45,1590,'Smyer',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26077,45,1647,'Snook',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26078,45,1687,'Snyder',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26079,45,1575,'Somerset',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26080,45,1647,'Somerville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26081,45,1730,'Sonora',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26082,45,453,'Sour Lake',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26083,45,1704,'South Bend',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26084,45,387,'South Houston',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26085,45,780,'South Padre Island',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26086,45,352,'South Plains',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26087,45,1594,'Southlake',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26088,45,713,'Southmayd',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26089,45,1587,'Spade',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26090,45,1706,'Spearman',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26091,45,1599,'Spicewood',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26092,45,72,'Splendora',1,199,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26093,45,387,'Spring',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26094,45,72,'Spring',1,201,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26095,45,1644,'Spring Branch',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26096,45,1587,'Springlake',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26097,45,1579,'Springtown',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26098,45,1576,'Spur',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26099,45,1657,'Spurger',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26100,45,1612,'Stafford',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26101,45,424,'Stamford',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26102,45,332,'Stanton',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26103,45,1225,'Staples',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26104,45,503,'Star',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26105,45,1627,'Stephenville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26106,45,1731,'Sterling City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26107,45,1538,'Stinnett',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26108,45,634,'Stockdale',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26109,45,1686,'Stonewall',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26110,45,88,'Stowell',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26111,45,671,'Stratford',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26112,45,1703,'Strawn',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26113,45,1685,'Streetman',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26114,45,1709,'Sublime',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26115,45,1587,'Sudan',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26116,45,1612,'Sugar Land',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26117,45,1223,'Sullivan City',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26118,45,734,'Sulphur Bluff',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26119,45,734,'Sulphur Springs',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26120,45,1682,'Summerfield',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26121,45,60,'Sumner',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26122,45,1590,'Sundown',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26123,45,94,'Sunnyvale',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26124,45,1065,'Sunray',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26125,45,1632,'Sunset',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26126,45,634,'Sutherland Springs',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26127,45,1584,'Sweeny',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26128,45,1709,'Sweet Home',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26129,45,1623,'Sweetwater',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26130,45,1725,'Sylvester',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26131,45,1591,'Taft',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26132,45,1727,'Tahoka',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26133,45,92,'Talco',1,234,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26134,45,1645,'Talpa',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26135,45,1606,'Tarpley',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26136,45,332,'Tarzan',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26137,45,1712,'Tatum',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26138,45,578,'Taylor',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26139,45,1685,'Teague',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26140,45,45,'Tehuacana',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26141,45,542,'Telegraph',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26142,45,370,'Telephone',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26143,45,1626,'Telferner',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26144,45,1658,'Tell',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26145,45,698,'Temple',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26146,45,33,'Tenaha',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26147,45,662,'Tennessee Colony',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26148,45,1636,'Tennyson',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26149,45,1583,'Terlingua',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26150,45,1669,'Terrell',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26151,45,1677,'Texarkana',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26152,45,1602,'Texas City',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26153,45,1675,'Texline',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26154,45,1593,'The Colony',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26155,45,453,'Thicket',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26156,45,1674,'Thomaston',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26157,45,1612,'Thompsons',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26158,45,1642,'Thorndale',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26159,45,45,'Thornton',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26160,45,578,'Thrall',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26161,45,1683,'Three Rivers',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26162,45,1732,'Throckmorton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26163,45,1648,'Tilden',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26164,45,33,'Timpson',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26165,45,713,'Tioga',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26166,45,1600,'Tivoli',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26167,45,1680,'Tokio',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26168,45,1671,'Tolar',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26169,45,713,'Tom Bean',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26170,45,387,'Tomball',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26171,45,251,'Tornillo',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26172,45,1628,'Tow',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26173,45,1605,'Toyah',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26174,45,1605,'Toyahvale',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26175,45,337,'Trent',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26176,45,370,'Trenton',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26177,45,567,'Trinidad',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26178,45,206,'Trinity',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26179,45,640,'Troup',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26180,45,698,'Troy',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26181,45,1613,'Tuleta',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26182,45,1710,'Tulia',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26183,45,391,'Turkey',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26184,45,337,'Tuscola',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26185,45,337,'Tye',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26186,45,640,'Tyler',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26187,45,1613,'Tynan',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26188,45,1586,'Umbarger',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26189,45,1575,'Universal City',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26190,45,1665,'Utopia',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26191,45,1665,'Uvalde',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26192,45,1723,'Valentine',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26193,45,1645,'Valera',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26194,45,1662,'Valley Mills',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26195,45,1628,'Valley Spring',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26196,45,1694,'Valley View',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26197,45,1616,'Van',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26198,45,713,'Van Alstyne',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26199,45,1733,'Van Horn',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26200,45,1611,'Van Vleck',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26201,45,1653,'Vancourt',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26202,45,66,'Vanderbilt',1,201,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26203,45,1606,'Vanderpool',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26204,45,720,'Vega',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26205,45,135,'Venus',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26206,45,1653,'Veribest',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26207,45,1711,'Vernon',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26208,45,1626,'Victoria',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26209,45,177,'Vidor',1,142,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26210,45,453,'Village Mills',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26211,45,1634,'Voca',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26212,45,1575,'Von Ormy',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26213,45,1645,'Voss',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26214,45,453,'Votaw',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26215,45,1601,'Waco',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26216,45,1611,'Wadsworth',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26217,45,1615,'Waelder',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26218,45,1695,'Waka',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26219,45,578,'Walburg',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26220,45,1653,'Wall',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26221,45,387,'Waller',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26222,45,1614,'Wallis',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26223,45,88,'Wallisville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26224,45,1662,'Walnut Springs',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26225,45,56,'Warda',1,155,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26226,45,571,'Waring',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26227,45,1657,'Warren',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26228,45,56,'Warrenton',1,156,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26229,45,71,'Washington',1,363,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26230,45,502,'Waskom',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26231,45,1653,'Water Valley',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26232,45,659,'Waxahachie',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26233,45,1377,'Wayside',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26234,45,1579,'Weatherford',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26235,45,387,'Webster',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26236,45,1618,'Weesatche',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26237,45,1582,'Weimar',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26238,45,690,'Weinert',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26239,45,578,'Weir',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26240,45,407,'Welch',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26241,45,1640,'Wellborn',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26242,45,1684,'Wellington',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26243,45,1638,'Wellman',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26244,45,73,'Wells',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26245,45,1223,'Weslaco',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26246,45,1601,'West',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26247,45,1584,'West Columbia',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26248,45,56,'West Point',1,160,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26249,45,360,'Westbrook',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26250,45,1674,'Westhoff',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26251,45,1581,'Westminster',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26252,45,1581,'Weston',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26253,45,1629,'Wharton',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26254,45,344,'Wheeler',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26255,45,747,'Wheelock',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26256,45,1705,'White Deer',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26257,45,1689,'White Oak',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26258,45,1625,'Whiteface',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26259,45,640,'Whitehouse',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26260,45,713,'Whitesboro',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26261,45,713,'Whitewright',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26262,45,1590,'Whitharral',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26263,45,1045,'Whitney',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26264,45,1683,'Whitsett',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26265,45,1579,'Whitt',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26266,45,688,'Wichita Falls',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26267,45,1142,'Wickett',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26268,45,137,'Wiergate',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26269,45,720,'Wildorado',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26270,45,72,'Willis',1,230,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26271,45,1686,'Willow City',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26272,45,1616,'Wills Point',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26273,45,94,'Wilmer',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26274,45,1727,'Wilson',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26275,45,1598,'Wimberley',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26276,45,370,'Windom',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26277,45,1592,'Windthorst',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26278,45,1666,'Winfield',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26279,45,1604,'Wingate',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26280,45,1717,'Wink',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26281,45,88,'Winnie',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26282,45,1300,'Winnsboro',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26283,45,640,'Winona',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26284,45,1604,'Winters',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26285,45,1660,'Woden',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26286,45,1646,'Wolfe City',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26287,45,1713,'Wolfforth',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26288,45,206,'Woodlake',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26289,45,502,'Woodlawn',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26290,45,1600,'Woodsboro',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26291,45,1732,'Woodson',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26292,45,1657,'Woodville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26293,45,1601,'Woodway',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26294,45,1685,'Wortham',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26295,45,1615,'Wrightsboro',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26296,45,1581,'Wylie',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26297,45,1302,'Yancey',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26298,45,1300,'Yantis',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26299,45,1709,'Yoakum',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26300,45,1674,'Yorktown',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26301,45,1722,'Zapata',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26302,45,1681,'Zavalla',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26303,45,586,'Zephyr',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26304,46,1734,'Alpine',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26305,46,1735,'Altamont',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26306,46,559,'Alton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26307,46,1735,'Altonah',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26308,46,1734,'American Fork',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26309,46,277,'Aneth',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26310,46,118,'Annabella',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26311,46,240,'Antimony',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26312,46,118,'Aurora',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26313,46,1736,'Axtell',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26314,46,1737,'Bear River City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26315,46,1328,'Beaver',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26316,46,843,'Beryl',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26317,46,431,'Bicknell',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26318,46,1738,'Bingham Canyon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26319,46,277,'Blanding',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26320,46,1735,'Bluebell',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26321,46,277,'Bluff',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26322,46,1739,'Bonanza',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26323,46,240,'Boulder',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26324,46,487,'Bountiful',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26325,46,843,'Brian Head',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26326,46,1737,'Brigham City',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26327,46,240,'Bryce',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26328,46,1740,'Cache Junction',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26329,46,240,'Cannonville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26330,46,1741,'Castle Dale',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26331,46,843,'Cedar City',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26332,46,1734,'Cedar Valley',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26333,46,1736,'Centerfield',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26334,46,487,'Centerville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26335,46,71,'Central',1,4521,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(26336,46,1736,'Chester',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26337,46,1742,'Circleville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26338,46,269,'Cisco',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26339,46,1740,'Clarkston',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26340,46,1741,'Clawson',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26341,46,487,'Clearfield',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26342,46,1741,'Cleveland',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26343,46,247,'Coalville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26344,46,1737,'Collinston',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26345,46,1737,'Corinne',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26346,46,1740,'Cornish',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26347,46,82,'Croydon',1,6265,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(26348,46,71,'Dammeron Valley',1,6502,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(26349,46,1743,'Delta',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26350,46,1737,'Deweyville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26351,46,1738,'Draper',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26352,46,1735,'Duchesne',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26353,46,559,'Duck Creek Village',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26354,46,1744,'Dugway',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26355,46,1745,'Dutch John',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26356,46,1734,'Eagle Mountain',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26357,46,1037,'East Carbon',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26358,46,247,'Echo',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26359,46,1746,'Eden',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26360,46,1734,'Elberta',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26361,46,1741,'Elmo',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26362,46,118,'Elsinore',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26363,46,1741,'Emery',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26364,46,71,'Enterprise',1,8429,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(26365,46,1736,'Ephraim',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26366,46,240,'Escalante',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26367,46,1747,'Eureka',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26368,46,1736,'Fairview',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26369,46,487,'Farmington',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26370,46,1736,'Fayette',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26371,46,1741,'Ferron',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26372,46,1737,'Fielding',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26373,46,1743,'Fillmore',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26374,46,1739,'Fort Duchesne',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26375,46,1736,'Fountain Green',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26376,46,1735,'Fruitland',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26377,46,1748,'Garden City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26378,46,1737,'Garland',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26379,46,1743,'Garrison',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26380,46,559,'Glendale',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26381,46,118,'Glenwood',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26382,46,1734,'Goshen',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26383,46,1744,'Grantsville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26384,46,1741,'Green River',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26385,46,1328,'Greenville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26386,46,1742,'Greenwich',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26387,46,1737,'Grouse Creek',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26388,46,71,'Gunlock',1,11133,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(26389,46,1736,'Gunnison',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26390,46,431,'Hanksville',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26391,46,1735,'Hanna',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26392,46,240,'Hatch',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26393,46,1749,'Heber City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26394,46,1037,'Helper',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26395,46,247,'Henefer',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26396,46,240,'Henrieville',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26397,46,1738,'Herriman',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26398,46,71,'Hildale',1,12120,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(26399,46,487,'Hill Afb',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26400,46,1743,'Hinckley',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26401,46,1743,'Holden',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26402,46,1737,'Honeyville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26403,46,1746,'Hooper',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26404,46,1737,'Howell',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26405,46,1741,'Huntington',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26406,46,1746,'Huntsville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26407,46,71,'Hurricane',1,182,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26408,46,1740,'Hyde Park',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26409,46,1740,'Hyrum',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26410,46,1744,'Ibapah',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26411,46,71,'Ivins',1,185,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26412,46,1739,'Jensen',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26413,46,118,'Joseph',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26414,46,1742,'Junction',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26415,46,247,'Kamas',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26416,46,559,'Kanab',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26417,46,843,'Kanarraville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26418,46,1743,'Kanosh',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26419,46,487,'Kaysville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26420,46,1037,'Kenilworth',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26421,46,1742,'Kingston',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26422,46,118,'Koosharem',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26423,46,277,'La Sal',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26424,46,71,'La Verkin',1,199,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26425,46,277,'Lake Powell',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26426,46,1748,'Laketown',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26427,46,1739,'Lapoint',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26428,46,487,'Layton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26429,46,1743,'Leamington',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26430,46,71,'Leeds',1,205,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26431,46,1734,'Lehi',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26432,46,1747,'Levan',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26433,46,1740,'Lewiston',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26434,46,1734,'Lindon',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26435,46,431,'Loa',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26436,46,1740,'Logan',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26437,46,431,'Lyman',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26438,46,1743,'Lynndyl',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26439,46,1738,'Magna',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26440,46,1745,'Manila',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26441,46,1736,'Manti',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26442,46,1737,'Mantua',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26443,46,1734,'Mapleton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26444,46,1742,'Marysvale',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26445,46,1736,'Mayfield',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26446,46,1743,'Meadow',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26447,46,1740,'Mendon',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26448,46,277,'Mexican Hat',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26449,46,1738,'Midvale',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26450,46,1749,'Midway',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26451,46,1328,'Milford',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26452,46,1740,'Millville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26453,46,1328,'Minersville',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26454,46,269,'Moab',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26455,46,843,'Modena',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26456,46,1747,'Mona',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26457,46,118,'Monroe',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26458,46,277,'Montezuma Creek',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26459,46,277,'Monticello',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26460,46,277,'Monument Valley',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26461,46,82,'Morgan',1,17948,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(26462,46,1736,'Moroni',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26463,46,559,'Mount Carmel',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26464,46,1736,'Mount Pleasant',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26465,46,1735,'Mountain Home',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26466,46,1735,'Myton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26467,46,1735,'Neola',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26468,46,1747,'Nephi',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26469,46,71,'New Harmony',1,255,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26470,46,843,'Newcastle',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26471,46,1740,'Newton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26472,46,487,'North Salt Lake',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26473,46,1743,'Oak City',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26474,46,247,'Oakley',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26475,46,1746,'Ogden',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26476,46,1741,'Orangeville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26477,46,559,'Orderville',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26478,46,1734,'Orem',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26479,46,240,'Panguitch',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26480,46,1740,'Paradise',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26481,46,843,'Paragonah',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26482,46,247,'Park City',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26483,46,1737,'Park Valley',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26484,46,843,'Parowan',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26485,46,1734,'Payson',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26486,46,247,'Peoa',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26487,46,71,'Pine Valley',1,276,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(26488,46,1734,'Pleasant Grove',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26489,46,1737,'Plymouth',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26490,46,1737,'Portage',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26491,46,1037,'Price',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26492,46,1740,'Providence',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26493,46,1734,'Provo',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26494,46,1739,'Randlett',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26495,46,1748,'Randolph',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26496,46,118,'Redmond',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26497,46,118,'Richfield',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26498,46,1740,'Richmond',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26499,46,1737,'Riverside',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26500,46,1738,'Riverton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26501,46,71,'Rockville',1,295,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26502,46,1735,'Roosevelt',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26503,46,1746,'Roy',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26504,46,1744,'Rush Valley',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26505,46,71,'Saint George',1,300,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26506,46,1734,'Salem',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26507,46,118,'Salina',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26508,46,1738,'Salt Lake City',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26509,46,1738,'Sandy',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26510,46,71,'Santa Clara',1,308,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26511,46,1734,'Santaquin',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26512,46,1734,'Saratoga Springs',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26513,46,1743,'Scipio',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26514,46,118,'Sevier',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26515,46,118,'Sigurd',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26516,46,1740,'Smithfield',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26517,46,1737,'Snowville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26518,46,1738,'South Jordan',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26519,46,1734,'Spanish Fork',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26520,46,1736,'Spring City',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26521,46,71,'Springdale',1,323,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26522,46,1734,'Springville',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26523,46,1736,'Sterling',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26524,46,1744,'Stockton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26525,46,843,'Summit',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26526,46,1037,'Sunnyside',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26527,46,487,'Syracuse',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26528,46,1735,'Tabiona',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26529,46,1735,'Talmage',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26530,46,431,'Teasdale',1,157,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26531,46,269,'Thompson',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26532,46,1744,'Tooele',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26533,46,71,'Toquerville',1,340,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26534,46,431,'Torrey',1,158,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26535,46,1737,'Tremonton',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26536,46,1740,'Trenton',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26537,46,1739,'Tridell',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26538,46,240,'Tropic',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26539,46,1739,'Vernal',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26540,46,1744,'Vernon',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26541,46,71,'Veyo',1,349,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26542,46,71,'Virgin',1,352,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26543,46,1736,'Wales',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26544,46,1749,'Wallsburg',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26545,46,71,'Washington',1,364,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26546,46,1037,'Wellington',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26547,46,1740,'Wellsville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26548,46,1744,'Wendover',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26549,46,1738,'West Jordan',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26550,46,1739,'Whiterocks',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26551,46,1737,'Willard',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26552,46,1748,'Woodruff',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26553,46,487,'Woods Cross',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26554,48,71,'Abingdon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26555,48,1750,'Accomac',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26556,48,1218,'Achilles',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26557,48,706,'Afton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26558,48,1079,'Alberta',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26559,48,1751,'Aldie',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26560,48,1752,'Alexandria',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26561,48,1753,'Alexandria',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26562,48,694,'Altavista',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26563,48,1123,'Alton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26564,48,1754,'Amelia Court House',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26565,48,1755,'Amherst',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26566,48,1756,'Amissville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26567,48,1757,'Ammon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26568,48,552,'Amonate',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26569,48,1585,'Andover',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26570,48,1753,'Annandale',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26571,48,1585,'Appalachia',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26572,48,1758,'Appomattox',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26573,48,1759,'Ararat',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26574,48,1751,'Arcola',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26575,48,1218,'Ark',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26576,48,1760,'Arlington',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26577,48,68,'Aroda',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26578,48,706,'Arrington',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26579,48,1761,'Arvonia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26580,48,1751,'Ashburn',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26581,48,1762,'Ashland',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26582,48,1750,'Assawoman',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26583,48,1763,'Atkins',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26584,48,1750,'Atlantic',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26585,48,1764,'Augusta Springs',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26586,48,1765,'Austinville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26587,48,28,'Axton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26588,48,1766,'Aylett',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26589,48,741,'Bacova',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26590,48,68,'Banco',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26591,48,552,'Bandy',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26592,48,177,'Barboursville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26593,48,1767,'Barhamsville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26594,48,1765,'Barren Springs',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26595,48,1111,'Baskerville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26596,48,28,'Bassett',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26597,48,1768,'Bastian',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26598,48,1769,'Basye',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26599,48,1770,'Batesville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26600,48,1771,'Battery Park',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26601,48,1772,'Bealeton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26602,48,1773,'Beaumont',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26603,48,1762,'Beaverdam',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26604,48,1384,'Bedford',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26605,48,1774,'Bee',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26606,48,1750,'Belle Haven',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26607,48,136,'Belspring',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26608,48,51,'Ben Hur',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26609,48,1218,'Bena',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26610,48,1775,'Bent Mountain',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26611,48,386,'Bentonville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26612,48,1120,'Bergton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26613,48,40,'Berryville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26614,48,1384,'Big Island',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26615,48,475,'Big Rock',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26616,48,1585,'Big Stone Gap',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26617,48,1774,'Birchleaf',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26618,48,1114,'Birdsnest',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26619,48,552,'Bishop',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26620,48,72,'Blacksburg',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26621,48,1776,'Blackstone',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26622,48,51,'Blackwater',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26623,48,1777,'Blairs',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26624,48,1768,'Bland',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26625,48,1750,'Bloxom',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26626,48,1305,'Blue Grass',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26627,48,1778,'Blue Ridge',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26628,48,552,'Bluefield',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26629,48,40,'Bluemont',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26630,48,1779,'Bohannon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26631,48,552,'Boissevain',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26632,48,92,'Boones Mill',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26633,48,1756,'Boston',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26634,48,818,'Bowling Green',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26635,48,40,'Boyce',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26636,48,1111,'Boydton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26637,48,1780,'Boykins',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26638,48,1111,'Bracey',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26639,48,1780,'Branchville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26640,48,1756,'Brandy Station',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26641,48,1774,'Breaks',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26642,48,1781,'Bremo Bluff',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26643,48,1120,'Bridgewater',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26644,48,68,'Brightwood',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26645,48,794,'Bristol',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26646,48,71,'Bristol',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26647,48,1782,'Bristow',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26648,48,1772,'Broad Run',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26649,48,552,'Broadford',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26650,48,1120,'Broadway',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26651,48,1079,'Brodnax',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26652,48,683,'Brooke',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26653,48,694,'Brookneal',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26654,48,1783,'Brownsburg',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26655,48,809,'Brucetown',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26656,48,1784,'Bruington',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26657,48,1778,'Buchanan',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26658,48,1761,'Buckingham',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26659,48,1785,'Buena Vista',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26660,48,1111,'Buffalo Junction',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26661,48,498,'Bumpass',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26662,48,1403,'Burgess',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26663,48,1753,'Burke',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26664,48,552,'Burkes Garden',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26665,48,1776,'Burkeville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26666,48,177,'Burr Hill',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26667,48,1777,'Callands',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26668,48,1403,'Callao',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26669,48,92,'Callaway',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26670,48,1772,'Calverton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26671,48,115,'Cana',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26672,48,1114,'Cape Charles',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26673,48,1114,'Capeville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26674,48,1780,'Capron',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26675,48,1779,'Cardinal',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26676,48,798,'Caret',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26677,48,1771,'Carrollton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26678,48,1771,'Carrsville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26679,48,1757,'Carson',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26680,48,584,'Cartersville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26681,48,1772,'Casanova',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26682,48,1777,'Cascade',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26683,48,1786,'Castleton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26684,48,80,'Castlewood',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26685,48,1775,'Catawba',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26686,48,1782,'Catharpin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26687,48,1772,'Catlett',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26688,48,552,'Cedar Bluff',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26689,48,798,'Center Cross',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26690,48,1753,'Centreville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26691,48,1768,'Ceres',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26692,48,798,'Champlain',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26693,48,1753,'Chantilly',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26694,48,1751,'Chantilly',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26695,48,1787,'Charles City',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26696,48,324,'Charlotte Court House',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26697,48,1770,'Charlottesville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26698,48,1788,'Charlottesville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26699,48,1111,'Chase City',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26700,48,1777,'Chatham',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26701,48,352,'Check',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26702,48,1114,'Cheriton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26703,48,1789,'Chesapeake',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26704,48,1504,'Chester',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26705,48,1786,'Chester Gap',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26706,48,1504,'Chesterfield',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26707,48,1763,'Chilhowie',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26708,48,1750,'Chincoteague Island',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26709,48,286,'Christchurch',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26710,48,72,'Christiansburg',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26711,48,1757,'Church Road',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26712,48,286,'Church View',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26713,48,1764,'Churchville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26714,48,1078,'Claremont',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26715,48,1111,'Clarksville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26716,48,1759,'Claudville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26717,48,809,'Clear Brook',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26718,48,80,'Cleveland',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26719,48,1755,'Clifford',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26720,48,1753,'Clifton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26721,48,1125,'Clifton Forge',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26722,48,1774,'Clinchco',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26723,48,1774,'Clintwood',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26724,48,1123,'Clover',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26725,48,1778,'Cloverdale',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26726,48,1123,'Cluster Springs',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26727,48,1779,'Cobbs Creek',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26728,48,1585,'Coeburn',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26729,48,1384,'Coleman Falls',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26730,48,1376,'Coles Point',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26731,48,28,'Collinsville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26732,48,1376,'Colonial Beach',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26733,48,1790,'Colonial Heights',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26734,48,1773,'Columbia',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26735,48,694,'Concord',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26736,48,352,'Copper Hill',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26737,48,818,'Corbin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26738,48,1780,'Courtland',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26739,48,1770,'Covesville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26740,48,1791,'Covington',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26741,48,1750,'Craddockville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26742,48,1764,'Craigsville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26743,48,1776,'Crewe',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26744,48,1120,'Criders',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26745,48,1764,'Crimora',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26746,48,1765,'Cripple Creek',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26747,48,1759,'Critz',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26748,48,1765,'Crockett',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26749,48,809,'Cross Junction',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26750,48,1770,'Crozet',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26751,48,1773,'Crozier',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26752,48,1123,'Crystal Hill',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26753,48,324,'Cullen',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26754,48,1756,'Culpeper',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26755,48,584,'Cumberland',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26756,48,1792,'Dahlgren',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26757,48,1778,'Daleville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26758,48,71,'Damascus',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26759,48,80,'Dante',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26760,48,1793,'Danville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26761,48,475,'Davenport',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26762,48,1750,'Davis Wharf',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26763,48,1120,'Dayton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26764,48,1764,'Deerfield',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26765,48,1772,'Delaplane',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26766,48,286,'Deltaville',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26767,48,1078,'Dendron',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26768,48,1757,'Dewitt',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26769,48,1779,'Diggs',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26770,48,1761,'Dillwyn',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26771,48,1757,'Dinwiddie',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26772,48,1794,'Disputanta',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26773,48,1305,'Doe Hill',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26774,48,1792,'Dogue',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26775,48,1079,'Dolphin',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26776,48,552,'Doran',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26777,48,1762,'Doswell',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26778,48,324,'Drakes Branch',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26779,48,136,'Draper',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26780,48,1780,'Drewryville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26781,48,1777,'Dry Fork',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26782,48,51,'Dryden',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26783,48,136,'Dublin',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26784,48,127,'Duffield',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26785,48,115,'Dugspur',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26786,48,1751,'Dulles',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26787,48,1782,'Dumfries',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26788,48,1795,'Dundas',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26789,48,127,'Dungannon',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26790,48,1753,'Dunn Loring',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26791,48,798,'Dunnsville',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26792,48,1218,'Dutton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26793,48,63,'Dyke',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26794,48,1778,'Eagle Rock',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26795,48,1770,'Earlysville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26796,48,1585,'East Stone Gap',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26797,48,1114,'Eastville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26798,48,1079,'Ebony',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26799,48,1769,'Edinburg',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26800,48,1403,'Edwardsville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26801,48,1553,'Eggleston',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26802,48,1078,'Elberon',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26803,48,713,'Elk Creek',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26804,48,1120,'Elkton',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26805,48,1756,'Elkwood',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26806,48,72,'Elliston',1,8215,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(26807,48,71,'Emory',1,8360,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(26808,48,1796,'Emporia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26809,48,1770,'Esmont',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26810,48,68,'Etlan',1,8539,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(26811,48,1758,'Evergreen',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26812,48,694,'Evington',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26813,48,51,'Ewing',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26814,48,1114,'Exmore',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26815,48,706,'Faber',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26816,48,1753,'Fairfax',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26817,48,1797,'Fairfax',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26818,48,1753,'Fairfax Station',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26819,48,1783,'Fairfield',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26820,48,1753,'Falls Church',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26821,48,1798,'Falls Church',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26822,48,552,'Falls Mills',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26823,48,115,'Fancy Gap',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26824,48,1799,'Farmville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26825,48,358,'Farnham',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26826,48,92,'Ferrum',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26827,48,28,'Fieldale',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26828,48,1778,'Fincastle',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26829,48,1769,'Fishers Hill',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26830,48,1764,'Fishersville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26831,48,1786,'Flint Hill',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26832,48,352,'Floyd',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26833,48,1757,'Ford',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26834,48,1384,'Forest',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26835,48,1781,'Fork Union',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26836,48,1753,'Fort Belvoir',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26837,48,127,'Fort Blackmore',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26838,48,1764,'Fort Defiance',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26839,48,1800,'Fort Eustis',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26840,48,1794,'Fort Lee',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26841,48,1795,'Fort Mitchell',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26842,48,1801,'Fort Monroe',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26843,48,1769,'Fort Valley',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26844,48,1779,'Foster',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26845,48,1802,'Franklin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26846,48,1114,'Franktown',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26847,48,1803,'Fredericksburg',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26848,48,1804,'Fredericksburg',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26849,48,683,'Fredericksburg',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26850,48,1770,'Free Union',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26851,48,1079,'Freeman',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26852,48,713,'Fries',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26853,48,386,'Front Royal',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26854,48,1760,'Ft Myer',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26855,48,1120,'Fulks Run',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26856,48,1782,'Gainesville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26857,48,1805,'Galax',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26858,48,683,'Garrisonville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26859,48,1079,'Gasburg',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26860,48,127,'Gate City',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26861,48,92,'Glade Hill',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26862,48,71,'Glade Spring',1,10237,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(26863,48,706,'Gladstone',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26864,48,694,'Gladys',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26865,48,1783,'Glasgow',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26866,48,1806,'Glen Allen',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26867,48,1553,'Glen Lyn',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26868,48,1778,'Glen Wilton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26869,48,1218,'Gloucester',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26870,48,1218,'Gloucester Point',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26871,48,1772,'Goldvein',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26872,48,1773,'Goochland',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26873,48,1384,'Goode',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26874,48,1384,'Goodview',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26875,48,177,'Gordonsville',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26876,48,809,'Gore',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26877,48,1783,'Goshen',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26878,48,68,'Graves Mill',1,10787,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(26879,48,1753,'Great Falls',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26880,48,1799,'Green Bay',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26881,48,1750,'Greenbackville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26882,48,1750,'Greenbush',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26883,48,1764,'Greenville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26884,48,1753,'Greenway',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26885,48,1770,'Greenwood',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26886,48,1777,'Gretna',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26887,48,1779,'Grimstead',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26888,48,1120,'Grottoes',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26889,48,475,'Grundy',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26890,48,1773,'Gum Spring',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26891,48,1779,'Gwynn',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26892,48,1750,'Hacksneck',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26893,48,1773,'Hadensville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26894,48,1376,'Hague',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26895,48,1123,'Halifax',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26896,48,1779,'Hallieford',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26897,48,1750,'Hallwood',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26898,48,1751,'Hamilton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26899,48,1799,'Hampden Sydney',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26900,48,1801,'Hampton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26901,48,823,'Hampton',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26902,48,1762,'Hanover',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26903,48,1750,'Harborton',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26904,48,92,'Hardy',1,109,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26905,48,286,'Hardyville',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26906,48,1807,'Harrisonburg',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26907,48,286,'Hartfield',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26908,48,683,'Hartwood',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26909,48,1218,'Hayes',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26910,48,1782,'Haymarket',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26911,48,358,'Haynesville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26912,48,1774,'Haysi',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26913,48,68,'Haywood',1,11779,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(26914,48,1305,'Head Waters',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26915,48,1403,'Heathsville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26916,48,92,'Henry',1,112,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26917,48,1753,'Herndon',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26918,48,1806,'Highland Springs',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26919,48,115,'Hillsville',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26920,48,127,'Hiltons',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26921,48,1120,'Hinton',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26922,48,136,'Hiwassee',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26923,48,80,'Honaker',1,12414,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(26924,48,68,'Hood',1,12435,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(26925,48,1808,'Hopewell',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26926,48,1750,'Horntown',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26927,48,552,'Horsepen',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26928,48,741,'Hot Springs',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26929,48,1761,'Howardsville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26930,48,1384,'Huddleston',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26931,48,1779,'Hudgins',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26932,48,1772,'Hume',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26933,48,1786,'Huntly',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26934,48,475,'Hurley',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26935,48,1777,'Hurt',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26936,48,798,'Hustle',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26937,48,713,'Independence',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26938,48,352,'Indian Valley',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26939,48,1125,'Iron Gate',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26940,48,1177,'Irvington',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26941,48,1771,'Isle Of Wight',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26942,48,1765,'Ivanhoe',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26943,48,1780,'Ivor',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26944,48,1770,'Ivy',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26945,48,286,'Jamaica',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26946,48,1809,'Jamestown',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26947,48,1114,'Jamesville',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26948,48,1796,'Jarratt',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26949,48,1777,'Java',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26950,48,1756,'Jeffersonton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26951,48,1750,'Jenkins Bridge',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26952,48,1792,'Jersey',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26953,48,1754,'Jetersville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26954,48,552,'Jewell Ridge',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26955,48,51,'Jonesville',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26956,48,1777,'Keeling',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26957,48,475,'Keen Mountain',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26958,48,1770,'Keene',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26959,48,1120,'Keezletown',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26960,48,1750,'Keller',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26961,48,1795,'Kenbridge',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26962,48,1781,'Kents Store',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26963,48,51,'Keokee',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26964,48,1770,'Keswick',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26965,48,324,'Keysville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26966,48,1177,'Kilmarnock',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26967,48,1784,'King And Queen Court House',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26968,48,1792,'King George',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26969,48,1766,'King William',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26970,48,1376,'Kinsale',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26971,48,1111,'La Crosse',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26972,48,1120,'Lacey Spring',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26973,48,823,'Lackey',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26974,48,818,'Ladysmith',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26975,48,115,'Lambsburg',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26976,48,1177,'Lancaster',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26977,48,798,'Laneview',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26978,48,1767,'Lanexa',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26979,48,115,'Laurel Fork',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26980,48,1079,'Lawrenceville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26981,48,80,'Lebanon',1,14779,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(26982,48,1751,'Leesburg',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26983,48,68,'Leon',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26984,48,1810,'Lexington',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26985,48,823,'Lightfoot',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26986,48,1756,'Lignum',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26987,48,1751,'Lincoln',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26988,48,386,'Linden',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26989,48,1120,'Linville',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26990,48,1784,'Little Plymouth',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26991,48,1177,'Lively',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26992,48,68,'Locust Dale',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26993,48,177,'Locust Grove',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26994,48,286,'Locust Hill',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26995,48,1750,'Locustville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26996,48,1777,'Long Island',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26997,48,798,'Loretto',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26998,48,1753,'Lorton',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(26999,48,1403,'Lottsburg',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27000,48,498,'Louisa',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27001,48,1751,'Lovettsville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27002,48,706,'Lovingston',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27003,48,1125,'Low Moor',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27004,48,1384,'Lowry',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27005,48,1795,'Lunenburg',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27006,48,485,'Luray',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27007,48,694,'Lynch Station',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27008,48,1811,'Lynchburg',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27009,48,1764,'Lyndhurst',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27010,48,1114,'Machipongo',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27011,48,1812,'Macon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27012,48,68,'Madison',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27013,48,1755,'Madison Heights',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27014,48,1773,'Maidens',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27015,48,1773,'Manakin Sabot',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27016,48,1813,'Manassas',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27017,48,1814,'Manassas',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27018,48,1782,'Manassas',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27019,48,1754,'Mannboro',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27020,48,1766,'Manquin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27021,48,1750,'Mappsville',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27022,48,1763,'Marion',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27023,48,1114,'Marionville',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27024,48,1772,'Markham',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27025,48,1772,'Marshall',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27026,48,1815,'Martinsville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27027,48,1218,'Maryus',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27028,48,1784,'Mascot',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27029,48,1779,'Mathews',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27030,48,1784,'Mattaponi',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27031,48,1769,'Maurertown',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27032,48,475,'Mavisdale',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27033,48,1765,'Max Meadows',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27034,48,475,'Maxie',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27035,48,1774,'Mc Clure',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27036,48,72,'Mc Coy',1,129,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27037,48,1305,'Mc Dowell',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27038,48,1120,'Mc Gaheysville',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27039,48,1757,'Mc Kenney',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27040,48,1753,'Mc Lean',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27041,48,1759,'Meadows Of Dan',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27042,48,71,'Meadowview',1,232,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27043,48,1750,'Mears',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27044,48,1762,'Mechanicsville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27045,48,1799,'Meherrin',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27046,48,1750,'Melfa',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27047,48,71,'Mendota',1,234,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27048,48,1079,'Meredithville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27049,48,1753,'Merrifield',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27050,48,1177,'Merry Point',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27051,48,1764,'Middlebrook',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27052,48,1751,'Middleburg',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27053,48,809,'Middletown',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27054,48,386,'Middletown',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27055,48,1772,'Midland',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27056,48,1504,'Midlothian',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27057,48,818,'Milford',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27058,48,741,'Millboro',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27059,48,798,'Millers Tavern',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27060,48,40,'Millwood',1,17460,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27061,48,498,'Mineral',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27062,48,1764,'Mint Spring',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27063,48,1756,'Mitchells',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27064,48,1750,'Modest Town',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27065,48,1177,'Mollusk',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27066,48,1384,'Moneta',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27067,48,1755,'Monroe',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27068,48,706,'Montebello',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27069,48,1305,'Monterey',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27070,48,1762,'Montpelier',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27071,48,177,'Montpelier Station',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27072,48,1376,'Montross',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27073,48,1384,'Montvale',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27074,48,1779,'Moon',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27075,48,1177,'Morattico',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27076,48,1504,'Moseley',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27077,48,1120,'Mount Crawford',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27078,48,1376,'Mount Holly',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27079,48,1769,'Mount Jackson',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27080,48,1764,'Mount Sidney',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27081,48,1764,'Mount Solon',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27082,48,1753,'Mount Vernon',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27083,48,713,'Mouth Of Wilson',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27084,48,1305,'Mustoe',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27085,48,1553,'Narrows',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27086,48,694,'Naruna',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27087,48,1114,'Nassawadox',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27088,48,1123,'Nathalie',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27089,48,1783,'Natural Bridge',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27090,48,1783,'Natural Bridge Station',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27091,48,706,'Nellysford',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27092,48,1111,'Nelson',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27093,48,1750,'Nelsonia',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27094,48,1761,'New Canton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27095,48,1332,'New Castle',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27096,48,1750,'New Church',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27097,48,1764,'New Hope',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27098,48,1767,'New Kent',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27099,48,1769,'New Market',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27100,48,1779,'New Point',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27101,48,136,'New River',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27102,48,136,'Newbern',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27103,48,1753,'Newington',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27104,48,1553,'Newport',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27105,48,1800,'Newport News',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27106,48,1780,'Newsoms',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27107,48,1784,'Newtown',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27108,48,127,'Nickelsville',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27109,48,1792,'Ninde',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27110,48,1782,'Nokesville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27111,48,1774,'Nora',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27112,48,1816,'Norfolk',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27113,48,1809,'Norge',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27114,48,1779,'North',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27115,48,1770,'North Garden',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27116,48,552,'North Tazewell',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27117,48,1817,'Norton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27118,48,706,'Norwood',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27119,48,1776,'Nottoway',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27120,48,1177,'Nuttsville',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27121,48,1750,'Oak Hall',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27122,48,68,'Oakpark',1,116,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27123,48,1753,'Oakton',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27124,48,475,'Oakwood',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27125,48,1782,'Occoquan',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27126,48,1773,'Oilville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27127,48,1376,'Oldhams',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27128,48,1750,'Onancock',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27129,48,1779,'Onemo',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27130,48,1750,'Onley',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27131,48,1403,'Ophelia',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27132,48,177,'Orange',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27133,48,1218,'Ordinary',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27134,48,1778,'Oriskany',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27135,48,1769,'Orkney Springs',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27136,48,1772,'Orlean',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27137,48,1114,'Oyster',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27138,48,1751,'Paeonian Springs',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27139,48,1332,'Paint Bank',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27140,48,1750,'Painter',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27141,48,1781,'Palmyra',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27142,48,1758,'Pamplin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27143,48,40,'Paris',1,20469,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27144,48,1750,'Parksley',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27145,48,136,'Parrott',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27146,48,1804,'Partlow',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27147,48,1759,'Patrick Springs',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27148,48,1553,'Pearisburg',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27149,48,1553,'Pembroke',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27150,48,92,'Penhook',1,178,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27151,48,1120,'Penn Laird',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27152,48,51,'Pennington Gap',1,20791,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27153,48,1818,'Petersburg',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27154,48,324,'Phenix',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27155,48,1751,'Philomont',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27156,48,475,'Pilgrims Knob',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27157,48,72,'Pilot',1,21066,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27158,48,706,'Piney River',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27159,48,1777,'Pittsville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27160,48,1120,'Pleasant Valley',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27161,48,552,'Pocahontas',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27162,48,1819,'Poquoson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27163,48,1779,'Port Haywood',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27164,48,1120,'Port Republic',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27165,48,818,'Port Royal',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27166,48,1820,'Portsmouth',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27167,48,1585,'Pound',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27168,48,552,'Pounding Mill',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27169,48,1812,'Powhatan',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27170,48,68,'Pratts',1,129,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27171,48,1794,'Prince George',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27172,48,1799,'Prospect',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27173,48,1767,'Providence Forge',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27174,48,136,'Pulaski',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27175,48,1750,'Pungoteague',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27176,48,1751,'Purcellville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27177,48,1782,'Quantico',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27178,48,683,'Quantico',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27179,48,1769,'Quicksburg',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27180,48,1750,'Quinby',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27181,48,63,'Quinque',1,104,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27182,48,1767,'Quinton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27183,48,1821,'Radford',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27184,48,68,'Radiant',1,130,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27185,48,324,'Randolph',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27186,48,1783,'Raphine',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27187,48,1756,'Rapidan',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27188,48,818,'Rappahannock Academy',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27189,48,475,'Raven',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27190,48,1079,'Rawlings',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27191,48,1772,'Rectortown',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27192,48,552,'Red Ash',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27193,48,324,'Red House',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27194,48,324,'Red Oak',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27195,48,92,'Redwood',1,191,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27196,48,1403,'Reedville',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27197,48,1772,'Remington',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27198,48,1771,'Rescue',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27199,48,1753,'Reston',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27200,48,68,'Reva',1,131,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27201,48,177,'Rhoadesville',1,110,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27202,48,1799,'Rice',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27203,48,1553,'Rich Creek',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27204,48,1756,'Richardsville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27205,48,552,'Richlands',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27206,48,1504,'Richmond',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27207,48,1806,'Richmond',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27208,48,1822,'Richmond',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27209,48,28,'Ridgeway',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27210,48,485,'Rileyville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27211,48,72,'Riner',1,183,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27212,48,1777,'Ringgold',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27213,48,1553,'Ripplemead',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27214,48,1756,'Rixeyville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27215,48,1778,'Roanoke',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27216,48,1775,'Roanoke',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27217,48,1823,'Roanoke',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27218,48,1211,'Roanoke',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27219,48,68,'Rochelle',1,135,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27220,48,1783,'Rockbridge Baths',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27221,48,1762,'Rockville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27222,48,1768,'Rocky Gap',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27223,48,92,'Rocky Mount',1,197,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27224,48,1792,'Rollins Fork',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27225,48,51,'Rose Hill',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27226,48,80,'Rosedale',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27227,48,706,'Roseland',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27228,48,1751,'Round Hill',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27229,48,475,'Rowe',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27230,48,683,'Ruby',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27231,48,63,'Ruckersville',1,112,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27232,48,1765,'Rural Retreat',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27233,48,694,'Rustburg',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27234,48,818,'Ruther Glen',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27235,48,1787,'Ruthville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27236,48,51,'Saint Charles',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27237,48,1585,'Saint Paul',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27238,48,1784,'Saint Stephens Church',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27239,48,1211,'Salem',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27240,48,1763,'Saltville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27241,48,286,'Saluda',1,109,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27242,48,1806,'Sandston',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27243,48,1773,'Sandy Hook',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27244,48,1777,'Sandy Level',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27245,48,1376,'Sandy Point',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27246,48,1750,'Sanford',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27247,48,324,'Saxe',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27248,48,1750,'Saxis',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27249,48,1218,'Schley',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27250,48,706,'Schuyler',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27251,48,1123,'Scottsburg',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27252,48,1770,'Scottsville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27253,48,823,'Seaford',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27254,48,1792,'Sealston',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27255,48,1114,'Seaview',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27256,48,1780,'Sedley',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27257,48,1125,'Selma',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27258,48,1218,'Severn',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27259,48,1784,'Shacklefords',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27260,48,358,'Sharps',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27261,48,72,'Shawsville',1,192,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27262,48,485,'Shenandoah',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27263,48,706,'Shipman',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27264,48,475,'Shortt Gap',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27265,48,1120,'Singers Glen',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27266,48,1796,'Skippers',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27267,48,1111,'Skipwith',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27268,48,1771,'Smithfield',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27269,48,177,'Somerset',1,119,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27270,48,1772,'Somerville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27271,48,1123,'South Boston',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27272,48,1111,'South Hill',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27273,48,818,'Sparta',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27274,48,1765,'Speedwell',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27275,48,28,'Spencer',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27276,48,1786,'Sperryville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27277,48,1804,'Spotsylvania',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27278,48,1758,'Spout Spring',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27279,48,1078,'Spring Grove',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27280,48,1753,'Springfield',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27281,48,683,'Stafford',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27282,48,1553,'Staffordsville',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27283,48,63,'Stanardsville',1,122,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27284,48,485,'Stanley',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27285,48,28,'Stanleytown',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27286,48,809,'Star Tannery',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27287,48,1773,'State Farm',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27288,48,1824,'Staunton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27289,48,1764,'Steeles Tavern',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27290,48,809,'Stephens City',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27291,48,809,'Stephenson',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27292,48,1751,'Sterling',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27293,48,1756,'Stevensburg',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27294,48,1784,'Stevensville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27295,48,289,'Stony Creek',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27296,48,1769,'Strasburg',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27297,48,1376,'Stratford',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27298,48,1759,'Stuart',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27299,48,1764,'Stuarts Draft',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27300,48,1762,'Studley',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27301,48,1825,'Suffolk',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27302,48,1763,'Sugar Grove',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27303,48,1772,'Sumerduck',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27304,48,1078,'Surry',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27305,48,1779,'Susan',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27306,48,289,'Sussex',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27307,48,1757,'Sutherland',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27308,48,1777,'Sutherlin',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27309,48,1755,'Sweet Briar',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27310,48,1764,'Swoope',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27311,48,80,'Swords Creek',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27312,48,68,'Syria',1,151,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27313,48,1750,'Tangier',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27314,48,552,'Tannersville',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27315,48,798,'Tappahannock',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27316,48,1750,'Tasley',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27317,48,552,'Tazewell',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27318,48,1750,'Temperanceville',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27319,48,1384,'Thaxton',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27320,48,1772,'The Plains',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27321,48,1804,'Thornburg',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27322,48,1120,'Timberville',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27323,48,1809,'Toano',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27324,48,1769,'Toms Brook',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27325,48,286,'Topping',1,123,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27326,48,1114,'Townsend',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27327,48,498,'Trevilians',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27328,48,1782,'Triangle',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27329,48,713,'Troutdale',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27330,48,1778,'Troutville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27331,48,1781,'Troy',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27332,48,706,'Tyro',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27333,48,92,'Union Hall',1,241,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27334,48,177,'Unionville',1,139,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27335,48,1822,'University Of Richmond',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27336,48,1772,'Upperville',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27337,48,286,'Urbanna',1,126,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27338,48,1079,'Valentines',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27339,48,475,'Vansant',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27340,48,1123,'Vernon Hill',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27341,48,1764,'Verona',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27342,48,1759,'Vesta',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27343,48,1783,'Vesuvius',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27344,48,1795,'Victoria',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27345,48,1753,'Vienna',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27346,48,1756,'Viewtown',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27347,48,358,'Village',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27348,48,1384,'Villamont',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27349,48,1775,'Vinton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27350,48,1123,'Virgilina',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27351,48,1826,'Virginia Beach',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27352,48,1750,'Wachapreague',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27353,48,286,'Wake',1,129,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27354,48,289,'Wakefield',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27355,48,1784,'Walkerton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27356,48,1750,'Wallops Island',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27357,48,1114,'Wardtown',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27358,48,1218,'Ware Neck',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27359,48,1079,'Warfield',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27360,48,741,'Warm Springs',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27361,48,1772,'Warrenton',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27362,48,358,'Warsaw',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27363,48,1786,'Washington',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27364,48,286,'Water View',1,132,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27365,48,1751,'Waterford',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27366,48,1750,'Wattsville',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27367,48,289,'Waverly',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27368,48,1827,'Waynesboro',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27369,48,127,'Weber City',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27370,48,1177,'Weems',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27371,48,1764,'West Augusta',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27372,48,1753,'West Mclean',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27373,48,1766,'West Point',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27374,48,1764,'Weyers Cave',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27375,48,1770,'White Hall',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27376,48,1218,'White Marsh',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27377,48,1079,'White Plains',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27378,48,40,'White Post',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27379,48,1177,'White Stone',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27380,48,713,'Whitetop',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27381,48,475,'Whitewood',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27382,48,1218,'Wicomico',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27383,48,1403,'Wicomico Church',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27384,48,1809,'Williamsburg',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27385,48,1828,'Williamsburg',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27386,48,741,'Williamsville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27387,48,352,'Willis',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27388,48,1114,'Willis Wharf',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27389,48,1757,'Wilsons',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27390,48,809,'Winchester',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27391,48,1829,'Winchester',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27392,48,1771,'Windsor',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27393,48,1761,'Wingina',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27394,48,92,'Wirtz',1,268,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27395,48,1585,'Wise',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27396,48,1750,'Withams',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27397,48,475,'Wolford',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27398,48,68,'Wolftown',1,168,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27399,48,68,'Woodberry Forest',1,170,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27400,48,1782,'Woodbridge',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27401,48,818,'Woodford',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27402,48,115,'Woodlawn',1,126,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27403,48,1218,'Woods Cross Roads',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27404,48,1769,'Woodstock',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27405,48,1786,'Woodville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27406,48,1759,'Woolwine',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27407,48,324,'Wylliesburg',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27408,48,1765,'Wytheville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27409,48,289,'Yale',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27410,48,823,'Yorktown',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27411,48,1376,'Zacata',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27412,48,1771,'Zuni',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27413,47,71,'Adamant',1,80,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(27414,47,792,'Albany',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27415,47,1830,'Alburgh',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27416,47,1831,'Arlington',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27417,47,1832,'Ascutney',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27418,47,798,'Averill',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27419,47,92,'Bakersfield',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27420,47,1832,'Barnard',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27421,47,1833,'Barnet',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27422,47,71,'Barre',1,1553,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(27423,47,792,'Barton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27424,47,792,'Beebe Plain',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27425,47,798,'Beecher Falls',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27426,47,279,'Bellows Falls',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27427,47,1834,'Belmont',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27428,47,1835,'Belvidere Center',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27429,47,1831,'Bennington',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27430,47,1834,'Benson',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27431,47,1832,'Bethel',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27432,47,1834,'Bomoseen',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27433,47,1831,'Bondville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27434,47,177,'Bradford',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27435,47,1834,'Brandon',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27436,47,279,'Brattleboro',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27437,47,1832,'Bridgewater',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27438,47,1832,'Bridgewater Corners',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27439,47,1836,'Bridport',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27440,47,1836,'Bristol',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27441,47,177,'Brookfield',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27442,47,1832,'Brownsville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27443,47,1837,'Burlington',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27444,47,71,'Cabot',1,3711,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(27445,47,71,'Calais',1,3744,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(27446,47,1837,'Cambridge',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27447,47,279,'Cambridgeport',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27448,47,798,'Canaan',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27449,47,1834,'Castleton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27450,47,1832,'Cavendish',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27451,47,1834,'Center Rutland',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27452,47,1837,'Charlotte',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27453,47,177,'Chelsea',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27454,47,1832,'Chester',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27455,47,1832,'Chester Depot',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27456,47,1834,'Chittenden',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27457,47,1837,'Colchester',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27458,47,798,'Concord',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27459,47,177,'Corinth',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27460,47,792,'Coventry',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27461,47,792,'Craftsbury',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27462,47,792,'Craftsbury Common',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27463,47,1834,'Cuttingsville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27464,47,1834,'Danby',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27465,47,1833,'Danville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27466,47,792,'Derby',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27467,47,792,'Derby Line',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27468,47,1831,'Dorset',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27469,47,1831,'East Arlington',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27470,47,71,'East Barre',1,7617,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(27471,47,92,'East Berkshire',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27472,47,1833,'East Burke',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27473,47,71,'East Calais',1,7637,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(27474,47,792,'East Charleston',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27475,47,177,'East Corinth',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27476,47,1831,'East Dorset',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27477,47,279,'East Dover',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27478,47,92,'East Fairfield',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27479,47,1833,'East Hardwick',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27480,47,798,'East Haven',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27481,47,1836,'East Middlebury',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27482,47,71,'East Montpelier',1,7715,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(27483,47,1834,'East Poultney',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27484,47,177,'East Randolph',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27485,47,1833,'East Ryegate',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27486,47,1833,'East Saint Johnsbury',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27487,47,177,'East Thetford',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27488,47,1834,'East Wallingford',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27489,47,1835,'Eden',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27490,47,1835,'Eden Mills',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27491,47,92,'Enosburg Falls',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27492,47,1837,'Essex',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27493,47,1837,'Essex Junction',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27494,47,1834,'Fair Haven',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27495,47,1837,'Fairfax',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27496,47,92,'Fairfield',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27497,47,177,'Fairlee',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27498,47,1836,'Ferrisburgh',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27499,47,1834,'Florence',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27500,47,1834,'Forest Dale',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27501,47,92,'Franklin',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27502,47,1832,'Gaysville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27503,47,798,'Gilman',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27504,47,792,'Glover',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27505,47,279,'Grafton',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27506,47,798,'Granby',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27507,47,1830,'Grand Isle',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27508,47,71,'Graniteville',1,10723,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(27509,47,1836,'Granville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27510,47,792,'Greensboro',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27511,47,792,'Greensboro Bend',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27512,47,1833,'Groton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27513,47,798,'Guildhall',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27514,47,1836,'Hancock',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27515,47,1833,'Hardwick',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27516,47,1832,'Hartford',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27517,47,1832,'Hartland',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27518,47,1832,'Hartland Four Corners',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27519,47,92,'Highgate Center',1,113,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27520,47,92,'Highgate Springs',1,114,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27521,47,1837,'Hinesburg',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27522,47,1837,'Huntington',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27523,47,1835,'Hyde Park',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27524,47,1834,'Hydeville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27525,47,792,'Irasburg',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27526,47,798,'Island Pond',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27527,47,1830,'Isle La Motte',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27528,47,279,'Jacksonville',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27529,47,279,'Jamaica',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27530,47,1835,'Jeffersonville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27531,47,1837,'Jericho',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27532,47,1835,'Johnson',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27533,47,1837,'Jonesville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27534,47,1834,'Killington',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27535,47,1835,'Lake Elmore',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27536,47,279,'Londonderry',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27537,47,792,'Lowell',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27538,47,1833,'Lower Waterford',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27539,47,1832,'Ludlow',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27540,47,798,'Lunenburg',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27541,47,1833,'Lyndon',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27542,47,1833,'Lyndon Center',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27543,47,1833,'Lyndonville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27544,47,1831,'Manchester',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27545,47,1831,'Manchester Center',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27546,47,279,'Marlboro',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27547,47,71,'Marshfield',1,16436,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(27548,47,1833,'Mc Indoe Falls',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27549,47,1836,'Middlebury',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27550,47,1834,'Middletown Springs',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27551,47,1837,'Milton',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27552,47,1836,'Monkton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27553,47,92,'Montgomery',1,153,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27554,47,92,'Montgomery Center',1,154,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27555,47,71,'Montpelier',1,17840,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(27556,47,71,'Moretown',1,17944,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(27557,47,792,'Morgan',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27558,47,1835,'Morrisville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27559,47,1835,'Moscow',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27560,47,1834,'Mount Holly',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27561,47,1836,'New Haven',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27562,47,177,'Newbury',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27563,47,279,'Newfane',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27564,47,792,'Newport',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27565,47,792,'Newport Center',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27566,47,1831,'North Bennington',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27567,47,1834,'North Clarendon',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27568,47,798,'North Concord',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27569,47,1836,'North Ferrisburgh',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27570,47,1832,'North Hartland',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27571,47,1830,'North Hero',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27572,47,1835,'North Hyde Park',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27573,47,71,'North Montpelier',1,19355,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(27574,47,1832,'North Pomfret',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27575,47,1831,'North Pownal',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27576,47,1832,'North Springfield',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27577,47,177,'North Thetford',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27578,47,792,'North Troy',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27579,47,71,'Northfield',1,19435,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(27580,47,71,'Northfield Falls',1,19440,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(27581,47,798,'Norton',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27582,47,1832,'Norwich',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27583,47,792,'Orleans',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27584,47,1836,'Orwell',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27585,47,1833,'Passumpsic',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27586,47,1834,'Pawlet',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27587,47,1833,'Peacham',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27588,47,1832,'Perkinsville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27589,47,1831,'Peru',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27590,47,1834,'Pittsfield',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27591,47,1834,'Pittsford',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27592,47,71,'Plainfield',1,277,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(27593,47,1832,'Plymouth',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27594,47,177,'Post Mills',1,106,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27595,47,1834,'Poultney',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27596,47,1831,'Pownal',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27597,47,1834,'Proctor',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27598,47,1832,'Proctorsville',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27599,47,279,'Putney',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27600,47,1832,'Quechee',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27601,47,177,'Randolph',1,108,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27602,47,177,'Randolph Center',1,109,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27603,47,1832,'Reading',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27604,47,1831,'Readsboro',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27605,47,92,'Richford',1,193,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27606,47,1837,'Richmond',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27607,47,1836,'Ripton',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27608,47,1832,'Rochester',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27609,47,1836,'Roxbury',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27610,47,1831,'Rupert',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27611,47,1834,'Rutland',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27612,47,92,'Saint Albans',1,206,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27613,47,92,'Saint Albans Bay',1,207,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27614,47,1833,'Saint Johnsbury',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27615,47,1833,'Saint Johnsbury Center',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27616,47,1836,'Salisbury',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27617,47,279,'Saxtons River',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27618,47,1831,'Shaftsbury',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27619,47,1832,'Sharon',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27620,47,1833,'Sheffield',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27621,47,1837,'Shelburne',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27622,47,92,'Sheldon',1,219,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27623,47,92,'Sheldon Springs',1,220,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27624,47,1836,'Shoreham',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27625,47,71,'South Barre',1,320,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27626,47,1837,'South Burlington',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27627,47,1830,'South Hero',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27628,47,279,'South Londonderry',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27629,47,279,'South Newfane',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27630,47,1832,'South Pomfret',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27631,47,1832,'South Royalton',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27632,47,1833,'South Ryegate',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27633,47,177,'South Strafford',1,120,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27634,47,1832,'South Woodstock',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27635,47,1832,'Springfield',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27636,47,1831,'Stamford',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27637,47,1836,'Starksboro',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27638,47,1832,'Stockbridge',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27639,47,1835,'Stowe',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27640,47,177,'Strafford',1,125,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27641,47,1833,'Sutton',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27642,47,92,'Swanton',1,233,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27643,47,1832,'Taftsville',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27644,47,177,'Thetford',1,130,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27645,47,177,'Thetford Center',1,131,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27646,47,177,'Topsham',1,133,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27647,47,279,'Townshend',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27648,47,792,'Troy',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27649,47,177,'Tunbridge',1,135,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27650,47,1837,'Underhill',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27651,47,1837,'Underhill Center',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27652,47,1836,'Vergennes',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27653,47,279,'Vernon',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27654,47,177,'Vershire',1,141,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27655,47,71,'Waitsfield',1,355,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27656,47,1834,'Wallingford',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27657,47,279,'Wardsboro',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27658,47,71,'Warren',1,357,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27659,47,177,'Washington',1,146,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27660,47,71,'Waterbury',1,365,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27661,47,71,'Waterbury Center',1,366,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27662,47,1835,'Waterville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27663,47,71,'Websterville',1,371,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27664,47,1834,'Wells',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27665,47,177,'Wells River',1,148,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27666,47,1833,'West Burke',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27667,47,792,'West Charleston',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27668,47,1833,'West Danville',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27669,47,279,'West Dover',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27670,47,279,'West Dummerston',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27671,47,177,'West Fairlee',1,150,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27672,47,792,'West Glover',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27673,47,279,'West Halifax',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27674,47,1832,'West Hartford',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27675,47,177,'West Newbury',1,151,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27676,47,1834,'West Pawlet',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27677,47,1831,'West Rupert',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27678,47,1834,'West Rutland',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27679,47,177,'West Topsham',1,153,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27680,47,279,'West Townshend',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27681,47,279,'West Wardsboro',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27682,47,792,'Westfield',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27683,47,1837,'Westford',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27684,47,279,'Westminster',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27685,47,279,'Westminster Station',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27686,47,1832,'Weston',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27687,47,1832,'White River Junction',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27688,47,1836,'Whiting',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27689,47,279,'Whitingham',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27690,47,1832,'Wilder',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27691,47,177,'Williamstown',1,156,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27692,47,279,'Williamsville',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27693,47,1837,'Williston',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27694,47,279,'Wilmington',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27695,47,1832,'Windsor',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27696,47,1837,'Winooski',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27697,47,1835,'Wolcott',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27698,47,71,'Woodbury',1,394,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27699,47,1832,'Woodstock',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27700,47,71,'Worcester',1,396,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27701,49,1838,'Aberdeen',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27702,49,1839,'Acme',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27703,49,684,'Addy',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27704,49,528,'Adna',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27705,49,1840,'Airway Heights',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27706,49,1841,'Albion',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27707,49,561,'Allyn',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27708,49,147,'Almira',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27709,49,1838,'Amanda Park',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27710,49,100,'Amboy',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27711,49,1842,'Anacortes',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27712,49,1843,'Anatone',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27713,49,367,'Anderson Island',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27714,49,1844,'Appleton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27715,49,1845,'Ardenvoir',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27716,49,1846,'Ariel',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27717,49,1847,'Arlington',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27718,49,367,'Ashford',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27719,49,1843,'Asotin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27720,49,1708,'Auburn',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27721,49,1848,'Bainbridge Island',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27722,49,1708,'Baring',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27723,49,100,'Battle Ground',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27724,49,1849,'Bay Center',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27725,49,1850,'Beaver',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27726,49,561,'Belfair',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27727,49,1708,'Bellevue',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27728,49,1839,'Bellingham',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27729,49,1841,'Belmont',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27730,49,235,'Benge',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27731,49,107,'Benton City',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27732,49,148,'Beverly',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27733,49,1844,'Bickleton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27734,49,1844,'Bingen',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27735,49,1708,'Black Diamond',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27736,49,1839,'Blaine',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27737,49,277,'Blakely Island',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27738,49,367,'Bonney Lake',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27739,49,1708,'Bothell',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27740,49,1847,'Bothell',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27741,49,1842,'Bow',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27742,49,1851,'Boyds',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27743,49,1848,'Bremerton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27744,49,1852,'Brewster',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27745,49,254,'Bridgeport',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27746,49,30,'Brinnon',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27747,49,1853,'Brownstown',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27748,49,100,'Brush Prairie',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27749,49,367,'Buckley',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27750,49,1198,'Bucoda',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27751,49,1853,'Buena',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27752,49,1854,'Burbank',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27753,49,1848,'Burley',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27754,49,1842,'Burlington',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27755,49,1708,'Burton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27756,49,1855,'Camano Island',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27757,49,100,'Camas',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27758,49,367,'Camp Murray',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27759,49,367,'Carbonado',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27760,49,1850,'Carlsborg',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27761,49,1852,'Carlton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27762,49,1708,'Carnation',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27763,49,1846,'Carrolls',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27764,49,1856,'Carson',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27765,49,1845,'Cashmere',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27766,49,1846,'Castle Rock',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27767,49,1857,'Cathlamet',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27768,49,1844,'Centerville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27769,49,528,'Centralia',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27770,49,1840,'Chattaroy',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27771,49,528,'Chehalis',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27772,49,1845,'Chelan',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27773,49,1845,'Chelan Falls',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27774,49,1840,'Cheney',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27775,49,684,'Chewelah',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27776,49,30,'Chimacum',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27777,49,1849,'Chinook',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27778,49,528,'Cinebar',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27779,49,1850,'Clallam Bay',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27780,49,1843,'Clarkston',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27781,49,684,'Clayton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27782,49,1858,'Cle Elum',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27783,49,1842,'Clearlake',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27784,49,1855,'Clinton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27785,49,1840,'Colbert',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27786,49,1841,'Colfax',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27787,49,1854,'College Place',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27788,49,1841,'Colton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27789,49,684,'Colville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27790,49,1852,'Conconully',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27791,49,1842,'Concrete',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27792,49,92,'Connell',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27793,49,1842,'Conway',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27794,49,1838,'Copalis Beach',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27795,49,1838,'Copalis Crossing',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27796,49,1838,'Cosmopolis',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27797,49,1846,'Cougar',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27798,49,148,'Coulee City',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27799,49,1852,'Coulee Dam',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27800,49,1855,'Coupeville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27801,49,1853,'Cowiche',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27802,49,147,'Creston',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27803,49,1851,'Curlew',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27804,49,528,'Curtis',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27805,49,1859,'Cusick',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27806,49,1839,'Custer',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27807,49,1844,'Dallesport',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27808,49,1851,'Danville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27809,49,1847,'Darrington',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27810,49,147,'Davenport',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27811,49,143,'Dayton',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27812,49,277,'Deer Harbor',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27813,49,1840,'Deer Park',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27814,49,1839,'Deming',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27815,49,1854,'Dixie',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27816,49,528,'Doty',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27817,49,1845,'Dryden',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27818,49,367,'Dupont',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27819,49,1708,'Duvall',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27820,49,1198,'East Olympia',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27821,49,254,'East Wenatchee',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27822,49,1858,'Easton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27823,49,277,'Eastsound',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27824,49,367,'Eatonville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27825,49,1847,'Edmonds',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27826,49,147,'Edwall',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27827,49,367,'Elbe',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27828,49,148,'Electric City',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27829,49,1840,'Elk',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27830,49,1858,'Ellensburg',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27831,49,1838,'Elma',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27832,49,1852,'Elmer City',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27833,49,92,'Eltopia',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27834,49,1841,'Endicott',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27835,49,1845,'Entiat',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27836,49,1708,'Enumclaw',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27837,49,148,'Ephrata',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27838,49,528,'Ethel',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27839,49,684,'Evans',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27840,49,1847,'Everett',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27841,49,1839,'Everson',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27842,49,1840,'Fairchild Air Force Base',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27843,49,1840,'Fairfield',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27844,49,1708,'Fall City',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27845,49,1841,'Farmington',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27846,49,1708,'Federal Way',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27847,49,1839,'Ferndale',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27848,49,684,'Ford',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27849,49,1850,'Forks',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27850,49,1840,'Four Lakes',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27851,49,367,'Fox Island',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27852,49,1855,'Freeland',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27853,49,277,'Friday Harbor',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27854,49,684,'Fruitland',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27855,49,528,'Galvin',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27856,49,1841,'Garfield',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27857,49,148,'George',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27858,49,684,'Gifford',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27859,49,367,'Gig Harbor',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27860,49,528,'Glenoma',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27861,49,1844,'Glenwood',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27862,49,1847,'Gold Bar',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27863,49,1844,'Goldendale',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27864,49,1853,'Goose Prairie',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27865,49,367,'Graham',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27866,49,148,'Grand Coulee',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27867,49,1853,'Grandview',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27868,49,1853,'Granger',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27869,49,1847,'Granite Falls',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27870,49,561,'Grapeview',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27871,49,1838,'Grayland',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27872,49,1857,'Grays River',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27873,49,1840,'Greenacres',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27874,49,1855,'Greenbank',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27875,49,1842,'Hamilton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27876,49,1848,'Hansville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27877,49,1853,'Harrah',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27878,49,147,'Harrington',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27879,49,148,'Hartline',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27880,49,1841,'Hay',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27881,49,100,'Heisson',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27882,49,1708,'Hobart',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27883,49,561,'Hoodsport',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27884,49,1841,'Hooper',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27885,49,1838,'Hoquiam',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27886,49,1838,'Humptulips',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27887,49,684,'Hunters',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27888,49,1844,'Husum',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27889,49,1849,'Ilwaco',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27890,49,1851,'Inchelium',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27891,49,1847,'Index',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27892,49,1848,'Indianola',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27893,49,1859,'Ione',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27894,49,1708,'Issaquah',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27895,49,1850,'Joyce',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27896,49,92,'Kahlotus',1,122,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27897,49,1846,'Kalama',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27898,49,367,'Kapowsin',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27899,49,1851,'Keller',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27900,49,1846,'Kelso',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27901,49,1708,'Kenmore',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27902,49,107,'Kennewick',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27903,49,1708,'Kent',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27904,49,684,'Kettle Falls',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27905,49,1848,'Keyport',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27906,49,1848,'Kingston',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27907,49,1708,'Kirkland',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27908,49,1858,'Kittitas',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27909,49,1844,'Klickitat',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27910,49,100,'La Center',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27911,49,1842,'La Conner',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27912,49,367,'La Grande',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27913,49,1850,'La Push',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27914,49,1198,'Lacey',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27915,49,1841,'Lacrosse',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27916,49,1847,'Lake Stevens',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27917,49,367,'Lakebay',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27918,49,367,'Lakewood',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27919,49,147,'Lamona',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27920,49,1841,'Lamont',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27921,49,1855,'Langley',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27922,49,1840,'Latah',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27923,49,1851,'Laurier',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27924,49,1845,'Leavenworth',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27925,49,1849,'Lebam',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27926,49,1840,'Liberty Lake',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27927,49,561,'Lilliwaup',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27928,49,147,'Lincoln',1,105,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27929,49,235,'Lind',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27930,49,1198,'Littlerock',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27931,49,1849,'Long Beach',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27932,49,367,'Longbranch',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27933,49,367,'Longmire',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27934,49,1846,'Longview',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27935,49,1852,'Loomis',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27936,49,684,'Loon Lake',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27937,49,277,'Lopez Island',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27938,49,1839,'Lummi Island',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27939,49,1844,'Lyle',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27940,49,1842,'Lyman',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27941,49,1839,'Lynden',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27942,49,1847,'Lynnwood',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27943,49,1853,'Mabton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27944,49,1845,'Malaga',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27945,49,1841,'Malden',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27946,49,1851,'Malo',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27947,49,1838,'Malone',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27948,49,1852,'Malott',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27949,49,1848,'Manchester',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27950,49,254,'Mansfield',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27951,49,1845,'Manson',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27952,49,1839,'Maple Falls',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27953,49,1708,'Maple Valley',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27954,49,1842,'Marblemount',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27955,49,684,'Marcus',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27956,49,148,'Marlin',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27957,49,1840,'Marshall',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27958,49,1847,'Marysville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27959,49,561,'Matlock',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27960,49,148,'Mattawa',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27961,49,1852,'Mazama',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27962,49,367,'Mcchord Afb',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27963,49,1838,'Mccleary',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27964,49,367,'Mckenna',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27965,49,1840,'Mead',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27966,49,1840,'Medical Lake',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27967,49,1708,'Medina',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27968,49,1849,'Menlo',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27969,49,1708,'Mercer Island',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27970,49,92,'Mesa',1,146,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27971,49,1859,'Metaline',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27972,49,1859,'Metaline Falls',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27973,49,1852,'Methow',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27974,49,1840,'Mica',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27975,49,1847,'Mill Creek',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27976,49,367,'Milton',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27977,49,528,'Mineral',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27978,49,1838,'Moclips',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27979,49,147,'Mohler',1,115,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27980,49,1845,'Monitor',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27981,49,1847,'Monroe',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27982,49,1838,'Montesano',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27983,49,528,'Morton',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27984,49,148,'Moses Lake',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27985,49,528,'Mossyrock',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27986,49,1842,'Mount Vernon',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27987,49,1847,'Mountlake Terrace',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27988,49,1853,'Moxee',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27989,49,1847,'Mukilteo',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27990,49,1853,'Naches',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27991,49,1849,'Nahcotta',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27992,49,528,'Napavine',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27993,49,1849,'Naselle',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27994,49,1850,'Neah Bay',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27995,49,1838,'Neilton',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27996,49,1852,'Nespelem',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27997,49,1840,'Newman Lake',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27998,49,1859,'Newport',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(27999,49,1840,'Nine Mile Falls',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28000,49,1839,'Nooksack',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28001,49,30,'Nordland',1,19197,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28002,49,1708,'North Bend',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28003,49,1856,'North Bonneville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28004,49,1847,'North Lakewood',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28005,49,684,'Northport',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28006,49,1855,'Oak Harbor',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28007,49,1841,'Oakesdale',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28008,49,1838,'Oakville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28009,49,1849,'Ocean Park',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28010,49,1838,'Ocean Shores',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28011,49,147,'Odessa',1,127,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28012,49,1852,'Okanogan',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28013,49,1848,'Olalla',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28014,49,277,'Olga',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28015,49,1198,'Olympia',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28016,49,1852,'Omak',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28017,49,528,'Onalaska',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28018,49,277,'Orcas',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28019,49,1851,'Orient',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28020,49,254,'Orondo',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28021,49,1852,'Oroville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28022,49,367,'Orting',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28023,49,235,'Othello',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28024,49,1840,'Otis Orchards',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28025,49,1853,'Outlook',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28026,49,1849,'Oysterville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28027,49,1708,'Pacific',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28028,49,1838,'Pacific Beach',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28029,49,528,'Packwood',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28030,49,254,'Palisades',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28031,49,1841,'Palouse',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28032,49,367,'Paradise Inn',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28033,49,1853,'Parker',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28034,49,92,'Pasco',1,176,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28035,49,1852,'Pateros',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28036,49,107,'Paterson',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28037,49,528,'Pe Ell',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28038,49,1845,'Peshastin',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28039,49,107,'Plymouth',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28040,49,1839,'Point Roberts',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28041,49,240,'Pomeroy',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28042,49,1850,'Port Angeles',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28043,49,1848,'Port Gamble',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28044,49,30,'Port Hadlock',1,219,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(28045,49,30,'Port Ludlow',1,220,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(28046,49,1848,'Port Orchard',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28047,49,30,'Port Townsend',1,222,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28048,49,1848,'Poulsbo',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28049,49,1854,'Prescott',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28050,49,1708,'Preston',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28051,49,107,'Prosser',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28052,49,1841,'Pullman',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28053,49,367,'Puyallup',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28054,49,30,'Quilcene',1,225,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28055,49,1838,'Quinault',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28056,49,148,'Quincy',1,102,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28057,49,1198,'Rainier',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28058,49,528,'Randle',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28059,49,1708,'Ravensdale',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28060,49,1849,'Raymond',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28061,49,147,'Reardan',1,140,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28062,49,1708,'Redmond',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28063,49,1708,'Redondo',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28064,49,1708,'Renton',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28065,49,1851,'Republic',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28066,49,1848,'Retsil',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28067,49,684,'Rice',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28068,49,107,'Richland',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28069,49,100,'Ridgefield',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28070,49,235,'Ritzville',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28071,49,1852,'Riverside',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28072,49,1198,'Rochester',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28073,49,254,'Rock Island',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28074,49,1840,'Rockford',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28075,49,1842,'Rockport',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28076,49,1848,'Rollingbay',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28077,49,1858,'Ronald',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28078,49,1844,'Roosevelt',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28079,49,1841,'Rosalia',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28080,49,1857,'Rosburg',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28081,49,1858,'Roslyn',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28082,49,367,'Roy',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28083,49,148,'Royal City',1,106,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28084,49,1846,'Ryderwood',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28085,49,1841,'Saint John',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28086,49,528,'Salkum',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28087,49,1708,'Sammamish',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28088,49,1838,'Satsop',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28089,49,1848,'Seabeck',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28090,49,1708,'Seahurst',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28091,49,1708,'Seattle',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28092,49,1849,'Seaview',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28093,49,1842,'Sedro Woolley',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28094,49,1850,'Sekiu',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28095,49,1853,'Selah',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28096,49,1850,'Sequim',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28097,49,277,'Shaw Island',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28098,49,561,'Shelton',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28099,49,1847,'Silvana',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28100,49,528,'Silver Creek',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28101,49,1848,'Silverdale',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28102,49,1846,'Silverlake',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28103,49,1857,'Skamokawa',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28104,49,1708,'Skykomish',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28105,49,1847,'Snohomish',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28106,49,1708,'Snoqualmie',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28107,49,1858,'Snoqualmie Pass',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28108,49,148,'Soap Lake',1,113,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28109,49,1849,'South Bend',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28110,49,1858,'South Cle Elum',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28111,49,1848,'South Colby',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28112,49,367,'South Prairie',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28113,49,1848,'Southworth',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28114,49,367,'Spanaway',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28115,49,1840,'Spangle',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28116,49,1840,'Spokane',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28117,49,147,'Sprague',1,162,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28118,49,684,'Springdale',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28119,49,1847,'Stanwood',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28120,49,143,'Starbuck',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28121,49,1847,'Startup',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28122,49,1845,'Stehekin',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28123,49,367,'Steilacoom',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28124,49,1841,'Steptoe',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28125,49,1856,'Stevenson',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28126,49,148,'Stratford',1,117,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28127,49,1847,'Sultan',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28128,49,1839,'Sumas',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28129,49,367,'Sumner',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28130,49,1853,'Sunnyside',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28131,49,1848,'Suquamish',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28132,49,367,'Tacoma',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28133,49,1838,'Taholah',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28134,49,561,'Tahuya',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28135,49,1841,'Tekoa',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28136,49,1198,'Tenino',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28137,49,1841,'Thornton',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28138,49,1858,'Thorp',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28139,49,1853,'Tieton',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28140,49,1849,'Tokeland',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28141,49,528,'Toledo',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28142,49,1852,'Tonasket',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28143,49,1853,'Toppenish',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28144,49,1854,'Touchet',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28145,49,1846,'Toutle',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28146,49,1848,'Tracyton',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28147,49,1844,'Trout Lake',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28148,49,684,'Tumtum',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28149,49,1198,'Tumwater',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28150,49,1852,'Twisp',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28151,49,1856,'Underwood',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28152,49,561,'Union',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28153,49,1841,'Uniontown',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28154,49,367,'University Place',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28155,49,1859,'Usk',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28156,49,528,'Vader',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28157,49,684,'Valley',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28158,49,1840,'Valleyford',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28159,49,100,'Vancouver',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28160,49,1858,'Vantage',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28161,49,1708,'Vashon',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28162,49,367,'Vaughn',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28163,49,1840,'Veradale',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28164,49,1844,'Wahkiacus',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28165,49,1854,'Waitsburg',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28166,49,277,'Waldron',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28167,49,1854,'Walla Walla',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28168,49,1854,'Wallula',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28169,49,1853,'Wapato',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28170,49,148,'Warden',1,126,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28171,49,100,'Washougal',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28172,49,235,'Washtucna',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28173,49,254,'Waterville',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28174,49,1852,'Wauconda',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28175,49,367,'Wauna',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28176,49,1840,'Waverly',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28177,49,684,'Wellpinit',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28178,49,1845,'Wenatchee',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28179,49,107,'West Richland',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28180,49,1838,'Westport',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28181,49,1844,'White Salmon',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28182,49,1853,'White Swan',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28183,49,147,'Wilbur',1,198,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28184,49,367,'Wilkeson',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28185,49,148,'Wilson Creek',1,130,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28186,49,528,'Winlock',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28187,49,1852,'Winthrop',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28188,49,1844,'Wishram',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28189,49,1708,'Woodinville',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28190,49,1846,'Woodland',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28191,49,100,'Yacolt',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28192,49,1853,'Yakima',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28193,49,1198,'Yelm',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28194,49,1853,'Zillah',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28195,51,100,'Abbotsford',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28196,51,1860,'Abrams',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28197,51,235,'Adams',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28198,51,1861,'Adell',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28199,51,918,'Afton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28200,51,740,'Albany',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28201,51,1862,'Algoma',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28202,51,71,'Allenton',1,383,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(28203,51,1166,'Alma',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28204,51,66,'Alma Center',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28205,51,1863,'Almena',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28206,51,1294,'Almond',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28207,51,1864,'Altoona',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28208,51,1865,'Amberg',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28209,51,126,'Amery',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28210,51,1294,'Amherst',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28211,51,1294,'Amherst Junction',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28212,51,1866,'Aniwa',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28213,51,1867,'Antigo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28214,51,1868,'Appleton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28215,51,1869,'Arcadia',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28216,51,463,'Arena',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28217,51,1401,'Argonne',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28218,51,128,'Argyle',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28219,51,1870,'Arkansaw',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28220,51,235,'Arkdale',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28221,51,143,'Arlington',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28222,51,1401,'Armstrong Creek',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28223,51,1300,'Arpin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28224,51,389,'Ashippun',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28225,51,1292,'Ashland',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28226,51,1865,'Athelstane',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28227,51,1866,'Athens',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28228,51,1300,'Auburndale',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28229,51,1864,'Augusta',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28230,51,918,'Avalon',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28231,51,463,'Avoca',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28232,51,1300,'Babcock',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28233,51,148,'Bagley',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28234,51,1871,'Baileys Harbor',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28235,51,1872,'Baldwin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28236,51,126,'Balsam Lake',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28237,51,1294,'Bancroft',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28238,51,1873,'Bangor',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28239,51,1874,'Baraboo',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28240,51,463,'Barneveld',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28241,51,1863,'Barron',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28242,51,1863,'Barronett',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28243,51,1875,'Bassett',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28244,51,367,'Bay City',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28245,51,1876,'Bayfield',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28246,51,1868,'Bear Creek',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28247,51,389,'Beaver Dam',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28248,51,148,'Beetown',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28249,51,367,'Beldenville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28250,51,1877,'Belgium',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28251,51,1878,'Belleville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28252,51,128,'Belmont',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28253,51,918,'Beloit',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28254,51,1875,'Benet Lake',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28255,51,1876,'Benoit',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28256,51,128,'Benton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28257,51,1879,'Berlin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28258,51,1880,'Big Bend',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28259,51,1881,'Big Falls',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28260,51,1882,'Birchwood',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28261,51,1883,'Birnamwood',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28262,51,1868,'Black Creek',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28263,51,1878,'Black Earth',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28264,51,66,'Black River Falls',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28265,51,1869,'Blair',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28266,51,128,'Blanchardville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28267,51,1300,'Blenker',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28268,51,859,'Bloomer',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28269,51,148,'Bloomington',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28270,51,1878,'Blue Mounds',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28271,51,148,'Blue River',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28272,51,1883,'Bonduel',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28273,51,148,'Boscobel',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28274,51,1884,'Boulder Junction',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28275,51,1883,'Bowler',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28276,51,1154,'Boyceville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28277,51,859,'Boyd',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28278,51,1885,'Brandon',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28279,51,1886,'Brantwood',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28280,51,848,'Briggsville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28281,51,1863,'Brill',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28282,51,1887,'Brillion',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28283,51,1875,'Bristol',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28284,51,740,'Brodhead',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28285,51,1866,'Brokaw',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28286,51,1880,'Brookfield',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28287,51,740,'Brooklyn',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28288,51,389,'Brownsville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28289,51,740,'Browntown',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28290,51,1712,'Bruce',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28291,51,254,'Brule',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28292,51,1871,'Brussels',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28293,51,1867,'Bryant',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28294,51,1888,'Burlington',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28295,51,389,'Burnett',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28296,51,1880,'Butler',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28297,51,490,'Butte Des Morts',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28298,51,1292,'Butternut',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28299,51,1876,'Cable',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28300,51,859,'Cadott',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28301,51,1888,'Caledonia',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28302,51,143,'Cambria',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28303,51,1878,'Cambridge',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28304,51,1863,'Cameron',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28305,51,13,'Camp Douglas',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28306,51,1875,'Camp Lake',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28307,51,1885,'Campbellsport',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28308,51,1883,'Caroline',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28309,51,1861,'Cascade',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28310,51,1862,'Casco',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28311,51,59,'Cashton',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28312,51,148,'Cassville',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28313,51,59,'Cataract',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28314,51,1886,'Catawba',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28315,51,577,'Cazenovia',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28316,51,1883,'Cecil',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28317,51,1861,'Cedar Grove',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28318,51,1877,'Cedarburg',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28319,51,126,'Centuria',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28320,51,756,'Chaseburg',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28321,51,1863,'Chetek',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28322,51,100,'Chili',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28323,51,1887,'Chilton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28324,51,859,'Chippewa Falls',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28325,51,1292,'Clam Lake',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28326,51,126,'Clayton',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28327,51,126,'Clear Lake',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28328,51,1889,'Cleveland',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28329,51,918,'Clinton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28330,51,1881,'Clintonville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28331,51,389,'Clyman',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28332,51,463,'Cobb',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28333,51,1166,'Cochrane',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28334,51,100,'Colby',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28335,51,1865,'Coleman',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28336,51,1154,'Colfax',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28337,51,71,'Colgate',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28338,51,1889,'Collins',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28339,51,1890,'Coloma',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28340,51,143,'Columbus',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28341,51,1868,'Combined Locks',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28342,51,1863,'Comstock',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28343,51,1884,'Conover',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28344,51,1712,'Conrath',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28345,51,756,'Coon Valley',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28346,51,859,'Cornell',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28347,51,1876,'Cornucopia',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28348,51,1878,'Cottage Grove',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28349,51,1891,'Couderay',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28350,51,1401,'Crandon',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28351,51,1865,'Crivitz',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28352,51,1878,'Cross Plains',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28353,51,148,'Cuba City',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28354,51,1892,'Cudahy',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28355,51,1863,'Cumberland',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28356,51,100,'Curtiss',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28357,51,126,'Cushing',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28358,51,1294,'Custer',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28359,51,1868,'Dale',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28360,51,1863,'Dallas',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28361,51,1879,'Dalton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28362,51,1893,'Danbury',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28363,51,1878,'Dane',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28364,51,1513,'Darien',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28365,51,128,'Darlington',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28366,51,1878,'De Forest',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28367,51,586,'De Pere',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28368,51,756,'De Soto',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28369,51,1872,'Deer Park',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28370,51,1867,'Deerbrook',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28371,51,1878,'Deerfield',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28372,51,1880,'Delafield',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28373,51,1513,'Delavan',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28374,51,235,'Dellwood',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28375,51,586,'Denmark',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28376,51,148,'Dickeyville',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28377,51,1869,'Dodge',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28378,51,463,'Dodgeville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28379,51,100,'Dorchester',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28380,51,1880,'Dousman',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28381,51,1154,'Downing',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28382,51,1154,'Downsville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28383,51,143,'Doylestown',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28384,51,126,'Dresser',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28385,51,1876,'Drummond',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28386,51,1865,'Dunbar',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28387,51,1870,'Durand',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28388,51,1880,'Eagle',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28389,51,1884,'Eagle River',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28390,51,367,'East Ellsworth',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28391,51,1513,'East Troy',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28392,51,97,'Eastman',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28393,51,1864,'Eau Claire',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28394,51,1154,'Eau Galle',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28395,51,1885,'Eden',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28396,51,1866,'Edgar',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28397,51,918,'Edgerton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28398,51,1891,'Edgewater',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28399,51,463,'Edmund',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28400,51,1871,'Egg Harbor',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28401,51,1866,'Eland',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28402,51,1867,'Elcho',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28403,51,1866,'Elderon',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28404,51,1885,'Eldorado',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28405,51,1869,'Eleva',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28406,51,1154,'Elk Mound',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28407,51,1861,'Elkhart Lake',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28408,51,1513,'Elkhorn',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28409,51,1871,'Ellison Bay',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28410,51,367,'Ellsworth',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28411,51,1880,'Elm Grove',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28412,51,367,'Elmwood',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28413,51,13,'Elroy',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28414,51,1867,'Elton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28415,51,1881,'Embarrass',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28416,51,848,'Endeavor',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28417,51,1871,'Ephraim',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28418,51,1869,'Ettrick',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28419,51,490,'Eureka',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28420,51,918,'Evansville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28421,51,1891,'Exeland',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28422,51,1864,'Fairchild',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28423,51,1885,'Fairwater',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28424,51,1864,'Fall Creek',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28425,51,143,'Fall River',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28426,51,1507,'Fence',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28427,51,148,'Fennimore',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28428,51,97,'Ferryville',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28429,51,1886,'Fifield',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28430,51,1871,'Fish Creek',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28431,51,1507,'Florence',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28432,51,1885,'Fond Du Lac',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28433,51,1513,'Fontana',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28434,51,918,'Footville',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28435,51,1887,'Forest Junction',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28436,51,1871,'Forestville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28437,51,30,'Fort Atkinson',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28438,51,1166,'Fountain City',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28439,51,389,'Fox Lake',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28440,51,254,'Foxboro',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28441,51,1889,'Francis Creek',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28442,51,1892,'Franklin',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28443,51,1888,'Franksville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28444,51,126,'Frederic',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28445,51,1877,'Fredonia',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28446,51,1868,'Freedom',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28447,51,1881,'Fremont',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28448,51,235,'Friendship',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28449,51,143,'Friesland',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28450,51,1869,'Galesville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28451,51,1866,'Galloway',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28452,51,97,'Gays Mills',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28453,51,1880,'Genesee Depot',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28454,51,756,'Genoa',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28455,51,1513,'Genoa City',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28456,51,71,'Germantown',1,144,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28457,51,843,'Gile',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28458,51,1860,'Gillett',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28459,51,337,'Gilman',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28460,51,1166,'Gilmanton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28461,51,147,'Gleason',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28462,51,1712,'Glen Flora',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28463,51,148,'Glen Haven',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28464,51,1861,'Glenbeulah',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28465,51,1872,'Glenwood City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28466,51,1292,'Glidden',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28467,51,1865,'Goodman',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28468,51,254,'Gordon',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28469,51,577,'Gotham',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28470,51,1877,'Grafton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28471,51,235,'Grand Marsh',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28472,51,1876,'Grand View',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28473,51,100,'Granton',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28474,51,1893,'Grantsburg',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28475,51,128,'Gratiot',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28476,51,586,'Green Bay',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28477,51,1879,'Green Lake',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28478,51,1883,'Green Valley',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28479,51,1861,'Greenbush',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28480,51,1892,'Greendale',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28481,51,586,'Greenleaf',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28482,51,1868,'Greenville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28483,51,100,'Greenwood',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28484,51,1883,'Gresham',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28485,51,367,'Hager City',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28486,51,1892,'Hales Corners',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28487,51,1872,'Hammond',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28488,51,1890,'Hancock',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28489,51,337,'Hannibal',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28490,51,918,'Hanover',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28491,51,536,'Harshaw',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28492,51,71,'Hartford',1,166,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28493,51,1880,'Hartland',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28494,51,1866,'Hatley',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28495,51,1863,'Haugen',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28496,51,1712,'Hawkins',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28497,51,254,'Hawthorne',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28498,51,1891,'Hayward',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28499,51,148,'Hazel Green',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28500,51,536,'Hazelhurst',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28501,51,147,'Heafford Junction',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28502,51,30,'Helenville',1,122,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28503,51,1876,'Herbster',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28504,51,1893,'Hertel',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28505,51,1300,'Hewitt',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28506,51,1292,'High Bridge',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28507,51,463,'Highland',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28508,51,1887,'Hilbert',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28509,51,1874,'Hillpoint',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28510,51,756,'Hillsboro',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28511,51,1861,'Hingham',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28512,51,66,'Hixton',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28513,51,859,'Holcombe',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28514,51,463,'Hollandale',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28515,51,1873,'Holmen',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28516,51,1513,'Honey Creek',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28517,51,389,'Horicon',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28518,51,1868,'Hortonville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28519,51,1872,'Houlton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28520,51,71,'Hubertus',1,178,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28521,51,1872,'Hudson',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28522,51,100,'Humbird',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28523,51,843,'Hurley',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28524,51,389,'Hustisford',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28525,51,13,'Hustler',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28526,51,1869,'Independence',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28527,51,1881,'Iola',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28528,51,147,'Irma',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28529,51,843,'Iron Belt',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28530,51,389,'Iron Ridge',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28531,51,1876,'Iron River',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28532,51,30,'Ixonia',1,136,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28533,51,71,'Jackson',1,186,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28534,51,918,'Janesville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28535,51,30,'Jefferson',1,139,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28536,51,859,'Jim Falls',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28537,51,30,'Johnson Creek',1,142,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28538,51,740,'Juda',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28539,51,337,'Jump River',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28540,51,1294,'Junction City',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28541,51,389,'Juneau',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28542,51,1888,'Kansasville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28543,51,1868,'Kaukauna',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28544,51,1889,'Kellnersville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28545,51,59,'Kendall',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28546,51,1886,'Kennan',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28547,51,1875,'Kenosha',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28548,51,875,'Keshena',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28549,51,71,'Kewaskum',1,197,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28550,51,1862,'Kewaunee',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28551,51,1889,'Kiel',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28552,51,148,'Kieler',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28553,51,1868,'Kimberly',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28554,51,1881,'King',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28555,51,1879,'Kingston',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28556,51,1154,'Knapp',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28557,51,1861,'Kohler',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28558,51,1883,'Krakow',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28559,51,1873,'La Crosse',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28560,51,756,'La Farge',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28561,51,1292,'La Pointe',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28562,51,1874,'La Valle',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28563,51,1884,'Lac Du Flambeau',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28564,51,1712,'Ladysmith',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28565,51,1874,'Lake Delton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28566,51,1513,'Lake Geneva',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28567,51,30,'Lake Mills',1,151,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28568,51,254,'Lake Nebagamon',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28569,51,536,'Lake Tomahawk',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28570,51,1860,'Lakewood',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28571,51,148,'Lancaster',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28572,51,1884,'Land O Lakes',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28573,51,1880,'Lannon',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28574,51,1401,'Laona',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28575,51,490,'Larsen',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28576,51,389,'Lebanon',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28577,51,1860,'Lena',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28578,51,1883,'Leopolis',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28579,51,1874,'Lime Ridge',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28580,51,463,'Linden',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28581,51,1868,'Little Chute',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28582,51,1860,'Little Suamico',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28583,51,148,'Livingston',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28584,51,143,'Lodi',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28585,51,1874,'Loganville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28586,51,389,'Lomira',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28587,51,577,'Lone Rock',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28588,51,1507,'Long Lake',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28589,51,389,'Lowell',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28590,51,100,'Loyal',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28591,51,337,'Lublin',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28592,51,126,'Luck',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28593,51,1862,'Luxemburg',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28594,51,13,'Lyndon Station',1,15831,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28595,51,97,'Lynxville',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28596,51,1513,'Lyons',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28597,51,1878,'Madison',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28598,51,367,'Maiden Rock',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28599,51,1885,'Malone',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28600,51,1881,'Manawa',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28601,51,1884,'Manitowish Waters',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28602,51,1889,'Manitowoc',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28603,51,254,'Maple',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28604,51,1871,'Maplewood',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28605,51,1866,'Marathon',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28606,51,1292,'Marengo',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28607,51,1889,'Maribel',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28608,51,1865,'Marinette',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28609,51,1881,'Marion',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28610,51,1879,'Markesan',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28611,51,1879,'Marquette',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28612,51,1878,'Marshall',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28613,51,1300,'Marshfield',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28614,51,1876,'Mason',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28615,51,13,'Mather',1,16558,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28616,51,1883,'Mattoon',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28617,51,13,'Mauston',1,16609,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28618,51,389,'Mayville',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28619,51,1878,'Mazomanie',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28620,51,1878,'Mc Farland',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28621,51,536,'Mc Naughton',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28622,51,337,'Medford',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28623,51,1292,'Mellen',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28624,51,66,'Melrose',1,133,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28625,51,490,'Menasha',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28626,51,1880,'Menomonee Falls',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28627,51,1154,'Menomonie',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28628,51,1877,'Mequon',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28629,51,843,'Mercer',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28630,51,147,'Merrill',1,113,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28631,51,66,'Merrillan',1,134,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28632,51,1874,'Merrimac',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28633,51,1880,'Merton',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28634,51,1878,'Middleton',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28635,51,1863,'Mikana',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28636,51,1300,'Milladore',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28637,51,66,'Millston',1,137,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28638,51,126,'Milltown',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28639,51,918,'Milton',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28640,51,1892,'Milwaukee',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28641,51,1873,'Mindoro',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28642,51,463,'Mineral Point',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28643,51,536,'Minocqua',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28644,51,1882,'Minong',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28645,51,1889,'Mishicot',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28646,51,1166,'Mondovi',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28647,51,740,'Monroe',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28648,51,848,'Montello',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28649,51,148,'Montfort',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28650,51,740,'Monticello',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28651,51,843,'Montreal',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28652,51,1878,'Morrisonville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28653,51,1866,'Mosinee',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28654,51,1885,'Mount Calvary',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28655,51,148,'Mount Hope',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28656,51,1878,'Mount Horeb',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28657,51,97,'Mount Sterling',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28658,51,1860,'Mountain',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28659,51,1880,'Mukwonago',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28660,51,148,'Muscoda',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28661,51,1880,'Muskego',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28662,51,1880,'Nashotah',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28663,51,13,'Necedah',1,18561,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28664,51,490,'Neenah',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28665,51,100,'Neillsville',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28666,51,1300,'Nekoosa',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28667,51,1166,'Nelson',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28668,51,1294,'Nelsonville',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28669,51,875,'Neopit',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28670,51,389,'Neosho',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28671,51,848,'Neshkoro',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28672,51,859,'New Auburn',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28673,51,1880,'New Berlin',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28674,51,586,'New Franken',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28675,51,740,'New Glarus',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28676,51,1887,'New Holstein',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28677,51,13,'New Lisbon',1,18817,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28678,51,1881,'New London',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28679,51,1875,'New Munster',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28680,51,1872,'New Richmond',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28681,51,71,'Newburg',1,257,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28682,51,1889,'Newton',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28683,51,1865,'Niagara',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28684,51,1868,'Nichols',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28685,51,1874,'North Freedom',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28686,51,1880,'North Lake',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28687,51,1880,'North Prairie',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28688,51,59,'Norwalk',1,19473,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28689,51,1892,'Oak Creek',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28690,51,59,'Oakdale',1,19593,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28691,51,1885,'Oakfield',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28692,51,1880,'Oconomowoc',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28693,51,1860,'Oconto',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28694,51,1860,'Oconto Falls',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28695,51,1292,'Odanah',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28696,51,1881,'Ogdensburg',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28697,51,1886,'Ogema',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28698,51,1891,'Ojibwa',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28699,51,1880,'Okauchee',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28700,51,490,'Omro',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28701,51,1873,'Onalaska',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28702,51,586,'Oneida',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28703,51,756,'Ontario',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28704,51,1861,'Oostburg',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28705,51,1878,'Oregon',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28706,51,918,'Orfordville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28707,51,126,'Osceola',1,105,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28708,51,490,'Oshkosh',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28709,51,1869,'Osseo',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28710,51,100,'Owen',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28711,51,848,'Oxford',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28712,51,848,'Packwaukee',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28713,51,30,'Palmyra',1,20393,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28714,51,143,'Pardeeville',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28715,51,1886,'Park Falls',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28716,51,148,'Patch Grove',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28717,51,1867,'Pearson',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28718,51,536,'Pelican Lake',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28719,51,1513,'Pell Lake',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28720,51,1865,'Pembine',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28721,51,1870,'Pepin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28722,51,1865,'Peshtigo',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28723,51,1880,'Pewaukee',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28724,51,1884,'Phelps',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28725,51,1886,'Phillips',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28726,51,1867,'Phlox',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28727,51,1867,'Pickerel',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28728,51,490,'Pickett',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28729,51,1869,'Pigeon Falls',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28730,51,1890,'Pine River',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28731,51,1300,'Pittsville',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28732,51,1874,'Plain',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28733,51,1890,'Plainfield',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28734,51,148,'Platteville',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28735,51,1875,'Pleasant Prairie',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28736,51,1294,'Plover',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28737,51,367,'Plum City',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28738,51,1861,'Plymouth',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28739,51,254,'Poplar',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28740,51,1300,'Port Edwards',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28741,51,1877,'Port Washington',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28742,51,1876,'Port Wing',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28743,51,143,'Portage',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28744,51,1865,'Porterfield',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28745,51,148,'Potosi',1,98,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28746,51,1887,'Potter',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28747,51,1865,'Pound',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28748,51,1875,'Powers Lake',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28749,51,1890,'Poy Sippi',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28750,51,143,'Poynette',1,61,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28751,51,97,'Prairie Du Chien',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28752,51,1874,'Prairie Du Sac',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28753,51,1863,'Prairie Farm',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28754,51,1886,'Prentice',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28755,51,367,'Prescott',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28756,51,1884,'Presque Isle',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28757,51,1879,'Princeton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28758,51,586,'Pulaski',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28760,51,1888,'Racine',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28761,51,1891,'Radisson',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28762,51,143,'Randolph',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28763,51,389,'Randolph',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28764,51,1861,'Random Lake',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28765,51,1881,'Readfield',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28766,51,756,'Readstown',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28767,51,1890,'Redgranite',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28768,51,1874,'Reedsburg',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28769,51,1889,'Reedsville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28770,51,389,'Reeseville',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28771,51,463,'Rewey',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28772,51,536,'Rhinelander',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28773,51,337,'Rib Lake',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28774,51,1863,'Rice Lake',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28775,51,71,'Richfield',1,289,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28776,51,577,'Richland Center',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28777,51,1154,'Ridgeland',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28778,51,463,'Ridgeway',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28779,51,1866,'Ringle',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28780,51,143,'Rio',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28781,51,1885,'Ripon',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28782,51,367,'River Falls',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28783,51,1872,'Roberts',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28784,51,1888,'Rochester',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28785,51,1154,'Rock Falls',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28786,51,1874,'Rock Springs',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28787,51,1873,'Rockland',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28788,51,1885,'Rosendale',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28789,51,1294,'Rosholt',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28790,51,1866,'Rothschild',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28791,51,389,'Rubicon',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28792,51,1300,'Rudolph',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28793,51,1885,'Saint Cloud',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28794,51,126,'Saint Croix Falls',1,115,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28795,51,1884,'Saint Germain',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28796,51,1889,'Saint Nazianz',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28797,51,1875,'Salem',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28798,51,1154,'Sand Creek',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28799,51,1882,'Sarona',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28800,51,1874,'Sauk City',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28801,51,1877,'Saukville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28802,51,1890,'Saxeville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28803,51,843,'Saxon',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28804,51,1884,'Sayner',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28805,51,1881,'Scandinavia',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28806,51,1866,'Schofield',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28807,51,97,'Seneca',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28808,51,577,'Sextonville',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28809,51,1868,'Seymour',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28810,51,1513,'Sharon',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28811,51,1883,'Shawano',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28812,51,1861,'Sheboygan',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28813,51,1861,'Sheboygan Falls',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28814,51,1712,'Sheldon',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28815,51,1882,'Shell Lake',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28816,51,1887,'Sherwood',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28817,51,1868,'Shiocton',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28818,51,128,'Shullsburg',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28819,51,1875,'Silver Lake',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28820,51,148,'Sinsinawa',1,112,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28821,51,1893,'Siren',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28822,51,1871,'Sister Bay',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28823,51,71,'Slinger',1,316,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28824,51,1860,'Sobieski',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28825,51,97,'Soldiers Grove',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28826,51,254,'Solon Springs',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28827,51,1875,'Somers',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28828,51,1872,'Somerset',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28829,51,1892,'South Milwaukee',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28830,51,254,'South Range',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28831,51,128,'South Wayne',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28832,51,59,'Sparta',1,150,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28833,51,1866,'Spencer',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28834,51,1882,'Spooner',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28835,51,1874,'Spring Green',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28836,51,367,'Spring Valley',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28837,51,1882,'Springbrook',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28838,51,1513,'Springfield',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28839,51,859,'Stanley',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28840,51,1884,'Star Lake',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28841,51,126,'Star Prairie',1,120,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28842,51,337,'Stetsonville',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28843,51,97,'Steuben',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28844,51,1294,'Stevens Point',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28845,51,148,'Stitzer',1,114,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28846,51,1887,'Stockbridge',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28847,51,1870,'Stockholm',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28848,51,756,'Stoddard',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28849,51,1891,'Stone Lake',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28850,51,1878,'Stoughton',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28851,51,1866,'Stratford',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28852,51,1869,'Strum',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28853,51,1871,'Sturgeon Bay',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28854,51,1888,'Sturtevant',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28855,51,586,'Suamico',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28856,51,30,'Sullivan',1,258,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28857,51,1867,'Summit Lake',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28858,51,1878,'Sun Prairie',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28859,51,254,'Superior',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28860,51,1860,'Suring',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28861,51,1880,'Sussex',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28862,51,66,'Taylor',1,192,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28863,51,389,'Theresa',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28864,51,1877,'Thiensville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28865,51,100,'Thorp',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28866,51,536,'Three Lakes',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28867,51,1883,'Tigerton',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28868,51,1883,'Tilleda',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28869,51,1889,'Tisch Mills',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28870,51,59,'Tomah',1,166,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28871,51,147,'Tomahawk',1,178,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28872,51,1712,'Tony',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28873,51,1860,'Townsend',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28874,51,1882,'Trego',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28875,51,1869,'Trempealeau',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28876,51,1875,'Trevor',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28877,51,536,'Tripoli',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28878,51,59,'Tunnel City',1,168,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28879,51,1863,'Turtle Lake',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28880,51,1875,'Twin Lakes',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28881,51,1889,'Two Rivers',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28882,51,13,'Union Center',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28883,51,1888,'Union Grove',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28884,51,1866,'Unity',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28885,51,843,'Upson',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28886,51,1889,'Valders',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28887,51,1885,'Van Dyne',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28888,51,1878,'Verona',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28889,51,1300,'Vesper',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28890,51,577,'Viola',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28891,51,756,'Viroqua',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28892,51,1401,'Wabeno',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28893,51,1861,'Waldo',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28894,51,1880,'Wales',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28895,51,1513,'Walworth',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28896,51,59,'Warrens',1,176,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28897,51,254,'Wascott',1,92,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28898,51,1876,'Washburn',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28899,51,1871,'Washington Island',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28900,51,1888,'Waterford',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28901,51,30,'Waterloo',1,285,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28902,51,389,'Watertown',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28903,51,30,'Watertown',1,287,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28904,51,490,'Waukau',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28905,51,1880,'Waukesha',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28906,51,1878,'Waunakee',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28907,51,1881,'Waupaca',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28908,51,389,'Waupun',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28909,51,1866,'Wausau',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28910,51,1865,'Wausaukee',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28911,51,1890,'Wautoma',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28912,51,97,'Wauzeka',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28913,51,1893,'Webster',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28914,51,71,'West Bend',1,376,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28915,51,1873,'West Salem',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28916,51,337,'Westboro',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28917,51,756,'Westby',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28918,51,848,'Westfield',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28919,51,1881,'Weyauwega',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28920,51,1712,'Weyerhaeuser',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28921,51,1154,'Wheeler',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28922,51,1867,'White Lake',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28923,51,1869,'Whitehall',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28924,51,1889,'Whitelaw',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28925,51,1513,'Whitewater',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28926,51,1890,'Wild Rose',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28927,51,100,'Willard',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28928,51,1513,'Williams Bay',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28929,51,1875,'Wilmot',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28930,51,1872,'Wilson',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28931,51,59,'Wilton',1,181,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28932,51,1878,'Windsor',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28933,51,490,'Winnebago',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28934,51,490,'Winneconne',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28935,51,1891,'Winter',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28936,51,143,'Wisconsin Dells',1,81,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28937,51,1300,'Wisconsin Rapids',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28938,51,100,'Withee',1,96,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28939,51,1883,'Wittenberg',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28940,51,13,'Wonewoc',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28941,51,128,'Woodford',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28942,51,389,'Woodland',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28943,51,148,'Woodman',1,131,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28944,51,536,'Woodruff',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28945,51,1872,'Woodville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28946,51,1875,'Woodworth',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28947,51,586,'Wrightstown',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28948,51,143,'Wyocena',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28949,51,1883,'Zachow',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28950,51,1513,'Zenda',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28951,50,124,'Accoville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28952,50,1621,'Adrian',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28953,50,66,'Advent',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28954,50,1894,'Albright',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28955,50,59,'Alderson',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28956,50,147,'Alkol',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28957,50,1265,'Allen Junction',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28958,50,56,'Alloy',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28959,50,1657,'Alma',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28960,50,528,'Alum Bridge',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28961,50,1895,'Alum Creek',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28962,50,124,'Amherstdale',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28963,50,1265,'Amigo',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28964,50,1570,'Amma',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28965,50,1126,'Anawalt',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28966,50,502,'Anmoore',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28967,50,56,'Ansted',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28968,50,561,'Apple Grove',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28969,50,504,'Arbovale',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28970,50,1896,'Arnett',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28971,50,37,'Arnoldsburg',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28972,50,1894,'Arthurdale',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28973,50,1896,'Artie',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28974,50,1897,'Asbury',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28975,50,99,'Ashford',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28976,50,561,'Ashton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28977,50,544,'Athens',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28978,50,1898,'Auburn',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28979,50,799,'Augusta',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28980,50,1894,'Aurora',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28981,50,1126,'Avondale',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28982,50,1899,'Baisden',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28983,50,1900,'Baker',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28984,50,30,'Bakerton',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28985,50,59,'Ballard',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28986,50,308,'Bancroft',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28987,50,1901,'Barboursville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28988,50,58,'Barrackville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28989,50,1126,'Bartley',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28990,50,504,'Bartow',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28991,50,58,'Baxter',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28992,50,148,'Bayard',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28993,50,1896,'Beaver',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28994,50,1896,'Beckley',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28995,50,1902,'Beech Bottom',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28996,50,544,'Beeson',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28997,50,77,'Belington',1,1881,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(28998,50,1895,'Belle',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(28999,50,1300,'Belleville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29000,50,1903,'Belmont',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29001,50,725,'Belva',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29002,50,35,'Benwood',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29003,50,1898,'Berea',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29004,50,442,'Bergoo',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29005,50,82,'Berkeley Springs',1,2104,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(29006,50,1126,'Berwind',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29007,50,1902,'Bethany',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29008,50,91,'Beverly',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29009,50,48,'Bickmore',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29010,50,37,'Big Bend',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29011,50,124,'Big Creek',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29012,50,1904,'Big Run',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29013,50,1126,'Big Sandy',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29014,50,37,'Big Springs',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29015,50,99,'Bim',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29016,50,725,'Birch River',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29017,50,1905,'Blacksville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29018,50,124,'Blair',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29019,50,799,'Bloomery',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29020,50,99,'Bloomingrose',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29021,50,1895,'Blount',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29022,50,1895,'Blue Creek',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29023,50,270,'Blue Jay',1,2560,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29024,50,544,'Bluefield',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29025,50,99,'Bob White',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29026,50,1896,'Bolt',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29027,50,48,'Bomont',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29028,50,56,'Boomer',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29029,50,1899,'Borderland',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29030,50,1906,'Bowden',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29031,50,1896,'Bradley',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29032,50,1126,'Bradshaw',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29033,50,544,'Bramwell',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29034,50,147,'Branchland',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29035,50,723,'Brandywine',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29036,50,1899,'Breeden',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29037,50,1265,'Brenton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29038,50,1894,'Bretz',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29039,50,502,'Bridgeport',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29040,50,1907,'Brohard',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29041,50,1894,'Bruceton Mills',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29042,50,124,'Bruno',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29043,50,504,'Buckeye',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29044,50,1621,'Buckhannon',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29045,50,1265,'Bud',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29046,50,308,'Buffalo',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29047,50,1497,'Bunker Hill',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29048,50,261,'Burlington',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29049,50,1908,'Burnsville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29050,50,1904,'Burton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29051,50,1895,'Cabin Creek',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29052,50,148,'Cabins',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29053,50,1898,'Cairo',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29054,50,1897,'Caldwell',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29055,50,725,'Calvin',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29056,50,528,'Camden',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29057,50,442,'Camden On Gauley',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29058,50,35,'Cameron',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29059,50,544,'Camp Creek',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29060,50,56,'Cannelton',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29061,50,725,'Canvas',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29062,50,799,'Capon Bridge',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29063,50,799,'Capon Springs',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29064,50,58,'Carolina',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29065,50,504,'Cass',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29066,50,1905,'Cassville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29067,50,1895,'Cedar Grove',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29068,50,390,'Cedarville',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29069,50,1909,'Center Point',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29070,50,431,'Ceredo',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29071,50,124,'Chapmanville',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29072,50,30,'Charles Town',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29073,50,1895,'Charleston',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29074,50,56,'Charlton Heights',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29075,50,1897,'Charmco',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29076,50,1899,'Chattaroy',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29077,50,124,'Chauncey',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29078,50,446,'Chester',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29079,50,37,'Chloe',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29080,50,723,'Circleville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29081,50,502,'Clarksburg',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29082,50,48,'Clay',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29083,50,1896,'Clear Creek',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29084,50,1265,'Clear Fork',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29085,50,1895,'Clendenin',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29086,50,1621,'Cleveland',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29087,50,124,'Clothier',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29088,50,1896,'Coal City',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29089,50,1265,'Coal Mountain',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29090,50,91,'Coalton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29091,50,270,'Coalwood',1,5382,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29092,50,1896,'Colcord',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29093,50,58,'Colfax',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29094,50,1902,'Colliers',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29095,50,99,'Comfort',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29096,50,1896,'Cool Ridge',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29097,50,1908,'Copen',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29098,50,124,'Cora',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29099,50,1265,'Corinne',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29100,50,99,'Costa',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29101,50,66,'Cottageville',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29102,50,1265,'Covel',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29103,50,442,'Cowen',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29104,50,390,'Coxs Mills',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29105,50,1896,'Crab Orchard',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29106,50,725,'Craigsville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29107,50,528,'Crawford',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29108,50,1897,'Crawley',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29109,50,1907,'Creston',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29110,50,431,'Crum',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29111,50,1126,'Cucumber',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29112,50,1901,'Culloden',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29113,50,1265,'Cyclone',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29114,50,91,'Dailey',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29115,50,35,'Dallas',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29116,50,56,'Danese',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29117,50,1896,'Daniels',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29118,50,99,'Danville',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29119,50,124,'Davin',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29120,50,1906,'Davis',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29121,50,1300,'Davisville',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29122,50,1126,'Davy',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29123,50,1895,'Dawes',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29124,50,56,'Deep Water',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29125,50,1899,'Delbarton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29126,50,1905,'Dellslow',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29127,50,799,'Delray',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29128,50,442,'Diana',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29129,50,48,'Dille',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29130,50,1899,'Dingess',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29131,50,725,'Dixie',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29132,50,1896,'Dorothy',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29133,50,56,'Dothan',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29134,50,725,'Drennen',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29135,50,1896,'Dry Creek',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29136,50,1895,'Drybranch',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29137,50,91,'Dryfork',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29138,50,48,'Duck',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29139,50,1895,'Dunbar',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29140,50,431,'Dunlow',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29141,50,504,'Dunmore',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29142,50,504,'Durbin',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29143,50,1895,'East Bank',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29144,50,431,'East Lynn',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29145,50,1896,'Eccles',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29146,50,1126,'Eckman',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29147,50,1899,'Edgarton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29148,50,56,'Edmond',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29149,50,1894,'Eglon',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29150,50,1126,'Elbert',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29151,50,308,'Eleanor',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29152,50,1907,'Elizabeth',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29153,50,261,'Elk Garden',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29154,50,1126,'Elkhorn',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29155,50,91,'Elkins',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29156,50,1895,'Elkview',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29157,50,91,'Ellamore',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29158,50,1898,'Ellenboro',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29159,50,1910,'Elton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29160,50,502,'Enterprise',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29161,50,442,'Erbacon',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29162,50,1895,'Eskdale',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29163,50,124,'Ethel',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29164,50,66,'Evans',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29165,50,1908,'Exchange',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29166,50,1896,'Fairdale',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29167,50,1897,'Fairlea',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29168,50,58,'Fairmont',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29169,50,58,'Fairview',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29170,50,1895,'Falling Rock',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29171,50,1497,'Falling Waters',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29172,50,1265,'Fanrock',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29173,50,58,'Farmington',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29174,50,56,'Fayetteville',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29175,50,725,'Fenwick',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29176,50,1900,'Fisher',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29177,50,544,'Flat Top',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29178,50,1908,'Flatwoods',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29179,50,337,'Flemington',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29180,50,1902,'Follansbee',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29181,50,1904,'Folsom',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29182,50,1910,'Forest Hill',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29183,50,261,'Fort Ashby',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29184,50,431,'Fort Gay',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29185,50,99,'Foster',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29186,50,58,'Four States',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29187,50,1908,'Frametown',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29188,50,1897,'Frankford',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29189,50,723,'Franklin',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29190,50,308,'Fraziers Bottom',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29191,50,544,'Freeman',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29192,50,1621,'French Creek',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29193,50,1621,'Frenchton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29194,50,1657,'Friendly',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29195,50,1895,'Gallagher',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29196,50,561,'Gallipolis Ferry',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29197,50,77,'Galloway',1,9851,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(29198,50,1570,'Gandeeville',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29199,50,59,'Gap Mills',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29200,50,1126,'Gary',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29201,50,1908,'Gassaway',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29202,50,56,'Gauley Bridge',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29203,50,66,'Gay',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29204,50,431,'Genoa',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29205,50,1497,'Gerrardstown',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29206,50,1896,'Ghent',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29207,50,1899,'Gilbert',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29208,50,725,'Gilboa',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29209,50,66,'Given',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29210,50,91,'Glady',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29211,50,1895,'Glasgow',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29212,50,48,'Glen',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29213,50,35,'Glen Dale',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29214,50,1896,'Glen Daniel',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29215,50,35,'Glen Easton',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29216,50,56,'Glen Ferris',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29217,50,1265,'Glen Fork',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29218,50,56,'Glen Jean',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29219,50,1265,'Glen Rogers',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29220,50,1896,'Glen White',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29221,50,1497,'Glengary',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29222,50,390,'Glenville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29223,50,561,'Glenwood',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29224,50,99,'Gordon',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29225,50,148,'Gormania',1,46,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29226,50,337,'Grafton',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29227,50,58,'Grant Town',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29228,50,37,'Grantsville',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29229,50,1905,'Granville',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29230,50,1897,'Grassy Meadows',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29231,50,82,'Great Cacapon',1,10825,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(29232,50,504,'Green Bank',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29233,50,799,'Green Spring',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29234,50,1910,'Green Sulphur Springs',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29235,50,59,'Greenville',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29236,50,147,'Griffithsville',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29237,50,502,'Gypsy',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29238,50,442,'Hacker Valley',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29239,50,30,'Halltown',1,111,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29240,50,1906,'Hambleton',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29241,50,147,'Hamlin',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29242,50,1895,'Handley',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29243,50,1265,'Hanover',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29244,50,1895,'Hansford',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29245,50,91,'Harman',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29246,50,1896,'Harper',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29247,50,30,'Harpers Ferry',1,117,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29248,50,1898,'Harrisville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29249,50,561,'Hartford',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29250,50,147,'Harts',1,78,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29251,50,502,'Haywood',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29252,50,1908,'Heaters',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29253,50,1497,'Hedgesville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29254,50,1896,'Helen',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29255,50,91,'Helvetia',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29256,50,1126,'Hemphill',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29257,50,561,'Henderson',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29258,50,1906,'Hendricks',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29259,50,124,'Henlawson',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29260,50,1126,'Hensley',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29261,50,502,'Hepzibah',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29262,50,1265,'Herndon',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29263,50,1895,'Hernshaw',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29264,50,99,'Hewett',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29265,50,544,'Hiawatha',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29266,50,56,'Hico',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29267,50,799,'High View',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29268,50,504,'Hillsboro',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29269,50,56,'Hilltop',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29270,50,1910,'Hinton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29271,50,124,'Holden',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29272,50,308,'Hometown',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29273,50,528,'Horner',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29274,50,1895,'Hugheston',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29275,50,1904,'Hundred',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29276,50,1901,'Huntington',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29277,50,431,'Huntington',1,68,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29278,50,308,'Hurricane',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29279,50,91,'Huttonsville',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29280,50,1126,'Iaeger',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29281,50,58,'Idamay',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29282,50,1265,'Ikes Fork',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29283,50,1894,'Independence',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29284,50,48,'Indore',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29285,50,1895,'Institute',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29286,50,1497,'Inwood',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29287,50,528,'Ireland',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29288,50,1126,'Isaban',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29289,50,1265,'Itmann',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29290,50,48,'Ivydale',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29291,50,1904,'Jacksonburg',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29292,50,528,'Jane Lew',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29293,50,99,'Jeffrey',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29294,50,1126,'Jenkinjones',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29295,50,1265,'Jesse',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29296,50,1126,'Jolo',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29297,50,1896,'Josephine',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29298,50,99,'Julian',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29299,50,1910,'Jumping Branch',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29300,50,77,'Junior',1,13494,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(29301,50,1899,'Justice',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29302,50,56,'Kanawha Falls',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29303,50,1621,'Kanawha Head',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29304,50,30,'Kearneysville',1,143,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29305,50,544,'Kegley',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29306,50,544,'Kellysville',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29307,50,66,'Kenna',1,111,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29308,50,431,'Kenova',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29309,50,91,'Kerens',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29310,50,1899,'Kermit',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29311,50,725,'Keslers Cross Lanes',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29312,50,261,'Keyser',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29313,50,431,'Kiahsville',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29314,50,1126,'Kimball',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29315,50,56,'Kimberly',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29316,50,56,'Kincaid',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29317,50,58,'Kingmont',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29318,50,1894,'Kingwood',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29319,50,124,'Kistler',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29320,50,1265,'Kopperston',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29321,50,1126,'Kyle',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29322,50,148,'Lahmansville',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29323,50,124,'Lake',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29324,50,1896,'Lanark',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29325,50,56,'Lansing',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29326,50,544,'Lashmeet',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29327,50,431,'Lavalette',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29328,50,56,'Layland',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29329,50,66,'Le Roy',1,118,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29330,50,1570,'Left Hand',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29331,50,725,'Leivasy',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29332,50,1899,'Lenore',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29333,50,561,'Leon',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29334,50,544,'Lerona',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29335,50,1901,'Lesage',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29336,50,1897,'Leslie',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29337,50,1896,'Lester',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29338,50,561,'Letart',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29339,50,799,'Levels',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29340,50,1897,'Lewisburg',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29341,50,308,'Liberty',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29342,50,59,'Lindside',1,83,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29343,50,390,'Linn',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29344,50,1908,'Little Birch',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29345,50,1904,'Littleton',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29346,50,48,'Lizemores',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29347,50,56,'Lochgelly',1,86,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29348,50,124,'Logan',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29349,50,1895,'London',1,23,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29350,50,56,'Lookout',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29351,50,1570,'Looneyville',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29352,50,124,'Lorado',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29353,50,1621,'Lorentz',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29354,50,1900,'Lost City',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29355,50,502,'Lost Creek',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29356,50,502,'Lumberport',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29357,50,124,'Lyburn',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29358,50,1265,'Lynco',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29359,50,1265,'Maben',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29360,50,91,'Mabie',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29361,50,1896,'Mabscott',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29362,50,1896,'Mac Arthur',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29363,50,1898,'Macfarlan',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29364,50,99,'Madison',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29365,50,1905,'Maidsville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29366,50,124,'Mallory',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29367,50,1895,'Mammoth',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29368,50,124,'Man',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29369,50,58,'Mannington',1,77,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29370,50,1265,'Marianna',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29371,50,504,'Marlinton',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29372,50,1497,'Martinsburg',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29373,50,561,'Mason',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29374,50,1894,'Masontown',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29375,50,1899,'Matewan',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29376,50,1265,'Matheny',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29377,50,1900,'Mathias',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29378,50,544,'Matoaka',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29379,50,1897,'Maxwelton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29380,50,1126,'Maybeury',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29381,50,48,'Maysel',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29382,50,148,'Maysville',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29383,50,1265,'Mc Graws',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29384,50,35,'Mcmechen',1,16862,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29385,50,56,'Meadow Bridge',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29386,50,1910,'Meadow Creek',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29387,50,502,'Meadowbrook',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29388,50,58,'Metz',1,87,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29389,50,1895,'Miami',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29390,50,1657,'Middlebourne',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29391,50,147,'Midkiff',1,114,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29392,50,1896,'Midway',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29393,50,1900,'Milam',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29394,50,91,'Mill Creek',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29395,50,37,'Millstone',1,17444,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29396,50,30,'Millville',1,17456,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29397,50,66,'Millwood',1,17459,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(29398,50,1901,'Milton',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29399,50,56,'Minden',1,100,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29400,50,1300,'Mineral Wells',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29401,50,77,'Moatsville',1,17627,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(29402,50,1126,'Mohawk',1,25,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29403,50,58,'Montana Mines',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29404,50,544,'Montcalm',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29405,50,91,'Monterville',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29406,50,56,'Montgomery',1,101,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29407,50,91,'Montrose',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29408,50,1900,'Moorefield',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29409,50,1905,'Morgantown',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29410,50,35,'Moundsville',1,18097,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29411,50,561,'Mount Alto',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29412,50,56,'Mount Carbon',1,104,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29413,50,502,'Mount Clare',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29414,50,124,'Mount Gay',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29415,50,56,'Mount Hope',1,105,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29416,50,725,'Mount Lookout',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29417,50,725,'Mount Nebo',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29418,50,56,'Mount Olive',1,106,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29419,50,148,'Mount Storm',1,85,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29420,50,37,'Mount Zion',1,18250,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29421,50,1265,'Mullens',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29422,50,37,'Munday',1,18345,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29423,50,147,'Myra',1,119,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29424,50,56,'Nallen',1,108,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29425,50,1896,'Naoma',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29426,50,1908,'Napier',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29427,50,1899,'Naugatuck',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29428,50,48,'Nebo',1,18558,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29429,50,99,'Nellis',1,44,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29430,50,544,'Nemours',1,49,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29431,50,270,'Neola',1,18621,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29432,50,725,'Nettie',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29433,50,261,'New Creek',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29434,50,446,'New Cumberland',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29435,50,561,'New Haven',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29436,50,446,'New Manchester',1,67,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29437,50,1904,'New Martinsville',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29438,50,1909,'New Milton',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29439,50,1265,'New Richmond',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29440,50,1894,'Newburg',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29441,50,446,'Newell',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29442,50,1126,'Newhall',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29443,50,1570,'Newton',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29444,50,1899,'Newtown',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29445,50,1910,'Nimitz',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29446,50,1895,'Nitro',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29447,50,390,'Normantown',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29448,50,1899,'North Matewan',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29449,50,1265,'North Spring',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29450,50,1126,'Northfork',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29451,50,91,'Norton',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29452,50,544,'Oakvale',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29453,50,1265,'Oceana',1,45,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29454,50,1896,'Odd',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29455,50,1900,'Old Fields',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29456,50,124,'Omar',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29457,50,1901,'Ona',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29458,50,723,'Onego',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29459,50,99,'Orgas',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29460,50,528,'Orlando',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29461,50,37,'Orma',1,56,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(29462,50,1905,'Osage',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29463,50,99,'Ottawa',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29464,50,1904,'Paden City',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29465,50,56,'Page',1,118,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(29466,50,1126,'Pageton',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29467,50,1907,'Palestine',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29468,50,1126,'Panther',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29469,50,1300,'Parkersburg',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29470,50,1906,'Parsons',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29471,50,82,'Paw Paw',1,20626,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(29472,50,56,'Pax',1,119,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(29473,50,1126,'Paynesville',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29474,50,124,'Peach Creek',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29475,50,124,'Pecks Mill',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29476,50,1910,'Pence Springs',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29477,50,1898,'Pennsboro',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29478,50,1905,'Pentress',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29479,50,148,'Petersburg',1,93,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29480,50,59,'Peterstown',1,122,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(29481,50,1898,'Petroleum',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29482,50,99,'Peytona',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29483,50,77,'Philippi',1,20962,'0000-00-00 00:00:00','2022-05-17 11:49:14',NULL),(29484,50,91,'Pickens',1,47,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29485,50,261,'Piedmont',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29486,50,1895,'Pinch',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29487,50,1904,'Pine Grove',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29488,50,1265,'Pineville',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29489,50,1896,'Piney View',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29490,50,1910,'Pipestem',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29491,50,308,'Poca',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29492,50,561,'Point Pleasant',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29493,50,799,'Points',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29494,50,1895,'Pond Gap',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29495,50,725,'Pool',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29496,50,1904,'Porters Falls',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29497,50,56,'Powellton',1,124,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29498,50,1895,'Pratt',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29499,50,1126,'Premier',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29500,50,431,'Prichard',1,122,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29501,50,56,'Prince',1,125,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29502,50,544,'Princeton',1,58,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29503,50,1896,'Princewick',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29504,50,48,'Procious',1,105,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29505,50,35,'Proctor',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29506,50,1896,'Prosperity',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29507,50,1898,'Pullman',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29508,50,799,'Purgitsville',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29509,50,1905,'Pursglove',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29510,50,1897,'Quinwood',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29511,50,58,'Rachel',1,110,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29512,50,99,'Racine',1,55,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29513,50,1899,'Ragland',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29514,50,1897,'Rainelle',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29515,50,1896,'Raleigh',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29516,50,147,'Ranger',1,139,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29517,50,30,'Ranson',1,226,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29518,50,1265,'Ravencliff',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29519,50,66,'Ravenswood',1,168,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29520,50,1899,'Rawl',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29521,50,1126,'Raysal',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29522,50,1904,'Reader',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29523,50,1906,'Red Creek',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29524,50,308,'Red House',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29525,50,1899,'Red Jacket',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29526,50,56,'Redstar',1,128,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29527,50,1894,'Reedsville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29528,50,1570,'Reedy',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29529,50,1897,'Renick',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29530,50,502,'Reynoldsville',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29531,50,1896,'Rhodell',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29532,50,725,'Richwood',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29533,50,261,'Ridgeley',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29534,50,99,'Ridgeview',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29535,50,1497,'Ridgeway',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29536,50,799,'Rio',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29537,50,66,'Ripley',1,169,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29538,50,30,'Rippon',1,236,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29539,50,723,'Riverton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29540,50,58,'Rivesville',1,115,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29541,50,56,'Robson',1,130,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29542,50,544,'Rock',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29543,50,1621,'Rock Cave',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29544,50,1896,'Rock Creek',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29545,50,1265,'Rock View',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29546,50,1300,'Rockport',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29547,50,1126,'Roderfield',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29548,50,799,'Romney',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29549,50,1897,'Ronceverte',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29550,50,390,'Rosedale',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29551,50,337,'Rosemont',1,28,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29552,50,1894,'Rowlesburg',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29553,50,1897,'Rupert',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29554,50,1265,'Sabine',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29555,50,1895,'Saint Albans',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29556,50,1903,'Saint Marys',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29557,50,502,'Salem',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29558,50,1901,'Salt Rock',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29559,50,390,'Sand Fork',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29560,50,1910,'Sandstone',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29561,50,66,'Sandyville',1,175,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29562,50,124,'Sarah Ann',1,82,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29563,50,1265,'Saulsville',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29564,50,99,'Saxon',1,59,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29565,50,56,'Scarbro',1,137,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29566,50,308,'Scott Depot',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29567,50,59,'Secondcreek',1,142,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29568,50,1621,'Selbyville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29569,50,723,'Seneca Rocks',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29570,50,99,'Seth',1,60,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29571,50,1896,'Shady Spring',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29572,50,799,'Shanks',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29573,50,124,'Sharples',1,84,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29574,50,30,'Shenandoah Junction',1,246,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29575,50,30,'Shepherdstown',1,247,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29576,50,502,'Shinnston',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29577,50,1657,'Shirley',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29578,50,431,'Shoals',1,140,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29579,50,390,'Shock',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29580,50,1902,'Short Creek',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29581,50,1265,'Simon',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29582,50,337,'Simpson',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29583,50,59,'Sinks Grove',1,144,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29584,50,1657,'Sistersville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29585,50,1896,'Skelton',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29586,50,1896,'Slab Fork',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29587,50,799,'Slanesville',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29588,50,504,'Slatyfork',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29589,50,1909,'Smithburg',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29590,50,56,'Smithers',1,140,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29591,50,1904,'Smithfield',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29592,50,1898,'Smithville',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29593,50,1897,'Smoot',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29594,50,504,'Snowshoe',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29595,50,147,'Sod',1,157,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29596,50,1896,'Sophia',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29597,50,561,'Southside',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29598,50,544,'Spanishburg',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29599,50,502,'Spelter',1,71,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29600,50,1570,'Spencer',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29601,50,1896,'Sprague',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29602,50,56,'Spring Dale',1,144,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29603,50,799,'Springfield',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29604,50,147,'Spurlockville',1,163,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29605,50,1126,'Squire',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29606,50,1896,'Stanaford',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29607,50,1265,'Stephenson',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29608,50,124,'Stollings',1,88,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29609,50,723,'Sugar Grove',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29610,50,147,'Sumerco',1,169,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29611,50,725,'Summersville',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29612,50,30,'Summit Point',1,260,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29613,50,1896,'Surveyor',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29614,50,1908,'Sutton',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29615,50,725,'Swiss',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29616,50,1126,'Switchback',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29617,50,124,'Switzer',1,90,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29618,50,99,'Sylvester',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29619,50,1895,'Tad',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29620,50,1910,'Talcott',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29621,50,1621,'Tallmansville',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29622,50,308,'Teays',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29623,50,1894,'Terra Alta',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29624,50,1906,'Thomas',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29625,50,337,'Thornton',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29626,50,1126,'Thorpe',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29627,50,56,'Thurmond',1,146,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29628,50,725,'Tioga',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29629,50,1895,'Tornado',1,32,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29630,50,625,'Triadelphia',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29631,50,390,'Troy',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29632,50,1894,'Tunnelton',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29633,50,99,'Turtle Creek',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29634,50,99,'Twilight',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29635,50,99,'Uneeda',1,66,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29636,50,59,'Union',1,169,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29637,50,723,'Upper Tract',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29638,50,442,'Upperglade',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29639,50,91,'Valley Bend',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29640,50,625,'Valley Grove',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29641,50,91,'Valley Head',1,70,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29642,50,99,'Van',1,69,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29643,50,1899,'Varney',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29644,50,124,'Verdunville',1,91,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29645,50,1899,'Verner',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29646,50,56,'Victor',1,152,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29647,50,1300,'Vienna',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29648,50,77,'Volga',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29649,50,59,'Waiteville',1,175,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29650,50,1300,'Walker',1,50,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29651,50,528,'Walkersville',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29652,50,502,'Wallace',1,73,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29653,50,48,'Wallback',1,123,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29654,50,1570,'Walton',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29655,50,1905,'Wana',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29656,50,1126,'War',1,39,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29657,50,1900,'Wardensville',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29658,50,1126,'Warriormine',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29659,50,1300,'Washington',1,51,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29660,50,1300,'Waverly',1,52,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29661,50,431,'Wayne',1,167,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29662,50,59,'Wayside',1,178,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29663,50,442,'Webster Springs',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29664,50,446,'Weirton',1,99,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29665,50,1126,'Welch',1,41,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29666,50,1902,'Wellsburg',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29667,50,561,'West Columbia',1,48,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29668,50,147,'West Hamlin',1,195,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29669,50,625,'West Liberty',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29670,50,502,'West Milford',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29671,50,1909,'West Union',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29672,50,528,'Weston',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29673,50,1899,'Wharncliffe',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29674,50,99,'Wharton',1,72,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29675,50,625,'Wheeling',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29676,50,1896,'White Oak',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29677,50,1897,'White Sulphur Springs',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29678,50,99,'Whitesville',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29679,50,124,'Whitman',1,94,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29680,50,91,'Whitmer',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29681,50,48,'Widen',1,127,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29682,50,1126,'Wilcoe',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29683,50,261,'Wiley Ford',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29685,50,124,'Wilkinson',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29686,50,1897,'Williamsburg',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29687,50,1899,'Williamson',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29688,50,1300,'Williamstown',1,56,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29689,50,502,'Wilsonburg',1,76,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29690,50,431,'Wilsondale',1,178,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29691,50,1902,'Windsor Heights',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29692,50,308,'Winfield',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29693,50,1895,'Winifrede',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29694,50,56,'Winona',1,166,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29695,50,59,'Wolfcreek',1,182,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29696,50,544,'Wolfe',1,80,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29697,50,99,'Woodville',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29698,50,58,'Worthington',1,149,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29699,50,502,'Wyatt',1,79,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29700,50,1265,'Wyco',1,62,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29701,50,1265,'Wyoming',1,63,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29702,50,147,'Yawkey',1,203,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29703,50,799,'Yellow Spring',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29704,50,124,'Yolyn',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29705,52,147,'Afton',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29706,52,1374,'Aladdin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29707,52,1911,'Albin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29708,52,1912,'Alcova',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29709,52,147,'Alpine',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29710,52,531,'Alta',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29711,52,1374,'Alva',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29712,52,253,'Arapahoe',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29713,52,1912,'Arminto',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29714,52,682,'Arvada',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29715,52,147,'Auburn',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29716,52,1037,'Baggs',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29717,52,1913,'Bairoil',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29718,52,682,'Banner',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29719,52,1049,'Basin',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29720,52,147,'Bedford',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29721,52,1374,'Beulah',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29722,52,682,'Big Horn',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29723,52,1914,'Big Piney',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29724,52,1914,'Bondurant',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29725,52,1256,'Bosler',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29726,52,1914,'Boulder',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29727,52,135,'Buffalo',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29728,52,1256,'Buford',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29729,52,1049,'Burlington',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29730,52,1911,'Burns',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29731,52,1049,'Byron',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29732,52,1911,'Carpenter',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29733,52,1912,'Casper',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29734,52,1256,'Centennial',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29735,52,1911,'Cheyenne',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29736,52,984,'Chugwater',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29737,52,682,'Clearmont',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29738,52,227,'Cody',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29739,52,147,'Cokeville',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29740,52,1914,'Cora',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29741,52,1049,'Cowley',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29742,52,253,'Crowheart',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29743,52,1914,'Daniel',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29744,52,682,'Dayton',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29745,52,1049,'Deaver',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29746,52,1374,'Devils Tower',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29747,52,147,'Diamondville',1,43,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29748,52,1037,'Dixon',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29749,52,1915,'Douglas',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29750,52,253,'Dubois',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29751,52,1912,'Edgerton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29752,52,1037,'Elk Mountain',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29753,52,1049,'Emblem',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29754,52,1037,'Encampment',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29755,52,147,'Etna',1,54,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29756,52,1916,'Evanston',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29757,52,1912,'Evansville',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29758,52,147,'Fairview',1,57,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29759,52,1913,'Farson',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29760,52,1916,'Fort Bridger',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29761,52,1917,'Fort Laramie',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29762,52,253,'Fort Washakie',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29763,52,1918,'Four Corners',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29764,52,227,'Frannie',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29765,52,147,'Freedom',1,64,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29766,52,147,'Frontier',1,65,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29767,52,1911,'Ft Warren Afb',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29768,52,1256,'Garrett',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29769,52,694,'Gillette',1,12,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29770,52,984,'Glendo',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29771,52,1915,'Glenrock',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29772,52,1913,'Granger',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29773,52,1911,'Granite Canon',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29774,52,1913,'Green River',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29775,52,1049,'Greybull',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29776,52,147,'Grover',1,74,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29777,52,984,'Guernsey',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29778,52,1037,'Hanna',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29779,52,984,'Hartville',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29780,52,1917,'Hawk Springs',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29781,52,1912,'Hiland',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29782,52,1911,'Hillsdale',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29783,52,1911,'Horse Creek',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29784,52,253,'Hudson',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29785,52,1374,'Hulett',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29786,52,1917,'Huntley',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29787,52,1049,'Hyattville',1,13,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29788,52,531,'Jackson',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29789,52,1917,'Jay Em',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29790,52,253,'Jeffrey City',1,19,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29791,52,1256,'Jelm',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29792,52,135,'Kaycee',1,40,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29793,52,531,'Kelly',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29794,52,147,'Kemmerer',1,95,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29795,52,253,'Kinnear',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29796,52,1919,'Kirby',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29797,52,147,'La Barge',1,97,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29798,52,1917,'Lagrange',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29799,52,1920,'Lance Creek',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29800,52,253,'Lander',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29801,52,1256,'Laramie',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29802,52,682,'Leiter',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29803,52,135,'Linch',1,53,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29804,52,1917,'Lingle',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29805,52,1913,'Little America',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29806,52,1916,'Lonetree',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29807,52,1915,'Lost Springs',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29808,52,1049,'Lovell',1,15,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29809,52,1920,'Lusk',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29810,52,1916,'Lyman',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29811,52,253,'Lysite',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29812,52,1049,'Manderson',1,16,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29813,52,1920,'Manville',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29814,52,1913,'Mc Kinnon',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29815,52,1037,'Medicine Bow',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29816,52,227,'Meeteetse',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29817,52,1911,'Meriden',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29818,52,1912,'Midwest',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29819,52,1912,'Mills',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29820,52,1374,'Moorcroft',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29821,52,531,'Moose',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29822,52,531,'Moran',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29823,52,1916,'Mountain View',1,5,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29824,52,1912,'Natrona',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29825,52,1918,'Newcastle',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29826,52,147,'Opal',1,130,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29827,52,1918,'Osage',1,3,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29828,52,1049,'Otto',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29829,52,682,'Parkman',1,22,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29830,52,253,'Pavillion',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29831,52,1911,'Pine Bluffs',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29832,52,1914,'Pinedale',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29833,52,1913,'Point Of Rocks',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29834,52,1912,'Powder River',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29835,52,227,'Powell',1,18,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29836,52,227,'Ralston',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29837,52,682,'Ranchester',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29838,52,1037,'Rawlins',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29839,52,694,'Recluse',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29840,52,1913,'Reliance',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29841,52,253,'Riverton',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29842,52,1916,'Robertson',1,6,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29843,52,1256,'Rock River',1,29,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29844,52,1913,'Rock Springs',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29845,52,694,'Rozet',1,27,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29846,52,135,'Saddlestring',1,75,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29847,52,253,'Saint Stephens',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29848,52,1037,'Saratoga',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29849,52,1037,'Savery',1,36,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29850,52,1915,'Shawnee',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29851,52,1049,'Shell',1,20,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29852,52,682,'Sheridan',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29853,52,1037,'Shirley Basin',1,37,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29854,52,253,'Shoshoni',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29855,52,1037,'Sinclair',1,38,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29856,52,147,'Smoot',1,156,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29857,52,682,'Story',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29858,52,1374,'Sundance',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29859,52,1913,'Superior',1,10,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29860,52,1921,'Ten Sleep',1,1,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29861,52,531,'Teton Village',1,14,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29862,52,147,'Thayne',1,174,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29863,52,1919,'Thermopolis',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29864,52,1256,'Tie Siding',1,33,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29865,52,1917,'Torrington',1,7,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29866,52,1918,'Upton',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29867,52,1920,'Van Tassell',1,4,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29868,52,1917,'Veteran',1,8,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29869,52,1037,'Walcott',1,42,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29870,52,1913,'Wamsutter',1,11,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29871,52,227,'Wapiti',1,24,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29872,52,694,'Weston',1,30,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29873,52,984,'Wheatland',1,21,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29874,52,531,'Wilson',1,17,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29875,52,682,'Wolf',1,34,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29876,52,1921,'Worland',1,2,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29877,52,694,'Wright',1,31,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29878,52,682,'Wyarno',1,35,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29879,52,227,'Yellowstone National Park',1,26,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL),(29880,52,1917,'Yoder',1,9,'2022-05-11 11:57:08','2022-05-17 11:49:14',NULL);
/*!40000 ALTER TABLE `cities` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `client_package_questions`
--

DROP TABLE IF EXISTS `client_package_questions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `client_package_questions` (
  `id` int NOT NULL AUTO_INCREMENT,
  `client_package_id` int NOT NULL,
  `question_id` int NOT NULL,
  `answer` varchar(225) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `client_package_questions`
--

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

--
-- Table structure for table `client_packages`
--

DROP TABLE IF EXISTS `client_packages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `client_packages` (
  `id` int NOT NULL AUTO_INCREMENT,
  `package_id` int NOT NULL,
  `client_id` int NOT NULL,
  `sts` tinyint(1) DEFAULT '1',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `client_packages`
--

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

--
-- Table structure for table `clients`
--

DROP TABLE IF EXISTS `clients`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `clients` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `last_name` varchar(225) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `city` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `country` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `phone` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `comments` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `ip` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `dated` date NOT NULL,
  `company_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `lead_id` int DEFAULT NULL,
  `added_by` int DEFAULT NULL,
  `status` tinyint(1) DEFAULT '0',
  `price` int NOT NULL DEFAULT '0',
  `address` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `subject` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `state_id` int DEFAULT NULL,
  `city_id` int DEFAULT NULL,
  `zip` varchar(225) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `password` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `assesment_status` varchar(225) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '0',
  `assesment_code` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `dob` varchar(225) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `conditions` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `web_page_pin` int DEFAULT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `clients`
--

LOCK TABLES `clients` WRITE;
/*!40000 ALTER TABLE `clients` DISABLE KEYS */;
INSERT INTO `clients` VALUES (3,'Jawad','Abbas','jawad@medialinkers.com','','','222-222-2222','I am testing google calendar code','::1','2024-02-10',NULL,8,1,1,0,'House 52 Block X Model Town',NULL,1,230,'32200','$2y$10$IMU.beCSKunKs0n0RhOR6.iGBQev76vtp6JUPYITJVb2Z7PHQL3QG','0',NULL,'2024-09-17',NULL,NULL,'2024-09-17 11:20:48','2024-11-12 13:48:56');
/*!40000 ALTER TABLE `clients` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `clients_history`
--

DROP TABLE IF EXISTS `clients_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `clients_history` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `u_type` int DEFAULT '0',
  `client_id` int DEFAULT '0',
  `user_id` int DEFAULT NULL,
  `contact_id` int DEFAULT NULL,
  `msg` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `ref` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `email` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `add_by_user_id` int DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` date DEFAULT NULL,
  `history_id` int DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `clients_history`
--

LOCK TABLES `clients_history` WRITE;
/*!40000 ALTER TABLE `clients_history` DISABLE KEYS */;
INSERT INTO `clients_history` VALUES (1,1,3,NULL,NULL,'\"Added From Contact Us Lead\"','2','service@medialinkers.com',1,'2024-09-17 11:20:48','2024-09-17',0);
/*!40000 ALTER TABLE `clients_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cms_module_data_images`
--

DROP TABLE IF EXISTS `cms_module_data_images`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cms_module_data_images` (
  `id` int NOT NULL AUTO_INCREMENT,
  `image_name` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `image_name2` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `isBeforeAfter` int DEFAULT '0',
  `isBeforeAfterHaveTwoImages` int DEFAULT '0',
  `module_type` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `module_id` int DEFAULT NULL,
  `module_data_id` int DEFAULT NULL,
  `session_id` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `image_alt` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `image_title` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `sort_order` int DEFAULT '9999',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=137 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cms_module_data_images`
--

LOCK TABLES `cms_module_data_images` WRITE;
/*!40000 ALTER TABLE `cms_module_data_images` DISABLE KEYS */;
INSERT INTO `cms_module_data_images` VALUES (80,'1677842790-resized-r2.webp',NULL,0,0,'cms',1,228,NULL,NULL,NULL,5,'2023-03-03 11:26:31','2024-09-17 17:07:17',NULL),(81,'resized-r1.webp',NULL,0,0,'cms',1,228,NULL,NULL,NULL,2,'2023-03-03 11:26:31','2024-09-17 17:07:17',NULL),(82,'img-88841.webp',NULL,0,0,'cms',1,228,NULL,NULL,NULL,1,'2023-03-03 11:26:31','2024-09-17 17:07:17',NULL),(83,'img-8873.webp',NULL,0,0,'cms',1,228,NULL,NULL,NULL,3,'2023-03-03 11:26:31','2024-09-17 17:07:17',NULL),(84,'img-88631.webp',NULL,0,0,'cms',1,228,NULL,NULL,NULL,4,'2023-03-03 11:26:32','2024-09-17 17:07:17',NULL),(85,'img-5725.webp',NULL,0,0,'cms',1,228,NULL,NULL,NULL,6,'2023-03-03 11:26:32','2024-09-17 17:07:17',NULL),(86,'img-5003.webp',NULL,0,0,'cms',1,228,NULL,NULL,NULL,7,'2023-03-03 11:26:33','2024-09-17 17:07:17',NULL),(87,'img-5002.webp',NULL,0,0,'cms',1,228,NULL,NULL,NULL,8,'2023-03-03 11:26:34','2024-09-17 17:07:17',NULL),(88,'img-4736.webp',NULL,0,0,'cms',1,228,NULL,NULL,NULL,9,'2023-03-03 11:26:34','2024-09-17 17:07:17',NULL),(89,'img-4122.webp',NULL,0,0,'cms',1,228,NULL,NULL,NULL,10,'2023-03-03 11:26:34','2024-09-17 17:07:18',NULL),(90,'1677843930-resized-r2.webp',NULL,0,0,'cms',1,104,NULL,NULL,NULL,3,'2023-03-03 11:45:30','2024-09-17 17:15:10',NULL),(91,'1677843930-resized-r1.webp',NULL,0,0,'cms',1,104,NULL,NULL,NULL,6,'2023-03-03 11:45:30','2024-09-17 17:15:02',NULL),(92,'1677843930-img-88841.webp',NULL,0,0,'cms',1,104,NULL,NULL,NULL,1,'2023-03-03 11:45:31','2024-09-17 17:15:10',NULL),(93,'1677843931-img-8873.webp',NULL,0,0,'cms',1,104,NULL,NULL,NULL,2,'2023-03-03 11:45:31','2024-09-17 17:15:10',NULL),(94,'1677843931-img-88631.webp',NULL,0,0,'cms',1,104,NULL,NULL,NULL,4,'2023-03-03 11:45:31','2024-09-17 17:15:02',NULL),(95,'1677843931-img-5725.webp',NULL,0,0,'cms',1,104,NULL,NULL,NULL,5,'2023-03-03 11:45:32','2024-09-17 17:15:02',NULL),(96,'1677843932-img-5003.webp',NULL,0,0,'cms',1,104,NULL,NULL,NULL,7,'2023-03-03 11:45:32','2024-09-17 17:09:10',NULL),(97,'1677843932-img-5002.webp',NULL,0,0,'cms',1,104,NULL,NULL,NULL,8,'2023-03-03 11:45:33','2024-09-17 17:09:10',NULL),(98,'1677843933-img-4736.webp',NULL,0,0,'cms',1,104,NULL,NULL,NULL,9,'2023-03-03 11:45:33','2024-09-17 17:09:10',NULL),(99,'1677843933-img-4122.webp',NULL,0,0,'cms',1,104,NULL,NULL,NULL,10,'2023-03-03 11:45:34','2024-09-17 17:09:10',NULL),(130,'before.webp','after.webp',1,1,'cms',1,228,NULL,'Before','After',9999,'2024-10-28 10:20:18','2024-10-28 10:30:35',NULL),(131,'ba3-copy.webp',NULL,1,0,'cms',1,228,NULL,NULL,NULL,9999,'2024-10-28 10:33:49',NULL,NULL),(132,'imgonline-com-ua-twotoone-ewmghn6pq5.webp',NULL,0,0,'services',33,176,NULL,'before title','after title',9999,'2024-10-31 14:25:41','2024-10-31 14:26:35',NULL);
/*!40000 ALTER TABLE `cms_module_data_images` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cms_module_datas`
--

DROP TABLE IF EXISTS `cms_module_datas`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cms_module_datas` (
  `id` int NOT NULL AUTO_INCREMENT,
  `heading` varchar(155) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `content_2` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `excerpt` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `post_slug` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `sts` tinyint(1) DEFAULT '1',
  `dated` datetime DEFAULT NULL,
  `featured_img` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `featured_img_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `featured_img_alt` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `additional_field_1` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `additional_field_2` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `additional_field_3` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `additional_field_4` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `additional_field_5` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `additional_field_6` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `additional_field_7` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `additional_field_8` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `item_order` int NOT NULL DEFAULT '0',
  `meta_title` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `meta_keywords` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `meta_description` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `canonical_url` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `menu_location` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `preference_order` int DEFAULT NULL,
  `is_pages` int NOT NULL,
  `permanent_page` enum('1','0') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '0',
  `content_type` enum('page','module') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT 'page',
  `belongs_to_module_id` int DEFAULT '0',
  `cms_module_id` int NOT NULL,
  `show_follow` enum('0','1') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '1',
  `show_index` enum('0','1') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '1',
  `cat_id` int DEFAULT NULL,
  `is_featured` int DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=268 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cms_module_datas`
--

LOCK TABLES `cms_module_datas` WRITE;
/*!40000 ALTER TABLE `cms_module_datas` DISABLE KEYS */;
INSERT INTO `cms_module_datas` VALUES (95,'Do I need a business plan?','<p>Removing welcomed civility or hastened is. Justice elderly but perhaps expense six her are another passage. Full her ten open fond walk not down.For request general express unknown are.</p>\r\n<p>He in just mr door body held john down he. So journey greatly or garrets. Draw door kept do so come on open mean. Estimating stimulated how reasonably precaution diminution she simplicity sir but.</p>',NULL,NULL,'faqs/do-i-need-a-business-plan',1,'2019-05-01 10:41:53','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'Do I need a business plan?','Do I need a business plan?','Do I need a business plan?',NULL,'',0,1,'0','page',0,19,'1','1',NULL,0),(96,'How long should a business plan be?','<p> Removing welcomed civility or hastened is. Justice elderly but perhaps expense six her are another passage. Full her ten open fond walk not down.For request general express unknown are. </p>\r\n                  <p> He in just mr door body held john down he. So journey greatly or garrets. Draw door kept do so come on open mean. Estimating stimulated how reasonably precaution diminution she simplicity sir but. </p>',NULL,NULL,'faqs/',1,'2019-05-01 10:43:16','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'',0,1,'0','page',0,19,'1','1',NULL,0),(101,'Welcome to buspro','We are <span>Providing</span> Best Business Service',NULL,NULL,'banner/slider1-2',1,'2019-05-01 07:44:29','3.webp',NULL,NULL,'View Projects','#','Learn more','##',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'',0,1,'0','page',0,2,'1','1',NULL,0),(102,'More convenient than others','<p>Find Value And Build confidence</p>',NULL,NULL,'banner/slider2-1',1,'2019-05-01 07:45:58','4.webp',NULL,NULL,'View Projects','#','Learn more','##',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'',0,1,'0','page',0,2,'1','1',NULL,0),(104,'About Us','<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed congue est vel nisl mollis sagittis. Fusce aliquet risus a aliquet mattis. Curabitur scelerisque congue tristique. Praesent varius massa eu commodo pulvinar. Sed venenatis feugiat felis eu convallis. Praesent tristique est metus, vel placerat augue ultricies eu. Maecenas mi quam, volutpat in pharetra nec, elementum ullamcorper orci. Quisque fringilla ex velit, eget tempus sem suscipit a. Sed egestas id turpis nec feugiat.&nbsp;<br>Pellentesque vitae nulla molestie, aliquet tellus ac, feugiat quam. Morbi velit mauris, faucibus a condimentum porttitor, mollis id urna. Etiam cursus, lacus sit amet tempor condimentum, magna magna efficitur eros, sit amet scelerisque augue nisl nec turpis.</p>\r\n<ul>\r\n<li>Morbi eleifend</li>\r\n<li>Vehicula felis</li>\r\n<li>Lorem ipsum</li>\r\n<li>Sed congue</li>\r\n<li>Praesent varius</li>\r\n</ul>\r\n<p>Morbi eleifend euismod fermentum. In et vehicula felis. Suspendisse id nibh ac dui imperdiet tincidunt ac non risus. Sed nec laoreet dui, vitae semper ligula. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Suspendisse ullamcorper erat eros, nec vestibulum dolor suscipit sit amet. Pellentesque molestie purus ut aliquam tristique. Mauris velit risus, placerat vitae ex ac, rutrum laoreet sem. Phasellus et purus et nulla sollicitudin luctus. Nullam in ultrices nunc, eget rutrum justo. Aliquam erat volutpat. Mauris at gravida neque.</p>','<p>descp 2</p>','<p>this is excerpt 123</p>','about-us',1,'2019-05-17 10:36:04','3.webp','about us','about us',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,'About US','About Us','About Us',NULL,'1',0,1,'1','page',0,1,'1','1',NULL,0),(118,'Contact Us','<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries.</p>',NULL,NULL,'contact-us',1,'2019-05-17 07:17:41','',NULL,NULL,'settings.html',NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,'Contact Us','Contact Us','Contact Us',NULL,'1',0,1,'1','page',0,1,'1','1',NULL,0),(137,'What goes into a business plan?','<p>Removing welcomed civility or hastened is. Justice elderly but perhaps expense six her are another passage. Full her ten open fond walk not down.For request general express unknown are.</p>\r\n\r\n<p>He in just mr door body held john down he. So journey greatly or garrets. Draw door kept do so come on open mean. Estimating stimulated how reasonably precaution diminution she simplicity sir but.</p>',NULL,NULL,'faqs/checking-news',1,'2019-05-01 10:44:12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'',0,1,'0','page',0,19,'1','1',NULL,0),(139,'404','<p>OOPS! What you are looking for is no longer available or have been removed</p>',NULL,NULL,'404',1,'2017-02-09 10:28:47','',NULL,NULL,'','','','',NULL,NULL,NULL,NULL,13,'','','',NULL,'',0,1,'1','page',0,1,'1','1',NULL,0),(144,'Testimonials 3','<p>Surrounded affronting favourable no mr. Lain knew like half she yet joy. Be than dull as seen very shot. Attachment ye so am travelling estimating projecting is. Off fat address attacks his besides. Suitable settling mr attended no doubtful feelings. Any over for say bore such sold five but hung.</p>',NULL,NULL,'testimonials/test-1',1,'2019-05-01 10:55:18','7.webp',NULL,NULL,'- Marlum Kayum','Developer of Buspro',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'',0,1,'0','page',0,22,'1','1',NULL,0),(145,'Thank you','&nbsp;&nbsp;\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed congue est vel nisl mollis sagittis. Fusce aliquet risus a aliquet mattis. Curabitur scelerisque congue tristique. Praesent varius massa eu commodo pulvinar. Sed venenatis feugiat felis eu convallis. Praesent tristique est metus, vel placerat augue ultricies eu. Maecenas mi quam, volutpat in pharetra nec, elementum ullamcorper orci. Quisque fringilla ex velit, eget tempus sem suscipit a. Sed egestas id turpis nec feugiat.<br />\r\n<br />\r\nPellentesque vitae nulla molestie, aliquet tellus ac, feugiat quam. Morbi velit mauris, faucibus a condimentum porttitor, mollis id urna. Etiam cursus, lacus sit amet tempor condimentum, magna magna efficitur eros, sit amet scelerisque augue nisl nec turpis.</p>\r\n\r\n<ul>\r\n	<li>Morbi eleifend</li>\r\n	<li>Vehicula felis</li>\r\n	<li>Lorem ipsum</li>\r\n	<li>Sed congue</li>\r\n	<li>Praesent varius</li>\r\n</ul>\r\n\r\n<p>Morbi eleifend euismod fermentum. In et vehicula felis. Suspendisse id nibh ac dui imperdiet tincidunt ac non risus. Sed nec laoreet dui, vitae semper ligula. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Suspendisse ullamcorper erat eros, nec vestibulum dolor suscipit sit amet. Pellentesque molestie purus ut aliquam tristique. Mauris velit risus, placerat vitae ex ac, rutrum laoreet sem. Phasellus et purus et nulla sollicitudin luctus. Nullam in ultrices nunc, eget rutrum justo. Aliquam erat volutpat. Mauris at gravida neque.</p>',NULL,NULL,'thank-you',1,'2019-07-15 08:06:53','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11,'Thank you',NULL,NULL,NULL,'',0,1,'1','page',0,1,'1','1',NULL,0),(147,'Testimonial 2','<p>Surrounded affronting favourable no mr. Lain knew like half she yet joy. Be than dull as seen very shot. Attachment ye so am travelling estimating projecting is. Off fat address attacks his besides. Suitable settling mr attended no doubtful feelings. Any over for say bore such sold five but hung.</p>',NULL,NULL,'testimonials/lorem-ipsum-2',1,'2019-05-01 10:51:56','6.webp',NULL,NULL,'Jonathom Abhi','Designer of Buspro',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'',0,1,'0','page',0,22,'1','1',NULL,0),(151,'Home','&nbsp;&nbsp;',NULL,NULL,'',0,'2018-07-10 04:20:10','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'Home','Keyword','descriptions',NULL,'',0,1,'1','page',0,1,'1','1',NULL,0),(164,'testimonial 1','<p>Surrounded affronting favourable no mr. Lain knew like half she yet joy. Be than dull as seen very shot. Attachment ye so am travelling estimating projecting is. Off fat address attacks his besides. Suitable settling mr attended no doubtful feelings. Any over for say bore such sold five but hung.</p>',NULL,NULL,'testimonials/testimonialsvery-nice-experience',1,'2019-05-01 10:50:21','5.webp',NULL,NULL,'Nathan Junior','CEO of Buspro',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'',NULL,1,'0','page',0,22,'1','1',NULL,0),(167,'Where do I start?','<p>Removing welcomed civility or hastened is. Justice elderly but perhaps expense six her are another passage. Full her ten open fond walk not down.For request general express unknown are.</p>\r\n<p>He in just mr door body held john down he. So journey greatly or garrets. Draw door kept do so come on open mean. Estimating stimulated how reasonably precaution diminution she simplicity sir but.</p>',NULL,NULL,'faqs/where-start',1,'2019-05-01 10:45:45','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'',NULL,1,'0','page',0,19,'1','1',NULL,0),(175,'Images Gallery','Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vero recusandae perferendis, eius odit quod! Modi cum illum odio ullam commodi, earum hic est repudiandae ex sit sunt doloremque, ipsum quibusdam.',NULL,NULL,'gallery',1,'2019-05-09 07:56:48','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,6,'Images Gallery','Images Gallery','Images Gallery',NULL,NULL,NULL,1,'1','page',0,1,'1','1',NULL,0),(182,'Cupid Love','',NULL,NULL,'partners/cupid-love',1,'2019-05-01 12:49:22','05.webp',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,'0','page',0,34,'1','1',NULL,0),(183,'The Corps','',NULL,NULL,'partners/the-corps',1,'2019-05-01 12:49:54','01.webp',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,'0','page',0,34,'1','1',NULL,0),(184,'The Zayka','',NULL,NULL,'partners/the-zayka',1,'2019-05-01 12:50:59','04.webp',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,'0','page',0,34,'1','1',NULL,0),(185,'CarDealer','',NULL,NULL,'partners/cardealer',1,'2019-05-01 12:52:21','06.webp',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,'0','page',0,34,'1','1',NULL,0),(186,'Constro','',NULL,NULL,'partners/constro',1,'2019-05-01 12:53:08','02.webp',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,'0','page',0,34,'1','1',NULL,0),(187,'First Working Prosses','',NULL,NULL,'feature/features/first-working-prosses',1,'2019-05-17 10:35:30','',NULL,NULL,'flaticon-fit',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'',NULL,1,'0','page',0,35,'1','1',NULL,0),(188,'IT Control Solutions','',NULL,NULL,'feature/features/it-control-solutions',1,'2019-05-15 09:33:12','',NULL,NULL,'flaticon-target',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'',NULL,1,'0','page',0,35,'1','1',NULL,0),(189,'Audit & Assurance','',NULL,NULL,'feature/features/audit-assurance',1,'2019-05-15 09:33:21','',NULL,NULL,'flaticon-chart',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'',NULL,1,'0','page',0,35,'1','1',NULL,0),(190,'24/7 Live Support','',NULL,NULL,'feature/features/24-7-live-support',1,'2019-05-17 10:35:46','1.webp',NULL,NULL,'flaticon-customer-service',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'',NULL,1,'0','page',0,35,'1','1',NULL,0),(212,'Testimonial 1','<p>This is testimonial 1</p>',NULL,NULL,'testimonials/testimonial-1',1,'2019-05-14 06:17:13','1701722819-7.webp',NULL,NULL,'John','Dev','NY',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'',NULL,1,'0','page',0,22,'1','1',NULL,0),(214,'Watch Me Glo','<h3><strong>Calling you to greatness!</strong></h3>\r\n<ul>\r\n<li>Weekly Confidence calls,</li>\r\n<li>Daily Quotes &amp; Reviews</li>\r\n<li>Access to Online knowledge portals</li>\r\n<li>Self Care routines which are vital for personal &amp; professional growth</li>\r\n</ul>',NULL,NULL,'package/watch-me-glo',1,'2022-09-30 11:35:34','package01.webp','Watch Me Glo','Watch Me Glo','24.99',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'',NULL,1,'0','page',0,37,'1','1',NULL,0),(215,'Top Of  The Class','<h3>2 Hrs of Consultation</h3>\r\n<ul>\r\n<li>Condition Review &amp; Assessment</li>\r\n<li>Daily Quotes &amp; Reviews</li>\r\n<li>45 Min Session Per Month</li>\r\n<li>Access to Online Programs</li>\r\n<li>SMS Text</li>\r\n</ul>',NULL,NULL,'package/top-of-the-class',1,'2022-09-30 11:39:33','package02.webp','Top Of  The Class','Top Of  The Class','74.99',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'',NULL,1,'0','page',0,37,'1','1',NULL,0),(216,'Yacht Club','<h3>2 Hrs of Consultation</h3>\r\n\r\n<ul>\r\n	<li>Condition Review &amp; Assessment</li>\r\n	<li>Daily Quotes &amp; Reviews</li>\r\n	<li>45 Min Session Per Month</li>\r\n	<li>Access to Online Programs</li>\r\n	<li>SMS Text</li>\r\n</ul>',NULL,NULL,'package/yacht-club',1,'2022-09-30 11:40:57','package03.webp','Yacht Club','Yacht Club','135.99',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,'0','page',0,37,'1','1',NULL,0),(218,'Depression','',NULL,NULL,'condition/depression',1,'2022-10-03 14:31:52','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,'0','page',0,38,'1','1',NULL,0),(219,'PTSD','',NULL,NULL,'condition/ptsd',1,'2022-10-03 14:32:11','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,'0','page',0,38,'1','1',NULL,0),(220,'Stress','',NULL,NULL,'condition/stress',1,'2022-10-03 14:32:23','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,'0','page',0,38,'1','1',NULL,0),(221,'Anxiety','',NULL,NULL,'condition/anxiety',1,'2022-10-03 14:32:38','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,'0','page',0,38,'1','1',NULL,0),(222,'Self Esteem','',NULL,NULL,'condition/self-esteem',1,'2022-10-03 14:32:52','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,'0','page',0,38,'1','1',NULL,0),(228,'Page with Images','<p>Morbi eleifend euismod fermentum. In et vehicula felis. Suspendisse id nibh ac dui imperdiet tincidunt ac non risus. Sed nec laoreet dui, vitae semper ligula. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Suspendisse ullamcorper erat eros, nec vestibulum dolor suscipit sit amet. Pellentesque molestie purus ut aliquam tristique. Mauris velit risus, placerat vitae ex ac, rutrum laoreet sem. Phasellus et purus et nulla sollicitudin luctus. Nullam in ultrices nunc, eget rutrum justo. Aliquam erat volutpat. Mauris at gravida neque.</p>\r\n<p><img style=\"margin: 5px; float: left;\" src=\"http://localhost/mlcms/site_files/public/mlstorage/uploads/editor/images/3.webp\" alt=\"\"></p>\r\n<p>Morbi eleifend euismod fermentum. In et vehicula felis. Suspendisse id nibh ac dui imperdiet tincidunt ac non risus. Sed nec laoreet dui, vitae semper ligula. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Suspendisse ullamcorper erat eros, nec vestibulum dolor suscipit sit amet. Pellentesque molestie purus ut aliquam tristique. Mauris velit risus, placerat vitae ex ac, rutrum laoreet sem. Phasellus et purus et nulla sollicitudin luctus. Nullam in ultrices nunc, eget rutrum justo. Aliquam erat volutpat. Mauris at gravida neque.</p>\r\n<p>Curabitur scelerisque congue tristique. Praesent varius massa eu commodo pulvinar. Sed venenatis feugiat felis eu convallis. Praesent tristique est metus, vel placerat augue ultricies eu. Maecenas mi quam, volutpat in pharetra nec, elementum ullamcorper orci. Quisque fringilla ex velit, eget tempus sem suscipit a. Sed egestas id turpis nec feugiat.<br><br>Pellentesque vitae nulla molestie, aliquet tellus ac, feugiat quam. Morbi velit mauris, faucibus a condimentum porttitor, mollis id urna. Etiam cursus, lacus sit amet tempor condimentum, magna magna efficitur eros, sit amet scelerisque augue nisl nec turpis.</p>\r\n<p><img style=\"float: right; margin: 5px;\" src=\"http://localhost/mlcms/site_files/public/mlstorage/uploads/editor/images/2.webp\"></p>\r\n<p>Morbi eleifend euismod fermentum. In et vehicula felis. Suspendisse id nibh ac dui imperdiet tincidunt ac non risus. Sed nec laoreet dui, vitae semper ligula. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Suspendisse ullamcorper erat eros, nec vestibulum dolor suscipit sit amet. Pellentesque molestie purus ut aliquam tristique. Mauris velit risus, placerat vitae ex ac, rutrum laoreet sem. Phasellus et purus et nulla sollicitudin luctus. Nullam in ultrices nunc, eget rutrum justo. Aliquam erat volutpat. Mauris at gravida neque.</p>',NULL,NULL,'page-with-images',1,'2023-03-03 11:26:56','resized-r2.webp','alt-1','title-1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8,'Page with Images','Page with Images','Page with Images',NULL,'2',NULL,1,'0','page',0,1,'1','1',NULL,0),(233,'Frequently Ask Questions',NULL,NULL,NULL,'faqs',1,'2023-07-22 12:03:07','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,NULL,NULL,NULL,NULL,NULL,0,'1','module',19,1,'1','1',NULL,0),(234,'Testimonials',NULL,NULL,NULL,'testimonials',1,'2023-07-22 12:03:08','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,0,'1','module',22,1,'1','1',NULL,0),(236,'Partners',NULL,NULL,NULL,'partners',1,'2023-07-22 12:03:12','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9,NULL,NULL,NULL,NULL,NULL,NULL,0,'1','module',34,1,'1','1',NULL,0),(248,'Packages','',NULL,NULL,'package/package',1,'2023-12-04 20:45:58','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,NULL,NULL,NULL,NULL,'',NULL,1,'1','module',37,1,'1','1',NULL,0),(249,'Videos','<p>videos</p>',NULL,NULL,'videos',1,'2023-12-11 11:27:15','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12,'videos','videos','videos',NULL,'',NULL,1,'0','page',0,1,'1','1',NULL,0),(261,'Google Calendar','<p>Google Calendar</p>',NULL,NULL,'google-calendar',1,'2024-02-06 14:44:31','','Google Calendar','Google Calendar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Google Calendar','Google Calendar','Google Calendar',NULL,'2',NULL,1,'0','page',0,1,'1','1',NULL,0),(265,'News','<p>News</p>',NULL,NULL,'news',1,'2024-12-24 03:58:04','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'News','News','News',NULL,'',NULL,1,'0','page',0,1,'1','1',NULL,0),(266,'Services','<p>Services</p>',NULL,NULL,'services',1,'2024-12-24 04:26:53','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'Services','Services','Services',NULL,NULL,NULL,1,'0','page',0,1,'1','1',NULL,0),(267,'Blog','<p>Blog</p>',NULL,NULL,'blog',1,'2024-12-24 04:27:51','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'Blog','Blog','Blog',NULL,NULL,NULL,1,'0','page',0,1,'1','1',NULL,0);
/*!40000 ALTER TABLE `cms_module_datas` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cms_modules`
--

DROP TABLE IF EXISTS `cms_modules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cms_modules` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `term` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `type` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `description` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `additional_fields` tinyint(1) NOT NULL,
  `additional_field_title_1` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `additional_field_title_2` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `additional_field_title_3` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `additional_field_title_4` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `additional_field_title_5` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `additional_field_title_6` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `additional_field_title_7` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `additional_field_title_8` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `have_category` tinyint(1) DEFAULT '0',
  `show_page_slug_field` tinyint(1) DEFAULT '1',
  `show_ordering_options` tinyint(1) NOT NULL DEFAULT '0',
  `show_menu_field` tinyint(1) DEFAULT '0',
  `show_feature_img_field` tinyint(1) DEFAULT '1',
  `show_more_images_option` tinyint(1) DEFAULT '0',
  `show_videos_option` tinyint(1) DEFAULT '0',
  `show_seo_field` tinyint(1) DEFAULT '1',
  `show_in_admin_menu` tinyint(1) DEFAULT '1',
  `show_preview_link_on_listing_page` tinyint(1) NOT NULL DEFAULT '0',
  `feature_img_thmb_width` int NOT NULL DEFAULT '210',
  `feature_img_thmb_height` int DEFAULT '210',
  `show_follow` tinyint(1) DEFAULT '1',
  `show_index` tinyint(1) DEFAULT '1',
  `show_featured_image` tinyint DEFAULT '0',
  `module_fontawesome_icon` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT 'fa-solid fa-users',
  `crop_image` enum('Yes','No') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT 'No',
  `show_excerpt` tinyint(1) DEFAULT '1',
  `show_descp` tinyint(1) DEFAULT '1',
  `show_descp_2` tinyint(1) DEFAULT '0',
  `mod_menu_id` int DEFAULT '0',
  `page_heading` tinyint(1) NOT NULL DEFAULT '1',
  `page_link` tinyint(1) NOT NULL DEFAULT '1',
  `page_menu_option` tinyint(1) NOT NULL DEFAULT '1',
  `page_content` tinyint(1) NOT NULL DEFAULT '1',
  `page_featured_img` tinyint(1) NOT NULL DEFAULT '1',
  `page_follow_index` tinyint(1) NOT NULL DEFAULT '1',
  `page_seo_option` tinyint(1) NOT NULL DEFAULT '1',
  `access_level` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT 'super-admin,normal-admin',
  `show_icon_in` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT 'show_icon_in_left,show_icon_in_dashboard',
  `show_is_featured` tinyint(1) DEFAULT '0',
  `how_many_featured` int DEFAULT '100',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cms_modules`
--

LOCK TABLES `cms_modules` WRITE;
/*!40000 ALTER TABLE `cms_modules` DISABLE KEYS */;
INSERT INTO `cms_modules` VALUES (1,'Manage Pages','Page','cms','                                                                                ',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,1,1,1,1,1,0,1,300,200,1,1,1,'fas fa-file-alt','Yes',1,1,0,0,1,1,1,1,1,1,1,'super-admin,normal-admin','show_icon_in_left',0,100),(2,'All Banners','Banner','banner','',4,'Button-1 Text','Button-1 Link','Button-2 Text','Button-2 Link',NULL,NULL,NULL,NULL,0,0,0,0,1,1,1,0,1,0,210,0,0,0,1,'fas fa-images','No',0,1,0,247,1,1,1,1,1,1,1,'super-admin,normal-admin','show_icon_in_left,show_icon_in_dashboard',0,100),(19,'Frequently Ask Questions','FAQs','faqs','                                                                                ',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,0,1,1,1,210,200,0,0,0,'fas fa-question','Yes',0,1,0,233,1,1,1,1,1,1,1,'super-admin,normal-admin','show_icon_in_left,show_icon_in_dashboard',0,100),(22,'Testimonials','Testimonials','testimonials','                                                                                ',3,'Customer\'s Name','Designation','City',NULL,NULL,NULL,NULL,NULL,0,0,1,0,1,1,1,0,1,0,200,100,0,0,1,'fas fa-quote-right','Yes',0,1,0,234,1,1,1,1,1,1,1,'super-admin,normal-admin','show_icon_in_left,show_icon_in_dashboard',0,100),(34,'Partners','partners','partners',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,1,1,1,0,1,0,193,87,0,0,1,'fas fa-user-friends','No',0,0,0,236,1,1,1,1,1,1,1,'super-admin,normal-admin','show_icon_in_left,show_icon_in_dashboard',0,100),(35,'Feature','feature','feature',NULL,1,'Icon',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,0,0,0,0,0,0,200,0,0,0,1,'fa-solid fa-users','No',0,0,0,237,1,1,0,0,0,1,1,'super-admin,normal-admin','show_icon_in_left,show_icon_in_dashboard',0,100),(37,'Packages','Package','package',NULL,1,'Price',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,1,1,1,0,1,0,210,210,0,0,1,'fas fa-archive','No',0,1,0,248,1,1,1,1,1,1,1,'super-admin,normal-admin','show_icon_in_left,show_icon_in_dashboard',0,100),(38,'Conditions','Condition','condition',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,0,0,0,0,0,0,210,210,0,0,0,'fa-solid fa-users','No',0,0,0,239,1,1,1,1,1,1,1,'super-admin,normal-admin','show_icon_in_left,show_icon_in_dashboard',0,100),(48,'Manage Images SEO','Manage Images SEO','manage-images-seo',NULL,2,'Image Title','Image Alt',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,210,210,0,0,0,'fas fa-align-justify','No',0,0,0,0,1,1,1,1,1,1,1,'super-admin,normal-admin','show_icon_in_left,show_icon_in_dashboard',0,100);
/*!40000 ALTER TABLE `cms_modules` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cms_news`
--

DROP TABLE IF EXISTS `cms_news`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cms_news` (
  `id` int NOT NULL AUTO_INCREMENT,
  `news_id` int NOT NULL,
  `title` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `description` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `dated` datetime NOT NULL,
  `link` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `read_status` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cms_news`
--

LOCK TABLES `cms_news` WRITE;
/*!40000 ALTER TABLE `cms_news` DISABLE KEYS */;
INSERT INTO `cms_news` VALUES (1,5,'CMS Update 2024','<p>If your CMS was built prior to 2018 please contact us to update your CMS with the new framework. Call 770 568 8799 or email: service@medialinkers.com</p>','2024-01-18 03:08:13','news01/18/24',0);
/*!40000 ALTER TABLE `cms_news` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `conditions`
--

DROP TABLE IF EXISTS `conditions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `conditions` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'content_table(manage content)',
  `type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `featured_image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `document` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `status` tinyint(1) DEFAULT '1',
  `schedule_date` date DEFAULT NULL,
  `schedule_type` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `condition_content` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `cron_test` varchar(225) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `conditions`
--

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

--
-- Table structure for table `contact_block_ips`
--

DROP TABLE IF EXISTS `contact_block_ips`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contact_block_ips` (
  `id` int NOT NULL AUTO_INCREMENT,
  `ip_list` varchar(80) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `dated` datetime DEFAULT NULL,
  `sts` tinyint(1) DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `contact_block_ips`
--

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

--
-- Table structure for table `contact_lead_histories`
--

DROP TABLE IF EXISTS `contact_lead_histories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contact_lead_histories` (
  `id` int NOT NULL AUTO_INCREMENT,
  `contact_id` int DEFAULT NULL,
  `user_id` int DEFAULT NULL,
  `msg` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `contact_lead_histories`
--

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

--
-- Table structure for table `contact_us_requests`
--

DROP TABLE IF EXISTS `contact_us_requests`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contact_us_requests` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `lname` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `city` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `state` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
  `zip_code` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
  `tax_exempt` varchar(255) COLLATE utf8mb4_general_ci NOT NULL DEFAULT 'No',
  `country` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `phone` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `comments` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `ip` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `dated` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `company_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `added_by` int DEFAULT NULL,
  `read_lead` int NOT NULL DEFAULT '0',
  `price` int NOT NULL DEFAULT '0',
  `subject` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `address` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `is_exported` int DEFAULT '0',
  `package_id` varchar(225) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `assesment_status` varchar(225) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '0',
  `assesment_code` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `added_to_google_calendar` int DEFAULT '0',
  `referrer` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `contact_us_requests`
--

LOCK TABLES `contact_us_requests` WRITE;
/*!40000 ALTER TABLE `contact_us_requests` DISABLE KEYS */;
INSERT INTO `contact_us_requests` VALUES (1,'Leroy Sullivan','Aphrodite William','fufetosaw@mailinator.com','',NULL,NULL,'No','','156-888-9467','Aliquam laboriosam','127.0.0.1','1993-02-24 19:00:00',NULL,1,1,0,'Autem perspiciatis',NULL,0,NULL,'0',NULL,0,NULL,'2026-05-07 14:39:02','2026-05-07 05:39:07');
/*!40000 ALTER TABLE `contact_us_requests` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `contact_uses`
--

DROP TABLE IF EXISTS `contact_uses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contact_uses` (
  `id` int NOT NULL AUTO_INCREMENT,
  `first_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `last_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `u_email` varchar(80) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `phone_number` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `professional_group` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `company_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `address` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `street_address` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `address_line` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `city` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `state_province_region` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `postal_zip_code` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `country` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `assist` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `consultation_on_a_specific_project_specifications` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `aia_ces_presentation` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `liquid_color_dispensers` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `training_and_education_information` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `samples` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `becoming_a_distributor` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `chromix_admixtures_color_chart` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `lithochrome_tintura_color_chart` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `formula_One_dye_color_chart` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `lithochrome_color_hardener_color_chart` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `solachrome_hight_sri_concrete_brochure` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `curing_sealing_selection_guide` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `lithochrome_chemstain_color_chart` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `lithotex_pavecrafters_brochure` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `scofeld_texturetop_brochure` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `revive_xterior_concrete_stain_color_chart` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `naturescapes_color_chart` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `revive_colored_sealer_color_char` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `yes_no` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `contact_uses`
--

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

--
-- Table structure for table `content_condition`
--

DROP TABLE IF EXISTS `content_condition`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `content_condition` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'condition_table(manage condition)',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `content_condition`
--

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

--
-- Table structure for table `counties`
--

DROP TABLE IF EXISTS `counties`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `counties` (
  `id` int NOT NULL AUTO_INCREMENT,
  `state_id` int DEFAULT NULL,
  `county_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `status` tinyint(1) DEFAULT '1',
  `sort_order` int DEFAULT '9999999',
  `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `ID_STATE` (`state_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1927 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `counties`
--

LOCK TABLES `counties` WRITE;
/*!40000 ALTER TABLE `counties` DISABLE KEYS */;
INSERT INTO `counties` VALUES (1,2,'Aleutians West',1,25,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(2,2,'Bethel',1,159,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(3,2,'Aleutians East',1,24,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(4,2,'Kusilvak',1,949,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(5,2,'Dillingham',1,511,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(6,2,'Yukon Koyukuk',1,1917,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(7,2,'Northwest Arctic',1,1246,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(8,2,'North Slope',1,1243,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(9,2,'Kenai Peninsula',1,907,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(10,2,'Anchorage',1,44,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(11,2,'Denali',1,495,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(12,2,'Skagway Hoonah Angoon',1,1609,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(13,2,'Juneau',1,890,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(14,2,'Matanuska Susitna',1,1086,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(15,2,'Nome',1,1239,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(16,2,'Southeast Fairbanks',1,1622,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(17,2,'Lake And Peninsula',1,964,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(18,2,'Valdez Cordova',1,1769,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(19,2,'Prince Wales Ketchikan',1,1406,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(20,2,'Fairbanks North Star',1,587,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(21,2,'Haines',1,735,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(22,2,'Wrangell Petersburg',1,1891,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(23,2,'Kodiak Island',1,944,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(24,2,'Ketchikan Gateway',1,918,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(25,2,'Bristol Bay',1,215,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(26,2,'Sitka',1,1607,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(27,2,'Yakutat',1,1900,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(28,1,'Henry',1,785,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(29,1,'Tuscaloosa',1,1749,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(30,1,'Jefferson',1,870,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(31,1,'Winston',1,1878,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(32,1,'Hale',1,736,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(33,1,'Shelby',1,1594,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(34,1,'Wilcox',1,1859,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(35,1,'Marshall',1,1080,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(36,1,'Tallapoosa',1,1683,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(37,1,'Calhoun',1,259,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(38,1,'Pickens',1,1353,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(39,1,'Blount',1,176,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(40,1,'Clarke',1,365,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(41,1,'Talladega',1,1681,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(42,1,'Etowah',1,583,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(43,1,'Covington',1,431,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(44,1,'Lauderdale',1,987,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(45,1,'Limestone',1,1015,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(46,1,'Dale',1,464,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(47,1,'Houston',1,818,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(48,1,'Clay',1,367,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(49,1,'Saint Clair',1,1504,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(50,1,'Escambia',1,579,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(51,1,'Lee',1,998,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(52,1,'Autauga',1,91,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(53,1,'Mobile',1,1157,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(54,1,'Cullman',1,453,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(55,1,'Pike',1,1356,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(56,1,'Fayette',1,601,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(57,1,'Baldwin',1,98,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(58,1,'Marion',1,1076,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(59,1,'Monroe',1,1167,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(60,1,'Lamar',1,966,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(61,1,'Sumter',1,1665,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(62,1,'Geneva',1,657,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(63,1,'Greene',1,708,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(64,1,'Crenshaw',1,442,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(65,1,'Bibb',1,161,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(66,1,'Jackson',1,864,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(67,1,'Conecuh',1,411,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(68,1,'Madison',1,1056,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(69,1,'Walker',1,1801,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(70,1,'Choctaw',1,348,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(71,1,'Washington',1,1820,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(72,1,'Montgomery',1,1172,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(73,1,'Cherokee',1,334,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(74,1,'Butler',1,246,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(75,1,'Colbert',1,390,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(76,1,'Chilton',1,344,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(77,1,'Barbour',1,109,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(78,1,'De Kalb',1,483,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(79,1,'Elmore',1,572,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(80,1,'Russell',1,1492,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(81,1,'Lawrence',1,991,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(82,1,'Morgan',1,1180,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(83,1,'Marengo',1,1070,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(84,1,'Cleburne',1,372,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(85,1,'Coffee',1,387,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(86,1,'Coosa',1,420,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(87,1,'Bullock',1,236,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(88,1,'Chambers',1,312,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(89,1,'Macon',1,1053,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(90,1,'Lowndes',1,1037,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(91,1,'Randolph',1,1427,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(92,1,'Franklin',1,624,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(93,1,'Perry',1,1342,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(94,1,'Dallas',1,466,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(95,4,'Saline',1,1524,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(96,4,'Little River',1,1020,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(97,4,'Crawford',1,440,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(98,4,'Arkansas',1,65,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(99,4,'Boone',1,185,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(100,4,'Clark',1,364,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(101,4,'Desha',1,501,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(102,4,'Mississippi',1,1154,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(103,4,'Sharp',1,1589,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(104,4,'Pope',1,1381,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(105,4,'Woodruff',1,1885,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(106,4,'Lonoke',1,1027,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(107,4,'Benton',1,150,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(108,4,'White',1,1849,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(109,4,'Bradley',1,202,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(110,4,'Sebastian',1,1578,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(111,4,'Phillips',1,1350,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(112,4,'Independence',1,841,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(113,4,'Craighead',1,437,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(114,4,'Ouachita',1,1297,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(115,4,'Carroll',1,285,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(116,4,'Van Buren',1,1772,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(117,4,'Yell',1,1909,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(118,4,'Sevier',1,1584,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(119,4,'Fulton',1,634,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(120,4,'Baxter',1,125,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(121,4,'Prairie',1,1395,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(122,4,'Hot Spring',1,815,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(123,4,'Hempstead',1,779,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(124,4,'Logan',1,1024,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(125,4,'Nevada',1,1217,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(126,4,'Polk',1,1377,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(127,4,'Scott',1,1573,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(128,4,'Lafayette',1,959,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(129,4,'Izard',1,862,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(130,4,'Saint Francis',1,1506,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(131,4,'Union',1,1761,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(132,4,'Conway',1,415,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(133,4,'Cross',1,448,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(134,4,'Crittenden',1,444,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(135,4,'Johnson',1,882,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(136,4,'Pulaski',1,1411,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(137,4,'Newton',1,1229,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(138,4,'Faulkner',1,599,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(139,4,'Ashley',1,74,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(140,4,'Chicot',1,342,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(141,4,'Howard',1,819,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(142,4,'Miller',1,1145,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(143,4,'Columbia',1,402,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(144,4,'Stone',1,1651,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(145,4,'Poinsett',1,1375,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(146,4,'Searcy',1,1577,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(147,4,'Lincoln',1,1016,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(148,4,'Grant',1,697,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(149,4,'Garland',1,645,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(150,4,'Cleveland',1,374,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(151,4,'Drew',1,531,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(152,3,'Maricopa',1,1072,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(153,3,'Pima',1,1357,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(154,3,'Apache',1,55,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(155,3,'Santa Cruz',1,1553,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(156,3,'Pinal',1,1358,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(157,3,'Yavapai',1,1907,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(158,3,'Coconino',1,385,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(159,3,'Cochise',1,382,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(160,3,'Greenlee',1,709,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(161,3,'Navajo',1,1210,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(162,3,'La Paz',1,951,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(163,3,'Mohave',1,1161,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(164,3,'Graham',1,690,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(165,3,'Gila',1,662,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(166,3,'Yuma',1,1918,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(167,5,'San Joaquin',1,1535,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(168,5,'Los Angeles',1,1030,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(169,5,'San Bernardino',1,1530,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(170,5,'Modoc',1,1159,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(171,5,'Riverside',1,1463,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(172,5,'Madera',1,1055,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(173,5,'Alameda',1,18,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(174,5,'Contra Costa',1,413,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(175,5,'Mendocino',1,1127,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(176,5,'Humboldt',1,827,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(177,5,'Orange',1,1282,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(178,5,'Sierra',1,1602,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(179,5,'Tulare',1,1744,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(180,5,'San Diego',1,1531,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(181,5,'Placer',1,1368,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(182,5,'Calaveras',1,255,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(183,5,'Santa Clara',1,1552,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(184,5,'Amador',1,39,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(185,5,'Napa',1,1204,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(186,5,'Shasta',1,1590,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(187,5,'Sonoma',1,1620,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(188,5,'Sacramento',1,1498,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(189,5,'Colusa',1,405,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(190,5,'Kings',1,931,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(191,5,'Monterey',1,1170,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(192,5,'San Luis Obispo',1,1538,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(193,5,'Glenn',1,674,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(194,5,'Kern',1,915,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(195,5,'San Mateo',1,1539,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(196,5,'Merced',1,1130,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(197,5,'Fresno',1,631,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(198,5,'Butte',1,247,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(199,5,'Imperial',1,840,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(200,5,'Yuba',1,1916,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(201,5,'Plumas',1,1372,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(202,5,'Marin',1,1074,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(203,5,'Solano',1,1617,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(204,5,'Mono',1,1164,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(205,5,'Lassen',1,984,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(206,5,'Trinity',1,1737,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(207,5,'Tuolumne',1,1747,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(208,5,'Inyo',1,845,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(209,5,'Ventura',1,1780,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(210,5,'Yolo',1,1913,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(211,5,'Santa Barbara',1,1551,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(212,5,'Siskiyou',1,1606,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(213,5,'El Dorado',1,563,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(214,5,'Mariposa',1,1077,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(215,5,'Stanislaus',1,1632,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(216,5,'Lake',1,963,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(217,5,'Tehama',1,1693,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(218,5,'Del Norte',1,492,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(219,5,'San Benito',1,1529,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(220,5,'Alpine',1,38,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(221,5,'Sutter',1,1670,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(222,5,'San Francisco',1,1532,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(223,6,'Elbert',1,565,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(224,6,'Las Animas',1,981,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(225,6,'Alamosa',1,19,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(226,6,'Boulder',1,191,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(227,6,'Park',1,1314,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(228,6,'Gunnison',1,729,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(229,6,'Conejos',1,412,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(230,6,'Cheyenne',1,340,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(231,6,'Archuleta',1,62,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(232,6,'Kiowa',1,934,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(233,6,'Pitkin',1,1363,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(234,6,'Weld',1,1835,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(235,6,'Adams',1,7,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(236,6,'Arapahoe',1,60,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(237,6,'Delta',1,494,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(238,6,'Eagle',1,545,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(239,6,'Pueblo',1,1410,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(240,6,'Garfield',1,644,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(241,6,'La Plata',1,952,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(242,6,'Montrose',1,1175,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(243,6,'Larimer',1,979,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(244,6,'Kit Carson',1,935,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(245,6,'Gilpin',1,668,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(246,6,'Costilla',1,427,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(247,6,'Summit',1,1663,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(248,6,'Broomfield',1,222,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(249,6,'Chaffee',1,311,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(250,6,'Dolores',1,521,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(251,6,'El Paso',1,564,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(252,6,'Baca',1,94,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(253,6,'Fremont',1,630,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(254,6,'Douglas',1,530,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(255,6,'Rio Grande',1,1460,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(256,6,'Otero',1,1292,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(257,6,'Routt',1,1487,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(258,6,'Mesa',1,1135,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(259,6,'Montezuma',1,1171,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(260,6,'Moffat',1,1160,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(261,6,'Mineral',1,1149,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(262,6,'Saguache',1,1501,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(263,6,'Teller',1,1695,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(264,6,'Crowley',1,450,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(265,6,'Denver',1,498,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(266,6,'Clear Creek',1,369,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(267,6,'San Miguel',1,1540,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(268,6,'Bent',1,149,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(269,6,'Grand',1,692,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(271,6,'Huerfano',1,824,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(272,6,'Prowers',1,1409,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(273,6,'Sedgwick',1,1579,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(274,6,'Hinsdale',1,799,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(275,6,'Rio Blanco',1,1459,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(276,6,'Ouray',1,1298,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(277,6,'San Juan',1,1536,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(278,6,'Custer',1,459,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(279,7,'Windham',1,1871,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(280,7,'Tolland',1,1718,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(281,7,'New Haven',1,1220,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(282,7,'Hartford',1,767,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(283,7,'New London',1,1222,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(284,7,'Litchfield',1,1019,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(285,7,'Fairfield',1,590,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(286,7,'Middlesex',1,1139,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(287,9,'District Of Columbia',1,515,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(288,8,'New Castle',1,1218,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(289,8,'Sussex',1,1669,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(290,8,'Kent',1,912,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(291,10,'Alachua',1,16,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(292,10,'Seminole',1,1580,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(293,10,'Manatee',1,1065,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(294,10,'Hillsborough',1,796,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(295,10,'De Soto',1,484,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(296,10,'Walton',1,1808,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(297,10,'Pasco',1,1318,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(298,10,'Duval',1,543,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(299,10,'Highlands',1,794,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(300,10,'Santa Rosa',1,1556,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(301,10,'Okaloosa',1,1267,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(302,10,'Volusia',1,1791,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(303,10,'Pinellas',1,1360,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(304,10,'Gilchrist',1,663,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(305,10,'Palm Beach',1,1309,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(306,10,'Citrus',1,357,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(307,10,'Holmes',1,805,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(308,10,'Putnam',1,1413,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(309,10,'Hardee',1,752,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(310,10,'Suwannee',1,1672,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(311,10,'Liberty',1,1013,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(312,10,'Levy',1,1008,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(313,10,'Bradford',1,201,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(314,10,'Hernando',1,787,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(315,10,'Nassau',1,1207,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(316,10,'Flagler',1,608,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(317,10,'Brevard',1,211,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(318,10,'Gadsden',1,636,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(319,10,'Collier',1,396,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(320,10,'Hendry',1,782,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(321,10,'Broward',1,223,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(322,10,'Wakulla',1,1799,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(323,10,'Dixie',1,517,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(324,10,'Charlotte',1,320,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(325,10,'Saint Johns',1,1510,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(326,10,'Sarasota',1,1557,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(327,10,'Indian River',1,842,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(328,10,'Saint Lucie',1,1516,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(329,10,'Bay',1,126,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(330,10,'Baker',1,97,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(331,10,'Miami-dade',1,1138,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(332,10,'Martin',1,1081,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(333,10,'Osceola',1,1289,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(334,10,'Hamilton',1,740,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(335,10,'Glades',1,670,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(336,10,'Okeechobee',1,1269,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(337,10,'Taylor',1,1691,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(338,10,'Gulf',1,728,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(339,10,'Leon',1,1005,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(340,11,'Cobb',1,381,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(341,11,'Bartow',1,121,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(342,11,'Cook',1,416,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(343,11,'Emanuel',1,573,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(344,11,'Wheeler',1,1848,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(345,11,'Berrien',1,157,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(346,11,'Dougherty',1,529,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(347,11,'Wilkinson',1,1862,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(348,11,'Bacon',1,95,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(349,11,'Habersham',1,734,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(350,11,'Crisp',1,443,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(351,11,'Clinch',1,375,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(352,11,'Floyd',1,613,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(353,11,'Oglethorpe',1,1265,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(354,11,'Turner',1,1748,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(355,11,'Dekalb',1,491,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(356,11,'Decatur',1,488,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(357,11,'Barrow',1,117,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(358,11,'Richmond',1,1453,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(359,11,'Atkinson',1,81,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(360,11,'Mitchell',1,1156,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(361,11,'Banks',1,104,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(362,11,'Brooks',1,220,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(363,11,'Appling',1,57,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(364,11,'Evans',1,586,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(365,11,'Colquitt',1,401,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(366,11,'Oconee',1,1261,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(367,11,'Pierce',1,1355,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(368,11,'Early',1,546,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(369,11,'Chatham',1,324,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(370,11,'Fannin',1,596,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(371,11,'Mcduffie',1,1105,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(372,11,'Thomas',1,1703,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(373,11,'Hart',1,766,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(374,11,'Talbot',1,1679,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(375,11,'Haralson',1,751,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(376,11,'Terrell',1,1698,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(377,11,'Tift',1,1706,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(378,11,'Bulloch',1,235,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(379,11,'Glynn',1,676,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(380,11,'Gwinnett',1,732,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(381,11,'Dooly',1,525,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(382,11,'Peach',1,1327,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(383,11,'Laurens',1,989,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(384,11,'Grady',1,688,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(385,11,'Gordon',1,684,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(386,11,'Warren',1,1813,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(387,11,'Harris',1,763,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(388,11,'Murray',1,1193,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(389,11,'Dodge',1,520,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(390,11,'Gilmer',1,667,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(391,11,'Hall',1,738,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(392,11,'Rabun',1,1419,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(393,11,'Effingham',1,562,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(394,11,'Tattnall',1,1690,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(395,11,'Bleckley',1,174,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(396,11,'Whitfield',1,1852,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(397,11,'Muscogee',1,1195,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(398,11,'Clayton',1,368,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(399,11,'Rockdale',1,1474,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(400,11,'Taliaferro',1,1680,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(401,11,'Mcintosh',1,1107,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(402,11,'Forsyth',1,620,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(403,11,'Chattahoochee',1,325,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(404,11,'Lumpkin',1,1041,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(405,11,'Paulding',1,1323,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(406,11,'Twiggs',1,1752,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(407,11,'Dawson',1,480,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(408,11,'Jeff Davis',1,869,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(409,11,'Screven',1,1575,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(410,11,'Stephens',1,1642,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(411,11,'Bryan',1,227,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(412,11,'Schley',1,1566,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(413,11,'Spalding',1,1623,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(414,11,'Ben Hill',1,144,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(415,11,'Butts',1,248,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(416,11,'Charlton',1,322,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(417,11,'Catoosa',1,300,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(418,11,'Heard',1,777,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(419,11,'Meriwether',1,1132,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(420,11,'Quitman',1,1418,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(421,11,'Glascock',1,672,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(422,11,'Burke',1,239,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(423,11,'Coweta',1,433,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(424,11,'Jones',1,884,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(425,11,'Telfair',1,1694,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(426,11,'Towns',1,1726,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(427,11,'Jasper',1,866,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(428,11,'Brantley',1,204,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(429,11,'Troup',1,1739,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(430,11,'Irwin',1,853,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(431,11,'Wayne',1,1829,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(432,11,'Camden',1,267,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(433,11,'Lanier',1,975,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(434,11,'Stewart',1,1647,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(435,11,'Long',1,1026,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(436,11,'Chattooga',1,326,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(437,11,'Toombs',1,1723,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(438,11,'Ware',1,1812,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(439,11,'Candler',1,273,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(440,11,'Jenkins',1,872,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(441,11,'Worth',1,1890,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(442,11,'Webster',1,1834,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(443,11,'Wilkes',1,1860,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(444,11,'Dade',1,461,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(445,11,'Treutlen',1,1734,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(446,11,'Hancock',1,746,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(447,11,'Echols',1,553,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(448,11,'Upson',1,1763,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(449,12,'Honolulu',1,807,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(450,12,'Kauai',1,900,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(451,12,'Hawaii',1,772,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(452,12,'Maui',1,1088,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(453,16,'Hardin',1,754,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(454,16,'Adair',1,6,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(455,16,'Wapello',1,1810,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(456,16,'Plymouth',1,1373,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(457,16,'Buena Vista',1,231,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(458,16,'Linn',1,1017,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(459,16,'Kossuth',1,948,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(460,16,'Chickasaw',1,341,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(461,16,'Sioux',1,1605,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(462,16,'Lyon',1,1050,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(463,16,'Iowa',1,848,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(464,16,'Story',1,1654,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(465,16,'Clinton',1,376,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(466,16,'Cass',1,293,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(467,16,'Woodbury',1,1883,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(468,16,'Obrien',1,1257,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(469,16,'Emmet',1,575,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(470,16,'Dickinson',1,509,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(471,16,'Ida',1,838,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(472,16,'Muscatine',1,1194,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(473,16,'Sac',1,1497,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(474,16,'Audubon',1,86,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(475,16,'Buchanan',1,228,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(476,16,'Pottawattamie',1,1388,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(477,16,'Palo Alto',1,1310,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(478,16,'Guthrie',1,731,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(479,16,'Mahaska',1,1058,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(480,16,'Grundy',1,720,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(481,16,'Wright',1,1892,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(482,16,'Cedar',1,307,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(483,16,'Ringgold',1,1457,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(484,16,'Dubuque',1,533,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(485,16,'Page',1,1308,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(486,16,'Monona',1,1165,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(487,16,'Davis',1,477,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(488,16,'Poweshiek',1,1393,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(489,16,'Tama',1,1684,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(490,16,'Winnebago',1,1875,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(491,16,'Des Moines',1,499,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(492,16,'Winneshiek',1,1876,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(493,16,'Black Hawk',1,167,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(494,16,'Appanoose',1,56,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(495,16,'Lucas',1,1039,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(496,16,'Cerro Gordo',1,310,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(497,16,'Delaware',1,493,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(498,16,'Louisa',1,1033,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(499,16,'Keokuk',1,914,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(500,16,'Bremer',1,210,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(501,16,'Allamakee',1,30,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(502,16,'Harrison',1,764,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(503,16,'Mills',1,1146,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(504,16,'Pocahontas',1,1374,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(505,13,'Bingham',1,166,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(506,13,'Clearwater',1,371,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(507,13,'Cassia',1,294,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(508,13,'Power',1,1392,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(509,13,'Bannock',1,106,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(510,13,'Kootenai',1,946,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(511,13,'Shoshone',1,1600,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(512,13,'Caribou',1,280,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(513,13,'Boise',1,178,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(514,13,'Blaine',1,170,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(515,13,'Bear Lake',1,131,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(516,13,'Bonner',1,183,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(517,13,'Gooding',1,683,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(518,13,'Ada',1,5,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(519,13,'Boundary',1,192,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(520,13,'Latah',1,985,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(521,13,'Owyhee',1,1303,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(522,13,'Twin Falls',1,1753,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(523,13,'Canyon',1,276,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(524,13,'Lemhi',1,1002,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(525,13,'Valley',1,1771,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(526,13,'Camas',1,265,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(527,13,'Idaho',1,839,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(528,13,'Lewis',1,1009,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(529,13,'Nez Perce',1,1230,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(530,13,'Benewah',1,145,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(531,13,'Teton',1,1700,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(532,13,'Jerome',1,875,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(533,13,'Gem',1,655,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(534,13,'Payette',1,1325,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(535,13,'Minidoka',1,1151,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(536,13,'Oneida',1,1277,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(537,13,'Bonneville',1,184,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(538,14,'Knox',1,943,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(539,14,'Mcdonough',1,1103,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(540,14,'Dupage',1,539,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(541,14,'Whiteside',1,1851,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(542,14,'Edwards',1,561,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(543,14,'Mchenry',1,1106,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(544,14,'Mercer',1,1131,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(545,14,'Wabash',1,1792,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(546,14,'Vermilion',1,1781,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(547,14,'Mclean',1,1111,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(548,14,'Livingston',1,1022,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(549,14,'Rock Island',1,1471,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(550,14,'Jo Daviess',1,881,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(551,14,'Bureau',1,238,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(552,14,'Tazewell',1,1692,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(553,14,'Kankakee',1,898,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(554,14,'Iroquois',1,852,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(555,14,'Coles',1,393,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(556,14,'Christian',1,351,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(557,14,'Menard',1,1126,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(558,14,'Sangamon',1,1548,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(559,14,'Kane',1,897,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(560,14,'Ogle',1,1264,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(561,14,'Mason',1,1083,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(562,14,'Will',1,1863,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(563,14,'Piatt',1,1351,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(564,14,'Macoupin',1,1054,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(565,14,'Woodford',1,1884,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(566,14,'Moultrie',1,1188,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(567,14,'Henderson',1,780,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(568,14,'Champaign',1,313,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(569,14,'Stark',1,1636,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(570,14,'Peoria',1,1338,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(571,14,'Kendall',1,908,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(572,14,'Edgar',1,556,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(573,14,'Massac',1,1084,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(574,14,'Schuyler',1,1569,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(575,14,'Ford',1,617,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(576,14,'Alexander',1,26,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(577,14,'Richland',1,1452,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(578,14,'Williamson',1,1868,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(579,14,'La Salle',1,954,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(580,14,'Stephenson',1,1643,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(581,14,'Dewitt',1,505,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(582,14,'Jersey',1,876,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(583,14,'Gallatin',1,640,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(584,14,'Cumberland',1,455,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(585,14,'Bond',1,182,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(586,14,'Brown',1,224,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(587,15,'Noble',1,1235,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(588,15,'Miami',1,1137,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(589,15,'Hendricks',1,781,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(590,15,'Huntington',1,832,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(591,15,'Steuben',1,1645,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(592,15,'Allen',1,35,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(593,15,'Rush',1,1490,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(594,15,'Fountain',1,623,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(595,15,'Kosciusko',1,947,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(596,15,'Dearborn',1,487,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(597,15,'Ripley',1,1461,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(598,15,'Tippecanoe',1,1711,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(599,15,'Parke',1,1315,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(600,15,'Switzerland',1,1678,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(601,15,'Porter',1,1384,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(602,15,'Dubois',1,532,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(603,15,'Vermillion',1,1782,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(604,15,'Wells',1,1836,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(605,15,'Warrick',1,1814,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(606,15,'Elkhart',1,567,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(607,15,'Jay',1,867,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(608,15,'Gibson',1,661,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(609,15,'Jennings',1,873,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(610,15,'Daviess',1,476,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(611,15,'Sullivan',1,1660,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(612,15,'Spencer',1,1625,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(613,15,'Whitley',1,1853,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(614,15,'Bartholomew',1,119,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(615,15,'Owen',1,1301,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(616,15,'Posey',1,1386,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(617,15,'Vanderburgh',1,1776,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(618,15,'Vigo',1,1786,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(619,15,'Tipton',1,1712,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(620,15,'St Joseph',1,1630,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(621,15,'Starke',1,1637,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(622,15,'La Porte',1,953,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(623,15,'Blackford',1,168,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(624,15,'Lagrange',1,961,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(625,15,'Ohio',1,1266,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(626,17,'Reno',1,1443,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(627,17,'Republic',1,1446,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(628,17,'Barton',1,120,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(629,17,'Rice',1,1449,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(630,17,'Wabaunsee',1,1794,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(631,17,'Norton',1,1247,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(632,17,'Labette',1,955,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(633,17,'Osborne',1,1288,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(634,17,'Wilson',1,1869,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(635,17,'Harper',1,762,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(636,17,'Sumner',1,1664,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(637,17,'Cowley',1,434,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(638,17,'Ness',1,1216,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(639,17,'Atchison',1,79,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(640,17,'Smith',1,1612,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(641,17,'Rawlins',1,1433,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(642,17,'Shawnee',1,1592,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(643,17,'Cloud',1,377,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(644,17,'Nemaha',1,1213,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(645,17,'Leavenworth',1,996,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(646,17,'Pottawatomie',1,1387,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(647,17,'Doniphan',1,523,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(648,17,'Ottawa',1,1295,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(649,17,'Wyandotte',1,1894,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(650,17,'Bourbon',1,193,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(651,17,'Pawnee',1,1324,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(652,17,'Morris',1,1183,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(653,17,'Osage',1,1287,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(654,17,'Coffey',1,388,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(655,17,'Jewell',1,878,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(656,17,'Harvey',1,769,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(657,17,'Pratt',1,1396,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(658,17,'Mcpherson',1,1117,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(659,17,'Ellis',1,570,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(660,17,'Chase',1,323,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(661,17,'Chautauqua',1,327,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(662,17,'Anderson',1,45,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(663,17,'Neosho',1,1214,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(664,17,'Gray',1,701,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(665,17,'Comanche',1,407,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(666,17,'Trego',1,1732,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(667,17,'Kingman',1,930,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(668,17,'Rooks',1,1481,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(669,17,'Kearny',1,904,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(670,17,'Lane',1,973,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(671,17,'Sherman',1,1598,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(672,17,'Elk',1,566,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(673,17,'Morton',1,1186,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(674,17,'Ellsworth',1,571,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(675,17,'Greenwood',1,713,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(676,17,'Geary',1,653,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(677,17,'Meade',1,1118,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(678,17,'Finney',1,606,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(679,17,'Gove',1,687,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(680,17,'Hodgeman',1,803,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(681,17,'Barber',1,108,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(682,17,'Sheridan',1,1597,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(683,17,'Stafford',1,1631,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(684,17,'Stevens',1,1646,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(685,17,'Stanton',1,1635,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(686,17,'Seward',1,1585,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(687,17,'Riley',1,1455,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(688,17,'Wichita',1,1856,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(689,17,'Woodson',1,1887,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(690,17,'Haskell',1,770,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(691,17,'Wallace',1,1803,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(692,17,'Greeley',1,704,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(693,18,'Harlan',1,758,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(694,18,'Campbell',1,270,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(695,18,'Todd',1,1717,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(696,18,'Calloway',1,262,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(697,18,'Greenup',1,711,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(698,18,'Bell',1,141,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(699,18,'Carlisle',1,281,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(700,18,'Leslie',1,1006,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(701,18,'Boyd',1,198,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(702,18,'Breathitt',1,208,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(703,18,'Bracken',1,200,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(704,18,'Barren',1,115,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(705,18,'Ballard',1,99,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(706,18,'Nelson',1,1212,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(707,18,'Metcalfe',1,1136,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(708,18,'Trimble',1,1736,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(709,18,'Edmonson',1,559,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(710,18,'Muhlenberg',1,1191,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(711,18,'Wolfe',1,1881,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(712,18,'Casey',1,292,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(713,18,'Grayson',1,703,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(714,18,'Letcher',1,1007,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(715,18,'Graves',1,700,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(716,18,'Owsley',1,1302,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(717,18,'Rockcastle',1,1473,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(718,18,'Bullitt',1,234,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(719,18,'Garrard',1,646,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(720,18,'Oldham',1,1274,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(721,18,'Larue',1,980,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(722,18,'Laurel',1,988,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(723,18,'Pendleton',1,1334,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(724,18,'Trigg',1,1735,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(725,18,'Nicholas',1,1232,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(726,18,'Knott',1,942,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(727,18,'Carter',1,288,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(728,18,'Powell',1,1391,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(729,18,'Rowan',1,1488,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(730,18,'Hickman',1,790,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(731,18,'Breckinridge',1,209,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(732,18,'Kenton',1,913,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(733,18,'Boyle',1,199,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(734,18,'Hopkins',1,812,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(735,18,'Menifee',1,1128,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(736,18,'Fleming',1,610,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(737,18,'Magoffin',1,1057,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(738,18,'Simpson',1,1604,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(739,18,'Caldwell',1,257,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(740,18,'Green',1,705,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(741,18,'Bath',1,124,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(742,18,'Estill',1,582,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(743,18,'Elliott',1,569,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(744,18,'Jessamine',1,877,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(745,18,'Mccracken',1,1098,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(746,18,'Mccreary',1,1099,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(747,18,'Robertson',1,1468,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(748,19,'Saint Tammany',1,1520,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(749,19,'Concordia',1,410,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(750,19,'West Baton Rouge',1,1837,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(751,19,'Catahoula',1,297,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(752,19,'Tangipahoa',1,1686,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(753,19,'Rapides',1,1430,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(754,19,'Saint Charles',1,1503,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(755,19,'Saint Mary',1,1518,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(756,19,'Vernon',1,1783,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(757,19,'West Feliciana',1,1839,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(758,19,'Saint Bernard',1,1502,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(759,19,'Bienville',1,162,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(760,19,'Saint Landry',1,1512,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(761,19,'Natchitoches',1,1208,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(762,19,'Claiborne',1,359,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(763,19,'Winn',1,1874,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(764,19,'Iberia',1,836,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(765,19,'East Baton Rouge',1,547,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(766,19,'Bossier',1,188,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(767,19,'Evangeline',1,585,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(768,19,'Morehouse',1,1179,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(769,19,'Pointe Coupee',1,1376,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(770,19,'Caddo',1,253,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(771,19,'Calcasieu',1,256,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(772,19,'Plaquemines',1,1369,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(773,19,'Assumption',1,77,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(774,19,'Sabine',1,1496,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(775,19,'Avoyelles',1,93,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(776,19,'Terrebonne',1,1697,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(777,19,'Acadia',1,3,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(778,19,'Saint Martin',1,1517,'2022-05-11 11:55:19','2022-05-17 11:49:16',NULL),(779,19,'Ascension',1,71,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(780,19,'Cameron',1,268,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(781,19,'Iberville',1,837,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(782,19,'East Feliciana',1,549,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(783,19,'Saint James',1,1509,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(784,19,'Red River',1,1438,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(785,19,'Lafourche',1,960,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(786,19,'Beauregard',1,133,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(787,19,'St John The Baptist',1,1629,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(788,19,'Jefferson Davis',1,871,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(789,19,'West Carroll',1,1838,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(790,19,'Saint Helena',1,1508,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(791,19,'East Carroll',1,548,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(792,19,'Orleans',1,1285,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(793,19,'Tensas',1,1696,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(794,22,'Bristol',1,214,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(795,22,'Berkshire',1,155,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(796,22,'Hampden',1,742,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(797,22,'Suffolk',1,1658,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(798,22,'Essex',1,581,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(799,22,'Hampshire',1,743,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(800,22,'Worcester',1,1889,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(801,22,'Norfolk',1,1240,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(802,22,'Barnstable',1,112,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(803,22,'Dukes',1,535,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(804,22,'Nantucket',1,1203,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(805,21,'Saint Marys',1,1519,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(806,21,'Harford',1,757,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(807,21,'Garrett',1,647,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(808,21,'Prince Georges',1,1405,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(809,21,'Frederick',1,626,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(810,21,'Wicomico',1,1857,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(811,21,'Anne Arundel',1,50,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(812,21,'Baltimore',1,100,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(813,21,'Baltimore City',1,101,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(814,21,'Queen Annes',1,1416,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(815,21,'Calvert',1,264,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(816,21,'Allegany',1,32,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(817,21,'Charles',1,315,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(818,21,'Caroline',1,284,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(819,21,'Dorchester',1,528,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(820,21,'Cecil',1,306,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(821,21,'Somerset',1,1618,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(822,20,'Piscataquis',1,1362,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(823,20,'York',1,1914,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(824,20,'Kennebec',1,910,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(825,20,'Oxford',1,1304,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(826,20,'Aroostook',1,68,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(827,20,'Androscoggin',1,48,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(828,20,'Penobscot',1,1336,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(829,20,'Sagadahoc',1,1499,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(830,20,'Waldo',1,1800,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(831,23,'Grand Traverse',1,695,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(832,23,'Lenawee',1,1003,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(833,23,'Cheboygan',1,330,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(834,23,'Keweenaw',1,920,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(835,23,'Tuscola',1,1751,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(836,23,'Antrim',1,54,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(837,23,'Arenac',1,64,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(838,23,'Allegan',1,31,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(839,23,'Hillsdale',1,797,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(840,23,'Gratiot',1,699,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(841,23,'Lapeer',1,976,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(842,23,'Alpena',1,37,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(843,23,'Iron',1,851,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(844,23,'Washtenaw',1,1823,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(845,23,'Sanilac',1,1549,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(846,23,'Manistee',1,1067,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(847,23,'Macomb',1,1052,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(848,23,'Marquette',1,1079,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(849,23,'Montmorency',1,1173,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(850,23,'Houghton',1,817,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(851,23,'Genesee',1,656,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(852,23,'Alger',1,29,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(853,23,'Oakland',1,1255,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(854,23,'Kalamazoo',1,892,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(855,23,'Huron',1,833,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(856,23,'Muskegon',1,1196,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(857,23,'Shiawassee',1,1599,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(858,23,'Baraga',1,107,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(859,23,'Chippewa',1,345,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(860,23,'Mecosta',1,1121,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(861,23,'Alcona',1,22,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(862,23,'Charlevoix',1,319,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(863,23,'Gladwin',1,671,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(864,23,'Ionia',1,846,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(865,23,'Eaton',1,551,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(866,23,'Benzie',1,151,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(867,23,'Ontonagon',1,1281,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(868,23,'Gogebic',1,677,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(869,23,'Saginaw',1,1500,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(870,23,'Newaygo',1,1225,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(871,23,'Isabella',1,855,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(872,23,'Wexford',1,1844,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(873,23,'Branch',1,203,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(874,23,'Saint Joseph',1,1511,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(875,23,'Menominee',1,1129,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(876,23,'Montcalm',1,1169,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(877,23,'Leelanau',1,999,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(878,23,'Mackinac',1,1051,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(879,23,'Clare',1,361,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(880,23,'Barry',1,118,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(881,23,'Midland',1,1140,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(882,23,'Oscoda',1,1290,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(883,23,'Schoolcraft',1,1568,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(884,23,'Ingham',1,844,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(885,23,'Iosco',1,847,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(886,23,'Otsego',1,1294,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(887,23,'Missaukee',1,1153,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(888,23,'Kalkaska',1,893,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(889,23,'Oceana',1,1259,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(890,23,'Presque Isle',1,1400,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(891,23,'Roscommon',1,1483,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(892,23,'Ogemaw',1,1263,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(893,23,'Luce',1,1040,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(894,24,'Norman',1,1242,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(895,24,'Mower',1,1190,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(896,24,'Saint Louis',1,1514,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(897,24,'Nobles',1,1236,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(898,24,'Aitkin',1,15,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(899,24,'Hubbard',1,821,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(900,24,'Stearns',1,1640,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(901,24,'Freeborn',1,628,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(902,24,'Wadena',1,1795,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(903,24,'Chisago',1,346,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(904,24,'Winona',1,1877,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(905,24,'Blue Earth',1,177,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(906,24,'Anoka',1,51,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(907,24,'Lake Of The Woods',1,965,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(908,24,'Swift',1,1676,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(909,24,'Sibley',1,1601,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(910,24,'Pine',1,1359,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(911,24,'Kandiyohi',1,896,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(912,24,'Becker',1,136,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(913,24,'Roseau',1,1484,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(914,24,'Carlton',1,282,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(915,24,'Big Stone',1,164,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(916,24,'Otter Tail',1,1296,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(917,24,'Crow Wing',1,449,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(918,24,'Rock',1,1470,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(919,24,'Sherburne',1,1596,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(920,24,'Mahnomen',1,1059,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(921,24,'Lac Qui Parle',1,956,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(922,24,'Redwood',1,1440,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(923,24,'Beltrami',1,143,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(924,24,'Koochiching',1,945,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(925,24,'Itasca',1,860,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(926,24,'Cottonwood',1,430,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(927,24,'Renville',1,1445,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(928,24,'Steele',1,1641,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(929,24,'Faribault',1,597,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(930,24,'Mille Lacs',1,1144,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(931,24,'Morrison',1,1184,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(932,24,'Isanti',1,856,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(933,24,'Wilkin',1,1861,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(934,24,'Red Lake',1,1437,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(935,24,'Traverse',1,1729,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(936,24,'Mcleod',1,1113,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(937,24,'Dakota',1,463,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(938,24,'Watonwan',1,1825,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(939,24,'Olmsted',1,1276,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(940,24,'Yellow Medicine',1,1910,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(941,24,'Goodhue',1,682,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(942,24,'Fillmore',1,605,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(943,24,'Carver',1,290,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(944,24,'Hennepin',1,783,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(945,24,'Le Sueur',1,993,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(946,24,'Meeker',1,1123,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(947,24,'Nicollet',1,1233,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(948,24,'Kittson',1,938,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(949,24,'Pipestone',1,1361,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(950,24,'Wabasha',1,1793,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(951,24,'Pennington',1,1335,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(952,24,'Waseca',1,1817,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(953,24,'Kanabec',1,894,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(954,24,'Ramsey',1,1425,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(955,26,'Bates',1,123,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(956,26,'Stoddard',1,1649,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(957,26,'Gentry',1,658,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(958,26,'Cape Girardeau',1,277,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(959,26,'Oregon',1,1284,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(960,26,'Andrew',1,46,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(961,26,'Mcdonald',1,1102,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(962,26,'Scotland',1,1572,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(963,26,'Dunklin',1,537,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(964,26,'Callaway',1,261,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(965,26,'Ozark',1,1305,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(966,26,'Nodaway',1,1237,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(967,26,'Maries',1,1073,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(968,26,'Audrain',1,85,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(969,26,'Phelps',1,1348,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(970,26,'Shannon',1,1587,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(971,26,'Saint Francois',1,1507,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(972,26,'Reynolds',1,1447,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(973,26,'Cooper',1,418,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(974,26,'Gasconade',1,650,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(975,26,'Sainte Genevieve',1,1521,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(976,26,'Dent',1,496,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(977,26,'Taney',1,1685,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(978,26,'Pemiscot',1,1331,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(979,26,'Howell',1,820,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(980,26,'Chariton',1,314,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(981,26,'Texas',1,1701,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(982,26,'Moniteau',1,1162,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(983,26,'Ray',1,1434,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(984,26,'Platte',1,1370,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(985,26,'New Madrid',1,1223,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(986,26,'Ralls',1,1424,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(987,26,'Cole',1,391,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(988,26,'Laclede',1,958,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(989,26,'Holt',1,806,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(990,26,'Hickory',1,791,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(991,26,'Bollinger',1,180,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(992,26,'Pettis',1,1347,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(993,26,'Saint Louis City',1,1515,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(994,25,'Pontotoc',1,1380,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(995,25,'Bolivar',1,179,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(996,25,'Sharkey',1,1588,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(997,25,'Tate',1,1689,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(998,25,'Panola',1,1313,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(999,25,'Tishomingo',1,1713,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1000,25,'Humphreys',1,828,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1001,25,'Yazoo',1,1908,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1002,25,'Tippah',1,1710,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1003,25,'Hinds',1,798,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1004,25,'Prentiss',1,1398,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1005,25,'Rankin',1,1428,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1006,25,'Forrest',1,619,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1007,25,'Noxubee',1,1251,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1008,25,'Pearl River',1,1328,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1009,25,'Leake',1,995,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1010,25,'Tallahatchie',1,1682,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1011,25,'Coahoma',1,378,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1012,25,'Yalobusha',1,1901,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1013,25,'Alcorn',1,23,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1014,25,'Amite',1,42,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1015,25,'Copiah',1,421,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1016,25,'Kemper',1,906,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1017,25,'Sunflower',1,1666,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1018,25,'Tunica',1,1746,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1019,25,'Grenada',1,717,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1020,25,'Attala',1,84,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1021,25,'Itawamba',1,861,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1022,25,'Issaquena',1,859,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1023,25,'Leflore',1,1000,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1024,25,'Desoto',1,502,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1025,25,'George',1,659,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1026,25,'Oktibbeha',1,1273,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1027,25,'Neshoba',1,1215,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1028,25,'Walthall',1,1807,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1029,27,'Stillwater',1,1648,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1030,27,'Yellowstone',1,1911,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1031,27,'Deer Lodge',1,489,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1032,27,'Rosebud',1,1485,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1033,27,'Lewis And Clark',1,1010,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1034,27,'Glacier',1,669,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1035,27,'Roosevelt',1,1482,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1036,27,'Fallon',1,593,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1037,27,'Carbon',1,279,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1038,27,'Cascade',1,291,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1039,27,'Powder River',1,1390,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1040,27,'Chouteau',1,349,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1041,27,'Sweet Grass',1,1674,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1042,27,'Flathead',1,609,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1043,27,'Treasure',1,1731,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1044,27,'Missoula',1,1155,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1045,27,'Hill',1,795,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1046,27,'Pondera',1,1379,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1047,27,'Mccone',1,1095,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1048,27,'Fergus',1,603,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1049,27,'Big Horn',1,163,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1050,27,'Silver Bow',1,1603,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1051,27,'Ravalli',1,1432,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1052,27,'Beaverhead',1,135,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1053,27,'Sanders',1,1545,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1054,27,'Granite',1,696,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1055,27,'Toole',1,1722,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1056,27,'Daniels',1,468,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1057,27,'Judith Basin',1,888,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1058,27,'Wheatland',1,1847,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1059,27,'Golden Valley',1,678,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1060,27,'Meagher',1,1119,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1061,27,'Musselshell',1,1199,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1062,27,'Broadwater',1,216,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1063,27,'Petroleum',1,1346,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1064,27,'Wibaux',1,1855,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1065,34,'Moore',1,1177,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1066,34,'Davie',1,475,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1067,34,'Hertford',1,788,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1068,34,'Alamance',1,17,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1069,34,'Stanly',1,1634,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1070,34,'Duplin',1,540,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1071,34,'Buncombe',1,237,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1072,34,'Gaston',1,651,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1073,34,'Pamlico',1,1312,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1074,34,'Swain',1,1673,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1075,34,'Harnett',1,760,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1076,34,'Anson',1,52,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1077,34,'Wake',1,1798,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1078,34,'Surry',1,1667,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1079,34,'Brunswick',1,226,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1080,34,'Pender',1,1333,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1081,34,'Carteret',1,289,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1082,34,'Bertie',1,158,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1083,34,'Beaufort',1,132,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1084,34,'Sampson',1,1527,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1085,34,'Dare',1,470,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1086,34,'Pitt',1,1364,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1087,34,'Currituck',1,457,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1088,34,'Durham',1,541,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1089,34,'Nash',1,1206,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1090,34,'Transylvania',1,1728,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1091,34,'Avery',1,92,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1092,34,'Iredell',1,849,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1093,34,'Robeson',1,1469,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1094,34,'Edgecombe',1,557,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1095,34,'Perquimans',1,1341,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1096,34,'Johnston',1,883,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1097,34,'Bladen',1,169,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1098,34,'Caswell',1,296,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1099,34,'Watauga',1,1824,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1100,34,'Columbus',1,404,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1101,34,'Yadkin',1,1898,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1102,34,'Rutherford',1,1493,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1103,34,'Craven',1,439,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1104,34,'Guilford',1,727,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1105,34,'Granville',1,698,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1106,34,'Yancey',1,1903,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1107,34,'Onslow',1,1279,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1108,34,'Haywood',1,776,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1109,34,'New Hanover',1,1219,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1110,34,'Catawba',1,299,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1111,34,'Mecklenburg',1,1120,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1112,34,'Tyrrell',1,1755,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1113,34,'Cabarrus',1,249,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1114,34,'Northampton',1,1244,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1115,34,'Gates',1,652,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1116,34,'Ashe',1,72,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1117,34,'Stokes',1,1650,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1118,34,'Lenoir',1,1004,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1119,34,'Davidson',1,474,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1120,34,'Rockingham',1,1475,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1121,34,'Chowan',1,350,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1122,34,'Pasquotank',1,1319,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1123,34,'Halifax',1,737,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1124,34,'Hyde',1,835,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1125,34,'Alleghany',1,33,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1126,34,'Mcdowell',1,1104,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1127,34,'Vance',1,1775,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1128,34,'Person',1,1344,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1129,34,'Hoke',1,804,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1130,35,'Walsh',1,1806,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1131,35,'Rolette',1,1480,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1132,35,'Williams',1,1865,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1133,35,'Mckenzie',1,1109,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1134,35,'Cavalier',1,303,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1135,35,'Divide',1,516,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1136,35,'Slope',1,1611,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1137,35,'Bottineau',1,190,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1138,35,'Grand Forks',1,693,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1139,35,'Burleigh',1,240,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1140,35,'Pembina',1,1330,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1141,35,'Lamoure',1,969,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1142,35,'Ward',1,1811,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1143,35,'Griggs',1,718,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1144,35,'Towner',1,1725,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1145,35,'Traill',1,1727,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1146,35,'Bowman',1,195,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1147,35,'Emmons',1,576,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1148,35,'Stutsman',1,1656,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1149,35,'Foster',1,622,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1150,35,'Sargent',1,1559,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1151,35,'Oliver',1,1275,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1152,35,'Kidder',1,922,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1153,35,'Barnes',1,111,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1154,35,'Dunn',1,538,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1155,35,'Dickey',1,508,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1156,35,'Ransom',1,1429,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1157,35,'Benson',1,148,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1158,35,'Billings',1,165,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1159,35,'Hettinger',1,789,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1160,35,'Eddy',1,555,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1161,35,'Mountrail',1,1189,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1162,28,'Gage',1,637,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1163,28,'Thayer',1,1702,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1164,28,'Dixon',1,518,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1165,28,'Box Butte',1,196,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1166,28,'Buffalo',1,233,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1167,28,'Morrill',1,1182,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1168,28,'Furnas',1,635,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1169,28,'Merrick',1,1133,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1170,28,'Arthur',1,70,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1171,28,'Saunders',1,1562,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1172,28,'Kearney',1,903,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1173,28,'Cuming',1,456,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1174,28,'Red Willow',1,1439,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1175,28,'Sarpy',1,1560,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1176,28,'Dundy',1,536,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1177,28,'Lancaster',1,971,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1178,28,'Deuel',1,503,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1179,28,'Keith',1,905,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1180,28,'Antelope',1,53,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1181,28,'Otoe',1,1293,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1182,28,'Kimball',1,923,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1183,28,'Dawes',1,479,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1184,28,'Colfax',1,394,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1185,28,'Cherry',1,335,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1186,28,'Burt',1,245,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1187,28,'Hitchcock',1,800,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1188,28,'Frontier',1,633,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1189,28,'Richardson',1,1451,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1190,28,'Perkins',1,1340,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1191,28,'Gosper',1,686,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1192,28,'Nance',1,1202,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1193,28,'Scotts Bluff',1,1574,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1194,28,'Nuckolls',1,1252,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1195,28,'Banner',1,105,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1196,28,'Hayes',1,774,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1197,28,'Garden',1,643,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1198,28,'Thurston',1,1705,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1199,28,'Keya Paha',1,921,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1200,28,'Hooker',1,810,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1201,28,'Loup',1,1034,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1202,30,'Cheshire',1,337,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1203,30,'Belknap',1,140,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1204,30,'Merrimack',1,1134,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1205,30,'Grafton',1,689,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1206,30,'Strafford',1,1655,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1207,30,'Coos',1,419,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1208,31,'Atlantic',1,82,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1209,31,'Monmouth',1,1163,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1210,31,'Bergen',1,152,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1211,31,'Salem',1,1522,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1212,31,'Hunterdon',1,830,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1213,31,'Cape May',1,278,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1214,31,'Ocean',1,1258,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1215,31,'Hudson',1,822,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1216,31,'Burlington',1,242,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1217,31,'Passaic',1,1320,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1218,31,'Gloucester',1,675,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1219,32,'Rio Arriba',1,17,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1220,32,'Bernalillo',1,1,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1221,32,'Sandoval',1,18,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1222,32,'Taos',1,21,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1223,32,'Hidalgo',1,10,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1224,32,'Dona Ana',1,7,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1225,32,'Guadalupe',1,8,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1226,32,'Catron',1,2,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1227,32,'Quay',1,16,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1228,32,'Valencia',1,23,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1229,32,'Cibola',1,4,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1230,32,'Mckinley',1,14,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1231,32,'Curry',1,5,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1232,32,'Mora',1,15,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1233,32,'Lea',1,11,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1234,32,'Torrance',1,22,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1235,32,'Santa Fe',1,19,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1236,32,'Socorro',1,20,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1237,32,'Luna',1,13,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1238,32,'Chaves',1,3,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1239,32,'De Baca',1,6,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1240,32,'Los Alamos',1,12,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1241,32,'Harding',1,9,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1242,29,'Nye',1,1254,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1243,29,'Lander',1,972,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1244,29,'White Pine',1,1850,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1245,29,'Elko',1,568,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1246,29,'Carson City',1,287,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1247,29,'Eureka',1,584,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1248,29,'Washoe',1,1822,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1249,29,'Esmeralda',1,580,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1250,29,'Churchill',1,352,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1251,29,'Pershing',1,1343,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1252,29,'Storey',1,1653,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1253,33,'Ulster',1,1758,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1254,33,'Chenango',1,333,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1255,33,'Erie',1,578,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1256,33,'Albany',1,20,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1257,33,'Cattaraugus',1,302,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1258,33,'Schenectady',1,1564,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1259,33,'Oswego',1,1291,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1260,33,'Westchester',1,1840,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1261,33,'Dutchess',1,542,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1262,33,'Tioga',1,1709,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1263,33,'Niagara',1,1231,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1264,33,'Onondaga',1,1278,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1265,33,'Wyoming',1,1895,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1266,33,'Queens',1,1417,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1267,33,'Cayuga',1,305,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1268,33,'Rensselaer',1,1444,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1269,33,'Saratoga',1,1558,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1270,33,'Rockland',1,1476,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1271,33,'Yates',1,1905,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1272,33,'Broome',1,221,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1273,33,'Chemung',1,332,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1274,33,'Cortland',1,424,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1275,33,'Ontario',1,1280,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1276,33,'Saint Lawrence',1,1513,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1277,33,'Bronx',1,217,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1278,33,'Tompkins',1,1720,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1279,33,'Schoharie',1,1567,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1280,33,'Herkimer',1,786,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1281,33,'Seneca',1,1581,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1282,33,'New York',1,1224,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1283,36,'Muskingum',1,1197,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1284,36,'Ross',1,1486,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1285,36,'Athens',1,80,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1286,36,'Licking',1,1014,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1287,36,'Belmont',1,142,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1288,36,'Clermont',1,373,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1289,36,'Lorain',1,1028,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1290,36,'Ashtabula',1,75,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1291,36,'Darke',1,471,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1292,36,'Ashland',1,73,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1293,36,'Pickaway',1,1352,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1294,36,'Portage',1,1383,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1295,36,'Coshocton',1,426,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1296,36,'Tuscarawas',1,1750,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1297,36,'Cuyahoga',1,460,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1298,36,'Mahoning',1,1060,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1299,36,'Gallia',1,641,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1300,36,'Wood',1,1882,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1301,36,'Trumbull',1,1742,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1302,36,'Medina',1,1122,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1303,36,'Auglaize',1,87,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1304,36,'Guernsey',1,726,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1305,36,'Highland',1,793,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1306,36,'Sandusky',1,1547,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1307,36,'Geauga',1,654,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1308,36,'Preble',1,1397,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1309,36,'Hocking',1,801,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1310,36,'Morrow',1,1185,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1311,36,'Wyandot',1,1893,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1312,36,'Meigs',1,1124,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1313,36,'Columbiana',1,403,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1314,36,'Van Wert',1,1773,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1315,36,'Vinton',1,1789,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1316,36,'Defiance',1,490,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1317,36,'Scioto',1,1571,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1318,37,'Mayes',1,1093,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1319,37,'Pushmataha',1,1412,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1320,37,'Pittsburg',1,1365,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1321,37,'Alfalfa',1,28,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1322,37,'Woods',1,1886,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1323,37,'Major',1,1061,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1324,37,'Oklahoma',1,1271,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1325,37,'Le Flore',1,992,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1326,37,'Atoka',1,83,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1327,37,'Hughes',1,825,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1328,37,'Beaver',1,134,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1329,37,'Mccurtain',1,1101,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1330,37,'Okmulgee',1,1272,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1331,37,'Washita',1,1821,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1332,37,'Craig',1,436,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1333,37,'Tulsa',1,1745,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1334,37,'Kay',1,902,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1335,37,'Mcclain',1,1094,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1336,37,'Cimarron',1,356,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1337,37,'Okfuskee',1,1270,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1338,37,'Muskogee',1,1198,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1339,37,'Creek',1,441,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1340,37,'Wagoner',1,1796,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1341,37,'Love',1,1035,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1342,37,'Canadian',1,272,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1343,37,'Dewey',1,504,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1344,37,'Beckham',1,137,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1345,37,'Kingfisher',1,929,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1346,37,'Rogers',1,1479,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1347,37,'Coal',1,379,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1348,37,'Roger Mills',1,1478,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1349,37,'Payne',1,1326,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1350,37,'Tillman',1,1708,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1351,37,'Nowata',1,1250,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1352,37,'Cotton',1,429,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1353,37,'Garvin',1,648,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1354,37,'Woodward',1,1888,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1355,37,'Sequoyah',1,1583,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1356,37,'Harmon',1,759,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1357,37,'Latimer',1,986,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1358,37,'Greer',1,714,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1359,38,'Umatilla',1,1759,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1360,38,'Malheur',1,1062,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1361,38,'Yamhill',1,1902,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1362,38,'Wasco',1,1816,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1363,38,'Clatsop',1,366,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1364,38,'Gilliam',1,666,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1365,38,'Tillamook',1,1707,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1366,38,'Klamath',1,939,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1367,38,'Clackamas',1,358,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1368,38,'Deschutes',1,500,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1369,38,'Multnomah',1,1192,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1370,38,'Harney',1,761,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1371,38,'Hood River',1,809,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1372,38,'Josephine',1,885,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1373,38,'Wallowa',1,1805,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1374,38,'Crook',1,446,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1375,39,'Centre',1,309,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1376,39,'Westmoreland',1,1841,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1377,39,'Armstrong',1,67,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1378,39,'Lehigh',1,1001,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1379,39,'Huntingdon',1,831,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1380,39,'Mifflin',1,1141,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1381,39,'Allegheny',1,34,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1382,39,'Clearfield',1,370,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1383,39,'Blair',1,171,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1384,39,'Bedford',1,138,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1385,39,'Indiana',1,843,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1386,39,'Schuylkill',1,1570,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1387,39,'Lebanon',1,997,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1388,39,'Lycoming',1,1046,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1389,39,'Lackawanna',1,957,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1390,39,'Cambria',1,266,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1391,39,'Chester',1,338,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1392,39,'Potter',1,1389,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1393,39,'Berks',1,154,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1394,39,'Luzerne',1,1045,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1395,39,'Snyder',1,1615,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1396,39,'Bucks',1,230,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1397,39,'Dauphin',1,473,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1398,39,'Susquehanna',1,1668,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1399,39,'Mckean',1,1108,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1400,39,'Clarion',1,363,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1401,39,'Forest',1,618,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1402,39,'Venango',1,1779,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1403,39,'Northumberland',1,1245,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1404,39,'Juniata',1,891,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1405,39,'Montour',1,1174,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1406,39,'Philadelphia',1,1349,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1407,40,'Adjuntas',1,9,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1408,40,'Aguada',1,10,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1409,40,'Aguadilla',1,11,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1410,40,'Aguas Buenas',1,12,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1411,40,'Salinas',1,1523,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1412,40,'Aibonito',1,13,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1413,40,'Anasco',1,43,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1414,40,'Utuado',1,1766,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1415,40,'Arecibo',1,63,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1416,40,'Arroyo',1,69,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1417,40,'Barceloneta',1,110,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1418,40,'Barranquitas',1,114,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1419,40,'Bayamon',1,127,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1420,40,'Cabo Rojo',1,251,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1421,40,'Caguas',1,254,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1422,40,'Camuy',1,271,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1423,40,'Canovanas',1,275,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1424,40,'Carolina',1,283,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1425,40,'Lares',1,978,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1426,40,'Catano',1,298,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1427,40,'Cayey',1,304,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1428,40,'Ceiba',1,308,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1429,40,'Ciales',1,353,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1430,40,'Cidra',1,355,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1431,40,'Coamo',1,380,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1432,40,'Comerio',1,408,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1433,40,'Corozal',1,422,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1434,40,'Ponce',1,1378,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1435,40,'Culebra',1,452,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1436,40,'Dorado',1,527,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1437,40,'Guanica',1,722,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1438,40,'Fajardo',1,591,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1439,40,'Florida',1,612,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1440,40,'Guayama',1,723,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1441,40,'Guayanilla',1,724,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1442,40,'Guaynabo',1,725,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1443,40,'Gurabo',1,730,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1444,40,'Hatillo',1,771,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1445,40,'Hormigueros',1,813,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1446,40,'Humacao',1,826,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1447,40,'Isabela',1,854,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1448,40,'Jayuya',1,868,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1449,40,'Juana Diaz',1,887,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1450,40,'Juncos',1,889,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1451,40,'Lajas',1,962,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1452,40,'Las Marias',1,982,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1453,40,'Las Piedras',1,983,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1454,40,'Loiza',1,1025,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1455,40,'Luquillo',1,1044,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1456,40,'Manati',1,1066,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1457,40,'Maricao',1,1071,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1458,40,'Maunabo',1,1089,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1459,40,'Mayaguez',1,1092,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1460,40,'Moca',1,1158,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1461,40,'Morovis',1,1181,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1462,40,'Naguabo',1,1201,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1463,40,'Naranjito',1,1205,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1464,40,'Orocovis',1,1286,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1465,40,'Patillas',1,1321,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1466,40,'Penuelas',1,1337,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1467,40,'Quebradillas',1,1415,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1468,40,'Rincon',1,1456,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1469,40,'San German',1,1533,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1470,40,'Sabana Grande',1,1495,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1471,40,'Toa Baja',1,1716,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1472,40,'Trujillo Alto',1,1741,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1473,40,'San Lorenzo',1,1537,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1474,40,'San Sebastian',1,1543,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1475,40,'Santa Isabel',1,1555,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1476,40,'Toa Alta',1,1715,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1477,40,'Vega Alta',1,1777,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1478,40,'Vega Baja',1,1778,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1479,40,'Vieques',1,1785,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1480,40,'Villalba',1,1788,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1481,40,'Yabucoa',1,1897,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1482,40,'Yauco',1,1906,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1483,41,'Newport',1,1227,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1484,41,'Providence',1,1408,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1485,42,'Abbeville',1,2,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1486,42,'Charleston',1,318,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1487,42,'Aiken',1,14,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1488,42,'Clarendon',1,362,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1489,42,'Allendale',1,36,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1490,42,'Georgetown',1,660,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1491,42,'Spartanburg',1,1624,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1492,42,'Horry',1,814,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1493,42,'Bamberg',1,102,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1494,42,'Barnwell',1,113,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1495,42,'Lexington',1,1011,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1496,42,'Marlboro',1,1078,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1497,42,'Berkeley',1,153,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1498,42,'Kershaw',1,917,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1499,42,'Orangeburg',1,1283,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1500,42,'Hampton',1,744,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1501,42,'Williamsburg',1,1866,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1502,42,'Colleton',1,395,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1503,42,'Newberry',1,1226,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1504,42,'Chesterfield',1,339,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1505,42,'Mccormick',1,1097,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1506,42,'Greenville',1,712,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1507,42,'Florence',1,611,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1508,42,'Darlington',1,472,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1509,42,'Dillon',1,512,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1510,42,'Edgefield',1,558,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1511,42,'Saluda',1,1526,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1512,43,'Sully',1,1661,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1513,43,'Walworth',1,1809,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1514,43,'Hanson',1,750,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1515,43,'Bennett',1,146,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1516,43,'Jerauld',1,874,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1517,43,'Day',1,481,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1518,43,'Kingsbury',1,932,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1519,43,'Sanborn',1,1544,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1520,43,'Spink',1,1626,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1521,43,'Brookings',1,219,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1522,43,'Bon Homme',1,181,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1523,43,'Minnehaha',1,1152,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1524,43,'Gregory',1,716,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1525,43,'Edmunds',1,560,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1526,43,'Mccook',1,1096,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1527,43,'Hamlin',1,741,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1528,43,'Corson',1,423,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1529,43,'Miner',1,1148,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1530,43,'Beadle',1,130,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1531,43,'Brule',1,225,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1532,43,'Ziebach',1,1921,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1533,43,'Roberts',1,1467,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1534,43,'Moody',1,1176,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1535,43,'Tripp',1,1738,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1536,43,'Faulk',1,598,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1537,43,'Charles Mix',1,317,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1538,43,'Hutchinson',1,834,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1539,43,'Fall River',1,592,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1540,43,'Davison',1,478,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1541,43,'Codington',1,386,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1542,43,'Stanley',1,1633,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1543,43,'Yankton',1,1904,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1544,43,'Lyman',1,1047,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1545,43,'Haakon',1,733,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1546,43,'Hand',1,747,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1547,43,'Mellette',1,1125,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1548,43,'Aurora',1,89,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1549,44,'Mcnairy',1,1116,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1550,44,'Crockett',1,445,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1551,44,'Fentress',1,602,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1552,44,'Overton',1,1300,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1553,44,'Giles',1,664,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1554,44,'Cheatham',1,329,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1555,44,'Mcminn',1,1114,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1556,44,'Cannon',1,274,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1557,44,'Grainger',1,691,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1558,44,'Dyer',1,544,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1559,44,'Hardeman',1,753,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1560,44,'Hawkins',1,773,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1561,44,'Dickson',1,510,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1562,44,'Cocke',1,384,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1563,44,'Pickett',1,1354,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1564,44,'Maury',1,1090,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1565,44,'Rhea',1,1448,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1566,44,'Weakley',1,1831,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1567,44,'Sequatchie',1,1582,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1568,44,'Unicoi',1,1760,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1569,44,'Loudon',1,1031,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1570,44,'Roane',1,1464,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1571,44,'Trousdale',1,1740,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1572,44,'Obion',1,1256,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1573,44,'Hamblen',1,739,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1574,44,'Bledsoe',1,175,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1575,45,'Bexar',1,160,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1576,45,'Dickens',1,506,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1577,45,'Nueces',1,1253,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1578,45,'Shackelford',1,1586,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1579,45,'Parker',1,1316,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1580,45,'Jim Wells',1,880,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1581,45,'Collin',1,397,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1582,45,'Colorado',1,400,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1583,45,'Brewster',1,212,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1584,45,'Brazoria',1,206,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1585,45,'Wise',1,1880,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1586,45,'Randall',1,1426,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1587,45,'Lamb',1,967,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1588,45,'Grimes',1,719,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1589,45,'Andrews',1,47,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1590,45,'Hockley',1,802,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1591,45,'San Patricio',1,1541,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1592,45,'Archer',1,61,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1593,45,'Denton',1,497,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1594,45,'Tarrant',1,1688,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1595,45,'Kenedy',1,909,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1596,45,'Dimmit',1,513,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1597,45,'Stonewall',1,1652,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1598,45,'Hays',1,775,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1599,45,'Travis',1,1730,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1600,45,'Refugio',1,1442,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1601,45,'Mclennan',1,1112,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1602,45,'Galveston',1,642,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1603,45,'Callahan',1,260,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1604,45,'Runnels',1,1489,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1605,45,'Reeves',1,1441,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1606,45,'Bandera',1,103,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1607,45,'Irion',1,850,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1608,45,'Navarro',1,1211,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1609,45,'Bastrop',1,122,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1610,45,'Zavala',1,1920,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1611,45,'Matagorda',1,1085,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1612,45,'Fort Bend',1,621,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1613,45,'Bee',1,139,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1614,45,'Austin',1,90,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1615,45,'Gonzales',1,680,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1616,45,'Van Zandt',1,1774,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1617,45,'San Saba',1,1542,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1618,45,'Goliad',1,679,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1619,45,'Burnet',1,243,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1620,45,'Reagan',1,1435,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1621,45,'Upshur',1,1762,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1622,45,'Frio',1,632,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1623,45,'Nolan',1,1238,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1624,45,'Blanco',1,172,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1625,45,'Cochran',1,383,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1626,45,'Victoria',1,1784,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1627,45,'Erath',1,577,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1628,45,'Llano',1,1023,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1629,45,'Wharton',1,1845,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1630,45,'Lipscomb',1,1018,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1631,45,'Parmer',1,1317,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1632,45,'Montague',1,1168,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1633,45,'Kinney',1,933,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1634,45,'Mcculloch',1,1100,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1635,45,'San Augustine',1,1528,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1636,45,'Coke',1,389,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1637,45,'Waller',1,1804,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1638,45,'Terry',1,1699,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1639,45,'Webb',1,1832,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1640,45,'Brazos',1,207,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1641,45,'Jack',1,863,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1642,45,'Milam',1,1142,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1643,45,'Bailey',1,96,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1644,45,'Comal',1,406,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1645,45,'Coleman',1,392,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1646,45,'Hunt',1,829,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1647,45,'Burleson',1,241,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1648,45,'Mcmullen',1,1115,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1649,45,'Real',1,1436,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1650,45,'Atascosa',1,78,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1651,45,'Hemphill',1,778,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1652,45,'Eastland',1,550,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1653,45,'Tom Green',1,1719,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1654,45,'Cottle',1,428,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1655,45,'Kerr',1,916,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1656,45,'Hartley',1,768,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1657,45,'Tyler',1,1754,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1658,45,'Childress',1,343,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1659,45,'Falls',1,594,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1660,45,'Nacogdoches',1,1200,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1661,45,'Donley',1,524,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1662,45,'Bosque',1,187,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1663,45,'San Jacinto',1,1534,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1664,45,'Val Verde',1,1768,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1665,45,'Uvalde',1,1767,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1666,45,'Titus',1,1714,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1667,45,'Coryell',1,425,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1668,45,'Pecos',1,1329,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1669,45,'Kaufman',1,901,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1670,45,'Crane',1,438,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1671,45,'Hood',1,808,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1672,45,'Crosby',1,447,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1673,45,'Foard',1,615,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1674,45,'De Witt',1,485,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1675,45,'Dallam',1,465,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1676,45,'Deaf Smith',1,486,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1677,45,'Bowie',1,194,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1678,45,'Hudspeth',1,823,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1679,45,'Starr',1,1638,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1680,45,'Yoakum',1,1912,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1681,45,'Angelina',1,49,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1682,45,'Castro',1,295,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1683,45,'Live Oak',1,1021,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1684,45,'Collingsworth',1,398,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1685,45,'Freestone',1,629,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1686,45,'Gillespie',1,665,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1687,45,'Scurry',1,1576,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1688,45,'Maverick',1,1091,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1689,45,'Gregg',1,715,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1690,45,'Karnes',1,899,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1691,45,'Concho',1,409,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1692,45,'Schleicher',1,1565,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1693,45,'Rains',1,1422,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1694,45,'Cooke',1,417,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1695,45,'Ochiltree',1,1260,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1696,45,'Rockwall',1,1477,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1697,45,'Motley',1,1187,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1698,45,'Aransas',1,59,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1699,45,'Borden',1,186,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1700,45,'Glasscock',1,673,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1701,45,'Ector',1,554,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1702,45,'Somervell',1,1619,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1703,45,'Palo Pinto',1,1311,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1704,45,'Young',1,1915,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1705,45,'Carson',1,286,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1706,45,'Hansford',1,749,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1707,45,'Jim Hogg',1,879,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1708,45,'King',1,925,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1709,45,'Lavaca',1,990,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1710,45,'Swisher',1,1677,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1711,45,'Wilbarger',1,1858,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1712,45,'Rusk',1,1491,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1713,45,'Lubbock',1,1038,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1714,45,'Kimble',1,924,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1715,45,'Garza',1,649,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1716,45,'Lampasas',1,970,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1717,45,'Winkler',1,1873,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1718,45,'Kleberg',1,940,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1719,45,'Willacy',1,1864,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1720,45,'Camp',1,269,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1721,45,'Gaines',1,638,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1722,45,'Zapata',1,1919,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1723,45,'Presidio',1,1399,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1724,45,'Upton',1,1764,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1725,45,'Fisher',1,607,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1726,45,'Loving',1,1036,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1727,45,'Lynn',1,1049,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1728,45,'Briscoe',1,213,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1729,45,'Baylor',1,129,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1730,45,'Sutton',1,1671,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1731,45,'Sterling',1,1644,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1732,45,'Throckmorton',1,1704,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1733,45,'Culberson',1,451,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1734,46,'Utah',1,1765,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1735,46,'Duchesne',1,534,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1736,46,'Sanpete',1,1550,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1737,46,'Box Elder',1,197,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1738,46,'Salt Lake',1,1525,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1739,46,'Uintah',1,1757,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1740,46,'Cache',1,252,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1741,46,'Emery',1,574,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1742,46,'Piute',1,1367,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1743,46,'Millard',1,1143,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1744,46,'Tooele',1,1721,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1745,46,'Daggett',1,462,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1746,46,'Weber',1,1833,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1747,46,'Juab',1,886,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1748,46,'Rich',1,1450,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1749,46,'Wasatch',1,1815,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1750,48,'Accomack',1,4,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1751,48,'Loudoun',1,1032,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1752,48,'Alexandria City',1,27,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1753,48,'Fairfax',1,588,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1754,48,'Amelia',1,40,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1755,48,'Amherst',1,41,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1756,48,'Culpeper',1,454,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1757,48,'Dinwiddie',1,514,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1758,48,'Appomattox',1,58,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1759,48,'Patrick',1,1322,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1760,48,'Arlington',1,66,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1761,48,'Buckingham',1,229,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1762,48,'Hanover',1,748,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1763,48,'Smyth',1,1613,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1764,48,'Augusta',1,88,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1765,48,'Wythe',1,1896,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1766,48,'King William',1,928,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1767,48,'New Kent',1,1221,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1768,48,'Bland',1,173,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1769,48,'Shenandoah',1,1595,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1770,48,'Albemarle',1,21,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1771,48,'Isle Of Wight',1,858,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1772,48,'Fauquier',1,600,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1773,48,'Goochland',1,681,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1774,48,'Dickenson',1,507,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1775,48,'Roanoke',1,1465,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1776,48,'Nottoway',1,1249,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1777,48,'Pittsylvania',1,1366,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1778,48,'Botetourt',1,189,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1779,48,'Mathews',1,1087,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1780,48,'Southampton',1,1621,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1781,48,'Fluvanna',1,614,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1782,48,'Prince William',1,1407,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1783,48,'Rockbridge',1,1472,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1784,48,'King And Queen',1,926,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1785,48,'Buena Vista City',1,232,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1786,48,'Rappahannock',1,1431,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1787,48,'Charles City',1,316,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1788,48,'Charlottesville City',1,321,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1789,48,'Chesapeake City',1,336,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1790,48,'Colonial Heights City',1,399,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1791,48,'Covington City',1,432,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1792,48,'King George',1,927,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1793,48,'Danville City',1,469,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1794,48,'Prince George',1,1404,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1795,48,'Lunenburg',1,1043,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1796,48,'Greensville',1,710,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1797,48,'Fairfax City',1,589,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1798,48,'Falls Church City',1,595,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1799,48,'Prince Edward',1,1403,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1800,48,'Newport News City',1,1228,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1801,48,'Hampton City',1,745,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1802,48,'Franklin City',1,625,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1803,48,'Fredericksburg City',1,627,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1804,48,'Spotsylvania',1,1628,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1805,48,'Galax City',1,639,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1806,48,'Henrico',1,784,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1807,48,'Harrisonburg City',1,765,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1808,48,'Hopewell City',1,811,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1809,48,'James City',1,865,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1810,48,'Lexington City',1,1012,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1811,48,'Lynchburg City',1,1048,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1812,48,'Powhatan',1,1394,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1813,48,'Manassas City',1,1063,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1814,48,'Manassas Park City',1,1064,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1815,48,'Martinsville City',1,1082,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1816,48,'Norfolk City',1,1241,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1817,48,'Norton City',1,1248,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1818,48,'Petersburg City',1,1345,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1819,48,'Poquoson City',1,1382,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1820,48,'Portsmouth City',1,1385,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1821,48,'Radford',1,1421,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1822,48,'Richmond City',1,1454,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1823,48,'Roanoke City',1,1466,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1824,48,'Staunton City',1,1639,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1825,48,'Suffolk City',1,1659,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1826,48,'Virginia Beach City',1,1790,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1827,48,'Waynesboro City',1,1830,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1828,48,'Williamsburg City',1,1867,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1829,48,'Winchester City',1,1870,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1830,47,'Grand Isle',1,694,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1831,47,'Bennington',1,147,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1832,47,'Windsor',1,1872,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1833,47,'Caledonia',1,258,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1834,47,'Rutland',1,1494,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1835,47,'Lamoille',1,968,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1836,47,'Addison',1,8,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1837,47,'Chittenden',1,347,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1838,49,'Grays Harbor',1,702,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1839,49,'Whatcom',1,1846,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1840,49,'Spokane',1,1627,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1841,49,'Whitman',1,1854,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1842,49,'Skagit',1,1608,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1843,49,'Asotin',1,76,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1844,49,'Klickitat',1,941,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1845,49,'Chelan',1,331,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1846,49,'Cowlitz',1,435,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1847,49,'Snohomish',1,1614,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1848,49,'Kitsap',1,936,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1849,49,'Pacific',1,1307,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1850,49,'Clallam',1,360,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1851,49,'Ferry',1,604,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1852,49,'Okanogan',1,1268,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1853,49,'Yakima',1,1899,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1854,49,'Walla Walla',1,1802,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1855,49,'Island',1,857,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1856,49,'Skamania',1,1610,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1857,49,'Wahkiakum',1,1797,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1858,49,'Kittitas',1,937,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1859,49,'Pend Oreille',1,1332,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1860,51,'Oconto',1,1262,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1861,51,'Sheboygan',1,1593,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1862,51,'Kewaunee',1,919,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1863,51,'Barron',1,116,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1864,51,'Eau Claire',1,552,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1865,51,'Marinette',1,1075,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1866,51,'Marathon',1,1069,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1867,51,'Langlade',1,974,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1868,51,'Outagamie',1,1299,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1869,51,'Trempealeau',1,1733,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1870,51,'Pepin',1,1339,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1871,51,'Door',1,526,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1872,51,'Saint Croix',1,1505,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1873,51,'La Crosse',1,950,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1874,51,'Sauk',1,1561,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1875,51,'Kenosha',1,911,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1876,51,'Bayfield',1,128,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1877,51,'Ozaukee',1,1306,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1878,51,'Dane',1,467,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1879,51,'Green Lake',1,706,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1880,51,'Waukesha',1,1826,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1881,51,'Waupaca',1,1827,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1882,51,'Washburn',1,1819,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1883,51,'Shawano',1,1591,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1884,51,'Vilas',1,1787,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1885,51,'Fond Du Lac',1,616,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1886,51,'Price',1,1402,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1887,51,'Calumet',1,263,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1888,51,'Racine',1,1420,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1889,51,'Manitowoc',1,1068,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1890,51,'Waushara',1,1828,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1891,51,'Sawyer',1,1563,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1892,51,'Milwaukee',1,1147,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1893,51,'Burnett',1,244,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1894,50,'Preston',1,1401,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1895,50,'Kanawha',1,895,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1896,50,'Raleigh',1,1423,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1897,50,'Greenbrier',1,707,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1898,50,'Ritchie',1,1462,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1899,50,'Mingo',1,1150,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1900,50,'Hardy',1,756,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1901,50,'Cabell',1,250,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1902,50,'Brooke',1,218,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1903,50,'Pleasants',1,1371,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1904,50,'Wetzel',1,1843,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1905,50,'Monongalia',1,1166,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1906,50,'Tucker',1,1743,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1907,50,'Wirt',1,1879,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1908,50,'Braxton',1,205,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1909,50,'Doddridge',1,519,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1910,50,'Summers',1,1662,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1911,52,'Laramie',1,977,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1912,52,'Natrona',1,1209,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1913,52,'Sweetwater',1,1675,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1914,52,'Sublette',1,1657,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1915,52,'Converse',1,414,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1916,52,'Uinta',1,1756,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1917,52,'Goshen',1,685,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1918,52,'Weston',1,1842,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1919,52,'Hot Springs',1,816,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1920,52,'Niobrara',1,1234,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL),(1921,52,'Washakie',1,1818,'2022-05-11 11:55:19','2022-05-17 11:49:17',NULL);
/*!40000 ALTER TABLE `counties` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `country`
--

DROP TABLE IF EXISTS `country`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `country` (
  `id` int NOT NULL AUTO_INCREMENT,
  `iso` char(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `name` varchar(80) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `nicename` varchar(80) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `iso3` char(3) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `numcode` smallint DEFAULT NULL,
  `phonecode` int NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=241 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `country`
--

LOCK TABLES `country` WRITE;
/*!40000 ALTER TABLE `country` DISABLE KEYS */;
INSERT INTO `country` VALUES (1,'AF','AFGHANISTAN','Afghanistan','AFG',4,93),(2,'AL','ALBANIA','Albania','ALB',8,355),(3,'DZ','ALGERIA','Algeria','DZA',12,213),(4,'AS','AMERICAN SAMOA','American Samoa','ASM',16,1684),(5,'AD','ANDORRA','Andorra','AND',20,376),(6,'AO','ANGOLA','Angola','AGO',24,244),(7,'AI','ANGUILLA','Anguilla','AIA',660,1264),(8,'AQ','ANTARCTICA','Antarctica',NULL,NULL,0),(9,'AG','ANTIGUA AND BARBUDA','Antigua and Barbuda','ATG',28,1268),(10,'AR','ARGENTINA','Argentina','ARG',32,54),(11,'AM','ARMENIA','Armenia','ARM',51,374),(12,'AW','ARUBA','Aruba','ABW',533,297),(13,'AU','AUSTRALIA','Australia','AUS',36,61),(14,'AT','AUSTRIA','Austria','AUT',40,43),(15,'AZ','AZERBAIJAN','Azerbaijan','AZE',31,994),(16,'BS','BAHAMAS','Bahamas','BHS',44,1242),(17,'BH','BAHRAIN','Bahrain','BHR',48,973),(18,'BD','BANGLADESH','Bangladesh','BGD',50,880),(19,'BB','BARBADOS','Barbados','BRB',52,1246),(20,'BY','BELARUS','Belarus','BLR',112,375),(21,'BE','BELGIUM','Belgium','BEL',56,32),(22,'BZ','BELIZE','Belize','BLZ',84,501),(23,'BJ','BENIN','Benin','BEN',204,229),(24,'BM','BERMUDA','Bermuda','BMU',60,1441),(25,'BT','BHUTAN','Bhutan','BTN',64,975),(26,'BO','BOLIVIA','Bolivia','BOL',68,591),(27,'BA','BOSNIA AND HERZEGOVINA','Bosnia and Herzegovina','BIH',70,387),(28,'BW','BOTSWANA','Botswana','BWA',72,267),(29,'BV','BOUVET ISLAND','Bouvet Island',NULL,NULL,0),(30,'BR','BRAZIL','Brazil','BRA',76,55),(31,'IO','BRITISH INDIAN OCEAN TERRITORY','British Indian Ocean Territory',NULL,NULL,246),(32,'BN','BRUNEI DARUSSALAM','Brunei Darussalam','BRN',96,673),(33,'BG','BULGARIA','Bulgaria','BGR',100,359),(34,'BF','BURKINA FASO','Burkina Faso','BFA',854,226),(35,'BI','BURUNDI','Burundi','BDI',108,257),(36,'KH','CAMBODIA','Cambodia','KHM',116,855),(37,'CM','CAMEROON','Cameroon','CMR',120,237),(38,'CA','CANADA','Canada','CAN',124,1),(39,'CV','CAPE VERDE','Cape Verde','CPV',132,238),(40,'KY','CAYMAN ISLANDS','Cayman Islands','CYM',136,1345),(41,'CF','CENTRAL AFRICAN REPUBLIC','Central African Republic','CAF',140,236),(42,'TD','CHAD','Chad','TCD',148,235),(43,'CL','CHILE','Chile','CHL',152,56),(44,'CN','CHINA','China','CHN',156,86),(45,'CX','CHRISTMAS ISLAND','Christmas Island',NULL,NULL,61),(46,'CC','COCOS (KEELING) ISLANDS','Cocos (Keeling) Islands',NULL,NULL,672),(47,'CO','COLOMBIA','Colombia','COL',170,57),(48,'KM','COMOROS','Comoros','COM',174,269),(49,'CG','CONGO','Congo','COG',178,242),(50,'CD','CONGO, THE DEMOCRATIC REPUBLIC OF THE','Congo, the Democratic Republic of the','COD',180,242),(51,'CK','COOK ISLANDS','Cook Islands','COK',184,682),(52,'CR','COSTA RICA','Costa Rica','CRI',188,506),(53,'CI','COTE D\'IVOIRE','Cote D\'Ivoire','CIV',384,225),(54,'HR','CROATIA','Croatia','HRV',191,385),(55,'CU','CUBA','Cuba','CUB',192,53),(56,'CY','CYPRUS','Cyprus','CYP',196,357),(57,'CZ','CZECH REPUBLIC','Czech Republic','CZE',203,420),(58,'DK','DENMARK','Denmark','DNK',208,45),(59,'DJ','DJIBOUTI','Djibouti','DJI',262,253),(60,'DM','DOMINICA','Dominica','DMA',212,1767),(61,'DO','DOMINICAN REPUBLIC','Dominican Republic','DOM',214,1809),(62,'EC','ECUADOR','Ecuador','ECU',218,593),(63,'EG','EGYPT','Egypt','EGY',818,20),(64,'SV','EL SALVADOR','El Salvador','SLV',222,503),(65,'GQ','EQUATORIAL GUINEA','Equatorial Guinea','GNQ',226,240),(66,'ER','ERITREA','Eritrea','ERI',232,291),(67,'EE','ESTONIA','Estonia','EST',233,372),(68,'ET','ETHIOPIA','Ethiopia','ETH',231,251),(69,'FK','FALKLAND ISLANDS (MALVINAS)','Falkland Islands (Malvinas)','FLK',238,500),(70,'FO','FAROE ISLANDS','Faroe Islands','FRO',234,298),(71,'FJ','FIJI','Fiji','FJI',242,679),(72,'FI','FINLAND','Finland','FIN',246,358),(73,'FR','FRANCE','France','FRA',250,33),(74,'GF','FRENCH GUIANA','French Guiana','GUF',254,594),(75,'PF','FRENCH POLYNESIA','French Polynesia','PYF',258,689),(76,'TF','FRENCH SOUTHERN TERRITORIES','French Southern Territories',NULL,NULL,0),(77,'GA','GABON','Gabon','GAB',266,241),(78,'GM','GAMBIA','Gambia','GMB',270,220),(79,'GE','GEORGIA','Georgia','GEO',268,995),(80,'DE','GERMANY','Germany','DEU',276,49),(81,'GH','GHANA','Ghana','GHA',288,233),(82,'GI','GIBRALTAR','Gibraltar','GIB',292,350),(83,'GR','GREECE','Greece','GRC',300,30),(84,'GL','GREENLAND','Greenland','GRL',304,299),(85,'GD','GRENADA','Grenada','GRD',308,1473),(86,'GP','GUADELOUPE','Guadeloupe','GLP',312,590),(87,'GU','GUAM','Guam','GUM',316,1671),(88,'GT','GUATEMALA','Guatemala','GTM',320,502),(89,'GN','GUINEA','Guinea','GIN',324,224),(90,'GW','GUINEA-BISSAU','Guinea-Bissau','GNB',624,245),(91,'GY','GUYANA','Guyana','GUY',328,592),(92,'HT','HAITI','Haiti','HTI',332,509),(93,'HM','HEARD ISLAND AND MCDONALD ISLANDS','Heard Island and Mcdonald Islands',NULL,NULL,0),(94,'VA','HOLY SEE (VATICAN CITY STATE)','Holy See (Vatican City State)','VAT',336,39),(95,'HN','HONDURAS','Honduras','HND',340,504),(96,'HK','HONG KONG','Hong Kong','HKG',344,852),(97,'HU','HUNGARY','Hungary','HUN',348,36),(98,'IS','ICELAND','Iceland','ISL',352,354),(99,'IN','INDIA','India','IND',356,91),(100,'ID','INDONESIA','Indonesia','IDN',360,62),(101,'IR','IRAN, ISLAMIC REPUBLIC OF','Iran, Islamic Republic of','IRN',364,98),(102,'IQ','IRAQ','Iraq','IRQ',368,964),(103,'IE','IRELAND','Ireland','IRL',372,353),(104,'IL','ISRAEL','Israel','ISR',376,972),(105,'IT','ITALY','Italy','ITA',380,39),(106,'JM','JAMAICA','Jamaica','JAM',388,1876),(107,'JP','JAPAN','Japan','JPN',392,81),(108,'JO','JORDAN','Jordan','JOR',400,962),(109,'KZ','KAZAKHSTAN','Kazakhstan','KAZ',398,7),(110,'KE','KENYA','Kenya','KEN',404,254),(111,'KI','KIRIBATI','Kiribati','KIR',296,686),(112,'KP','KOREA, DEMOCRATIC PEOPLE\'S REPUBLIC OF','Korea, Democratic People\'s Republic of','PRK',408,850),(113,'KR','KOREA, REPUBLIC OF','Korea, Republic of','KOR',410,82),(114,'KW','KUWAIT','Kuwait','KWT',414,965),(115,'KG','KYRGYZSTAN','Kyrgyzstan','KGZ',417,996),(116,'LA','LAO PEOPLE\'S DEMOCRATIC REPUBLIC','Lao People\'s Democratic Republic','LAO',418,856),(117,'LV','LATVIA','Latvia','LVA',428,371),(118,'LB','LEBANON','Lebanon','LBN',422,961),(119,'LS','LESOTHO','Lesotho','LSO',426,266),(120,'LR','LIBERIA','Liberia','LBR',430,231),(121,'LY','LIBYAN ARAB JAMAHIRIYA','Libyan Arab Jamahiriya','LBY',434,218),(122,'LI','LIECHTENSTEIN','Liechtenstein','LIE',438,423),(123,'LT','LITHUANIA','Lithuania','LTU',440,370),(124,'LU','LUXEMBOURG','Luxembourg','LUX',442,352),(125,'MO','MACAO','Macao','MAC',446,853),(126,'MK','MACEDONIA, THE FORMER YUGOSLAV REPUBLIC OF','Macedonia, the Former Yugoslav Republic of','MKD',807,389),(127,'MG','MADAGASCAR','Madagascar','MDG',450,261),(128,'MW','MALAWI','Malawi','MWI',454,265),(129,'MY','MALAYSIA','Malaysia','MYS',458,60),(130,'MV','MALDIVES','Maldives','MDV',462,960),(131,'ML','MALI','Mali','MLI',466,223),(132,'MT','MALTA','Malta','MLT',470,356),(133,'MH','MARSHALL ISLANDS','Marshall Islands','MHL',584,692),(134,'MQ','MARTINIQUE','Martinique','MTQ',474,596),(135,'MR','MAURITANIA','Mauritania','MRT',478,222),(136,'MU','MAURITIUS','Mauritius','MUS',480,230),(137,'YT','MAYOTTE','Mayotte',NULL,NULL,269),(138,'MX','MEXICO','Mexico','MEX',484,52),(139,'FM','MICRONESIA, FEDERATED STATES OF','Micronesia, Federated States of','FSM',583,691),(140,'MD','MOLDOVA, REPUBLIC OF','Moldova, Republic of','MDA',498,373),(141,'MC','MONACO','Monaco','MCO',492,377),(142,'MN','MONGOLIA','Mongolia','MNG',496,976),(143,'MS','MONTSERRAT','Montserrat','MSR',500,1664),(144,'MA','MOROCCO','Morocco','MAR',504,212),(145,'MZ','MOZAMBIQUE','Mozambique','MOZ',508,258),(146,'MM','MYANMAR','Myanmar','MMR',104,95),(147,'NA','NAMIBIA','Namibia','NAM',516,264),(148,'NR','NAURU','Nauru','NRU',520,674),(149,'NP','NEPAL','Nepal','NPL',524,977),(150,'NL','NETHERLANDS','Netherlands','NLD',528,31),(151,'AN','NETHERLANDS ANTILLES','Netherlands Antilles','ANT',530,599),(152,'NC','NEW CALEDONIA','New Caledonia','NCL',540,687),(153,'NZ','NEW ZEALAND','New Zealand','NZL',554,64),(154,'NI','NICARAGUA','Nicaragua','NIC',558,505),(155,'NE','NIGER','Niger','NER',562,227),(156,'NG','NIGERIA','Nigeria','NGA',566,234),(157,'NU','NIUE','Niue','NIU',570,683),(158,'NF','NORFOLK ISLAND','Norfolk Island','NFK',574,672),(159,'MP','NORTHERN MARIANA ISLANDS','Northern Mariana Islands','MNP',580,1670),(160,'NO','NORWAY','Norway','NOR',578,47),(161,'OM','OMAN','Oman','OMN',512,968),(162,'PK','PAKISTAN','Pakistan','PAK',586,92),(163,'PW','PALAU','Palau','PLW',585,680),(164,'PS','PALESTINIAN TERRITORY, OCCUPIED','Palestinian Territory, Occupied',NULL,NULL,970),(165,'PA','PANAMA','Panama','PAN',591,507),(166,'PG','PAPUA NEW GUINEA','Papua New Guinea','PNG',598,675),(167,'PY','PARAGUAY','Paraguay','PRY',600,595),(168,'PE','PERU','Peru','PER',604,51),(169,'PH','PHILIPPINES','Philippines','PHL',608,63),(170,'PN','PITCAIRN','Pitcairn','PCN',612,0),(171,'PL','POLAND','Poland','POL',616,48),(172,'PT','PORTUGAL','Portugal','PRT',620,351),(173,'PR','PUERTO RICO','Puerto Rico','PRI',630,1787),(174,'QA','QATAR','Qatar','QAT',634,974),(175,'RE','REUNION','Reunion','REU',638,262),(176,'RO','ROMANIA','Romania','ROM',642,40),(177,'RU','RUSSIAN FEDERATION','Russian Federation','RUS',643,70),(178,'RW','RWANDA','Rwanda','RWA',646,250),(179,'SH','SAINT HELENA','Saint Helena','SHN',654,290),(180,'KN','SAINT KITTS AND NEVIS','Saint Kitts and Nevis','KNA',659,1869),(181,'LC','SAINT LUCIA','Saint Lucia','LCA',662,1758),(182,'PM','SAINT PIERRE AND MIQUELON','Saint Pierre and Miquelon','SPM',666,508),(183,'VC','SAINT VINCENT AND THE GRENADINES','Saint Vincent and the Grenadines','VCT',670,1784),(184,'WS','SAMOA','Samoa','WSM',882,684),(185,'SM','SAN MARINO','San Marino','SMR',674,378),(186,'ST','SAO TOME AND PRINCIPE','Sao Tome and Principe','STP',678,239),(187,'SA','SAUDI ARABIA','Saudi Arabia','SAU',682,966),(188,'SN','SENEGAL','Senegal','SEN',686,221),(189,'CS','SERBIA AND MONTENEGRO','Serbia and Montenegro',NULL,NULL,381),(190,'SC','SEYCHELLES','Seychelles','SYC',690,248),(191,'SL','SIERRA LEONE','Sierra Leone','SLE',694,232),(192,'SG','SINGAPORE','Singapore','SGP',702,65),(193,'SK','SLOVAKIA','Slovakia','SVK',703,421),(194,'SI','SLOVENIA','Slovenia','SVN',705,386),(195,'SB','SOLOMON ISLANDS','Solomon Islands','SLB',90,677),(196,'SO','SOMALIA','Somalia','SOM',706,252),(197,'ZA','SOUTH AFRICA','South Africa','ZAF',710,27),(198,'GS','SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS','South Georgia and the South Sandwich Islands',NULL,NULL,0),(199,'ES','SPAIN','Spain','ESP',724,34),(200,'LK','SRI LANKA','Sri Lanka','LKA',144,94),(201,'SD','SUDAN','Sudan','SDN',736,249),(202,'SR','SURINAME','Suriname','SUR',740,597),(203,'SJ','SVALBARD AND JAN MAYEN','Svalbard and Jan Mayen','SJM',744,47),(204,'SZ','SWAZILAND','Swaziland','SWZ',748,268),(205,'SE','SWEDEN','Sweden','SWE',752,46),(206,'CH','SWITZERLAND','Switzerland','CHE',756,41),(207,'SY','SYRIAN ARAB REPUBLIC','Syrian Arab Republic','SYR',760,963),(208,'TW','TAIWAN, PROVINCE OF CHINA','Taiwan, Province of China','TWN',158,886),(209,'TJ','TAJIKISTAN','Tajikistan','TJK',762,992),(210,'TZ','TANZANIA, UNITED REPUBLIC OF','Tanzania, United Republic of','TZA',834,255),(211,'TH','THAILAND','Thailand','THA',764,66),(212,'TL','TIMOR-LESTE','Timor-Leste',NULL,NULL,670),(213,'TG','TOGO','Togo','TGO',768,228),(214,'TK','TOKELAU','Tokelau','TKL',772,690),(215,'TO','TONGA','Tonga','TON',776,676),(216,'TT','TRINIDAD AND TOBAGO','Trinidad and Tobago','TTO',780,1868),(217,'TN','TUNISIA','Tunisia','TUN',788,216),(218,'TR','TURKEY','Turkey','TUR',792,90),(219,'TM','TURKMENISTAN','Turkmenistan','TKM',795,7370),(220,'TC','TURKS AND CAICOS ISLANDS','Turks and Caicos Islands','TCA',796,1649),(221,'TV','TUVALU','Tuvalu','TUV',798,688),(222,'UG','UGANDA','Uganda','UGA',800,256),(223,'UA','UKRAINE','Ukraine','UKR',804,380),(224,'AE','UNITED ARAB EMIRATES','United Arab Emirates','ARE',784,971),(225,'GB','UNITED KINGDOM','United Kingdom','GBR',826,44),(226,'US','UNITED STATES','United States','USA',840,1),(227,'UM','UNITED STATES MINOR OUTLYING ISLANDS','United States Minor Outlying Islands',NULL,NULL,1),(228,'UY','URUGUAY','Uruguay','URY',858,598),(229,'UZ','UZBEKISTAN','Uzbekistan','UZB',860,998),(230,'VU','VANUATU','Vanuatu','VUT',548,678),(231,'VE','VENEZUELA','Venezuela','VEN',862,58),(232,'VN','VIET NAM','Viet Nam','VNM',704,84),(233,'VG','VIRGIN ISLANDS, BRITISH','Virgin Islands, British','VGB',92,1284),(234,'VI','VIRGIN ISLANDS, U.S.','Virgin Islands, U.s.','VIR',850,1340),(235,'WF','WALLIS AND FUTUNA','Wallis and Futuna','WLF',876,681),(236,'EH','WESTERN SAHARA','Western Sahara','ESH',732,212),(237,'YE','YEMEN','Yemen','YEM',887,967),(238,'ZM','ZAMBIA','Zambia','ZMB',894,260),(239,'ZW','ZIMBABWE','Zimbabwe','ZWE',716,263),(240,'ZZ','UnSpecified','UnSpecified','ZZZ',0,0);
/*!40000 ALTER TABLE `country` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_queue`
--

DROP TABLE IF EXISTS `email_queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_queue` (
  `id` int NOT NULL AUTO_INCREMENT,
  `firstName` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `lastName` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `phone` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `templateId` int NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_queue`
--

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

--
-- Table structure for table `email_templates`
--

DROP TABLE IF EXISTS `email_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `email_templates` (
  `id` int NOT NULL AUTO_INCREMENT,
  `Title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `Subject` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `keyy` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `variables` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `Body` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `SenderName` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `Sender` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `Status` enum('No','Yes') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT 'Yes',
  `orderr` int DEFAULT '0',
  `icon` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `icon_class` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `user_body` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `user_status` enum('No','Yes') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `user_email_active` enum('No','Yes') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT 'No',
  `user_subject` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `email_type` enum('history','status') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT 'status',
  `template_off` int DEFAULT NULL,
  `icon_sign_email` varchar(225) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_templates`
--

LOCK TABLES `email_templates` WRITE;
/*!40000 ALTER TABLE `email_templates` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_templates` 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(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `connection` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `queue` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `exception` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_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_general_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 `galleries`
--

DROP TABLE IF EXISTS `galleries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `galleries` (
  `id` int NOT NULL AUTO_INCREMENT,
  `gallery_title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `alt_tag` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `gallery_images` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `gallery_desc` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `item_order` int DEFAULT NULL,
  `sts` tinyint(1) DEFAULT '0',
  `dated` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `galleries`
--

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

--
-- Table structure for table `general_email_templates`
--

DROP TABLE IF EXISTS `general_email_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `general_email_templates` (
  `id` int NOT NULL AUTO_INCREMENT,
  `template_name` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `dynamic_values` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `from_name` varchar(70) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `from_email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `reply_to_name` varchar(70) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `reply_to_email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `subject` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `email_template` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `is_temporary` int DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `general_email_templates`
--

LOCK TABLES `general_email_templates` WRITE;
/*!40000 ALTER TABLE `general_email_templates` DISABLE KEYS */;
INSERT INTO `general_email_templates` VALUES (1,'Template-1','{NAME},{EMAIL},{PHONE}','John Doe','johndoe@medialinkers.com','John Doe','johndoe@medialinkers.com','John Doe Sent Email','<p>{NAME}</p>\r\n<p>This is test email template.1</p>',0),(17,'Template-1','{NAME},{EMAIL},{PHONE}','John Doe','johndoe@medialinkers.com','John Doe','johndoe@medialinkers.com','John Doe Sent Email','<p>{NAME}</p>\r\n<p>This is test email template.1</p>',1),(18,'Template-1','{NAME},{EMAIL},{PHONE}','John Doe','johndoe@medialinkers.com','John Doe','johndoe@medialinkers.com','John Doe Sent Email','<p>{NAME}</p>\r\n<p>This is test email template.1</p>',1),(19,'Template-1','{NAME},{EMAIL},{PHONE}','John Doe','johndoe@medialinkers.com','John Doe','johndoe@medialinkers.com','John Doe Sent Email','<p>{NAME}</p>\r\n<p>This is test email template.1</p>',1),(20,'Template-1','{NAME},{EMAIL},{PHONE}','John Doe','johndoe@medialinkers.com','John Doe','johndoe@medialinkers.com','John Doe Sent Email','<p>{NAME}</p>\r\n<p>This is test email template.1</p>',1),(21,'Template-1','{NAME},{EMAIL},{PHONE}','John Doe','johndoe@medialinkers.com','John Doe','johndoe@medialinkers.com','John Doe Sent Email','<p>{NAME}</p>\r\n<p>This is test email template.1</p>',1);
/*!40000 ALTER TABLE `general_email_templates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `images`
--

DROP TABLE IF EXISTS `images`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `images` (
  `id` int NOT NULL AUTO_INCREMENT,
  `imageUrl` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `imageUrl2` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `album_id` int DEFAULT NULL,
  `isFeatured` int DEFAULT '0',
  `isBeforeAfter` int DEFAULT '0',
  `isBeforeAfterHaveTwoImages` int DEFAULT '0',
  `orderBy` int DEFAULT '0',
  `image_alt` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `image_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `status` int DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `images`
--

LOCK TABLES `images` WRITE;
/*!40000 ALTER TABLE `images` DISABLE KEYS */;
INSERT INTO `images` VALUES (22,'1659365974-imgonline-com-ua-twotoone-cngunjtbmr8ouo0v.webp',NULL,11,0,1,0,3,'alt 1','title 1',1),(23,'imgonline-com-ua-twotoone-dh3w7bsybjz.webp',NULL,11,0,1,0,1,'alt 1','title 1',1),(24,'imgonline-com-ua-twotoone-ewmghn6pq5.webp',NULL,11,0,1,0,2,'alt 1','title 1',1),(25,'top-banner.webp',NULL,11,0,0,0,4,'alt 1','title 1',1),(38,'8.webp','7.webp',11,0,1,1,5,NULL,NULL,1);
/*!40000 ALTER TABLE `images` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `inv_billing_settings`
--

DROP TABLE IF EXISTS `inv_billing_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `inv_billing_settings` (
  `id` int NOT NULL AUTO_INCREMENT,
  `amounts` int NOT NULL,
  `createdOn` date NOT NULL,
  `updatedOn` date NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inv_billing_settings`
--

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

--
-- Table structure for table `inv_invoice_payment_options`
--

DROP TABLE IF EXISTS `inv_invoice_payment_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `inv_invoice_payment_options` (
  `id` int NOT NULL AUTO_INCREMENT,
  `fk_invoice_id` int DEFAULT NULL,
  `fk_payment_option_id` int DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inv_invoice_payment_options`
--

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

--
-- Table structure for table `inv_invoices`
--

DROP TABLE IF EXISTS `inv_invoices`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `inv_invoices` (
  `id` int NOT NULL AUTO_INCREMENT,
  `invoice_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `fk_admin_id` int DEFAULT NULL,
  `email` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `created_date` datetime DEFAULT NULL,
  `sent_date` datetime DEFAULT NULL,
  `status` enum('Sent','Paid','Deferred','Written Off','Canceled','Future') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT 'Sent',
  `price_unit` enum('$','?','Rs') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '$',
  `amount` double DEFAULT NULL,
  `user_ip` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `time_sent` int DEFAULT '0',
  `invoice_webkey` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `paid_alert_status` tinyint(1) DEFAULT '0',
  `client_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `comments` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `email_cc` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `email_bcc` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `case_reference` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inv_invoices`
--

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

--
-- Table structure for table `inv_invoices_transactions`
--

DROP TABLE IF EXISTS `inv_invoices_transactions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `inv_invoices_transactions` (
  `id` int NOT NULL AUTO_INCREMENT,
  `fk_invoice_id` int DEFAULT NULL,
  `fk_payment_option_id` int DEFAULT NULL,
  `transaction_number` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `scanned_copy` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `created_date` datetime DEFAULT NULL,
  `details` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inv_invoices_transactions`
--

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

--
-- Table structure for table `inv_payment_options`
--

DROP TABLE IF EXISTS `inv_payment_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `inv_payment_options` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `details` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `sts` enum('No','Yes') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT 'Yes',
  `created_at` datetime DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
  `gateway_info` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inv_payment_options`
--

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

--
-- Table structure for table `job_applications`
--

DROP TABLE IF EXISTS `job_applications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `job_applications` (
  `id` int NOT NULL AUTO_INCREMENT,
  `career_id` int DEFAULT NULL,
  `name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `phone` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `comments` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `ip` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `dated` date DEFAULT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `job_applications`
--

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

--
-- Table structure for table `job_batches`
--

DROP TABLE IF EXISTS `job_batches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `job_batches` (
  `id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `total_jobs` int NOT NULL,
  `pending_jobs` int NOT NULL,
  `failed_jobs` int NOT NULL,
  `failed_job_ids` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `options` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `cancelled_at` int DEFAULT NULL,
  `created_at` int NOT NULL,
  `finished_at` int DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `job_batches`
--

LOCK TABLES `job_batches` WRITE;
/*!40000 ALTER TABLE `job_batches` DISABLE KEYS */;
/*!40000 ALTER TABLE `job_batches` 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(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_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_general_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 `lead_stat_urls`
--

DROP TABLE IF EXISTS `lead_stat_urls`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `lead_stat_urls` (
  `id` int NOT NULL AUTO_INCREMENT,
  `referrer` tinytext,
  `url` tinytext,
  `final_destination` tinytext,
  `url_internal_external` varchar(15) DEFAULT 'internal',
  `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lead_stat_urls`
--

LOCK TABLES `lead_stat_urls` WRITE;
/*!40000 ALTER TABLE `lead_stat_urls` DISABLE KEYS */;
INSERT INTO `lead_stat_urls` VALUES (6,'instagram.com','instagram.com','http://localhost/mlcms/site_files/public','external','2024-10-11 17:11:07','2025-01-09 03:50:28'),(9,'mailchimp.com','mailchimp','https://www.popcornlady.com','internal','2024-10-16 18:41:13','2025-01-09 03:50:52'),(10,'list-manage.com','listman','https://www.popcornlady.com','internal','2024-10-16 18:43:38','2025-01-09 03:50:44'),(11,'google.com','google.com','http://localhost/mlcms/site_files/public','external','2025-01-01 03:21:33','2025-01-09 03:50:15');
/*!40000 ALTER TABLE `lead_stat_urls` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `lead_stats`
--

DROP TABLE IF EXISTS `lead_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `lead_stats` (
  `id` int NOT NULL AUTO_INCREMENT,
  `referrer` text,
  `contact_or_quote` varchar(10) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `lead_stats`
--

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

--
-- Table structure for table `mass_mail_queue`
--

DROP TABLE IF EXISTS `mass_mail_queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mass_mail_queue` (
  `id` int NOT NULL AUTO_INCREMENT,
  `template_id` int DEFAULT '0',
  `client_id` int DEFAULT '0',
  `contact_id` int DEFAULT '0',
  `subscriber_id` int DEFAULT '0',
  `date` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `time` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `is_sent` int DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=233 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mass_mail_queue`
--

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

--
-- Table structure for table `menu_types`
--

DROP TABLE IF EXISTS `menu_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `menu_types` (
  `id` int NOT NULL AUTO_INCREMENT,
  `menu_type` varchar(5000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `menu_types`
--

LOCK TABLES `menu_types` WRITE;
/*!40000 ALTER TABLE `menu_types` DISABLE KEYS */;
INSERT INTO `menu_types` VALUES (1,'top'),(2,'footer');
/*!40000 ALTER TABLE `menu_types` 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` int NOT NULL AUTO_INCREMENT,
  `menu_id` int NOT NULL,
  `menu_label` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `menu_url` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `menu_types` int NOT NULL,
  `parent_id` int NOT NULL DEFAULT '0',
  `menu_sort_order` int NOT NULL,
  `open_in_new_window` enum('no','yes') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT 'no',
  `show_no_follow` enum('1','0') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '0',
  `status` enum('Y','N') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT 'Y',
  `is_external_link` enum('Y','N') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT 'N',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=346 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_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 (240,0,'another-link','http://another-link',1,239,15,NULL,NULL,'Y','Y'),(256,0,'Blog','blog',1,0,5,NULL,'1','Y','N'),(268,0,'News & Alerts','news',1,0,3,NULL,NULL,'Y','N'),(272,0,'Gallery','gallery',1,0,2,NULL,NULL,'Y','N'),(279,0,'Services','services',1,0,4,NULL,NULL,'Y','N'),(312,118,'Contact Us','contact-us',1,0,6,NULL,NULL,'Y','N'),(325,104,'About Us','about-us',1,0,1,NULL,NULL,'Y','N'),(342,0,'Site Map','site-map',2,0,4,NULL,NULL,'Y','N'),(343,0,'Videos','videos',2,0,1,NULL,NULL,'Y','N'),(344,261,'Google Calendar','google-calendar',2,0,2,NULL,NULL,'Y','N'),(345,228,'Page with Images','page-with-images',2,0,3,NULL,NULL,'Y','N');
/*!40000 ALTER TABLE `menus` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `message_templates`
--

DROP TABLE IF EXISTS `message_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `message_templates` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `body` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `type` varchar(111) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `order` int DEFAULT '1',
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `message_templates`
--

LOCK TABLES `message_templates` WRITE;
/*!40000 ALTER TABLE `message_templates` DISABLE KEYS */;
INSERT INTO `message_templates` VALUES (16,'New Admin Registration','New User Registrations','custom',1,'2020-06-12 11:39:52','2022-07-08 09:47:39');
/*!40000 ALTER TABLE `message_templates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `metadata`
--

DROP TABLE IF EXISTS `metadata`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `metadata` (
  `id` int NOT NULL AUTO_INCREMENT,
  `data_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `val1` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `dated` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=71 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `metadata`
--

LOCK TABLES `metadata` WRITE;
/*!40000 ALTER TABLE `metadata` DISABLE KEYS */;
INSERT INTO `metadata` VALUES (16,'block_site','no','2024-06-25 13:30:03'),(27,'cache_date',NULL,'2024-06-25 13:30:03'),(28,'last_cache_change',NULL,'2024-06-25 13:30:03'),(29,'date_format','M d, Y','2024-06-25 13:30:03'),(30,'website_name','My Site Name','2024-06-25 13:30:03'),(31,'is_live','Yes','2024-06-25 13:30:03'),(32,'time_zone','America/New_York','2024-06-25 13:30:03'),(33,'date_time_format','m-d-Y h:i:s A','2024-06-25 13:30:03'),(34,'max_image_size','25','2024-06-25 13:30:03'),(35,'recaptcha_status','on','2024-06-25 13:30:03'),(36,'recaptcha_site_key','6Ldf9bMrAAAAAERiGA1q7hDsXzi0vTK91-nMecdY','2024-06-25 13:30:03'),(37,'recaptcha_secret_key','6Ldf9bMrAAAAAFfTC2w8KAXIc9LOOUmgufNJVcQ8','2024-06-25 13:30:03'),(39,'restrict_traffic','0','2024-06-25 13:30:03'),(40,'block_list_active','1','2024-06-25 13:30:03'),(41,'blocked_countries','RU,PL,IN,CN,RO,UA,TR,BR,GB,DE,TH,FR,HK,ID,KR,KP,CZ,TW,BG,BD,LK','2024-06-25 13:30:03'),(42,'allowed_countries','US,CA,PK','2024-06-25 13:30:03'),(43,'blocked_area','website','2024-06-25 13:30:03'),(44,'web_blocked_msg','Sorry, this website is not allowed in your country....','2024-06-25 13:30:03'),(45,'blocked_ips','','2024-06-25 13:30:03'),(46,'version','4.1.1','2024-06-25 13:30:03'),(47,'invoiceSettings','{\"bank_info\":\"Bank of America\\r\\nAccount No: 000000000\\r\\nAccount Title: ABC Orgnization\\r\\n052001633 (paper & electronic transfer)\\r\\n026009593 (wire transfer)\",\"check_mail\":\"Address 1.\\r\\nAddress 2, Orion Center\\r\\nTampa, FL 33607\\r\\nTel:123-123-1234\",\"pay_pal_info\":\"admin@medialinkers.org\",\"copy_email\":\"admin@medialinkers.org\"}','2024-06-25 13:30:03'),(48,'invoiceContent','{\"invoice_content\":\"Hi <strong>{client_name}<\\/strong>,\\r\\n<br>\\r\\n<br>\\r\\nPlease find your invoice from ABC Orgnization.\\r\\n<br>\\r\\n<br>\\r\\n<strong><u>Case reference :<\\/u><\\/strong> {case_reference}\\r\\n<br>\\r\\n<br>\\r\\n<strong><u>Amount :<\\/u><\\/strong> {amount}\\r\\n<br>\\r\\n<br>\\r\\n<strong><u>Payment Options :<\\/u><\\/strong>\\r\\n<br>\\r\\n<br>\\r\\n{payment_options}\\r\\n\\r\\n{comments}\\r\\n<br>\\r\\nIf you have any questions regarding payments, please feel free to email us at: <a href=\\\"mailto:admin@medialinkers.org\\\">admin@medialinkers.org<\\/a> or Call 123-123-1234 <br><br>\\r\\nThank you\\r\\n<br>\\r\\n<br>\\r\\nABC Orgnization\\r\\n<br>\\r\\naddress 1\\r\\n<br>\\r\\naddress2 \\r\\n<br>\\r\\nTampa, FL 33607\\r\\n<br>\\r\\nTel:123-123-1234\"}','2024-06-25 13:30:03'),(49,'paypal_email','sajj@medialinkers.com','2024-06-25 13:30:03'),(50,'authorize_net_login_id','8p77dAV3','2024-06-25 13:30:03'),(51,'authorize_net_trans_id','4B58rq46dM455J7r','2024-06-25 13:30:03'),(52,'authorize_test','Yes','2024-06-25 13:30:03'),(53,'invoice_bcc',NULL,'2024-06-25 13:30:03'),(54,'invoice_cc','[\"admin@medialinkers.org\"]','2024-06-25 13:30:03'),(55,'paypal_test','Yes','2024-06-25 13:30:03'),(56,'negative_keywords','http://,https://,href=,.ru','2024-06-25 13:30:03'),(57,'paypal_live_client_id','live_client_id_123','2024-06-25 13:30:03'),(58,'paypal_live_secret','live_secret_123456','2024-06-25 13:30:03'),(59,'paypal_mode','sandbox','2024-06-25 13:30:03'),(60,'development_ips','127.0.0.1,::1','2024-06-25 13:30:03'),(61,'paypal_sandbox_client_id','sandbox_client_id_123','2024-06-25 13:30:03'),(62,'paypal_sandbox_secret','sandbox_secret_123456','2024-06-25 13:30:03'),(63,'analytics_property_id','422272128','2024-06-25 13:30:03'),(64,'service_account_credentials_json','ml-cms-118491feb0e6.json','2024-06-25 13:30:03'),(65,'is_show_analytics','0','2024-06-25 13:30:03'),(66,'negative_TLDs','.ru','2024-06-25 13:30:03'),(67,'banner_popup_image','7.webp','2024-06-25 13:30:03'),(68,'banner_popup_status','active','2024-06-25 13:30:03'),(69,'openai_api_key','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','0000-00-00 00:00:00'),(70,'enable_ai_assistant','1','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `metadata` 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) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `batch` int NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=92 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_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,'2014_10_12_000000_create_users_table',1),(2,'2014_10_12_100000_create_password_resets_table',1),(3,'2016_06_01_000001_create_oauth_auth_codes_table',2),(4,'2016_06_01_000002_create_oauth_access_tokens_table',2),(5,'2016_06_01_000003_create_oauth_refresh_tokens_table',2),(6,'2016_06_01_000004_create_oauth_clients_table',2),(7,'2016_06_01_000005_create_oauth_personal_access_clients_table',2),(8,'2026_05_07_015112_create_add_goals_table',0),(9,'2026_05_07_015112_create_admin_alerts_table',0),(10,'2026_05_07_015112_create_admin_log_histories_table',0),(11,'2026_05_07_015112_create_admin_modules_table',0),(12,'2026_05_07_015112_create_albums_table',0),(13,'2026_05_07_015112_create_assesment_answers_table',0),(14,'2026_05_07_015112_create_assesment_questions_table',0),(15,'2026_05_07_015112_create_blog_categories_table',0),(16,'2026_05_07_015112_create_blog_comments_table',0),(17,'2026_05_07_015112_create_blog_posts_table',0),(18,'2026_05_07_015112_create_cache_table',0),(19,'2026_05_07_015112_create_cache_locks_table',0),(20,'2026_05_07_015112_create_career_benefits_table',0),(21,'2026_05_07_015112_create_careers_table',0),(22,'2026_05_07_015112_create_categories_table',0),(23,'2026_05_07_015112_create_cities_table',0),(24,'2026_05_07_015112_create_client_package_questions_table',0),(25,'2026_05_07_015112_create_client_packages_table',0),(26,'2026_05_07_015112_create_clients_table',0),(27,'2026_05_07_015112_create_clients_history_table',0),(28,'2026_05_07_015112_create_cms_module_data_images_table',0),(29,'2026_05_07_015112_create_cms_module_datas_table',0),(30,'2026_05_07_015112_create_cms_modules_table',0),(31,'2026_05_07_015112_create_cms_news_table',0),(32,'2026_05_07_015112_create_conditions_table',0),(33,'2026_05_07_015112_create_contact_block_ips_table',0),(34,'2026_05_07_015112_create_contact_lead_histories_table',0),(35,'2026_05_07_015112_create_contact_us_requests_table',0),(36,'2026_05_07_015112_create_contact_uses_table',0),(37,'2026_05_07_015112_create_content_condition_table',0),(38,'2026_05_07_015112_create_counties_table',0),(39,'2026_05_07_015112_create_country_table',0),(40,'2026_05_07_015112_create_email_queue_table',0),(41,'2026_05_07_015112_create_email_templates_table',0),(42,'2026_05_07_015112_create_failed_jobs_table',0),(43,'2026_05_07_015112_create_galleries_table',0),(44,'2026_05_07_015112_create_general_email_templates_table',0),(45,'2026_05_07_015112_create_images_table',0),(46,'2026_05_07_015112_create_inv_billing_settings_table',0),(47,'2026_05_07_015112_create_inv_invoice_payment_options_table',0),(48,'2026_05_07_015112_create_inv_invoices_table',0),(49,'2026_05_07_015112_create_inv_invoices_transactions_table',0),(50,'2026_05_07_015112_create_inv_payment_options_table',0),(51,'2026_05_07_015112_create_job_applications_table',0),(52,'2026_05_07_015112_create_job_batches_table',0),(53,'2026_05_07_015112_create_jobs_table',0),(54,'2026_05_07_015112_create_lead_stat_urls_table',0),(55,'2026_05_07_015112_create_lead_stats_table',0),(56,'2026_05_07_015112_create_mass_mail_queue_table',0),(57,'2026_05_07_015112_create_menu_types_table',0),(58,'2026_05_07_015112_create_menus_table',0),(59,'2026_05_07_015112_create_message_templates_table',0),(60,'2026_05_07_015112_create_metadata_table',0),(61,'2026_05_07_015112_create_module_videos_table',0),(62,'2026_05_07_015112_create_news_table',0),(63,'2026_05_07_015112_create_oauth_access_tokens_table',0),(64,'2026_05_07_015112_create_oauth_auth_codes_table',0),(65,'2026_05_07_015112_create_oauth_clients_table',0),(66,'2026_05_07_015112_create_oauth_personal_access_clients_table',0),(67,'2026_05_07_015112_create_oauth_refresh_tokens_table',0),(68,'2026_05_07_015112_create_package_content_table',0),(69,'2026_05_07_015112_create_package_questions_table',0),(70,'2026_05_07_015112_create_package_requests_table',0),(71,'2026_05_07_015112_create_pages_table',0),(72,'2026_05_07_015112_create_password_reset_tokens_table',0),(73,'2026_05_07_015112_create_password_resets_table',0),(74,'2026_05_07_015112_create_products_table',0),(75,'2026_05_07_015112_create_record_update_history_table',0),(76,'2026_05_07_015112_create_referrer_impression_lead_table',0),(77,'2026_05_07_015112_create_service_extra_images_table',0),(78,'2026_05_07_015112_create_services_table',0),(79,'2026_05_07_015112_create_sessions_table',0),(80,'2026_05_07_015112_create_settings_table',0),(81,'2026_05_07_015112_create_site_map_table',0),(82,'2026_05_07_015112_create_social_media_table',0),(83,'2026_05_07_015112_create_states_table',0),(84,'2026_05_07_015112_create_subscribers_table',0),(85,'2026_05_07_015112_create_templates_table',0),(86,'2026_05_07_015112_create_users_table',0),(87,'2026_05_07_015112_create_videos_table',0),(88,'2026_05_07_015112_create_widgets_table',0),(89,'2026_05_07_015115_add_foreign_keys_to_cities_table',0),(90,'2026_05_07_023927_create_square_settings_table',3),(91,'2026_05_07_054908_add_extra_fields_to_contact_us_requests',4);
/*!40000 ALTER TABLE `migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `module_videos`
--

DROP TABLE IF EXISTS `module_videos`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `module_videos` (
  `id` int NOT NULL AUTO_INCREMENT,
  `video_type` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `video_link_embed_code` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `video_name` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `video_thumb_img` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `module_type` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `module_id` int DEFAULT NULL,
  `module_data_id` int DEFAULT NULL,
  `session_id` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `sort_order` int DEFAULT '9999',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `module_videos`
--

LOCK TABLES `module_videos` WRITE;
/*!40000 ALTER TABLE `module_videos` DISABLE KEYS */;
INSERT INTO `module_videos` VALUES (39,'Youtube','<iframe width=\"100%\" height=\"450\" src=\"https://www.youtube.com/embed/qB0mc5ouRLs\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>',NULL,'about-us.jpg','cms',1,104,NULL,9999,'2025-02-20 05:31:57','2025-02-20 05:31:57',NULL),(43,'Vimeo','<div style=\"padding:56.25% 0 0 0;position:relative;\"><iframe src=\"https://player.vimeo.com/video/1026937707?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media\" style=\"position:absolute;top:0;left:0;width:100%;height:100%;\"></iframe></div><script src=\"https://player.vimeo.com/api/player.js\"></script>',NULL,'1740405673-about-us.jpg','cms',1,104,NULL,9999,'2025-02-24 09:01:13','2025-02-24 09:01:13',NULL),(46,'Youtube','<iframe width=\"100%\" height=\"450\" src=\"https://www.youtube.com/embed/qB0mc5ouRLs\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>',NULL,'page-with-images.jpg','cms',1,228,NULL,9999,'2025-02-24 09:47:11','2025-02-24 09:47:11',NULL),(47,'Vimeo','<div style=\"padding:56.25% 0 0 0;position:relative;\"><iframe src=\"https://player.vimeo.com/video/1026937707?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media\" style=\"position:absolute;top:0;left:0;width:100%;height:100%;\"></iframe></div><script src=\"https://player.vimeo.com/api/player.js\"></script>',NULL,'1740408444-page-with-images.jpg','cms',1,228,NULL,9999,'2025-02-24 09:47:24','2025-02-24 09:47:24',NULL);
/*!40000 ALTER TABLE `module_videos` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `news`
--

DROP TABLE IF EXISTS `news`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `news` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `news_date_time` timestamp NULL DEFAULT NULL,
  `has_registration_link` tinyint(1) DEFAULT '0',
  `registration_link` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `is_hide_event_after_date` tinyint(1) DEFAULT '1',
  `image` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `image_title` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `image_alt` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `location` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `is_featured` tinyint(1) DEFAULT '0',
  `is_third_party_link` tinyint(1) DEFAULT '0',
  `news_link` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `status` tinyint(1) DEFAULT '1',
  `sort_order` int DEFAULT '999',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `news`
--

LOCK TABLES `news` WRITE;
/*!40000 ALTER TABLE `news` DISABLE KEYS */;
INSERT INTO `news` VALUES (2,'Medialinkers Official Dinner','<p>The Monal Restaurant Pir Sohawa situated at the Margallah hills offers indoor &amp; outdoor dining with an extensive view of the Capital. Monal Islamabad is a perfect blend of traditional &amp; contemporary cuisine.</p>\r\n<p>It offers a vitalizing experience in fine-dining that attracts locals and tourists alike. Monal Islamabad is the flagship restaurant of The Monal Group of Companies. Since 2006, Monal Islamabad is serving its guests with the best fine dining experiences.</p>','2022-10-01 14:00:00',0,NULL,0,'medialinkers-official-dinner.webp','Monal Islamabad is a perfect blend of traditional & contemporary cuisine','Monal Islamabad is a perfect blend of traditional & contemporary cuisine','Monal Restaurant Pir Sohawa',1,1,'https://monal.themonal.com/',1,1,'2022-10-18 00:44:59','2024-11-04 04:57:16',NULL),(3,'Medialinkers Official Upcoming Tour To Swat','<p>Medialinkers Official Upcoming Tour To Swat</p>','2023-05-01 04:00:00',0,NULL,1,'medialinkers-official-upcoming-tour-to-swat.webp','Swat District is a district in the Malakand Division of Khyber Pakhtunkhwa, Pakistan.','Swat District is a district in the Malakand Division of Khyber Pakhtunkhwa, Pakistan.','Swat',1,1,'https://en.wikipedia.org/wiki/Swat_District',1,2,'2022-10-17 07:11:17','2023-12-04 16:31:13',NULL);
/*!40000 ALTER TABLE `news` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oauth_access_tokens`
--

DROP TABLE IF EXISTS `oauth_access_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `oauth_access_tokens` (
  `id` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `client_id` bigint unsigned NOT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `scopes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `revoked` tinyint(1) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `expires_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_access_tokens`
--

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

--
-- Table structure for table `oauth_auth_codes`
--

DROP TABLE IF EXISTS `oauth_auth_codes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `oauth_auth_codes` (
  `id` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `user_id` bigint unsigned NOT NULL,
  `client_id` bigint unsigned NOT NULL,
  `scopes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `revoked` tinyint(1) NOT NULL,
  `expires_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_auth_codes`
--

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

--
-- Table structure for table `oauth_clients`
--

DROP TABLE IF EXISTS `oauth_clients`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `oauth_clients` (
  `id` bigint unsigned NOT NULL,
  `user_id` bigint unsigned DEFAULT NULL,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `secret` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `redirect` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `personal_access_client` tinyint(1) NOT NULL,
  `password_client` tinyint(1) NOT NULL,
  `revoked` tinyint(1) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_clients`
--

LOCK TABLES `oauth_clients` WRITE;
/*!40000 ALTER TABLE `oauth_clients` DISABLE KEYS */;
INSERT INTO `oauth_clients` VALUES (1,NULL,'Laravel Personal Access Client','rLApBY9YeEAHh1EScU2fLac1bXrfwrUukVRDC8oz','http://localhost',1,0,0,'2020-03-05 06:18:16','2020-03-05 06:18:16'),(2,NULL,'Laravel Password Grant Client','lLa6WGx6Q6jxqW81mpGh3FZhd22mqzIuHWDCbn8E','http://localhost',0,1,0,'2020-03-05 06:18:16','2020-03-05 06:18:16');
/*!40000 ALTER TABLE `oauth_clients` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oauth_personal_access_clients`
--

DROP TABLE IF EXISTS `oauth_personal_access_clients`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `oauth_personal_access_clients` (
  `id` bigint unsigned NOT NULL,
  `client_id` bigint unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_personal_access_clients`
--

LOCK TABLES `oauth_personal_access_clients` WRITE;
/*!40000 ALTER TABLE `oauth_personal_access_clients` DISABLE KEYS */;
INSERT INTO `oauth_personal_access_clients` VALUES (1,1,'2020-03-05 06:18:16','2020-03-05 06:18:16');
/*!40000 ALTER TABLE `oauth_personal_access_clients` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oauth_refresh_tokens`
--

DROP TABLE IF EXISTS `oauth_refresh_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `oauth_refresh_tokens` (
  `id` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `access_token_id` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `revoked` tinyint(1) NOT NULL,
  `expires_at` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_refresh_tokens`
--

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

--
-- Table structure for table `package_content`
--

DROP TABLE IF EXISTS `package_content`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `package_content` (
  `id` int NOT NULL AUTO_INCREMENT,
  `package_id` int NOT NULL,
  `type_content` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `image` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `video` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `document` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `package_content`
--

LOCK TABLES `package_content` WRITE;
/*!40000 ALTER TABLE `package_content` DISABLE KEYS */;
INSERT INTO `package_content` VALUES (11,177,'image','environment-earth-day-hands-trees-growing-seedlings-bokeh-green-background-female-hand-holding-tree-nature-field-gra-130247647.webp',NULL,NULL,NULL,'2022-07-15 18:06:12','2022-07-15 18:06:12'),(12,176,'document',NULL,NULL,NULL,'sample.pdf','2022-07-15 18:18:37','2022-07-15 18:18:37'),(15,176,'image',NULL,NULL,NULL,NULL,'2022-08-18 12:55:57','2022-08-18 12:55:57'),(16,176,'content',NULL,'3 weekly Confidence calls, Self-Care $24.99&nbsp;',NULL,NULL,'2022-09-06 05:34:15','2022-09-06 05:34:15'),(17,177,'content',NULL,'3 weekly Confidence Calls, Self-Care &amp; choice between bi-monthly Real Advice sessions or bi-monthly MasterMinds sessions $74.99',NULL,NULL,'2022-09-06 05:35:54','2022-09-06 05:35:54'),(18,213,'content',NULL,'2 weekly Confidence calls, real advice, Masterminds bi-weekly Hold Me Accountable sessions $135.99',NULL,NULL,'2022-09-06 05:36:18','2022-09-06 05:36:18'),(20,214,'video',NULL,NULL,NULL,NULL,'2022-09-30 07:04:14','2022-09-30 07:04:14'),(39,248,'image','packages.webp',NULL,NULL,NULL,'2023-12-04 16:07:20','2023-12-04 16:07:20'),(40,248,'content',NULL,'<p>bbb</p>',NULL,NULL,'2023-12-04 16:07:47','2023-12-04 16:07:47');
/*!40000 ALTER TABLE `package_content` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `package_questions`
--

DROP TABLE IF EXISTS `package_questions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `package_questions` (
  `id` int NOT NULL AUTO_INCREMENT,
  `question` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `package_id` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `pattern` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `value` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `item_order` int DEFAULT NULL,
  `sts` tinyint(1) DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=76 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `package_questions`
--

LOCK TABLES `package_questions` WRITE;
/*!40000 ALTER TABLE `package_questions` DISABLE KEYS */;
INSERT INTO `package_questions` VALUES (68,'Do you want to conceal the a/v wires ?','213','check','[\"Good\",\"Better\",\"Nice\"]',1,1),(69,'what is servive provider?','213','input','input',NULL,0),(70,'What issues are you facing in life?','213','radio','[\"Yes\",\"No\"]',NULL,0),(71,'what is servive provider?','176','radio','[\"Yes\",\"No\"]',NULL,1),(72,'What issues are you facing in life?','176','check','[\"Good\",\"Better\",\"Nice\"]',NULL,1),(73,'What speed are you paying for?','176','input','input',NULL,1),(74,'Is It Good ?','177','radio','[\"Yes\",\"No\"]',NULL,0),(75,'Which Functionality Those are Have ?','177','check','[\"Nice\",\"Good\",\"Better\"]',NULL,1);
/*!40000 ALTER TABLE `package_questions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `package_requests`
--

DROP TABLE IF EXISTS `package_requests`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `package_requests` (
  `id` int NOT NULL AUTO_INCREMENT,
  `package` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `first_name` varchar(75) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `last_name` varchar(75) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `email` varchar(75) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `phone` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `website` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `comments` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `ip` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `package_requests`
--

LOCK TABLES `package_requests` WRITE;
/*!40000 ALTER TABLE `package_requests` DISABLE KEYS */;
/*!40000 ALTER TABLE `package_requests` 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` int NOT NULL AUTO_INCREMENT,
  `keyWords` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `url` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_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,'Block Traffic, Security Settinga, Restrict Traffic Based on Countries, Website Block, Block Countries, restriction','settings/restriction'),(2,'ContactUs Captcha, Security Settings, Google reCAPTCHA, CAPTCHA, Spam, reCAPTCHA SITE KEY, reCAPTCHA SECRET KEY, ON/OFF reCaptcha','settings/captcha'),(3,'Disable Website, Security Settings, Disable Status, ','settings/disable-website'),(4,'Admin Users Logs, Security Settings, Log, Admin User, Activity','user/admin_log'),(5,'Security Settings, Manage Admin Users, Admin User, User, Admin','user/admin'),(6,'Site Settings, General Settings, Time Zone, Date Display Format, Date Time, Date Time Display Format, Maximum allowed size for Image in MBs, TIme, Date, ','settings/basic'),(7,'Event Dates, Dates, Settings','settings/dates'),(8,'General Settings, Google Analytics, Analytics','settings/analytics'),(9,'General Settings, Google Adsense, Adsense code, Adsense','settings/adsense'),(10,'Email Management, Email, Bulk Emails, ','email_templates'),(11,'File Manager, Files, Images, Manage Files','media'),(12,'Manage Blog, Blog, Post, Blogging, News, Latest, ','blog'),(13,'Social Media Accounts, Manage Social Media, Social Media, Media, Facebook, twitter, instagram, youtube, pinterest, ','social_media'),(14,'Gallery, Images,','gallery'),(16,'Contact Us, Contact Us Lead, Contact Us Form, Submitted Forms, Form','contact_request'),(17,'Widgets Management, Widgets, All Widgets','widgets'),(18,'Manage Contact Page, Contact Us, Office Address, Contact email, To Email, CC Email, BCC Email, Google Map,  ','manage_contact'),(19,'Positioning Navigations, Navigations, Menu, Menu Settings, ','menus?position=top'),(20,'Manage Pages, Pages, ','module/cms/'),(21,'Dashboard, Latest News, ','/');
/*!40000 ALTER TABLE `pages` 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(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `token` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_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 `password_resets`
--

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

--
-- Dumping data for table `password_resets`
--

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

--
-- Table structure for table `products`
--

DROP TABLE IF EXISTS `products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `products` (
  `id` int NOT NULL AUTO_INCREMENT,
  `product_name` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `product_slug` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `product_description` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `price` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `discount` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `product_img` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `product_img_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `product_img_alt` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `dated` datetime NOT NULL,
  `meta_title` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `meta_keywords` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `meta_description` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `canonical_url` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `item_order` int DEFAULT '99999',
  `sell_status` int DEFAULT '1',
  `sts` tinyint(1) DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `products`
--

LOCK TABLES `products` WRITE;
/*!40000 ALTER TABLE `products` DISABLE KEYS */;
INSERT INTO `products` VALUES (8,'The 100 Book','the-100-book','As a member, you can promote who you are, what you do and how you do it through Video, Live Stream and Radio. Choose a category. You have multiple choices. Find who/what you want and watch them work. Create, Relate and Collaborate from start to finish.As a member, you can promote who you are, what you do and how you do it through Video, Live Stream and Radio. Choose a category. You have multiple choices. Find who/what you want and watch them work. Create, Relate and Collaborate from start to finish.','50','','',NULL,NULL,'2016-03-30 11:36:41','The 100 Book','The 100 Book','The 100 Book',NULL,5,0,0);
/*!40000 ALTER TABLE `products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `record_update_history`
--

DROP TABLE IF EXISTS `record_update_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `record_update_history` (
  `id` int NOT NULL AUTO_INCREMENT,
  `record_id` int DEFAULT '0',
  `record_title` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `record_link` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `model_or_table` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `admin_id` int DEFAULT '0',
  `ip` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `draft` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=166 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `record_update_history`
--

LOCK TABLES `record_update_history` WRITE;
/*!40000 ALTER TABLE `record_update_history` DISABLE KEYS */;
INSERT INTO `record_update_history` VALUES (1,261,'Manage Pages - Google Calendar','http://localhost/mlcms/site_files/public/adminmedia/module/cms/edit/261','CmsModuleData',1,'::1','{\"id\":261,\"heading\":\"Google Calendar\",\"content\":\"<p>Google Calendar<\\/p>\",\"post_slug\":\"google-calendar\",\"sts\":1,\"dated\":\"2024-02-06 14:44:31\",\"featured_img\":\"\",\"featured_img_title\":\"Google Calendar\",\"featured_img_alt\":\"Google Calendar\",\"additional_field_1\":null,\"additional_field_2\":null,\"additional_field_3\":null,\"additional_field_4\":null,\"additional_field_5\":null,\"additional_field_6\":null,\"additional_field_7\":null,\"additional_field_8\":null,\"item_order\":0,\"meta_title\":\"Google Calendar\",\"meta_keywords\":\"Google Calendar\",\"meta_description\":\"Google Calendar\",\"canonical_url\":null,\"menu_location\":\"2\",\"preference_order\":null,\"is_pages\":1,\"permanent_page\":\"0\",\"content_type\":\"page\",\"belongs_to_module_id\":0,\"cms_module_id\":1,\"show_follow\":\"1\",\"show_index\":\"1\",\"cat_id\":null,\"is_featured\":0}','2024-11-13 02:39:15','2024-11-13 02:39:15',NULL),(2,272,'Gallery','http://localhost/mlcms/site_files/public/adminmedia/menus/272/edit','Menu',1,'::1','{\"id\":272,\"menu_id\":0,\"menu_label\":\"Gallery\",\"menu_url\":\"gallery\",\"menu_types\":1,\"parent_id\":0,\"menu_sort_order\":1,\"open_in_new_window\":null,\"show_no_follow\":null,\"status\":\"Y\",\"is_external_link\":\"N\"}','2024-11-13 02:39:43','2024-11-13 02:39:43',NULL),(3,325,'About Us','http://localhost/mlcms/site_files/public/adminmedia/menus/325/edit','Menu',1,'::1','{\"id\":325,\"menu_id\":104,\"menu_label\":\"About Us\",\"menu_url\":\"about-us\",\"menu_types\":1,\"parent_id\":0,\"menu_sort_order\":2,\"open_in_new_window\":null,\"show_no_follow\":null,\"status\":\"Y\",\"is_external_link\":\"N\"}','2024-11-13 02:39:43','2024-11-13 02:39:43',NULL),(4,268,'News & Alerts','http://localhost/mlcms/site_files/public/adminmedia/menus/268/edit','Menu',1,'::1','{\"id\":268,\"menu_id\":0,\"menu_label\":\"News & Alerts\",\"menu_url\":\"news\",\"menu_types\":1,\"parent_id\":0,\"menu_sort_order\":3,\"open_in_new_window\":null,\"show_no_follow\":null,\"status\":\"Y\",\"is_external_link\":\"N\"}','2024-11-13 02:39:43','2024-11-13 02:39:43',NULL),(5,279,'Services','http://localhost/mlcms/site_files/public/adminmedia/menus/279/edit','Menu',1,'::1','{\"id\":279,\"menu_id\":0,\"menu_label\":\"Services\",\"menu_url\":\"services\",\"menu_types\":1,\"parent_id\":0,\"menu_sort_order\":4,\"open_in_new_window\":null,\"show_no_follow\":null,\"status\":\"Y\",\"is_external_link\":\"N\"}','2024-11-13 02:39:43','2024-11-13 02:39:43',NULL),(6,256,'Blog','http://localhost/mlcms/site_files/public/adminmedia/menus/256/edit','Menu',1,'::1','{\"id\":256,\"menu_id\":0,\"menu_label\":\"Blog\",\"menu_url\":\"blog\",\"menu_types\":1,\"parent_id\":0,\"menu_sort_order\":5,\"open_in_new_window\":null,\"show_no_follow\":\"1\",\"status\":\"Y\",\"is_external_link\":\"N\"}','2024-11-13 02:39:43','2024-11-13 02:39:43',NULL),(7,312,'Contact Us','http://localhost/mlcms/site_files/public/adminmedia/menus/312/edit','Menu',1,'::1','{\"id\":312,\"menu_id\":118,\"menu_label\":\"Contact Us\",\"menu_url\":\"contact-us\",\"menu_types\":1,\"parent_id\":0,\"menu_sort_order\":6,\"open_in_new_window\":null,\"show_no_follow\":null,\"status\":\"Y\",\"is_external_link\":\"N\"}','2024-11-13 02:39:43','2024-11-13 02:39:43',NULL),(8,325,'About Us','http://localhost/mlcms/site_files/public/adminmedia/menus/325/edit','Menu',1,'::1','{\"id\":325,\"menu_id\":104,\"menu_label\":\"About Us\",\"menu_url\":\"about-us\",\"menu_types\":1,\"parent_id\":0,\"menu_sort_order\":1,\"open_in_new_window\":null,\"show_no_follow\":null,\"status\":\"Y\",\"is_external_link\":\"N\"}','2024-11-13 02:39:59','2024-11-13 02:39:59',NULL),(9,272,'Gallery','http://localhost/mlcms/site_files/public/adminmedia/menus/272/edit','Menu',1,'::1','{\"id\":272,\"menu_id\":0,\"menu_label\":\"Gallery\",\"menu_url\":\"gallery\",\"menu_types\":1,\"parent_id\":0,\"menu_sort_order\":2,\"open_in_new_window\":null,\"show_no_follow\":null,\"status\":\"Y\",\"is_external_link\":\"N\"}','2024-11-13 02:40:00','2024-11-13 02:40:00',NULL),(10,268,'News & Alerts','http://localhost/mlcms/site_files/public/adminmedia/menus/268/edit','Menu',1,'::1','{\"id\":268,\"menu_id\":0,\"menu_label\":\"News & Alerts\",\"menu_url\":\"news\",\"menu_types\":1,\"parent_id\":0,\"menu_sort_order\":3,\"open_in_new_window\":null,\"show_no_follow\":null,\"status\":\"Y\",\"is_external_link\":\"N\"}','2024-11-13 02:40:00','2024-11-13 02:40:00',NULL),(11,279,'Services','http://localhost/mlcms/site_files/public/adminmedia/menus/279/edit','Menu',1,'::1','{\"id\":279,\"menu_id\":0,\"menu_label\":\"Services\",\"menu_url\":\"services\",\"menu_types\":1,\"parent_id\":0,\"menu_sort_order\":4,\"open_in_new_window\":null,\"show_no_follow\":null,\"status\":\"Y\",\"is_external_link\":\"N\"}','2024-11-13 02:40:00','2024-11-13 02:40:00',NULL),(12,256,'Blog','http://localhost/mlcms/site_files/public/adminmedia/menus/256/edit','Menu',1,'::1','{\"id\":256,\"menu_id\":0,\"menu_label\":\"Blog\",\"menu_url\":\"blog\",\"menu_types\":1,\"parent_id\":0,\"menu_sort_order\":5,\"open_in_new_window\":null,\"show_no_follow\":\"1\",\"status\":\"Y\",\"is_external_link\":\"N\"}','2024-11-13 02:40:00','2024-11-13 02:40:00',NULL),(13,312,'Contact Us','http://localhost/mlcms/site_files/public/adminmedia/menus/312/edit','Menu',1,'::1','{\"id\":312,\"menu_id\":118,\"menu_label\":\"Contact Us\",\"menu_url\":\"contact-us\",\"menu_types\":1,\"parent_id\":0,\"menu_sort_order\":6,\"open_in_new_window\":null,\"show_no_follow\":null,\"status\":\"Y\",\"is_external_link\":\"N\"}','2024-11-13 02:40:00','2024-11-13 02:40:00',NULL),(14,1,'Home1','http://localhost/mlcms/site_files/public/adminmedia/site-map/1/edit','SiteMap',1,'::1','{\"id\":1,\"parent_id\":\"0\",\"title\":\"Home1\",\"link\":\"\\/\",\"is_link_internal\":\"1\",\"status\":\"1\",\"sort_order\":\"1\",\"created_at\":\"2024-11-09T07:37:57.000000Z\",\"updated_at\":\"2024-11-13T07:40:27.000000Z\",\"deleted_at\":null}','2024-11-13 02:40:28','2024-11-13 02:40:28',NULL),(15,1,'Home','http://localhost/mlcms/site_files/public/adminmedia/site-map/1/edit','SiteMap',1,'::1','{\"id\":1,\"parent_id\":\"0\",\"title\":\"Home\",\"link\":\"\\/\",\"is_link_internal\":\"1\",\"status\":\"1\",\"sort_order\":\"1\",\"created_at\":\"2024-11-09T07:37:57.000000Z\",\"updated_at\":\"2024-11-13T07:40:38.000000Z\",\"deleted_at\":null}','2024-11-13 02:40:38','2024-11-13 02:40:38',NULL),(16,264,'Manage Pages - Test Catering','http://localhost/mlcms/site_files/public/adminmedia/module/cms/edit/264','CmsModuleData',1,'::1','{\"heading\":\"Test Catering\",\"post_slug\":\"test-catering\",\"content\":\"<p>bbbbbbbbbbbbb<\\/p>\",\"additional_field_1\":null,\"additional_field_2\":null,\"additional_field_3\":null,\"additional_field_4\":null,\"additional_field_5\":null,\"additional_field_6\":null,\"additional_field_7\":null,\"additional_field_8\":null,\"cms_module_id\":\"1\",\"cat_id\":null,\"is_pages\":1,\"show_follow\":\"1\",\"show_index\":\"1\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"canonical_url\":null,\"dated\":\"2024-12-16 10:29:24\",\"featured_img\":\"tips-for-creating-a-cozy-atmosphere-in-your-salon-suite.webp\",\"featured_img_title\":null,\"featured_img_alt\":null,\"id\":264}','2024-12-16 05:29:24','2024-12-16 05:29:24',NULL),(17,264,'Manage Pages - Test Catering','http://localhost/mlcms/site_files/public/adminmedia/module/cms/edit/264','CmsModuleData',1,'::1','{\"id\":264,\"heading\":\"Test Catering\",\"content\":\"<p>bbbbbbbbbbbbb<\\/p>\",\"post_slug\":\"test-catering\",\"sts\":1,\"dated\":\"2024-12-16 10:29:24\",\"featured_img\":\"tips-for-creating-a-cozy-atmosphere-in-your-salon-suite.webp\",\"featured_img_title\":null,\"featured_img_alt\":null,\"additional_field_1\":null,\"additional_field_2\":null,\"additional_field_3\":null,\"additional_field_4\":null,\"additional_field_5\":null,\"additional_field_6\":null,\"additional_field_7\":null,\"additional_field_8\":null,\"item_order\":0,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"canonical_url\":null,\"menu_location\":\"\",\"preference_order\":null,\"is_pages\":1,\"permanent_page\":\"0\",\"content_type\":\"page\",\"belongs_to_module_id\":0,\"cms_module_id\":1,\"show_follow\":\"1\",\"show_index\":\"1\",\"cat_id\":null,\"is_featured\":0}','2024-12-16 05:33:56','2024-12-16 05:33:56',NULL),(18,264,'Manage Pages - Test Catering','http://localhost/mlcms/site_files/public/adminmedia/module/cms/edit/264','CmsModuleData',1,'::1','{\"id\":264,\"heading\":\"Test Catering\",\"content\":\"<p>bbbbbbbbbbbbb<\\/p>\",\"post_slug\":\"test-catering\",\"sts\":1,\"dated\":\"2024-12-16 10:29:24\",\"featured_img\":\"tips-for-creating-a-cozy-atmosphere-in-your-salon-suite.webp\",\"featured_img_title\":null,\"featured_img_alt\":null,\"additional_field_1\":null,\"additional_field_2\":null,\"additional_field_3\":null,\"additional_field_4\":null,\"additional_field_5\":null,\"additional_field_6\":null,\"additional_field_7\":null,\"additional_field_8\":null,\"item_order\":0,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"canonical_url\":null,\"menu_location\":\"\",\"preference_order\":null,\"is_pages\":1,\"permanent_page\":\"0\",\"content_type\":\"page\",\"belongs_to_module_id\":0,\"cms_module_id\":1,\"show_follow\":\"1\",\"show_index\":\"1\",\"cat_id\":null,\"is_featured\":0}','2024-12-16 05:55:46','2024-12-16 05:55:46',NULL),(19,264,'Manage Pages - Test Catering','http://localhost/mlcms/site_files/public/adminmedia/module/cms/edit/264','CmsModuleData',1,'::1','{\"id\":264,\"heading\":\"Test Catering\",\"content\":\"<p>bbbbbbbbbbbbb<\\/p>\",\"post_slug\":\"test-catering\",\"sts\":1,\"dated\":\"2024-12-16 10:29:24\",\"featured_img\":\"tips-for-creating-a-cozy-atmosphere-in-your-salon-suite.webp\",\"featured_img_title\":null,\"featured_img_alt\":null,\"additional_field_1\":null,\"additional_field_2\":null,\"additional_field_3\":null,\"additional_field_4\":null,\"additional_field_5\":null,\"additional_field_6\":null,\"additional_field_7\":null,\"additional_field_8\":null,\"item_order\":0,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"canonical_url\":null,\"menu_location\":\"\",\"preference_order\":null,\"is_pages\":1,\"permanent_page\":\"0\",\"content_type\":\"page\",\"belongs_to_module_id\":0,\"cms_module_id\":1,\"show_follow\":\"1\",\"show_index\":\"1\",\"cat_id\":null,\"is_featured\":0}','2024-12-16 06:19:47','2024-12-16 06:19:47',NULL),(20,264,'Manage Pages - Test Catering','http://localhost/mlcms/site_files/public/adminmedia/module/cms/edit/264','CmsModuleData',1,'::1','{\"id\":264,\"heading\":\"Test Catering\",\"content\":\"<p>bbbbbbbbbbbbb<\\/p>\",\"post_slug\":\"test-catering\",\"sts\":1,\"dated\":\"2024-12-16 10:29:24\",\"featured_img\":\"popcorn-lady-cotton-candy-featured-at-andrettis.webp\",\"featured_img_title\":null,\"featured_img_alt\":null,\"additional_field_1\":null,\"additional_field_2\":null,\"additional_field_3\":null,\"additional_field_4\":null,\"additional_field_5\":null,\"additional_field_6\":null,\"additional_field_7\":null,\"additional_field_8\":null,\"item_order\":0,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"canonical_url\":null,\"menu_location\":\"\",\"preference_order\":null,\"is_pages\":1,\"permanent_page\":\"0\",\"content_type\":\"page\",\"belongs_to_module_id\":0,\"cms_module_id\":1,\"show_follow\":\"1\",\"show_index\":\"1\",\"cat_id\":null,\"is_featured\":0}','2024-12-16 06:20:52','2024-12-16 06:20:52',NULL),(21,264,'Manage Pages - Test Catering','http://localhost/mlcms/site_files/public/adminmedia/module/cms/edit/264','CmsModuleData',1,'::1','{\"id\":264,\"heading\":\"Test Catering\",\"content\":\"<p>bbbbbbbbbbbbb<\\/p>\",\"post_slug\":\"test-catering\",\"sts\":1,\"dated\":\"2024-12-16 10:29:24\",\"featured_img\":\"\",\"featured_img_title\":null,\"featured_img_alt\":null,\"additional_field_1\":null,\"additional_field_2\":null,\"additional_field_3\":null,\"additional_field_4\":null,\"additional_field_5\":null,\"additional_field_6\":null,\"additional_field_7\":null,\"additional_field_8\":null,\"item_order\":0,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"canonical_url\":null,\"menu_location\":\"\",\"preference_order\":null,\"is_pages\":1,\"permanent_page\":\"0\",\"content_type\":\"page\",\"belongs_to_module_id\":0,\"cms_module_id\":1,\"show_follow\":\"1\",\"show_index\":\"1\",\"cat_id\":null,\"is_featured\":0}','2024-12-16 06:24:31','2024-12-16 06:24:31',NULL),(22,264,'Manage Pages - Test Catering','http://localhost/mlcms/site_files/public/adminmedia/module/cms/edit/264','CmsModuleData',1,'::1','{\"id\":264,\"heading\":\"Test Catering\",\"content\":\"<p>bbbbbbbbbbbbb<\\/p>\",\"post_slug\":\"test-catering\",\"sts\":1,\"dated\":\"2024-12-16 10:29:24\",\"featured_img\":\"\",\"featured_img_title\":null,\"featured_img_alt\":null,\"additional_field_1\":null,\"additional_field_2\":null,\"additional_field_3\":null,\"additional_field_4\":null,\"additional_field_5\":null,\"additional_field_6\":null,\"additional_field_7\":null,\"additional_field_8\":null,\"item_order\":0,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"canonical_url\":null,\"menu_location\":\"\",\"preference_order\":null,\"is_pages\":1,\"permanent_page\":\"0\",\"content_type\":\"page\",\"belongs_to_module_id\":0,\"cms_module_id\":1,\"show_follow\":\"1\",\"show_index\":\"1\",\"cat_id\":null,\"is_featured\":0}','2024-12-16 06:38:44','2024-12-16 06:38:44',NULL),(23,14,'The 100 Book-1','http://localhost/mlcms/site_files/public/adminmedia/products/14/edit','Product',1,'::1','{\"product_name\":\"The 100 Book-1\",\"product_slug\":\"the-100-book-1\",\"product_description\":\"test\",\"price\":\"10\",\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"canonical_url\":null,\"product_img_title\":null,\"product_img_alt\":null,\"dated\":\"2024-12-23 17:20:28\",\"id\":14}','2024-12-23 12:20:28','2024-12-23 12:20:28',NULL),(24,2,'Case Studies Testing','http://localhost/mlcms/site_files/public/adminmedia/blog/2/edit','BlogPost',1,'::1','{\"id\":2,\"author_id\":1,\"cate_ids\":\"3\",\"title\":\"Case Studies Testing\",\"post_slug\":\"case-studies-testing\",\"description\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Natus ducimus esse iusto temporibus suscipit dolorem fugit. Libero quia, est soluta culpa facilis aperiam et vero rerum natus repellendus vel pariatur. dtdfdf<\\/p>\",\"featured_img\":\"1.webp\",\"featured_img_title\":null,\"featured_img_alt\":null,\"meta_title\":\"Case Studies\",\"meta_keywords\":\"News  Meta Keywords\",\"meta_description\":\"News  Meta Description\",\"sts\":1,\"count_comments\":0,\"dated\":\"2023-07-22\",\"canonical_url\":null}','2024-12-23 14:11:51','2024-12-23 14:11:51',NULL),(25,8,'The 100 Book','http://localhost/mlcms/site_files/public/adminmedia/products/8/edit','Product',1,'::1','{\"id\":8,\"product_name\":\"The 100 Book\",\"product_slug\":\"the-100-book\",\"product_description\":\"As a member, you can promote who you are, what you do and how you do it through Video, Live Stream and Radio. Choose a category. You have multiple choices. Find who\\/what you want and watch them work. Create, Relate and Collaborate from start to finish.As a member, you can promote who you are, what you do and how you do it through Video, Live Stream and Radio. Choose a category. You have multiple choices. Find who\\/what you want and watch them work. Create, Relate and Collaborate from start to finish.\",\"price\":\"50\",\"discount\":\"\",\"product_img\":\"\",\"product_img_title\":null,\"product_img_alt\":null,\"dated\":\"2016-03-30 11:36:41\",\"meta_title\":\"The 100 Book\",\"meta_keywords\":\"The 100 Book\",\"meta_description\":\"The 100 Book\",\"canonical_url\":null,\"item_order\":5,\"sell_status\":0,\"sts\":0}','2024-12-23 14:12:25','2024-12-23 14:12:25',NULL),(26,261,'Manage Pages - Google Calendar','http://localhost/mlcms/site_files/public/adminmedia/module/cms/edit/261','CmsModuleData',1,'::1','{\"id\":261,\"heading\":\"Google Calendar\",\"content\":\"<p>Google Calendar<\\/p>\",\"post_slug\":\"google-calendar\",\"sts\":1,\"dated\":\"2024-02-06 14:44:31\",\"featured_img\":\"\",\"featured_img_title\":\"Google Calendar\",\"featured_img_alt\":\"Google Calendar\",\"additional_field_1\":null,\"additional_field_2\":null,\"additional_field_3\":null,\"additional_field_4\":null,\"additional_field_5\":null,\"additional_field_6\":null,\"additional_field_7\":null,\"additional_field_8\":null,\"item_order\":0,\"meta_title\":\"Google Calendar\",\"meta_keywords\":\"Google Calendar\",\"meta_description\":\"Google Calendar\",\"canonical_url\":null,\"menu_location\":\"2\",\"preference_order\":null,\"is_pages\":1,\"permanent_page\":\"0\",\"content_type\":\"page\",\"belongs_to_module_id\":0,\"cms_module_id\":1,\"show_follow\":\"1\",\"show_index\":\"1\",\"cat_id\":null,\"is_featured\":0}','2024-12-23 14:15:04','2024-12-23 14:15:04',NULL),(27,265,'Manage Pages - News','http://localhost/mlcms/site_files/public/adminmedia/module/cms/edit/265','CmsModuleData',1,'::1','{\"heading\":\"News\",\"post_slug\":\"news\",\"content\":\"<p>News<\\/p>\",\"additional_field_1\":null,\"additional_field_2\":null,\"additional_field_3\":null,\"additional_field_4\":null,\"additional_field_5\":null,\"additional_field_6\":null,\"additional_field_7\":null,\"additional_field_8\":null,\"cms_module_id\":\"1\",\"cat_id\":null,\"is_pages\":1,\"show_follow\":\"1\",\"show_index\":\"1\",\"meta_title\":\"News\",\"meta_keywords\":\"News\",\"meta_description\":\"News\",\"canonical_url\":null,\"dated\":\"2024-12-24 03:58:04\",\"featured_img_title\":null,\"featured_img_alt\":null,\"id\":265}','2024-12-23 22:58:04','2024-12-23 22:58:04',NULL),(28,265,'Manage Pages - News','http://localhost/mlcms/site_files/public/adminmedia/module/cms/edit/265','CmsModuleData',1,'::1','{\"id\":265,\"heading\":\"News\",\"content\":\"<p>News<\\/p>\",\"post_slug\":\"news\",\"sts\":1,\"dated\":\"2024-12-24 03:58:04\",\"featured_img\":\"\",\"featured_img_title\":null,\"featured_img_alt\":null,\"additional_field_1\":null,\"additional_field_2\":null,\"additional_field_3\":null,\"additional_field_4\":null,\"additional_field_5\":null,\"additional_field_6\":null,\"additional_field_7\":null,\"additional_field_8\":null,\"item_order\":0,\"meta_title\":\"News\",\"meta_keywords\":\"News\",\"meta_description\":\"News\",\"canonical_url\":null,\"menu_location\":\"\",\"preference_order\":null,\"is_pages\":1,\"permanent_page\":\"0\",\"content_type\":\"page\",\"belongs_to_module_id\":0,\"cms_module_id\":1,\"show_follow\":\"1\",\"show_index\":\"1\",\"cat_id\":null,\"is_featured\":0}','2024-12-23 23:12:02','2024-12-23 23:12:02',NULL),(29,266,'Manage Pages - Services','http://localhost/mlcms/site_files/public/adminmedia/module/cms/edit/266','CmsModuleData',1,'::1','{\"heading\":\"Services\",\"post_slug\":\"services\",\"content\":\"<p>Services<\\/p>\",\"additional_field_1\":null,\"additional_field_2\":null,\"additional_field_3\":null,\"additional_field_4\":null,\"additional_field_5\":null,\"additional_field_6\":null,\"additional_field_7\":null,\"additional_field_8\":null,\"cms_module_id\":\"1\",\"cat_id\":null,\"is_pages\":1,\"show_follow\":\"1\",\"show_index\":\"1\",\"meta_title\":\"Services\",\"meta_keywords\":\"Services\",\"meta_description\":\"Services\",\"canonical_url\":null,\"dated\":\"2024-12-24 04:26:53\",\"featured_img_title\":null,\"featured_img_alt\":null,\"id\":266}','2024-12-23 23:26:53','2024-12-23 23:26:53',NULL),(30,267,'Manage Pages - Blog','http://localhost/mlcms/site_files/public/adminmedia/module/cms/edit/267','CmsModuleData',1,'::1','{\"heading\":\"Blog\",\"post_slug\":\"blog\",\"content\":\"<p>Blog<\\/p>\",\"additional_field_1\":null,\"additional_field_2\":null,\"additional_field_3\":null,\"additional_field_4\":null,\"additional_field_5\":null,\"additional_field_6\":null,\"additional_field_7\":null,\"additional_field_8\":null,\"cms_module_id\":\"1\",\"cat_id\":null,\"is_pages\":1,\"show_follow\":\"1\",\"show_index\":\"1\",\"meta_title\":\"Blog\",\"meta_keywords\":\"Blog\",\"meta_description\":\"Blog\",\"canonical_url\":null,\"dated\":\"2024-12-24 04:27:51\",\"featured_img_title\":null,\"featured_img_alt\":null,\"id\":267}','2024-12-23 23:27:51','2024-12-23 23:27:51',NULL),(31,118,'Manage Pages - Contact Us','http://localhost/mlcms/site_files/public/adminmedia/module/cms/edit/118','CmsModuleData',1,'::1','{\"id\":118,\"heading\":\"Contact Us\",\"content\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries.<\\/p>\",\"post_slug\":\"contact-us\",\"sts\":1,\"dated\":\"2019-05-17 07:17:41\",\"featured_img\":\"\",\"featured_img_title\":null,\"featured_img_alt\":null,\"additional_field_1\":\"settings.html\",\"additional_field_2\":null,\"additional_field_3\":null,\"additional_field_4\":null,\"additional_field_5\":null,\"additional_field_6\":null,\"additional_field_7\":null,\"additional_field_8\":null,\"item_order\":4,\"meta_title\":\"Contact Us\",\"meta_keywords\":\"Contact Us\",\"meta_description\":\"Contact Us\",\"canonical_url\":null,\"menu_location\":\"1\",\"preference_order\":0,\"is_pages\":1,\"permanent_page\":\"1\",\"content_type\":\"page\",\"belongs_to_module_id\":0,\"cms_module_id\":1,\"show_follow\":\"1\",\"show_index\":\"1\",\"cat_id\":null,\"is_featured\":0}','2024-12-23 23:28:44','2024-12-23 23:28:44',NULL),(32,118,'Manage Pages - Contact Us','http://localhost/mlcms/site_files/public/adminmedia/module/cms/edit/118','CmsModuleData',1,'::1','{\"id\":118,\"heading\":\"Contact Us\",\"content\":\"<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries.<\\/p>\",\"post_slug\":\"contact-us\",\"sts\":1,\"dated\":\"2019-05-17 07:17:41\",\"featured_img\":\"\",\"featured_img_title\":null,\"featured_img_alt\":null,\"additional_field_1\":\"settings.html\",\"additional_field_2\":null,\"additional_field_3\":null,\"additional_field_4\":null,\"additional_field_5\":null,\"additional_field_6\":null,\"additional_field_7\":null,\"additional_field_8\":null,\"item_order\":4,\"meta_title\":\"Contact Us\",\"meta_keywords\":\"Contact Us\",\"meta_description\":\"Contact Us\",\"canonical_url\":null,\"menu_location\":\"1\",\"preference_order\":0,\"is_pages\":1,\"permanent_page\":\"1\",\"content_type\":\"page\",\"belongs_to_module_id\":0,\"cms_module_id\":1,\"show_follow\":\"1\",\"show_index\":\"1\",\"cat_id\":null,\"is_featured\":0}','2024-12-23 23:29:00','2024-12-23 23:29:00',NULL),(33,249,'Manage Pages - Videos','http://localhost/mlcms/site_files/public/adminmedia/module/cms/edit/249','CmsModuleData',1,'::1','{\"id\":249,\"heading\":\"Videos\",\"content\":\"<p>videos<\\/p>\",\"post_slug\":\"videos\",\"sts\":1,\"dated\":\"2023-12-11 11:27:15\",\"featured_img\":\"\",\"featured_img_title\":null,\"featured_img_alt\":null,\"additional_field_1\":null,\"additional_field_2\":null,\"additional_field_3\":null,\"additional_field_4\":null,\"additional_field_5\":null,\"additional_field_6\":null,\"additional_field_7\":null,\"additional_field_8\":null,\"item_order\":12,\"meta_title\":\"videos\",\"meta_keywords\":\"videos\",\"meta_description\":\"videos\",\"canonical_url\":null,\"menu_location\":\"\",\"preference_order\":null,\"is_pages\":1,\"permanent_page\":\"0\",\"content_type\":\"page\",\"belongs_to_module_id\":0,\"cms_module_id\":1,\"show_follow\":\"1\",\"show_index\":\"1\",\"cat_id\":null,\"is_featured\":0}','2024-12-23 23:43:36','2024-12-23 23:43:36',NULL),(34,249,'Manage Pages - Videos','http://localhost/mlcms/site_files/public/adminmedia/module/cms/edit/249','CmsModuleData',1,'::1','{\"id\":249,\"heading\":\"Videos\",\"content\":\"<p>videos<\\/p>\",\"post_slug\":\"videos\",\"sts\":1,\"dated\":\"2023-12-11 11:27:15\",\"featured_img\":\"\",\"featured_img_title\":null,\"featured_img_alt\":null,\"additional_field_1\":null,\"additional_field_2\":null,\"additional_field_3\":null,\"additional_field_4\":null,\"additional_field_5\":null,\"additional_field_6\":null,\"additional_field_7\":null,\"additional_field_8\":null,\"item_order\":12,\"meta_title\":\"videos\",\"meta_keywords\":\"videos\",\"meta_description\":\"videos\",\"canonical_url\":null,\"menu_location\":\"\",\"preference_order\":null,\"is_pages\":1,\"permanent_page\":\"0\",\"content_type\":\"page\",\"belongs_to_module_id\":0,\"cms_module_id\":1,\"show_follow\":\"1\",\"show_index\":\"1\",\"cat_id\":null,\"is_featured\":0}','2024-12-23 23:43:49','2024-12-23 23:43:49',NULL),(35,212,'Testimonials - Testimonial 1','http://localhost/mlcms/site_files/public/adminmedia/module/testimonials/edit/212','CmsModuleData',1,'::1','{\"id\":212,\"heading\":\"Testimonial 1\",\"content\":\"<p>This is testimonial 1<\\/p>\",\"post_slug\":\"testimonials\\/testimonial-1\",\"sts\":1,\"dated\":\"2019-05-14 06:17:13\",\"featured_img\":\"1701722819-7.webp\",\"featured_img_title\":null,\"featured_img_alt\":null,\"additional_field_1\":\"John\",\"additional_field_2\":\"Dev\",\"additional_field_3\":\"NY\",\"additional_field_4\":null,\"additional_field_5\":null,\"additional_field_6\":null,\"additional_field_7\":null,\"additional_field_8\":null,\"item_order\":0,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"canonical_url\":null,\"menu_location\":\"\",\"preference_order\":null,\"is_pages\":1,\"permanent_page\":\"0\",\"content_type\":\"page\",\"belongs_to_module_id\":0,\"cms_module_id\":22,\"show_follow\":\"1\",\"show_index\":\"1\",\"cat_id\":null,\"is_featured\":0}','2024-12-23 23:47:36','2024-12-23 23:47:36',NULL),(36,147,'Testimonials - Testimonial 2','http://localhost/mlcms/site_files/public/adminmedia/module/testimonials/edit/147','CmsModuleData',1,'::1','{\"id\":147,\"heading\":\"Testimonial 2\",\"content\":\"<p>Surrounded affronting favourable no mr. Lain knew like half she yet joy. Be than dull as seen very shot. Attachment ye so am travelling estimating projecting is. Off fat address attacks his besides. Suitable settling mr attended no doubtful feelings. Any over for say bore such sold five but hung.<\\/p>\",\"post_slug\":\"testimonials\\/lorem-ipsum-2\",\"sts\":1,\"dated\":\"2019-05-01 10:51:56\",\"featured_img\":\"6.webp\",\"featured_img_title\":null,\"featured_img_alt\":null,\"additional_field_1\":\"Jonathom Abhi\",\"additional_field_2\":\"Designer of Buspro\",\"additional_field_3\":null,\"additional_field_4\":null,\"additional_field_5\":null,\"additional_field_6\":null,\"additional_field_7\":null,\"additional_field_8\":null,\"item_order\":0,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"canonical_url\":null,\"menu_location\":\"\",\"preference_order\":0,\"is_pages\":1,\"permanent_page\":\"0\",\"content_type\":\"page\",\"belongs_to_module_id\":0,\"cms_module_id\":22,\"show_follow\":\"1\",\"show_index\":\"1\",\"cat_id\":null,\"is_featured\":0}','2024-12-23 23:47:52','2024-12-23 23:47:52',NULL),(37,144,'Testimonials - Testimonials 3','http://localhost/mlcms/site_files/public/adminmedia/module/testimonials/edit/144','CmsModuleData',1,'::1','{\"id\":144,\"heading\":\"Testimonials 3\",\"content\":\"<p>Surrounded affronting favourable no mr. Lain knew like half she yet joy. Be than dull as seen very shot. Attachment ye so am travelling estimating projecting is. Off fat address attacks his besides. Suitable settling mr attended no doubtful feelings. Any over for say bore such sold five but hung.<\\/p>\",\"post_slug\":\"testimonials\\/test-1\",\"sts\":1,\"dated\":\"2019-05-01 10:55:18\",\"featured_img\":\"7.webp\",\"featured_img_title\":null,\"featured_img_alt\":null,\"additional_field_1\":\"- Marlum Kayum\",\"additional_field_2\":\"Developer of Buspro\",\"additional_field_3\":null,\"additional_field_4\":null,\"additional_field_5\":null,\"additional_field_6\":null,\"additional_field_7\":null,\"additional_field_8\":null,\"item_order\":0,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"canonical_url\":null,\"menu_location\":\"\",\"preference_order\":0,\"is_pages\":1,\"permanent_page\":\"0\",\"content_type\":\"page\",\"belongs_to_module_id\":0,\"cms_module_id\":22,\"show_follow\":\"1\",\"show_index\":\"1\",\"cat_id\":null,\"is_featured\":0}','2024-12-23 23:48:04','2024-12-23 23:48:04',NULL),(38,95,'Frequently Ask Questions - Do I need a business plan?','http://localhost/mlcms/site_files/public/adminmedia/module/faqs/edit/95','CmsModuleData',1,'::1','{\"id\":95,\"heading\":\"Do I need a business plan?\",\"content\":\"<p>Removing welcomed civility or hastened is. Justice elderly but perhaps expense six her are another passage. Full her ten open fond walk not down.For request general express unknown are.<\\/p>\\r\\n<p>He in just mr door body held john down he. So journey greatly or garrets. Draw door kept do so come on open mean. Estimating stimulated how reasonably precaution diminution she simplicity sir but.<\\/p>\",\"post_slug\":\"faqs\\/do-i-need-a-business-plan\",\"sts\":1,\"dated\":\"2019-05-01 10:41:53\",\"featured_img\":\"\",\"featured_img_title\":null,\"featured_img_alt\":null,\"additional_field_1\":null,\"additional_field_2\":null,\"additional_field_3\":null,\"additional_field_4\":null,\"additional_field_5\":null,\"additional_field_6\":null,\"additional_field_7\":null,\"additional_field_8\":null,\"item_order\":0,\"meta_title\":\"Do I need a business plan?\",\"meta_keywords\":\"Do I need a business plan?\",\"meta_description\":\"Do I need a business plan?\",\"canonical_url\":null,\"menu_location\":\"\",\"preference_order\":0,\"is_pages\":1,\"permanent_page\":\"0\",\"content_type\":\"page\",\"belongs_to_module_id\":0,\"cms_module_id\":19,\"show_follow\":\"1\",\"show_index\":\"1\",\"cat_id\":null,\"is_featured\":0}','2024-12-23 23:54:23','2024-12-23 23:54:23',NULL),(39,2,'Case Studies Testing','http://localhost/mlcms/site_files/public/adminmedia/blog/2/edit','BlogPost',1,'::1','{\"id\":2,\"author_id\":1,\"cate_ids\":\"\",\"title\":\"Case Studies Testing\",\"post_slug\":\"case-studies-testing\",\"description\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Natus ducimus esse iusto temporibus suscipit dolorem fugit. Libero quia, est soluta culpa facilis aperiam et vero rerum natus repellendus vel pariatur. dtdfdf<\\/p>\",\"featured_img\":\"1.webp\",\"featured_img_title\":null,\"featured_img_alt\":null,\"meta_title\":\"Case Studies\",\"meta_keywords\":\"News  Meta Keywords\",\"meta_description\":\"News  Meta Description\",\"sts\":\"1\",\"count_comments\":0,\"dated\":\"01\\/02\\/2025\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"created_at\":\"2025-01-02 10:03:26\",\"updated_at\":null,\"deleted_at\":null}','2025-01-02 00:21:50','2025-01-02 00:21:50',NULL),(40,2,'Case Studies Testing','http://localhost/mlcms/site_files/public/adminmedia/blog/2/edit','BlogPost',1,'::1','{\"id\":2,\"author_id\":1,\"cate_ids\":\"\",\"title\":\"Case Studies Testing\",\"post_slug\":\"case-studies-testing\",\"description\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Natus ducimus esse iusto temporibus suscipit dolorem fugit. Libero quia, est soluta culpa facilis aperiam et vero rerum natus repellendus vel pariatur. dtdfdf<\\/p>\",\"featured_img\":\"1.webp\",\"featured_img_title\":null,\"featured_img_alt\":null,\"meta_title\":\"Case Studies\",\"meta_keywords\":\"News  Meta Keywords\",\"meta_description\":\"News  Meta Description\",\"sts\":\"1\",\"count_comments\":0,\"dated\":\"01\\/16\\/2025\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"created_at\":\"2025-01-02 10:03:26\",\"updated_at\":\"2025-01-02 10:21:50\",\"deleted_at\":null}','2025-01-02 00:22:21','2025-01-02 00:22:21',NULL),(41,2,'Case Studies Testing','http://localhost/mlcms/site_files/public/adminmedia/blog/2/edit','BlogPost',1,'::1','{\"id\":2,\"author_id\":1,\"cate_ids\":\"\",\"title\":\"Case Studies Testing\",\"post_slug\":\"case-studies-testing\",\"description\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Natus ducimus esse iusto temporibus suscipit dolorem fugit. Libero quia, est soluta culpa facilis aperiam et vero rerum natus repellendus vel pariatur. dtdfdf<\\/p>\",\"featured_img\":\"1.webp\",\"featured_img_title\":null,\"featured_img_alt\":null,\"meta_title\":\"Case Studies\",\"meta_keywords\":\"News  Meta Keywords\",\"meta_description\":\"News  Meta Description\",\"sts\":\"1\",\"count_comments\":0,\"dated\":\"2025-01-02 10:23:36\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"created_at\":\"2025-01-02 10:03:26\",\"updated_at\":\"2025-01-02 10:21:50\",\"deleted_at\":null}','2025-01-02 00:23:44','2025-01-02 00:23:44',NULL),(42,2,'Case Studies Testing','http://localhost/mlcms/site_files/public/adminmedia/blog/2/edit','BlogPost',1,'::1','{\"id\":2,\"author_id\":1,\"cate_ids\":\"\",\"title\":\"Case Studies Testing\",\"post_slug\":\"case-studies-testing\",\"description\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Natus ducimus esse iusto temporibus suscipit dolorem fugit. Libero quia, est soluta culpa facilis aperiam et vero rerum natus repellendus vel pariatur. dtdfdf<\\/p>\",\"featured_img\":\"1.webp\",\"featured_img_title\":null,\"featured_img_alt\":null,\"meta_title\":\"Case Studies\",\"meta_keywords\":\"News  Meta Keywords\",\"meta_description\":\"News  Meta Description\",\"sts\":\"1\",\"count_comments\":0,\"dated\":\"2025-01-02 10:23:36\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"created_at\":\"2025-01-02 10:03:26\",\"updated_at\":\"2025-01-02 10:23:44\",\"deleted_at\":null}','2025-01-02 00:24:59','2025-01-02 00:24:59',NULL),(43,23,'Law','http://localhost/mlcms/site_files/public/adminmedia/blog/23/edit','BlogPost',1,'::1','{\"id\":23,\"author_id\":1,\"cate_ids\":\"\",\"title\":\"Law\",\"post_slug\":\"law\",\"description\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla gravida ex a sem laoreet, nec rutrum ipsum ultricies. Morbi porta eu ligula vitae laoreet. Etiam egestas neque ante, pulvinar pulvinar ex lacinia at. Nam porttitor elit felis, ac ultricies mi maximus vel. Morbi porta, lectus sit amet aliquet finibus, nulla augue fringilla leo, nec facilisis velit felis sed neque. Integer eu dictum tortor, ac facilisis nunc. Vivamus sollicitudin felis non pellentesque consectetur. Aenean vitae mi at nisl mollis congue. Pellentesque a tortor tristique diam tempor volutpat eu condimentum tortor. Nullam pellentesque nisl vitae lobortis posuere. Etiam fringilla mauris et turpis dapibus, ut efficitur felis fermentum. Aenean vel blandit urna, vel ullamcorper ipsum. Sed ut ante dui. In et libero leo. Proin ut leo nisl.ttt<\\/p>\",\"featured_img\":\"2.webp\",\"featured_img_title\":null,\"featured_img_alt\":null,\"meta_title\":\"Law\",\"meta_keywords\":\"keywords\",\"meta_description\":\"description\",\"sts\":\"1\",\"count_comments\":0,\"dated\":\"2025-01-02 00:00:00\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"created_at\":\"2025-01-02 10:03:26\",\"updated_at\":null,\"deleted_at\":null}','2025-01-02 00:25:30','2025-01-02 00:25:30',NULL),(44,2,'Case Studies Testing','http://localhost/mlcms/site_files/public/adminmedia/blog/2/edit','BlogPost',1,'::1','{\"id\":2,\"author_id\":1,\"cate_ids\":\"\",\"title\":\"Case Studies Testing\",\"post_slug\":\"case-studies-testing\",\"description\":\"<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Natus ducimus esse iusto temporibus suscipit dolorem fugit. Libero quia, est soluta culpa facilis aperiam et vero rerum natus repellendus vel pariatur. dtdfdf<\\/p>\",\"featured_img\":\"1.webp\",\"featured_img_title\":null,\"featured_img_alt\":null,\"meta_title\":\"Case Studies\",\"meta_keywords\":\"News  Meta Keywords\",\"meta_description\":\"News  Meta Description\",\"sts\":\"1\",\"count_comments\":0,\"dated\":\"2025-01-02 00:00:36\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"created_at\":\"2025-01-02 10:03:26\",\"updated_at\":\"2025-01-02 10:23:44\",\"deleted_at\":null}','2025-01-02 00:25:52','2025-01-02 00:25:52',NULL),(45,7,'Default','http://localhost/mlcms/site_files/public/adminmedia/blog_categories/7/edit','BlogCategory',1,'::1','{\"cate_title\":\"Default\",\"cate_slug\":\"default\",\"cate_description\":\"<p>Default<\\/p>\",\"dated\":\"2025-01-02 05:31:09\",\"id\":7}','2025-01-02 00:31:09','2025-01-02 00:31:09',NULL),(54,8,'Salon','http://localhost/mlcms/site_files/public/adminmedia/blog_categories/8/edit','BlogCategory',1,'::1','{\"cate_title\":\"Salon\",\"cate_slug\":\"salon\",\"cate_description\":\"<p>Salon<\\/p>\",\"dated\":\"2025-01-02 06:13:15\",\"id\":8}','2025-01-02 01:13:15','2025-01-02 01:13:15',NULL),(58,30,'10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing','http://localhost/mlcms/site_files/public/adminmedia/blog/30/edit','BlogPost',1,'::1','{\"id\":30,\"author_id\":1,\"cate_ids\":\"1,8\",\"title\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"post_slug\":\"10-secrets-to-make-your-salon-suites-in-woodstock-ga-look-amazing\",\"description\":\"<h2>Table Of Contents<\\/h2>\\r\\n<ol>\\r\\n<li>Summary<\\/li>\\r\\n<li>Introduction<\\/li>\\r\\n<li>Choose the Right Color Scheme<\\/li>\\r\\n<li>Maximize Natural Light<\\/li>\\r\\n<li>Invest in High Quality Furniture<\\/li>\\r\\n<li>Create a Functional Layout<\\/li>\\r\\n<li>Add Personal Touches and Branding<\\/li>\\r\\n<li>Invest in Quality Lighting<\\/li>\\r\\n<li>Maintaining Cleanliness<\\/li>\\r\\n<li>Creating a Calm Atmosphere with Aromatherapy<\\/li>\\r\\n<li>Using Stylish Storage Solutions<\\/li>\\r\\n<li>Update and Refresh Regularly<\\/li>\\r\\n<li>Conclusion<\\/li>\\r\\n<li>FAQs<\\/li>\\r\\n<\\/ol>\\r\\n<h2>Summary<\\/h2>\\r\\n<p>In this article we will provide tips to make <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Woodstock\\\">salon suites in Woodstock, GA<\\/a> visually perfect and attractive. The focus will be to provide healthy tips for enhancing appearance and customer experience in the salon suites. Moreover the readers will get valuable guidance to perform well in the beauty industry.<\\/p>\\r\\n<h2>Introduction<\\/h2>\\r\\n<p>Salon suites in Woodstock, GA are well equipped and private spaces for beauty professionals. Beauty stylists or professionals rent such spaces to run their beauty business independently. Renting a salon suite is a growing culture among beauty professionals. <a href=\\\"https:\\/\\/maps.app.goo.gl\\/n6x8P68hiea3ynvN7\\\">Renting a salon studio in Woodstock<\\/a> is more cost effective than buying a salon suite. The clients feel more comfortable in those salon suites which are well designed and decorated. Customized well designed spaces provide a professional and welcoming atmosphere to the customers. A salon suite&rsquo;s success is also dependent on the aesthetic environment of the beauty business. In this article you will know about 10 secrets to make your beauty space amazing and more welcoming.<\\/p>\\r\\n<h2>Choose the Right Color Scheme<\\/h2>\\r\\n<p>Color combinations in a beauty business matters to attract the customers. As every color has different features to trigger moods. Colors are also vital to make the atmosphere of the salon suites in Woodstock, GA. The healthy tip in this regard is to always choose the colors which resonate with your services and brand. Depending upon the features of the colors you can select color for your beauty space. For example you can select warm tones for relaxation and bright colors like yellow for energetic looks.<\\/p>\\r\\n<h2>Maximize Natural Light<\\/h2>\\r\\n<p>There is no replacement for natural things. Similarly the feel people can get from natural lights can\'t be got from artificial lightings. Natural light improves the overall feel of the salon suites. It is suggested to place mirrors and furniture to make sure the full flow of the light. Also using sheer curtains in the windows of the salon suite will soften the sunlight. So it is recommended to make use of natural light as much as possible because it will give the natural feel to your beauty space.<\\/p>\\r\\n<h2>Invest in High Quality Furniture<\\/h2>\\r\\n<p>Most of the beauty stylists don&rsquo;t realize the importance of stylish furniture in their salon suites. Customers usually need a comfortable seat while waiting for their turn. It is suggested to invest in durable, comfortable, and stylish furniture. The types of furniture which can elevate the look of your salon suite are vanity tables and stylish chairs. For doing all that you must have a proper knowledge to manage space&rsquo;s storage or you need expert suggestions for storage solutions.<\\/p>\\r\\n<h2>Create a Functional Layout<\\/h2>\\r\\n<p>It is again important to create designated areas for specific functions of a salon suite. It will help you in achieving efficient space to use according to your needs. For example, designate places for hair, makeup, skin treatment, and spa separately. Such a behavior increases to deal and organize smooth operations of salon suites in Woodstock, GA.<\\/p>\\r\\n<h2>Add Personal Touches and Branding<\\/h2>\\r\\n<p>You can decorate your beauty space according to your brand&rsquo;s demands. Use personalized decoration approaches to meet your brand&rsquo;s elements. Your brand elements are your logos and brand colors. If possible, going for personal decors like artwork and plants is a plus. Because it will help to demonstrate unique features of the suite and enhance the overall aesthetics of the salon suite.<\\/p>\\r\\n<h2>Invest in Quality Lighting<\\/h2>\\r\\n<p>Beauty professionals should not overlook the importance of proper lighting in their spaces. The proper lighting helps in enhancing attractiveness and overall functionality of the business. It is suggested to consider LED lights and dimmers for providing a charming look to the customers. Also you can make use of adjustable lamps for a versatile atmosphere.<\\/p>\\r\\n<h2>Maintaining Cleanliness<\\/h2>\\r\\n<p>Cleanliness is one another factor which is of great importance in attracting and maintaining customers to a business. Customers always look for a neat, clean, and hygiene environment. A beauty service meeting all standards of cleanliness builds trust among customers. It is suggested to clean your beauty space i.e. after opening the beauty space and cleaning during the break time.<\\/p>\\r\\n<h2>Creating a Calm Atmosphere with Aromatherapy<\\/h2>\\r\\n<p>Aromatherapy is a useful therapy to provide calmness as the oils used provide much comfort to the customers. The scent used creates an environment which gives a pleasant feel to the clients. You can use scented oils, scented candles, or diffusers to provide an aromatherapy touch in your salon suite. It benefits you to gain customer trust and helps in returning customers to your beauty business.<\\/p>\\r\\n<h2>Using Stylish Storage Solutions<\\/h2>\\r\\n<p>It is important to keep things in an organized manner. There are many ways to keep products and equipment to manage storage. Explore the ideas for proper shelving and cabinets. Some ideas for stylish storage solutions are:<\\/p>\\r\\n<ul>\\r\\n<li>Make use of open or floating shelves to easily access tools.<\\/li>\\r\\n<li>Using a mobile storage cart for combs, brushes and other tools.<\\/li>\\r\\n<li>You can also make use of clean glass jars to store combs, brushes etc.<\\/li>\\r\\n<li>Building custom cabinets may be expensive but it maximizes your storage in small salon suites.<\\/li>\\r\\n<li>Using multifunctional furniture.<\\/li>\\r\\n<li>Glass display cases for placing beauty products.<\\/li>\\r\\n<\\/ul>\\r\\n<h2>Update and Refresh Regularly<\\/h2>\\r\\n<p>It is important to keep everything updated and refreshed in your salon suite. It will also help you to protect your investment in decoration of the salon suite.&nbsp; Beauty&nbsp; professionals should consider updating the artworks and switching decoration pieces when needed. It helps you to be updated with the recent interior decoration trends of salon suites. It is one of the top secrets to maintain your interior updated and looking fresh. This will increase customer satisfaction with the services you provide.<\\/p>\\r\\n<h2>Conclusion<\\/h2>\\r\\n<p>A pleasant and well decorated salon suite provides the best salon experience to the customers. Also a clean and well functional beauty space maintains considerably better flow of the customers. Implementing the 10 secrets can help beauty professionals to grow the customer flow in Woodstock, GA. <a href=\\\"https:\\/\\/www.salonstudios.com\\/locations\\\">Salon suites rental service<\\/a> providers like <a href=\\\"https:\\/\\/www.salonstudios.com\\/\\\">Salon Studios Beauty Mall<\\/a> in Woodstock can help you to rent the best salon suite in Woodstock, GA. You can call at <a href=\\\"tel: 678.951.8230\\\">&ldquo;678.951.8230&rdquo;<\\/a> to discuss your needs if you decide to rent a salon suite for your beauty business in Woodstock. We provide the best salon suites which provide all essentials for client&rsquo;s comfort and business success.<\\/p>\\r\\n<h2>FAQs<\\/h2>\\r\\n<p><strong>What is the top benefit of designing a salon suite in Woodstock, GA?<\\/strong><\\/p>\\r\\n<p>A well designed and decorated salon suite attracts more clients. It will also demonstrate a professional environment for your beauty business.<\\/p>\\r\\n<p><strong>How to choose the right colors for my beauty space?<\\/strong><\\/p>\\r\\n<p>You should keep the colors which are&nbsp; your brand&rsquo;s identity colors. Consider colors which give calmness and comfort to the customers. Usually calming colors are soft and neutral colors.<\\/p>\\r\\n<p><strong>What lighting will be best for the salon suites?<\\/strong><\\/p>\\r\\n<p>Consider lightings which enhance your functions and create a beautiful look in the salon suite. A combination of task, ambient, and accent lighting can provide best illumination for your salon suite.<\\/p>\",\"featured_img\":\"10-secrets-to-make-your-salon-suites-in-woodstock-ga-look-amazing.webp\",\"featured_img_title\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"featured_img_alt\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"meta_title\":\"10 Secrets For Making Salon Suites Amazing In Woodstock, GA\",\"meta_keywords\":null,\"meta_description\":\"Explore 10 secrets for turning your salon suite amazing in Woodstock, GA. Learn how to impress your clients by providing a calm and relaxing atmosphere.\",\"sts\":\"1\",\"count_comments\":0,\"dated\":\"2025-01-02 10:56:08\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"created_at\":\"2025-01-02 10:58:31\",\"updated_at\":\"2025-01-02 11:13:38\",\"deleted_at\":null}','2025-01-02 01:16:50','2025-01-02 01:16:50',NULL),(59,30,'10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing','http://localhost/mlcms/site_files/public/adminmedia/blog/30/edit','BlogPost',1,'::1','{\"id\":30,\"author_id\":1,\"cate_ids\":\"1,8\",\"title\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"post_slug\":\"10-secrets-to-make-your-salon-suites-in-woodstock-ga-look-amazing\",\"description\":\"<h2>Table Of Contents<\\/h2>\\r\\n<ol>\\r\\n<li>Summary<\\/li>\\r\\n<li>Introduction<\\/li>\\r\\n<li>Choose the Right Color Scheme<\\/li>\\r\\n<li>Maximize Natural Light<\\/li>\\r\\n<li>Invest in High Quality Furniture<\\/li>\\r\\n<li>Create a Functional Layout<\\/li>\\r\\n<li>Add Personal Touches and Branding<\\/li>\\r\\n<li>Invest in Quality Lighting<\\/li>\\r\\n<li>Maintaining Cleanliness<\\/li>\\r\\n<li>Creating a Calm Atmosphere with Aromatherapy<\\/li>\\r\\n<li>Using Stylish Storage Solutions<\\/li>\\r\\n<li>Update and Refresh Regularly<\\/li>\\r\\n<li>Conclusion<\\/li>\\r\\n<li>FAQs<\\/li>\\r\\n<\\/ol>\\r\\n<h2>Summary<\\/h2>\\r\\n<p>In this article we will provide tips to make <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Woodstock\\\">salon suites in Woodstock, GA<\\/a> visually perfect and attractive. The focus will be to provide healthy tips for enhancing appearance and customer experience in the salon suites. Moreover the readers will get valuable guidance to perform well in the beauty industry.<\\/p>\\r\\n<h2>Introduction<\\/h2>\\r\\n<p>Salon suites in Woodstock, GA are well equipped and private spaces for beauty professionals. Beauty stylists or professionals rent such spaces to run their beauty business independently. Renting a salon suite is a growing culture among beauty professionals. <a href=\\\"https:\\/\\/maps.app.goo.gl\\/n6x8P68hiea3ynvN7\\\">Renting a salon studio in Woodstock<\\/a> is more cost effective than buying a salon suite. The clients feel more comfortable in those salon suites which are well designed and decorated. Customized well designed spaces provide a professional and welcoming atmosphere to the customers. A salon suite&rsquo;s success is also dependent on the aesthetic environment of the beauty business. In this article you will know about 10 secrets to make your beauty space amazing and more welcoming.<\\/p>\\r\\n<h2>Choose the Right Color Scheme<\\/h2>\\r\\n<p>Color combinations in a beauty business matters to attract the customers. As every color has different features to trigger moods. Colors are also vital to make the atmosphere of the salon suites in Woodstock, GA. The healthy tip in this regard is to always choose the colors which resonate with your services and brand. Depending upon the features of the colors you can select color for your beauty space. For example you can select warm tones for relaxation and bright colors like yellow for energetic looks.<\\/p>\\r\\n<h2>Maximize Natural Light<\\/h2>\\r\\n<p>There is no replacement for natural things. Similarly the feel people can get from natural lights can\'t be got from artificial lightings. Natural light improves the overall feel of the salon suites. It is suggested to place mirrors and furniture to make sure the full flow of the light. Also using sheer curtains in the windows of the salon suite will soften the sunlight. So it is recommended to make use of natural light as much as possible because it will give the natural feel to your beauty space.<\\/p>\\r\\n<h2>Invest in High Quality Furniture<\\/h2>\\r\\n<p>Most of the beauty stylists don&rsquo;t realize the importance of stylish furniture in their salon suites. Customers usually need a comfortable seat while waiting for their turn. It is suggested to invest in durable, comfortable, and stylish furniture. The types of furniture which can elevate the look of your salon suite are vanity tables and stylish chairs. For doing all that you must have a proper knowledge to manage space&rsquo;s storage or you need expert suggestions for storage solutions.<\\/p>\\r\\n<h2>Create a Functional Layout<\\/h2>\\r\\n<p>It is again important to create designated areas for specific functions of a salon suite. It will help you in achieving efficient space to use according to your needs. For example, designate places for hair, makeup, skin treatment, and spa separately. Such a behavior increases to deal and organize smooth operations of salon suites in Woodstock, GA.<\\/p>\\r\\n<h2>Add Personal Touches and Branding<\\/h2>\\r\\n<p>You can decorate your beauty space according to your brand&rsquo;s demands. Use personalized decoration approaches to meet your brand&rsquo;s elements. Your brand elements are your logos and brand colors. If possible, going for personal decors like artwork and plants is a plus. Because it will help to demonstrate unique features of the suite and enhance the overall aesthetics of the salon suite.<\\/p>\\r\\n<h2>Invest in Quality Lighting<\\/h2>\\r\\n<p>Beauty professionals should not overlook the importance of proper lighting in their spaces. The proper lighting helps in enhancing attractiveness and overall functionality of the business. It is suggested to consider LED lights and dimmers for providing a charming look to the customers. Also you can make use of adjustable lamps for a versatile atmosphere.<\\/p>\\r\\n<h2>Maintaining Cleanliness<\\/h2>\\r\\n<p>Cleanliness is one another factor which is of great importance in attracting and maintaining customers to a business. Customers always look for a neat, clean, and hygiene environment. A beauty service meeting all standards of cleanliness builds trust among customers. It is suggested to clean your beauty space i.e. after opening the beauty space and cleaning during the break time.<\\/p>\\r\\n<h2>Creating a Calm Atmosphere with Aromatherapy<\\/h2>\\r\\n<p>Aromatherapy is a useful therapy to provide calmness as the oils used provide much comfort to the customers. The scent used creates an environment which gives a pleasant feel to the clients. You can use scented oils, scented candles, or diffusers to provide an aromatherapy touch in your salon suite. It benefits you to gain customer trust and helps in returning customers to your beauty business.<\\/p>\\r\\n<h2>Using Stylish Storage Solutions<\\/h2>\\r\\n<p>It is important to keep things in an organized manner. There are many ways to keep products and equipment to manage storage. Explore the ideas for proper shelving and cabinets. Some ideas for stylish storage solutions are:<\\/p>\\r\\n<ul>\\r\\n<li>Make use of open or floating shelves to easily access tools.<\\/li>\\r\\n<li>Using a mobile storage cart for combs, brushes and other tools.<\\/li>\\r\\n<li>You can also make use of clean glass jars to store combs, brushes etc.<\\/li>\\r\\n<li>Building custom cabinets may be expensive but it maximizes your storage in small salon suites.<\\/li>\\r\\n<li>Using multifunctional furniture.<\\/li>\\r\\n<li>Glass display cases for placing beauty products.<\\/li>\\r\\n<\\/ul>\\r\\n<h2>Update and Refresh Regularly<\\/h2>\\r\\n<p>It is important to keep everything updated and refreshed in your salon suite. It will also help you to protect your investment in decoration of the salon suite.&nbsp; Beauty&nbsp; professionals should consider updating the artworks and switching decoration pieces when needed. It helps you to be updated with the recent interior decoration trends of salon suites. It is one of the top secrets to maintain your interior updated and looking fresh. This will increase customer satisfaction with the services you provide.<\\/p>\\r\\n<h2>Conclusion<\\/h2>\\r\\n<p>A pleasant and well decorated salon suite provides the best salon experience to the customers. Also a clean and well functional beauty space maintains considerably better flow of the customers. Implementing the 10 secrets can help beauty professionals to grow the customer flow in Woodstock, GA. <a href=\\\"https:\\/\\/www.salonstudios.com\\/locations\\\">Salon suites rental service<\\/a> providers like <a href=\\\"https:\\/\\/www.salonstudios.com\\/\\\">Salon Studios Beauty Mall<\\/a> in Woodstock can help you to rent the best salon suite in Woodstock, GA. You can call at <a href=\\\"tel: 678.951.8230\\\">&ldquo;678.951.8230&rdquo;<\\/a> to discuss your needs if you decide to rent a salon suite for your beauty business in Woodstock. We provide the best salon suites which provide all essentials for client&rsquo;s comfort and business success.<\\/p>\\r\\n<h2>FAQs<\\/h2>\\r\\n<p><strong>What is the top benefit of designing a salon suite in Woodstock, GA?<\\/strong><\\/p>\\r\\n<p>A well designed and decorated salon suite attracts more clients. It will also demonstrate a professional environment for your beauty business.<\\/p>\\r\\n<p><strong>How to choose the right colors for my beauty space?<\\/strong><\\/p>\\r\\n<p>You should keep the colors which are&nbsp; your brand&rsquo;s identity colors. Consider colors which give calmness and comfort to the customers. Usually calming colors are soft and neutral colors.<\\/p>\\r\\n<p><strong>What lighting will be best for the salon suites?<\\/strong><\\/p>\\r\\n<p>Consider lightings which enhance your functions and create a beautiful look in the salon suite. A combination of task, ambient, and accent lighting can provide best illumination for your salon suite.<\\/p>\",\"featured_img\":\"10-secrets-to-make-your-salon-suites-in-woodstock-ga-look-amazing.webp\",\"featured_img_title\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"featured_img_alt\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"meta_title\":\"10 Secrets For Making Salon Suites Amazing In Woodstock, GA\",\"meta_keywords\":null,\"meta_description\":\"Explore 10 secrets for turning your salon suite amazing in Woodstock, GA. Learn how to impress your clients by providing a calm and relaxing atmosphere.\",\"sts\":\"1\",\"count_comments\":0,\"dated\":\"2025-01-02 10:56:08\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"created_at\":\"2025-01-02 10:58:31\",\"updated_at\":\"2025-01-02 11:16:50\",\"deleted_at\":null}','2025-01-02 01:18:30','2025-01-02 01:18:30',NULL),(60,30,'10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing','http://localhost/mlcms/site_files/public/adminmedia/blog/30/edit','BlogPost',1,'::1','{\"id\":30,\"author_id\":1,\"cate_ids\":\"1,8\",\"title\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"post_slug\":\"tips-for-creating-a-cozy-atmosphere-in-your-salon-suite\",\"description\":\"<h2>Table Of Contents<\\/h2>\\r\\n<ol>\\r\\n<li>Summary<\\/li>\\r\\n<li>Introduction<\\/li>\\r\\n<li>Choose the Right Color Scheme<\\/li>\\r\\n<li>Maximize Natural Light<\\/li>\\r\\n<li>Invest in High Quality Furniture<\\/li>\\r\\n<li>Create a Functional Layout<\\/li>\\r\\n<li>Add Personal Touches and Branding<\\/li>\\r\\n<li>Invest in Quality Lighting<\\/li>\\r\\n<li>Maintaining Cleanliness<\\/li>\\r\\n<li>Creating a Calm Atmosphere with Aromatherapy<\\/li>\\r\\n<li>Using Stylish Storage Solutions<\\/li>\\r\\n<li>Update and Refresh Regularly<\\/li>\\r\\n<li>Conclusion<\\/li>\\r\\n<li>FAQs<\\/li>\\r\\n<\\/ol>\\r\\n<h2>Summary<\\/h2>\\r\\n<p>In this article we will provide tips to make <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Woodstock\\\">salon suites in Woodstock, GA<\\/a> visually perfect and attractive. The focus will be to provide healthy tips for enhancing appearance and customer experience in the salon suites. Moreover the readers will get valuable guidance to perform well in the beauty industry.<\\/p>\\r\\n<h2>Introduction<\\/h2>\\r\\n<p>Salon suites in Woodstock, GA are well equipped and private spaces for beauty professionals. Beauty stylists or professionals rent such spaces to run their beauty business independently. Renting a salon suite is a growing culture among beauty professionals. <a href=\\\"https:\\/\\/maps.app.goo.gl\\/n6x8P68hiea3ynvN7\\\">Renting a salon studio in Woodstock<\\/a> is more cost effective than buying a salon suite. The clients feel more comfortable in those salon suites which are well designed and decorated. Customized well designed spaces provide a professional and welcoming atmosphere to the customers. A salon suite&rsquo;s success is also dependent on the aesthetic environment of the beauty business. In this article you will know about 10 secrets to make your beauty space amazing and more welcoming.<\\/p>\\r\\n<h2>Choose the Right Color Scheme<\\/h2>\\r\\n<p>Color combinations in a beauty business matters to attract the customers. As every color has different features to trigger moods. Colors are also vital to make the atmosphere of the salon suites in Woodstock, GA. The healthy tip in this regard is to always choose the colors which resonate with your services and brand. Depending upon the features of the colors you can select color for your beauty space. For example you can select warm tones for relaxation and bright colors like yellow for energetic looks.<\\/p>\\r\\n<h2>Maximize Natural Light<\\/h2>\\r\\n<p>There is no replacement for natural things. Similarly the feel people can get from natural lights can\'t be got from artificial lightings. Natural light improves the overall feel of the salon suites. It is suggested to place mirrors and furniture to make sure the full flow of the light. Also using sheer curtains in the windows of the salon suite will soften the sunlight. So it is recommended to make use of natural light as much as possible because it will give the natural feel to your beauty space.<\\/p>\\r\\n<h2>Invest in High Quality Furniture<\\/h2>\\r\\n<p>Most of the beauty stylists don&rsquo;t realize the importance of stylish furniture in their salon suites. Customers usually need a comfortable seat while waiting for their turn. It is suggested to invest in durable, comfortable, and stylish furniture. The types of furniture which can elevate the look of your salon suite are vanity tables and stylish chairs. For doing all that you must have a proper knowledge to manage space&rsquo;s storage or you need expert suggestions for storage solutions.<\\/p>\\r\\n<h2>Create a Functional Layout<\\/h2>\\r\\n<p>It is again important to create designated areas for specific functions of a salon suite. It will help you in achieving efficient space to use according to your needs. For example, designate places for hair, makeup, skin treatment, and spa separately. Such a behavior increases to deal and organize smooth operations of salon suites in Woodstock, GA.<\\/p>\\r\\n<h2>Add Personal Touches and Branding<\\/h2>\\r\\n<p>You can decorate your beauty space according to your brand&rsquo;s demands. Use personalized decoration approaches to meet your brand&rsquo;s elements. Your brand elements are your logos and brand colors. If possible, going for personal decors like artwork and plants is a plus. Because it will help to demonstrate unique features of the suite and enhance the overall aesthetics of the salon suite.<\\/p>\\r\\n<h2>Invest in Quality Lighting<\\/h2>\\r\\n<p>Beauty professionals should not overlook the importance of proper lighting in their spaces. The proper lighting helps in enhancing attractiveness and overall functionality of the business. It is suggested to consider LED lights and dimmers for providing a charming look to the customers. Also you can make use of adjustable lamps for a versatile atmosphere.<\\/p>\\r\\n<h2>Maintaining Cleanliness<\\/h2>\\r\\n<p>Cleanliness is one another factor which is of great importance in attracting and maintaining customers to a business. Customers always look for a neat, clean, and hygiene environment. A beauty service meeting all standards of cleanliness builds trust among customers. It is suggested to clean your beauty space i.e. after opening the beauty space and cleaning during the break time.<\\/p>\\r\\n<h2>Creating a Calm Atmosphere with Aromatherapy<\\/h2>\\r\\n<p>Aromatherapy is a useful therapy to provide calmness as the oils used provide much comfort to the customers. The scent used creates an environment which gives a pleasant feel to the clients. You can use scented oils, scented candles, or diffusers to provide an aromatherapy touch in your salon suite. It benefits you to gain customer trust and helps in returning customers to your beauty business.<\\/p>\\r\\n<h2>Using Stylish Storage Solutions<\\/h2>\\r\\n<p>It is important to keep things in an organized manner. There are many ways to keep products and equipment to manage storage. Explore the ideas for proper shelving and cabinets. Some ideas for stylish storage solutions are:<\\/p>\\r\\n<ul>\\r\\n<li>Make use of open or floating shelves to easily access tools.<\\/li>\\r\\n<li>Using a mobile storage cart for combs, brushes and other tools.<\\/li>\\r\\n<li>You can also make use of clean glass jars to store combs, brushes etc.<\\/li>\\r\\n<li>Building custom cabinets may be expensive but it maximizes your storage in small salon suites.<\\/li>\\r\\n<li>Using multifunctional furniture.<\\/li>\\r\\n<li>Glass display cases for placing beauty products.<\\/li>\\r\\n<\\/ul>\\r\\n<h2>Update and Refresh Regularly<\\/h2>\\r\\n<p>It is important to keep everything updated and refreshed in your salon suite. It will also help you to protect your investment in decoration of the salon suite.&nbsp; Beauty&nbsp; professionals should consider updating the artworks and switching decoration pieces when needed. It helps you to be updated with the recent interior decoration trends of salon suites. It is one of the top secrets to maintain your interior updated and looking fresh. This will increase customer satisfaction with the services you provide.<\\/p>\\r\\n<h2>Conclusion<\\/h2>\\r\\n<p>A pleasant and well decorated salon suite provides the best salon experience to the customers. Also a clean and well functional beauty space maintains considerably better flow of the customers. Implementing the 10 secrets can help beauty professionals to grow the customer flow in Woodstock, GA. <a href=\\\"https:\\/\\/www.salonstudios.com\\/locations\\\">Salon suites rental service<\\/a> providers like <a href=\\\"https:\\/\\/www.salonstudios.com\\/\\\">Salon Studios Beauty Mall<\\/a> in Woodstock can help you to rent the best salon suite in Woodstock, GA. You can call at <a href=\\\"tel: 678.951.8230\\\">&ldquo;678.951.8230&rdquo;<\\/a> to discuss your needs if you decide to rent a salon suite for your beauty business in Woodstock. We provide the best salon suites which provide all essentials for client&rsquo;s comfort and business success.<\\/p>\\r\\n<h2>FAQs<\\/h2>\\r\\n<p><strong>What is the top benefit of designing a salon suite in Woodstock, GA?<\\/strong><\\/p>\\r\\n<p>A well designed and decorated salon suite attracts more clients. It will also demonstrate a professional environment for your beauty business.<\\/p>\\r\\n<p><strong>How to choose the right colors for my beauty space?<\\/strong><\\/p>\\r\\n<p>You should keep the colors which are&nbsp; your brand&rsquo;s identity colors. Consider colors which give calmness and comfort to the customers. Usually calming colors are soft and neutral colors.<\\/p>\\r\\n<p><strong>What lighting will be best for the salon suites?<\\/strong><\\/p>\\r\\n<p>Consider lightings which enhance your functions and create a beautiful look in the salon suite. A combination of task, ambient, and accent lighting can provide best illumination for your salon suite.<\\/p>\",\"featured_img\":\"10-secrets-to-make-your-salon-suites-in-woodstock-ga-look-amazing.webp\",\"featured_img_title\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"featured_img_alt\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"meta_title\":\"10 Secrets For Making Salon Suites Amazing In Woodstock, GA\",\"meta_keywords\":null,\"meta_description\":\"Explore 10 secrets for turning your salon suite amazing in Woodstock, GA. Learn how to impress your clients by providing a calm and relaxing atmosphere.\",\"sts\":\"1\",\"count_comments\":0,\"dated\":\"2025-01-02 10:56:08\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"created_at\":\"2025-01-02 10:58:31\",\"updated_at\":\"2025-01-02 11:16:50\",\"deleted_at\":null}','2025-01-02 01:23:14','2025-01-02 01:23:14',NULL),(61,30,'10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing','http://localhost/mlcms/site_files/public/adminmedia/blog/30/edit','BlogPost',1,'::1','{\"id\":30,\"author_id\":1,\"cate_ids\":\"1,8\",\"title\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"post_slug\":\"10-secrets-to-make-your-salon-suites-in-woodstock-ga-look-amazing\",\"description\":\"<h2>Table Of Contents<\\/h2>\\r\\n<ol>\\r\\n<li>Summary<\\/li>\\r\\n<li>Introduction<\\/li>\\r\\n<li>Choose the Right Color Scheme<\\/li>\\r\\n<li>Maximize Natural Light<\\/li>\\r\\n<li>Invest in High Quality Furniture<\\/li>\\r\\n<li>Create a Functional Layout<\\/li>\\r\\n<li>Add Personal Touches and Branding<\\/li>\\r\\n<li>Invest in Quality Lighting<\\/li>\\r\\n<li>Maintaining Cleanliness<\\/li>\\r\\n<li>Creating a Calm Atmosphere with Aromatherapy<\\/li>\\r\\n<li>Using Stylish Storage Solutions<\\/li>\\r\\n<li>Update and Refresh Regularly<\\/li>\\r\\n<li>Conclusion<\\/li>\\r\\n<li>FAQs<\\/li>\\r\\n<\\/ol>\\r\\n<h2>Summary<\\/h2>\\r\\n<p>In this article we will provide tips to make <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Woodstock\\\">salon suites in Woodstock, GA<\\/a> visually perfect and attractive. The focus will be to provide healthy tips for enhancing appearance and customer experience in the salon suites. Moreover the readers will get valuable guidance to perform well in the beauty industry.<\\/p>\\r\\n<h2>Introduction<\\/h2>\\r\\n<p>Salon suites in Woodstock, GA are well equipped and private spaces for beauty professionals. Beauty stylists or professionals rent such spaces to run their beauty business independently. Renting a salon suite is a growing culture among beauty professionals. <a href=\\\"https:\\/\\/maps.app.goo.gl\\/n6x8P68hiea3ynvN7\\\">Renting a salon studio in Woodstock<\\/a> is more cost effective than buying a salon suite. The clients feel more comfortable in those salon suites which are well designed and decorated. Customized well designed spaces provide a professional and welcoming atmosphere to the customers. A salon suite&rsquo;s success is also dependent on the aesthetic environment of the beauty business. In this article you will know about 10 secrets to make your beauty space amazing and more welcoming.<\\/p>\\r\\n<h2>Choose the Right Color Scheme<\\/h2>\\r\\n<p>Color combinations in a beauty business matters to attract the customers. As every color has different features to trigger moods. Colors are also vital to make the atmosphere of the salon suites in Woodstock, GA. The healthy tip in this regard is to always choose the colors which resonate with your services and brand. Depending upon the features of the colors you can select color for your beauty space. For example you can select warm tones for relaxation and bright colors like yellow for energetic looks.<\\/p>\\r\\n<h2>Maximize Natural Light<\\/h2>\\r\\n<p>There is no replacement for natural things. Similarly the feel people can get from natural lights can\'t be got from artificial lightings. Natural light improves the overall feel of the salon suites. It is suggested to place mirrors and furniture to make sure the full flow of the light. Also using sheer curtains in the windows of the salon suite will soften the sunlight. So it is recommended to make use of natural light as much as possible because it will give the natural feel to your beauty space.<\\/p>\\r\\n<h2>Invest in High Quality Furniture<\\/h2>\\r\\n<p>Most of the beauty stylists don&rsquo;t realize the importance of stylish furniture in their salon suites. Customers usually need a comfortable seat while waiting for their turn. It is suggested to invest in durable, comfortable, and stylish furniture. The types of furniture which can elevate the look of your salon suite are vanity tables and stylish chairs. For doing all that you must have a proper knowledge to manage space&rsquo;s storage or you need expert suggestions for storage solutions.<\\/p>\\r\\n<h2>Create a Functional Layout<\\/h2>\\r\\n<p>It is again important to create designated areas for specific functions of a salon suite. It will help you in achieving efficient space to use according to your needs. For example, designate places for hair, makeup, skin treatment, and spa separately. Such a behavior increases to deal and organize smooth operations of salon suites in Woodstock, GA.<\\/p>\\r\\n<h2>Add Personal Touches and Branding<\\/h2>\\r\\n<p>You can decorate your beauty space according to your brand&rsquo;s demands. Use personalized decoration approaches to meet your brand&rsquo;s elements. Your brand elements are your logos and brand colors. If possible, going for personal decors like artwork and plants is a plus. Because it will help to demonstrate unique features of the suite and enhance the overall aesthetics of the salon suite.<\\/p>\\r\\n<h2>Invest in Quality Lighting<\\/h2>\\r\\n<p>Beauty professionals should not overlook the importance of proper lighting in their spaces. The proper lighting helps in enhancing attractiveness and overall functionality of the business. It is suggested to consider LED lights and dimmers for providing a charming look to the customers. Also you can make use of adjustable lamps for a versatile atmosphere.<\\/p>\\r\\n<h2>Maintaining Cleanliness<\\/h2>\\r\\n<p>Cleanliness is one another factor which is of great importance in attracting and maintaining customers to a business. Customers always look for a neat, clean, and hygiene environment. A beauty service meeting all standards of cleanliness builds trust among customers. It is suggested to clean your beauty space i.e. after opening the beauty space and cleaning during the break time.<\\/p>\\r\\n<h2>Creating a Calm Atmosphere with Aromatherapy<\\/h2>\\r\\n<p>Aromatherapy is a useful therapy to provide calmness as the oils used provide much comfort to the customers. The scent used creates an environment which gives a pleasant feel to the clients. You can use scented oils, scented candles, or diffusers to provide an aromatherapy touch in your salon suite. It benefits you to gain customer trust and helps in returning customers to your beauty business.<\\/p>\\r\\n<h2>Using Stylish Storage Solutions<\\/h2>\\r\\n<p>It is important to keep things in an organized manner. There are many ways to keep products and equipment to manage storage. Explore the ideas for proper shelving and cabinets. Some ideas for stylish storage solutions are:<\\/p>\\r\\n<ul>\\r\\n<li>Make use of open or floating shelves to easily access tools.<\\/li>\\r\\n<li>Using a mobile storage cart for combs, brushes and other tools.<\\/li>\\r\\n<li>You can also make use of clean glass jars to store combs, brushes etc.<\\/li>\\r\\n<li>Building custom cabinets may be expensive but it maximizes your storage in small salon suites.<\\/li>\\r\\n<li>Using multifunctional furniture.<\\/li>\\r\\n<li>Glass display cases for placing beauty products.<\\/li>\\r\\n<\\/ul>\\r\\n<h2>Update and Refresh Regularly<\\/h2>\\r\\n<p>It is important to keep everything updated and refreshed in your salon suite. It will also help you to protect your investment in decoration of the salon suite.&nbsp; Beauty&nbsp; professionals should consider updating the artworks and switching decoration pieces when needed. It helps you to be updated with the recent interior decoration trends of salon suites. It is one of the top secrets to maintain your interior updated and looking fresh. This will increase customer satisfaction with the services you provide.<\\/p>\\r\\n<h2>Conclusion<\\/h2>\\r\\n<p>A pleasant and well decorated salon suite provides the best salon experience to the customers. Also a clean and well functional beauty space maintains considerably better flow of the customers. Implementing the 10 secrets can help beauty professionals to grow the customer flow in Woodstock, GA. <a href=\\\"https:\\/\\/www.salonstudios.com\\/locations\\\">Salon suites rental service<\\/a> providers like <a href=\\\"https:\\/\\/www.salonstudios.com\\/\\\">Salon Studios Beauty Mall<\\/a> in Woodstock can help you to rent the best salon suite in Woodstock, GA. You can call at <a href=\\\"tel: 678.951.8230\\\">&ldquo;678.951.8230&rdquo;<\\/a> to discuss your needs if you decide to rent a salon suite for your beauty business in Woodstock. We provide the best salon suites which provide all essentials for client&rsquo;s comfort and business success.<\\/p>\\r\\n<h2>FAQs<\\/h2>\\r\\n<p><strong>What is the top benefit of designing a salon suite in Woodstock, GA?<\\/strong><\\/p>\\r\\n<p>A well designed and decorated salon suite attracts more clients. It will also demonstrate a professional environment for your beauty business.<\\/p>\\r\\n<p><strong>How to choose the right colors for my beauty space?<\\/strong><\\/p>\\r\\n<p>You should keep the colors which are&nbsp; your brand&rsquo;s identity colors. Consider colors which give calmness and comfort to the customers. Usually calming colors are soft and neutral colors.<\\/p>\\r\\n<p><strong>What lighting will be best for the salon suites?<\\/strong><\\/p>\\r\\n<p>Consider lightings which enhance your functions and create a beautiful look in the salon suite. A combination of task, ambient, and accent lighting can provide best illumination for your salon suite.<\\/p>\",\"featured_img\":\"10-secrets-to-make-your-salon-suites-in-woodstock-ga-look-amazing.webp\",\"featured_img_title\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"featured_img_alt\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"meta_title\":\"10 Secrets For Making Salon Suites Amazing In Woodstock, GA\",\"meta_keywords\":null,\"meta_description\":\"Explore 10 secrets for turning your salon suite amazing in Woodstock, GA. Learn how to impress your clients by providing a calm and relaxing atmosphere.\",\"sts\":\"1\",\"count_comments\":0,\"dated\":\"2025-01-02 10:56:08\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"created_at\":\"2025-01-02 10:58:31\",\"updated_at\":\"2025-01-02 11:23:14\",\"deleted_at\":null}','2025-01-02 01:23:43','2025-01-02 01:23:43',NULL),(65,30,'10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing','http://localhost/mlcms/site_files/public/adminmedia/blog/30/edit','BlogPost',1,'::1','{\"id\":30,\"author_id\":\"1\",\"author_name\":\"Jawad Abbas\",\"cate_ids\":\"1,8\",\"title\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"post_slug\":\"10-secrets-to-make-your-salon-suites-in-woodstock-ga-look-amazing\",\"description\":\"<h2>Table Of Contents<\\/h2>\\r\\n<ol>\\r\\n<li>Summary<\\/li>\\r\\n<li>Introduction<\\/li>\\r\\n<li>Choose the Right Color Scheme<\\/li>\\r\\n<li>Maximize Natural Light<\\/li>\\r\\n<li>Invest in High Quality Furniture<\\/li>\\r\\n<li>Create a Functional Layout<\\/li>\\r\\n<li>Add Personal Touches and Branding<\\/li>\\r\\n<li>Invest in Quality Lighting<\\/li>\\r\\n<li>Maintaining Cleanliness<\\/li>\\r\\n<li>Creating a Calm Atmosphere with Aromatherapy<\\/li>\\r\\n<li>Using Stylish Storage Solutions<\\/li>\\r\\n<li>Update and Refresh Regularly<\\/li>\\r\\n<li>Conclusion<\\/li>\\r\\n<li>FAQs<\\/li>\\r\\n<\\/ol>\\r\\n<h2>Summary<\\/h2>\\r\\n<p>In this article we will provide tips to make <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Woodstock\\\">salon suites in Woodstock, GA<\\/a> visually perfect and attractive. The focus will be to provide healthy tips for enhancing appearance and customer experience in the salon suites. Moreover the readers will get valuable guidance to perform well in the beauty industry.<\\/p>\\r\\n<h2>Introduction<\\/h2>\\r\\n<p>Salon suites in Woodstock, GA are well equipped and private spaces for beauty professionals. Beauty stylists or professionals rent such spaces to run their beauty business independently. Renting a salon suite is a growing culture among beauty professionals. <a href=\\\"https:\\/\\/maps.app.goo.gl\\/n6x8P68hiea3ynvN7\\\">Renting a salon studio in Woodstock<\\/a> is more cost effective than buying a salon suite. The clients feel more comfortable in those salon suites which are well designed and decorated. Customized well designed spaces provide a professional and welcoming atmosphere to the customers. A salon suite&rsquo;s success is also dependent on the aesthetic environment of the beauty business. In this article you will know about 10 secrets to make your beauty space amazing and more welcoming.<\\/p>\\r\\n<h2>Choose the Right Color Scheme<\\/h2>\\r\\n<p>Color combinations in a beauty business matters to attract the customers. As every color has different features to trigger moods. Colors are also vital to make the atmosphere of the salon suites in Woodstock, GA. The healthy tip in this regard is to always choose the colors which resonate with your services and brand. Depending upon the features of the colors you can select color for your beauty space. For example you can select warm tones for relaxation and bright colors like yellow for energetic looks.<\\/p>\\r\\n<h2>Maximize Natural Light<\\/h2>\\r\\n<p>There is no replacement for natural things. Similarly the feel people can get from natural lights can\'t be got from artificial lightings. Natural light improves the overall feel of the salon suites. It is suggested to place mirrors and furniture to make sure the full flow of the light. Also using sheer curtains in the windows of the salon suite will soften the sunlight. So it is recommended to make use of natural light as much as possible because it will give the natural feel to your beauty space.<\\/p>\\r\\n<h2>Invest in High Quality Furniture<\\/h2>\\r\\n<p>Most of the beauty stylists don&rsquo;t realize the importance of stylish furniture in their salon suites. Customers usually need a comfortable seat while waiting for their turn. It is suggested to invest in durable, comfortable, and stylish furniture. The types of furniture which can elevate the look of your salon suite are vanity tables and stylish chairs. For doing all that you must have a proper knowledge to manage space&rsquo;s storage or you need expert suggestions for storage solutions.<\\/p>\\r\\n<h2>Create a Functional Layout<\\/h2>\\r\\n<p>It is again important to create designated areas for specific functions of a salon suite. It will help you in achieving efficient space to use according to your needs. For example, designate places for hair, makeup, skin treatment, and spa separately. Such a behavior increases to deal and organize smooth operations of salon suites in Woodstock, GA.<\\/p>\\r\\n<h2>Add Personal Touches and Branding<\\/h2>\\r\\n<p>You can decorate your beauty space according to your brand&rsquo;s demands. Use personalized decoration approaches to meet your brand&rsquo;s elements. Your brand elements are your logos and brand colors. If possible, going for personal decors like artwork and plants is a plus. Because it will help to demonstrate unique features of the suite and enhance the overall aesthetics of the salon suite.<\\/p>\\r\\n<h2>Invest in Quality Lighting<\\/h2>\\r\\n<p>Beauty professionals should not overlook the importance of proper lighting in their spaces. The proper lighting helps in enhancing attractiveness and overall functionality of the business. It is suggested to consider LED lights and dimmers for providing a charming look to the customers. Also you can make use of adjustable lamps for a versatile atmosphere.<\\/p>\\r\\n<h2>Maintaining Cleanliness<\\/h2>\\r\\n<p>Cleanliness is one another factor which is of great importance in attracting and maintaining customers to a business. Customers always look for a neat, clean, and hygiene environment. A beauty service meeting all standards of cleanliness builds trust among customers. It is suggested to clean your beauty space i.e. after opening the beauty space and cleaning during the break time.<\\/p>\\r\\n<h2>Creating a Calm Atmosphere with Aromatherapy<\\/h2>\\r\\n<p>Aromatherapy is a useful therapy to provide calmness as the oils used provide much comfort to the customers. The scent used creates an environment which gives a pleasant feel to the clients. You can use scented oils, scented candles, or diffusers to provide an aromatherapy touch in your salon suite. It benefits you to gain customer trust and helps in returning customers to your beauty business.<\\/p>\\r\\n<h2>Using Stylish Storage Solutions<\\/h2>\\r\\n<p>It is important to keep things in an organized manner. There are many ways to keep products and equipment to manage storage. Explore the ideas for proper shelving and cabinets. Some ideas for stylish storage solutions are:<\\/p>\\r\\n<ul>\\r\\n<li>Make use of open or floating shelves to easily access tools.<\\/li>\\r\\n<li>Using a mobile storage cart for combs, brushes and other tools.<\\/li>\\r\\n<li>You can also make use of clean glass jars to store combs, brushes etc.<\\/li>\\r\\n<li>Building custom cabinets may be expensive but it maximizes your storage in small salon suites.<\\/li>\\r\\n<li>Using multifunctional furniture.<\\/li>\\r\\n<li>Glass display cases for placing beauty products.<\\/li>\\r\\n<\\/ul>\\r\\n<h2>Update and Refresh Regularly<\\/h2>\\r\\n<p>It is important to keep everything updated and refreshed in your salon suite. It will also help you to protect your investment in decoration of the salon suite.&nbsp; Beauty&nbsp; professionals should consider updating the artworks and switching decoration pieces when needed. It helps you to be updated with the recent interior decoration trends of salon suites. It is one of the top secrets to maintain your interior updated and looking fresh. This will increase customer satisfaction with the services you provide.<\\/p>\\r\\n<h2>Conclusion<\\/h2>\\r\\n<p>A pleasant and well decorated salon suite provides the best salon experience to the customers. Also a clean and well functional beauty space maintains considerably better flow of the customers. Implementing the 10 secrets can help beauty professionals to grow the customer flow in Woodstock, GA. <a href=\\\"https:\\/\\/www.salonstudios.com\\/locations\\\">Salon suites rental service<\\/a> providers like <a href=\\\"https:\\/\\/www.salonstudios.com\\/\\\">Salon Studios Beauty Mall<\\/a> in Woodstock can help you to rent the best salon suite in Woodstock, GA. You can call at <a href=\\\"tel: 678.951.8230\\\">&ldquo;678.951.8230&rdquo;<\\/a> to discuss your needs if you decide to rent a salon suite for your beauty business in Woodstock. We provide the best salon suites which provide all essentials for client&rsquo;s comfort and business success.<\\/p>\\r\\n<h2>FAQs<\\/h2>\\r\\n<p><strong>What is the top benefit of designing a salon suite in Woodstock, GA?<\\/strong><\\/p>\\r\\n<p>A well designed and decorated salon suite attracts more clients. It will also demonstrate a professional environment for your beauty business.<\\/p>\\r\\n<p><strong>How to choose the right colors for my beauty space?<\\/strong><\\/p>\\r\\n<p>You should keep the colors which are&nbsp; your brand&rsquo;s identity colors. Consider colors which give calmness and comfort to the customers. Usually calming colors are soft and neutral colors.<\\/p>\\r\\n<p><strong>What lighting will be best for the salon suites?<\\/strong><\\/p>\\r\\n<p>Consider lightings which enhance your functions and create a beautiful look in the salon suite. A combination of task, ambient, and accent lighting can provide best illumination for your salon suite.<\\/p>\",\"featured_img\":\"10-secrets-to-make-your-salon-suites-in-woodstock-ga-look-amazing.webp\",\"featured_img_title\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"featured_img_alt\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"meta_title\":\"10 Secrets For Making Salon Suites Amazing In Woodstock, GA\",\"meta_keywords\":null,\"meta_description\":\"Explore 10 secrets for turning your salon suite amazing in Woodstock, GA. Learn how to impress your clients by providing a calm and relaxing atmosphere.\",\"sts\":\"1\",\"count_comments\":0,\"dated\":\"2025-01-02 10:56:08\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"created_at\":\"2025-01-02 10:58:31\",\"updated_at\":\"2025-01-02 11:23:43\",\"deleted_at\":null}','2025-01-02 01:39:06','2025-01-02 01:39:06',NULL),(68,30,'10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing','http://localhost/mlcms/site_files/public/adminmedia/blog-post/30/edit','BlogPost',1,'::1','{\"id\":30,\"author_id\":1,\"author_name\":\"Jawad Abbas\",\"cate_ids\":\"1,8\",\"title\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"post_slug\":\"10-secrets-to-make-your-salon-suites-in-woodstock-ga-look-amazing\",\"description\":\"<h2>Table Of Contents<\\/h2>\\r\\n<ol>\\r\\n<li>Summary<\\/li>\\r\\n<li>Introduction<\\/li>\\r\\n<li>Choose the Right Color Scheme<\\/li>\\r\\n<li>Maximize Natural Light<\\/li>\\r\\n<li>Invest in High Quality Furniture<\\/li>\\r\\n<li>Create a Functional Layout<\\/li>\\r\\n<li>Add Personal Touches and Branding<\\/li>\\r\\n<li>Invest in Quality Lighting<\\/li>\\r\\n<li>Maintaining Cleanliness<\\/li>\\r\\n<li>Creating a Calm Atmosphere with Aromatherapy<\\/li>\\r\\n<li>Using Stylish Storage Solutions<\\/li>\\r\\n<li>Update and Refresh Regularly<\\/li>\\r\\n<li>Conclusion<\\/li>\\r\\n<li>FAQs<\\/li>\\r\\n<\\/ol>\\r\\n<h2>Summary<\\/h2>\\r\\n<p>In this article we will provide tips to make <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Woodstock\\\">salon suites in Woodstock, GA<\\/a> visually perfect and attractive. The focus will be to provide healthy tips for enhancing appearance and customer experience in the salon suites. Moreover the readers will get valuable guidance to perform well in the beauty industry.<\\/p>\\r\\n<h2>Introduction<\\/h2>\\r\\n<p>Salon suites in Woodstock, GA are well equipped and private spaces for beauty professionals. Beauty stylists or professionals rent such spaces to run their beauty business independently. Renting a salon suite is a growing culture among beauty professionals. <a href=\\\"https:\\/\\/maps.app.goo.gl\\/n6x8P68hiea3ynvN7\\\">Renting a salon studio in Woodstock<\\/a> is more cost effective than buying a salon suite. The clients feel more comfortable in those salon suites which are well designed and decorated. Customized well designed spaces provide a professional and welcoming atmosphere to the customers. A salon suite&rsquo;s success is also dependent on the aesthetic environment of the beauty business. In this article you will know about 10 secrets to make your beauty space amazing and more welcoming.<\\/p>\\r\\n<h2>Choose the Right Color Scheme<\\/h2>\\r\\n<p>Color combinations in a beauty business matters to attract the customers. As every color has different features to trigger moods. Colors are also vital to make the atmosphere of the salon suites in Woodstock, GA. The healthy tip in this regard is to always choose the colors which resonate with your services and brand. Depending upon the features of the colors you can select color for your beauty space. For example you can select warm tones for relaxation and bright colors like yellow for energetic looks.<\\/p>\\r\\n<h2>Maximize Natural Light<\\/h2>\\r\\n<p>There is no replacement for natural things. Similarly the feel people can get from natural lights can\'t be got from artificial lightings. Natural light improves the overall feel of the salon suites. It is suggested to place mirrors and furniture to make sure the full flow of the light. Also using sheer curtains in the windows of the salon suite will soften the sunlight. So it is recommended to make use of natural light as much as possible because it will give the natural feel to your beauty space.<\\/p>\\r\\n<h2>Invest in High Quality Furniture<\\/h2>\\r\\n<p>Most of the beauty stylists don&rsquo;t realize the importance of stylish furniture in their salon suites. Customers usually need a comfortable seat while waiting for their turn. It is suggested to invest in durable, comfortable, and stylish furniture. The types of furniture which can elevate the look of your salon suite are vanity tables and stylish chairs. For doing all that you must have a proper knowledge to manage space&rsquo;s storage or you need expert suggestions for storage solutions.<\\/p>\\r\\n<h2>Create a Functional Layout<\\/h2>\\r\\n<p>It is again important to create designated areas for specific functions of a salon suite. It will help you in achieving efficient space to use according to your needs. For example, designate places for hair, makeup, skin treatment, and spa separately. Such a behavior increases to deal and organize smooth operations of salon suites in Woodstock, GA.<\\/p>\\r\\n<h2>Add Personal Touches and Branding<\\/h2>\\r\\n<p>You can decorate your beauty space according to your brand&rsquo;s demands. Use personalized decoration approaches to meet your brand&rsquo;s elements. Your brand elements are your logos and brand colors. If possible, going for personal decors like artwork and plants is a plus. Because it will help to demonstrate unique features of the suite and enhance the overall aesthetics of the salon suite.<\\/p>\\r\\n<h2>Invest in Quality Lighting<\\/h2>\\r\\n<p>Beauty professionals should not overlook the importance of proper lighting in their spaces. The proper lighting helps in enhancing attractiveness and overall functionality of the business. It is suggested to consider LED lights and dimmers for providing a charming look to the customers. Also you can make use of adjustable lamps for a versatile atmosphere.<\\/p>\\r\\n<h2>Maintaining Cleanliness<\\/h2>\\r\\n<p>Cleanliness is one another factor which is of great importance in attracting and maintaining customers to a business. Customers always look for a neat, clean, and hygiene environment. A beauty service meeting all standards of cleanliness builds trust among customers. It is suggested to clean your beauty space i.e. after opening the beauty space and cleaning during the break time.<\\/p>\\r\\n<h2>Creating a Calm Atmosphere with Aromatherapy<\\/h2>\\r\\n<p>Aromatherapy is a useful therapy to provide calmness as the oils used provide much comfort to the customers. The scent used creates an environment which gives a pleasant feel to the clients. You can use scented oils, scented candles, or diffusers to provide an aromatherapy touch in your salon suite. It benefits you to gain customer trust and helps in returning customers to your beauty business.<\\/p>\\r\\n<h2>Using Stylish Storage Solutions<\\/h2>\\r\\n<p>It is important to keep things in an organized manner. There are many ways to keep products and equipment to manage storage. Explore the ideas for proper shelving and cabinets. Some ideas for stylish storage solutions are:<\\/p>\\r\\n<ul>\\r\\n<li>Make use of open or floating shelves to easily access tools.<\\/li>\\r\\n<li>Using a mobile storage cart for combs, brushes and other tools.<\\/li>\\r\\n<li>You can also make use of clean glass jars to store combs, brushes etc.<\\/li>\\r\\n<li>Building custom cabinets may be expensive but it maximizes your storage in small salon suites.<\\/li>\\r\\n<li>Using multifunctional furniture.<\\/li>\\r\\n<li>Glass display cases for placing beauty products.<\\/li>\\r\\n<\\/ul>\\r\\n<h2>Update and Refresh Regularly<\\/h2>\\r\\n<p>It is important to keep everything updated and refreshed in your salon suite. It will also help you to protect your investment in decoration of the salon suite.&nbsp; Beauty&nbsp; professionals should consider updating the artworks and switching decoration pieces when needed. It helps you to be updated with the recent interior decoration trends of salon suites. It is one of the top secrets to maintain your interior updated and looking fresh. This will increase customer satisfaction with the services you provide.<\\/p>\\r\\n<h2>Conclusion<\\/h2>\\r\\n<p>A pleasant and well decorated salon suite provides the best salon experience to the customers. Also a clean and well functional beauty space maintains considerably better flow of the customers. Implementing the 10 secrets can help beauty professionals to grow the customer flow in Woodstock, GA. <a href=\\\"https:\\/\\/www.salonstudios.com\\/locations\\\">Salon suites rental service<\\/a> providers like <a href=\\\"https:\\/\\/www.salonstudios.com\\/\\\">Salon Studios Beauty Mall<\\/a> in Woodstock can help you to rent the best salon suite in Woodstock, GA. You can call at <a href=\\\"tel: 678.951.8230\\\">&ldquo;678.951.8230&rdquo;<\\/a> to discuss your needs if you decide to rent a salon suite for your beauty business in Woodstock. We provide the best salon suites which provide all essentials for client&rsquo;s comfort and business success.<\\/p>\\r\\n<h2>FAQs<\\/h2>\\r\\n<p><strong>What is the top benefit of designing a salon suite in Woodstock, GA?<\\/strong><\\/p>\\r\\n<p>A well designed and decorated salon suite attracts more clients. It will also demonstrate a professional environment for your beauty business.<\\/p>\\r\\n<p><strong>How to choose the right colors for my beauty space?<\\/strong><\\/p>\\r\\n<p>You should keep the colors which are&nbsp; your brand&rsquo;s identity colors. Consider colors which give calmness and comfort to the customers. Usually calming colors are soft and neutral colors.<\\/p>\\r\\n<p><strong>What lighting will be best for the salon suites?<\\/strong><\\/p>\\r\\n<p>Consider lightings which enhance your functions and create a beautiful look in the salon suite. A combination of task, ambient, and accent lighting can provide best illumination for your salon suite.<\\/p>\",\"featured_img\":\"10-secrets-to-make-your-salon-suites-in-woodstock-ga-look-amazing.webp\",\"featured_img_title\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"featured_img_alt\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"meta_title\":\"10 Secrets For Making Salon Suites Amazing In Woodstock, GA\",\"meta_keywords\":null,\"meta_description\":\"Explore 10 secrets for turning your salon suite amazing in Woodstock, GA. Learn how to impress your clients by providing a calm and relaxing atmosphere.\",\"sts\":1,\"is_featured\":\"1\",\"count_comments\":0,\"dated\":\"2025-01-02 10:56:08\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"created_at\":\"2025-01-02 10:58:31\",\"updated_at\":\"2025-01-02 11:39:06\",\"deleted_at\":null}','2025-01-02 01:56:14','2025-01-02 01:56:14',NULL),(69,29,'Tips for Creating a Cozy Atmosphere in Your Salon Suite','http://localhost/mlcms/site_files/public/adminmedia/blog-post/29/edit','BlogPost',1,'::1','{\"id\":29,\"author_id\":1,\"author_name\":\"Jawad Abbas\",\"cate_ids\":\"1,8\",\"title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"post_slug\":\"tips-for-creating-a-cozy-atmosphere-in-your-salon-suite\",\"description\":\"<h2>Table Of Contents<\\/h2>\\r\\n<ul>\\r\\n<li>Summary<\\/li>\\r\\n<li>Introduction<\\/li>\\r\\n<li>Choosing the Right Color<\\/li>\\r\\n<li>Providing Comfortable Furniture<\\/li>\\r\\n<li>Soft Lighting In The Salon<\\/li>\\r\\n<li>Adding Personal Touches<\\/li>\\r\\n<li>Aroma Therapy for Improving Atmosphere<\\/li>\\r\\n<li>Playing Soft Background Music<\\/li>\\r\\n<li>Cleanliness and Organized set up<\\/li>\\r\\n<li>Providing Plush Textiles<\\/li>\\r\\n<li>Use Of Natural Elements<\\/li>\\r\\n<li>Optimizing the Suite&rsquo;s Layout<\\/li>\\r\\n<li>Installing Functional and Stylish Storage<\\/li>\\r\\n<li>Advantages of a Cozy Atmosphere in Salon Suites<\\/li>\\r\\n<li>Conclusion<\\/li>\\r\\n<li>FAQs<\\/li>\\r\\n<\\/ul>\\r\\n<h2>Summary<\\/h2>\\r\\n<p>An inviting and cozy atmosphere helps stylists to enhance the customer&rsquo;s experience at salon suites in Acworth, GA. The article will provide useful tips which are practical to help transform salon suites in Acworth, GA. By focusing on elements like comfort and interior decoration can help for better the client\'s experience.<\\/p>\\r\\n<h2>Introduction<\\/h2>\\r\\n<p>The salon suites with a proper comfortable atmosphere is important for customer satisfaction. It is important that the beauty professionals provide a cozy environment in their <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Acworth\\\">salon suites in Acworth, GA<\\/a>. The salon suite rental trends are increasing in Acworth because of its affordability. The professionals have choices in rental spaces to personalize according to their needs. A cozy environment can positively impact to sustain clients. The beauty experts will know valuable information about the tips to create a cozy environment in their salon suites. Let&rsquo;s now discuss the tips one by one for your salon suite&rsquo;s cozy transformation.<\\/p>\\r\\n<h2>Choosing the Right Color<\\/h2>\\r\\n<p>Selecting the right colors add value to the overall atmosphere of the salon suites. In Acworth the beauty professionals can choose colors matching with their brand colors and logos. The colors also help in switching moods of the clients. Every color has its own unique features to turn different human moods accordingly. For example, for a cozy touch consider warm tones, soft neutrals, and accent colors.<\\/p>\\r\\n<h2>Providing Comfortable Furniture<\\/h2>\\r\\n<p>It is highly recommended to provide high quality furniture for the customers. The customer&rsquo;s comfort during beauty service and waiting matters a lot for their better experience with you. That is why <a href=\\\"https:\\/\\/www.salonstudios.com\\/specialists?select_location=&amp;select_services=&amp;page=1\\\">beauty professionals in Acworth<\\/a> should not overlook the comfort element of their customers and workers.<\\/p>\\r\\n<h2>Soft Lighting In The Salon<\\/h2>\\r\\n<p>The professionals whether renting or owning a salon suite, should consider avoiding the use of harsh lighting. The harsh lights can directly create discomfort for the customers. There are a variety of lighting options which can enhance the customer&rsquo;s experience in your salon suite. Try using lighting which is easily adjustable and creates an intimate and warm setting in the salon suite.<\\/p>\\r\\n<h2>Adding Personal Touches<\\/h2>\\r\\n<p>Personal touches of art play a vital role for creating a charming and cozy atmosphere in the salon suite. It is suggested to designate a wall side or corner for artwork, plants, and decorative items. Such a scheme helps in reflecting your business&rsquo;s style and image.<\\/p>\\r\\n<h2>Aroma Therapy for Improving Atmosphere&nbsp;<\\/h2>\\r\\n<p>It is better for a business to provide a scented environment for the customers. It is suggested to use scented candles, diffusers, and other fragrances for a welcoming environment. It will add value to your services as customers will get beauty services with a well fragrant environment.<\\/p>\\r\\n<h2>Playing Soft Background Music<\\/h2>\\r\\n<p>The music plays a significant role in providing a relaxing environment to the customers. Beauty professionals should choose relaxing playlists to keep an environment of calmness. Suggested tip in this regard is playing light music with custom options for the customers, so that they can play according to their needs.<\\/p>\\r\\n<h2>Cleanliness and Organized set up<\\/h2>\\r\\n<p>It is obvious that clutter can ruin the cozy atmosphere. A clean and tidy environment provides the best vibes to customers for the time they spend in your salon suite. Also a well organized set up of the overall suite also catches customer&rsquo;s attention.<\\/p>\\r\\n<h2>Providing Plush Textiles<\\/h2>\\r\\n<p>The plush textile products like soft cushions and&nbsp; towels can add comfort and warmth to your customers. It is thus recommended to provide them with such items for a luxury experience. The plush items can also help in improving the decoration of the furniture as well.<\\/p>\\r\\n<h2>Use Of Natural Elements<\\/h2>\\r\\n<p>Sometimes natural elements add the aesthetics to any business&rsquo;s appearance. Consider bringing plants and wooden elements to give a natural and earthy feel to your customers. Mostly people are more attached with the natural touches thus adding natural touches is a good option.&nbsp;<\\/p>\\r\\n<h2>Optimizing the Suite&rsquo;s Layout<\\/h2>\\r\\n<p>Arranging the furniture properly can help in maximizing the space for other effective usage. It is recommended to make arrangements for more space without compromising the comfort of the customers. The more space provides the opportunity for addition of more services related to beauty needs of the people.<\\/p>\\r\\n<h2>Installing Functional and Stylish Storage<\\/h2>\\r\\n<p>Another tip for cozy vibes for better customer experience is considering stylish storage. It is important to keep required tools within proper storage to enable installing a proper functional space. Incorporating storage solutions help in keeping an organized space without compromising the comfort.<\\/p>\\r\\n<h2>Advantages of a Cozy Atmosphere in Salon Suites<\\/h2>\\r\\n<p>A salon suite with all cozy touches needed to a customer can add advantages in the services.&nbsp; Some of the most highlighted advantages are discussed briefly below.<\\/p>\\r\\n<h3>Increases Client Comfort<\\/h3>\\r\\n<p>A clean, tidy, and cozy setting provides real comfort to the customers. A salon suite with a proper cozy atmosphere provides ease and relaxed environment to the customers. When there is comfort with beauty services then client flow increases.<\\/p>\\r\\n<h3>Client Retention Increases<\\/h3>\\r\\n<p>Providing all essential comfortable facilities can give an advantage of retaining the customers. Customer satisfaction is a key in client retention. A cozy environment makes customers return for the beauty services in their next time.<\\/p>\\r\\n<h3>Gets Client Referrals<\\/h3>\\r\\n<p>A well maintained and organized cozy salon suite gives benefit of client referrals. The customers recommend such salon suites to their friends and family in Acworth, GA.<\\/p>\\r\\n<h3>Develops a professional Image<\\/h3>\\r\\n<p>A cozy and well designed salon suite enhances your brand and demonstrates your professionalism. A salon suite with all cozy options help in creating long lasting impressions within the customers. It will automatically attract more clients when your business image grows.<\\/p>\\r\\n<h3>Increases Productivity<\\/h3>\\r\\n<p>An environment with cozy options available helps a salon suite owner to increase productivity of the services. Because the beauty professionals feel more relaxed and focus on their primary services. When there will be a focus on delivering best services then it will lead to better performance of the business.<\\/p>\\r\\n<h2>Conclusion<\\/h2>\\r\\n<p>It is a better option to create a cozy atmosphere in salon suites in Acworth, GA. A cozy atmosphere helps to provide customer satisfaction and helps in business success. The salon suites with a focus on color schemes, lighting etc to provide a comfortable environment to the customers. These healthy tips can help the professionals whether they have salon suites on rent or they own one. <a href=\\\"https:\\/\\/www.salonstudios.com\\/\\\">Salon Studios Beauty Mall in Acworth<\\/a> provides the best rental options for the beauty professionals. Salon studios offer salon suites for rent in the prime locations of Acworth. You can call us at &ldquo;<a href=\\\"tel: 678.951.8230\\\">678.951.8230<\\/a>&rdquo; if you want to rent an <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Acworth#:~:text=Studio%20in%20Acworth%2C%20GA\\\">amazing salon suite in Acworth, GA<\\/a>.&nbsp;<\\/p>\\r\\n<h2>FAQs<\\/h2>\\r\\n<p><strong>What is the best color for a cozy salon suite?<\\/strong><\\/p>\\r\\n<p>You can consider the colors like soft neutrals or warm earth tones. These colors help in creating a relaxing atmosphere in the salon suites.<\\/p>\\r\\n<p>&nbsp;<\\/p>\\r\\n<p><strong>How can I make a small salon suite feel cozy?<\\/strong><\\/p>\\r\\n<p>It doesn&rsquo;t matter whether you have a small or large salon suite. You can consider the options of using lighting, luxury furniture, and decorations to make small salon suites feel cozy.<\\/p>\\r\\n<p>&nbsp;<\\/p>\\r\\n<p><strong>How does a cozy atmosphere impact client retention?<\\/strong><\\/p>\\r\\n<p>A clean and cozy salon suite is always a plus to provide a comfortable experience to the customers. A welcoming, fragrant, and comfortable environment helps the clients to feel valued and relaxed. Thus, a cozy atmosphere encourages them to return and give referrals to others.<\\/p>\",\"featured_img\":\"tips-for-creating-a-cozy-atmosphere-in-your-salon-suite.webp\",\"featured_img_title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"featured_img_alt\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_keywords\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_description\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"sts\":1,\"is_featured\":\"0\",\"count_comments\":0,\"dated\":\"2025-01-02 10:53:21\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"created_at\":\"2025-01-02 10:54:31\",\"updated_at\":\"2025-01-02 11:56:12\",\"deleted_at\":null}','2025-01-02 01:56:19','2025-01-02 01:56:19',NULL),(70,30,'10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing','http://localhost/mlcms/site_files/public/adminmedia/blog-post/30/edit','BlogPost',1,'::1','{\"id\":30,\"author_id\":1,\"author_name\":\"Jawad Abbas\",\"cate_ids\":\"1,8\",\"title\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"post_slug\":\"10-secrets-to-make-your-salon-suites-in-woodstock-ga-look-amazing\",\"description\":\"<h2>Table Of Contents<\\/h2>\\r\\n<ol>\\r\\n<li>Summary<\\/li>\\r\\n<li>Introduction<\\/li>\\r\\n<li>Choose the Right Color Scheme<\\/li>\\r\\n<li>Maximize Natural Light<\\/li>\\r\\n<li>Invest in High Quality Furniture<\\/li>\\r\\n<li>Create a Functional Layout<\\/li>\\r\\n<li>Add Personal Touches and Branding<\\/li>\\r\\n<li>Invest in Quality Lighting<\\/li>\\r\\n<li>Maintaining Cleanliness<\\/li>\\r\\n<li>Creating a Calm Atmosphere with Aromatherapy<\\/li>\\r\\n<li>Using Stylish Storage Solutions<\\/li>\\r\\n<li>Update and Refresh Regularly<\\/li>\\r\\n<li>Conclusion<\\/li>\\r\\n<li>FAQs<\\/li>\\r\\n<\\/ol>\\r\\n<h2>Summary<\\/h2>\\r\\n<p>In this article we will provide tips to make <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Woodstock\\\">salon suites in Woodstock, GA<\\/a> visually perfect and attractive. The focus will be to provide healthy tips for enhancing appearance and customer experience in the salon suites. Moreover the readers will get valuable guidance to perform well in the beauty industry.<\\/p>\\r\\n<h2>Introduction<\\/h2>\\r\\n<p>Salon suites in Woodstock, GA are well equipped and private spaces for beauty professionals. Beauty stylists or professionals rent such spaces to run their beauty business independently. Renting a salon suite is a growing culture among beauty professionals. <a href=\\\"https:\\/\\/maps.app.goo.gl\\/n6x8P68hiea3ynvN7\\\">Renting a salon studio in Woodstock<\\/a> is more cost effective than buying a salon suite. The clients feel more comfortable in those salon suites which are well designed and decorated. Customized well designed spaces provide a professional and welcoming atmosphere to the customers. A salon suite&rsquo;s success is also dependent on the aesthetic environment of the beauty business. In this article you will know about 10 secrets to make your beauty space amazing and more welcoming.<\\/p>\\r\\n<h2>Choose the Right Color Scheme<\\/h2>\\r\\n<p>Color combinations in a beauty business matters to attract the customers. As every color has different features to trigger moods. Colors are also vital to make the atmosphere of the salon suites in Woodstock, GA. The healthy tip in this regard is to always choose the colors which resonate with your services and brand. Depending upon the features of the colors you can select color for your beauty space. For example you can select warm tones for relaxation and bright colors like yellow for energetic looks.<\\/p>\\r\\n<h2>Maximize Natural Light<\\/h2>\\r\\n<p>There is no replacement for natural things. Similarly the feel people can get from natural lights can\'t be got from artificial lightings. Natural light improves the overall feel of the salon suites. It is suggested to place mirrors and furniture to make sure the full flow of the light. Also using sheer curtains in the windows of the salon suite will soften the sunlight. So it is recommended to make use of natural light as much as possible because it will give the natural feel to your beauty space.<\\/p>\\r\\n<h2>Invest in High Quality Furniture<\\/h2>\\r\\n<p>Most of the beauty stylists don&rsquo;t realize the importance of stylish furniture in their salon suites. Customers usually need a comfortable seat while waiting for their turn. It is suggested to invest in durable, comfortable, and stylish furniture. The types of furniture which can elevate the look of your salon suite are vanity tables and stylish chairs. For doing all that you must have a proper knowledge to manage space&rsquo;s storage or you need expert suggestions for storage solutions.<\\/p>\\r\\n<h2>Create a Functional Layout<\\/h2>\\r\\n<p>It is again important to create designated areas for specific functions of a salon suite. It will help you in achieving efficient space to use according to your needs. For example, designate places for hair, makeup, skin treatment, and spa separately. Such a behavior increases to deal and organize smooth operations of salon suites in Woodstock, GA.<\\/p>\\r\\n<h2>Add Personal Touches and Branding<\\/h2>\\r\\n<p>You can decorate your beauty space according to your brand&rsquo;s demands. Use personalized decoration approaches to meet your brand&rsquo;s elements. Your brand elements are your logos and brand colors. If possible, going for personal decors like artwork and plants is a plus. Because it will help to demonstrate unique features of the suite and enhance the overall aesthetics of the salon suite.<\\/p>\\r\\n<h2>Invest in Quality Lighting<\\/h2>\\r\\n<p>Beauty professionals should not overlook the importance of proper lighting in their spaces. The proper lighting helps in enhancing attractiveness and overall functionality of the business. It is suggested to consider LED lights and dimmers for providing a charming look to the customers. Also you can make use of adjustable lamps for a versatile atmosphere.<\\/p>\\r\\n<h2>Maintaining Cleanliness<\\/h2>\\r\\n<p>Cleanliness is one another factor which is of great importance in attracting and maintaining customers to a business. Customers always look for a neat, clean, and hygiene environment. A beauty service meeting all standards of cleanliness builds trust among customers. It is suggested to clean your beauty space i.e. after opening the beauty space and cleaning during the break time.<\\/p>\\r\\n<h2>Creating a Calm Atmosphere with Aromatherapy<\\/h2>\\r\\n<p>Aromatherapy is a useful therapy to provide calmness as the oils used provide much comfort to the customers. The scent used creates an environment which gives a pleasant feel to the clients. You can use scented oils, scented candles, or diffusers to provide an aromatherapy touch in your salon suite. It benefits you to gain customer trust and helps in returning customers to your beauty business.<\\/p>\\r\\n<h2>Using Stylish Storage Solutions<\\/h2>\\r\\n<p>It is important to keep things in an organized manner. There are many ways to keep products and equipment to manage storage. Explore the ideas for proper shelving and cabinets. Some ideas for stylish storage solutions are:<\\/p>\\r\\n<ul>\\r\\n<li>Make use of open or floating shelves to easily access tools.<\\/li>\\r\\n<li>Using a mobile storage cart for combs, brushes and other tools.<\\/li>\\r\\n<li>You can also make use of clean glass jars to store combs, brushes etc.<\\/li>\\r\\n<li>Building custom cabinets may be expensive but it maximizes your storage in small salon suites.<\\/li>\\r\\n<li>Using multifunctional furniture.<\\/li>\\r\\n<li>Glass display cases for placing beauty products.<\\/li>\\r\\n<\\/ul>\\r\\n<h2>Update and Refresh Regularly<\\/h2>\\r\\n<p>It is important to keep everything updated and refreshed in your salon suite. It will also help you to protect your investment in decoration of the salon suite.&nbsp; Beauty&nbsp; professionals should consider updating the artworks and switching decoration pieces when needed. It helps you to be updated with the recent interior decoration trends of salon suites. It is one of the top secrets to maintain your interior updated and looking fresh. This will increase customer satisfaction with the services you provide.<\\/p>\\r\\n<h2>Conclusion<\\/h2>\\r\\n<p>A pleasant and well decorated salon suite provides the best salon experience to the customers. Also a clean and well functional beauty space maintains considerably better flow of the customers. Implementing the 10 secrets can help beauty professionals to grow the customer flow in Woodstock, GA. <a href=\\\"https:\\/\\/www.salonstudios.com\\/locations\\\">Salon suites rental service<\\/a> providers like <a href=\\\"https:\\/\\/www.salonstudios.com\\/\\\">Salon Studios Beauty Mall<\\/a> in Woodstock can help you to rent the best salon suite in Woodstock, GA. You can call at <a href=\\\"tel: 678.951.8230\\\">&ldquo;678.951.8230&rdquo;<\\/a> to discuss your needs if you decide to rent a salon suite for your beauty business in Woodstock. We provide the best salon suites which provide all essentials for client&rsquo;s comfort and business success.<\\/p>\\r\\n<h2>FAQs<\\/h2>\\r\\n<p><strong>What is the top benefit of designing a salon suite in Woodstock, GA?<\\/strong><\\/p>\\r\\n<p>A well designed and decorated salon suite attracts more clients. It will also demonstrate a professional environment for your beauty business.<\\/p>\\r\\n<p><strong>How to choose the right colors for my beauty space?<\\/strong><\\/p>\\r\\n<p>You should keep the colors which are&nbsp; your brand&rsquo;s identity colors. Consider colors which give calmness and comfort to the customers. Usually calming colors are soft and neutral colors.<\\/p>\\r\\n<p><strong>What lighting will be best for the salon suites?<\\/strong><\\/p>\\r\\n<p>Consider lightings which enhance your functions and create a beautiful look in the salon suite. A combination of task, ambient, and accent lighting can provide best illumination for your salon suite.<\\/p>\",\"featured_img\":\"10-secrets-to-make-your-salon-suites-in-woodstock-ga-look-amazing.webp\",\"featured_img_title\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"featured_img_alt\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"meta_title\":\"10 Secrets For Making Salon Suites Amazing In Woodstock, GA\",\"meta_keywords\":null,\"meta_description\":\"Explore 10 secrets for turning your salon suite amazing in Woodstock, GA. Learn how to impress your clients by providing a calm and relaxing atmosphere.\",\"sts\":1,\"is_featured\":\"0\",\"count_comments\":0,\"dated\":\"2025-01-02 10:56:08\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"created_at\":\"2025-01-02 10:58:31\",\"updated_at\":\"2025-01-02 11:56:14\",\"deleted_at\":null}','2025-01-02 01:56:21','2025-01-02 01:56:21',NULL),(71,29,'Tips for Creating a Cozy Atmosphere in Your Salon Suite','http://localhost/mlcms/site_files/public/adminmedia/blog/29/edit','BlogPost',1,'::1','{\"id\":29,\"author_id\":\"1\",\"author_name\":\"Jawad Abbas\",\"cate_ids\":\"1,8\",\"title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"post_slug\":\"tips-for-creating-a-cozy-atmosphere-in-your-salon-suite\",\"description\":\"<h2>Table Of Contents<\\/h2>\\r\\n<ul>\\r\\n<li>Summary<\\/li>\\r\\n<li>Introduction<\\/li>\\r\\n<li>Choosing the Right Color<\\/li>\\r\\n<li>Providing Comfortable Furniture<\\/li>\\r\\n<li>Soft Lighting In The Salon<\\/li>\\r\\n<li>Adding Personal Touches<\\/li>\\r\\n<li>Aroma Therapy for Improving Atmosphere<\\/li>\\r\\n<li>Playing Soft Background Music<\\/li>\\r\\n<li>Cleanliness and Organized set up<\\/li>\\r\\n<li>Providing Plush Textiles<\\/li>\\r\\n<li>Use Of Natural Elements<\\/li>\\r\\n<li>Optimizing the Suite&rsquo;s Layout<\\/li>\\r\\n<li>Installing Functional and Stylish Storage<\\/li>\\r\\n<li>Advantages of a Cozy Atmosphere in Salon Suites<\\/li>\\r\\n<li>Conclusion<\\/li>\\r\\n<li>FAQs<\\/li>\\r\\n<\\/ul>\\r\\n<h2>Summary<\\/h2>\\r\\n<p>An inviting and cozy atmosphere helps stylists to enhance the customer&rsquo;s experience at salon suites in Acworth, GA. The article will provide useful tips which are practical to help transform salon suites in Acworth, GA. By focusing on elements like comfort and interior decoration can help for better the client\'s experience.<\\/p>\\r\\n<h2>Introduction<\\/h2>\\r\\n<p>The salon suites with a proper comfortable atmosphere is important for customer satisfaction. It is important that the beauty professionals provide a cozy environment in their <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Acworth\\\">salon suites in Acworth, GA<\\/a>. The salon suite rental trends are increasing in Acworth because of its affordability. The professionals have choices in rental spaces to personalize according to their needs. A cozy environment can positively impact to sustain clients. The beauty experts will know valuable information about the tips to create a cozy environment in their salon suites. Let&rsquo;s now discuss the tips one by one for your salon suite&rsquo;s cozy transformation.<\\/p>\\r\\n<h2>Choosing the Right Color<\\/h2>\\r\\n<p>Selecting the right colors add value to the overall atmosphere of the salon suites. In Acworth the beauty professionals can choose colors matching with their brand colors and logos. The colors also help in switching moods of the clients. Every color has its own unique features to turn different human moods accordingly. For example, for a cozy touch consider warm tones, soft neutrals, and accent colors.<\\/p>\\r\\n<h2>Providing Comfortable Furniture<\\/h2>\\r\\n<p>It is highly recommended to provide high quality furniture for the customers. The customer&rsquo;s comfort during beauty service and waiting matters a lot for their better experience with you. That is why <a href=\\\"https:\\/\\/www.salonstudios.com\\/specialists?select_location=&amp;select_services=&amp;page=1\\\">beauty professionals in Acworth<\\/a> should not overlook the comfort element of their customers and workers.<\\/p>\\r\\n<h2>Soft Lighting In The Salon<\\/h2>\\r\\n<p>The professionals whether renting or owning a salon suite, should consider avoiding the use of harsh lighting. The harsh lights can directly create discomfort for the customers. There are a variety of lighting options which can enhance the customer&rsquo;s experience in your salon suite. Try using lighting which is easily adjustable and creates an intimate and warm setting in the salon suite.<\\/p>\\r\\n<h2>Adding Personal Touches<\\/h2>\\r\\n<p>Personal touches of art play a vital role for creating a charming and cozy atmosphere in the salon suite. It is suggested to designate a wall side or corner for artwork, plants, and decorative items. Such a scheme helps in reflecting your business&rsquo;s style and image.<\\/p>\\r\\n<h2>Aroma Therapy for Improving Atmosphere&nbsp;<\\/h2>\\r\\n<p>It is better for a business to provide a scented environment for the customers. It is suggested to use scented candles, diffusers, and other fragrances for a welcoming environment. It will add value to your services as customers will get beauty services with a well fragrant environment.<\\/p>\\r\\n<h2>Playing Soft Background Music<\\/h2>\\r\\n<p>The music plays a significant role in providing a relaxing environment to the customers. Beauty professionals should choose relaxing playlists to keep an environment of calmness. Suggested tip in this regard is playing light music with custom options for the customers, so that they can play according to their needs.<\\/p>\\r\\n<h2>Cleanliness and Organized set up<\\/h2>\\r\\n<p>It is obvious that clutter can ruin the cozy atmosphere. A clean and tidy environment provides the best vibes to customers for the time they spend in your salon suite. Also a well organized set up of the overall suite also catches customer&rsquo;s attention.<\\/p>\\r\\n<h2>Providing Plush Textiles<\\/h2>\\r\\n<p>The plush textile products like soft cushions and&nbsp; towels can add comfort and warmth to your customers. It is thus recommended to provide them with such items for a luxury experience. The plush items can also help in improving the decoration of the furniture as well.<\\/p>\\r\\n<h2>Use Of Natural Elements<\\/h2>\\r\\n<p>Sometimes natural elements add the aesthetics to any business&rsquo;s appearance. Consider bringing plants and wooden elements to give a natural and earthy feel to your customers. Mostly people are more attached with the natural touches thus adding natural touches is a good option.&nbsp;<\\/p>\\r\\n<h2>Optimizing the Suite&rsquo;s Layout<\\/h2>\\r\\n<p>Arranging the furniture properly can help in maximizing the space for other effective usage. It is recommended to make arrangements for more space without compromising the comfort of the customers. The more space provides the opportunity for addition of more services related to beauty needs of the people.<\\/p>\\r\\n<h2>Installing Functional and Stylish Storage<\\/h2>\\r\\n<p>Another tip for cozy vibes for better customer experience is considering stylish storage. It is important to keep required tools within proper storage to enable installing a proper functional space. Incorporating storage solutions help in keeping an organized space without compromising the comfort.<\\/p>\\r\\n<h2>Advantages of a Cozy Atmosphere in Salon Suites<\\/h2>\\r\\n<p>A salon suite with all cozy touches needed to a customer can add advantages in the services.&nbsp; Some of the most highlighted advantages are discussed briefly below.<\\/p>\\r\\n<h3>Increases Client Comfort<\\/h3>\\r\\n<p>A clean, tidy, and cozy setting provides real comfort to the customers. A salon suite with a proper cozy atmosphere provides ease and relaxed environment to the customers. When there is comfort with beauty services then client flow increases.<\\/p>\\r\\n<h3>Client Retention Increases<\\/h3>\\r\\n<p>Providing all essential comfortable facilities can give an advantage of retaining the customers. Customer satisfaction is a key in client retention. A cozy environment makes customers return for the beauty services in their next time.<\\/p>\\r\\n<h3>Gets Client Referrals<\\/h3>\\r\\n<p>A well maintained and organized cozy salon suite gives benefit of client referrals. The customers recommend such salon suites to their friends and family in Acworth, GA.<\\/p>\\r\\n<h3>Develops a professional Image<\\/h3>\\r\\n<p>A cozy and well designed salon suite enhances your brand and demonstrates your professionalism. A salon suite with all cozy options help in creating long lasting impressions within the customers. It will automatically attract more clients when your business image grows.<\\/p>\\r\\n<h3>Increases Productivity<\\/h3>\\r\\n<p>An environment with cozy options available helps a salon suite owner to increase productivity of the services. Because the beauty professionals feel more relaxed and focus on their primary services. When there will be a focus on delivering best services then it will lead to better performance of the business.<\\/p>\\r\\n<h2>Conclusion<\\/h2>\\r\\n<p>It is a better option to create a cozy atmosphere in salon suites in Acworth, GA. A cozy atmosphere helps to provide customer satisfaction and helps in business success. The salon suites with a focus on color schemes, lighting etc to provide a comfortable environment to the customers. These healthy tips can help the professionals whether they have salon suites on rent or they own one. <a href=\\\"https:\\/\\/www.salonstudios.com\\/\\\">Salon Studios Beauty Mall in Acworth<\\/a> provides the best rental options for the beauty professionals. Salon studios offer salon suites for rent in the prime locations of Acworth. You can call us at &ldquo;<a href=\\\"tel: 678.951.8230\\\">678.951.8230<\\/a>&rdquo; if you want to rent an <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Acworth#:~:text=Studio%20in%20Acworth%2C%20GA\\\">amazing salon suite in Acworth, GA<\\/a>.&nbsp;<\\/p>\\r\\n<h2>FAQs<\\/h2>\\r\\n<p><strong>What is the best color for a cozy salon suite?<\\/strong><\\/p>\\r\\n<p>You can consider the colors like soft neutrals or warm earth tones. These colors help in creating a relaxing atmosphere in the salon suites.<\\/p>\\r\\n<p>&nbsp;<\\/p>\\r\\n<p><strong>How can I make a small salon suite feel cozy?<\\/strong><\\/p>\\r\\n<p>It doesn&rsquo;t matter whether you have a small or large salon suite. You can consider the options of using lighting, luxury furniture, and decorations to make small salon suites feel cozy.<\\/p>\\r\\n<p>&nbsp;<\\/p>\\r\\n<p><strong>How does a cozy atmosphere impact client retention?<\\/strong><\\/p>\\r\\n<p>A clean and cozy salon suite is always a plus to provide a comfortable experience to the customers. A welcoming, fragrant, and comfortable environment helps the clients to feel valued and relaxed. Thus, a cozy atmosphere encourages them to return and give referrals to others.<\\/p>\",\"featured_img\":\"tips-for-creating-a-cozy-atmosphere-in-your-salon-suite.webp\",\"featured_img_title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"featured_img_alt\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_keywords\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_description\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"sts\":\"1\",\"is_featured\":\"1\",\"count_comments\":0,\"dated\":\"2025-01-02 10:53:21\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"created_at\":\"2025-01-02 10:54:31\",\"updated_at\":\"2025-01-02 11:56:19\",\"deleted_at\":null}','2025-01-02 01:57:42','2025-01-02 01:57:42',NULL),(72,30,'10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing','http://localhost/mlcms/site_files/public/adminmedia/blog-post/30/edit','BlogPost',1,'::1','{\"id\":30,\"author_id\":1,\"author_name\":\"Jawad Abbas\",\"cate_ids\":\"1,8\",\"title\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"post_slug\":\"10-secrets-to-make-your-salon-suites-in-woodstock-ga-look-amazing\",\"description\":\"<h2>Table Of Contents<\\/h2>\\r\\n<ol>\\r\\n<li>Summary<\\/li>\\r\\n<li>Introduction<\\/li>\\r\\n<li>Choose the Right Color Scheme<\\/li>\\r\\n<li>Maximize Natural Light<\\/li>\\r\\n<li>Invest in High Quality Furniture<\\/li>\\r\\n<li>Create a Functional Layout<\\/li>\\r\\n<li>Add Personal Touches and Branding<\\/li>\\r\\n<li>Invest in Quality Lighting<\\/li>\\r\\n<li>Maintaining Cleanliness<\\/li>\\r\\n<li>Creating a Calm Atmosphere with Aromatherapy<\\/li>\\r\\n<li>Using Stylish Storage Solutions<\\/li>\\r\\n<li>Update and Refresh Regularly<\\/li>\\r\\n<li>Conclusion<\\/li>\\r\\n<li>FAQs<\\/li>\\r\\n<\\/ol>\\r\\n<h2>Summary<\\/h2>\\r\\n<p>In this article we will provide tips to make <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Woodstock\\\">salon suites in Woodstock, GA<\\/a> visually perfect and attractive. The focus will be to provide healthy tips for enhancing appearance and customer experience in the salon suites. Moreover the readers will get valuable guidance to perform well in the beauty industry.<\\/p>\\r\\n<h2>Introduction<\\/h2>\\r\\n<p>Salon suites in Woodstock, GA are well equipped and private spaces for beauty professionals. Beauty stylists or professionals rent such spaces to run their beauty business independently. Renting a salon suite is a growing culture among beauty professionals. <a href=\\\"https:\\/\\/maps.app.goo.gl\\/n6x8P68hiea3ynvN7\\\">Renting a salon studio in Woodstock<\\/a> is more cost effective than buying a salon suite. The clients feel more comfortable in those salon suites which are well designed and decorated. Customized well designed spaces provide a professional and welcoming atmosphere to the customers. A salon suite&rsquo;s success is also dependent on the aesthetic environment of the beauty business. In this article you will know about 10 secrets to make your beauty space amazing and more welcoming.<\\/p>\\r\\n<h2>Choose the Right Color Scheme<\\/h2>\\r\\n<p>Color combinations in a beauty business matters to attract the customers. As every color has different features to trigger moods. Colors are also vital to make the atmosphere of the salon suites in Woodstock, GA. The healthy tip in this regard is to always choose the colors which resonate with your services and brand. Depending upon the features of the colors you can select color for your beauty space. For example you can select warm tones for relaxation and bright colors like yellow for energetic looks.<\\/p>\\r\\n<h2>Maximize Natural Light<\\/h2>\\r\\n<p>There is no replacement for natural things. Similarly the feel people can get from natural lights can\'t be got from artificial lightings. Natural light improves the overall feel of the salon suites. It is suggested to place mirrors and furniture to make sure the full flow of the light. Also using sheer curtains in the windows of the salon suite will soften the sunlight. So it is recommended to make use of natural light as much as possible because it will give the natural feel to your beauty space.<\\/p>\\r\\n<h2>Invest in High Quality Furniture<\\/h2>\\r\\n<p>Most of the beauty stylists don&rsquo;t realize the importance of stylish furniture in their salon suites. Customers usually need a comfortable seat while waiting for their turn. It is suggested to invest in durable, comfortable, and stylish furniture. The types of furniture which can elevate the look of your salon suite are vanity tables and stylish chairs. For doing all that you must have a proper knowledge to manage space&rsquo;s storage or you need expert suggestions for storage solutions.<\\/p>\\r\\n<h2>Create a Functional Layout<\\/h2>\\r\\n<p>It is again important to create designated areas for specific functions of a salon suite. It will help you in achieving efficient space to use according to your needs. For example, designate places for hair, makeup, skin treatment, and spa separately. Such a behavior increases to deal and organize smooth operations of salon suites in Woodstock, GA.<\\/p>\\r\\n<h2>Add Personal Touches and Branding<\\/h2>\\r\\n<p>You can decorate your beauty space according to your brand&rsquo;s demands. Use personalized decoration approaches to meet your brand&rsquo;s elements. Your brand elements are your logos and brand colors. If possible, going for personal decors like artwork and plants is a plus. Because it will help to demonstrate unique features of the suite and enhance the overall aesthetics of the salon suite.<\\/p>\\r\\n<h2>Invest in Quality Lighting<\\/h2>\\r\\n<p>Beauty professionals should not overlook the importance of proper lighting in their spaces. The proper lighting helps in enhancing attractiveness and overall functionality of the business. It is suggested to consider LED lights and dimmers for providing a charming look to the customers. Also you can make use of adjustable lamps for a versatile atmosphere.<\\/p>\\r\\n<h2>Maintaining Cleanliness<\\/h2>\\r\\n<p>Cleanliness is one another factor which is of great importance in attracting and maintaining customers to a business. Customers always look for a neat, clean, and hygiene environment. A beauty service meeting all standards of cleanliness builds trust among customers. It is suggested to clean your beauty space i.e. after opening the beauty space and cleaning during the break time.<\\/p>\\r\\n<h2>Creating a Calm Atmosphere with Aromatherapy<\\/h2>\\r\\n<p>Aromatherapy is a useful therapy to provide calmness as the oils used provide much comfort to the customers. The scent used creates an environment which gives a pleasant feel to the clients. You can use scented oils, scented candles, or diffusers to provide an aromatherapy touch in your salon suite. It benefits you to gain customer trust and helps in returning customers to your beauty business.<\\/p>\\r\\n<h2>Using Stylish Storage Solutions<\\/h2>\\r\\n<p>It is important to keep things in an organized manner. There are many ways to keep products and equipment to manage storage. Explore the ideas for proper shelving and cabinets. Some ideas for stylish storage solutions are:<\\/p>\\r\\n<ul>\\r\\n<li>Make use of open or floating shelves to easily access tools.<\\/li>\\r\\n<li>Using a mobile storage cart for combs, brushes and other tools.<\\/li>\\r\\n<li>You can also make use of clean glass jars to store combs, brushes etc.<\\/li>\\r\\n<li>Building custom cabinets may be expensive but it maximizes your storage in small salon suites.<\\/li>\\r\\n<li>Using multifunctional furniture.<\\/li>\\r\\n<li>Glass display cases for placing beauty products.<\\/li>\\r\\n<\\/ul>\\r\\n<h2>Update and Refresh Regularly<\\/h2>\\r\\n<p>It is important to keep everything updated and refreshed in your salon suite. It will also help you to protect your investment in decoration of the salon suite.&nbsp; Beauty&nbsp; professionals should consider updating the artworks and switching decoration pieces when needed. It helps you to be updated with the recent interior decoration trends of salon suites. It is one of the top secrets to maintain your interior updated and looking fresh. This will increase customer satisfaction with the services you provide.<\\/p>\\r\\n<h2>Conclusion<\\/h2>\\r\\n<p>A pleasant and well decorated salon suite provides the best salon experience to the customers. Also a clean and well functional beauty space maintains considerably better flow of the customers. Implementing the 10 secrets can help beauty professionals to grow the customer flow in Woodstock, GA. <a href=\\\"https:\\/\\/www.salonstudios.com\\/locations\\\">Salon suites rental service<\\/a> providers like <a href=\\\"https:\\/\\/www.salonstudios.com\\/\\\">Salon Studios Beauty Mall<\\/a> in Woodstock can help you to rent the best salon suite in Woodstock, GA. You can call at <a href=\\\"tel: 678.951.8230\\\">&ldquo;678.951.8230&rdquo;<\\/a> to discuss your needs if you decide to rent a salon suite for your beauty business in Woodstock. We provide the best salon suites which provide all essentials for client&rsquo;s comfort and business success.<\\/p>\\r\\n<h2>FAQs<\\/h2>\\r\\n<p><strong>What is the top benefit of designing a salon suite in Woodstock, GA?<\\/strong><\\/p>\\r\\n<p>A well designed and decorated salon suite attracts more clients. It will also demonstrate a professional environment for your beauty business.<\\/p>\\r\\n<p><strong>How to choose the right colors for my beauty space?<\\/strong><\\/p>\\r\\n<p>You should keep the colors which are&nbsp; your brand&rsquo;s identity colors. Consider colors which give calmness and comfort to the customers. Usually calming colors are soft and neutral colors.<\\/p>\\r\\n<p><strong>What lighting will be best for the salon suites?<\\/strong><\\/p>\\r\\n<p>Consider lightings which enhance your functions and create a beautiful look in the salon suite. A combination of task, ambient, and accent lighting can provide best illumination for your salon suite.<\\/p>\",\"featured_img\":\"10-secrets-to-make-your-salon-suites-in-woodstock-ga-look-amazing.webp\",\"featured_img_title\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"featured_img_alt\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"meta_title\":\"10 Secrets For Making Salon Suites Amazing In Woodstock, GA\",\"meta_keywords\":null,\"meta_description\":\"Explore 10 secrets for turning your salon suite amazing in Woodstock, GA. Learn how to impress your clients by providing a calm and relaxing atmosphere.\",\"sts\":1,\"is_featured\":\"1\",\"count_comments\":0,\"dated\":\"2025-01-02 10:56:08\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"created_at\":\"2025-01-02 10:58:31\",\"updated_at\":\"2025-01-02 11:56:21\",\"deleted_at\":null}','2025-01-02 01:57:47','2025-01-02 01:57:47',NULL),(73,29,'Tips for Creating a Cozy Atmosphere in Your Salon Suite','http://localhost/mlcms/site_files/public/adminmedia/blog/29/edit','BlogPost',1,'::1','{\"id\":29,\"author_id\":\"1\",\"author_name\":\"Jawad Abbas\",\"cate_ids\":\"1,8\",\"title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"post_slug\":\"tips-for-creating-a-cozy-atmosphere-in-your-salon-suite\",\"description\":\"<h2>Table Of Contents<\\/h2>\\r\\n<ul>\\r\\n<li>Summary<\\/li>\\r\\n<li>Introduction<\\/li>\\r\\n<li>Choosing the Right Color<\\/li>\\r\\n<li>Providing Comfortable Furniture<\\/li>\\r\\n<li>Soft Lighting In The Salon<\\/li>\\r\\n<li>Adding Personal Touches<\\/li>\\r\\n<li>Aroma Therapy for Improving Atmosphere<\\/li>\\r\\n<li>Playing Soft Background Music<\\/li>\\r\\n<li>Cleanliness and Organized set up<\\/li>\\r\\n<li>Providing Plush Textiles<\\/li>\\r\\n<li>Use Of Natural Elements<\\/li>\\r\\n<li>Optimizing the Suite&rsquo;s Layout<\\/li>\\r\\n<li>Installing Functional and Stylish Storage<\\/li>\\r\\n<li>Advantages of a Cozy Atmosphere in Salon Suites<\\/li>\\r\\n<li>Conclusion<\\/li>\\r\\n<li>FAQs<\\/li>\\r\\n<\\/ul>\\r\\n<h2>Summary<\\/h2>\\r\\n<p>An inviting and cozy atmosphere helps stylists to enhance the customer&rsquo;s experience at salon suites in Acworth, GA. The article will provide useful tips which are practical to help transform salon suites in Acworth, GA. By focusing on elements like comfort and interior decoration can help for better the client\'s experience.<\\/p>\\r\\n<h2>Introduction<\\/h2>\\r\\n<p>The salon suites with a proper comfortable atmosphere is important for customer satisfaction. It is important that the beauty professionals provide a cozy environment in their <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Acworth\\\">salon suites in Acworth, GA<\\/a>. The salon suite rental trends are increasing in Acworth because of its affordability. The professionals have choices in rental spaces to personalize according to their needs. A cozy environment can positively impact to sustain clients. The beauty experts will know valuable information about the tips to create a cozy environment in their salon suites. Let&rsquo;s now discuss the tips one by one for your salon suite&rsquo;s cozy transformation.<\\/p>\\r\\n<h2>Choosing the Right Color<\\/h2>\\r\\n<p>Selecting the right colors add value to the overall atmosphere of the salon suites. In Acworth the beauty professionals can choose colors matching with their brand colors and logos. The colors also help in switching moods of the clients. Every color has its own unique features to turn different human moods accordingly. For example, for a cozy touch consider warm tones, soft neutrals, and accent colors.<\\/p>\\r\\n<h2>Providing Comfortable Furniture<\\/h2>\\r\\n<p>It is highly recommended to provide high quality furniture for the customers. The customer&rsquo;s comfort during beauty service and waiting matters a lot for their better experience with you. That is why <a href=\\\"https:\\/\\/www.salonstudios.com\\/specialists?select_location=&amp;select_services=&amp;page=1\\\">beauty professionals in Acworth<\\/a> should not overlook the comfort element of their customers and workers.<\\/p>\\r\\n<h2>Soft Lighting In The Salon<\\/h2>\\r\\n<p>The professionals whether renting or owning a salon suite, should consider avoiding the use of harsh lighting. The harsh lights can directly create discomfort for the customers. There are a variety of lighting options which can enhance the customer&rsquo;s experience in your salon suite. Try using lighting which is easily adjustable and creates an intimate and warm setting in the salon suite.<\\/p>\\r\\n<h2>Adding Personal Touches<\\/h2>\\r\\n<p>Personal touches of art play a vital role for creating a charming and cozy atmosphere in the salon suite. It is suggested to designate a wall side or corner for artwork, plants, and decorative items. Such a scheme helps in reflecting your business&rsquo;s style and image.<\\/p>\\r\\n<h2>Aroma Therapy for Improving Atmosphere&nbsp;<\\/h2>\\r\\n<p>It is better for a business to provide a scented environment for the customers. It is suggested to use scented candles, diffusers, and other fragrances for a welcoming environment. It will add value to your services as customers will get beauty services with a well fragrant environment.<\\/p>\\r\\n<h2>Playing Soft Background Music<\\/h2>\\r\\n<p>The music plays a significant role in providing a relaxing environment to the customers. Beauty professionals should choose relaxing playlists to keep an environment of calmness. Suggested tip in this regard is playing light music with custom options for the customers, so that they can play according to their needs.<\\/p>\\r\\n<h2>Cleanliness and Organized set up<\\/h2>\\r\\n<p>It is obvious that clutter can ruin the cozy atmosphere. A clean and tidy environment provides the best vibes to customers for the time they spend in your salon suite. Also a well organized set up of the overall suite also catches customer&rsquo;s attention.<\\/p>\\r\\n<h2>Providing Plush Textiles<\\/h2>\\r\\n<p>The plush textile products like soft cushions and&nbsp; towels can add comfort and warmth to your customers. It is thus recommended to provide them with such items for a luxury experience. The plush items can also help in improving the decoration of the furniture as well.<\\/p>\\r\\n<h2>Use Of Natural Elements<\\/h2>\\r\\n<p>Sometimes natural elements add the aesthetics to any business&rsquo;s appearance. Consider bringing plants and wooden elements to give a natural and earthy feel to your customers. Mostly people are more attached with the natural touches thus adding natural touches is a good option.&nbsp;<\\/p>\\r\\n<h2>Optimizing the Suite&rsquo;s Layout<\\/h2>\\r\\n<p>Arranging the furniture properly can help in maximizing the space for other effective usage. It is recommended to make arrangements for more space without compromising the comfort of the customers. The more space provides the opportunity for addition of more services related to beauty needs of the people.<\\/p>\\r\\n<h2>Installing Functional and Stylish Storage<\\/h2>\\r\\n<p>Another tip for cozy vibes for better customer experience is considering stylish storage. It is important to keep required tools within proper storage to enable installing a proper functional space. Incorporating storage solutions help in keeping an organized space without compromising the comfort.<\\/p>\\r\\n<h2>Advantages of a Cozy Atmosphere in Salon Suites<\\/h2>\\r\\n<p>A salon suite with all cozy touches needed to a customer can add advantages in the services.&nbsp; Some of the most highlighted advantages are discussed briefly below.<\\/p>\\r\\n<h3>Increases Client Comfort<\\/h3>\\r\\n<p>A clean, tidy, and cozy setting provides real comfort to the customers. A salon suite with a proper cozy atmosphere provides ease and relaxed environment to the customers. When there is comfort with beauty services then client flow increases.<\\/p>\\r\\n<h3>Client Retention Increases<\\/h3>\\r\\n<p>Providing all essential comfortable facilities can give an advantage of retaining the customers. Customer satisfaction is a key in client retention. A cozy environment makes customers return for the beauty services in their next time.<\\/p>\\r\\n<h3>Gets Client Referrals<\\/h3>\\r\\n<p>A well maintained and organized cozy salon suite gives benefit of client referrals. The customers recommend such salon suites to their friends and family in Acworth, GA.<\\/p>\\r\\n<h3>Develops a professional Image<\\/h3>\\r\\n<p>A cozy and well designed salon suite enhances your brand and demonstrates your professionalism. A salon suite with all cozy options help in creating long lasting impressions within the customers. It will automatically attract more clients when your business image grows.<\\/p>\\r\\n<h3>Increases Productivity<\\/h3>\\r\\n<p>An environment with cozy options available helps a salon suite owner to increase productivity of the services. Because the beauty professionals feel more relaxed and focus on their primary services. When there will be a focus on delivering best services then it will lead to better performance of the business.<\\/p>\\r\\n<h2>Conclusion<\\/h2>\\r\\n<p>It is a better option to create a cozy atmosphere in salon suites in Acworth, GA. A cozy atmosphere helps to provide customer satisfaction and helps in business success. The salon suites with a focus on color schemes, lighting etc to provide a comfortable environment to the customers. These healthy tips can help the professionals whether they have salon suites on rent or they own one. <a href=\\\"https:\\/\\/www.salonstudios.com\\/\\\">Salon Studios Beauty Mall in Acworth<\\/a> provides the best rental options for the beauty professionals. Salon studios offer salon suites for rent in the prime locations of Acworth. You can call us at &ldquo;<a href=\\\"tel: 678.951.8230\\\">678.951.8230<\\/a>&rdquo; if you want to rent an <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Acworth#:~:text=Studio%20in%20Acworth%2C%20GA\\\">amazing salon suite in Acworth, GA<\\/a>.&nbsp;<\\/p>\\r\\n<h2>FAQs<\\/h2>\\r\\n<p><strong>What is the best color for a cozy salon suite?<\\/strong><\\/p>\\r\\n<p>You can consider the colors like soft neutrals or warm earth tones. These colors help in creating a relaxing atmosphere in the salon suites.<\\/p>\\r\\n<p>&nbsp;<\\/p>\\r\\n<p><strong>How can I make a small salon suite feel cozy?<\\/strong><\\/p>\\r\\n<p>It doesn&rsquo;t matter whether you have a small or large salon suite. You can consider the options of using lighting, luxury furniture, and decorations to make small salon suites feel cozy.<\\/p>\\r\\n<p>&nbsp;<\\/p>\\r\\n<p><strong>How does a cozy atmosphere impact client retention?<\\/strong><\\/p>\\r\\n<p>A clean and cozy salon suite is always a plus to provide a comfortable experience to the customers. A welcoming, fragrant, and comfortable environment helps the clients to feel valued and relaxed. Thus, a cozy atmosphere encourages them to return and give referrals to others.<\\/p>\",\"featured_img\":\"tips-for-creating-a-cozy-atmosphere-in-your-salon-suite.webp\",\"featured_img_title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"featured_img_alt\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_keywords\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_description\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"sts\":\"1\",\"is_featured\":\"1\",\"count_comments\":0,\"dated\":\"2025-01-02 10:53:21\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"tags\":null,\"created_at\":\"2025-01-02 10:54:31\",\"updated_at\":\"2025-01-02 11:57:42\",\"deleted_at\":null}','2025-01-02 03:56:44','2025-01-02 03:56:44',NULL),(74,29,'Tips for Creating a Cozy Atmosphere in Your Salon Suite','http://localhost/mlcms/site_files/public/adminmedia/blog/29/edit','BlogPost',1,'::1','{\"id\":29,\"author_id\":\"1\",\"author_name\":\"Jawad Abbas\",\"cate_ids\":\"1,8\",\"title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"post_slug\":\"tips-for-creating-a-cozy-atmosphere-in-your-salon-suite\",\"description\":\"<h2>Table Of Contents<\\/h2>\\r\\n<ul>\\r\\n<li>Summary<\\/li>\\r\\n<li>Introduction<\\/li>\\r\\n<li>Choosing the Right Color<\\/li>\\r\\n<li>Providing Comfortable Furniture<\\/li>\\r\\n<li>Soft Lighting In The Salon<\\/li>\\r\\n<li>Adding Personal Touches<\\/li>\\r\\n<li>Aroma Therapy for Improving Atmosphere<\\/li>\\r\\n<li>Playing Soft Background Music<\\/li>\\r\\n<li>Cleanliness and Organized set up<\\/li>\\r\\n<li>Providing Plush Textiles<\\/li>\\r\\n<li>Use Of Natural Elements<\\/li>\\r\\n<li>Optimizing the Suite&rsquo;s Layout<\\/li>\\r\\n<li>Installing Functional and Stylish Storage<\\/li>\\r\\n<li>Advantages of a Cozy Atmosphere in Salon Suites<\\/li>\\r\\n<li>Conclusion<\\/li>\\r\\n<li>FAQs<\\/li>\\r\\n<\\/ul>\\r\\n<h2>Summary<\\/h2>\\r\\n<p>An inviting and cozy atmosphere helps stylists to enhance the customer&rsquo;s experience at salon suites in Acworth, GA. The article will provide useful tips which are practical to help transform salon suites in Acworth, GA. By focusing on elements like comfort and interior decoration can help for better the client\'s experience.<\\/p>\\r\\n<h2>Introduction<\\/h2>\\r\\n<p>The salon suites with a proper comfortable atmosphere is important for customer satisfaction. It is important that the beauty professionals provide a cozy environment in their <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Acworth\\\">salon suites in Acworth, GA<\\/a>. The salon suite rental trends are increasing in Acworth because of its affordability. The professionals have choices in rental spaces to personalize according to their needs. A cozy environment can positively impact to sustain clients. The beauty experts will know valuable information about the tips to create a cozy environment in their salon suites. Let&rsquo;s now discuss the tips one by one for your salon suite&rsquo;s cozy transformation.<\\/p>\\r\\n<h2>Choosing the Right Color<\\/h2>\\r\\n<p>Selecting the right colors add value to the overall atmosphere of the salon suites. In Acworth the beauty professionals can choose colors matching with their brand colors and logos. The colors also help in switching moods of the clients. Every color has its own unique features to turn different human moods accordingly. For example, for a cozy touch consider warm tones, soft neutrals, and accent colors.<\\/p>\\r\\n<h2>Providing Comfortable Furniture<\\/h2>\\r\\n<p>It is highly recommended to provide high quality furniture for the customers. The customer&rsquo;s comfort during beauty service and waiting matters a lot for their better experience with you. That is why <a href=\\\"https:\\/\\/www.salonstudios.com\\/specialists?select_location=&amp;select_services=&amp;page=1\\\">beauty professionals in Acworth<\\/a> should not overlook the comfort element of their customers and workers.<\\/p>\\r\\n<h2>Soft Lighting In The Salon<\\/h2>\\r\\n<p>The professionals whether renting or owning a salon suite, should consider avoiding the use of harsh lighting. The harsh lights can directly create discomfort for the customers. There are a variety of lighting options which can enhance the customer&rsquo;s experience in your salon suite. Try using lighting which is easily adjustable and creates an intimate and warm setting in the salon suite.<\\/p>\\r\\n<h2>Adding Personal Touches<\\/h2>\\r\\n<p>Personal touches of art play a vital role for creating a charming and cozy atmosphere in the salon suite. It is suggested to designate a wall side or corner for artwork, plants, and decorative items. Such a scheme helps in reflecting your business&rsquo;s style and image.<\\/p>\\r\\n<h2>Aroma Therapy for Improving Atmosphere&nbsp;<\\/h2>\\r\\n<p>It is better for a business to provide a scented environment for the customers. It is suggested to use scented candles, diffusers, and other fragrances for a welcoming environment. It will add value to your services as customers will get beauty services with a well fragrant environment.<\\/p>\\r\\n<h2>Playing Soft Background Music<\\/h2>\\r\\n<p>The music plays a significant role in providing a relaxing environment to the customers. Beauty professionals should choose relaxing playlists to keep an environment of calmness. Suggested tip in this regard is playing light music with custom options for the customers, so that they can play according to their needs.<\\/p>\\r\\n<h2>Cleanliness and Organized set up<\\/h2>\\r\\n<p>It is obvious that clutter can ruin the cozy atmosphere. A clean and tidy environment provides the best vibes to customers for the time they spend in your salon suite. Also a well organized set up of the overall suite also catches customer&rsquo;s attention.<\\/p>\\r\\n<h2>Providing Plush Textiles<\\/h2>\\r\\n<p>The plush textile products like soft cushions and&nbsp; towels can add comfort and warmth to your customers. It is thus recommended to provide them with such items for a luxury experience. The plush items can also help in improving the decoration of the furniture as well.<\\/p>\\r\\n<h2>Use Of Natural Elements<\\/h2>\\r\\n<p>Sometimes natural elements add the aesthetics to any business&rsquo;s appearance. Consider bringing plants and wooden elements to give a natural and earthy feel to your customers. Mostly people are more attached with the natural touches thus adding natural touches is a good option.&nbsp;<\\/p>\\r\\n<h2>Optimizing the Suite&rsquo;s Layout<\\/h2>\\r\\n<p>Arranging the furniture properly can help in maximizing the space for other effective usage. It is recommended to make arrangements for more space without compromising the comfort of the customers. The more space provides the opportunity for addition of more services related to beauty needs of the people.<\\/p>\\r\\n<h2>Installing Functional and Stylish Storage<\\/h2>\\r\\n<p>Another tip for cozy vibes for better customer experience is considering stylish storage. It is important to keep required tools within proper storage to enable installing a proper functional space. Incorporating storage solutions help in keeping an organized space without compromising the comfort.<\\/p>\\r\\n<h2>Advantages of a Cozy Atmosphere in Salon Suites<\\/h2>\\r\\n<p>A salon suite with all cozy touches needed to a customer can add advantages in the services.&nbsp; Some of the most highlighted advantages are discussed briefly below.<\\/p>\\r\\n<h3>Increases Client Comfort<\\/h3>\\r\\n<p>A clean, tidy, and cozy setting provides real comfort to the customers. A salon suite with a proper cozy atmosphere provides ease and relaxed environment to the customers. When there is comfort with beauty services then client flow increases.<\\/p>\\r\\n<h3>Client Retention Increases<\\/h3>\\r\\n<p>Providing all essential comfortable facilities can give an advantage of retaining the customers. Customer satisfaction is a key in client retention. A cozy environment makes customers return for the beauty services in their next time.<\\/p>\\r\\n<h3>Gets Client Referrals<\\/h3>\\r\\n<p>A well maintained and organized cozy salon suite gives benefit of client referrals. The customers recommend such salon suites to their friends and family in Acworth, GA.<\\/p>\\r\\n<h3>Develops a professional Image<\\/h3>\\r\\n<p>A cozy and well designed salon suite enhances your brand and demonstrates your professionalism. A salon suite with all cozy options help in creating long lasting impressions within the customers. It will automatically attract more clients when your business image grows.<\\/p>\\r\\n<h3>Increases Productivity<\\/h3>\\r\\n<p>An environment with cozy options available helps a salon suite owner to increase productivity of the services. Because the beauty professionals feel more relaxed and focus on their primary services. When there will be a focus on delivering best services then it will lead to better performance of the business.<\\/p>\\r\\n<h2>Conclusion<\\/h2>\\r\\n<p>It is a better option to create a cozy atmosphere in salon suites in Acworth, GA. A cozy atmosphere helps to provide customer satisfaction and helps in business success. The salon suites with a focus on color schemes, lighting etc to provide a comfortable environment to the customers. These healthy tips can help the professionals whether they have salon suites on rent or they own one. <a href=\\\"https:\\/\\/www.salonstudios.com\\/\\\">Salon Studios Beauty Mall in Acworth<\\/a> provides the best rental options for the beauty professionals. Salon studios offer salon suites for rent in the prime locations of Acworth. You can call us at &ldquo;<a href=\\\"tel: 678.951.8230\\\">678.951.8230<\\/a>&rdquo; if you want to rent an <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Acworth#:~:text=Studio%20in%20Acworth%2C%20GA\\\">amazing salon suite in Acworth, GA<\\/a>.&nbsp;<\\/p>\\r\\n<h2>FAQs<\\/h2>\\r\\n<p><strong>What is the best color for a cozy salon suite?<\\/strong><\\/p>\\r\\n<p>You can consider the colors like soft neutrals or warm earth tones. These colors help in creating a relaxing atmosphere in the salon suites.<\\/p>\\r\\n<p>&nbsp;<\\/p>\\r\\n<p><strong>How can I make a small salon suite feel cozy?<\\/strong><\\/p>\\r\\n<p>It doesn&rsquo;t matter whether you have a small or large salon suite. You can consider the options of using lighting, luxury furniture, and decorations to make small salon suites feel cozy.<\\/p>\\r\\n<p>&nbsp;<\\/p>\\r\\n<p><strong>How does a cozy atmosphere impact client retention?<\\/strong><\\/p>\\r\\n<p>A clean and cozy salon suite is always a plus to provide a comfortable experience to the customers. A welcoming, fragrant, and comfortable environment helps the clients to feel valued and relaxed. Thus, a cozy atmosphere encourages them to return and give referrals to others.<\\/p>\",\"featured_img\":\"tips-for-creating-a-cozy-atmosphere-in-your-salon-suite.webp\",\"featured_img_title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"featured_img_alt\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_keywords\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_description\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"sts\":\"1\",\"is_featured\":\"1\",\"count_comments\":0,\"dated\":\"2025-01-02 10:53:21\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"tags\":\",assc,sdcvd\",\"created_at\":\"2025-01-02 10:54:31\",\"updated_at\":\"2025-01-02 11:57:42\",\"deleted_at\":null}','2025-01-02 04:14:30','2025-01-02 04:14:30',NULL),(75,29,'Tips for Creating a Cozy Atmosphere in Your Salon Suite','http://localhost/mlcms/site_files/public/adminmedia/blog/29/edit','BlogPost',1,'::1','{\"id\":29,\"author_id\":\"1\",\"author_name\":\"Jawad Abbas\",\"cate_ids\":\"1,8\",\"title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"post_slug\":\"tips-for-creating-a-cozy-atmosphere-in-your-salon-suite\",\"description\":\"<h2>Table Of Contents<\\/h2>\\r\\n<ul>\\r\\n<li>Summary<\\/li>\\r\\n<li>Introduction<\\/li>\\r\\n<li>Choosing the Right Color<\\/li>\\r\\n<li>Providing Comfortable Furniture<\\/li>\\r\\n<li>Soft Lighting In The Salon<\\/li>\\r\\n<li>Adding Personal Touches<\\/li>\\r\\n<li>Aroma Therapy for Improving Atmosphere<\\/li>\\r\\n<li>Playing Soft Background Music<\\/li>\\r\\n<li>Cleanliness and Organized set up<\\/li>\\r\\n<li>Providing Plush Textiles<\\/li>\\r\\n<li>Use Of Natural Elements<\\/li>\\r\\n<li>Optimizing the Suite&rsquo;s Layout<\\/li>\\r\\n<li>Installing Functional and Stylish Storage<\\/li>\\r\\n<li>Advantages of a Cozy Atmosphere in Salon Suites<\\/li>\\r\\n<li>Conclusion<\\/li>\\r\\n<li>FAQs<\\/li>\\r\\n<\\/ul>\\r\\n<h2>Summary<\\/h2>\\r\\n<p>An inviting and cozy atmosphere helps stylists to enhance the customer&rsquo;s experience at salon suites in Acworth, GA. The article will provide useful tips which are practical to help transform salon suites in Acworth, GA. By focusing on elements like comfort and interior decoration can help for better the client\'s experience.<\\/p>\\r\\n<h2>Introduction<\\/h2>\\r\\n<p>The salon suites with a proper comfortable atmosphere is important for customer satisfaction. It is important that the beauty professionals provide a cozy environment in their <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Acworth\\\">salon suites in Acworth, GA<\\/a>. The salon suite rental trends are increasing in Acworth because of its affordability. The professionals have choices in rental spaces to personalize according to their needs. A cozy environment can positively impact to sustain clients. The beauty experts will know valuable information about the tips to create a cozy environment in their salon suites. Let&rsquo;s now discuss the tips one by one for your salon suite&rsquo;s cozy transformation.<\\/p>\\r\\n<h2>Choosing the Right Color<\\/h2>\\r\\n<p>Selecting the right colors add value to the overall atmosphere of the salon suites. In Acworth the beauty professionals can choose colors matching with their brand colors and logos. The colors also help in switching moods of the clients. Every color has its own unique features to turn different human moods accordingly. For example, for a cozy touch consider warm tones, soft neutrals, and accent colors.<\\/p>\\r\\n<h2>Providing Comfortable Furniture<\\/h2>\\r\\n<p>It is highly recommended to provide high quality furniture for the customers. The customer&rsquo;s comfort during beauty service and waiting matters a lot for their better experience with you. That is why <a href=\\\"https:\\/\\/www.salonstudios.com\\/specialists?select_location=&amp;select_services=&amp;page=1\\\">beauty professionals in Acworth<\\/a> should not overlook the comfort element of their customers and workers.<\\/p>\\r\\n<h2>Soft Lighting In The Salon<\\/h2>\\r\\n<p>The professionals whether renting or owning a salon suite, should consider avoiding the use of harsh lighting. The harsh lights can directly create discomfort for the customers. There are a variety of lighting options which can enhance the customer&rsquo;s experience in your salon suite. Try using lighting which is easily adjustable and creates an intimate and warm setting in the salon suite.<\\/p>\\r\\n<h2>Adding Personal Touches<\\/h2>\\r\\n<p>Personal touches of art play a vital role for creating a charming and cozy atmosphere in the salon suite. It is suggested to designate a wall side or corner for artwork, plants, and decorative items. Such a scheme helps in reflecting your business&rsquo;s style and image.<\\/p>\\r\\n<h2>Aroma Therapy for Improving Atmosphere&nbsp;<\\/h2>\\r\\n<p>It is better for a business to provide a scented environment for the customers. It is suggested to use scented candles, diffusers, and other fragrances for a welcoming environment. It will add value to your services as customers will get beauty services with a well fragrant environment.<\\/p>\\r\\n<h2>Playing Soft Background Music<\\/h2>\\r\\n<p>The music plays a significant role in providing a relaxing environment to the customers. Beauty professionals should choose relaxing playlists to keep an environment of calmness. Suggested tip in this regard is playing light music with custom options for the customers, so that they can play according to their needs.<\\/p>\\r\\n<h2>Cleanliness and Organized set up<\\/h2>\\r\\n<p>It is obvious that clutter can ruin the cozy atmosphere. A clean and tidy environment provides the best vibes to customers for the time they spend in your salon suite. Also a well organized set up of the overall suite also catches customer&rsquo;s attention.<\\/p>\\r\\n<h2>Providing Plush Textiles<\\/h2>\\r\\n<p>The plush textile products like soft cushions and&nbsp; towels can add comfort and warmth to your customers. It is thus recommended to provide them with such items for a luxury experience. The plush items can also help in improving the decoration of the furniture as well.<\\/p>\\r\\n<h2>Use Of Natural Elements<\\/h2>\\r\\n<p>Sometimes natural elements add the aesthetics to any business&rsquo;s appearance. Consider bringing plants and wooden elements to give a natural and earthy feel to your customers. Mostly people are more attached with the natural touches thus adding natural touches is a good option.&nbsp;<\\/p>\\r\\n<h2>Optimizing the Suite&rsquo;s Layout<\\/h2>\\r\\n<p>Arranging the furniture properly can help in maximizing the space for other effective usage. It is recommended to make arrangements for more space without compromising the comfort of the customers. The more space provides the opportunity for addition of more services related to beauty needs of the people.<\\/p>\\r\\n<h2>Installing Functional and Stylish Storage<\\/h2>\\r\\n<p>Another tip for cozy vibes for better customer experience is considering stylish storage. It is important to keep required tools within proper storage to enable installing a proper functional space. Incorporating storage solutions help in keeping an organized space without compromising the comfort.<\\/p>\\r\\n<h2>Advantages of a Cozy Atmosphere in Salon Suites<\\/h2>\\r\\n<p>A salon suite with all cozy touches needed to a customer can add advantages in the services.&nbsp; Some of the most highlighted advantages are discussed briefly below.<\\/p>\\r\\n<h3>Increases Client Comfort<\\/h3>\\r\\n<p>A clean, tidy, and cozy setting provides real comfort to the customers. A salon suite with a proper cozy atmosphere provides ease and relaxed environment to the customers. When there is comfort with beauty services then client flow increases.<\\/p>\\r\\n<h3>Client Retention Increases<\\/h3>\\r\\n<p>Providing all essential comfortable facilities can give an advantage of retaining the customers. Customer satisfaction is a key in client retention. A cozy environment makes customers return for the beauty services in their next time.<\\/p>\\r\\n<h3>Gets Client Referrals<\\/h3>\\r\\n<p>A well maintained and organized cozy salon suite gives benefit of client referrals. The customers recommend such salon suites to their friends and family in Acworth, GA.<\\/p>\\r\\n<h3>Develops a professional Image<\\/h3>\\r\\n<p>A cozy and well designed salon suite enhances your brand and demonstrates your professionalism. A salon suite with all cozy options help in creating long lasting impressions within the customers. It will automatically attract more clients when your business image grows.<\\/p>\\r\\n<h3>Increases Productivity<\\/h3>\\r\\n<p>An environment with cozy options available helps a salon suite owner to increase productivity of the services. Because the beauty professionals feel more relaxed and focus on their primary services. When there will be a focus on delivering best services then it will lead to better performance of the business.<\\/p>\\r\\n<h2>Conclusion<\\/h2>\\r\\n<p>It is a better option to create a cozy atmosphere in salon suites in Acworth, GA. A cozy atmosphere helps to provide customer satisfaction and helps in business success. The salon suites with a focus on color schemes, lighting etc to provide a comfortable environment to the customers. These healthy tips can help the professionals whether they have salon suites on rent or they own one. <a href=\\\"https:\\/\\/www.salonstudios.com\\/\\\">Salon Studios Beauty Mall in Acworth<\\/a> provides the best rental options for the beauty professionals. Salon studios offer salon suites for rent in the prime locations of Acworth. You can call us at &ldquo;<a href=\\\"tel: 678.951.8230\\\">678.951.8230<\\/a>&rdquo; if you want to rent an <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Acworth#:~:text=Studio%20in%20Acworth%2C%20GA\\\">amazing salon suite in Acworth, GA<\\/a>.&nbsp;<\\/p>\\r\\n<h2>FAQs<\\/h2>\\r\\n<p><strong>What is the best color for a cozy salon suite?<\\/strong><\\/p>\\r\\n<p>You can consider the colors like soft neutrals or warm earth tones. These colors help in creating a relaxing atmosphere in the salon suites.<\\/p>\\r\\n<p>&nbsp;<\\/p>\\r\\n<p><strong>How can I make a small salon suite feel cozy?<\\/strong><\\/p>\\r\\n<p>It doesn&rsquo;t matter whether you have a small or large salon suite. You can consider the options of using lighting, luxury furniture, and decorations to make small salon suites feel cozy.<\\/p>\\r\\n<p>&nbsp;<\\/p>\\r\\n<p><strong>How does a cozy atmosphere impact client retention?<\\/strong><\\/p>\\r\\n<p>A clean and cozy salon suite is always a plus to provide a comfortable experience to the customers. A welcoming, fragrant, and comfortable environment helps the clients to feel valued and relaxed. Thus, a cozy atmosphere encourages them to return and give referrals to others.<\\/p>\",\"featured_img\":\"tips-for-creating-a-cozy-atmosphere-in-your-salon-suite.webp\",\"featured_img_title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"featured_img_alt\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_keywords\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_description\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"sts\":\"1\",\"is_featured\":\"1\",\"count_comments\":0,\"dated\":\"2025-01-02 10:53:21\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"tags\":\"assc,sdcvd\",\"created_at\":\"2025-01-02 10:54:31\",\"updated_at\":\"2025-01-02 14:14:30\",\"deleted_at\":null}','2025-01-02 04:14:42','2025-01-02 04:14:42',NULL),(76,29,'Tips for Creating a Cozy Atmosphere in Your Salon Suite','http://localhost/mlcms/site_files/public/adminmedia/blog/29/edit','BlogPost',1,'::1','{\"id\":29,\"author_id\":\"1\",\"author_name\":\"Jawad Abbas\",\"cate_ids\":\"1,8\",\"title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"post_slug\":\"tips-for-creating-a-cozy-atmosphere-in-your-salon-suite\",\"description\":\"<h2>Table Of Contents<\\/h2>\\r\\n<ul>\\r\\n<li>Summary<\\/li>\\r\\n<li>Introduction<\\/li>\\r\\n<li>Choosing the Right Color<\\/li>\\r\\n<li>Providing Comfortable Furniture<\\/li>\\r\\n<li>Soft Lighting In The Salon<\\/li>\\r\\n<li>Adding Personal Touches<\\/li>\\r\\n<li>Aroma Therapy for Improving Atmosphere<\\/li>\\r\\n<li>Playing Soft Background Music<\\/li>\\r\\n<li>Cleanliness and Organized set up<\\/li>\\r\\n<li>Providing Plush Textiles<\\/li>\\r\\n<li>Use Of Natural Elements<\\/li>\\r\\n<li>Optimizing the Suite&rsquo;s Layout<\\/li>\\r\\n<li>Installing Functional and Stylish Storage<\\/li>\\r\\n<li>Advantages of a Cozy Atmosphere in Salon Suites<\\/li>\\r\\n<li>Conclusion<\\/li>\\r\\n<li>FAQs<\\/li>\\r\\n<\\/ul>\\r\\n<h2>Summary<\\/h2>\\r\\n<p>An inviting and cozy atmosphere helps stylists to enhance the customer&rsquo;s experience at salon suites in Acworth, GA. The article will provide useful tips which are practical to help transform salon suites in Acworth, GA. By focusing on elements like comfort and interior decoration can help for better the client\'s experience.<\\/p>\\r\\n<h2>Introduction<\\/h2>\\r\\n<p>The salon suites with a proper comfortable atmosphere is important for customer satisfaction. It is important that the beauty professionals provide a cozy environment in their <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Acworth\\\">salon suites in Acworth, GA<\\/a>. The salon suite rental trends are increasing in Acworth because of its affordability. The professionals have choices in rental spaces to personalize according to their needs. A cozy environment can positively impact to sustain clients. The beauty experts will know valuable information about the tips to create a cozy environment in their salon suites. Let&rsquo;s now discuss the tips one by one for your salon suite&rsquo;s cozy transformation.<\\/p>\\r\\n<h2>Choosing the Right Color<\\/h2>\\r\\n<p>Selecting the right colors add value to the overall atmosphere of the salon suites. In Acworth the beauty professionals can choose colors matching with their brand colors and logos. The colors also help in switching moods of the clients. Every color has its own unique features to turn different human moods accordingly. For example, for a cozy touch consider warm tones, soft neutrals, and accent colors.<\\/p>\\r\\n<h2>Providing Comfortable Furniture<\\/h2>\\r\\n<p>It is highly recommended to provide high quality furniture for the customers. The customer&rsquo;s comfort during beauty service and waiting matters a lot for their better experience with you. That is why <a href=\\\"https:\\/\\/www.salonstudios.com\\/specialists?select_location=&amp;select_services=&amp;page=1\\\">beauty professionals in Acworth<\\/a> should not overlook the comfort element of their customers and workers.<\\/p>\\r\\n<h2>Soft Lighting In The Salon<\\/h2>\\r\\n<p>The professionals whether renting or owning a salon suite, should consider avoiding the use of harsh lighting. The harsh lights can directly create discomfort for the customers. There are a variety of lighting options which can enhance the customer&rsquo;s experience in your salon suite. Try using lighting which is easily adjustable and creates an intimate and warm setting in the salon suite.<\\/p>\\r\\n<h2>Adding Personal Touches<\\/h2>\\r\\n<p>Personal touches of art play a vital role for creating a charming and cozy atmosphere in the salon suite. It is suggested to designate a wall side or corner for artwork, plants, and decorative items. Such a scheme helps in reflecting your business&rsquo;s style and image.<\\/p>\\r\\n<h2>Aroma Therapy for Improving Atmosphere&nbsp;<\\/h2>\\r\\n<p>It is better for a business to provide a scented environment for the customers. It is suggested to use scented candles, diffusers, and other fragrances for a welcoming environment. It will add value to your services as customers will get beauty services with a well fragrant environment.<\\/p>\\r\\n<h2>Playing Soft Background Music<\\/h2>\\r\\n<p>The music plays a significant role in providing a relaxing environment to the customers. Beauty professionals should choose relaxing playlists to keep an environment of calmness. Suggested tip in this regard is playing light music with custom options for the customers, so that they can play according to their needs.<\\/p>\\r\\n<h2>Cleanliness and Organized set up<\\/h2>\\r\\n<p>It is obvious that clutter can ruin the cozy atmosphere. A clean and tidy environment provides the best vibes to customers for the time they spend in your salon suite. Also a well organized set up of the overall suite also catches customer&rsquo;s attention.<\\/p>\\r\\n<h2>Providing Plush Textiles<\\/h2>\\r\\n<p>The plush textile products like soft cushions and&nbsp; towels can add comfort and warmth to your customers. It is thus recommended to provide them with such items for a luxury experience. The plush items can also help in improving the decoration of the furniture as well.<\\/p>\\r\\n<h2>Use Of Natural Elements<\\/h2>\\r\\n<p>Sometimes natural elements add the aesthetics to any business&rsquo;s appearance. Consider bringing plants and wooden elements to give a natural and earthy feel to your customers. Mostly people are more attached with the natural touches thus adding natural touches is a good option.&nbsp;<\\/p>\\r\\n<h2>Optimizing the Suite&rsquo;s Layout<\\/h2>\\r\\n<p>Arranging the furniture properly can help in maximizing the space for other effective usage. It is recommended to make arrangements for more space without compromising the comfort of the customers. The more space provides the opportunity for addition of more services related to beauty needs of the people.<\\/p>\\r\\n<h2>Installing Functional and Stylish Storage<\\/h2>\\r\\n<p>Another tip for cozy vibes for better customer experience is considering stylish storage. It is important to keep required tools within proper storage to enable installing a proper functional space. Incorporating storage solutions help in keeping an organized space without compromising the comfort.<\\/p>\\r\\n<h2>Advantages of a Cozy Atmosphere in Salon Suites<\\/h2>\\r\\n<p>A salon suite with all cozy touches needed to a customer can add advantages in the services.&nbsp; Some of the most highlighted advantages are discussed briefly below.<\\/p>\\r\\n<h3>Increases Client Comfort<\\/h3>\\r\\n<p>A clean, tidy, and cozy setting provides real comfort to the customers. A salon suite with a proper cozy atmosphere provides ease and relaxed environment to the customers. When there is comfort with beauty services then client flow increases.<\\/p>\\r\\n<h3>Client Retention Increases<\\/h3>\\r\\n<p>Providing all essential comfortable facilities can give an advantage of retaining the customers. Customer satisfaction is a key in client retention. A cozy environment makes customers return for the beauty services in their next time.<\\/p>\\r\\n<h3>Gets Client Referrals<\\/h3>\\r\\n<p>A well maintained and organized cozy salon suite gives benefit of client referrals. The customers recommend such salon suites to their friends and family in Acworth, GA.<\\/p>\\r\\n<h3>Develops a professional Image<\\/h3>\\r\\n<p>A cozy and well designed salon suite enhances your brand and demonstrates your professionalism. A salon suite with all cozy options help in creating long lasting impressions within the customers. It will automatically attract more clients when your business image grows.<\\/p>\\r\\n<h3>Increases Productivity<\\/h3>\\r\\n<p>An environment with cozy options available helps a salon suite owner to increase productivity of the services. Because the beauty professionals feel more relaxed and focus on their primary services. When there will be a focus on delivering best services then it will lead to better performance of the business.<\\/p>\\r\\n<h2>Conclusion<\\/h2>\\r\\n<p>It is a better option to create a cozy atmosphere in salon suites in Acworth, GA. A cozy atmosphere helps to provide customer satisfaction and helps in business success. The salon suites with a focus on color schemes, lighting etc to provide a comfortable environment to the customers. These healthy tips can help the professionals whether they have salon suites on rent or they own one. <a href=\\\"https:\\/\\/www.salonstudios.com\\/\\\">Salon Studios Beauty Mall in Acworth<\\/a> provides the best rental options for the beauty professionals. Salon studios offer salon suites for rent in the prime locations of Acworth. You can call us at &ldquo;<a href=\\\"tel: 678.951.8230\\\">678.951.8230<\\/a>&rdquo; if you want to rent an <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Acworth#:~:text=Studio%20in%20Acworth%2C%20GA\\\">amazing salon suite in Acworth, GA<\\/a>.&nbsp;<\\/p>\\r\\n<h2>FAQs<\\/h2>\\r\\n<p><strong>What is the best color for a cozy salon suite?<\\/strong><\\/p>\\r\\n<p>You can consider the colors like soft neutrals or warm earth tones. These colors help in creating a relaxing atmosphere in the salon suites.<\\/p>\\r\\n<p>&nbsp;<\\/p>\\r\\n<p><strong>How can I make a small salon suite feel cozy?<\\/strong><\\/p>\\r\\n<p>It doesn&rsquo;t matter whether you have a small or large salon suite. You can consider the options of using lighting, luxury furniture, and decorations to make small salon suites feel cozy.<\\/p>\\r\\n<p>&nbsp;<\\/p>\\r\\n<p><strong>How does a cozy atmosphere impact client retention?<\\/strong><\\/p>\\r\\n<p>A clean and cozy salon suite is always a plus to provide a comfortable experience to the customers. A welcoming, fragrant, and comfortable environment helps the clients to feel valued and relaxed. Thus, a cozy atmosphere encourages them to return and give referrals to others.<\\/p>\",\"featured_img\":\"tips-for-creating-a-cozy-atmosphere-in-your-salon-suite.webp\",\"featured_img_title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"featured_img_alt\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_keywords\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_description\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"sts\":\"1\",\"is_featured\":\"1\",\"count_comments\":0,\"dated\":\"2025-01-02 10:53:21\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"tags\":\"salon,studios\",\"created_at\":\"2025-01-02 10:54:31\",\"updated_at\":\"2025-01-02 14:14:42\",\"deleted_at\":null}','2025-01-02 04:15:04','2025-01-02 04:15:04',NULL),(77,30,'10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing','http://localhost/mlcms/site_files/public/adminmedia/blog/30/edit','BlogPost',1,'::1','{\"id\":30,\"author_id\":\"1\",\"author_name\":\"Jawad Abbas\",\"cate_ids\":\"1,8\",\"title\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"post_slug\":\"10-secrets-to-make-your-salon-suites-in-woodstock-ga-look-amazing\",\"description\":\"<h2>Table Of Contents<\\/h2>\\r\\n<ol>\\r\\n<li>Summary<\\/li>\\r\\n<li>Introduction<\\/li>\\r\\n<li>Choose the Right Color Scheme<\\/li>\\r\\n<li>Maximize Natural Light<\\/li>\\r\\n<li>Invest in High Quality Furniture<\\/li>\\r\\n<li>Create a Functional Layout<\\/li>\\r\\n<li>Add Personal Touches and Branding<\\/li>\\r\\n<li>Invest in Quality Lighting<\\/li>\\r\\n<li>Maintaining Cleanliness<\\/li>\\r\\n<li>Creating a Calm Atmosphere with Aromatherapy<\\/li>\\r\\n<li>Using Stylish Storage Solutions<\\/li>\\r\\n<li>Update and Refresh Regularly<\\/li>\\r\\n<li>Conclusion<\\/li>\\r\\n<li>FAQs<\\/li>\\r\\n<\\/ol>\\r\\n<h2>Summary<\\/h2>\\r\\n<p>In this article we will provide tips to make <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Woodstock\\\">salon suites in Woodstock, GA<\\/a> visually perfect and attractive. The focus will be to provide healthy tips for enhancing appearance and customer experience in the salon suites. Moreover the readers will get valuable guidance to perform well in the beauty industry.<\\/p>\\r\\n<h2>Introduction<\\/h2>\\r\\n<p>Salon suites in Woodstock, GA are well equipped and private spaces for beauty professionals. Beauty stylists or professionals rent such spaces to run their beauty business independently. Renting a salon suite is a growing culture among beauty professionals. <a href=\\\"https:\\/\\/maps.app.goo.gl\\/n6x8P68hiea3ynvN7\\\">Renting a salon studio in Woodstock<\\/a> is more cost effective than buying a salon suite. The clients feel more comfortable in those salon suites which are well designed and decorated. Customized well designed spaces provide a professional and welcoming atmosphere to the customers. A salon suite&rsquo;s success is also dependent on the aesthetic environment of the beauty business. In this article you will know about 10 secrets to make your beauty space amazing and more welcoming.<\\/p>\\r\\n<h2>Choose the Right Color Scheme<\\/h2>\\r\\n<p>Color combinations in a beauty business matters to attract the customers. As every color has different features to trigger moods. Colors are also vital to make the atmosphere of the salon suites in Woodstock, GA. The healthy tip in this regard is to always choose the colors which resonate with your services and brand. Depending upon the features of the colors you can select color for your beauty space. For example you can select warm tones for relaxation and bright colors like yellow for energetic looks.<\\/p>\\r\\n<h2>Maximize Natural Light<\\/h2>\\r\\n<p>There is no replacement for natural things. Similarly the feel people can get from natural lights can\'t be got from artificial lightings. Natural light improves the overall feel of the salon suites. It is suggested to place mirrors and furniture to make sure the full flow of the light. Also using sheer curtains in the windows of the salon suite will soften the sunlight. So it is recommended to make use of natural light as much as possible because it will give the natural feel to your beauty space.<\\/p>\\r\\n<h2>Invest in High Quality Furniture<\\/h2>\\r\\n<p>Most of the beauty stylists don&rsquo;t realize the importance of stylish furniture in their salon suites. Customers usually need a comfortable seat while waiting for their turn. It is suggested to invest in durable, comfortable, and stylish furniture. The types of furniture which can elevate the look of your salon suite are vanity tables and stylish chairs. For doing all that you must have a proper knowledge to manage space&rsquo;s storage or you need expert suggestions for storage solutions.<\\/p>\\r\\n<h2>Create a Functional Layout<\\/h2>\\r\\n<p>It is again important to create designated areas for specific functions of a salon suite. It will help you in achieving efficient space to use according to your needs. For example, designate places for hair, makeup, skin treatment, and spa separately. Such a behavior increases to deal and organize smooth operations of salon suites in Woodstock, GA.<\\/p>\\r\\n<h2>Add Personal Touches and Branding<\\/h2>\\r\\n<p>You can decorate your beauty space according to your brand&rsquo;s demands. Use personalized decoration approaches to meet your brand&rsquo;s elements. Your brand elements are your logos and brand colors. If possible, going for personal decors like artwork and plants is a plus. Because it will help to demonstrate unique features of the suite and enhance the overall aesthetics of the salon suite.<\\/p>\\r\\n<h2>Invest in Quality Lighting<\\/h2>\\r\\n<p>Beauty professionals should not overlook the importance of proper lighting in their spaces. The proper lighting helps in enhancing attractiveness and overall functionality of the business. It is suggested to consider LED lights and dimmers for providing a charming look to the customers. Also you can make use of adjustable lamps for a versatile atmosphere.<\\/p>\\r\\n<h2>Maintaining Cleanliness<\\/h2>\\r\\n<p>Cleanliness is one another factor which is of great importance in attracting and maintaining customers to a business. Customers always look for a neat, clean, and hygiene environment. A beauty service meeting all standards of cleanliness builds trust among customers. It is suggested to clean your beauty space i.e. after opening the beauty space and cleaning during the break time.<\\/p>\\r\\n<h2>Creating a Calm Atmosphere with Aromatherapy<\\/h2>\\r\\n<p>Aromatherapy is a useful therapy to provide calmness as the oils used provide much comfort to the customers. The scent used creates an environment which gives a pleasant feel to the clients. You can use scented oils, scented candles, or diffusers to provide an aromatherapy touch in your salon suite. It benefits you to gain customer trust and helps in returning customers to your beauty business.<\\/p>\\r\\n<h2>Using Stylish Storage Solutions<\\/h2>\\r\\n<p>It is important to keep things in an organized manner. There are many ways to keep products and equipment to manage storage. Explore the ideas for proper shelving and cabinets. Some ideas for stylish storage solutions are:<\\/p>\\r\\n<ul>\\r\\n<li>Make use of open or floating shelves to easily access tools.<\\/li>\\r\\n<li>Using a mobile storage cart for combs, brushes and other tools.<\\/li>\\r\\n<li>You can also make use of clean glass jars to store combs, brushes etc.<\\/li>\\r\\n<li>Building custom cabinets may be expensive but it maximizes your storage in small salon suites.<\\/li>\\r\\n<li>Using multifunctional furniture.<\\/li>\\r\\n<li>Glass display cases for placing beauty products.<\\/li>\\r\\n<\\/ul>\\r\\n<h2>Update and Refresh Regularly<\\/h2>\\r\\n<p>It is important to keep everything updated and refreshed in your salon suite. It will also help you to protect your investment in decoration of the salon suite.&nbsp; Beauty&nbsp; professionals should consider updating the artworks and switching decoration pieces when needed. It helps you to be updated with the recent interior decoration trends of salon suites. It is one of the top secrets to maintain your interior updated and looking fresh. This will increase customer satisfaction with the services you provide.<\\/p>\\r\\n<h2>Conclusion<\\/h2>\\r\\n<p>A pleasant and well decorated salon suite provides the best salon experience to the customers. Also a clean and well functional beauty space maintains considerably better flow of the customers. Implementing the 10 secrets can help beauty professionals to grow the customer flow in Woodstock, GA. <a href=\\\"https:\\/\\/www.salonstudios.com\\/locations\\\">Salon suites rental service<\\/a> providers like <a href=\\\"https:\\/\\/www.salonstudios.com\\/\\\">Salon Studios Beauty Mall<\\/a> in Woodstock can help you to rent the best salon suite in Woodstock, GA. You can call at <a href=\\\"tel: 678.951.8230\\\">&ldquo;678.951.8230&rdquo;<\\/a> to discuss your needs if you decide to rent a salon suite for your beauty business in Woodstock. We provide the best salon suites which provide all essentials for client&rsquo;s comfort and business success.<\\/p>\\r\\n<h2>FAQs<\\/h2>\\r\\n<p><strong>What is the top benefit of designing a salon suite in Woodstock, GA?<\\/strong><\\/p>\\r\\n<p>A well designed and decorated salon suite attracts more clients. It will also demonstrate a professional environment for your beauty business.<\\/p>\\r\\n<p><strong>How to choose the right colors for my beauty space?<\\/strong><\\/p>\\r\\n<p>You should keep the colors which are&nbsp; your brand&rsquo;s identity colors. Consider colors which give calmness and comfort to the customers. Usually calming colors are soft and neutral colors.<\\/p>\\r\\n<p><strong>What lighting will be best for the salon suites?<\\/strong><\\/p>\\r\\n<p>Consider lightings which enhance your functions and create a beautiful look in the salon suite. A combination of task, ambient, and accent lighting can provide best illumination for your salon suite.<\\/p>\",\"featured_img\":\"10-secrets-to-make-your-salon-suites-in-woodstock-ga-look-amazing.webp\",\"featured_img_title\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"featured_img_alt\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"meta_title\":\"10 Secrets For Making Salon Suites Amazing In Woodstock, GA\",\"meta_keywords\":null,\"meta_description\":\"Explore 10 secrets for turning your salon suite amazing in Woodstock, GA. Learn how to impress your clients by providing a calm and relaxing atmosphere.\",\"sts\":\"1\",\"is_featured\":\"1\",\"count_comments\":0,\"dated\":\"2025-01-02 10:56:08\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"tags\":\"salon,studios\",\"created_at\":\"2025-01-02 10:58:31\",\"updated_at\":\"2025-01-02 11:57:47\",\"deleted_at\":null}','2025-01-02 04:19:20','2025-01-02 04:19:20',NULL),(78,29,'Tips for Creating a Cozy Atmosphere in Your Salon Suite','http://localhost/mlcms/site_files/public/adminmedia/blog/29/edit','BlogPost',1,'::1','{\"id\":29,\"author_id\":\"1\",\"author_name\":\"Jawad Abbas\",\"cate_ids\":\"1,8\",\"title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"post_slug\":\"tips-for-creating-a-cozy-atmosphere-in-your-salon-suite\",\"description\":\"<h2>Table Of Contents<\\/h2>\\r\\n<ul>\\r\\n<li>Summary<\\/li>\\r\\n<li>Introduction<\\/li>\\r\\n<li>Choosing the Right Color<\\/li>\\r\\n<li>Providing Comfortable Furniture<\\/li>\\r\\n<li>Soft Lighting In The Salon<\\/li>\\r\\n<li>Adding Personal Touches<\\/li>\\r\\n<li>Aroma Therapy for Improving Atmosphere<\\/li>\\r\\n<li>Playing Soft Background Music<\\/li>\\r\\n<li>Cleanliness and Organized set up<\\/li>\\r\\n<li>Providing Plush Textiles<\\/li>\\r\\n<li>Use Of Natural Elements<\\/li>\\r\\n<li>Optimizing the Suite&rsquo;s Layout<\\/li>\\r\\n<li>Installing Functional and Stylish Storage<\\/li>\\r\\n<li>Advantages of a Cozy Atmosphere in Salon Suites<\\/li>\\r\\n<li>Conclusion<\\/li>\\r\\n<li>FAQs<\\/li>\\r\\n<\\/ul>\\r\\n<h2>Summary<\\/h2>\\r\\n<p>An inviting and cozy atmosphere helps stylists to enhance the customer&rsquo;s experience at salon suites in Acworth, GA. The article will provide useful tips which are practical to help transform salon suites in Acworth, GA. By focusing on elements like comfort and interior decoration can help for better the client\'s experience.<\\/p>\\r\\n<h2>Introduction<\\/h2>\\r\\n<p>The salon suites with a proper comfortable atmosphere is important for customer satisfaction. It is important that the beauty professionals provide a cozy environment in their <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Acworth\\\">salon suites in Acworth, GA<\\/a>. The salon suite rental trends are increasing in Acworth because of its affordability. The professionals have choices in rental spaces to personalize according to their needs. A cozy environment can positively impact to sustain clients. The beauty experts will know valuable information about the tips to create a cozy environment in their salon suites. Let&rsquo;s now discuss the tips one by one for your salon suite&rsquo;s cozy transformation.<\\/p>\\r\\n<h2>Choosing the Right Color<\\/h2>\\r\\n<p>Selecting the right colors add value to the overall atmosphere of the salon suites. In Acworth the beauty professionals can choose colors matching with their brand colors and logos. The colors also help in switching moods of the clients. Every color has its own unique features to turn different human moods accordingly. For example, for a cozy touch consider warm tones, soft neutrals, and accent colors.<\\/p>\\r\\n<h2>Providing Comfortable Furniture<\\/h2>\\r\\n<p>It is highly recommended to provide high quality furniture for the customers. The customer&rsquo;s comfort during beauty service and waiting matters a lot for their better experience with you. That is why <a href=\\\"https:\\/\\/www.salonstudios.com\\/specialists?select_location=&amp;select_services=&amp;page=1\\\">beauty professionals in Acworth<\\/a> should not overlook the comfort element of their customers and workers.<\\/p>\\r\\n<h2>Soft Lighting In The Salon<\\/h2>\\r\\n<p>The professionals whether renting or owning a salon suite, should consider avoiding the use of harsh lighting. The harsh lights can directly create discomfort for the customers. There are a variety of lighting options which can enhance the customer&rsquo;s experience in your salon suite. Try using lighting which is easily adjustable and creates an intimate and warm setting in the salon suite.<\\/p>\\r\\n<h2>Adding Personal Touches<\\/h2>\\r\\n<p>Personal touches of art play a vital role for creating a charming and cozy atmosphere in the salon suite. It is suggested to designate a wall side or corner for artwork, plants, and decorative items. Such a scheme helps in reflecting your business&rsquo;s style and image.<\\/p>\\r\\n<h2>Aroma Therapy for Improving Atmosphere&nbsp;<\\/h2>\\r\\n<p>It is better for a business to provide a scented environment for the customers. It is suggested to use scented candles, diffusers, and other fragrances for a welcoming environment. It will add value to your services as customers will get beauty services with a well fragrant environment.<\\/p>\\r\\n<h2>Playing Soft Background Music<\\/h2>\\r\\n<p>The music plays a significant role in providing a relaxing environment to the customers. Beauty professionals should choose relaxing playlists to keep an environment of calmness. Suggested tip in this regard is playing light music with custom options for the customers, so that they can play according to their needs.<\\/p>\\r\\n<h2>Cleanliness and Organized set up<\\/h2>\\r\\n<p>It is obvious that clutter can ruin the cozy atmosphere. A clean and tidy environment provides the best vibes to customers for the time they spend in your salon suite. Also a well organized set up of the overall suite also catches customer&rsquo;s attention.<\\/p>\\r\\n<h2>Providing Plush Textiles<\\/h2>\\r\\n<p>The plush textile products like soft cushions and&nbsp; towels can add comfort and warmth to your customers. It is thus recommended to provide them with such items for a luxury experience. The plush items can also help in improving the decoration of the furniture as well.<\\/p>\\r\\n<h2>Use Of Natural Elements<\\/h2>\\r\\n<p>Sometimes natural elements add the aesthetics to any business&rsquo;s appearance. Consider bringing plants and wooden elements to give a natural and earthy feel to your customers. Mostly people are more attached with the natural touches thus adding natural touches is a good option.&nbsp;<\\/p>\\r\\n<h2>Optimizing the Suite&rsquo;s Layout<\\/h2>\\r\\n<p>Arranging the furniture properly can help in maximizing the space for other effective usage. It is recommended to make arrangements for more space without compromising the comfort of the customers. The more space provides the opportunity for addition of more services related to beauty needs of the people.<\\/p>\\r\\n<h2>Installing Functional and Stylish Storage<\\/h2>\\r\\n<p>Another tip for cozy vibes for better customer experience is considering stylish storage. It is important to keep required tools within proper storage to enable installing a proper functional space. Incorporating storage solutions help in keeping an organized space without compromising the comfort.<\\/p>\\r\\n<h2>Advantages of a Cozy Atmosphere in Salon Suites<\\/h2>\\r\\n<p>A salon suite with all cozy touches needed to a customer can add advantages in the services.&nbsp; Some of the most highlighted advantages are discussed briefly below.<\\/p>\\r\\n<h3>Increases Client Comfort<\\/h3>\\r\\n<p>A clean, tidy, and cozy setting provides real comfort to the customers. A salon suite with a proper cozy atmosphere provides ease and relaxed environment to the customers. When there is comfort with beauty services then client flow increases.<\\/p>\\r\\n<h3>Client Retention Increases<\\/h3>\\r\\n<p>Providing all essential comfortable facilities can give an advantage of retaining the customers. Customer satisfaction is a key in client retention. A cozy environment makes customers return for the beauty services in their next time.<\\/p>\\r\\n<h3>Gets Client Referrals<\\/h3>\\r\\n<p>A well maintained and organized cozy salon suite gives benefit of client referrals. The customers recommend such salon suites to their friends and family in Acworth, GA.<\\/p>\\r\\n<h3>Develops a professional Image<\\/h3>\\r\\n<p>A cozy and well designed salon suite enhances your brand and demonstrates your professionalism. A salon suite with all cozy options help in creating long lasting impressions within the customers. It will automatically attract more clients when your business image grows.<\\/p>\\r\\n<h3>Increases Productivity<\\/h3>\\r\\n<p>An environment with cozy options available helps a salon suite owner to increase productivity of the services. Because the beauty professionals feel more relaxed and focus on their primary services. When there will be a focus on delivering best services then it will lead to better performance of the business.<\\/p>\\r\\n<h2>Conclusion<\\/h2>\\r\\n<p>It is a better option to create a cozy atmosphere in salon suites in Acworth, GA. A cozy atmosphere helps to provide customer satisfaction and helps in business success. The salon suites with a focus on color schemes, lighting etc to provide a comfortable environment to the customers. These healthy tips can help the professionals whether they have salon suites on rent or they own one. <a href=\\\"https:\\/\\/www.salonstudios.com\\/\\\">Salon Studios Beauty Mall in Acworth<\\/a> provides the best rental options for the beauty professionals. Salon studios offer salon suites for rent in the prime locations of Acworth. You can call us at &ldquo;<a href=\\\"tel: 678.951.8230\\\">678.951.8230<\\/a>&rdquo; if you want to rent an <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Acworth#:~:text=Studio%20in%20Acworth%2C%20GA\\\">amazing salon suite in Acworth, GA<\\/a>.&nbsp;<\\/p>\\r\\n<h2>FAQs<\\/h2>\\r\\n<p><strong>What is the best color for a cozy salon suite?<\\/strong><\\/p>\\r\\n<p>You can consider the colors like soft neutrals or warm earth tones. These colors help in creating a relaxing atmosphere in the salon suites.<\\/p>\\r\\n<p>&nbsp;<\\/p>\\r\\n<p><strong>How can I make a small salon suite feel cozy?<\\/strong><\\/p>\\r\\n<p>It doesn&rsquo;t matter whether you have a small or large salon suite. You can consider the options of using lighting, luxury furniture, and decorations to make small salon suites feel cozy.<\\/p>\\r\\n<p>&nbsp;<\\/p>\\r\\n<p><strong>How does a cozy atmosphere impact client retention?<\\/strong><\\/p>\\r\\n<p>A clean and cozy salon suite is always a plus to provide a comfortable experience to the customers. A welcoming, fragrant, and comfortable environment helps the clients to feel valued and relaxed. Thus, a cozy atmosphere encourages them to return and give referrals to others.<\\/p>\",\"featured_img\":\"tips-for-creating-a-cozy-atmosphere-in-your-salon-suite.webp\",\"featured_img_title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"featured_img_alt\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_keywords\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_description\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"sts\":\"1\",\"is_featured\":\"1\",\"count_comments\":0,\"dated\":\"2025-01-02 10:53:21\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"tags\":\"\",\"created_at\":\"2025-01-02 10:54:31\",\"updated_at\":\"2025-01-02 14:15:04\",\"deleted_at\":null}','2025-01-02 04:57:40','2025-01-02 04:57:40',NULL),(79,29,'Tips for Creating a Cozy Atmosphere in Your Salon Suite','http://localhost/mlcms/site_files/public/adminmedia/blog/29/edit','BlogPost',1,'::1','{\"id\":29,\"author_id\":\"1\",\"author_name\":\"Jawad Abbas\",\"cate_ids\":\"1,8\",\"title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"post_slug\":\"tips-for-creating-a-cozy-atmosphere-in-your-salon-suite\",\"description\":\"<h2>Table Of Contents<\\/h2>\\r\\n<ul>\\r\\n<li>Summary<\\/li>\\r\\n<li>Introduction<\\/li>\\r\\n<li>Choosing the Right Color<\\/li>\\r\\n<li>Providing Comfortable Furniture<\\/li>\\r\\n<li>Soft Lighting In The Salon<\\/li>\\r\\n<li>Adding Personal Touches<\\/li>\\r\\n<li>Aroma Therapy for Improving Atmosphere<\\/li>\\r\\n<li>Playing Soft Background Music<\\/li>\\r\\n<li>Cleanliness and Organized set up<\\/li>\\r\\n<li>Providing Plush Textiles<\\/li>\\r\\n<li>Use Of Natural Elements<\\/li>\\r\\n<li>Optimizing the Suite&rsquo;s Layout<\\/li>\\r\\n<li>Installing Functional and Stylish Storage<\\/li>\\r\\n<li>Advantages of a Cozy Atmosphere in Salon Suites<\\/li>\\r\\n<li>Conclusion<\\/li>\\r\\n<li>FAQs<\\/li>\\r\\n<\\/ul>\\r\\n<h2>Summary<\\/h2>\\r\\n<p>An inviting and cozy atmosphere helps stylists to enhance the customer&rsquo;s experience at salon suites in Acworth, GA. The article will provide useful tips which are practical to help transform salon suites in Acworth, GA. By focusing on elements like comfort and interior decoration can help for better the client\'s experience.<\\/p>\\r\\n<h2>Introduction<\\/h2>\\r\\n<p>The salon suites with a proper comfortable atmosphere is important for customer satisfaction. It is important that the beauty professionals provide a cozy environment in their <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Acworth\\\">salon suites in Acworth, GA<\\/a>. The salon suite rental trends are increasing in Acworth because of its affordability. The professionals have choices in rental spaces to personalize according to their needs. A cozy environment can positively impact to sustain clients. The beauty experts will know valuable information about the tips to create a cozy environment in their salon suites. Let&rsquo;s now discuss the tips one by one for your salon suite&rsquo;s cozy transformation.<\\/p>\\r\\n<h2>Choosing the Right Color<\\/h2>\\r\\n<p>Selecting the right colors add value to the overall atmosphere of the salon suites. In Acworth the beauty professionals can choose colors matching with their brand colors and logos. The colors also help in switching moods of the clients. Every color has its own unique features to turn different human moods accordingly. For example, for a cozy touch consider warm tones, soft neutrals, and accent colors.<\\/p>\\r\\n<h2>Providing Comfortable Furniture<\\/h2>\\r\\n<p>It is highly recommended to provide high quality furniture for the customers. The customer&rsquo;s comfort during beauty service and waiting matters a lot for their better experience with you. That is why <a href=\\\"https:\\/\\/www.salonstudios.com\\/specialists?select_location=&amp;select_services=&amp;page=1\\\">beauty professionals in Acworth<\\/a> should not overlook the comfort element of their customers and workers.<\\/p>\\r\\n<h2>Soft Lighting In The Salon<\\/h2>\\r\\n<p>The professionals whether renting or owning a salon suite, should consider avoiding the use of harsh lighting. The harsh lights can directly create discomfort for the customers. There are a variety of lighting options which can enhance the customer&rsquo;s experience in your salon suite. Try using lighting which is easily adjustable and creates an intimate and warm setting in the salon suite.<\\/p>\\r\\n<h2>Adding Personal Touches<\\/h2>\\r\\n<p>Personal touches of art play a vital role for creating a charming and cozy atmosphere in the salon suite. It is suggested to designate a wall side or corner for artwork, plants, and decorative items. Such a scheme helps in reflecting your business&rsquo;s style and image.<\\/p>\\r\\n<h2>Aroma Therapy for Improving Atmosphere&nbsp;<\\/h2>\\r\\n<p>It is better for a business to provide a scented environment for the customers. It is suggested to use scented candles, diffusers, and other fragrances for a welcoming environment. It will add value to your services as customers will get beauty services with a well fragrant environment.<\\/p>\\r\\n<h2>Playing Soft Background Music<\\/h2>\\r\\n<p>The music plays a significant role in providing a relaxing environment to the customers. Beauty professionals should choose relaxing playlists to keep an environment of calmness. Suggested tip in this regard is playing light music with custom options for the customers, so that they can play according to their needs.<\\/p>\\r\\n<h2>Cleanliness and Organized set up<\\/h2>\\r\\n<p>It is obvious that clutter can ruin the cozy atmosphere. A clean and tidy environment provides the best vibes to customers for the time they spend in your salon suite. Also a well organized set up of the overall suite also catches customer&rsquo;s attention.<\\/p>\\r\\n<h2>Providing Plush Textiles<\\/h2>\\r\\n<p>The plush textile products like soft cushions and&nbsp; towels can add comfort and warmth to your customers. It is thus recommended to provide them with such items for a luxury experience. The plush items can also help in improving the decoration of the furniture as well.<\\/p>\\r\\n<h2>Use Of Natural Elements<\\/h2>\\r\\n<p>Sometimes natural elements add the aesthetics to any business&rsquo;s appearance. Consider bringing plants and wooden elements to give a natural and earthy feel to your customers. Mostly people are more attached with the natural touches thus adding natural touches is a good option.&nbsp;<\\/p>\\r\\n<h2>Optimizing the Suite&rsquo;s Layout<\\/h2>\\r\\n<p>Arranging the furniture properly can help in maximizing the space for other effective usage. It is recommended to make arrangements for more space without compromising the comfort of the customers. The more space provides the opportunity for addition of more services related to beauty needs of the people.<\\/p>\\r\\n<h2>Installing Functional and Stylish Storage<\\/h2>\\r\\n<p>Another tip for cozy vibes for better customer experience is considering stylish storage. It is important to keep required tools within proper storage to enable installing a proper functional space. Incorporating storage solutions help in keeping an organized space without compromising the comfort.<\\/p>\\r\\n<h2>Advantages of a Cozy Atmosphere in Salon Suites<\\/h2>\\r\\n<p>A salon suite with all cozy touches needed to a customer can add advantages in the services.&nbsp; Some of the most highlighted advantages are discussed briefly below.<\\/p>\\r\\n<h3>Increases Client Comfort<\\/h3>\\r\\n<p>A clean, tidy, and cozy setting provides real comfort to the customers. A salon suite with a proper cozy atmosphere provides ease and relaxed environment to the customers. When there is comfort with beauty services then client flow increases.<\\/p>\\r\\n<h3>Client Retention Increases<\\/h3>\\r\\n<p>Providing all essential comfortable facilities can give an advantage of retaining the customers. Customer satisfaction is a key in client retention. A cozy environment makes customers return for the beauty services in their next time.<\\/p>\\r\\n<h3>Gets Client Referrals<\\/h3>\\r\\n<p>A well maintained and organized cozy salon suite gives benefit of client referrals. The customers recommend such salon suites to their friends and family in Acworth, GA.<\\/p>\\r\\n<h3>Develops a professional Image<\\/h3>\\r\\n<p>A cozy and well designed salon suite enhances your brand and demonstrates your professionalism. A salon suite with all cozy options help in creating long lasting impressions within the customers. It will automatically attract more clients when your business image grows.<\\/p>\\r\\n<h3>Increases Productivity<\\/h3>\\r\\n<p>An environment with cozy options available helps a salon suite owner to increase productivity of the services. Because the beauty professionals feel more relaxed and focus on their primary services. When there will be a focus on delivering best services then it will lead to better performance of the business.<\\/p>\\r\\n<h2>Conclusion<\\/h2>\\r\\n<p>It is a better option to create a cozy atmosphere in salon suites in Acworth, GA. A cozy atmosphere helps to provide customer satisfaction and helps in business success. The salon suites with a focus on color schemes, lighting etc to provide a comfortable environment to the customers. These healthy tips can help the professionals whether they have salon suites on rent or they own one. <a href=\\\"https:\\/\\/www.salonstudios.com\\/\\\">Salon Studios Beauty Mall in Acworth<\\/a> provides the best rental options for the beauty professionals. Salon studios offer salon suites for rent in the prime locations of Acworth. You can call us at &ldquo;<a href=\\\"tel: 678.951.8230\\\">678.951.8230<\\/a>&rdquo; if you want to rent an <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Acworth#:~:text=Studio%20in%20Acworth%2C%20GA\\\">amazing salon suite in Acworth, GA<\\/a>.&nbsp;<\\/p>\\r\\n<h2>FAQs<\\/h2>\\r\\n<p><strong>What is the best color for a cozy salon suite?<\\/strong><\\/p>\\r\\n<p>You can consider the colors like soft neutrals or warm earth tones. These colors help in creating a relaxing atmosphere in the salon suites.<\\/p>\\r\\n<p>&nbsp;<\\/p>\\r\\n<p><strong>How can I make a small salon suite feel cozy?<\\/strong><\\/p>\\r\\n<p>It doesn&rsquo;t matter whether you have a small or large salon suite. You can consider the options of using lighting, luxury furniture, and decorations to make small salon suites feel cozy.<\\/p>\\r\\n<p>&nbsp;<\\/p>\\r\\n<p><strong>How does a cozy atmosphere impact client retention?<\\/strong><\\/p>\\r\\n<p>A clean and cozy salon suite is always a plus to provide a comfortable experience to the customers. A welcoming, fragrant, and comfortable environment helps the clients to feel valued and relaxed. Thus, a cozy atmosphere encourages them to return and give referrals to others.<\\/p>\",\"featured_img\":\"tips-for-creating-a-cozy-atmosphere-in-your-salon-suite.webp\",\"featured_img_title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"featured_img_alt\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_keywords\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_description\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"sts\":\"1\",\"is_featured\":\"1\",\"count_comments\":0,\"dated\":\"2025-01-02 10:53:21\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"tags\":\"salon\",\"created_at\":\"2025-01-02 10:54:31\",\"updated_at\":\"2025-01-02 14:57:40\",\"deleted_at\":null}','2025-01-02 04:57:53','2025-01-02 04:57:53',NULL),(80,29,'Tips for Creating a Cozy Atmosphere in Your Salon Suite','http://localhost/mlcms/site_files/public/adminmedia/blog/29/edit','BlogPost',1,'::1','{\"id\":29,\"author_id\":\"1\",\"author_name\":\"Jawad Abbas\",\"cate_ids\":\"1,8\",\"title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"post_slug\":\"tips-for-creating-a-cozy-atmosphere-in-your-salon-suite\",\"description\":\"<h2>Table Of Contents<\\/h2>\\r\\n<ul>\\r\\n<li>Summary<\\/li>\\r\\n<li>Introduction<\\/li>\\r\\n<li>Choosing the Right Color<\\/li>\\r\\n<li>Providing Comfortable Furniture<\\/li>\\r\\n<li>Soft Lighting In The Salon<\\/li>\\r\\n<li>Adding Personal Touches<\\/li>\\r\\n<li>Aroma Therapy for Improving Atmosphere<\\/li>\\r\\n<li>Playing Soft Background Music<\\/li>\\r\\n<li>Cleanliness and Organized set up<\\/li>\\r\\n<li>Providing Plush Textiles<\\/li>\\r\\n<li>Use Of Natural Elements<\\/li>\\r\\n<li>Optimizing the Suite&rsquo;s Layout<\\/li>\\r\\n<li>Installing Functional and Stylish Storage<\\/li>\\r\\n<li>Advantages of a Cozy Atmosphere in Salon Suites<\\/li>\\r\\n<li>Conclusion<\\/li>\\r\\n<li>FAQs<\\/li>\\r\\n<\\/ul>\\r\\n<h2>Summary<\\/h2>\\r\\n<p>An inviting and cozy atmosphere helps stylists to enhance the customer&rsquo;s experience at salon suites in Acworth, GA. The article will provide useful tips which are practical to help transform salon suites in Acworth, GA. By focusing on elements like comfort and interior decoration can help for better the client\'s experience.<\\/p>\\r\\n<h2>Introduction<\\/h2>\\r\\n<p>The salon suites with a proper comfortable atmosphere is important for customer satisfaction. It is important that the beauty professionals provide a cozy environment in their <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Acworth\\\">salon suites in Acworth, GA<\\/a>. The salon suite rental trends are increasing in Acworth because of its affordability. The professionals have choices in rental spaces to personalize according to their needs. A cozy environment can positively impact to sustain clients. The beauty experts will know valuable information about the tips to create a cozy environment in their salon suites. Let&rsquo;s now discuss the tips one by one for your salon suite&rsquo;s cozy transformation.<\\/p>\\r\\n<h2>Choosing the Right Color<\\/h2>\\r\\n<p>Selecting the right colors add value to the overall atmosphere of the salon suites. In Acworth the beauty professionals can choose colors matching with their brand colors and logos. The colors also help in switching moods of the clients. Every color has its own unique features to turn different human moods accordingly. For example, for a cozy touch consider warm tones, soft neutrals, and accent colors.<\\/p>\\r\\n<h2>Providing Comfortable Furniture<\\/h2>\\r\\n<p>It is highly recommended to provide high quality furniture for the customers. The customer&rsquo;s comfort during beauty service and waiting matters a lot for their better experience with you. That is why <a href=\\\"https:\\/\\/www.salonstudios.com\\/specialists?select_location=&amp;select_services=&amp;page=1\\\">beauty professionals in Acworth<\\/a> should not overlook the comfort element of their customers and workers.<\\/p>\\r\\n<h2>Soft Lighting In The Salon<\\/h2>\\r\\n<p>The professionals whether renting or owning a salon suite, should consider avoiding the use of harsh lighting. The harsh lights can directly create discomfort for the customers. There are a variety of lighting options which can enhance the customer&rsquo;s experience in your salon suite. Try using lighting which is easily adjustable and creates an intimate and warm setting in the salon suite.<\\/p>\\r\\n<h2>Adding Personal Touches<\\/h2>\\r\\n<p>Personal touches of art play a vital role for creating a charming and cozy atmosphere in the salon suite. It is suggested to designate a wall side or corner for artwork, plants, and decorative items. Such a scheme helps in reflecting your business&rsquo;s style and image.<\\/p>\\r\\n<h2>Aroma Therapy for Improving Atmosphere&nbsp;<\\/h2>\\r\\n<p>It is better for a business to provide a scented environment for the customers. It is suggested to use scented candles, diffusers, and other fragrances for a welcoming environment. It will add value to your services as customers will get beauty services with a well fragrant environment.<\\/p>\\r\\n<h2>Playing Soft Background Music<\\/h2>\\r\\n<p>The music plays a significant role in providing a relaxing environment to the customers. Beauty professionals should choose relaxing playlists to keep an environment of calmness. Suggested tip in this regard is playing light music with custom options for the customers, so that they can play according to their needs.<\\/p>\\r\\n<h2>Cleanliness and Organized set up<\\/h2>\\r\\n<p>It is obvious that clutter can ruin the cozy atmosphere. A clean and tidy environment provides the best vibes to customers for the time they spend in your salon suite. Also a well organized set up of the overall suite also catches customer&rsquo;s attention.<\\/p>\\r\\n<h2>Providing Plush Textiles<\\/h2>\\r\\n<p>The plush textile products like soft cushions and&nbsp; towels can add comfort and warmth to your customers. It is thus recommended to provide them with such items for a luxury experience. The plush items can also help in improving the decoration of the furniture as well.<\\/p>\\r\\n<h2>Use Of Natural Elements<\\/h2>\\r\\n<p>Sometimes natural elements add the aesthetics to any business&rsquo;s appearance. Consider bringing plants and wooden elements to give a natural and earthy feel to your customers. Mostly people are more attached with the natural touches thus adding natural touches is a good option.&nbsp;<\\/p>\\r\\n<h2>Optimizing the Suite&rsquo;s Layout<\\/h2>\\r\\n<p>Arranging the furniture properly can help in maximizing the space for other effective usage. It is recommended to make arrangements for more space without compromising the comfort of the customers. The more space provides the opportunity for addition of more services related to beauty needs of the people.<\\/p>\\r\\n<h2>Installing Functional and Stylish Storage<\\/h2>\\r\\n<p>Another tip for cozy vibes for better customer experience is considering stylish storage. It is important to keep required tools within proper storage to enable installing a proper functional space. Incorporating storage solutions help in keeping an organized space without compromising the comfort.<\\/p>\\r\\n<h2>Advantages of a Cozy Atmosphere in Salon Suites<\\/h2>\\r\\n<p>A salon suite with all cozy touches needed to a customer can add advantages in the services.&nbsp; Some of the most highlighted advantages are discussed briefly below.<\\/p>\\r\\n<h3>Increases Client Comfort<\\/h3>\\r\\n<p>A clean, tidy, and cozy setting provides real comfort to the customers. A salon suite with a proper cozy atmosphere provides ease and relaxed environment to the customers. When there is comfort with beauty services then client flow increases.<\\/p>\\r\\n<h3>Client Retention Increases<\\/h3>\\r\\n<p>Providing all essential comfortable facilities can give an advantage of retaining the customers. Customer satisfaction is a key in client retention. A cozy environment makes customers return for the beauty services in their next time.<\\/p>\\r\\n<h3>Gets Client Referrals<\\/h3>\\r\\n<p>A well maintained and organized cozy salon suite gives benefit of client referrals. The customers recommend such salon suites to their friends and family in Acworth, GA.<\\/p>\\r\\n<h3>Develops a professional Image<\\/h3>\\r\\n<p>A cozy and well designed salon suite enhances your brand and demonstrates your professionalism. A salon suite with all cozy options help in creating long lasting impressions within the customers. It will automatically attract more clients when your business image grows.<\\/p>\\r\\n<h3>Increases Productivity<\\/h3>\\r\\n<p>An environment with cozy options available helps a salon suite owner to increase productivity of the services. Because the beauty professionals feel more relaxed and focus on their primary services. When there will be a focus on delivering best services then it will lead to better performance of the business.<\\/p>\\r\\n<h2>Conclusion<\\/h2>\\r\\n<p>It is a better option to create a cozy atmosphere in salon suites in Acworth, GA. A cozy atmosphere helps to provide customer satisfaction and helps in business success. The salon suites with a focus on color schemes, lighting etc to provide a comfortable environment to the customers. These healthy tips can help the professionals whether they have salon suites on rent or they own one. <a href=\\\"https:\\/\\/www.salonstudios.com\\/\\\">Salon Studios Beauty Mall in Acworth<\\/a> provides the best rental options for the beauty professionals. Salon studios offer salon suites for rent in the prime locations of Acworth. You can call us at &ldquo;<a href=\\\"tel: 678.951.8230\\\">678.951.8230<\\/a>&rdquo; if you want to rent an <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Acworth#:~:text=Studio%20in%20Acworth%2C%20GA\\\">amazing salon suite in Acworth, GA<\\/a>.&nbsp;<\\/p>\\r\\n<h2>FAQs<\\/h2>\\r\\n<p><strong>What is the best color for a cozy salon suite?<\\/strong><\\/p>\\r\\n<p>You can consider the colors like soft neutrals or warm earth tones. These colors help in creating a relaxing atmosphere in the salon suites.<\\/p>\\r\\n<p>&nbsp;<\\/p>\\r\\n<p><strong>How can I make a small salon suite feel cozy?<\\/strong><\\/p>\\r\\n<p>It doesn&rsquo;t matter whether you have a small or large salon suite. You can consider the options of using lighting, luxury furniture, and decorations to make small salon suites feel cozy.<\\/p>\\r\\n<p>&nbsp;<\\/p>\\r\\n<p><strong>How does a cozy atmosphere impact client retention?<\\/strong><\\/p>\\r\\n<p>A clean and cozy salon suite is always a plus to provide a comfortable experience to the customers. A welcoming, fragrant, and comfortable environment helps the clients to feel valued and relaxed. Thus, a cozy atmosphere encourages them to return and give referrals to others.<\\/p>\",\"featured_img\":\"tips-for-creating-a-cozy-atmosphere-in-your-salon-suite.webp\",\"featured_img_title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"featured_img_alt\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_keywords\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_description\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"sts\":\"1\",\"is_featured\":\"1\",\"count_comments\":0,\"dated\":\"2025-01-02 10:53:21\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"tags\":\"salon\",\"created_at\":\"2025-01-02 10:54:31\",\"updated_at\":\"2025-01-02 14:57:52\",\"deleted_at\":null}','2025-01-02 05:11:45','2025-01-02 05:11:45',NULL),(81,29,'Tips for Creating a Cozy Atmosphere in Your Salon Suite','http://localhost/mlcms/site_files/public/adminmedia/blog/29/edit','BlogPost',1,'::1','{\"id\":29,\"author_id\":\"1\",\"author_name\":\"Jawad Abbas\",\"cate_ids\":\"1,8\",\"title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"post_slug\":\"tips-for-creating-a-cozy-atmosphere-in-your-salon-suite\",\"description\":\"<h2>Table Of Contents<\\/h2>\\r\\n<ul>\\r\\n<li>Summary<\\/li>\\r\\n<li>Introduction<\\/li>\\r\\n<li>Choosing the Right Color<\\/li>\\r\\n<li>Providing Comfortable Furniture<\\/li>\\r\\n<li>Soft Lighting In The Salon<\\/li>\\r\\n<li>Adding Personal Touches<\\/li>\\r\\n<li>Aroma Therapy for Improving Atmosphere<\\/li>\\r\\n<li>Playing Soft Background Music<\\/li>\\r\\n<li>Cleanliness and Organized set up<\\/li>\\r\\n<li>Providing Plush Textiles<\\/li>\\r\\n<li>Use Of Natural Elements<\\/li>\\r\\n<li>Optimizing the Suite&rsquo;s Layout<\\/li>\\r\\n<li>Installing Functional and Stylish Storage<\\/li>\\r\\n<li>Advantages of a Cozy Atmosphere in Salon Suites<\\/li>\\r\\n<li>Conclusion<\\/li>\\r\\n<li>FAQs<\\/li>\\r\\n<\\/ul>\\r\\n<h2>Summary<\\/h2>\\r\\n<p>An inviting and cozy atmosphere helps stylists to enhance the customer&rsquo;s experience at salon suites in Acworth, GA. The article will provide useful tips which are practical to help transform salon suites in Acworth, GA. By focusing on elements like comfort and interior decoration can help for better the client\'s experience.<\\/p>\\r\\n<h2>Introduction<\\/h2>\\r\\n<p>The salon suites with a proper comfortable atmosphere is important for customer satisfaction. It is important that the beauty professionals provide a cozy environment in their <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Acworth\\\">salon suites in Acworth, GA<\\/a>. The salon suite rental trends are increasing in Acworth because of its affordability. The professionals have choices in rental spaces to personalize according to their needs. A cozy environment can positively impact to sustain clients. The beauty experts will know valuable information about the tips to create a cozy environment in their salon suites. Let&rsquo;s now discuss the tips one by one for your salon suite&rsquo;s cozy transformation.<\\/p>\\r\\n<h2>Choosing the Right Color<\\/h2>\\r\\n<p>Selecting the right colors add value to the overall atmosphere of the salon suites. In Acworth the beauty professionals can choose colors matching with their brand colors and logos. The colors also help in switching moods of the clients. Every color has its own unique features to turn different human moods accordingly. For example, for a cozy touch consider warm tones, soft neutrals, and accent colors.<\\/p>\\r\\n<h2>Providing Comfortable Furniture<\\/h2>\\r\\n<p>It is highly recommended to provide high quality furniture for the customers. The customer&rsquo;s comfort during beauty service and waiting matters a lot for their better experience with you. That is why <a href=\\\"https:\\/\\/www.salonstudios.com\\/specialists?select_location=&amp;select_services=&amp;page=1\\\">beauty professionals in Acworth<\\/a> should not overlook the comfort element of their customers and workers.<\\/p>\\r\\n<h2>Soft Lighting In The Salon<\\/h2>\\r\\n<p>The professionals whether renting or owning a salon suite, should consider avoiding the use of harsh lighting. The harsh lights can directly create discomfort for the customers. There are a variety of lighting options which can enhance the customer&rsquo;s experience in your salon suite. Try using lighting which is easily adjustable and creates an intimate and warm setting in the salon suite.<\\/p>\\r\\n<h2>Adding Personal Touches<\\/h2>\\r\\n<p>Personal touches of art play a vital role for creating a charming and cozy atmosphere in the salon suite. It is suggested to designate a wall side or corner for artwork, plants, and decorative items. Such a scheme helps in reflecting your business&rsquo;s style and image.<\\/p>\\r\\n<h2>Aroma Therapy for Improving Atmosphere&nbsp;<\\/h2>\\r\\n<p>It is better for a business to provide a scented environment for the customers. It is suggested to use scented candles, diffusers, and other fragrances for a welcoming environment. It will add value to your services as customers will get beauty services with a well fragrant environment.<\\/p>\\r\\n<h2>Playing Soft Background Music<\\/h2>\\r\\n<p>The music plays a significant role in providing a relaxing environment to the customers. Beauty professionals should choose relaxing playlists to keep an environment of calmness. Suggested tip in this regard is playing light music with custom options for the customers, so that they can play according to their needs.<\\/p>\\r\\n<h2>Cleanliness and Organized set up<\\/h2>\\r\\n<p>It is obvious that clutter can ruin the cozy atmosphere. A clean and tidy environment provides the best vibes to customers for the time they spend in your salon suite. Also a well organized set up of the overall suite also catches customer&rsquo;s attention.<\\/p>\\r\\n<h2>Providing Plush Textiles<\\/h2>\\r\\n<p>The plush textile products like soft cushions and&nbsp; towels can add comfort and warmth to your customers. It is thus recommended to provide them with such items for a luxury experience. The plush items can also help in improving the decoration of the furniture as well.<\\/p>\\r\\n<h2>Use Of Natural Elements<\\/h2>\\r\\n<p>Sometimes natural elements add the aesthetics to any business&rsquo;s appearance. Consider bringing plants and wooden elements to give a natural and earthy feel to your customers. Mostly people are more attached with the natural touches thus adding natural touches is a good option.&nbsp;<\\/p>\\r\\n<h2>Optimizing the Suite&rsquo;s Layout<\\/h2>\\r\\n<p>Arranging the furniture properly can help in maximizing the space for other effective usage. It is recommended to make arrangements for more space without compromising the comfort of the customers. The more space provides the opportunity for addition of more services related to beauty needs of the people.<\\/p>\\r\\n<h2>Installing Functional and Stylish Storage<\\/h2>\\r\\n<p>Another tip for cozy vibes for better customer experience is considering stylish storage. It is important to keep required tools within proper storage to enable installing a proper functional space. Incorporating storage solutions help in keeping an organized space without compromising the comfort.<\\/p>\\r\\n<h2>Advantages of a Cozy Atmosphere in Salon Suites<\\/h2>\\r\\n<p>A salon suite with all cozy touches needed to a customer can add advantages in the services.&nbsp; Some of the most highlighted advantages are discussed briefly below.<\\/p>\\r\\n<h3>Increases Client Comfort<\\/h3>\\r\\n<p>A clean, tidy, and cozy setting provides real comfort to the customers. A salon suite with a proper cozy atmosphere provides ease and relaxed environment to the customers. When there is comfort with beauty services then client flow increases.<\\/p>\\r\\n<h3>Client Retention Increases<\\/h3>\\r\\n<p>Providing all essential comfortable facilities can give an advantage of retaining the customers. Customer satisfaction is a key in client retention. A cozy environment makes customers return for the beauty services in their next time.<\\/p>\\r\\n<h3>Gets Client Referrals<\\/h3>\\r\\n<p>A well maintained and organized cozy salon suite gives benefit of client referrals. The customers recommend such salon suites to their friends and family in Acworth, GA.<\\/p>\\r\\n<h3>Develops a professional Image<\\/h3>\\r\\n<p>A cozy and well designed salon suite enhances your brand and demonstrates your professionalism. A salon suite with all cozy options help in creating long lasting impressions within the customers. It will automatically attract more clients when your business image grows.<\\/p>\\r\\n<h3>Increases Productivity<\\/h3>\\r\\n<p>An environment with cozy options available helps a salon suite owner to increase productivity of the services. Because the beauty professionals feel more relaxed and focus on their primary services. When there will be a focus on delivering best services then it will lead to better performance of the business.<\\/p>\\r\\n<h2>Conclusion<\\/h2>\\r\\n<p>It is a better option to create a cozy atmosphere in salon suites in Acworth, GA. A cozy atmosphere helps to provide customer satisfaction and helps in business success. The salon suites with a focus on color schemes, lighting etc to provide a comfortable environment to the customers. These healthy tips can help the professionals whether they have salon suites on rent or they own one. <a href=\\\"https:\\/\\/www.salonstudios.com\\/\\\">Salon Studios Beauty Mall in Acworth<\\/a> provides the best rental options for the beauty professionals. Salon studios offer salon suites for rent in the prime locations of Acworth. You can call us at &ldquo;<a href=\\\"tel: 678.951.8230\\\">678.951.8230<\\/a>&rdquo; if you want to rent an <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Acworth#:~:text=Studio%20in%20Acworth%2C%20GA\\\">amazing salon suite in Acworth, GA<\\/a>.&nbsp;<\\/p>\\r\\n<h2>FAQs<\\/h2>\\r\\n<p><strong>What is the best color for a cozy salon suite?<\\/strong><\\/p>\\r\\n<p>You can consider the colors like soft neutrals or warm earth tones. These colors help in creating a relaxing atmosphere in the salon suites.<\\/p>\\r\\n<p>&nbsp;<\\/p>\\r\\n<p><strong>How can I make a small salon suite feel cozy?<\\/strong><\\/p>\\r\\n<p>It doesn&rsquo;t matter whether you have a small or large salon suite. You can consider the options of using lighting, luxury furniture, and decorations to make small salon suites feel cozy.<\\/p>\\r\\n<p>&nbsp;<\\/p>\\r\\n<p><strong>How does a cozy atmosphere impact client retention?<\\/strong><\\/p>\\r\\n<p>A clean and cozy salon suite is always a plus to provide a comfortable experience to the customers. A welcoming, fragrant, and comfortable environment helps the clients to feel valued and relaxed. Thus, a cozy atmosphere encourages them to return and give referrals to others.<\\/p>\",\"featured_img\":\"tips-for-creating-a-cozy-atmosphere-in-your-salon-suite.webp\",\"featured_img_title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"featured_img_alt\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_keywords\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_description\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"sts\":\"1\",\"is_featured\":\"1\",\"count_comments\":0,\"dated\":\"2025-01-02 10:53:21\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"tags\":\"salon\",\"created_at\":\"2025-01-02 10:54:31\",\"updated_at\":\"2025-01-02 14:57:52\",\"deleted_at\":null}','2025-01-02 06:45:35','2025-01-02 06:45:35',NULL),(82,30,'10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing','http://localhost/mlcms/site_files/public/adminmedia/blog/30/edit','BlogPost',1,'::1','{\"id\":30,\"author_id\":\"1\",\"author_name\":\"Jawad Abbas\",\"cate_ids\":\"1,8\",\"title\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"post_slug\":\"10-secrets-to-make-your-salon-suites-in-woodstock-ga-look-amazing\",\"description\":\"<h2>Table Of Contents<\\/h2>\\r\\n<ol>\\r\\n<li>Summary<\\/li>\\r\\n<li>Introduction<\\/li>\\r\\n<li>Choose the Right Color Scheme<\\/li>\\r\\n<li>Maximize Natural Light<\\/li>\\r\\n<li>Invest in High Quality Furniture<\\/li>\\r\\n<li>Create a Functional Layout<\\/li>\\r\\n<li>Add Personal Touches and Branding<\\/li>\\r\\n<li>Invest in Quality Lighting<\\/li>\\r\\n<li>Maintaining Cleanliness<\\/li>\\r\\n<li>Creating a Calm Atmosphere with Aromatherapy<\\/li>\\r\\n<li>Using Stylish Storage Solutions<\\/li>\\r\\n<li>Update and Refresh Regularly<\\/li>\\r\\n<li>Conclusion<\\/li>\\r\\n<li>FAQs<\\/li>\\r\\n<\\/ol>\\r\\n<h2>Summary<\\/h2>\\r\\n<p>In this article we will provide tips to make <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Woodstock\\\">salon suites in Woodstock, GA<\\/a> visually perfect and attractive. The focus will be to provide healthy tips for enhancing appearance and customer experience in the salon suites. Moreover the readers will get valuable guidance to perform well in the beauty industry.<\\/p>\\r\\n<h2>Introduction<\\/h2>\\r\\n<p>Salon suites in Woodstock, GA are well equipped and private spaces for beauty professionals. Beauty stylists or professionals rent such spaces to run their beauty business independently. Renting a salon suite is a growing culture among beauty professionals. <a href=\\\"https:\\/\\/maps.app.goo.gl\\/n6x8P68hiea3ynvN7\\\">Renting a salon studio in Woodstock<\\/a> is more cost effective than buying a salon suite. The clients feel more comfortable in those salon suites which are well designed and decorated. Customized well designed spaces provide a professional and welcoming atmosphere to the customers. A salon suite&rsquo;s success is also dependent on the aesthetic environment of the beauty business. In this article you will know about 10 secrets to make your beauty space amazing and more welcoming.<\\/p>\\r\\n<h2>Choose the Right Color Scheme<\\/h2>\\r\\n<p>Color combinations in a beauty business matters to attract the customers. As every color has different features to trigger moods. Colors are also vital to make the atmosphere of the salon suites in Woodstock, GA. The healthy tip in this regard is to always choose the colors which resonate with your services and brand. Depending upon the features of the colors you can select color for your beauty space. For example you can select warm tones for relaxation and bright colors like yellow for energetic looks.<\\/p>\\r\\n<h2>Maximize Natural Light<\\/h2>\\r\\n<p>There is no replacement for natural things. Similarly the feel people can get from natural lights can\'t be got from artificial lightings. Natural light improves the overall feel of the salon suites. It is suggested to place mirrors and furniture to make sure the full flow of the light. Also using sheer curtains in the windows of the salon suite will soften the sunlight. So it is recommended to make use of natural light as much as possible because it will give the natural feel to your beauty space.<\\/p>\\r\\n<h2>Invest in High Quality Furniture<\\/h2>\\r\\n<p>Most of the beauty stylists don&rsquo;t realize the importance of stylish furniture in their salon suites. Customers usually need a comfortable seat while waiting for their turn. It is suggested to invest in durable, comfortable, and stylish furniture. The types of furniture which can elevate the look of your salon suite are vanity tables and stylish chairs. For doing all that you must have a proper knowledge to manage space&rsquo;s storage or you need expert suggestions for storage solutions.<\\/p>\\r\\n<h2>Create a Functional Layout<\\/h2>\\r\\n<p>It is again important to create designated areas for specific functions of a salon suite. It will help you in achieving efficient space to use according to your needs. For example, designate places for hair, makeup, skin treatment, and spa separately. Such a behavior increases to deal and organize smooth operations of salon suites in Woodstock, GA.<\\/p>\\r\\n<h2>Add Personal Touches and Branding<\\/h2>\\r\\n<p>You can decorate your beauty space according to your brand&rsquo;s demands. Use personalized decoration approaches to meet your brand&rsquo;s elements. Your brand elements are your logos and brand colors. If possible, going for personal decors like artwork and plants is a plus. Because it will help to demonstrate unique features of the suite and enhance the overall aesthetics of the salon suite.<\\/p>\\r\\n<h2>Invest in Quality Lighting<\\/h2>\\r\\n<p>Beauty professionals should not overlook the importance of proper lighting in their spaces. The proper lighting helps in enhancing attractiveness and overall functionality of the business. It is suggested to consider LED lights and dimmers for providing a charming look to the customers. Also you can make use of adjustable lamps for a versatile atmosphere.<\\/p>\\r\\n<h2>Maintaining Cleanliness<\\/h2>\\r\\n<p>Cleanliness is one another factor which is of great importance in attracting and maintaining customers to a business. Customers always look for a neat, clean, and hygiene environment. A beauty service meeting all standards of cleanliness builds trust among customers. It is suggested to clean your beauty space i.e. after opening the beauty space and cleaning during the break time.<\\/p>\\r\\n<h2>Creating a Calm Atmosphere with Aromatherapy<\\/h2>\\r\\n<p>Aromatherapy is a useful therapy to provide calmness as the oils used provide much comfort to the customers. The scent used creates an environment which gives a pleasant feel to the clients. You can use scented oils, scented candles, or diffusers to provide an aromatherapy touch in your salon suite. It benefits you to gain customer trust and helps in returning customers to your beauty business.<\\/p>\\r\\n<h2>Using Stylish Storage Solutions<\\/h2>\\r\\n<p>It is important to keep things in an organized manner. There are many ways to keep products and equipment to manage storage. Explore the ideas for proper shelving and cabinets. Some ideas for stylish storage solutions are:<\\/p>\\r\\n<ul>\\r\\n<li>Make use of open or floating shelves to easily access tools.<\\/li>\\r\\n<li>Using a mobile storage cart for combs, brushes and other tools.<\\/li>\\r\\n<li>You can also make use of clean glass jars to store combs, brushes etc.<\\/li>\\r\\n<li>Building custom cabinets may be expensive but it maximizes your storage in small salon suites.<\\/li>\\r\\n<li>Using multifunctional furniture.<\\/li>\\r\\n<li>Glass display cases for placing beauty products.<\\/li>\\r\\n<\\/ul>\\r\\n<h2>Update and Refresh Regularly<\\/h2>\\r\\n<p>It is important to keep everything updated and refreshed in your salon suite. It will also help you to protect your investment in decoration of the salon suite.&nbsp; Beauty&nbsp; professionals should consider updating the artworks and switching decoration pieces when needed. It helps you to be updated with the recent interior decoration trends of salon suites. It is one of the top secrets to maintain your interior updated and looking fresh. This will increase customer satisfaction with the services you provide.<\\/p>\\r\\n<h2>Conclusion<\\/h2>\\r\\n<p>A pleasant and well decorated salon suite provides the best salon experience to the customers. Also a clean and well functional beauty space maintains considerably better flow of the customers. Implementing the 10 secrets can help beauty professionals to grow the customer flow in Woodstock, GA. <a href=\\\"https:\\/\\/www.salonstudios.com\\/locations\\\">Salon suites rental service<\\/a> providers like <a href=\\\"https:\\/\\/www.salonstudios.com\\/\\\">Salon Studios Beauty Mall<\\/a> in Woodstock can help you to rent the best salon suite in Woodstock, GA. You can call at <a href=\\\"tel: 678.951.8230\\\">&ldquo;678.951.8230&rdquo;<\\/a> to discuss your needs if you decide to rent a salon suite for your beauty business in Woodstock. We provide the best salon suites which provide all essentials for client&rsquo;s comfort and business success.<\\/p>\\r\\n<h2>FAQs<\\/h2>\\r\\n<p><strong>What is the top benefit of designing a salon suite in Woodstock, GA?<\\/strong><\\/p>\\r\\n<p>A well designed and decorated salon suite attracts more clients. It will also demonstrate a professional environment for your beauty business.<\\/p>\\r\\n<p><strong>How to choose the right colors for my beauty space?<\\/strong><\\/p>\\r\\n<p>You should keep the colors which are&nbsp; your brand&rsquo;s identity colors. Consider colors which give calmness and comfort to the customers. Usually calming colors are soft and neutral colors.<\\/p>\\r\\n<p><strong>What lighting will be best for the salon suites?<\\/strong><\\/p>\\r\\n<p>Consider lightings which enhance your functions and create a beautiful look in the salon suite. A combination of task, ambient, and accent lighting can provide best illumination for your salon suite.<\\/p>\",\"featured_img\":\"10-secrets-to-make-your-salon-suites-in-woodstock-ga-look-amazing.webp\",\"featured_img_title\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"featured_img_alt\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"meta_title\":\"10 Secrets For Making Salon Suites Amazing In Woodstock, GA\",\"meta_keywords\":null,\"meta_description\":\"Explore 10 secrets for turning your salon suite amazing in Woodstock, GA. Learn how to impress your clients by providing a calm and relaxing atmosphere.\",\"sts\":\"1\",\"is_featured\":\"1\",\"count_comments\":0,\"dated\":\"2025-01-02 10:56:08\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"tags\":\"salon,studios\",\"created_at\":\"2025-01-02 10:58:31\",\"updated_at\":\"2025-01-02 14:19:20\",\"deleted_at\":null}','2025-01-02 06:45:50','2025-01-02 06:45:50',NULL),(83,31,'test','http://localhost/mlcms/site_files/public/adminmedia/blog/31/edit','BlogPost',1,'::1','{\"author_id\":\"1\",\"author_name\":\"Admin\",\"title\":\"test\",\"cate_ids\":\"1,8\",\"tags\":\"test\",\"post_slug\":\"test\",\"description\":\"<p>test<\\/p>\",\"featured_img_title\":\"test\",\"featured_img_alt\":\"test\",\"meta_title\":\"test\",\"meta_keywords\":null,\"meta_description\":null,\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"dated\":\"2025-01-12 16:49:22\",\"sts\":\"1\",\"is_featured\":\"0\",\"id\":31}','2025-01-02 06:50:11','2025-01-02 06:50:11',NULL),(84,31,'test','http://localhost/mlcms/site_files/public/adminmedia/blog/31/edit','BlogPost',1,'::1','{\"id\":31,\"author_id\":\"1\",\"author_name\":\"Admin\",\"cate_ids\":\"1,8\",\"title\":\"test\",\"post_slug\":\"test\",\"description\":\"<p>test<\\/p>\",\"featured_img\":\"\",\"featured_img_title\":\"test\",\"featured_img_alt\":\"test\",\"meta_title\":\"test\",\"meta_keywords\":null,\"meta_description\":null,\"sts\":\"1\",\"is_featured\":\"0\",\"count_comments\":0,\"dated\":\"2025-01-12 16:49:22\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"tags\":\"test\",\"created_at\":\"2025-01-02 16:50:11\",\"updated_at\":null,\"deleted_at\":null}','2025-01-02 06:50:35','2025-01-02 06:50:35',NULL),(85,31,'test','http://localhost/mlcms/site_files/public/adminmedia/blog/31/edit','BlogPost',1,'::1','{\"id\":31,\"author_id\":\"1\",\"author_name\":\"Admin\",\"cate_ids\":\"1,8\",\"title\":\"test\",\"post_slug\":\"test\",\"description\":\"<p>test<\\/p>\",\"featured_img\":\"\",\"featured_img_title\":\"test\",\"featured_img_alt\":\"test\",\"meta_title\":\"test\",\"meta_keywords\":null,\"meta_description\":null,\"sts\":\"1\",\"is_featured\":\"0\",\"count_comments\":0,\"dated\":\"2025-01-12 16:49:22\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"tags\":\"test\",\"created_at\":\"2025-01-02 16:50:11\",\"updated_at\":null,\"deleted_at\":null}','2025-01-02 06:53:38','2025-01-02 06:53:38',NULL),(86,31,'test','http://localhost/mlcms/site_files/public/adminmedia/blog/31/edit','BlogPost',1,'::1','{\"id\":31,\"author_id\":\"1\",\"author_name\":\"Admin\",\"cate_ids\":\"1,8\",\"title\":\"test\",\"post_slug\":\"test\",\"description\":\"<p>test<\\/p>\",\"featured_img\":\"test.webp\",\"featured_img_title\":\"test\",\"featured_img_alt\":\"test\",\"meta_title\":\"test\",\"meta_keywords\":null,\"meta_description\":null,\"sts\":\"1\",\"is_featured\":\"0\",\"count_comments\":0,\"dated\":\"2025-01-12 16:49:22\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"tags\":\"test\",\"created_at\":\"2025-01-02 16:50:11\",\"updated_at\":null,\"deleted_at\":null}','2025-01-02 06:58:43','2025-01-02 06:58:43',NULL),(87,31,'test','http://localhost/mlcms/site_files/public/adminmedia/blog/31/edit','BlogPost',1,'::1','{\"id\":31,\"author_id\":\"1\",\"author_name\":\"Admin\",\"cate_ids\":\"1,8\",\"title\":\"test\",\"post_slug\":\"test\",\"description\":\"<p>test<\\/p>\",\"featured_img\":\"test.webp\",\"featured_img_title\":\"test\",\"featured_img_alt\":\"test\",\"meta_title\":\"test\",\"meta_keywords\":null,\"meta_description\":null,\"sts\":\"1\",\"is_featured\":\"0\",\"count_comments\":0,\"dated\":\"2025-01-12 16:49:22\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"tags\":\"test\",\"created_at\":\"2025-01-02 16:50:11\",\"updated_at\":\"2025-01-02 16:59:39\",\"deleted_at\":null}','2025-01-02 07:00:00','2025-01-02 07:00:00',NULL),(88,31,'test','http://localhost/mlcms/site_files/public/adminmedia/blog/31/edit','BlogPost',1,'::1','{\"id\":31,\"author_id\":\"1\",\"author_name\":\"Admin\",\"cate_ids\":\"1,8\",\"title\":\"test\",\"post_slug\":\"test\",\"description\":\"<p>test<\\/p>\",\"featured_img\":\"test.webp\",\"featured_img_title\":\"test\",\"featured_img_alt\":\"test\",\"meta_title\":\"test\",\"meta_keywords\":null,\"meta_description\":null,\"sts\":\"1\",\"is_featured\":\"0\",\"count_comments\":0,\"dated\":\"2025-01-12 16:49:22\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"tags\":\"test\",\"created_at\":\"2025-01-02 16:50:11\",\"updated_at\":\"2025-01-02 17:17:30\",\"deleted_at\":null}','2025-01-02 07:17:47','2025-01-02 07:17:47',NULL),(89,31,'test','http://localhost/mlcms/site_files/public/adminmedia/blog/31/edit','BlogPost',1,'::1','{\"id\":31,\"author_id\":\"1\",\"author_name\":\"Admin\",\"cate_ids\":\"1,8\",\"title\":\"test\",\"post_slug\":\"test\",\"description\":\"<p>test<\\/p>\",\"featured_img\":\"test.webp\",\"featured_img_title\":\"test\",\"featured_img_alt\":\"test\",\"meta_title\":\"test\",\"meta_keywords\":null,\"meta_description\":null,\"sts\":\"1\",\"is_featured\":\"0\",\"count_comments\":0,\"dated\":\"2025-01-12 16:49:22\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"tags\":\"test\",\"created_at\":\"2025-01-02 16:50:11\",\"updated_at\":\"2025-01-02 17:17:47\",\"deleted_at\":null}','2025-01-02 07:18:39','2025-01-02 07:18:39',NULL),(90,1,'Feshion','http://localhost/mlcms/site_files/public/adminmedia/blog-category/1/edit','BlogCategory',1,'::1','{\"id\":1,\"cate_title\":\"Feshion\",\"cate_slug\":\"feshion\",\"cate_description\":\"<p>Feshion<\\/p>\",\"sts\":\"1\",\"show_in_header\":\"1\",\"is_featured\":\"1\",\"featured_img\":\"feshion.webp\",\"featured_img_title\":\"feshion\",\"featured_img_alt\":\"feshion\",\"created_at\":\"2025-01-03T12:51:39.000000Z\",\"updated_at\":\"2025-01-03T09:11:45.000000Z\",\"deleted_at\":null}','2025-01-03 04:13:23','2025-01-03 04:13:23',NULL),(91,1,'Feshion','http://localhost/mlcms/site_files/public/adminmedia/blog-category/1/edit','BlogCategory',1,'::1','{\"id\":1,\"cate_title\":\"Feshion\",\"cate_slug\":\"feshion\",\"cate_description\":\"<p>Feshion<\\/p>\",\"sts\":\"1\",\"show_in_header\":\"1\",\"is_featured\":\"1\",\"featured_img\":\"feshion.webp\",\"featured_img_title\":\"feshion\",\"featured_img_alt\":\"feshion\",\"created_at\":\"2025-01-03T12:51:39.000000Z\",\"updated_at\":\"2025-01-03T09:11:45.000000Z\",\"deleted_at\":null}','2025-01-03 04:14:36','2025-01-03 04:14:36',NULL),(92,1,'Fashion','http://localhost/mlcms/site_files/public/adminmedia/blog-category/1/edit','BlogCategory',1,'::1','{\"id\":1,\"cate_title\":\"Fashion\",\"cate_slug\":\"fashion\",\"cate_description\":\"<p>Fashion<\\/p>\",\"sts\":\"1\",\"show_in_header\":\"1\",\"is_featured\":\"1\",\"featured_img\":\"fashion.webp\",\"featured_img_title\":\"Fashion\",\"featured_img_alt\":\"Fashion\",\"created_at\":\"2025-01-03T12:51:39.000000Z\",\"updated_at\":\"2025-01-03T09:16:01.000000Z\",\"deleted_at\":null}','2025-01-03 04:16:01','2025-01-03 04:16:01',NULL),(93,8,'Tech','http://localhost/mlcms/site_files/public/adminmedia/blog-category/8/edit','BlogCategory',1,'::1','{\"id\":8,\"cate_title\":\"Tech\",\"cate_slug\":\"tech\",\"cate_description\":\"<p>Tech<\\/p>\",\"sts\":\"1\",\"show_in_header\":\"1\",\"is_featured\":\"1\",\"featured_img\":\"tech.webp\",\"featured_img_title\":\"Tech\",\"featured_img_alt\":\"Tech\",\"created_at\":\"2025-01-03T12:51:39.000000Z\",\"updated_at\":\"2025-01-03T09:26:02.000000Z\",\"deleted_at\":null}','2025-01-03 04:26:02','2025-01-03 04:26:02',NULL),(94,9,'Food','http://localhost/mlcms/site_files/public/adminmedia/blog-category/9/edit','BlogCategory',1,'::1','{\"cate_title\":\"Food\",\"cate_slug\":\"food\",\"cate_description\":\"<p>Food<\\/p>\",\"featured_img\":\"food.webp\",\"featured_img_title\":\"Food\",\"featured_img_alt\":\"Food\",\"sts\":\"1\",\"is_featured\":\"1\",\"show_in_header\":\"1\",\"updated_at\":\"2025-01-03T09:26:47.000000Z\",\"created_at\":\"2025-01-03T09:26:47.000000Z\",\"id\":9}','2025-01-03 04:26:47','2025-01-03 04:26:47',NULL),(95,10,'Travel','http://localhost/mlcms/site_files/public/adminmedia/blog-category/10/edit','BlogCategory',1,'::1','{\"cate_title\":\"Travel\",\"cate_slug\":\"travel\",\"cate_description\":\"<p>Travel<\\/p>\",\"featured_img\":\"travel.webp\",\"featured_img_title\":\"Travel\",\"featured_img_alt\":\"Travel\",\"sts\":\"1\",\"is_featured\":\"1\",\"show_in_header\":\"1\",\"updated_at\":\"2025-01-03T09:28:18.000000Z\",\"created_at\":\"2025-01-03T09:28:18.000000Z\",\"id\":10}','2025-01-03 04:28:18','2025-01-03 04:28:18',NULL),(96,11,'Life Style','http://localhost/mlcms/site_files/public/adminmedia/blog-category/11/edit','BlogCategory',1,'::1','{\"cate_title\":\"Life Style\",\"cate_slug\":\"life-style\",\"cate_description\":\"<p>Life Style<\\/p>\",\"featured_img\":\"life-style.webp\",\"featured_img_title\":\"Life Style\",\"featured_img_alt\":\"Life Style\",\"sts\":\"1\",\"is_featured\":\"1\",\"show_in_header\":\"1\",\"updated_at\":\"2025-01-03T09:29:00.000000Z\",\"created_at\":\"2025-01-03T09:29:00.000000Z\",\"id\":11}','2025-01-03 04:29:00','2025-01-03 04:29:00',NULL),(97,29,'Tips for Creating a Cozy Atmosphere in Your Salon Suite','http://localhost/mlcms/site_files/public/adminmedia/blog-post/29/edit','BlogPost',1,'::1','{\"id\":29,\"author_id\":\"1\",\"author_name\":\"Jawad Abbas\",\"cate_ids\":\"1,11\",\"title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"post_slug\":\"tips-for-creating-a-cozy-atmosphere-in-your-salon-suite\",\"description\":\"<h2>Table Of Contents<\\/h2>\\r\\n<ul>\\r\\n<li>Summary<\\/li>\\r\\n<li>Introduction<\\/li>\\r\\n<li>Choosing the Right Color<\\/li>\\r\\n<li>Providing Comfortable Furniture<\\/li>\\r\\n<li>Soft Lighting In The Salon<\\/li>\\r\\n<li>Adding Personal Touches<\\/li>\\r\\n<li>Aroma Therapy for Improving Atmosphere<\\/li>\\r\\n<li>Playing Soft Background Music<\\/li>\\r\\n<li>Cleanliness and Organized set up<\\/li>\\r\\n<li>Providing Plush Textiles<\\/li>\\r\\n<li>Use Of Natural Elements<\\/li>\\r\\n<li>Optimizing the Suite&rsquo;s Layout<\\/li>\\r\\n<li>Installing Functional and Stylish Storage<\\/li>\\r\\n<li>Advantages of a Cozy Atmosphere in Salon Suites<\\/li>\\r\\n<li>Conclusion<\\/li>\\r\\n<li>FAQs<\\/li>\\r\\n<\\/ul>\\r\\n<h2>Summary<\\/h2>\\r\\n<p>An inviting and cozy atmosphere helps stylists to enhance the customer&rsquo;s experience at salon suites in Acworth, GA. The article will provide useful tips which are practical to help transform salon suites in Acworth, GA. By focusing on elements like comfort and interior decoration can help for better the client\'s experience.<\\/p>\\r\\n<h2>Introduction<\\/h2>\\r\\n<p>The salon suites with a proper comfortable atmosphere is important for customer satisfaction. It is important that the beauty professionals provide a cozy environment in their <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Acworth\\\">salon suites in Acworth, GA<\\/a>. The salon suite rental trends are increasing in Acworth because of its affordability. The professionals have choices in rental spaces to personalize according to their needs. A cozy environment can positively impact to sustain clients. The beauty experts will know valuable information about the tips to create a cozy environment in their salon suites. Let&rsquo;s now discuss the tips one by one for your salon suite&rsquo;s cozy transformation.<\\/p>\\r\\n<h2>Choosing the Right Color<\\/h2>\\r\\n<p>Selecting the right colors add value to the overall atmosphere of the salon suites. In Acworth the beauty professionals can choose colors matching with their brand colors and logos. The colors also help in switching moods of the clients. Every color has its own unique features to turn different human moods accordingly. For example, for a cozy touch consider warm tones, soft neutrals, and accent colors.<\\/p>\\r\\n<h2>Providing Comfortable Furniture<\\/h2>\\r\\n<p>It is highly recommended to provide high quality furniture for the customers. The customer&rsquo;s comfort during beauty service and waiting matters a lot for their better experience with you. That is why <a href=\\\"https:\\/\\/www.salonstudios.com\\/specialists?select_location=&amp;select_services=&amp;page=1\\\">beauty professionals in Acworth<\\/a> should not overlook the comfort element of their customers and workers.<\\/p>\\r\\n<h2>Soft Lighting In The Salon<\\/h2>\\r\\n<p>The professionals whether renting or owning a salon suite, should consider avoiding the use of harsh lighting. The harsh lights can directly create discomfort for the customers. There are a variety of lighting options which can enhance the customer&rsquo;s experience in your salon suite. Try using lighting which is easily adjustable and creates an intimate and warm setting in the salon suite.<\\/p>\\r\\n<h2>Adding Personal Touches<\\/h2>\\r\\n<p>Personal touches of art play a vital role for creating a charming and cozy atmosphere in the salon suite. It is suggested to designate a wall side or corner for artwork, plants, and decorative items. Such a scheme helps in reflecting your business&rsquo;s style and image.<\\/p>\\r\\n<h2>Aroma Therapy for Improving Atmosphere&nbsp;<\\/h2>\\r\\n<p>It is better for a business to provide a scented environment for the customers. It is suggested to use scented candles, diffusers, and other fragrances for a welcoming environment. It will add value to your services as customers will get beauty services with a well fragrant environment.<\\/p>\\r\\n<h2>Playing Soft Background Music<\\/h2>\\r\\n<p>The music plays a significant role in providing a relaxing environment to the customers. Beauty professionals should choose relaxing playlists to keep an environment of calmness. Suggested tip in this regard is playing light music with custom options for the customers, so that they can play according to their needs.<\\/p>\\r\\n<h2>Cleanliness and Organized set up<\\/h2>\\r\\n<p>It is obvious that clutter can ruin the cozy atmosphere. A clean and tidy environment provides the best vibes to customers for the time they spend in your salon suite. Also a well organized set up of the overall suite also catches customer&rsquo;s attention.<\\/p>\\r\\n<h2>Providing Plush Textiles<\\/h2>\\r\\n<p>The plush textile products like soft cushions and&nbsp; towels can add comfort and warmth to your customers. It is thus recommended to provide them with such items for a luxury experience. The plush items can also help in improving the decoration of the furniture as well.<\\/p>\\r\\n<h2>Use Of Natural Elements<\\/h2>\\r\\n<p>Sometimes natural elements add the aesthetics to any business&rsquo;s appearance. Consider bringing plants and wooden elements to give a natural and earthy feel to your customers. Mostly people are more attached with the natural touches thus adding natural touches is a good option.&nbsp;<\\/p>\\r\\n<h2>Optimizing the Suite&rsquo;s Layout<\\/h2>\\r\\n<p>Arranging the furniture properly can help in maximizing the space for other effective usage. It is recommended to make arrangements for more space without compromising the comfort of the customers. The more space provides the opportunity for addition of more services related to beauty needs of the people.<\\/p>\\r\\n<h2>Installing Functional and Stylish Storage<\\/h2>\\r\\n<p>Another tip for cozy vibes for better customer experience is considering stylish storage. It is important to keep required tools within proper storage to enable installing a proper functional space. Incorporating storage solutions help in keeping an organized space without compromising the comfort.<\\/p>\\r\\n<h2>Advantages of a Cozy Atmosphere in Salon Suites<\\/h2>\\r\\n<p>A salon suite with all cozy touches needed to a customer can add advantages in the services.&nbsp; Some of the most highlighted advantages are discussed briefly below.<\\/p>\\r\\n<h3>Increases Client Comfort<\\/h3>\\r\\n<p>A clean, tidy, and cozy setting provides real comfort to the customers. A salon suite with a proper cozy atmosphere provides ease and relaxed environment to the customers. When there is comfort with beauty services then client flow increases.<\\/p>\\r\\n<h3>Client Retention Increases<\\/h3>\\r\\n<p>Providing all essential comfortable facilities can give an advantage of retaining the customers. Customer satisfaction is a key in client retention. A cozy environment makes customers return for the beauty services in their next time.<\\/p>\\r\\n<h3>Gets Client Referrals<\\/h3>\\r\\n<p>A well maintained and organized cozy salon suite gives benefit of client referrals. The customers recommend such salon suites to their friends and family in Acworth, GA.<\\/p>\\r\\n<h3>Develops a professional Image<\\/h3>\\r\\n<p>A cozy and well designed salon suite enhances your brand and demonstrates your professionalism. A salon suite with all cozy options help in creating long lasting impressions within the customers. It will automatically attract more clients when your business image grows.<\\/p>\\r\\n<h3>Increases Productivity<\\/h3>\\r\\n<p>An environment with cozy options available helps a salon suite owner to increase productivity of the services. Because the beauty professionals feel more relaxed and focus on their primary services. When there will be a focus on delivering best services then it will lead to better performance of the business.<\\/p>\\r\\n<h2>Conclusion<\\/h2>\\r\\n<p>It is a better option to create a cozy atmosphere in salon suites in Acworth, GA. A cozy atmosphere helps to provide customer satisfaction and helps in business success. The salon suites with a focus on color schemes, lighting etc to provide a comfortable environment to the customers. These healthy tips can help the professionals whether they have salon suites on rent or they own one. <a href=\\\"https:\\/\\/www.salonstudios.com\\/\\\">Salon Studios Beauty Mall in Acworth<\\/a> provides the best rental options for the beauty professionals. Salon studios offer salon suites for rent in the prime locations of Acworth. You can call us at &ldquo;<a href=\\\"tel: 678.951.8230\\\">678.951.8230<\\/a>&rdquo; if you want to rent an <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Acworth#:~:text=Studio%20in%20Acworth%2C%20GA\\\">amazing salon suite in Acworth, GA<\\/a>.&nbsp;<\\/p>\\r\\n<h2>FAQs<\\/h2>\\r\\n<p><strong>What is the best color for a cozy salon suite?<\\/strong><\\/p>\\r\\n<p>You can consider the colors like soft neutrals or warm earth tones. These colors help in creating a relaxing atmosphere in the salon suites.<\\/p>\\r\\n<p>&nbsp;<\\/p>\\r\\n<p><strong>How can I make a small salon suite feel cozy?<\\/strong><\\/p>\\r\\n<p>It doesn&rsquo;t matter whether you have a small or large salon suite. You can consider the options of using lighting, luxury furniture, and decorations to make small salon suites feel cozy.<\\/p>\\r\\n<p>&nbsp;<\\/p>\\r\\n<p><strong>How does a cozy atmosphere impact client retention?<\\/strong><\\/p>\\r\\n<p>A clean and cozy salon suite is always a plus to provide a comfortable experience to the customers. A welcoming, fragrant, and comfortable environment helps the clients to feel valued and relaxed. Thus, a cozy atmosphere encourages them to return and give referrals to others.<\\/p>\",\"featured_img\":\"tips-for-creating-a-cozy-atmosphere-in-your-salon-suite.webp\",\"featured_img_title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"featured_img_alt\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_title\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_keywords\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"meta_description\":\"Tips for Creating a Cozy Atmosphere in Your Salon Suite\",\"sts\":\"1\",\"is_featured\":\"1\",\"count_comments\":0,\"dated\":\"2025-01-02 10:53:21\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"tags\":\"salon\",\"created_at\":\"2025-01-02T10:54:31.000000Z\",\"updated_at\":\"2025-01-03T09:29:36.000000Z\",\"deleted_at\":null}','2025-01-03 04:29:36','2025-01-03 04:29:36',NULL),(98,30,'10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing','http://localhost/mlcms/site_files/public/adminmedia/blog-post/30/edit','BlogPost',1,'::1','{\"id\":30,\"author_id\":\"1\",\"author_name\":\"Jawad Abbas\",\"cate_ids\":\"1,11\",\"title\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"post_slug\":\"10-secrets-to-make-your-salon-suites-in-woodstock-ga-look-amazing\",\"description\":\"<h2>Table Of Contents<\\/h2>\\r\\n<ol>\\r\\n<li>Summary<\\/li>\\r\\n<li>Introduction<\\/li>\\r\\n<li>Choose the Right Color Scheme<\\/li>\\r\\n<li>Maximize Natural Light<\\/li>\\r\\n<li>Invest in High Quality Furniture<\\/li>\\r\\n<li>Create a Functional Layout<\\/li>\\r\\n<li>Add Personal Touches and Branding<\\/li>\\r\\n<li>Invest in Quality Lighting<\\/li>\\r\\n<li>Maintaining Cleanliness<\\/li>\\r\\n<li>Creating a Calm Atmosphere with Aromatherapy<\\/li>\\r\\n<li>Using Stylish Storage Solutions<\\/li>\\r\\n<li>Update and Refresh Regularly<\\/li>\\r\\n<li>Conclusion<\\/li>\\r\\n<li>FAQs<\\/li>\\r\\n<\\/ol>\\r\\n<h2>Summary<\\/h2>\\r\\n<p>In this article we will provide tips to make <a href=\\\"https:\\/\\/www.salonstudios.com\\/location-details\\/Woodstock\\\">salon suites in Woodstock, GA<\\/a> visually perfect and attractive. The focus will be to provide healthy tips for enhancing appearance and customer experience in the salon suites. Moreover the readers will get valuable guidance to perform well in the beauty industry.<\\/p>\\r\\n<h2>Introduction<\\/h2>\\r\\n<p>Salon suites in Woodstock, GA are well equipped and private spaces for beauty professionals. Beauty stylists or professionals rent such spaces to run their beauty business independently. Renting a salon suite is a growing culture among beauty professionals. <a href=\\\"https:\\/\\/maps.app.goo.gl\\/n6x8P68hiea3ynvN7\\\">Renting a salon studio in Woodstock<\\/a> is more cost effective than buying a salon suite. The clients feel more comfortable in those salon suites which are well designed and decorated. Customized well designed spaces provide a professional and welcoming atmosphere to the customers. A salon suite&rsquo;s success is also dependent on the aesthetic environment of the beauty business. In this article you will know about 10 secrets to make your beauty space amazing and more welcoming.<\\/p>\\r\\n<h2>Choose the Right Color Scheme<\\/h2>\\r\\n<p>Color combinations in a beauty business matters to attract the customers. As every color has different features to trigger moods. Colors are also vital to make the atmosphere of the salon suites in Woodstock, GA. The healthy tip in this regard is to always choose the colors which resonate with your services and brand. Depending upon the features of the colors you can select color for your beauty space. For example you can select warm tones for relaxation and bright colors like yellow for energetic looks.<\\/p>\\r\\n<h2>Maximize Natural Light<\\/h2>\\r\\n<p>There is no replacement for natural things. Similarly the feel people can get from natural lights can\'t be got from artificial lightings. Natural light improves the overall feel of the salon suites. It is suggested to place mirrors and furniture to make sure the full flow of the light. Also using sheer curtains in the windows of the salon suite will soften the sunlight. So it is recommended to make use of natural light as much as possible because it will give the natural feel to your beauty space.<\\/p>\\r\\n<h2>Invest in High Quality Furniture<\\/h2>\\r\\n<p>Most of the beauty stylists don&rsquo;t realize the importance of stylish furniture in their salon suites. Customers usually need a comfortable seat while waiting for their turn. It is suggested to invest in durable, comfortable, and stylish furniture. The types of furniture which can elevate the look of your salon suite are vanity tables and stylish chairs. For doing all that you must have a proper knowledge to manage space&rsquo;s storage or you need expert suggestions for storage solutions.<\\/p>\\r\\n<h2>Create a Functional Layout<\\/h2>\\r\\n<p>It is again important to create designated areas for specific functions of a salon suite. It will help you in achieving efficient space to use according to your needs. For example, designate places for hair, makeup, skin treatment, and spa separately. Such a behavior increases to deal and organize smooth operations of salon suites in Woodstock, GA.<\\/p>\\r\\n<h2>Add Personal Touches and Branding<\\/h2>\\r\\n<p>You can decorate your beauty space according to your brand&rsquo;s demands. Use personalized decoration approaches to meet your brand&rsquo;s elements. Your brand elements are your logos and brand colors. If possible, going for personal decors like artwork and plants is a plus. Because it will help to demonstrate unique features of the suite and enhance the overall aesthetics of the salon suite.<\\/p>\\r\\n<h2>Invest in Quality Lighting<\\/h2>\\r\\n<p>Beauty professionals should not overlook the importance of proper lighting in their spaces. The proper lighting helps in enhancing attractiveness and overall functionality of the business. It is suggested to consider LED lights and dimmers for providing a charming look to the customers. Also you can make use of adjustable lamps for a versatile atmosphere.<\\/p>\\r\\n<h2>Maintaining Cleanliness<\\/h2>\\r\\n<p>Cleanliness is one another factor which is of great importance in attracting and maintaining customers to a business. Customers always look for a neat, clean, and hygiene environment. A beauty service meeting all standards of cleanliness builds trust among customers. It is suggested to clean your beauty space i.e. after opening the beauty space and cleaning during the break time.<\\/p>\\r\\n<h2>Creating a Calm Atmosphere with Aromatherapy<\\/h2>\\r\\n<p>Aromatherapy is a useful therapy to provide calmness as the oils used provide much comfort to the customers. The scent used creates an environment which gives a pleasant feel to the clients. You can use scented oils, scented candles, or diffusers to provide an aromatherapy touch in your salon suite. It benefits you to gain customer trust and helps in returning customers to your beauty business.<\\/p>\\r\\n<h2>Using Stylish Storage Solutions<\\/h2>\\r\\n<p>It is important to keep things in an organized manner. There are many ways to keep products and equipment to manage storage. Explore the ideas for proper shelving and cabinets. Some ideas for stylish storage solutions are:<\\/p>\\r\\n<ul>\\r\\n<li>Make use of open or floating shelves to easily access tools.<\\/li>\\r\\n<li>Using a mobile storage cart for combs, brushes and other tools.<\\/li>\\r\\n<li>You can also make use of clean glass jars to store combs, brushes etc.<\\/li>\\r\\n<li>Building custom cabinets may be expensive but it maximizes your storage in small salon suites.<\\/li>\\r\\n<li>Using multifunctional furniture.<\\/li>\\r\\n<li>Glass display cases for placing beauty products.<\\/li>\\r\\n<\\/ul>\\r\\n<h2>Update and Refresh Regularly<\\/h2>\\r\\n<p>It is important to keep everything updated and refreshed in your salon suite. It will also help you to protect your investment in decoration of the salon suite.&nbsp; Beauty&nbsp; professionals should consider updating the artworks and switching decoration pieces when needed. It helps you to be updated with the recent interior decoration trends of salon suites. It is one of the top secrets to maintain your interior updated and looking fresh. This will increase customer satisfaction with the services you provide.<\\/p>\\r\\n<h2>Conclusion<\\/h2>\\r\\n<p>A pleasant and well decorated salon suite provides the best salon experience to the customers. Also a clean and well functional beauty space maintains considerably better flow of the customers. Implementing the 10 secrets can help beauty professionals to grow the customer flow in Woodstock, GA. <a href=\\\"https:\\/\\/www.salonstudios.com\\/locations\\\">Salon suites rental service<\\/a> providers like <a href=\\\"https:\\/\\/www.salonstudios.com\\/\\\">Salon Studios Beauty Mall<\\/a> in Woodstock can help you to rent the best salon suite in Woodstock, GA. You can call at <a href=\\\"tel: 678.951.8230\\\">&ldquo;678.951.8230&rdquo;<\\/a> to discuss your needs if you decide to rent a salon suite for your beauty business in Woodstock. We provide the best salon suites which provide all essentials for client&rsquo;s comfort and business success.<\\/p>\\r\\n<h2>FAQs<\\/h2>\\r\\n<p><strong>What is the top benefit of designing a salon suite in Woodstock, GA?<\\/strong><\\/p>\\r\\n<p>A well designed and decorated salon suite attracts more clients. It will also demonstrate a professional environment for your beauty business.<\\/p>\\r\\n<p><strong>How to choose the right colors for my beauty space?<\\/strong><\\/p>\\r\\n<p>You should keep the colors which are&nbsp; your brand&rsquo;s identity colors. Consider colors which give calmness and comfort to the customers. Usually calming colors are soft and neutral colors.<\\/p>\\r\\n<p><strong>What lighting will be best for the salon suites?<\\/strong><\\/p>\\r\\n<p>Consider lightings which enhance your functions and create a beautiful look in the salon suite. A combination of task, ambient, and accent lighting can provide best illumination for your salon suite.<\\/p>\",\"featured_img\":\"10-secrets-to-make-your-salon-suites-in-woodstock-ga-look-amazing.webp\",\"featured_img_title\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"featured_img_alt\":\"10 Secrets to Make Your Salon Suites in Woodstock, GA Look Amazing\",\"meta_title\":\"10 Secrets For Making Salon Suites Amazing In Woodstock, GA\",\"meta_keywords\":null,\"meta_description\":\"Explore 10 secrets for turning your salon suite amazing in Woodstock, GA. Learn how to impress your clients by providing a calm and relaxing atmosphere.\",\"sts\":\"1\",\"is_featured\":\"1\",\"count_comments\":0,\"dated\":\"2025-01-02 10:56:08\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"tags\":\"salon,studios\",\"created_at\":\"2025-01-02T10:58:31.000000Z\",\"updated_at\":\"2025-01-03T09:31:07.000000Z\",\"deleted_at\":null}','2025-01-03 04:31:07','2025-01-03 04:31:07',NULL),(99,12,'Beauty','http://localhost/mlcms/site_files/public/adminmedia/blog-category/12/edit','BlogCategory',1,'::1','{\"cate_title\":\"Beauty\",\"cate_slug\":\"beauty\",\"cate_description\":\"<p>Beauty<\\/p>\",\"featured_img\":\"beauty.webp\",\"featured_img_title\":\"Beauty\",\"featured_img_alt\":\"Beauty\",\"sts\":\"1\",\"is_featured\":\"0\",\"show_in_header\":\"0\",\"updated_at\":\"2025-01-03T09:34:12.000000Z\",\"created_at\":\"2025-01-03T09:34:12.000000Z\",\"id\":12}','2025-01-03 04:34:12','2025-01-03 04:34:12',NULL),(100,12,'Beauty','http://localhost/mlcms/site_files/public/adminmedia/blog-category/12/edit','BlogCategory',1,'::1','{\"id\":12,\"cate_title\":\"Beauty\",\"cate_slug\":\"beauty\",\"cate_description\":\"<p>Beauty<\\/p>\",\"sts\":\"1\",\"show_in_header\":\"0\",\"is_featured\":\"0\",\"featured_img\":\"beauty.webp\",\"featured_img_title\":\"Beauty\",\"featured_img_alt\":\"Beauty\",\"created_at\":\"2025-01-03T09:34:12.000000Z\",\"updated_at\":\"2025-01-03T09:34:12.000000Z\",\"deleted_at\":null}','2025-01-03 04:37:50','2025-01-03 04:37:50',NULL),(101,13,'Gaming','http://localhost/mlcms/site_files/public/adminmedia/blog-category/13/edit','BlogCategory',1,'::1','{\"cate_title\":\"Gaming\",\"cate_slug\":\"gaming\",\"cate_description\":\"<p>Gaming<\\/p>\",\"featured_img\":\"gaming.webp\",\"featured_img_title\":\"Gaming\",\"featured_img_alt\":\"Gaming\",\"sts\":\"1\",\"is_featured\":\"0\",\"show_in_header\":\"0\",\"updated_at\":\"2025-01-03T09:43:32.000000Z\",\"created_at\":\"2025-01-03T09:43:32.000000Z\",\"id\":13}','2025-01-03 04:43:32','2025-01-03 04:43:32',NULL),(102,12,'Beauty','http://localhost/mlcms/site_files/public/adminmedia/blog-category/12/edit','BlogCategory',1,'::1','{\"id\":12,\"cate_title\":\"Beauty\",\"cate_slug\":\"beauty\",\"cate_description\":\"<p>Beauty<\\/p>\",\"sts\":1,\"show_in_header\":0,\"is_featured\":\"1\",\"featured_img\":\"beauty.webp\",\"featured_img_title\":\"Beauty\",\"featured_img_alt\":\"Beauty\",\"created_at\":\"2025-01-03T09:34:12.000000Z\",\"updated_at\":\"2025-01-03T09:47:08.000000Z\",\"deleted_at\":null}','2025-01-03 04:47:08','2025-01-03 04:47:08',NULL),(103,10,'Travel','http://localhost/mlcms/site_files/public/adminmedia/blog-category/10/edit','BlogCategory',1,'::1','{\"id\":10,\"cate_title\":\"Travel\",\"cate_slug\":\"travel\",\"cate_description\":\"<p>Travel<\\/p>\",\"sts\":1,\"show_in_header\":1,\"is_featured\":\"1\",\"featured_img\":\"travel.webp\",\"featured_img_title\":\"Travel\",\"featured_img_alt\":\"Travel\",\"created_at\":\"2025-01-03T09:28:18.000000Z\",\"updated_at\":\"2025-01-03T09:47:17.000000Z\",\"deleted_at\":null}','2025-01-03 04:47:17','2025-01-03 04:47:17',NULL),(104,8,'Tech','http://localhost/mlcms/site_files/public/adminmedia/blog-category/8/edit','BlogCategory',1,'::1','{\"id\":8,\"cate_title\":\"Tech\",\"cate_slug\":\"tech\",\"cate_description\":\"<p>Tech<\\/p>\",\"sts\":1,\"show_in_header\":1,\"is_featured\":\"1\",\"featured_img\":\"tech.webp\",\"featured_img_title\":\"Tech\",\"featured_img_alt\":\"Tech\",\"created_at\":\"2025-01-03T12:51:39.000000Z\",\"updated_at\":\"2025-01-03T09:49:30.000000Z\",\"deleted_at\":null}','2025-01-03 04:49:30','2025-01-03 04:49:30',NULL),(105,11,'Life Style','http://localhost/mlcms/site_files/public/adminmedia/blog-category/11/edit','BlogCategory',1,'::1','{\"id\":11,\"cate_title\":\"Life Style\",\"cate_slug\":\"life-style\",\"cate_description\":\"<p>Life Style<\\/p>\",\"sts\":1,\"show_in_header\":1,\"is_featured\":\"1\",\"featured_img\":\"life-style.webp\",\"featured_img_title\":\"Life Style\",\"featured_img_alt\":\"Life Style\",\"created_at\":\"2025-01-03T09:29:00.000000Z\",\"updated_at\":\"2025-01-03T09:49:40.000000Z\",\"deleted_at\":null}','2025-01-03 04:49:40','2025-01-03 04:49:40',NULL),(106,12,'Beauty','http://localhost/mlcms/site_files/public/adminmedia/blog-category/12/edit','BlogCategory',1,'::1','{\"id\":12,\"cate_title\":\"Beauty\",\"cate_slug\":\"beauty\",\"cate_description\":\"<p>Beauty<\\/p>\",\"sts\":1,\"show_in_header\":0,\"is_featured\":\"1\",\"featured_img\":\"beauty.webp\",\"featured_img_title\":\"Beauty\",\"featured_img_alt\":\"Beauty\",\"created_at\":\"2025-01-03T09:34:12.000000Z\",\"updated_at\":\"2025-01-03T09:50:48.000000Z\",\"deleted_at\":null}','2025-01-03 04:50:48','2025-01-03 04:50:48',NULL),(107,1,'Fashion','http://localhost/mlcms/site_files/public/adminmedia/blog-category/1/edit','BlogCategory',1,'::1','{\"id\":1,\"cate_title\":\"Fashion\",\"cate_slug\":\"fashion\",\"cate_description\":\"<p>Fashion<\\/p>\",\"sts\":1,\"show_in_header\":1,\"is_featured\":\"1\",\"featured_img\":\"fashion.webp\",\"featured_img_title\":\"Fashion\",\"featured_img_alt\":\"Fashion\",\"created_at\":\"2025-01-03T12:51:39.000000Z\",\"updated_at\":\"2025-01-03T09:50:51.000000Z\",\"deleted_at\":null}','2025-01-03 04:50:51','2025-01-03 04:50:51',NULL),(108,9,'Food','http://localhost/mlcms/site_files/public/adminmedia/blog-category/9/edit','BlogCategory',1,'::1','{\"id\":9,\"cate_title\":\"Food\",\"cate_slug\":\"food\",\"cate_description\":\"<p>Food<\\/p>\",\"sts\":1,\"show_in_header\":1,\"is_featured\":\"1\",\"featured_img\":\"food.webp\",\"featured_img_title\":\"Food\",\"featured_img_alt\":\"Food\",\"created_at\":\"2025-01-03T09:26:47.000000Z\",\"updated_at\":\"2025-01-03T09:50:57.000000Z\",\"deleted_at\":null}','2025-01-03 04:50:57','2025-01-03 04:50:57',NULL),(109,11,'Life Style','http://localhost/mlcms/site_files/public/adminmedia/blog-category/11/edit','BlogCategory',1,'::1','{\"id\":11,\"cate_title\":\"Life Style\",\"cate_slug\":\"life-style\",\"cate_description\":\"<p>Life Style<\\/p>\",\"sts\":1,\"show_in_header\":1,\"is_featured\":\"1\",\"featured_img\":\"life-style.webp\",\"featured_img_title\":\"Life Style\",\"featured_img_alt\":\"Life Style\",\"created_at\":\"2025-01-03T09:29:00.000000Z\",\"updated_at\":\"2025-01-03T09:51:02.000000Z\",\"deleted_at\":null}','2025-01-03 04:51:02','2025-01-03 04:51:02',NULL),(110,32,'Elevate Your Style Game with Confidence','http://localhost/mlcms/site_files/public/adminmedia/blog-post/32/edit','BlogPost',1,'::1','{\"author_id\":\"1\",\"author_name\":\"Robert Kcarery\",\"title\":\"Elevate Your Style Game with Confidence\",\"cate_ids\":\"11\",\"tags\":\"Life Style,Fashion\",\"post_slug\":\"elevate-your-style-game-with-confidence\",\"description\":\"<p><strong>What is Lorem Ipsum?<\\/strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\\r\\n<p><strong>Why do we use it?<\\/strong><br>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/p>\\r\\n<p><strong>Where does it come from?<\\/strong><br>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \\\"de Finibus Bonorum et Malorum\\\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \\\"Lorem ipsum dolor sit amet..\\\", comes from a line in section 1.10.32.<\\/p>\\r\\n<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.<\\/p>\\r\\n<p><strong>Where can I get some?<\\/strong><br>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"featured_img\":\"elevate-your-style-game-with-confidence.webp\",\"featured_img_title\":\"Elevate Your Style Game with Confidence\",\"featured_img_alt\":\"Elevate Your Style Game with Confidence\",\"meta_title\":\"Elevate Your Style Game with Confidence\",\"meta_keywords\":\"Elevate Your Style Game with Confidence\",\"meta_description\":\"Elevate Your Style Game with Confidence\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"dated\":\"2024-01-08 16:00:17\",\"sts\":\"1\",\"is_featured\":\"1\",\"updated_at\":\"2025-01-03T10:04:13.000000Z\",\"created_at\":\"2025-01-03T10:04:13.000000Z\",\"id\":32}','2025-01-03 05:04:13','2025-01-03 05:04:13',NULL),(111,12,'Beauty','http://localhost/mlcms/site_files/public/adminmedia/blog-category/12/edit','BlogCategory',1,'::1','{\"id\":12,\"cate_title\":\"Beauty\",\"cate_slug\":\"beauty\",\"cate_description\":\"<p>Beauty<\\/p>\",\"sts\":\"1\",\"show_in_header\":\"0\",\"is_featured\":\"0\",\"featured_img\":\"beauty.webp\",\"featured_img_title\":\"Beauty\",\"featured_img_alt\":\"Beauty\",\"created_at\":\"2025-01-03T09:34:12.000000Z\",\"updated_at\":\"2025-01-03T09:50:51.000000Z\",\"deleted_at\":null}','2025-01-03 05:05:20','2025-01-03 05:05:20',NULL),(112,12,'Beauty','http://localhost/mlcms/site_files/public/adminmedia/blog-category/12/edit','BlogCategory',1,'::1','{\"id\":12,\"cate_title\":\"Beauty\",\"cate_slug\":\"beauty\",\"cate_description\":\"<p>Beauty<\\/p>\",\"sts\":\"1\",\"show_in_header\":\"0\",\"is_featured\":\"0\",\"featured_img\":\"beauty.webp\",\"featured_img_title\":\"Beauty\",\"featured_img_alt\":\"Beauty\",\"created_at\":\"2025-01-03T09:34:12.000000Z\",\"updated_at\":\"2025-01-03T09:50:51.000000Z\",\"deleted_at\":null}','2025-01-03 05:12:01','2025-01-03 05:12:01',NULL),(113,33,'Pairing Wine with Gastronomic Delights.','http://localhost/mlcms/site_files/public/adminmedia/blog-post/33/edit','BlogPost',1,'::1','{\"author_id\":\"1\",\"author_name\":\"Robert Kcarery\",\"title\":\"Pairing Wine with Gastronomic Delights.\",\"cate_ids\":\"1\",\"tags\":\"\",\"post_slug\":\"pairing-wine-with-gastronomic-delights\",\"description\":\"<p><strong>What is Lorem Ipsum?<\\/strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\\r\\n<p><strong>Why do we use it?<\\/strong><br>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/p>\\r\\n<p><strong>Where does it come from?<\\/strong><br>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \\\"de Finibus Bonorum et Malorum\\\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \\\"Lorem ipsum dolor sit amet..\\\", comes from a line in section 1.10.32.<\\/p>\\r\\n<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.<\\/p>\\r\\n<p><strong>Where can I get some?<\\/strong><br>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"featured_img\":null,\"featured_img_title\":null,\"featured_img_alt\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"dated\":\"2025-01-01 15:00:03\",\"sts\":\"1\",\"is_featured\":\"0\",\"updated_at\":\"2025-01-03T10:22:01.000000Z\",\"created_at\":\"2025-01-03T10:22:01.000000Z\",\"id\":33}','2025-01-03 05:22:01','2025-01-03 05:22:01',NULL),(114,33,'Pairing Wine with Gastronomic Delights.','http://localhost/mlcms/site_files/public/adminmedia/blog-post/33/edit','BlogPost',1,'::1','{\"id\":33,\"author_id\":1,\"author_name\":\"Robert Kcarery\",\"cate_ids\":\"1\",\"title\":\"Pairing Wine with Gastronomic Delights.\",\"post_slug\":\"pairing-wine-with-gastronomic-delights\",\"description\":\"<p><strong>What is Lorem Ipsum?<\\/strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\\r\\n<p><strong>Why do we use it?<\\/strong><br>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/p>\\r\\n<p><strong>Where does it come from?<\\/strong><br>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \\\"de Finibus Bonorum et Malorum\\\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \\\"Lorem ipsum dolor sit amet..\\\", comes from a line in section 1.10.32.<\\/p>\\r\\n<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.<\\/p>\\r\\n<p><strong>Where can I get some?<\\/strong><br>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"featured_img\":null,\"featured_img_title\":null,\"featured_img_alt\":null,\"meta_title\":null,\"meta_keywords\":null,\"meta_description\":null,\"sts\":1,\"is_featured\":\"1\",\"count_comments\":0,\"dated\":\"2025-01-01 15:00:03\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"tags\":\"\",\"created_at\":\"2025-01-03T10:22:01.000000Z\",\"updated_at\":\"2025-01-03T10:22:08.000000Z\",\"deleted_at\":null}','2025-01-03 05:22:08','2025-01-03 05:22:08',NULL),(115,14,'Fashion','http://localhost/mlcms/site_files/public/adminmedia/blog-category/14/edit','BlogCategory',1,'::1','{\"cate_title\":\"Fashion\",\"cate_slug\":\"fashion\",\"cate_description\":\"<p>Fashion<\\/p>\",\"featured_img\":\"1735900668-fashion.webp\",\"featured_img_title\":\"Fashion\",\"featured_img_alt\":\"Fashion\",\"sts\":\"1\",\"is_featured\":\"0\",\"show_in_header\":\"1\",\"updated_at\":\"2025-01-03T10:37:56.000000Z\",\"created_at\":\"2025-01-03T10:37:56.000000Z\",\"id\":14}','2025-01-03 05:37:56','2025-01-03 05:37:56',NULL),(116,12,'Beauty','http://localhost/mlcms/site_files/public/adminmedia/blog-category/12/edit','BlogCategory',1,'::1','{\"id\":12,\"cate_title\":\"Beauty\",\"cate_slug\":\"beauty\",\"cate_description\":\"<p>Beauty<\\/p>\",\"sts\":\"1\",\"show_in_header\":\"0\",\"is_featured\":\"0\",\"featured_img\":\"beauty.webp\",\"featured_img_title\":\"Beauty\",\"featured_img_alt\":\"Beauty\",\"created_at\":\"2025-01-03T09:34:12.000000Z\",\"updated_at\":\"2025-01-03T09:50:51.000000Z\",\"deleted_at\":null}','2025-01-03 05:39:47','2025-01-03 05:39:47',NULL),(117,11,'Life Style','http://localhost/mlcms/site_files/public/adminmedia/blog-category/11/edit','BlogCategory',1,'::1','{\"id\":11,\"cate_title\":\"Life Style\",\"cate_slug\":\"life-style\",\"cate_description\":\"<p>Life Style<\\/p>\",\"sts\":1,\"show_in_header\":1,\"is_featured\":\"1\",\"featured_img\":\"life-style.webp\",\"featured_img_title\":\"Life Style\",\"featured_img_alt\":\"Life Style\",\"created_at\":\"2025-01-03T09:29:00.000000Z\",\"updated_at\":\"2025-01-03T10:40:07.000000Z\",\"deleted_at\":null}','2025-01-03 05:40:07','2025-01-03 05:40:07',NULL),(118,32,'Elevate Your Style Game with Confidence','http://localhost/mlcms/site_files/public/adminmedia/blog-post/32/edit','BlogPost',1,'::1','{\"id\":32,\"author_id\":\"1\",\"author_name\":\"Robert Kcarery\",\"cate_ids\":\"11,14\",\"title\":\"Elevate Your Style Game with Confidence\",\"post_slug\":\"elevate-your-style-game-with-confidence\",\"description\":\"<p><strong>What is Lorem Ipsum?<\\/strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\\r\\n<p><strong>Why do we use it?<\\/strong><br>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/p>\\r\\n<p><strong>Where does it come from?<\\/strong><br>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \\\"de Finibus Bonorum et Malorum\\\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \\\"Lorem ipsum dolor sit amet..\\\", comes from a line in section 1.10.32.<\\/p>\\r\\n<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.<\\/p>\\r\\n<p><strong>Where can I get some?<\\/strong><br>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"featured_img\":\"elevate-your-style-game-with-confidence.webp\",\"featured_img_title\":\"Elevate Your Style Game with Confidence\",\"featured_img_alt\":\"Elevate Your Style Game with Confidence\",\"meta_title\":\"Elevate Your Style Game with Confidence\",\"meta_keywords\":\"Elevate Your Style Game with Confidence\",\"meta_description\":\"Elevate Your Style Game with Confidence\",\"sts\":\"1\",\"is_featured\":\"1\",\"count_comments\":0,\"dated\":\"2024-01-08 16:00:17\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"tags\":\"Life Style,Fashion\",\"created_at\":\"2025-01-03T10:04:13.000000Z\",\"updated_at\":\"2025-01-03T10:43:31.000000Z\",\"deleted_at\":null}','2025-01-03 05:43:31','2025-01-03 05:43:31',NULL),(119,33,'Pairing Wine with Gastronomic Delights.','http://localhost/mlcms/site_files/public/adminmedia/blog-post/33/edit','BlogPost',1,'::1','{\"id\":33,\"author_id\":\"1\",\"author_name\":\"Robert Kcarery\",\"cate_ids\":\"11,14\",\"title\":\"Pairing Wine with Gastronomic Delights.\",\"post_slug\":\"pairing-wine-with-gastronomic-delights\",\"description\":\"<p><strong>What is Lorem Ipsum?<\\/strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\\r\\n<p><strong>Why do we use it?<\\/strong><br>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/p>\\r\\n<p><strong>Where does it come from?<\\/strong><br>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \\\"de Finibus Bonorum et Malorum\\\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \\\"Lorem ipsum dolor sit amet..\\\", comes from a line in section 1.10.32.<\\/p>\\r\\n<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.<\\/p>\\r\\n<p><strong>Where can I get some?<\\/strong><br>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"featured_img\":\"1735901054-pairing-wine-with-gastronomic-delights.webp\",\"featured_img_title\":\"Pairing Wine with Gastronomic Delights.\",\"featured_img_alt\":\"Pairing Wine with Gastronomic Delights.\",\"meta_title\":\"Pairing Wine with Gastronomic Delights.\",\"meta_keywords\":\"Pairing Wine with Gastronomic Delights.\",\"meta_description\":\"Pairing Wine with Gastronomic Delights.\",\"sts\":\"1\",\"is_featured\":\"1\",\"count_comments\":0,\"dated\":\"2025-01-01 15:00:03\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"tags\":\"life style,fashion\",\"created_at\":\"2025-01-03T10:22:01.000000Z\",\"updated_at\":\"2025-01-03T10:45:01.000000Z\",\"deleted_at\":null}','2025-01-03 05:45:01','2025-01-03 05:45:01',NULL),(120,33,'Pairing Wine with Gastronomic Delights.','http://localhost/mlcms/site_files/public/adminmedia/blog-post/33/edit','BlogPost',1,'::1','{\"id\":33,\"author_id\":\"1\",\"author_name\":\"Robert Kcarery\",\"cate_ids\":\"11,14\",\"title\":\"Pairing Wine with Gastronomic Delights.\",\"post_slug\":\"pairing-wine-with-gastronomic-delights\",\"description\":\"<p><strong>What is Lorem Ipsum?<\\/strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\\r\\n<p><strong>Why do we use it?<\\/strong><br>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/p>\\r\\n<p><strong>Where does it come from?<\\/strong><br>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \\\"de Finibus Bonorum et Malorum\\\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \\\"Lorem ipsum dolor sit amet..\\\", comes from a line in section 1.10.32.<\\/p>\\r\\n<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.<\\/p>\\r\\n<p><strong>Where can I get some?<\\/strong><br>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"featured_img\":\"1735901054-pairing-wine-with-gastronomic-delights.webp\",\"featured_img_title\":\"Pairing Wine with Gastronomic Delights.\",\"featured_img_alt\":\"Pairing Wine with Gastronomic Delights.\",\"meta_title\":\"Pairing Wine with Gastronomic Delights.\",\"meta_keywords\":\"Pairing Wine with Gastronomic Delights.\",\"meta_description\":\"Pairing Wine with Gastronomic Delights.\",\"sts\":\"1\",\"is_featured\":\"1\",\"count_comments\":0,\"dated\":\"2025-01-01 15:00:03\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"tags\":\"life style,fashion\",\"created_at\":\"2025-01-03T10:22:01.000000Z\",\"updated_at\":\"2025-01-03T10:45:01.000000Z\",\"deleted_at\":null}','2025-01-03 05:46:27','2025-01-03 05:46:27',NULL),(121,34,'Books to Inspire Your Next Adventure.','http://localhost/mlcms/site_files/public/adminmedia/blog-post/34/edit','BlogPost',1,'::1','{\"author_id\":\"1\",\"author_name\":\"Robert Kcarery\",\"title\":\"Books to Inspire Your Next Adventure.\",\"cate_ids\":\"14\",\"tags\":\"fashion\",\"post_slug\":\"books-to-inspire-your-next-adventure\",\"description\":\"<p><strong>What is Lorem Ipsum?<\\/strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\\r\\n<p><strong>Why do we use it?<\\/strong><br>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/p>\\r\\n<p><strong>Where does it come from?<\\/strong><br>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \\\"de Finibus Bonorum et Malorum\\\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \\\"Lorem ipsum dolor sit amet..\\\", comes from a line in section 1.10.32.<\\/p>\\r\\n<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.<\\/p>\\r\\n<p><strong>Where can I get some?<\\/strong><br>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"featured_img\":\"books-to-inspire-your-next-adventure.webp\",\"featured_img_title\":\"Books to Inspire Your Next Adventure.\",\"featured_img_alt\":\"Books to Inspire Your Next Adventure.\",\"meta_title\":\"Books to Inspire Your Next Adventure.\",\"meta_keywords\":\"Books to Inspire Your Next Adventure.\",\"meta_description\":\"Books to Inspire Your Next Adventure.\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"dated\":\"2025-01-02 17:00:44\",\"sts\":\"1\",\"is_featured\":\"0\",\"updated_at\":\"2025-01-03T10:48:38.000000Z\",\"created_at\":\"2025-01-03T10:48:38.000000Z\",\"id\":34}','2025-01-03 05:48:38','2025-01-03 05:48:38',NULL),(122,34,'Books to Inspire Your Next Adventure.','http://localhost/mlcms/site_files/public/adminmedia/blog-post/34/edit','BlogPost',1,'::1','{\"id\":34,\"author_id\":1,\"author_name\":\"Robert Kcarery\",\"cate_ids\":\"14\",\"title\":\"Books to Inspire Your Next Adventure.\",\"post_slug\":\"books-to-inspire-your-next-adventure\",\"description\":\"<p><strong>What is Lorem Ipsum?<\\/strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\\r\\n<p><strong>Why do we use it?<\\/strong><br>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/p>\\r\\n<p><strong>Where does it come from?<\\/strong><br>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \\\"de Finibus Bonorum et Malorum\\\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \\\"Lorem ipsum dolor sit amet..\\\", comes from a line in section 1.10.32.<\\/p>\\r\\n<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.<\\/p>\\r\\n<p><strong>Where can I get some?<\\/strong><br>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"featured_img\":\"books-to-inspire-your-next-adventure.webp\",\"featured_img_title\":\"Books to Inspire Your Next Adventure.\",\"featured_img_alt\":\"Books to Inspire Your Next Adventure.\",\"meta_title\":\"Books to Inspire Your Next Adventure.\",\"meta_keywords\":\"Books to Inspire Your Next Adventure.\",\"meta_description\":\"Books to Inspire Your Next Adventure.\",\"sts\":1,\"is_featured\":\"1\",\"count_comments\":0,\"dated\":\"2025-01-02 17:00:44\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"tags\":\"fashion\",\"created_at\":\"2025-01-03T10:48:38.000000Z\",\"updated_at\":\"2025-01-03T10:49:02.000000Z\",\"deleted_at\":null}','2025-01-03 05:49:02','2025-01-03 05:49:02',NULL),(123,35,'Digital Digest:Weekly Tech Updates You Can\'t Miss','http://localhost/mlcms/site_files/public/adminmedia/blog-post/35/edit','BlogPost',1,'::1','{\"author_id\":\"1\",\"author_name\":\"Dr. Michael Patrick\",\"title\":\"Digital Digest:Weekly Tech Updates You Can\'t Miss\",\"cate_ids\":\"14\",\"tags\":\"fashion\",\"post_slug\":\"digital-digest-weekly-tech-updates-you-cant-miss\",\"description\":\"<p><strong>What is Lorem Ipsum?<\\/strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\\r\\n<p><strong>Why do we use it?<\\/strong><br>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/p>\\r\\n<p><strong>Where does it come from?<\\/strong><br>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \\\"de Finibus Bonorum et Malorum\\\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \\\"Lorem ipsum dolor sit amet..\\\", comes from a line in section 1.10.32.<\\/p>\\r\\n<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.<\\/p>\\r\\n<p><strong>Where can I get some?<\\/strong><br>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"featured_img\":\"digital-digestweekly-tech-updates-you-cant-miss.webp\",\"featured_img_title\":\"Digital Digest:Weekly Tech Updates You Can\'t Miss\",\"featured_img_alt\":\"Digital Digest:Weekly Tech Updates You Can\'t Miss\",\"meta_title\":\"Digital Digest:Weekly Tech Updates You Can\'t Miss\",\"meta_keywords\":\"Digital Digest:Weekly Tech Updates You Can\'t Miss\",\"meta_description\":\"Digital Digest:Weekly Tech Updates You Can\'t Miss\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"dated\":\"2025-01-08 17:00:40\",\"sts\":\"1\",\"is_featured\":\"1\",\"updated_at\":\"2025-01-03T10:51:12.000000Z\",\"created_at\":\"2025-01-03T10:51:12.000000Z\",\"id\":35}','2025-01-03 05:51:12','2025-01-03 05:51:12',NULL),(124,36,'Defining Your Unique Fashion Statement.','http://localhost/mlcms/site_files/public/adminmedia/blog-post/36/edit','BlogPost',1,'::1','{\"author_id\":\"1\",\"author_name\":\"Dr. Michael Patrick\",\"title\":\"Defining Your Unique Fashion Statement.\",\"cate_ids\":\"14\",\"tags\":\"fashion,life style\",\"post_slug\":\"defining-your-unique-fashion-statement\",\"description\":\"<p><strong>What is Lorem Ipsum?<\\/strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\\r\\n<p><strong>Why do we use it?<\\/strong><br>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/p>\\r\\n<p><strong>Where does it come from?<\\/strong><br>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \\\"de Finibus Bonorum et Malorum\\\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \\\"Lorem ipsum dolor sit amet..\\\", comes from a line in section 1.10.32.<\\/p>\\r\\n<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.<\\/p>\\r\\n<p><strong>Where can I get some?<\\/strong><br>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"featured_img\":\"defining-your-unique-fashion-statement.webp\",\"featured_img_title\":\"Defining Your Unique Fashion Statement.\",\"featured_img_alt\":\"Defining Your Unique Fashion Statement.\",\"meta_title\":\"Defining Your Unique Fashion Statement.\",\"meta_keywords\":\"Defining Your Unique Fashion Statement.\",\"meta_description\":\"Defining Your Unique Fashion Statement.\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"dated\":\"2025-01-16 19:00:41\",\"sts\":\"1\",\"is_featured\":\"1\",\"updated_at\":\"2025-01-03T10:52:59.000000Z\",\"created_at\":\"2025-01-03T10:52:59.000000Z\",\"id\":36}','2025-01-03 05:52:59','2025-01-03 05:52:59',NULL),(125,37,'Gaming Gazette: Breaking News and Trending Topics.','http://localhost/mlcms/site_files/public/adminmedia/blog-post/37/edit','BlogPost',1,'::1','{\"author_id\":\"1\",\"author_name\":\"Jasmine Quinn\",\"title\":\"Gaming Gazette: Breaking News and Trending Topics.\",\"cate_ids\":\"11,14\",\"tags\":\"fashion,life style\",\"post_slug\":\"gaming-gazette-breaking-news-and-trending-topics\",\"description\":\"<h5><a href=\\\"http:\\/\\/localhost\\/mlcms\\/site_files\\/public\\/standard-formate.html\\\">Gaming Gazette: Breaking News and Trending Topics.<\\/a><\\/h5>\",\"featured_img\":\"gaming-gazette-breaking-news-and-trending-topics.webp\",\"featured_img_title\":\"Gaming Gazette: Breaking News and Trending Topics.\",\"featured_img_alt\":\"Gaming Gazette: Breaking News and Trending Topics.\",\"meta_title\":\"Gaming Gazette: Breaking News and Trending Topics.\",\"meta_keywords\":\"Gaming Gazette: Breaking News and Trending Topics.\",\"meta_description\":\"Gaming Gazette: Breaking News and Trending Topics.\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"dated\":\"2025-01-21 18:00:16\",\"sts\":\"1\",\"is_featured\":\"1\",\"updated_at\":\"2025-01-03T10:55:28.000000Z\",\"created_at\":\"2025-01-03T10:55:28.000000Z\",\"id\":37}','2025-01-03 05:55:28','2025-01-03 05:55:28',NULL),(126,37,'Gaming Gazette: Breaking News and Trending Topics.','http://localhost/mlcms/site_files/public/adminmedia/blog-post/37/edit','BlogPost',1,'::1','{\"id\":37,\"author_id\":\"1\",\"author_name\":\"Jasmine Quinn\",\"cate_ids\":\"11,14\",\"title\":\"Gaming Gazette: Breaking News and Trending Topics.\",\"post_slug\":\"gaming-gazette-breaking-news-and-trending-topics\",\"description\":\"<h5><a href=\\\"http:\\/\\/localhost\\/mlcms\\/site_files\\/public\\/standard-formate.html\\\">Gaming Gazette: Breaking News and Trending Topics.<\\/a><\\/h5>\",\"featured_img\":\"gaming-gazette-breaking-news-and-trending-topics.webp\",\"featured_img_title\":\"Gaming Gazette: Breaking News and Trending Topics.\",\"featured_img_alt\":\"Gaming Gazette: Breaking News and Trending Topics.\",\"meta_title\":\"Gaming Gazette: Breaking News and Trending Topics.\",\"meta_keywords\":\"Gaming Gazette: Breaking News and Trending Topics.\",\"meta_description\":\"Gaming Gazette: Breaking News and Trending Topics.\",\"sts\":\"1\",\"is_featured\":\"1\",\"count_comments\":0,\"dated\":\"2025-01-21 18:00:16\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"tags\":\"fashion,life style\",\"created_at\":\"2025-01-03T10:55:28.000000Z\",\"updated_at\":\"2025-01-03T10:55:28.000000Z\",\"deleted_at\":null}','2025-01-03 05:57:51','2025-01-03 05:57:51',NULL),(127,33,'Pairing Wine with Gastronomic Delights.','http://localhost/mlcms/site_files/public/adminmedia/blog-post/33/edit','BlogPost',1,'::1','{\"id\":33,\"author_id\":\"1\",\"author_name\":\"Robert Kcarery\",\"cate_ids\":\"11,14\",\"title\":\"Pairing Wine with Gastronomic Delights.\",\"post_slug\":\"pairing-wine-with-gastronomic-delights\",\"description\":\"<p><strong>What is Lorem Ipsum?<\\/strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\\r\\n<p><strong>Why do we use it?<\\/strong><br>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/p>\\r\\n<p><strong>Where does it come from?<\\/strong><br>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \\\"de Finibus Bonorum et Malorum\\\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \\\"Lorem ipsum dolor sit amet..\\\", comes from a line in section 1.10.32.<\\/p>\\r\\n<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.<\\/p>\\r\\n<p><strong>Where can I get some?<\\/strong><br>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.<\\/p>\",\"featured_img\":\"pairing-wine-with-gastronomic-delights.webp\",\"featured_img_title\":\"Pairing Wine with Gastronomic Delights.\",\"featured_img_alt\":\"Pairing Wine with Gastronomic Delights.\",\"meta_title\":\"Pairing Wine with Gastronomic Delights.\",\"meta_keywords\":\"Pairing Wine with Gastronomic Delights.\",\"meta_description\":\"Pairing Wine with Gastronomic Delights.\",\"sts\":\"1\",\"is_featured\":\"1\",\"count_comments\":0,\"dated\":\"2025-01-01 15:00:03\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"tags\":\"life style,fashion\",\"created_at\":\"2025-01-03T10:22:01.000000Z\",\"updated_at\":\"2025-01-03T10:59:36.000000Z\",\"deleted_at\":null}','2025-01-03 05:59:36','2025-01-03 05:59:36',NULL),(128,14,'Fashion','http://localhost/mlcms/site_files/public/adminmedia/blog-category/14/edit','BlogCategory',1,'::1','{\"id\":14,\"cate_title\":\"Fashion\",\"cate_slug\":\"fashion\",\"cate_description\":\"<p>Fashion<\\/p>\",\"sts\":\"1\",\"show_in_header\":\"1\",\"is_featured\":\"0\",\"featured_img\":\"fashion.webp\",\"featured_img_title\":\"Fashion\",\"featured_img_alt\":\"Fashion\",\"created_at\":\"2025-01-03T10:37:56.000000Z\",\"updated_at\":\"2025-01-03T11:00:00.000000Z\",\"deleted_at\":null}','2025-01-03 06:00:00','2025-01-03 06:00:00',NULL),(129,14,'Fashion','http://localhost/mlcms/site_files/public/adminmedia/blog-category/14/edit','BlogCategory',1,'::1','{\"id\":14,\"cate_title\":\"Fashion\",\"cate_slug\":\"fashion\",\"cate_description\":\"<p>Fashion<\\/p>\",\"sts\":1,\"show_in_header\":1,\"is_featured\":\"1\",\"featured_img\":\"fashion.webp\",\"featured_img_title\":\"Fashion\",\"featured_img_alt\":\"Fashion\",\"created_at\":\"2025-01-03T10:37:56.000000Z\",\"updated_at\":\"2025-01-03T11:00:20.000000Z\",\"deleted_at\":null}','2025-01-03 06:00:20','2025-01-03 06:00:20',NULL),(130,38,'Pairing Wine with Gastronomic Delights-1.','http://localhost/mlcms/site_files/public/adminmedia/blog-post/38/edit','BlogPost',1,'::1','{\"author_id\":\"1\",\"author_name\":\"Robert Kcarery\",\"title\":\"Pairing Wine with Gastronomic Delights-1.\",\"cate_ids\":\"10\",\"tags\":\"travel\",\"post_slug\":\"pairing-wine-with-gastronomic-delights-1\",\"description\":\"<p>Pairing Wine with Gastronomic Delights-1.<\\/p>\",\"featured_img\":\"pairing-wine-with-gastronomic-delights-1.webp\",\"featured_img_title\":\"Pairing Wine with Gastronomic Delights-1.\",\"featured_img_alt\":\"Pairing Wine with Gastronomic Delights-1.\",\"meta_title\":\"Pairing Wine with Gastronomic Delights-1.\",\"meta_keywords\":\"Pairing Wine with Gastronomic Delights-1.\",\"meta_description\":\"Pairing Wine with Gastronomic Delights-1.\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"dated\":\"2025-01-07 17:00:01\",\"sts\":\"1\",\"is_featured\":\"1\",\"updated_at\":\"2025-01-03T11:13:56.000000Z\",\"created_at\":\"2025-01-03T11:13:56.000000Z\",\"id\":38}','2025-01-03 06:13:57','2025-01-03 06:13:57',NULL),(131,39,'Books to Inspire Your Next Adventure-1.','http://localhost/mlcms/site_files/public/adminmedia/blog-post/39/edit','BlogPost',1,'::1','{\"author_id\":\"1\",\"author_name\":\"Jasmine Quinn\",\"title\":\"Books to Inspire Your Next Adventure-1.\",\"cate_ids\":\"10\",\"tags\":\"travel\",\"post_slug\":\"books-to-inspire-your-next-adventure-1\",\"description\":\"<h5><a href=\\\"http:\\/\\/localhost\\/mlcms\\/site_files\\/public\\/standard-formate.html\\\">Books to Inspire Your Next Adventure.<\\/a><\\/h5>\",\"featured_img\":\"books-to-inspire-your-next-adventure-1.webp\",\"featured_img_title\":\"Books to Inspire Your Next Adventure.\",\"featured_img_alt\":\"Books to Inspire Your Next Adventure.\",\"meta_title\":\"Books to Inspire Your Next Adventure.\",\"meta_keywords\":\"Books to Inspire Your Next Adventure.\",\"meta_description\":\"Books to Inspire Your Next Adventure.\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"dated\":\"2025-01-22 17:00:32\",\"sts\":\"1\",\"is_featured\":\"1\",\"updated_at\":\"2025-01-03T11:16:18.000000Z\",\"created_at\":\"2025-01-03T11:16:18.000000Z\",\"id\":39}','2025-01-03 06:16:19','2025-01-03 06:16:19',NULL),(132,40,'Digital Digest:Weekly Tech Updates You Can\'t Miss-1','http://localhost/mlcms/site_files/public/adminmedia/blog-post/40/edit','BlogPost',1,'::1','{\"author_id\":\"1\",\"author_name\":\"Dr. Michael Patrick\",\"title\":\"Digital Digest:Weekly Tech Updates You Can\'t Miss-1\",\"cate_ids\":\"10\",\"tags\":\"travel\",\"post_slug\":\"digital-digest-weekly-tech-updates-you-cant-miss-1\",\"description\":\"<h5><a href=\\\"http:\\/\\/localhost\\/mlcms\\/site_files\\/public\\/standard-formate.html\\\">Digital Digest:Weekly Tech Updates You Can\'t Miss<\\/a><\\/h5>\",\"featured_img\":\"digital-digestweekly-tech-updates-you-cant-miss-1.webp\",\"featured_img_title\":\"Digital Digest:Weekly Tech Updates You Can\'t Miss\",\"featured_img_alt\":\"Digital Digest:Weekly Tech Updates You Can\'t Miss\",\"meta_title\":\"Digital Digest:Weekly Tech Updates You Can\'t Miss\",\"meta_keywords\":\"Digital Digest:Weekly Tech Updates You Can\'t Miss\",\"meta_description\":\"Digital Digest:Weekly Tech Updates You Can\'t Miss\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"dated\":\"2025-01-23 20:00:01\",\"sts\":\"1\",\"is_featured\":\"1\",\"updated_at\":\"2025-01-03T11:17:47.000000Z\",\"created_at\":\"2025-01-03T11:17:47.000000Z\",\"id\":40}','2025-01-03 06:17:47','2025-01-03 06:17:47',NULL),(133,41,'Defining Your Unique Fashion Statement-1.','http://localhost/mlcms/site_files/public/adminmedia/blog-post/41/edit','BlogPost',1,'::1','{\"author_id\":\"1\",\"author_name\":\"Dr. Michael Patrick\",\"title\":\"Defining Your Unique Fashion Statement-1.\",\"cate_ids\":\"10\",\"tags\":\"travel\",\"post_slug\":\"defining-your-unique-fashion-statement-1\",\"description\":\"<h5><a href=\\\"http:\\/\\/localhost\\/mlcms\\/site_files\\/public\\/standard-formate.html\\\">Defining Your Unique Fashion Statement.<\\/a><\\/h5>\",\"featured_img\":\"defining-your-unique-fashion-statement-1.webp\",\"featured_img_title\":\"Defining Your Unique Fashion Statement.\",\"featured_img_alt\":\"Defining Your Unique Fashion Statement.\",\"meta_title\":\"Defining Your Unique Fashion Statement.\",\"meta_keywords\":\"Defining Your Unique Fashion Statement.\",\"meta_description\":\"Defining Your Unique Fashion Statement.\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"dated\":\"2025-01-15 18:00:20\",\"sts\":\"1\",\"is_featured\":\"1\",\"updated_at\":\"2025-01-03T11:19:11.000000Z\",\"created_at\":\"2025-01-03T11:19:11.000000Z\",\"id\":41}','2025-01-03 06:19:11','2025-01-03 06:19:11',NULL),(134,42,'Defining Your Unique Fashion Statement.-2','http://localhost/mlcms/site_files/public/adminmedia/blog-post/42/edit','BlogPost',1,'::1','{\"author_id\":\"1\",\"author_name\":\"Jasmine Quinn\",\"title\":\"Defining Your Unique Fashion Statement.-2\",\"cate_ids\":\"10\",\"tags\":\"Travel\",\"post_slug\":\"defining-your-unique-fashion-statement-2\",\"description\":\"<h5><a href=\\\"http:\\/\\/localhost\\/mlcms\\/site_files\\/public\\/standard-formate.html\\\">Defining Your Unique Fashion Statement.<\\/a><\\/h5>\",\"featured_img\":\"defining-your-unique-fashion-statement-2.webp\",\"featured_img_title\":\"Defining Your Unique Fashion Statement.\",\"featured_img_alt\":\"Defining Your Unique Fashion Statement.\",\"meta_title\":\"Defining Your Unique Fashion Statement.\",\"meta_keywords\":\"Defining Your Unique Fashion Statement.\",\"meta_description\":\"Defining Your Unique Fashion Statement.\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"dated\":\"2025-01-22 20:00:56\",\"sts\":\"1\",\"is_featured\":\"1\",\"updated_at\":\"2025-01-03T11:20:40.000000Z\",\"created_at\":\"2025-01-03T11:20:40.000000Z\",\"id\":42}','2025-01-03 06:20:40','2025-01-03 06:20:40',NULL),(135,43,'Gaming Gazette: Breaking News and Trending Topics-1','http://localhost/mlcms/site_files/public/adminmedia/blog-post/43/edit','BlogPost',1,'::1','{\"author_id\":\"1\",\"author_name\":\"Dr. Michael Patrick\",\"title\":\"Gaming Gazette: Breaking News and Trending Topics-1\",\"cate_ids\":\"10\",\"tags\":\"travel\",\"post_slug\":\"gaming-gazette-breaking-news-and-trending-topics-1\",\"description\":\"<h5><a href=\\\"http:\\/\\/localhost\\/mlcms\\/site_files\\/public\\/standard-formate.html\\\">Gaming Gazette: Breaking News and Trending Topics.<\\/a><\\/h5>\",\"featured_img\":\"gaming-gazette-breaking-news-and-trending-topics-1.webp\",\"featured_img_title\":\"Gaming Gazette: Breaking News and Trending Topics.\",\"featured_img_alt\":\"Gaming Gazette: Breaking News and Trending Topics.\",\"meta_title\":\"Gaming Gazette: Breaking News and Trending Topics.\",\"meta_keywords\":\"Gaming Gazette: Breaking News and Trending Topics.\",\"meta_description\":\"Gaming Gazette: Breaking News and Trending Topics.\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"dated\":\"2025-01-21 20:00:07\",\"sts\":\"1\",\"is_featured\":\"1\",\"updated_at\":\"2025-01-03T11:21:46.000000Z\",\"created_at\":\"2025-01-03T11:21:46.000000Z\",\"id\":43}','2025-01-03 06:21:46','2025-01-03 06:21:46',NULL),(136,44,'Pairing Wine with Gastronomic Delights-2.','http://localhost/mlcms/site_files/public/adminmedia/blog-post/44/edit','BlogPost',1,'::1','{\"author_id\":\"1\",\"author_name\":\"Robert Kcarery\",\"title\":\"Pairing Wine with Gastronomic Delights-2.\",\"cate_ids\":\"9\",\"tags\":\"food\",\"post_slug\":\"pairing-wine-with-gastronomic-delights-2\",\"description\":\"<p>Pairing Wine with Gastronomic Delights-2.<\\/p>\",\"featured_img\":\"pairing-wine-with-gastronomic-delights-2.webp\",\"featured_img_title\":\"Pairing Wine with Gastronomic Delights-2.\",\"featured_img_alt\":\"Pairing Wine with Gastronomic Delights-2.\",\"meta_title\":\"Pairing Wine with Gastronomic Delights-2.\",\"meta_keywords\":\"Pairing Wine with Gastronomic Delights-2.\",\"meta_description\":\"Pairing Wine with Gastronomic Delights-2.\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"dated\":\"2025-01-29 20:00:51\",\"sts\":\"1\",\"is_featured\":\"1\",\"updated_at\":\"2025-01-03T11:23:56.000000Z\",\"created_at\":\"2025-01-03T11:23:56.000000Z\",\"id\":44}','2025-01-03 06:23:56','2025-01-03 06:23:56',NULL),(137,45,'Books to Inspire Your Next Adventure-2','http://localhost/mlcms/site_files/public/adminmedia/blog-post/45/edit','BlogPost',1,'::1','{\"author_id\":\"1\",\"author_name\":\"Jasmine Quinn\",\"title\":\"Books to Inspire Your Next Adventure-2\",\"cate_ids\":\"9\",\"tags\":\"food\",\"post_slug\":\"books-to-inspire-your-next-adventure-2\",\"description\":\"<p>Books to Inspire Your Next Adventure-2<\\/p>\",\"featured_img\":\"books-to-inspire-your-next-adventure-2.webp\",\"featured_img_title\":\"Books to Inspire Your Next Adventure-2\",\"featured_img_alt\":\"Books to Inspire Your Next Adventure-2\",\"meta_title\":\"Books to Inspire Your Next Adventure-2\",\"meta_keywords\":\"Books to Inspire Your Next Adventure-2\",\"meta_description\":\"Books to Inspire Your Next Adventure-2\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"dated\":\"2025-01-15 19:00:37\",\"sts\":\"1\",\"is_featured\":\"1\",\"updated_at\":\"2025-01-03T11:25:24.000000Z\",\"created_at\":\"2025-01-03T11:25:24.000000Z\",\"id\":45}','2025-01-03 06:25:24','2025-01-03 06:25:24',NULL),(138,46,'Digital Digest:Weekly Tech Updates You Can\'t Miss-2','http://localhost/mlcms/site_files/public/adminmedia/blog-post/46/edit','BlogPost',1,'::1','{\"author_id\":\"1\",\"author_name\":\"Jasmine Quinn\",\"title\":\"Digital Digest:Weekly Tech Updates You Can\'t Miss-2\",\"cate_ids\":\"9\",\"tags\":\"food\",\"post_slug\":\"digital-digest-weekly-tech-updates-you-cant-miss-2\",\"description\":\"<p>Digital Digest:Weekly Tech Updates You Can\'t Miss-2<\\/p>\",\"featured_img\":\"digital-digestweekly-tech-updates-you-cant-miss-2.webp\",\"featured_img_title\":\"Digital Digest:Weekly Tech Updates You Can\'t Miss-2\",\"featured_img_alt\":\"Digital Digest:Weekly Tech Updates You Can\'t Miss-2\",\"meta_title\":\"Digital Digest:Weekly Tech Updates You Can\'t Miss-2\",\"meta_keywords\":\"Digital Digest:Weekly Tech Updates You Can\'t Miss-2\",\"meta_description\":\"Digital Digest:Weekly Tech Updates You Can\'t Miss-2\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"dated\":\"2025-01-14 20:00:11\",\"sts\":\"1\",\"is_featured\":\"1\",\"updated_at\":\"2025-01-03T11:26:52.000000Z\",\"created_at\":\"2025-01-03T11:26:52.000000Z\",\"id\":46}','2025-01-03 06:26:52','2025-01-03 06:26:52',NULL),(139,47,'Pairing Wine with Gastronomic Delights-3','http://localhost/mlcms/site_files/public/adminmedia/blog-post/47/edit','BlogPost',1,'::1','{\"author_id\":\"1\",\"author_name\":\"Jasmine Quinn\",\"title\":\"Pairing Wine with Gastronomic Delights-3\",\"cate_ids\":\"8\",\"tags\":\"tech\",\"post_slug\":\"pairing-wine-with-gastronomic-delights-3\",\"description\":\"<p>Pairing Wine with Gastronomic Delights-3<\\/p>\",\"featured_img\":\"pairing-wine-with-gastronomic-delights-3.webp\",\"featured_img_title\":\"Pairing Wine with Gastronomic Delights-3\",\"featured_img_alt\":\"Pairing Wine with Gastronomic Delights-3\",\"meta_title\":\"Pairing Wine with Gastronomic Delights-3\",\"meta_keywords\":\"Pairing Wine with Gastronomic Delights-3\",\"meta_description\":\"Pairing Wine with Gastronomic Delights-3\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"dated\":\"2025-01-15 21:00:17\",\"sts\":\"1\",\"is_featured\":\"1\",\"updated_at\":\"2025-01-03T11:38:00.000000Z\",\"created_at\":\"2025-01-03T11:38:00.000000Z\",\"id\":47}','2025-01-03 06:38:00','2025-01-03 06:38:00',NULL),(140,48,'Books to Inspire Your Next Adventure.','http://localhost/mlcms/site_files/public/adminmedia/blog-post/48/edit','BlogPost',1,'::1','{\"author_id\":\"1\",\"author_name\":\"Robert Kcarery\",\"title\":\"Books to Inspire Your Next Adventure.\",\"cate_ids\":\"8\",\"tags\":\"tech\",\"post_slug\":\"books-to-inspire-your-next-adventure-3\",\"description\":\"<p>Books to Inspire Your Next Adventure.<\\/p>\",\"featured_img\":\"1735904342-books-to-inspire-your-next-adventure.webp\",\"featured_img_title\":\"Books to Inspire Your Next Adventure.\",\"featured_img_alt\":\"Books to Inspire Your Next Adventure.\",\"meta_title\":\"Books to Inspire Your Next Adventure.\",\"meta_keywords\":\"Books to Inspire Your Next Adventure.\",\"meta_description\":\"Books to Inspire Your Next Adventure.\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"dated\":\"2025-01-16 16:38:44\",\"sts\":\"1\",\"is_featured\":\"1\",\"updated_at\":\"2025-01-03T11:39:27.000000Z\",\"created_at\":\"2025-01-03T11:39:27.000000Z\",\"id\":48}','2025-01-03 06:39:27','2025-01-03 06:39:27',NULL),(141,49,'Digital Digest:Weekly Tech Updates You Can\'t Miss-3','http://localhost/mlcms/site_files/public/adminmedia/blog-post/49/edit','BlogPost',1,'::1','{\"author_id\":\"1\",\"author_name\":\"Robert Kcarery\",\"title\":\"Digital Digest:Weekly Tech Updates You Can\'t Miss-3\",\"cate_ids\":\"8\",\"tags\":\"tech\",\"post_slug\":\"digital-digest-weekly-tech-updates-you-cant-miss-3\",\"description\":\"<p>Digital Digest:Weekly Tech Updates You Can\'t Miss-3<\\/p>\",\"featured_img\":\"digital-digestweekly-tech-updates-you-cant-miss-3.webp\",\"featured_img_title\":\"Digital Digest:Weekly Tech Updates You Can\'t Miss-3\",\"featured_img_alt\":\"Digital Digest:Weekly Tech Updates You Can\'t Miss-3\",\"meta_title\":\"Digital Digest:Weekly Tech Updates You Can\'t Miss-3\",\"meta_keywords\":\"Digital Digest:Weekly Tech Updates You Can\'t Miss-3\",\"meta_description\":\"Digital Digest:Weekly Tech Updates You Can\'t Miss-3\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"dated\":\"2025-01-30 16:40:16\",\"sts\":\"1\",\"is_featured\":\"1\",\"updated_at\":\"2025-01-03T11:40:59.000000Z\",\"created_at\":\"2025-01-03T11:40:59.000000Z\",\"id\":49}','2025-01-03 06:40:59','2025-01-03 06:40:59',NULL),(142,50,'Defining Your Unique Fashion Statement-3','http://localhost/mlcms/site_files/public/adminmedia/blog-post/50/edit','BlogPost',1,'::1','{\"author_id\":\"1\",\"author_name\":\"Robert Kcarery\",\"title\":\"Defining Your Unique Fashion Statement-3\",\"cate_ids\":\"8\",\"tags\":\"tech\",\"post_slug\":\"defining-your-unique-fashion-statement-3\",\"description\":\"<p>Defining Your Unique Fashion Statement-3<\\/p>\",\"featured_img\":\"defining-your-unique-fashion-statement-3.webp\",\"featured_img_title\":\"Defining Your Unique Fashion Statement-3\",\"featured_img_alt\":\"Defining Your Unique Fashion Statement-3\",\"meta_title\":\"Defining Your Unique Fashion Statement-3\",\"meta_keywords\":\"Defining Your Unique Fashion Statement-3\",\"meta_description\":\"Defining Your Unique Fashion Statement-3\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"dated\":\"2025-01-21 16:41:34\",\"sts\":\"1\",\"is_featured\":\"1\",\"updated_at\":\"2025-01-03T11:42:29.000000Z\",\"created_at\":\"2025-01-03T11:42:29.000000Z\",\"id\":50}','2025-01-03 06:42:29','2025-01-03 06:42:29',NULL),(143,51,'Pairing Wine with Gastronomic Delights-4','http://localhost/mlcms/site_files/public/adminmedia/blog-post/51/edit','BlogPost',1,'::1','{\"author_id\":\"1\",\"author_name\":\"Robert Kcarery\",\"title\":\"Pairing Wine with Gastronomic Delights-4\",\"cate_ids\":\"12\",\"tags\":\"beauty\",\"post_slug\":\"pairing-wine-with-gastronomic-delights-4\",\"description\":\"<p>Pairing Wine with Gastronomic Delights-4<\\/p>\",\"featured_img\":\"pairing-wine-with-gastronomic-delights-4.webp\",\"featured_img_title\":\"Pairing Wine with Gastronomic Delights-4\",\"featured_img_alt\":\"Pairing Wine with Gastronomic Delights-4\",\"meta_title\":\"Pairing Wine with Gastronomic Delights-4\",\"meta_keywords\":\"Pairing Wine with Gastronomic Delights-4\",\"meta_description\":\"Pairing Wine with Gastronomic Delights-4\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"dated\":\"2025-01-21 16:43:18\",\"sts\":\"1\",\"is_featured\":\"1\",\"updated_at\":\"2025-01-03T11:44:07.000000Z\",\"created_at\":\"2025-01-03T11:44:07.000000Z\",\"id\":51}','2025-01-03 06:44:07','2025-01-03 06:44:07',NULL),(144,52,'Books to Inspire Your Next Adventure-4','http://localhost/mlcms/site_files/public/adminmedia/blog-post/52/edit','BlogPost',1,'::1','{\"author_id\":\"1\",\"author_name\":\"Robert Kcarery\",\"title\":\"Books to Inspire Your Next Adventure-4\",\"cate_ids\":\"12\",\"tags\":\"beauty\",\"post_slug\":\"books-to-inspire-your-next-adventure-4\",\"description\":\"<p>Books to Inspire Your Next Adventure-4<\\/p>\",\"featured_img\":\"books-to-inspire-your-next-adventure-4.webp\",\"featured_img_title\":\"Books to Inspire Your Next Adventure-4\",\"featured_img_alt\":\"Books to Inspire Your Next Adventure-4\",\"meta_title\":\"Books to Inspire Your Next Adventure-4\",\"meta_keywords\":\"Books to Inspire Your Next Adventure-4\",\"meta_description\":\"Books to Inspire Your Next Adventure-4\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"dated\":\"2025-01-22 16:46:26\",\"sts\":\"1\",\"is_featured\":\"1\",\"updated_at\":\"2025-01-03T11:47:11.000000Z\",\"created_at\":\"2025-01-03T11:47:11.000000Z\",\"id\":52}','2025-01-03 06:47:11','2025-01-03 06:47:11',NULL),(145,53,'Digital Digest:Weekly Tech Updates You Can\'t Miss-4','http://localhost/mlcms/site_files/public/adminmedia/blog-post/53/edit','BlogPost',1,'::1','{\"author_id\":\"1\",\"author_name\":\"Robert Kcarery\",\"title\":\"Digital Digest:Weekly Tech Updates You Can\'t Miss-4\",\"cate_ids\":\"12\",\"tags\":\"beauty\",\"post_slug\":\"digital-digest-weekly-tech-updates-you-cant-miss-4\",\"description\":\"<p>Digital Digest:Weekly Tech Updates You Can\'t Miss-4<\\/p>\",\"featured_img\":\"digital-digestweekly-tech-updates-you-cant-miss-4.webp\",\"featured_img_title\":\"Digital Digest:Weekly Tech Updates You Can\'t Miss-4\",\"featured_img_alt\":\"Digital Digest:Weekly Tech Updates You Can\'t Miss-4\",\"meta_title\":\"Digital Digest:Weekly Tech Updates You Can\'t Miss-4\",\"meta_keywords\":\"Digital Digest:Weekly Tech Updates You Can\'t Miss-4\",\"meta_description\":\"Digital Digest:Weekly Tech Updates You Can\'t Miss-4\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"dated\":\"2025-01-21 16:48:14\",\"sts\":\"1\",\"is_featured\":\"1\",\"updated_at\":\"2025-01-03T11:48:59.000000Z\",\"created_at\":\"2025-01-03T11:48:59.000000Z\",\"id\":53}','2025-01-03 06:49:00','2025-01-03 06:49:00',NULL),(146,54,'Pairing Wine with Gastronomic Delights.-5','http://localhost/mlcms/site_files/public/adminmedia/blog-post/54/edit','BlogPost',1,'::1','{\"author_id\":\"1\",\"author_name\":\"Robert Kcarery\",\"title\":\"Pairing Wine with Gastronomic Delights.-5\",\"cate_ids\":\"13\",\"tags\":\"gaming\",\"post_slug\":\"pairing-wine-with-gastronomic-delights-5\",\"description\":\"<p>Pairing Wine with Gastronomic Delights.-5<\\/p>\",\"featured_img\":\"pairing-wine-with-gastronomic-delights-5.webp\",\"featured_img_title\":\"Pairing Wine with Gastronomic Delights.-5\",\"featured_img_alt\":\"Pairing Wine with Gastronomic Delights.-5\",\"meta_title\":\"Pairing Wine with Gastronomic Delights.-5\",\"meta_keywords\":\"Pairing Wine with Gastronomic Delights.-5\",\"meta_description\":\"Pairing Wine with Gastronomic Delights.-5\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"dated\":\"2025-01-14 16:49:52\",\"sts\":\"1\",\"is_featured\":\"1\",\"updated_at\":\"2025-01-03T11:50:45.000000Z\",\"created_at\":\"2025-01-03T11:50:45.000000Z\",\"id\":54}','2025-01-03 06:50:45','2025-01-03 06:50:45',NULL),(147,55,'Pairing Wine with Gastronomic Delights.-6','http://localhost/mlcms/site_files/public/adminmedia/blog-post/55/edit','BlogPost',1,'::1','{\"author_id\":\"1\",\"author_name\":\"Jasmine Quinn\",\"title\":\"Pairing Wine with Gastronomic Delights.-6\",\"cate_ids\":\"13\",\"tags\":\"gaming\",\"post_slug\":\"pairing-wine-with-gastronomic-delights-6\",\"description\":\"<p>Pairing Wine with Gastronomic Delights.-6<\\/p>\",\"featured_img\":\"pairing-wine-with-gastronomic-delights-6.webp\",\"featured_img_title\":\"Pairing Wine with Gastronomic Delights.-6\",\"featured_img_alt\":\"Pairing Wine with Gastronomic Delights.-6\",\"meta_title\":\"Pairing Wine with Gastronomic Delights.-6\",\"meta_keywords\":\"Pairing Wine with Gastronomic Delights.-6\",\"meta_description\":\"Pairing Wine with Gastronomic Delights.-6\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"dated\":\"2025-01-14 16:51:06\",\"sts\":\"1\",\"is_featured\":\"1\",\"updated_at\":\"2025-01-03T11:51:44.000000Z\",\"created_at\":\"2025-01-03T11:51:44.000000Z\",\"id\":55}','2025-01-03 06:51:44','2025-01-03 06:51:44',NULL),(148,56,'Pairing Wine with Gastronomic Delights.-7','http://localhost/mlcms/site_files/public/adminmedia/blog-post/56/edit','BlogPost',1,'::1','{\"author_id\":\"1\",\"author_name\":\"Robert Kcarery\",\"title\":\"Pairing Wine with Gastronomic Delights.-7\",\"cate_ids\":\"13\",\"tags\":\"gaming\",\"post_slug\":\"pairing-wine-with-gastronomic-delights-7\",\"description\":\"<p>Pairing Wine with Gastronomic Delights.-7<\\/p>\",\"featured_img\":\"pairing-wine-with-gastronomic-delights-7.webp\",\"featured_img_title\":\"Pairing Wine with Gastronomic Delights.-7\",\"featured_img_alt\":\"Pairing Wine with Gastronomic Delights.-7\",\"meta_title\":\"Pairing Wine with Gastronomic Delights.-7\",\"meta_keywords\":\"Pairing Wine with Gastronomic Delights.-7\",\"meta_description\":\"Pairing Wine with Gastronomic Delights.-7\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"dated\":\"2025-01-29 16:52:07\",\"sts\":\"1\",\"is_featured\":\"1\",\"updated_at\":\"2025-01-03T11:52:50.000000Z\",\"created_at\":\"2025-01-03T11:52:50.000000Z\",\"id\":56}','2025-01-03 06:52:50','2025-01-03 06:52:50',NULL),(149,56,'Pairing Wine with Gastronomic Delights.-7','http://localhost/mlcms/site_files/public/adminmedia/blog-post/56/edit','BlogPost',1,'::1','{\"id\":56,\"author_id\":\"1\",\"author_name\":\"Robert Kcarery\",\"cate_ids\":\"13\",\"title\":\"Pairing Wine with Gastronomic Delights.-7\",\"post_slug\":\"pairing-wine-with-gastronomic-delights-7\",\"description\":\"<p><strong>What is Lorem Ipsum?<\\/strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\\r\\n<p><strong>What is Lorem Ipsum?<\\/strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"featured_img\":\"pairing-wine-with-gastronomic-delights-7.webp\",\"featured_img_title\":\"Pairing Wine with Gastronomic Delights.-7\",\"featured_img_alt\":\"Pairing Wine with Gastronomic Delights.-7\",\"meta_title\":\"Pairing Wine with Gastronomic Delights.-7\",\"meta_keywords\":\"Pairing Wine with Gastronomic Delights.-7\",\"meta_description\":\"Pairing Wine with Gastronomic Delights.-7\",\"sts\":\"1\",\"is_featured\":\"1\",\"count_comments\":0,\"dated\":\"2024-10-13\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"tags\":\"gaming\",\"created_at\":\"2025-01-03T11:52:50.000000Z\",\"updated_at\":\"2025-01-03T12:20:06.000000Z\",\"deleted_at\":null}','2025-01-03 07:20:06','2025-01-03 07:20:06',NULL),(150,32,'Elevate Your Style Game with Confidence','http://localhost/mlcms/site_files/public/adminmedia/blog-post/32/edit','BlogPost',1,'::1','{\"id\":32,\"author_id\":\"1\",\"author_name\":\"Robert Kcarery\",\"cate_ids\":\"14,11\",\"title\":\"Elevate Your Style Game with Confidence\",\"post_slug\":\"elevate-your-style-game-with-confidence\",\"description\":\"<p><strong>What is Lorem Ipsum?<\\/strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\\r\\n<p><strong>What is Lorem Ipsum?<\\/strong><br>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p>\",\"featured_img\":\"elevate-your-style-game-with-confidence.webp\",\"featured_img_title\":\"Elevate Your Style Game with Confidence\",\"featured_img_alt\":\"Elevate Your Style Game with Confidence\",\"meta_title\":\"Elevate Your Style Game with Confidence\",\"meta_keywords\":\"Elevate Your Style Game with Confidence\",\"meta_description\":\"Elevate Your Style Game with Confidence\",\"sts\":\"1\",\"is_featured\":\"1\",\"count_comments\":0,\"dated\":\"2024-11-05\",\"canonical_url\":null,\"show_follow\":\"1\",\"show_index\":\"1\",\"tags\":\"Life Style,Fashion\",\"created_at\":\"2025-01-03T10:04:13.000000Z\",\"updated_at\":\"2025-01-03T12:22:06.000000Z\",\"deleted_at\":null}','2025-01-03 07:22:06','2025-01-03 07:22:06',NULL),(151,104,'Manage Pages - About Us','http://localhost/mlcms/site_files/public/adminmedia/module/cms/edit/104','CmsModuleData',1,'::1','{\"id\":104,\"heading\":\"About Us\",\"content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed congue est vel nisl mollis sagittis. Fusce aliquet risus a aliquet mattis. Curabitur scelerisque congue tristique. Praesent varius massa eu commodo pulvinar. Sed venenatis feugiat felis eu convallis. Praesent tristique est metus, vel placerat augue ultricies eu. Maecenas mi quam, volutpat in pharetra nec, elementum ullamcorper orci. Quisque fringilla ex velit, eget tempus sem suscipit a. Sed egestas id turpis nec feugiat.&nbsp;<br>Pellentesque vitae nulla molestie, aliquet tellus ac, feugiat quam. Morbi velit mauris, faucibus a condimentum porttitor, mollis id urna. Etiam cursus, lacus sit amet tempor condimentum, magna magna efficitur eros, sit amet scelerisque augue nisl nec turpis.<\\/p>\\r\\n<ul>\\r\\n<li>Morbi eleifend<\\/li>\\r\\n<li>Vehicula felis<\\/li>\\r\\n<li>Lorem ipsum<\\/li>\\r\\n<li>Sed congue<\\/li>\\r\\n<li>Praesent varius<\\/li>\\r\\n<\\/ul>\\r\\n<p>Morbi eleifend euismod fermentum. In et vehicula felis. Suspendisse id nibh ac dui imperdiet tincidunt ac non risus. Sed nec laoreet dui, vitae semper ligula. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Suspendisse ullamcorper erat eros, nec vestibulum dolor suscipit sit amet. Pellentesque molestie purus ut aliquam tristique. Mauris velit risus, placerat vitae ex ac, rutrum laoreet sem. Phasellus et purus et nulla sollicitudin luctus. Nullam in ultrices nunc, eget rutrum justo. Aliquam erat volutpat. Mauris at gravida neque.<\\/p>\",\"post_slug\":\"about-us\",\"sts\":1,\"dated\":\"2019-05-17 10:36:04\",\"featured_img\":\"3.webp\",\"featured_img_title\":\"about us\",\"featured_img_alt\":\"about us\",\"additional_field_1\":null,\"additional_field_2\":null,\"additional_field_3\":null,\"additional_field_4\":null,\"additional_field_5\":null,\"additional_field_6\":null,\"additional_field_7\":null,\"additional_field_8\":null,\"item_order\":3,\"meta_title\":\"About US\",\"meta_keywords\":\"About Us\",\"meta_description\":\"About Us\",\"canonical_url\":null,\"menu_location\":\"1\",\"preference_order\":0,\"is_pages\":1,\"permanent_page\":\"1\",\"content_type\":\"page\",\"belongs_to_module_id\":0,\"cms_module_id\":1,\"show_follow\":\"1\",\"show_index\":\"1\",\"cat_id\":null,\"is_featured\":0}','2025-02-20 05:32:01','2025-02-20 05:32:01',NULL),(152,228,'Manage Pages - Page with Images','http://localhost/mlcms/site_files/public/adminmedia/module/cms/edit/228','CmsModuleData',1,'::1','{\"id\":228,\"heading\":\"Page with Images\",\"content\":\"<p>Morbi eleifend euismod fermentum. In et vehicula felis. Suspendisse id nibh ac dui imperdiet tincidunt ac non risus. Sed nec laoreet dui, vitae semper ligula. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Suspendisse ullamcorper erat eros, nec vestibulum dolor suscipit sit amet. Pellentesque molestie purus ut aliquam tristique. Mauris velit risus, placerat vitae ex ac, rutrum laoreet sem. Phasellus et purus et nulla sollicitudin luctus. Nullam in ultrices nunc, eget rutrum justo. Aliquam erat volutpat. Mauris at gravida neque.<\\/p>\\r\\n<p><img style=\\\"margin: 5px; float: left;\\\" src=\\\"http:\\/\\/localhost\\/mlcms\\/site_files\\/public\\/mlstorage\\/uploads\\/editor\\/images\\/3.webp\\\" alt=\\\"\\\"><\\/p>\\r\\n<p>Morbi eleifend euismod fermentum. In et vehicula felis. Suspendisse id nibh ac dui imperdiet tincidunt ac non risus. Sed nec laoreet dui, vitae semper ligula. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Suspendisse ullamcorper erat eros, nec vestibulum dolor suscipit sit amet. Pellentesque molestie purus ut aliquam tristique. Mauris velit risus, placerat vitae ex ac, rutrum laoreet sem. Phasellus et purus et nulla sollicitudin luctus. Nullam in ultrices nunc, eget rutrum justo. Aliquam erat volutpat. Mauris at gravida neque.<\\/p>\\r\\n<p>Curabitur scelerisque congue tristique. Praesent varius massa eu commodo pulvinar. Sed venenatis feugiat felis eu convallis. Praesent tristique est metus, vel placerat augue ultricies eu. Maecenas mi quam, volutpat in pharetra nec, elementum ullamcorper orci. Quisque fringilla ex velit, eget tempus sem suscipit a. Sed egestas id turpis nec feugiat.<br><br>Pellentesque vitae nulla molestie, aliquet tellus ac, feugiat quam. Morbi velit mauris, faucibus a condimentum porttitor, mollis id urna. Etiam cursus, lacus sit amet tempor condimentum, magna magna efficitur eros, sit amet scelerisque augue nisl nec turpis.<\\/p>\\r\\n<p><img style=\\\"float: right; margin: 5px;\\\" src=\\\"http:\\/\\/localhost\\/mlcms\\/site_files\\/public\\/mlstorage\\/uploads\\/editor\\/images\\/2.webp\\\"><\\/p>\\r\\n<p>Morbi eleifend euismod fermentum. In et vehicula felis. Suspendisse id nibh ac dui imperdiet tincidunt ac non risus. Sed nec laoreet dui, vitae semper ligula. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Suspendisse ullamcorper erat eros, nec vestibulum dolor suscipit sit amet. Pellentesque molestie purus ut aliquam tristique. Mauris velit risus, placerat vitae ex ac, rutrum laoreet sem. Phasellus et purus et nulla sollicitudin luctus. Nullam in ultrices nunc, eget rutrum justo. Aliquam erat volutpat. Mauris at gravida neque.<\\/p>\",\"post_slug\":\"page-with-images\",\"sts\":1,\"dated\":\"2023-03-03 11:26:56\",\"featured_img\":\"resized-r2.webp\",\"featured_img_title\":\"alt-1\",\"featured_img_alt\":\"title-1\",\"additional_field_1\":null,\"additional_field_2\":null,\"additional_field_3\":null,\"additional_field_4\":null,\"additional_field_5\":null,\"additional_field_6\":null,\"additional_field_7\":null,\"additional_field_8\":null,\"item_order\":8,\"meta_title\":\"Page with Images\",\"meta_keywords\":\"Page with Images\",\"meta_description\":\"Page with Images\",\"canonical_url\":null,\"menu_location\":\"2\",\"preference_order\":null,\"is_pages\":1,\"permanent_page\":\"0\",\"content_type\":\"page\",\"belongs_to_module_id\":0,\"cms_module_id\":1,\"show_follow\":\"1\",\"show_index\":\"1\",\"cat_id\":null,\"is_featured\":0}','2025-02-24 09:47:27','2025-02-24 09:47:27',NULL),(153,104,'Manage Pages - About Us','http://localhost/mlcms/site_files/public/adminmedia/module/cms/edit/104','CmsModuleData',1,'::1','{\"id\":104,\"heading\":\"About Us\",\"content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed congue est vel nisl mollis sagittis. Fusce aliquet risus a aliquet mattis. Curabitur scelerisque congue tristique. Praesent varius massa eu commodo pulvinar. Sed venenatis feugiat felis eu convallis. Praesent tristique est metus, vel placerat augue ultricies eu. Maecenas mi quam, volutpat in pharetra nec, elementum ullamcorper orci. Quisque fringilla ex velit, eget tempus sem suscipit a. Sed egestas id turpis nec feugiat.&nbsp;<br>Pellentesque vitae nulla molestie, aliquet tellus ac, feugiat quam. Morbi velit mauris, faucibus a condimentum porttitor, mollis id urna. Etiam cursus, lacus sit amet tempor condimentum, magna magna efficitur eros, sit amet scelerisque augue nisl nec turpis.<\\/p>\\r\\n<ul>\\r\\n<li>Morbi eleifend<\\/li>\\r\\n<li>Vehicula felis<\\/li>\\r\\n<li>Lorem ipsum<\\/li>\\r\\n<li>Sed congue<\\/li>\\r\\n<li>Praesent varius<\\/li>\\r\\n<\\/ul>\\r\\n<p>Morbi eleifend euismod fermentum. In et vehicula felis. Suspendisse id nibh ac dui imperdiet tincidunt ac non risus. Sed nec laoreet dui, vitae semper ligula. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Suspendisse ullamcorper erat eros, nec vestibulum dolor suscipit sit amet. Pellentesque molestie purus ut aliquam tristique. Mauris velit risus, placerat vitae ex ac, rutrum laoreet sem. Phasellus et purus et nulla sollicitudin luctus. Nullam in ultrices nunc, eget rutrum justo. Aliquam erat volutpat. Mauris at gravida neque.<\\/p>\",\"excerpt\":\"<p>this is excerpt<\\/p>\",\"post_slug\":\"about-us\",\"sts\":1,\"dated\":\"2019-05-17 10:36:04\",\"featured_img\":\"3.webp\",\"featured_img_title\":\"about us\",\"featured_img_alt\":\"about us\",\"additional_field_1\":null,\"additional_field_2\":null,\"additional_field_3\":null,\"additional_field_4\":null,\"additional_field_5\":null,\"additional_field_6\":null,\"additional_field_7\":null,\"additional_field_8\":null,\"item_order\":3,\"meta_title\":\"About US\",\"meta_keywords\":\"About Us\",\"meta_description\":\"About Us\",\"canonical_url\":null,\"menu_location\":\"1\",\"preference_order\":0,\"is_pages\":1,\"permanent_page\":\"1\",\"content_type\":\"page\",\"belongs_to_module_id\":0,\"cms_module_id\":1,\"show_follow\":\"1\",\"show_index\":\"1\",\"cat_id\":null,\"is_featured\":0}','2025-08-26 20:21:59','2025-08-26 20:21:59',NULL),(154,104,'Manage Pages - About Us','http://localhost/mlcms/site_files/public/adminmedia/module/cms/edit/104','CmsModuleData',1,'::1','{\"id\":104,\"heading\":\"About Us\",\"content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed congue est vel nisl mollis sagittis. Fusce aliquet risus a aliquet mattis. Curabitur scelerisque congue tristique. Praesent varius massa eu commodo pulvinar. Sed venenatis feugiat felis eu convallis. Praesent tristique est metus, vel placerat augue ultricies eu. Maecenas mi quam, volutpat in pharetra nec, elementum ullamcorper orci. Quisque fringilla ex velit, eget tempus sem suscipit a. Sed egestas id turpis nec feugiat.&nbsp;<br>Pellentesque vitae nulla molestie, aliquet tellus ac, feugiat quam. Morbi velit mauris, faucibus a condimentum porttitor, mollis id urna. Etiam cursus, lacus sit amet tempor condimentum, magna magna efficitur eros, sit amet scelerisque augue nisl nec turpis.<\\/p>\\r\\n<ul>\\r\\n<li>Morbi eleifend<\\/li>\\r\\n<li>Vehicula felis<\\/li>\\r\\n<li>Lorem ipsum<\\/li>\\r\\n<li>Sed congue<\\/li>\\r\\n<li>Praesent varius<\\/li>\\r\\n<\\/ul>\\r\\n<p>Morbi eleifend euismod fermentum. In et vehicula felis. Suspendisse id nibh ac dui imperdiet tincidunt ac non risus. Sed nec laoreet dui, vitae semper ligula. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Suspendisse ullamcorper erat eros, nec vestibulum dolor suscipit sit amet. Pellentesque molestie purus ut aliquam tristique. Mauris velit risus, placerat vitae ex ac, rutrum laoreet sem. Phasellus et purus et nulla sollicitudin luctus. Nullam in ultrices nunc, eget rutrum justo. Aliquam erat volutpat. Mauris at gravida neque.<\\/p>\",\"excerpt\":\"<p>this is excerpt 123<\\/p>\",\"post_slug\":\"about-us\",\"sts\":1,\"dated\":\"2019-05-17 10:36:04\",\"featured_img\":\"3.webp\",\"featured_img_title\":\"about us\",\"featured_img_alt\":\"about us\",\"additional_field_1\":null,\"additional_field_2\":null,\"additional_field_3\":null,\"additional_field_4\":null,\"additional_field_5\":null,\"additional_field_6\":null,\"additional_field_7\":null,\"additional_field_8\":null,\"item_order\":3,\"meta_title\":\"About US\",\"meta_keywords\":\"About Us\",\"meta_description\":\"About Us\",\"canonical_url\":null,\"menu_location\":\"1\",\"preference_order\":0,\"is_pages\":1,\"permanent_page\":\"1\",\"content_type\":\"page\",\"belongs_to_module_id\":0,\"cms_module_id\":1,\"show_follow\":\"1\",\"show_index\":\"1\",\"cat_id\":null,\"is_featured\":0}','2025-08-26 20:22:10','2025-08-26 20:22:10',NULL),(155,36,'recaptcha_site_key','http://localhost/mlcms/site_files/public/adminmedia/setting/captcha','MetaData',1,'::1','{\"id\":36,\"data_key\":\"recaptcha_site_key\",\"val1\":\"6Ldf9bMrAAAAAERiGA1q7hDsXzi0vTK91-nMecdY\",\"dated\":\"2024-06-25 13:30:03\"}','2025-08-26 22:00:45','2025-08-26 22:00:45',NULL),(156,37,'recaptcha_secret_key','http://localhost/mlcms/site_files/public/adminmedia/setting/captcha','MetaData',1,'::1','{\"id\":37,\"data_key\":\"recaptcha_secret_key\",\"val1\":\"6Ldf9bMrAAAAAFfTC2w8KAXIc9LOOUmgufNJVcQ8\",\"dated\":\"2024-06-25 13:30:03\"}','2025-08-26 22:00:46','2025-08-26 22:00:46',NULL),(157,104,'Manage Pages - About Us','http://localhost/mlcms/site_files/public/adminmedia/module/cms/edit/104','CmsModuleData',1,'::1','{\"id\":104,\"heading\":\"About Us\",\"content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed congue est vel nisl mollis sagittis. Fusce aliquet risus a aliquet mattis. Curabitur scelerisque congue tristique. Praesent varius massa eu commodo pulvinar. Sed venenatis feugiat felis eu convallis. Praesent tristique est metus, vel placerat augue ultricies eu. Maecenas mi quam, volutpat in pharetra nec, elementum ullamcorper orci. Quisque fringilla ex velit, eget tempus sem suscipit a. Sed egestas id turpis nec feugiat.&nbsp;<br>Pellentesque vitae nulla molestie, aliquet tellus ac, feugiat quam. Morbi velit mauris, faucibus a condimentum porttitor, mollis id urna. Etiam cursus, lacus sit amet tempor condimentum, magna magna efficitur eros, sit amet scelerisque augue nisl nec turpis.<\\/p>\\r\\n<ul>\\r\\n<li>Morbi eleifend<\\/li>\\r\\n<li>Vehicula felis<\\/li>\\r\\n<li>Lorem ipsum<\\/li>\\r\\n<li>Sed congue<\\/li>\\r\\n<li>Praesent varius<\\/li>\\r\\n<\\/ul>\\r\\n<p>Morbi eleifend euismod fermentum. In et vehicula felis. Suspendisse id nibh ac dui imperdiet tincidunt ac non risus. Sed nec laoreet dui, vitae semper ligula. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Suspendisse ullamcorper erat eros, nec vestibulum dolor suscipit sit amet. Pellentesque molestie purus ut aliquam tristique. Mauris velit risus, placerat vitae ex ac, rutrum laoreet sem. Phasellus et purus et nulla sollicitudin luctus. Nullam in ultrices nunc, eget rutrum justo. Aliquam erat volutpat. Mauris at gravida neque.<\\/p>\",\"content_2\":\"<p>descp 2<\\/p>\",\"excerpt\":\"<p>this is excerpt 123<\\/p>\",\"post_slug\":\"about-us\",\"sts\":1,\"dated\":\"2019-05-17 10:36:04\",\"featured_img\":\"3.webp\",\"featured_img_title\":\"about us\",\"featured_img_alt\":\"about us\",\"additional_field_1\":null,\"additional_field_2\":null,\"additional_field_3\":null,\"additional_field_4\":null,\"additional_field_5\":null,\"additional_field_6\":null,\"additional_field_7\":null,\"additional_field_8\":null,\"item_order\":3,\"meta_title\":\"About US\",\"meta_keywords\":\"About Us\",\"meta_description\":\"About Us\",\"canonical_url\":null,\"menu_location\":\"1\",\"preference_order\":0,\"is_pages\":1,\"permanent_page\":\"1\",\"content_type\":\"page\",\"belongs_to_module_id\":0,\"cms_module_id\":1,\"show_follow\":\"1\",\"show_index\":\"1\",\"cat_id\":null,\"is_featured\":0}','2025-08-27 01:49:32','2025-08-27 01:49:32',NULL),(158,104,'Manage Pages - About Us','http://localhost/mlcms/site_files/public/adminmedia/module/cms/edit/104','CmsModuleData',1,'::1','{\"id\":104,\"heading\":\"About Us\",\"content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed congue est vel nisl mollis sagittis. Fusce aliquet risus a aliquet mattis. Curabitur scelerisque congue tristique. Praesent varius massa eu commodo pulvinar. Sed venenatis feugiat felis eu convallis. Praesent tristique est metus, vel placerat augue ultricies eu. Maecenas mi quam, volutpat in pharetra nec, elementum ullamcorper orci. Quisque fringilla ex velit, eget tempus sem suscipit a. Sed egestas id turpis nec feugiat.&nbsp;<br>Pellentesque vitae nulla molestie, aliquet tellus ac, feugiat quam. Morbi velit mauris, faucibus a condimentum porttitor, mollis id urna. Etiam cursus, lacus sit amet tempor condimentum, magna magna efficitur eros, sit amet scelerisque augue nisl nec turpis.<\\/p>\\r\\n<ul>\\r\\n<li>Morbi eleifend<\\/li>\\r\\n<li>Vehicula felis<\\/li>\\r\\n<li>Lorem ipsum<\\/li>\\r\\n<li>Sed congue<\\/li>\\r\\n<li>Praesent varius<\\/li>\\r\\n<\\/ul>\\r\\n<p>Morbi eleifend euismod fermentum. In et vehicula felis. Suspendisse id nibh ac dui imperdiet tincidunt ac non risus. Sed nec laoreet dui, vitae semper ligula. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Suspendisse ullamcorper erat eros, nec vestibulum dolor suscipit sit amet. Pellentesque molestie purus ut aliquam tristique. Mauris velit risus, placerat vitae ex ac, rutrum laoreet sem. Phasellus et purus et nulla sollicitudin luctus. Nullam in ultrices nunc, eget rutrum justo. Aliquam erat volutpat. Mauris at gravida neque.<\\/p>\",\"content_2\":\"<p>descp 2<\\/p>\",\"excerpt\":\"<p>this is excerpt 123<\\/p>\",\"post_slug\":\"about-us\",\"sts\":1,\"dated\":\"2019-05-17 10:36:04\",\"featured_img\":\"3.webp\",\"featured_img_title\":\"about us\",\"featured_img_alt\":\"about us\",\"additional_field_1\":null,\"additional_field_2\":null,\"additional_field_3\":null,\"additional_field_4\":null,\"additional_field_5\":null,\"additional_field_6\":null,\"additional_field_7\":null,\"additional_field_8\":null,\"item_order\":3,\"meta_title\":\"About US\",\"meta_keywords\":\"About Us\",\"meta_description\":\"About Us\",\"canonical_url\":null,\"menu_location\":\"1\",\"preference_order\":0,\"is_pages\":1,\"permanent_page\":\"1\",\"content_type\":\"page\",\"belongs_to_module_id\":0,\"cms_module_id\":1,\"show_follow\":\"1\",\"show_index\":\"1\",\"cat_id\":null,\"is_featured\":0}','2025-08-27 01:53:00','2025-08-27 01:53:00',NULL),(159,12,'jawad@medialinkers.com','http://localhost/mlcms/site_files/public/adminmedia/contact_request/12/edit','ContactUsRequest',1,'::1','{\"id\":12,\"name\":\"John\",\"lname\":\"Doe\",\"email\":\"jawad@medialinkers.com\",\"city\":null,\"country\":null,\"phone\":\"888-888-8888\",\"comments\":\"test 123\",\"ip\":\"::1\",\"dated\":\"2025-09-10\",\"company_name\":null,\"added_by\":1,\"read_lead\":1,\"price\":null,\"subject\":\"John Doe Sent Email\",\"address\":null,\"is_exported\":0,\"package_id\":null,\"assesment_status\":\"0\",\"assesment_code\":null,\"added_to_google_calendar\":0,\"referrer\":\"\",\"created_at\":\"2025-09-17T15:25:15.000000Z\",\"updated_at\":\"2025-09-17T06:39:05.000000Z\"}','2025-09-16 21:39:05','2025-09-16 21:39:05',NULL),(160,4,'John Doe','http://localhost/mlcms/site_files/public/adminmedia/subscribers/4/edit','Subscriber',1,'::1','{\"status\":\"0\",\"email\":\"johndoe@medialinkers.com\",\"name\":\"John Doe\",\"updated_at\":\"2025-11-17T08:20:14.000000Z\",\"created_at\":\"2025-11-17T08:20:14.000000Z\",\"id\":4}','2025-11-16 22:20:14','2025-11-16 22:20:14',NULL),(161,4,'John Doe','http://localhost/mlcms/site_files/public/adminmedia/subscribers/4/edit','Subscriber',1,'::1','{\"id\":4,\"name\":\"John Doe\",\"email\":\"johndoe@medialinkers.com\",\"status\":\"1\",\"created_at\":\"2025-11-17T08:20:14.000000Z\",\"updated_at\":\"2025-11-17T08:20:23.000000Z\"}','2025-11-16 22:20:23','2025-11-16 22:20:23',NULL),(162,4,'John Doe','http://localhost/mlcms/site_files/public/adminmedia/subscribers/4/edit','Subscriber',1,'::1','{\"id\":4,\"name\":\"John Doe\",\"email\":\"johndoe@medialinkers.com\",\"status\":\"1\",\"created_at\":\"2025-11-17T08:20:14.000000Z\",\"updated_at\":\"2025-11-17T08:20:23.000000Z\"}','2025-11-16 22:20:28','2025-11-16 22:20:28',NULL),(163,5,'John Doe','http://localhost/mlcms/site_files/public/adminmedia/subscribers/5/edit','Subscriber',1,'::1','{\"status\":\"1\",\"email\":\"johndoe@medialinkers.com\",\"name\":\"John Doe\",\"updated_at\":\"2025-11-17T08:21:00.000000Z\",\"created_at\":\"2025-11-17T08:21:00.000000Z\",\"id\":5}','2025-11-16 22:21:00','2025-11-16 22:21:00',NULL),(164,1,'head_body_js','http://localhost/mlcms/site_files/public/adminmedia/settings/1/edit','Setting',1,'::1','{\"id\":1,\"emails_per_hour\":32,\"business_name\":\"Medialinkers CMS\",\"duns\":\"888888898\",\"address\":\"1350 Wooten Lake Road,\\r\\nSuite 102 \\r\\nKennesaw, GA 30144\",\"email\":\"info@mlcms.directfinding.com\",\"telephone\":\"123-123-1234\",\"mobile\":\"123-123-1234\",\"fax\":\"111-222-3333\",\"cc_email\":\"\",\"bcc_email\":\"\",\"google_analytics\":\"<!-- Google tag (gtag.js) -->\\r\\n<script async src=\\\"https:\\/\\/www.googletagmanager.com\\/gtag\\/js?id=G-YD1ZK91LD5\\\"><\\/script>\\r\\n<script>\\r\\n  window.dataLayer = window.dataLayer || [];\\r\\n  function gtag(){dataLayer.push(arguments);}\\r\\n  gtag(\'js\', new Date());\\r\\n\\r\\n  gtag(\'config\', \'G-YD1ZK91LD5\');\\r\\n<\\/script>\",\"head_js\":\"<script><\\/script>\",\"body_js\":\"<script><\\/script>\",\"contactus_spam_words\":\"url=,href=,script\",\"google_map_status\":\"1\",\"web_down_msg\":\"<div class=\\\"error-page-wrap\\\">\\r\\n<div class=\\\"container\\\">\\r\\n<div class=\\\"errormain\\\">\\r\\n<h2>Sorry<\\/h2>\\r\\n<h3>This site is currently down for maintenance and should be back soon.<\\/h3>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\",\"web_down_status\":\"0\",\"gallery_status\":0,\"type\":\"main\",\"to_email\":\"info@mlcms.directfinding.com\",\"working_days\":null,\"working_hours\":null,\"google_adsense_left\":\"<script><\\/script>\",\"google_adsense_right\":\"<script><\\/script>\",\"google_adsense_footer\":\"<script><\\/script>\",\"admin_login_page_logo\":\"admin-logo.webp\",\"admin_header_logo\":\"ml-logo.webp\",\"admin_favicon\":\"favicon.ico\",\"og_image\":null}','2026-01-22 18:21:16','2026-01-22 18:21:16',NULL),(165,1,'fufetosaw@mailinator.com','http://127.0.0.1:8000/adminmedia/contact_request/1/edit','ContactUsRequest',1,'127.0.0.1','{\"name\":\"Leroy Sullivan\",\"lname\":\"Aphrodite William\",\"email\":\"fufetosaw@mailinator.com\",\"phone\":\"156-888-9467\",\"subject\":\"Autem perspiciatis\",\"comments\":\"Aliquam laboriosam\",\"city\":\"\",\"country\":\"\",\"ip\":\"127.0.0.1\",\"dated\":\"1993-02-25\",\"added_by\":1,\"id\":1}','2026-05-07 00:39:02','2026-05-07 00:39:02',NULL);
/*!40000 ALTER TABLE `record_update_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `referrer_impression_lead`
--

DROP TABLE IF EXISTS `referrer_impression_lead`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `referrer_impression_lead` (
  `id` int NOT NULL AUTO_INCREMENT,
  `impressions` int DEFAULT '0',
  `leads` int DEFAULT '0',
  `quotes` int DEFAULT '0',
  `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `referrer_impression_lead`
--

LOCK TABLES `referrer_impression_lead` WRITE;
/*!40000 ALTER TABLE `referrer_impression_lead` DISABLE KEYS */;
INSERT INTO `referrer_impression_lead` VALUES (1,4,3,0,'2025-01-01 08:17:20','2026-05-07 00:37:21');
/*!40000 ALTER TABLE `referrer_impression_lead` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `service_extra_images`
--

DROP TABLE IF EXISTS `service_extra_images`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `service_extra_images` (
  `id` int NOT NULL AUTO_INCREMENT,
  `image_name` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `image_name2` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `isBeforeAfter` int DEFAULT '0',
  `isBeforeAfterHaveTwoImages` int DEFAULT '0',
  `service_id` int DEFAULT NULL,
  `session_id` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `image_alt` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `image_title` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `sort_order` int DEFAULT '9999',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `service_extra_images`
--

LOCK TABLES `service_extra_images` WRITE;
/*!40000 ALTER TABLE `service_extra_images` DISABLE KEYS */;
INSERT INTO `service_extra_images` VALUES (13,'5.webp',NULL,0,0,44,NULL,NULL,NULL,9999,'2024-11-04 06:35:00','2024-11-04 06:35:00',NULL),(14,'4.webp',NULL,0,0,44,NULL,NULL,NULL,9999,'2024-11-04 06:35:01','2024-11-04 06:35:01',NULL),(15,'3.webp',NULL,0,0,44,NULL,NULL,NULL,9999,'2024-11-04 06:35:02','2024-11-04 06:35:02',NULL),(17,'imgonline-com-ua-twotoone-ewmghn6pq5.webp',NULL,1,0,44,NULL,NULL,NULL,9999,'2024-11-04 06:49:53','2024-11-04 06:49:53',NULL),(18,'f-18-before.webp','f-18-after.webp',1,1,44,NULL,NULL,NULL,9999,'2024-11-04 06:50:41','2024-11-04 06:50:41',NULL);
/*!40000 ALTER TABLE `service_extra_images` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `services`
--

DROP TABLE IF EXISTS `services`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `services` (
  `id` int NOT NULL AUTO_INCREMENT,
  `parent_id` int DEFAULT '0',
  `title` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `slug` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `excerpt` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `featured_image` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `featured_image_title` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `featured_image_alt` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `is_featured` tinyint(1) DEFAULT '0',
  `status` tinyint(1) DEFAULT '1',
  `sort_order` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `meta_title` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `meta_keywords` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `meta_description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `show_follow` enum('0','1') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '1',
  `show_index` enum('0','1') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '1',
  `canonical_url` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `services`
--

LOCK TABLES `services` WRITE;
/*!40000 ALTER TABLE `services` DISABLE KEYS */;
INSERT INTO `services` VALUES (44,0,'Financial Planning','financial-planning','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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.','<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\r\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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\r\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\r\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>','financial-planning.webp','Financial Planning','Financial Planning',1,1,'1','Financial Planning','Financial Planning','Financial Planning','1','1',NULL,'2024-11-04 05:06:26','2024-11-05 01:53:39',NULL),(45,0,'Markets Research','markets-research','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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.','<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\r\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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\r\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\r\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>','markets-research.webp','Markets Research','Markets Research',1,1,'3','Markets Research','Markets Research','Markets Research','1','1',NULL,'2024-11-04 05:16:19','2024-11-05 06:52:57',NULL),(46,0,'Investment Planning','investment-planning','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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.','<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\r\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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\r\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\r\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>','investment-planning.webp','Investment Planning','Investment Planning',1,1,'2','Investment Planning','Investment Planning','Investment Planning','1','1',NULL,'2024-11-04 05:18:45','2024-11-05 06:52:57',NULL),(47,0,'Mutual Funds','mutual-funds','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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.','<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\r\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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\r\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\r\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>','mutual-funds.webp','Mutual Funds','Mutual Funds',1,1,'4','Mutual Funds','Mutual Funds','Mutual Funds','1','1',NULL,'2024-11-04 05:19:51','2024-11-05 06:52:57',NULL),(48,0,'Report Analysis','report-analysis','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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.','<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\r\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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\r\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\r\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>','report-analysis.webp','Report Analysis','Report Analysis',1,1,'5','Report Analysis','Report Analysis','Report Analysis','1','1',NULL,'2024-11-04 05:20:59','2024-11-05 06:52:57',NULL),(49,44,'Cash Flow Planning','cash-flow-planning','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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.','<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\r\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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\r\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\r\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>','financial-planning-1.webp','Cash Flow Planning','Cash Flow Planning',0,1,'1-1','Cash Flow Planning','Cash Flow Planning','Cash Flow Planning','1','1',NULL,'2024-11-04 05:06:26','2024-11-08 06:46:11',NULL),(50,44,'Insurance Planning','insurance-planning','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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.','<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\r\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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\r\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\r\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>','financial-planning-2.webp','Insurance Planning','Insurance Planning',0,1,'1-2','Insurance Planning','Insurance Planning','Insurance Planning','1','1',NULL,'2024-11-04 05:06:26','2024-11-08 06:46:15',NULL),(51,49,'Operating Cash Flow','operating-cash-flow','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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.','<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\r\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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\r\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\r\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>','financial-planning-1-sub-1.webp','Operating Cash Flow','Operating Cash Flow',0,1,'1-1-1','Operating Cash Flow','Operating Cash Flow','Operating Cash Flow','1','1',NULL,'2024-11-04 05:06:26','2024-11-08 06:46:12',NULL),(52,49,'Investing Cash Flow','investing-cash-flow','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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.','<h3>The standard Lorem Ipsum passage, used since the 1500s</h3>\r\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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\"</p>\r\n<h3>Section 1.10.32 of \"de Finibus Bonorum et Malorum\", written by Cicero in 45 BC</h3>\r\n<p>\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\"</p>','financial-planning-1-sub-2.webp','Investing Cash Flow','Investing Cash Flow',0,1,'1-1-2','Investing Cash Flow','Investing Cash Flow','Investing Cash Flow','1','1',NULL,'2024-11-04 05:06:26','2024-11-08 06:46:13',NULL);
/*!40000 ALTER TABLE `services` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sessions`
--

DROP TABLE IF EXISTS `sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sessions` (
  `id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `user_id` bigint unsigned DEFAULT NULL,
  `ip_address` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `user_agent` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `last_activity` int NOT NULL,
  PRIMARY KEY (`id`),
  KEY `sessions_user_id_index` (`user_id`),
  KEY `sessions_last_activity_index` (`last_activity`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sessions`
--

LOCK TABLES `sessions` WRITE;
/*!40000 ALTER TABLE `sessions` DISABLE KEYS */;
INSERT INTO `sessions` VALUES ('0hSOnjRpaYWHKeCW732jNW6c8OIZTX0kRQW8ukkr',NULL,'127.0.0.1','curl/8.7.1','YTo0OntzOjY6Il90b2tlbiI7czo0MDoiazFITHN0Nk5iUHRFNWtJSzRuUFlrYnhiVkplZjBZdTJqUEY4QzMwViI7czozOiJ1cmwiO2E6MTp7czo4OiJpbnRlbmRlZCI7czozMjoiaHR0cDovLzEyNy4wLjAuMTo4MDAwL2FkbWlubWVkaWEiO31zOjk6Il9wcmV2aW91cyI7YToxOntzOjM6InVybCI7czozMjoiaHR0cDovLzEyNy4wLjAuMTo4MDAwL2FkbWlubWVkaWEiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19',1778132118),('2Y32H8n6hDjfs0SO5F1PGPLe3cAaaEO505SX35wH',1,'127.0.0.1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36','YToxMzp7czo2OiJfdG9rZW4iO3M6NDA6IjdRUGhnUFdLY1U2eTlFN1pqYU5QbUNwQXA3dTlIMG5MWHF2ZEtyU0kiO3M6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fXM6MzoidXJsIjthOjA6e31zOjk6Il9wcmV2aW91cyI7YToxOntzOjM6InVybCI7czozMjoiaHR0cDovLzEyNy4wLjAuMTo4MDAwL2FkbWlubWVkaWEiO31zOjUwOiJsb2dpbl93ZWJfNTliYTM2YWRkYzJiMmY5NDAxNTgwZjAxNGM3ZjU4ZWE0ZTMwOTg5ZCI7aToxO3M6NDoiYXV0aCI7YToxOntzOjIxOiJwYXNzd29yZF9jb25maXJtZWRfYXQiO2k6MTc3ODEzMTMxODt9czoxMToiZGF0ZV9mb3JtYXQiO3M6NjoiTSBkLCBZIjtzOjE2OiJkYXRlX3RpbWVfZm9ybWF0IjtzOjEzOiJtLWQtWSBoOmk6cyBBIjtzOjk6InRpbWVfem9uZSI7czoxNjoiQW1lcmljYS9OZXdfWW9yayI7czoxNDoibWF4X2ltYWdlX3NpemUiO3M6MjoiMjUiO3M6NzoibWVzc2FnZSI7czowOiIiO3M6NDoidHlwZSI7czowOiIiO3M6MjI6ImltcHJlc3Npb25faW5jcmVtZW50ZWQiO2k6MTt9',1778151117),('cKSVcpq05yBthzDgESW1aAhwIrxNnXpC4NUQEYp1',NULL,'127.0.0.1','curl/8.7.1','YTozOntzOjY6Il90b2tlbiI7czo0MDoiUEt0UGFQMDlSOENaZ2FCWFBzcXlEalpxUkJWc0ZJa1lRd3BmN05NNSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MjE6Imh0dHA6Ly8xMjcuMC4wLjE6ODAwMCI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1778130895),('RH4KRH8dPZZrYD38gVvcDITIml1OSEQ8TNzkOLgS',NULL,'127.0.0.1','Go-http-client/1.1','YToyOntzOjY6Il90b2tlbiI7czo0MDoiNnl4c2VYQ3pkRGtVR1lNbzFrbVVBcWZmdFV3STVBS1RFS3pVNFNoZyI7czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==',1778130884),('tdIPJkN9CN5DLs5Jvn97JHy2IyW6I4Bxh4h80hvI',NULL,'127.0.0.1','Go-http-client/1.1','YTozOntzOjY6Il90b2tlbiI7czo0MDoiUTBycmpSdkQ4TTI4M285NW9RSzRnaHBvMmxYU3g3QnVCd3dpWHM0ayI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MjE6Imh0dHA6Ly8xMjcuMC4wLjE6ODAwMCI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1778130884),('ZBsEMYIQeGTXzYtr9oToLuhouzrii8eCoaGVWYiA',NULL,'127.0.0.1','curl/8.7.1','YTozOntzOjY6Il90b2tlbiI7czo0MDoiYnhoeWhLMWE1SzdXTTlwVUNKWXoxODBLa0dNRHFudnFCS0lZcE9sbSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MjE6Imh0dHA6Ly8xMjcuMC4wLjE6ODAwMCI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1778130986);
/*!40000 ALTER TABLE `sessions` 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` int NOT NULL AUTO_INCREMENT,
  `emails_per_hour` int DEFAULT NULL,
  `business_name` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `duns` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `address` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `email` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `telephone` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `mobile` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `fax` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `cc_email` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `bcc_email` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `google_analytics` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `head_js` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `body_js` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `contactus_spam_words` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `google_map_status` enum('1','0') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '0',
  `web_down_msg` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `web_down_status` enum('1','0') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '0',
  `gallery_status` tinyint(1) DEFAULT '1',
  `type` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT 'address',
  `to_email` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `working_days` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `working_hours` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `google_adsense_left` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `google_adsense_right` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `google_adsense_footer` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `admin_login_page_logo` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `admin_header_logo` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `admin_favicon` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `og_image` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_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,32,'Medialinkers CMS','888888898','1350 Wooten Lake Road,\r\nSuite 102 \r\nKennesaw, GA 30144','info@mlcms.directfinding.com','123-123-1234','123-123-1234','111-222-3333','','','<!-- Google tag (gtag.js) -->\r\n<script async src=\"https://www.googletagmanager.com/gtag/js?id=G-YD1ZK91LD5\"></script>\r\n<script>\r\n  window.dataLayer = window.dataLayer || [];\r\n  function gtag(){dataLayer.push(arguments);}\r\n  gtag(\'js\', new Date());\r\n\r\n  gtag(\'config\', \'G-YD1ZK91LD5\');\r\n</script>','<script></script>','<script></script>','url=,href=,script','1','<div class=\"error-page-wrap\">\r\n<div class=\"container\">\r\n<div class=\"errormain\">\r\n<h2>Sorry</h2>\r\n<h3>This site is currently down for maintenance and should be back soon.</h3>\r\n</div>\r\n</div>\r\n</div>','0',0,'main','info@mlcms.directfinding.com',NULL,NULL,'<script></script>','<script></script>','<script></script>','admin-logo.webp','ml-logo.webp','favicon.ico',NULL);
/*!40000 ALTER TABLE `settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `site_map`
--

DROP TABLE IF EXISTS `site_map`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `site_map` (
  `id` int NOT NULL AUTO_INCREMENT,
  `parent_id` int DEFAULT '0',
  `title` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `link` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `is_link_internal` tinyint(1) DEFAULT '1',
  `status` tinyint(1) DEFAULT '1',
  `sort_order` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `site_map`
--

LOCK TABLES `site_map` WRITE;
/*!40000 ALTER TABLE `site_map` DISABLE KEYS */;
INSERT INTO `site_map` VALUES (1,0,'Home','/',1,1,'1','2024-11-09 02:37:57','2024-11-13 02:40:38',NULL),(5,0,'About Ponsford','about-us',1,1,'2','2024-11-09 02:44:19','2024-11-10 00:59:41',NULL),(6,0,'Services','services',1,1,'3','2024-11-09 02:44:39','2024-11-10 00:59:45',NULL),(7,6,'Military Artifacts','services/conservation_restoration/military-artifacts-planes-helicopters-tanks-and-guns.htm',1,1,'3-1','2024-11-09 02:45:48','2024-11-10 01:00:06',NULL),(8,6,'Appraisals',NULL,1,1,'3-2','2024-11-09 02:46:41','2024-11-10 01:29:43',NULL),(9,6,'Laser Cleaning',NULL,1,1,'3-3','2024-11-09 02:47:44','2024-11-10 01:29:57',NULL),(10,8,'General','services/conservation_restoration/appraisal.htm',1,1,'3-2-1','2024-11-09 02:51:30','2024-11-10 00:36:50',NULL),(11,9,'General','services/conservation_restoration/lasers1.htm',1,1,'3-3-1','2024-11-09 02:52:45','2024-11-10 00:36:57',NULL),(12,6,'Sculpture/Monuments',NULL,1,1,'3-4','2024-11-09 02:56:11','2024-11-10 01:30:11',NULL),(13,12,'General','services/conservation_restoration/sculpture2.htm',1,1,'3-4-1','2024-11-09 02:57:46','2024-11-10 01:00:33',NULL),(14,12,'Conservators','services/conservation_restoration/sculpture1.htm',1,1,'3-4-2','2024-11-09 02:58:30','2024-11-10 01:00:33',NULL),(15,12,'Small Sculptures','services/conservation_restoration/small_sculpture1.htm',1,1,'3-4-3','2024-11-09 02:59:05','2024-11-09 02:59:05',NULL),(16,12,'Arlington Cemetery',NULL,1,1,'3-4-4','2024-11-10 00:41:12','2024-11-10 00:41:12',NULL),(17,16,'Nurses Memorial /Army & Navy','services/conservation_restoration/nursesMemorial.htm',1,1,'3-4-4-3','2024-11-10 00:41:48','2024-11-10 01:00:55',NULL),(18,16,'Iran Rescue Mission Memorial','services/conservation_restoration/iranRescue.htm',1,1,'3-4-4-1','2024-11-10 00:42:29','2024-11-10 01:00:54',NULL),(19,16,'Joe Lewis Monument','services/conservation_restoration/joeLewis.htm',1,1,'3-4-4-2','2024-11-10 00:43:19','2024-11-10 01:00:55',NULL),(20,12,'Portsmouth',NULL,1,1,'3-4-5','2024-11-10 00:44:44','2024-11-10 01:00:32',NULL),(21,20,'Spanish/American Vet Memorial','services/conservation_restoration/span_vets.htm',1,1,'3-4-5-1','2024-11-10 00:45:24','2024-11-10 01:01:15',NULL),(22,20,'Sundial','services/conservation_restoration/sundial.htm',1,1,'3-4-5-2','2024-11-10 00:46:05','2024-11-10 01:01:15',NULL),(23,6,'Marine Artifacts',NULL,1,1,'3-5','2024-11-10 00:47:03','2024-11-10 00:47:03',NULL),(24,23,'General','services/conservation_restoration/marine_artifacts1.htm',1,1,'3-5-1','2024-11-10 00:47:37','2024-11-10 00:47:37',NULL),(25,0,'Contact Us',NULL,1,1,'4','2024-11-10 00:48:21','2024-11-10 00:59:45',NULL),(26,25,'Contact Us','conservation_restoration/contact.htm',1,1,'4-1','2024-11-10 00:48:51','2024-11-10 00:48:51',NULL),(27,25,'Directions','https://search.yahoo.com/',0,1,'4-2','2024-11-10 00:56:47','2024-11-10 00:56:47',NULL);
/*!40000 ALTER TABLE `site_map` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `social_media`
--

DROP TABLE IF EXISTS `social_media`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `social_media` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `alt_tag` varchar(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `link` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `icon_img` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `i_class` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `display` enum('left-sidebar','footer') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `display_order` int NOT NULL,
  `sts` tinyint(1) DEFAULT '0',
  `dated` datetime NOT NULL,
  `item_order` int NOT NULL,
  `open_in_new_tab` enum('No','Yes') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT 'Yes',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `social_media`
--

LOCK TABLES `social_media` WRITE;
/*!40000 ALTER TABLE `social_media` DISABLE KEYS */;
INSERT INTO `social_media` VALUES (7,'facebook','facebook','#','','fab fa-facebook','left-sidebar',1,1,'2015-11-02 11:22:03',2,'Yes'),(9,'youtube','youtube','#','','fab fa-youtube','left-sidebar',2,1,'2015-11-02 11:52:30',1,'Yes'),(10,'pinterest','pinterest','#','','fab fa-pinterest','left-sidebar',3,1,'2015-11-19 14:11:00',3,'Yes'),(11,'Twitter','Twitter','#','','fab fa-twitter','left-sidebar',4,1,'2017-01-04 07:52:16',4,'Yes'),(12,'Yelp','yelp','#','','fab fa-yelp','left-sidebar',5,1,'2017-10-12 05:01:45',5,'Yes');
/*!40000 ALTER TABLE `social_media` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `square_settings`
--

DROP TABLE IF EXISTS `square_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `square_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `is_live` tinyint(1) NOT NULL DEFAULT '0',
  `live_access_token` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `live_application_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `live_location_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sandbox_access_token` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sandbox_application_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sandbox_location_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `square_settings`
--

LOCK TABLES `square_settings` WRITE;
/*!40000 ALTER TABLE `square_settings` DISABLE KEYS */;
INSERT INTO `square_settings` VALUES (1,0,NULL,NULL,NULL,NULL,NULL,NULL,'2026-05-06 21:50:30','2026-05-06 21:50:51');
/*!40000 ALTER TABLE `square_settings` 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` int NOT NULL AUTO_INCREMENT,
  `state_code` varchar(5) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `state_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `status` tinyint(1) DEFAULT '1',
  `sort_order` int DEFAULT '9999999',
  `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_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,'AL','Alabama',1,1,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(2,'AK','Alaska',1,2,'2022-05-11 11:53:38','2023-07-28 11:52:50',NULL),(3,'AZ','Arizona',1,3,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(4,'AR','Arkansas',1,4,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(5,'CA','California',1,5,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(6,'CO','Colorado',1,6,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(7,'CT','Connecticut',1,7,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(8,'DE','Delaware',1,8,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(9,'DC','District of Columbia',1,9,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(10,'FL','Florida',1,10,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(11,'GA','Georgia',1,11,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(12,'HI','Hawaii',1,12,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(13,'ID','Idaho',1,13,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(14,'IL','Illinois',1,14,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(15,'IN','Indiana',1,15,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(16,'IA','Iowa',1,16,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(17,'KS','Kansas',1,17,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(18,'KY','Kentucky',1,18,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(19,'LA','Louisiana',1,19,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(20,'ME','Maine',1,20,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(21,'MD','Maryland',1,21,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(22,'MA','Massachusetts',1,22,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(23,'MI','Michigan',1,23,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(24,'MN','Minnesota',1,24,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(25,'MS','Mississippi',1,25,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(26,'MO','Missouri',1,26,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(27,'MT','Montana',1,27,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(28,'NE','Nebraska',1,28,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(29,'NV','Nevada',1,29,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(30,'NH','New Hampshire',1,30,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(31,'NJ','New Jersey',1,31,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(32,'NM','New Mexico',1,32,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(33,'NY','New York',1,33,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(34,'NC','North Carolina',1,34,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(35,'ND','North Dakota',1,35,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(36,'OH','Ohio',1,36,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(37,'OK','Oklahoma',1,37,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(38,'OR','Oregon',1,38,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(39,'PA','Pennsylvania',1,39,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(40,'PR','Puerto Rico',1,40,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(41,'RI','Rhode Island',1,41,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(42,'SC','South Carolina',1,42,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(43,'SD','South Dakota',1,43,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(44,'TN','Tennessee',1,44,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(45,'TX','Texas',1,45,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(46,'UT','Utah',1,46,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(47,'VT','Vermont',1,47,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(48,'VA','Virginia',1,48,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(49,'WA','Washington',1,49,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(50,'WV','West Virginia',1,50,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(51,'WI','Wisconsin',1,51,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL),(52,'WY','Wyoming',1,52,'2022-05-11 11:53:38','2022-05-17 11:49:24',NULL);
/*!40000 ALTER TABLE `states` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `subscribers`
--

DROP TABLE IF EXISTS `subscribers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `subscribers` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `email` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `status` tinyint(1) DEFAULT '1',
  `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `subscribers`
--

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

--
-- Table structure for table `templates`
--

DROP TABLE IF EXISTS `templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `templates` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `template` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `templates`
--

LOCK TABLES `templates` WRITE;
/*!40000 ALTER TABLE `templates` DISABLE KEYS */;
/*!40000 ALTER TABLE `templates` 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` int unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `phone` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `password` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `remember_token` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `type` enum('user','normal-admin','super-admin','reps') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT 'user',
  `active` tinyint(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `api_token` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `on_notification_email` enum('No','Yes') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT 'Yes',
  `profile_image` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `address_line_1` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `address_line_2` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `zipcode` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `city` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `state` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `country` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  PRIMARY KEY (`id`),
  UNIQUE KEY `users_email_unique` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=86 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_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','service@medialinkers.com',NULL,'$2y$12$PvVNtCxtDc.WhBiZsdx4TOB9L9xhnG98TpO4Db9vDV7QcjcZmofOO','IdIRsW4PuzSRRJ71qabdsODE5g3izdrDEzwu6kfN6CDg4mHR9etfJg0p5u9E','super-admin',1,'2018-04-26 05:11:06','2024-11-19 04:24:57',NULL,'Yes',NULL,NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `videos`
--

DROP TABLE IF EXISTS `videos`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `videos` (
  `id` int NOT NULL AUTO_INCREMENT,
  `heading` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `content` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `short_detail` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `slug` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `video_img` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `dated` datetime NOT NULL,
  `sts` tinyint(1) DEFAULT '0',
  `video_type` varchar(80) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT 'code',
  `item_order` int DEFAULT '999999',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=59 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `videos`
--

LOCK TABLES `videos` WRITE;
/*!40000 ALTER TABLE `videos` DISABLE KEYS */;
INSERT INTO `videos` VALUES (52,'How to produce a VTOL drone from scratch','<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/vzB1-vpkEDA?si=K8Ur4IXp0lqfIewI\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen=\"\"></iframe>','How to produce a VTOL drone from scratch','how-to-produce-a-vtol-drone-from-scratch','how-to-produce-a-vtol-drone-from-scratch-1731429390.jpg','2024-11-12 16:36:31',1,'Youtube',999999),(53,'Drone','<div style=\"padding:50% 0 0 0;position:relative;\"><iframe src=\"https://player.vimeo.com/video/215402779?badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture; clipboard-write\" style=\"position:absolute;top:0;left:0;width:100%;height:100%;\" title=\"Drone\"></iframe></div><script src=\"https://player.vimeo.com/api/player.js\"></script>','Drone','drone','drone-1725269405.jpg','2024-09-02 09:30:06',1,'Vimeo',999999),(58,'Sample Upload Video','sample-upload-video.mp4','Sample Upload Video','sample-upload-video','sample-upload-video.jpg','2024-09-02 12:12:47',1,'upload',999999);
/*!40000 ALTER TABLE `videos` 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` int NOT NULL AUTO_INCREMENT,
  `page_slug` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `heading` varchar(155) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `content` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `featured_image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `featured_image_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `featured_image_alt` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `sts` tinyint(1) DEFAULT '1',
  `additional_field_1` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `additional_field_2` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `additional_field_3` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `additional_field_4` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `additional_field_5` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `additional_field_6` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `additional_field_7` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `additional_field_8` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `pages_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `admin_data` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `additional_field_data` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `dated` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=93 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_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 (81,NULL,'Widget Its Time To Make Your Money Work For You','<p><span style=\"color: hsl(210,75%,60%);\">Its Time To Make Your Money Work For YouIts Time To Make Your Money Work For YouIts Time To Make Your Money Work For You</span></p>','phenom-300.webp','title','title',1,'Button Title','Button Link',NULL,NULL,NULL,NULL,NULL,NULL,'104','{\"show_heading\":\"1\",\"show_content\":\"1\",\"show_featured_img\":\"1\"}','{\"additional_field_1\":\"Read More\",\"additional_field_2\":\"http:\\/\\/localhost\\/mlcms\\/public\\/achivement\",\"additional_field_3\":null,\"additional_field_4\":null,\"additional_field_5\":null,\"additional_field_6\":null,\"additional_field_7\":null,\"additional_field_8\":null}','2021-01-27 08:00:47'),(92,'footer-about-us','Footer About Us','<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ultricies, libero ac posuere pharetra, dui dui egestas ligula, ut accumsan dui sapien ut nunc. Aliquam commodo elit lacus, sit amet vehicula risus pellentesque ac. Curabitur et nulla vel sapien aliquet rutrum. Mauris nec orci erat. Phasellus vitae nibh eu sem viverra vehicula.</p>',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"show_heading\":1,\"show_content\":1,\"show_featured_img\":1,\"show_additional_fields\":1}','{\"additional_field_1\":null,\"additional_field_2\":null,\"additional_field_3\":null,\"additional_field_4\":null,\"additional_field_5\":null,\"additional_field_6\":null,\"additional_field_7\":null,\"additional_field_8\":null}','2024-11-10 06:16:04');
/*!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 2026-05-07 15:54:24
