Server IP : 103.119.228.120 / Your IP : 18.191.192.109 Web Server : Apache System : Linux v8.techscape8.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64 User : nobody ( 99) PHP Version : 5.6.40 Disable Function : shell_exec,symlink,system,exec,proc_get_status,proc_nice,proc_terminate,define_syslog_variables,syslog,openlog,closelog,escapeshellcmd,passthru,ocinum cols,ini_alter,leak,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dl,dll,myshellexec,proc_open,socket_bind,proc_close,escapeshellarg,parse_ini_filepopen,fpassthru,exec,passthru,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,popen,show_source,proc_nice,proc_terminate,proc_get_status,proc_close,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,dl,symlink,shell_exec,system,dl,passthru,escapeshellarg,escapeshellcmd,myshellexec,c99_buff_prepare,c99_sess_put,fpassthru,getdisfunc,fx29exec,fx29exec2,is_windows,disp_freespace,fx29sh_getupdate,fx29_buff_prepare,fx29_sess_put,fx29shexit,fx29fsearch,fx29ftpbrutecheck,fx29sh_tools,fx29sh_about,milw0rm,imagez,sh_name,myshellexec,checkproxyhost,dosyayicek,c99_buff_prepare,c99_sess_put,c99getsource,c99sh_getupdate,c99fsearch,c99shexit,view_perms,posix_getpwuid,posix_getgrgid,posix_kill,parse_perms,parsesort,view_perms_color,set_encoder_input,ls_setcheckboxall,ls_reverse_all,rsg_read,rsg_glob,selfURL,dispsecinfo,unix2DosTime,addFile,system,get_users,view_size,DirFiles,DirFilesWide,DirPrintHTMLHeaders,GetFilesTotal,GetTitles,GetTimeTotal,GetMatchesCount,GetFileMatchesCount,GetResultFiles,fs_copy_dir,fs_copy_obj,fs_move_dir,fs_move_obj,fs_rmdir,SearchText,getmicrotime MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/softaculous/osclass/ |
Upload File : |
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Database: `osclass440` -- -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_admin` -- CREATE TABLE `[[dbprefix]]t_admin` ( `pk_i_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `s_name` varchar(100) NOT NULL, `s_username` varchar(40) NOT NULL, `s_password` char(60) NOT NULL, `s_email` varchar(100) DEFAULT NULL, `s_secret` varchar(40) DEFAULT NULL, `b_moderator` tinyint(1) NOT NULL DEFAULT '0', `s_moderator_access` varchar(1000) DEFAULT NULL, `i_login_fails` int(3) DEFAULT '0', `dt_login_fail_date` datetime DEFAULT NULL, PRIMARY KEY (`pk_i_id`), UNIQUE KEY `s_username` (`s_username`), UNIQUE KEY `s_email` (`s_email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; -- -- Dumping data for table `[[dbprefix]]t_admin` -- INSERT INTO `[[dbprefix]]t_admin` VALUES (1, 'Administrator', '[[admin_username]]', '[[admin_pass]]', '[[admin_email]]', NULL, 0, NULL, 0, NULL); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_alerts` -- CREATE TABLE `[[dbprefix]]t_alerts` ( `pk_i_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `s_email` varchar(100) DEFAULT NULL, `fk_i_user_id` int(10) unsigned DEFAULT NULL, `s_search` longtext, `s_secret` varchar(40) DEFAULT NULL, `b_active` tinyint(1) NOT NULL DEFAULT '0', `e_type` enum('INSTANT','HOURLY','DAILY','WEEKLY','CUSTOM') NOT NULL, `dt_date` datetime DEFAULT NULL, `dt_unsub_date` datetime DEFAULT NULL, PRIMARY KEY (`pk_i_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_alerts_sent` -- CREATE TABLE `[[dbprefix]]t_alerts_sent` ( `d_date` date NOT NULL, `i_num_alerts_sent` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`d_date`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_ban_rule` -- CREATE TABLE `[[dbprefix]]t_ban_rule` ( `pk_i_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `s_name` varchar(250) NOT NULL DEFAULT '', `s_ip` varchar(50) NOT NULL DEFAULT '', `s_email` varchar(250) NOT NULL DEFAULT '', PRIMARY KEY (`pk_i_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_category` -- CREATE TABLE `[[dbprefix]]t_category` ( `pk_i_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `fk_i_parent_id` int(10) unsigned DEFAULT NULL, `i_expiration_days` int(3) unsigned NOT NULL DEFAULT '0', `i_position` int(2) unsigned NOT NULL DEFAULT '0', `b_enabled` tinyint(1) NOT NULL DEFAULT '1', `b_price_enabled` tinyint(1) NOT NULL DEFAULT '1', `s_icon` varchar(250) DEFAULT NULL, `s_color` varchar(20) DEFAULT NULL, PRIMARY KEY (`pk_i_id`), KEY `fk_i_parent_id` (`fk_i_parent_id`), KEY `i_position` (`i_position`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=96 ; -- -- Dumping data for table `[[dbprefix]]t_category` -- INSERT INTO `[[dbprefix]]t_category` VALUES (1, NULL, 0, 1, 1, 1, NULL, NULL), (2, NULL, 0, 2, 1, 1, NULL, NULL), (3, NULL, 0, 3, 1, 1, NULL, NULL), (4, NULL, 0, 4, 1, 1, NULL, NULL), (5, NULL, 0, 5, 1, 1, NULL, NULL), (6, NULL, 0, 6, 1, 1, NULL, NULL), (7, NULL, 0, 7, 1, 1, NULL, NULL), (8, NULL, 0, 8, 1, 1, NULL, NULL), (9, 1, 0, 1, 1, 1, NULL, NULL), (10, 1, 0, 2, 1, 1, NULL, NULL), (11, 1, 0, 3, 1, 1, NULL, NULL), (12, 1, 0, 4, 1, 1, NULL, NULL), (13, 1, 0, 5, 1, 1, NULL, NULL), (14, 1, 0, 6, 1, 1, NULL, NULL), (15, 1, 0, 7, 1, 1, NULL, NULL), (16, 1, 0, 8, 1, 1, NULL, NULL), (17, 1, 0, 9, 1, 1, NULL, NULL), (18, 1, 0, 10, 1, 1, NULL, NULL), (19, 1, 0, 11, 1, 1, NULL, NULL), (20, 1, 0, 12, 1, 1, NULL, NULL), (21, 1, 0, 13, 1, 1, NULL, NULL), (22, 1, 0, 14, 1, 1, NULL, NULL), (23, 1, 0, 15, 1, 1, NULL, NULL), (24, 1, 0, 16, 1, 1, NULL, NULL), (25, 1, 0, 17, 1, 1, NULL, NULL), (26, 1, 0, 18, 1, 1, NULL, NULL), (27, 1, 0, 19, 1, 1, NULL, NULL), (28, 1, 0, 20, 1, 1, NULL, NULL), (29, 1, 0, 21, 1, 1, NULL, NULL), (30, 1, 0, 22, 1, 1, NULL, NULL), (31, 2, 0, 1, 1, 1, NULL, NULL), (32, 2, 0, 2, 1, 1, NULL, NULL), (33, 2, 0, 3, 1, 1, NULL, NULL), (34, 2, 0, 4, 1, 1, NULL, NULL), (35, 2, 0, 5, 1, 1, NULL, NULL), (36, 2, 0, 6, 1, 1, NULL, NULL), (37, 2, 0, 7, 1, 1, NULL, NULL), (38, 3, 0, 1, 1, 1, NULL, NULL), (39, 3, 0, 2, 1, 1, NULL, NULL), (40, 3, 0, 3, 1, 1, NULL, NULL), (41, 3, 0, 4, 1, 1, NULL, NULL), (42, 3, 0, 5, 1, 1, NULL, NULL), (43, 4, 0, 1, 1, 1, NULL, NULL), (44, 4, 0, 2, 1, 1, NULL, NULL), (45, 4, 0, 3, 1, 1, NULL, NULL), (46, 4, 0, 4, 1, 1, NULL, NULL), (47, 4, 0, 5, 1, 1, NULL, NULL), (48, 4, 0, 6, 1, 1, NULL, NULL), (49, 4, 0, 7, 1, 1, NULL, NULL), (50, 4, 0, 8, 1, 1, NULL, NULL), (51, 4, 0, 9, 1, 1, NULL, NULL), (52, 5, 0, 1, 1, 1, NULL, NULL), (53, 5, 0, 2, 1, 1, NULL, NULL), (54, 5, 0, 3, 1, 1, NULL, NULL), (55, 5, 0, 4, 1, 1, NULL, NULL), (56, 5, 0, 5, 1, 1, NULL, NULL), (57, 5, 0, 6, 1, 1, NULL, NULL), (58, 5, 0, 7, 1, 1, NULL, NULL), (59, 5, 0, 8, 1, 1, NULL, NULL), (60, 5, 0, 9, 1, 1, NULL, NULL), (61, 5, 0, 10, 1, 1, NULL, NULL), (62, 5, 0, 11, 1, 1, NULL, NULL), (63, 6, 0, 1, 1, 1, NULL, NULL), (64, 6, 0, 2, 1, 1, NULL, NULL), (65, 6, 0, 3, 1, 1, NULL, NULL), (66, 6, 0, 4, 1, 1, NULL, NULL), (67, 6, 0, 5, 1, 1, NULL, NULL), (68, 6, 0, 6, 1, 1, NULL, NULL), (69, 7, 0, 1, 1, 1, NULL, NULL), (70, 7, 0, 2, 1, 1, NULL, NULL), (71, 7, 0, 3, 1, 1, NULL, NULL), (72, 7, 0, 4, 1, 1, NULL, NULL), (73, 7, 0, 5, 1, 1, NULL, NULL), (74, 7, 0, 6, 1, 1, NULL, NULL), (75, 8, 0, 1, 1, 1, NULL, NULL), (76, 8, 0, 2, 1, 1, NULL, NULL), (77, 8, 0, 3, 1, 1, NULL, NULL), (78, 8, 0, 4, 1, 1, NULL, NULL), (79, 8, 0, 5, 1, 1, NULL, NULL), (80, 8, 0, 6, 1, 1, NULL, NULL), (81, 8, 0, 7, 1, 1, NULL, NULL), (82, 8, 0, 8, 1, 1, NULL, NULL), (83, 8, 0, 9, 1, 1, NULL, NULL), (84, 8, 0, 10, 1, 1, NULL, NULL), (85, 8, 0, 11, 1, 1, NULL, NULL), (86, 8, 0, 12, 1, 1, NULL, NULL), (87, 8, 0, 13, 1, 1, NULL, NULL), (88, 8, 0, 14, 1, 1, NULL, NULL), (89, 8, 0, 15, 1, 1, NULL, NULL), (90, 8, 0, 16, 1, 1, NULL, NULL), (91, 8, 0, 17, 1, 1, NULL, NULL), (92, 8, 0, 18, 1, 1, NULL, NULL), (93, 8, 0, 19, 1, 1, NULL, NULL), (94, 8, 0, 20, 1, 1, NULL, NULL), (95, 8, 0, 21, 1, 1, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_category_description` -- CREATE TABLE `[[dbprefix]]t_category_description` ( `fk_i_category_id` int(10) unsigned NOT NULL, `fk_c_locale_code` char(5) NOT NULL, `s_name` varchar(100) DEFAULT NULL, `s_description` text, `s_slug` varchar(255) NOT NULL, PRIMARY KEY (`fk_i_category_id`,`fk_c_locale_code`), KEY `idx_s_slug` (`s_slug`), KEY `fk_c_locale_code` (`fk_c_locale_code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `[[dbprefix]]t_category_description` -- INSERT INTO `[[dbprefix]]t_category_description` VALUES (1, 'en_US', 'For sale', NULL, 'for-sale'), (2, 'en_US', 'Vehicles', NULL, 'vehicles'), (3, 'en_US', 'Classes', NULL, 'classes'), (4, 'en_US', 'Real estate', NULL, 'real-estate'), (5, 'en_US', 'Services', NULL, 'services'), (6, 'en_US', 'Community', NULL, 'community'), (7, 'en_US', 'Personals', NULL, 'personals'), (8, 'en_US', 'Jobs', NULL, 'jobs'), (9, 'en_US', 'Animals', NULL, 'animals'), (10, 'en_US', 'Art - Collectibles', NULL, 'art-collectibles'), (11, 'en_US', 'Barter', NULL, 'barter'), (12, 'en_US', 'Books - Magazines', NULL, 'books-magazines'), (13, 'en_US', 'Cameras - Camera Accessories', NULL, 'cameras-camera-accessories'), (14, 'en_US', 'CDs - Records', NULL, 'cds-records'), (15, 'en_US', 'Cell Phones - Accessories', NULL, 'cell-phones-accessories'), (16, 'en_US', 'Clothing', NULL, 'clothing'), (17, 'en_US', 'Computers - Hardware', NULL, 'computers-hardware'), (18, 'en_US', 'DVD', NULL, 'dvd'), (19, 'en_US', 'Electronics', NULL, 'electronics'), (20, 'en_US', 'For Babies - Infants', NULL, 'for-babies-infants'), (21, 'en_US', 'Garage Sale', NULL, 'garage-sale'), (22, 'en_US', 'Health - Beauty', NULL, 'health-beauty'), (23, 'en_US', 'Home - Furniture - Garden Supplies', NULL, 'home-furniture-garden-supplies'), (24, 'en_US', 'Jewelry - Watches', NULL, 'jewelry-watches'), (25, 'en_US', 'Musical Instruments', NULL, 'musical-instruments'), (26, 'en_US', 'Sporting Goods - Bicycles', NULL, 'sporting-goods-bicycles'), (27, 'en_US', 'Tickets', NULL, 'tickets'), (28, 'en_US', 'Toys - Games - Hobbies', NULL, 'toys-games-hobbies'), (29, 'en_US', 'Video Games - Consoles', NULL, 'video-games-consoles'), (30, 'en_US', 'Everything Else', NULL, 'everything-else'), (31, 'en_US', 'Cars', NULL, 'cars'), (32, 'en_US', 'Car Parts', NULL, 'car-parts'), (33, 'en_US', 'Motorcycles', NULL, 'motorcycles'), (34, 'en_US', 'Boats - Ships', NULL, 'boats-ships'), (35, 'en_US', 'RVs - Campers - Caravans', NULL, 'rvs-campers-caravans'), (36, 'en_US', 'Trucks - Commercial Vehicles', NULL, 'trucks-commercial-vehicles'), (37, 'en_US', 'Other Vehicles', NULL, 'other-vehicles'), (38, 'en_US', 'Computer - Multimedia Classes', NULL, 'computer-multimedia-classes'), (39, 'en_US', 'Language Classes', NULL, 'language-classes'), (40, 'en_US', 'Music - Theatre - Dance Classes', NULL, 'music-theatre-dance-classes'), (41, 'en_US', 'Tutoring - Private Lessons', NULL, 'tutoring-private-lessons'), (42, 'en_US', 'Other Classes', NULL, 'other-classes'), (43, 'en_US', 'Houses - Apartments for Sale', NULL, 'houses-apartments-for-sale'), (44, 'en_US', 'Houses - Apartments for Rent', NULL, 'houses-apartments-for-rent'), (45, 'en_US', 'Rooms for Rent - Shared', NULL, 'rooms-for-rent-shared'), (46, 'en_US', 'Housing Swap', NULL, 'housing-swap'), (47, 'en_US', 'Vacation Rentals', NULL, 'vacation-rentals'), (48, 'en_US', 'Parking Spots', NULL, 'parking-spots'), (49, 'en_US', 'Land', NULL, 'land'), (50, 'en_US', 'Office - Commercial Space', NULL, 'office-commercial-space'), (51, 'en_US', 'Shops for Rent - Sale', NULL, 'shops-for-rent-sale'), (52, 'en_US', 'Babysitter - Nanny', NULL, 'babysitter-nanny'), (53, 'en_US', 'Casting - Auditions', NULL, 'casting-auditions'), (54, 'en_US', 'Computer', NULL, 'computer'), (55, 'en_US', 'Event Services', NULL, 'event-services'), (56, 'en_US', 'Health - Beauty - Fitness', NULL, 'health-beauty-fitness'), (57, 'en_US', 'Horoscopes - Tarot', NULL, 'horoscopes-tarot'), (58, 'en_US', 'Household - Domestic Help', NULL, 'household-domestic-help'), (59, 'en_US', 'Moving - Storage', NULL, 'moving-storage'), (60, 'en_US', 'Repair', NULL, 'repair'), (61, 'en_US', 'Writing - Editing - Translating', NULL, 'writing-editing-translating'), (62, 'en_US', 'Other Services', NULL, 'other-services'), (63, 'en_US', 'Carpool', NULL, 'carpool'), (64, 'en_US', 'Community Activities', NULL, 'community-activities'), (65, 'en_US', 'Events', NULL, 'events'), (66, 'en_US', 'Musicians - Artists - Bands', NULL, 'musicians-artists-bands'), (67, 'en_US', 'Volunteers', NULL, 'volunteers'), (68, 'en_US', 'Lost And Found', NULL, 'lost-and-found'), (69, 'en_US', 'Women looking for Men', NULL, 'women-looking-for-men'), (70, 'en_US', 'Men looking for Women', NULL, 'men-looking-for-women'), (71, 'en_US', 'Men looking for Men', NULL, 'men-looking-for-men'), (72, 'en_US', 'Women looking for Women', NULL, 'women-looking-for-women'), (73, 'en_US', 'Friendship - Activity Partners', NULL, 'friendship-activity-partners'), (74, 'en_US', 'Missed Connections', NULL, 'missed-connections'), (75, 'en_US', 'Accounting - Finance', NULL, 'accounting-finance'), (76, 'en_US', 'Advertising - Public Relations', NULL, 'advertising-public-relations'), (77, 'en_US', 'Arts - Entertainment - Publishing', NULL, 'arts-entertainment-publishing'), (78, 'en_US', 'Clerical - Administrative', NULL, 'clerical-administrative'), (79, 'en_US', 'Customer Service', NULL, 'customer-service'), (80, 'en_US', 'Education - Training', NULL, 'education-training'), (81, 'en_US', 'Engineering - Architecture', NULL, 'engineering-architecture'), (82, 'en_US', 'Healthcare', NULL, 'healthcare'), (83, 'en_US', 'Human Resource', NULL, 'human-resource'), (84, 'en_US', 'Internet', NULL, 'internet'), (85, 'en_US', 'Legal', NULL, 'legal'), (86, 'en_US', 'Manual Labor', NULL, 'manual-labor'), (87, 'en_US', 'Manufacturing - Operations', NULL, 'manufacturing-operations'), (88, 'en_US', 'Marketing', NULL, 'marketing'), (89, 'en_US', 'Non-profit - Volunteer', NULL, 'non-profit-volunteer'), (90, 'en_US', 'Real Estate', NULL, 'real-estate_1'), (91, 'en_US', 'Restaurant - Food Service', NULL, 'restaurant-food-service'), (92, 'en_US', 'Retail', NULL, 'retail'), (93, 'en_US', 'Sales', NULL, 'sales'), (94, 'en_US', 'Technology', NULL, 'technology'), (95, 'en_US', 'Other Jobs', NULL, 'other-jobs'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_category_stats` -- CREATE TABLE `[[dbprefix]]t_category_stats` ( `fk_i_category_id` int(10) unsigned NOT NULL, `i_num_items` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`fk_i_category_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `[[dbprefix]]t_category_stats` -- INSERT INTO `[[dbprefix]]t_category_stats` VALUES (1, 1), (9, 1); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_city` -- CREATE TABLE `[[dbprefix]]t_city` ( `pk_i_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `fk_i_region_id` int(10) unsigned NOT NULL, `s_name` varchar(60) NOT NULL, `s_name_native` varchar(60) DEFAULT NULL, `s_slug` varchar(60) NOT NULL DEFAULT '', `fk_c_country_code` char(2) DEFAULT NULL, `b_active` tinyint(1) NOT NULL DEFAULT '1', `d_coord_lat` decimal(20,10) DEFAULT NULL, `d_coord_long` decimal(20,10) DEFAULT NULL, PRIMARY KEY (`pk_i_id`), KEY `fk_i_region_id` (`fk_i_region_id`), KEY `idx_s_name` (`s_name`), KEY `idx_s_slug` (`s_slug`), KEY `fk_c_country_code` (`fk_c_country_code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1143237 ; -- -- Dumping data for table `[[dbprefix]]t_city` -- INSERT INTO `[[dbprefix]]t_city` VALUES (1110965, 1001455, 'Abbeville', NULL, 'abbeville', 'US', 1, 31.9921200000, -83.3068200000), (1110966, 1001457, 'Abbeville', NULL, 'abbeville', 'US', 1, 29.9746500000, -92.1342900000), (1110967, 1001443, 'Abbeville', NULL, 'abbeville', 'US', 1, 34.1781700000, -82.3790100000), (1110968, 1001456, 'Abbeville', NULL, 'abbeville', 'US', 1, 31.5718400000, -85.2504900000), (1110969, 1001443, 'Abbeville County', NULL, 'abbeville-county', 'US', 1, 34.2225700000, -82.4587100000), (1110970, 1001441, 'Abbotsford', NULL, 'abbotsford', 'US', 1, 44.9463600000, -90.3159700000), (1110971, 1001422, 'Abbottstown', NULL, 'abbottstown', 'US', 1, 39.8864900000, -76.9847000000), (1110972, 1001436, 'Aberdeen', NULL, 'aberdeen', 'US', 1, 26.5506300000, -80.1486600000), (1110973, 1001401, 'Aberdeen', NULL, 'aberdeen', 'US', 1, 39.5095600000, -76.1641200000), (1110974, 1001430, 'Aberdeen', NULL, 'aberdeen', 'US', 1, 33.8251100000, -88.5436600000), (1110975, 1001447, 'Aberdeen', NULL, 'aberdeen', 'US', 1, 35.1315500000, -79.4294800000), (1110976, 1001440, 'Aberdeen', NULL, 'aberdeen', 'US', 1, 41.4389300000, -87.1114200000), (1110977, 1001445, 'Aberdeen', NULL, 'aberdeen', 'US', 1, 45.4647000000, -98.4864800000), (1110978, 1001460, 'Aberdeen', NULL, 'aberdeen', 'US', 1, 42.9440800000, -112.8383300000), (1110979, 1001462, 'Aberdeen', NULL, 'aberdeen', 'US', 1, 46.9753700000, -123.8157200000), (1110980, 1001401, 'Aberdeen Proving Ground', NULL, 'aberdeen-proving-ground', 'US', 1, 39.4668600000, -76.1306600000), (1110981, 1001407, 'Abernathy', NULL, 'abernathy', 'US', 1, 33.8323000000, -101.8429500000), (1110982, 1001406, 'Abilene', NULL, 'abilene', 'US', 1, 38.9172200000, -97.2139100000), (1110983, 1001407, 'Abilene', NULL, 'abilene', 'US', 1, 32.4487400000, -99.7331400000), (1110984, 1001427, 'Abingdon', NULL, 'abingdon', 'US', 1, 36.7098300000, -81.9773500000), (1110985, 1001425, 'Abingdon', NULL, 'abingdon', 'US', 1, 40.8044800000, -90.4018000000), (1110986, 1001433, 'Abington', NULL, 'abington', 'US', 1, 42.1048200000, -70.9453200000), (1110987, 1001457, 'Abita Springs', NULL, 'abita-springs', 'US', 1, 30.4786400000, -90.0400800000), (1110988, 1001407, 'Abram', NULL, 'abram', 'US', 1, 26.1998000000, -98.4111300000), (1110989, 1001446, 'Absarokee', NULL, 'absarokee', 'US', 1, 45.5205000000, -109.4429400000), (1110990, 1001417, 'Absecon', NULL, 'absecon', 'US', 1, 39.4284500000, -74.4957100000), (1110991, 1001457, 'Acadia Parish', NULL, 'acadia-parish', 'US', 1, 30.2905300000, -92.4119800000), (1110992, 1001416, 'Acalanes Ridge', NULL, 'acalanes-ridge', 'US', 1, 37.9047200000, -122.0785700000), (1110993, 1001401, 'Accokeek', NULL, 'accokeek', 'US', 1, 38.6676200000, -77.0283100000), (1110994, 1001427, 'Accomac', NULL, 'accomac', 'US', 1, 37.7195700000, -75.6654800000), (1110995, 1001427, 'Accomack County', NULL, 'accomack-county', 'US', 1, 37.7649400000, -75.7565600000), (1110996, 1001430, 'Ackerman', NULL, 'ackerman', 'US', 1, 33.3101200000, -89.1728400000), (1110997, 1001459, 'Ackley', NULL, 'ackley', 'US', 1, 42.5541500000, -93.0532600000), (1110998, 1001450, 'Acres Green', NULL, 'acres-green', 'US', 1, 39.5566600000, -104.8960900000), (1110999, 1001433, 'Acton', NULL, 'acton', 'US', 1, 42.4850900000, -71.4328400000), (1111000, 1001453, 'Acton', NULL, 'acton', 'US', 1, 43.5342500000, -70.9097800000), (1111001, 1001416, 'Acton', NULL, 'acton', 'US', 1, 34.4699900000, -118.1967400000), (1111002, 1001433, 'Acushnet', NULL, 'acushnet', 'US', 1, 41.6806600000, -70.9078200000), (1111003, 1001433, 'Acushnet Center', NULL, 'acushnet-center', 'US', 1, 41.6850800000, -70.9064200000), (1111004, 1001455, 'Acworth', NULL, 'acworth', 'US', 1, 34.0663500000, -84.6783700000), (1111005, 1001421, 'Ada', NULL, 'ada', 'US', 1, 34.7745300000, -96.6783400000), (1111006, 1001420, 'Ada', NULL, 'ada', 'US', 1, 47.2996900000, -96.5153500000), (1111007, 1001460, 'Ada County', NULL, 'ada-county', 'US', 1, 43.4511200000, -116.2410900000), (1111008, 1001419, 'Adair County', NULL, 'adair-county', 'US', 1, 37.1041600000, -85.2806500000), (1111009, 1001421, 'Adair County', NULL, 'adair-county', 'US', 1, 35.8839300000, -94.6586800000), (1111010, 1001459, 'Adair County', NULL, 'adair-county', 'US', 1, 41.3307500000, -94.4709400000), (1111011, 1001451, 'Adair County', NULL, 'adair-county', 'US', 1, 40.1905600000, -92.6007200000), (1111012, 1001455, 'Adairsville', NULL, 'adairsville', 'US', 1, 34.3687000000, -84.9341100000), (1111013, 1001433, 'Adams', NULL, 'adams', 'US', 1, 42.6242500000, -73.1176000000), (1111014, 1001452, 'Adams', NULL, 'adams', 'US', 1, 43.8092300000, -76.0240900000), (1111015, 1001441, 'Adams', NULL, 'adams', 'US', 1, 43.9560800000, -89.8181800000), (1111016, 1001452, 'Adams Center', NULL, 'adams-center', 'US', 1, 43.8600600000, -76.0054800000), (1111017, 1001425, 'Adams County', NULL, 'adams-county', 'US', 1, 39.9878900000, -91.1884900000), (1111018, 1001430, 'Adams County', NULL, 'adams-county', 'US', 1, 31.4829400000, -91.3535000000), (1111019, 1001422, 'Adams County', NULL, 'adams-county', 'US', 1, 39.8714500000, -77.2178900000), (1111020, 1001459, 'Adams County', NULL, 'adams-county', 'US', 1, 41.0289800000, -94.6991800000), (1111021, 1001440, 'Adams County', NULL, 'adams-county', 'US', 1, 40.7456600000, -84.9366500000), (1111022, 1001408, 'Adams County', NULL, 'adams-county', 'US', 1, 40.5244700000, -98.5012100000), (1111023, 1001441, 'Adams County', NULL, 'adams-county', 'US', 1, 43.9696300000, -89.7706400000), (1111024, 1001450, 'Adams County', NULL, 'adams-county', 'US', 1, 39.8736300000, -104.3379100000), (1111025, 1001460, 'Adams County', NULL, 'adams-county', 'US', 1, 44.8896500000, -116.4538700000), (1111026, 1001418, 'Adams County', NULL, 'adams-county', 'US', 1, 46.0968400000, -102.5285300000), (1111027, 1001462, 'Adams County', NULL, 'adams-county', 'US', 1, 46.9833800000, -118.5605000000), (1111028, 1001437, 'Adams Morgan', NULL, 'adams-morgan', 'US', 1, 38.9215000000, -77.0422000000), (1111029, 1001401, 'Adamstown', NULL, 'adamstown', 'US', 1, 39.3109400000, -77.4747100000), (1111030, 1001422, 'Adamstown', NULL, 'adamstown', 'US', 1, 40.2412000000, -76.0563300000), (1111031, 1001454, 'Adamsville', NULL, 'adamsville', 'US', 1, 35.2359100000, -88.3906000000), (1111032, 1001456, 'Adamsville', NULL, 'adamsville', 'US', 1, 33.6009400000, -86.9561100000), (1111033, 1001457, 'Addis', NULL, 'addis', 'US', 1, 30.3538000000, -91.2653900000), (1111034, 1001407, 'Addison', NULL, 'addison', 'US', 1, 32.9617900000, -96.8291700000), (1111035, 1001425, 'Addison', NULL, 'addison', 'US', 1, 41.9317000000, -87.9889600000), (1111036, 1001453, 'Addison', NULL, 'addison', 'US', 1, 44.6184100000, -67.7441600000), (1111037, 1001452, 'Addison', NULL, 'addison', 'US', 1, 42.1028500000, -77.2335900000), (1111038, 1001441, 'Addison', NULL, 'addison', 'US', 1, 43.4227800000, -88.3745400000), (1111039, 1001409, 'Addison', NULL, 'addison', 'US', 1, 44.0886700000, -73.3026200000), (1111040, 1001409, 'Addison County', NULL, 'addison-county', 'US', 1, 44.0309100000, -73.1409400000), (1111041, 1001455, 'Adel', NULL, 'adel', 'US', 1, 31.1372700000, -83.4240800000), (1111042, 1001459, 'Adel', NULL, 'adel', 'US', 1, 41.6144300000, -94.0174500000), (1111043, 1001416, 'Adelanto', NULL, 'adelanto', 'US', 1, 34.5827700000, -117.4092200000), (1111044, 1001401, 'Adelphi', NULL, 'adelphi', 'US', 1, 39.0031700000, -76.9719200000), (1111045, 1001451, 'Adrian', NULL, 'adrian', 'US', 1, 38.3975200000, -94.3516200000), (1111046, 1001426, 'Adrian', NULL, 'adrian', 'US', 1, 41.8975500000, -84.0371700000), (1111047, 1001420, 'Adrian', NULL, 'adrian', 'US', 1, 43.6349700000, -95.9328000000), (1111048, 1001451, 'Advance', NULL, 'advance', 'US', 1, 37.1045500000, -89.9095300000), (1111049, 1001447, 'Advance', NULL, 'advance', 'US', 1, 35.9412500000, -80.4092200000), (1111050, 1001427, 'Adwolf', NULL, 'adwolf', 'US', 1, 36.7892800000, -81.5820600000), (1111051, 1001451, 'Affton', NULL, 'affton', 'US', 1, 38.5506100000, -90.3331700000), (1111052, 1001421, 'Afton', NULL, 'afton', 'US', 1, 36.6936900000, -94.9630200000), (1111053, 1001420, 'Afton', NULL, 'afton', 'US', 1, 44.9027500000, -92.7835400000), (1111054, 1001442, 'Afton', NULL, 'afton', 'US', 1, 42.7249300000, -110.9318700000), (1111055, 1001433, 'Agawam', NULL, 'agawam', 'US', 1, 42.0695400000, -72.6148100000), (1111056, 1001416, 'Agoura', NULL, 'agoura', 'US', 1, 34.1430600000, -118.7378700000), (1111057, 1001416, 'Agoura Hills', NULL, 'agoura-hills', 'US', 1, 34.1363900000, -118.7745300000), (1111058, 1001416, 'Agua Dulce', NULL, 'agua-dulce', 'US', 1, 34.4963800000, -118.3256300000), (1111059, 1001407, 'Agua Dulce', NULL, 'agua-dulce', 'US', 1, 31.6551100000, -106.1388700000), (1111060, 1001423, 'Agua Fria', NULL, 'agua-fria', 'US', 1, 35.6544800000, -106.0222400000), (1111061, 1001416, 'Aguanga', NULL, 'aguanga', 'US', 1, 33.4428100000, -116.8650200000), (1111062, 1001447, 'Ahoskie', NULL, 'ahoskie', 'US', 1, 36.2868200000, -76.9846800000), (1111063, 1001462, 'Ahtanum', NULL, 'ahtanum', 'US', 1, 46.5595700000, -120.6220100000), (1111064, 1001416, 'Ahwahnee', NULL, 'ahwahnee', 'US', 1, 37.3655000000, -119.7262700000), (1111065, 1001434, 'Ahwatukee Foothills', NULL, 'ahwatukee-foothills', 'US', 1, 33.3417100000, -111.9840300000), (1111066, 1001443, 'Aiken', NULL, 'aiken', 'US', 1, 33.5604200000, -81.7195500000), (1111067, 1001443, 'Aiken County', NULL, 'aiken-county', 'US', 1, 33.5443700000, -81.6347400000), (1111068, 1001411, 'Ainaloa', NULL, 'ainaloa', 'US', 1, 19.5269400000, -154.9930600000), (1111069, 1001408, 'Ainsworth', NULL, 'ainsworth', 'US', 1, 42.5500000000, -99.8626200000), (1111070, 1001450, 'Air Force Academy', NULL, 'air-force-academy', 'US', 1, 38.9942500000, -104.8637500000), (1111071, 1001452, 'Airmont', NULL, 'airmont', 'US', 1, 41.1009300000, -74.1162500000), (1111072, 1001462, 'Airway Heights', NULL, 'airway-heights', 'US', 1, 47.6446100000, -117.5932700000), (1111073, 1001420, 'Aitkin', NULL, 'aitkin', 'US', 1, 46.5330100000, -93.7102500000), (1111074, 1001420, 'Aitkin County', NULL, 'aitkin-county', 'US', 1, 46.6082600000, -93.4154300000), (1111075, 1001434, 'Ajo', NULL, 'ajo', 'US', 1, 32.3717200000, -112.8607100000), (1111076, 1001459, 'Akron', NULL, 'akron', 'US', 1, 42.8288800000, -96.5594800000), (1111077, 1001440, 'Akron', NULL, 'akron', 'US', 1, 41.0383800000, -86.0280500000), (1111078, 1001452, 'Akron', NULL, 'akron', 'US', 1, 43.0208900000, -78.4953000000), (1111079, 1001422, 'Akron', NULL, 'akron', 'US', 1, 40.1567600000, -76.2021700000), (1111080, 1001450, 'Akron', NULL, 'akron', 'US', 1, 40.1605400000, -103.2143800000), (1111081, 1001400, 'Akutan', NULL, 'akutan', 'US', 1, 54.1335000000, -165.7768600000), (1111082, 1001452, 'Alabama', NULL, 'alabama', 'US', 1, 43.0964500000, -78.3908600000), (1111083, 1001456, 'Alabaster', NULL, 'alabaster', 'US', 1, 33.2442800000, -86.8163800000), (1111084, 1001436, 'Alachua', NULL, 'alachua', 'US', 1, 29.7516300000, -82.4248300000), (1111085, 1001436, 'Alachua County', NULL, 'alachua-county', 'US', 1, 29.6747600000, -82.3577000000), (1111086, 1001436, 'Alafaya', NULL, 'alafaya', 'US', 1, 28.5641000000, -81.2114000000), (1111087, 1001447, 'Alamance County', NULL, 'alamance-county', 'US', 1, 36.0440700000, -79.3995100000), (1111088, 1001416, 'Alameda', NULL, 'alameda', 'US', 1, 37.7652100000, -122.2416400000), (1111089, 1001416, 'Alameda County', NULL, 'alameda-county', 'US', 1, 37.6505500000, -121.9178900000), (1111090, 1001455, 'Alamo', NULL, 'alamo', 'US', 1, 32.1471200000, -82.7779200000), (1111091, 1001454, 'Alamo', NULL, 'alamo', 'US', 1, 35.7847900000, -89.1172900000), (1111092, 1001407, 'Alamo', NULL, 'alamo', 'US', 1, 26.1836900000, -98.1230600000), (1111093, 1001416, 'Alamo', NULL, 'alamo', 'US', 1, 37.8502000000, -122.0321800000), (1111094, 1001423, 'Alamo', NULL, 'alamo', 'US', 1, 34.4208900000, -107.5108800000), (1111095, 1001458, 'Alamo', NULL, 'alamo', 'US', 1, 37.3649600000, -115.1644600000), (1111096, 1001407, 'Alamo Heights', NULL, 'alamo-heights', 'US', 1, 29.4849500000, -98.4658500000), (1111097, 1001423, 'Alamogordo', NULL, 'alamogordo', 'US', 1, 32.8995300000, -105.9602700000), (1111098, 1001450, 'Alamosa', NULL, 'alamosa', 'US', 1, 37.4694500000, -105.8700200000), (1111099, 1001450, 'Alamosa County', NULL, 'alamosa-county', 'US', 1, 37.5728900000, -105.7882900000), (1111100, 1001450, 'Alamosa East', NULL, 'alamosa-east', 'US', 1, 37.4773500000, -105.8421700000), (1111101, 1001455, 'Albany', NULL, 'albany', 'US', 1, 31.5785100000, -84.1557400000), (1111102, 1001419, 'Albany', NULL, 'albany', 'US', 1, 36.6909000000, -85.1346800000), (1111103, 1001457, 'Albany', NULL, 'albany', 'US', 1, 30.5043600000, -90.5823100000), (1111104, 1001407, 'Albany', NULL, 'albany', 'US', 1, 32.7234500000, -99.2973000000), (1111105, 1001440, 'Albany', NULL, 'albany', 'US', 1, 40.3008800000, -85.2419100000), (1111106, 1001420, 'Albany', NULL, 'albany', 'US', 1, 45.6299600000, -94.5700000000), (1111107, 1001451, 'Albany', NULL, 'albany', 'US', 1, 40.2486100000, -94.3310700000), (1111108, 1001452, 'Albany', NULL, 'albany', 'US', 1, 42.6525800000, -73.7562300000), (1111109, 1001441, 'Albany', NULL, 'albany', 'US', 1, 42.7077800000, -89.4370600000), (1111110, 1001416, 'Albany', NULL, 'albany', 'US', 1, 37.8868700000, -122.2977500000), (1111111, 1001415, 'Albany', NULL, 'albany', 'US', 1, 44.6365100000, -123.1059300000), (1111112, 1001452, 'Albany County', NULL, 'albany-county', 'US', 1, 42.6001800000, -73.9735600000), (1111113, 1001442, 'Albany County', NULL, 'albany-county', 'US', 1, 41.6544700000, -105.7239100000), (1111114, 1001425, 'Albany Park', NULL, 'albany-park', 'US', 1, 41.9683600000, -87.7233900000), (1111115, 1001447, 'Albemarle', NULL, 'albemarle', 'US', 1, 35.3501400000, -80.2000600000), (1111116, 1001427, 'Albemarle County', NULL, 'albemarle-county', 'US', 1, 38.0228900000, -78.5565400000), (1111117, 1001425, 'Albers', NULL, 'albers', 'US', 1, 38.5433800000, -89.6123100000), (1111118, 1001420, 'Albert Lea', NULL, 'albert-lea', 'US', 1, 43.6480100000, -93.3682700000), (1111119, 1001452, 'Albertson', NULL, 'albertson', 'US', 1, 40.7734300000, -73.6431800000), (1111120, 1001456, 'Albertville', NULL, 'albertville', 'US', 1, 34.2678300000, -86.2087800000), (1111121, 1001420, 'Albertville', NULL, 'albertville', 'US', 1, 45.2377400000, -93.6544100000), (1111122, 1001459, 'Albia', NULL, 'albia', 'US', 1, 41.0266700000, -92.8057500000), (1111123, 1001425, 'Albion', NULL, 'albion', 'US', 1, 38.3775500000, -88.0561500000), (1111124, 1001440, 'Albion', NULL, 'albion', 'US', 1, 41.3956000000, -85.4244200000), (1111125, 1001453, 'Albion', NULL, 'albion', 'US', 1, 44.5322900000, -69.4425400000), (1111126, 1001426, 'Albion', NULL, 'albion', 'US', 1, 42.2431000000, -84.7530300000), (1111127, 1001408, 'Albion', NULL, 'albion', 'US', 1, 41.6908400000, -98.0036700000), (1111128, 1001452, 'Albion', NULL, 'albion', 'US', 1, 43.2464500000, -78.1936300000), (1111129, 1001422, 'Albion', NULL, 'albion', 'US', 1, 41.8906100000, -80.3664500000), (1111130, 1001423, 'Albuquerque', NULL, 'albuquerque', 'US', 1, 35.0844900000, -106.6511400000), (1111131, 1001422, 'Alburtis', NULL, 'alburtis', 'US', 1, 40.5109300000, -75.6029700000), (1111132, 1001454, 'Alcoa', NULL, 'alcoa', 'US', 1, 35.7895300000, -83.9737900000), (1111133, 1001426, 'Alcona County', NULL, 'alcona-county', 'US', 1, 44.7116100000, -83.3436600000), (1111134, 1001430, 'Alcorn County', NULL, 'alcorn-county', 'US', 1, 34.8807700000, -88.5802600000), (1111135, 1001422, 'Aldan', NULL, 'aldan', 'US', 1, 39.9215000000, -75.2879600000), (1111136, 1001452, 'Alden', NULL, 'alden', 'US', 1, 42.9000600000, -78.4919700000), (1111137, 1001429, 'Alderson', NULL, 'alderson', 'US', 1, 37.7259500000, -80.6420200000), (1111138, 1001462, 'Alderton', NULL, 'alderton', 'US', 1, 47.1695500000, -122.2292800000), (1111139, 1001462, 'Alderwood Manor', NULL, 'alderwood-manor', 'US', 1, 47.8220400000, -122.2820700000), (1111140, 1001407, 'Aldine', NULL, 'aldine', 'US', 1, 29.9324500000, -95.3802100000), (1111141, 1001407, 'Aledo', NULL, 'aledo', 'US', 1, 32.6959600000, -97.6022500000), (1111142, 1001425, 'Aledo', NULL, 'aledo', 'US', 1, 41.1997600000, -90.7493100000), (1111143, 1001400, 'Aleutians East Borough', NULL, 'aleutians-east-borough', 'US', 1, 54.8500000000, -163.4166700000), (1111144, 1001400, 'Aleutians West Census Area', NULL, 'aleutians-west-census-area', 'US', 1, 52.1629800000, -174.2850500000), (1111145, 1001444, 'Alexander', NULL, 'alexander', 'US', 1, 34.6295400000, -92.4412700000), (1111146, 1001456, 'Alexander City', NULL, 'alexander-city', 'US', 1, 32.9440100000, -85.9538500000), (1111147, 1001425, 'Alexander County', NULL, 'alexander-county', 'US', 1, 37.1916000000, -89.3376400000), (1111148, 1001447, 'Alexander County', NULL, 'alexander-county', 'US', 1, 35.9210200000, -81.1770200000), (1111149, 1001419, 'Alexandria', NULL, 'alexandria', 'US', 1, 38.9595100000, -84.3879900000), (1111150, 1001457, 'Alexandria', NULL, 'alexandria', 'US', 1, 31.3112900000, -92.4451400000), (1111151, 1001427, 'Alexandria', NULL, 'alexandria', 'US', 1, 38.8048400000, -77.0469200000), (1111152, 1001456, 'Alexandria', NULL, 'alexandria', 'US', 1, 33.7739900000, -85.8855200000), (1111153, 1001440, 'Alexandria', NULL, 'alexandria', 'US', 1, 40.2628200000, -85.6758100000), (1111154, 1001420, 'Alexandria', NULL, 'alexandria', 'US', 1, 45.8852400000, -95.3775400000), (1111155, 1001404, 'Alexandria', NULL, 'alexandria', 'US', 1, 43.6114600000, -71.7928600000), (1111156, 1001445, 'Alexandria', NULL, 'alexandria', 'US', 1, 43.6535900000, -97.7828500000), (1111157, 1001452, 'Alexandria Bay', NULL, 'alexandria-bay', 'US', 1, 44.3358800000, -75.9177300000), (1111158, 1001421, 'Alfalfa County', NULL, 'alfalfa-county', 'US', 1, 36.7309800000, -98.3240000000), (1111159, 1001453, 'Alfred', NULL, 'alfred', 'US', 1, 43.4764700000, -70.7183900000), (1111160, 1001452, 'Alfred', NULL, 'alfred', 'US', 1, 42.2542400000, -77.7905500000), (1111161, 1001426, 'Alger County', NULL, 'alger-county', 'US', 1, 46.4511000000, -86.5475500000), (1111162, 1001441, 'Algoma', NULL, 'algoma', 'US', 1, 44.6088900000, -87.4325900000), (1111163, 1001459, 'Algona', NULL, 'algona', 'US', 1, 43.0699700000, -94.2330200000), (1111164, 1001462, 'Algona', NULL, 'algona', 'US', 1, 47.2789900000, -122.2520600000), (1111165, 1001426, 'Algonac', NULL, 'algonac', 'US', 1, 42.6185800000, -82.5323000000), (1111166, 1001401, 'Algonquin', NULL, 'algonquin', 'US', 1, 38.5829000000, -76.1057700000), (1111167, 1001425, 'Algonquin', NULL, 'algonquin', 'US', 1, 42.1655800000, -88.2942500000), (1111168, 1001454, 'Algood', NULL, 'algood', 'US', 1, 36.1958900000, -85.4485800000), (1111169, 1001416, 'Alhambra', NULL, 'alhambra', 'US', 1, 34.0952900000, -118.1270100000), (1111170, 1001434, 'Alhambra', NULL, 'alhambra', 'US', 1, 33.4983800000, -112.1343200000), (1111171, 1001407, 'Alice', NULL, 'alice', 'US', 1, 27.7522500000, -98.0697200000), (1111172, 1001456, 'Aliceville', NULL, 'aliceville', 'US', 1, 33.1295700000, -88.1514200000), (1111173, 1001407, 'Alief', NULL, 'alief', 'US', 1, 29.7110600000, -95.5963300000), (1111174, 1001422, 'Aliquippa', NULL, 'aliquippa', 'US', 1, 40.6367300000, -80.2400600000), (1111175, 1001416, 'Aliso Viejo', NULL, 'aliso-viejo', 'US', 1, 33.5650400000, -117.7271200000), (1111176, 1001459, 'Allamakee County', NULL, 'allamakee-county', 'US', 1, 43.2842800000, -91.3780900000), (1111177, 1001436, 'Allapattah', NULL, 'allapattah', 'US', 1, 25.8145400000, -80.2239400000), (1111178, 1001426, 'Allegan', NULL, 'allegan', 'US', 1, 42.5292000000, -85.8553000000), (1111179, 1001426, 'Allegan County', NULL, 'allegan-county', 'US', 1, 42.5176600000, -85.9103400000), (1111180, 1001452, 'Allegany', NULL, 'allegany', 'US', 1, 42.0900600000, -78.4941900000), (1111181, 1001401, 'Allegany County', NULL, 'allegany-county', 'US', 1, 39.6214800000, -78.6989000000), (1111182, 1001452, 'Allegany County', NULL, 'allegany-county', 'US', 1, 42.2573900000, -78.0275600000), (1111183, 1001447, 'Alleghany County', NULL, 'alleghany-county', 'US', 1, 36.4913400000, -81.1271900000), (1111184, 1001427, 'Alleghany County', NULL, 'alleghany-county', 'US', 1, 37.7876000000, -80.0069900000), (1111185, 1001422, 'Allegheny County', NULL, 'allegheny-county', 'US', 1, 40.4688300000, -79.9811900000), (1111186, 1001422, 'Alleghenyville', NULL, 'alleghenyville', 'US', 1, 40.2342600000, -75.9885500000), (1111187, 1001407, 'Allen', NULL, 'allen', 'US', 1, 33.1031700000, -96.6705500000), (1111188, 1001406, 'Allen County', NULL, 'allen-county', 'US', 1, 37.8857300000, -95.3013900000), (1111189, 1001419, 'Allen County', NULL, 'allen-county', 'US', 1, 36.7513200000, -86.1904200000), (1111190, 1001440, 'Allen County', NULL, 'allen-county', 'US', 1, 41.0908700000, -85.0665600000), (1111191, 1001457, 'Allen Parish', NULL, 'allen-parish', 'US', 1, 30.6528700000, -92.8278800000), (1111192, 1001426, 'Allen Park', NULL, 'allen-park', 'US', 1, 42.2575400000, -83.2110400000), (1111193, 1001443, 'Allendale', NULL, 'allendale', 'US', 1, 33.0079300000, -81.3084400000), (1111194, 1001426, 'Allendale', NULL, 'allendale', 'US', 1, 42.9722500000, -85.9536500000), (1111195, 1001417, 'Allendale', NULL, 'allendale', 'US', 1, 41.0414900000, -74.1290300000), (1111196, 1001416, 'Allendale', NULL, 'allendale', 'US', 1, 38.4446300000, -121.9430200000), (1111197, 1001443, 'Allendale County', NULL, 'allendale-county', 'US', 1, 32.9881100000, -81.3582000000), (1111198, 1001417, 'Allentown', NULL, 'allentown', 'US', 1, 40.1778900000, -74.5834900000), (1111199, 1001422, 'Allentown', NULL, 'allentown', 'US', 1, 40.6084300000, -75.4901800000), (1111200, 1001408, 'Alliance', NULL, 'alliance', 'US', 1, 42.1016300000, -102.8721500000), (1111201, 1001459, 'Allison', NULL, 'allison', 'US', 1, 42.7527500000, -92.7951900000), (1111202, 1001422, 'Allison Park', NULL, 'allison-park', 'US', 1, 40.5595100000, -79.9586700000), (1111203, 1001441, 'Allouez', NULL, 'allouez', 'US', 1, 44.4774900000, -88.0162100000), (1111204, 1001417, 'Alloway', NULL, 'alloway', 'US', 1, 39.5609500000, -75.3624200000), (1111205, 1001462, 'Allyn', NULL, 'allyn', 'US', 1, 47.3856500000, -122.8276400000), (1111206, 1001444, 'Alma', NULL, 'alma', 'US', 1, 35.4778700000, -94.2218800000), (1111207, 1001455, 'Alma', NULL, 'alma', 'US', 1, 31.5393700000, -82.4623600000), (1111208, 1001406, 'Alma', NULL, 'alma', 'US', 1, 39.0166700000, -96.2891600000), (1111209, 1001426, 'Alma', NULL, 'alma', 'US', 1, 43.3789200000, -84.6597300000), (1111210, 1001408, 'Alma', NULL, 'alma', 'US', 1, 40.0975100000, -99.3620400000), (1111211, 1001441, 'Alma', NULL, 'alma', 'US', 1, 44.3199700000, -91.9148800000), (1111212, 1001422, 'Almedia', NULL, 'almedia', 'US', 1, 41.0145300000, -76.3810500000), (1111213, 1001426, 'Almont', NULL, 'almont', 'US', 1, 42.9205800000, -83.0449300000), (1111214, 1001415, 'Aloha', NULL, 'aloha', 'US', 1, 45.4942800000, -122.8670500000), (1111215, 1001416, 'Alondra Park', NULL, 'alondra-park', 'US', 1, 33.8894600000, -118.3309100000), (1111216, 1001425, 'Alorton', NULL, 'alorton', 'US', 1, 38.5897700000, -90.1201100000), (1111217, 1001416, 'Alpaugh', NULL, 'alpaugh', 'US', 1, 35.8877300000, -119.4873400000), (1111218, 1001426, 'Alpena', NULL, 'alpena', 'US', 1, 45.0616800000, -83.4327500000), (1111219, 1001426, 'Alpena County', NULL, 'alpena-county', 'US', 1, 45.0635000000, -83.4603900000), (1111220, 1001417, 'Alpha', NULL, 'alpha', 'US', 1, 40.6670400000, -75.1574000000), (1111221, 1001455, 'Alpharetta', NULL, 'alpharetta', 'US', 1, 34.0753800000, -84.2940900000), (1111222, 1001417, 'Alpine', NULL, 'alpine', 'US', 1, 40.9559300000, -73.9312500000), (1111223, 1001416, 'Alpine', NULL, 'alpine', 'US', 1, 32.8350500000, -116.7664100000), (1111224, 1001407, 'Alpine', NULL, 'alpine', 'US', 1, 30.3586200000, -103.6620600000), (1111225, 1001414, 'Alpine', NULL, 'alpine', 'US', 1, 40.4532800000, -111.7779900000), (1111226, 1001416, 'Alpine County', NULL, 'alpine-county', 'US', 1, 38.5972500000, -119.8206500000), (1111227, 1001425, 'Alsip', NULL, 'alsip', 'US', 1, 41.6689200000, -87.7386600000), (1111228, 1001404, 'Alstead', NULL, 'alstead', 'US', 1, 43.1489700000, -72.3606400000), (1111229, 1001459, 'Alta', NULL, 'alta', 'US', 1, 42.6735900000, -95.2905500000), (1111230, 1001416, 'Alta Sierra', NULL, 'alta-sierra', 'US', 1, 35.7312600000, -118.5539000000), (1111231, 1001416, 'Altadena', NULL, 'altadena', 'US', 1, 34.1897300000, -118.1311800000), (1111232, 1001425, 'Altamont', NULL, 'altamont', 'US', 1, 39.0619900000, -88.7481100000), (1111233, 1001406, 'Altamont', NULL, 'altamont', 'US', 1, 37.1903400000, -95.2971900000), (1111234, 1001454, 'Altamont', NULL, 'altamont', 'US', 1, 35.4295200000, -85.7230300000), (1111235, 1001452, 'Altamont', NULL, 'altamont', 'US', 1, 42.7006300000, -74.0337400000), (1111236, 1001415, 'Altamont', NULL, 'altamont', 'US', 1, 42.2068100000, -121.7372200000), (1111237, 1001436, 'Altamonte Springs', NULL, 'altamonte-springs', 'US', 1, 28.6611100000, -81.3656200000), (1111238, 1001427, 'Altavista', NULL, 'altavista', 'US', 1, 37.1118100000, -79.2855800000), (1111239, 1001455, 'Alto', NULL, 'alto', 'US', 1, 34.4673200000, -83.5737800000), (1111240, 1001407, 'Alto', NULL, 'alto', 'US', 1, 31.6504500000, -95.0727200000), (1111241, 1001441, 'Alto', NULL, 'alto', 'US', 1, 43.6766500000, -88.7951100000), (1111242, 1001425, 'Alton', NULL, 'alton', 'US', 1, 38.8906000000, -90.1842800000), (1111243, 1001451, 'Alton', NULL, 'alton', 'US', 1, 36.6942300000, -91.3993000000), (1111244, 1001407, 'Alton', NULL, 'alton', 'US', 1, 26.2872900000, -98.3133500000), (1111245, 1001459, 'Alton', NULL, 'alton', 'US', 1, 42.9874900000, -96.0105700000), (1111246, 1001407, 'Alton North (historical)', NULL, 'alton-north-historical', 'US', 1, 26.2953500000, -98.3044600000), (1111247, 1001459, 'Altoona', NULL, 'altoona', 'US', 1, 41.6441600000, -93.4646600000), (1111248, 1001422, 'Altoona', NULL, 'altoona', 'US', 1, 40.5186800000, -78.3947400000), (1111249, 1001441, 'Altoona', NULL, 'altoona', 'US', 1, 44.8046800000, -91.4432100000), (1111250, 1001436, 'Alturas', NULL, 'alturas', 'US', 1, 27.8716900000, -81.7150800000), (1111251, 1001416, 'Alturas', NULL, 'alturas', 'US', 1, 41.4871400000, -120.5434900000), (1111252, 1001421, 'Altus', NULL, 'altus', 'US', 1, 34.6381300000, -99.3339800000), (1111253, 1001429, 'Alum Creek', NULL, 'alum-creek', 'US', 1, 38.2867600000, -81.8051300000), (1111254, 1001416, 'Alum Rock', NULL, 'alum-rock', 'US', 1, 37.3660500000, -121.8271800000), (1111255, 1001436, 'Alva', NULL, 'alva', 'US', 1, 26.7156200000, -81.6100800000), (1111256, 1001421, 'Alva', NULL, 'alva', 'US', 1, 36.8049900000, -98.6671800000), (1111257, 1001407, 'Alvarado', NULL, 'alvarado', 'US', 1, 32.4065300000, -97.2116800000), (1111258, 1001407, 'Alvin', NULL, 'alvin', 'US', 1, 29.4238500000, -95.2441000000), (1111259, 1001407, 'Alvord', NULL, 'alvord', 'US', 1, 33.3584500000, -97.6947500000), (1111260, 1001457, 'Ama', NULL, 'ama', 'US', 1, 29.9521500000, -90.2964700000), (1111261, 1001416, 'Amador County', NULL, 'amador-county', 'US', 1, 38.4463900000, -120.6511200000), (1111262, 1001452, 'Amagansett', NULL, 'amagansett', 'US', 1, 40.9737100000, -72.1436900000), (1111263, 1001407, 'Amarillo', NULL, 'amarillo', 'US', 1, 35.2220000000, -101.8313000000), (1111264, 1001422, 'Ambler', NULL, 'ambler', 'US', 1, 40.1545500000, -75.2215700000), (1111265, 1001425, 'Amboy', NULL, 'amboy', 'US', 1, 41.7142000000, -89.3287100000), (1111266, 1001462, 'Amboy', NULL, 'amboy', 'US', 1, 45.9101100000, -122.4464900000), (1111267, 1001422, 'Ambridge', NULL, 'ambridge', 'US', 1, 40.5892300000, -80.2250600000), (1111268, 1001457, 'Amelia', NULL, 'amelia', 'US', 1, 29.6663200000, -91.1020400000), (1111269, 1001427, 'Amelia County', NULL, 'amelia-county', 'US', 1, 37.3360300000, -77.9761400000), (1111270, 1001427, 'Amelia Court House', NULL, 'amelia-court-house', 'US', 1, 37.3429300000, -77.9805600000), (1111271, 1001416, 'American Canyon', NULL, 'american-canyon', 'US', 1, 38.1749200000, -122.2608000000), (1111272, 1001460, 'American Falls', NULL, 'american-falls', 'US', 1, 42.7860200000, -112.8544400000), (1111273, 1001414, 'American Fork', NULL, 'american-fork', 'US', 1, 40.3769000000, -111.7957600000), (1111274, 1001455, 'Americus', NULL, 'americus', 'US', 1, 32.0723900000, -84.2326900000), (1111275, 1001441, 'Amery', NULL, 'amery', 'US', 1, 45.3069100000, -92.3621400000), (1111276, 1001407, 'Ames', NULL, 'ames', 'US', 1, 30.0538300000, -94.7435300000), (1111277, 1001459, 'Ames', NULL, 'ames', 'US', 1, 42.0347100000, -93.6199400000), (1111278, 1001462, 'Ames Lake', NULL, 'ames-lake', 'US', 1, 47.6328800000, -121.9662300000), (1111279, 1001433, 'Amesbury', NULL, 'amesbury', 'US', 1, 42.8584200000, -70.9300500000), (1111280, 1001416, 'Amesti', NULL, 'amesti', 'US', 1, 36.9635600000, -121.7791200000), (1111281, 1001427, 'Amherst', NULL, 'amherst', 'US', 1, 37.5851400000, -79.0514100000), (1111282, 1001433, 'Amherst', NULL, 'amherst', 'US', 1, 42.3672300000, -72.5185200000), (1111283, 1001452, 'Amherst', NULL, 'amherst', 'US', 1, 42.9783900000, -78.7997600000), (1111284, 1001441, 'Amherst', NULL, 'amherst', 'US', 1, 44.4508100000, -89.2848400000), (1111285, 1001433, 'Amherst Center', NULL, 'amherst-center', 'US', 1, 42.3753700000, -72.5192500000), (1111286, 1001427, 'Amherst County', NULL, 'amherst-county', 'US', 1, 37.6047700000, -79.1451100000), (1111287, 1001418, 'Amidon', NULL, 'amidon', 'US', 1, 46.4822300000, -103.3218500000), (1111288, 1001457, 'Amite', NULL, 'amite', 'US', 1, 30.7265700000, -90.5089800000), (1111289, 1001430, 'Amite County', NULL, 'amite-county', 'US', 1, 31.1744000000, -90.8044300000), (1111290, 1001415, 'Amity', NULL, 'amity', 'US', 1, 45.1156700000, -123.2073300000), (1111291, 1001422, 'Amity Gardens', NULL, 'amity-gardens', 'US', 1, 40.2742600000, -75.7351900000), (1111292, 1001452, 'Amityville', NULL, 'amityville', 'US', 1, 40.6789900000, -73.4170700000), (1111293, 1001460, 'Ammon', NULL, 'ammon', 'US', 1, 43.4696400000, -111.9666400000), (1111294, 1001430, 'Amory', NULL, 'amory', 'US', 1, 33.9842800000, -88.4881000000), (1111295, 1001452, 'Amsterdam', NULL, 'amsterdam', 'US', 1, 42.9386900000, -74.1881900000), (1111296, 1001446, 'Anaconda', NULL, 'anaconda', 'US', 1, 46.1285400000, -112.9422600000), (1111297, 1001462, 'Anacortes', NULL, 'anacortes', 'US', 1, 48.5126000000, -122.6126700000), (1111298, 1001421, 'Anadarko', NULL, 'anadarko', 'US', 1, 35.0725600000, -98.2436600000), (1111299, 1001416, 'Anaheim', NULL, 'anaheim', 'US', 1, 33.8352900000, -117.9145000000), (1111300, 1001411, 'Anahola', NULL, 'anahola', 'US', 1, 22.1422600000, -159.3138800000), (1111301, 1001407, 'Anahuac', NULL, 'anahuac', 'US', 1, 29.7730000000, -94.6827000000), (1111302, 1001459, 'Anamosa', NULL, 'anamosa', 'US', 1, 42.1083400000, -91.2851600000), (1111303, 1001400, 'Anchor Point', NULL, 'anchor-point', 'US', 1, 59.7766700000, -151.8313900000), (1111304, 1001419, 'Anchorage', NULL, 'anchorage', 'US', 1, 38.2667400000, -85.5330200000), (1111305, 1001400, 'Anchorage', NULL, 'anchorage', 'US', 1, 61.2180600000, -149.9002800000), (1111306, 1001400, 'Anchorage Municipality', NULL, 'anchorage-municipality', 'US', 1, 61.1666700000, -149.2505600000), (1111307, 1001422, 'Ancient Oaks', NULL, 'ancient-oaks', 'US', 1, 40.5473200000, -75.5893500000), (1111308, 1001425, 'Andalusia', NULL, 'andalusia', 'US', 1, 41.4392000000, -90.7176400000), (1111309, 1001456, 'Andalusia', NULL, 'andalusia', 'US', 1, 31.3080800000, -86.4824300000), (1111310, 1001451, 'Anderson', NULL, 'anderson', 'US', 1, 36.6506300000, -94.4435500000), (1111311, 1001443, 'Anderson', NULL, 'anderson', 'US', 1, 34.5034400000, -82.6501300000), (1111312, 1001407, 'Anderson', NULL, 'anderson', 'US', 1, 30.4871500000, -95.9869000000), (1111313, 1001440, 'Anderson', NULL, 'anderson', 'US', 1, 40.1053200000, -85.6802500000), (1111314, 1001416, 'Anderson', NULL, 'anderson', 'US', 1, 40.4482100000, -122.2977800000), (1111315, 1001406, 'Anderson County', NULL, 'anderson-county', 'US', 1, 38.2142000000, -95.2933300000), (1111316, 1001419, 'Anderson County', NULL, 'anderson-county', 'US', 1, 38.0039100000, -84.9910100000), (1111317, 1001443, 'Anderson County', NULL, 'anderson-county', 'US', 1, 34.5190900000, -82.6378800000), (1111318, 1001454, 'Anderson County', NULL, 'anderson-county', 'US', 1, 36.1184400000, -84.1984600000), (1111319, 1001407, 'Anderson County', NULL, 'anderson-county', 'US', 1, 31.8133300000, -95.6525500000), (1111320, 1001407, 'Anderson Mill', NULL, 'anderson-mill', 'US', 1, 30.4549200000, -97.8058400000), (1111321, 1001436, 'Andover', NULL, 'andover', 'US', 1, 25.9684300000, -80.2128300000), (1111322, 1001406, 'Andover', NULL, 'andover', 'US', 1, 37.7139000000, -97.1364300000), (1111323, 1001433, 'Andover', NULL, 'andover', 'US', 1, 42.6584300000, -71.1370000000), (1111324, 1001420, 'Andover', NULL, 'andover', 'US', 1, 45.2333000000, -93.2913400000), (1111325, 1001452, 'Andover', NULL, 'andover', 'US', 1, 42.1564600000, -77.7955500000), (1111326, 1001404, 'Andover', NULL, 'andover', 'US', 1, 43.4370200000, -71.8234100000), (1111327, 1001451, 'Andrew County', NULL, 'andrew-county', 'US', 1, 39.9834900000, -94.8020500000), (1111328, 1001447, 'Andrews', NULL, 'andrews', 'US', 1, 35.2017500000, -83.8240700000), (1111329, 1001443, 'Andrews', NULL, 'andrews', 'US', 1, 33.4512800000, -79.5609000000), (1111330, 1001440, 'Andrews', NULL, 'andrews', 'US', 1, 40.8625400000, -85.6016500000), (1111331, 1001407, 'Andrews', NULL, 'andrews', 'US', 1, 32.3187200000, -102.5457200000), (1111332, 1001401, 'Andrews AFB', NULL, 'andrews-afb', 'US', 1, 38.8053100000, -76.8746000000), (1111333, 1001407, 'Andrews County', NULL, 'andrews-county', 'US', 1, 32.3050300000, -102.6378100000), (1111334, 1001453, 'Androscoggin County', NULL, 'androscoggin-county', 'US', 1, 44.1658500000, -70.2064500000), (1111335, 1001423, 'Angel Fire', NULL, 'angel-fire', 'US', 1, 36.3930900000, -105.2850100000), (1111336, 1001407, 'Angelina County', NULL, 'angelina-county', 'US', 1, 31.2547600000, -94.6118500000), (1111337, 1001416, 'Angels Camp', NULL, 'angels-camp', 'US', 1, 38.0682600000, -120.5396500000), (1111338, 1001447, 'Angier', NULL, 'angier', 'US', 1, 35.5071000000, -78.7391800000), (1111339, 1001407, 'Angleton', NULL, 'angleton', 'US', 1, 29.1694100000, -95.4318800000), (1111340, 1001440, 'Angola', NULL, 'angola', 'US', 1, 41.6347700000, -84.9994100000), (1111341, 1001452, 'Angola', NULL, 'angola', 'US', 1, 42.6383900000, -79.0278200000), (1111342, 1001452, 'Angola on the Lake', NULL, 'angola-on-the-lake', 'US', 1, 42.6547800000, -79.0489300000), (1111343, 1001416, 'Angwin', NULL, 'angwin', 'US', 1, 38.5757400000, -122.4499800000), (1111344, 1001459, 'Ankeny', NULL, 'ankeny', 'US', 1, 41.7297100000, -93.6057700000), (1111345, 1001426, 'Ann Arbor', NULL, 'ann-arbor', 'US', 1, 42.2775600000, -83.7408800000), (1111346, 1001425, 'Anna', NULL, 'anna', 'US', 1, 37.4603300000, -89.2470300000), (1111347, 1001407, 'Anna', NULL, 'anna', 'US', 1, 33.3490000000, -96.5486000000), (1111348, 1001436, 'Anna Maria', NULL, 'anna-maria', 'US', 1, 27.5311500000, -82.7334300000), (1111349, 1001427, 'Annandale', NULL, 'annandale', 'US', 1, 38.8303900000, -77.1963700000), (1111350, 1001420, 'Annandale', NULL, 'annandale', 'US', 1, 45.2627400000, -94.1244300000), (1111351, 1001417, 'Annandale', NULL, 'annandale', 'US', 1, 40.6409300000, -74.8812800000), (1111352, 1001401, 'Annapolis', NULL, 'annapolis', 'US', 1, 38.9784500000, -76.4921800000), (1111353, 1001401, 'Anne Arundel County', NULL, 'anne-arundel-county', 'US', 1, 38.9941600000, -76.5676000000), (1111354, 1001407, 'Annetta', NULL, 'annetta', 'US', 1, 32.7093000000, -97.6761400000), (1111355, 1001456, 'Anniston', NULL, 'anniston', 'US', 1, 33.6598300000, -85.8316300000), (1111356, 1001419, 'Annville', NULL, 'annville', 'US', 1, 37.3192500000, -83.9704800000), (1111357, 1001422, 'Annville', NULL, 'annville', 'US', 1, 40.3295400000, -76.5152400000), (1111358, 1001420, 'Anoka', NULL, 'anoka', 'US', 1, 45.1977400000, -93.3871800000), (1111359, 1001420, 'Anoka County', NULL, 'anoka-county', 'US', 1, 45.2732400000, -93.2464500000), (1111360, 1001407, 'Anson', NULL, 'anson', 'US', 1, 32.7565000000, -99.8962100000), (1111361, 1001447, 'Anson County', NULL, 'anson-county', 'US', 1, 34.9738300000, -80.1027300000), (1111362, 1001435, 'Ansonia', NULL, 'ansonia', 'US', 1, 41.3462100000, -73.0790000000), (1111363, 1001429, 'Ansted', NULL, 'ansted', 'US', 1, 38.1362200000, -81.0995500000), (1111364, 1001416, 'Antelope', NULL, 'antelope', 'US', 1, 38.7082400000, -121.3299500000), (1111365, 1001408, 'Antelope County', NULL, 'antelope-county', 'US', 1, 42.1769000000, -98.0666900000), (1111366, 1001442, 'Antelope Valley-Crestview', NULL, 'antelope-valley-crestview', 'US', 1, 44.2248800000, -105.4740900000), (1111367, 1001434, 'Anthem', NULL, 'anthem', 'US', 1, 33.8672600000, -112.1468200000), (1111368, 1001406, 'Anthony', NULL, 'anthony', 'US', 1, 37.1533600000, -98.0311700000), (1111369, 1001423, 'Anthony', NULL, 'anthony', 'US', 1, 32.0039900000, -106.6058300000), (1111370, 1001407, 'Anthony', NULL, 'anthony', 'US', 1, 31.9992700000, -106.6055500000), (1111371, 1001441, 'Antigo', NULL, 'antigo', 'US', 1, 45.1402500000, -89.1523400000), (1111372, 1001425, 'Antioch', NULL, 'antioch', 'US', 1, 42.4772400000, -88.0956400000), (1111373, 1001416, 'Antioch', NULL, 'antioch', 'US', 1, 38.0049200000, -121.8057900000), (1111374, 1001421, 'Antlers', NULL, 'antlers', 'US', 1, 34.2312100000, -95.6202500000), (1111375, 1001407, 'Anton', NULL, 'anton', 'US', 1, 33.8112000000, -102.1637900000), (1111376, 1001404, 'Antrim', NULL, 'antrim', 'US', 1, 43.0309100000, -71.9389700000), (1111377, 1001426, 'Antrim County', NULL, 'antrim-county', 'US', 1, 45.0073700000, -85.1757900000), (1111378, 1001416, 'Anza', NULL, 'anza', 'US', 1, 33.5550300000, -116.6736300000), (1111379, 1001421, 'Apache', NULL, 'apache', 'US', 1, 34.8936800000, -98.3658900000), (1111380, 1001434, 'Apache County', NULL, 'apache-county', 'US', 1, 35.3956000000, -109.4888400000), (1111381, 1001434, 'Apache Junction', NULL, 'apache-junction', 'US', 1, 33.4150500000, -111.5495800000), (1111382, 1001436, 'Apalachicola', NULL, 'apalachicola', 'US', 1, 29.7260000000, -84.9856000000), (1111383, 1001452, 'Apalachin', NULL, 'apalachin', 'US', 1, 42.0695200000, -76.1546500000), (1111384, 1001447, 'Apex', NULL, 'apex', 'US', 1, 35.7326500000, -78.8502900000), (1111385, 1001454, 'Apison', NULL, 'apison', 'US', 1, 35.0239600000, -85.0238400000), (1111386, 1001459, 'Aplington', NULL, 'aplington', 'US', 1, 42.5841500000, -92.8843600000), (1111387, 1001422, 'Apollo', NULL, 'apollo', 'US', 1, 40.5814500000, -79.5664300000), (1111388, 1001436, 'Apollo Beach', NULL, 'apollo-beach', 'US', 1, 27.7730800000, -82.4075900000), (1111389, 1001436, 'Apopka', NULL, 'apopka', 'US', 1, 28.6761700000, -81.5118600000), (1111390, 1001427, 'Appalachia', NULL, 'appalachia', 'US', 1, 36.9067600000, -82.7818300000), (1111391, 1001459, 'Appanoose County', NULL, 'appanoose-county', 'US', 1, 40.7431600000, -92.8686100000), (1111392, 1001427, 'Apple Mountain Lake', NULL, 'apple-mountain-lake', 'US', 1, 38.9242800000, -78.1013900000), (1111393, 1001420, 'Apple Valley', NULL, 'apple-valley', 'US', 1, 44.7319100000, -93.2177200000), (1111394, 1001416, 'Apple Valley', NULL, 'apple-valley', 'US', 1, 34.5008300000, -117.1858800000), (1111395, 1001453, 'Appleton', NULL, 'appleton', 'US', 1, 44.2892400000, -69.2508800000), (1111396, 1001420, 'Appleton', NULL, 'appleton', 'US', 1, 45.1969100000, -96.0197700000), (1111397, 1001441, 'Appleton', NULL, 'appleton', 'US', 1, 44.2619300000, -88.4153800000), (1111398, 1001451, 'Appleton City', NULL, 'appleton-city', 'US', 1, 38.1905800000, -94.0293900000), (1111399, 1001450, 'Applewood', NULL, 'applewood', 'US', 1, 39.7577800000, -105.1625000000), (1111400, 1001455, 'Appling County', NULL, 'appling-county', 'US', 1, 31.7492800000, -82.2889800000), (1111401, 1001427, 'Appomattox', NULL, 'appomattox', 'US', 1, 37.3570900000, -78.8252900000), (1111402, 1001427, 'Appomattox County', NULL, 'appomattox-county', 'US', 1, 37.3722900000, -78.8121200000), (1111403, 1001416, 'Aptos', NULL, 'aptos', 'US', 1, 36.9771700000, -121.8994000000), (1111404, 1001416, 'Aptos Hills-Larkin Valley', NULL, 'aptos-hills-larkin-valley', 'US', 1, 36.9606400000, -121.8340400000), (1111405, 1001452, 'Aquebogue', NULL, 'aquebogue', 'US', 1, 40.9445400000, -72.6270400000), (1111406, 1001427, 'Aquia Harbour', NULL, 'aquia-harbour', 'US', 1, 38.4626200000, -77.3888700000), (1111407, 1001456, 'Arab', NULL, 'arab', 'US', 1, 34.3181500000, -86.4958200000), (1111408, 1001457, 'Arabi', NULL, 'arabi', 'US', 1, 29.9543700000, -90.0053500000), (1111409, 1001455, 'Aragon', NULL, 'aragon', 'US', 1, 34.0456500000, -85.0560600000), (1111410, 1001407, 'Aransas County', NULL, 'aransas-county', 'US', 1, 28.0150100000, -97.0738200000), (1111411, 1001407, 'Aransas Pass', NULL, 'aransas-pass', 'US', 1, 27.9094700000, -97.1499900000), (1111412, 1001421, 'Arapaho', NULL, 'arapaho', 'US', 1, 35.5778300000, -98.9645300000), (1111413, 1001408, 'Arapahoe', NULL, 'arapahoe', 'US', 1, 40.3041700000, -99.9004000000), (1111414, 1001442, 'Arapahoe', NULL, 'arapahoe', 'US', 1, 42.9621800000, -108.4898300000), (1111415, 1001450, 'Arapahoe County', NULL, 'arapahoe-county', 'US', 1, 39.6497700000, -104.3392400000), (1111416, 1001416, 'Arbuckle', NULL, 'arbuckle', 'US', 1, 39.0174000000, -122.0577500000), (1111417, 1001401, 'Arbutus', NULL, 'arbutus', 'US', 1, 39.2545500000, -76.6999700000), (1111418, 1001455, 'Arcade', NULL, 'arcade', 'US', 1, 34.0778900000, -83.5615500000), (1111419, 1001452, 'Arcade', NULL, 'arcade', 'US', 1, 42.5339500000, -78.4230700000), (1111420, 1001436, 'Arcadia', NULL, 'arcadia', 'US', 1, 27.2158800000, -81.8584200000), (1111421, 1001457, 'Arcadia', NULL, 'arcadia', 'US', 1, 32.5490400000, -92.9201600000), (1111422, 1001443, 'Arcadia', NULL, 'arcadia', 'US', 1, 34.9581800000, -81.9906600000), (1111423, 1001440, 'Arcadia', NULL, 'arcadia', 'US', 1, 40.1758700000, -86.0216500000), (1111424, 1001441, 'Arcadia', NULL, 'arcadia', 'US', 1, 44.2527400000, -91.5015400000), (1111425, 1001416, 'Arcadia', NULL, 'arcadia', 'US', 1, 34.1397300000, -118.0353400000), (1111426, 1001416, 'Arcata', NULL, 'arcata', 'US', 1, 40.8665200000, -124.0828400000), (1111427, 1001422, 'Archbald', NULL, 'archbald', 'US', 1, 41.4948000000, -75.5368500000), (1111428, 1001447, 'Archdale', NULL, 'archdale', 'US', 1, 35.9145800000, -79.9719800000), (1111429, 1001436, 'Archer', NULL, 'archer', 'US', 1, 29.5299700000, -82.5190000000), (1111430, 1001407, 'Archer City', NULL, 'archer-city', 'US', 1, 33.5956600000, -98.6256100000), (1111431, 1001407, 'Archer County', NULL, 'archer-county', 'US', 1, 33.6152500000, -98.6876500000), (1111432, 1001447, 'Archer Lodge', NULL, 'archer-lodge', 'US', 1, 35.6940400000, -78.3755600000), (1111433, 1001451, 'Archie', NULL, 'archie', 'US', 1, 38.4816800000, -94.3543900000), (1111434, 1001450, 'Archuleta County', NULL, 'archuleta-county', 'US', 1, 37.1936000000, -107.0483300000), (1111435, 1001460, 'Arco', NULL, 'arco', 'US', 1, 43.6365700000, -113.3002800000), (1111436, 1001425, 'Arcola', NULL, 'arcola', 'US', 1, 39.6847600000, -88.3064400000), (1111437, 1001407, 'Arcola', NULL, 'arcola', 'US', 1, 29.4960700000, -95.4657800000), (1111438, 1001420, 'Arden Hills', NULL, 'arden-hills', 'US', 1, 45.0502400000, -93.1566100000), (1111439, 1001401, 'Arden on the Severn', NULL, 'arden-on-the-severn', 'US', 1, 39.0659400000, -76.5788500000), (1111440, 1001416, 'Arden-Arcade', NULL, 'arden-arcade', 'US', 1, 38.6025000000, -121.3785400000), (1111441, 1001454, 'Ardmore', NULL, 'ardmore', 'US', 1, 34.9920300000, -86.8466700000), (1111442, 1001421, 'Ardmore', NULL, 'ardmore', 'US', 1, 34.1742600000, -97.1436300000), (1111443, 1001422, 'Ardmore', NULL, 'ardmore', 'US', 1, 40.0067800000, -75.2854600000), (1111444, 1001452, 'Ardsley', NULL, 'ardsley', 'US', 1, 41.0106500000, -73.8437500000), (1111445, 1001426, 'Arenac County', NULL, 'arenac-county', 'US', 1, 44.0428900000, -83.7472500000), (1111446, 1001423, 'Arenas Valley', NULL, 'arenas-valley', 'US', 1, 32.7939600000, -108.1842100000), (1111447, 1001426, 'Argentine', NULL, 'argentine', 'US', 1, 42.7914200000, -83.8463400000), (1111448, 1001456, 'Argo', NULL, 'argo', 'US', 1, 33.6877800000, -86.5005100000), (1111449, 1001440, 'Argos', NULL, 'argos', 'US', 1, 41.2378000000, -86.2146500000), (1111450, 1001407, 'Argyle', NULL, 'argyle', 'US', 1, 33.1212300000, -97.1833500000), (1111451, 1001443, 'Arial', NULL, 'arial', 'US', 1, 34.8459500000, -82.6415200000), (1111452, 1001450, 'Aristocrat Ranchettes', NULL, 'aristocrat-ranchettes', 'US', 1, 40.1091500000, -104.7624700000), (1111453, 1001434, 'Arivaca Junction', NULL, 'arivaca-junction', 'US', 1, 31.7273100000, -111.0612000000), (1111454, 1001434, 'Arizona City', NULL, 'arizona-city', 'US', 1, 32.7558900000, -111.6709600000), (1111455, 1001444, 'Arkadelphia', NULL, 'arkadelphia', 'US', 1, 34.1209300000, -93.0537800000), (1111456, 1001444, 'Arkansas City', NULL, 'arkansas-city', 'US', 1, 33.6087200000, -91.2067800000), (1111457, 1001406, 'Arkansas City', NULL, 'arkansas-city', 'US', 1, 37.0619700000, -97.0383700000), (1111458, 1001444, 'Arkansas County', NULL, 'arkansas-county', 'US', 1, 34.2908100000, -91.3749100000), (1111459, 1001421, 'Arkoma', NULL, 'arkoma', 'US', 1, 35.3545400000, -94.4341000000), (1111460, 1001455, 'Arlington', NULL, 'arlington', 'US', 1, 31.4399000000, -84.7249200000), (1111461, 1001401, 'Arlington', NULL, 'arlington', 'US', 1, 39.3485700000, -76.6832400000), (1111462, 1001454, 'Arlington', NULL, 'arlington', 'US', 1, 35.2962000000, -89.6614700000), (1111463, 1001427, 'Arlington', NULL, 'arlington', 'US', 1, 38.8810100000, -77.1042800000), (1111464, 1001407, 'Arlington', NULL, 'arlington', 'US', 1, 32.7356900000, -97.1080700000), (1111465, 1001433, 'Arlington', NULL, 'arlington', 'US', 1, 42.4153700000, -71.1564400000), (1111466, 1001420, 'Arlington', NULL, 'arlington', 'US', 1, 44.6083000000, -94.0805300000), (1111467, 1001408, 'Arlington', NULL, 'arlington', 'US', 1, 41.4525000000, -96.3511300000), (1111468, 1001452, 'Arlington', NULL, 'arlington', 'US', 1, 41.6959300000, -73.8968000000), (1111469, 1001409, 'Arlington', NULL, 'arlington', 'US', 1, 43.0748000000, -73.1540000000), (1111470, 1001462, 'Arlington', NULL, 'arlington', 'US', 1, 48.1987100000, -122.1251400000), (1111471, 1001427, 'Arlington County', NULL, 'arlington-county', 'US', 1, 38.8786200000, -77.1009600000), (1111472, 1001425, 'Arlington Heights', NULL, 'arlington-heights', 'US', 1, 42.0883600000, -87.9806300000), (1111473, 1001422, 'Arlington Heights', NULL, 'arlington-heights', 'US', 1, 40.9900900000, -75.2162900000), (1111474, 1001462, 'Arlington Heights', NULL, 'arlington-heights', 'US', 1, 48.2020500000, -122.0620800000), (1111475, 1001406, 'Arma', NULL, 'arma', 'US', 1, 37.5439400000, -94.7002400000), (1111476, 1001426, 'Armada', NULL, 'armada', 'US', 1, 42.8442000000, -82.8843700000), (1111477, 1001416, 'Armona', NULL, 'armona', 'US', 1, 36.3157800000, -119.7084600000), (1111478, 1001452, 'Armonk', NULL, 'armonk', 'US', 1, 41.1264800000, -73.7140200000), (1111479, 1001445, 'Armour', NULL, 'armour', 'US', 1, 43.3186000000, -98.3467500000), (1111480, 1001422, 'Armstrong County', NULL, 'armstrong-county', 'US', 1, 40.8122900000, -79.4645400000), (1111481, 1001407, 'Armstrong County', NULL, 'armstrong-county', 'US', 1, 34.9649300000, -101.3574000000), (1111482, 1001457, 'Arnaudville', NULL, 'arnaudville', 'US', 1, 30.3977000000, -91.9315100000), (1111483, 1001421, 'Arnett', NULL, 'arnett', 'US', 1, 36.1350400000, -99.7748400000), (1111484, 1001451, 'Arnold', NULL, 'arnold', 'US', 1, 38.4328300000, -90.3776200000), (1111485, 1001401, 'Arnold', NULL, 'arnold', 'US', 1, 39.0320600000, -76.5027400000), (1111486, 1001420, 'Arnold', NULL, 'arnold', 'US', 1, 46.8802200000, -92.0904700000), (1111487, 1001422, 'Arnold', NULL, 'arnold', 'US', 1, 40.5800700000, -79.7667200000), (1111488, 1001416, 'Arnold', NULL, 'arnold', 'US', 1, 38.2554700000, -120.3510300000), (1111489, 1001430, 'Arnold Line', NULL, 'arnold-line', 'US', 1, 31.3351700000, -89.3734000000), (1111490, 1001459, 'Arnolds Park', NULL, 'arnolds-park', 'US', 1, 43.3727400000, -95.1238800000), (1111491, 1001416, 'Aromas', NULL, 'aromas', 'US', 1, 36.8885600000, -121.6430000000), (1111492, 1001453, 'Aroostook County', NULL, 'aroostook-county', 'US', 1, 46.6588100000, -68.5988900000), (1111493, 1001452, 'Arrochar', NULL, 'arrochar', 'US', 1, 40.5984400000, -74.0726400000), (1111494, 1001416, 'Arroyo Grande', NULL, 'arroyo-grande', 'US', 1, 35.1185900000, -120.5907300000), (1111495, 1001423, 'Arroyo Seco', NULL, 'arroyo-seco', 'US', 1, 36.5166900000, -105.5691800000), (1111496, 1001416, 'Artesia', NULL, 'artesia', 'US', 1, 33.8658500000, -118.0831200000), (1111497, 1001423, 'Artesia', NULL, 'artesia', 'US', 1, 32.8423300000, -104.4033000000), (1111498, 1001425, 'Arthur', NULL, 'arthur', 'US', 1, 39.7147600000, -88.4722800000), (1111499, 1001408, 'Arthur', NULL, 'arthur', 'US', 1, 41.5716500000, -101.6915600000), (1111500, 1001408, 'Arthur County', NULL, 'arthur-county', 'US', 1, 41.5689000000, -101.6959100000), (1111501, 1001462, 'Artondale', NULL, 'artondale', 'US', 1, 47.2995400000, -122.6206900000), (1111502, 1001453, 'Arundel', NULL, 'arundel', 'US', 1, 43.3825900000, -70.4778300000), (1111503, 1001450, 'Arvada', NULL, 'arvada', 'US', 1, 39.8027600000, -105.0874800000), (1111504, 1001452, 'Arverne', NULL, 'arverne', 'US', 1, 40.5912200000, -73.7959700000), (1111505, 1001416, 'Arvin', NULL, 'arvin', 'US', 1, 35.2091300000, -118.8284300000), (1111506, 1001459, 'Asbury', NULL, 'asbury', 'US', 1, 42.5144500000, -90.7515200000), (1111507, 1001436, 'Asbury Lake', NULL, 'asbury-lake', 'US', 1, 30.0491300000, -81.8214900000), (1111508, 1001417, 'Asbury Park', NULL, 'asbury-park', 'US', 1, 40.2203900000, -74.0120800000), (1111509, 1001457, 'Ascension Parish', NULL, 'ascension-parish', 'US', 1, 30.2035400000, -90.9112900000), (1111510, 1001444, 'Ash Flat', NULL, 'ash-flat', 'US', 1, 36.2239600000, -91.6084800000), (1111511, 1001451, 'Ash Grove', NULL, 'ash-grove', 'US', 1, 37.3153300000, -93.5852000000), (1111512, 1001461, 'Ashaway', NULL, 'ashaway', 'US', 1, 41.4234300000, -71.7856200000), (1111513, 1001455, 'Ashburn', NULL, 'ashburn', 'US', 1, 31.7060100000, -83.6532200000), (1111514, 1001427, 'Ashburn', NULL, 'ashburn', 'US', 1, 39.0437200000, -77.4874900000), (1111515, 1001425, 'Ashburn', NULL, 'ashburn', 'US', 1, 41.7475300000, -87.7111600000), (1111516, 1001433, 'Ashburnham', NULL, 'ashburnham', 'US', 1, 42.6362000000, -71.9078500000), (1111517, 1001433, 'Ashby', NULL, 'ashby', 'US', 1, 42.6778700000, -71.8203500000), (1111518, 1001444, 'Ashdown', NULL, 'ashdown', 'US', 1, 33.6742900000, -94.1313100000); INSERT INTO `[[dbprefix]]t_city` VALUES (1111519, 1001447, 'Ashe County', NULL, 'ashe-county', 'US', 1, 36.4341600000, -81.5003400000), (1111520, 1001447, 'Asheboro', NULL, 'asheboro', 'US', 1, 35.7079100000, -79.8136400000), (1111521, 1001407, 'Asherton', NULL, 'asherton', 'US', 1, 28.4419300000, -99.7603300000), (1111522, 1001447, 'Asheville', NULL, 'asheville', 'US', 1, 35.6009500000, -82.5540200000), (1111523, 1001433, 'Ashfield', NULL, 'ashfield', 'US', 1, 42.5264700000, -72.7884300000), (1111524, 1001456, 'Ashford', NULL, 'ashford', 'US', 1, 31.1829600000, -85.2363200000), (1111525, 1001441, 'Ashford', NULL, 'ashford', 'US', 1, 43.5869400000, -88.3706600000), (1111526, 1001419, 'Ashland', NULL, 'ashland', 'US', 1, 38.4784100000, -82.6379400000), (1111527, 1001406, 'Ashland', NULL, 'ashland', 'US', 1, 37.1886400000, -99.7656800000), (1111528, 1001425, 'Ashland', NULL, 'ashland', 'US', 1, 39.8878300000, -90.0078900000), (1111529, 1001451, 'Ashland', NULL, 'ashland', 'US', 1, 38.7744800000, -92.2571300000), (1111530, 1001430, 'Ashland', NULL, 'ashland', 'US', 1, 34.8328700000, -89.1759000000), (1111531, 1001417, 'Ashland', NULL, 'ashland', 'US', 1, 39.8631700000, -75.0060000000), (1111532, 1001427, 'Ashland', NULL, 'ashland', 'US', 1, 37.7590300000, -77.4799800000), (1111533, 1001456, 'Ashland', NULL, 'ashland', 'US', 1, 33.2737300000, -85.8360700000), (1111534, 1001433, 'Ashland', NULL, 'ashland', 'US', 1, 42.2612100000, -71.4634000000), (1111535, 1001404, 'Ashland', NULL, 'ashland', 'US', 1, 43.6953500000, -71.6306300000), (1111536, 1001408, 'Ashland', NULL, 'ashland', 'US', 1, 41.0391600000, -96.3683500000), (1111537, 1001422, 'Ashland', NULL, 'ashland', 'US', 1, 40.7817500000, -76.3457800000), (1111538, 1001416, 'Ashland', NULL, 'ashland', 'US', 1, 37.6946500000, -122.1138500000), (1111539, 1001441, 'Ashland', NULL, 'ashland', 'US', 1, 46.5924400000, -90.8838000000), (1111540, 1001415, 'Ashland', NULL, 'ashland', 'US', 1, 42.1945800000, -122.7094800000), (1111541, 1001454, 'Ashland City', NULL, 'ashland-city', 'US', 1, 36.2742200000, -87.0641700000), (1111542, 1001441, 'Ashland County', NULL, 'ashland-county', 'US', 1, 46.5097400000, -90.7196000000), (1111543, 1001418, 'Ashley', NULL, 'ashley', 'US', 1, 46.0341400000, -99.3715000000), (1111544, 1001422, 'Ashley', NULL, 'ashley', 'US', 1, 41.2103600000, -75.8965900000), (1111545, 1001444, 'Ashley County', NULL, 'ashley-county', 'US', 1, 33.1912200000, -91.7684500000), (1111546, 1001460, 'Ashton', NULL, 'ashton', 'US', 1, 44.0715800000, -111.4482900000), (1111547, 1001401, 'Ashton-Sandy Spring', NULL, 'ashton-sandy-spring', 'US', 1, 39.1497600000, -77.0050400000), (1111548, 1001456, 'Ashville', NULL, 'ashville', 'US', 1, 33.8370400000, -86.2544200000), (1111549, 1001441, 'Ashwaubenon', NULL, 'ashwaubenon', 'US', 1, 44.4822100000, -88.0701000000), (1111550, 1001462, 'Asotin', NULL, 'asotin', 'US', 1, 46.3393300000, -117.0482100000), (1111551, 1001462, 'Asotin County', NULL, 'asotin-county', 'US', 1, 46.1918600000, -117.2030700000), (1111552, 1001450, 'Aspen', NULL, 'aspen', 'US', 1, 39.1911000000, -106.8175400000), (1111553, 1001401, 'Aspen Hill', NULL, 'aspen-hill', 'US', 1, 39.0795500000, -77.0730300000), (1111554, 1001407, 'Aspermont', NULL, 'aspermont', 'US', 1, 33.1334300000, -100.2273300000), (1111555, 1001422, 'Aspinwall', NULL, 'aspinwall', 'US', 1, 40.4914600000, -79.9047700000), (1111556, 1001433, 'Assonet', NULL, 'assonet', 'US', 1, 41.7959400000, -71.0678200000), (1111557, 1001425, 'Assumption', NULL, 'assumption', 'US', 1, 39.5203200000, -89.0489700000), (1111558, 1001457, 'Assumption Parish', NULL, 'assumption-parish', 'US', 1, 29.9007700000, -91.0625900000), (1111559, 1001436, 'Astatula', NULL, 'astatula', 'US', 1, 28.7097200000, -81.7328500000), (1111560, 1001436, 'Astor', NULL, 'astor', 'US', 1, 29.1624800000, -81.5253500000), (1111561, 1001425, 'Astoria', NULL, 'astoria', 'US', 1, 40.2275400000, -90.3595700000), (1111562, 1001452, 'Astoria', NULL, 'astoria', 'US', 1, 40.7720500000, -73.9301400000), (1111563, 1001415, 'Astoria', NULL, 'astoria', 'US', 1, 46.1878800000, -123.8312500000), (1111564, 1001416, 'Atascadero', NULL, 'atascadero', 'US', 1, 35.4894200000, -120.6707300000), (1111565, 1001407, 'Atascocita', NULL, 'atascocita', 'US', 1, 29.9988300000, -95.1766000000), (1111566, 1001407, 'Atascosa County', NULL, 'atascosa-county', 'US', 1, 28.8935200000, -98.5271300000), (1111567, 1001406, 'Atchison', NULL, 'atchison', 'US', 1, 39.5630500000, -95.1216400000), (1111568, 1001406, 'Atchison County', NULL, 'atchison-county', 'US', 1, 39.5317400000, -95.3134400000), (1111569, 1001451, 'Atchison County', NULL, 'atchison-county', 'US', 1, 40.4308500000, -95.4280900000), (1111570, 1001417, 'Atco', NULL, 'atco', 'US', 1, 39.7698400000, -74.8873900000), (1111571, 1001422, 'Atglen', NULL, 'atglen', 'US', 1, 39.9492700000, -75.9735600000), (1111572, 1001415, 'Athena', NULL, 'athena', 'US', 1, 45.8118000000, -118.4905300000), (1111573, 1001455, 'Athens', NULL, 'athens', 'US', 1, 33.9609500000, -83.3779400000), (1111574, 1001425, 'Athens', NULL, 'athens', 'US', 1, 39.9608800000, -89.7239900000), (1111575, 1001454, 'Athens', NULL, 'athens', 'US', 1, 35.4428500000, -84.5929900000), (1111576, 1001407, 'Athens', NULL, 'athens', 'US', 1, 32.2048700000, -95.8555200000), (1111577, 1001456, 'Athens', NULL, 'athens', 'US', 1, 34.8024300000, -86.9721900000), (1111578, 1001426, 'Athens', NULL, 'athens', 'US', 1, 42.0886600000, -85.2347100000), (1111579, 1001452, 'Athens', NULL, 'athens', 'US', 1, 42.2603600000, -73.8095700000), (1111580, 1001422, 'Athens', NULL, 'athens', 'US', 1, 41.9573000000, -76.5180000000), (1111581, 1001441, 'Athens', NULL, 'athens', 'US', 1, 45.0330200000, -90.0740200000), (1111582, 1001416, 'Atherton', NULL, 'atherton', 'US', 1, 37.4613300000, -122.1977400000), (1111583, 1001433, 'Athol', NULL, 'athol', 'US', 1, 42.5959200000, -72.2267500000), (1111584, 1001444, 'Atkins', NULL, 'atkins', 'US', 1, 35.2464700000, -92.9365600000), (1111585, 1001427, 'Atkins', NULL, 'atkins', 'US', 1, 36.8673400000, -81.4234400000), (1111586, 1001459, 'Atkins', NULL, 'atkins', 'US', 1, 41.9969400000, -91.8621300000), (1111587, 1001404, 'Atkinson', NULL, 'atkinson', 'US', 1, 42.8384200000, -71.1470000000), (1111588, 1001408, 'Atkinson', NULL, 'atkinson', 'US', 1, 42.5313900000, -98.9781500000), (1111589, 1001455, 'Atkinson County', NULL, 'atkinson-county', 'US', 1, 31.2971100000, -82.8799900000), (1111590, 1001455, 'Atlanta', NULL, 'atlanta', 'US', 1, 33.7490000000, -84.3879800000), (1111591, 1001407, 'Atlanta', NULL, 'atlanta', 'US', 1, 33.1137400000, -94.1643500000), (1111592, 1001425, 'Atlanta', NULL, 'atlanta', 'US', 1, 40.2594800000, -89.2334200000), (1111593, 1001426, 'Atlanta', NULL, 'atlanta', 'US', 1, 45.0047300000, -84.1438900000), (1111594, 1001459, 'Atlantic', NULL, 'atlantic', 'US', 1, 41.4036000000, -95.0138800000), (1111595, 1001436, 'Atlantic Beach', NULL, 'atlantic-beach', 'US', 1, 30.3344100000, -81.3987000000), (1111596, 1001447, 'Atlantic Beach', NULL, 'atlantic-beach', 'US', 1, 34.6990500000, -76.7402100000), (1111597, 1001452, 'Atlantic Beach', NULL, 'atlantic-beach', 'US', 1, 40.5889900000, -73.7290200000), (1111598, 1001417, 'Atlantic City', NULL, 'atlantic-city', 'US', 1, 39.3641500000, -74.4230600000), (1111599, 1001417, 'Atlantic County', NULL, 'atlantic-county', 'US', 1, 39.4688300000, -74.6337300000), (1111600, 1001417, 'Atlantic Highlands', NULL, 'atlantic-highlands', 'US', 1, 40.4078900000, -74.0343100000), (1111601, 1001436, 'Atlantis', NULL, 'atlantis', 'US', 1, 26.5909000000, -80.1008800000), (1111602, 1001456, 'Atmore', NULL, 'atmore', 'US', 1, 31.0237900000, -87.4938700000), (1111603, 1001421, 'Atoka', NULL, 'atoka', 'US', 1, 34.3859300000, -96.1283300000), (1111604, 1001454, 'Atoka', NULL, 'atoka', 'US', 1, 35.4411900000, -89.7781400000), (1111605, 1001423, 'Atoka', NULL, 'atoka', 'US', 1, 32.7695600000, -104.3888500000), (1111606, 1001421, 'Atoka County', NULL, 'atoka-county', 'US', 1, 34.3737200000, -96.0378300000), (1111607, 1001430, 'Attala County', NULL, 'attala-county', 'US', 1, 33.0862900000, -89.5815500000), (1111608, 1001456, 'Attalla', NULL, 'attalla', 'US', 1, 34.0217600000, -86.0885900000), (1111609, 1001440, 'Attica', NULL, 'attica', 'US', 1, 40.2942000000, -87.2489000000), (1111610, 1001452, 'Attica', NULL, 'attica', 'US', 1, 42.8642300000, -78.2802900000), (1111611, 1001433, 'Attleboro', NULL, 'attleboro', 'US', 1, 41.9445400000, -71.2856100000), (1111612, 1001420, 'Atwater', NULL, 'atwater', 'US', 1, 45.1388500000, -94.7780600000), (1111613, 1001416, 'Atwater', NULL, 'atwater', 'US', 1, 37.3477200000, -120.6090800000), (1111614, 1001425, 'Atwood', NULL, 'atwood', 'US', 1, 39.7994800000, -88.4622800000), (1111615, 1001406, 'Atwood', NULL, 'atwood', 'US', 1, 39.8066700000, -101.0421000000), (1111616, 1001426, 'Au Sable', NULL, 'au-sable', 'US', 1, 44.4108500000, -83.3321900000), (1111617, 1001416, 'Auberry', NULL, 'auberry', 'US', 1, 37.0807800000, -119.4854100000), (1111618, 1001407, 'Aubrey', NULL, 'aubrey', 'US', 1, 33.3042800000, -96.9861200000), (1111619, 1001455, 'Auburn', NULL, 'auburn', 'US', 1, 34.0137200000, -83.8276800000), (1111620, 1001419, 'Auburn', NULL, 'auburn', 'US', 1, 36.8642100000, -86.7102700000), (1111621, 1001425, 'Auburn', NULL, 'auburn', 'US', 1, 39.5917200000, -89.7464900000), (1111622, 1001406, 'Auburn', NULL, 'auburn', 'US', 1, 38.9061100000, -95.8161000000), (1111623, 1001456, 'Auburn', NULL, 'auburn', 'US', 1, 32.6098600000, -85.4807800000), (1111624, 1001433, 'Auburn', NULL, 'auburn', 'US', 1, 42.1945400000, -71.8356300000), (1111625, 1001440, 'Auburn', NULL, 'auburn', 'US', 1, 41.3669900000, -85.0588600000), (1111626, 1001426, 'Auburn', NULL, 'auburn', 'US', 1, 43.6033600000, -84.0697000000), (1111627, 1001453, 'Auburn', NULL, 'auburn', 'US', 1, 44.0978500000, -70.2311700000), (1111628, 1001452, 'Auburn', NULL, 'auburn', 'US', 1, 42.9317300000, -76.5660500000), (1111629, 1001404, 'Auburn', NULL, 'auburn', 'US', 1, 43.0045300000, -71.3484000000), (1111630, 1001408, 'Auburn', NULL, 'auburn', 'US', 1, 40.3927800000, -95.8388900000), (1111631, 1001416, 'Auburn', NULL, 'auburn', 'US', 1, 38.8965700000, -121.0768900000), (1111632, 1001462, 'Auburn', NULL, 'auburn', 'US', 1, 47.3073200000, -122.2284500000), (1111633, 1001425, 'Auburn Gresham', NULL, 'auburn-gresham', 'US', 1, 41.7417900000, -87.6532200000), (1111634, 1001426, 'Auburn Hills', NULL, 'auburn-hills', 'US', 1, 42.6875300000, -83.2341000000), (1111635, 1001416, 'Auburn Lake Trails', NULL, 'auburn-lake-trails', 'US', 1, 38.9143400000, -120.9524400000), (1111636, 1001436, 'Auburndale', NULL, 'auburndale', 'US', 1, 28.0653000000, -81.7886900000), (1111637, 1001451, 'Audrain County', NULL, 'audrain-county', 'US', 1, 39.2157600000, -91.8415900000), (1111638, 1001417, 'Audubon', NULL, 'audubon', 'US', 1, 39.8909500000, -75.0729500000), (1111639, 1001459, 'Audubon', NULL, 'audubon', 'US', 1, 41.7180400000, -94.9324900000), (1111640, 1001422, 'Audubon', NULL, 'audubon', 'US', 1, 40.1278800000, -75.4318500000), (1111641, 1001459, 'Audubon County', NULL, 'audubon-county', 'US', 1, 41.6845900000, -94.9058200000), (1111642, 1001419, 'Audubon Park', NULL, 'audubon-park', 'US', 1, 38.2039600000, -85.7252400000), (1111643, 1001417, 'Audubon Park', NULL, 'audubon-park', 'US', 1, 39.8965000000, -75.0876700000), (1111644, 1001416, 'August', NULL, 'august', 'US', 1, 37.9788100000, -121.2621700000), (1111645, 1001444, 'Augusta', NULL, 'augusta', 'US', 1, 35.2823100000, -91.3654100000), (1111646, 1001455, 'Augusta', NULL, 'augusta', 'US', 1, 33.4709700000, -81.9748400000), (1111647, 1001406, 'Augusta', NULL, 'augusta', 'US', 1, 37.6866800000, -96.9767000000), (1111648, 1001419, 'Augusta', NULL, 'augusta', 'US', 1, 38.7717400000, -84.0057600000), (1111649, 1001453, 'Augusta', NULL, 'augusta', 'US', 1, 44.3106200000, -69.7794900000), (1111650, 1001452, 'Augusta', NULL, 'augusta', 'US', 1, 42.9747900000, -75.5012900000), (1111651, 1001441, 'Augusta', NULL, 'augusta', 'US', 1, 44.6802400000, -91.1198800000), (1111652, 1001427, 'Augusta County', NULL, 'augusta-county', 'US', 1, 38.1645200000, -79.1338300000), (1111653, 1001450, 'Ault', NULL, 'ault', 'US', 1, 40.5824800000, -104.7319100000), (1111654, 1001462, 'Ault Field', NULL, 'ault-field', 'US', 1, 48.3381200000, -122.6744100000), (1111655, 1001415, 'Aumsville', NULL, 'aumsville', 'US', 1, 44.8409500000, -122.8709200000), (1111656, 1001440, 'Aurora', NULL, 'aurora', 'US', 1, 39.0570000000, -84.9013400000), (1111657, 1001451, 'Aurora', NULL, 'aurora', 'US', 1, 36.9708900000, -93.7179800000), (1111658, 1001407, 'Aurora', NULL, 'aurora', 'US', 1, 33.0606800000, -97.5033600000), (1111659, 1001425, 'Aurora', NULL, 'aurora', 'US', 1, 41.7605800000, -88.3200700000), (1111660, 1001420, 'Aurora', NULL, 'aurora', 'US', 1, 47.5299300000, -92.2371200000), (1111661, 1001408, 'Aurora', NULL, 'aurora', 'US', 1, 40.8672300000, -98.0042200000), (1111662, 1001450, 'Aurora', NULL, 'aurora', 'US', 1, 39.7294300000, -104.8319200000), (1111663, 1001414, 'Aurora', NULL, 'aurora', 'US', 1, 38.9221900000, -111.9340900000), (1111664, 1001445, 'Aurora County', NULL, 'aurora-county', 'US', 1, 43.7180100000, -98.5615500000), (1111665, 1001455, 'Austell', NULL, 'austell', 'US', 1, 33.8126100000, -84.6343800000), (1111666, 1001444, 'Austin', NULL, 'austin', 'US', 1, 34.9984200000, -91.9837600000), (1111667, 1001440, 'Austin', NULL, 'austin', 'US', 1, 38.7583900000, -85.8080300000), (1111668, 1001407, 'Austin', NULL, 'austin', 'US', 1, 30.2671500000, -97.7430600000), (1111669, 1001420, 'Austin', NULL, 'austin', 'US', 1, 43.6666300000, -92.9746400000), (1111670, 1001407, 'Austin County', NULL, 'austin-county', 'US', 1, 29.8870200000, -96.2779100000), (1111671, 1001456, 'Autauga County', NULL, 'autauga-county', 'US', 1, 32.5349200000, -86.6427600000), (1111672, 1001451, 'Ava', NULL, 'ava', 'US', 1, 36.9520000000, -92.6604500000), (1111673, 1001417, 'Avalon', NULL, 'avalon', 'US', 1, 39.1012200000, -74.7176600000), (1111674, 1001422, 'Avalon', NULL, 'avalon', 'US', 1, 40.5009000000, -80.0675600000), (1111675, 1001416, 'Avalon', NULL, 'avalon', 'US', 1, 33.3428100000, -118.3278500000), (1111676, 1001416, 'Avenal', NULL, 'avenal', 'US', 1, 36.0041200000, -120.1290300000), (1111677, 1001417, 'Avenel', NULL, 'avenel', 'US', 1, 40.5803800000, -74.2851500000), (1111678, 1001436, 'Aventura', NULL, 'aventura', 'US', 1, 25.9564800000, -80.1392100000), (1111679, 1001434, 'Avenue B and C', NULL, 'avenue-b-and-c', 'US', 1, 32.7190400000, -114.6600500000), (1111680, 1001452, 'Averill Park', NULL, 'averill-park', 'US', 1, 42.6339700000, -73.5537300000), (1111681, 1001447, 'Avery County', NULL, 'avery-county', 'US', 1, 36.0766100000, -81.9224700000), (1111682, 1001447, 'Avery Creek', NULL, 'avery-creek', 'US', 1, 35.4634500000, -82.5826200000), (1111683, 1001416, 'Avila Beach', NULL, 'avila-beach', 'US', 1, 35.1799800000, -120.7318400000), (1111684, 1001440, 'Avilla', NULL, 'avilla', 'US', 1, 41.3658800000, -85.2388600000), (1111685, 1001422, 'Avis', NULL, 'avis', 'US', 1, 41.1847900000, -77.3138600000), (1111686, 1001425, 'Aviston', NULL, 'aviston', 'US', 1, 38.6067200000, -89.6075900000), (1111687, 1001459, 'Avoca', NULL, 'avoca', 'US', 1, 41.4766600000, -95.3380500000), (1111688, 1001422, 'Avoca', NULL, 'avoca', 'US', 1, 41.3398000000, -75.7363000000), (1111689, 1001416, 'Avocado Heights', NULL, 'avocado-heights', 'US', 1, 34.0361200000, -117.9911800000), (1111690, 1001440, 'Avon', NULL, 'avon', 'US', 1, 39.7628200000, -86.3997200000), (1111691, 1001433, 'Avon', NULL, 'avon', 'US', 1, 42.1306600000, -71.0411600000), (1111692, 1001420, 'Avon', NULL, 'avon', 'US', 1, 45.6091300000, -94.4516700000), (1111693, 1001452, 'Avon', NULL, 'avon', 'US', 1, 42.9120100000, -77.7455600000), (1111694, 1001422, 'Avon', NULL, 'avon', 'US', 1, 40.3456500000, -76.3899600000), (1111695, 1001450, 'Avon', NULL, 'avon', 'US', 1, 39.6313700000, -106.5222500000), (1111696, 1001436, 'Avon Park', NULL, 'avon-park', 'US', 1, 27.5958700000, -81.5061900000), (1111697, 1001417, 'Avon-by-the-Sea', NULL, 'avon-by-the-sea', 'US', 1, 40.1923400000, -74.0159700000), (1111698, 1001457, 'Avondale', NULL, 'avondale', 'US', 1, 29.9129800000, -90.2036900000), (1111699, 1001422, 'Avondale', NULL, 'avondale', 'US', 1, 39.8234400000, -75.7832700000), (1111700, 1001425, 'Avondale', NULL, 'avondale', 'US', 1, 41.9389200000, -87.7111700000), (1111701, 1001434, 'Avondale', NULL, 'avondale', 'US', 1, 33.4356000000, -112.3496000000), (1111702, 1001455, 'Avondale Estates', NULL, 'avondale-estates', 'US', 1, 33.7714900000, -84.2671400000), (1111703, 1001422, 'Avonia', NULL, 'avonia', 'US', 1, 42.0456100000, -80.2697900000), (1111704, 1001457, 'Avoyelles Parish', NULL, 'avoyelles-parish', 'US', 1, 31.0762400000, -92.0013800000), (1111705, 1001434, 'Avra Valley', NULL, 'avra-valley', 'US', 1, 32.4378500000, -111.3153900000), (1111706, 1001443, 'Awendaw', NULL, 'awendaw', 'US', 1, 33.0376700000, -79.6131300000), (1111707, 1001447, 'Ayden', NULL, 'ayden', 'US', 1, 35.4726600000, -77.4155200000), (1111708, 1001433, 'Ayer', NULL, 'ayer', 'US', 1, 42.5612000000, -71.5897900000), (1111709, 1001436, 'Azalea Park', NULL, 'azalea-park', 'US', 1, 28.5411100000, -81.3006200000), (1111710, 1001407, 'Azle', NULL, 'azle', 'US', 1, 32.8951300000, -97.5458600000), (1111711, 1001441, 'Aztalan', NULL, 'aztalan', 'US', 1, 43.0727800000, -88.8623300000), (1111712, 1001423, 'Aztec', NULL, 'aztec', 'US', 1, 36.8222300000, -107.9928500000), (1111713, 1001416, 'Azusa', NULL, 'azusa', 'US', 1, 34.1336200000, -117.9075600000), (1111714, 1001420, 'Babbitt', NULL, 'babbitt', 'US', 1, 47.7085300000, -91.9446000000), (1111715, 1001436, 'Babson Park', NULL, 'babson-park', 'US', 1, 27.8319700000, -81.5223000000), (1111716, 1001452, 'Babylon', NULL, 'babylon', 'US', 1, 40.6956600000, -73.3256800000), (1111717, 1001450, 'Baca County', NULL, 'baca-county', 'US', 1, 37.3191800000, -102.5604700000), (1111718, 1001422, 'Back Mountain', NULL, 'back-mountain', 'US', 1, 41.3359100000, -75.9963100000), (1111719, 1001407, 'Bacliff', NULL, 'bacliff', 'US', 1, 29.5069000000, -94.9924300000), (1111720, 1001455, 'Bacon County', NULL, 'bacon-county', 'US', 1, 31.5536700000, -82.4526900000), (1111721, 1001426, 'Bad Axe', NULL, 'bad-axe', 'US', 1, 43.8019600000, -83.0007800000), (1111722, 1001401, 'Baden', NULL, 'baden', 'US', 1, 38.6592800000, -76.7777500000), (1111723, 1001422, 'Baden', NULL, 'baden', 'US', 1, 40.6350700000, -80.2281200000), (1111724, 1001400, 'Badger', NULL, 'badger', 'US', 1, 64.8000000000, -147.5333300000), (1111725, 1001447, 'Badin', NULL, 'badin', 'US', 1, 35.4059700000, -80.1167200000), (1111726, 1001436, 'Bagdad', NULL, 'bagdad', 'US', 1, 30.5988000000, -87.0322300000), (1111727, 1001434, 'Bagdad', NULL, 'bagdad', 'US', 1, 34.5811300000, -113.2046400000), (1111728, 1001420, 'Bagley', NULL, 'bagley', 'US', 1, 47.5216200000, -95.3983500000), (1111729, 1001422, 'Baidland', NULL, 'baidland', 'US', 1, 40.1947900000, -79.9708800000), (1111730, 1001407, 'Bailey County', NULL, 'bailey-county', 'US', 1, 34.0685200000, -102.8298700000), (1111731, 1001427, 'Baileys Crossroads', NULL, 'baileys-crossroads', 'US', 1, 38.8503900000, -77.1297000000), (1111732, 1001455, 'Bainbridge', NULL, 'bainbridge', 'US', 1, 30.9038000000, -84.5754700000), (1111733, 1001452, 'Bainbridge', NULL, 'bainbridge', 'US', 1, 42.2934100000, -75.4793500000), (1111734, 1001422, 'Bainbridge', NULL, 'bainbridge', 'US', 1, 40.0909300000, -76.6674700000), (1111735, 1001462, 'Bainbridge Island', NULL, 'bainbridge-island', 'US', 1, 47.6262100000, -122.5212400000), (1111736, 1001407, 'Baird', NULL, 'baird', 'US', 1, 32.3940200000, -99.3942400000), (1111737, 1001452, 'Baiting Hollow', NULL, 'baiting-hollow', 'US', 1, 40.9562100000, -72.7442700000), (1111738, 1001457, 'Baker', NULL, 'baker', 'US', 1, 30.5882400000, -91.1681600000), (1111739, 1001446, 'Baker', NULL, 'baker', 'US', 1, 46.3669500000, -104.2846600000), (1111740, 1001415, 'Baker City', NULL, 'baker-city', 'US', 1, 44.7748700000, -117.8343800000), (1111741, 1001436, 'Baker County', NULL, 'baker-county', 'US', 1, 30.3310700000, -82.2845900000), (1111742, 1001455, 'Baker County', NULL, 'baker-county', 'US', 1, 31.3261800000, -84.4446700000), (1111743, 1001415, 'Baker County', NULL, 'baker-county', 'US', 1, 44.7092300000, -117.6753400000), (1111744, 1001416, 'Bakersfield', NULL, 'bakersfield', 'US', 1, 35.3732900000, -119.0187100000), (1111745, 1001422, 'Bakerstown', NULL, 'bakerstown', 'US', 1, 40.6509000000, -79.9364400000), (1111746, 1001447, 'Bakersville', NULL, 'bakersville', 'US', 1, 36.0156700000, -82.1587400000), (1111747, 1001436, 'Bal Harbour', NULL, 'bal-harbour', 'US', 1, 25.8917600000, -80.1269900000), (1111748, 1001422, 'Bala-Cynwyd', NULL, 'bala-cynwyd', 'US', 1, 40.0076100000, -75.2340700000), (1111749, 1001407, 'Balch Springs', NULL, 'balch-springs', 'US', 1, 32.7287400000, -96.6227700000), (1111750, 1001407, 'Balcones Heights', NULL, 'balcones-heights', 'US', 1, 29.4880100000, -98.5516900000), (1111751, 1001444, 'Bald Knob', NULL, 'bald-knob', 'US', 1, 35.3098100000, -91.5679100000), (1111752, 1001455, 'Baldwin', NULL, 'baldwin', 'US', 1, 34.4917700000, -83.5373900000), (1111753, 1001436, 'Baldwin', NULL, 'baldwin', 'US', 1, 30.3027400000, -81.9753900000), (1111754, 1001457, 'Baldwin', NULL, 'baldwin', 'US', 1, 29.8379800000, -91.5442800000), (1111755, 1001426, 'Baldwin', NULL, 'baldwin', 'US', 1, 43.9011200000, -85.8517300000), (1111756, 1001452, 'Baldwin', NULL, 'baldwin', 'US', 1, 40.6564900000, -73.6093000000), (1111757, 1001422, 'Baldwin', NULL, 'baldwin', 'US', 1, 40.3381300000, -79.9789400000), (1111758, 1001441, 'Baldwin', NULL, 'baldwin', 'US', 1, 44.9666300000, -92.3743600000), (1111759, 1001406, 'Baldwin City', NULL, 'baldwin-city', 'US', 1, 38.7750100000, -95.1863600000), (1111760, 1001455, 'Baldwin County', NULL, 'baldwin-county', 'US', 1, 33.0692800000, -83.2495900000), (1111761, 1001456, 'Baldwin County', NULL, 'baldwin-county', 'US', 1, 30.6609700000, -87.7498400000), (1111762, 1001452, 'Baldwin Harbor', NULL, 'baldwin-harbor', 'US', 1, 40.6395500000, -73.6084600000), (1111763, 1001416, 'Baldwin Park', NULL, 'baldwin-park', 'US', 1, 34.0852900000, -117.9609000000), (1111764, 1001452, 'Baldwinsville', NULL, 'baldwinsville', 'US', 1, 43.1586800000, -76.3327100000), (1111765, 1001433, 'Baldwinville', NULL, 'baldwinville', 'US', 1, 42.6084200000, -72.0759100000), (1111766, 1001430, 'Baldwyn', NULL, 'baldwyn', 'US', 1, 34.5095400000, -88.6353300000), (1111767, 1001447, 'Balfour', NULL, 'balfour', 'US', 1, 35.3465100000, -82.4720600000), (1111768, 1001457, 'Ball', NULL, 'ball', 'US', 1, 31.4154600000, -92.4118000000), (1111769, 1001455, 'Ball Ground', NULL, 'ball-ground', 'US', 1, 34.3381500000, -84.3765900000), (1111770, 1001414, 'Ballard', NULL, 'ballard', 'US', 1, 40.2894000000, -109.9432000000), (1111771, 1001419, 'Ballard County', NULL, 'ballard-county', 'US', 1, 37.0584300000, -88.9993400000), (1111772, 1001401, 'Ballenger Creek', NULL, 'ballenger-creek', 'US', 1, 39.3726000000, -77.4352600000), (1111773, 1001407, 'Ballinger', NULL, 'ballinger', 'US', 1, 31.7382100000, -99.9473100000), (1111774, 1001456, 'Ballplay', NULL, 'ballplay', 'US', 1, 34.0587100000, -85.8080200000), (1111775, 1001452, 'Ballston Spa', NULL, 'ballston-spa', 'US', 1, 43.0009100000, -73.8490100000), (1111776, 1001451, 'Ballwin', NULL, 'ballwin', 'US', 1, 38.5950500000, -90.5462300000), (1111777, 1001422, 'Bally', NULL, 'bally', 'US', 1, 40.4023200000, -75.5871300000), (1111778, 1001436, 'Balm', NULL, 'balm', 'US', 1, 27.7594700000, -82.2612000000), (1111779, 1001452, 'Balmville', NULL, 'balmville', 'US', 1, 41.5348200000, -74.0148600000), (1111780, 1001441, 'Balsam Lake', NULL, 'balsam-lake', 'US', 1, 45.4521800000, -92.4546400000), (1111781, 1001435, 'Baltic', NULL, 'baltic', 'US', 1, 41.6170400000, -72.0845200000), (1111782, 1001445, 'Baltic', NULL, 'baltic', 'US', 1, 43.7613600000, -96.7403300000), (1111783, 1001401, 'Baltimore', NULL, 'baltimore', 'US', 1, 39.2903800000, -76.6121900000), (1111784, 1001401, 'Baltimore County', NULL, 'baltimore-county', 'US', 1, 39.4430700000, -76.6163200000), (1111785, 1001401, 'Baltimore Highlands', NULL, 'baltimore-highlands', 'US', 1, 39.2331600000, -76.6366300000), (1111786, 1001443, 'Bamberg', NULL, 'bamberg', 'US', 1, 33.2971000000, -81.0348200000), (1111787, 1001443, 'Bamberg County', NULL, 'bamberg-county', 'US', 1, 33.2147700000, -81.0542300000), (1111788, 1001407, 'Bandera', NULL, 'bandera', 'US', 1, 29.7266100000, -99.0736500000), (1111789, 1001407, 'Bandera County', NULL, 'bandera-county', 'US', 1, 29.7472100000, -99.2462400000), (1111790, 1001415, 'Bandon', NULL, 'bandon', 'US', 1, 43.1190000000, -124.4084500000), (1111791, 1001426, 'Bangor', NULL, 'bangor', 'US', 1, 42.3125400000, -86.1130800000), (1111792, 1001453, 'Bangor', NULL, 'bangor', 'US', 1, 44.8011800000, -68.7778100000), (1111793, 1001422, 'Bangor', NULL, 'bangor', 'US', 1, 40.8656500000, -75.2065700000), (1111794, 1001441, 'Bangor', NULL, 'bangor', 'US', 1, 43.8930200000, -90.9904100000), (1111795, 1001462, 'Bangor Trident Base', NULL, 'bangor-trident-base', 'US', 1, 47.7227400000, -122.7144600000), (1111796, 1001407, 'Bangs', NULL, 'bangs', 'US', 1, 31.7171000000, -99.1325500000), (1111797, 1001415, 'Banks', NULL, 'banks', 'US', 1, 45.6187200000, -123.1142800000), (1111798, 1001455, 'Banks County', NULL, 'banks-county', 'US', 1, 34.3541300000, -83.4973700000), (1111799, 1001457, 'Banks Springs', NULL, 'banks-springs', 'US', 1, 32.0821000000, -92.0929100000), (1111800, 1001408, 'Banner County', NULL, 'banner-county', 'US', 1, 41.5459700000, -103.7104800000), (1111801, 1001447, 'Banner Elk', NULL, 'banner-elk', 'US', 1, 36.1631800000, -81.8715000000), (1111802, 1001454, 'Banner Hill', NULL, 'banner-hill', 'US', 1, 36.1306600000, -82.4245800000), (1111803, 1001416, 'Banning', NULL, 'banning', 'US', 1, 33.9255700000, -116.8764100000), (1111804, 1001460, 'Bannock County', NULL, 'bannock-county', 'US', 1, 42.6685100000, -112.2246300000), (1111805, 1001425, 'Bannockburn', NULL, 'bannockburn', 'US', 1, 42.1933600000, -87.8664600000), (1111806, 1001453, 'Bar Harbor', NULL, 'bar-harbor', 'US', 1, 44.3875800000, -68.2039000000), (1111807, 1001442, 'Bar Nunn', NULL, 'bar-nunn', 'US', 1, 42.9135800000, -106.3433600000), (1111808, 1001441, 'Baraboo', NULL, 'baraboo', 'US', 1, 43.4710900000, -89.7442900000), (1111809, 1001426, 'Baraga', NULL, 'baraga', 'US', 1, 46.7785400000, -88.4890200000), (1111810, 1001426, 'Baraga County', NULL, 'baraga-county', 'US', 1, 46.6997600000, -88.3521500000), (1111811, 1001457, 'Barataria', NULL, 'barataria', 'US', 1, 29.7232700000, -90.1236900000), (1111812, 1001406, 'Barber County', NULL, 'barber-county', 'US', 1, 37.2288400000, -98.6847900000), (1111813, 1001462, 'Barberton', NULL, 'barberton', 'US', 1, 45.6931700000, -122.5989900000), (1111814, 1001429, 'Barbour County', NULL, 'barbour-county', 'US', 1, 39.1329300000, -80.0030300000), (1111815, 1001456, 'Barbour County', NULL, 'barbour-county', 'US', 1, 31.8696000000, -85.3932000000), (1111816, 1001419, 'Barbourmeade', NULL, 'barbourmeade', 'US', 1, 38.2972900000, -85.6032900000), (1111817, 1001429, 'Barboursville', NULL, 'barboursville', 'US', 1, 38.4095300000, -82.2945900000), (1111818, 1001419, 'Barbourville', NULL, 'barbourville', 'US', 1, 36.8664800000, -83.8888100000), (1111819, 1001452, 'Bardonia', NULL, 'bardonia', 'US', 1, 41.1095400000, -73.9962500000), (1111820, 1001419, 'Bardstown', NULL, 'bardstown', 'US', 1, 37.8092300000, -85.4669000000), (1111821, 1001419, 'Bardwell', NULL, 'bardwell', 'US', 1, 36.8706100000, -89.0097900000), (1111822, 1001440, 'Bargersville', NULL, 'bargersville', 'US', 1, 39.5208800000, -86.1677700000), (1111823, 1001447, 'Barker Heights', NULL, 'barker-heights', 'US', 1, 35.3112300000, -82.4440100000), (1111824, 1001444, 'Barling', NULL, 'barling', 'US', 1, 35.3256500000, -94.3016000000), (1111825, 1001417, 'Barnegat', NULL, 'barnegat', 'US', 1, 39.7531800000, -74.2229200000), (1111826, 1001418, 'Barnes County', NULL, 'barnes-county', 'US', 1, 46.9361100000, -98.0715800000), (1111827, 1001426, 'Barnes Lake-Millers Lake', NULL, 'barnes-lake-millers-lake', 'US', 1, 43.1795600000, -83.3123000000), (1111828, 1001422, 'Barnesboro', NULL, 'barnesboro', 'US', 1, 40.6625700000, -78.7800300000), (1111829, 1001455, 'Barnesville', NULL, 'barnesville', 'US', 1, 33.0545700000, -84.1557500000), (1111830, 1001420, 'Barnesville', NULL, 'barnesville', 'US', 1, 46.6521800000, -96.4197900000), (1111831, 1001441, 'Barneveld', NULL, 'barneveld', 'US', 1, 43.0155500000, -89.8954000000), (1111832, 1001451, 'Barnhart', NULL, 'barnhart', 'US', 1, 38.3442200000, -90.3934500000), (1111833, 1001421, 'Barnsdall', NULL, 'barnsdall', 'US', 1, 36.5620200000, -96.1616700000), (1111834, 1001433, 'Barnstable', NULL, 'barnstable', 'US', 1, 41.7001100000, -70.2994700000), (1111835, 1001433, 'Barnstable County', NULL, 'barnstable-county', 'US', 1, 41.6841900000, -70.2740500000), (1111836, 1001404, 'Barnstead', NULL, 'barnstead', 'US', 1, 43.3339700000, -71.2928400000), (1111837, 1001452, 'Barnum Island', NULL, 'barnum-island', 'US', 1, 40.6045500000, -73.6440200000), (1111838, 1001443, 'Barnwell', NULL, 'barnwell', 'US', 1, 33.2448700000, -81.3587200000), (1111839, 1001443, 'Barnwell County', NULL, 'barnwell-county', 'US', 1, 33.2660600000, -81.4350200000), (1111840, 1001429, 'Barrackville', NULL, 'barrackville', 'US', 1, 39.5037000000, -80.1667500000), (1111841, 1001433, 'Barre', NULL, 'barre', 'US', 1, 42.4228700000, -72.1050800000), (1111842, 1001409, 'Barre', NULL, 'barre', 'US', 1, 44.1970100000, -72.5020500000), (1111843, 1001419, 'Barren County', NULL, 'barren-county', 'US', 1, 36.9655800000, -85.9336600000), (1111844, 1001407, 'Barrett', NULL, 'barrett', 'US', 1, 29.8799500000, -95.0629800000), (1111845, 1001417, 'Barrington', NULL, 'barrington', 'US', 1, 39.8648400000, -75.0551700000), (1111846, 1001425, 'Barrington', NULL, 'barrington', 'US', 1, 42.1539100000, -88.1361900000), (1111847, 1001404, 'Barrington', NULL, 'barrington', 'US', 1, 43.2228600000, -71.0470100000), (1111848, 1001461, 'Barrington', NULL, 'barrington', 'US', 1, 41.7406600000, -71.3086600000), (1111849, 1001425, 'Barrington Hills', NULL, 'barrington-hills', 'US', 1, 42.1447500000, -88.1556300000), (1111850, 1001441, 'Barron', NULL, 'barron', 'US', 1, 45.4013500000, -91.8490600000), (1111851, 1001441, 'Barron County', NULL, 'barron-county', 'US', 1, 45.4237200000, -91.8483100000), (1111852, 1001400, 'Barrow', NULL, 'barrow', 'US', 1, 71.2905800000, -156.7887200000), (1111853, 1001455, 'Barrow County', NULL, 'barrow-county', 'US', 1, 33.9932000000, -83.7127600000), (1111854, 1001425, 'Barry', NULL, 'barry', 'US', 1, 39.6942100000, -91.0390200000), (1111855, 1001451, 'Barry County', NULL, 'barry-county', 'US', 1, 36.7098700000, -93.8290700000), (1111856, 1001426, 'Barry County', NULL, 'barry-county', 'US', 1, 42.5950300000, -85.3089700000), (1111857, 1001416, 'Barstow', NULL, 'barstow', 'US', 1, 34.8985900000, -117.0228200000), (1111858, 1001416, 'Barstow Heights', NULL, 'barstow-heights', 'US', 1, 34.8697100000, -117.0561500000), (1111859, 1001440, 'Bartholomew County', NULL, 'bartholomew-county', 'US', 1, 39.2059700000, -85.8976000000), (1111860, 1001421, 'Bartlesville', NULL, 'bartlesville', 'US', 1, 36.7473100000, -95.9808200000), (1111861, 1001454, 'Bartlett', NULL, 'bartlett', 'US', 1, 35.2045300000, -89.8739800000), (1111862, 1001407, 'Bartlett', NULL, 'bartlett', 'US', 1, 30.7949100000, -97.4255600000), (1111863, 1001425, 'Bartlett', NULL, 'bartlett', 'US', 1, 41.9950300000, -88.1856300000), (1111864, 1001408, 'Bartlett', NULL, 'bartlett', 'US', 1, 41.8852900000, -98.5523000000), (1111865, 1001441, 'Barton', NULL, 'barton', 'US', 1, 43.4436100000, -88.1806500000), (1111866, 1001406, 'Barton County', NULL, 'barton-county', 'US', 1, 38.4789600000, -98.7564600000), (1111867, 1001451, 'Barton County', NULL, 'barton-county', 'US', 1, 37.5023000000, -94.3471100000), (1111868, 1001407, 'Barton Creek', NULL, 'barton-creek', 'US', 1, 30.2852100000, -97.8691700000), (1111869, 1001401, 'Bartonsville', NULL, 'bartonsville', 'US', 1, 39.3926000000, -77.3580400000), (1111870, 1001407, 'Bartonville', NULL, 'bartonville', 'US', 1, 33.0731800000, -97.1316800000), (1111871, 1001425, 'Bartonville', NULL, 'bartonville', 'US', 1, 40.6503200000, -89.6520500000), (1111872, 1001436, 'Bartow', NULL, 'bartow', 'US', 1, 27.8964100000, -81.8431400000), (1111873, 1001455, 'Bartow County', NULL, 'bartow-county', 'US', 1, 34.2378600000, -84.8405000000), (1111874, 1001415, 'Barview', NULL, 'barview', 'US', 1, 43.3542800000, -124.3131700000), (1111875, 1001450, 'Basalt', NULL, 'basalt', 'US', 1, 39.3688700000, -107.0328200000), (1111876, 1001406, 'Basehor', NULL, 'basehor', 'US', 1, 39.1416700000, -94.9385800000), (1111877, 1001457, 'Basile', NULL, 'basile', 'US', 1, 30.4852000000, -92.5959700000), (1111878, 1001442, 'Basin', NULL, 'basin', 'US', 1, 44.3799600000, -108.0389900000), (1111879, 1001462, 'Basin City', NULL, 'basin-city', 'US', 1, 46.5940300000, -119.1522300000), (1111880, 1001440, 'Bass Lake', NULL, 'bass-lake', 'US', 1, 41.2072600000, -86.6019600000), (1111881, 1001427, 'Bassett', NULL, 'bassett', 'US', 1, 36.7593000000, -79.9903200000), (1111882, 1001408, 'Bassett', NULL, 'bassett', 'US', 1, 42.5858300000, -99.5378900000), (1111883, 1001457, 'Bastrop', NULL, 'bastrop', 'US', 1, 32.7782800000, -91.9114400000), (1111884, 1001407, 'Bastrop', NULL, 'bastrop', 'US', 1, 30.1104900000, -97.3152700000), (1111885, 1001407, 'Bastrop County', NULL, 'bastrop-county', 'US', 1, 30.1036100000, -97.3120100000), (1111886, 1001427, 'Basye', NULL, 'basye', 'US', 1, 38.8070600000, -78.7922400000), (1111887, 1001425, 'Batavia', NULL, 'batavia', 'US', 1, 41.8500300000, -88.3125700000), (1111888, 1001452, 'Batavia', NULL, 'batavia', 'US', 1, 42.9981200000, -78.1875200000), (1111889, 1001451, 'Bates County', NULL, 'bates-county', 'US', 1, 38.2572900000, -94.3400000000), (1111890, 1001443, 'Batesburg', NULL, 'batesburg', 'US', 1, 33.9079200000, -81.5473300000), (1111891, 1001443, 'Batesburg-Leesville', NULL, 'batesburg-leesville', 'US', 1, 33.9101400000, -81.5373300000), (1111892, 1001444, 'Batesville', NULL, 'batesville', 'US', 1, 35.7698000000, -91.6409700000), (1111893, 1001440, 'Batesville', NULL, 'batesville', 'US', 1, 39.3000500000, -85.2221800000), (1111894, 1001430, 'Batesville', NULL, 'batesville', 'US', 1, 34.3115000000, -89.9442600000), (1111895, 1001407, 'Batesville', NULL, 'batesville', 'US', 1, 28.9510800000, -99.6178300000), (1111896, 1001426, 'Bath', NULL, 'bath', 'US', 1, 42.8186400000, -84.4485900000), (1111897, 1001453, 'Bath', NULL, 'bath', 'US', 1, 43.9106400000, -69.8206000000), (1111898, 1001452, 'Bath', NULL, 'bath', 'US', 1, 42.3370200000, -77.3177600000), (1111899, 1001422, 'Bath', NULL, 'bath', 'US', 1, 40.7256500000, -75.3940700000), (1111900, 1001452, 'Bath Beach', NULL, 'bath-beach', 'US', 1, 40.6045500000, -74.0043100000), (1111901, 1001419, 'Bath County', NULL, 'bath-county', 'US', 1, 38.1449700000, -83.7426700000), (1111902, 1001427, 'Bath County', NULL, 'bath-county', 'US', 1, 38.0586900000, -79.7410900000), (1111903, 1001457, 'Baton Rouge', NULL, 'baton-rouge', 'US', 1, 30.4433200000, -91.1874700000), (1111904, 1001426, 'Battle Creek', NULL, 'battle-creek', 'US', 1, 42.3173000000, -85.1781600000), (1111905, 1001408, 'Battle Creek', NULL, 'battle-creek', 'US', 1, 41.9994500000, -97.5983900000), (1111906, 1001440, 'Battle Ground', NULL, 'battle-ground', 'US', 1, 40.5083700000, -86.8416800000), (1111907, 1001462, 'Battle Ground', NULL, 'battle-ground', 'US', 1, 45.7809500000, -122.5334300000), (1111908, 1001458, 'Battle Mountain', NULL, 'battle-mountain', 'US', 1, 40.6421300000, -116.9342700000), (1111909, 1001451, 'Battlefield', NULL, 'battlefield', 'US', 1, 37.1156100000, -93.3701900000), (1111910, 1001450, 'Battlement Mesa', NULL, 'battlement-mesa', 'US', 1, 39.4413700000, -108.0250700000), (1111911, 1001420, 'Baudette', NULL, 'baudette', 'US', 1, 48.7124700000, -94.5999300000), (1111912, 1001457, 'Bawcomville', NULL, 'bawcomville', 'US', 1, 32.4704200000, -92.1673600000), (1111913, 1001455, 'Baxley', NULL, 'baxley', 'US', 1, 31.7782500000, -82.3484600000), (1111914, 1001454, 'Baxter', NULL, 'baxter', 'US', 1, 36.1536700000, -85.6435900000), (1111915, 1001459, 'Baxter', NULL, 'baxter', 'US', 1, 41.8261000000, -93.1515900000), (1111916, 1001420, 'Baxter', NULL, 'baxter', 'US', 1, 46.3433000000, -94.2866700000), (1111917, 1001444, 'Baxter County', NULL, 'baxter-county', 'US', 1, 36.2871900000, -92.3369700000), (1111918, 1001452, 'Baxter Estates', NULL, 'baxter-estates', 'US', 1, 40.8348200000, -73.6954100000), (1111919, 1001406, 'Baxter Springs', NULL, 'baxter-springs', 'US', 1, 37.0236800000, -94.7355000000), (1111920, 1001444, 'Bay', NULL, 'bay', 'US', 1, 35.7423000000, -90.5623300000), (1111921, 1001407, 'Bay City', NULL, 'bay-city', 'US', 1, 28.9827600000, -95.9694000000), (1111922, 1001426, 'Bay City', NULL, 'bay-city', 'US', 1, 43.5944700000, -83.8888600000), (1111923, 1001415, 'Bay City', NULL, 'bay-city', 'US', 1, 45.5226000000, -123.8893000000), (1111924, 1001436, 'Bay County', NULL, 'bay-county', 'US', 1, 30.2376500000, -85.6326200000), (1111925, 1001426, 'Bay County', NULL, 'bay-county', 'US', 1, 43.7213700000, -83.9418400000), (1111926, 1001426, 'Bay Harbor', NULL, 'bay-harbor', 'US', 1, 45.3641300000, -85.0820800000), (1111927, 1001436, 'Bay Harbor Islands', NULL, 'bay-harbor-islands', 'US', 1, 25.8875900000, -80.1311600000), (1111928, 1001436, 'Bay Hill', NULL, 'bay-hill', 'US', 1, 28.4680600000, -81.5161800000), (1111929, 1001456, 'Bay Minette', NULL, 'bay-minette', 'US', 1, 30.8829600000, -87.7730500000), (1111930, 1001452, 'Bay Park', NULL, 'bay-park', 'US', 1, 40.6331600000, -73.6704100000), (1111931, 1001436, 'Bay Pines', NULL, 'bay-pines', 'US', 1, 27.8141900000, -82.7781600000), (1111932, 1001416, 'Bay Point', NULL, 'bay-point', 'US', 1, 38.0290900000, -121.9616300000), (1111933, 1001430, 'Bay Saint Louis', NULL, 'bay-saint-louis', 'US', 1, 30.3088100000, -89.3300500000), (1111934, 1001452, 'Bay Shore', NULL, 'bay-shore', 'US', 1, 40.7251000000, -73.2453900000), (1111935, 1001430, 'Bay Springs', NULL, 'bay-springs', 'US', 1, 31.9790400000, -89.2872800000), (1111936, 1001452, 'Bay Wood', NULL, 'bay-wood', 'US', 1, 40.7501000000, -73.2912300000), (1111937, 1001423, 'Bayard', NULL, 'bayard', 'US', 1, 32.7617400000, -108.1306000000), (1111938, 1001408, 'Bayard', NULL, 'bayard', 'US', 1, 41.7549700000, -103.3241000000), (1111939, 1001447, 'Bayboro', NULL, 'bayboro', 'US', 1, 35.1429400000, -76.7702100000), (1111940, 1001452, 'Baychester', NULL, 'baychester', 'US', 1, 40.8692800000, -73.8364500000), (1111941, 1001450, 'Bayfield', NULL, 'bayfield', 'US', 1, 37.2255600000, -107.5981100000), (1111942, 1001441, 'Bayfield County', NULL, 'bayfield-county', 'US', 1, 46.6354400000, -91.1806800000), (1111943, 1001407, 'Baylor County', NULL, 'baylor-county', 'US', 1, 33.6164900000, -99.2135100000), (1111944, 1001436, 'Bayonet Point', NULL, 'bayonet-point', 'US', 1, 28.3266700000, -82.6834300000), (1111945, 1001417, 'Bayonne', NULL, 'bayonne', 'US', 1, 40.6687100000, -74.1143100000), (1111946, 1001457, 'Bayou Cane', NULL, 'bayou-cane', 'US', 1, 29.6241000000, -90.7512000000), (1111947, 1001457, 'Bayou Gauche', NULL, 'bayou-gauche', 'US', 1, 29.7874300000, -90.4131400000), (1111948, 1001456, 'Bayou La Batre', NULL, 'bayou-la-batre', 'US', 1, 30.4035200000, -88.2485200000), (1111949, 1001457, 'Bayou Vista', NULL, 'bayou-vista', 'US', 1, 29.6896500000, -91.2709400000), (1111950, 1001407, 'Bayou Vista', NULL, 'bayou-vista', 'US', 1, 29.3263500000, -94.9385300000), (1111951, 1001420, 'Bayport', NULL, 'bayport', 'US', 1, 45.0213600000, -92.7810400000), (1111952, 1001452, 'Bayport', NULL, 'bayport', 'US', 1, 40.7384300000, -73.0506700000), (1111953, 1001447, 'Bayshore', NULL, 'bayshore', 'US', 1, 34.2896100000, -77.7874800000), (1111954, 1001436, 'Bayshore Gardens', NULL, 'bayshore-gardens', 'US', 1, 27.4253200000, -82.5903800000), (1111955, 1001452, 'Bayside', NULL, 'bayside', 'US', 1, 40.7684400000, -73.7770800000), (1111956, 1001441, 'Bayside', NULL, 'bayside', 'US', 1, 43.1805600000, -87.9006400000), (1111957, 1001416, 'Bayside', NULL, 'bayside', 'US', 1, 40.8423500000, -124.0636700000), (1111958, 1001407, 'Baytown', NULL, 'baytown', 'US', 1, 29.7355000000, -94.9774300000), (1111959, 1001416, 'Bayview', NULL, 'bayview', 'US', 1, 40.7726300000, -124.1839500000), (1111960, 1001417, 'Bayville', NULL, 'bayville', 'US', 1, 39.9092900000, -74.1548600000), (1111961, 1001452, 'Bayville', NULL, 'bayville', 'US', 1, 40.9106500000, -73.5620700000), (1111962, 1001418, 'Beach', NULL, 'beach', 'US', 1, 46.9180700000, -104.0043700000), (1111963, 1001407, 'Beach City', NULL, 'beach-city', 'US', 1, 29.6621700000, -94.8899200000), (1111964, 1001417, 'Beach Haven', NULL, 'beach-haven', 'US', 1, 39.5592800000, -74.2432000000), (1111965, 1001417, 'Beach Haven West', NULL, 'beach-haven-west', 'US', 1, 39.6698400000, -74.2318100000), (1111966, 1001425, 'Beach Park', NULL, 'beach-park', 'US', 1, 42.4222400000, -87.8573000000), (1111967, 1001417, 'Beachwood', NULL, 'beachwood', 'US', 1, 39.9390100000, -74.1929200000), (1111968, 1001452, 'Beacon', NULL, 'beacon', 'US', 1, 41.5048200000, -73.9695800000), (1111969, 1001436, 'Beacon Square', NULL, 'beacon-square', 'US', 1, 28.2086200000, -82.7553800000), (1111970, 1001445, 'Beadle County', NULL, 'beadle-county', 'US', 1, 44.4144800000, -98.2781100000), (1111971, 1001416, 'Beale Air Force Base', NULL, 'beale-air-force-base', 'US', 1, 39.1091700000, -121.3544400000), (1111972, 1001427, 'Bealeton', NULL, 'bealeton', 'US', 1, 38.5717900000, -77.7638800000), (1111973, 1001454, 'Bean Station', NULL, 'bean-station', 'US', 1, 36.3437000000, -83.2840600000), (1111974, 1001399, 'Bear', NULL, 'bear', 'US', 1, 39.6292800000, -75.6582600000), (1111975, 1001456, 'Bear Creek', NULL, 'bear-creek', 'US', 1, 34.2748200000, -87.7005800000), (1111976, 1001400, 'Bear Creek', NULL, 'bear-creek', 'US', 1, 60.1641700000, -149.3950000000), (1111977, 1001460, 'Bear Lake County', NULL, 'bear-lake-county', 'US', 1, 42.2847900000, -111.3296500000), (1111978, 1001422, 'Bear Rocks', NULL, 'bear-rocks', 'US', 1, 40.1228500000, -79.4617000000), (1111979, 1001416, 'Bear Valley Springs', NULL, 'bear-valley-springs', 'US', 1, 35.1591300000, -118.6284200000), (1111980, 1001425, 'Beardstown', NULL, 'beardstown', 'US', 1, 40.0175500000, -90.4242900000), (1111981, 1001408, 'Beatrice', NULL, 'beatrice', 'US', 1, 40.2680600000, -96.7469700000), (1111982, 1001458, 'Beatty', NULL, 'beatty', 'US', 1, 36.9085600000, -116.7592300000), (1111983, 1001417, 'Beattystown', NULL, 'beattystown', 'US', 1, 40.8131500000, -74.8429400000), (1111984, 1001419, 'Beattyville', NULL, 'beattyville', 'US', 1, 37.5717500000, -83.7068600000), (1111985, 1001447, 'Beaufort', NULL, 'beaufort', 'US', 1, 34.7182200000, -76.6638200000), (1111986, 1001443, 'Beaufort', NULL, 'beaufort', 'US', 1, 32.4315800000, -80.6698300000), (1111987, 1001447, 'Beaufort County', NULL, 'beaufort-county', 'US', 1, 35.4858300000, -76.8451600000), (1111988, 1001443, 'Beaufort County', NULL, 'beaufort-county', 'US', 1, 32.3570600000, -80.6921700000), (1111989, 1001407, 'Beaumont', NULL, 'beaumont', 'US', 1, 30.0860500000, -94.1018500000), (1111990, 1001416, 'Beaumont', NULL, 'beaumont', 'US', 1, 33.9294600000, -116.9772500000), (1111991, 1001457, 'Beauregard Parish', NULL, 'beauregard-parish', 'US', 1, 30.6484700000, -93.3433400000), (1111992, 1001429, 'Beaver', NULL, 'beaver', 'US', 1, 37.7478100000, -81.1435200000), (1111993, 1001422, 'Beaver', NULL, 'beaver', 'US', 1, 40.6953400000, -80.3047800000), (1111994, 1001421, 'Beaver', NULL, 'beaver', 'US', 1, 36.8161400000, -100.5198700000), (1111995, 1001414, 'Beaver', NULL, 'beaver', 'US', 1, 38.2769100000, -112.6410500000), (1111996, 1001408, 'Beaver City', NULL, 'beaver-city', 'US', 1, 40.1375100000, -99.8295600000), (1111997, 1001422, 'Beaver County', NULL, 'beaver-county', 'US', 1, 40.6822600000, -80.3492900000), (1111998, 1001421, 'Beaver County', NULL, 'beaver-county', 'US', 1, 36.7497100000, -100.4767800000), (1111999, 1001414, 'Beaver County', NULL, 'beaver-county', 'US', 1, 38.3577100000, -113.2357600000), (1112000, 1001419, 'Beaver Dam', NULL, 'beaver-dam', 'US', 1, 37.4019900000, -86.8758300000), (1112001, 1001441, 'Beaver Dam', NULL, 'beaver-dam', 'US', 1, 43.4577700000, -88.8373300000), (1112002, 1001434, 'Beaver Dam', NULL, 'beaver-dam', 'US', 1, 36.8994200000, -113.9327400000), (1112003, 1001452, 'Beaver Dam Lake', NULL, 'beaver-dam-lake', 'US', 1, 41.4474300000, -74.1146300000), (1112004, 1001422, 'Beaver Falls', NULL, 'beaver-falls', 'US', 1, 40.7520100000, -80.3192300000), (1112005, 1001415, 'Beavercreek', NULL, 'beavercreek', 'US', 1, 45.2879000000, -122.5356400000), (1112006, 1001422, 'Beaverdale', NULL, 'beaverdale', 'US', 1, 40.3220200000, -78.6969600000), (1112007, 1001452, 'Beaverdam Lake-Salisbury Mills', NULL, 'beaverdam-lake-salisbury-mills', 'US', 1, 41.4416200000, -74.1162900000), (1112008, 1001446, 'Beaverhead County', NULL, 'beaverhead-county', 'US', 1, 45.1327300000, -112.8988900000), (1112009, 1001426, 'Beaverton', NULL, 'beaverton', 'US', 1, 43.8822500000, -84.4847300000), (1112010, 1001415, 'Beaverton', NULL, 'beaverton', 'US', 1, 45.4870600000, -122.8037100000), (1112011, 1001425, 'Beckemeyer', NULL, 'beckemeyer', 'US', 1, 38.6056000000, -89.4359200000), (1112012, 1001420, 'Becker', NULL, 'becker', 'US', 1, 45.3933000000, -93.8769200000), (1112013, 1001420, 'Becker County', NULL, 'becker-county', 'US', 1, 46.9346500000, -95.6739200000), (1112014, 1001433, 'Becket', NULL, 'becket', 'US', 1, 42.3320300000, -73.0828800000), (1112015, 1001417, 'Beckett', NULL, 'beckett', 'US', 1, 39.7540000000, -75.3574100000), (1112016, 1001421, 'Beckham County', NULL, 'beckham-county', 'US', 1, 35.2687100000, -99.6819200000), (1112017, 1001429, 'Beckley', NULL, 'beckley', 'US', 1, 37.7781700000, -81.1881600000), (1112018, 1001440, 'Bedford', NULL, 'bedford', 'US', 1, 38.8611600000, -86.4872100000), (1112019, 1001419, 'Bedford', NULL, 'bedford', 'US', 1, 38.5925600000, -85.3177300000), (1112020, 1001427, 'Bedford', NULL, 'bedford', 'US', 1, 37.3343100000, -79.5230900000), (1112021, 1001407, 'Bedford', NULL, 'bedford', 'US', 1, 32.8440200000, -97.1430700000), (1112022, 1001459, 'Bedford', NULL, 'bedford', 'US', 1, 40.6669300000, -94.7213600000), (1112023, 1001433, 'Bedford', NULL, 'bedford', 'US', 1, 42.4906500000, -71.2761700000), (1112024, 1001404, 'Bedford', NULL, 'bedford', 'US', 1, 42.9464700000, -71.5159000000), (1112025, 1001452, 'Bedford', NULL, 'bedford', 'US', 1, 41.2042600000, -73.6437400000), (1112026, 1001422, 'Bedford', NULL, 'bedford', 'US', 1, 40.0186900000, -78.5039100000), (1112027, 1001427, 'Bedford County', NULL, 'bedford-county', 'US', 1, 37.3149400000, -79.5242200000), (1112028, 1001454, 'Bedford County', NULL, 'bedford-county', 'US', 1, 35.5138000000, -86.4588900000), (1112029, 1001422, 'Bedford County', NULL, 'bedford-county', 'US', 1, 40.0065600000, -78.4903200000), (1112030, 1001452, 'Bedford Hills', NULL, 'bedford-hills', 'US', 1, 41.2367600000, -73.6945800000), (1112031, 1001417, 'Bedminster', NULL, 'bedminster', 'US', 1, 40.6806600000, -74.6454400000), (1112032, 1001422, 'Bedminster', NULL, 'bedminster', 'US', 1, 40.4259400000, -75.1790600000), (1112033, 1001407, 'Bee Cave', NULL, 'bee-cave', 'US', 1, 30.3085400000, -97.9450100000), (1112034, 1001407, 'Bee County', NULL, 'bee-county', 'US', 1, 28.4173900000, -97.7411900000), (1112035, 1001436, 'Bee Ridge', NULL, 'bee-ridge', 'US', 1, 27.2839400000, -82.4806500000), (1112036, 1001444, 'Beebe', NULL, 'beebe', 'US', 1, 35.0706400000, -91.8795900000), (1112037, 1001440, 'Beech Grove', NULL, 'beech-grove', 'US', 1, 39.7219900000, -86.0899800000), (1112038, 1001422, 'Beech Mountain Lakes', NULL, 'beech-mountain-lakes', 'US', 1, 41.0415800000, -75.9354500000), (1112039, 1001425, 'Beecher', NULL, 'beecher', 'US', 1, 41.3405900000, -87.6214300000), (1112040, 1001426, 'Beecher', NULL, 'beecher', 'US', 1, 43.0900300000, -83.6944000000), (1112041, 1001430, 'Beechwood', NULL, 'beechwood', 'US', 1, 32.3276500000, -90.8267700000), (1112042, 1001426, 'Beechwood', NULL, 'beechwood', 'US', 1, 42.7969700000, -86.1258800000), (1112043, 1001419, 'Beechwood Village', NULL, 'beechwood-village', 'US', 1, 38.2547900000, -85.6313500000), (1112044, 1001407, 'Beeville', NULL, 'beeville', 'US', 1, 28.4009500000, -97.7497400000), (1112045, 1001421, 'Beggs', NULL, 'beggs', 'US', 1, 35.7426000000, -96.0702700000), (1112046, 1001401, 'Bel Air', NULL, 'bel-air', 'US', 1, 39.5359400000, -76.3482900000), (1112047, 1001401, 'Bel Air North', NULL, 'bel-air-north', 'US', 1, 39.5542900000, -76.3730900000), (1112048, 1001401, 'Bel Air South', NULL, 'bel-air-south', 'US', 1, 39.5050600000, -76.3197700000), (1112049, 1001451, 'Bel-Nor', NULL, 'bel-nor', 'US', 1, 38.7020000000, -90.3167800000), (1112050, 1001451, 'Bel-Ridge', NULL, 'bel-ridge', 'US', 1, 38.7095000000, -90.3253900000), (1112051, 1001433, 'Belchertown', NULL, 'belchertown', 'US', 1, 42.2770400000, -72.4009200000), (1112052, 1001418, 'Belcourt', NULL, 'belcourt', 'US', 1, 48.8391700000, -99.7448700000), (1112053, 1001426, 'Belding', NULL, 'belding', 'US', 1, 43.0978100000, -85.2289100000), (1112054, 1001423, 'Belen', NULL, 'belen', 'US', 1, 34.6628400000, -106.7764200000), (1112055, 1001462, 'Belfair', NULL, 'belfair', 'US', 1, 47.4506500000, -122.8273700000), (1112056, 1001453, 'Belfast', NULL, 'belfast', 'US', 1, 44.4259100000, -69.0064200000), (1112057, 1001422, 'Belfast', NULL, 'belfast', 'US', 1, 40.7806500000, -75.2779600000), (1112058, 1001418, 'Belfield', NULL, 'belfield', 'US', 1, 46.8852900000, -103.1996200000), (1112059, 1001417, 'Belford', NULL, 'belford', 'US', 1, 40.4259400000, -74.0868100000), (1112060, 1001441, 'Belgium', NULL, 'belgium', 'US', 1, 43.4997200000, -87.8503700000), (1112061, 1001453, 'Belgrade', NULL, 'belgrade', 'US', 1, 44.4472900000, -69.8325500000), (1112062, 1001446, 'Belgrade', NULL, 'belgrade', 'US', 1, 45.7760400000, -111.1769000000), (1112063, 1001447, 'Belhaven', NULL, 'belhaven', 'US', 1, 35.5401700000, -76.6229900000), (1112064, 1001429, 'Belington', NULL, 'belington', 'US', 1, 39.0251000000, -79.9356300000), (1112065, 1001404, 'Belknap County', NULL, 'belknap-county', 'US', 1, 43.5186900000, -71.4233600000), (1112066, 1001416, 'Bell', NULL, 'bell', 'US', 1, 33.9775100000, -118.1870200000), (1112067, 1001422, 'Bell Acres', NULL, 'bell-acres', 'US', 1, 40.5900700000, -80.1664500000), (1112068, 1001419, 'Bell County', NULL, 'bell-county', 'US', 1, 36.7306500000, -83.6740900000), (1112069, 1001407, 'Bell County', NULL, 'bell-county', 'US', 1, 31.0376700000, -97.4782000000); INSERT INTO `[[dbprefix]]t_city` VALUES (1112070, 1001416, 'Bell Gardens', NULL, 'bell-gardens', 'US', 1, 33.9652900000, -118.1514600000), (1112071, 1001444, 'Bella Vista', NULL, 'bella-vista', 'US', 1, 36.4807000000, -94.2713400000), (1112072, 1001416, 'Bella Vista', NULL, 'bella-vista', 'US', 1, 40.6407100000, -122.2325000000), (1112073, 1001436, 'Bellair-Meadowbrook Terrace', NULL, 'bellair-meadowbrook-terrace', 'US', 1, 30.1788100000, -81.7434100000), (1112074, 1001406, 'Bellaire', NULL, 'bellaire', 'US', 1, 37.7625100000, -97.2669900000), (1112075, 1001407, 'Bellaire', NULL, 'bellaire', 'US', 1, 29.7057900000, -95.4588300000), (1112076, 1001426, 'Bellaire', NULL, 'bellaire', 'US', 1, 44.9802800000, -85.2111700000), (1112077, 1001452, 'Bellaire', NULL, 'bellaire', 'US', 1, 40.7139900000, -73.7540200000), (1112078, 1001451, 'Belle', NULL, 'belle', 'US', 1, 38.2858800000, -91.7204400000), (1112079, 1001429, 'Belle', NULL, 'belle', 'US', 1, 38.2320500000, -81.5376200000), (1112080, 1001457, 'Belle Chasse', NULL, 'belle-chasse', 'US', 1, 29.8549300000, -89.9906300000), (1112081, 1001445, 'Belle Fourche', NULL, 'belle-fourche', 'US', 1, 44.6713700000, -103.8521500000), (1112082, 1001436, 'Belle Glade', NULL, 'belle-glade', 'US', 1, 26.6845100000, -80.6675600000), (1112083, 1001436, 'Belle Glade Camp', NULL, 'belle-glade-camp', 'US', 1, 26.6575700000, -80.6828400000), (1112084, 1001452, 'Belle Harbor', NULL, 'belle-harbor', 'US', 1, 40.5759400000, -73.8481900000), (1112085, 1001427, 'Belle Haven', NULL, 'belle-haven', 'US', 1, 38.7853900000, -77.0630300000), (1112086, 1001436, 'Belle Isle', NULL, 'belle-isle', 'US', 1, 28.4583400000, -81.3592400000), (1112087, 1001454, 'Belle Meade', NULL, 'belle-meade', 'US', 1, 36.0958900000, -86.8569400000), (1112088, 1001406, 'Belle Plaine', NULL, 'belle-plaine', 'US', 1, 37.3939100000, -97.2811500000), (1112089, 1001459, 'Belle Plaine', NULL, 'belle-plaine', 'US', 1, 41.8969400000, -92.2782400000), (1112090, 1001420, 'Belle Plaine', NULL, 'belle-plaine', 'US', 1, 44.6227400000, -93.7685700000), (1112091, 1001441, 'Belle Plaine', NULL, 'belle-plaine', 'US', 1, 44.7152600000, -88.6662100000), (1112092, 1001457, 'Belle Rose', NULL, 'belle-rose', 'US', 1, 30.0504800000, -91.0414900000), (1112093, 1001422, 'Belle Vernon', NULL, 'belle-vernon', 'US', 1, 40.1250700000, -79.8664400000), (1112094, 1001436, 'Belleair', NULL, 'belleair', 'US', 1, 27.9358500000, -82.8062100000), (1112095, 1001436, 'Belleair Beach', NULL, 'belleair-beach', 'US', 1, 27.9230800000, -82.8431600000), (1112096, 1001436, 'Belleair Bluffs', NULL, 'belleair-bluffs', 'US', 1, 27.9214100000, -82.8170500000), (1112097, 1001451, 'Bellefontaine Neighbors', NULL, 'bellefontaine-neighbors', 'US', 1, 38.7403300000, -90.2265000000), (1112098, 1001399, 'Bellefonte', NULL, 'bellefonte', 'US', 1, 39.7662200000, -75.5093600000), (1112099, 1001422, 'Bellefonte', NULL, 'bellefonte', 'US', 1, 40.9133900000, -77.7783300000), (1112100, 1001452, 'Bellerose', NULL, 'bellerose', 'US', 1, 40.7242700000, -73.7151300000), (1112101, 1001452, 'Bellerose Terrace', NULL, 'bellerose-terrace', 'US', 1, 40.7206600000, -73.7259600000), (1112102, 1001436, 'Belleview', NULL, 'belleview', 'US', 1, 29.0552600000, -82.0623100000), (1112103, 1001425, 'Belleville', NULL, 'belleville', 'US', 1, 38.5200500000, -89.9839900000), (1112104, 1001406, 'Belleville', NULL, 'belleville', 'US', 1, 39.8244500000, -97.6325400000), (1112105, 1001426, 'Belleville', NULL, 'belleville', 'US', 1, 42.2047600000, -83.4852100000), (1112106, 1001417, 'Belleville', NULL, 'belleville', 'US', 1, 40.7937100000, -74.1501400000), (1112107, 1001422, 'Belleville', NULL, 'belleville', 'US', 1, 40.6050700000, -77.7255500000), (1112108, 1001441, 'Belleville', NULL, 'belleville', 'US', 1, 42.8597200000, -89.5381800000), (1112109, 1001419, 'Bellevue', NULL, 'bellevue', 'US', 1, 39.1064500000, -84.4788300000), (1112110, 1001425, 'Bellevue', NULL, 'bellevue', 'US', 1, 40.6844800000, -89.6801000000), (1112111, 1001459, 'Bellevue', NULL, 'bellevue', 'US', 1, 42.2586300000, -90.4229100000), (1112112, 1001426, 'Bellevue', NULL, 'bellevue', 'US', 1, 42.4433700000, -85.0180500000), (1112113, 1001408, 'Bellevue', NULL, 'bellevue', 'US', 1, 41.1366700000, -95.8908400000), (1112114, 1001422, 'Bellevue', NULL, 'bellevue', 'US', 1, 40.4939600000, -80.0517200000), (1112115, 1001441, 'Bellevue', NULL, 'bellevue', 'US', 1, 44.4441600000, -87.9201000000), (1112116, 1001460, 'Bellevue', NULL, 'bellevue', 'US', 1, 43.4635200000, -114.2606000000), (1112117, 1001462, 'Bellevue', NULL, 'bellevue', 'US', 1, 47.6103800000, -122.2006800000), (1112118, 1001416, 'Bellflower', NULL, 'bellflower', 'US', 1, 33.8816800000, -118.1170100000), (1112119, 1001433, 'Bellingham', NULL, 'bellingham', 'US', 1, 42.0867600000, -71.4745100000), (1112120, 1001462, 'Bellingham', NULL, 'bellingham', 'US', 1, 48.7595500000, -122.4882200000), (1112121, 1001417, 'Bellmawr', NULL, 'bellmawr', 'US', 1, 39.8676100000, -75.0946200000), (1112122, 1001407, 'Bellmead', NULL, 'bellmead', 'US', 1, 31.5940500000, -97.1088900000), (1112123, 1001452, 'Bellmore', NULL, 'bellmore', 'US', 1, 40.6687100000, -73.5270700000), (1112124, 1001409, 'Bellows Falls', NULL, 'bellows-falls', 'US', 1, 43.1334100000, -72.4439800000), (1112125, 1001452, 'Bellport', NULL, 'bellport', 'US', 1, 40.7570400000, -72.9392700000), (1112126, 1001454, 'Bells', NULL, 'bells', 'US', 1, 35.7111800000, -89.0875600000), (1112127, 1001407, 'Bells', NULL, 'bells', 'US', 1, 33.6103800000, -96.4108200000), (1112128, 1001436, 'Bellview', NULL, 'bellview', 'US', 1, 30.4615900000, -87.3149700000), (1112129, 1001407, 'Bellville', NULL, 'bellville', 'US', 1, 29.9502300000, -96.2571900000), (1112130, 1001427, 'Bellwood', NULL, 'bellwood', 'US', 1, 37.4218100000, -77.4374800000), (1112131, 1001425, 'Bellwood', NULL, 'bellwood', 'US', 1, 41.8814200000, -87.8831200000), (1112132, 1001422, 'Bellwood', NULL, 'bellwood', 'US', 1, 40.6034000000, -78.3247400000), (1112133, 1001417, 'Belmar', NULL, 'belmar', 'US', 1, 40.1784500000, -74.0218000000), (1112134, 1001459, 'Belmond', NULL, 'belmond', 'US', 1, 42.8460800000, -93.6141000000), (1112135, 1001430, 'Belmont', NULL, 'belmont', 'US', 1, 34.5098200000, -88.2092100000), (1112136, 1001447, 'Belmont', NULL, 'belmont', 'US', 1, 35.2429200000, -81.0373000000), (1112137, 1001427, 'Belmont', NULL, 'belmont', 'US', 1, 39.0648300000, -77.5099900000), (1112138, 1001433, 'Belmont', NULL, 'belmont', 'US', 1, 42.3959300000, -71.1786700000), (1112139, 1001404, 'Belmont', NULL, 'belmont', 'US', 1, 43.4453600000, -71.4778500000), (1112140, 1001452, 'Belmont', NULL, 'belmont', 'US', 1, 42.2231200000, -78.0344500000), (1112141, 1001422, 'Belmont', NULL, 'belmont', 'US', 1, 40.2873000000, -78.8894700000), (1112142, 1001416, 'Belmont', NULL, 'belmont', 'US', 1, 37.5202100000, -122.2758000000), (1112143, 1001425, 'Belmont Cragin', NULL, 'belmont-cragin', 'US', 1, 41.9317000000, -87.7686700000), (1112144, 1001427, 'Belmont Estates', NULL, 'belmont-estates', 'US', 1, 38.4527100000, -78.9197900000), (1112145, 1001406, 'Beloit', NULL, 'beloit', 'US', 1, 39.4561200000, -98.1061600000), (1112146, 1001441, 'Beloit', NULL, 'beloit', 'US', 1, 42.5083500000, -89.0317800000), (1112147, 1001451, 'Belton', NULL, 'belton', 'US', 1, 38.8119500000, -94.5319000000), (1112148, 1001443, 'Belton', NULL, 'belton', 'US', 1, 34.5228900000, -82.4942900000), (1112149, 1001407, 'Belton', NULL, 'belton', 'US', 1, 31.0560100000, -97.4644500000), (1112150, 1001420, 'Beltrami County', NULL, 'beltrami-county', 'US', 1, 47.9737800000, -94.9376500000), (1112151, 1001401, 'Beltsville', NULL, 'beltsville', 'US', 1, 39.0348300000, -76.9074700000), (1112152, 1001443, 'Belvedere', NULL, 'belvedere', 'US', 1, 33.5309700000, -81.9448400000), (1112153, 1001416, 'Belvedere', NULL, 'belvedere', 'US', 1, 37.8727000000, -122.4644200000), (1112154, 1001455, 'Belvedere Park', NULL, 'belvedere-park', 'US', 1, 33.7548300000, -84.2674200000), (1112155, 1001425, 'Belvidere', NULL, 'belvidere', 'US', 1, 42.2639100000, -88.8442700000), (1112156, 1001417, 'Belvidere', NULL, 'belvidere', 'US', 1, 40.8298200000, -75.0776700000), (1112157, 1001447, 'Belville', NULL, 'belville', 'US', 1, 34.2307300000, -77.9658200000), (1112158, 1001430, 'Belzoni', NULL, 'belzoni', 'US', 1, 33.1842900000, -90.4892600000), (1112159, 1001425, 'Bement', NULL, 'bement', 'US', 1, 39.9219800000, -88.5720100000), (1112160, 1001420, 'Bemidji', NULL, 'bemidji', 'US', 1, 47.4735600000, -94.8802800000), (1112161, 1001422, 'Ben Avon', NULL, 'ben-avon', 'US', 1, 40.5081200000, -80.0831100000), (1112162, 1001455, 'Ben Hill County', NULL, 'ben-hill-county', 'US', 1, 31.7597800000, -83.2204600000), (1112163, 1001416, 'Ben Lomond', NULL, 'ben-lomond', 'US', 1, 37.0891100000, -122.0863500000), (1112164, 1001407, 'Benavides', NULL, 'benavides', 'US', 1, 27.5989200000, -98.4080700000), (1112165, 1001407, 'Benbrook', NULL, 'benbrook', 'US', 1, 32.6731900000, -97.4605800000), (1112166, 1001415, 'Bend', NULL, 'bend', 'US', 1, 44.0581700000, -121.3153100000), (1112167, 1001460, 'Benewah County', NULL, 'benewah-county', 'US', 1, 47.2175500000, -116.6588300000), (1112168, 1001416, 'Benicia', NULL, 'benicia', 'US', 1, 38.0493700000, -122.1585800000), (1112169, 1001407, 'Benjamin', NULL, 'benjamin', 'US', 1, 33.5839800000, -99.7923100000), (1112170, 1001414, 'Benjamin', NULL, 'benjamin', 'US', 1, 40.0982900000, -111.7313200000), (1112171, 1001408, 'Benkelman', NULL, 'benkelman', 'US', 1, 40.0491600000, -101.5329400000), (1112172, 1001425, 'Benld', NULL, 'benld', 'US', 1, 39.0928200000, -89.8039800000), (1112173, 1001450, 'Bennett', NULL, 'bennett', 'US', 1, 39.7588700000, -104.4274600000), (1112174, 1001445, 'Bennett County', NULL, 'bennett-county', 'US', 1, 43.1949200000, -101.6639700000), (1112175, 1001443, 'Bennettsville', NULL, 'bennettsville', 'US', 1, 34.6173800000, -79.6847800000), (1112176, 1001408, 'Bennington', NULL, 'bennington', 'US', 1, 41.3647200000, -96.1578000000), (1112177, 1001409, 'Bennington', NULL, 'bennington', 'US', 1, 42.8781300000, -73.1967700000), (1112178, 1001409, 'Bennington County', NULL, 'bennington-county', 'US', 1, 43.0354600000, -73.0929500000), (1112179, 1001401, 'Bennsville', NULL, 'bennsville', 'US', 1, 38.6092900000, -77.0122000000), (1112180, 1001425, 'Bensenville', NULL, 'bensenville', 'US', 1, 41.9550300000, -87.9400700000), (1112181, 1001427, 'Bensley', NULL, 'bensley', 'US', 1, 37.4468100000, -77.4433200000), (1112182, 1001447, 'Benson', NULL, 'benson', 'US', 1, 35.3821100000, -78.5486200000), (1112183, 1001420, 'Benson', NULL, 'benson', 'US', 1, 45.3149600000, -95.6000300000), (1112184, 1001434, 'Benson', NULL, 'benson', 'US', 1, 31.9678600000, -110.2945200000), (1112185, 1001414, 'Benson', NULL, 'benson', 'US', 1, 41.7874300000, -111.9302200000), (1112186, 1001418, 'Benson County', NULL, 'benson-county', 'US', 1, 48.0693900000, -99.3660300000), (1112187, 1001452, 'Bensonhurst', NULL, 'bensonhurst', 'US', 1, 40.6017700000, -73.9940300000), (1112188, 1001450, 'Bent County', NULL, 'bent-county', 'US', 1, 37.9550900000, -103.0717000000), (1112189, 1001447, 'Bent Creek', NULL, 'bent-creek', 'US', 1, 35.5090000000, -82.6079000000), (1112190, 1001422, 'Bentleyville', NULL, 'bentleyville', 'US', 1, 40.1167400000, -80.0083900000), (1112191, 1001444, 'Benton', NULL, 'benton', 'US', 1, 34.5645400000, -92.5868300000), (1112192, 1001419, 'Benton', NULL, 'benton', 'US', 1, 36.8572800000, -88.3503100000), (1112193, 1001425, 'Benton', NULL, 'benton', 'US', 1, 37.9967200000, -88.9200700000), (1112194, 1001457, 'Benton', NULL, 'benton', 'US', 1, 32.6948700000, -93.7418500000), (1112195, 1001451, 'Benton', NULL, 'benton', 'US', 1, 37.0978300000, -89.5625800000), (1112196, 1001454, 'Benton', NULL, 'benton', 'US', 1, 35.1742400000, -84.6535500000), (1112197, 1001453, 'Benton', NULL, 'benton', 'US', 1, 44.5861800000, -69.5508800000), (1112198, 1001462, 'Benton City', NULL, 'benton-city', 'US', 1, 46.2631900000, -119.4878000000), (1112199, 1001444, 'Benton County', NULL, 'benton-county', 'US', 1, 36.3387200000, -94.2561900000), (1112200, 1001451, 'Benton County', NULL, 'benton-county', 'US', 1, 38.2948500000, -93.2879500000), (1112201, 1001430, 'Benton County', NULL, 'benton-county', 'US', 1, 34.8172900000, -89.1884800000), (1112202, 1001454, 'Benton County', NULL, 'benton-county', 'US', 1, 36.0697800000, -88.0682700000), (1112203, 1001459, 'Benton County', NULL, 'benton-county', 'US', 1, 42.0801900000, -92.0656900000), (1112204, 1001440, 'Benton County', NULL, 'benton-county', 'US', 1, 40.6062600000, -87.3109100000), (1112205, 1001420, 'Benton County', NULL, 'benton-county', 'US', 1, 45.6991300000, -93.9988400000), (1112206, 1001415, 'Benton County', NULL, 'benton-county', 'US', 1, 44.4917600000, -123.4293100000), (1112207, 1001462, 'Benton County', NULL, 'benton-county', 'US', 1, 46.2397800000, -119.5112000000), (1112208, 1001426, 'Benton Harbor', NULL, 'benton-harbor', 'US', 1, 42.1167100000, -86.4541900000), (1112209, 1001426, 'Benton Heights', NULL, 'benton-heights', 'US', 1, 42.1311500000, -86.4072400000), (1112210, 1001444, 'Bentonville', NULL, 'bentonville', 'US', 1, 36.3728500000, -94.2088200000), (1112211, 1001429, 'Benwood', NULL, 'benwood', 'US', 1, 40.0181300000, -80.7342500000), (1112212, 1001426, 'Benzie County', NULL, 'benzie-county', 'US', 1, 44.6168700000, -86.1389900000), (1112213, 1001419, 'Berea', NULL, 'berea', 'US', 1, 37.5686900000, -84.2963200000), (1112214, 1001443, 'Berea', NULL, 'berea', 'US', 1, 34.8854000000, -82.4559600000), (1112215, 1001445, 'Beresford', NULL, 'beresford', 'US', 1, 43.0805400000, -96.7736600000), (1112216, 1001452, 'Bergen', NULL, 'bergen', 'US', 1, 43.0853400000, -77.9422300000), (1112217, 1001452, 'Bergen Beach', NULL, 'bergen-beach', 'US', 1, 40.6203800000, -73.9068000000), (1112218, 1001417, 'Bergen County', NULL, 'bergen-county', 'US', 1, 40.9597700000, -74.0744100000), (1112219, 1001417, 'Bergenfield', NULL, 'bergenfield', 'US', 1, 40.9276000000, -73.9973600000), (1112220, 1001423, 'Berino', NULL, 'berino', 'US', 1, 32.0709300000, -106.6213800000), (1112221, 1001451, 'Berkeley', NULL, 'berkeley', 'US', 1, 38.7545000000, -90.3312300000), (1112222, 1001425, 'Berkeley', NULL, 'berkeley', 'US', 1, 41.8889200000, -87.9034000000), (1112223, 1001416, 'Berkeley', NULL, 'berkeley', 'US', 1, 37.8715900000, -122.2727500000), (1112224, 1001443, 'Berkeley County', NULL, 'berkeley-county', 'US', 1, 33.1976800000, -79.9509900000), (1112225, 1001429, 'Berkeley County', NULL, 'berkeley-county', 'US', 1, 39.4640700000, -78.0275400000), (1112226, 1001417, 'Berkeley Heights', NULL, 'berkeley-heights', 'US', 1, 40.6834300000, -74.4426500000), (1112227, 1001455, 'Berkeley Lake', NULL, 'berkeley-lake', 'US', 1, 33.9837100000, -84.1865800000), (1112228, 1001429, 'Berkeley Springs', NULL, 'berkeley-springs', 'US', 1, 39.6248000000, -78.2247200000), (1112229, 1001433, 'Berkley', NULL, 'berkley', 'US', 1, 41.8459300000, -71.0828200000), (1112230, 1001426, 'Berkley', NULL, 'berkley', 'US', 1, 42.5030900000, -83.1835400000), (1112231, 1001450, 'Berkley', NULL, 'berkley', 'US', 1, 39.8044300000, -105.0260900000), (1112232, 1001422, 'Berks County', NULL, 'berks-county', 'US', 1, 40.4163000000, -75.9260000000), (1112233, 1001433, 'Berkshire County', NULL, 'berkshire-county', 'US', 1, 42.3706700000, -73.2064000000), (1112234, 1001401, 'Berlin', NULL, 'berlin', 'US', 1, 38.3226200000, -75.2176900000), (1112235, 1001417, 'Berlin', NULL, 'berlin', 'US', 1, 39.7912300000, -74.9290500000), (1112236, 1001422, 'Berlin', NULL, 'berlin', 'US', 1, 39.9206400000, -78.9578000000), (1112237, 1001433, 'Berlin', NULL, 'berlin', 'US', 1, 42.3812000000, -71.6370100000), (1112238, 1001404, 'Berlin', NULL, 'berlin', 'US', 1, 44.4686700000, -71.1850800000), (1112239, 1001441, 'Berlin', NULL, 'berlin', 'US', 1, 43.9680400000, -88.9434500000), (1112240, 1001416, 'Bermuda Dunes', NULL, 'bermuda-dunes', 'US', 1, 33.7428000000, -116.2891800000), (1112241, 1001447, 'Bermuda Run', NULL, 'bermuda-run', 'US', 1, 36.0037500000, -80.4220000000), (1112242, 1001423, 'Bernalillo', NULL, 'bernalillo', 'US', 1, 35.3000400000, -106.5511400000), (1112243, 1001423, 'Bernalillo County', NULL, 'bernalillo-county', 'US', 1, 35.0513100000, -106.6701700000), (1112244, 1001433, 'Bernardston', NULL, 'bernardston', 'US', 1, 42.6709200000, -72.5495300000), (1112245, 1001417, 'Bernardsville', NULL, 'bernardsville', 'US', 1, 40.7187100000, -74.5693200000), (1112246, 1001440, 'Berne', NULL, 'berne', 'US', 1, 40.6578200000, -84.9519100000), (1112247, 1001457, 'Bernice', NULL, 'bernice', 'US', 1, 32.8220900000, -92.6579300000), (1112248, 1001451, 'Bernie', NULL, 'bernie', 'US', 1, 36.6689400000, -89.9687000000), (1112249, 1001455, 'Berrien County', NULL, 'berrien-county', 'US', 1, 31.2760600000, -83.2296200000), (1112250, 1001426, 'Berrien County', NULL, 'berrien-county', 'US', 1, 41.9186300000, -86.4280700000), (1112251, 1001426, 'Berrien Springs', NULL, 'berrien-springs', 'US', 1, 41.9464300000, -86.3389000000), (1112252, 1001456, 'Berry', NULL, 'berry', 'US', 1, 33.6598300000, -87.6000100000), (1112253, 1001416, 'Berry Creek', NULL, 'berry-creek', 'US', 1, 39.6451600000, -121.4033000000), (1112254, 1001444, 'Berryville', NULL, 'berryville', 'US', 1, 36.3647900000, -93.5679700000), (1112255, 1001427, 'Berryville', NULL, 'berryville', 'US', 1, 39.1517700000, -77.9822200000), (1112256, 1001407, 'Berryville', NULL, 'berryville', 'US', 1, 32.0884900000, -95.4719000000), (1112257, 1001450, 'Berthoud', NULL, 'berthoud', 'US', 1, 40.3083200000, -105.0810900000), (1112258, 1001447, 'Bertie County', NULL, 'bertie-county', 'US', 1, 36.0655600000, -76.9666000000), (1112259, 1001407, 'Bertram', NULL, 'bertram', 'US', 1, 30.7438000000, -98.0555800000), (1112260, 1001416, 'Bertsch-Oceanview', NULL, 'bertsch-oceanview', 'US', 1, 41.7525000000, -124.1587500000), (1112261, 1001457, 'Berwick', NULL, 'berwick', 'US', 1, 29.6946500000, -91.2189900000), (1112262, 1001453, 'Berwick', NULL, 'berwick', 'US', 1, 43.2659200000, -70.8645000000), (1112263, 1001422, 'Berwick', NULL, 'berwick', 'US', 1, 41.0545300000, -76.2332700000), (1112264, 1001425, 'Berwyn', NULL, 'berwyn', 'US', 1, 41.8505900000, -87.7936700000), (1112265, 1001422, 'Berwyn', NULL, 'berwyn', 'US', 1, 40.0448300000, -75.4388100000), (1112266, 1001401, 'Berwyn Heights', NULL, 'berwyn-heights', 'US', 1, 38.9940000000, -76.9105300000), (1112267, 1001456, 'Bessemer', NULL, 'bessemer', 'US', 1, 33.4017800000, -86.9544400000), (1112268, 1001426, 'Bessemer', NULL, 'bessemer', 'US', 1, 46.4813400000, -90.0529500000), (1112269, 1001422, 'Bessemer', NULL, 'bessemer', 'US', 1, 40.9747800000, -80.4936800000), (1112270, 1001447, 'Bessemer City', NULL, 'bessemer-city', 'US', 1, 35.2848600000, -81.2839700000), (1112271, 1001425, 'Bethalto', NULL, 'bethalto', 'US', 1, 38.9092100000, -90.0406600000), (1112272, 1001425, 'Bethany', NULL, 'bethany', 'US', 1, 39.6455900000, -88.7381300000), (1112273, 1001421, 'Bethany', NULL, 'bethany', 'US', 1, 35.5186700000, -97.6322600000), (1112274, 1001451, 'Bethany', NULL, 'bethany', 'US', 1, 40.2683300000, -94.0282900000), (1112275, 1001429, 'Bethany', NULL, 'bethany', 'US', 1, 40.2056300000, -80.5567400000), (1112276, 1001415, 'Bethany', NULL, 'bethany', 'US', 1, 45.5578900000, -122.8676000000), (1112277, 1001399, 'Bethany Beach', NULL, 'bethany-beach', 'US', 1, 38.5395600000, -75.0551800000), (1112278, 1001447, 'Bethel', NULL, 'bethel', 'US', 1, 35.8071000000, -77.3788600000), (1112279, 1001453, 'Bethel', NULL, 'bethel', 'US', 1, 44.4042300000, -70.7906200000), (1112280, 1001435, 'Bethel', NULL, 'bethel', 'US', 1, 41.3712100000, -73.4140100000), (1112281, 1001400, 'Bethel', NULL, 'bethel', 'US', 1, 60.7922200000, -161.7558300000), (1112282, 1001462, 'Bethel', NULL, 'bethel', 'US', 1, 47.4939800000, -122.6312500000), (1112283, 1001421, 'Bethel Acres', NULL, 'bethel-acres', 'US', 1, 35.3086800000, -97.0255800000), (1112284, 1001400, 'Bethel Census Area', NULL, 'bethel-census-area', 'US', 1, 60.7505600000, -160.5005600000), (1112285, 1001444, 'Bethel Heights', NULL, 'bethel-heights', 'US', 1, 36.2142400000, -94.1293700000), (1112286, 1001416, 'Bethel Island', NULL, 'bethel-island', 'US', 1, 38.0149200000, -121.6405100000), (1112287, 1001422, 'Bethel Park', NULL, 'bethel-park', 'US', 1, 40.3275700000, -80.0395000000), (1112288, 1001401, 'Bethesda', NULL, 'bethesda', 'US', 1, 38.9806700000, -77.1002600000), (1112289, 1001447, 'Bethlehem', NULL, 'bethlehem', 'US', 1, 35.8256900000, -81.3070300000), (1112290, 1001429, 'Bethlehem', NULL, 'bethlehem', 'US', 1, 39.3920300000, -80.2806400000), (1112291, 1001422, 'Bethlehem', NULL, 'bethlehem', 'US', 1, 40.6259300000, -75.3704600000), (1112292, 1001435, 'Bethlehem Village', NULL, 'bethlehem-village', 'US', 1, 41.6401000000, -73.2030800000), (1112293, 1001452, 'Bethpage', NULL, 'bethpage', 'US', 1, 40.7442700000, -73.4820700000), (1112294, 1001459, 'Bettendorf', NULL, 'bettendorf', 'US', 1, 41.5244800000, -90.5156900000), (1112295, 1001426, 'Beulah', NULL, 'beulah', 'US', 1, 44.6319400000, -86.0909200000), (1112296, 1001418, 'Beulah', NULL, 'beulah', 'US', 1, 47.2633400000, -101.7779500000), (1112297, 1001447, 'Beulaville', NULL, 'beulaville', 'US', 1, 34.9237800000, -77.7738700000), (1112298, 1001441, 'Bevent', NULL, 'bevent', 'US', 1, 44.7705300000, -89.3895600000), (1112299, 1001407, 'Beverly', NULL, 'beverly', 'US', 1, 31.5251700000, -97.1419500000), (1112300, 1001433, 'Beverly', NULL, 'beverly', 'US', 1, 42.5584300000, -70.8800500000), (1112301, 1001417, 'Beverly', NULL, 'beverly', 'US', 1, 40.0653900000, -74.9190600000), (1112302, 1001433, 'Beverly Cove', NULL, 'beverly-cove', 'US', 1, 42.5534300000, -70.8536600000), (1112303, 1001436, 'Beverly Hills', NULL, 'beverly-hills', 'US', 1, 28.9169200000, -82.4581500000), (1112304, 1001407, 'Beverly Hills', NULL, 'beverly-hills', 'US', 1, 31.5215600000, -97.1538900000), (1112305, 1001426, 'Beverly Hills', NULL, 'beverly-hills', 'US', 1, 42.5239200000, -83.2232600000), (1112306, 1001416, 'Beverly Hills', NULL, 'beverly-hills', 'US', 1, 34.0736200000, -118.4003600000), (1112307, 1001407, 'Bevil Oaks', NULL, 'bevil-oaks', 'US', 1, 30.1502100000, -94.2696300000), (1112308, 1001407, 'Bexar County', NULL, 'bexar-county', 'US', 1, 29.4489600000, -98.5200200000), (1112309, 1001456, 'Bibb County', NULL, 'bibb-county', 'US', 1, 32.9986400000, -87.1264400000), (1112310, 1001455, 'Bibb County', NULL, 'bibb-county', 'US', 1, 32.8065900000, -83.6977600000), (1112311, 1001440, 'Bicknell', NULL, 'bicknell', 'US', 1, 38.7742100000, -87.3077900000), (1112312, 1001453, 'Biddeford', NULL, 'biddeford', 'US', 1, 43.4925800000, -70.4533800000), (1112313, 1001457, 'Bienville Parish', NULL, 'bienville-parish', 'US', 1, 32.3472200000, -93.0559500000), (1112314, 1001422, 'Big Bass Lake', NULL, 'big-bass-lake', 'US', 1, 41.2538300000, -75.4764400000), (1112315, 1001416, 'Big Bear City', NULL, 'big-bear-city', 'US', 1, 34.2611200000, -116.8450300000), (1112316, 1001416, 'Big Bear Lake', NULL, 'big-bear-lake', 'US', 1, 34.2439000000, -116.9114200000), (1112317, 1001422, 'Big Beaver', NULL, 'big-beaver', 'US', 1, 40.8245100000, -80.3628400000), (1112318, 1001441, 'Big Bend', NULL, 'big-bend', 'US', 1, 42.8814000000, -88.2067600000), (1112319, 1001436, 'Big Coppitt Key', NULL, 'big-coppitt-key', 'US', 1, 24.5965300000, -81.6600900000), (1112320, 1001452, 'Big Flats', NULL, 'big-flats', 'US', 1, 42.1373000000, -76.9369100000), (1112321, 1001446, 'Big Horn County', NULL, 'big-horn-county', 'US', 1, 45.4234600000, -107.4897000000), (1112322, 1001442, 'Big Horn County', NULL, 'big-horn-county', 'US', 1, 44.5268200000, -107.9952100000), (1112323, 1001420, 'Big Lake', NULL, 'big-lake', 'US', 1, 45.3324600000, -93.7460800000), (1112324, 1001407, 'Big Lake', NULL, 'big-lake', 'US', 1, 31.1915400000, -101.4603900000), (1112325, 1001400, 'Big Lake', NULL, 'big-lake', 'US', 1, 61.5213900000, -149.9544400000), (1112326, 1001462, 'Big Lake', NULL, 'big-lake', 'US', 1, 48.4028800000, -122.2412700000), (1112327, 1001434, 'Big Park', NULL, 'big-park', 'US', 1, 34.7803000000, -111.7626500000), (1112328, 1001416, 'Big Pine', NULL, 'big-pine', 'US', 1, 37.1649300000, -118.2895500000), (1112329, 1001436, 'Big Pine Key', NULL, 'big-pine-key', 'US', 1, 24.6698700000, -81.3539700000), (1112330, 1001426, 'Big Rapids', NULL, 'big-rapids', 'US', 1, 43.6980800000, -85.4836600000), (1112331, 1001416, 'Big River', NULL, 'big-river', 'US', 1, 34.1400200000, -114.3613400000), (1112332, 1001425, 'Big Rock', NULL, 'big-rock', 'US', 1, 41.7639200000, -88.5470200000), (1112333, 1001407, 'Big Sandy', NULL, 'big-sandy', 'US', 1, 32.5837500000, -95.1088300000), (1112334, 1001446, 'Big Sky', NULL, 'big-sky', 'US', 1, 45.2846500000, -111.3682900000), (1112335, 1001407, 'Big Spring', NULL, 'big-spring', 'US', 1, 32.2504000000, -101.4787400000), (1112336, 1001420, 'Big Stone County', NULL, 'big-stone-county', 'US', 1, 45.4261000000, -96.4109200000), (1112337, 1001427, 'Big Stone Gap', NULL, 'big-stone-gap', 'US', 1, 36.8817600000, -82.7471000000), (1112338, 1001446, 'Big Timber', NULL, 'big-timber', 'US', 1, 45.8349400000, -109.9554600000), (1112339, 1001446, 'Bigfork', NULL, 'bigfork', 'US', 1, 48.0632900000, -114.0726100000), (1112340, 1001416, 'Biggs', NULL, 'biggs', 'US', 1, 39.4123900000, -121.7127500000), (1112341, 1001422, 'Biglerville', NULL, 'biglerville', 'US', 1, 39.9303700000, -77.2480400000), (1112342, 1001433, 'Billerica', NULL, 'billerica', 'US', 1, 42.5584300000, -71.2689500000), (1112343, 1001451, 'Billings', NULL, 'billings', 'US', 1, 37.0675500000, -93.5521400000), (1112344, 1001446, 'Billings', NULL, 'billings', 'US', 1, 45.7832900000, -108.5006900000), (1112345, 1001418, 'Billings County', NULL, 'billings-county', 'US', 1, 47.0234500000, -103.3764300000), (1112346, 1001452, 'Billington Heights', NULL, 'billington-heights', 'US', 1, 42.7842300000, -78.6264200000), (1112347, 1001430, 'Biloxi', NULL, 'biloxi', 'US', 1, 30.3960300000, -88.8853100000), (1112348, 1001447, 'Biltmore Forest', NULL, 'biltmore-forest', 'US', 1, 35.5337200000, -82.5284600000), (1112349, 1001460, 'Bingham County', NULL, 'bingham-county', 'US', 1, 43.2165200000, -112.3980500000), (1112350, 1001426, 'Bingham Farms', NULL, 'bingham-farms', 'US', 1, 42.5158700000, -83.2732600000), (1112351, 1001452, 'Binghamton', NULL, 'binghamton', 'US', 1, 42.0986900000, -75.9179700000), (1112352, 1001416, 'Biola', NULL, 'biola', 'US', 1, 36.8021700000, -120.0162700000), (1112353, 1001462, 'Birch Bay', NULL, 'birch-bay', 'US', 1, 48.9178900000, -122.7446200000), (1112354, 1001426, 'Birch Run', NULL, 'birch-run', 'US', 1, 43.2508600000, -83.7941300000), (1112355, 1001420, 'Birchwood', NULL, 'birchwood', 'US', 1, 45.0610800000, -92.9760500000), (1112356, 1001422, 'Birchwood Lakes', NULL, 'birchwood-lakes', 'US', 1, 41.2545400000, -74.9185000000), (1112357, 1001422, 'Birdsboro', NULL, 'birdsboro', 'US', 1, 40.2645400000, -75.8040900000), (1112358, 1001456, 'Birmingham', NULL, 'birmingham', 'US', 1, 33.5206600000, -86.8024900000), (1112359, 1001426, 'Birmingham', NULL, 'birmingham', 'US', 1, 42.5467000000, -83.2113200000), (1112360, 1001434, 'Bisbee', NULL, 'bisbee', 'US', 1, 31.4481500000, -109.9284100000), (1112361, 1001436, 'Biscayne Park', NULL, 'biscayne-park', 'US', 1, 25.8826000000, -80.1806000000), (1112362, 1001447, 'Biscoe', NULL, 'biscoe', 'US', 1, 35.3598600000, -79.7797600000), (1112363, 1001407, 'Bishop', NULL, 'bishop', 'US', 1, 27.5861400000, -97.7991600000), (1112364, 1001416, 'Bishop', NULL, 'bishop', 'US', 1, 37.3635400000, -118.3951100000), (1112365, 1001443, 'Bishopville', NULL, 'bishopville', 'US', 1, 34.2182100000, -80.2484100000), (1112366, 1001451, 'Bismarck', NULL, 'bismarck', 'US', 1, 37.7692200000, -90.6248500000), (1112367, 1001418, 'Bismarck', NULL, 'bismarck', 'US', 1, 46.8083300000, -100.7837400000), (1112368, 1001445, 'Bison', NULL, 'bison', 'US', 1, 45.5202600000, -102.4612700000), (1112369, 1001436, 'Bithlo', NULL, 'bithlo', 'US', 1, 28.5547200000, -81.1064500000), (1112370, 1001421, 'Bixby', NULL, 'bixby', 'US', 1, 35.9420400000, -95.8833200000), (1112371, 1001434, 'Black Canyon City', NULL, 'black-canyon-city', 'US', 1, 34.0708700000, -112.1507100000), (1112372, 1001441, 'Black Creek', NULL, 'black-creek', 'US', 1, 44.4774900000, -88.4506600000), (1112373, 1001436, 'Black Diamond', NULL, 'black-diamond', 'US', 1, 28.9124800000, -82.4859300000), (1112374, 1001462, 'Black Diamond', NULL, 'black-diamond', 'US', 1, 47.3087100000, -122.0031700000), (1112375, 1001441, 'Black Earth', NULL, 'black-earth', 'US', 1, 43.1372200000, -89.7467900000), (1112376, 1001450, 'Black Forest', NULL, 'black-forest', 'US', 1, 39.0130500000, -104.7008100000), (1112377, 1001459, 'Black Hawk County', NULL, 'black-hawk-county', 'US', 1, 42.4701000000, -92.3088200000), (1112378, 1001451, 'Black Jack', NULL, 'black-jack', 'US', 1, 38.7933800000, -90.2673300000), (1112379, 1001422, 'Black Lick', NULL, 'black-lick', 'US', 1, 40.4725000000, -79.1868800000), (1112380, 1001447, 'Black Mountain', NULL, 'black-mountain', 'US', 1, 35.6179000000, -82.3212300000), (1112381, 1001416, 'Black Point-Green Point', NULL, 'black-point-green-point', 'US', 1, 38.1154700000, -122.5131800000), (1112382, 1001452, 'Black River', NULL, 'black-river', 'US', 1, 44.0125600000, -75.7943700000), (1112383, 1001441, 'Black River Falls', NULL, 'black-river-falls', 'US', 1, 44.2946800000, -90.8515300000), (1112384, 1001423, 'Black Rock', NULL, 'black-rock', 'US', 1, 35.0883700000, -108.7911900000), (1112385, 1001460, 'Blackfoot', NULL, 'blackfoot', 'US', 1, 43.1904700000, -112.3449800000), (1112386, 1001440, 'Blackford County', NULL, 'blackford-county', 'US', 1, 40.4736000000, -85.3248200000), (1112387, 1001416, 'Blackhawk', NULL, 'blackhawk', 'US', 1, 37.8207600000, -121.9077400000), (1112388, 1001445, 'Blackhawk', NULL, 'blackhawk', 'US', 1, 44.1511000000, -103.3079600000), (1112389, 1001443, 'Blacksburg', NULL, 'blacksburg', 'US', 1, 35.1212400000, -81.5159200000), (1112390, 1001427, 'Blacksburg', NULL, 'blacksburg', 'US', 1, 37.2295700000, -80.4139400000), (1112391, 1001455, 'Blackshear', NULL, 'blackshear', 'US', 1, 31.3060500000, -82.2420700000), (1112392, 1001427, 'Blackstone', NULL, 'blackstone', 'US', 1, 37.0804300000, -77.9972300000), (1112393, 1001433, 'Blackstone', NULL, 'blackstone', 'US', 1, 42.0178800000, -71.5411700000), (1112394, 1001443, 'Blackville', NULL, 'blackville', 'US', 1, 33.3579300000, -81.2706600000), (1112395, 1001434, 'Blackwater', NULL, 'blackwater', 'US', 1, 33.0311700000, -111.5826300000), (1112396, 1001421, 'Blackwell', NULL, 'blackwell', 'US', 1, 36.8044800000, -97.2828200000), (1112397, 1001417, 'Blackwood', NULL, 'blackwood', 'US', 1, 39.8023400000, -75.0640600000), (1112398, 1001447, 'Bladen County', NULL, 'bladen-county', 'US', 1, 34.6143100000, -78.5631800000), (1112399, 1001447, 'Bladenboro', NULL, 'bladenboro', 'US', 1, 34.5387800000, -78.7875200000), (1112400, 1001401, 'Bladensburg', NULL, 'bladensburg', 'US', 1, 38.9392800000, -76.9338600000), (1112401, 1001399, 'Blades', NULL, 'blades', 'US', 1, 38.6356700000, -75.6099300000), (1112402, 1001454, 'Blaine', NULL, 'blaine', 'US', 1, 36.1542500000, -83.7040700000), (1112403, 1001420, 'Blaine', NULL, 'blaine', 'US', 1, 45.1608000000, -93.2349500000), (1112404, 1001462, 'Blaine', NULL, 'blaine', 'US', 1, 48.9937200000, -122.7471200000), (1112405, 1001421, 'Blaine County', NULL, 'blaine-county', 'US', 1, 35.8752500000, -98.4334600000), (1112406, 1001408, 'Blaine County', NULL, 'blaine-county', 'US', 1, 41.9127600000, -99.9769000000), (1112407, 1001460, 'Blaine County', NULL, 'blaine-county', 'US', 1, 43.4123300000, -113.9804000000), (1112408, 1001446, 'Blaine County', NULL, 'blaine-county', 'US', 1, 48.4327600000, -108.9586600000), (1112409, 1001408, 'Blair', NULL, 'blair', 'US', 1, 41.5444400000, -96.1250200000), (1112410, 1001441, 'Blair', NULL, 'blair', 'US', 1, 44.2944000000, -91.2351600000), (1112411, 1001422, 'Blair County', NULL, 'blair-county', 'US', 1, 40.4810000000, -78.3486000000), (1112412, 1001455, 'Blairsville', NULL, 'blairsville', 'US', 1, 34.8762000000, -83.9582400000), (1112413, 1001422, 'Blairsville', NULL, 'blairsville', 'US', 1, 40.4311800000, -79.2608700000), (1112414, 1001455, 'Blakely', NULL, 'blakely', 'US', 1, 31.3776800000, -84.9340900000), (1112415, 1001422, 'Blakely', NULL, 'blakely', 'US', 1, 41.4809100000, -75.5946300000), (1112416, 1001457, 'Blanchard', NULL, 'blanchard', 'US', 1, 32.5809800000, -93.8926800000), (1112417, 1001421, 'Blanchard', NULL, 'blanchard', 'US', 1, 35.1378400000, -97.6580900000), (1112418, 1001407, 'Blanco', NULL, 'blanco', 'US', 1, 30.0979900000, -98.4214100000), (1112419, 1001407, 'Blanco County', NULL, 'blanco-county', 'US', 1, 30.2663800000, -98.3998700000), (1112420, 1001427, 'Bland', NULL, 'bland', 'US', 1, 37.1020600000, -81.1162000000), (1112421, 1001427, 'Bland County', NULL, 'bland-county', 'US', 1, 37.1339700000, -81.1302800000), (1112422, 1001414, 'Blanding', NULL, 'blanding', 'US', 1, 37.6243300000, -109.4796600000), (1112423, 1001422, 'Blandon', NULL, 'blandon', 'US', 1, 40.4412000000, -75.8868700000), (1112424, 1001452, 'Blasdell', NULL, 'blasdell', 'US', 1, 42.7972800000, -78.8233700000), (1112425, 1001452, 'Blauvelt', NULL, 'blauvelt', 'US', 1, 41.0634300000, -73.9576400000), (1112426, 1001422, 'Blawnox', NULL, 'blawnox', 'US', 1, 40.4934000000, -79.8606100000), (1112427, 1001455, 'Bleckley County', NULL, 'bleckley-county', 'US', 1, 32.4344400000, -83.3278400000), (1112428, 1001454, 'Bledsoe County', NULL, 'bledsoe-county', 'US', 1, 35.5964200000, -85.2051600000), (1112429, 1001429, 'Blennerhassett', NULL, 'blennerhassett', 'US', 1, 39.2636900000, -81.6292900000), (1112430, 1001433, 'Bliss Corner', NULL, 'bliss-corner', 'US', 1, 41.6117700000, -70.9383700000), (1112431, 1001426, 'Blissfield', NULL, 'blissfield', 'US', 1, 41.8325500000, -83.8624400000), (1112432, 1001441, 'Bloomer', NULL, 'bloomer', 'US', 1, 45.1002400000, -91.4887700000), (1112433, 1001419, 'Bloomfield', NULL, 'bloomfield', 'US', 1, 37.9103400000, -85.3166200000), (1112434, 1001440, 'Bloomfield', NULL, 'bloomfield', 'US', 1, 39.0269900000, -86.9375100000), (1112435, 1001451, 'Bloomfield', NULL, 'bloomfield', 'US', 1, 36.8858900000, -89.9292600000), (1112436, 1001459, 'Bloomfield', NULL, 'bloomfield', 'US', 1, 40.7516900000, -92.4149100000), (1112437, 1001417, 'Bloomfield', NULL, 'bloomfield', 'US', 1, 40.8067700000, -74.1854200000), (1112438, 1001452, 'Bloomfield', NULL, 'bloomfield', 'US', 1, 40.6126000000, -74.1782000000), (1112439, 1001422, 'Bloomfield', NULL, 'bloomfield', 'US', 1, 40.4609000000, -79.9508900000), (1112440, 1001423, 'Bloomfield', NULL, 'bloomfield', 'US', 1, 36.7111200000, -107.9845100000), (1112441, 1001426, 'Bloomfield Hills', NULL, 'bloomfield-hills', 'US', 1, 42.5836400000, -83.2454900000), (1112442, 1001420, 'Blooming Prairie', NULL, 'blooming-prairie', 'US', 1, 43.8666300000, -93.0510300000), (1112443, 1001455, 'Bloomingdale', NULL, 'bloomingdale', 'US', 1, 32.1324200000, -81.2990000000), (1112444, 1001437, 'Bloomingdale', NULL, 'bloomingdale', 'US', 1, 38.9167800000, -77.0113700000), (1112445, 1001436, 'Bloomingdale', NULL, 'bloomingdale', 'US', 1, 27.8936400000, -82.2403700000), (1112446, 1001454, 'Bloomingdale', NULL, 'bloomingdale', 'US', 1, 36.5845500000, -82.4893200000), (1112447, 1001425, 'Bloomingdale', NULL, 'bloomingdale', 'US', 1, 41.9575300000, -88.0809000000), (1112448, 1001417, 'Bloomingdale', NULL, 'bloomingdale', 'US', 1, 41.0020400000, -74.3265400000), (1112449, 1001440, 'Bloomington', NULL, 'bloomington', 'US', 1, 39.1653300000, -86.5263900000), (1112450, 1001407, 'Bloomington', NULL, 'bloomington', 'US', 1, 28.6477700000, -96.8924900000), (1112451, 1001425, 'Bloomington', NULL, 'bloomington', 'US', 1, 40.4842000000, -88.9936900000), (1112452, 1001420, 'Bloomington', NULL, 'bloomington', 'US', 1, 44.8408000000, -93.2982800000), (1112453, 1001416, 'Bloomington', NULL, 'bloomington', 'US', 1, 34.0702900000, -117.3958800000), (1112454, 1001422, 'Bloomsburg', NULL, 'bloomsburg', 'US', 1, 41.0037000000, -76.4549500000), (1112455, 1001422, 'Blossburg', NULL, 'blossburg', 'US', 1, 41.6795200000, -77.0638600000), (1112456, 1001407, 'Blossom', NULL, 'blossom', 'US', 1, 33.6615000000, -95.3857900000), (1112457, 1001456, 'Blount County', NULL, 'blount-county', 'US', 1, 33.9808700000, -86.5673700000), (1112458, 1001454, 'Blount County', NULL, 'blount-county', 'US', 1, 35.6872400000, -83.9255300000), (1112459, 1001436, 'Blountstown', NULL, 'blountstown', 'US', 1, 30.4437900000, -85.0474400000), (1112460, 1001456, 'Blountsville', NULL, 'blountsville', 'US', 1, 34.0814900000, -86.5911000000), (1112461, 1001454, 'Blountville', NULL, 'blountville', 'US', 1, 36.5331600000, -82.3268100000), (1112462, 1001447, 'Blowing Rock', NULL, 'blowing-rock', 'US', 1, 36.1351300000, -81.6776100000), (1112463, 1001422, 'Blue Ball', NULL, 'blue-ball', 'US', 1, 40.1187100000, -76.0471700000), (1112464, 1001422, 'Blue Bell', NULL, 'blue-bell', 'US', 1, 40.1523300000, -75.2662900000), (1112465, 1001420, 'Blue Earth', NULL, 'blue-earth', 'US', 1, 43.6374600000, -94.1021800000), (1112466, 1001420, 'Blue Earth County', NULL, 'blue-earth-county', 'US', 1, 44.0345900000, -94.0670300000), (1112467, 1001459, 'Blue Grass', NULL, 'blue-grass', 'US', 1, 41.5089200000, -90.7659800000), (1112468, 1001435, 'Blue Hills', NULL, 'blue-hills', 'US', 1, 41.8128800000, -72.6975900000), (1112469, 1001425, 'Blue Island', NULL, 'blue-island', 'US', 1, 41.6572600000, -87.6800500000), (1112470, 1001416, 'Blue Lake', NULL, 'blue-lake', 'US', 1, 40.8829100000, -123.9839500000), (1112471, 1001425, 'Blue Mound', NULL, 'blue-mound', 'US', 1, 39.7011500000, -89.1231400000), (1112472, 1001407, 'Blue Mound', NULL, 'blue-mound', 'US', 1, 32.8565200000, -97.3389100000), (1112473, 1001452, 'Blue Point', NULL, 'blue-point', 'US', 1, 40.7439900000, -73.0345500000), (1112474, 1001456, 'Blue Ridge', NULL, 'blue-ridge', 'US', 1, 32.4926400000, -86.1905200000), (1112475, 1001455, 'Blue Ridge', NULL, 'blue-ridge', 'US', 1, 34.8639700000, -84.3240900000), (1112476, 1001427, 'Blue Ridge', NULL, 'blue-ridge', 'US', 1, 37.3784700000, -79.8069800000), (1112477, 1001451, 'Blue Springs', NULL, 'blue-springs', 'US', 1, 39.0169500000, -94.2816100000), (1112478, 1001427, 'Bluefield', NULL, 'bluefield', 'US', 1, 37.2526200000, -81.2712100000), (1112479, 1001429, 'Bluefield', NULL, 'bluefield', 'US', 1, 37.2698400000, -81.2223200000), (1112480, 1001429, 'Bluewell', NULL, 'bluewell', 'US', 1, 37.3126200000, -81.2598200000), (1112481, 1001454, 'Bluff City', NULL, 'bluff-city', 'US', 1, 36.4742700000, -82.2609700000), (1112482, 1001414, 'Bluffdale', NULL, 'bluffdale', 'US', 1, 40.4896700000, -111.9388200000), (1112483, 1001443, 'Bluffton', NULL, 'bluffton', 'US', 1, 32.2371500000, -80.8603900000), (1112484, 1001440, 'Bluffton', NULL, 'bluffton', 'US', 1, 40.7386600000, -85.1716400000), (1112485, 1001416, 'Blythe', NULL, 'blythe', 'US', 1, 33.6103000000, -114.5963500000), (1112486, 1001444, 'Blytheville', NULL, 'blytheville', 'US', 1, 35.9273000000, -89.9189800000), (1112487, 1001443, 'Blythewood', NULL, 'blythewood', 'US', 1, 34.2143200000, -80.9739800000), (1112488, 1001422, 'Boalsburg', NULL, 'boalsburg', 'US', 1, 40.7756200000, -77.7925000000), (1112489, 1001415, 'Boardman', NULL, 'boardman', 'US', 1, 45.8398600000, -119.7005800000), (1112490, 1001456, 'Boaz', NULL, 'boaz', 'US', 1, 34.2006500000, -86.1663700000), (1112491, 1001429, 'Boaz', NULL, 'boaz', 'US', 1, 39.3614600000, -81.5020700000), (1112492, 1001436, 'Boca Del Mar', NULL, 'boca-del-mar', 'US', 1, 26.3450800000, -80.1467100000), (1112493, 1001436, 'Boca Pointe', NULL, 'boca-pointe', 'US', 1, 26.3331300000, -80.1594900000), (1112494, 1001436, 'Boca Raton', NULL, 'boca-raton', 'US', 1, 26.3586900000, -80.0831000000), (1112495, 1001416, 'Bodega Bay', NULL, 'bodega-bay', 'US', 1, 38.3332500000, -123.0480600000), (1112496, 1001416, 'Bodfish', NULL, 'bodfish', 'US', 1, 35.5880100000, -118.4920300000), (1112497, 1001407, 'Boerne', NULL, 'boerne', 'US', 1, 29.7946600000, -98.7319700000), (1112498, 1001457, 'Bogalusa', NULL, 'bogalusa', 'US', 1, 30.7910200000, -89.8486900000), (1112499, 1001455, 'Bogart', NULL, 'bogart', 'US', 1, 33.9492800000, -83.5346100000), (1112500, 1001407, 'Bogata', NULL, 'bogata', 'US', 1, 33.4706700000, -95.2138400000), (1112501, 1001417, 'Bogota', NULL, 'bogota', 'US', 1, 40.8762100000, -74.0298600000), (1112502, 1001452, 'Bohemia', NULL, 'bohemia', 'US', 1, 40.7692600000, -73.1151100000), (1112503, 1001441, 'Bohners Lake', NULL, 'bohners-lake', 'US', 1, 42.6230700000, -88.2803700000), (1112504, 1001447, 'Boiling Spring Lakes', NULL, 'boiling-spring-lakes', 'US', 1, 34.0304500000, -78.0672100000), (1112505, 1001447, 'Boiling Springs', NULL, 'boiling-springs', 'US', 1, 35.2542900000, -81.6670400000), (1112506, 1001443, 'Boiling Springs', NULL, 'boiling-springs', 'US', 1, 35.0465100000, -81.9817700000), (1112507, 1001422, 'Boiling Springs', NULL, 'boiling-springs', 'US', 1, 40.1498100000, -77.1283100000), (1112508, 1001460, 'Boise', NULL, 'boise', 'US', 1, 43.6135000000, -116.2034500000), (1112509, 1001421, 'Boise City', NULL, 'boise-city', 'US', 1, 36.7294700000, -102.5132400000), (1112510, 1001460, 'Boise County', NULL, 'boise-county', 'US', 1, 43.9891300000, -115.7302400000), (1112511, 1001436, 'Bokeelia', NULL, 'bokeelia', 'US', 1, 26.7056300000, -82.1589800000), (1112512, 1001423, 'Boles Acres', NULL, 'boles-acres', 'US', 1, 32.8070300000, -105.9861000000), (1112513, 1001421, 'Boley', NULL, 'boley', 'US', 1, 35.4934100000, -96.4836200000), (1112514, 1001416, 'Bolinas', NULL, 'bolinas', 'US', 1, 37.9093700000, -122.6863700000), (1112515, 1001407, 'Boling', NULL, 'boling', 'US', 1, 29.2644100000, -95.9438400000), (1112516, 1001425, 'Bolingbrook', NULL, 'bolingbrook', 'US', 1, 41.6986400000, -88.0684000000), (1112517, 1001451, 'Bolivar', NULL, 'bolivar', 'US', 1, 37.6144800000, -93.4104700000), (1112518, 1001454, 'Bolivar', NULL, 'bolivar', 'US', 1, 35.2561900000, -88.9878400000), (1112519, 1001429, 'Bolivar', NULL, 'bolivar', 'US', 1, 39.3234300000, -77.7527700000), (1112520, 1001452, 'Bolivar', NULL, 'bolivar', 'US', 1, 42.0667300000, -78.1677900000), (1112521, 1001430, 'Bolivar County', NULL, 'bolivar-county', 'US', 1, 33.7955400000, -90.8804000000), (1112522, 1001407, 'Bolivar Peninsula', NULL, 'bolivar-peninsula', 'US', 1, 29.4782900000, -94.5799100000), (1112523, 1001447, 'Bolivia', NULL, 'bolivia', 'US', 1, 34.0676700000, -78.1483300000), (1112524, 1001451, 'Bollinger County', NULL, 'bollinger-county', 'US', 1, 37.3221900000, -90.0259500000), (1112525, 1001433, 'Bolton', NULL, 'bolton', 'US', 1, 42.4334300000, -71.6078400000), (1112526, 1001427, 'Bon Air', NULL, 'bon-air', 'US', 1, 37.5248700000, -77.5577700000), (1112527, 1001454, 'Bon Aqua Junction', NULL, 'bon-aqua-junction', 'US', 1, 35.9278400000, -87.3108400000), (1112528, 1001445, 'Bon Homme County', NULL, 'bon-homme-county', 'US', 1, 42.9883700000, -97.8846300000), (1112529, 1001416, 'Bonadelle Ranchos-Madera Ranchos', NULL, 'bonadelle-ranchos-madera-ranchos', 'US', 1, 36.9846700000, -119.8746300000), (1112530, 1001455, 'Bonanza', NULL, 'bonanza', 'US', 1, 33.4656700000, -84.3365900000), (1112531, 1001425, 'Bond County', NULL, 'bond-county', 'US', 1, 38.8868200000, -89.4355500000), (1112532, 1001433, 'Bondsville', NULL, 'bondsville', 'US', 1, 42.2125900000, -72.3453600000), (1112533, 1001441, 'Bonduel', NULL, 'bonduel', 'US', 1, 44.7402700000, -88.4448200000), (1112534, 1001459, 'Bondurant', NULL, 'bondurant', 'US', 1, 41.7005400000, -93.4621600000), (1112535, 1001407, 'Bonham', NULL, 'bonham', 'US', 1, 33.5773300000, -96.1783100000), (1112536, 1001436, 'Bonifay', NULL, 'bonifay', 'US', 1, 30.7918600000, -85.6796500000), (1112537, 1001416, 'Bonita', NULL, 'bonita', 'US', 1, 32.6578300000, -117.0300300000), (1112538, 1001436, 'Bonita Springs', NULL, 'bonita-springs', 'US', 1, 26.3398100000, -81.7787000000), (1112539, 1001451, 'Bonne Terre', NULL, 'bonne-terre', 'US', 1, 37.9231100000, -90.5554000000), (1112540, 1001443, 'Bonneau Beach', NULL, 'bonneau-beach', 'US', 1, 33.3198900000, -80.0003600000), (1112541, 1001422, 'Bonneauville', NULL, 'bonneauville', 'US', 1, 39.8120400000, -77.1372100000), (1112542, 1001460, 'Bonner County', NULL, 'bonner-county', 'US', 1, 48.2997500000, -116.6009700000), (1112543, 1001406, 'Bonner Springs', NULL, 'bonner-springs', 'US', 1, 39.0597300000, -94.8835800000), (1112544, 1001446, 'Bonner-West Riverside', NULL, 'bonner-west-riverside', 'US', 1, 46.8766900000, -113.8867800000), (1112545, 1001460, 'Bonners Ferry', NULL, 'bonners-ferry', 'US', 1, 48.6913300000, -116.3163100000), (1112546, 1001460, 'Bonneville County', NULL, 'bonneville-county', 'US', 1, 43.3877300000, -111.6149300000), (1112547, 1001462, 'Bonney Lake', NULL, 'bonney-lake', 'US', 1, 47.1770500000, -122.1865100000), (1112548, 1001416, 'Bonny Doon', NULL, 'bonny-doon', 'US', 1, 37.0416200000, -122.1505200000), (1112549, 1001444, 'Bono', NULL, 'bono', 'US', 1, 35.9086800000, -90.8026200000), (1112550, 1001416, 'Bonsall', NULL, 'bonsall', 'US', 1, 33.2889200000, -117.2255900000), (1112551, 1001407, 'Booker', NULL, 'booker', 'US', 1, 36.4533600000, -100.5373700000), (1112552, 1001447, 'Boone', NULL, 'boone', 'US', 1, 36.2167900000, -81.6745500000), (1112553, 1001459, 'Boone', NULL, 'boone', 'US', 1, 42.0597000000, -93.8802300000), (1112554, 1001419, 'Boone County', NULL, 'boone-county', 'US', 1, 38.9698600000, -84.7278700000), (1112555, 1001444, 'Boone County', NULL, 'boone-county', 'US', 1, 36.3085900000, -93.0915000000), (1112556, 1001451, 'Boone County', NULL, 'boone-county', 'US', 1, 38.9906200000, -92.3096800000), (1112557, 1001429, 'Boone County', NULL, 'boone-county', 'US', 1, 38.0230000000, -81.7112100000), (1112558, 1001459, 'Boone County', NULL, 'boone-county', 'US', 1, 42.0365500000, -93.9316700000), (1112559, 1001425, 'Boone County', NULL, 'boone-county', 'US', 1, 42.3230800000, -88.8233600000), (1112560, 1001440, 'Boone County', NULL, 'boone-county', 'US', 1, 40.0508000000, -86.4687000000), (1112561, 1001408, 'Boone County', NULL, 'boone-county', 'US', 1, 41.7067800000, -98.0672600000), (1112562, 1001444, 'Booneville', NULL, 'booneville', 'US', 1, 35.1400900000, -93.9215900000), (1112563, 1001419, 'Booneville', NULL, 'booneville', 'US', 1, 37.4762000000, -83.6749100000), (1112564, 1001430, 'Booneville', NULL, 'booneville', 'US', 1, 34.6581500000, -88.5667200000), (1112565, 1001401, 'Boonsboro', NULL, 'boonsboro', 'US', 1, 39.5062100000, -77.6524900000), (1112566, 1001417, 'Boonton', NULL, 'boonton', 'US', 1, 40.9026000000, -74.4071000000), (1112567, 1001440, 'Boonville', NULL, 'boonville', 'US', 1, 38.0492100000, -87.2741700000), (1112568, 1001451, 'Boonville', NULL, 'boonville', 'US', 1, 38.9736400000, -92.7432400000), (1112569, 1001447, 'Boonville', NULL, 'boonville', 'US', 1, 36.2326400000, -80.7081200000), (1112570, 1001452, 'Boonville', NULL, 'boonville', 'US', 1, 43.4836800000, -75.3365600000), (1112571, 1001416, 'Boonville', NULL, 'boonville', 'US', 1, 39.0090700000, -123.3661200000), (1112572, 1001453, 'Boothbay', NULL, 'boothbay', 'US', 1, 43.8764700000, -69.6336600000), (1112573, 1001453, 'Boothbay Harbor', NULL, 'boothbay-harbor', 'US', 1, 43.8523000000, -69.6281000000), (1112574, 1001422, 'Boothwyn', NULL, 'boothwyn', 'US', 1, 39.8301100000, -75.4415800000), (1112575, 1001407, 'Borden County', NULL, 'borden-county', 'US', 1, 32.7436900000, -101.4317500000), (1112576, 1001417, 'Bordentown', NULL, 'bordentown', 'US', 1, 40.1462200000, -74.7118300000), (1112577, 1001407, 'Borger', NULL, 'borger', 'US', 1, 35.6678200000, -101.3973900000), (1112578, 1001416, 'Boron', NULL, 'boron', 'US', 1, 34.9994200000, -117.6497800000), (1112579, 1001416, 'Boronda', NULL, 'boronda', 'US', 1, 36.6988500000, -121.6749500000), (1112580, 1001452, 'Borough Park', NULL, 'borough-park', 'US', 1, 40.6339900000, -73.9968100000), (1112581, 1001416, 'Borrego Springs', NULL, 'borrego-springs', 'US', 1, 33.2558700000, -116.3750100000), (1112582, 1001404, 'Boscawen', NULL, 'boscawen', 'US', 1, 43.3150800000, -71.6209100000), (1112583, 1001441, 'Boscobel', NULL, 'boscobel', 'US', 1, 43.1344300000, -90.7054000000), (1112584, 1001407, 'Bosque County', NULL, 'bosque-county', 'US', 1, 31.9004000000, -97.6343500000), (1112585, 1001423, 'Bosque Farms', NULL, 'bosque-farms', 'US', 1, 34.8547800000, -106.7053000000), (1112586, 1001457, 'Bossier City', NULL, 'bossier-city', 'US', 1, 32.5159900000, -93.7321200000), (1112587, 1001457, 'Bossier Parish', NULL, 'bossier-parish', 'US', 1, 32.6789900000, -93.6050000000), (1112588, 1001455, 'Boston', NULL, 'boston', 'US', 1, 30.7918600000, -83.7898900000), (1112589, 1001433, 'Boston', NULL, 'boston', 'US', 1, 42.3584300000, -71.0597700000), (1112590, 1001452, 'Boston', NULL, 'boston', 'US', 1, 42.6289500000, -78.7375300000), (1112591, 1001416, 'Bostonia', NULL, 'bostonia', 'US', 1, 32.8075500000, -116.9364200000), (1112592, 1001422, 'Boswell', NULL, 'boswell', 'US', 1, 40.1614700000, -79.0289200000), (1112593, 1001427, 'Boswell''s Corner', NULL, 'boswell-s-corner', 'US', 1, 38.5054100000, -77.3726300000), (1112594, 1001427, 'Botetourt County', NULL, 'botetourt-county', 'US', 1, 37.5571200000, -79.8123300000), (1112595, 1001462, 'Bothell', NULL, 'bothell', 'US', 1, 47.7623200000, -122.2054000000), (1112596, 1001462, 'Bothell East', NULL, 'bothell-east', 'US', 1, 47.8063100000, -122.1842700000), (1112597, 1001462, 'Bothell West', NULL, 'bothell-west', 'US', 1, 47.8052700000, -122.2406400000), (1112598, 1001418, 'Bottineau', NULL, 'bottineau', 'US', 1, 48.8272300000, -100.4457000000), (1112599, 1001418, 'Bottineau County', NULL, 'bottineau-county', 'US', 1, 48.7921600000, -100.8333300000), (1112600, 1001450, 'Boulder', NULL, 'boulder', 'US', 1, 40.0149900000, -105.2705500000), (1112601, 1001446, 'Boulder', NULL, 'boulder', 'US', 1, 46.2365900000, -112.1208300000), (1112602, 1001458, 'Boulder City', NULL, 'boulder-city', 'US', 1, 35.9785900000, -114.8324900000), (1112603, 1001450, 'Boulder County', NULL, 'boulder-county', 'US', 1, 40.0924600000, -105.3577000000), (1112604, 1001416, 'Boulder Creek', NULL, 'boulder-creek', 'US', 1, 37.1260600000, -122.1221900000), (1112605, 1001425, 'Boulder Hill', NULL, 'boulder-hill', 'US', 1, 41.7125300000, -88.3361800000), (1112606, 1001436, 'Boulevard Gardens', NULL, 'boulevard-gardens', 'US', 1, 26.1232600000, -80.1799700000), (1112607, 1001462, 'Boulevard Park', NULL, 'boulevard-park', 'US', 1, 47.4892700000, -122.3151200000), (1112608, 1001417, 'Bound Brook', NULL, 'bound-brook', 'US', 1, 40.5684400000, -74.5384900000), (1112609, 1001460, 'Boundary County', NULL, 'boundary-county', 'US', 1, 48.7670200000, -116.4628800000), (1112610, 1001414, 'Bountiful', NULL, 'bountiful', 'US', 1, 40.8893900000, -111.8807700000); INSERT INTO `[[dbprefix]]t_city` VALUES (1112611, 1001451, 'Bourbon', NULL, 'bourbon', 'US', 1, 38.1547700000, -91.2440300000), (1112612, 1001440, 'Bourbon', NULL, 'bourbon', 'US', 1, 41.2956000000, -86.1163900000), (1112613, 1001406, 'Bourbon County', NULL, 'bourbon-county', 'US', 1, 37.8552300000, -94.8493000000), (1112614, 1001419, 'Bourbon County', NULL, 'bourbon-county', 'US', 1, 38.2067300000, -84.2171500000), (1112615, 1001425, 'Bourbonnais', NULL, 'bourbonnais', 'US', 1, 41.1537600000, -87.8875400000), (1112616, 1001457, 'Bourg', NULL, 'bourg', 'US', 1, 29.5535500000, -90.6023100000), (1112617, 1001433, 'Bourne', NULL, 'bourne', 'US', 1, 41.7412200000, -70.5989200000), (1112618, 1001457, 'Boutte', NULL, 'boutte', 'US', 1, 29.9024300000, -90.3881400000), (1112619, 1001407, 'Bovina', NULL, 'bovina', 'US', 1, 34.5136800000, -102.8830000000), (1112620, 1001404, 'Bow Bog', NULL, 'bow-bog', 'US', 1, 43.1206400000, -71.5114600000), (1112621, 1001418, 'Bowbells', NULL, 'bowbells', 'US', 1, 48.8030800000, -102.2460000000), (1112622, 1001455, 'Bowdon', NULL, 'bowdon', 'US', 1, 33.5378900000, -85.2532800000), (1112623, 1001401, 'Bowie', NULL, 'bowie', 'US', 1, 38.9427800000, -76.7302800000), (1112624, 1001407, 'Bowie', NULL, 'bowie', 'US', 1, 33.5590000000, -97.8486500000), (1112625, 1001407, 'Bowie County', NULL, 'bowie-county', 'US', 1, 33.4457600000, -94.4233200000), (1112626, 1001401, 'Bowleys Quarters', NULL, 'bowleys-quarters', 'US', 1, 39.3353900000, -76.3902400000), (1112627, 1001436, 'Bowling Green', NULL, 'bowling-green', 'US', 1, 27.6383700000, -81.8239700000), (1112628, 1001419, 'Bowling Green', NULL, 'bowling-green', 'US', 1, 36.9903200000, -86.4436000000), (1112629, 1001401, 'Bowling Green', NULL, 'bowling-green', 'US', 1, 39.6237000000, -78.8044600000), (1112630, 1001451, 'Bowling Green', NULL, 'bowling-green', 'US', 1, 39.3419900000, -91.1951400000), (1112631, 1001427, 'Bowling Green', NULL, 'bowling-green', 'US', 1, 38.0495800000, -77.3466500000), (1112632, 1001418, 'Bowman', NULL, 'bowman', 'US', 1, 46.1830600000, -103.3949100000), (1112633, 1001418, 'Bowman County', NULL, 'bowman-county', 'US', 1, 46.1126100000, -103.5206700000), (1112634, 1001422, 'Bowmansville', NULL, 'bowmansville', 'US', 1, 40.1967600000, -76.0174400000), (1112635, 1001408, 'Box Butte County', NULL, 'box-butte-county', 'US', 1, 42.2197700000, -103.0856800000), (1112636, 1001445, 'Box Elder', NULL, 'box-elder', 'US', 1, 44.1124900000, -103.0682300000), (1112637, 1001414, 'Box Elder County', NULL, 'box-elder-county', 'US', 1, 41.5209700000, -113.0820900000), (1112638, 1001433, 'Boxborough', NULL, 'boxborough', 'US', 1, 42.4908400000, -71.5285100000), (1112639, 1001433, 'Boxford', NULL, 'boxford', 'US', 1, 42.6612000000, -70.9967200000), (1112640, 1001441, 'Boyceville', NULL, 'boyceville', 'US', 1, 45.0435700000, -92.0410100000), (1112641, 1001407, 'Boyd', NULL, 'boyd', 'US', 1, 33.0787300000, -97.5653000000), (1112642, 1001419, 'Boyd County', NULL, 'boyd-county', 'US', 1, 38.3595700000, -82.6877300000), (1112643, 1001408, 'Boyd County', NULL, 'boyd-county', 'US', 1, 42.8996800000, -98.7664600000), (1112644, 1001427, 'Boydton', NULL, 'boydton', 'US', 1, 36.6676400000, -78.3875000000), (1112645, 1001422, 'Boyertown', NULL, 'boyertown', 'US', 1, 40.3337100000, -75.6374100000), (1112646, 1001416, 'Boyes Hot Springs', NULL, 'boyes-hot-springs', 'US', 1, 38.3138000000, -122.4819300000), (1112647, 1001436, 'Boyette', NULL, 'boyette', 'US', 1, 27.8175300000, -82.2225900000), (1112648, 1001419, 'Boyle County', NULL, 'boyle-county', 'US', 1, 37.6243300000, -84.8668100000), (1112649, 1001416, 'Boyle Heights', NULL, 'boyle-heights', 'US', 1, 34.0339000000, -118.2053500000), (1112650, 1001433, 'Boylston', NULL, 'boylston', 'US', 1, 42.3917600000, -71.7036800000), (1112651, 1001426, 'Boyne City', NULL, 'boyne-city', 'US', 1, 45.2166800000, -85.0139400000), (1112652, 1001436, 'Boynton Beach', NULL, 'boynton-beach', 'US', 1, 26.5253500000, -80.0664300000), (1112653, 1001446, 'Bozeman', NULL, 'bozeman', 'US', 1, 45.6796500000, -111.0385600000), (1112654, 1001427, 'Bracey', NULL, 'bracey', 'US', 1, 36.5995900000, -78.1430500000), (1112655, 1001419, 'Bracken County', NULL, 'bracken-county', 'US', 1, 38.6888100000, -84.0901900000), (1112656, 1001422, 'Brackenridge', NULL, 'brackenridge', 'US', 1, 40.6081200000, -79.7411600000), (1112657, 1001407, 'Brackettville', NULL, 'brackettville', 'US', 1, 29.3105100000, -100.4178600000), (1112658, 1001416, 'Bradbury', NULL, 'bradbury', 'US', 1, 34.1469500000, -117.9709000000), (1112659, 1001422, 'Braddock', NULL, 'braddock', 'US', 1, 40.4034000000, -79.8683800000), (1112660, 1001401, 'Braddock Heights', NULL, 'braddock-heights', 'US', 1, 39.4187100000, -77.5036000000), (1112661, 1001422, 'Braddock Hills', NULL, 'braddock-hills', 'US', 1, 40.4172900000, -79.8650500000), (1112662, 1001436, 'Bradenton', NULL, 'bradenton', 'US', 1, 27.4989300000, -82.5748200000), (1112663, 1001436, 'Bradenton Beach', NULL, 'bradenton-beach', 'US', 1, 27.4669800000, -82.7039900000), (1112664, 1001454, 'Bradford', NULL, 'bradford', 'US', 1, 36.0764500000, -88.8100600000), (1112665, 1001453, 'Bradford', NULL, 'bradford', 'US', 1, 45.0667300000, -68.9378100000), (1112666, 1001422, 'Bradford', NULL, 'bradford', 'US', 1, 41.9559000000, -78.6439200000), (1112667, 1001461, 'Bradford', NULL, 'bradford', 'US', 1, 41.3989900000, -71.7370100000), (1112668, 1001436, 'Bradford County', NULL, 'bradford-county', 'US', 1, 29.9499600000, -82.1687800000), (1112669, 1001422, 'Bradford County', NULL, 'bradford-county', 'US', 1, 41.7886700000, -76.5154500000), (1112670, 1001422, 'Bradford Woods', NULL, 'bradford-woods', 'US', 1, 40.6375700000, -80.0817200000), (1112671, 1001429, 'Bradley', NULL, 'bradley', 'US', 1, 37.8653900000, -81.1939900000), (1112672, 1001425, 'Bradley', NULL, 'bradley', 'US', 1, 41.1419800000, -87.8611500000), (1112673, 1001453, 'Bradley', NULL, 'bradley', 'US', 1, 44.9209000000, -68.6280900000), (1112674, 1001417, 'Bradley Beach', NULL, 'bradley-beach', 'US', 1, 40.2023400000, -74.0120800000), (1112675, 1001444, 'Bradley County', NULL, 'bradley-county', 'US', 1, 33.4664200000, -92.1624000000), (1112676, 1001454, 'Bradley County', NULL, 'bradley-county', 'US', 1, 35.1541100000, -84.8596000000), (1112677, 1001417, 'Bradley Gardens', NULL, 'bradley-gardens', 'US', 1, 40.5628800000, -74.6546000000), (1112678, 1001407, 'Brady', NULL, 'brady', 'US', 1, 31.1351700000, -99.3350600000), (1112679, 1001420, 'Braham', NULL, 'braham', 'US', 1, 45.7227400000, -93.1707800000), (1112680, 1001425, 'Braidwood', NULL, 'braidwood', 'US', 1, 41.2650300000, -88.2122800000), (1112681, 1001420, 'Brainerd', NULL, 'brainerd', 'US', 1, 46.3580200000, -94.2008300000), (1112682, 1001433, 'Braintree', NULL, 'braintree', 'US', 1, 42.2038400000, -71.0021500000), (1112683, 1001427, 'Brambleton', NULL, 'brambleton', 'US', 1, 38.9820500000, -77.5386000000), (1112684, 1001420, 'Branch', NULL, 'branch', 'US', 1, 45.4852400000, -92.9618800000), (1112685, 1001426, 'Branch County', NULL, 'branch-county', 'US', 1, 41.9161100000, -85.0590300000), (1112686, 1001419, 'Brandenburg', NULL, 'brandenburg', 'US', 1, 37.9989600000, -86.1694100000), (1112687, 1001427, 'Brandermill', NULL, 'brandermill', 'US', 1, 37.4320900000, -77.6497100000), (1112688, 1001436, 'Brandon', NULL, 'brandon', 'US', 1, 27.9378000000, -82.2859200000), (1112689, 1001430, 'Brandon', NULL, 'brandon', 'US', 1, 32.2732000000, -89.9859200000), (1112690, 1001409, 'Brandon', NULL, 'brandon', 'US', 1, 43.7981200000, -73.0876100000), (1112691, 1001445, 'Brandon', NULL, 'brandon', 'US', 1, 43.5947000000, -96.5719900000), (1112692, 1001401, 'Brandywine', NULL, 'brandywine', 'US', 1, 38.6967800000, -76.8477500000), (1112693, 1001435, 'Branford', NULL, 'branford', 'US', 1, 41.2795400000, -72.8151000000), (1112694, 1001435, 'Branford Center', NULL, 'branford-center', 'US', 1, 41.2773800000, -72.8151100000), (1112695, 1001451, 'Branson', NULL, 'branson', 'US', 1, 36.6436700000, -93.2185100000), (1112696, 1001455, 'Brantley County', NULL, 'brantley-county', 'US', 1, 31.1968800000, -81.9819000000), (1112697, 1001455, 'Braselton', NULL, 'braselton', 'US', 1, 34.1092700000, -83.7626700000), (1112698, 1001417, 'Brass Castle', NULL, 'brass-castle', 'US', 1, 40.7648200000, -75.0110100000), (1112699, 1001409, 'Brattleboro', NULL, 'brattleboro', 'US', 1, 42.8509200000, -72.5578700000), (1112700, 1001416, 'Brawley', NULL, 'brawley', 'US', 1, 32.9786600000, -115.5302700000), (1112701, 1001429, 'Braxton County', NULL, 'braxton-county', 'US', 1, 38.6998700000, -80.7192900000), (1112702, 1001421, 'Bray', NULL, 'bray', 'US', 1, 34.6378600000, -97.8175300000), (1112703, 1001440, 'Brazil', NULL, 'brazil', 'US', 1, 39.5236500000, -87.1250200000), (1112704, 1001407, 'Brazoria', NULL, 'brazoria', 'US', 1, 29.0444100000, -95.5691100000), (1112705, 1001407, 'Brazoria County', NULL, 'brazoria-county', 'US', 1, 29.1678300000, -95.4342600000), (1112706, 1001407, 'Brazos County', NULL, 'brazos-county', 'US', 1, 30.6608000000, -96.3023900000), (1112707, 1001416, 'Brea', NULL, 'brea', 'US', 1, 33.9166800000, -117.9000600000), (1112708, 1001419, 'Breathitt County', NULL, 'breathitt-county', 'US', 1, 37.5216200000, -83.3240900000), (1112709, 1001457, 'Breaux Bridge', NULL, 'breaux-bridge', 'US', 1, 30.2735300000, -91.8992800000), (1112710, 1001407, 'Breckenridge', NULL, 'breckenridge', 'US', 1, 32.7556800000, -98.9022900000), (1112711, 1001426, 'Breckenridge', NULL, 'breckenridge', 'US', 1, 43.4080800000, -84.4750000000), (1112712, 1001420, 'Breckenridge', NULL, 'breckenridge', 'US', 1, 46.2635700000, -96.5881300000), (1112713, 1001450, 'Breckenridge', NULL, 'breckenridge', 'US', 1, 39.4816500000, -106.0383500000), (1112714, 1001451, 'Breckenridge Hills', NULL, 'breckenridge-hills', 'US', 1, 38.7145000000, -90.3673400000), (1112715, 1001419, 'Breckinridge Center', NULL, 'breckinridge-center', 'US', 1, 37.6828200000, -87.8630800000), (1112716, 1001419, 'Breckinridge County', NULL, 'breckinridge-county', 'US', 1, 37.7732700000, -86.4292800000), (1112717, 1001425, 'Breese', NULL, 'breese', 'US', 1, 38.6106000000, -89.5270300000), (1112718, 1001420, 'Breezy Point', NULL, 'breezy-point', 'US', 1, 46.5900100000, -94.2198200000), (1112719, 1001422, 'Breinigsville', NULL, 'breinigsville', 'US', 1, 40.5367600000, -75.6313000000), (1112720, 1001455, 'Bremen', NULL, 'bremen', 'US', 1, 33.7212200000, -85.1455000000), (1112721, 1001440, 'Bremen', NULL, 'bremen', 'US', 1, 41.4464400000, -86.1480600000), (1112722, 1001459, 'Bremer County', NULL, 'bremer-county', 'US', 1, 42.7745900000, -92.3180500000), (1112723, 1001462, 'Bremerton', NULL, 'bremerton', 'US', 1, 47.5673200000, -122.6326400000), (1112724, 1001407, 'Brenham', NULL, 'brenham', 'US', 1, 30.1668800000, -96.3977400000), (1112725, 1001456, 'Brent', NULL, 'brent', 'US', 1, 32.9373500000, -87.1647200000), (1112726, 1001436, 'Brent', NULL, 'brent', 'US', 1, 30.4688100000, -87.2360800000), (1112727, 1001451, 'Brentwood', NULL, 'brentwood', 'US', 1, 38.6175500000, -90.3492800000), (1112728, 1001401, 'Brentwood', NULL, 'brentwood', 'US', 1, 38.9431700000, -76.9566400000), (1112729, 1001454, 'Brentwood', NULL, 'brentwood', 'US', 1, 36.0331200000, -86.7827800000), (1112730, 1001404, 'Brentwood', NULL, 'brentwood', 'US', 1, 42.9787000000, -71.0728400000), (1112731, 1001452, 'Brentwood', NULL, 'brentwood', 'US', 1, 40.7812100000, -73.2462300000), (1112732, 1001422, 'Brentwood', NULL, 'brentwood', 'US', 1, 40.3706300000, -79.9747700000), (1112733, 1001416, 'Brentwood', NULL, 'brentwood', 'US', 1, 37.9318700000, -121.6957900000), (1112734, 1001454, 'Brentwood Estates', NULL, 'brentwood-estates', 'US', 1, 36.0250600000, -86.7791700000), (1112735, 1001422, 'Bressler', NULL, 'bressler', 'US', 1, 40.2295300000, -76.8199700000), (1112736, 1001416, 'Bret Harte', NULL, 'bret-harte', 'US', 1, 37.6020700000, -121.0051900000), (1112737, 1001447, 'Brevard', NULL, 'brevard', 'US', 1, 35.2334500000, -82.7342900000), (1112738, 1001436, 'Brevard County', NULL, 'brevard-county', 'US', 1, 28.3003100000, -80.7012100000), (1112739, 1001453, 'Brewer', NULL, 'brewer', 'US', 1, 44.7967400000, -68.7614200000), (1112740, 1001452, 'Brewerton', NULL, 'brewerton', 'US', 1, 43.2381200000, -76.1407600000), (1112741, 1001433, 'Brewster', NULL, 'brewster', 'US', 1, 41.7601100000, -70.0828000000), (1112742, 1001408, 'Brewster', NULL, 'brewster', 'US', 1, 41.9388900000, -99.8648500000), (1112743, 1001452, 'Brewster', NULL, 'brewster', 'US', 1, 41.3973200000, -73.6170700000), (1112744, 1001462, 'Brewster', NULL, 'brewster', 'US', 1, 48.0959800000, -119.7806200000), (1112745, 1001407, 'Brewster County', NULL, 'brewster-county', 'US', 1, 29.8119500000, -103.2517600000), (1112746, 1001452, 'Brewster Hill', NULL, 'brewster-hill', 'US', 1, 41.4239800000, -73.6042900000), (1112747, 1001456, 'Brewton', NULL, 'brewton', 'US', 1, 31.1051800000, -87.0721900000), (1112748, 1001407, 'Briar', NULL, 'briar', 'US', 1, 32.9951200000, -97.5428000000), (1112749, 1001407, 'Briarcliff', NULL, 'briarcliff', 'US', 1, 30.4074200000, -98.0444600000), (1112750, 1001452, 'Briarcliff Manor', NULL, 'briarcliff-manor', 'US', 1, 41.1456500000, -73.8237500000), (1112751, 1001452, 'Briarwood', NULL, 'briarwood', 'US', 1, 40.7093500000, -73.8152900000), (1112752, 1001441, 'Brice Prairie', NULL, 'brice-prairie', 'US', 1, 43.9385700000, -91.2998600000), (1112753, 1001447, 'Brices Creek', NULL, 'brices-creek', 'US', 1, 35.0559900000, -77.0877300000), (1112754, 1001422, 'Brickerville', NULL, 'brickerville', 'US', 1, 40.2259300000, -76.3024600000), (1112755, 1001457, 'Bridge City', NULL, 'bridge-city', 'US', 1, 29.9332600000, -90.1700700000), (1112756, 1001407, 'Bridge City', NULL, 'bridge-city', 'US', 1, 30.0207700000, -93.8457300000), (1112757, 1001452, 'Bridgehampton', NULL, 'bridgehampton', 'US', 1, 40.9378800000, -72.3009200000), (1112758, 1001456, 'Bridgeport', NULL, 'bridgeport', 'US', 1, 34.9475800000, -85.7144200000), (1112759, 1001407, 'Bridgeport', NULL, 'bridgeport', 'US', 1, 33.2101200000, -97.7547600000), (1112760, 1001429, 'Bridgeport', NULL, 'bridgeport', 'US', 1, 39.2864800000, -80.2562000000), (1112761, 1001425, 'Bridgeport', NULL, 'bridgeport', 'US', 1, 41.8380900000, -87.6511600000), (1112762, 1001426, 'Bridgeport', NULL, 'bridgeport', 'US', 1, 43.3594700000, -83.8816400000), (1112763, 1001452, 'Bridgeport', NULL, 'bridgeport', 'US', 1, 43.1553500000, -75.9693600000), (1112764, 1001422, 'Bridgeport', NULL, 'bridgeport', 'US', 1, 40.1051100000, -75.3451800000), (1112765, 1001416, 'Bridgeport', NULL, 'bridgeport', 'US', 1, 38.2557500000, -119.2312700000), (1112766, 1001435, 'Bridgeport', NULL, 'bridgeport', 'US', 1, 41.1792300000, -73.1894500000), (1112767, 1001408, 'Bridgeport', NULL, 'bridgeport', 'US', 1, 41.6652500000, -103.0991000000), (1112768, 1001462, 'Bridgeport', NULL, 'bridgeport', 'US', 1, 48.0082000000, -119.6711600000), (1112769, 1001451, 'Bridgeton', NULL, 'bridgeton', 'US', 1, 38.7670000000, -90.4115100000), (1112770, 1001417, 'Bridgeton', NULL, 'bridgeton', 'US', 1, 39.4273400000, -75.2340800000), (1112771, 1001425, 'Bridgeview', NULL, 'bridgeview', 'US', 1, 41.7500300000, -87.8042200000), (1112772, 1001399, 'Bridgeville', NULL, 'bridgeville', 'US', 1, 38.7426100000, -75.6043700000), (1112773, 1001422, 'Bridgeville', NULL, 'bridgeville', 'US', 1, 40.3561800000, -80.1100600000), (1112774, 1001427, 'Bridgewater', NULL, 'bridgewater', 'US', 1, 38.3820700000, -78.9767000000), (1112775, 1001433, 'Bridgewater', NULL, 'bridgewater', 'US', 1, 41.9903800000, -70.9750400000), (1112776, 1001404, 'Bridgewater', NULL, 'bridgewater', 'US', 1, 43.6384100000, -71.7364700000), (1112777, 1001417, 'Bridgewater', NULL, 'bridgewater', 'US', 1, 40.6007900000, -74.6481500000), (1112778, 1001426, 'Bridgman', NULL, 'bridgman', 'US', 1, 41.9431000000, -86.5569700000), (1112779, 1001453, 'Bridgton', NULL, 'bridgton', 'US', 1, 44.0547900000, -70.7128400000), (1112780, 1001409, 'Bridport', NULL, 'bridport', 'US', 1, 43.9850600000, -73.3126200000), (1112781, 1001417, 'Brielle', NULL, 'brielle', 'US', 1, 40.1078900000, -74.0565300000), (1112782, 1001462, 'Brier', NULL, 'brier', 'US', 1, 47.7845400000, -122.2742900000), (1112783, 1001417, 'Brigantine', NULL, 'brigantine', 'US', 1, 39.4101200000, -74.3645900000), (1112784, 1001414, 'Brigham City', NULL, 'brigham-city', 'US', 1, 41.5102100000, -112.0155000000), (1112785, 1001440, 'Bright', NULL, 'bright', 'US', 1, 39.2183900000, -84.8560600000), (1112786, 1001456, 'Brighton', NULL, 'brighton', 'US', 1, 33.4342800000, -86.9472100000), (1112787, 1001425, 'Brighton', NULL, 'brighton', 'US', 1, 39.0397700000, -90.1406600000), (1112788, 1001454, 'Brighton', NULL, 'brighton', 'US', 1, 35.4839700000, -89.7250800000), (1112789, 1001426, 'Brighton', NULL, 'brighton', 'US', 1, 42.5294800000, -83.7802200000), (1112790, 1001452, 'Brighton', NULL, 'brighton', 'US', 1, 43.1475600000, -77.5505500000), (1112791, 1001450, 'Brighton', NULL, 'brighton', 'US', 1, 39.9852600000, -104.8205300000), (1112792, 1001452, 'Brighton Beach', NULL, 'brighton-beach', 'US', 1, 40.5778800000, -73.9595800000), (1112793, 1001425, 'Brighton Park', NULL, 'brighton-park', 'US', 1, 41.8189200000, -87.6989400000), (1112794, 1001452, 'Brightwaters', NULL, 'brightwaters', 'US', 1, 40.7209300000, -73.2673400000), (1112795, 1001427, 'Brightwood', NULL, 'brightwood', 'US', 1, 38.4215200000, -78.1936100000), (1112796, 1001441, 'Brillion', NULL, 'brillion', 'US', 1, 44.1772100000, -88.0642700000), (1112797, 1001433, 'Brimfield', NULL, 'brimfield', 'US', 1, 42.1228700000, -72.2009100000), (1112798, 1001452, 'Brinckerhoff', NULL, 'brinckerhoff', 'US', 1, 41.5439800000, -73.8681900000), (1112799, 1001444, 'Brinkley', NULL, 'brinkley', 'US', 1, 34.8878700000, -91.1945700000), (1112800, 1001416, 'Brisbane', NULL, 'brisbane', 'US', 1, 37.6807700000, -122.3999700000), (1112801, 1001407, 'Briscoe County', NULL, 'briscoe-county', 'US', 1, 34.5302600000, -101.2085900000), (1112802, 1001436, 'Bristol', NULL, 'bristol', 'US', 1, 30.4324700000, -84.9770200000), (1112803, 1001454, 'Bristol', NULL, 'bristol', 'US', 1, 36.5951100000, -82.1887400000), (1112804, 1001427, 'Bristol', NULL, 'bristol', 'US', 1, 36.5964900000, -82.1884700000), (1112805, 1001440, 'Bristol', NULL, 'bristol', 'US', 1, 41.7214400000, -85.8174900000), (1112806, 1001453, 'Bristol', NULL, 'bristol', 'US', 1, 43.9575800000, -69.5092100000), (1112807, 1001404, 'Bristol', NULL, 'bristol', 'US', 1, 43.5911900000, -71.7367500000), (1112808, 1001422, 'Bristol', NULL, 'bristol', 'US', 1, 40.1006700000, -74.8518300000), (1112809, 1001435, 'Bristol', NULL, 'bristol', 'US', 1, 41.6717600000, -72.9492700000), (1112810, 1001409, 'Bristol', NULL, 'bristol', 'US', 1, 44.1333900000, -73.0790100000), (1112811, 1001441, 'Bristol', NULL, 'bristol', 'US', 1, 42.5589100000, -88.0492500000), (1112812, 1001461, 'Bristol', NULL, 'bristol', 'US', 1, 41.6770500000, -71.2661600000), (1112813, 1001400, 'Bristol Bay Borough', NULL, 'bristol-bay-borough', 'US', 1, 58.7505600000, -156.8333300000), (1112814, 1001433, 'Bristol County', NULL, 'bristol-county', 'US', 1, 41.7570900000, -71.0885200000), (1112815, 1001461, 'Bristol County', NULL, 'bristol-county', 'US', 1, 41.7055400000, -71.2861200000), (1112816, 1001421, 'Bristow', NULL, 'bristow', 'US', 1, 35.8306300000, -96.3911200000), (1112817, 1001459, 'Britt', NULL, 'britt', 'US', 1, 43.0977400000, -93.8018900000), (1112818, 1001422, 'Brittany Farms-Highlands', NULL, 'brittany-farms-highlands', 'US', 1, 40.2690100000, -75.2140100000), (1112819, 1001445, 'Britton', NULL, 'britton', 'US', 1, 45.7916200000, -97.7509400000), (1112820, 1001452, 'Broad Channel', NULL, 'broad-channel', 'US', 1, 40.6031600000, -73.8204100000), (1112821, 1001447, 'Broad Creek', NULL, 'broad-creek', 'US', 1, 34.7207200000, -76.9363300000), (1112822, 1001440, 'Broad Ripple', NULL, 'broad-ripple', 'US', 1, 39.8667100000, -86.1416500000), (1112823, 1001452, 'Broadalbin', NULL, 'broadalbin', 'US', 1, 43.0586800000, -74.1965200000), (1112824, 1001427, 'Broadlands', NULL, 'broadlands', 'US', 1, 39.0181600000, -77.5202700000), (1112825, 1001416, 'Broadmoor', NULL, 'broadmoor', 'US', 1, 37.6866000000, -122.4827500000), (1112826, 1001446, 'Broadus', NULL, 'broadus', 'US', 1, 45.4438700000, -105.4113300000), (1112827, 1001425, 'Broadview', NULL, 'broadview', 'US', 1, 41.8639200000, -87.8533900000), (1112828, 1001436, 'Broadview Park', NULL, 'broadview-park', 'US', 1, 26.0995300000, -80.2086600000), (1112829, 1001446, 'Broadwater County', NULL, 'broadwater-county', 'US', 1, 46.3319900000, -111.4954700000), (1112830, 1001447, 'Broadway', NULL, 'broadway', 'US', 1, 35.4579300000, -79.0530800000), (1112831, 1001427, 'Broadway', NULL, 'broadway', 'US', 1, 38.6131700000, -78.7989100000), (1112832, 1001401, 'Brock Hall', NULL, 'brock-hall', 'US', 1, 38.8501100000, -76.7610800000), (1112833, 1001452, 'Brockport', NULL, 'brockport', 'US', 1, 43.2136700000, -77.9391800000), (1112834, 1001433, 'Brockton', NULL, 'brockton', 'US', 1, 42.0834300000, -71.0183800000), (1112835, 1001422, 'Brockway', NULL, 'brockway', 'US', 1, 41.2492300000, -78.7994700000), (1112836, 1001452, 'Brocton', NULL, 'brocton', 'US', 1, 42.3886700000, -79.4411600000), (1112837, 1001419, 'Brodhead', NULL, 'brodhead', 'US', 1, 37.4042500000, -84.4138300000), (1112838, 1001441, 'Brodhead', NULL, 'brodhead', 'US', 1, 42.6183400000, -89.3762300000), (1112839, 1001422, 'Brodheadsville', NULL, 'brodheadsville', 'US', 1, 40.9245400000, -75.3937900000), (1112840, 1001447, 'Brogden', NULL, 'brogden', 'US', 1, 35.2926600000, -78.0344300000), (1112841, 1001421, 'Broken Arrow', NULL, 'broken-arrow', 'US', 1, 36.0526000000, -95.7908200000), (1112842, 1001421, 'Broken Bow', NULL, 'broken-bow', 'US', 1, 34.0292800000, -94.7391000000), (1112843, 1001408, 'Broken Bow', NULL, 'broken-bow', 'US', 1, 41.4019500000, -99.6392800000), (1112844, 1001436, 'Bronson', NULL, 'bronson', 'US', 1, 29.4477400000, -82.6423300000), (1112845, 1001426, 'Bronson', NULL, 'bronson', 'US', 1, 41.8722700000, -85.1947000000), (1112846, 1001452, 'Bronx', NULL, 'bronx', 'US', 1, 40.8273200000, -73.9235700000), (1112847, 1001452, 'Bronxville', NULL, 'bronxville', 'US', 1, 40.9381500000, -73.8320800000), (1112848, 1001456, 'Brook Highland', NULL, 'brook-highland', 'US', 1, 33.4356600000, -86.6738800000), (1112849, 1001443, 'Brookdale', NULL, 'brookdale', 'US', 1, 33.5068200000, -80.8234200000), (1112850, 1001417, 'Brookdale', NULL, 'brookdale', 'US', 1, 40.8337100000, -74.1829200000), (1112851, 1001416, 'Brookdale', NULL, 'brookdale', 'US', 1, 37.1063400000, -122.1060800000), (1112852, 1001429, 'Brooke County', NULL, 'brooke-county', 'US', 1, 40.2738100000, -80.5764200000), (1112853, 1001451, 'Brookfield', NULL, 'brookfield', 'US', 1, 39.7844700000, -93.0735300000), (1112854, 1001425, 'Brookfield', NULL, 'brookfield', 'US', 1, 41.8239200000, -87.8517300000), (1112855, 1001441, 'Brookfield', NULL, 'brookfield', 'US', 1, 43.0605700000, -88.1064800000), (1112856, 1001455, 'Brookhaven', NULL, 'brookhaven', 'US', 1, 33.8584400000, -84.3402000000), (1112857, 1001430, 'Brookhaven', NULL, 'brookhaven', 'US', 1, 31.5790600000, -90.4406500000), (1112858, 1001422, 'Brookhaven', NULL, 'brookhaven', 'US', 1, 39.8692800000, -75.3824100000), (1112859, 1001429, 'Brookhaven', NULL, 'brookhaven', 'US', 1, 39.6117500000, -79.9045100000), (1112860, 1001452, 'Brookhaven', NULL, 'brookhaven', 'US', 1, 40.7792700000, -72.9153800000), (1112861, 1001445, 'Brookings', NULL, 'brookings', 'US', 1, 44.3113600000, -96.7983900000), (1112862, 1001415, 'Brookings', NULL, 'brookings', 'US', 1, 42.0526100000, -124.2839800000), (1112863, 1001445, 'Brookings County', NULL, 'brookings-county', 'US', 1, 44.3696800000, -96.7904200000), (1112864, 1001444, 'Brookland', NULL, 'brookland', 'US', 1, 35.9000700000, -90.5820500000), (1112865, 1001417, 'Brooklawn', NULL, 'brooklawn', 'US', 1, 39.8781700000, -75.1207300000), (1112866, 1001455, 'Brooklet', NULL, 'brooklet', 'US', 1, 32.3796300000, -81.6631700000), (1112867, 1001433, 'Brookline', NULL, 'brookline', 'US', 1, 42.3317600000, -71.1211600000), (1112868, 1001404, 'Brookline', NULL, 'brookline', 'US', 1, 42.7348100000, -71.6581300000), (1112869, 1001440, 'Brooklyn', NULL, 'brooklyn', 'US', 1, 39.5392100000, -86.3691600000), (1112870, 1001459, 'Brooklyn', NULL, 'brooklyn', 'US', 1, 41.7336100000, -92.4454600000), (1112871, 1001426, 'Brooklyn', NULL, 'brooklyn', 'US', 1, 42.1058700000, -84.2482800000), (1112872, 1001452, 'Brooklyn', NULL, 'brooklyn', 'US', 1, 40.6501000000, -73.9495800000), (1112873, 1001441, 'Brooklyn', NULL, 'brooklyn', 'US', 1, 42.8536100000, -89.3704000000), (1112874, 1001420, 'Brooklyn Center', NULL, 'brooklyn-center', 'US', 1, 45.0760800000, -93.3327300000), (1112875, 1001452, 'Brooklyn Heights', NULL, 'brooklyn-heights', 'US', 1, 40.6953800000, -73.9937500000), (1112876, 1001401, 'Brooklyn Park', NULL, 'brooklyn-park', 'US', 1, 39.2284400000, -76.6163600000), (1112877, 1001420, 'Brooklyn Park', NULL, 'brooklyn-park', 'US', 1, 45.0941300000, -93.3563400000), (1112878, 1001401, 'Brookmont', NULL, 'brookmont', 'US', 1, 38.9420600000, -77.1202600000), (1112879, 1001427, 'Brookneal', NULL, 'brookneal', 'US', 1, 37.0501400000, -78.9441800000), (1112880, 1001436, 'Brookridge', NULL, 'brookridge', 'US', 1, 28.5511000000, -82.4920400000), (1112881, 1001419, 'Brooks', NULL, 'brooks', 'US', 1, 38.0611800000, -85.7096800000), (1112882, 1001453, 'Brooks', NULL, 'brooks', 'US', 1, 44.5503500000, -69.1208700000), (1112883, 1001455, 'Brooks County', NULL, 'brooks-county', 'US', 1, 30.8419700000, -83.5802100000), (1112884, 1001407, 'Brooks County', NULL, 'brooks-county', 'US', 1, 27.0315700000, -98.2187200000), (1112885, 1001407, 'Brookshire', NULL, 'brookshire', 'US', 1, 29.7860600000, -95.9510700000), (1112886, 1001456, 'Brookside', NULL, 'brookside', 'US', 1, 33.6378800000, -86.9166600000), (1112887, 1001399, 'Brookside', NULL, 'brookside', 'US', 1, 39.6670600000, -75.7268800000), (1112888, 1001407, 'Brookside Village', NULL, 'brookside-village', 'US', 1, 29.5869000000, -95.3252200000), (1112889, 1001440, 'Brookston', NULL, 'brookston', 'US', 1, 40.6028100000, -86.8672300000), (1112890, 1001436, 'Brooksville', NULL, 'brooksville', 'US', 1, 28.5555400000, -82.3899100000), (1112891, 1001419, 'Brooksville', NULL, 'brooksville', 'US', 1, 38.6825700000, -84.0657600000), (1112892, 1001430, 'Brooksville', NULL, 'brooksville', 'US', 1, 33.2345700000, -88.5822700000), (1112893, 1001416, 'Brooktrails', NULL, 'brooktrails', 'US', 1, 39.4437700000, -123.3852900000), (1112894, 1001440, 'Brookville', NULL, 'brookville', 'US', 1, 39.4231100000, -85.0127400000), (1112895, 1001452, 'Brookville', NULL, 'brookville', 'US', 1, 40.8131600000, -73.5673500000), (1112896, 1001422, 'Brookville', NULL, 'brookville', 'US', 1, 41.1611700000, -79.0830900000), (1112897, 1001456, 'Brookwood', NULL, 'brookwood', 'US', 1, 33.2556700000, -87.3208300000), (1112898, 1001422, 'Broomall', NULL, 'broomall', 'US', 1, 39.9815000000, -75.3565800000), (1112899, 1001452, 'Broome County', NULL, 'broome-county', 'US', 1, 42.1602200000, -75.8196200000), (1112900, 1001450, 'Broomfield', NULL, 'broomfield', 'US', 1, 39.9205400000, -105.0866500000), (1112901, 1001450, 'Broomfield County', NULL, 'broomfield-county', 'US', 1, 39.9541300000, -105.0526600000), (1112902, 1001441, 'Brothertown', NULL, 'brothertown', 'US', 1, 43.9680500000, -88.3089900000), (1112903, 1001457, 'Broussard', NULL, 'broussard', 'US', 1, 30.1471500000, -91.9612300000), (1112904, 1001436, 'Broward County', NULL, 'broward-county', 'US', 1, 26.1518600000, -80.4558900000), (1112905, 1001436, 'Broward Estates', NULL, 'broward-estates', 'US', 1, 26.1256400000, -80.1933800000), (1112906, 1001426, 'Brown City', NULL, 'brown-city', 'US', 1, 43.2122500000, -82.9896600000), (1112907, 1001425, 'Brown County', NULL, 'brown-county', 'US', 1, 39.9618100000, -90.7503400000), (1112908, 1001440, 'Brown County', NULL, 'brown-county', 'US', 1, 39.1962100000, -86.2273700000), (1112909, 1001406, 'Brown County', NULL, 'brown-county', 'US', 1, 39.8265000000, -95.5642200000), (1112910, 1001407, 'Brown County', NULL, 'brown-county', 'US', 1, 31.7742600000, -98.9997900000), (1112911, 1001420, 'Brown County', NULL, 'brown-county', 'US', 1, 44.2421700000, -94.7274800000), (1112912, 1001408, 'Brown County', NULL, 'brown-county', 'US', 1, 42.4300200000, -99.9295100000), (1112913, 1001445, 'Brown County', NULL, 'brown-county', 'US', 1, 45.5897200000, -98.3516100000), (1112914, 1001441, 'Brown County', NULL, 'brown-county', 'US', 1, 44.4743300000, -87.9928700000), (1112915, 1001441, 'Brown Deer', NULL, 'brown-deer', 'US', 1, 43.1633400000, -87.9645300000), (1112916, 1001453, 'Brownfield', NULL, 'brownfield', 'US', 1, 43.9381300000, -70.9086800000), (1112917, 1001407, 'Brownfield', NULL, 'brownfield', 'US', 1, 33.1812000000, -102.2743500000), (1112918, 1001446, 'Browning', NULL, 'browning', 'US', 1, 48.5569200000, -113.0134200000), (1112919, 1001426, 'Brownlee Park', NULL, 'brownlee-park', 'US', 1, 42.3189300000, -85.1424900000), (1112920, 1001441, 'Browns Lake', NULL, 'browns-lake', 'US', 1, 42.6925200000, -88.2312000000), (1112921, 1001417, 'Browns Mills', NULL, 'browns-mills', 'US', 1, 39.9726100000, -74.5829300000), (1112922, 1001462, 'Browns Point', NULL, 'browns-point', 'US', 1, 47.3003800000, -122.4412400000), (1112923, 1001407, 'Brownsboro', NULL, 'brownsboro', 'US', 1, 32.3023700000, -95.6135700000), (1112924, 1001440, 'Brownsburg', NULL, 'brownsburg', 'US', 1, 39.8433800000, -86.3977700000), (1112925, 1001457, 'Brownsfield', NULL, 'brownsfield', 'US', 1, 30.5465800000, -91.1206600000), (1112926, 1001440, 'Brownstown', NULL, 'brownstown', 'US', 1, 38.8789400000, -86.0419200000), (1112927, 1001422, 'Brownstown', NULL, 'brownstown', 'US', 1, 40.1237100000, -76.2138400000), (1112928, 1001436, 'Brownsville', NULL, 'brownsville', 'US', 1, 25.8217600000, -80.2411600000), (1112929, 1001419, 'Brownsville', NULL, 'brownsville', 'US', 1, 37.1925500000, -86.2677500000), (1112930, 1001457, 'Brownsville', NULL, 'brownsville', 'US', 1, 32.4870900000, -92.1543000000), (1112931, 1001454, 'Brownsville', NULL, 'brownsville', 'US', 1, 35.5939700000, -89.2622900000), (1112932, 1001407, 'Brownsville', NULL, 'brownsville', 'US', 1, 25.9017500000, -97.4974800000), (1112933, 1001452, 'Brownsville', NULL, 'brownsville', 'US', 1, 40.6609400000, -73.9201400000), (1112934, 1001422, 'Brownsville', NULL, 'brownsville', 'US', 1, 40.0236900000, -79.8839400000), (1112935, 1001415, 'Brownsville', NULL, 'brownsville', 'US', 1, 44.3934600000, -122.9848100000), (1112936, 1001422, 'Browntown', NULL, 'browntown', 'US', 1, 41.3098000000, -75.7874200000), (1112937, 1001453, 'Brownville', NULL, 'brownville', 'US', 1, 45.3070000000, -69.0333700000), (1112938, 1001452, 'Brownville', NULL, 'brownville', 'US', 1, 44.0070000000, -75.9840900000), (1112939, 1001417, 'Brownville', NULL, 'brownville', 'US', 1, 40.4006600000, -74.2951500000), (1112940, 1001407, 'Brownwood', NULL, 'brownwood', 'US', 1, 31.7093200000, -98.9911600000), (1112941, 1001455, 'Broxton', NULL, 'broxton', 'US', 1, 31.6251900000, -82.8868100000), (1112942, 1001430, 'Bruce', NULL, 'bruce', 'US', 1, 33.9920600000, -89.3489600000), (1112943, 1001454, 'Bruceton', NULL, 'bruceton', 'US', 1, 36.0381200000, -88.2444900000), (1112944, 1001407, 'Bruceville-Eddy', NULL, 'bruceville-eddy', 'US', 1, 31.3051700000, -97.2516700000), (1112945, 1001445, 'Brule County', NULL, 'brule-county', 'US', 1, 43.7180600000, -99.0809400000), (1112946, 1001456, 'Brundidge', NULL, 'brundidge', 'US', 1, 31.7201600000, -85.8160600000), (1112947, 1001455, 'Brunswick', NULL, 'brunswick', 'US', 1, 31.1499500000, -81.4914900000), (1112948, 1001401, 'Brunswick', NULL, 'brunswick', 'US', 1, 39.3142700000, -77.6277700000), (1112949, 1001447, 'Brunswick', NULL, 'brunswick', 'US', 1, 34.2868400000, -78.7011300000), (1112950, 1001453, 'Brunswick', NULL, 'brunswick', 'US', 1, 43.9145200000, -69.9653300000), (1112951, 1001447, 'Brunswick County', NULL, 'brunswick-county', 'US', 1, 34.0389700000, -78.2272800000), (1112952, 1001427, 'Brunswick County', NULL, 'brunswick-county', 'US', 1, 36.7647800000, -77.8590200000), (1112953, 1001450, 'Brush', NULL, 'brush', 'US', 1, 40.2588700000, -103.6238400000), (1112954, 1001429, 'Brush Fork', NULL, 'brush-fork', 'US', 1, 37.2809500000, -81.2559300000), (1112955, 1001462, 'Brush Prairie', NULL, 'brush-prairie', 'US', 1, 45.7328900000, -122.5464900000), (1112956, 1001407, 'Brushy Creek', NULL, 'brushy-creek', 'US', 1, 30.5135300000, -97.7397300000), (1112957, 1001457, 'Brusly', NULL, 'brusly', 'US', 1, 30.3943600000, -91.2537200000), (1112958, 1001441, 'Brussels', NULL, 'brussels', 'US', 1, 44.7361100000, -87.6209300000), (1112959, 1001407, 'Bryan', NULL, 'bryan', 'US', 1, 30.6743600000, -96.3699600000), (1112960, 1001455, 'Bryan County', NULL, 'bryan-county', 'US', 1, 32.0132200000, -81.4424700000), (1112961, 1001421, 'Bryan County', NULL, 'bryan-county', 'US', 1, 33.9623000000, -96.2597500000), (1112962, 1001401, 'Bryans Road', NULL, 'bryans-road', 'US', 1, 38.6270600000, -77.0730300000), (1112963, 1001444, 'Bryant', NULL, 'bryant', 'US', 1, 34.5959300000, -92.4890500000), (1112964, 1001462, 'Bryant', NULL, 'bryant', 'US', 1, 48.2389900000, -122.1579200000), (1112965, 1001422, 'Bryn Athyn', NULL, 'bryn-athyn', 'US', 1, 40.1315000000, -75.0673900000), (1112966, 1001422, 'Bryn Mawr', NULL, 'bryn-mawr', 'US', 1, 40.0198300000, -75.3046300000), (1112967, 1001462, 'Bryn Mawr-Skyway', NULL, 'bryn-mawr-skyway', 'US', 1, 47.4943000000, -122.2409200000), (1112968, 1001447, 'Bryson City', NULL, 'bryson-city', 'US', 1, 35.4312700000, -83.4494400000), (1112969, 1001455, 'Buchanan', NULL, 'buchanan', 'US', 1, 33.8026000000, -85.1885600000), (1112970, 1001427, 'Buchanan', NULL, 'buchanan', 'US', 1, 37.5273600000, -79.6797600000), (1112971, 1001426, 'Buchanan', NULL, 'buchanan', 'US', 1, 41.8272700000, -86.3611200000), (1112972, 1001452, 'Buchanan', NULL, 'buchanan', 'US', 1, 41.2620400000, -73.9381900000), (1112973, 1001451, 'Buchanan County', NULL, 'buchanan-county', 'US', 1, 39.6598600000, -94.8061600000), (1112974, 1001427, 'Buchanan County', NULL, 'buchanan-county', 'US', 1, 37.2666300000, -82.0360300000), (1112975, 1001459, 'Buchanan County', NULL, 'buchanan-county', 'US', 1, 42.4707800000, -91.8378400000), (1112976, 1001407, 'Buchanan Dam', NULL, 'buchanan-dam', 'US', 1, 30.7399000000, -98.4311400000), (1112977, 1001434, 'Buckeye', NULL, 'buckeye', 'US', 1, 33.3703200000, -112.5837800000), (1112978, 1001401, 'Buckeystown', NULL, 'buckeystown', 'US', 1, 39.3348200000, -77.4316500000), (1112979, 1001453, 'Buckfield', NULL, 'buckfield', 'US', 1, 44.2895100000, -70.3653400000), (1112980, 1001427, 'Buckhall', NULL, 'buckhall', 'US', 1, 38.7317800000, -77.4311000000), (1112981, 1001429, 'Buckhannon', NULL, 'buckhannon', 'US', 1, 38.9939900000, -80.2320300000), (1112982, 1001436, 'Buckhead Ridge', NULL, 'buckhead-ridge', 'US', 1, 27.1303300000, -80.8936700000), (1112983, 1001416, 'Buckhorn', NULL, 'buckhorn', 'US', 1, 38.4521600000, -120.5285400000), (1112984, 1001436, 'Buckingham', NULL, 'buckingham', 'US', 1, 26.6750700000, -81.7320300000), (1112985, 1001427, 'Buckingham', NULL, 'buckingham', 'US', 1, 37.5501500000, -78.5555600000), (1112986, 1001427, 'Buckingham County', NULL, 'buckingham-county', 'US', 1, 37.5722400000, -78.5287100000), (1112987, 1001433, 'Buckland', NULL, 'buckland', 'US', 1, 42.5923100000, -72.7917600000), (1112988, 1001462, 'Buckley', NULL, 'buckley', 'US', 1, 47.1631600000, -122.0267800000), (1112989, 1001419, 'Buckner', NULL, 'buckner', 'US', 1, 38.3836800000, -85.4399600000), (1112990, 1001451, 'Buckner', NULL, 'buckner', 'US', 1, 39.1325100000, -94.1985600000), (1112991, 1001422, 'Bucks County', NULL, 'bucks-county', 'US', 1, 40.3369400000, -75.1068700000), (1112992, 1001453, 'Bucksport', NULL, 'bucksport', 'US', 1, 44.5736900000, -68.7955900000), (1112993, 1001407, 'Buda', NULL, 'buda', 'US', 1, 30.0852100000, -97.8402800000), (1112994, 1001417, 'Budd Lake', NULL, 'budd-lake', 'US', 1, 40.8712100000, -74.7340500000), (1112995, 1001430, 'Bude', NULL, 'bude', 'US', 1, 31.4629500000, -90.8501000000), (1112996, 1001419, 'Buechel', NULL, 'buechel', 'US', 1, 38.1950700000, -85.6519000000), (1112997, 1001416, 'Buellton', NULL, 'buellton', 'US', 1, 34.6136000000, -120.1926500000), (1112998, 1001417, 'Buena', NULL, 'buena', 'US', 1, 39.5137300000, -74.9246200000), (1112999, 1001416, 'Buena Park', NULL, 'buena-park', 'US', 1, 33.8675100000, -117.9981200000), (1113000, 1001455, 'Buena Vista', NULL, 'buena-vista', 'US', 1, 32.3190400000, -84.5171400000), (1113001, 1001427, 'Buena Vista', NULL, 'buena-vista', 'US', 1, 37.7343000000, -79.3539200000), (1113002, 1001426, 'Buena Vista', NULL, 'buena-vista', 'US', 1, 43.4203000000, -83.8985800000), (1113003, 1001416, 'Buena Vista', NULL, 'buena-vista', 'US', 1, 37.3213300000, -121.9166200000), (1113004, 1001450, 'Buena Vista', NULL, 'buena-vista', 'US', 1, 38.8422200000, -106.1311300000), (1113005, 1001459, 'Buena Vista County', NULL, 'buena-vista-county', 'US', 1, 42.7354900000, -95.1511500000), (1113006, 1001436, 'Buenaventura Lakes', NULL, 'buenaventura-lakes', 'US', 1, 28.3358400000, -81.3531300000), (1113007, 1001451, 'Buffalo', NULL, 'buffalo', 'US', 1, 37.6439300000, -93.0924100000), (1113008, 1001421, 'Buffalo', NULL, 'buffalo', 'US', 1, 36.8355900000, -99.6304000000), (1113009, 1001443, 'Buffalo', NULL, 'buffalo', 'US', 1, 34.7256900000, -81.6834300000), (1113010, 1001407, 'Buffalo', NULL, 'buffalo', 'US', 1, 31.4637900000, -96.0580200000), (1113011, 1001429, 'Buffalo', NULL, 'buffalo', 'US', 1, 38.6175900000, -81.9818000000), (1113012, 1001459, 'Buffalo', NULL, 'buffalo', 'US', 1, 41.4564200000, -90.7234700000), (1113013, 1001420, 'Buffalo', NULL, 'buffalo', 'US', 1, 45.1719100000, -93.8746900000), (1113014, 1001452, 'Buffalo', NULL, 'buffalo', 'US', 1, 42.8864500000, -78.8783700000), (1113015, 1001445, 'Buffalo', NULL, 'buffalo', 'US', 1, 45.5841600000, -103.5460300000), (1113016, 1001442, 'Buffalo', NULL, 'buffalo', 'US', 1, 44.3483100000, -106.6989400000), (1113017, 1001459, 'Buffalo (historical)', NULL, 'buffalo-historical', 'US', 1, 41.3111000000, -94.0035600000), (1113018, 1001408, 'Buffalo County', NULL, 'buffalo-county', 'US', 1, 40.8551500000, -99.0749700000), (1113019, 1001445, 'Buffalo County', NULL, 'buffalo-county', 'US', 1, 44.0763500000, -99.2049600000), (1113020, 1001441, 'Buffalo County', NULL, 'buffalo-county', 'US', 1, 44.3798300000, -91.7544700000), (1113021, 1001425, 'Buffalo Grove', NULL, 'buffalo-grove', 'US', 1, 42.1514100000, -87.9597900000), (1113022, 1001455, 'Buford', NULL, 'buford', 'US', 1, 34.1206600000, -84.0043500000), (1113023, 1001460, 'Buhl', NULL, 'buhl', 'US', 1, 42.5990700000, -114.7594900000), (1113024, 1001406, 'Buhler', NULL, 'buhler', 'US', 1, 38.1344500000, -97.7700500000), (1113025, 1001447, 'Buies Creek', NULL, 'buies-creek', 'US', 1, 35.4132200000, -78.7355700000), (1113026, 1001427, 'Bull Run', NULL, 'bull-run', 'US', 1, 38.7837300000, -77.5205500000), (1113027, 1001427, 'Bull Run Mountain Estates', NULL, 'bull-run-mountain-estates', 'US', 1, 38.9037200000, -77.6616600000), (1113028, 1001444, 'Bull Shoals', NULL, 'bull-shoals', 'US', 1, 36.3839600000, -92.5815500000), (1113029, 1001425, 'Bull Valley', NULL, 'bull-valley', 'US', 1, 42.3205800000, -88.3550900000), (1113030, 1001407, 'Bullard', NULL, 'bullard', 'US', 1, 32.1398800000, -95.3202300000), (1113031, 1001434, 'Bullhead City', NULL, 'bullhead-city', 'US', 1, 35.1477800000, -114.5683000000), (1113032, 1001419, 'Bullitt County', NULL, 'bullitt-county', 'US', 1, 37.9700800000, -85.6958600000), (1113033, 1001455, 'Bulloch County', NULL, 'bulloch-county', 'US', 1, 32.3968100000, -81.7431800000), (1113034, 1001456, 'Bullock County', NULL, 'bullock-county', 'US', 1, 32.1005500000, -85.7157000000), (1113035, 1001407, 'Bulverde', NULL, 'bulverde', 'US', 1, 29.7438300000, -98.4530700000), (1113036, 1001407, 'Buna', NULL, 'buna', 'US', 1, 30.4329800000, -93.9624000000), (1113037, 1001436, 'Bunche Park', NULL, 'bunche-park', 'US', 1, 25.9206500000, -80.2369900000), (1113038, 1001447, 'Buncombe County', NULL, 'buncombe-county', 'US', 1, 35.6112200000, -82.5301000000), (1113039, 1001462, 'Bunk Foss', NULL, 'bunk-foss', 'US', 1, 47.9617100000, -122.0944100000), (1113040, 1001425, 'Bunker Hill', NULL, 'bunker-hill', 'US', 1, 39.0428200000, -89.9517700000), (1113041, 1001415, 'Bunker Hill', NULL, 'bunker-hill', 'US', 1, 43.3559500000, -124.2048300000), (1113042, 1001407, 'Bunker Hill Village', NULL, 'bunker-hill-village', 'US', 1, 29.7674500000, -95.5299400000), (1113043, 1001458, 'Bunkerville', NULL, 'bunkerville', 'US', 1, 36.7730300000, -114.1280200000), (1113044, 1001457, 'Bunkie', NULL, 'bunkie', 'US', 1, 30.9532500000, -92.1826300000), (1113045, 1001436, 'Bunnell', NULL, 'bunnell', 'US', 1, 29.4660900000, -81.2578400000), (1113046, 1001425, 'Burbank', NULL, 'burbank', 'US', 1, 41.7339200000, -87.7795000000), (1113047, 1001416, 'Burbank', NULL, 'burbank', 'US', 1, 34.1808400000, -118.3089700000), (1113048, 1001462, 'Burbank', NULL, 'burbank', 'US', 1, 46.1998600000, -119.0130600000), (1113049, 1001425, 'Bureau County', NULL, 'bureau-county', 'US', 1, 41.4041500000, -89.5286800000), (1113050, 1001447, 'Burgaw', NULL, 'burgaw', 'US', 1, 34.5521100000, -77.9261000000), (1113051, 1001422, 'Burgettstown', NULL, 'burgettstown', 'US', 1, 40.3820100000, -80.3928400000), (1113052, 1001462, 'Burien', NULL, 'burien', 'US', 1, 47.4703800000, -122.3467900000), (1113053, 1001407, 'Burkburnett', NULL, 'burkburnett', 'US', 1, 34.0978700000, -98.5706100000), (1113054, 1001427, 'Burke', NULL, 'burke', 'US', 1, 38.7934500000, -77.2716500000), (1113055, 1001445, 'Burke', NULL, 'burke', 'US', 1, 43.1825000000, -99.2920500000), (1113056, 1001455, 'Burke County', NULL, 'burke-county', 'US', 1, 33.0611500000, -82.0007800000), (1113057, 1001447, 'Burke County', NULL, 'burke-county', 'US', 1, 35.7495200000, -81.7047000000), (1113058, 1001418, 'Burke County', NULL, 'burke-county', 'US', 1, 48.7910000000, -102.5182600000), (1113059, 1001419, 'Burkesville', NULL, 'burkesville', 'US', 1, 36.7903400000, -85.3705200000), (1113060, 1001418, 'Burleigh County', NULL, 'burleigh-county', 'US', 1, 46.9773900000, -100.4687300000), (1113061, 1001407, 'Burleson', NULL, 'burleson', 'US', 1, 32.5420800000, -97.3208500000), (1113062, 1001407, 'Burleson County', NULL, 'burleson-county', 'US', 1, 30.4924800000, -96.6214600000), (1113063, 1001460, 'Burley', NULL, 'burley', 'US', 1, 42.5357400000, -113.7927900000), (1113064, 1001462, 'Burley', NULL, 'burley', 'US', 1, 47.4178700000, -122.6309700000), (1113065, 1001416, 'Burlingame', NULL, 'burlingame', 'US', 1, 37.5841000000, -122.3660800000), (1113066, 1001406, 'Burlington', NULL, 'burlington', 'US', 1, 38.1944700000, -95.7427600000), (1113067, 1001419, 'Burlington', NULL, 'burlington', 'US', 1, 39.0275600000, -84.7241100000), (1113068, 1001447, 'Burlington', NULL, 'burlington', 'US', 1, 36.0956900000, -79.4378000000), (1113069, 1001459, 'Burlington', NULL, 'burlington', 'US', 1, 40.8075400000, -91.1129200000), (1113070, 1001433, 'Burlington', NULL, 'burlington', 'US', 1, 42.5048200000, -71.1956100000), (1113071, 1001417, 'Burlington', NULL, 'burlington', 'US', 1, 40.0712200000, -74.8648900000), (1113072, 1001409, 'Burlington', NULL, 'burlington', 'US', 1, 44.4758800000, -73.2120700000), (1113073, 1001441, 'Burlington', NULL, 'burlington', 'US', 1, 42.6780700000, -88.2762000000), (1113074, 1001450, 'Burlington', NULL, 'burlington', 'US', 1, 39.3061100000, -102.2693600000), (1113075, 1001418, 'Burlington', NULL, 'burlington', 'US', 1, 48.2752900000, -101.4287800000), (1113076, 1001462, 'Burlington', NULL, 'burlington', 'US', 1, 48.4756600000, -122.3254400000), (1113077, 1001417, 'Burlington County', NULL, 'burlington-county', 'US', 1, 39.8776900000, -74.6682000000), (1113078, 1001407, 'Burnet', NULL, 'burnet', 'US', 1, 30.7582400000, -98.2283600000), (1113079, 1001407, 'Burnet County', NULL, 'burnet-county', 'US', 1, 30.7883000000, -98.1824500000), (1113080, 1001441, 'Burnett County', NULL, 'burnett-county', 'US', 1, 45.8627200000, -92.3675700000), (1113081, 1001443, 'Burnettown', NULL, 'burnettown', 'US', 1, 33.5154100000, -81.8490000000), (1113082, 1001416, 'Burney', NULL, 'burney', 'US', 1, 40.8823800000, -121.6608200000), (1113083, 1001425, 'Burnham', NULL, 'burnham', 'US', 1, 41.6389200000, -87.5567100000), (1113084, 1001453, 'Burnham', NULL, 'burnham', 'US', 1, 44.6928400000, -69.4275500000), (1113085, 1001422, 'Burnham', NULL, 'burnham', 'US', 1, 40.6386800000, -77.5686100000), (1113086, 1001454, 'Burns', NULL, 'burns', 'US', 1, 36.0533900000, -87.3125100000), (1113087, 1001415, 'Burns', NULL, 'burns', 'US', 1, 43.5862600000, -119.0541000000), (1113088, 1001421, 'Burns Flat', NULL, 'burns-flat', 'US', 1, 35.3489400000, -99.1703600000), (1113089, 1001440, 'Burns Harbor', NULL, 'burns-harbor', 'US', 1, 41.6258700000, -87.1333700000), (1113090, 1001447, 'Burnsville', NULL, 'burnsville', 'US', 1, 35.9173400000, -82.3009600000), (1113091, 1001420, 'Burnsville', NULL, 'burnsville', 'US', 1, 44.7677400000, -93.2777200000), (1113092, 1001436, 'Burnt Store Marina', NULL, 'burnt-store-marina', 'US', 1, 26.7650700000, -82.0509200000), (1113093, 1001425, 'Burr Ridge', NULL, 'burr-ridge', 'US', 1, 41.7489200000, -87.9183900000), (1113094, 1001426, 'Burt', NULL, 'burt', 'US', 1, 43.2366900000, -83.9063600000), (1113095, 1001408, 'Burt County', NULL, 'burt-county', 'US', 1, 41.8515600000, -96.3286000000), (1113096, 1001443, 'Burton', NULL, 'burton', 'US', 1, 32.4357500000, -80.7240000000), (1113097, 1001426, 'Burton', NULL, 'burton', 'US', 1, 42.9994700000, -83.6163400000), (1113098, 1001401, 'Burtonsville', NULL, 'burtonsville', 'US', 1, 39.1112200000, -76.9324800000), (1113099, 1001408, 'Burwell', NULL, 'burwell', 'US', 1, 41.7816700000, -99.1331500000), (1113100, 1001407, 'Bushland', NULL, 'bushland', 'US', 1, 35.1920000000, -102.0646400000), (1113101, 1001436, 'Bushnell', NULL, 'bushnell', 'US', 1, 28.6649900000, -82.1128600000), (1113102, 1001425, 'Bushnell', NULL, 'bushnell', 'US', 1, 40.5528200000, -90.5062400000), (1113103, 1001452, 'Bushwick', NULL, 'bushwick', 'US', 1, 40.6942700000, -73.9187500000), (1113104, 1001421, 'Bushyhead', NULL, 'bushyhead', 'US', 1, 36.4614800000, -95.4941400000), (1113105, 1001401, 'Butcher''s Hill', NULL, 'butcher-s-hill', 'US', 1, 39.2895500000, -76.5883000000), (1113106, 1001456, 'Butler', NULL, 'butler', 'US', 1, 32.0895900000, -88.2219700000), (1113107, 1001455, 'Butler', NULL, 'butler', 'US', 1, 32.5570900000, -84.2382500000), (1113108, 1001451, 'Butler', NULL, 'butler', 'US', 1, 38.2586300000, -94.3305100000), (1113109, 1001440, 'Butler', NULL, 'butler', 'US', 1, 41.4297700000, -84.8713500000), (1113110, 1001417, 'Butler', NULL, 'butler', 'US', 1, 41.0037100000, -74.3415400000), (1113111, 1001422, 'Butler', NULL, 'butler', 'US', 1, 40.8611800000, -79.8953300000), (1113112, 1001441, 'Butler', NULL, 'butler', 'US', 1, 43.1058400000, -88.0695300000), (1113113, 1001436, 'Butler Beach', NULL, 'butler-beach', 'US', 1, 29.7983000000, -81.2670100000), (1113114, 1001456, 'Butler County', NULL, 'butler-county', 'US', 1, 31.7524300000, -86.6802900000), (1113115, 1001406, 'Butler County', NULL, 'butler-county', 'US', 1, 37.7812700000, -96.8390700000), (1113116, 1001419, 'Butler County', NULL, 'butler-county', 'US', 1, 37.2072800000, -86.6817600000), (1113117, 1001451, 'Butler County', NULL, 'butler-county', 'US', 1, 36.7164200000, -90.4065600000), (1113118, 1001459, 'Butler County', NULL, 'butler-county', 'US', 1, 42.7315700000, -92.7901900000), (1113119, 1001408, 'Butler County', NULL, 'butler-county', 'US', 1, 41.2260800000, -97.1317700000), (1113120, 1001422, 'Butler County', NULL, 'butler-county', 'US', 1, 40.9117200000, -79.9129900000), (1113121, 1001447, 'Butner', NULL, 'butner', 'US', 1, 36.1320900000, -78.7566700000), (1113122, 1001408, 'Butte', NULL, 'butte', 'US', 1, 42.9113900000, -98.8492600000), (1113123, 1001446, 'Butte', NULL, 'butte', 'US', 1, 46.0038200000, -112.5347400000), (1113124, 1001400, 'Butte', NULL, 'butte', 'US', 1, 61.5422200000, -149.0333300000), (1113125, 1001416, 'Butte County', NULL, 'butte-county', 'US', 1, 39.6669300000, -121.6006700000), (1113126, 1001460, 'Butte County', NULL, 'butte-county', 'US', 1, 43.7228700000, -113.1720200000), (1113127, 1001445, 'Butte County', NULL, 'butte-county', 'US', 1, 44.9058300000, -103.5080200000), (1113128, 1001446, 'Butte-Silver Bow (Balance)', NULL, 'butte-silver-bow-balance', 'US', 1, 45.9019400000, -112.6570800000), (1113129, 1001416, 'Buttonwillow', NULL, 'buttonwillow', 'US', 1, 35.4005200000, -119.4695600000), (1113130, 1001455, 'Butts County', NULL, 'butts-county', 'US', 1, 33.2878500000, -83.9571700000), (1113131, 1001447, 'Buxton', NULL, 'buxton', 'US', 1, 35.2676800000, -75.5423700000), (1113132, 1001453, 'Buxton', NULL, 'buxton', 'US', 1, 43.6378600000, -70.5189400000), (1113133, 1001433, 'Buzzards Bay', NULL, 'buzzards-bay', 'US', 1, 41.7453800000, -70.6180900000), (1113134, 1001450, 'Byers', NULL, 'byers', 'US', 1, 39.7113700000, -104.2277400000), (1113135, 1001430, 'Byhalia', NULL, 'byhalia', 'US', 1, 34.8723200000, -89.6906400000), (1113136, 1001434, 'Bylas', NULL, 'bylas', 'US', 1, 33.1342800000, -110.1200400000), (1113137, 1001421, 'Byng', NULL, 'byng', 'US', 1, 34.8612000000, -96.6655700000), (1113138, 1001456, 'Bynum', NULL, 'bynum', 'US', 1, 33.6131600000, -85.9610800000), (1113139, 1001430, 'Byram', NULL, 'byram', 'US', 1, 32.1793200000, -90.2453700000), (1113140, 1001435, 'Byram', NULL, 'byram', 'US', 1, 41.0042600000, -73.6537400000), (1113141, 1001454, 'Byrdstown', NULL, 'byrdstown', 'US', 1, 36.5745100000, -85.1288400000), (1113142, 1001451, 'Byrnes Mill', NULL, 'byrnes-mill', 'US', 1, 38.4378300000, -90.5817900000), (1113143, 1001455, 'Byron', NULL, 'byron', 'US', 1, 32.6537600000, -83.7596300000), (1113144, 1001425, 'Byron', NULL, 'byron', 'US', 1, 42.1269700000, -89.2556600000), (1113145, 1001420, 'Byron', NULL, 'byron', 'US', 1, 44.0327400000, -92.6454600000), (1113146, 1001416, 'Byron', NULL, 'byron', 'US', 1, 37.8671500000, -121.6380100000), (1113147, 1001426, 'Byron Center', NULL, 'byron-center', 'US', 1, 42.8122500000, -85.7228100000), (1113148, 1001416, 'Bystrom', NULL, 'bystrom', 'US', 1, 37.6207600000, -120.9857700000), (1113149, 1001447, 'Cabarrus County', NULL, 'cabarrus-county', 'US', 1, 35.3868700000, -80.5520400000), (1113150, 1001416, 'Cabazon', NULL, 'cabazon', 'US', 1, 33.9175200000, -116.7872400000), (1113151, 1001429, 'Cabell County', NULL, 'cabell-county', 'US', 1, 38.4203000000, -82.2417200000), (1113152, 1001401, 'Cabin John', NULL, 'cabin-john', 'US', 1, 38.9753900000, -77.1580300000), (1113153, 1001451, 'Cabool', NULL, 'cabool', 'US', 1, 37.1239400000, -92.1012700000); INSERT INTO `[[dbprefix]]t_city` VALUES (1113154, 1001444, 'Cabot', NULL, 'cabot', 'US', 1, 34.9745300000, -92.0165300000), (1113155, 1001421, 'Cache', NULL, 'cache', 'US', 1, 34.6295200000, -98.6286700000), (1113156, 1001414, 'Cache County', NULL, 'cache-county', 'US', 1, 41.7223700000, -111.7435600000), (1113157, 1001407, 'Cactus', NULL, 'cactus', 'US', 1, 36.0522600000, -102.0024000000), (1113158, 1001434, 'Cactus Flat', NULL, 'cactus-flat', 'US', 1, 32.7584000000, -109.7161900000), (1113159, 1001421, 'Caddo', NULL, 'caddo', 'US', 1, 34.1267600000, -96.2633200000), (1113160, 1001421, 'Caddo County', NULL, 'caddo-county', 'US', 1, 35.1743800000, -98.3751500000), (1113161, 1001407, 'Caddo Mills', NULL, 'caddo-mills', 'US', 1, 33.0656700000, -96.2277600000), (1113162, 1001457, 'Caddo Parish', NULL, 'caddo-parish', 'US', 1, 32.5801700000, -93.8823500000), (1113163, 1001457, 'Cade', NULL, 'cade', 'US', 1, 30.0874200000, -91.9054000000), (1113164, 1001426, 'Cadillac', NULL, 'cadillac', 'US', 1, 44.2519500000, -85.4011600000), (1113165, 1001419, 'Cadiz', NULL, 'cadiz', 'US', 1, 36.8650500000, -87.8353000000), (1113166, 1001441, 'Cadott', NULL, 'cadott', 'US', 1, 44.9480200000, -91.1507000000), (1113167, 1001456, 'Cahaba Heights', NULL, 'cahaba-heights', 'US', 1, 33.4640000000, -86.7319300000), (1113168, 1001425, 'Cahokia', NULL, 'cahokia', 'US', 1, 38.5708800000, -90.1901100000), (1113169, 1001455, 'Cairo', NULL, 'cairo', 'US', 1, 30.8775100000, -84.2021400000), (1113170, 1001425, 'Cairo', NULL, 'cairo', 'US', 1, 37.0053300000, -89.1764600000), (1113171, 1001452, 'Cairo', NULL, 'cairo', 'US', 1, 42.2989700000, -73.9984700000), (1113172, 1001447, 'Cajahs Mountain', NULL, 'cajahs-mountain', 'US', 1, 35.8348500000, -81.5414800000), (1113173, 1001416, 'Calabasas', NULL, 'calabasas', 'US', 1, 34.1577800000, -118.6384200000), (1113174, 1001447, 'Calabash', NULL, 'calabash', 'US', 1, 33.8907300000, -78.5683400000), (1113175, 1001453, 'Calais', NULL, 'calais', 'US', 1, 45.1837600000, -67.2766200000), (1113176, 1001416, 'Calaveras County', NULL, 'calaveras-county', 'US', 1, 38.2046100000, -120.5541300000), (1113177, 1001457, 'Calcasieu Parish', NULL, 'calcasieu-parish', 'US', 1, 30.2292200000, -93.3579500000), (1113178, 1001452, 'Calcium', NULL, 'calcium', 'US', 1, 44.0217300000, -75.8460400000), (1113179, 1001406, 'Caldwell', NULL, 'caldwell', 'US', 1, 37.0322500000, -97.6069900000), (1113180, 1001407, 'Caldwell', NULL, 'caldwell', 'US', 1, 30.5313200000, -96.6930300000), (1113181, 1001417, 'Caldwell', NULL, 'caldwell', 'US', 1, 40.8398200000, -74.2765400000), (1113182, 1001460, 'Caldwell', NULL, 'caldwell', 'US', 1, 43.6629400000, -116.6873600000), (1113183, 1001419, 'Caldwell County', NULL, 'caldwell-county', 'US', 1, 37.1453300000, -87.8679100000), (1113184, 1001451, 'Caldwell County', NULL, 'caldwell-county', 'US', 1, 39.6557500000, -93.9828000000), (1113185, 1001447, 'Caldwell County', NULL, 'caldwell-county', 'US', 1, 35.9529700000, -81.5465500000), (1113186, 1001407, 'Caldwell County', NULL, 'caldwell-county', 'US', 1, 29.8371200000, -97.6200000000), (1113187, 1001457, 'Caldwell Parish', NULL, 'caldwell-parish', 'US', 1, 32.0922700000, -92.1166100000), (1113188, 1001430, 'Caledonia', NULL, 'caledonia', 'US', 1, 33.6828900000, -88.3244800000), (1113189, 1001426, 'Caledonia', NULL, 'caledonia', 'US', 1, 42.7892000000, -85.5166900000), (1113190, 1001420, 'Caledonia', NULL, 'caledonia', 'US', 1, 43.6346900000, -91.4968100000), (1113191, 1001452, 'Caledonia', NULL, 'caledonia', 'US', 1, 42.9731200000, -77.8527800000), (1113192, 1001441, 'Caledonia', NULL, 'caledonia', 'US', 1, 42.8078000000, -87.9242500000), (1113193, 1001409, 'Caledonia County', NULL, 'caledonia-county', 'US', 1, 44.4647200000, -72.1021900000), (1113194, 1001456, 'Calera', NULL, 'calera', 'US', 1, 33.1029000000, -86.7536000000), (1113195, 1001421, 'Calera', NULL, 'calera', 'US', 1, 33.9345400000, -96.4286000000), (1113196, 1001416, 'Calexico', NULL, 'calexico', 'US', 1, 32.6789500000, -115.4988800000), (1113197, 1001455, 'Calhoun', NULL, 'calhoun', 'US', 1, 34.5025900000, -84.9510500000), (1113198, 1001419, 'Calhoun', NULL, 'calhoun', 'US', 1, 37.5389400000, -87.2583300000), (1113199, 1001430, 'Calhoun City', NULL, 'calhoun-city', 'US', 1, 33.8553900000, -89.3114600000), (1113200, 1001456, 'Calhoun County', NULL, 'calhoun-county', 'US', 1, 33.7714300000, -85.8260300000), (1113201, 1001444, 'Calhoun County', NULL, 'calhoun-county', 'US', 1, 33.5580300000, -92.5030400000), (1113202, 1001436, 'Calhoun County', NULL, 'calhoun-county', 'US', 1, 30.4060300000, -85.1972100000), (1113203, 1001455, 'Calhoun County', NULL, 'calhoun-county', 'US', 1, 31.5292000000, -84.6245100000), (1113204, 1001425, 'Calhoun County', NULL, 'calhoun-county', 'US', 1, 39.1693000000, -90.6675300000), (1113205, 1001430, 'Calhoun County', NULL, 'calhoun-county', 'US', 1, 33.9364500000, -89.3364500000), (1113206, 1001443, 'Calhoun County', NULL, 'calhoun-county', 'US', 1, 33.6748600000, -80.7802800000), (1113207, 1001407, 'Calhoun County', NULL, 'calhoun-county', 'US', 1, 28.4391100000, -96.6150700000), (1113208, 1001429, 'Calhoun County', NULL, 'calhoun-county', 'US', 1, 38.8445000000, -81.1175700000), (1113209, 1001459, 'Calhoun County', NULL, 'calhoun-county', 'US', 1, 42.3851800000, -94.6404100000), (1113210, 1001426, 'Calhoun County', NULL, 'calhoun-county', 'US', 1, 42.2465300000, -85.0055900000), (1113211, 1001443, 'Calhoun Falls', NULL, 'calhoun-falls', 'US', 1, 34.0923400000, -82.5956900000), (1113212, 1001444, 'Calico Rock', NULL, 'calico-rock', 'US', 1, 36.1195100000, -92.1359900000), (1113213, 1001458, 'Caliente', NULL, 'caliente', 'US', 1, 37.6149600000, -114.5119400000), (1113214, 1001417, 'Califon', NULL, 'califon', 'US', 1, 40.7195400000, -74.8357200000), (1113215, 1001451, 'California', NULL, 'california', 'US', 1, 38.6275300000, -92.5665800000), (1113216, 1001401, 'California', NULL, 'california', 'US', 1, 38.3004000000, -76.5074500000), (1113217, 1001422, 'California', NULL, 'california', 'US', 1, 40.0656300000, -79.8917100000), (1113218, 1001416, 'California City', NULL, 'california-city', 'US', 1, 35.1258000000, -117.9859000000), (1113219, 1001416, 'Calimesa', NULL, 'calimesa', 'US', 1, 34.0039000000, -117.0619800000), (1113220, 1001416, 'Calipatria', NULL, 'calipatria', 'US', 1, 33.1256000000, -115.5141500000), (1113221, 1001416, 'Calistoga', NULL, 'calistoga', 'US', 1, 38.5788000000, -122.5797100000), (1113222, 1001436, 'Callahan', NULL, 'callahan', 'US', 1, 30.5621800000, -81.8306600000), (1113223, 1001407, 'Callahan County', NULL, 'callahan-county', 'US', 1, 32.2976600000, -99.3734900000), (1113224, 1001436, 'Callaway', NULL, 'callaway', 'US', 1, 30.1529800000, -85.5699300000), (1113225, 1001451, 'Callaway County', NULL, 'callaway-county', 'US', 1, 38.8355200000, -91.9260100000), (1113226, 1001416, 'Callender', NULL, 'callender', 'US', 1, 35.0530300000, -120.5962800000), (1113227, 1001419, 'Calloway County', NULL, 'calloway-county', 'US', 1, 36.6211000000, -88.2722000000), (1113228, 1001422, 'Caln', NULL, 'caln', 'US', 1, 39.9909400000, -75.7802200000), (1113229, 1001422, 'Calumet', NULL, 'calumet', 'US', 1, 40.2109000000, -79.4853200000), (1113230, 1001425, 'Calumet City', NULL, 'calumet-city', 'US', 1, 41.6155900000, -87.5294900000), (1113231, 1001441, 'Calumet County', NULL, 'calumet-county', 'US', 1, 44.0816000000, -88.2180600000), (1113232, 1001425, 'Calumet Park', NULL, 'calumet-park', 'US', 1, 41.6628100000, -87.6606000000), (1113233, 1001407, 'Calvert', NULL, 'calvert', 'US', 1, 30.9779700000, -96.6738600000), (1113234, 1001419, 'Calvert City', NULL, 'calvert-city', 'US', 1, 37.0333900000, -88.3500400000), (1113235, 1001401, 'Calvert County', NULL, 'calvert-county', 'US', 1, 38.5347100000, -76.5305600000), (1113236, 1001401, 'Calverton', NULL, 'calverton', 'US', 1, 39.0576100000, -76.9358100000), (1113237, 1001452, 'Calverton', NULL, 'calverton', 'US', 1, 40.9064900000, -72.7434300000), (1113238, 1001451, 'Calverton Park', NULL, 'calverton-park', 'US', 1, 38.7647700000, -90.3137300000), (1113239, 1001459, 'Camanche', NULL, 'camanche', 'US', 1, 41.7880900000, -90.2562400000), (1113240, 1001462, 'Camano', NULL, 'camano', 'US', 1, 48.1739900000, -122.5282100000), (1113241, 1001419, 'Camargo', NULL, 'camargo', 'US', 1, 37.9942500000, -83.8877000000), (1113242, 1001416, 'Camarillo', NULL, 'camarillo', 'US', 1, 34.2163900000, -119.0376000000), (1113243, 1001462, 'Camas', NULL, 'camas', 'US', 1, 45.5870600000, -122.3995400000), (1113244, 1001460, 'Camas County', NULL, 'camas-county', 'US', 1, 43.4632500000, -114.8058500000), (1113245, 1001425, 'Cambria', NULL, 'cambria', 'US', 1, 37.7814400000, -89.1192500000), (1113246, 1001416, 'Cambria', NULL, 'cambria', 'US', 1, 35.5641400000, -121.0807500000), (1113247, 1001422, 'Cambria County', NULL, 'cambria-county', 'US', 1, 40.4952900000, -78.7137000000), (1113248, 1001452, 'Cambria Heights', NULL, 'cambria-heights', 'US', 1, 40.6945500000, -73.7384700000), (1113249, 1001416, 'Cambrian Park', NULL, 'cambrian-park', 'US', 1, 37.2568900000, -121.9307900000), (1113250, 1001401, 'Cambridge', NULL, 'cambridge', 'US', 1, 38.5631700000, -76.0788300000), (1113251, 1001425, 'Cambridge', NULL, 'cambridge', 'US', 1, 41.3036500000, -90.1929000000), (1113252, 1001433, 'Cambridge', NULL, 'cambridge', 'US', 1, 42.3751000000, -71.1056100000), (1113253, 1001420, 'Cambridge', NULL, 'cambridge', 'US', 1, 45.5727400000, -93.2243900000), (1113254, 1001452, 'Cambridge', NULL, 'cambridge', 'US', 1, 43.0281300000, -73.3812200000), (1113255, 1001441, 'Cambridge', NULL, 'cambridge', 'US', 1, 43.0036100000, -89.0165000000), (1113256, 1001408, 'Cambridge', NULL, 'cambridge', 'US', 1, 40.2819500000, -100.1656900000), (1113257, 1001440, 'Cambridge City', NULL, 'cambridge-city', 'US', 1, 39.8125500000, -85.1716300000), (1113258, 1001422, 'Cambridge Springs', NULL, 'cambridge-springs', 'US', 1, 41.8036700000, -80.0564400000), (1113259, 1001456, 'Camden', NULL, 'camden', 'US', 1, 31.9909800000, -87.2905500000), (1113260, 1001444, 'Camden', NULL, 'camden', 'US', 1, 33.5845600000, -92.8343300000), (1113261, 1001399, 'Camden', NULL, 'camden', 'US', 1, 39.1134500000, -75.5418700000), (1113262, 1001447, 'Camden', NULL, 'camden', 'US', 1, 36.3284900000, -76.1718800000), (1113263, 1001417, 'Camden', NULL, 'camden', 'US', 1, 39.9259500000, -75.1196200000), (1113264, 1001443, 'Camden', NULL, 'camden', 'US', 1, 34.2465400000, -80.6070200000), (1113265, 1001454, 'Camden', NULL, 'camden', 'US', 1, 36.0589500000, -88.0978200000), (1113266, 1001453, 'Camden', NULL, 'camden', 'US', 1, 44.2098000000, -69.0647600000), (1113267, 1001452, 'Camden', NULL, 'camden', 'US', 1, 43.3345100000, -75.7479600000), (1113268, 1001455, 'Camden County', NULL, 'camden-county', 'US', 1, 30.9224900000, -81.6363900000), (1113269, 1001451, 'Camden County', NULL, 'camden-county', 'US', 1, 38.0270400000, -92.7660500000), (1113270, 1001447, 'Camden County', NULL, 'camden-county', 'US', 1, 36.3414500000, -76.1611200000), (1113271, 1001417, 'Camden County', NULL, 'camden-county', 'US', 1, 39.8035300000, -74.9597600000), (1113272, 1001451, 'Camdenton', NULL, 'camdenton', 'US', 1, 38.0080900000, -92.7446300000), (1113273, 1001451, 'Cameron', NULL, 'cameron', 'US', 1, 39.7402800000, -94.2410600000), (1113274, 1001457, 'Cameron', NULL, 'cameron', 'US', 1, 29.7977200000, -93.3251500000), (1113275, 1001407, 'Cameron', NULL, 'cameron', 'US', 1, 30.8532500000, -96.9769300000), (1113276, 1001441, 'Cameron', NULL, 'cameron', 'US', 1, 45.4085700000, -91.7440600000), (1113277, 1001407, 'Cameron County', NULL, 'cameron-county', 'US', 1, 26.1515000000, -97.4528600000), (1113278, 1001422, 'Cameron County', NULL, 'cameron-county', 'US', 1, 41.4368000000, -78.2037800000), (1113279, 1001457, 'Cameron Parish', NULL, 'cameron-parish', 'US', 1, 29.8468700000, -93.1989000000), (1113280, 1001407, 'Cameron Park', NULL, 'cameron-park', 'US', 1, 25.9645200000, -97.4766500000), (1113281, 1001416, 'Cameron Park', NULL, 'cameron-park', 'US', 1, 38.6687900000, -120.9871600000), (1113282, 1001407, 'Cameron Park Colonia', NULL, 'cameron-park-colonia', 'US', 1, 25.9714700000, -97.4783200000), (1113283, 1001455, 'Camilla', NULL, 'camilla', 'US', 1, 31.2312900000, -84.2104600000), (1113284, 1001452, 'Camillus', NULL, 'camillus', 'US', 1, 43.0392300000, -76.3041000000), (1113285, 1001416, 'Camino', NULL, 'camino', 'US', 1, 38.7382400000, -120.6749300000), (1113286, 1001407, 'Camp County', NULL, 'camp-county', 'US', 1, 32.9732200000, -94.9784800000), (1113287, 1001422, 'Camp Hill', NULL, 'camp-hill', 'US', 1, 40.2398100000, -76.9199700000), (1113288, 1001441, 'Camp Lake', NULL, 'camp-lake', 'US', 1, 42.5347400000, -88.1437000000), (1113289, 1001416, 'Camp Meeker', NULL, 'camp-meeker', 'US', 1, 38.4251900000, -122.9594400000), (1113290, 1001416, 'Camp Pendleton North', NULL, 'camp-pendleton-north', 'US', 1, 33.3146500000, -117.3160300000), (1113291, 1001416, 'Camp Pendleton South', NULL, 'camp-pendleton-south', 'US', 1, 33.2284400000, -117.3792900000), (1113292, 1001425, 'Camp Point', NULL, 'camp-point', 'US', 1, 40.0392100000, -91.0693000000), (1113293, 1001401, 'Camp Springs', NULL, 'camp-springs', 'US', 1, 38.8040000000, -76.9066400000), (1113294, 1001407, 'Camp Swift', NULL, 'camp-swift', 'US', 1, 30.1907700000, -97.2922100000), (1113295, 1001434, 'Camp Verde', NULL, 'camp-verde', 'US', 1, 34.5636400000, -111.8543200000), (1113296, 1001436, 'Campbell', NULL, 'campbell', 'US', 1, 28.2589000000, -81.4564600000), (1113297, 1001451, 'Campbell', NULL, 'campbell', 'US', 1, 36.4933900000, -90.0750900000), (1113298, 1001416, 'Campbell', NULL, 'campbell', 'US', 1, 37.2871700000, -121.9499600000), (1113299, 1001454, 'Campbell County', NULL, 'campbell-county', 'US', 1, 36.4035100000, -84.1493800000), (1113300, 1001419, 'Campbell County', NULL, 'campbell-county', 'US', 1, 38.9464800000, -84.3797000000), (1113301, 1001427, 'Campbell County', NULL, 'campbell-county', 'US', 1, 37.2056400000, -79.0963500000), (1113302, 1001445, 'Campbell County', NULL, 'campbell-county', 'US', 1, 45.7711300000, -100.0516300000), (1113303, 1001442, 'Campbell County', NULL, 'campbell-county', 'US', 1, 44.2483900000, -105.5483100000), (1113304, 1001441, 'Campbellsport', NULL, 'campbellsport', 'US', 1, 43.5977700000, -88.2789900000), (1113305, 1001419, 'Campbellsville', NULL, 'campbellsville', 'US', 1, 37.3434000000, -85.3419100000), (1113306, 1001422, 'Campbelltown', NULL, 'campbelltown', 'US', 1, 40.2775900000, -76.5852500000), (1113307, 1001450, 'Campion', NULL, 'campion', 'US', 1, 40.3494300000, -105.0777600000), (1113308, 1001416, 'Campo', NULL, 'campo', 'US', 1, 32.6064500000, -116.4689100000), (1113309, 1001457, 'Campti', NULL, 'campti', 'US', 1, 31.8935000000, -93.1182200000), (1113310, 1001419, 'Campton', NULL, 'campton', 'US', 1, 37.7342500000, -83.5474100000), (1113311, 1001427, 'Cana', NULL, 'cana', 'US', 1, 36.5895800000, -80.6717300000), (1113312, 1001453, 'Canaan', NULL, 'canaan', 'US', 1, 44.7617300000, -69.5614400000), (1113313, 1001435, 'Canaan', NULL, 'canaan', 'US', 1, 42.0273100000, -73.3292800000), (1113314, 1001407, 'Canadian', NULL, 'canadian', 'US', 1, 35.9128200000, -100.3820800000), (1113315, 1001421, 'Canadian County', NULL, 'canadian-county', 'US', 1, 35.5424400000, -97.9823800000), (1113316, 1001426, 'Canadian Lakes', NULL, 'canadian-lakes', 'US', 1, 43.5791900000, -85.3017000000), (1113317, 1001452, 'Canajoharie', NULL, 'canajoharie', 'US', 1, 42.9056300000, -74.5718100000), (1113318, 1001452, 'Canandaigua', NULL, 'canandaigua', 'US', 1, 42.8742300000, -77.2880400000), (1113319, 1001452, 'Canarsie', NULL, 'canarsie', 'US', 1, 40.6437200000, -73.9006900000), (1113320, 1001452, 'Canastota', NULL, 'canastota', 'US', 1, 43.0795100000, -75.7507400000), (1113321, 1001420, 'Canby', NULL, 'canby', 'US', 1, 44.7088500000, -96.2764300000), (1113322, 1001415, 'Canby', NULL, 'canby', 'US', 1, 45.2629000000, -122.6925900000), (1113323, 1001404, 'Candia', NULL, 'candia', 'US', 1, 43.0778600000, -71.2767300000), (1113324, 1001455, 'Candler County', NULL, 'candler-county', 'US', 1, 32.4034400000, -82.0736700000), (1113325, 1001455, 'Candler-McAfee', NULL, 'candler-mcafee', 'US', 1, 33.7267200000, -84.2724600000), (1113326, 1001418, 'Cando', NULL, 'cando', 'US', 1, 48.4866700000, -99.2098600000), (1113327, 1001443, 'Cane Savannah', NULL, 'cane-savannah', 'US', 1, 33.9018200000, -80.4503600000), (1113328, 1001406, 'Caney', NULL, 'caney', 'US', 1, 37.0114600000, -95.9352600000), (1113329, 1001452, 'Canisteo', NULL, 'canisteo', 'US', 1, 42.2703500000, -77.6058200000), (1113330, 1001440, 'Cannelton', NULL, 'cannelton', 'US', 1, 37.9114400000, -86.7444300000), (1113331, 1001423, 'Cannon Air Force Base', NULL, 'cannon-air-force-base', 'US', 1, 34.3968900000, -103.3244400000), (1113332, 1001415, 'Cannon Beach', NULL, 'cannon-beach', 'US', 1, 45.8917700000, -123.9615300000), (1113333, 1001454, 'Cannon County', NULL, 'cannon-county', 'US', 1, 35.8086800000, -86.0617400000), (1113334, 1001420, 'Cannon Falls', NULL, 'cannon-falls', 'US', 1, 44.5069100000, -92.9054800000), (1113335, 1001416, 'Canoga Park', NULL, 'canoga-park', 'US', 1, 34.2011200000, -118.5981400000), (1113336, 1001422, 'Canonsburg', NULL, 'canonsburg', 'US', 1, 40.2625700000, -80.1872800000), (1113337, 1001404, 'Canterbury', NULL, 'canterbury', 'US', 1, 43.3370200000, -71.5653500000), (1113338, 1001462, 'Canterwood', NULL, 'canterwood', 'US', 1, 47.3751000000, -122.5893000000), (1113339, 1001455, 'Canton', NULL, 'canton', 'US', 1, 34.2367600000, -84.4907600000), (1113340, 1001430, 'Canton', NULL, 'canton', 'US', 1, 32.6126400000, -90.0367500000), (1113341, 1001447, 'Canton', NULL, 'canton', 'US', 1, 35.5328800000, -82.8373600000), (1113342, 1001407, 'Canton', NULL, 'canton', 'US', 1, 32.5565200000, -95.8633000000), (1113343, 1001425, 'Canton', NULL, 'canton', 'US', 1, 40.5580900000, -90.0351200000), (1113344, 1001433, 'Canton', NULL, 'canton', 'US', 1, 42.1584300000, -71.1447700000), (1113345, 1001426, 'Canton', NULL, 'canton', 'US', 1, 42.3086500000, -83.4821600000), (1113346, 1001453, 'Canton', NULL, 'canton', 'US', 1, 44.4408000000, -70.3164900000), (1113347, 1001452, 'Canton', NULL, 'canton', 'US', 1, 44.5956200000, -75.1690900000), (1113348, 1001451, 'Canton', NULL, 'canton', 'US', 1, 40.1250400000, -91.6251600000), (1113349, 1001422, 'Canton', NULL, 'canton', 'US', 1, 41.6564600000, -76.8532900000), (1113350, 1001445, 'Canton', NULL, 'canton', 'US', 1, 43.3008100000, -96.5928200000), (1113351, 1001435, 'Canton Valley', NULL, 'canton-valley', 'US', 1, 41.8342600000, -72.8917700000), (1113352, 1001436, 'Cantonment', NULL, 'cantonment', 'US', 1, 30.6085300000, -87.3399800000), (1113353, 1001407, 'Canutillo', NULL, 'canutillo', 'US', 1, 31.9114900000, -106.6002700000), (1113354, 1001407, 'Canyon', NULL, 'canyon', 'US', 1, 34.9803300000, -101.9188000000), (1113355, 1001415, 'Canyon City', NULL, 'canyon-city', 'US', 1, 44.3896000000, -118.9502300000), (1113356, 1001460, 'Canyon County', NULL, 'canyon-county', 'US', 1, 43.6251300000, -116.7092900000), (1113357, 1001434, 'Canyon Day', NULL, 'canyon-day', 'US', 1, 33.7847700000, -110.0264900000), (1113358, 1001407, 'Canyon Lake', NULL, 'canyon-lake', 'US', 1, 29.8752200000, -98.2625100000), (1113359, 1001416, 'Canyon Lake', NULL, 'canyon-lake', 'US', 1, 33.6850200000, -117.2730900000), (1113360, 1001414, 'Canyon Rim', NULL, 'canyon-rim', 'US', 1, 40.7066100000, -111.8218800000), (1113361, 1001415, 'Canyonville', NULL, 'canyonville', 'US', 1, 42.9273400000, -123.2811700000), (1113362, 1001426, 'Capac', NULL, 'capac', 'US', 1, 43.0125300000, -82.9279900000), (1113363, 1001436, 'Cape Canaveral', NULL, 'cape-canaveral', 'US', 1, 28.4058400000, -80.6047700000), (1113364, 1001447, 'Cape Carteret', NULL, 'cape-carteret', 'US', 1, 34.6915500000, -77.0630000000), (1113365, 1001427, 'Cape Charles', NULL, 'cape-charles', 'US', 1, 37.2700800000, -76.0164900000), (1113366, 1001436, 'Cape Coral', NULL, 'cape-coral', 'US', 1, 26.5628500000, -81.9495300000), (1113367, 1001451, 'Cape Girardeau', NULL, 'cape-girardeau', 'US', 1, 37.3058800000, -89.5181500000), (1113368, 1001451, 'Cape Girardeau County', NULL, 'cape-girardeau-county', 'US', 1, 37.3840400000, -89.6844500000), (1113369, 1001417, 'Cape May', NULL, 'cape-may', 'US', 1, 38.9351100000, -74.9060100000), (1113370, 1001417, 'Cape May County', NULL, 'cape-may-county', 'US', 1, 39.0851300000, -74.8499800000), (1113371, 1001417, 'Cape May Court House', NULL, 'cape-may-court-house', 'US', 1, 39.0826100000, -74.8237800000), (1113372, 1001453, 'Cape Neddick', NULL, 'cape-neddick', 'US', 1, 43.1937000000, -70.6208900000), (1113373, 1001401, 'Cape Saint Claire', NULL, 'cape-saint-claire', 'US', 1, 39.0431700000, -76.4449600000), (1113374, 1001423, 'Capitan', NULL, 'capitan', 'US', 1, 33.5453600000, -105.5722000000), (1113375, 1001401, 'Capitol Heights', NULL, 'capitol-heights', 'US', 1, 38.8851100000, -76.9158100000), (1113376, 1001416, 'Capitola', NULL, 'capitola', 'US', 1, 36.9752300000, -121.9532900000), (1113377, 1001425, 'Capron', NULL, 'capron', 'US', 1, 42.3997400000, -88.7403800000), (1113378, 1001411, 'Captain Cook', NULL, 'captain-cook', 'US', 1, 19.4969400000, -155.9216700000), (1113379, 1001427, 'Captains Cove', NULL, 'captains-cove', 'US', 1, 37.9899600000, -75.4227200000), (1113380, 1001444, 'Caraway', NULL, 'caraway', 'US', 1, 35.7581300000, -90.3223200000), (1113381, 1001425, 'Carbon Cliff', NULL, 'carbon-cliff', 'US', 1, 41.4947600000, -90.3906800000), (1113382, 1001422, 'Carbon County', NULL, 'carbon-county', 'US', 1, 40.9181800000, -75.7088200000), (1113383, 1001414, 'Carbon County', NULL, 'carbon-county', 'US', 1, 39.6481700000, -110.5889800000), (1113384, 1001446, 'Carbon County', NULL, 'carbon-county', 'US', 1, 45.2273700000, -109.0283200000), (1113385, 1001442, 'Carbon County', NULL, 'carbon-county', 'US', 1, 41.6945900000, -106.9306100000), (1113386, 1001456, 'Carbon Hill', NULL, 'carbon-hill', 'US', 1, 33.8917700000, -87.5261200000), (1113387, 1001406, 'Carbondale', NULL, 'carbondale', 'US', 1, 38.8186200000, -95.6891500000), (1113388, 1001425, 'Carbondale', NULL, 'carbondale', 'US', 1, 37.7272700000, -89.2167500000), (1113389, 1001422, 'Carbondale', NULL, 'carbondale', 'US', 1, 41.5736900000, -75.5018500000), (1113390, 1001450, 'Carbondale', NULL, 'carbondale', 'US', 1, 39.4022100000, -107.2111600000), (1113391, 1001414, 'Carbonville', NULL, 'carbonville', 'US', 1, 39.6199600000, -110.8343300000), (1113392, 1001434, 'Carefree', NULL, 'carefree', 'US', 1, 33.8222600000, -111.9182000000), (1113393, 1001457, 'Carencro', NULL, 'carencro', 'US', 1, 30.3171400000, -92.0490100000), (1113394, 1001453, 'Caribou', NULL, 'caribou', 'US', 1, 46.8606000000, -68.0119700000), (1113395, 1001460, 'Caribou County', NULL, 'caribou-county', 'US', 1, 42.7705100000, -111.5622400000), (1113396, 1001451, 'Carl Junction', NULL, 'carl-junction', 'US', 1, 37.1767200000, -94.5655100000), (1113397, 1001452, 'Carle Place', NULL, 'carle-place', 'US', 1, 40.7526000000, -73.6104100000), (1113398, 1001426, 'Carleton', NULL, 'carleton', 'US', 1, 42.0592100000, -83.3907700000), (1113399, 1001458, 'Carlin', NULL, 'carlin', 'US', 1, 40.7138100000, -116.1039700000), (1113400, 1001425, 'Carlinville', NULL, 'carlinville', 'US', 1, 39.2797700000, -89.8817700000), (1113401, 1001444, 'Carlisle', NULL, 'carlisle', 'US', 1, 34.7831500000, -91.7465200000), (1113402, 1001419, 'Carlisle', NULL, 'carlisle', 'US', 1, 38.3120200000, -84.0274300000), (1113403, 1001459, 'Carlisle', NULL, 'carlisle', 'US', 1, 41.5008200000, -93.4910500000), (1113404, 1001433, 'Carlisle', NULL, 'carlisle', 'US', 1, 42.5292600000, -71.3495000000), (1113405, 1001422, 'Carlisle', NULL, 'carlisle', 'US', 1, 40.2014800000, -77.1888700000), (1113406, 1001419, 'Carlisle County', NULL, 'carlisle-county', 'US', 1, 36.8532200000, -88.9710600000), (1113407, 1001456, 'Carlisle-Rockledge', NULL, 'carlisle-rockledge', 'US', 1, 34.1144500000, -86.1240700000), (1113408, 1001416, 'Carlsbad', NULL, 'carlsbad', 'US', 1, 33.1580900000, -117.3505900000), (1113409, 1001423, 'Carlsbad', NULL, 'carlsbad', 'US', 1, 32.4206700000, -104.2288400000), (1113410, 1001417, 'Carlstadt', NULL, 'carlstadt', 'US', 1, 40.8403800000, -74.0907000000), (1113411, 1001420, 'Carlton', NULL, 'carlton', 'US', 1, 46.6638300000, -92.4249100000), (1113412, 1001415, 'Carlton', NULL, 'carlton', 'US', 1, 45.2942800000, -123.1764900000), (1113413, 1001420, 'Carlton County', NULL, 'carlton-county', 'US', 1, 46.5924000000, -92.6770500000), (1113414, 1001425, 'Carlyle', NULL, 'carlyle', 'US', 1, 38.6103300000, -89.3725800000), (1113415, 1001457, 'Carlyss', NULL, 'carlyss', 'US', 1, 30.1688200000, -93.3759900000), (1113416, 1001440, 'Carmel', NULL, 'carmel', 'US', 1, 39.9783700000, -86.1180400000), (1113417, 1001452, 'Carmel', NULL, 'carmel', 'US', 1, 41.4300900000, -73.6801300000), (1113418, 1001453, 'Carmel', NULL, 'carmel', 'US', 1, 44.7975700000, -69.0511500000), (1113419, 1001452, 'Carmel Hamlet', NULL, 'carmel-hamlet', 'US', 1, 41.4148500000, -73.6852400000), (1113420, 1001416, 'Carmel Valley Village', NULL, 'carmel-valley-village', 'US', 1, 36.5060500000, -121.7659400000), (1113421, 1001416, 'Carmel-by-the-Sea', NULL, 'carmel-by-the-sea', 'US', 1, 36.5552400000, -121.9232900000), (1113422, 1001425, 'Carmi', NULL, 'carmi', 'US', 1, 38.0908800000, -88.1586500000), (1113423, 1001416, 'Carmichael', NULL, 'carmichael', 'US', 1, 38.6171300000, -121.3282800000), (1113424, 1001462, 'Carnation', NULL, 'carnation', 'US', 1, 47.6478800000, -121.9140100000), (1113425, 1001421, 'Carnegie', NULL, 'carnegie', 'US', 1, 35.1036700000, -98.6036700000), (1113426, 1001422, 'Carnegie', NULL, 'carnegie', 'US', 1, 40.4086800000, -80.0833900000), (1113427, 1001455, 'Carnesville', NULL, 'carnesville', 'US', 1, 34.3698300000, -83.2351600000), (1113428, 1001401, 'Carney', NULL, 'carney', 'US', 1, 39.3942700000, -76.5235800000), (1113429, 1001417, 'Carneys Point', NULL, 'carneys-point', 'US', 1, 39.7112200000, -75.4702000000), (1113430, 1001422, 'Carnot-Moon', NULL, 'carnot-moon', 'US', 1, 40.5185600000, -80.2173600000), (1113431, 1001423, 'Carnuel', NULL, 'carnuel', 'US', 1, 35.0639400000, -106.4572500000), (1113432, 1001426, 'Caro', NULL, 'caro', 'US', 1, 43.4907300000, -83.3988500000), (1113433, 1001436, 'Carol City', NULL, 'carol-city', 'US', 1, 25.9406500000, -80.2456000000), (1113434, 1001425, 'Carol Stream', NULL, 'carol-stream', 'US', 1, 41.9125300000, -88.1347900000), (1113435, 1001447, 'Carolina Beach', NULL, 'carolina-beach', 'US', 1, 34.0351700000, -77.8936000000), (1113436, 1001447, 'Carolina Shores', NULL, 'carolina-shores', 'US', 1, 33.9010100000, -78.5805700000), (1113437, 1001401, 'Caroline County', NULL, 'caroline-county', 'US', 1, 38.8717300000, -75.8316000000), (1113438, 1001427, 'Caroline County', NULL, 'caroline-county', 'US', 1, 38.0268200000, -77.3469600000), (1113439, 1001425, 'Carpentersville', NULL, 'carpentersville', 'US', 1, 42.1211400000, -88.2578600000), (1113440, 1001416, 'Carpinteria', NULL, 'carpinteria', 'US', 1, 34.3988800000, -119.5184600000), (1113441, 1001436, 'Carrabelle', NULL, 'carrabelle', 'US', 1, 29.8532600000, -84.6643500000), (1113442, 1001447, 'Carrboro', NULL, 'carrboro', 'US', 1, 35.9101400000, -79.0752900000), (1113443, 1001450, 'Carriage Club', NULL, 'carriage-club', 'US', 1, 39.5324900000, -104.9010900000), (1113444, 1001425, 'Carrier Mills', NULL, 'carrier-mills', 'US', 1, 37.6842200000, -88.6328300000), (1113445, 1001430, 'Carriere', NULL, 'carriere', 'US', 1, 30.6168600000, -89.6525600000), (1113446, 1001418, 'Carrington', NULL, 'carrington', 'US', 1, 47.4497200000, -99.1262200000), (1113447, 1001407, 'Carrizo Springs', NULL, 'carrizo-springs', 'US', 1, 28.5219300000, -99.8606100000), (1113448, 1001423, 'Carrizozo', NULL, 'carrizozo', 'US', 1, 33.6417400000, -105.8772100000), (1113449, 1001459, 'Carroll', NULL, 'carroll', 'US', 1, 42.0658200000, -94.8669300000), (1113450, 1001444, 'Carroll County', NULL, 'carroll-county', 'US', 1, 36.3410200000, -93.5381800000), (1113451, 1001455, 'Carroll County', NULL, 'carroll-county', 'US', 1, 33.5828200000, -85.0797400000), (1113452, 1001419, 'Carroll County', NULL, 'carroll-county', 'US', 1, 38.6678600000, -85.1235900000), (1113453, 1001401, 'Carroll County', NULL, 'carroll-county', 'US', 1, 39.5628600000, -77.0225200000), (1113454, 1001451, 'Carroll County', NULL, 'carroll-county', 'US', 1, 39.4269800000, -93.5051800000), (1113455, 1001430, 'Carroll County', NULL, 'carroll-county', 'US', 1, 33.4485300000, -89.9202000000), (1113456, 1001454, 'Carroll County', NULL, 'carroll-county', 'US', 1, 35.9731700000, -88.4502600000), (1113457, 1001427, 'Carroll County', NULL, 'carroll-county', 'US', 1, 36.7315400000, -80.7339000000), (1113458, 1001459, 'Carroll County', NULL, 'carroll-county', 'US', 1, 42.0362400000, -94.8605600000), (1113459, 1001425, 'Carroll County', NULL, 'carroll-county', 'US', 1, 42.0686100000, -89.9343300000), (1113460, 1001440, 'Carroll County', NULL, 'carroll-county', 'US', 1, 40.5828600000, -86.5634800000), (1113461, 1001404, 'Carroll County', NULL, 'carroll-county', 'US', 1, 43.8739100000, -71.2027700000), (1113462, 1001422, 'Carroll Valley', NULL, 'carroll-valley', 'US', 1, 39.7492600000, -77.3830400000), (1113463, 1001456, 'Carrollton', NULL, 'carrollton', 'US', 1, 33.2616900000, -88.0950300000), (1113464, 1001455, 'Carrollton', NULL, 'carrollton', 'US', 1, 33.5801100000, -85.0766100000), (1113465, 1001425, 'Carrollton', NULL, 'carrollton', 'US', 1, 39.3022700000, -90.4070600000), (1113466, 1001419, 'Carrollton', NULL, 'carrollton', 'US', 1, 38.6809000000, -85.1794000000), (1113467, 1001451, 'Carrollton', NULL, 'carrollton', 'US', 1, 39.3583500000, -93.4957700000), (1113468, 1001430, 'Carrollton', NULL, 'carrollton', 'US', 1, 33.5081800000, -89.9203600000), (1113469, 1001427, 'Carrollton', NULL, 'carrollton', 'US', 1, 36.9468200000, -76.5605100000), (1113470, 1001407, 'Carrollton', NULL, 'carrollton', 'US', 1, 32.9537300000, -96.8902800000), (1113471, 1001426, 'Carrollton', NULL, 'carrollton', 'US', 1, 43.4586400000, -83.9302500000), (1113472, 1001436, 'Carrollwood', NULL, 'carrollwood', 'US', 1, 28.0500200000, -82.4928700000), (1113473, 1001436, 'Carrollwood Village', NULL, 'carrollwood-village', 'US', 1, 28.0675200000, -82.5209300000), (1113474, 1001416, 'Carson', NULL, 'carson', 'US', 1, 33.8314100000, -118.2820200000), (1113475, 1001418, 'Carson', NULL, 'carson', 'US', 1, 46.4177800000, -101.5648700000), (1113476, 1001462, 'Carson', NULL, 'carson', 'US', 1, 45.7253900000, -121.8192400000), (1113477, 1001426, 'Carson City', NULL, 'carson-city', 'US', 1, 43.1769800000, -84.8463900000), (1113478, 1001458, 'Carson City', NULL, 'carson-city', 'US', 1, 39.1638000000, -119.7674000000), (1113479, 1001407, 'Carson County', NULL, 'carson-county', 'US', 1, 35.4035100000, -101.3541800000), (1113480, 1001419, 'Carter County', NULL, 'carter-county', 'US', 1, 38.3181700000, -83.0495400000), (1113481, 1001451, 'Carter County', NULL, 'carter-county', 'US', 1, 36.9412700000, -90.9623100000), (1113482, 1001421, 'Carter County', NULL, 'carter-county', 'US', 1, 34.2508600000, -97.2857900000), (1113483, 1001454, 'Carter County', NULL, 'carter-county', 'US', 1, 36.2927200000, -82.1274300000), (1113484, 1001446, 'Carter County', NULL, 'carter-county', 'US', 1, 45.5167700000, -104.5361600000), (1113485, 1001459, 'Carter Lake', NULL, 'carter-lake', 'US', 1, 41.2905500000, -95.9180700000), (1113486, 1001417, 'Carteret', NULL, 'carteret', 'US', 1, 40.5773300000, -74.2282000000), (1113487, 1001447, 'Carteret County', NULL, 'carteret-county', 'US', 1, 34.8640100000, -76.5324900000), (1113488, 1001455, 'Cartersville', NULL, 'cartersville', 'US', 1, 34.1653300000, -84.8023100000), (1113489, 1001425, 'Carterville', NULL, 'carterville', 'US', 1, 37.7600500000, -89.0773000000), (1113490, 1001451, 'Carterville', NULL, 'carterville', 'US', 1, 37.1492300000, -94.4430000000), (1113491, 1001451, 'Carthage', NULL, 'carthage', 'US', 1, 37.1764500000, -94.3102200000), (1113492, 1001430, 'Carthage', NULL, 'carthage', 'US', 1, 32.7326400000, -89.5361800000), (1113493, 1001447, 'Carthage', NULL, 'carthage', 'US', 1, 35.3459900000, -79.4169700000), (1113494, 1001454, 'Carthage', NULL, 'carthage', 'US', 1, 36.2522800000, -85.9516500000), (1113495, 1001407, 'Carthage', NULL, 'carthage', 'US', 1, 32.1573800000, -94.3374200000), (1113496, 1001425, 'Carthage', NULL, 'carthage', 'US', 1, 40.4164300000, -91.1362500000), (1113497, 1001452, 'Carthage', NULL, 'carthage', 'US', 1, 43.9781200000, -75.6093600000), (1113498, 1001416, 'Caruthers', NULL, 'caruthers', 'US', 1, 36.5427300000, -119.8332000000), (1113499, 1001451, 'Caruthersville', NULL, 'caruthersville', 'US', 1, 36.1931200000, -89.6556400000), (1113500, 1001433, 'Carver', NULL, 'carver', 'US', 1, 41.8834400000, -70.7625400000), (1113501, 1001420, 'Carver', NULL, 'carver', 'US', 1, 44.7635700000, -93.6257900000), (1113502, 1001420, 'Carver County', NULL, 'carver-county', 'US', 1, 44.8207600000, -93.8025800000), (1113503, 1001436, 'Carver Ranches', NULL, 'carver-ranches', 'US', 1, 25.9884200000, -80.1922700000), (1113504, 1001457, 'Carville', NULL, 'carville', 'US', 1, 30.2174200000, -91.0962100000), (1113505, 1001447, 'Cary', NULL, 'cary', 'US', 1, 35.7915400000, -78.7811200000), (1113506, 1001425, 'Cary', NULL, 'cary', 'US', 1, 42.2119700000, -88.2381400000), (1113507, 1001454, 'Caryville', NULL, 'caryville', 'US', 1, 36.2989700000, -84.2232600000), (1113508, 1001434, 'Casa Blanca', NULL, 'casa-blanca', 'US', 1, 33.1203300000, -111.8881900000), (1113509, 1001416, 'Casa Conejo', NULL, 'casa-conejo', 'US', 1, 34.1836200000, -118.9434300000), (1113510, 1001434, 'Casa Grande', NULL, 'casa-grande', 'US', 1, 32.8795000000, -111.7573500000), (1113511, 1001416, 'Casa de Oro-Mount Helix', NULL, 'casa-de-oro-mount-helix', 'US', 1, 32.7639700000, -116.9687700000), (1113512, 1001434, 'Casas Adobes', NULL, 'casas-adobes', 'US', 1, 32.3234100000, -110.9951000000), (1113513, 1001459, 'Cascade', NULL, 'cascade', 'US', 1, 42.2986200000, -91.0148600000), (1113514, 1001460, 'Cascade', NULL, 'cascade', 'US', 1, 44.5162800000, -116.0418000000), (1113515, 1001446, 'Cascade County', NULL, 'cascade-county', 'US', 1, 47.3080200000, -111.3471500000), (1113516, 1001415, 'Cascade Locks', NULL, 'cascade-locks', 'US', 1, 45.6698400000, -121.8906400000), (1113517, 1001462, 'Cascade Valley', NULL, 'cascade-valley', 'US', 1, 47.1345900000, -119.3280800000), (1113518, 1001450, 'Cascade-Chipita Park', NULL, 'cascade-chipita-park', 'US', 1, 38.9435400000, -105.0023700000), (1113519, 1001425, 'Casey', NULL, 'casey', 'US', 1, 39.2992000000, -87.9925300000), (1113520, 1001419, 'Casey County', NULL, 'casey-county', 'US', 1, 37.3222800000, -84.9283700000), (1113521, 1001425, 'Caseyville', NULL, 'caseyville', 'US', 1, 38.6367200000, -90.0256600000), (1113522, 1001462, 'Cashmere', NULL, 'cashmere', 'US', 1, 47.5223500000, -120.4698000000), (1113523, 1001441, 'Cashton', NULL, 'cashton', 'US', 1, 43.7419100000, -90.7793000000), (1113524, 1001442, 'Casper', NULL, 'casper', 'US', 1, 42.8666300000, -106.3130800000), (1113525, 1001426, 'Cass City', NULL, 'cass-city', 'US', 1, 43.6008500000, -83.1746700000), (1113526, 1001425, 'Cass County', NULL, 'cass-county', 'US', 1, 39.9735600000, -90.2473800000), (1113527, 1001451, 'Cass County', NULL, 'cass-county', 'US', 1, 38.6470000000, -94.3548200000), (1113528, 1001407, 'Cass County', NULL, 'cass-county', 'US', 1, 33.0775400000, -94.3435900000), (1113529, 1001459, 'Cass County', NULL, 'cass-county', 'US', 1, 41.3314900000, -94.9278300000), (1113530, 1001440, 'Cass County', NULL, 'cass-county', 'US', 1, 40.7614900000, -86.3459500000), (1113531, 1001426, 'Cass County', NULL, 'cass-county', 'US', 1, 41.9154000000, -85.9934600000), (1113532, 1001420, 'Cass County', NULL, 'cass-county', 'US', 1, 46.9495900000, -94.3253500000), (1113533, 1001418, 'Cass County', NULL, 'cass-county', 'US', 1, 46.9329700000, -97.2480400000), (1113534, 1001408, 'Cass County', NULL, 'cass-county', 'US', 1, 40.9097200000, -96.1408700000), (1113535, 1001436, 'Casselberry', NULL, 'casselberry', 'US', 1, 28.6777800000, -81.3278500000), (1113536, 1001418, 'Casselton', NULL, 'casselton', 'US', 1, 46.9005300000, -97.2112000000), (1113537, 1001460, 'Cassia County', NULL, 'cassia-county', 'US', 1, 42.2838700000, -113.6003700000), (1113538, 1001426, 'Cassopolis', NULL, 'cassopolis', 'US', 1, 41.9117100000, -86.0100100000), (1113539, 1001451, 'Cassville', NULL, 'cassville', 'US', 1, 36.6770100000, -93.8688100000), (1113540, 1001416, 'Castaic', NULL, 'castaic', 'US', 1, 34.4888800000, -118.6228700000), (1113541, 1001422, 'Castanea', NULL, 'castanea', 'US', 1, 41.1247900000, -77.4297000000), (1113542, 1001453, 'Castine', NULL, 'castine', 'US', 1, 44.3878500000, -68.7997500000), (1113543, 1001414, 'Castle Dale', NULL, 'castle-dale', 'US', 1, 39.2121900000, -111.0196100000), (1113544, 1001447, 'Castle Hayne', NULL, 'castle-hayne', 'US', 1, 34.3557200000, -77.8999900000), (1113545, 1001407, 'Castle Hills', NULL, 'castle-hills', 'US', 1, 29.5232900000, -98.5164100000), (1113546, 1001450, 'Castle Pines', NULL, 'castle-pines', 'US', 1, 39.4580400000, -104.8960900000), (1113547, 1001450, 'Castle Pines North', NULL, 'castle-pines-north', 'US', 1, 39.4717400000, -104.8948200000), (1113548, 1001451, 'Castle Point', NULL, 'castle-point', 'US', 1, 38.7581100000, -90.2481700000), (1113549, 1001450, 'Castle Rock', NULL, 'castle-rock', 'US', 1, 39.3722100000, -104.8560900000), (1113550, 1001462, 'Castle Rock', NULL, 'castle-rock', 'US', 1, 46.2751100000, -122.9076100000), (1113551, 1001422, 'Castle Shannon', NULL, 'castle-shannon', 'US', 1, 40.3647900000, -80.0222800000), (1113552, 1001409, 'Castleton', NULL, 'castleton', 'US', 1, 43.6106200000, -73.1798300000), (1113553, 1001452, 'Castleton-on-Hudson', NULL, 'castleton-on-hudson', 'US', 1, 42.5184100000, -73.7512300000), (1113554, 1001427, 'Castlewood', NULL, 'castlewood', 'US', 1, 36.8901000000, -82.2795900000), (1113555, 1001450, 'Castlewood', NULL, 'castlewood', 'US', 1, 39.5847100000, -104.9010900000), (1113556, 1001407, 'Castro County', NULL, 'castro-county', 'US', 1, 34.5299600000, -102.2616700000), (1113557, 1001416, 'Castro Valley', NULL, 'castro-valley', 'US', 1, 37.6941000000, -122.0863500000), (1113558, 1001407, 'Castroville', NULL, 'castroville', 'US', 1, 29.3557900000, -98.8786400000), (1113559, 1001416, 'Castroville', NULL, 'castroville', 'US', 1, 36.7657900000, -121.7580000000), (1113560, 1001447, 'Caswell County', NULL, 'caswell-county', 'US', 1, 36.3933500000, -79.3335900000), (1113561, 1001457, 'Catahoula', NULL, 'catahoula', 'US', 1, 30.2146400000, -91.7090000000), (1113562, 1001457, 'Catahoula Parish', NULL, 'catahoula-parish', 'US', 1, 31.6661700000, -91.8470700000), (1113563, 1001434, 'Catalina', NULL, 'catalina', 'US', 1, 32.5055600000, -110.9211100000), (1113564, 1001434, 'Catalina Foothills', NULL, 'catalina-foothills', 'US', 1, 32.2978500000, -110.9187000000), (1113565, 1001422, 'Catasauqua', NULL, 'catasauqua', 'US', 1, 40.6548200000, -75.4746300000), (1113566, 1001443, 'Catawba', NULL, 'catawba', 'US', 1, 34.8529200000, -80.9111900000), (1113567, 1001447, 'Catawba County', NULL, 'catawba-county', 'US', 1, 35.6626100000, -81.2144800000), (1113568, 1001422, 'Catawissa', NULL, 'catawissa', 'US', 1, 40.9520300000, -76.4596700000), (1113569, 1001462, 'Cathcart', NULL, 'cathcart', 'US', 1, 47.8478800000, -122.0992900000), (1113570, 1001416, 'Cathedral City', NULL, 'cathedral-city', 'US', 1, 33.7797400000, -116.4652900000), (1113571, 1001462, 'Cathlamet', NULL, 'cathlamet', 'US', 1, 46.2031700000, -123.3831800000), (1113572, 1001419, 'Catlettsburg', NULL, 'catlettsburg', 'US', 1, 38.4048000000, -82.6004400000), (1113573, 1001425, 'Catlin', NULL, 'catlin', 'US', 1, 40.0650400000, -87.7019700000), (1113574, 1001441, 'Cato', NULL, 'cato', 'US', 1, 44.1427700000, -87.8612000000), (1113575, 1001401, 'Catonsville', NULL, 'catonsville', 'US', 1, 39.2720500000, -76.7319200000), (1113576, 1001421, 'Catoosa', NULL, 'catoosa', 'US', 1, 36.1889900000, -95.7458200000), (1113577, 1001455, 'Catoosa County', NULL, 'catoosa-county', 'US', 1, 34.9036600000, -85.1382500000), (1113578, 1001423, 'Catron County', NULL, 'catron-county', 'US', 1, 33.9153300000, -108.4047300000), (1113579, 1001452, 'Catskill', NULL, 'catskill', 'US', 1, 42.2173100000, -73.8645700000), (1113580, 1001452, 'Cattaraugus County', NULL, 'cattaraugus-county', 'US', 1, 42.2486300000, -78.6788500000), (1113581, 1001418, 'Cavalier', NULL, 'cavalier', 'US', 1, 48.7938800000, -97.6223100000), (1113582, 1001418, 'Cavalier County', NULL, 'cavalier-county', 'US', 1, 48.7723000000, -98.4648600000), (1113583, 1001444, 'Cave City', NULL, 'cave-city', 'US', 1, 35.9417400000, -91.5484700000), (1113584, 1001419, 'Cave City', NULL, 'cave-city', 'US', 1, 37.1367200000, -85.9569200000), (1113585, 1001434, 'Cave Creek', NULL, 'cave-creek', 'US', 1, 33.8333300000, -111.9508300000), (1113586, 1001415, 'Cave Junction', NULL, 'cave-junction', 'US', 1, 42.1628900000, -123.6481200000), (1113587, 1001455, 'Cave Spring', NULL, 'cave-spring', 'US', 1, 34.1076000000, -85.3363400000), (1113588, 1001427, 'Cave Spring', NULL, 'cave-spring', 'US', 1, 37.2276400000, -80.0128200000), (1113589, 1001444, 'Cave Springs', NULL, 'cave-springs', 'US', 1, 36.2634100000, -94.2318700000), (1113590, 1001401, 'Cavetown', NULL, 'cavetown', 'US', 1, 39.6442600000, -77.5858200000), (1113591, 1001443, 'Cayce', NULL, 'cayce', 'US', 1, 33.9657100000, -81.0739800000), (1113592, 1001416, 'Cayucos', NULL, 'cayucos', 'US', 1, 35.4427500000, -120.8921300000), (1113593, 1001440, 'Cayuga', NULL, 'cayuga', 'US', 1, 39.9486500000, -87.4597400000), (1113594, 1001452, 'Cayuga County', NULL, 'cayuga-county', 'US', 1, 43.0103300000, -76.5743600000), (1113595, 1001452, 'Cayuga Heights', NULL, 'cayuga-heights', 'US', 1, 42.4601000000, -76.4877600000), (1113596, 1001452, 'Cazenovia', NULL, 'cazenovia', 'US', 1, 42.9300700000, -75.8526900000), (1113597, 1001450, 'Cañon City', NULL, 'canon-city', 'US', 1, 38.4409800000, -105.2424500000), (1113598, 1001401, 'Cecil County', NULL, 'cecil-county', 'US', 1, 39.5624200000, -75.9481100000), (1113599, 1001422, 'Cecil-Bishop', NULL, 'cecil-bishop', 'US', 1, 40.3181900000, -80.1933100000), (1113600, 1001457, 'Cecilia', NULL, 'cecilia', 'US', 1, 30.3371400000, -91.8531700000), (1113601, 1001456, 'Cedar Bluff', NULL, 'cedar-bluff', 'US', 1, 34.2200900000, -85.6077400000), (1113602, 1001427, 'Cedar Bluff', NULL, 'cedar-bluff', 'US', 1, 37.0876100000, -81.7590000000), (1113603, 1001414, 'Cedar City', NULL, 'cedar-city', 'US', 1, 37.6774800000, -113.0618900000), (1113604, 1001451, 'Cedar County', NULL, 'cedar-county', 'US', 1, 37.7238500000, -93.8566100000), (1113605, 1001459, 'Cedar County', NULL, 'cedar-county', 'US', 1, 41.7723200000, -91.1324100000), (1113606, 1001408, 'Cedar County', NULL, 'cedar-county', 'US', 1, 42.5992600000, -97.2524000000), (1113607, 1001459, 'Cedar Falls', NULL, 'cedar-falls', 'US', 1, 42.5277600000, -92.4454700000), (1113608, 1001417, 'Cedar Glen Lakes', NULL, 'cedar-glen-lakes', 'US', 1, 39.9523400000, -74.3998700000), (1113609, 1001417, 'Cedar Glen West', NULL, 'cedar-glen-west', 'US', 1, 40.0420600000, -74.2926500000), (1113610, 1001436, 'Cedar Grove', NULL, 'cedar-grove', 'US', 1, 30.1710300000, -85.6252000000), (1113611, 1001417, 'Cedar Grove', NULL, 'cedar-grove', 'US', 1, 40.8517700000, -74.2290300000), (1113612, 1001441, 'Cedar Grove', NULL, 'cedar-grove', 'US', 1, 43.5697200000, -87.8234200000), (1113613, 1001451, 'Cedar Hill', NULL, 'cedar-hill', 'US', 1, 38.3533900000, -90.6412400000), (1113614, 1001407, 'Cedar Hill', NULL, 'cedar-hill', 'US', 1, 32.5884700000, -96.9561200000), (1113615, 1001415, 'Cedar Hills', NULL, 'cedar-hills', 'US', 1, 45.5048400000, -122.7984300000), (1113616, 1001414, 'Cedar Hills', NULL, 'cedar-hills', 'US', 1, 40.4141200000, -111.7585400000), (1113617, 1001440, 'Cedar Lake', NULL, 'cedar-lake', 'US', 1, 41.3647600000, -87.4411500000), (1113618, 1001415, 'Cedar Mill', NULL, 'cedar-mill', 'US', 1, 45.5248400000, -122.8109300000), (1113619, 1001407, 'Cedar Park', NULL, 'cedar-park', 'US', 1, 30.5052000000, -97.8202900000), (1113620, 1001447, 'Cedar Point', NULL, 'cedar-point', 'US', 1, 34.6876600000, -77.0724500000), (1113621, 1001459, 'Cedar Rapids', NULL, 'cedar-rapids', 'US', 1, 42.0083300000, -91.6440700000), (1113622, 1001416, 'Cedar Ridge', NULL, 'cedar-ridge', 'US', 1, 38.0657600000, -120.2768600000), (1113623, 1001426, 'Cedar Springs', NULL, 'cedar-springs', 'US', 1, 43.2233600000, -85.5514200000), (1113624, 1001441, 'Cedarburg', NULL, 'cedarburg', 'US', 1, 43.2966700000, -87.9875900000), (1113625, 1001450, 'Cedaredge', NULL, 'cedaredge', 'US', 1, 38.9016500000, -107.9264500000), (1113626, 1001452, 'Cedarhurst', NULL, 'cedarhurst', 'US', 1, 40.6228800000, -73.7243000000), (1113627, 1001455, 'Cedartown', NULL, 'cedartown', 'US', 1, 34.0112300000, -85.2559300000), (1113628, 1001444, 'Cedarville', NULL, 'cedarville', 'US', 1, 35.5698100000, -94.3668800000), (1113629, 1001436, 'Celebration', NULL, 'celebration', 'US', 1, 28.3252900000, -81.5331300000), (1113630, 1001454, 'Celina', NULL, 'celina', 'US', 1, 36.5500600000, -85.5052500000), (1113631, 1001407, 'Celina', NULL, 'celina', 'US', 1, 33.3245600000, -96.7844400000), (1113632, 1001452, 'Celoron', NULL, 'celoron', 'US', 1, 42.1095000000, -79.2831000000), (1113633, 1001422, 'Cementon', NULL, 'cementon', 'US', 1, 40.6892600000, -75.5076800000), (1113634, 1001450, 'Centennial', NULL, 'centennial', 'US', 1, 39.5791600000, -104.8769200000), (1113635, 1001434, 'Centennial Park', NULL, 'centennial-park', 'US', 1, 36.9538100000, -112.9813200000), (1113636, 1001407, 'Center', NULL, 'center', 'US', 1, 31.7954500000, -94.1790900000), (1113637, 1001408, 'Center', NULL, 'center', 'US', 1, 42.6094500000, -97.8767300000), (1113638, 1001450, 'Center', NULL, 'center', 'US', 1, 37.7530600000, -106.1086400000), (1113639, 1001418, 'Center', NULL, 'center', 'US', 1, 47.1163800000, -101.2995900000), (1113640, 1001420, 'Center City', NULL, 'center-city', 'US', 1, 45.3938500000, -92.8166000000), (1113641, 1001422, 'Center City', NULL, 'center-city', 'US', 1, 39.9512000000, -75.1592300000), (1113642, 1001404, 'Center Harbor', NULL, 'center-harbor', 'US', 1, 43.7098000000, -71.4603500000), (1113643, 1001436, 'Center Hill', NULL, 'center-hill', 'US', 1, 28.6499900000, -81.9925800000), (1113644, 1001426, 'Center Line', NULL, 'center-line', 'US', 1, 42.4850400000, -83.0277000000), (1113645, 1001452, 'Center Moriches', NULL, 'center-moriches', 'US', 1, 40.8003800000, -72.7898200000), (1113646, 1001456, 'Center Point', NULL, 'center-point', 'US', 1, 33.6456600000, -86.6836000000), (1113647, 1001459, 'Center Point', NULL, 'center-point', 'US', 1, 42.1908300000, -91.7851800000), (1113648, 1001452, 'Centereach', NULL, 'centereach', 'US', 1, 40.8584300000, -73.0995500000), (1113649, 1001414, 'Centerfield', NULL, 'centerfield', 'US', 1, 39.1252400000, -111.8190900000), (1113650, 1001452, 'Centerport', NULL, 'centerport', 'US', 1, 40.8853800000, -73.3762300000), (1113651, 1001444, 'Centerton', NULL, 'centerton', 'US', 1, 36.3598000000, -94.2852100000), (1113652, 1001455, 'Centerville', NULL, 'centerville', 'US', 1, 32.6301400000, -83.6896300000), (1113653, 1001440, 'Centerville', NULL, 'centerville', 'US', 1, 39.8178200000, -84.9963500000), (1113654, 1001451, 'Centerville', NULL, 'centerville', 'US', 1, 37.4350500000, -90.9584600000), (1113655, 1001454, 'Centerville', NULL, 'centerville', 'US', 1, 35.7789600000, -87.4669600000), (1113656, 1001443, 'Centerville', NULL, 'centerville', 'US', 1, 34.5320500000, -82.7040200000), (1113657, 1001407, 'Centerville', NULL, 'centerville', 'US', 1, 31.2579600000, -95.9782900000), (1113658, 1001459, 'Centerville', NULL, 'centerville', 'US', 1, 40.7341800000, -92.8740900000), (1113659, 1001433, 'Centerville', NULL, 'centerville', 'US', 1, 41.6487200000, -70.3480800000), (1113660, 1001420, 'Centerville', NULL, 'centerville', 'US', 1, 45.1630200000, -93.0557800000), (1113661, 1001422, 'Centerville', NULL, 'centerville', 'US', 1, 40.0453500000, -79.9756100000), (1113662, 1001414, 'Centerville', NULL, 'centerville', 'US', 1, 40.9180000000, -111.8721600000), (1113663, 1001457, 'Central', NULL, 'central', 'US', 1, 30.5543500000, -91.0367700000), (1113664, 1001454, 'Central', NULL, 'central', 'US', 1, 36.3262200000, -82.2895800000), (1113665, 1001443, 'Central', NULL, 'central', 'US', 1, 34.7242700000, -82.7812500000), (1113666, 1001419, 'Central City', NULL, 'central-city', 'US', 1, 37.2939300000, -87.1233300000), (1113667, 1001425, 'Central City', NULL, 'central-city', 'US', 1, 38.5489400000, -89.1270100000), (1113668, 1001459, 'Central City', NULL, 'central-city', 'US', 1, 42.2038800000, -91.5240600000), (1113669, 1001408, 'Central City', NULL, 'central-city', 'US', 1, 41.1158500000, -98.0017200000), (1113670, 1001422, 'Central City', NULL, 'central-city', 'US', 1, 40.1106300000, -78.8019700000), (1113671, 1001450, 'Central City', NULL, 'central-city', 'US', 1, 39.8019300000, -105.5141600000), (1113672, 1001434, 'Central City', NULL, 'central-city', 'US', 1, 33.4400100000, -112.0580500000), (1113673, 1001461, 'Central Falls', NULL, 'central-falls', 'US', 1, 41.8906600000, -71.3922800000), (1113674, 1001427, 'Central Garage', NULL, 'central-garage', 'US', 1, 37.7440300000, -77.1316400000), (1113675, 1001407, 'Central Gardens', NULL, 'central-gardens', 'US', 1, 29.9954900000, -94.0140600000), (1113676, 1001434, 'Central Heights-Midland City', NULL, 'central-heights-midland-city', 'US', 1, 33.4037200000, -110.8154100000), (1113677, 1001421, 'Central High', NULL, 'central-high', 'US', 1, 34.6231300000, -98.0897600000), (1113678, 1001452, 'Central Islip', NULL, 'central-islip', 'US', 1, 40.7906500000, -73.2017800000), (1113679, 1001462, 'Central Park', NULL, 'central-park', 'US', 1, 46.9734300000, -123.6923900000), (1113680, 1001415, 'Central Point', NULL, 'central-point', 'US', 1, 42.3759600000, -122.9164300000), (1113681, 1001452, 'Central Square', NULL, 'central-square', 'US', 1, 43.2867400000, -76.1460400000), (1113682, 1001452, 'Central Valley', NULL, 'central-valley', 'US', 1, 41.3317600000, -74.1209800000), (1113683, 1001416, 'Central Valley (historical)', NULL, 'central-valley-historical', 'US', 1, 40.6804300000, -122.3711200000), (1113684, 1001435, 'Central Waterford', NULL, 'central-waterford', 'US', 1, 41.3450400000, -72.1294800000), (1113685, 1001425, 'Centralia', NULL, 'centralia', 'US', 1, 38.5250500000, -89.1334000000), (1113686, 1001451, 'Centralia', NULL, 'centralia', 'US', 1, 39.2103200000, -92.1379500000), (1113687, 1001462, 'Centralia', NULL, 'centralia', 'US', 1, 46.7162100000, -122.9543000000), (1113688, 1001456, 'Centre', NULL, 'centre', 'US', 1, 34.1520400000, -85.6788500000); INSERT INTO `[[dbprefix]]t_city` VALUES (1113689, 1001422, 'Centre County', NULL, 'centre-county', 'US', 1, 40.9193400000, -77.8199500000), (1113690, 1001422, 'Centre Hall', NULL, 'centre-hall', 'US', 1, 40.8475600000, -77.6861100000), (1113691, 1001456, 'Centreville', NULL, 'centreville', 'US', 1, 32.9462000000, -87.1166900000), (1113692, 1001425, 'Centreville', NULL, 'centreville', 'US', 1, 38.5833800000, -90.1251100000), (1113693, 1001401, 'Centreville', NULL, 'centreville', 'US', 1, 39.0417800000, -76.0663300000), (1113694, 1001430, 'Centreville', NULL, 'centreville', 'US', 1, 31.0896200000, -91.0684400000), (1113695, 1001427, 'Centreville', NULL, 'centreville', 'US', 1, 38.8403900000, -77.4288800000), (1113696, 1001426, 'Centreville', NULL, 'centreville', 'US', 1, 41.9233800000, -85.5283200000), (1113697, 1001436, 'Century', NULL, 'century', 'US', 1, 30.9732400000, -87.2638600000), (1113698, 1001416, 'Century City', NULL, 'century-city', 'US', 1, 34.0555700000, -118.4178600000), (1113699, 1001429, 'Ceredo', NULL, 'ceredo', 'US', 1, 38.3964700000, -82.5587700000), (1113700, 1001416, 'Ceres', NULL, 'ceres', 'US', 1, 37.5949300000, -120.9577100000), (1113701, 1001416, 'Cerritos', NULL, 'cerritos', 'US', 1, 33.8583500000, -118.0647900000), (1113702, 1001425, 'Cerro Gordo', NULL, 'cerro-gordo', 'US', 1, 39.8905900000, -88.7281300000), (1113703, 1001459, 'Cerro Gordo County', NULL, 'cerro-gordo-county', 'US', 1, 43.0815600000, -93.2608200000), (1113704, 1001422, 'Cetronia', NULL, 'cetronia', 'US', 1, 40.5867600000, -75.5296300000), (1113705, 1001457, 'Chackbay', NULL, 'chackbay', 'US', 1, 29.8835400000, -90.7973200000), (1113706, 1001447, 'Chadbourn', NULL, 'chadbourn', 'US', 1, 34.3221100000, -78.8269700000), (1113707, 1001408, 'Chadron', NULL, 'chadron', 'US', 1, 42.8294200000, -102.9999100000), (1113708, 1001452, 'Chadwicks', NULL, 'chadwicks', 'US', 1, 43.0278500000, -75.2715500000), (1113709, 1001451, 'Chaffee', NULL, 'chaffee', 'US', 1, 37.1800500000, -89.6550900000), (1113710, 1001450, 'Chaffee County', NULL, 'chaffee-county', 'US', 1, 38.7469000000, -106.1940700000), (1113711, 1001408, 'Chalco', NULL, 'chalco', 'US', 1, 41.1838900000, -96.1503000000), (1113712, 1001422, 'Chalfont', NULL, 'chalfont', 'US', 1, 40.2884400000, -75.2090600000), (1113713, 1001456, 'Chalkville', NULL, 'chalkville', 'US', 1, 33.6531600000, -86.6477700000), (1113714, 1001416, 'Challenge-Brownsville', NULL, 'challenge-brownsville', 'US', 1, 39.4644700000, -121.2633800000), (1113715, 1001460, 'Challis', NULL, 'challis', 'US', 1, 44.5046400000, -114.2317300000), (1113716, 1001457, 'Chalmette', NULL, 'chalmette', 'US', 1, 29.9429600000, -89.9653700000), (1113717, 1001423, 'Chama', NULL, 'chama', 'US', 1, 36.9030700000, -106.5794800000), (1113718, 1001445, 'Chamberlain', NULL, 'chamberlain', 'US', 1, 43.8108300000, -99.3306600000), (1113719, 1001427, 'Chamberlayne', NULL, 'chamberlayne', 'US', 1, 37.6265300000, -77.4285900000), (1113720, 1001456, 'Chambers County', NULL, 'chambers-county', 'US', 1, 32.9143700000, -85.3920400000), (1113721, 1001407, 'Chambers County', NULL, 'chambers-county', 'US', 1, 29.7082600000, -94.6713800000), (1113722, 1001422, 'Chambersburg', NULL, 'chambersburg', 'US', 1, 39.9375900000, -77.6611000000), (1113723, 1001455, 'Chamblee', NULL, 'chamblee', 'US', 1, 33.8920500000, -84.2988100000), (1113724, 1001425, 'Champaign', NULL, 'champaign', 'US', 1, 40.1164200000, -88.2433800000), (1113725, 1001425, 'Champaign County', NULL, 'champaign-county', 'US', 1, 40.1400800000, -88.1991900000), (1113726, 1001452, 'Champlain', NULL, 'champlain', 'US', 1, 44.9864300000, -73.4465300000), (1113727, 1001420, 'Champlin', NULL, 'champlin', 'US', 1, 45.1888500000, -93.3974500000), (1113728, 1001440, 'Chandler', NULL, 'chandler', 'US', 1, 38.0417100000, -87.3680600000), (1113729, 1001421, 'Chandler', NULL, 'chandler', 'US', 1, 35.7017300000, -96.8808600000), (1113730, 1001407, 'Chandler', NULL, 'chandler', 'US', 1, 32.3079300000, -95.4799600000), (1113731, 1001434, 'Chandler', NULL, 'chandler', 'US', 1, 33.3061600000, -111.8412500000), (1113732, 1001420, 'Chanhassen', NULL, 'chanhassen', 'US', 1, 44.8621900000, -93.5307900000), (1113733, 1001425, 'Channahon', NULL, 'channahon', 'US', 1, 41.4294800000, -88.2286700000), (1113734, 1001416, 'Channel Islands Beach', NULL, 'channel-islands-beach', 'US', 1, 34.1580600000, -119.2231600000), (1113735, 1001425, 'Channel Lake', NULL, 'channel-lake', 'US', 1, 42.4786300000, -88.1375900000), (1113736, 1001407, 'Channelview', NULL, 'channelview', 'US', 1, 29.7760600000, -95.1146500000), (1113737, 1001407, 'Channing', NULL, 'channing', 'US', 1, 35.6836500000, -102.3302000000), (1113738, 1001427, 'Chantilly', NULL, 'chantilly', 'US', 1, 38.8942800000, -77.4311000000), (1113739, 1001406, 'Chanute', NULL, 'chanute', 'US', 1, 37.6792100000, -95.4572000000), (1113740, 1001423, 'Chaparral', NULL, 'chaparral', 'US', 1, 32.0237600000, -106.3856600000), (1113741, 1001447, 'Chapel Hill', NULL, 'chapel-hill', 'US', 1, 35.9132000000, -79.0558400000), (1113742, 1001454, 'Chapel Hill', NULL, 'chapel-hill', 'US', 1, 35.6264600000, -86.6933300000), (1113743, 1001443, 'Chapin', NULL, 'chapin', 'US', 1, 34.1659800000, -81.3498200000), (1113744, 1001406, 'Chapman', NULL, 'chapman', 'US', 1, 38.9722200000, -97.0225100000), (1113745, 1001429, 'Chapmanville', NULL, 'chapmanville', 'US', 1, 37.9737100000, -82.0173500000), (1113746, 1001452, 'Chappaqua', NULL, 'chappaqua', 'US', 1, 41.1595400000, -73.7648500000), (1113747, 1001408, 'Chappell', NULL, 'chappell', 'US', 1, 41.0927700000, -102.4707400000), (1113748, 1001457, 'Charenton', NULL, 'charenton', 'US', 1, 29.8815900000, -91.5251100000), (1113749, 1001459, 'Chariton', NULL, 'chariton', 'US', 1, 41.0138900000, -93.3066000000), (1113750, 1001451, 'Chariton County', NULL, 'chariton-county', 'US', 1, 39.5150800000, -92.9626200000), (1113751, 1001451, 'Charlack', NULL, 'charlack', 'US', 1, 38.7025500000, -90.3434500000), (1113752, 1001433, 'Charlemont', NULL, 'charlemont', 'US', 1, 42.6278600000, -72.8698200000), (1113753, 1001422, 'Charleroi', NULL, 'charleroi', 'US', 1, 40.1378500000, -79.8981000000), (1113754, 1001459, 'Charles City', NULL, 'charles-city', 'US', 1, 43.0663600000, -92.6724100000), (1113755, 1001427, 'Charles City', NULL, 'charles-city', 'US', 1, 37.3434800000, -77.0730300000), (1113756, 1001427, 'Charles City County', NULL, 'charles-city-county', 'US', 1, 37.3543500000, -77.0591300000), (1113757, 1001401, 'Charles County', NULL, 'charles-county', 'US', 1, 38.4736800000, -77.0134800000), (1113758, 1001445, 'Charles Mix County', NULL, 'charles-mix-county', 'US', 1, 43.2079100000, -98.5878900000), (1113759, 1001429, 'Charles Town', NULL, 'charles-town', 'US', 1, 39.2889900000, -77.8597200000), (1113760, 1001401, 'Charles Village', NULL, 'charles-village', 'US', 1, 39.3231600000, -76.6133000000), (1113761, 1001444, 'Charleston', NULL, 'charleston', 'US', 1, 35.2970400000, -94.0363200000), (1113762, 1001425, 'Charleston', NULL, 'charleston', 'US', 1, 39.4961500000, -88.1761500000), (1113763, 1001451, 'Charleston', NULL, 'charleston', 'US', 1, 36.9208900000, -89.3506300000), (1113764, 1001430, 'Charleston', NULL, 'charleston', 'US', 1, 34.0067800000, -90.0567600000), (1113765, 1001443, 'Charleston', NULL, 'charleston', 'US', 1, 32.7765700000, -79.9309200000), (1113766, 1001429, 'Charleston', NULL, 'charleston', 'US', 1, 38.3498200000, -81.6326200000), (1113767, 1001453, 'Charleston', NULL, 'charleston', 'US', 1, 45.0850600000, -69.0405900000), (1113768, 1001452, 'Charleston', NULL, 'charleston', 'US', 1, 40.5367700000, -74.2373700000), (1113769, 1001443, 'Charleston County', NULL, 'charleston-county', 'US', 1, 32.7491700000, -79.9420200000), (1113770, 1001440, 'Charlestown', NULL, 'charlestown', 'US', 1, 38.4531200000, -85.6702400000), (1113771, 1001401, 'Charlestown', NULL, 'charlestown', 'US', 1, 39.5737300000, -75.9749500000), (1113772, 1001404, 'Charlestown', NULL, 'charlestown', 'US', 1, 43.2386900000, -72.4245300000), (1113773, 1001461, 'Charlestown', NULL, 'charlestown', 'US', 1, 41.3831600000, -71.6417300000), (1113774, 1001426, 'Charlevoix', NULL, 'charlevoix', 'US', 1, 45.3180600000, -85.2584000000), (1113775, 1001426, 'Charlevoix County', NULL, 'charlevoix-county', 'US', 1, 45.2671500000, -85.2401700000), (1113776, 1001447, 'Charlotte', NULL, 'charlotte', 'US', 1, 35.2270900000, -80.8431300000), (1113777, 1001454, 'Charlotte', NULL, 'charlotte', 'US', 1, 36.1772800000, -87.3397300000), (1113778, 1001407, 'Charlotte', NULL, 'charlotte', 'US', 1, 28.8619200000, -98.7064100000), (1113779, 1001426, 'Charlotte', NULL, 'charlotte', 'US', 1, 42.5636500000, -84.8358200000), (1113780, 1001409, 'Charlotte', NULL, 'charlotte', 'US', 1, 44.3097700000, -73.2609600000), (1113781, 1001436, 'Charlotte County', NULL, 'charlotte-county', 'US', 1, 26.8998500000, -81.9503100000), (1113782, 1001427, 'Charlotte County', NULL, 'charlotte-county', 'US', 1, 37.0116100000, -78.6616400000), (1113783, 1001427, 'Charlotte Court House', NULL, 'charlotte-court-house', 'US', 1, 37.0565400000, -78.6383300000), (1113784, 1001401, 'Charlotte Hall', NULL, 'charlotte-hall', 'US', 1, 38.4809600000, -76.7780200000), (1113785, 1001436, 'Charlotte Harbor', NULL, 'charlotte-harbor', 'US', 1, 26.9583900000, -82.0670300000), (1113786, 1001436, 'Charlotte Park', NULL, 'charlotte-park', 'US', 1, 26.9100600000, -82.0539800000), (1113787, 1001427, 'Charlottesville', NULL, 'charlottesville', 'US', 1, 38.0293100000, -78.4766800000), (1113788, 1001433, 'Charlton', NULL, 'charlton', 'US', 1, 42.1356500000, -71.9700700000), (1113789, 1001455, 'Charlton County', NULL, 'charlton-county', 'US', 1, 30.7817200000, -82.1376900000), (1113790, 1001416, 'Charter Oak', NULL, 'charter-oak', 'US', 1, 34.1030600000, -117.8458900000), (1113791, 1001427, 'Chase City', NULL, 'chase-city', 'US', 1, 36.7993100000, -78.4583300000), (1113792, 1001406, 'Chase County', NULL, 'chase-county', 'US', 1, 38.3020500000, -96.5939300000), (1113793, 1001408, 'Chase County', NULL, 'chase-county', 'US', 1, 40.5242000000, -101.6979500000), (1113794, 1001420, 'Chaska', NULL, 'chaska', 'US', 1, 44.7894100000, -93.6021800000), (1113795, 1001420, 'Chatfield', NULL, 'chatfield', 'US', 1, 43.8455200000, -92.1890500000), (1113796, 1001427, 'Chatham', NULL, 'chatham', 'US', 1, 36.8256900000, -79.3980800000), (1113797, 1001425, 'Chatham', NULL, 'chatham', 'US', 1, 41.7411500000, -87.6125500000), (1113798, 1001433, 'Chatham', NULL, 'chatham', 'US', 1, 41.6820600000, -69.9597400000), (1113799, 1001452, 'Chatham', NULL, 'chatham', 'US', 1, 42.3642500000, -73.5948400000), (1113800, 1001417, 'Chatham', NULL, 'chatham', 'US', 1, 40.7409300000, -74.3837600000), (1113801, 1001455, 'Chatham County', NULL, 'chatham-county', 'US', 1, 31.9740200000, -81.0924300000), (1113802, 1001447, 'Chatham County', NULL, 'chatham-county', 'US', 1, 35.7025800000, -79.2553500000), (1113803, 1001427, 'Chatmoss', NULL, 'chatmoss', 'US', 1, 36.6568000000, -79.8122600000), (1113804, 1001456, 'Chatom', NULL, 'chatom', 'US', 1, 31.4651700000, -88.2544600000), (1113805, 1001455, 'Chatsworth', NULL, 'chatsworth', 'US', 1, 34.7659100000, -84.7699400000), (1113806, 1001425, 'Chatsworth', NULL, 'chatsworth', 'US', 1, 40.7536500000, -88.2919900000), (1113807, 1001416, 'Chatsworth', NULL, 'chatsworth', 'US', 1, 34.2572300000, -118.6012000000), (1113808, 1001436, 'Chattahoochee', NULL, 'chattahoochee', 'US', 1, 30.7054600000, -84.8457400000), (1113809, 1001455, 'Chattahoochee County', NULL, 'chattahoochee-county', 'US', 1, 32.3469700000, -84.7870500000), (1113810, 1001455, 'Chattahoochee Hills', NULL, 'chattahoochee-hills', 'US', 1, 33.5506300000, -84.7604900000), (1113811, 1001454, 'Chattanooga', NULL, 'chattanooga', 'US', 1, 35.0456300000, -85.3096800000), (1113812, 1001455, 'Chattanooga Valley', NULL, 'chattanooga-valley', 'US', 1, 34.9328500000, -85.3555100000), (1113813, 1001455, 'Chattooga County', NULL, 'chattooga-county', 'US', 1, 34.4750200000, -85.3452900000), (1113814, 1001406, 'Chautauqua County', NULL, 'chautauqua-county', 'US', 1, 37.1500600000, -96.2453800000), (1113815, 1001452, 'Chautauqua County', NULL, 'chautauqua-county', 'US', 1, 42.3029400000, -79.4057600000), (1113816, 1001457, 'Chauvin', NULL, 'chauvin', 'US', 1, 29.4385500000, -90.5953700000), (1113817, 1001423, 'Chaves County', NULL, 'chaves-county', 'US', 1, 33.3631900000, -104.4670000000), (1113818, 1001429, 'Cheat Lake', NULL, 'cheat-lake', 'US', 1, 39.6720200000, -79.8533900000), (1113819, 1001454, 'Cheatham County', NULL, 'cheatham-county', 'US', 1, 36.2611700000, -87.0867800000), (1113820, 1001425, 'Chebanse', NULL, 'chebanse', 'US', 1, 41.0030900000, -87.9081000000), (1113821, 1001426, 'Cheboygan', NULL, 'cheboygan', 'US', 1, 45.6469600000, -84.4744800000), (1113822, 1001426, 'Cheboygan County', NULL, 'cheboygan-county', 'US', 1, 45.4729400000, -84.4920600000), (1113823, 1001421, 'Checotah', NULL, 'checotah', 'US', 1, 35.4701000000, -95.5230400000), (1113824, 1001452, 'Cheektowaga', NULL, 'cheektowaga', 'US', 1, 42.9033900000, -78.7547500000), (1113825, 1001462, 'Chehalis', NULL, 'chehalis', 'US', 1, 46.6620500000, -122.9640200000), (1113826, 1001462, 'Chelan', NULL, 'chelan', 'US', 1, 47.8409700000, -120.0164600000), (1113827, 1001462, 'Chelan County', NULL, 'chelan-county', 'US', 1, 47.8691000000, -120.6189100000), (1113828, 1001433, 'Chelmsford', NULL, 'chelmsford', 'US', 1, 42.5998100000, -71.3672800000), (1113829, 1001456, 'Chelsea', NULL, 'chelsea', 'US', 1, 33.3401100000, -86.6302600000), (1113830, 1001421, 'Chelsea', NULL, 'chelsea', 'US', 1, 36.5356500000, -95.4324700000), (1113831, 1001433, 'Chelsea', NULL, 'chelsea', 'US', 1, 42.3917600000, -71.0328300000), (1113832, 1001453, 'Chelsea', NULL, 'chelsea', 'US', 1, 44.2503500000, -69.7172700000), (1113833, 1001426, 'Chelsea', NULL, 'chelsea', 'US', 1, 42.3180700000, -84.0218100000), (1113834, 1001452, 'Chelsea', NULL, 'chelsea', 'US', 1, 40.6006600000, -74.1948700000), (1113835, 1001409, 'Chelsea', NULL, 'chelsea', 'US', 1, 43.9897900000, -72.4476000000), (1113836, 1001452, 'Chemung County', NULL, 'chemung-county', 'US', 1, 42.1412500000, -76.7600300000), (1113837, 1001452, 'Chenango Bridge', NULL, 'chenango-bridge', 'US', 1, 42.1667400000, -75.8624200000), (1113838, 1001452, 'Chenango County', NULL, 'chenango-county', 'US', 1, 42.4935100000, -75.6115800000), (1113839, 1001406, 'Cheney', NULL, 'cheney', 'US', 1, 37.6300100000, -97.7825500000), (1113840, 1001462, 'Cheney', NULL, 'cheney', 'US', 1, 47.4873900000, -117.5757600000), (1113841, 1001425, 'Chenoa', NULL, 'chenoa', 'US', 1, 40.7417000000, -88.7197900000), (1113842, 1001415, 'Chenoweth', NULL, 'chenoweth', 'US', 1, 45.6276200000, -121.2434100000), (1113843, 1001461, 'Chepachet', NULL, 'chepachet', 'US', 1, 41.9151000000, -71.6714600000), (1113844, 1001443, 'Cheraw', NULL, 'cheraw', 'US', 1, 34.6976600000, -79.8834000000), (1113845, 1001456, 'Cherokee', NULL, 'cherokee', 'US', 1, 34.7570300000, -87.9728100000), (1113846, 1001447, 'Cherokee', NULL, 'cherokee', 'US', 1, 35.4742700000, -83.3148700000), (1113847, 1001421, 'Cherokee', NULL, 'cherokee', 'US', 1, 36.7544700000, -98.3567400000), (1113848, 1001459, 'Cherokee', NULL, 'cherokee', 'US', 1, 42.7494300000, -95.5516700000), (1113849, 1001456, 'Cherokee County', NULL, 'cherokee-county', 'US', 1, 34.1759600000, -85.6037900000), (1113850, 1001455, 'Cherokee County', NULL, 'cherokee-county', 'US', 1, 34.2439300000, -84.4762000000), (1113851, 1001406, 'Cherokee County', NULL, 'cherokee-county', 'US', 1, 37.1693100000, -94.8462700000), (1113852, 1001447, 'Cherokee County', NULL, 'cherokee-county', 'US', 1, 35.1338400000, -84.0634700000), (1113853, 1001421, 'Cherokee County', NULL, 'cherokee-county', 'US', 1, 35.9066300000, -94.9996600000), (1113854, 1001443, 'Cherokee County', NULL, 'cherokee-county', 'US', 1, 35.0482000000, -81.6203900000), (1113855, 1001407, 'Cherokee County', NULL, 'cherokee-county', 'US', 1, 31.8369500000, -95.1651800000), (1113856, 1001459, 'Cherokee County', NULL, 'cherokee-county', 'US', 1, 42.7356200000, -95.6238100000), (1113857, 1001444, 'Cherokee Village', NULL, 'cherokee-village', 'US', 1, 36.2978400000, -91.5159700000), (1113858, 1001408, 'Cherry County', NULL, 'cherry-county', 'US', 1, 42.5449300000, -101.1185800000), (1113859, 1001450, 'Cherry Creek', NULL, 'cherry-creek', 'US', 1, 39.6345500000, -104.8828600000), (1113860, 1001417, 'Cherry Hill', NULL, 'cherry-hill', 'US', 1, 39.9348400000, -75.0307300000), (1113861, 1001427, 'Cherry Hill', NULL, 'cherry-hill', 'US', 1, 38.5698400000, -77.2669300000), (1113862, 1001417, 'Cherry Hill Mall', NULL, 'cherry-hill-mall', 'US', 1, 39.9359500000, -75.0090600000), (1113863, 1001450, 'Cherry Hills Village', NULL, 'cherry-hills-village', 'US', 1, 39.6416500000, -104.9594300000), (1113864, 1001425, 'Cherry Valley', NULL, 'cherry-valley', 'US', 1, 42.2347400000, -88.9489900000), (1113865, 1001416, 'Cherry Valley', NULL, 'cherry-valley', 'US', 1, 33.9725200000, -116.9772500000), (1113866, 1001453, 'Cherryfield', NULL, 'cherryfield', 'US', 1, 44.6073000000, -67.9258400000), (1113867, 1001416, 'Cherryland', NULL, 'cherryland', 'US', 1, 37.6793800000, -122.1033000000), (1113868, 1001406, 'Cherryvale', NULL, 'cherryvale', 'US', 1, 37.2703400000, -95.5524800000), (1113869, 1001443, 'Cherryvale', NULL, 'cherryvale', 'US', 1, 33.9557100000, -80.4581400000), (1113870, 1001447, 'Cherryville', NULL, 'cherryville', 'US', 1, 35.3787400000, -81.3789700000), (1113871, 1001422, 'Cherryville', NULL, 'cherryville', 'US', 1, 40.7539800000, -75.5385200000), (1113872, 1001426, 'Chesaning', NULL, 'chesaning', 'US', 1, 43.1847500000, -84.1149700000), (1113873, 1001429, 'Chesapeake', NULL, 'chesapeake', 'US', 1, 38.2234400000, -81.5362300000), (1113874, 1001427, 'Chesapeake', NULL, 'chesapeake', 'US', 1, 36.8190400000, -76.2749400000), (1113875, 1001401, 'Chesapeake Beach', NULL, 'chesapeake-beach', 'US', 1, 38.6862300000, -76.5346800000), (1113876, 1001401, 'Chesapeake Ranch Estates', NULL, 'chesapeake-ranch-estates', 'US', 1, 38.3462400000, -76.4177300000), (1113877, 1001435, 'Cheshire', NULL, 'cheshire', 'US', 1, 41.4989900000, -72.9006600000), (1113878, 1001404, 'Cheshire County', NULL, 'cheshire-county', 'US', 1, 42.9193200000, -72.2511800000), (1113879, 1001435, 'Cheshire Village', NULL, 'cheshire-village', 'US', 1, 41.5026000000, -72.8995200000), (1113880, 1001417, 'Chesilhurst', NULL, 'chesilhurst', 'US', 1, 39.7323400000, -74.8810000000), (1113881, 1001455, 'Chester', NULL, 'chester', 'US', 1, 32.3937800000, -83.1529300000), (1113882, 1001425, 'Chester', NULL, 'chester', 'US', 1, 37.9136600000, -89.8220500000), (1113883, 1001401, 'Chester', NULL, 'chester', 'US', 1, 38.9753900000, -76.2894000000), (1113884, 1001422, 'Chester', NULL, 'chester', 'US', 1, 39.8496700000, -75.3570700000), (1113885, 1001443, 'Chester', NULL, 'chester', 'US', 1, 34.7048600000, -81.2142600000), (1113886, 1001427, 'Chester', NULL, 'chester', 'US', 1, 37.3568200000, -77.4416500000), (1113887, 1001404, 'Chester', NULL, 'chester', 'US', 1, 42.9567500000, -71.2572800000), (1113888, 1001452, 'Chester', NULL, 'chester', 'US', 1, 41.3625900000, -74.2712600000), (1113889, 1001417, 'Chester', NULL, 'chester', 'US', 1, 40.7842700000, -74.6968300000), (1113890, 1001429, 'Chester', NULL, 'chester', 'US', 1, 40.6131200000, -80.5628500000), (1113891, 1001409, 'Chester', NULL, 'chester', 'US', 1, 43.2628500000, -72.5950900000), (1113892, 1001416, 'Chester', NULL, 'chester', 'US', 1, 40.3062700000, -121.2319100000), (1113893, 1001446, 'Chester', NULL, 'chester', 'US', 1, 48.5105400000, -110.9674700000), (1113894, 1001435, 'Chester Center', NULL, 'chester-center', 'US', 1, 41.4013200000, -72.4527000000), (1113895, 1001443, 'Chester County', NULL, 'chester-county', 'US', 1, 34.6920600000, -81.1595300000), (1113896, 1001454, 'Chester County', NULL, 'chester-county', 'US', 1, 35.4217500000, -88.6134600000), (1113897, 1001422, 'Chester County', NULL, 'chester-county', 'US', 1, 39.9731400000, -75.7484500000), (1113898, 1001422, 'Chester Heights', NULL, 'chester-heights', 'US', 1, 39.8901100000, -75.4754800000), (1113899, 1001422, 'Chester Springs', NULL, 'chester-springs', 'US', 1, 40.0951000000, -75.6168700000), (1113900, 1001422, 'Chesterbrook', NULL, 'chesterbrook', 'US', 1, 40.0756600000, -75.4590800000), (1113901, 1001451, 'Chesterfield', NULL, 'chesterfield', 'US', 1, 38.6631100000, -90.5770700000), (1113902, 1001443, 'Chesterfield', NULL, 'chesterfield', 'US', 1, 34.7359900000, -80.0881200000), (1113903, 1001440, 'Chesterfield', NULL, 'chesterfield', 'US', 1, 40.1125400000, -85.5969200000), (1113904, 1001433, 'Chesterfield', NULL, 'chesterfield', 'US', 1, 42.3917500000, -72.8398200000), (1113905, 1001404, 'Chesterfield', NULL, 'chesterfield', 'US', 1, 42.8873000000, -72.4703700000), (1113906, 1001443, 'Chesterfield County', NULL, 'chesterfield-county', 'US', 1, 34.6397800000, -80.1587200000), (1113907, 1001427, 'Chesterfield County', NULL, 'chesterfield-county', 'US', 1, 37.3785200000, -77.5869400000), (1113908, 1001427, 'Chesterfield Court House', NULL, 'chesterfield-court-house', 'US', 1, 37.3770900000, -77.5049900000), (1113909, 1001440, 'Chesterton', NULL, 'chesterton', 'US', 1, 41.6105900000, -87.0642000000), (1113910, 1001401, 'Chestertown', NULL, 'chestertown', 'US', 1, 39.2090000000, -76.0666100000), (1113911, 1001453, 'Chesterville', NULL, 'chesterville', 'US', 1, 44.5511700000, -70.0861700000), (1113912, 1001452, 'Chestnut Ridge', NULL, 'chestnut-ridge', 'US', 1, 41.0842600000, -74.0557000000), (1113913, 1001422, 'Cheswick', NULL, 'cheswick', 'US', 1, 40.5417300000, -79.7992200000), (1113914, 1001399, 'Cheswold', NULL, 'cheswold', 'US', 1, 39.2192800000, -75.5857600000), (1113915, 1001441, 'Chetek', NULL, 'chetek', 'US', 1, 45.3141300000, -91.6510000000), (1113916, 1001406, 'Chetopa', NULL, 'chetopa', 'US', 1, 37.0372900000, -95.0899600000), (1113917, 1001400, 'Chevak', NULL, 'chevak', 'US', 1, 61.5277800000, -165.5863900000), (1113918, 1001436, 'Cheval', NULL, 'cheval', 'US', 1, 28.1486200000, -82.5145400000), (1113919, 1001401, 'Cheverly', NULL, 'cheverly', 'US', 1, 38.9281700000, -76.9158100000), (1113920, 1001437, 'Chevy Chase', NULL, 'chevy-chase', 'US', 1, 38.9640000000, -77.0677600000), (1113921, 1001401, 'Chevy Chase', NULL, 'chevy-chase', 'US', 1, 39.0028700000, -77.0711500000), (1113922, 1001422, 'Chevy Chase Heights', NULL, 'chevy-chase-heights', 'US', 1, 40.6367300000, -79.1442000000), (1113923, 1001401, 'Chevy Chase Village', NULL, 'chevy-chase-village', 'US', 1, 38.9692800000, -77.0788700000), (1113924, 1001462, 'Chewelah', NULL, 'chewelah', 'US', 1, 48.2762900000, -117.7155200000), (1113925, 1001421, 'Cheyenne', NULL, 'cheyenne', 'US', 1, 35.6139400000, -99.6714900000), (1113926, 1001442, 'Cheyenne', NULL, 'cheyenne', 'US', 1, 41.1399800000, -104.8202500000), (1113927, 1001450, 'Cheyenne County', NULL, 'cheyenne-county', 'US', 1, 38.8279400000, -102.6034000000), (1113928, 1001406, 'Cheyenne County', NULL, 'cheyenne-county', 'US', 1, 39.7858700000, -101.7311000000), (1113929, 1001408, 'Cheyenne County', NULL, 'cheyenne-county', 'US', 1, 41.2197800000, -102.9949800000), (1113930, 1001450, 'Cheyenne Wells', NULL, 'cheyenne-wells', 'US', 1, 38.8214000000, -102.3532400000), (1113931, 1001425, 'Chicago', NULL, 'chicago', 'US', 1, 41.8500300000, -87.6500500000), (1113932, 1001425, 'Chicago Heights', NULL, 'chicago-heights', 'US', 1, 41.5061500000, -87.6356000000), (1113933, 1001425, 'Chicago Lawn', NULL, 'chicago-lawn', 'US', 1, 41.7750300000, -87.6964400000), (1113934, 1001425, 'Chicago Loop', NULL, 'chicago-loop', 'US', 1, 41.8840700000, -87.6333000000), (1113935, 1001425, 'Chicago Ridge', NULL, 'chicago-ridge', 'US', 1, 41.7014200000, -87.7792200000), (1113936, 1001404, 'Chichester', NULL, 'chichester', 'US', 1, 43.2492500000, -71.3997900000), (1113937, 1001455, 'Chickamauga', NULL, 'chickamauga', 'US', 1, 34.8711900000, -85.2907900000), (1113938, 1001456, 'Chickasaw', NULL, 'chickasaw', 'US', 1, 30.7638000000, -88.0747200000), (1113939, 1001430, 'Chickasaw County', NULL, 'chickasaw-county', 'US', 1, 33.9208000000, -88.9478600000), (1113940, 1001459, 'Chickasaw County', NULL, 'chickasaw-county', 'US', 1, 43.0600400000, -92.3176600000), (1113941, 1001421, 'Chickasha', NULL, 'chickasha', 'US', 1, 35.0525700000, -97.9364300000), (1113942, 1001407, 'Chico', NULL, 'chico', 'US', 1, 33.2959500000, -97.7989200000), (1113943, 1001416, 'Chico', NULL, 'chico', 'US', 1, 39.7284900000, -121.8374800000), (1113944, 1001462, 'Chico', NULL, 'chico', 'US', 1, 47.6114800000, -122.7104200000), (1113945, 1001433, 'Chicopee', NULL, 'chicopee', 'US', 1, 42.1487000000, -72.6078700000), (1113946, 1001422, 'Chicora', NULL, 'chicora', 'US', 1, 40.9481200000, -79.7428300000), (1113947, 1001444, 'Chicot County', NULL, 'chicot-county', 'US', 1, 33.2672500000, -91.2939700000), (1113948, 1001436, 'Chiefland', NULL, 'chiefland', 'US', 1, 29.4749600000, -82.8598400000), (1113949, 1001456, 'Childersburg', NULL, 'childersburg', 'US', 1, 33.2781700000, -86.3549800000), (1113950, 1001407, 'Childress', NULL, 'childress', 'US', 1, 34.4264500000, -100.2040000000), (1113951, 1001407, 'Childress County', NULL, 'childress-county', 'US', 1, 34.5292000000, -100.2075700000), (1113952, 1001427, 'Chilhowie', NULL, 'chilhowie', 'US', 1, 36.7984500000, -81.6823400000), (1113953, 1001451, 'Chillicothe', NULL, 'chillicothe', 'US', 1, 39.7952900000, -93.5524400000), (1113954, 1001425, 'Chillicothe', NULL, 'chillicothe', 'US', 1, 40.9222600000, -89.4862000000), (1113955, 1001401, 'Chillum', NULL, 'chillum', 'US', 1, 38.9637200000, -76.9908100000), (1113956, 1001441, 'Chilton', NULL, 'chilton', 'US', 1, 44.0288800000, -88.1628800000), (1113957, 1001456, 'Chilton County', NULL, 'chilton-county', 'US', 1, 32.8478500000, -86.7188100000), (1113958, 1001423, 'Chimayo', NULL, 'chimayo', 'US', 1, 36.0039100000, -105.9469700000), (1113959, 1001407, 'China', NULL, 'china', 'US', 1, 30.0479900000, -94.3357400000), (1113960, 1001453, 'China', NULL, 'china', 'US', 1, 44.4786800000, -69.5172600000), (1113961, 1001447, 'China Grove', NULL, 'china-grove', 'US', 1, 35.5693100000, -80.5817300000), (1113962, 1001407, 'China Grove', NULL, 'china-grove', 'US', 1, 29.3888500000, -98.3489000000), (1113963, 1001416, 'China Lake Acres', NULL, 'china-lake-acres', 'US', 1, 35.6405100000, -117.7639500000), (1113964, 1001416, 'Chinatown', NULL, 'chinatown', 'US', 1, 37.7966000000, -122.4085800000), (1113965, 1001422, 'Chinchilla', NULL, 'chinchilla', 'US', 1, 41.4750800000, -75.6771300000), (1113966, 1001427, 'Chincoteague', NULL, 'chincoteague', 'US', 1, 37.9331800000, -75.3788100000), (1113967, 1001434, 'Chinle', NULL, 'chinle', 'US', 1, 36.1544500000, -109.5526100000), (1113968, 1001416, 'Chino', NULL, 'chino', 'US', 1, 34.0122300000, -117.6889400000), (1113969, 1001416, 'Chino Hills', NULL, 'chino-hills', 'US', 1, 33.9938000000, -117.7588800000), (1113970, 1001434, 'Chino Valley', NULL, 'chino-valley', 'US', 1, 34.7575200000, -112.4537800000), (1113971, 1001446, 'Chinook', NULL, 'chinook', 'US', 1, 48.5900000000, -109.2312800000), (1113972, 1001436, 'Chipley', NULL, 'chipley', 'US', 1, 30.7818600000, -85.5385400000), (1113973, 1001426, 'Chippewa County', NULL, 'chippewa-county', 'US', 1, 46.3281800000, -84.5293600000), (1113974, 1001420, 'Chippewa County', NULL, 'chippewa-county', 'US', 1, 45.0223400000, -95.5666900000), (1113975, 1001441, 'Chippewa County', NULL, 'chippewa-county', 'US', 1, 45.0694000000, -91.2798900000), (1113976, 1001441, 'Chippewa Falls', NULL, 'chippewa-falls', 'US', 1, 44.9369100000, -91.3929300000), (1113977, 1001420, 'Chisago City', NULL, 'chisago-city', 'US', 1, 45.3735800000, -92.8899400000), (1113978, 1001420, 'Chisago County', NULL, 'chisago-county', 'US', 1, 45.5024700000, -92.9083400000), (1113979, 1001420, 'Chisholm', NULL, 'chisholm', 'US', 1, 47.4891000000, -92.8838000000), (1113980, 1001453, 'Chisholm', NULL, 'chisholm', 'US', 1, 44.4814500000, -70.1995000000), (1113981, 1001452, 'Chittenango', NULL, 'chittenango', 'US', 1, 43.0450700000, -75.8665800000), (1113982, 1001409, 'Chittenden', NULL, 'chittenden', 'US', 1, 43.7078400000, -72.9481600000), (1113983, 1001409, 'Chittenden County', NULL, 'chittenden-county', 'US', 1, 44.4609800000, -73.0809200000), (1113984, 1001456, 'Choccolocco', NULL, 'choccolocco', 'US', 1, 33.6592700000, -85.7035700000), (1113985, 1001421, 'Choctaw', NULL, 'choctaw', 'US', 1, 35.4975600000, -97.2689200000), (1113986, 1001456, 'Choctaw County', NULL, 'choctaw-county', 'US', 1, 32.0196100000, -88.2632000000), (1113987, 1001430, 'Choctaw County', NULL, 'choctaw-county', 'US', 1, 33.3473100000, -89.2483800000), (1113988, 1001421, 'Choctaw County', NULL, 'choctaw-county', 'US', 1, 34.0266200000, -95.5521400000), (1113989, 1001446, 'Choteau', NULL, 'choteau', 'US', 1, 47.8124500000, -112.1836300000), (1113990, 1001421, 'Chouteau', NULL, 'chouteau', 'US', 1, 36.1859300000, -95.3430200000), (1113991, 1001446, 'Chouteau County', NULL, 'chouteau-county', 'US', 1, 47.8805600000, -110.4352000000), (1113992, 1001447, 'Chowan County', NULL, 'chowan-county', 'US', 1, 36.1265600000, -76.6021600000), (1113993, 1001416, 'Chowchilla', NULL, 'chowchilla', 'US', 1, 37.1230000000, -120.2601800000), (1113994, 1001425, 'Chrisman', NULL, 'chrisman', 'US', 1, 39.8036500000, -87.6736400000), (1113995, 1001425, 'Christian County', NULL, 'christian-county', 'US', 1, 39.5457900000, -89.2772700000), (1113996, 1001419, 'Christian County', NULL, 'christian-county', 'US', 1, 36.8941800000, -87.4903800000), (1113997, 1001451, 'Christian County', NULL, 'christian-county', 'US', 1, 36.9695700000, -93.1888500000), (1113998, 1001454, 'Christiana', NULL, 'christiana', 'US', 1, 35.7100700000, -86.3994400000), (1113999, 1001422, 'Christiana', NULL, 'christiana', 'US', 1, 39.9548300000, -75.9968900000), (1114000, 1001427, 'Christiansburg', NULL, 'christiansburg', 'US', 1, 37.1298500000, -80.4089400000), (1114001, 1001436, 'Christmas', NULL, 'christmas', 'US', 1, 28.5363900000, -81.0175600000), (1114002, 1001425, 'Christopher', NULL, 'christopher', 'US', 1, 37.9725500000, -89.0534100000), (1114003, 1001416, 'Chualar', NULL, 'chualar', 'US', 1, 36.5705200000, -121.5185500000), (1114004, 1001460, 'Chubbuck', NULL, 'chubbuck', 'US', 1, 42.9207500000, -112.4660900000), (1114005, 1001416, 'Chula Vista', NULL, 'chula-vista', 'US', 1, 32.6400500000, -117.0842000000), (1114006, 1001436, 'Chuluota', NULL, 'chuluota', 'US', 1, 28.6419400000, -81.1234000000), (1114007, 1001454, 'Church Hill', NULL, 'church-hill', 'US', 1, 36.5223200000, -82.7134900000), (1114008, 1001422, 'Church Hill', NULL, 'church-hill', 'US', 1, 40.6820100000, -77.5986100000), (1114009, 1001457, 'Church Point', NULL, 'church-point', 'US', 1, 30.4029800000, -92.2151300000), (1114010, 1001423, 'Church Rock', NULL, 'church-rock', 'US', 1, 35.5339100000, -108.5998000000), (1114011, 1001422, 'Churchill', NULL, 'churchill', 'US', 1, 40.4384000000, -79.8431000000), (1114012, 1001458, 'Churchill County', NULL, 'churchill-county', 'US', 1, 39.5808800000, -118.3357800000), (1114013, 1001452, 'Churchville', NULL, 'churchville', 'US', 1, 43.1042300000, -77.8844500000), (1114014, 1001422, 'Churchville', NULL, 'churchville', 'US', 1, 40.1862200000, -75.0187800000), (1114015, 1001440, 'Churubusco', NULL, 'churubusco', 'US', 1, 41.2306000000, -85.3194200000), (1114016, 1001434, 'Cibecue', NULL, 'cibecue', 'US', 1, 34.0447700000, -110.4853900000), (1114017, 1001423, 'Cibola County', NULL, 'cibola-county', 'US', 1, 34.9125700000, -107.9997100000), (1114018, 1001407, 'Cibolo', NULL, 'cibolo', 'US', 1, 29.5616200000, -98.2269600000), (1114019, 1001425, 'Cicero', NULL, 'cicero', 'US', 1, 41.8455900000, -87.7539400000), (1114020, 1001440, 'Cicero', NULL, 'cicero', 'US', 1, 40.1239300000, -86.0133200000), (1114021, 1001434, 'Cienega Springs', NULL, 'cienega-springs', 'US', 1, 34.1886300000, -114.2246700000), (1114022, 1001407, 'Cienegas Terrace', NULL, 'cienegas-terrace', 'US', 1, 29.3674500000, -100.9437100000), (1114023, 1001406, 'Cimarron', NULL, 'cimarron', 'US', 1, 37.8066900000, -100.3482000000), (1114024, 1001421, 'Cimarron County', NULL, 'cimarron-county', 'US', 1, 36.7483100000, -102.5177100000), (1114025, 1001450, 'Cimarron Hills', NULL, 'cimarron-hills', 'US', 1, 38.8586100000, -104.6988600000), (1114026, 1001407, 'Cinco Ranch', NULL, 'cinco-ranch', 'US', 1, 29.7388400000, -95.7580000000), (1114027, 1001417, 'Cinnaminson', NULL, 'cinnaminson', 'US', 1, 39.9967800000, -74.9926700000), (1114028, 1001446, 'Circle', NULL, 'circle', 'US', 1, 47.4166700000, -105.5922200000), (1114029, 1001407, 'Circle D-KC Estates', NULL, 'circle-d-kc-estates', 'US', 1, 30.1610000000, -97.2347300000), (1114030, 1001420, 'Circle Pines', NULL, 'circle-pines', 'US', 1, 45.1485800000, -93.1516100000), (1114031, 1001407, 'Cisco', NULL, 'cisco', 'US', 1, 32.3881900000, -98.9792300000), (1114032, 1001436, 'Citra', NULL, 'citra', 'US', 1, 29.4119200000, -82.1098200000), (1114033, 1001456, 'Citronelle', NULL, 'citronelle', 'US', 1, 31.0907300000, -88.2280600000), (1114034, 1001416, 'Citrus', NULL, 'citrus', 'US', 1, 34.1150100000, -117.8917300000), (1114035, 1001407, 'Citrus City', NULL, 'citrus-city', 'US', 1, 26.3264600000, -98.3853000000), (1114036, 1001436, 'Citrus County', NULL, 'citrus-county', 'US', 1, 28.8475700000, -82.5201100000), (1114037, 1001416, 'Citrus Heights', NULL, 'citrus-heights', 'US', 1, 38.7071200000, -121.2810600000), (1114038, 1001436, 'Citrus Hills', NULL, 'citrus-hills', 'US', 1, 28.8883100000, -82.4326000000), (1114039, 1001436, 'Citrus Park', NULL, 'citrus-park', 'US', 1, 28.0783500000, -82.5698200000), (1114040, 1001434, 'Citrus Park', NULL, 'citrus-park', 'US', 1, 33.5486500000, -112.4443300000), (1114041, 1001436, 'Citrus Ridge', NULL, 'citrus-ridge', 'US', 1, 28.3338500000, -81.6423200000), (1114042, 1001436, 'Citrus Springs', NULL, 'citrus-springs', 'US', 1, 28.9974800000, -82.4706500000), (1114043, 1001452, 'City Island', NULL, 'city-island', 'US', 1, 40.8473200000, -73.7865200000), (1114044, 1001443, 'City View', NULL, 'city-view', 'US', 1, 34.8615100000, -82.4315100000), (1114045, 1001400, 'City and Borough of Wrangell', NULL, 'city-and-borough-of-wrangell', 'US', 1, 56.4133100000, -132.3200900000), (1114046, 1001416, 'City and County of San Francisco', NULL, 'city-and-county-of-san-francisco', 'US', 1, 37.7782300000, -122.4425000000), (1114047, 1001427, 'City of Alexandria', NULL, 'city-of-alexandria', 'US', 1, 38.8048400000, -77.0469200000), (1114048, 1001401, 'City of Baltimore', NULL, 'city-of-baltimore', 'US', 1, 39.2903800000, -76.6121900000), (1114049, 1001427, 'City of Bedford', NULL, 'city-of-bedford', 'US', 1, 37.3343100000, -79.5230900000), (1114050, 1001427, 'City of Bristol', NULL, 'city-of-bristol', 'US', 1, 36.5964900000, -82.1884700000), (1114051, 1001427, 'City of Buena Vista', NULL, 'city-of-buena-vista', 'US', 1, 37.7343000000, -79.3539200000), (1114052, 1001427, 'City of Charlottesville', NULL, 'city-of-charlottesville', 'US', 1, 38.0293100000, -78.4766800000), (1114053, 1001427, 'City of Chesapeake', NULL, 'city-of-chesapeake', 'US', 1, 36.6876500000, -76.3121600000), (1114054, 1001427, 'City of Colonial Heights', NULL, 'city-of-colonial-heights', 'US', 1, 37.2440400000, -77.4102600000), (1114055, 1001427, 'City of Covington', NULL, 'city-of-covington', 'US', 1, 37.7934600000, -79.9939500000), (1114056, 1001427, 'City of Danville', NULL, 'city-of-danville', 'US', 1, 36.5859700000, -79.3950200000), (1114057, 1001427, 'City of Emporia', NULL, 'city-of-emporia', 'US', 1, 36.6859800000, -77.5424800000), (1114058, 1001427, 'City of Fairfax', NULL, 'city-of-fairfax', 'US', 1, 38.8462200000, -77.3063700000), (1114059, 1001427, 'City of Falls Church', NULL, 'city-of-falls-church', 'US', 1, 38.8823300000, -77.1710900000), (1114060, 1001427, 'City of Franklin', NULL, 'city-of-franklin', 'US', 1, 36.6776500000, -76.9224600000), (1114061, 1001427, 'City of Fredericksburg', NULL, 'city-of-fredericksburg', 'US', 1, 38.3031800000, -77.4605400000), (1114062, 1001427, 'City of Galax', NULL, 'city-of-galax', 'US', 1, 36.6612400000, -80.9239700000), (1114063, 1001427, 'City of Hampton', NULL, 'city-of-hampton', 'US', 1, 37.0626500000, -76.3330000000), (1114064, 1001427, 'City of Harrisonburg', NULL, 'city-of-harrisonburg', 'US', 1, 38.4495700000, -78.8689200000), (1114065, 1001427, 'City of Hopewell', NULL, 'city-of-hopewell', 'US', 1, 37.3043200000, -77.2872000000), (1114066, 1001427, 'City of Lexington', NULL, 'city-of-lexington', 'US', 1, 37.7730900000, -79.4524400000), (1114067, 1001427, 'City of Lynchburg', NULL, 'city-of-lynchburg', 'US', 1, 37.4137500000, -79.1422500000), (1114068, 1001427, 'City of Manassas', NULL, 'city-of-manassas', 'US', 1, 38.7509500000, -77.4752700000), (1114069, 1001427, 'City of Manassas Park', NULL, 'city-of-manassas-park', 'US', 1, 38.7840000000, -77.4697100000), (1114070, 1001427, 'City of Martinsville', NULL, 'city-of-martinsville', 'US', 1, 36.6915300000, -79.8725400000), (1114071, 1001435, 'City of Milford (balance)', NULL, 'city-of-milford-balance', 'US', 1, 41.2237400000, -73.0616400000), (1114072, 1001427, 'City of Newport News', NULL, 'city-of-newport-news', 'US', 1, 37.0626500000, -76.5080100000), (1114073, 1001427, 'City of Norfolk', NULL, 'city-of-norfolk', 'US', 1, 36.8912600000, -76.2618800000), (1114074, 1001427, 'City of Norton', NULL, 'city-of-norton', 'US', 1, 36.9334300000, -82.6290500000), (1114075, 1001427, 'City of Petersburg', NULL, 'city-of-petersburg', 'US', 1, 37.2279300000, -77.4019300000), (1114076, 1001427, 'City of Poquoson', NULL, 'city-of-poquoson', 'US', 1, 37.1223700000, -76.3457800000), (1114077, 1001427, 'City of Portsmouth', NULL, 'city-of-portsmouth', 'US', 1, 36.8364900000, -76.3079500000), (1114078, 1001427, 'City of Radford', NULL, 'city-of-radford', 'US', 1, 37.1317900000, -80.5764500000), (1114079, 1001427, 'City of Richmond', NULL, 'city-of-richmond', 'US', 1, 37.5537600000, -77.4602600000), (1114080, 1001427, 'City of Roanoke', NULL, 'city-of-roanoke', 'US', 1, 37.2709700000, -79.9414300000), (1114081, 1001451, 'City of Saint Louis', NULL, 'city-of-saint-louis', 'US', 1, 38.6272700000, -90.1978900000), (1114082, 1001427, 'City of Salem', NULL, 'city-of-salem', 'US', 1, 37.2934700000, -80.0547600000), (1114083, 1001462, 'City of Sammamish', NULL, 'city-of-sammamish', 'US', 1, 47.6044400000, -122.0376800000), (1114084, 1001427, 'City of Staunton', NULL, 'city-of-staunton', 'US', 1, 38.1493100000, -79.0596300000), (1114085, 1001427, 'City of Suffolk', NULL, 'city-of-suffolk', 'US', 1, 36.7084800000, -76.6080100000), (1114086, 1001427, 'City of Virginia Beach', NULL, 'city-of-virginia-beach', 'US', 1, 36.7376500000, -76.0052100000), (1114087, 1001427, 'City of Waynesboro', NULL, 'city-of-waynesboro', 'US', 1, 38.0684700000, -78.8894700000), (1114088, 1001427, 'City of Williamsburg', NULL, 'city-of-williamsburg', 'US', 1, 37.2707000000, -76.7074600000), (1114089, 1001427, 'City of Winchester', NULL, 'city-of-winchester', 'US', 1, 39.1856600000, -78.1633300000), (1114090, 1001415, 'Clackamas', NULL, 'clackamas', 'US', 1, 45.4076200000, -122.5703700000), (1114091, 1001415, 'Clackamas County', NULL, 'clackamas-county', 'US', 1, 45.1881600000, -122.2209400000), (1114092, 1001457, 'Claiborne', NULL, 'claiborne', 'US', 1, 32.5159800000, -92.1918000000), (1114093, 1001430, 'Claiborne County', NULL, 'claiborne-county', 'US', 1, 31.9736900000, -90.9118100000), (1114094, 1001454, 'Claiborne County', NULL, 'claiborne-county', 'US', 1, 36.4858500000, -83.6604200000), (1114095, 1001457, 'Claiborne Parish', NULL, 'claiborne-parish', 'US', 1, 32.8226900000, -92.9957300000), (1114096, 1001422, 'Clairton', NULL, 'clairton', 'US', 1, 40.2922900000, -79.8817100000), (1114097, 1001462, 'Clallam County', NULL, 'clallam-county', 'US', 1, 48.1104400000, -123.9343200000), (1114098, 1001446, 'Clancy', NULL, 'clancy', 'US', 1, 46.4652100000, -111.9863800000), (1114099, 1001456, 'Clanton', NULL, 'clanton', 'US', 1, 32.8387400000, -86.6294300000), (1114100, 1001420, 'Clara City', NULL, 'clara-city', 'US', 1, 44.9549600000, -95.3664000000), (1114101, 1001436, 'Clarcona', NULL, 'clarcona', 'US', 1, 28.6127800000, -81.4986800000), (1114102, 1001426, 'Clare', NULL, 'clare', 'US', 1, 43.8194700000, -84.7686300000), (1114103, 1001426, 'Clare County', NULL, 'clare-county', 'US', 1, 43.9878700000, -84.8478400000), (1114104, 1001447, 'Claremont', NULL, 'claremont', 'US', 1, 35.7145800000, -81.1461900000), (1114105, 1001404, 'Claremont', NULL, 'claremont', 'US', 1, 43.3767400000, -72.3467600000), (1114106, 1001416, 'Claremont', NULL, 'claremont', 'US', 1, 34.0966800000, -117.7197800000), (1114107, 1001421, 'Claremore', NULL, 'claremore', 'US', 1, 36.3126000000, -95.6160900000), (1114108, 1001452, 'Clarence', NULL, 'clarence', 'US', 1, 42.9767300000, -78.5919700000), (1114109, 1001452, 'Clarence Center', NULL, 'clarence-center', 'US', 1, 43.0106100000, -78.6375300000), (1114110, 1001444, 'Clarendon', NULL, 'clarendon', 'US', 1, 34.6931500000, -91.3137400000), (1114111, 1001409, 'Clarendon', NULL, 'clarendon', 'US', 1, 43.5161800000, -72.9698300000), (1114112, 1001407, 'Clarendon', NULL, 'clarendon', 'US', 1, 34.9378300000, -100.8882000000), (1114113, 1001443, 'Clarendon County', NULL, 'clarendon-county', 'US', 1, 33.6658100000, -80.2164000000), (1114114, 1001425, 'Clarendon Hills', NULL, 'clarendon-hills', 'US', 1, 41.7975300000, -87.9547800000), (1114115, 1001459, 'Clarinda', NULL, 'clarinda', 'US', 1, 40.7398100000, -95.0380000000), (1114116, 1001459, 'Clarion', NULL, 'clarion', 'US', 1, 42.7316400000, -93.7329900000), (1114117, 1001422, 'Clarion', NULL, 'clarion', 'US', 1, 41.2147900000, -79.3853200000), (1114118, 1001422, 'Clarion County', NULL, 'clarion-county', 'US', 1, 41.1923900000, -79.4209600000), (1114119, 1001417, 'Clark', NULL, 'clark', 'US', 1, 40.6409400000, -74.3107000000), (1114120, 1001445, 'Clark', NULL, 'clark', 'US', 1, 44.8777400000, -97.7331400000), (1114121, 1001444, 'Clark County', NULL, 'clark-county', 'US', 1, 34.0509600000, -93.1763700000), (1114122, 1001425, 'Clark County', NULL, 'clark-county', 'US', 1, 39.3335700000, -87.7877200000), (1114123, 1001440, 'Clark County', NULL, 'clark-county', 'US', 1, 38.4771800000, -85.7072800000), (1114124, 1001406, 'Clark County', NULL, 'clark-county', 'US', 1, 37.2355200000, -99.8203100000), (1114125, 1001419, 'Clark County', NULL, 'clark-county', 'US', 1, 37.9708500000, -84.1474000000), (1114126, 1001451, 'Clark County', NULL, 'clark-county', 'US', 1, 40.4103600000, -91.7384000000), (1114127, 1001445, 'Clark County', NULL, 'clark-county', 'US', 1, 44.8582500000, -97.7295000000), (1114128, 1001441, 'Clark County', NULL, 'clark-county', 'US', 1, 44.7347100000, -90.6120800000), (1114129, 1001458, 'Clark County', NULL, 'clark-county', 'US', 1, 36.2152000000, -115.0135600000), (1114130, 1001460, 'Clark County', NULL, 'clark-county', 'US', 1, 44.2839800000, -112.3513500000), (1114131, 1001462, 'Clark County', NULL, 'clark-county', 'US', 1, 45.7792700000, -122.4825900000), (1114132, 1001452, 'Clark Mills', NULL, 'clark-mills', 'US', 1, 43.0922900000, -75.3796200000), (1114133, 1001434, 'Clarkdale', NULL, 'clarkdale', 'US', 1, 34.7711300000, -112.0579400000), (1114134, 1001456, 'Clarke County', NULL, 'clarke-county', 'US', 1, 31.6766600000, -87.8308100000), (1114135, 1001455, 'Clarke County', NULL, 'clarke-county', 'US', 1, 33.9511700000, -83.3673300000), (1114136, 1001430, 'Clarke County', NULL, 'clarke-county', 'US', 1, 32.0414000000, -88.6894000000), (1114137, 1001427, 'Clarke County', NULL, 'clarke-county', 'US', 1, 39.1122600000, -77.9967300000), (1114138, 1001459, 'Clarke County', NULL, 'clarke-county', 'US', 1, 41.0290300000, -93.7851600000), (1114139, 1001455, 'Clarkesville', NULL, 'clarkesville', 'US', 1, 34.6126000000, -83.5248900000), (1114140, 1001457, 'Clarks', NULL, 'clarks', 'US', 1, 32.0265500000, -92.1390300000), (1114141, 1001422, 'Clarks Green', NULL, 'clarks-green', 'US', 1, 41.4928600000, -75.6996400000), (1114142, 1001422, 'Clarks Summit', NULL, 'clarks-summit', 'US', 1, 41.4886900000, -75.7085200000), (1114143, 1001401, 'Clarksburg', NULL, 'clarksburg', 'US', 1, 39.2387200000, -77.2794300000), (1114144, 1001429, 'Clarksburg', NULL, 'clarksburg', 'US', 1, 39.2806500000, -80.3445300000), (1114145, 1001430, 'Clarksdale', NULL, 'clarksdale', 'US', 1, 34.2001100000, -90.5709300000), (1114146, 1001452, 'Clarkson', NULL, 'clarkson', 'US', 1, 43.2331200000, -77.9275100000), (1114147, 1001451, 'Clarkson Valley', NULL, 'clarkson-valley', 'US', 1, 38.6183900000, -90.5892900000), (1114148, 1001455, 'Clarkston', NULL, 'clarkston', 'US', 1, 33.8095500000, -84.2396400000), (1114149, 1001426, 'Clarkston', NULL, 'clarkston', 'US', 1, 42.7358600000, -83.4188300000), (1114150, 1001462, 'Clarkston', NULL, 'clarkston', 'US', 1, 46.4162900000, -117.0455700000), (1114151, 1001462, 'Clarkston Heights-Vineland', NULL, 'clarkston-heights-vineland', 'US', 1, 46.3874200000, -117.0830000000), (1114152, 1001444, 'Clarksville', NULL, 'clarksville', 'US', 1, 35.4714700000, -93.4665700000), (1114153, 1001440, 'Clarksville', NULL, 'clarksville', 'US', 1, 38.2967400000, -85.7599600000), (1114154, 1001454, 'Clarksville', NULL, 'clarksville', 'US', 1, 36.5297700000, -87.3594500000), (1114155, 1001407, 'Clarksville', NULL, 'clarksville', 'US', 1, 33.6106600000, -95.0527200000), (1114156, 1001459, 'Clarksville', NULL, 'clarksville', 'US', 1, 42.7847000000, -92.6676900000), (1114157, 1001427, 'Clarksville', NULL, 'clarksville', 'US', 1, 36.6240300000, -78.5569400000), (1114158, 1001451, 'Clarkton', NULL, 'clarkton', 'US', 1, 36.4517300000, -89.9670400000), (1114159, 1001419, 'Claryville', NULL, 'claryville', 'US', 1, 38.9192300000, -84.3954900000), (1114160, 1001415, 'Clatskanie', NULL, 'clatskanie', 'US', 1, 46.1012200000, -123.2067900000), (1114161, 1001415, 'Clatsop County', NULL, 'clatsop-county', 'US', 1, 46.0174700000, -123.7167700000), (1114162, 1001407, 'Claude', NULL, 'claude', 'US', 1, 35.1117200000, -101.3632200000), (1114163, 1001426, 'Clawson', NULL, 'clawson', 'US', 1, 42.5333700000, -83.1463200000), (1114164, 1001455, 'Claxton', NULL, 'claxton', 'US', 1, 32.1615800000, -81.9040000000), (1114165, 1001456, 'Clay', NULL, 'clay', 'US', 1, 33.7026000000, -86.5997100000), (1114166, 1001419, 'Clay', NULL, 'clay', 'US', 1, 37.4767100000, -87.8200200000), (1114167, 1001429, 'Clay', NULL, 'clay', 'US', 1, 38.4603800000, -81.0851100000), (1114168, 1001422, 'Clay', NULL, 'clay', 'US', 1, 40.2184300000, -76.2555100000), (1114169, 1001416, 'Clay', NULL, 'clay', 'US', 1, 38.3360200000, -121.1593900000), (1114170, 1001406, 'Clay Center', NULL, 'clay-center', 'US', 1, 39.3769400000, -97.1247400000), (1114171, 1001408, 'Clay Center', NULL, 'clay-center', 'US', 1, 40.5216800000, -98.0553300000), (1114172, 1001419, 'Clay City', NULL, 'clay-city', 'US', 1, 37.8592500000, -83.9185300000), (1114173, 1001456, 'Clay County', NULL, 'clay-county', 'US', 1, 33.2690900000, -85.8605500000), (1114174, 1001444, 'Clay County', NULL, 'clay-county', 'US', 1, 36.3683900000, -90.4173800000), (1114175, 1001436, 'Clay County', NULL, 'clay-county', 'US', 1, 29.9830700000, -81.8578900000), (1114176, 1001455, 'Clay County', NULL, 'clay-county', 'US', 1, 31.6262800000, -84.9801000000), (1114177, 1001425, 'Clay County', NULL, 'clay-county', 'US', 1, 38.7541600000, -88.4901900000), (1114178, 1001440, 'Clay County', NULL, 'clay-county', 'US', 1, 39.3927300000, -87.1157600000), (1114179, 1001406, 'Clay County', NULL, 'clay-county', 'US', 1, 39.3497100000, -97.1651700000), (1114180, 1001419, 'Clay County', NULL, 'clay-county', 'US', 1, 37.1597100000, -83.7146800000), (1114181, 1001451, 'Clay County', NULL, 'clay-county', 'US', 1, 39.3105200000, -94.4208700000), (1114182, 1001430, 'Clay County', NULL, 'clay-county', 'US', 1, 33.6556700000, -88.7815700000), (1114183, 1001447, 'Clay County', NULL, 'clay-county', 'US', 1, 35.0571900000, -83.7502100000), (1114184, 1001454, 'Clay County', NULL, 'clay-county', 'US', 1, 36.5511600000, -85.5438600000), (1114185, 1001407, 'Clay County', NULL, 'clay-county', 'US', 1, 33.7855300000, -98.2085000000), (1114186, 1001429, 'Clay County', NULL, 'clay-county', 'US', 1, 38.4625300000, -81.0750900000), (1114187, 1001459, 'Clay County', NULL, 'clay-county', 'US', 1, 43.0825800000, -95.1509200000), (1114188, 1001420, 'Clay County', NULL, 'clay-county', 'US', 1, 46.8923400000, -96.4906500000), (1114189, 1001408, 'Clay County', NULL, 'clay-county', 'US', 1, 40.5244300000, -98.0512800000), (1114190, 1001445, 'Clay County', NULL, 'clay-county', 'US', 1, 42.9146500000, -96.9756600000), (1114191, 1001451, 'Claycomo', NULL, 'claycomo', 'US', 1, 39.2025000000, -94.4924500000), (1114192, 1001399, 'Claymont', NULL, 'claymont', 'US', 1, 39.8006700000, -75.4596400000), (1114193, 1001434, 'Claypool', NULL, 'claypool', 'US', 1, 33.4111700000, -110.8426100000), (1114194, 1001427, 'Claypool Hill', NULL, 'claypool-hill', 'US', 1, 37.0626100000, -81.7517800000), (1114195, 1001422, 'Claysburg', NULL, 'claysburg', 'US', 1, 40.2967400000, -78.4497400000), (1114196, 1001456, 'Clayton', NULL, 'clayton', 'US', 1, 31.8782200000, -85.4496600000), (1114197, 1001399, 'Clayton', NULL, 'clayton', 'US', 1, 39.2906700000, -75.6343700000), (1114198, 1001455, 'Clayton', NULL, 'clayton', 'US', 1, 34.8781500000, -83.4009900000), (1114199, 1001451, 'Clayton', NULL, 'clayton', 'US', 1, 38.6425500000, -90.3237300000), (1114200, 1001447, 'Clayton', NULL, 'clayton', 'US', 1, 35.6507100000, -78.4563900000), (1114201, 1001417, 'Clayton', NULL, 'clayton', 'US', 1, 39.6601100000, -75.0921200000), (1114202, 1001452, 'Clayton', NULL, 'clayton', 'US', 1, 44.2394900000, -76.0857800000), (1114203, 1001416, 'Clayton', NULL, 'clayton', 'US', 1, 37.9410300000, -121.9357900000), (1114204, 1001423, 'Clayton', NULL, 'clayton', 'US', 1, 36.4516900000, -103.1841000000), (1114205, 1001455, 'Clayton County', NULL, 'clayton-county', 'US', 1, 33.5418900000, -84.3576900000), (1114206, 1001459, 'Clayton County', NULL, 'clayton-county', 'US', 1, 42.8447500000, -91.3414300000), (1114207, 1001462, 'Cle Elum', NULL, 'cle-elum', 'US', 1, 47.1954000000, -120.9392500000), (1114208, 1001450, 'Clear Creek County', NULL, 'clear-creek-county', 'US', 1, 39.6891000000, -105.6443600000), (1114209, 1001459, 'Clear Lake', NULL, 'clear-lake', 'US', 1, 43.1380200000, -93.3793700000), (1114210, 1001445, 'Clear Lake', NULL, 'clear-lake', 'US', 1, 44.7458000000, -96.6825600000), (1114211, 1001441, 'Clear Lake', NULL, 'clear-lake', 'US', 1, 45.2519100000, -92.2713000000), (1114212, 1001462, 'Clear Lake', NULL, 'clear-lake', 'US', 1, 48.4642700000, -122.2340400000), (1114213, 1001416, 'Clear Lake Riviera', NULL, 'clear-lake-riviera', 'US', 1, 38.9540600000, -122.7208200000); INSERT INTO `[[dbprefix]]t_city` VALUES (1114214, 1001407, 'Clear Lake Shores', NULL, 'clear-lake-shores', 'US', 1, 29.5474500000, -95.0321500000), (1114215, 1001417, 'Clearbrook Park', NULL, 'clearbrook-park', 'US', 1, 40.3098300000, -74.4646000000), (1114216, 1001422, 'Clearfield', NULL, 'clearfield', 'US', 1, 41.0272800000, -78.4391900000), (1114217, 1001414, 'Clearfield', NULL, 'clearfield', 'US', 1, 41.1107800000, -112.0260500000), (1114218, 1001422, 'Clearfield County', NULL, 'clearfield-county', 'US', 1, 41.0001900000, -78.4741100000), (1114219, 1001416, 'Clearlake', NULL, 'clearlake', 'US', 1, 38.9582300000, -122.6263700000), (1114220, 1001416, 'Clearlake Oaks', NULL, 'clearlake-oaks', 'US', 1, 39.0262800000, -122.6719300000), (1114221, 1001462, 'Clearview', NULL, 'clearview', 'US', 1, 47.8337100000, -122.1259600000), (1114222, 1001436, 'Clearwater', NULL, 'clearwater', 'US', 1, 27.9658500000, -82.8001000000), (1114223, 1001406, 'Clearwater', NULL, 'clearwater', 'US', 1, 37.5028000000, -97.5044900000), (1114224, 1001443, 'Clearwater', NULL, 'clearwater', 'US', 1, 33.4968000000, -81.8920600000), (1114225, 1001420, 'Clearwater', NULL, 'clearwater', 'US', 1, 45.4194100000, -94.0488700000), (1114226, 1001420, 'Clearwater County', NULL, 'clearwater-county', 'US', 1, 47.5776600000, -95.3790300000), (1114227, 1001460, 'Clearwater County', NULL, 'clearwater-county', 'US', 1, 46.6737000000, -115.6568600000), (1114228, 1001430, 'Cleary', NULL, 'cleary', 'US', 1, 32.1654300000, -90.1806400000), (1114229, 1001407, 'Cleburne', NULL, 'cleburne', 'US', 1, 32.3476400000, -97.3866800000), (1114230, 1001456, 'Cleburne County', NULL, 'cleburne-county', 'US', 1, 33.6745600000, -85.5187700000), (1114231, 1001444, 'Cleburne County', NULL, 'cleburne-county', 'US', 1, 35.5381100000, -92.0267400000), (1114232, 1001417, 'Clementon', NULL, 'clementon', 'US', 1, 39.8115000000, -74.9829400000), (1114233, 1001447, 'Clemmons', NULL, 'clemmons', 'US', 1, 36.0215300000, -80.3820000000), (1114234, 1001443, 'Clemson', NULL, 'clemson', 'US', 1, 34.6834400000, -82.8373700000), (1114235, 1001429, 'Clendenin', NULL, 'clendenin', 'US', 1, 38.4887100000, -81.3481700000), (1114236, 1001422, 'Cleona', NULL, 'cleona', 'US', 1, 40.3373100000, -76.4755200000), (1114237, 1001421, 'Cleora', NULL, 'cleora', 'US', 1, 36.5789700000, -94.9710700000), (1114238, 1001436, 'Clermont', NULL, 'clermont', 'US', 1, 28.5494400000, -81.7728500000), (1114239, 1001440, 'Clermont', NULL, 'clermont', 'US', 1, 39.8097700000, -86.3224900000), (1114240, 1001456, 'Cleveland', NULL, 'cleveland', 'US', 1, 33.9909300000, -86.5774900000), (1114241, 1001436, 'Cleveland', NULL, 'cleveland', 'US', 1, 26.9617300000, -81.9839800000), (1114242, 1001455, 'Cleveland', NULL, 'cleveland', 'US', 1, 34.5970400000, -83.7632400000), (1114243, 1001430, 'Cleveland', NULL, 'cleveland', 'US', 1, 33.7440000000, -90.7248200000), (1114244, 1001454, 'Cleveland', NULL, 'cleveland', 'US', 1, 35.1595200000, -84.8766100000), (1114245, 1001421, 'Cleveland', NULL, 'cleveland', 'US', 1, 36.3103200000, -96.4658400000), (1114246, 1001407, 'Cleveland', NULL, 'cleveland', 'US', 1, 30.3413200000, -95.0854900000), (1114247, 1001441, 'Cleveland', NULL, 'cleveland', 'US', 1, 43.9149900000, -87.7473100000), (1114248, 1001444, 'Cleveland County', NULL, 'cleveland-county', 'US', 1, 33.8983600000, -92.1851400000), (1114249, 1001447, 'Cleveland County', NULL, 'cleveland-county', 'US', 1, 35.3341100000, -81.5556100000), (1114250, 1001421, 'Cleveland County', NULL, 'cleveland-county', 'US', 1, 35.2030200000, -97.3264100000), (1114251, 1001451, 'Clever', NULL, 'clever', 'US', 1, 37.0303300000, -93.4729700000), (1114252, 1001436, 'Clewiston', NULL, 'clewiston', 'US', 1, 26.7542300000, -80.9336800000), (1114253, 1001417, 'Cliffside Park', NULL, 'cliffside-park', 'US', 1, 40.8214900000, -73.9876400000), (1114254, 1001417, 'Cliffwood Beach', NULL, 'cliffwood-beach', 'US', 1, 40.4420500000, -74.2168100000), (1114255, 1001454, 'Clifton', NULL, 'clifton', 'US', 1, 35.3870200000, -87.9953100000), (1114256, 1001407, 'Clifton', NULL, 'clifton', 'US', 1, 31.7823800000, -97.5766900000), (1114257, 1001425, 'Clifton', NULL, 'clifton', 'US', 1, 40.9353100000, -87.9344900000), (1114258, 1001452, 'Clifton', NULL, 'clifton', 'US', 1, 40.6201000000, -74.0770900000), (1114259, 1001417, 'Clifton', NULL, 'clifton', 'US', 1, 40.8584300000, -74.1637600000), (1114260, 1001434, 'Clifton', NULL, 'clifton', 'US', 1, 33.0509000000, -109.2961800000), (1114261, 1001450, 'Clifton', NULL, 'clifton', 'US', 1, 39.0919300000, -108.4489800000), (1114262, 1001427, 'Clifton Forge', NULL, 'clifton-forge', 'US', 1, 37.8162400000, -79.8244900000), (1114263, 1001422, 'Clifton Heights', NULL, 'clifton-heights', 'US', 1, 39.9292800000, -75.2963000000), (1114264, 1001452, 'Clifton Springs', NULL, 'clifton-springs', 'US', 1, 42.9617300000, -77.1399800000), (1114265, 1001455, 'Clinch County', NULL, 'clinch-county', 'US', 1, 30.9149500000, -82.7062400000), (1114266, 1001407, 'Clint', NULL, 'clint', 'US', 1, 31.5923400000, -106.2241400000), (1114267, 1001444, 'Clinton', NULL, 'clinton', 'US', 1, 35.5914700000, -92.4604400000), (1114268, 1001440, 'Clinton', NULL, 'clinton', 'US', 1, 39.6569800000, -87.3980700000), (1114269, 1001419, 'Clinton', NULL, 'clinton', 'US', 1, 36.6672800000, -88.9934000000), (1114270, 1001457, 'Clinton', NULL, 'clinton', 'US', 1, 30.8657400000, -91.0156600000), (1114271, 1001451, 'Clinton', NULL, 'clinton', 'US', 1, 38.3686300000, -93.7782700000), (1114272, 1001401, 'Clinton', NULL, 'clinton', 'US', 1, 38.7651100000, -76.8983100000), (1114273, 1001447, 'Clinton', NULL, 'clinton', 'US', 1, 34.9979500000, -78.3233300000), (1114274, 1001430, 'Clinton', NULL, 'clinton', 'US', 1, 32.3415300000, -90.3217600000), (1114275, 1001454, 'Clinton', NULL, 'clinton', 'US', 1, 36.1034100000, -84.1318600000), (1114276, 1001421, 'Clinton', NULL, 'clinton', 'US', 1, 35.5156100000, -98.9673100000), (1114277, 1001443, 'Clinton', NULL, 'clinton', 'US', 1, 34.4726300000, -81.8806600000), (1114278, 1001459, 'Clinton', NULL, 'clinton', 'US', 1, 41.8444700000, -90.1887400000), (1114279, 1001425, 'Clinton', NULL, 'clinton', 'US', 1, 40.1536500000, -88.9645300000), (1114280, 1001433, 'Clinton', NULL, 'clinton', 'US', 1, 42.4167600000, -71.6828500000), (1114281, 1001453, 'Clinton', NULL, 'clinton', 'US', 1, 44.6378400000, -69.5031000000), (1114282, 1001426, 'Clinton', NULL, 'clinton', 'US', 1, 42.0719900000, -83.9716100000), (1114283, 1001452, 'Clinton', NULL, 'clinton', 'US', 1, 43.0484000000, -75.3785000000), (1114284, 1001417, 'Clinton', NULL, 'clinton', 'US', 1, 40.6367700000, -74.9098900000), (1114285, 1001435, 'Clinton', NULL, 'clinton', 'US', 1, 41.2787100000, -72.5275900000), (1114286, 1001441, 'Clinton', NULL, 'clinton', 'US', 1, 42.5577900000, -88.8651100000), (1114287, 1001446, 'Clinton', NULL, 'clinton', 'US', 1, 46.7690900000, -113.7126000000), (1114288, 1001414, 'Clinton', NULL, 'clinton', 'US', 1, 41.1396700000, -112.0505000000), (1114289, 1001425, 'Clinton County', NULL, 'clinton-county', 'US', 1, 38.6064500000, -89.4224800000), (1114290, 1001419, 'Clinton County', NULL, 'clinton-county', 'US', 1, 36.7274800000, -85.1360100000), (1114291, 1001451, 'Clinton County', NULL, 'clinton-county', 'US', 1, 39.6017800000, -94.4045900000), (1114292, 1001459, 'Clinton County', NULL, 'clinton-county', 'US', 1, 41.8980400000, -90.5319700000), (1114293, 1001440, 'Clinton County', NULL, 'clinton-county', 'US', 1, 40.3016900000, -86.4751600000), (1114294, 1001426, 'Clinton County', NULL, 'clinton-county', 'US', 1, 42.9436500000, -84.6015200000), (1114295, 1001452, 'Clinton County', NULL, 'clinton-county', 'US', 1, 44.7462300000, -73.6781700000), (1114296, 1001422, 'Clinton County', NULL, 'clinton-county', 'US', 1, 41.2340500000, -77.6381100000), (1114297, 1001426, 'Clinton Township', NULL, 'clinton-township', 'US', 1, 42.5869800000, -82.9199200000), (1114298, 1001452, 'Clintondale', NULL, 'clintondale', 'US', 1, 41.6948200000, -74.0512500000), (1114299, 1001441, 'Clintonville', NULL, 'clintonville', 'US', 1, 44.6205300000, -88.7623200000), (1114300, 1001427, 'Clintwood', NULL, 'clintwood', 'US', 1, 37.1501100000, -82.4559800000), (1114301, 1001456, 'Clio', NULL, 'clio', 'US', 1, 31.7087800000, -85.6105000000), (1114302, 1001426, 'Clio', NULL, 'clio', 'US', 1, 43.1775300000, -83.7341300000), (1114303, 1001459, 'Clive', NULL, 'clive', 'US', 1, 41.6030400000, -93.7241100000), (1114304, 1001420, 'Cloquet', NULL, 'cloquet', 'US', 1, 46.7216100000, -92.4593600000), (1114305, 1001417, 'Closter', NULL, 'closter', 'US', 1, 40.9731500000, -73.9615300000), (1114306, 1001406, 'Cloud County', NULL, 'cloud-county', 'US', 1, 39.4803000000, -97.6492800000), (1114307, 1001443, 'Clover', NULL, 'clover', 'US', 1, 35.1112500000, -81.2264600000), (1114308, 1001401, 'Clover Hill', NULL, 'clover-hill', 'US', 1, 39.4562100000, -77.4288700000), (1114309, 1001440, 'Cloverdale', NULL, 'cloverdale', 'US', 1, 39.5147700000, -86.7939000000), (1114310, 1001427, 'Cloverdale', NULL, 'cloverdale', 'US', 1, 37.3651400000, -79.9056000000), (1114311, 1001416, 'Cloverdale', NULL, 'cloverdale', 'US', 1, 38.8054600000, -123.0172200000), (1114312, 1001407, 'Cloverleaf', NULL, 'cloverleaf', 'US', 1, 29.7782800000, -95.1718800000), (1114313, 1001401, 'Cloverly', NULL, 'cloverly', 'US', 1, 39.1081600000, -76.9977500000), (1114314, 1001419, 'Cloverport', NULL, 'cloverport', 'US', 1, 37.8333900000, -86.6327600000), (1114315, 1001416, 'Clovis', NULL, 'clovis', 'US', 1, 36.8252300000, -119.7029200000), (1114316, 1001423, 'Clovis', NULL, 'clovis', 'US', 1, 34.4048000000, -103.2052300000), (1114317, 1001407, 'Clute', NULL, 'clute', 'US', 1, 29.0246900000, -95.3988300000), (1114318, 1001447, 'Clyde', NULL, 'clyde', 'US', 1, 35.5334400000, -82.9106900000), (1114319, 1001407, 'Clyde', NULL, 'clyde', 'US', 1, 32.4059600000, -99.4936900000), (1114320, 1001452, 'Clyde', NULL, 'clyde', 'US', 1, 43.0842300000, -76.8694000000), (1114321, 1001462, 'Clyde Hill', NULL, 'clyde-hill', 'US', 1, 47.6317700000, -122.2179000000), (1114322, 1001452, 'Clymer', NULL, 'clymer', 'US', 1, 42.0208900000, -79.6300500000), (1114323, 1001422, 'Clymer', NULL, 'clymer', 'US', 1, 40.6681200000, -79.0117000000), (1114324, 1001416, 'Coachella', NULL, 'coachella', 'US', 1, 33.6803000000, -116.1738900000), (1114325, 1001430, 'Coahoma County', NULL, 'coahoma-county', 'US', 1, 34.2291700000, -90.6026900000), (1114326, 1001429, 'Coal City', NULL, 'coal-city', 'US', 1, 37.6790000000, -81.2103800000), (1114327, 1001425, 'Coal City', NULL, 'coal-city', 'US', 1, 41.2878100000, -88.2856200000), (1114328, 1001421, 'Coal County', NULL, 'coal-county', 'US', 1, 34.5881900000, -96.2978600000), (1114329, 1001450, 'Coal Creek', NULL, 'coal-creek', 'US', 1, 39.9063800000, -105.3774900000), (1114330, 1001429, 'Coal Fork', NULL, 'coal-fork', 'US', 1, 38.3176000000, -81.5209500000), (1114331, 1001444, 'Coal Hill', NULL, 'coal-hill', 'US', 1, 35.4373100000, -93.6729700000), (1114332, 1001419, 'Coal Run Village', NULL, 'coal-run-village', 'US', 1, 37.5131600000, -82.5584900000), (1114333, 1001425, 'Coal Valley', NULL, 'coal-valley', 'US', 1, 41.4286500000, -90.4609600000), (1114334, 1001422, 'Coaldale', NULL, 'coaldale', 'US', 1, 40.8228700000, -75.9068700000), (1114335, 1001454, 'Coalfield', NULL, 'coalfield', 'US', 1, 36.0289700000, -84.4207600000), (1114336, 1001421, 'Coalgate', NULL, 'coalgate', 'US', 1, 34.5381500000, -96.2186100000), (1114337, 1001456, 'Coaling', NULL, 'coaling', 'US', 1, 33.1590100000, -87.3408300000), (1114338, 1001416, 'Coalinga', NULL, 'coalinga', 'US', 1, 36.1396800000, -120.3601500000), (1114339, 1001414, 'Coalville', NULL, 'coalville', 'US', 1, 40.9177300000, -111.3993600000), (1114340, 1001416, 'Coarsegold', NULL, 'coarsegold', 'US', 1, 37.2621700000, -119.7009800000), (1114341, 1001422, 'Coatesville', NULL, 'coatesville', 'US', 1, 39.9831600000, -75.8238400000), (1114342, 1001447, 'Coats', NULL, 'coats', 'US', 1, 35.4079400000, -78.6719600000), (1114343, 1001416, 'Cobb', NULL, 'cobb', 'US', 1, 38.8221300000, -122.7230500000), (1114344, 1001455, 'Cobb County', NULL, 'cobb-county', 'US', 1, 33.9414700000, -84.5766700000), (1114345, 1001401, 'Cobb Island', NULL, 'cobb-island', 'US', 1, 38.2584600000, -76.8438600000), (1114346, 1001425, 'Cobden', NULL, 'cobden', 'US', 1, 37.5314400000, -89.2534200000), (1114347, 1001452, 'Cobleskill', NULL, 'cobleskill', 'US', 1, 42.6778500000, -74.4854200000), (1114348, 1001415, 'Coburg', NULL, 'coburg', 'US', 1, 44.1370700000, -123.0664800000), (1114349, 1001434, 'Cochise County', NULL, 'cochise-county', 'US', 1, 31.8795700000, -109.7511400000), (1114350, 1001433, 'Cochituate', NULL, 'cochituate', 'US', 1, 42.3209300000, -71.3642300000), (1114351, 1001455, 'Cochran', NULL, 'cochran', 'US', 1, 32.3868300000, -83.3546100000), (1114352, 1001407, 'Cochran County', NULL, 'cochran-county', 'US', 1, 33.6041400000, -102.8284600000), (1114353, 1001422, 'Cochranton', NULL, 'cochranton', 'US', 1, 41.5200500000, -80.0483900000), (1114354, 1001454, 'Cocke County', NULL, 'cocke-county', 'US', 1, 35.9254200000, -83.1211600000), (1114355, 1001401, 'Cockeysville', NULL, 'cockeysville', 'US', 1, 39.4812200000, -76.6438600000), (1114356, 1001407, 'Cockrell Hill', NULL, 'cockrell-hill', 'US', 1, 32.7362400000, -96.8869500000), (1114357, 1001436, 'Cocoa', NULL, 'cocoa', 'US', 1, 28.3861200000, -80.7420000000), (1114358, 1001436, 'Cocoa Beach', NULL, 'cocoa-beach', 'US', 1, 28.3205500000, -80.6092200000), (1114359, 1001436, 'Cocoa West', NULL, 'cocoa-west', 'US', 1, 28.3594200000, -80.7710900000), (1114360, 1001434, 'Coconino County', NULL, 'coconino-county', 'US', 1, 35.8387300000, -111.7705000000), (1114361, 1001436, 'Coconut Creek', NULL, 'coconut-creek', 'US', 1, 26.2517500000, -80.1789400000), (1114362, 1001436, 'Coconut Grove', NULL, 'coconut-grove', 'US', 1, 25.7126000000, -80.2569900000), (1114363, 1001445, 'Codington County', NULL, 'codington-county', 'US', 1, 44.9778500000, -97.1886200000), (1114364, 1001442, 'Cody', NULL, 'cody', 'US', 1, 44.5263400000, -109.0565300000), (1114365, 1001427, 'Coeburn', NULL, 'coeburn', 'US', 1, 36.9439900000, -82.4640400000), (1114366, 1001460, 'Coeur d''Alene', NULL, 'coeur-d-alene', 'US', 1, 47.6776800000, -116.7804700000), (1114367, 1001456, 'Coffee County', NULL, 'coffee-county', 'US', 1, 31.4026300000, -85.9882100000), (1114368, 1001455, 'Coffee County', NULL, 'coffee-county', 'US', 1, 31.5492700000, -82.8492000000), (1114369, 1001454, 'Coffee County', NULL, 'coffee-county', 'US', 1, 35.4906200000, -86.0747600000), (1114370, 1001406, 'Coffey County', NULL, 'coffey-county', 'US', 1, 38.2368400000, -95.7341100000), (1114371, 1001406, 'Coffeyville', NULL, 'coffeyville', 'US', 1, 37.0373000000, -95.6163700000), (1114372, 1001433, 'Cohasset', NULL, 'cohasset', 'US', 1, 42.2417700000, -70.8036500000), (1114373, 1001420, 'Cohasset', NULL, 'cohasset', 'US', 1, 47.2635600000, -93.6202200000), (1114374, 1001400, 'Cohoe', NULL, 'cohoe', 'US', 1, 60.3686100000, -151.3063900000), (1114375, 1001452, 'Cohoes', NULL, 'cohoes', 'US', 1, 42.7742400000, -73.7001200000), (1114376, 1001420, 'Cokato', NULL, 'cokato', 'US', 1, 45.0758000000, -94.1899800000), (1114377, 1001407, 'Coke County', NULL, 'coke-county', 'US', 1, 31.8885300000, -100.5299100000), (1114378, 1001421, 'Colbert', NULL, 'colbert', 'US', 1, 33.8531600000, -96.5024900000), (1114379, 1001456, 'Colbert County', NULL, 'colbert-county', 'US', 1, 34.7004300000, -87.8049800000), (1114380, 1001441, 'Colby', NULL, 'colby', 'US', 1, 44.9099700000, -90.3156900000), (1114381, 1001406, 'Colby', NULL, 'colby', 'US', 1, 39.3958400000, -101.0523800000), (1114382, 1001425, 'Colchester', NULL, 'colchester', 'US', 1, 40.4264300000, -90.7926300000), (1114383, 1001435, 'Colchester', NULL, 'colchester', 'US', 1, 41.5756500000, -72.3320300000), (1114384, 1001409, 'Colchester', NULL, 'colchester', 'US', 1, 44.5439400000, -73.1479100000), (1114385, 1001419, 'Cold Spring', NULL, 'cold-spring', 'US', 1, 39.0217300000, -84.4399400000), (1114386, 1001420, 'Cold Spring', NULL, 'cold-spring', 'US', 1, 45.4558000000, -94.4288800000), (1114387, 1001452, 'Cold Spring', NULL, 'cold-spring', 'US', 1, 41.4200900000, -73.9545800000), (1114388, 1001452, 'Cold Spring Harbor', NULL, 'cold-spring-harbor', 'US', 1, 40.8714900000, -73.4567900000), (1114389, 1001458, 'Cold Springs', NULL, 'cold-springs', 'US', 1, 39.6801900000, -119.9765900000), (1114390, 1001407, 'Coldspring', NULL, 'coldspring', 'US', 1, 30.5924200000, -95.1293800000), (1114391, 1001419, 'Coldstream', NULL, 'coldstream', 'US', 1, 38.3147900000, -85.5238500000), (1114392, 1001406, 'Coldwater', NULL, 'coldwater', 'US', 1, 37.2689100000, -99.3267800000), (1114393, 1001430, 'Coldwater', NULL, 'coldwater', 'US', 1, 34.6917700000, -89.9773100000), (1114394, 1001426, 'Coldwater', NULL, 'coldwater', 'US', 1, 41.9403300000, -85.0005200000), (1114395, 1001451, 'Cole Camp', NULL, 'cole-camp', 'US', 1, 38.4600200000, -93.2027000000), (1114396, 1001451, 'Cole County', NULL, 'cole-county', 'US', 1, 38.5054100000, -92.2816000000), (1114397, 1001404, 'Colebrook', NULL, 'colebrook', 'US', 1, 44.8944900000, -71.4959200000), (1114398, 1001407, 'Coleman', NULL, 'coleman', 'US', 1, 31.8273700000, -99.4264500000), (1114399, 1001426, 'Coleman', NULL, 'coleman', 'US', 1, 43.7566900000, -84.5858400000), (1114400, 1001407, 'Coleman County', NULL, 'coleman-county', 'US', 1, 31.7732100000, -99.4536400000), (1114401, 1001420, 'Coleraine', NULL, 'coleraine', 'US', 1, 47.2888300000, -93.4277100000), (1114402, 1001425, 'Coles County', NULL, 'coles-county', 'US', 1, 39.5202900000, -88.2218000000), (1114403, 1001401, 'Colesville', NULL, 'colesville', 'US', 1, 39.0756600000, -77.0019200000), (1114404, 1001457, 'Colfax', NULL, 'colfax', 'US', 1, 31.5190600000, -92.7068200000), (1114405, 1001459, 'Colfax', NULL, 'colfax', 'US', 1, 41.6777700000, -93.2452000000), (1114406, 1001425, 'Colfax', NULL, 'colfax', 'US', 1, 40.5669800000, -88.6164500000), (1114407, 1001441, 'Colfax', NULL, 'colfax', 'US', 1, 44.9974600000, -91.7271200000), (1114408, 1001416, 'Colfax', NULL, 'colfax', 'US', 1, 39.1007300000, -120.9532800000), (1114409, 1001462, 'Colfax', NULL, 'colfax', 'US', 1, 46.8801700000, -117.3643500000), (1114410, 1001408, 'Colfax County', NULL, 'colfax-county', 'US', 1, 41.5740200000, -97.0864600000), (1114411, 1001423, 'Colfax County', NULL, 'colfax-county', 'US', 1, 36.6061200000, -104.6468600000), (1114412, 1001400, 'College', NULL, 'college', 'US', 1, 64.8569400000, -147.8027800000), (1114413, 1001455, 'College Park', NULL, 'college-park', 'US', 1, 33.6534400000, -84.4493700000), (1114414, 1001401, 'College Park', NULL, 'college-park', 'US', 1, 38.9806700000, -76.9369200000), (1114415, 1001462, 'College Place', NULL, 'college-place', 'US', 1, 46.0493000000, -118.3883000000), (1114416, 1001452, 'College Point', NULL, 'college-point', 'US', 1, 40.7876000000, -73.8459700000), (1114417, 1001407, 'College Station', NULL, 'college-station', 'US', 1, 30.6279800000, -96.3344100000), (1114418, 1001454, 'Collegedale', NULL, 'collegedale', 'US', 1, 35.0531300000, -85.0502300000), (1114419, 1001420, 'Collegeville', NULL, 'collegeville', 'US', 1, 45.5944100000, -94.3630500000), (1114420, 1001422, 'Collegeville', NULL, 'collegeville', 'US', 1, 40.1856600000, -75.4515700000), (1114421, 1001443, 'Colleton County', NULL, 'colleton-county', 'US', 1, 32.8434300000, -80.6496800000), (1114422, 1001407, 'Colleyville', NULL, 'colleyville', 'US', 1, 32.8809600000, -97.1550100000), (1114423, 1001436, 'Collier County', NULL, 'collier-county', 'US', 1, 26.0992400000, -81.3809700000), (1114424, 1001454, 'Collierville', NULL, 'collierville', 'US', 1, 35.0420400000, -89.6645300000), (1114425, 1001416, 'Collierville', NULL, 'collierville', 'US', 1, 38.2146400000, -121.2688400000), (1114426, 1001407, 'Collin County', NULL, 'collin-county', 'US', 1, 33.1879100000, -96.5723700000), (1114427, 1001422, 'Collingdale', NULL, 'collingdale', 'US', 1, 39.9117800000, -75.2771300000), (1114428, 1001417, 'Collings Lakes', NULL, 'collings-lakes', 'US', 1, 39.5956700000, -74.8815600000), (1114429, 1001417, 'Collingswood', NULL, 'collingswood', 'US', 1, 39.9181700000, -75.0712800000), (1114430, 1001407, 'Collingsworth County', NULL, 'collingsworth-county', 'US', 1, 34.9648800000, -100.2700700000), (1114431, 1001430, 'Collins', NULL, 'collins', 'US', 1, 31.6454400000, -89.5553500000), (1114432, 1001422, 'Collinsburg', NULL, 'collinsburg', 'US', 1, 40.2242400000, -79.7683800000), (1114433, 1001456, 'Collinsville', NULL, 'collinsville', 'US', 1, 34.2639800000, -85.8605300000), (1114434, 1001425, 'Collinsville', NULL, 'collinsville', 'US', 1, 38.6703300000, -89.9845500000), (1114435, 1001430, 'Collinsville', NULL, 'collinsville', 'US', 1, 32.4979200000, -88.8458800000), (1114436, 1001421, 'Collinsville', NULL, 'collinsville', 'US', 1, 36.3645400000, -95.8388800000), (1114437, 1001407, 'Collinsville', NULL, 'collinsville', 'US', 1, 33.5615000000, -96.9111100000), (1114438, 1001427, 'Collinsville', NULL, 'collinsville', 'US', 1, 36.7151400000, -79.9153200000), (1114439, 1001435, 'Collinsville', NULL, 'collinsville', 'US', 1, 41.8128800000, -72.9201000000), (1114440, 1001416, 'Colma', NULL, 'colma', 'US', 1, 37.6768800000, -122.4596900000), (1114441, 1001401, 'Colmar Manor', NULL, 'colmar-manor', 'US', 1, 38.9331700000, -76.9458100000), (1114442, 1001420, 'Cologne', NULL, 'cologne', 'US', 1, 44.7716300000, -93.7813500000), (1114443, 1001426, 'Coloma', NULL, 'coloma', 'US', 1, 42.1861500000, -86.3083600000), (1114444, 1001426, 'Colon', NULL, 'colon', 'US', 1, 41.9583800000, -85.3249800000), (1114445, 1001425, 'Colona', NULL, 'colona', 'US', 1, 41.4839200000, -90.3531800000), (1114446, 1001417, 'Colonia', NULL, 'colonia', 'US', 1, 40.5745500000, -74.3020900000), (1114447, 1001427, 'Colonial Beach', NULL, 'colonial-beach', 'US', 1, 38.2545700000, -76.9635800000), (1114448, 1001454, 'Colonial Heights', NULL, 'colonial-heights', 'US', 1, 36.4851000000, -82.5032000000), (1114449, 1001427, 'Colonial Heights', NULL, 'colonial-heights', 'US', 1, 37.2680400000, -77.4072600000), (1114450, 1001422, 'Colonial Park', NULL, 'colonial-park', 'US', 1, 40.3006400000, -76.8096900000), (1114451, 1001445, 'Colonial Pine Hills', NULL, 'colonial-pine-hills', 'US', 1, 44.0077700000, -103.3154600000), (1114452, 1001452, 'Colonie', NULL, 'colonie', 'US', 1, 42.7178600000, -73.8334600000), (1114453, 1001422, 'Colony Park', NULL, 'colony-park', 'US', 1, 40.3468300000, -75.9824000000), (1114454, 1001434, 'Colorado City', NULL, 'colorado-city', 'US', 1, 36.9902600000, -112.9757700000), (1114455, 1001450, 'Colorado City', NULL, 'colorado-city', 'US', 1, 37.9452900000, -104.8352600000), (1114456, 1001407, 'Colorado City', NULL, 'colorado-city', 'US', 1, 32.3881700000, -100.8645600000), (1114457, 1001407, 'Colorado County', NULL, 'colorado-county', 'US', 1, 29.6208200000, -96.5262800000), (1114458, 1001450, 'Colorado Springs', NULL, 'colorado-springs', 'US', 1, 38.8338800000, -104.8213600000), (1114459, 1001455, 'Colquitt', NULL, 'colquitt', 'US', 1, 31.1712900000, -84.7332500000), (1114460, 1001455, 'Colquitt County', NULL, 'colquitt-county', 'US', 1, 31.1883900000, -83.7688500000), (1114461, 1001433, 'Colrain', NULL, 'colrain', 'US', 1, 42.6731400000, -72.6967600000), (1114462, 1001446, 'Colstrip', NULL, 'colstrip', 'US', 1, 45.8841600000, -106.6236400000), (1114463, 1001416, 'Colton', NULL, 'colton', 'US', 1, 34.0739000000, -117.3136500000), (1114464, 1001419, 'Columbia', NULL, 'columbia', 'US', 1, 37.1028400000, -85.3063500000), (1114465, 1001425, 'Columbia', NULL, 'columbia', 'US', 1, 38.4436600000, -90.2012200000), (1114466, 1001457, 'Columbia', NULL, 'columbia', 'US', 1, 32.1051600000, -92.0779100000), (1114467, 1001401, 'Columbia', NULL, 'columbia', 'US', 1, 39.2403800000, -76.8394200000), (1114468, 1001451, 'Columbia', NULL, 'columbia', 'US', 1, 38.9517100000, -92.3340700000), (1114469, 1001430, 'Columbia', NULL, 'columbia', 'US', 1, 31.2518400000, -89.8375800000), (1114470, 1001447, 'Columbia', NULL, 'columbia', 'US', 1, 35.9176600000, -76.2521500000), (1114471, 1001443, 'Columbia', NULL, 'columbia', 'US', 1, 34.0007100000, -81.0348100000), (1114472, 1001454, 'Columbia', NULL, 'columbia', 'US', 1, 35.6150700000, -87.0352800000), (1114473, 1001422, 'Columbia', NULL, 'columbia', 'US', 1, 40.0337100000, -76.5044100000), (1114474, 1001416, 'Columbia', NULL, 'columbia', 'US', 1, 38.0363100000, -120.4013100000), (1114475, 1001440, 'Columbia City', NULL, 'columbia-city', 'US', 1, 41.1572700000, -85.4883100000), (1114476, 1001415, 'Columbia City', NULL, 'columbia-city', 'US', 1, 45.8901100000, -122.8070500000), (1114477, 1001444, 'Columbia County', NULL, 'columbia-county', 'US', 1, 33.2142900000, -93.2273100000), (1114478, 1001436, 'Columbia County', NULL, 'columbia-county', 'US', 1, 30.2242400000, -82.6215400000), (1114479, 1001455, 'Columbia County', NULL, 'columbia-county', 'US', 1, 33.5441200000, -82.2640600000), (1114480, 1001452, 'Columbia County', NULL, 'columbia-county', 'US', 1, 42.2500800000, -73.6318500000), (1114481, 1001422, 'Columbia County', NULL, 'columbia-county', 'US', 1, 41.0486500000, -76.4051500000), (1114482, 1001441, 'Columbia County', NULL, 'columbia-county', 'US', 1, 43.4666000000, -89.3337300000), (1114483, 1001415, 'Columbia County', NULL, 'columbia-county', 'US', 1, 45.9437700000, -123.0880500000), (1114484, 1001462, 'Columbia County', NULL, 'columbia-county', 'US', 1, 46.2975500000, -117.9078800000), (1114485, 1001446, 'Columbia Falls', NULL, 'columbia-falls', 'US', 1, 48.3724600000, -114.1815200000), (1114486, 1001420, 'Columbia Heights', NULL, 'columbia-heights', 'US', 1, 45.0408000000, -93.2630000000), (1114487, 1001456, 'Columbiana', NULL, 'columbiana', 'US', 1, 33.1781700000, -86.6072100000), (1114488, 1001450, 'Columbine', NULL, 'columbine', 'US', 1, 39.5877700000, -105.0694300000), (1114489, 1001450, 'Columbine Valley', NULL, 'columbine-valley', 'US', 1, 39.6011000000, -105.0322100000), (1114490, 1001440, 'Columbus', NULL, 'columbus', 'US', 1, 39.2014400000, -85.9213800000), (1114491, 1001455, 'Columbus', NULL, 'columbus', 'US', 1, 32.4609800000, -84.9877100000), (1114492, 1001406, 'Columbus', NULL, 'columbus', 'US', 1, 37.1692300000, -94.8441200000), (1114493, 1001447, 'Columbus', NULL, 'columbus', 'US', 1, 35.2531700000, -82.1970600000), (1114494, 1001430, 'Columbus', NULL, 'columbus', 'US', 1, 33.4956700000, -88.4272600000), (1114495, 1001407, 'Columbus', NULL, 'columbus', 'US', 1, 29.7066200000, -96.5396900000), (1114496, 1001408, 'Columbus', NULL, 'columbus', 'US', 1, 41.4297300000, -97.3683800000), (1114497, 1001441, 'Columbus', NULL, 'columbus', 'US', 1, 43.3380500000, -89.0153900000), (1114498, 1001423, 'Columbus', NULL, 'columbus', 'US', 1, 31.8276000000, -107.6400200000), (1114499, 1001446, 'Columbus', NULL, 'columbus', 'US', 1, 45.6366100000, -109.2521100000), (1114500, 1001420, 'Columbus', NULL, 'columbus', 'US', 1, 45.2652200000, -93.0501500000), (1114501, 1001430, 'Columbus Air Force Base', NULL, 'columbus-air-force-base', 'US', 1, 33.6323900000, -88.4515300000), (1114502, 1001447, 'Columbus County', NULL, 'columbus-county', 'US', 1, 34.2654000000, -78.6550700000), (1114503, 1001459, 'Columbus Junction', NULL, 'columbus-junction', 'US', 1, 41.2800300000, -91.3607100000), (1114504, 1001416, 'Colusa', NULL, 'colusa', 'US', 1, 39.2143300000, -122.0094200000), (1114505, 1001416, 'Colusa County', NULL, 'colusa-county', 'US', 1, 39.1775700000, -122.2370300000), (1114506, 1001462, 'Colville', NULL, 'colville', 'US', 1, 48.5465700000, -117.9055400000), (1114507, 1001406, 'Colwich', NULL, 'colwich', 'US', 1, 37.7791800000, -97.5364400000), (1114508, 1001422, 'Colwyn', NULL, 'colwyn', 'US', 1, 39.9123400000, -75.2537900000), (1114509, 1001407, 'Comal County', NULL, 'comal-county', 'US', 1, 29.8081800000, -98.2782500000), (1114510, 1001421, 'Comanche', NULL, 'comanche', 'US', 1, 34.3689700000, -97.9639200000), (1114511, 1001407, 'Comanche', NULL, 'comanche', 'US', 1, 31.8973700000, -98.6036600000), (1114512, 1001406, 'Comanche County', NULL, 'comanche-county', 'US', 1, 37.1912800000, -99.2718700000), (1114513, 1001421, 'Comanche County', NULL, 'comanche-county', 'US', 1, 34.6621000000, -98.4716600000), (1114514, 1001407, 'Comanche County', NULL, 'comanche-county', 'US', 1, 31.9479800000, -98.5582600000), (1114515, 1001436, 'Combee Settlement', NULL, 'combee-settlement', 'US', 1, 28.0583500000, -81.9053600000), (1114516, 1001407, 'Combes', NULL, 'combes', 'US', 1, 26.2486900000, -97.7338800000), (1114517, 1001407, 'Combine', NULL, 'combine', 'US', 1, 32.5884700000, -96.5086000000), (1114518, 1001441, 'Combined Locks', NULL, 'combined-locks', 'US', 1, 44.2658200000, -88.3142700000), (1114519, 1001455, 'Comer', NULL, 'comer', 'US', 1, 34.0637200000, -83.1254300000), (1114520, 1001407, 'Comfort', NULL, 'comfort', 'US', 1, 29.9677100000, -98.9050300000), (1114521, 1001452, 'Commack', NULL, 'commack', 'US', 1, 40.8428800000, -73.2928900000), (1114522, 1001455, 'Commerce', NULL, 'commerce', 'US', 1, 34.2040000000, -83.4571100000), (1114523, 1001421, 'Commerce', NULL, 'commerce', 'US', 1, 36.9334000000, -94.8730100000), (1114524, 1001407, 'Commerce', NULL, 'commerce', 'US', 1, 33.2470600000, -95.8999700000), (1114525, 1001416, 'Commerce', NULL, 'commerce', 'US', 1, 34.0005700000, -118.1597900000), (1114526, 1001450, 'Commerce City', NULL, 'commerce-city', 'US', 1, 39.8083200000, -104.9338700000), (1114527, 1001430, 'Como', NULL, 'como', 'US', 1, 34.5106600000, -89.9398100000), (1114528, 1001441, 'Como', NULL, 'como', 'US', 1, 42.6122400000, -88.4823200000), (1114529, 1001416, 'Compton', NULL, 'compton', 'US', 1, 33.8958500000, -118.2200700000), (1114530, 1001426, 'Comstock Northwest', NULL, 'comstock-northwest', 'US', 1, 42.3218200000, -85.5175900000), (1114531, 1001426, 'Comstock Park', NULL, 'comstock-park', 'US', 1, 43.0386400000, -85.6700300000), (1114532, 1001422, 'Conashaugh Lakes', NULL, 'conashaugh-lakes', 'US', 1, 41.3059300000, -74.9896200000), (1114533, 1001407, 'Concho County', NULL, 'concho-county', 'US', 1, 31.3265000000, -99.8639600000), (1114534, 1001456, 'Concord', NULL, 'concord', 'US', 1, 33.4676100000, -87.0311100000), (1114535, 1001451, 'Concord', NULL, 'concord', 'US', 1, 38.5245000000, -90.3573400000), (1114536, 1001447, 'Concord', NULL, 'concord', 'US', 1, 35.4088800000, -80.5815800000), (1114537, 1001427, 'Concord', NULL, 'concord', 'US', 1, 37.3426400000, -78.9750200000), (1114538, 1001433, 'Concord', NULL, 'concord', 'US', 1, 42.4603700000, -71.3489500000), (1114539, 1001426, 'Concord', NULL, 'concord', 'US', 1, 42.1778200000, -84.6430200000), (1114540, 1001452, 'Concord', NULL, 'concord', 'US', 1, 40.6081600000, -74.0843100000), (1114541, 1001404, 'Concord', NULL, 'concord', 'US', 1, 43.2081400000, -71.5375700000), (1114542, 1001441, 'Concord', NULL, 'concord', 'US', 1, 43.0694500000, -88.5987100000), (1114543, 1001416, 'Concord', NULL, 'concord', 'US', 1, 37.9779800000, -122.0310700000), (1114544, 1001406, 'Concordia', NULL, 'concordia', 'US', 1, 39.5708400000, -97.6625400000), (1114545, 1001451, 'Concordia', NULL, 'concordia', 'US', 1, 38.9833500000, -93.5685500000), (1114546, 1001417, 'Concordia', NULL, 'concordia', 'US', 1, 40.3109400000, -74.4482100000), (1114547, 1001457, 'Concordia Parish', NULL, 'concordia-parish', 'US', 1, 31.4458400000, -91.6400600000), (1114548, 1001454, 'Condon', NULL, 'condon', 'US', 1, 36.1811900000, -83.7938000000), (1114549, 1001415, 'Condon', NULL, 'condon', 'US', 1, 45.2343000000, -120.1850300000), (1114550, 1001456, 'Conecuh County', NULL, 'conecuh-county', 'US', 1, 31.4292700000, -86.9936800000), (1114551, 1001430, 'Conehatta', NULL, 'conehatta', 'US', 1, 32.4512500000, -89.2853400000), (1114552, 1001450, 'Conejos', NULL, 'conejos', 'US', 1, 37.0883500000, -106.0197400000), (1114553, 1001450, 'Conejos County', NULL, 'conejos-county', 'US', 1, 37.2007000000, -106.1916300000), (1114554, 1001422, 'Conemaugh', NULL, 'conemaugh', 'US', 1, 40.3267400000, -78.9080800000), (1114555, 1001422, 'Conestoga', NULL, 'conestoga', 'US', 1, 39.9406600000, -76.3463500000), (1114556, 1001452, 'Coney Island', NULL, 'coney-island', 'US', 1, 40.5778800000, -73.9940300000), (1114557, 1001452, 'Congers', NULL, 'congers', 'US', 1, 41.1506500000, -73.9454200000), (1114558, 1001434, 'Congress', NULL, 'congress', 'US', 1, 34.1625300000, -112.8507400000), (1114559, 1001455, 'Conley', NULL, 'conley', 'US', 1, 33.6448300000, -84.3257600000), (1114560, 1001422, 'Conneaut Lakeshore', NULL, 'conneaut-lakeshore', 'US', 1, 41.6271100000, -80.3100800000), (1114561, 1001462, 'Connell', NULL, 'connell', 'US', 1, 46.6634700000, -118.8611100000), (1114562, 1001422, 'Connellsville', NULL, 'connellsville', 'US', 1, 40.0178500000, -79.5894800000), (1114563, 1001447, 'Connelly Springs', NULL, 'connelly-springs', 'US', 1, 35.7429100000, -81.5134300000), (1114564, 1001440, 'Connersville', NULL, 'connersville', 'US', 1, 39.6411600000, -85.1410700000), (1114565, 1001436, 'Connerton', NULL, 'connerton', 'US', 1, 28.3144100000, -82.4753900000), (1114566, 1001435, 'Conning Towers-Nautilus Park', NULL, 'conning-towers-nautilus-park', 'US', 1, 41.3854800000, -72.0687700000), (1114567, 1001447, 'Conover', NULL, 'conover', 'US', 1, 35.7065200000, -81.2186900000), (1114568, 1001459, 'Conrad', NULL, 'conrad', 'US', 1, 42.2247100000, -92.8746500000), (1114569, 1001446, 'Conrad', NULL, 'conrad', 'US', 1, 48.1702500000, -111.9461300000), (1114570, 1001407, 'Conroe', NULL, 'conroe', 'US', 1, 30.3118800000, -95.4560500000), (1114571, 1001422, 'Conshohocken', NULL, 'conshohocken', 'US', 1, 40.0792800000, -75.3015700000), (1114572, 1001452, 'Constantia', NULL, 'constantia', 'US', 1, 43.2478500000, -76.0002000000), (1114573, 1001426, 'Constantine', NULL, 'constantine', 'US', 1, 41.8411600000, -85.6686000000), (1114574, 1001404, 'Contoocook', NULL, 'contoocook', 'US', 1, 43.2220200000, -71.7139700000), (1114575, 1001416, 'Contra Costa Centre', NULL, 'contra-costa-centre', 'US', 1, 37.9275200000, -122.0578600000), (1114576, 1001416, 'Contra Costa County', NULL, 'contra-costa-county', 'US', 1, 37.9234200000, -121.9512100000), (1114577, 1001457, 'Convent', NULL, 'convent', 'US', 1, 30.0207600000, -90.8298200000), (1114578, 1001407, 'Converse', NULL, 'converse', 'US', 1, 29.5180100000, -98.3161200000), (1114579, 1001440, 'Converse', NULL, 'converse', 'US', 1, 40.5775400000, -85.8733200000), (1114580, 1001442, 'Converse County', NULL, 'converse-county', 'US', 1, 42.9723300000, -105.5070600000), (1114581, 1001444, 'Conway', NULL, 'conway', 'US', 1, 35.0887000000, -92.4421000000), (1114582, 1001436, 'Conway', NULL, 'conway', 'US', 1, 28.5027800000, -81.3306200000), (1114583, 1001443, 'Conway', NULL, 'conway', 'US', 1, 33.8360000000, -79.0478100000), (1114584, 1001433, 'Conway', NULL, 'conway', 'US', 1, 42.5098100000, -72.6995300000), (1114585, 1001404, 'Conway', NULL, 'conway', 'US', 1, 43.9792400000, -71.1203500000), (1114586, 1001422, 'Conway', NULL, 'conway', 'US', 1, 40.6597900000, -80.2392300000), (1114587, 1001444, 'Conway County', NULL, 'conway-county', 'US', 1, 35.2622100000, -92.7013200000), (1114588, 1001406, 'Conway Springs', NULL, 'conway-springs', 'US', 1, 37.3903000000, -97.6422700000), (1114589, 1001455, 'Conyers', NULL, 'conyers', 'US', 1, 33.6676100000, -84.0176900000), (1114590, 1001422, 'Conyngham', NULL, 'conyngham', 'US', 1, 40.9920300000, -76.0565900000), (1114591, 1001455, 'Cook County', NULL, 'cook-county', 'US', 1, 31.1539900000, -83.4304700000), (1114592, 1001425, 'Cook County', NULL, 'cook-county', 'US', 1, 41.8954000000, -87.6461600000), (1114593, 1001420, 'Cook County', NULL, 'cook-county', 'US', 1, 47.8168400000, -90.5410800000), (1114594, 1001407, 'Cooke County', NULL, 'cooke-county', 'US', 1, 33.6391900000, -97.2126200000), (1114595, 1001454, 'Cookeville', NULL, 'cookeville', 'US', 1, 36.1628400000, -85.5016400000), (1114596, 1001416, 'Cool', NULL, 'cool', 'US', 1, 38.8872200000, -121.0147200000), (1114597, 1001451, 'Cool Valley', NULL, 'cool-valley', 'US', 1, 38.7278300000, -90.3101100000), (1114598, 1001434, 'Coolidge', NULL, 'coolidge', 'US', 1, 32.9778400000, -111.5176200000), (1114599, 1001459, 'Coon Rapids', NULL, 'coon-rapids', 'US', 1, 41.8708200000, -94.6774800000), (1114600, 1001420, 'Coon Rapids', NULL, 'coon-rapids', 'US', 1, 45.1199700000, -93.2877300000), (1114601, 1001407, 'Cooper', NULL, 'cooper', 'US', 1, 31.2432400000, -95.5821700000), (1114602, 1001436, 'Cooper City', NULL, 'cooper-city', 'US', 1, 26.0573100000, -80.2717200000), (1114603, 1001451, 'Cooper County', NULL, 'cooper-county', 'US', 1, 38.8435400000, -92.8101200000), (1114604, 1001422, 'Coopersburg', NULL, 'coopersburg', 'US', 1, 40.5114900000, -75.3904600000), (1114605, 1001452, 'Cooperstown', NULL, 'cooperstown', 'US', 1, 42.7004800000, -74.9242600000), (1114606, 1001418, 'Cooperstown', NULL, 'cooperstown', 'US', 1, 47.4444400000, -98.1239800000), (1114607, 1001441, 'Cooperstown', NULL, 'cooperstown', 'US', 1, 44.3127700000, -87.7745300000), (1114608, 1001426, 'Coopersville', NULL, 'coopersville', 'US', 1, 43.0639100000, -85.9347700000), (1114609, 1001454, 'Coopertown', NULL, 'coopertown', 'US', 1, 36.4375500000, -86.9672200000), (1114610, 1001415, 'Coos Bay', NULL, 'coos-bay', 'US', 1, 43.3665000000, -124.2178900000), (1114611, 1001404, 'Coos County', NULL, 'coos-county', 'US', 1, 44.6896000000, -71.3054200000), (1114612, 1001415, 'Coos County', NULL, 'coos-county', 'US', 1, 43.1850100000, -124.0933300000), (1114613, 1001456, 'Coosa County', NULL, 'coosa-county', 'US', 1, 32.9362300000, -86.2476600000), (1114614, 1001456, 'Coosada', NULL, 'coosada', 'US', 1, 32.4979100000, -86.3313600000), (1114615, 1001421, 'Copeland', NULL, 'copeland', 'US', 1, 36.6559100000, -94.8282900000), (1114616, 1001452, 'Copiague', NULL, 'copiague', 'US', 1, 40.6814900000, -73.3998400000), (1114617, 1001430, 'Copiah County', NULL, 'copiah-county', 'US', 1, 31.8692400000, -90.4488000000), (1114618, 1001422, 'Coplay', NULL, 'coplay', 'US', 1, 40.6701000000, -75.4954600000), (1114619, 1001407, 'Coppell', NULL, 'coppell', 'US', 1, 32.9545700000, -97.0150100000), (1114620, 1001407, 'Copper Canyon', NULL, 'copper-canyon', 'US', 1, 33.0959500000, -97.0966800000), (1114621, 1001407, 'Copperas Cove', NULL, 'copperas-cove', 'US', 1, 31.1240600000, -97.9030800000), (1114622, 1001416, 'Copperopolis', NULL, 'copperopolis', 'US', 1, 37.9810400000, -120.6418700000), (1114623, 1001415, 'Coquille', NULL, 'coquille', 'US', 1, 43.1770500000, -124.1876100000), (1114624, 1001436, 'Coral Gables', NULL, 'coral-gables', 'US', 1, 25.7214900000, -80.2683800000), (1114625, 1001401, 'Coral Hills', NULL, 'coral-hills', 'US', 1, 38.8703900000, -76.9210800000), (1114626, 1001436, 'Coral Springs', NULL, 'coral-springs', 'US', 1, 26.2711900000, -80.2706000000), (1114627, 1001436, 'Coral Terrace', NULL, 'coral-terrace', 'US', 1, 25.7459300000, -80.3045000000), (1114628, 1001459, 'Coralville', NULL, 'coralville', 'US', 1, 41.6764000000, -91.5804500000), (1114629, 1001452, 'Coram', NULL, 'coram', 'US', 1, 40.8687100000, -73.0014900000), (1114630, 1001422, 'Coraopolis', NULL, 'coraopolis', 'US', 1, 40.5184000000, -80.1667200000), (1114631, 1001419, 'Corbin', NULL, 'corbin', 'US', 1, 36.9487000000, -84.0968800000), (1114632, 1001420, 'Corcoran', NULL, 'corcoran', 'US', 1, 45.0952400000, -93.5474600000), (1114633, 1001416, 'Corcoran', NULL, 'corcoran', 'US', 1, 36.0980100000, -119.5604000000), (1114634, 1001433, 'Cordaville', NULL, 'cordaville', 'US', 1, 42.2689800000, -71.5239500000), (1114635, 1001455, 'Cordele', NULL, 'cordele', 'US', 1, 31.9635100000, -83.7823900000), (1114636, 1001421, 'Cordell', NULL, 'cordell', 'US', 1, 35.2906100000, -98.9884100000), (1114637, 1001434, 'Cordes Lakes', NULL, 'cordes-lakes', 'US', 1, 34.3078100000, -112.1034900000), (1114638, 1001456, 'Cordova', NULL, 'cordova', 'US', 1, 33.7598300000, -87.1833300000), (1114639, 1001447, 'Cordova', NULL, 'cordova', 'US', 1, 34.9129300000, -79.8220000000), (1114640, 1001400, 'Cordova', NULL, 'cordova', 'US', 1, 60.5432000000, -145.7586700000), (1114641, 1001440, 'Cordry Sweetwater Lakes', NULL, 'cordry-sweetwater-lakes', 'US', 1, 39.3046400000, -86.1183700000), (1114642, 1001453, 'Corinna', NULL, 'corinna', 'US', 1, 44.9211700000, -69.2617100000), (1114643, 1001430, 'Corinth', NULL, 'corinth', 'US', 1, 34.9342500000, -88.5222700000), (1114644, 1001407, 'Corinth', NULL, 'corinth', 'US', 1, 33.1540100000, -97.0647300000), (1114645, 1001452, 'Corinth', NULL, 'corinth', 'US', 1, 43.2445200000, -73.8323400000), (1114646, 1001455, 'Cornelia', NULL, 'cornelia', 'US', 1, 34.5114900000, -83.5271200000), (1114647, 1001447, 'Cornelius', NULL, 'cornelius', 'US', 1, 35.4868000000, -80.8600700000), (1114648, 1001415, 'Cornelius', NULL, 'cornelius', 'US', 1, 45.5198400000, -123.0598300000), (1114649, 1001441, 'Cornell', NULL, 'cornell', 'US', 1, 45.1671900000, -91.1493100000), (1114650, 1001454, 'Cornersville', NULL, 'cornersville', 'US', 1, 35.3614600000, -86.8397200000), (1114651, 1001444, 'Corning', NULL, 'corning', 'US', 1, 36.4078400000, -90.5798300000), (1114652, 1001459, 'Corning', NULL, 'corning', 'US', 1, 40.9899900000, -94.7408100000), (1114653, 1001452, 'Corning', NULL, 'corning', 'US', 1, 42.1428500000, -77.0546900000), (1114654, 1001416, 'Corning', NULL, 'corning', 'US', 1, 39.9276600000, -122.1791600000), (1114655, 1001453, 'Cornish', NULL, 'cornish', 'US', 1, 43.8048000000, -70.8011700000), (1114656, 1001453, 'Cornville', NULL, 'cornville', 'US', 1, 44.8367300000, -69.6731100000), (1114657, 1001434, 'Cornville', NULL, 'cornville', 'US', 1, 34.7178000000, -111.9215400000), (1114658, 1001452, 'Cornwall', NULL, 'cornwall', 'US', 1, 41.4448200000, -74.0157000000), (1114659, 1001422, 'Cornwall', NULL, 'cornwall', 'US', 1, 40.2737000000, -76.4060700000), (1114660, 1001422, 'Cornwells Heights', NULL, 'cornwells-heights', 'US', 1, 40.0767800000, -74.9487800000), (1114661, 1001452, 'Corona', NULL, 'corona', 'US', 1, 40.7470500000, -73.8601400000), (1114662, 1001416, 'Corona', NULL, 'corona', 'US', 1, 33.8752900000, -117.5664400000), (1114663, 1001434, 'Corona de Tucson', NULL, 'corona-de-tucson', 'US', 1, 31.9653600000, -110.7756400000), (1114664, 1001416, 'Coronado', NULL, 'coronado', 'US', 1, 32.6858900000, -117.1830900000), (1114665, 1001407, 'Corpus Christi', NULL, 'corpus-christi', 'US', 1, 27.8005800000, -97.3963800000), (1114666, 1001423, 'Corrales', NULL, 'corrales', 'US', 1, 35.2378200000, -106.6066900000), (1114667, 1001416, 'Corralitos', NULL, 'corralitos', 'US', 1, 36.9885600000, -121.8063400000), (1114668, 1001407, 'Corrigan', NULL, 'corrigan', 'US', 1, 30.9968600000, -94.8271500000), (1114669, 1001422, 'Corry', NULL, 'corry', 'US', 1, 41.9203300000, -79.6403300000), (1114670, 1001407, 'Corsicana', NULL, 'corsicana', 'US', 1, 32.0954300000, -96.4688700000), (1114671, 1001445, 'Corson County', NULL, 'corson-county', 'US', 1, 45.7086000000, -101.1968700000), (1114672, 1001416, 'Corte Madera', NULL, 'corte-madera', 'US', 1, 37.9254800000, -122.5274800000), (1114673, 1001436, 'Cortez', NULL, 'cortez', 'US', 1, 27.4692100000, -82.6862100000), (1114674, 1001450, 'Cortez', NULL, 'cortez', 'US', 1, 37.3488800000, -108.5859300000), (1114675, 1001425, 'Cortland', NULL, 'cortland', 'US', 1, 41.9200300000, -88.6887000000), (1114676, 1001452, 'Cortland', NULL, 'cortland', 'US', 1, 42.6011800000, -76.1804800000), (1114677, 1001452, 'Cortland County', NULL, 'cortland-county', 'US', 1, 42.5950100000, -76.0702700000), (1114678, 1001452, 'Cortland West', NULL, 'cortland-west', 'US', 1, 42.5943100000, -76.2258700000), (1114679, 1001426, 'Corunna', NULL, 'corunna', 'US', 1, 42.9819700000, -84.1177500000), (1114680, 1001415, 'Corvallis', NULL, 'corvallis', 'US', 1, 44.5645700000, -123.2620400000), (1114681, 1001440, 'Corydon', NULL, 'corydon', 'US', 1, 38.2120100000, -86.1219200000), (1114682, 1001459, 'Corydon', NULL, 'corydon', 'US', 1, 40.7569500000, -93.3188200000), (1114683, 1001407, 'Coryell County', NULL, 'coryell-county', 'US', 1, 31.3909100000, -97.7992000000), (1114684, 1001435, 'Cos Cob', NULL, 'cos-cob', 'US', 1, 41.0334300000, -73.5995700000), (1114685, 1001462, 'Cosmopolis', NULL, 'cosmopolis', 'US', 1, 46.9553700000, -123.7737800000), (1114686, 1001416, 'Costa Mesa', NULL, 'costa-mesa', 'US', 1, 33.6411300000, -117.9186700000), (1114687, 1001450, 'Costilla County', NULL, 'costilla-county', 'US', 1, 37.2781000000, -105.4282700000), (1114688, 1001416, 'Cotati', NULL, 'cotati', 'US', 1, 38.3268600000, -122.7072100000), (1114689, 1001416, 'Coto De Caza', NULL, 'coto-de-caza', 'US', 1, 33.6041900000, -117.5869900000), (1114690, 1001401, 'Cottage City', NULL, 'cottage-city', 'US', 1, 38.9381700000, -76.9483100000), (1114691, 1001420, 'Cottage Grove', NULL, 'cottage-grove', 'US', 1, 44.8277400000, -92.9438200000), (1114692, 1001441, 'Cottage Grove', NULL, 'cottage-grove', 'US', 1, 43.0761100000, -89.1995600000), (1114693, 1001415, 'Cottage Grove', NULL, 'cottage-grove', 'US', 1, 43.7976200000, -123.0595200000), (1114694, 1001462, 'Cottage Lake', NULL, 'cottage-lake', 'US', 1, 47.7442700000, -122.0773500000), (1114695, 1001407, 'Cottle County', NULL, 'cottle-county', 'US', 1, 34.0776500000, -100.2787400000), (1114696, 1001451, 'Cottleville', NULL, 'cottleville', 'US', 1, 38.7461600000, -90.6540100000), (1114697, 1001421, 'Cotton County', NULL, 'cotton-county', 'US', 1, 34.2902400000, -98.3722300000), (1114698, 1001457, 'Cottonport', NULL, 'cottonport', 'US', 1, 30.9840800000, -92.0534600000), (1114699, 1001456, 'Cottonwood', NULL, 'cottonwood', 'US', 1, 31.0487900000, -85.3049300000), (1114700, 1001420, 'Cottonwood', NULL, 'cottonwood', 'US', 1, 44.6088500000, -95.6741900000), (1114701, 1001434, 'Cottonwood', NULL, 'cottonwood', 'US', 1, 34.7391900000, -112.0098800000), (1114702, 1001416, 'Cottonwood', NULL, 'cottonwood', 'US', 1, 40.3857100000, -122.2808400000), (1114703, 1001420, 'Cottonwood County', NULL, 'cottonwood-county', 'US', 1, 44.0071100000, -95.1811500000), (1114704, 1001406, 'Cottonwood Falls', NULL, 'cottonwood-falls', 'US', 1, 38.3722400000, -96.5427800000), (1114705, 1001414, 'Cottonwood Heights', NULL, 'cottonwood-heights', 'US', 1, 40.6196700000, -111.8102100000), (1114706, 1001407, 'Cottonwood Shores', NULL, 'cottonwood-shores', 'US', 1, 30.5557500000, -98.3239100000), (1114707, 1001433, 'Cotuit', NULL, 'cotuit', 'US', 1, 41.6167800000, -70.4369700000), (1114708, 1001407, 'Cotulla', NULL, 'cotulla', 'US', 1, 28.4369300000, -99.2350300000), (1114709, 1001422, 'Coudersport', NULL, 'coudersport', 'US', 1, 41.7747900000, -78.0205600000), (1114710, 1001462, 'Coulee Dam', NULL, 'coulee-dam', 'US', 1, 47.9654300000, -118.9761300000), (1114711, 1001460, 'Council', NULL, 'council', 'US', 1, 44.7298900000, -116.4382000000), (1114712, 1001459, 'Council Bluffs', NULL, 'council-bluffs', 'US', 1, 41.2619400000, -95.8608300000), (1114713, 1001406, 'Council Grove', NULL, 'council-grove', 'US', 1, 38.6611200000, -96.4919500000), (1114714, 1001436, 'Country Club', NULL, 'country-club', 'US', 1, 25.9481500000, -80.3170000000), (1114715, 1001416, 'Country Club', NULL, 'country-club', 'US', 1, 37.9688100000, -121.3407800000), (1114716, 1001455, 'Country Club Estates', NULL, 'country-club-estates', 'US', 1, 31.2127300000, -81.4642700000), (1114717, 1001451, 'Country Club Hills', NULL, 'country-club-hills', 'US', 1, 38.7208800000, -90.2748400000), (1114718, 1001425, 'Country Club Hills', NULL, 'country-club-hills', 'US', 1, 41.5680900000, -87.7203300000), (1114719, 1001451, 'Country Club Village', NULL, 'country-club-village', 'US', 1, 39.8322200000, -94.8216300000), (1114720, 1001462, 'Country Homes', NULL, 'country-homes', 'US', 1, 47.7485000000, -117.4043900000), (1114721, 1001452, 'Country Knolls', NULL, 'country-knolls', 'US', 1, 42.9150800000, -73.8051200000), (1114722, 1001417, 'Country Lake Estates', NULL, 'country-lake-estates', 'US', 1, 39.9426200000, -74.5440400000), (1114723, 1001440, 'Country Squire Lakes', NULL, 'country-squire-lakes', 'US', 1, 39.0347800000, -85.6985800000), (1114724, 1001436, 'Country Walk', NULL, 'country-walk', 'US', 1, 25.6339900000, -80.4322800000), (1114725, 1001427, 'Countryside', NULL, 'countryside', 'US', 1, 39.0409400000, -77.4136000000), (1114726, 1001425, 'Countryside', NULL, 'countryside', 'US', 1, 41.7828100000, -87.8781100000), (1114727, 1001462, 'Coupeville', NULL, 'coupeville', 'US', 1, 48.2198200000, -122.6862800000), (1114728, 1001427, 'Courtland', NULL, 'courtland', 'US', 1, 36.7162600000, -77.0680200000), (1114729, 1001457, 'Coushatta', NULL, 'coushatta', 'US', 1, 32.0148800000, -93.3421200000), (1114730, 1001447, 'Cove Creek', NULL, 'cove-creek', 'US', 1, 35.6064900000, -83.0112500000), (1114731, 1001416, 'Covelo', NULL, 'covelo', 'US', 1, 39.7932700000, -123.2492200000), (1114732, 1001461, 'Coventry', NULL, 'coventry', 'US', 1, 41.7001000000, -71.6828400000), (1114733, 1001435, 'Coventry Lake', NULL, 'coventry-lake', 'US', 1, 41.7723200000, -72.3325800000), (1114734, 1001416, 'Covina', NULL, 'covina', 'US', 1, 34.0900100000, -117.8903400000), (1114735, 1001455, 'Covington', NULL, 'covington', 'US', 1, 33.5967800000, -83.8601800000), (1114736, 1001419, 'Covington', NULL, 'covington', 'US', 1, 39.0836700000, -84.5085500000), (1114737, 1001457, 'Covington', NULL, 'covington', 'US', 1, 30.4754900000, -90.1004200000), (1114738, 1001454, 'Covington', NULL, 'covington', 'US', 1, 35.5642500000, -89.6464700000), (1114739, 1001427, 'Covington', NULL, 'covington', 'US', 1, 37.7934600000, -79.9939500000), (1114740, 1001440, 'Covington', NULL, 'covington', 'US', 1, 40.1417000000, -87.3947400000), (1114741, 1001462, 'Covington', NULL, 'covington', 'US', 1, 47.3581800000, -122.1221600000), (1114742, 1001456, 'Covington County', NULL, 'covington-county', 'US', 1, 31.2484900000, -86.4512500000), (1114743, 1001430, 'Covington County', NULL, 'covington-county', 'US', 1, 31.6332200000, -89.5526300000), (1114744, 1001454, 'Cowan', NULL, 'cowan', 'US', 1, 35.1645300000, -86.0105400000), (1114745, 1001456, 'Cowarts', NULL, 'cowarts', 'US', 1, 31.2001800000, -85.3046500000), (1114746, 1001421, 'Coweta', NULL, 'coweta', 'US', 1, 35.9517700000, -95.6508100000), (1114747, 1001455, 'Coweta County', NULL, 'coweta-county', 'US', 1, 33.3534600000, -84.7633700000), (1114748, 1001406, 'Cowley County', NULL, 'cowley-county', 'US', 1, 37.2377500000, -96.8374900000), (1114749, 1001462, 'Cowlitz County', NULL, 'cowlitz-county', 'US', 1, 46.1932900000, -122.6807800000), (1114750, 1001443, 'Cowpens', NULL, 'cowpens', 'US', 1, 35.0167900000, -81.8039900000), (1114751, 1001452, 'Coxsackie', NULL, 'coxsackie', 'US', 1, 42.3509200000, -73.8029000000), (1114752, 1001408, 'Cozad', NULL, 'cozad', 'US', 1, 40.8597300000, -99.9873400000), (1114753, 1001429, 'Crab Orchard', NULL, 'crab-orchard', 'US', 1, 37.7406700000, -81.2306600000); INSERT INTO `[[dbprefix]]t_city` VALUES (1114754, 1001422, 'Crafton', NULL, 'crafton', 'US', 1, 40.4350700000, -80.0661700000), (1114755, 1001450, 'Craig', NULL, 'craig', 'US', 1, 40.5152500000, -107.5464500000), (1114756, 1001400, 'Craig', NULL, 'craig', 'US', 1, 55.4763900000, -133.1483300000), (1114757, 1001421, 'Craig County', NULL, 'craig-county', 'US', 1, 36.7617600000, -95.2085000000), (1114758, 1001427, 'Craig County', NULL, 'craig-county', 'US', 1, 37.4812500000, -80.2123400000), (1114759, 1001444, 'Craighead County', NULL, 'craighead-county', 'US', 1, 35.8307900000, -90.6328500000), (1114760, 1001429, 'Craigsville', NULL, 'craigsville', 'US', 1, 38.3306700000, -80.6531500000), (1114761, 1001425, 'Crainville', NULL, 'crainville', 'US', 1, 37.7519900000, -89.0678500000), (1114762, 1001447, 'Cramerton', NULL, 'cramerton', 'US', 1, 35.2387500000, -81.0750800000), (1114763, 1001422, 'Cranberry Township', NULL, 'cranberry-township', 'US', 1, 40.6849600000, -80.1071400000), (1114764, 1001417, 'Cranbury', NULL, 'cranbury', 'US', 1, 40.3162200000, -74.5137600000), (1114765, 1001407, 'Crandall', NULL, 'crandall', 'US', 1, 32.6279100000, -96.4558200000), (1114766, 1001441, 'Crandon', NULL, 'crandon', 'US', 1, 45.5719100000, -88.9028900000), (1114767, 1001417, 'Crandon Lakes', NULL, 'crandon-lakes', 'US', 1, 41.1242600000, -74.8398900000), (1114768, 1001451, 'Crane', NULL, 'crane', 'US', 1, 36.9053400000, -93.5715800000), (1114769, 1001407, 'Crane', NULL, 'crane', 'US', 1, 31.3973600000, -102.3501400000), (1114770, 1001407, 'Crane County', NULL, 'crane-county', 'US', 1, 31.4285000000, -102.5155700000), (1114771, 1001417, 'Cranford', NULL, 'cranford', 'US', 1, 40.6584400000, -74.2995900000), (1114772, 1001461, 'Cranston', NULL, 'cranston', 'US', 1, 41.7798200000, -71.4372800000), (1114773, 1001447, 'Craven County', NULL, 'craven-county', 'US', 1, 35.1172200000, -77.0826300000), (1114774, 1001444, 'Crawford County', NULL, 'crawford-county', 'US', 1, 35.5888300000, -94.2431200000), (1114775, 1001455, 'Crawford County', NULL, 'crawford-county', 'US', 1, 32.7145000000, -83.9863400000), (1114776, 1001425, 'Crawford County', NULL, 'crawford-county', 'US', 1, 39.0026900000, -87.7595600000), (1114777, 1001440, 'Crawford County', NULL, 'crawford-county', 'US', 1, 38.2924100000, -86.4517100000), (1114778, 1001406, 'Crawford County', NULL, 'crawford-county', 'US', 1, 37.5073200000, -94.8518100000), (1114779, 1001451, 'Crawford County', NULL, 'crawford-county', 'US', 1, 37.9763800000, -91.3039600000), (1114780, 1001459, 'Crawford County', NULL, 'crawford-county', 'US', 1, 42.0372100000, -95.3819700000), (1114781, 1001426, 'Crawford County', NULL, 'crawford-county', 'US', 1, 44.6836100000, -84.6103000000), (1114782, 1001422, 'Crawford County', NULL, 'crawford-county', 'US', 1, 41.6847000000, -80.1062800000), (1114783, 1001441, 'Crawford County', NULL, 'crawford-county', 'US', 1, 43.2394600000, -90.9310500000), (1114784, 1001440, 'Crawfordsville', NULL, 'crawfordsville', 'US', 1, 40.0411500000, -86.8744500000), (1114785, 1001436, 'Crawfordville', NULL, 'crawfordville', 'US', 1, 30.1760400000, -84.3751800000), (1114786, 1001455, 'Crawfordville', NULL, 'crawfordville', 'US', 1, 33.5540200000, -82.8959800000), (1114787, 1001450, 'Creede', NULL, 'creede', 'US', 1, 37.8491700000, -106.9264300000), (1114788, 1001447, 'Creedmoor', NULL, 'creedmoor', 'US', 1, 36.1223700000, -78.6861100000), (1114789, 1001421, 'Creek County', NULL, 'creek-county', 'US', 1, 35.9026800000, -96.3709400000), (1114790, 1001408, 'Creighton', NULL, 'creighton', 'US', 1, 42.4666700000, -97.9061800000), (1114791, 1001456, 'Crenshaw County', NULL, 'crenshaw-county', 'US', 1, 31.7314900000, -86.3135500000), (1114792, 1001456, 'Creola', NULL, 'creola', 'US', 1, 30.8918500000, -88.0397200000), (1114793, 1001401, 'Cresaptown', NULL, 'cresaptown', 'US', 1, 39.5928700000, -78.8333500000), (1114794, 1001421, 'Crescent', NULL, 'crescent', 'US', 1, 35.9525400000, -97.5947700000), (1114795, 1001436, 'Crescent City', NULL, 'crescent-city', 'US', 1, 29.4302500000, -81.5106300000), (1114796, 1001416, 'Crescent City', NULL, 'crescent-city', 'US', 1, 41.7559500000, -124.2017500000), (1114797, 1001419, 'Crescent Springs', NULL, 'crescent-springs', 'US', 1, 39.0514500000, -84.5816100000), (1114798, 1001459, 'Cresco', NULL, 'cresco', 'US', 1, 43.3813600000, -92.1140500000), (1114799, 1001417, 'Cresskill', NULL, 'cresskill', 'US', 1, 40.9414900000, -73.9593000000), (1114800, 1001422, 'Cresson', NULL, 'cresson', 'US', 1, 40.4597900000, -78.5916800000), (1114801, 1001422, 'Cressona', NULL, 'cressona', 'US', 1, 40.6267600000, -76.1927200000), (1114802, 1001416, 'Crest', NULL, 'crest', 'US', 1, 32.8072700000, -116.8680800000), (1114803, 1001425, 'Crest Hill', NULL, 'crest-hill', 'US', 1, 41.5547500000, -88.0986700000), (1114804, 1001450, 'Crested Butte', NULL, 'crested-butte', 'US', 1, 38.8697100000, -106.9878200000), (1114805, 1001416, 'Crestline', NULL, 'crestline', 'US', 1, 34.2419500000, -117.2856000000), (1114806, 1001459, 'Creston', NULL, 'creston', 'US', 1, 41.0586000000, -94.3613500000), (1114807, 1001436, 'Crestview', NULL, 'crestview', 'US', 1, 30.7621300000, -86.5705100000), (1114808, 1001419, 'Crestview Hills', NULL, 'crestview-hills', 'US', 1, 39.0272800000, -84.5849400000), (1114809, 1001419, 'Crestwood', NULL, 'crestwood', 'US', 1, 38.3242400000, -85.4724600000), (1114810, 1001451, 'Crestwood', NULL, 'crestwood', 'US', 1, 38.5570000000, -90.3817800000), (1114811, 1001425, 'Crestwood', NULL, 'crestwood', 'US', 1, 41.6446300000, -87.7415400000), (1114812, 1001417, 'Crestwood Village', NULL, 'crestwood-village', 'US', 1, 39.9481700000, -74.3607000000), (1114813, 1001415, 'Creswell', NULL, 'creswell', 'US', 1, 43.9179000000, -123.0245300000), (1114814, 1001425, 'Crete', NULL, 'crete', 'US', 1, 41.4444800000, -87.6314300000), (1114815, 1001408, 'Crete', NULL, 'crete', 'US', 1, 40.6277800000, -96.9614200000), (1114816, 1001451, 'Creve Coeur', NULL, 'creve-coeur', 'US', 1, 38.6608900000, -90.4226200000), (1114817, 1001425, 'Creve Coeur', NULL, 'creve-coeur', 'US', 1, 40.6472600000, -89.5912100000), (1114818, 1001427, 'Crewe', NULL, 'crewe', 'US', 1, 37.1732100000, -78.1233300000), (1114819, 1001447, 'Cricket', NULL, 'cricket', 'US', 1, 36.1715200000, -81.1939800000), (1114820, 1001427, 'Crimora', NULL, 'crimora', 'US', 1, 38.1540200000, -78.8503000000), (1114821, 1001450, 'Cripple Creek', NULL, 'cripple-creek', 'US', 1, 38.7466600000, -105.1783100000), (1114822, 1001401, 'Crisfield', NULL, 'crisfield', 'US', 1, 37.9834600000, -75.8538200000), (1114823, 1001455, 'Crisp County', NULL, 'crisp-county', 'US', 1, 31.9229300000, -83.7681000000), (1114824, 1001419, 'Crittenden', NULL, 'crittenden', 'US', 1, 38.7828400000, -84.6052200000), (1114825, 1001444, 'Crittenden County', NULL, 'crittenden-county', 'US', 1, 35.2079400000, -90.3088600000), (1114826, 1001419, 'Crittenden County', NULL, 'crittenden-county', 'US', 1, 37.3527200000, -88.0972200000), (1114827, 1001451, 'Crocker', NULL, 'crocker', 'US', 1, 37.9489300000, -92.2637800000), (1114828, 1001462, 'Crocker', NULL, 'crocker', 'US', 1, 47.0809100000, -122.1038300000), (1114829, 1001407, 'Crockett', NULL, 'crockett', 'US', 1, 31.3182400000, -95.4566100000), (1114830, 1001416, 'Crockett', NULL, 'crockett', 'US', 1, 38.0524200000, -122.2130200000), (1114831, 1001454, 'Crockett County', NULL, 'crockett-county', 'US', 1, 35.8135400000, -89.1395300000), (1114832, 1001407, 'Crockett County', NULL, 'crockett-county', 'US', 1, 30.7229800000, -101.4121500000), (1114833, 1001401, 'Crofton', NULL, 'crofton', 'US', 1, 39.0017800000, -76.6874700000), (1114834, 1001452, 'Crompond', NULL, 'crompond', 'US', 1, 41.2950900000, -73.8654100000), (1114835, 1001435, 'Cromwell', NULL, 'cromwell', 'US', 1, 41.5951000000, -72.6453700000), (1114836, 1001415, 'Crook County', NULL, 'crook-county', 'US', 1, 44.1421900000, -120.3565800000), (1114837, 1001442, 'Crook County', NULL, 'crook-county', 'US', 1, 44.5886000000, -104.5699400000), (1114838, 1001436, 'Crooked Lake Park', NULL, 'crooked-lake-park', 'US', 1, 27.8291900000, -81.5839700000), (1114839, 1001445, 'Crooks', NULL, 'crooks', 'US', 1, 43.6647000000, -96.8108900000), (1114840, 1001420, 'Crookston', NULL, 'crookston', 'US', 1, 47.7741400000, -96.6081200000), (1114841, 1001401, 'Croom', NULL, 'croom', 'US', 1, 38.7526200000, -76.7638600000), (1114842, 1001407, 'Crosby', NULL, 'crosby', 'US', 1, 29.9118900000, -95.0621500000), (1114843, 1001420, 'Crosby', NULL, 'crosby', 'US', 1, 46.4821800000, -93.9577600000), (1114844, 1001418, 'Crosby', NULL, 'crosby', 'US', 1, 48.9142000000, -103.2949100000), (1114845, 1001407, 'Crosby County', NULL, 'crosby-county', 'US', 1, 33.6146200000, -101.2999600000), (1114846, 1001407, 'Crosbyton', NULL, 'crosbyton', 'US', 1, 33.6600800000, -101.2379300000), (1114847, 1001436, 'Cross City', NULL, 'cross-city', 'US', 1, 29.6346500000, -83.1269400000), (1114848, 1001444, 'Cross County', NULL, 'cross-county', 'US', 1, 35.2957300000, -90.7712300000), (1114849, 1001420, 'Cross Lake', NULL, 'cross-lake', 'US', 1, 46.6594100000, -94.1138700000), (1114850, 1001429, 'Cross Lanes', NULL, 'cross-lanes', 'US', 1, 38.4203700000, -81.7906800000), (1114851, 1001407, 'Cross Mountain', NULL, 'cross-mountain', 'US', 1, 29.6455000000, -98.6594700000), (1114852, 1001454, 'Cross Plains', NULL, 'cross-plains', 'US', 1, 36.5486600000, -86.6961100000), (1114853, 1001441, 'Cross Plains', NULL, 'cross-plains', 'US', 1, 43.1144400000, -89.6556800000), (1114854, 1001444, 'Crossett', NULL, 'crossett', 'US', 1, 33.1281800000, -91.9612400000), (1114855, 1001456, 'Crossville', NULL, 'crossville', 'US', 1, 34.2875900000, -85.9941400000), (1114856, 1001454, 'Crossville', NULL, 'crossville', 'US', 1, 35.9489600000, -85.0269000000), (1114857, 1001426, 'Croswell', NULL, 'croswell', 'US', 1, 43.2755800000, -82.6210400000), (1114858, 1001440, 'Crothersville', NULL, 'crothersville', 'US', 1, 38.8006100000, -85.8416400000), (1114859, 1001452, 'Croton-on-Hudson', NULL, 'croton-on-hudson', 'US', 1, 41.2084300000, -73.8912500000), (1114860, 1001446, 'Crow Agency', NULL, 'crow-agency', 'US', 1, 45.6016400000, -107.4611900000), (1114861, 1001420, 'Crow Wing County', NULL, 'crow-wing-county', 'US', 1, 46.4823700000, -94.0708700000), (1114862, 1001407, 'Crowell', NULL, 'crowell', 'US', 1, 33.9839700000, -99.7248200000), (1114863, 1001457, 'Crowley', NULL, 'crowley', 'US', 1, 30.2140900000, -92.3745800000), (1114864, 1001407, 'Crowley', NULL, 'crowley', 'US', 1, 32.5790300000, -97.3625200000), (1114865, 1001450, 'Crowley County', NULL, 'crowley-county', 'US', 1, 38.3266600000, -103.7848300000), (1114866, 1001452, 'Crown Heights', NULL, 'crown-heights', 'US', 1, 41.6373200000, -73.9379200000), (1114867, 1001440, 'Crown Point', NULL, 'crown-point', 'US', 1, 41.4169800000, -87.3653100000), (1114868, 1001423, 'Crownpoint', NULL, 'crownpoint', 'US', 1, 35.6780800000, -108.1511800000), (1114869, 1001401, 'Crownsville', NULL, 'crownsville', 'US', 1, 39.0284400000, -76.6013500000), (1114870, 1001422, 'Croydon', NULL, 'croydon', 'US', 1, 40.0873300000, -74.9035000000), (1114871, 1001427, 'Crozet', NULL, 'crozet', 'US', 1, 38.0695800000, -78.7005800000), (1114872, 1001452, 'Crugers', NULL, 'crugers', 'US', 1, 41.2334300000, -73.9226400000), (1114873, 1001454, 'Crump', NULL, 'crump', 'US', 1, 35.2217500000, -88.3180900000), (1114874, 1001420, 'Crystal', NULL, 'crystal', 'US', 1, 45.0327400000, -93.3602300000), (1114875, 1001451, 'Crystal City', NULL, 'crystal-city', 'US', 1, 38.2211700000, -90.3790100000), (1114876, 1001407, 'Crystal City', NULL, 'crystal-city', 'US', 1, 28.6774800000, -99.8281100000), (1114877, 1001426, 'Crystal Falls', NULL, 'crystal-falls', 'US', 1, 46.0980100000, -88.3340200000), (1114878, 1001436, 'Crystal Lake', NULL, 'crystal-lake', 'US', 1, 28.0355800000, -81.9084100000), (1114879, 1001435, 'Crystal Lake', NULL, 'crystal-lake', 'US', 1, 41.9317600000, -72.3784200000), (1114880, 1001425, 'Crystal Lake', NULL, 'crystal-lake', 'US', 1, 42.2411300000, -88.3162000000), (1114881, 1001425, 'Crystal Lawns', NULL, 'crystal-lawns', 'US', 1, 41.5703100000, -88.1581200000), (1114882, 1001436, 'Crystal River', NULL, 'crystal-river', 'US', 1, 28.9024800000, -82.5926000000), (1114883, 1001436, 'Crystal Springs', NULL, 'crystal-springs', 'US', 1, 28.1814000000, -82.1575800000), (1114884, 1001430, 'Crystal Springs', NULL, 'crystal-springs', 'US', 1, 31.9873800000, -90.3570400000), (1114885, 1001451, 'Cuba', NULL, 'cuba', 'US', 1, 38.0628200000, -91.4034800000), (1114886, 1001425, 'Cuba', NULL, 'cuba', 'US', 1, 42.1839100000, -88.1909100000), (1114887, 1001452, 'Cuba', NULL, 'cuba', 'US', 1, 42.2175700000, -78.2752900000), (1114888, 1001441, 'Cuba City', NULL, 'cuba-city', 'US', 1, 42.6055500000, -90.4298500000), (1114889, 1001441, 'Cudahy', NULL, 'cudahy', 'US', 1, 42.9597400000, -87.8614700000), (1114890, 1001416, 'Cudahy', NULL, 'cudahy', 'US', 1, 33.9605700000, -118.1853500000), (1114891, 1001436, 'Cudjoe Key', NULL, 'cudjoe-key', 'US', 1, 24.6715300000, -81.4984200000), (1114892, 1001407, 'Cuero', NULL, 'cuero', 'US', 1, 29.0938700000, -97.2891600000), (1114893, 1001407, 'Culberson County', NULL, 'culberson-county', 'US', 1, 31.4471600000, -104.5174200000), (1114894, 1001457, 'Cullen', NULL, 'cullen', 'US', 1, 32.9690300000, -93.4507300000), (1114895, 1001456, 'Cullman', NULL, 'cullman', 'US', 1, 34.1748200000, -86.8436100000), (1114896, 1001456, 'Cullman County', NULL, 'cullman-county', 'US', 1, 34.1319400000, -86.8676200000), (1114897, 1001429, 'Culloden', NULL, 'culloden', 'US', 1, 38.4200900000, -82.0554200000), (1114898, 1001447, 'Cullowhee', NULL, 'cullowhee', 'US', 1, 35.3137100000, -83.1765300000), (1114899, 1001415, 'Culp Creek', NULL, 'culp-creek', 'US', 1, 43.7034600000, -122.8475700000), (1114900, 1001427, 'Culpeper', NULL, 'culpeper', 'US', 1, 38.4731800000, -77.9966600000), (1114901, 1001427, 'Culpeper County', NULL, 'culpeper-county', 'US', 1, 38.4860600000, -77.9558900000), (1114902, 1001440, 'Culver', NULL, 'culver', 'US', 1, 41.2189300000, -86.4230600000), (1114903, 1001415, 'Culver', NULL, 'culver', 'US', 1, 44.5256800000, -121.2131000000), (1114904, 1001416, 'Culver City', NULL, 'culver-city', 'US', 1, 34.0211200000, -118.3964700000), (1114905, 1001440, 'Cumberland', NULL, 'cumberland', 'US', 1, 39.7761500000, -85.9572000000), (1114906, 1001419, 'Cumberland', NULL, 'cumberland', 'US', 1, 36.9781500000, -82.9885000000), (1114907, 1001401, 'Cumberland', NULL, 'cumberland', 'US', 1, 39.6528700000, -78.7625200000), (1114908, 1001427, 'Cumberland', NULL, 'cumberland', 'US', 1, 37.4959800000, -78.2452700000), (1114909, 1001461, 'Cumberland', NULL, 'cumberland', 'US', 1, 41.9667700000, -71.4328400000), (1114910, 1001441, 'Cumberland', NULL, 'cumberland', 'US', 1, 45.5321800000, -92.0193500000), (1114911, 1001453, 'Cumberland Center', NULL, 'cumberland-center', 'US', 1, 43.7964700000, -70.2589400000), (1114912, 1001425, 'Cumberland County', NULL, 'cumberland-county', 'US', 1, 39.2733200000, -88.2402300000), (1114913, 1001419, 'Cumberland County', NULL, 'cumberland-county', 'US', 1, 36.7865300000, -85.3884500000), (1114914, 1001447, 'Cumberland County', NULL, 'cumberland-county', 'US', 1, 35.0485900000, -78.8274400000), (1114915, 1001417, 'Cumberland County', NULL, 'cumberland-county', 'US', 1, 39.3280700000, -75.1293400000), (1114916, 1001454, 'Cumberland County', NULL, 'cumberland-county', 'US', 1, 35.9503900000, -84.9983500000), (1114917, 1001427, 'Cumberland County', NULL, 'cumberland-county', 'US', 1, 37.5121000000, -78.2449600000), (1114918, 1001453, 'Cumberland County', NULL, 'cumberland-county', 'US', 1, 43.8060800000, -70.3302000000), (1114919, 1001422, 'Cumberland County', NULL, 'cumberland-county', 'US', 1, 40.1636300000, -77.2655500000), (1114920, 1001452, 'Cumberland Head', NULL, 'cumberland-head', 'US', 1, 44.7164300000, -73.4026300000), (1114921, 1001461, 'Cumberland Hill', NULL, 'cumberland-hill', 'US', 1, 41.9745400000, -71.4670000000), (1114922, 1001408, 'Cuming County', NULL, 'cuming-county', 'US', 1, 41.9164000000, -96.7874000000), (1114923, 1001455, 'Cumming', NULL, 'cumming', 'US', 1, 34.2073200000, -84.1401900000), (1114924, 1001416, 'Cupertino', NULL, 'cupertino', 'US', 1, 37.3230000000, -122.0321800000), (1114925, 1001447, 'Currituck', NULL, 'currituck', 'US', 1, 36.4498800000, -76.0154800000), (1114926, 1001447, 'Currituck County', NULL, 'currituck-county', 'US', 1, 36.3672400000, -75.9368300000), (1114927, 1001423, 'Curry County', NULL, 'curry-county', 'US', 1, 34.5741600000, -103.3469100000), (1114928, 1001415, 'Curry County', NULL, 'curry-county', 'US', 1, 42.4666100000, -124.2153400000), (1114929, 1001422, 'Curtisville', NULL, 'curtisville', 'US', 1, 40.6422900000, -79.8508900000), (1114930, 1001422, 'Curwensville', NULL, 'curwensville', 'US', 1, 40.9756100000, -78.5250200000), (1114931, 1001421, 'Cushing', NULL, 'cushing', 'US', 1, 35.9850600000, -96.7669700000), (1114932, 1001453, 'Cushing', NULL, 'cushing', 'US', 1, 44.0192500000, -69.2397700000), (1114933, 1001455, 'Cusseta', NULL, 'cusseta', 'US', 1, 32.3054300000, -84.7727000000), (1114934, 1001445, 'Custer', NULL, 'custer', 'US', 1, 43.7666500000, -103.5988100000), (1114935, 1001421, 'Custer County', NULL, 'custer-county', 'US', 1, 35.6388600000, -99.0015000000), (1114936, 1001408, 'Custer County', NULL, 'custer-county', 'US', 1, 41.3942600000, -99.7261400000), (1114937, 1001450, 'Custer County', NULL, 'custer-county', 'US', 1, 38.1086800000, -105.3674700000), (1114938, 1001460, 'Custer County', NULL, 'custer-county', 'US', 1, 44.2414200000, -114.2818000000), (1114939, 1001446, 'Custer County', NULL, 'custer-county', 'US', 1, 46.2527000000, -105.5717800000), (1114940, 1001445, 'Custer County', NULL, 'custer-county', 'US', 1, 43.6776300000, -103.4515400000), (1114941, 1001446, 'Cut Bank', NULL, 'cut-bank', 'US', 1, 48.6330400000, -112.3261600000), (1114942, 1001457, 'Cut Off', NULL, 'cut-off', 'US', 1, 29.5427200000, -90.3381400000), (1114943, 1001407, 'Cut and Shoot', NULL, 'cut-and-shoot', 'US', 1, 30.3332700000, -95.3579900000), (1114944, 1001452, 'Cutchogue', NULL, 'cutchogue', 'US', 1, 41.0106600000, -72.4850900000), (1114945, 1001455, 'Cuthbert', NULL, 'cuthbert', 'US', 1, 31.7712700000, -84.7893700000), (1114946, 1001436, 'Cutler', NULL, 'cutler', 'US', 1, 25.6151000000, -80.3106100000), (1114947, 1001416, 'Cutler', NULL, 'cutler', 'US', 1, 36.5232800000, -119.2867800000), (1114948, 1001436, 'Cutler Bay', NULL, 'cutler-bay', 'US', 1, 25.5783000000, -80.3377000000), (1114949, 1001436, 'Cutler Ridge', NULL, 'cutler-ridge', 'US', 1, 25.5806600000, -80.3467200000), (1114950, 1001426, 'Cutlerville', NULL, 'cutlerville', 'US', 1, 42.8408600000, -85.6636400000), (1114951, 1001416, 'Cutten', NULL, 'cutten', 'US', 1, 40.7698500000, -124.1428400000), (1114952, 1001419, 'Cynthiana', NULL, 'cynthiana', 'US', 1, 38.3903500000, -84.2941000000), (1114953, 1001407, 'Cypress', NULL, 'cypress', 'US', 1, 29.9691100000, -95.6971700000), (1114954, 1001416, 'Cypress', NULL, 'cypress', 'US', 1, 33.8169600000, -118.0372900000), (1114955, 1001436, 'Cypress Gardens', NULL, 'cypress-gardens', 'US', 1, 27.9939100000, -81.6900800000), (1114956, 1001452, 'Cypress Hills', NULL, 'cypress-hills', 'US', 1, 40.6770500000, -73.8912500000), (1114957, 1001436, 'Cypress Lake', NULL, 'cypress-lake', 'US', 1, 26.5381300000, -81.8992500000), (1114958, 1001436, 'Cypress Quarters', NULL, 'cypress-quarters', 'US', 1, 27.2519900000, -80.8139500000), (1114959, 1001421, 'Cyril', NULL, 'cyril', 'US', 1, 34.8964600000, -98.2006000000), (1114960, 1001407, 'César Chávez', NULL, 'cesar-chavez', 'US', 1, 26.3034000000, -98.1152900000), (1114961, 1001430, 'D''Iberville', NULL, 'd-iberville', 'US', 1, 30.4263100000, -88.8908600000), (1114962, 1001450, 'Dacono', NULL, 'dacono', 'US', 1, 40.0847100000, -104.9394200000), (1114963, 1001455, 'Dacula', NULL, 'dacula', 'US', 1, 33.9887200000, -83.8979600000), (1114964, 1001436, 'Dade City', NULL, 'dade-city', 'US', 1, 28.3647200000, -82.1959200000), (1114965, 1001436, 'Dade City North', NULL, 'dade-city-north', 'US', 1, 28.3833400000, -82.1938900000), (1114966, 1001455, 'Dade County', NULL, 'dade-county', 'US', 1, 34.8545200000, -85.5045300000), (1114967, 1001451, 'Dade County', NULL, 'dade-county', 'US', 1, 37.4320400000, -93.8502900000), (1114968, 1001456, 'Dadeville', NULL, 'dadeville', 'US', 1, 32.8312400000, -85.7635700000), (1114969, 1001414, 'Daggett County', NULL, 'daggett-county', 'US', 1, 40.8872700000, -109.5076500000), (1114970, 1001427, 'Dahlgren', NULL, 'dahlgren', 'US', 1, 38.3312400000, -77.0510900000), (1114971, 1001455, 'Dahlonega', NULL, 'dahlonega', 'US', 1, 34.5325900000, -83.9849100000), (1114972, 1001407, 'Daingerfield', NULL, 'daingerfield', 'US', 1, 33.0317900000, -94.7218700000), (1114973, 1001441, 'Dakota', NULL, 'dakota', 'US', 1, 43.9902500000, -89.3565100000), (1114974, 1001459, 'Dakota City', NULL, 'dakota-city', 'US', 1, 42.7221900000, -94.1971800000), (1114975, 1001408, 'Dakota City', NULL, 'dakota-city', 'US', 1, 42.4155500000, -96.4183600000), (1114976, 1001420, 'Dakota County', NULL, 'dakota-county', 'US', 1, 44.6718900000, -93.0654400000), (1114977, 1001408, 'Dakota County', NULL, 'dakota-county', 'US', 1, 42.3911100000, -96.5645100000), (1114978, 1001445, 'Dakota Dunes', NULL, 'dakota-dunes', 'US', 1, 42.4874900000, -96.4864200000), (1114979, 1001440, 'Dale', NULL, 'dale', 'US', 1, 38.1689400000, -86.9900000000), (1114980, 1001422, 'Dale', NULL, 'dale', 'US', 1, 40.3128500000, -78.9041900000), (1114981, 1001427, 'Dale City', NULL, 'dale-city', 'US', 1, 38.6370600000, -77.3110900000), (1114982, 1001456, 'Dale County', NULL, 'dale-county', 'US', 1, 31.4318200000, -85.6110300000), (1114983, 1001456, 'Daleville', NULL, 'daleville', 'US', 1, 31.3101700000, -85.7129900000), (1114984, 1001427, 'Daleville', NULL, 'daleville', 'US', 1, 37.4098600000, -79.9125400000), (1114985, 1001440, 'Daleville', NULL, 'daleville', 'US', 1, 40.1211500000, -85.5580300000), (1114986, 1001407, 'Dalhart', NULL, 'dalhart', 'US', 1, 36.0594800000, -102.5132500000), (1114987, 1001407, 'Dallam County', NULL, 'dallam-county', 'US', 1, 36.2778900000, -102.6022200000), (1114988, 1001455, 'Dallas', NULL, 'dallas', 'US', 1, 33.9237100000, -84.8407700000), (1114989, 1001447, 'Dallas', NULL, 'dallas', 'US', 1, 35.3165300000, -81.1761900000), (1114990, 1001407, 'Dallas', NULL, 'dallas', 'US', 1, 32.7830600000, -96.8066700000), (1114991, 1001422, 'Dallas', NULL, 'dallas', 'US', 1, 41.3361900000, -75.9632500000), (1114992, 1001415, 'Dallas', NULL, 'dallas', 'US', 1, 44.9192800000, -123.3170500000), (1114993, 1001459, 'Dallas Center', NULL, 'dallas-center', 'US', 1, 41.6844300000, -93.9610600000), (1114994, 1001456, 'Dallas County', NULL, 'dallas-county', 'US', 1, 32.3259700000, -87.1064800000), (1114995, 1001444, 'Dallas County', NULL, 'dallas-county', 'US', 1, 33.9698300000, -92.6544400000), (1114996, 1001451, 'Dallas County', NULL, 'dallas-county', 'US', 1, 37.6804100000, -93.0236600000), (1114997, 1001407, 'Dallas County', NULL, 'dallas-county', 'US', 1, 32.7666300000, -96.7778700000), (1114998, 1001459, 'Dallas County', NULL, 'dallas-county', 'US', 1, 41.6848900000, -94.0397400000), (1114999, 1001422, 'Dallastown', NULL, 'dallastown', 'US', 1, 39.8995400000, -76.6402500000), (1115000, 1001462, 'Dallesport', NULL, 'dallesport', 'US', 1, 45.6173400000, -121.1795200000), (1115001, 1001455, 'Dalton', NULL, 'dalton', 'US', 1, 34.7698000000, -84.9702200000), (1115002, 1001433, 'Dalton', NULL, 'dalton', 'US', 1, 42.4737000000, -73.1662100000), (1115003, 1001422, 'Dalton', NULL, 'dalton', 'US', 1, 41.5342400000, -75.7360300000), (1115004, 1001460, 'Dalton Gardens', NULL, 'dalton-gardens', 'US', 1, 47.7296300000, -116.7701900000), (1115005, 1001407, 'Dalworthington Gardens', NULL, 'dalworthington-gardens', 'US', 1, 32.7029100000, -97.1552900000), (1115006, 1001416, 'Daly City', NULL, 'daly-city', 'US', 1, 37.7057700000, -122.4619200000), (1115007, 1001443, 'Dalzell', NULL, 'dalzell', 'US', 1, 34.0168200000, -80.4300800000), (1115008, 1001453, 'Damariscotta', NULL, 'damariscotta', 'US', 1, 44.0328600000, -69.5186600000), (1115009, 1001401, 'Damascus', NULL, 'damascus', 'US', 1, 39.2884400000, -77.2038700000), (1115010, 1001415, 'Damascus', NULL, 'damascus', 'US', 1, 45.4176200000, -122.4589800000), (1115011, 1001447, 'Dana', NULL, 'dana', 'US', 1, 35.3292800000, -82.3754000000), (1115012, 1001416, 'Dana Point', NULL, 'dana-point', 'US', 1, 33.4669700000, -117.6981100000), (1115013, 1001447, 'Danbury', NULL, 'danbury', 'US', 1, 36.4093000000, -80.2058800000), (1115014, 1001407, 'Danbury', NULL, 'danbury', 'US', 1, 29.2283000000, -95.3449400000), (1115015, 1001435, 'Danbury', NULL, 'danbury', 'US', 1, 41.3948200000, -73.4540100000), (1115016, 1001404, 'Danbury', NULL, 'danbury', 'US', 1, 43.5256300000, -71.8617500000), (1115017, 1001409, 'Danby', NULL, 'danby', 'US', 1, 43.3461800000, -72.9953800000), (1115018, 1001454, 'Dandridge', NULL, 'dandridge', 'US', 1, 36.0153700000, -83.4148900000), (1115019, 1001441, 'Dane', NULL, 'dane', 'US', 1, 43.2505500000, -89.5015100000), (1115020, 1001441, 'Dane County', NULL, 'dane-county', 'US', 1, 43.0673500000, -89.4183200000), (1115021, 1001436, 'Dania Beach', NULL, 'dania-beach', 'US', 1, 26.0523100000, -80.1439300000), (1115022, 1001414, 'Daniel', NULL, 'daniel', 'US', 1, 40.4707900000, -111.4146300000), (1115023, 1001429, 'Daniels', NULL, 'daniels', 'US', 1, 37.7432700000, -81.1240800000), (1115024, 1001446, 'Daniels County', NULL, 'daniels-county', 'US', 1, 48.7838100000, -105.5485700000), (1115025, 1001435, 'Danielson', NULL, 'danielson', 'US', 1, 41.8026000000, -71.8859100000), (1115026, 1001455, 'Danielsville', NULL, 'danielsville', 'US', 1, 34.1242800000, -83.2212600000), (1115027, 1001452, 'Dannemora', NULL, 'dannemora', 'US', 1, 44.7214300000, -73.7237500000), (1115028, 1001452, 'Dansville', NULL, 'dansville', 'US', 1, 42.5609000000, -77.6961100000), (1115029, 1001433, 'Danvers', NULL, 'danvers', 'US', 1, 42.5750900000, -70.9300500000), (1115030, 1001425, 'Danvers', NULL, 'danvers', 'US', 1, 40.5294800000, -89.1773100000), (1115031, 1001444, 'Danville', NULL, 'danville', 'US', 1, 35.0539800000, -93.3935200000), (1115032, 1001456, 'Danville', NULL, 'danville', 'US', 1, 34.4145400000, -87.0875100000), (1115033, 1001419, 'Danville', NULL, 'danville', 'US', 1, 37.6456300000, -84.7721700000), (1115034, 1001440, 'Danville', NULL, 'danville', 'US', 1, 39.7606000000, -86.5263900000), (1115035, 1001425, 'Danville', NULL, 'danville', 'US', 1, 40.1244800000, -87.6300200000), (1115036, 1001404, 'Danville', NULL, 'danville', 'US', 1, 42.9125900000, -71.1245000000), (1115037, 1001422, 'Danville', NULL, 'danville', 'US', 1, 40.9634200000, -76.6127300000), (1115038, 1001416, 'Danville', NULL, 'danville', 'US', 1, 37.8215900000, -121.9999600000), (1115039, 1001427, 'Danville', NULL, 'danville', 'US', 1, 36.5859700000, -79.3950200000), (1115040, 1001456, 'Daphne', NULL, 'daphne', 'US', 1, 30.6035300000, -87.9036000000), (1115041, 1001422, 'Darby', NULL, 'darby', 'US', 1, 39.9184500000, -75.2590700000), (1115042, 1001444, 'Dardanelle', NULL, 'dardanelle', 'US', 1, 35.2231400000, -93.1579500000), (1115043, 1001451, 'Dardenne Prairie', NULL, 'dardenne-prairie', 'US', 1, 38.7695000000, -90.7290200000), (1115044, 1001447, 'Dare County', NULL, 'dare-county', 'US', 1, 35.7866300000, -75.7809400000), (1115045, 1001455, 'Darien', NULL, 'darien', 'US', 1, 31.3702300000, -81.4339900000), (1115046, 1001435, 'Darien', NULL, 'darien', 'US', 1, 41.0787100000, -73.4692900000), (1115047, 1001425, 'Darien', NULL, 'darien', 'US', 1, 41.7519800000, -87.9739500000), (1115048, 1001441, 'Darien', NULL, 'darien', 'US', 1, 42.6016800000, -88.7076000000), (1115049, 1001443, 'Darlington', NULL, 'darlington', 'US', 1, 34.2998800000, -79.8761700000), (1115050, 1001441, 'Darlington', NULL, 'darlington', 'US', 1, 42.6830600000, -90.1176300000), (1115051, 1001443, 'Darlington County', NULL, 'darlington-county', 'US', 1, 34.3323500000, -79.9576900000), (1115052, 1001440, 'Darmstadt', NULL, 'darmstadt', 'US', 1, 38.0992100000, -87.5789100000), (1115053, 1001401, 'Darnestown', NULL, 'darnestown', 'US', 1, 39.1034400000, -77.2908200000), (1115054, 1001462, 'Darrington', NULL, 'darrington', 'US', 1, 48.2553900000, -121.6015100000), (1115055, 1001420, 'Dassel', NULL, 'dassel', 'US', 1, 45.0816300000, -94.3069300000), (1115056, 1001422, 'Dauphin County', NULL, 'dauphin-county', 'US', 1, 40.4154400000, -76.7794700000), (1115057, 1001456, 'Dauphin Island', NULL, 'dauphin-island', 'US', 1, 30.2554800000, -88.1097200000), (1115058, 1001436, 'Davenport', NULL, 'davenport', 'US', 1, 28.1614000000, -81.6017400000), (1115059, 1001459, 'Davenport', NULL, 'davenport', 'US', 1, 41.5236400000, -90.5776400000), (1115060, 1001462, 'Davenport', NULL, 'davenport', 'US', 1, 47.6540500000, -118.1499700000), (1115061, 1001408, 'David City', NULL, 'david-city', 'US', 1, 41.2527900000, -97.1300400000), (1115062, 1001447, 'Davidson', NULL, 'davidson', 'US', 1, 35.5023300000, -80.8391200000), (1115063, 1001447, 'Davidson County', NULL, 'davidson-county', 'US', 1, 35.7932800000, -80.2126900000), (1115064, 1001454, 'Davidson County', NULL, 'davidson-county', 'US', 1, 36.1706900000, -86.7775300000), (1115065, 1001401, 'Davidsonville', NULL, 'davidsonville', 'US', 1, 38.9228900000, -76.6283000000), (1115066, 1001422, 'Davidsville', NULL, 'davidsville', 'US', 1, 40.2270200000, -78.9364100000), (1115067, 1001436, 'Davie', NULL, 'davie', 'US', 1, 26.0628700000, -80.2331000000), (1115068, 1001447, 'Davie County', NULL, 'davie-county', 'US', 1, 35.9291600000, -80.5444700000), (1115069, 1001440, 'Daviess County', NULL, 'daviess-county', 'US', 1, 38.7024100000, -87.0720700000), (1115070, 1001419, 'Daviess County', NULL, 'daviess-county', 'US', 1, 37.7317700000, -87.0872300000), (1115071, 1001451, 'Daviess County', NULL, 'daviess-county', 'US', 1, 39.9607500000, -93.9854700000), (1115072, 1001421, 'Davis', NULL, 'davis', 'US', 1, 34.5045300000, -97.1194600000), (1115073, 1001416, 'Davis', NULL, 'davis', 'US', 1, 38.5449100000, -121.7405200000), (1115074, 1001459, 'Davis County', NULL, 'davis-county', 'US', 1, 40.7476900000, -92.4097200000), (1115075, 1001414, 'Davis County', NULL, 'davis-county', 'US', 1, 40.9906100000, -112.1112400000), (1115076, 1001425, 'Davis Junction', NULL, 'davis-junction', 'US', 1, 42.1016900000, -89.0931600000), (1115077, 1001455, 'Davisboro', NULL, 'davisboro', 'US', 1, 32.9790400000, -82.6079100000), (1115078, 1001426, 'Davison', NULL, 'davison', 'US', 1, 43.0347500000, -83.5180100000), (1115079, 1001445, 'Davison County', NULL, 'davison-county', 'US', 1, 43.6747400000, -98.1460000000), (1115080, 1001408, 'Dawes County', NULL, 'dawes-county', 'US', 1, 42.7197200000, -103.1354400000), (1115081, 1001455, 'Dawson', NULL, 'dawson', 'US', 1, 31.7738200000, -84.4480000000), (1115082, 1001420, 'Dawson', NULL, 'dawson', 'US', 1, 44.9327400000, -96.0544800000), (1115083, 1001455, 'Dawson County', NULL, 'dawson-county', 'US', 1, 34.4443000000, -84.1706400000), (1115084, 1001408, 'Dawson County', NULL, 'dawson-county', 'US', 1, 40.8699400000, -99.8195700000), (1115085, 1001407, 'Dawson County', NULL, 'dawson-county', 'US', 1, 32.7425300000, -101.9476800000), (1115086, 1001446, 'Dawson County', NULL, 'dawson-county', 'US', 1, 47.2663800000, -104.8994600000), (1115087, 1001419, 'Dawson Springs', NULL, 'dawson-springs', 'US', 1, 37.1672700000, -87.6925100000), (1115088, 1001455, 'Dawsonville', NULL, 'dawsonville', 'US', 1, 34.4212100000, -84.1190800000), (1115089, 1001445, 'Day County', NULL, 'day-county', 'US', 1, 45.3671500000, -97.6074100000), (1115090, 1001416, 'Day Valley', NULL, 'day-valley', 'US', 1, 37.0357800000, -121.8624600000), (1115091, 1001419, 'Dayton', NULL, 'dayton', 'US', 1, 39.1128400000, -84.4727200000), (1115092, 1001454, 'Dayton', NULL, 'dayton', 'US', 1, 35.4939600000, -85.0124500000), (1115093, 1001407, 'Dayton', NULL, 'dayton', 'US', 1, 30.0466100000, -94.8852000000), (1115094, 1001427, 'Dayton', NULL, 'dayton', 'US', 1, 38.4148500000, -78.9386400000), (1115095, 1001440, 'Dayton', NULL, 'dayton', 'US', 1, 40.3742000000, -86.7689000000), (1115096, 1001420, 'Dayton', NULL, 'dayton', 'US', 1, 45.2438500000, -93.5149600000), (1115097, 1001417, 'Dayton', NULL, 'dayton', 'US', 1, 40.3726100000, -74.5101500000), (1115098, 1001458, 'Dayton', NULL, 'dayton', 'US', 1, 39.2371400000, -119.5929500000), (1115099, 1001415, 'Dayton', NULL, 'dayton', 'US', 1, 45.2206700000, -123.0762100000), (1115100, 1001453, 'Dayton', NULL, 'dayton', 'US', 1, 43.5497200000, -70.5755500000), (1115101, 1001462, 'Dayton', NULL, 'dayton', 'US', 1, 46.3237500000, -117.9724400000), (1115102, 1001436, 'Daytona Beach', NULL, 'daytona-beach', 'US', 1, 29.2108100000, -81.0228300000), (1115103, 1001436, 'Daytona Beach Shores', NULL, 'daytona-beach-shores', 'US', 1, 29.1760900000, -80.9828300000), (1115104, 1001423, 'De Baca County', NULL, 'de-baca-county', 'US', 1, 34.3423900000, -104.4120000000), (1115105, 1001441, 'De Forest', NULL, 'de-forest', 'US', 1, 43.2477700000, -89.3437300000), (1115106, 1001430, 'De Kalb', NULL, 'de-kalb', 'US', 1, 32.7676300000, -88.6508800000), (1115107, 1001407, 'De Kalb', NULL, 'de-kalb', 'US', 1, 33.5087300000, -94.6163200000), (1115108, 1001436, 'De Land Southwest', NULL, 'de-land-southwest', 'US', 1, 29.0077000000, -81.3112900000), (1115109, 1001407, 'De Leon', NULL, 'de-leon', 'US', 1, 32.1109700000, -98.5358800000), (1115110, 1001436, 'De Leon Springs', NULL, 'de-leon-springs', 'US', 1, 29.1198900000, -81.3528600000), (1115111, 1001430, 'De Lisle', NULL, 'de-lisle', 'US', 1, 30.3793600000, -89.2644900000), (1115112, 1001441, 'De Pere', NULL, 'de-pere', 'US', 1, 44.4488800000, -88.0603800000), (1115113, 1001444, 'De Queen', NULL, 'de-queen', 'US', 1, 34.0378900000, -94.3413200000), (1115114, 1001445, 'De Smet', NULL, 'de-smet', 'US', 1, 44.3874700000, -97.5503500000), (1115115, 1001406, 'De Soto', NULL, 'de-soto', 'US', 1, 38.9791700000, -94.9685800000), (1115116, 1001425, 'De Soto', NULL, 'de-soto', 'US', 1, 37.8175500000, -89.2278600000), (1115117, 1001451, 'De Soto', NULL, 'de-soto', 'US', 1, 38.1395000000, -90.5551300000), (1115118, 1001459, 'De Soto', NULL, 'de-soto', 'US', 1, 41.5316600000, -94.0096700000), (1115119, 1001430, 'De Soto County', NULL, 'de-soto-county', 'US', 1, 34.8754000000, -89.9917800000), (1115120, 1001457, 'De Soto Parish', NULL, 'de-soto-parish', 'US', 1, 32.0554500000, -93.7372800000), (1115121, 1001444, 'De Witt', NULL, 'de-witt', 'US', 1, 34.2928800000, -91.3379000000), (1115122, 1001459, 'De Witt', NULL, 'de-witt', 'US', 1, 41.8233600000, -90.5381900000), (1115123, 1001425, 'De Witt County', NULL, 'de-witt-county', 'US', 1, 40.1746300000, -88.9040900000), (1115124, 1001436, 'DeBary', NULL, 'debary', 'US', 1, 28.8830500000, -81.3086800000), (1115125, 1001407, 'DeCordova', NULL, 'decordova', 'US', 1, 32.4298600000, -97.6950300000), (1115126, 1001436, 'DeFuniak Springs', NULL, 'defuniak-springs', 'US', 1, 30.7210200000, -86.1152200000), (1115127, 1001425, 'DeKalb', NULL, 'dekalb', 'US', 1, 41.9294700000, -88.7503600000), (1115128, 1001456, 'DeKalb County', NULL, 'dekalb-county', 'US', 1, 34.4597700000, -85.8041400000), (1115129, 1001455, 'DeKalb County', NULL, 'dekalb-county', 'US', 1, 33.7715300000, -84.2264100000), (1115130, 1001451, 'DeKalb County', NULL, 'dekalb-county', 'US', 1, 39.8931800000, -94.4047100000), (1115131, 1001454, 'DeKalb County', NULL, 'dekalb-county', 'US', 1, 35.9798600000, -85.8327500000), (1115132, 1001425, 'DeKalb County', NULL, 'dekalb-county', 'US', 1, 41.8935300000, -88.7703100000), (1115133, 1001440, 'DeKalb County', NULL, 'dekalb-county', 'US', 1, 41.3975800000, -84.9990900000), (1115134, 1001436, 'DeLand', NULL, 'deland', 'US', 1, 29.0283200000, -81.3031200000), (1115135, 1001440, 'DeMotte', NULL, 'demotte', 'US', 1, 41.1950400000, -87.1986400000), (1115136, 1001457, 'DeQuincy', NULL, 'dequincy', 'US', 1, 30.4504800000, -93.4332200000), (1115137, 1001457, 'DeRidder', NULL, 'deridder', 'US', 1, 30.8463100000, -93.2890500000), (1115138, 1001407, 'DeSoto', NULL, 'desoto', 'US', 1, 32.5898600000, -96.8569500000), (1115139, 1001436, 'DeSoto County', NULL, 'desoto-county', 'US', 1, 27.1863200000, -81.8093000000), (1115140, 1001426, 'DeWitt', NULL, 'dewitt', 'US', 1, 42.8422600000, -84.5691500000), (1115141, 1001407, 'DeWitt County', NULL, 'dewitt-county', 'US', 1, 29.0820800000, -97.3567800000), (1115142, 1001445, 'Deadwood', NULL, 'deadwood', 'US', 1, 44.3766500000, -103.7296400000), (1115143, 1001407, 'Deaf Smith County', NULL, 'deaf-smith-county', 'US', 1, 34.9660200000, -102.6049400000), (1115144, 1001401, 'Deale', NULL, 'deale', 'US', 1, 38.7765100000, -76.5552400000), (1115145, 1001426, 'Dearborn', NULL, 'dearborn', 'US', 1, 42.3222600000, -83.1763100000), (1115146, 1001440, 'Dearborn County', NULL, 'dearborn-county', 'US', 1, 39.1451900000, -84.9732600000), (1115147, 1001426, 'Dearborn Heights', NULL, 'dearborn-heights', 'US', 1, 42.3369800000, -83.2732600000), (1115148, 1001456, 'Deatsville', NULL, 'deatsville', 'US', 1, 32.6081900000, -86.3958100000), (1115149, 1001456, 'Decatur', NULL, 'decatur', 'US', 1, 34.6059300000, -86.9833400000), (1115150, 1001444, 'Decatur', NULL, 'decatur', 'US', 1, 36.3359100000, -94.4607700000), (1115151, 1001425, 'Decatur', NULL, 'decatur', 'US', 1, 39.8403100000, -88.9548000000), (1115152, 1001455, 'Decatur', NULL, 'decatur', 'US', 1, 33.7748300000, -84.2963100000), (1115153, 1001430, 'Decatur', NULL, 'decatur', 'US', 1, 32.4390300000, -89.1083900000), (1115154, 1001454, 'Decatur', NULL, 'decatur', 'US', 1, 35.5147900000, -84.7902200000), (1115155, 1001407, 'Decatur', NULL, 'decatur', 'US', 1, 33.2342800000, -97.5861400000), (1115156, 1001440, 'Decatur', NULL, 'decatur', 'US', 1, 40.8306000000, -84.9291300000), (1115157, 1001426, 'Decatur', NULL, 'decatur', 'US', 1, 42.1081000000, -85.9744600000), (1115158, 1001441, 'Decatur', NULL, 'decatur', 'US', 1, 42.6343300000, -89.4115500000), (1115159, 1001455, 'Decatur County', NULL, 'decatur-county', 'US', 1, 30.8783400000, -84.5790700000), (1115160, 1001440, 'Decatur County', NULL, 'decatur-county', 'US', 1, 39.3070000000, -85.5011400000), (1115161, 1001454, 'Decatur County', NULL, 'decatur-county', 'US', 1, 35.6030200000, -88.1087700000), (1115162, 1001459, 'Decatur County', NULL, 'decatur-county', 'US', 1, 40.7376800000, -93.7862800000), (1115163, 1001406, 'Decatur County', NULL, 'decatur-county', 'US', 1, 39.7847600000, -100.4599000000), (1115164, 1001454, 'Decaturville', NULL, 'decaturville', 'US', 1, 35.5842400000, -88.1194800000), (1115165, 1001454, 'Decherd', NULL, 'decherd', 'US', 1, 35.2098000000, -86.0794300000), (1115166, 1001459, 'Decorah', NULL, 'decorah', 'US', 1, 43.3033100000, -91.7857100000), (1115167, 1001433, 'Dedham', NULL, 'dedham', 'US', 1, 42.2417700000, -71.1661600000), (1115168, 1001453, 'Dedham', NULL, 'dedham', 'US', 1, 44.6917400000, -68.6619800000), (1115169, 1001455, 'Deenwood', NULL, 'deenwood', 'US', 1, 31.2220100000, -82.3872500000), (1115170, 1001435, 'Deep River Center', NULL, 'deep-river-center', 'US', 1, 41.3822100000, -72.4386200000), (1115171, 1001420, 'Deephaven', NULL, 'deephaven', 'US', 1, 44.9296900000, -93.5224600000), (1115172, 1001453, 'Deer Isle', NULL, 'deer-isle', 'US', 1, 44.2239700000, -68.6775300000), (1115173, 1001446, 'Deer Lodge', NULL, 'deer-lodge', 'US', 1, 46.3957600000, -112.7300400000), (1115174, 1001446, 'Deer Lodge County', NULL, 'deer-lodge-county', 'US', 1, 46.0607900000, -113.0677500000), (1115175, 1001407, 'Deer Park', NULL, 'deer-park', 'US', 1, 29.7052300000, -95.1238200000), (1115176, 1001425, 'Deer Park', NULL, 'deer-park', 'US', 1, 42.1608600000, -88.0814700000), (1115177, 1001452, 'Deer Park', NULL, 'deer-park', 'US', 1, 40.7617700000, -73.3292900000), (1115178, 1001416, 'Deer Park', NULL, 'deer-park', 'US', 1, 38.6818500000, -120.8232700000), (1115179, 1001462, 'Deer Park', NULL, 'deer-park', 'US', 1, 47.9543400000, -117.4768900000), (1115180, 1001434, 'Deer Valley', NULL, 'deer-valley', 'US', 1, 33.6839300000, -112.1348800000), (1115181, 1001425, 'Deerfield', NULL, 'deerfield', 'US', 1, 42.1711400000, -87.8445100000), (1115182, 1001404, 'Deerfield', NULL, 'deerfield', 'US', 1, 44.2306200000, -71.6170300000), (1115183, 1001441, 'Deerfield', NULL, 'deerfield', 'US', 1, 43.0519400000, -89.0756700000), (1115184, 1001436, 'Deerfield Beach', NULL, 'deerfield-beach', 'US', 1, 26.3184100000, -80.0997700000), (1115185, 1001404, 'Deering', NULL, 'deering', 'US', 1, 43.0731400000, -71.8445200000), (1115186, 1001416, 'Del Aire', NULL, 'del-aire', 'US', 1, 33.9161300000, -118.3695200000), (1115187, 1001421, 'Del City', NULL, 'del-city', 'US', 1, 35.4420100000, -97.4408700000), (1115188, 1001416, 'Del Mar', NULL, 'del-mar', 'US', 1, 32.9594900000, -117.2653100000), (1115189, 1001416, 'Del Monte Forest', NULL, 'del-monte-forest', 'US', 1, 36.5863500000, -121.9474600000), (1115190, 1001450, 'Del Norte', NULL, 'del-norte', 'US', 1, 37.6788900000, -106.3533700000), (1115191, 1001416, 'Del Norte County', NULL, 'del-norte-county', 'US', 1, 41.7449600000, -123.9578100000), (1115192, 1001416, 'Del Rey', NULL, 'del-rey', 'US', 1, 36.6591200000, -119.5937400000), (1115193, 1001416, 'Del Rey Oaks', NULL, 'del-rey-oaks', 'US', 1, 36.5932900000, -121.8349500000), (1115194, 1001416, 'Del Rio', NULL, 'del-rio', 'US', 1, 37.7435400000, -121.0118800000), (1115195, 1001407, 'Del Rio', NULL, 'del-rio', 'US', 1, 29.3627300000, -100.8967600000), (1115196, 1001441, 'Delafield', NULL, 'delafield', 'US', 1, 43.0608400000, -88.4037100000), (1115197, 1001417, 'Delanco', NULL, 'delanco', 'US', 1, 40.0506700000, -74.9535000000), (1115198, 1001420, 'Delano', NULL, 'delano', 'US', 1, 45.0419100000, -93.7891300000), (1115199, 1001416, 'Delano', NULL, 'delano', 'US', 1, 35.7688400000, -119.2470500000), (1115200, 1001425, 'Delavan', NULL, 'delavan', 'US', 1, 40.3725400000, -89.5473200000), (1115201, 1001441, 'Delavan', NULL, 'delavan', 'US', 1, 42.6330700000, -88.6437100000), (1115202, 1001441, 'Delavan Lake', NULL, 'delavan-lake', 'US', 1, 42.5841800000, -88.6326000000), (1115203, 1001399, 'Delaware City', NULL, 'delaware-city', 'US', 1, 39.5778900000, -75.5888100000), (1115204, 1001421, 'Delaware County', NULL, 'delaware-county', 'US', 1, 36.4082000000, -94.8026500000), (1115205, 1001459, 'Delaware County', NULL, 'delaware-county', 'US', 1, 42.4712100000, -91.3673500000), (1115206, 1001440, 'Delaware County', NULL, 'delaware-county', 'US', 1, 40.2275300000, -85.3969000000), (1115207, 1001452, 'Delaware County', NULL, 'delaware-county', 'US', 1, 42.1980900000, -74.9664700000), (1115208, 1001422, 'Delaware County', NULL, 'delaware-county', 'US', 1, 39.9168100000, -75.3989000000), (1115209, 1001457, 'Delcambre', NULL, 'delcambre', 'US', 1, 29.9482600000, -91.9887300000), (1115210, 1001452, 'Delevan', NULL, 'delevan', 'US', 1, 42.4892300000, -78.4808500000), (1115211, 1001457, 'Delhi', NULL, 'delhi', 'US', 1, 32.4576400000, -91.4931700000), (1115212, 1001452, 'Delhi', NULL, 'delhi', 'US', 1, 42.2781400000, -74.9159900000), (1115213, 1001416, 'Delhi', NULL, 'delhi', 'US', 1, 37.4321600000, -120.7785400000), (1115214, 1001445, 'Dell Rapids', NULL, 'dell-rapids', 'US', 1, 43.8260800000, -96.7061600000), (1115215, 1001451, 'Dellwood', NULL, 'dellwood', 'US', 1, 38.7495000000, -90.2856700000), (1115216, 1001420, 'Dellwood', NULL, 'dellwood', 'US', 1, 45.0899700000, -92.9724400000), (1115217, 1001399, 'Delmar', NULL, 'delmar', 'US', 1, 38.4565100000, -75.5771500000), (1115218, 1001452, 'Delmar', NULL, 'delmar', 'US', 1, 42.6220200000, -73.8326200000), (1115219, 1001422, 'Delmont', NULL, 'delmont', 'US', 1, 40.4131200000, -79.5703200000), (1115220, 1001440, 'Delphi', NULL, 'delphi', 'US', 1, 40.5875400000, -86.6750100000), (1115221, 1001436, 'Delray Beach', NULL, 'delray-beach', 'US', 1, 26.4614600000, -80.0728200000), (1115222, 1001450, 'Delta', NULL, 'delta', 'US', 1, 38.7422100000, -108.0689600000), (1115223, 1001414, 'Delta', NULL, 'delta', 'US', 1, 39.3521800000, -112.5771700000), (1115224, 1001407, 'Delta County', NULL, 'delta-county', 'US', 1, 33.3862900000, -95.6722700000), (1115225, 1001426, 'Delta County', NULL, 'delta-county', 'US', 1, 45.7916200000, -86.8706000000), (1115226, 1001450, 'Delta County', NULL, 'delta-county', 'US', 1, 38.8613700000, -107.8628800000), (1115227, 1001400, 'Deltana', NULL, 'deltana', 'US', 1, 63.8721700000, -145.2177300000), (1115228, 1001427, 'Deltaville', NULL, 'deltaville', 'US', 1, 37.5548600000, -76.3368900000), (1115229, 1001436, 'Deltona', NULL, 'deltona', 'US', 1, 28.9005400000, -81.2636700000), (1115230, 1001417, 'Demarest', NULL, 'demarest', 'US', 1, 40.9573200000, -73.9634700000), (1115231, 1001423, 'Deming', NULL, 'deming', 'US', 1, 32.2687000000, -107.7586400000), (1115232, 1001456, 'Demopolis', NULL, 'demopolis', 'US', 1, 32.5176400000, -87.8364000000), (1115233, 1001455, 'Demorest', NULL, 'demorest', 'US', 1, 34.5651000000, -83.5451700000), (1115234, 1001416, 'Denair', NULL, 'denair', 'US', 1, 37.5263200000, -120.7968700000), (1115235, 1001400, 'Denali Borough', NULL, 'denali-borough', 'US', 1, 63.7888900000, -150.1916700000), (1115236, 1001457, 'Denham Springs', NULL, 'denham-springs', 'US', 1, 30.4874000000, -90.9575300000), (1115237, 1001407, 'Denison', NULL, 'denison', 'US', 1, 33.7556600000, -96.5366600000), (1115238, 1001459, 'Denison', NULL, 'denison', 'US', 1, 42.0177700000, -95.3552800000), (1115239, 1001443, 'Denmark', NULL, 'denmark', 'US', 1, 33.3226500000, -81.1423200000), (1115240, 1001453, 'Denmark', NULL, 'denmark', 'US', 1, 43.9703500000, -70.8034000000), (1115241, 1001441, 'Denmark', NULL, 'denmark', 'US', 1, 44.3477700000, -87.8273200000), (1115242, 1001433, 'Dennis', NULL, 'dennis', 'US', 1, 41.7353900000, -70.1939100000), (1115243, 1001433, 'Dennis Port', NULL, 'dennis-port', 'US', 1, 41.6584500000, -70.1286300000), (1115244, 1001451, 'Dent County', NULL, 'dent-county', 'US', 1, 37.6066300000, -91.5078800000), (1115245, 1001401, 'Denton', NULL, 'denton', 'US', 1, 38.8845600000, -75.8271600000), (1115246, 1001447, 'Denton', NULL, 'denton', 'US', 1, 35.6334700000, -80.1158800000), (1115247, 1001407, 'Denton', NULL, 'denton', 'US', 1, 33.2148400000, -97.1330700000), (1115248, 1001407, 'Denton County', NULL, 'denton-county', 'US', 1, 33.2052600000, -97.1169700000), (1115249, 1001443, 'Dentsville', NULL, 'dentsville', 'US', 1, 34.0640400000, -80.9581500000), (1115250, 1001447, 'Denver', NULL, 'denver', 'US', 1, 35.5312500000, -81.0298000000), (1115251, 1001459, 'Denver', NULL, 'denver', 'US', 1, 42.6713700000, -92.3374000000), (1115252, 1001422, 'Denver', NULL, 'denver', 'US', 1, 40.2331500000, -76.1371700000), (1115253, 1001450, 'Denver', NULL, 'denver', 'US', 1, 39.7391500000, -104.9847000000), (1115254, 1001407, 'Denver City', NULL, 'denver-city', 'US', 1, 32.9645500000, -102.8291000000), (1115255, 1001450, 'Denver County', NULL, 'denver-county', 'US', 1, 39.7620400000, -104.8763500000), (1115256, 1001452, 'Depew', NULL, 'depew', 'US', 1, 42.9039500000, -78.6922500000), (1115257, 1001415, 'Depoe Bay', NULL, 'depoe-bay', 'US', 1, 44.8084500000, -124.0631700000), (1115258, 1001452, 'Deposit', NULL, 'deposit', 'US', 1, 42.0600800000, -75.4276800000), (1115259, 1001425, 'Depue', NULL, 'depue', 'US', 1, 41.3242000000, -89.3067500000), (1115260, 1001406, 'Derby', NULL, 'derby', 'US', 1, 37.5455700000, -97.2689300000), (1115261, 1001435, 'Derby', NULL, 'derby', 'US', 1, 41.3206500000, -73.0890000000), (1115262, 1001450, 'Derby', NULL, 'derby', 'US', 1, 39.8394300000, -104.9185900000), (1115263, 1001430, 'Derma', NULL, 'derma', 'US', 1, 33.8556700000, -89.2845200000), (1115264, 1001444, 'Dermott', NULL, 'dermott', 'US', 1, 33.5253900000, -91.4359500000), (1115265, 1001404, 'Derry', NULL, 'derry', 'US', 1, 42.8806400000, -71.3272900000), (1115266, 1001422, 'Derry', NULL, 'derry', 'US', 1, 40.3339600000, -79.2997600000), (1115267, 1001404, 'Derry Village', NULL, 'derry-village', 'US', 1, 42.8917500000, -71.3120100000), (1115268, 1001401, 'Derwood', NULL, 'derwood', 'US', 1, 39.1173300000, -77.1610900000), (1115269, 1001457, 'Des Allemands', NULL, 'des-allemands', 'US', 1, 29.8238200000, -90.4750800000), (1115270, 1001444, 'Des Arc', NULL, 'des-arc', 'US', 1, 34.9770400000, -91.4951300000), (1115271, 1001459, 'Des Moines', NULL, 'des-moines', 'US', 1, 41.6005400000, -93.6091100000), (1115272, 1001462, 'Des Moines', NULL, 'des-moines', 'US', 1, 47.4017700000, -122.3242900000), (1115273, 1001459, 'Des Moines County', NULL, 'des-moines-county', 'US', 1, 40.9231800000, -91.1814700000), (1115274, 1001451, 'Des Peres', NULL, 'des-peres', 'US', 1, 38.6008900000, -90.4329000000), (1115275, 1001425, 'Des Plaines', NULL, 'des-plaines', 'US', 1, 42.0333600000, -87.8834000000), (1115276, 1001416, 'Descanso', NULL, 'descanso', 'US', 1, 32.8528300000, -116.6158500000), (1115277, 1001415, 'Deschutes County', NULL, 'deschutes-county', 'US', 1, 43.9148800000, -121.2278900000), (1115278, 1001415, 'Deschutes River Woods', NULL, 'deschutes-river-woods', 'US', 1, 43.9915100000, -121.3583600000), (1115279, 1001462, 'Desert Aire', NULL, 'desert-aire', 'US', 1, 46.6793000000, -119.9172700000), (1115280, 1001416, 'Desert Edge', NULL, 'desert-edge', 'US', 1, 33.9241700000, -116.4413900000), (1115281, 1001434, 'Desert Hills', NULL, 'desert-hills', 'US', 1, 34.5539000000, -114.3724600000), (1115282, 1001416, 'Desert Hot Springs', NULL, 'desert-hot-springs', 'US', 1, 33.9617300000, -116.5035300000), (1115283, 1001416, 'Desert Shores', NULL, 'desert-shores', 'US', 1, 33.4042000000, -116.0397200000), (1115284, 1001416, 'Desert View Highlands', NULL, 'desert-view-highlands', 'US', 1, 34.5908200000, -118.1525700000), (1115285, 1001444, 'Desha County', NULL, 'desha-county', 'US', 1, 33.8333300000, -91.2539500000), (1115286, 1001451, 'Desloge', NULL, 'desloge', 'US', 1, 37.8708800000, -90.5273500000), (1115287, 1001436, 'Desoto Lakes', NULL, 'desoto-lakes', 'US', 1, 27.3714300000, -82.4898200000), (1115288, 1001429, 'Despard', NULL, 'despard', 'US', 1, 39.2887000000, -80.3059200000), (1115289, 1001436, 'Destin', NULL, 'destin', 'US', 1, 30.3935300000, -86.4957800000), (1115290, 1001457, 'Destrehan', NULL, 'destrehan', 'US', 1, 29.9432200000, -90.3534500000), (1115291, 1001426, 'Detroit', NULL, 'detroit', 'US', 1, 42.3314300000, -83.0457500000), (1115292, 1001426, 'Detroit Beach', NULL, 'detroit-beach', 'US', 1, 41.9311600000, -83.3268800000), (1115293, 1001420, 'Detroit Lakes', NULL, 'detroit-lakes', 'US', 1, 46.8171800000, -95.8453300000), (1115294, 1001445, 'Deuel County', NULL, 'deuel-county', 'US', 1, 44.7600600000, -96.6679700000), (1115295, 1001408, 'Deuel County', NULL, 'deuel-county', 'US', 1, 41.1116000000, -102.3339500000), (1115296, 1001433, 'Devens', NULL, 'devens', 'US', 1, 42.5447000000, -71.6131800000); INSERT INTO `[[dbprefix]]t_city` VALUES (1115297, 1001457, 'Deville', NULL, 'deville', 'US', 1, 31.3574000000, -92.1654100000), (1115298, 1001418, 'Devils Lake', NULL, 'devils-lake', 'US', 1, 48.1127800000, -98.8651200000), (1115299, 1001407, 'Devine', NULL, 'devine', 'US', 1, 29.1399600000, -98.9053100000), (1115300, 1001422, 'Devon', NULL, 'devon', 'US', 1, 40.0492800000, -75.4290800000), (1115301, 1001422, 'Dewart', NULL, 'dewart', 'US', 1, 41.1092500000, -76.8766300000), (1115302, 1001421, 'Dewey', NULL, 'dewey', 'US', 1, 36.7959200000, -95.9355400000), (1115303, 1001421, 'Dewey County', NULL, 'dewey-county', 'US', 1, 35.9876600000, -99.0078900000), (1115304, 1001445, 'Dewey County', NULL, 'dewey-county', 'US', 1, 45.1566200000, -100.8718600000), (1115305, 1001434, 'Dewey-Humboldt', NULL, 'dewey-humboldt', 'US', 1, 34.5300000000, -112.2422200000), (1115306, 1001407, 'Deweyville', NULL, 'deweyville', 'US', 1, 30.2977100000, -93.7435000000), (1115307, 1001451, 'Dexter', NULL, 'dexter', 'US', 1, 36.7958900000, -89.9578700000), (1115308, 1001453, 'Dexter', NULL, 'dexter', 'US', 1, 45.0239500000, -69.2897700000), (1115309, 1001426, 'Dexter', NULL, 'dexter', 'US', 1, 42.3383400000, -83.8895400000), (1115310, 1001452, 'Dexter', NULL, 'dexter', 'US', 1, 44.0078400000, -76.0443700000), (1115311, 1001423, 'Dexter', NULL, 'dexter', 'US', 1, 33.1973300000, -104.3730200000), (1115312, 1001416, 'Diablo', NULL, 'diablo', 'US', 1, 37.8349300000, -121.9580100000), (1115313, 1001425, 'Diamond', NULL, 'diamond', 'US', 1, 41.2886400000, -88.2517300000), (1115314, 1001416, 'Diamond Bar', NULL, 'diamond-bar', 'US', 1, 34.0286200000, -117.8103400000), (1115315, 1001400, 'Diamond Ridge', NULL, 'diamond-ridge', 'US', 1, 59.6761100000, -151.5575000000), (1115316, 1001416, 'Diamond Springs', NULL, 'diamond-springs', 'US', 1, 38.6946300000, -120.8149400000), (1115317, 1001430, 'Diamondhead', NULL, 'diamondhead', 'US', 1, 30.3946400000, -89.3639400000), (1115318, 1001444, 'Diaz', NULL, 'diaz', 'US', 1, 35.6384100000, -91.2651300000), (1115319, 1001407, 'Diboll', NULL, 'diboll', 'US', 1, 31.1871300000, -94.7810400000), (1115320, 1001407, 'Dickens', NULL, 'dickens', 'US', 1, 33.6217500000, -100.8365200000), (1115321, 1001407, 'Dickens County', NULL, 'dickens-county', 'US', 1, 33.6166100000, -100.7788600000), (1115322, 1001427, 'Dickenson County', NULL, 'dickenson-county', 'US', 1, 37.1257400000, -82.3503500000), (1115323, 1001418, 'Dickey County', NULL, 'dickey-county', 'US', 1, 46.1101200000, -98.5046700000), (1115324, 1001441, 'Dickeyville', NULL, 'dickeyville', 'US', 1, 42.6272200000, -90.5920700000), (1115325, 1001407, 'Dickinson', NULL, 'dickinson', 'US', 1, 29.4607900000, -95.0513200000), (1115326, 1001418, 'Dickinson', NULL, 'dickinson', 'US', 1, 46.8791800000, -102.7896200000), (1115327, 1001406, 'Dickinson County', NULL, 'dickinson-county', 'US', 1, 38.8665000000, -97.1527000000), (1115328, 1001459, 'Dickinson County', NULL, 'dickinson-county', 'US', 1, 43.3779800000, -95.1508300000), (1115329, 1001426, 'Dickinson County', NULL, 'dickinson-county', 'US', 1, 46.0093500000, -87.8702100000), (1115330, 1001421, 'Dickson', NULL, 'dickson', 'US', 1, 34.1873200000, -96.9844600000), (1115331, 1001454, 'Dickson', NULL, 'dickson', 'US', 1, 36.0770000000, -87.3877900000), (1115332, 1001422, 'Dickson City', NULL, 'dickson-city', 'US', 1, 41.4714700000, -75.6076900000), (1115333, 1001454, 'Dickson County', NULL, 'dickson-county', 'US', 1, 36.1490500000, -87.3566600000), (1115334, 1001444, 'Dierks', NULL, 'dierks', 'US', 1, 34.1192800000, -94.0165800000), (1115335, 1001433, 'Dighton', NULL, 'dighton', 'US', 1, 41.8139900000, -71.1203200000), (1115336, 1001406, 'Dighton', NULL, 'dighton', 'US', 1, 38.4819600000, -100.4670800000), (1115337, 1001459, 'Dike', NULL, 'dike', 'US', 1, 42.4641500000, -92.6282500000), (1115338, 1001434, 'Dilkon', NULL, 'dilkon', 'US', 1, 35.3852900000, -110.3206800000), (1115339, 1001407, 'Dilley', NULL, 'dilley', 'US', 1, 28.6674800000, -99.1705900000), (1115340, 1001400, 'Dillingham', NULL, 'dillingham', 'US', 1, 59.0397200000, -158.4575000000), (1115341, 1001400, 'Dillingham Census Area', NULL, 'dillingham-census-area', 'US', 1, 59.7619300000, -158.3184800000), (1115342, 1001443, 'Dillon', NULL, 'dillon', 'US', 1, 34.4165500000, -79.3711600000), (1115343, 1001446, 'Dillon', NULL, 'dillon', 'US', 1, 45.2163100000, -112.6375200000), (1115344, 1001443, 'Dillon County', NULL, 'dillon-county', 'US', 1, 34.3915200000, -79.3789300000), (1115345, 1001440, 'Dillsboro', NULL, 'dillsboro', 'US', 1, 39.0178300000, -85.0588400000), (1115346, 1001422, 'Dillsburg', NULL, 'dillsburg', 'US', 1, 40.1109300000, -77.0349800000), (1115347, 1001420, 'Dilworth', NULL, 'dilworth', 'US', 1, 46.8766300000, -96.7034100000), (1115348, 1001407, 'Dimmit County', NULL, 'dimmit-county', 'US', 1, 28.4225400000, -99.7567300000), (1115349, 1001407, 'Dimmitt', NULL, 'dimmitt', 'US', 1, 34.5509000000, -102.3118600000), (1115350, 1001426, 'Dimondale', NULL, 'dimondale', 'US', 1, 42.6455900000, -84.6488700000), (1115351, 1001416, 'Dinuba', NULL, 'dinuba', 'US', 1, 36.5432800000, -119.3870700000), (1115352, 1001427, 'Dinwiddie County', NULL, 'dinwiddie-county', 'US', 1, 37.0759000000, -77.6323600000), (1115353, 1001416, 'Discovery Bay', NULL, 'discovery-bay', 'US', 1, 37.9085400000, -121.6002300000), (1115354, 1001462, 'Dishman', NULL, 'dishman', 'US', 1, 47.6600700000, -117.2759600000), (1115355, 1001401, 'District Heights', NULL, 'district-heights', 'US', 1, 38.8576100000, -76.8894200000), (1115356, 1001425, 'Divernon', NULL, 'divernon', 'US', 1, 39.5656100000, -89.6573200000), (1115357, 1001418, 'Divide County', NULL, 'divide-county', 'US', 1, 48.8148900000, -103.4873500000), (1115358, 1001452, 'Dix Hills', NULL, 'dix-hills', 'US', 1, 40.8048200000, -73.3362300000), (1115359, 1001453, 'Dixfield', NULL, 'dixfield', 'US', 1, 44.5339500000, -70.4559000000), (1115360, 1001456, 'Dixiana', NULL, 'dixiana', 'US', 1, 33.7402100000, -86.6493800000), (1115361, 1001436, 'Dixie County', NULL, 'dixie-county', 'US', 1, 29.5812400000, -83.1870300000), (1115362, 1001453, 'Dixmont', NULL, 'dixmont', 'US', 1, 44.6803500000, -69.1628200000), (1115363, 1001425, 'Dixmoor', NULL, 'dixmoor', 'US', 1, 41.6317000000, -87.6608800000), (1115364, 1001419, 'Dixon', NULL, 'dixon', 'US', 1, 37.5178200000, -87.6902900000), (1115365, 1001451, 'Dixon', NULL, 'dixon', 'US', 1, 37.9917100000, -92.0937800000), (1115366, 1001425, 'Dixon', NULL, 'dixon', 'US', 1, 41.8389200000, -89.4795500000), (1115367, 1001416, 'Dixon', NULL, 'dixon', 'US', 1, 38.4454600000, -121.8233000000), (1115368, 1001408, 'Dixon County', NULL, 'dixon-county', 'US', 1, 42.4931900000, -96.8677500000), (1115369, 1001416, 'Dixon Lane-Meadow Creek', NULL, 'dixon-lane-meadow-creek', 'US', 1, 37.3863900000, -118.4152700000), (1115370, 1001452, 'Dobbs Ferry', NULL, 'dobbs-ferry', 'US', 1, 41.0145400000, -73.8726400000), (1115371, 1001447, 'Dobson', NULL, 'dobson', 'US', 1, 36.3956900000, -80.7225700000), (1115372, 1001455, 'Dock Junction', NULL, 'dock-junction', 'US', 1, 31.2024500000, -81.5167700000), (1115373, 1001436, 'Doctor Phillips', NULL, 'doctor-phillips', 'US', 1, 28.4494500000, -81.4922900000), (1115374, 1001429, 'Doddridge County', NULL, 'doddridge-county', 'US', 1, 39.2691700000, -80.7069700000), (1115375, 1001420, 'Dodge Center', NULL, 'dodge-center', 'US', 1, 44.0280200000, -92.8546400000), (1115376, 1001406, 'Dodge City', NULL, 'dodge-city', 'US', 1, 37.7528000000, -100.0170800000), (1115377, 1001455, 'Dodge County', NULL, 'dodge-county', 'US', 1, 32.1721800000, -83.1684000000), (1115378, 1001420, 'Dodge County', NULL, 'dodge-county', 'US', 1, 44.0225900000, -92.8620500000), (1115379, 1001408, 'Dodge County', NULL, 'dodge-county', 'US', 1, 41.5778900000, -96.6539800000), (1115380, 1001441, 'Dodge County', NULL, 'dodge-county', 'US', 1, 43.4163000000, -88.7075200000), (1115381, 1001441, 'Dodgeville', NULL, 'dodgeville', 'US', 1, 42.9602700000, -90.1301200000), (1115382, 1001454, 'Dodson Branch', NULL, 'dodson-branch', 'US', 1, 36.3125600000, -85.5322000000), (1115383, 1001419, 'Doe Valley', NULL, 'doe-valley', 'US', 1, 37.9566500000, -86.1165300000), (1115384, 1001407, 'Doffing', NULL, 'doffing', 'US', 1, 26.2745200000, -98.3858500000), (1115385, 1001416, 'Dogtown', NULL, 'dogtown', 'US', 1, 38.2138100000, -121.0885500000), (1115386, 1001434, 'Dolan Springs', NULL, 'dolan-springs', 'US', 1, 35.5919400000, -114.2732900000), (1115387, 1001452, 'Dolgeville', NULL, 'dolgeville', 'US', 1, 43.1009000000, -74.7729300000), (1115388, 1001426, 'Dollar Bay', NULL, 'dollar-bay', 'US', 1, 47.1196500000, -88.5115100000), (1115389, 1001462, 'Dollar Corner', NULL, 'dollar-corner', 'US', 1, 45.7801200000, -122.6001000000), (1115390, 1001416, 'Dollar Point', NULL, 'dollar-point', 'US', 1, 39.1879600000, -120.0999100000), (1115391, 1001450, 'Dolores County', NULL, 'dolores-county', 'US', 1, 37.7516000000, -108.5172200000), (1115392, 1001425, 'Dolton', NULL, 'dolton', 'US', 1, 41.6389200000, -87.6072700000), (1115393, 1001415, 'Donald', NULL, 'donald', 'US', 1, 45.2223400000, -122.8392600000), (1115394, 1001457, 'Donaldsonville', NULL, 'donaldsonville', 'US', 1, 30.1011400000, -90.9941200000), (1115395, 1001455, 'Donalsonville', NULL, 'donalsonville', 'US', 1, 31.0404600000, -84.8790900000), (1115396, 1001452, 'Dongan Hills', NULL, 'dongan-hills', 'US', 1, 40.5884400000, -74.0962500000), (1115397, 1001451, 'Doniphan', NULL, 'doniphan', 'US', 1, 36.6208900000, -90.8234600000), (1115398, 1001406, 'Doniphan County', NULL, 'doniphan-county', 'US', 1, 39.7880800000, -95.1467900000), (1115399, 1001407, 'Donley County', NULL, 'donley-county', 'US', 1, 34.9654200000, -100.8139900000), (1115400, 1001407, 'Donna', NULL, 'donna', 'US', 1, 26.1703500000, -98.0519500000), (1115401, 1001422, 'Donora', NULL, 'donora', 'US', 1, 40.1734000000, -79.8575500000), (1115402, 1001434, 'Donovan Estates', NULL, 'donovan-estates', 'US', 1, 32.7093500000, -114.6782200000), (1115403, 1001407, 'Doolittle', NULL, 'doolittle', 'US', 1, 26.3533700000, -98.1166600000), (1115404, 1001455, 'Dooly County', NULL, 'dooly-county', 'US', 1, 32.1571800000, -83.7987500000), (1115405, 1001427, 'Dooms', NULL, 'dooms', 'US', 1, 38.1090200000, -78.8575200000), (1115406, 1001441, 'Door County', NULL, 'door-county', 'US', 1, 44.8383400000, -87.3577900000), (1115407, 1001456, 'Dora', NULL, 'dora', 'US', 1, 33.7287200000, -87.0902800000), (1115408, 1001436, 'Doral', NULL, 'doral', 'US', 1, 25.8195400000, -80.3553300000), (1115409, 1001455, 'Doraville', NULL, 'doraville', 'US', 1, 33.8981600000, -84.2832600000), (1115410, 1001401, 'Dorchester County', NULL, 'dorchester-county', 'US', 1, 38.4226100000, -76.0833200000), (1115411, 1001443, 'Dorchester County', NULL, 'dorchester-county', 'US', 1, 33.0794900000, -80.4055600000), (1115412, 1001422, 'Dormont', NULL, 'dormont', 'US', 1, 40.3959000000, -80.0331100000), (1115413, 1001422, 'Dorneyville', NULL, 'dorneyville', 'US', 1, 40.5751000000, -75.5196300000), (1115414, 1001416, 'Dos Palos', NULL, 'dos-palos', 'US', 1, 36.9860600000, -120.6265700000), (1115415, 1001456, 'Dothan', NULL, 'dothan', 'US', 1, 31.2232300000, -85.3904900000), (1115416, 1001407, 'Double Oak', NULL, 'double-oak', 'US', 1, 33.0651200000, -97.1105700000), (1115417, 1001456, 'Double Springs', NULL, 'double-springs', 'US', 1, 34.1463700000, -87.4024700000), (1115418, 1001455, 'Dougherty County', NULL, 'dougherty-county', 'US', 1, 31.5333700000, -84.2162500000), (1115419, 1001455, 'Douglas', NULL, 'douglas', 'US', 1, 31.5088100000, -82.8498700000), (1115420, 1001425, 'Douglas', NULL, 'douglas', 'US', 1, 41.8347600000, -87.6181100000), (1115421, 1001433, 'Douglas', NULL, 'douglas', 'US', 1, 42.0542600000, -71.7395100000), (1115422, 1001426, 'Douglas', NULL, 'douglas', 'US', 1, 42.6433600000, -86.2005900000), (1115423, 1001434, 'Douglas', NULL, 'douglas', 'US', 1, 31.3445500000, -109.5453400000), (1115424, 1001442, 'Douglas', NULL, 'douglas', 'US', 1, 42.7596900000, -105.3822100000), (1115425, 1001455, 'Douglas County', NULL, 'douglas-county', 'US', 1, 33.7018200000, -84.7679300000), (1115426, 1001425, 'Douglas County', NULL, 'douglas-county', 'US', 1, 39.7694600000, -88.2173500000), (1115427, 1001406, 'Douglas County', NULL, 'douglas-county', 'US', 1, 38.8846600000, -95.2926100000), (1115428, 1001451, 'Douglas County', NULL, 'douglas-county', 'US', 1, 36.9326000000, -92.4988100000), (1115429, 1001420, 'Douglas County', NULL, 'douglas-county', 'US', 1, 45.9337200000, -95.4535200000), (1115430, 1001408, 'Douglas County', NULL, 'douglas-county', 'US', 1, 41.2953500000, -96.1544800000), (1115431, 1001445, 'Douglas County', NULL, 'douglas-county', 'US', 1, 43.3869200000, -98.3661000000), (1115432, 1001441, 'Douglas County', NULL, 'douglas-county', 'US', 1, 46.4641100000, -91.8994000000), (1115433, 1001450, 'Douglas County', NULL, 'douglas-county', 'US', 1, 39.3297200000, -104.9295600000), (1115434, 1001458, 'Douglas County', NULL, 'douglas-county', 'US', 1, 38.9122400000, -119.6163700000), (1115435, 1001415, 'Douglas County', NULL, 'douglas-county', 'US', 1, 43.2853600000, -123.1794200000), (1115436, 1001462, 'Douglas County', NULL, 'douglas-county', 'US', 1, 47.7360700000, -119.6917200000), (1115437, 1001406, 'Douglass', NULL, 'douglass', 'US', 1, 37.5194600000, -97.0128100000), (1115438, 1001419, 'Douglass Hills', NULL, 'douglass-hills', 'US', 1, 38.2378500000, -85.5527400000), (1115439, 1001452, 'Douglaston', NULL, 'douglaston', 'US', 1, 40.7687100000, -73.7470800000), (1115440, 1001455, 'Douglasville', NULL, 'douglasville', 'US', 1, 33.7515000000, -84.7477100000), (1115441, 1001441, 'Dousman', NULL, 'dousman', 'US', 1, 43.0141800000, -88.4726000000), (1115442, 1001450, 'Dove Creek', NULL, 'dove-creek', 'US', 1, 37.7661000000, -108.9059400000), (1115443, 1001450, 'Dove Valley', NULL, 'dove-valley', 'US', 1, 39.5777100000, -104.8294000000), (1115444, 1001444, 'Dover', NULL, 'dover', 'US', 1, 35.4014700000, -93.1143400000), (1115445, 1001399, 'Dover', NULL, 'dover', 'US', 1, 39.1581700000, -75.5243700000), (1115446, 1001436, 'Dover', NULL, 'dover', 'US', 1, 27.9941900000, -82.2195300000), (1115447, 1001454, 'Dover', NULL, 'dover', 'US', 1, 36.4878300000, -87.8383600000), (1115448, 1001433, 'Dover', NULL, 'dover', 'US', 1, 42.2459300000, -71.2828300000), (1115449, 1001417, 'Dover', NULL, 'dover', 'US', 1, 40.8839900000, -74.5621000000), (1115450, 1001404, 'Dover', NULL, 'dover', 'US', 1, 43.1978600000, -70.8736700000), (1115451, 1001422, 'Dover', NULL, 'dover', 'US', 1, 40.0017600000, -76.8502500000), (1115452, 1001409, 'Dover', NULL, 'dover', 'US', 1, 42.9436900000, -72.8039900000), (1115453, 1001399, 'Dover Base Housing', NULL, 'dover-base-housing', 'US', 1, 39.1176300000, -75.4839300000), (1115454, 1001417, 'Dover Beaches North', NULL, 'dover-beaches-north', 'US', 1, 39.9912300000, -74.0637500000), (1115455, 1001417, 'Dover Beaches South', NULL, 'dover-beaches-south', 'US', 1, 39.9556700000, -74.0743000000), (1115456, 1001452, 'Dover Plains', NULL, 'dover-plains', 'US', 1, 41.7412100000, -73.5765200000), (1115457, 1001453, 'Dover-Foxcroft', NULL, 'dover-foxcroft', 'US', 1, 45.1833900000, -69.2269900000), (1115458, 1001426, 'Dowagiac', NULL, 'dowagiac', 'US', 1, 41.9842100000, -86.1086200000), (1115459, 1001425, 'Downers Grove', NULL, 'downers-grove', 'US', 1, 41.8089200000, -88.0111700000), (1115460, 1001416, 'Downey', NULL, 'downey', 'US', 1, 33.9400100000, -118.1325700000), (1115461, 1001416, 'Downieville', NULL, 'downieville', 'US', 1, 39.5593400000, -120.8268900000), (1115462, 1001422, 'Downingtown', NULL, 'downingtown', 'US', 1, 40.0065000000, -75.7032700000), (1115463, 1001422, 'Doylestown', NULL, 'doylestown', 'US', 1, 40.3101100000, -75.1298900000), (1115464, 1001423, 'Doña Ana', NULL, 'dona-ana', 'US', 1, 32.3895400000, -106.8139000000), (1115465, 1001423, 'Doña Ana County', NULL, 'dona-ana-county', 'US', 1, 32.3526800000, -106.8328000000), (1115466, 1001433, 'Dracut', NULL, 'dracut', 'US', 1, 42.6703700000, -71.3020100000), (1115467, 1001415, 'Drain', NULL, 'drain', 'US', 1, 43.6587300000, -123.3187000000), (1115468, 1001427, 'Dranesville', NULL, 'dranesville', 'US', 1, 39.0006700000, -77.3458200000), (1115469, 1001414, 'Draper', NULL, 'draper', 'US', 1, 40.5246700000, -111.8638200000), (1115470, 1001422, 'Dravosburg', NULL, 'dravosburg', 'US', 1, 40.3506300000, -79.8861600000), (1115471, 1001454, 'Dresden', NULL, 'dresden', 'US', 1, 36.2914500000, -88.7081100000), (1115472, 1001422, 'Dresher', NULL, 'dresher', 'US', 1, 40.1409400000, -75.1668400000), (1115473, 1001430, 'Drew', NULL, 'drew', 'US', 1, 33.8095600000, -90.5264800000), (1115474, 1001444, 'Drew County', NULL, 'drew-county', 'US', 1, 33.5894500000, -91.7200200000), (1115475, 1001447, 'Drexel', NULL, 'drexel', 'US', 1, 35.7579100000, -81.6042600000), (1115476, 1001434, 'Drexel Heights', NULL, 'drexel-heights', 'US', 1, 32.1411900000, -111.0284300000), (1115477, 1001422, 'Drexel Hill', NULL, 'drexel-hill', 'US', 1, 39.9470600000, -75.2921300000), (1115478, 1001460, 'Driggs', NULL, 'driggs', 'US', 1, 43.7232500000, -111.1113300000), (1115479, 1001407, 'Dripping Springs', NULL, 'dripping-springs', 'US', 1, 30.1902100000, -98.0866800000), (1115480, 1001455, 'Druid Hills', NULL, 'druid-hills', 'US', 1, 33.7803800000, -84.3360400000), (1115481, 1001401, 'Drum Point', NULL, 'drum-point', 'US', 1, 38.3267900000, -76.4260600000), (1115482, 1001421, 'Drumright', NULL, 'drumright', 'US', 1, 35.9884000000, -96.6011300000), (1115483, 1001419, 'Dry Ridge', NULL, 'dry-ridge', 'US', 1, 38.6820100000, -84.5899400000), (1115484, 1001427, 'Dryden', NULL, 'dryden', 'US', 1, 36.7775900000, -82.9415500000), (1115485, 1001452, 'Dryden', NULL, 'dryden', 'US', 1, 42.4909100000, -76.2971600000), (1115486, 1001425, 'Du Quoin', NULL, 'du-quoin', 'US', 1, 38.0114400000, -89.2361900000), (1115487, 1001422, 'DuBois', NULL, 'dubois', 'US', 1, 41.1192300000, -78.7600300000), (1115488, 1001425, 'DuPage County', NULL, 'dupage-county', 'US', 1, 41.8519500000, -88.0856700000), (1115489, 1001462, 'DuPont', NULL, 'dupont', 'US', 1, 47.0967600000, -122.6312400000), (1115490, 1001416, 'Duarte', NULL, 'duarte', 'US', 1, 34.1394500000, -117.9772900000), (1115491, 1001455, 'Dublin', NULL, 'dublin', 'US', 1, 32.5404400000, -82.9037500000), (1115492, 1001407, 'Dublin', NULL, 'dublin', 'US', 1, 32.0851400000, -98.3419900000), (1115493, 1001427, 'Dublin', NULL, 'dublin', 'US', 1, 37.1056800000, -80.6853400000), (1115494, 1001404, 'Dublin', NULL, 'dublin', 'US', 1, 42.9075800000, -72.0625800000), (1115495, 1001422, 'Dublin', NULL, 'dublin', 'US', 1, 40.3717700000, -75.2015600000), (1115496, 1001416, 'Dublin', NULL, 'dublin', 'US', 1, 37.7021500000, -121.9357900000), (1115497, 1001460, 'Dubois', NULL, 'dubois', 'US', 1, 44.1763000000, -112.2308200000), (1115498, 1001440, 'Dubois County', NULL, 'dubois-county', 'US', 1, 38.3642800000, -86.8798000000), (1115499, 1001422, 'Duboistown', NULL, 'duboistown', 'US', 1, 41.2225800000, -77.0369100000), (1115500, 1001459, 'Dubuque', NULL, 'dubuque', 'US', 1, 42.5005600000, -90.6645700000), (1115501, 1001459, 'Dubuque County', NULL, 'dubuque-county', 'US', 1, 42.4688300000, -90.8824600000), (1115502, 1001414, 'Duchesne', NULL, 'duchesne', 'US', 1, 40.1632900000, -110.4029300000), (1115503, 1001414, 'Duchesne County', NULL, 'duchesne-county', 'US', 1, 40.2975100000, -110.4247600000), (1115504, 1001430, 'Duck Hill', NULL, 'duck-hill', 'US', 1, 33.6331800000, -89.7111900000), (1115505, 1001433, 'Dudley', NULL, 'dudley', 'US', 1, 42.0451000000, -71.9300700000), (1115506, 1001443, 'Due West', NULL, 'due-west', 'US', 1, 34.3334500000, -82.3879000000), (1115507, 1001451, 'Duenweg', NULL, 'duenweg', 'US', 1, 37.0836700000, -94.4135600000), (1115508, 1001433, 'Dukes County', NULL, 'dukes-county', 'US', 1, 41.3887700000, -70.6987700000), (1115509, 1001457, 'Dulac', NULL, 'dulac', 'US', 1, 29.3888300000, -90.7139800000), (1115510, 1001423, 'Dulce', NULL, 'dulce', 'US', 1, 36.9336200000, -106.9989300000), (1115511, 1001427, 'Dulles Town Center', NULL, 'dulles-town-center', 'US', 1, 39.0376100000, -77.4158200000), (1115512, 1001455, 'Duluth', NULL, 'duluth', 'US', 1, 34.0028800000, -84.1446400000), (1115513, 1001420, 'Duluth', NULL, 'duluth', 'US', 1, 46.7832700000, -92.1065800000), (1115514, 1001444, 'Dumas', NULL, 'dumas', 'US', 1, 33.8870500000, -91.4917900000), (1115515, 1001407, 'Dumas', NULL, 'dumas', 'US', 1, 35.8655900000, -101.9732400000), (1115516, 1001427, 'Dumbarton', NULL, 'dumbarton', 'US', 1, 37.6037600000, -77.4913700000), (1115517, 1001427, 'Dumfries', NULL, 'dumfries', 'US', 1, 38.5676200000, -77.3280400000), (1115518, 1001417, 'Dumont', NULL, 'dumont', 'US', 1, 40.9406500000, -73.9968100000), (1115519, 1001422, 'Dunbar', NULL, 'dunbar', 'US', 1, 39.9778500000, -79.6144800000), (1115520, 1001429, 'Dunbar', NULL, 'dunbar', 'US', 1, 38.3606500000, -81.7373500000), (1115521, 1001421, 'Duncan', NULL, 'duncan', 'US', 1, 34.5023000000, -97.9578100000), (1115522, 1001443, 'Duncan', NULL, 'duncan', 'US', 1, 34.9379000000, -82.1451100000), (1115523, 1001422, 'Duncannon', NULL, 'duncannon', 'US', 1, 40.3981400000, -77.0230300000), (1115524, 1001422, 'Duncansville', NULL, 'duncansville', 'US', 1, 40.4234100000, -78.4339000000), (1115525, 1001407, 'Duncanville', NULL, 'duncanville', 'US', 1, 32.6518000000, -96.9083400000), (1115526, 1001401, 'Dundalk', NULL, 'dundalk', 'US', 1, 39.2506600000, -76.5205200000), (1115527, 1001420, 'Dundas', NULL, 'dundas', 'US', 1, 44.4294100000, -93.2018800000), (1115528, 1001436, 'Dundee', NULL, 'dundee', 'US', 1, 28.0225200000, -81.6192400000), (1115529, 1001426, 'Dundee', NULL, 'dundee', 'US', 1, 41.9572700000, -83.6596600000), (1115530, 1001452, 'Dundee', NULL, 'dundee', 'US', 1, 42.5234000000, -76.9766300000), (1115531, 1001415, 'Dundee', NULL, 'dundee', 'US', 1, 45.2781700000, -123.0109400000), (1115532, 1001408, 'Dundy County', NULL, 'dundy-county', 'US', 1, 40.1762400000, -101.6879600000), (1115533, 1001443, 'Dunean', NULL, 'dunean', 'US', 1, 34.8248400000, -82.4192900000), (1115534, 1001436, 'Dunedin', NULL, 'dunedin', 'US', 1, 28.0199000000, -82.7732300000), (1115535, 1001417, 'Dunellen', NULL, 'dunellen', 'US', 1, 40.5892700000, -74.4718200000), (1115536, 1001415, 'Dunes City', NULL, 'dunes-city', 'US', 1, 43.8831800000, -124.1151200000), (1115537, 1001401, 'Dunkirk', NULL, 'dunkirk', 'US', 1, 38.7217800000, -76.6605200000), (1115538, 1001440, 'Dunkirk', NULL, 'dunkirk', 'US', 1, 40.7564300000, -86.3936100000), (1115539, 1001452, 'Dunkirk', NULL, 'dunkirk', 'US', 1, 42.4795000000, -79.3339300000), (1115540, 1001401, 'Dunkirk Town Center', NULL, 'dunkirk-town-center', 'US', 1, 38.7203900000, -76.6585700000), (1115541, 1001451, 'Dunklin County', NULL, 'dunklin-county', 'US', 1, 36.1059700000, -90.1657600000), (1115542, 1001454, 'Dunlap', NULL, 'dunlap', 'US', 1, 35.3714600000, -85.3905200000), (1115543, 1001440, 'Dunlap', NULL, 'dunlap', 'US', 1, 41.6378300000, -85.9216600000), (1115544, 1001425, 'Dunlap', NULL, 'dunlap', 'US', 1, 40.8617000000, -89.6787100000), (1115545, 1001422, 'Dunmore', NULL, 'dunmore', 'US', 1, 41.4198000000, -75.6324100000), (1115546, 1001447, 'Dunn', NULL, 'dunn', 'US', 1, 35.3062700000, -78.6089000000), (1115547, 1001441, 'Dunn County', NULL, 'dunn-county', 'US', 1, 44.9465900000, -91.8964100000), (1115548, 1001418, 'Dunn County', NULL, 'dunn-county', 'US', 1, 47.3567500000, -102.6182400000), (1115549, 1001427, 'Dunn Loring', NULL, 'dunn-loring', 'US', 1, 38.8934400000, -77.2216500000), (1115550, 1001436, 'Dunnellon', NULL, 'dunnellon', 'US', 1, 29.0491400000, -82.4609300000), (1115551, 1001416, 'Dunnigan', NULL, 'dunnigan', 'US', 1, 38.8851800000, -121.9696900000), (1115552, 1001422, 'Dunnstown', NULL, 'dunnstown', 'US', 1, 41.1459000000, -77.4213700000), (1115553, 1001416, 'Dunsmuir', NULL, 'dunsmuir', 'US', 1, 41.2082100000, -122.2719500000), (1115554, 1001433, 'Dunstable', NULL, 'dunstable', 'US', 1, 42.6750900000, -71.4828400000), (1115555, 1001455, 'Dunwoody', NULL, 'dunwoody', 'US', 1, 33.9462100000, -84.3346500000), (1115556, 1001447, 'Duplin County', NULL, 'duplin-county', 'US', 1, 34.9362800000, -77.9329400000), (1115557, 1001425, 'Dupo', NULL, 'dupo', 'US', 1, 38.5161600000, -90.2103900000), (1115558, 1001422, 'Dupont', NULL, 'dupont', 'US', 1, 41.3250800000, -75.7454700000), (1115559, 1001445, 'Dupree', NULL, 'dupree', 'US', 1, 45.0474800000, -101.6009900000), (1115560, 1001451, 'Duquesne', NULL, 'duquesne', 'US', 1, 37.0767300000, -94.4593900000), (1115561, 1001422, 'Duquesne', NULL, 'duquesne', 'US', 1, 40.3814600000, -79.8597700000), (1115562, 1001425, 'Durand', NULL, 'durand', 'US', 1, 42.4364000000, -89.3320600000), (1115563, 1001426, 'Durand', NULL, 'durand', 'US', 1, 42.9119800000, -83.9846800000), (1115564, 1001441, 'Durand', NULL, 'durand', 'US', 1, 44.6263500000, -91.9657300000), (1115565, 1001450, 'Durango', NULL, 'durango', 'US', 1, 37.2752800000, -107.8800700000), (1115566, 1001430, 'Durant', NULL, 'durant', 'US', 1, 33.0751300000, -89.8545300000), (1115567, 1001421, 'Durant', NULL, 'durant', 'US', 1, 33.9939900000, -96.3708200000), (1115568, 1001459, 'Durant', NULL, 'durant', 'US', 1, 41.5997500000, -90.9107000000), (1115569, 1001447, 'Durham', NULL, 'durham', 'US', 1, 35.9940300000, -78.8986200000), (1115570, 1001435, 'Durham', NULL, 'durham', 'US', 1, 41.4817600000, -72.6812100000), (1115571, 1001404, 'Durham', NULL, 'durham', 'US', 1, 43.1339700000, -70.9264500000), (1115572, 1001452, 'Durham', NULL, 'durham', 'US', 1, 42.3995300000, -74.1723600000), (1115573, 1001416, 'Durham', NULL, 'durham', 'US', 1, 39.6462700000, -121.7999800000), (1115574, 1001415, 'Durham', NULL, 'durham', 'US', 1, 45.4020600000, -122.7528700000), (1115575, 1001447, 'Durham County', NULL, 'durham-county', 'US', 1, 36.0360000000, -78.8763200000), (1115576, 1001422, 'Duryea', NULL, 'duryea', 'US', 1, 41.3439700000, -75.7385300000), (1115577, 1001457, 'Duson', NULL, 'duson', 'US', 1, 30.2357600000, -92.1854000000), (1115578, 1001400, 'Dutch Harbor', NULL, 'dutch-harbor', 'US', 1, 53.8898000000, -166.5422000000), (1115579, 1001452, 'Dutchess County', NULL, 'dutchess-county', 'US', 1, 41.7651500000, -73.7428600000), (1115580, 1001436, 'Duval County', NULL, 'duval-county', 'US', 1, 30.3354400000, -81.6480100000), (1115581, 1001407, 'Duval County', NULL, 'duval-county', 'US', 1, 27.6813300000, -98.5089100000), (1115582, 1001462, 'Duvall', NULL, 'duvall', 'US', 1, 47.7423200000, -121.9856800000), (1115583, 1001433, 'Duxbury', NULL, 'duxbury', 'US', 1, 42.0417700000, -70.6722600000), (1115584, 1001425, 'Dwight', NULL, 'dwight', 'US', 1, 41.0944800000, -88.4250600000), (1115585, 1001454, 'Dyer', NULL, 'dyer', 'US', 1, 36.0667300000, -88.9939500000), (1115586, 1001440, 'Dyer', NULL, 'dyer', 'US', 1, 41.4942000000, -87.5217100000), (1115587, 1001454, 'Dyer County', NULL, 'dyer-county', 'US', 1, 36.0590600000, -89.4137700000), (1115588, 1001454, 'Dyersburg', NULL, 'dyersburg', 'US', 1, 36.0345200000, -89.3856300000), (1115589, 1001459, 'Dyersville', NULL, 'dyersville', 'US', 1, 42.4844400000, -91.1229100000), (1115590, 1001452, 'Dyker Heights', NULL, 'dyker-heights', 'US', 1, 40.6214900000, -74.0095800000), (1115591, 1001459, 'Dysart', NULL, 'dysart', 'US', 1, 42.1716600000, -92.3063000000), (1115592, 1001450, 'Eads', NULL, 'eads', 'US', 1, 38.4805600000, -102.7818600000), (1115593, 1001420, 'Eagan', NULL, 'eagan', 'US', 1, 44.8041300000, -93.1668900000), (1115594, 1001434, 'Eagar', NULL, 'eagar', 'US', 1, 34.1112400000, -109.2923800000), (1115595, 1001408, 'Eagle', NULL, 'eagle', 'US', 1, 40.8166700000, -96.4302900000), (1115596, 1001441, 'Eagle', NULL, 'eagle', 'US', 1, 42.8794600000, -88.4742700000), (1115597, 1001450, 'Eagle', NULL, 'eagle', 'US', 1, 39.6552600000, -106.8286500000), (1115598, 1001460, 'Eagle', NULL, 'eagle', 'US', 1, 43.6954400000, -116.3540100000), (1115599, 1001445, 'Eagle Butte', NULL, 'eagle-butte', 'US', 1, 45.0024800000, -101.2334900000), (1115600, 1001450, 'Eagle County', NULL, 'eagle-county', 'US', 1, 39.6278300000, -106.6953000000), (1115601, 1001459, 'Eagle Grove', NULL, 'eagle-grove', 'US', 1, 42.6641400000, -93.9043900000), (1115602, 1001436, 'Eagle Lake', NULL, 'eagle-lake', 'US', 1, 27.9783600000, -81.7564700000), (1115603, 1001407, 'Eagle Lake', NULL, 'eagle-lake', 'US', 1, 29.5896800000, -96.3335800000), (1115604, 1001420, 'Eagle Lake', NULL, 'eagle-lake', 'US', 1, 44.1649700000, -93.8813400000), (1115605, 1001441, 'Eagle Lake', NULL, 'eagle-lake', 'US', 1, 42.7069600000, -88.1281400000), (1115606, 1001407, 'Eagle Mountain', NULL, 'eagle-mountain', 'US', 1, 32.8934600000, -97.4444600000), (1115607, 1001414, 'Eagle Mountain', NULL, 'eagle-mountain', 'US', 1, 40.3141200000, -112.0068800000), (1115608, 1001407, 'Eagle Pass', NULL, 'eagle-pass', 'US', 1, 28.7091400000, -100.4995200000), (1115609, 1001415, 'Eagle Point', NULL, 'eagle-point', 'US', 1, 42.4726300000, -122.8028200000), (1115610, 1001426, 'Eagle River', NULL, 'eagle-river', 'US', 1, 47.4138100000, -88.2956600000), (1115611, 1001441, 'Eagle River', NULL, 'eagle-river', 'US', 1, 45.9171800000, -89.2443000000), (1115612, 1001400, 'Eagle River', NULL, 'eagle-river', 'US', 1, 61.3213900000, -149.5677800000), (1115613, 1001454, 'Eagleton Village', NULL, 'eagleton-village', 'US', 1, 35.7950800000, -83.9318500000), (1115614, 1001422, 'Eagleview', NULL, 'eagleview', 'US', 1, 40.0593800000, -75.6807600000), (1115615, 1001422, 'Eagleville', NULL, 'eagleville', 'US', 1, 40.1595500000, -75.4082400000), (1115616, 1001444, 'Earle', NULL, 'earle', 'US', 1, 35.2750900000, -90.4667700000), (1115617, 1001459, 'Earlham', NULL, 'earlham', 'US', 1, 41.4919300000, -94.1241200000), (1115618, 1001416, 'Earlimart', NULL, 'earlimart', 'US', 1, 35.8841200000, -119.2723300000), (1115619, 1001419, 'Earlington', NULL, 'earlington', 'US', 1, 37.2742100000, -87.5119400000), (1115620, 1001422, 'Earlston', NULL, 'earlston', 'US', 1, 40.0061900000, -78.3700100000), (1115621, 1001425, 'Earlville', NULL, 'earlville', 'US', 1, 41.5894800000, -88.9220300000), (1115622, 1001407, 'Early', NULL, 'early', 'US', 1, 31.7421000000, -98.9456100000), (1115623, 1001455, 'Early County', NULL, 'early-county', 'US', 1, 31.3228300000, -84.9036400000), (1115624, 1001407, 'Earth', NULL, 'earth', 'US', 1, 34.2331400000, -102.4107500000), (1115625, 1001443, 'Easley', NULL, 'easley', 'US', 1, 34.8298400000, -82.6015200000), (1115626, 1001425, 'East Alton', NULL, 'east-alton', 'US', 1, 38.8803300000, -90.1112200000), (1115627, 1001452, 'East Atlantic Beach', NULL, 'east-atlantic-beach', 'US', 1, 40.7898200000, -73.7470800000), (1115628, 1001452, 'East Aurora', NULL, 'east-aurora', 'US', 1, 42.7678400000, -78.6133600000), (1115629, 1001422, 'East Bangor', NULL, 'east-bangor', 'US', 1, 40.8795400000, -75.1837900000), (1115630, 1001457, 'East Baton Rouge Parish', NULL, 'east-baton-rouge-parish', 'US', 1, 30.5382400000, -91.0956200000), (1115631, 1001422, 'East Berlin', NULL, 'east-berlin', 'US', 1, 39.9376000000, -76.9785900000), (1115632, 1001407, 'East Bernard', NULL, 'east-bernard', 'US', 1, 29.5310700000, -96.0710700000), (1115633, 1001422, 'East Berwick', NULL, 'east-berwick', 'US', 1, 41.0620300000, -76.2224300000), (1115634, 1001420, 'East Bethel', NULL, 'east-bethel', 'US', 1, 45.3194100000, -93.2024500000), (1115635, 1001454, 'East Brainerd', NULL, 'east-brainerd', 'US', 1, 34.9959100000, -85.1502300000), (1115636, 1001456, 'East Brewton', NULL, 'east-brewton', 'US', 1, 31.0932300000, -87.0627500000), (1115637, 1001433, 'East Bridgewater', NULL, 'east-bridgewater', 'US', 1, 42.0334300000, -70.9592100000), (1115638, 1001436, 'East Bronson', NULL, 'east-bronson', 'US', 1, 29.4592800000, -82.5904000000), (1115639, 1001433, 'East Brookfield', NULL, 'east-brookfield', 'US', 1, 42.2278700000, -72.0467400000), (1115640, 1001435, 'East Brooklyn', NULL, 'east-brooklyn', 'US', 1, 41.7967700000, -71.8972900000), (1115641, 1001417, 'East Brunswick', NULL, 'east-brunswick', 'US', 1, 40.4278800000, -74.4159800000), (1115642, 1001414, 'East Carbon City', NULL, 'east-carbon-city', 'US', 1, 39.5477400000, -110.4148800000), (1115643, 1001457, 'East Carroll Parish', NULL, 'east-carroll-parish', 'US', 1, 32.7325500000, -91.2350700000), (1115644, 1001454, 'East Chattanooga', NULL, 'east-chattanooga', 'US', 1, 35.0653500000, -85.2491200000), (1115645, 1001440, 'East Chicago', NULL, 'east-chicago', 'US', 1, 41.6392000000, -87.4547600000), (1115646, 1001454, 'East Cleveland', NULL, 'east-cleveland', 'US', 1, 35.1609100000, -84.8577200000), (1115647, 1001404, 'East Concord', NULL, 'east-concord', 'US', 1, 43.2420200000, -71.5381300000), (1115648, 1001422, 'East Conemaugh', NULL, 'east-conemaugh', 'US', 1, 40.3486800000, -78.8836400000), (1115649, 1001433, 'East Dennis', NULL, 'east-dennis', 'US', 1, 41.7426100000, -70.1619600000), (1115650, 1001433, 'East Douglas', NULL, 'east-douglas', 'US', 1, 42.0723200000, -71.7134000000), (1115651, 1001455, 'East Dublin', NULL, 'east-dublin', 'US', 1, 32.5482200000, -82.8718100000), (1115652, 1001425, 'East Dubuque', NULL, 'east-dubuque', 'US', 1, 42.4922300000, -90.6429100000), (1115653, 1001425, 'East Dundee', NULL, 'east-dundee', 'US', 1, 42.0989100000, -88.2714700000), (1115654, 1001422, 'East Earl', NULL, 'east-earl', 'US', 1, 40.1101000000, -76.0327200000), (1115655, 1001452, 'East Elmhurst', NULL, 'east-elmhurst', 'US', 1, 40.7612100000, -73.8651400000), (1115656, 1001444, 'East End', NULL, 'east-end', 'US', 1, 34.5506500000, -92.3409900000), (1115657, 1001433, 'East Falmouth', NULL, 'east-falmouth', 'US', 1, 41.5784400000, -70.5586400000), (1115658, 1001452, 'East Farmingdale', NULL, 'east-farmingdale', 'US', 1, 40.7292700000, -73.4167900000), (1115659, 1001457, 'East Feliciana Parish', NULL, 'east-feliciana-parish', 'US', 1, 30.8450700000, -91.0455400000), (1115660, 1001447, 'East Flat Rock', NULL, 'east-flat-rock', 'US', 1, 35.2801200000, -82.4220600000), (1115661, 1001452, 'East Flatbush', NULL, 'east-flatbush', 'US', 1, 40.6537100000, -73.9304200000), (1115662, 1001456, 'East Florence', NULL, 'east-florence', 'US', 1, 34.8095300000, -87.6494700000), (1115663, 1001416, 'East Foothills', NULL, 'east-foothills', 'US', 1, 37.3810500000, -121.8174500000), (1115664, 1001417, 'East Franklin', NULL, 'east-franklin', 'US', 1, 40.4933000000, -74.4711000000), (1115665, 1001417, 'East Freehold', NULL, 'east-freehold', 'US', 1, 40.2809400000, -74.2512600000), (1115666, 1001443, 'East Gaffney', NULL, 'east-gaffney', 'US', 1, 35.0801300000, -81.6328700000), (1115667, 1001452, 'East Garden City', NULL, 'east-garden-city', 'US', 1, 40.7308300000, -73.5980600000), (1115668, 1001425, 'East Garfield Park', NULL, 'east-garfield-park', 'US', 1, 41.8808700000, -87.7028300000), (1115669, 1001452, 'East Glenville', NULL, 'east-glenville', 'US', 1, 42.8945200000, -73.9279000000), (1115670, 1001420, 'East Grand Forks', NULL, 'east-grand-forks', 'US', 1, 47.9299800000, -97.0245200000), (1115671, 1001426, 'East Grand Rapids', NULL, 'east-grand-rapids', 'US', 1, 42.9411400000, -85.6100300000), (1115672, 1001452, 'East Greenbush', NULL, 'east-greenbush', 'US', 1, 42.5909100000, -73.7017900000), (1115673, 1001422, 'East Greenville', NULL, 'east-greenville', 'US', 1, 40.4064900000, -75.5018500000), (1115674, 1001461, 'East Greenwich', NULL, 'east-greenwich', 'US', 1, 41.6603800000, -71.4558900000), (1115675, 1001455, 'East Griffin', NULL, 'east-griffin', 'US', 1, 33.2437300000, -84.2288100000), (1115676, 1001420, 'East Gull Lake', NULL, 'east-gull-lake', 'US', 1, 46.4080200000, -94.3558400000), (1115677, 1001435, 'East Haddam', NULL, 'east-haddam', 'US', 1, 41.4531500000, -72.4612000000), (1115678, 1001435, 'East Hampton', NULL, 'east-hampton', 'US', 1, 41.5759300000, -72.5025900000), (1115679, 1001427, 'East Hampton', NULL, 'east-hampton', 'US', 1, 37.0373700000, -76.3316100000), (1115680, 1001452, 'East Hampton', NULL, 'east-hampton', 'US', 1, 40.9634300000, -72.1848000000), (1115681, 1001452, 'East Hampton North', NULL, 'east-hampton-north', 'US', 1, 40.9727600000, -72.1891100000), (1115682, 1001417, 'East Hanover', NULL, 'east-hanover', 'US', 1, 40.8201000000, -74.3648700000), (1115683, 1001452, 'East Harlem', NULL, 'east-harlem', 'US', 1, 40.7947200000, -73.9425000000), (1115684, 1001435, 'East Hartford', NULL, 'east-hartford', 'US', 1, 41.7823200000, -72.6120300000), (1115685, 1001433, 'East Harwich', NULL, 'east-harwich', 'US', 1, 41.7001100000, -70.0272400000), (1115686, 1001435, 'East Haven', NULL, 'east-haven', 'US', 1, 41.2762100000, -72.8684300000), (1115687, 1001425, 'East Hazel Crest', NULL, 'east-hazel-crest', 'US', 1, 41.5736500000, -87.6464300000), (1115688, 1001446, 'East Helena', NULL, 'east-helena', 'US', 1, 46.5896600000, -111.9155500000), (1115689, 1001416, 'East Hemet', NULL, 'east-hemet', 'US', 1, 33.7400200000, -116.9389100000), (1115690, 1001427, 'East Highland Park', NULL, 'east-highland-park', 'US', 1, 37.5809800000, -77.4069300000), (1115691, 1001462, 'East Hill-Meridian', NULL, 'east-hill-meridian', 'US', 1, 47.4105200000, -122.1736900000), (1115692, 1001452, 'East Hills', NULL, 'east-hills', 'US', 1, 40.7937100000, -73.6270700000), (1115693, 1001411, 'East Honolulu', NULL, 'east-honolulu', 'US', 1, 21.2890600000, -157.7173400000), (1115694, 1001451, 'East Independence', NULL, 'east-independence', 'US', 1, 39.0955600000, -94.3552300000), (1115695, 1001452, 'East Islip', NULL, 'east-islip', 'US', 1, 40.7320400000, -73.1856700000), (1115696, 1001452, 'East Ithaca', NULL, 'east-ithaca', 'US', 1, 42.4395200000, -76.4785500000), (1115697, 1001426, 'East Jordan', NULL, 'east-jordan', 'US', 1, 45.1580600000, -85.1242300000), (1115698, 1001404, 'East Kingston', NULL, 'east-kingston', 'US', 1, 42.9256400000, -71.0167200000), (1115699, 1001416, 'East La Mirada', NULL, 'east-la-mirada', 'US', 1, 33.9244600000, -117.9889500000), (1115700, 1001436, 'East Lake', NULL, 'east-lake', 'US', 1, 28.1108500000, -82.6948200000), (1115701, 1001436, 'East Lake-Orient Park', NULL, 'east-lake-orient-park', 'US', 1, 27.9826900000, -82.3787800000), (1115702, 1001422, 'East Lansdowne', NULL, 'east-lansdowne', 'US', 1, 39.9456700000, -75.2612900000), (1115703, 1001426, 'East Lansing', NULL, 'east-lansing', 'US', 1, 42.7369800000, -84.4838700000), (1115704, 1001427, 'East Lexington', NULL, 'east-lexington', 'US', 1, 37.7929100000, -79.4253200000), (1115705, 1001433, 'East Longmeadow', NULL, 'east-longmeadow', 'US', 1, 42.0645400000, -72.5125900000), (1115706, 1001416, 'East Los Angeles', NULL, 'east-los-angeles', 'US', 1, 34.0239000000, -118.1720200000), (1115707, 1001453, 'East Machias', NULL, 'east-machias', 'US', 1, 44.7392400000, -67.3899900000), (1115708, 1001452, 'East Massapequa', NULL, 'east-massapequa', 'US', 1, 40.6734300000, -73.4365100000), (1115709, 1001422, 'East McKeesport', NULL, 'east-mckeesport', 'US', 1, 40.3831200000, -79.8064400000), (1115710, 1001452, 'East Meadow', NULL, 'east-meadow', 'US', 1, 40.7139900000, -73.5590200000), (1115711, 1001404, 'East Merrimack', NULL, 'east-merrimack', 'US', 1, 42.8681400000, -71.4834000000), (1115712, 1001414, 'East Millcreek', NULL, 'east-millcreek', 'US', 1, 40.6999500000, -111.8104900000), (1115713, 1001453, 'East Millinocket', NULL, 'east-millinocket', 'US', 1, 45.6275500000, -68.5744800000), (1115714, 1001436, 'East Milton', NULL, 'east-milton', 'US', 1, 30.6151900000, -87.0216300000), (1115715, 1001446, 'East Missoula', NULL, 'east-missoula', 'US', 1, 46.8707600000, -113.9445500000), (1115716, 1001425, 'East Moline', NULL, 'east-moline', 'US', 1, 41.5008700000, -90.4443000000), (1115717, 1001452, 'East Moriches', NULL, 'east-moriches', 'US', 1, 40.8051000000, -72.7609300000), (1115718, 1001436, 'East Naples', NULL, 'east-naples', 'US', 1, 26.1384200000, -81.7664800000), (1115719, 1001452, 'East New York', NULL, 'east-new-york', 'US', 1, 40.6667700000, -73.8823600000), (1115720, 1001417, 'East Newark', NULL, 'east-newark', 'US', 1, 40.7484300000, -74.1618100000), (1115721, 1001455, 'East Newnan', NULL, 'east-newnan', 'US', 1, 33.3506700000, -84.7766000000), (1115722, 1001452, 'East Northport', NULL, 'east-northport', 'US', 1, 40.8767600000, -73.3245600000), (1115723, 1001435, 'East Norwalk', NULL, 'east-norwalk', 'US', 1, 41.1056500000, -73.3984500000), (1115724, 1001452, 'East Norwich', NULL, 'east-norwich', 'US', 1, 40.8467700000, -73.5351200000), (1115725, 1001416, 'East Oakdale', NULL, 'east-oakdale', 'US', 1, 37.7879800000, -120.8038200000), (1115726, 1001417, 'East Orange', NULL, 'east-orange', 'US', 1, 40.7673200000, -74.2048700000), (1115727, 1001436, 'East Palatka', NULL, 'east-palatka', 'US', 1, 29.6583000000, -81.5984100000), (1115728, 1001416, 'East Palo Alto', NULL, 'east-palo-alto', 'US', 1, 37.4688300000, -122.1410800000), (1115729, 1001416, 'East Pasadena', NULL, 'east-pasadena', 'US', 1, 34.1381400000, -118.0738400000), (1115730, 1001452, 'East Patchogue', NULL, 'east-patchogue', 'US', 1, 40.7670400000, -72.9962200000), (1115731, 1001436, 'East Pensacola Heights', NULL, 'east-pensacola-heights', 'US', 1, 30.4288100000, -87.1799700000), (1115732, 1001425, 'East Peoria', NULL, 'east-peoria', 'US', 1, 40.6661500000, -89.5801000000), (1115733, 1001433, 'East Pepperell', NULL, 'east-pepperell', 'US', 1, 42.6653700000, -71.5731200000), (1115734, 1001436, 'East Perrine', NULL, 'east-perrine', 'US', 1, 25.6087200000, -80.3389400000), (1115735, 1001422, 'East Petersburg', NULL, 'east-petersburg', 'US', 1, 40.1001000000, -76.3541300000), (1115736, 1001422, 'East Pittsburgh', NULL, 'east-pittsburgh', 'US', 1, 40.3956200000, -79.8386600000), (1115737, 1001455, 'East Point', NULL, 'east-point', 'US', 1, 33.6795500000, -84.4393700000), (1115738, 1001462, 'East Port Orchard', NULL, 'east-port-orchard', 'US', 1, 47.5234300000, -122.6243000000), (1115739, 1001416, 'East Porterville', NULL, 'east-porterville', 'US', 1, 36.0574500000, -118.9756600000), (1115740, 1001451, 'East Prairie', NULL, 'east-prairie', 'US', 1, 36.7797800000, -89.3856300000), (1115741, 1001461, 'East Providence', NULL, 'east-providence', 'US', 1, 41.8137100000, -71.3700500000), (1115742, 1001416, 'East Quincy', NULL, 'east-quincy', 'US', 1, 39.9340600000, -120.8980100000), (1115743, 1001452, 'East Quogue', NULL, 'east-quogue', 'US', 1, 40.8406600000, -72.5814800000), (1115744, 1001416, 'East Rancho Dominguez', NULL, 'east-rancho-dominguez', 'US', 1, 33.8980700000, -118.1953500000), (1115745, 1001462, 'East Renton Highlands', NULL, 'east-renton-highlands', 'US', 1, 47.4848200000, -122.1123400000), (1115746, 1001416, 'East Richmond Heights', NULL, 'east-richmond-heights', 'US', 1, 37.9449200000, -122.3135800000), (1115747, 1001454, 'East Ridge', NULL, 'east-ridge', 'US', 1, 35.0142400000, -85.2519000000), (1115748, 1001401, 'East Riverdale', NULL, 'east-riverdale', 'US', 1, 38.9620600000, -76.9219200000), (1115749, 1001452, 'East Rochester', NULL, 'east-rochester', 'US', 1, 43.1086700000, -77.4875000000), (1115750, 1001452, 'East Rockaway', NULL, 'east-rockaway', 'US', 1, 40.6420500000, -73.6695700000), (1115751, 1001447, 'East Rockingham', NULL, 'east-rockingham', 'US', 1, 34.9182100000, -79.7625600000), (1115752, 1001417, 'East Rutherford', NULL, 'east-rutherford', 'US', 1, 40.8339900000, -74.0970900000), (1115753, 1001434, 'East Sahuarita', NULL, 'east-sahuarita', 'US', 1, 31.9428600000, -110.9284200000), (1115754, 1001425, 'East Saint Louis', NULL, 'east-saint-louis', 'US', 1, 38.6245000000, -90.1509400000), (1115755, 1001416, 'East San Gabriel', NULL, 'east-san-gabriel', 'US', 1, 34.0916800000, -118.0911800000), (1115756, 1001433, 'East Sandwich', NULL, 'east-sandwich', 'US', 1, 41.7417700000, -70.4516900000), (1115757, 1001452, 'East Setauket', NULL, 'east-setauket', 'US', 1, 40.9414900000, -73.1059400000), (1115758, 1001452, 'East Shoreham', NULL, 'east-shoreham', 'US', 1, 40.9448200000, -72.8795500000), (1115759, 1001416, 'East Sonora', NULL, 'east-sonora', 'US', 1, 37.9777000000, -120.3613000000), (1115760, 1001447, 'East Spencer', NULL, 'east-spencer', 'US', 1, 35.6818100000, -80.4322800000), (1115761, 1001422, 'East Stroudsburg', NULL, 'east-stroudsburg', 'US', 1, 40.9995400000, -75.1812900000), (1115762, 1001443, 'East Sumter', NULL, 'east-sumter', 'US', 1, 33.9254400000, -80.2961900000), (1115763, 1001452, 'East Syracuse', NULL, 'east-syracuse', 'US', 1, 43.0653400000, -76.0785300000), (1115764, 1001426, 'East Tawas', NULL, 'east-tawas', 'US', 1, 44.2794600000, -83.4902500000), (1115765, 1001452, 'East Tremont', NULL, 'east-tremont', 'US', 1, 40.8453800000, -73.8909700000), (1115766, 1001441, 'East Troy', NULL, 'east-troy', 'US', 1, 42.7852900000, -88.4051000000), (1115767, 1001422, 'East Uniontown', NULL, 'east-uniontown', 'US', 1, 39.8998000000, -79.6978200000), (1115768, 1001458, 'East Valley', NULL, 'east-valley', 'US', 1, 38.9434000000, -119.6992300000), (1115769, 1001452, 'East Village', NULL, 'east-village', 'US', 1, 40.7292700000, -73.9873600000), (1115770, 1001422, 'East Washington', NULL, 'east-washington', 'US', 1, 40.1736800000, -80.2375600000), (1115771, 1001462, 'East Wenatchee', NULL, 'east-wenatchee', 'US', 1, 47.4156800000, -120.2931300000), (1115772, 1001462, 'East Wenatchee Bench', NULL, 'east-wenatchee-bench', 'US', 1, 47.4256800000, -120.2811800000), (1115773, 1001452, 'East Williston', NULL, 'east-williston', 'US', 1, 40.7584300000, -73.6348500000), (1115774, 1001435, 'East Windsor', NULL, 'east-windsor', 'US', 1, 41.9123200000, -72.5450900000), (1115775, 1001422, 'East York', NULL, 'east-york', 'US', 1, 39.9737100000, -76.6863600000), (1115776, 1001452, 'Eastchester', NULL, 'eastchester', 'US', 1, 40.9583300000, -73.8086100000), (1115777, 1001462, 'Eastgate', NULL, 'eastgate', 'US', 1, 47.5726600000, -122.1457800000), (1115778, 1001433, 'Eastham', NULL, 'eastham', 'US', 1, 41.8301100000, -69.9739100000), (1115779, 1001433, 'Easthampton', NULL, 'easthampton', 'US', 1, 42.2667600000, -72.6689800000), (1115780, 1001407, 'Eastland', NULL, 'eastland', 'US', 1, 32.4015200000, -98.8175600000), (1115781, 1001407, 'Eastland County', NULL, 'eastland-county', 'US', 1, 32.3270700000, -98.8323200000), (1115782, 1001422, 'Eastlawn Gardens', NULL, 'eastlawn-gardens', 'US', 1, 40.7506500000, -75.2957300000), (1115783, 1001455, 'Eastman', NULL, 'eastman', 'US', 1, 32.1976700000, -83.1776500000), (1115784, 1001462, 'Eastmont', NULL, 'eastmont', 'US', 1, 47.8974000000, -122.1815400000), (1115785, 1001401, 'Easton', NULL, 'easton', 'US', 1, 38.7742800000, -76.0763300000), (1115786, 1001435, 'Easton', NULL, 'easton', 'US', 1, 41.2528700000, -73.2973400000), (1115787, 1001433, 'Easton', NULL, 'easton', 'US', 1, 42.0245400000, -71.1286600000), (1115788, 1001453, 'Easton', NULL, 'easton', 'US', 1, 46.6411500000, -67.9094700000), (1115789, 1001422, 'Easton', NULL, 'easton', 'US', 1, 40.6884300000, -75.2207300000), (1115790, 1001441, 'Easton', NULL, 'easton', 'US', 1, 43.8380300000, -89.8067900000), (1115791, 1001416, 'Easton', NULL, 'easton', 'US', 1, 36.6502300000, -119.7907000000), (1115792, 1001447, 'Eastover', NULL, 'eastover', 'US', 1, 35.1000000000, -78.8000000000), (1115793, 1001436, 'Eastpoint', NULL, 'eastpoint', 'US', 1, 29.7366000000, -84.8785200000), (1115794, 1001426, 'Eastpointe', NULL, 'eastpointe', 'US', 1, 42.4683700000, -82.9554700000), (1115795, 1001453, 'Eastport', NULL, 'eastport', 'US', 1, 44.9061900000, -66.9899800000), (1115796, 1001452, 'Eastport', NULL, 'eastport', 'US', 1, 40.8259300000, -72.7317700000), (1115797, 1001416, 'Eastvale', NULL, 'eastvale', 'US', 1, 33.9635800000, -117.5641800000), (1115798, 1001427, 'Eastville', NULL, 'eastville', 'US', 1, 37.3526400000, -75.9457600000), (1115799, 1001457, 'Eastwood', NULL, 'eastwood', 'US', 1, 32.5562600000, -93.5671200000), (1115800, 1001426, 'Eastwood', NULL, 'eastwood', 'US', 1, 42.3031000000, -85.5502800000), (1115801, 1001440, 'Eaton', NULL, 'eaton', 'US', 1, 40.3403200000, -85.3508000000), (1115802, 1001450, 'Eaton', NULL, 'eaton', 'US', 1, 40.5302600000, -104.7113500000), (1115803, 1001426, 'Eaton County', NULL, 'eaton-county', 'US', 1, 42.5960700000, -84.8383100000), (1115804, 1001426, 'Eaton Rapids', NULL, 'eaton-rapids', 'US', 1, 42.5092000000, -84.6558100000), (1115805, 1001452, 'Eatons Neck', NULL, 'eatons-neck', 'US', 1, 40.9306500000, -73.4015100000), (1115806, 1001455, 'Eatonton', NULL, 'eatonton', 'US', 1, 33.3268000000, -83.3885000000), (1115807, 1001417, 'Eatontown', NULL, 'eatontown', 'US', 1, 40.2962200000, -74.0509700000), (1115808, 1001436, 'Eatonville', NULL, 'eatonville', 'US', 1, 28.6147200000, -81.3806200000), (1115809, 1001462, 'Eatonville', NULL, 'eatonville', 'US', 1, 46.8673300000, -122.2665000000), (1115810, 1001441, 'Eau Claire', NULL, 'eau-claire', 'US', 1, 44.8113500000, -91.4984900000), (1115811, 1001441, 'Eau Claire County', NULL, 'eau-claire-county', 'US', 1, 44.7267700000, -91.2860000000), (1115812, 1001422, 'Ebensburg', NULL, 'ebensburg', 'US', 1, 40.4850700000, -78.7247400000), (1115813, 1001417, 'Echelon', NULL, 'echelon', 'US', 1, 39.8484500000, -74.9957200000), (1115814, 1001416, 'Echo Park', NULL, 'echo-park', 'US', 1, 34.0780800000, -118.2606600000), (1115815, 1001455, 'Echols County', NULL, 'echols-county', 'US', 1, 30.7100900000, -82.8939400000), (1115816, 1001456, 'Eclectic', NULL, 'eclectic', 'US', 1, 32.6354100000, -86.0344100000), (1115817, 1001422, 'Economy', NULL, 'economy', 'US', 1, 40.6000700000, -80.2247800000), (1115818, 1001426, 'Ecorse', NULL, 'ecorse', 'US', 1, 42.2444800000, -83.1457600000), (1115819, 1001407, 'Ector County', NULL, 'ector-county', 'US', 1, 31.8691600000, -102.5427600000), (1115820, 1001407, 'Edcouch', NULL, 'edcouch', 'US', 1, 26.2939600000, -97.9605600000), (1115821, 1001453, 'Eddington', NULL, 'eddington', 'US', 1, 44.8261800000, -68.6933700000), (1115822, 1001422, 'Eddington', NULL, 'eddington', 'US', 1, 40.0845600000, -74.9448900000), (1115823, 1001418, 'Eddy County', NULL, 'eddy-county', 'US', 1, 47.7175900000, -98.9015800000), (1115824, 1001423, 'Eddy County', NULL, 'eddy-county', 'US', 1, 32.4714900000, -104.3043100000), (1115825, 1001422, 'Eddystone', NULL, 'eddystone', 'US', 1, 39.8601100000, -75.3443600000), (1115826, 1001419, 'Eddyville', NULL, 'eddyville', 'US', 1, 37.0945000000, -88.0803000000), (1115827, 1001459, 'Eddyville', NULL, 'eddyville', 'US', 1, 41.1565000000, -92.6373900000), (1115828, 1001447, 'Eden', NULL, 'eden', 'US', 1, 36.4884700000, -79.7667000000), (1115829, 1001407, 'Eden', NULL, 'eden', 'US', 1, 31.2162800000, -99.8456300000), (1115830, 1001452, 'Eden', NULL, 'eden', 'US', 1, 42.6522800000, -78.8969800000), (1115831, 1001457, 'Eden Isle', NULL, 'eden-isle', 'US', 1, 30.2285300000, -89.7986700000), (1115832, 1001420, 'Eden Prairie', NULL, 'eden-prairie', 'US', 1, 44.8546900000, -93.4707900000), (1115833, 1001420, 'Eden Valley', NULL, 'eden-valley', 'US', 1, 45.3260700000, -94.5461100000), (1115834, 1001447, 'Edenton', NULL, 'edenton', 'US', 1, 36.0579400000, -76.6077200000); INSERT INTO `[[dbprefix]]t_city` VALUES (1115835, 1001441, 'Edgar', NULL, 'edgar', 'US', 1, 44.9271900000, -89.9634600000), (1115836, 1001425, 'Edgar County', NULL, 'edgar-county', 'US', 1, 39.6785300000, -87.7455700000), (1115837, 1001457, 'Edgard', NULL, 'edgard', 'US', 1, 30.0432600000, -90.5600900000), (1115838, 1001433, 'Edgartown', NULL, 'edgartown', 'US', 1, 41.3890100000, -70.5133600000), (1115839, 1001407, 'Edgecliff Village', NULL, 'edgecliff-village', 'US', 1, 32.6576300000, -97.3427900000), (1115840, 1001453, 'Edgecomb', NULL, 'edgecomb', 'US', 1, 43.9584100000, -69.6306000000), (1115841, 1001447, 'Edgecombe County', NULL, 'edgecombe-county', 'US', 1, 35.9129800000, -77.5970700000), (1115842, 1001443, 'Edgefield', NULL, 'edgefield', 'US', 1, 33.7895800000, -81.9295600000), (1115843, 1001443, 'Edgefield County', NULL, 'edgefield-county', 'US', 1, 33.7722900000, -81.9665800000), (1115844, 1001401, 'Edgemere', NULL, 'edgemere', 'US', 1, 39.2420500000, -76.4480200000), (1115845, 1001452, 'Edgemere', NULL, 'edgemere', 'US', 1, 40.5962200000, -73.7676300000), (1115846, 1001426, 'Edgemont Park', NULL, 'edgemont-park', 'US', 1, 42.7467000000, -84.5935900000), (1115847, 1001399, 'Edgemoor', NULL, 'edgemoor', 'US', 1, 39.7501100000, -75.4996400000), (1115848, 1001406, 'Edgerton', NULL, 'edgerton', 'US', 1, 38.7647300000, -95.0080200000), (1115849, 1001420, 'Edgerton', NULL, 'edgerton', 'US', 1, 43.8724700000, -96.1286400000), (1115850, 1001441, 'Edgerton', NULL, 'edgerton', 'US', 1, 42.8352800000, -89.0676100000), (1115851, 1001436, 'Edgewater', NULL, 'edgewater', 'US', 1, 28.9888800000, -80.9022800000), (1115852, 1001401, 'Edgewater', NULL, 'edgewater', 'US', 1, 38.9570600000, -76.5499600000), (1115853, 1001425, 'Edgewater', NULL, 'edgewater', 'US', 1, 41.9833700000, -87.6639500000), (1115854, 1001417, 'Edgewater', NULL, 'edgewater', 'US', 1, 40.8270400000, -73.9756900000), (1115855, 1001450, 'Edgewater', NULL, 'edgewater', 'US', 1, 39.7530400000, -105.0641500000), (1115856, 1001417, 'Edgewater Park', NULL, 'edgewater-park', 'US', 1, 40.0681700000, -74.9007200000), (1115857, 1001436, 'Edgewood', NULL, 'edgewood', 'US', 1, 28.4861200000, -81.3722900000), (1115858, 1001419, 'Edgewood', NULL, 'edgewood', 'US', 1, 39.0186700000, -84.5818900000), (1115859, 1001401, 'Edgewood', NULL, 'edgewood', 'US', 1, 39.4187200000, -76.2944000000), (1115860, 1001407, 'Edgewood', NULL, 'edgewood', 'US', 1, 32.6981800000, -95.8852400000), (1115861, 1001440, 'Edgewood', NULL, 'edgewood', 'US', 1, 40.1033700000, -85.7341400000), (1115862, 1001422, 'Edgewood', NULL, 'edgewood', 'US', 1, 40.4320100000, -79.8814400000), (1115863, 1001423, 'Edgewood', NULL, 'edgewood', 'US', 1, 35.0614400000, -106.1914100000), (1115864, 1001462, 'Edgewood', NULL, 'edgewood', 'US', 1, 47.2501000000, -122.2937300000), (1115865, 1001422, 'Edgeworth', NULL, 'edgeworth', 'US', 1, 40.5511800000, -80.1928400000), (1115866, 1001451, 'Edina', NULL, 'edina', 'US', 1, 40.1675400000, -92.1726800000), (1115867, 1001420, 'Edina', NULL, 'edina', 'US', 1, 44.8896900000, -93.3499500000), (1115868, 1001422, 'Edinboro', NULL, 'edinboro', 'US', 1, 41.8742200000, -80.1317200000), (1115869, 1001425, 'Edinburg', NULL, 'edinburg', 'US', 1, 39.6572700000, -89.3895300000), (1115870, 1001407, 'Edinburg', NULL, 'edinburg', 'US', 1, 26.3017400000, -98.1633400000), (1115871, 1001427, 'Edinburg', NULL, 'edinburg', 'US', 1, 38.8209500000, -78.5658500000), (1115872, 1001452, 'Edinburg', NULL, 'edinburg', 'US', 1, 43.2217400000, -74.1040200000), (1115873, 1001440, 'Edinburgh', NULL, 'edinburgh', 'US', 1, 39.3542200000, -85.9666600000), (1115874, 1001455, 'Edison', NULL, 'edison', 'US', 1, 31.5582300000, -84.7382500000), (1115875, 1001417, 'Edison', NULL, 'edison', 'US', 1, 40.5187200000, -74.4121000000), (1115876, 1001443, 'Edisto', NULL, 'edisto', 'US', 1, 33.4765400000, -80.8987000000), (1115877, 1001421, 'Edmond', NULL, 'edmond', 'US', 1, 35.6528300000, -97.4781000000), (1115878, 1001462, 'Edmonds', NULL, 'edmonds', 'US', 1, 47.8106500000, -122.3773600000), (1115879, 1001419, 'Edmonson County', NULL, 'edmonson-county', 'US', 1, 37.2088400000, -86.2386200000), (1115880, 1001401, 'Edmonston', NULL, 'edmonston', 'US', 1, 38.9467800000, -76.9310900000), (1115881, 1001419, 'Edmonton', NULL, 'edmonton', 'US', 1, 36.9800600000, -85.6121900000), (1115882, 1001426, 'Edmore', NULL, 'edmore', 'US', 1, 43.4080900000, -85.0386300000), (1115883, 1001445, 'Edmunds County', NULL, 'edmunds-county', 'US', 1, 45.4188000000, -99.2153300000), (1115884, 1001407, 'Edna', NULL, 'edna', 'US', 1, 28.9785900000, -96.6460900000), (1115885, 1001447, 'Edneyville', NULL, 'edneyville', 'US', 1, 35.3940100000, -82.3409500000), (1115886, 1001430, 'Edwards', NULL, 'edwards', 'US', 1, 32.3301500000, -90.6056500000), (1115887, 1001450, 'Edwards', NULL, 'edwards', 'US', 1, 39.6449900000, -106.5942000000), (1115888, 1001416, 'Edwards Air Force Base', NULL, 'edwards-air-force-base', 'US', 1, 34.9163700000, -117.9353500000), (1115889, 1001425, 'Edwards County', NULL, 'edwards-county', 'US', 1, 38.4165300000, -88.0532700000), (1115890, 1001406, 'Edwards County', NULL, 'edwards-county', 'US', 1, 37.8876500000, -99.3121700000), (1115891, 1001407, 'Edwards County', NULL, 'edwards-county', 'US', 1, 29.9826300000, -100.3047400000), (1115892, 1001426, 'Edwardsburg', NULL, 'edwardsburg', 'US', 1, 41.7956000000, -86.0808400000), (1115893, 1001406, 'Edwardsville', NULL, 'edwardsville', 'US', 1, 39.0611200000, -94.8196800000), (1115894, 1001425, 'Edwardsville', NULL, 'edwardsville', 'US', 1, 38.8114400000, -89.9531600000), (1115895, 1001422, 'Edwardsville', NULL, 'edwardsville', 'US', 1, 41.2695300000, -75.9163100000), (1115896, 1001425, 'Effingham', NULL, 'effingham', 'US', 1, 39.1200400000, -88.5433800000), (1115897, 1001404, 'Effingham', NULL, 'effingham', 'US', 1, 43.7611900000, -70.9964500000), (1115898, 1001455, 'Effingham County', NULL, 'effingham-county', 'US', 1, 32.3673100000, -81.3413400000), (1115899, 1001425, 'Effingham County', NULL, 'effingham-county', 'US', 1, 39.0597700000, -88.5898600000), (1115900, 1001422, 'Effort', NULL, 'effort', 'US', 1, 40.9392600000, -75.4349100000), (1115901, 1001417, 'Egg Harbor City', NULL, 'egg-harbor-city', 'US', 1, 39.5287300000, -74.6479400000), (1115902, 1001452, 'Eggertsville', NULL, 'eggertsville', 'US', 1, 42.9633900000, -78.8039200000), (1115903, 1001436, 'Eglin Air Force Base', NULL, 'eglin-air-force-base', 'US', 1, 30.4590700000, -86.5502600000), (1115904, 1001436, 'Eglin Village', NULL, 'eglin-village', 'US', 1, 30.4629800000, -86.5394000000), (1115905, 1001422, 'Egypt', NULL, 'egypt', 'US', 1, 40.6801000000, -75.5299100000), (1115906, 1001436, 'Egypt Lake-Leto', NULL, 'egypt-lake-leto', 'US', 1, 28.0176900000, -82.5061900000), (1115907, 1001434, 'Ehrenberg', NULL, 'ehrenberg', 'US', 1, 33.6041900000, -114.5252300000), (1115908, 1001407, 'Eidson Road', NULL, 'eidson-road', 'US', 1, 28.6772000000, -100.4870200000), (1115909, 1001400, 'Eielson Air Force Base', NULL, 'eielson-air-force-base', 'US', 1, 64.6632700000, -147.0544200000), (1115910, 1001446, 'Ekalaka', NULL, 'ekalaka', 'US', 1, 45.8888900000, -104.5527300000), (1115911, 1001416, 'El Cajon', NULL, 'el-cajon', 'US', 1, 32.7947700000, -116.9625300000), (1115912, 1001407, 'El Campo', NULL, 'el-campo', 'US', 1, 29.1966400000, -96.2696900000), (1115913, 1001407, 'El Cenizo', NULL, 'el-cenizo', 'US', 1, 27.3522400000, -99.4925400000), (1115914, 1001416, 'El Centro', NULL, 'el-centro', 'US', 1, 32.7920000000, -115.5630500000), (1115915, 1001416, 'El Cerrito', NULL, 'el-cerrito', 'US', 1, 37.9157600000, -122.3116400000), (1115916, 1001416, 'El Cerrito Corona', NULL, 'el-cerrito-corona', 'US', 1, 33.8405700000, -117.5228300000), (1115917, 1001423, 'El Cerro', NULL, 'el-cerro', 'US', 1, 34.7270000000, -106.7108600000), (1115918, 1001423, 'El Cerro Mission', NULL, 'el-cerro-mission', 'US', 1, 34.7622700000, -106.6445000000), (1115919, 1001444, 'El Dorado', NULL, 'el-dorado', 'US', 1, 33.2076300000, -92.6662700000), (1115920, 1001406, 'El Dorado', NULL, 'el-dorado', 'US', 1, 37.8172400000, -96.8622500000), (1115921, 1001416, 'El Dorado County', NULL, 'el-dorado-county', 'US', 1, 38.7787400000, -120.5246500000), (1115922, 1001416, 'El Dorado Hills', NULL, 'el-dorado-hills', 'US', 1, 38.6857400000, -121.0821700000), (1115923, 1001451, 'El Dorado Springs', NULL, 'el-dorado-springs', 'US', 1, 37.8769800000, -94.0213300000), (1115924, 1001416, 'El Granada', NULL, 'el-granada', 'US', 1, 37.5027200000, -122.4694200000), (1115925, 1001450, 'El Jebel', NULL, 'el-jebel', 'US', 1, 39.3949800000, -107.0903300000), (1115926, 1001407, 'El Lago', NULL, 'el-lago', 'US', 1, 29.5635600000, -95.0452100000), (1115927, 1001434, 'El Mirage', NULL, 'el-mirage', 'US', 1, 33.6130900000, -112.3246000000), (1115928, 1001416, 'El Monte', NULL, 'el-monte', 'US', 1, 34.0686200000, -118.0275700000), (1115929, 1001425, 'El Paso', NULL, 'el-paso', 'US', 1, 40.7392000000, -89.0164600000), (1115930, 1001407, 'El Paso', NULL, 'el-paso', 'US', 1, 31.7587200000, -106.4869300000), (1115931, 1001450, 'El Paso County', NULL, 'el-paso-county', 'US', 1, 38.8320900000, -104.5255800000), (1115932, 1001407, 'El Paso County', NULL, 'el-paso-county', 'US', 1, 31.7685500000, -106.2348300000), (1115933, 1001436, 'El Portal', NULL, 'el-portal', 'US', 1, 25.8553700000, -80.1931000000), (1115934, 1001423, 'El Rancho', NULL, 'el-rancho', 'US', 1, 35.8891900000, -106.0797500000), (1115935, 1001421, 'El Reno', NULL, 'el-reno', 'US', 1, 35.5322700000, -97.9550500000), (1115936, 1001416, 'El Rio', NULL, 'el-rio', 'US', 1, 34.2357800000, -119.1638300000), (1115937, 1001416, 'El Segundo', NULL, 'el-segundo', 'US', 1, 33.9191800000, -118.4164700000), (1115938, 1001416, 'El Sobrante', NULL, 'el-sobrante', 'US', 1, 37.9771500000, -122.2952500000), (1115939, 1001423, 'El Valle de Arroyo Seco', NULL, 'el-valle-de-arroyo-seco', 'US', 1, 35.9628000000, -106.0294700000), (1115940, 1001416, 'El Verano', NULL, 'el-verano', 'US', 1, 38.2976900000, -122.4916500000), (1115941, 1001456, 'Elba', NULL, 'elba', 'US', 1, 31.4146100000, -86.0677200000), (1115942, 1001455, 'Elbert County', NULL, 'elbert-county', 'US', 1, 34.1167900000, -82.8401000000), (1115943, 1001450, 'Elbert County', NULL, 'elbert-county', 'US', 1, 39.2865600000, -104.1358900000), (1115944, 1001456, 'Elberta', NULL, 'elberta', 'US', 1, 30.4143600000, -87.5977600000), (1115945, 1001455, 'Elberton', NULL, 'elberton', 'US', 1, 34.1115900000, -82.8686300000), (1115946, 1001420, 'Elbow Lake', NULL, 'elbow-lake', 'US', 1, 45.9941300000, -95.9767200000), (1115947, 1001452, 'Elbridge', NULL, 'elbridge', 'US', 1, 43.0345100000, -76.4479900000), (1115948, 1001425, 'Elburn', NULL, 'elburn', 'US', 1, 41.8922500000, -88.4723000000), (1115949, 1001401, 'Eldersburg', NULL, 'eldersburg', 'US', 1, 39.4037100000, -76.9502600000), (1115950, 1001451, 'Eldon', NULL, 'eldon', 'US', 1, 38.3483600000, -92.5815800000), (1115951, 1001459, 'Eldora', NULL, 'eldora', 'US', 1, 42.3608200000, -93.0996500000), (1115952, 1001425, 'Eldorado', NULL, 'eldorado', 'US', 1, 37.8136600000, -88.4381000000), (1115953, 1001441, 'Eldorado', NULL, 'eldorado', 'US', 1, 43.8247100000, -88.6217800000), (1115954, 1001407, 'Eldorado', NULL, 'eldorado', 'US', 1, 30.8601700000, -100.6009300000), (1115955, 1001423, 'Eldorado at Santa Fe', NULL, 'eldorado-at-santa-fe', 'US', 1, 35.5264200000, -105.9347400000), (1115956, 1001459, 'Eldridge', NULL, 'eldridge', 'US', 1, 41.6580900000, -90.5845800000), (1115957, 1001416, 'Eldridge', NULL, 'eldridge', 'US', 1, 38.3488000000, -122.5108100000), (1115958, 1001429, 'Eleanor', NULL, 'eleanor', 'US', 1, 38.5375900000, -81.9323600000), (1115959, 1001407, 'Electra', NULL, 'electra', 'US', 1, 34.0292600000, -98.9189600000), (1115960, 1001462, 'Electric City', NULL, 'electric-city', 'US', 1, 47.9323700000, -119.0380800000), (1115961, 1001423, 'Elephant Butte', NULL, 'elephant-butte', 'US', 1, 33.1486800000, -107.1847500000), (1115962, 1001436, 'Elfers', NULL, 'elfers', 'US', 1, 28.2166800000, -82.7223200000), (1115963, 1001443, 'Elgin', NULL, 'elgin', 'US', 1, 34.6729300000, -80.7189600000), (1115964, 1001421, 'Elgin', NULL, 'elgin', 'US', 1, 34.7803500000, -98.2922700000), (1115965, 1001407, 'Elgin', NULL, 'elgin', 'US', 1, 30.3496500000, -97.3702700000), (1115966, 1001425, 'Elgin', NULL, 'elgin', 'US', 1, 42.0372500000, -88.2811900000), (1115967, 1001420, 'Elgin', NULL, 'elgin', 'US', 1, 44.1302400000, -92.2515600000), (1115968, 1001415, 'Elgin', NULL, 'elgin', 'US', 1, 45.5648600000, -117.9174300000), (1115969, 1001422, 'Elim', NULL, 'elim', 'US', 1, 40.2978500000, -78.9425300000), (1115970, 1001453, 'Eliot', NULL, 'eliot', 'US', 1, 43.1531400000, -70.8000600000), (1115971, 1001429, 'Elizabeth', NULL, 'elizabeth', 'US', 1, 39.0634100000, -81.3951200000), (1115972, 1001417, 'Elizabeth', NULL, 'elizabeth', 'US', 1, 40.6639900000, -74.2107000000), (1115973, 1001422, 'Elizabeth', NULL, 'elizabeth', 'US', 1, 40.2692400000, -79.8897700000), (1115974, 1001450, 'Elizabeth', NULL, 'elizabeth', 'US', 1, 39.3602700000, -104.5969100000), (1115975, 1001447, 'Elizabeth City', NULL, 'elizabeth-city', 'US', 1, 36.2946000000, -76.2510500000), (1115976, 1001454, 'Elizabethton', NULL, 'elizabethton', 'US', 1, 36.3487200000, -82.2106900000), (1115977, 1001425, 'Elizabethtown', NULL, 'elizabethtown', 'US', 1, 37.4458800000, -88.3050400000), (1115978, 1001419, 'Elizabethtown', NULL, 'elizabethtown', 'US', 1, 37.6939500000, -85.8591300000), (1115979, 1001447, 'Elizabethtown', NULL, 'elizabethtown', 'US', 1, 34.6293400000, -78.6052900000), (1115980, 1001452, 'Elizabethtown', NULL, 'elizabethtown', 'US', 1, 44.2161600000, -73.5909700000), (1115981, 1001422, 'Elizabethtown', NULL, 'elizabethtown', 'US', 1, 40.1528700000, -76.6027500000), (1115982, 1001422, 'Elizabethville', NULL, 'elizabethville', 'US', 1, 40.5489700000, -76.8119200000), (1115983, 1001421, 'Elk City', NULL, 'elk-city', 'US', 1, 35.4119900000, -99.4042600000), (1115984, 1001406, 'Elk County', NULL, 'elk-county', 'US', 1, 37.4536900000, -96.2440900000), (1115985, 1001422, 'Elk County', NULL, 'elk-county', 'US', 1, 41.4252300000, -78.6490900000), (1115986, 1001419, 'Elk Creek', NULL, 'elk-creek', 'US', 1, 38.1003400000, -85.3710700000), (1115987, 1001416, 'Elk Grove', NULL, 'elk-grove', 'US', 1, 38.4088000000, -121.3716200000), (1115988, 1001425, 'Elk Grove Village', NULL, 'elk-grove-village', 'US', 1, 42.0039200000, -87.9703500000), (1115989, 1001462, 'Elk Plain', NULL, 'elk-plain', 'US', 1, 47.0531600000, -122.3976200000), (1115990, 1001445, 'Elk Point', NULL, 'elk-point', 'US', 1, 42.6833300000, -96.6836500000), (1115991, 1001426, 'Elk Rapids', NULL, 'elk-rapids', 'US', 1, 44.8955600000, -85.4164600000), (1115992, 1001414, 'Elk Ridge', NULL, 'elk-ridge', 'US', 1, 40.0113400000, -111.6768700000), (1115993, 1001420, 'Elk River', NULL, 'elk-river', 'US', 1, 45.3038500000, -93.5671800000), (1115994, 1001459, 'Elk Run Heights', NULL, 'elk-run-heights', 'US', 1, 42.4669300000, -92.2565700000), (1115995, 1001459, 'Elkader', NULL, 'elkader', 'US', 1, 42.8538700000, -91.4054200000), (1115996, 1001419, 'Elkfork', NULL, 'elkfork', 'US', 1, 37.9648100000, -83.1329500000), (1115997, 1001407, 'Elkhart', NULL, 'elkhart', 'US', 1, 31.6251700000, -95.5794000000), (1115998, 1001440, 'Elkhart', NULL, 'elkhart', 'US', 1, 41.6819900000, -85.9766700000), (1115999, 1001406, 'Elkhart', NULL, 'elkhart', 'US', 1, 37.0080800000, -101.8901700000), (1116000, 1001440, 'Elkhart County', NULL, 'elkhart-county', 'US', 1, 41.5973800000, -85.8587600000), (1116001, 1001408, 'Elkhorn', NULL, 'elkhorn', 'US', 1, 41.2863900000, -96.2344700000), (1116002, 1001441, 'Elkhorn', NULL, 'elkhorn', 'US', 1, 42.6727900000, -88.5445400000), (1116003, 1001416, 'Elkhorn', NULL, 'elkhorn', 'US', 1, 36.8244000000, -121.7405000000), (1116004, 1001447, 'Elkin', NULL, 'elkin', 'US', 1, 36.2443000000, -80.8484000000), (1116005, 1001444, 'Elkins', NULL, 'elkins', 'US', 1, 36.0014700000, -94.0082500000), (1116006, 1001429, 'Elkins', NULL, 'elkins', 'US', 1, 38.9259400000, -79.8467300000), (1116007, 1001422, 'Elkland', NULL, 'elkland', 'US', 1, 41.9861800000, -77.3108100000), (1116008, 1001458, 'Elko', NULL, 'elko', 'US', 1, 40.8324200000, -115.7631200000), (1116009, 1001458, 'Elko County', NULL, 'elko-county', 'US', 1, 41.1458300000, -115.3577600000), (1116010, 1001420, 'Elko New Market', NULL, 'elko-new-market', 'US', 1, 44.5647200000, -93.3269400000), (1116011, 1001401, 'Elkridge', NULL, 'elkridge', 'US', 1, 39.2126100000, -76.7135800000), (1116012, 1001419, 'Elkton', NULL, 'elkton', 'US', 1, 36.8100400000, -87.1541700000), (1116013, 1001401, 'Elkton', NULL, 'elkton', 'US', 1, 39.6067800000, -75.8332700000), (1116014, 1001427, 'Elkton', NULL, 'elkton', 'US', 1, 38.4079000000, -78.6236300000), (1116015, 1001429, 'Elkview', NULL, 'elkview', 'US', 1, 38.4428800000, -81.4804000000), (1116016, 1001455, 'Ellaville', NULL, 'ellaville', 'US', 1, 32.2382100000, -84.3090800000), (1116017, 1001418, 'Ellendale', NULL, 'ellendale', 'US', 1, 46.0027500000, -98.5270500000), (1116018, 1001462, 'Ellensburg', NULL, 'ellensburg', 'US', 1, 46.9965100000, -120.5478500000), (1116019, 1001436, 'Ellenton', NULL, 'ellenton', 'US', 1, 27.5217100000, -82.5276000000), (1116020, 1001452, 'Ellenville', NULL, 'ellenville', 'US', 1, 41.7170400000, -74.3957100000), (1116021, 1001447, 'Ellerbe', NULL, 'ellerbe', 'US', 1, 35.0712600000, -79.7614400000), (1116022, 1001440, 'Ellettsville', NULL, 'ellettsville', 'US', 1, 39.2339300000, -86.6250000000), (1116023, 1001450, 'Ellicott', NULL, 'ellicott', 'US', 1, 38.8383300000, -104.3869100000), (1116024, 1001401, 'Ellicott City', NULL, 'ellicott-city', 'US', 1, 39.2673300000, -76.7983100000), (1116025, 1001455, 'Ellijay', NULL, 'ellijay', 'US', 1, 34.6948100000, -84.4821500000), (1116026, 1001435, 'Ellington', NULL, 'ellington', 'US', 1, 41.9039900000, -72.4698100000), (1116027, 1001406, 'Ellinwood', NULL, 'ellinwood', 'US', 1, 38.3555700000, -98.5809100000), (1116028, 1001419, 'Elliott County', NULL, 'elliott-county', 'US', 1, 38.1178900000, -83.0976200000), (1116029, 1001406, 'Ellis', NULL, 'ellis', 'US', 1, 38.9380700000, -99.5606700000), (1116030, 1001406, 'Ellis County', NULL, 'ellis-county', 'US', 1, 38.9147500000, -99.3172300000), (1116031, 1001421, 'Ellis County', NULL, 'ellis-county', 'US', 1, 36.2183600000, -99.7546000000), (1116032, 1001407, 'Ellis County', NULL, 'ellis-county', 'US', 1, 32.3484300000, -96.7944800000), (1116033, 1001417, 'Ellisburg', NULL, 'ellisburg', 'US', 1, 39.9137200000, -75.0104500000), (1116034, 1001451, 'Ellisville', NULL, 'ellisville', 'US', 1, 38.5925500000, -90.5870700000), (1116035, 1001430, 'Ellisville', NULL, 'ellisville', 'US', 1, 31.6040500000, -89.1956100000), (1116036, 1001422, 'Ellport', NULL, 'ellport', 'US', 1, 40.8639500000, -80.2589500000), (1116037, 1001406, 'Ellsworth', NULL, 'ellsworth', 'US', 1, 38.7305600000, -98.2281100000), (1116038, 1001453, 'Ellsworth', NULL, 'ellsworth', 'US', 1, 44.5434100000, -68.4194600000), (1116039, 1001441, 'Ellsworth', NULL, 'ellsworth', 'US', 1, 44.7321900000, -92.4874100000), (1116040, 1001406, 'Ellsworth County', NULL, 'ellsworth-county', 'US', 1, 38.6966300000, -98.2047300000), (1116041, 1001422, 'Ellwood City', NULL, 'ellwood-city', 'US', 1, 40.8617300000, -80.2864500000), (1116042, 1001447, 'Elm City', NULL, 'elm-city', 'US', 1, 35.8065500000, -77.8633200000), (1116043, 1001407, 'Elm Creek', NULL, 'elm-creek', 'US', 1, 28.7744200000, -100.4917400000), (1116044, 1001441, 'Elm Grove', NULL, 'elm-grove', 'US', 1, 43.0430700000, -88.0789800000), (1116045, 1001444, 'Elm Springs', NULL, 'elm-springs', 'US', 1, 36.2061900000, -94.2343700000), (1116046, 1001462, 'Elma', NULL, 'elma', 'US', 1, 47.0034300000, -123.4087700000), (1116047, 1001452, 'Elma Center', NULL, 'elma-center', 'US', 1, 42.8297800000, -78.6361400000), (1116048, 1001407, 'Elmendorf', NULL, 'elmendorf', 'US', 1, 29.2560700000, -98.3327900000), (1116049, 1001400, 'Elmendorf Air Force Base', NULL, 'elmendorf-air-force-base', 'US', 1, 61.2570300000, -149.6313900000), (1116050, 1001417, 'Elmer', NULL, 'elmer', 'US', 1, 39.5951100000, -75.1701800000), (1116051, 1001425, 'Elmhurst', NULL, 'elmhurst', 'US', 1, 41.8994700000, -87.9403400000), (1116052, 1001452, 'Elmhurst', NULL, 'elmhurst', 'US', 1, 40.7364900000, -73.8779100000), (1116053, 1001452, 'Elmira', NULL, 'elmira', 'US', 1, 42.0898000000, -76.8077300000), (1116054, 1001452, 'Elmira Heights', NULL, 'elmira-heights', 'US', 1, 42.1298000000, -76.8207900000), (1116055, 1001452, 'Elmont', NULL, 'elmont', 'US', 1, 40.7009400000, -73.7129100000), (1116056, 1001456, 'Elmore', NULL, 'elmore', 'US', 1, 32.5387400000, -86.3149700000), (1116057, 1001456, 'Elmore County', NULL, 'elmore-county', 'US', 1, 32.5966500000, -86.1491500000), (1116058, 1001460, 'Elmore County', NULL, 'elmore-county', 'US', 1, 43.3539000000, -115.4691800000), (1116059, 1001452, 'Elmsford', NULL, 'elmsford', 'US', 1, 41.0551000000, -73.8201300000), (1116060, 1001457, 'Elmwood', NULL, 'elmwood', 'US', 1, 29.9565900000, -90.1898000000), (1116061, 1001425, 'Elmwood', NULL, 'elmwood', 'US', 1, 40.7778200000, -89.9665000000), (1116062, 1001425, 'Elmwood Park', NULL, 'elmwood-park', 'US', 1, 41.9211400000, -87.8092300000), (1116063, 1001417, 'Elmwood Park', NULL, 'elmwood-park', 'US', 1, 40.9039900000, -74.1184800000), (1116064, 1001447, 'Elon', NULL, 'elon', 'US', 1, 36.1029100000, -79.5066900000), (1116065, 1001434, 'Eloy', NULL, 'eloy', 'US', 1, 32.7559000000, -111.5548400000), (1116066, 1001447, 'Elroy', NULL, 'elroy', 'US', 1, 35.3426600000, -77.9085900000), (1116067, 1001441, 'Elroy', NULL, 'elroy', 'US', 1, 43.7408000000, -90.2723500000), (1116068, 1001407, 'Elsa', NULL, 'elsa', 'US', 1, 26.2934000000, -97.9930600000), (1116069, 1001451, 'Elsberry', NULL, 'elsberry', 'US', 1, 39.1667200000, -90.7809600000), (1116070, 1001399, 'Elsmere', NULL, 'elsmere', 'US', 1, 39.7392800000, -75.5979800000), (1116071, 1001419, 'Elsmere', NULL, 'elsmere', 'US', 1, 39.0125600000, -84.6046700000), (1116072, 1001452, 'Eltingville', NULL, 'eltingville', 'US', 1, 40.5453800000, -74.1657000000), (1116073, 1001457, 'Elton', NULL, 'elton', 'US', 1, 30.4813100000, -92.6957000000), (1116074, 1001422, 'Elverson', NULL, 'elverson', 'US', 1, 40.1567600000, -75.8327100000), (1116075, 1001416, 'Elverta', NULL, 'elverta', 'US', 1, 38.7137900000, -121.4627300000), (1116076, 1001451, 'Elvins', NULL, 'elvins', 'US', 1, 37.8367200000, -90.5329000000), (1116077, 1001406, 'Elwood', NULL, 'elwood', 'US', 1, 39.7555500000, -94.8724700000), (1116078, 1001417, 'Elwood', NULL, 'elwood', 'US', 1, 39.5765100000, -74.7168300000), (1116079, 1001440, 'Elwood', NULL, 'elwood', 'US', 1, 40.2769800000, -85.8419200000), (1116080, 1001425, 'Elwood', NULL, 'elwood', 'US', 1, 41.4039200000, -88.1117200000), (1116081, 1001408, 'Elwood', NULL, 'elwood', 'US', 1, 40.5902800000, -99.8609500000), (1116082, 1001452, 'Elwood', NULL, 'elwood', 'US', 1, 40.8453800000, -73.3351200000), (1116083, 1001414, 'Elwood', NULL, 'elwood', 'US', 1, 41.6904800000, -112.1410600000), (1116084, 1001459, 'Ely', NULL, 'ely', 'US', 1, 41.8736200000, -91.5851800000), (1116085, 1001420, 'Ely', NULL, 'ely', 'US', 1, 47.9032400000, -91.8670900000), (1116086, 1001458, 'Ely', NULL, 'ely', 'US', 1, 39.2474400000, -114.8886300000), (1116087, 1001422, 'Elysburg', NULL, 'elysburg', 'US', 1, 40.8645300000, -76.5524600000), (1116088, 1001455, 'Emanuel County', NULL, 'emanuel-county', 'US', 1, 32.5897600000, -82.3017100000), (1116089, 1001447, 'Emerald Isle', NULL, 'emerald-isle', 'US', 1, 34.6779400000, -76.9507800000), (1116090, 1001416, 'Emerald Lake Hills', NULL, 'emerald-lake-hills', 'US', 1, 37.4646600000, -122.2680200000), (1116091, 1001422, 'Emerald Lakes', NULL, 'emerald-lakes', 'US', 1, 41.0884200000, -75.4196300000), (1116092, 1001456, 'Emerald Mountain', NULL, 'emerald-mountain', 'US', 1, 32.4479300000, -86.0942900000), (1116093, 1001455, 'Emerson', NULL, 'emerson', 'US', 1, 34.1270400000, -84.7554900000), (1116094, 1001417, 'Emerson', NULL, 'emerson', 'US', 1, 40.9762100000, -74.0262500000), (1116095, 1001452, 'Emerson Hill', NULL, 'emerson-hill', 'US', 1, 40.6087200000, -74.0959800000), (1116096, 1001414, 'Emery County', NULL, 'emery-county', 'US', 1, 38.9967700000, -110.7006700000), (1116097, 1001416, 'Emeryville', NULL, 'emeryville', 'US', 1, 37.8313200000, -122.2852500000), (1116098, 1001422, 'Emigsville', NULL, 'emigsville', 'US', 1, 40.0217600000, -76.7280200000), (1116099, 1001419, 'Eminence', NULL, 'eminence', 'US', 1, 38.3700700000, -85.1805100000), (1116100, 1001451, 'Eminence', NULL, 'eminence', 'US', 1, 37.1506000000, -91.3576400000), (1116101, 1001422, 'Emmaus', NULL, 'emmaus', 'US', 1, 40.5395400000, -75.4968500000), (1116102, 1001459, 'Emmet County', NULL, 'emmet-county', 'US', 1, 43.3780200000, -94.6784800000), (1116103, 1001426, 'Emmet County', NULL, 'emmet-county', 'US', 1, 45.5875400000, -84.9814700000), (1116104, 1001459, 'Emmetsburg', NULL, 'emmetsburg', 'US', 1, 43.1127400000, -94.6830400000), (1116105, 1001460, 'Emmett', NULL, 'emmett', 'US', 1, 43.8735000000, -116.4993000000), (1116106, 1001401, 'Emmitsburg', NULL, 'emmitsburg', 'US', 1, 39.7045400000, -77.3269300000), (1116107, 1001418, 'Emmons County', NULL, 'emmons-county', 'US', 1, 46.2850200000, -100.2387800000), (1116108, 1001407, 'Emory', NULL, 'emory', 'US', 1, 32.8745700000, -95.7655200000), (1116109, 1001427, 'Emory', NULL, 'emory', 'US', 1, 36.7728900000, -81.8362300000), (1116110, 1001416, 'Empire', NULL, 'empire', 'US', 1, 37.6382600000, -120.9021500000), (1116111, 1001406, 'Emporia', NULL, 'emporia', 'US', 1, 38.4039000000, -96.1816600000), (1116112, 1001427, 'Emporia', NULL, 'emporia', 'US', 1, 36.6859800000, -77.5424800000), (1116113, 1001422, 'Emporium', NULL, 'emporium', 'US', 1, 41.5114500000, -78.2352900000), (1116114, 1001422, 'Emsworth', NULL, 'emsworth', 'US', 1, 40.5100700000, -80.0945000000), (1116115, 1001407, 'Encantada-Ranchito-El Calaboz', NULL, 'encantada-ranchito-el-calaboz', 'US', 1, 26.0334400000, -97.6330700000), (1116116, 1001434, 'Encanto', NULL, 'encanto', 'US', 1, 33.4793700000, -112.0782300000), (1116117, 1001423, 'Enchanted Hills', NULL, 'enchanted-hills', 'US', 1, 35.3367600000, -106.5929600000), (1116118, 1001416, 'Encinitas', NULL, 'encinitas', 'US', 1, 33.0369900000, -117.2919800000), (1116119, 1001416, 'Encino', NULL, 'encino', 'US', 1, 34.1591700000, -118.5011900000), (1116120, 1001452, 'Endicott', NULL, 'endicott', 'US', 1, 42.0984100000, -76.0493700000), (1116121, 1001452, 'Endwell', NULL, 'endwell', 'US', 1, 42.1128500000, -76.0210300000), (1116122, 1001425, 'Energy', NULL, 'energy', 'US', 1, 37.7739400000, -89.0264600000), (1116123, 1001462, 'Enetai', NULL, 'enetai', 'US', 1, 47.5848200000, -122.5987500000), (1116124, 1001447, 'Enfield', NULL, 'enfield', 'US', 1, 36.1809900000, -77.6666400000), (1116125, 1001435, 'Enfield', NULL, 'enfield', 'US', 1, 41.9762100000, -72.5917600000), (1116126, 1001453, 'Enfield', NULL, 'enfield', 'US', 1, 45.2489400000, -68.5683600000), (1116127, 1001404, 'Enfield', NULL, 'enfield', 'US', 1, 43.6406300000, -72.1439800000), (1116128, 1001444, 'England', NULL, 'england', 'US', 1, 34.5442600000, -91.9690300000), (1116129, 1001436, 'Englewood', NULL, 'englewood', 'US', 1, 26.9620100000, -82.3526000000), (1116130, 1001454, 'Englewood', NULL, 'englewood', 'US', 1, 35.4245200000, -84.4874300000), (1116131, 1001425, 'Englewood', NULL, 'englewood', 'US', 1, 41.7797600000, -87.6458800000), (1116132, 1001417, 'Englewood', NULL, 'englewood', 'US', 1, 40.8928800000, -73.9726400000), (1116133, 1001450, 'Englewood', NULL, 'englewood', 'US', 1, 39.6477700000, -104.9877600000), (1116134, 1001417, 'Englewood Cliffs', NULL, 'englewood-cliffs', 'US', 1, 40.8853800000, -73.9523600000), (1116135, 1001440, 'English', NULL, 'english', 'US', 1, 38.3345000000, -86.4641500000), (1116136, 1001417, 'Englishtown', NULL, 'englishtown', 'US', 1, 40.2973300000, -74.3582000000), (1116137, 1001422, 'Enhaut', NULL, 'enhaut', 'US', 1, 40.2317600000, -76.8269200000), (1116138, 1001421, 'Enid', NULL, 'enid', 'US', 1, 36.3955900000, -97.8783900000), (1116139, 1001455, 'Enigma', NULL, 'enigma', 'US', 1, 31.4129700000, -83.3290500000), (1116140, 1001422, 'Enlow', NULL, 'enlow', 'US', 1, 40.4542300000, -80.2331100000), (1116141, 1001407, 'Ennis', NULL, 'ennis', 'US', 1, 32.3293100000, -96.6252700000), (1116142, 1001414, 'Enoch', NULL, 'enoch', 'US', 1, 37.7733100000, -113.0243900000), (1116143, 1001447, 'Enochville', NULL, 'enochville', 'US', 1, 35.5298600000, -80.6681200000), (1116144, 1001422, 'Enola', NULL, 'enola', 'US', 1, 40.2900900000, -76.9338600000), (1116145, 1001427, 'Enon', NULL, 'enon', 'US', 1, 37.3307000000, -77.3227600000), (1116146, 1001409, 'Enosburg Falls', NULL, 'enosburg-falls', 'US', 1, 44.9069900000, -72.8065200000), (1116147, 1001436, 'Ensley', NULL, 'ensley', 'US', 1, 30.5188100000, -87.2727500000), (1116148, 1001456, 'Enterprise', NULL, 'enterprise', 'US', 1, 31.3151700000, -85.8552200000), (1116149, 1001458, 'Enterprise', NULL, 'enterprise', 'US', 1, 36.0252500000, -115.2419400000), (1116150, 1001415, 'Enterprise', NULL, 'enterprise', 'US', 1, 45.4262600000, -117.2787800000), (1116151, 1001414, 'Enterprise', NULL, 'enterprise', 'US', 1, 37.5735900000, -113.7191300000), (1116152, 1001462, 'Entiat', NULL, 'entiat', 'US', 1, 47.6759600000, -120.2084100000), (1116153, 1001462, 'Enumclaw', NULL, 'enumclaw', 'US', 1, 47.2042700000, -121.9915000000), (1116154, 1001414, 'Ephraim', NULL, 'ephraim', 'US', 1, 39.3596800000, -111.5863100000), (1116155, 1001422, 'Ephrata', NULL, 'ephrata', 'US', 1, 40.1798200000, -76.1788400000), (1116156, 1001462, 'Ephrata', NULL, 'ephrata', 'US', 1, 47.3176400000, -119.5536500000), (1116157, 1001404, 'Epping', NULL, 'epping', 'US', 1, 43.0334200000, -71.0742300000), (1116158, 1001404, 'Epsom', NULL, 'epsom', 'US', 1, 43.2228600000, -71.3320100000), (1116159, 1001459, 'Epworth', NULL, 'epworth', 'US', 1, 42.4450000000, -90.9320800000), (1116160, 1001457, 'Erath', NULL, 'erath', 'US', 1, 29.9582600000, -92.0359600000), (1116161, 1001407, 'Erath County', NULL, 'erath-county', 'US', 1, 32.2362600000, -98.2179700000), (1116162, 1001414, 'Erda', NULL, 'erda', 'US', 1, 40.6127200000, -112.3043900000), (1116163, 1001421, 'Erick', NULL, 'erick', 'US', 1, 35.2153300000, -99.8664900000), (1116164, 1001406, 'Erie', NULL, 'erie', 'US', 1, 37.5681100000, -95.2433100000), (1116165, 1001425, 'Erie', NULL, 'erie', 'US', 1, 41.6564200000, -90.0792900000), (1116166, 1001422, 'Erie', NULL, 'erie', 'US', 1, 42.1292200000, -80.0850600000), (1116167, 1001450, 'Erie', NULL, 'erie', 'US', 1, 40.0502600000, -105.0499800000), (1116168, 1001452, 'Erie County', NULL, 'erie-county', 'US', 1, 42.7582400000, -78.7796600000), (1116169, 1001422, 'Erie County', NULL, 'erie-county', 'US', 1, 42.1174800000, -80.0981100000), (1116170, 1001454, 'Erin', NULL, 'erin', 'US', 1, 36.3183900000, -87.6947400000), (1116171, 1001462, 'Erlands Point-Kitsap Lake', NULL, 'erlands-point-kitsap-lake', 'US', 1, 47.5971900000, -122.7022500000), (1116172, 1001419, 'Erlanger', NULL, 'erlanger', 'US', 1, 39.0167300000, -84.6007800000), (1116173, 1001417, 'Erma', NULL, 'erma', 'US', 1, 38.9877600000, -74.9017000000), (1116174, 1001433, 'Erving', NULL, 'erving', 'US', 1, 42.6000900000, -72.3981400000), (1116175, 1001447, 'Erwin', NULL, 'erwin', 'US', 1, 35.3268300000, -78.6761300000), (1116176, 1001454, 'Erwin', NULL, 'erwin', 'US', 1, 36.1451100000, -82.4168100000), (1116177, 1001457, 'Erwinville', NULL, 'erwinville', 'US', 1, 30.5310200000, -91.4078900000), (1116178, 1001416, 'Escalon', NULL, 'escalon', 'US', 1, 37.7978100000, -120.9979200000), (1116179, 1001456, 'Escambia County', NULL, 'escambia-county', 'US', 1, 31.1261200000, -87.1616200000), (1116180, 1001436, 'Escambia County', NULL, 'escambia-county', 'US', 1, 30.6144000000, -87.3413600000), (1116181, 1001426, 'Escanaba', NULL, 'escanaba', 'US', 1, 45.7452500000, -87.0645800000), (1116182, 1001430, 'Escatawpa', NULL, 'escatawpa', 'US', 1, 30.4404800000, -88.5436300000), (1116183, 1001407, 'Escobares', NULL, 'escobares', 'US', 1, 26.4106200000, -98.9625300000), (1116184, 1001416, 'Escondido', NULL, 'escondido', 'US', 1, 33.1192100000, -117.0864200000), (1116185, 1001420, 'Esko', NULL, 'esko', 'US', 1, 46.7057800000, -92.3632500000), (1116186, 1001458, 'Esmeralda County', NULL, 'esmeralda-county', 'US', 1, 37.7847000000, -117.6323700000), (1116187, 1001416, 'Esparto', NULL, 'esparto', 'US', 1, 38.6921300000, -122.0171900000), (1116188, 1001423, 'Española', NULL, 'espanola', 'US', 1, 35.9911300000, -106.0805800000), (1116189, 1001462, 'Esperance', NULL, 'esperance', 'US', 1, 47.7889900000, -122.3554100000), (1116190, 1001422, 'Espy', NULL, 'espy', 'US', 1, 41.0062000000, -76.4099400000), (1116191, 1001401, 'Essex', NULL, 'essex', 'US', 1, 39.3092700000, -76.4749600000), (1116192, 1001433, 'Essex', NULL, 'essex', 'US', 1, 42.6320400000, -70.7828300000), (1116193, 1001427, 'Essex County', NULL, 'essex-county', 'US', 1, 37.9390600000, -76.9409000000), (1116194, 1001433, 'Essex County', NULL, 'essex-county', 'US', 1, 42.6388700000, -70.8679200000), (1116195, 1001417, 'Essex County', NULL, 'essex-county', 'US', 1, 40.7870700000, -74.2468700000), (1116196, 1001452, 'Essex County', NULL, 'essex-county', 'US', 1, 44.1172200000, -73.7727100000), (1116197, 1001409, 'Essex County', NULL, 'essex-county', 'US', 1, 44.7277900000, -71.7360500000), (1116198, 1001417, 'Essex Fells', NULL, 'essex-fells', 'US', 1, 40.8245400000, -74.2845900000), (1116199, 1001409, 'Essex Junction', NULL, 'essex-junction', 'US', 1, 44.4906100000, -73.1109600000), (1116200, 1001435, 'Essex Village', NULL, 'essex-village', 'US', 1, 41.3554400000, -72.3910100000), (1116201, 1001426, 'Essexville', NULL, 'essexville', 'US', 1, 43.6153000000, -83.8419200000), (1116202, 1001415, 'Estacada', NULL, 'estacada', 'US', 1, 45.2895700000, -122.3337000000), (1116203, 1001423, 'Estancia', NULL, 'estancia', 'US', 1, 34.7583900000, -106.0558500000), (1116204, 1001417, 'Estell Manor', NULL, 'estell-manor', 'US', 1, 39.4120600000, -74.7423900000), (1116205, 1001457, 'Estelle', NULL, 'estelle', 'US', 1, 29.8457600000, -90.1067400000), (1116206, 1001400, 'Ester', NULL, 'ester', 'US', 1, 64.8472200000, -148.0144400000), (1116207, 1001436, 'Estero', NULL, 'estero', 'US', 1, 26.4381400000, -81.8067500000), (1116208, 1001450, 'Estes Park', NULL, 'estes-park', 'US', 1, 40.3772100000, -105.5216700000), (1116209, 1001451, 'Esther', NULL, 'esther', 'US', 1, 37.8503300000, -90.4987400000), (1116210, 1001459, 'Estherville', NULL, 'estherville', 'US', 1, 43.4016300000, -94.8327600000), (1116211, 1001443, 'Estill', NULL, 'estill', 'US', 1, 32.7548900000, -81.2420500000), (1116212, 1001419, 'Estill County', NULL, 'estill-county', 'US', 1, 37.6924800000, -83.9643300000), (1116213, 1001454, 'Estill Springs', NULL, 'estill-springs', 'US', 1, 35.2706400000, -86.1280400000), (1116214, 1001442, 'Ethete', NULL, 'ethete', 'US', 1, 43.0249600000, -108.7726200000), (1116215, 1001453, 'Etna', NULL, 'etna', 'US', 1, 44.8209000000, -69.1111500000), (1116216, 1001422, 'Etna', NULL, 'etna', 'US', 1, 40.5042400000, -79.9489400000), (1116217, 1001447, 'Etowah', NULL, 'etowah', 'US', 1, 35.3176200000, -82.5942900000), (1116218, 1001454, 'Etowah', NULL, 'etowah', 'US', 1, 35.3234100000, -84.5249300000), (1116219, 1001456, 'Etowah County', NULL, 'etowah-county', 'US', 1, 34.0452500000, -86.0347600000), (1116220, 1001427, 'Ettrick', NULL, 'ettrick', 'US', 1, 37.2401500000, -77.4299800000), (1116221, 1001416, 'Eucalyptus Hills', NULL, 'eucalyptus-hills', 'US', 1, 32.8797700000, -116.9466900000), (1116222, 1001444, 'Eudora', NULL, 'eudora', 'US', 1, 33.1095700000, -91.2620600000), (1116223, 1001406, 'Eudora', NULL, 'eudora', 'US', 1, 38.9433400000, -95.0985800000), (1116224, 1001456, 'Eufaula', NULL, 'eufaula', 'US', 1, 31.8912700000, -85.1454900000), (1116225, 1001421, 'Eufaula', NULL, 'eufaula', 'US', 1, 35.2872200000, -95.5825000000), (1116226, 1001415, 'Eugene', NULL, 'eugene', 'US', 1, 44.0520700000, -123.0867500000), (1116227, 1001455, 'Euharlee', NULL, 'euharlee', 'US', 1, 34.1448200000, -84.9330000000), (1116228, 1001407, 'Euless', NULL, 'euless', 'US', 1, 32.8370700000, -97.0819500000), (1116229, 1001457, 'Eunice', NULL, 'eunice', 'US', 1, 30.4943700000, -92.4176300000), (1116230, 1001423, 'Eunice', NULL, 'eunice', 'US', 1, 32.4373400000, -103.1590800000), (1116231, 1001430, 'Eupora', NULL, 'eupora', 'US', 1, 33.5406800000, -89.2670100000), (1116232, 1001406, 'Eureka', NULL, 'eureka', 'US', 1, 37.8239200000, -96.2891700000), (1116233, 1001451, 'Eureka', NULL, 'eureka', 'US', 1, 38.5025500000, -90.6279000000), (1116234, 1001425, 'Eureka', NULL, 'eureka', 'US', 1, 40.7214300000, -89.2728600000), (1116235, 1001416, 'Eureka', NULL, 'eureka', 'US', 1, 40.8020700000, -124.1636700000), (1116236, 1001446, 'Eureka', NULL, 'eureka', 'US', 1, 48.8799600000, -115.0535000000), (1116237, 1001458, 'Eureka', NULL, 'eureka', 'US', 1, 39.5127100000, -115.9606100000), (1116238, 1001458, 'Eureka County', NULL, 'eureka-county', 'US', 1, 39.9838900000, -116.2685600000), (1116239, 1001443, 'Eureka Mill', NULL, 'eureka-mill', 'US', 1, 34.7176400000, -81.1937000000), (1116240, 1001444, 'Eureka Springs', NULL, 'eureka-springs', 'US', 1, 36.4011800000, -93.7379700000), (1116241, 1001436, 'Eustis', NULL, 'eustis', 'US', 1, 28.8527700000, -81.6853500000), (1116242, 1001456, 'Eutaw', NULL, 'eutaw', 'US', 1, 32.8405900000, -87.8876200000), (1116243, 1001407, 'Evadale', NULL, 'evadale', 'US', 1, 30.3549300000, -94.0726800000), (1116244, 1001457, 'Evangeline Parish', NULL, 'evangeline-parish', 'US', 1, 30.7289400000, -92.4059000000), (1116245, 1001455, 'Evans', NULL, 'evans', 'US', 1, 33.5337500000, -82.1306700000), (1116246, 1001450, 'Evans', NULL, 'evans', 'US', 1, 40.3763700000, -104.6921900000), (1116247, 1001422, 'Evans City', NULL, 'evans-city', 'US', 1, 40.7692300000, -80.0628400000), (1116248, 1001455, 'Evans County', NULL, 'evans-county', 'US', 1, 32.1567600000, -81.8868800000), (1116249, 1001422, 'Evansburg', NULL, 'evansburg', 'US', 1, 40.1809400000, -75.4290700000), (1116250, 1001459, 'Evansdale', NULL, 'evansdale', 'US', 1, 42.4691500000, -92.2810200000), (1116251, 1001425, 'Evanston', NULL, 'evanston', 'US', 1, 42.0411400000, -87.6900600000), (1116252, 1001442, 'Evanston', NULL, 'evanston', 'US', 1, 41.2682800000, -110.9632400000), (1116253, 1001440, 'Evansville', NULL, 'evansville', 'US', 1, 37.9747600000, -87.5558500000), (1116254, 1001441, 'Evansville', NULL, 'evansville', 'US', 1, 42.7802800000, -89.2992800000), (1116255, 1001442, 'Evansville', NULL, 'evansville', 'US', 1, 42.8599700000, -106.2683600000), (1116256, 1001426, 'Evart', NULL, 'evart', 'US', 1, 43.9005800000, -85.2581000000), (1116257, 1001420, 'Eveleth', NULL, 'eveleth', 'US', 1, 47.4624300000, -92.5399100000), (1116258, 1001433, 'Everett', NULL, 'everett', 'US', 1, 42.4084300000, -71.0536600000), (1116259, 1001422, 'Everett', NULL, 'everett', 'US', 1, 40.0114700000, -78.3733500000), (1116260, 1001462, 'Everett', NULL, 'everett', 'US', 1, 47.9789800000, -122.2020800000), (1116261, 1001456, 'Evergreen', NULL, 'evergreen', 'US', 1, 31.4335000000, -86.9569200000), (1116262, 1001441, 'Evergreen', NULL, 'evergreen', 'US', 1, 44.8424700000, -89.6376200000), (1116263, 1001450, 'Evergreen', NULL, 'evergreen', 'US', 1, 39.6333200000, -105.3172100000), (1116264, 1001446, 'Evergreen', NULL, 'evergreen', 'US', 1, 48.2257900000, -114.2762400000), (1116265, 1001425, 'Evergreen Park', NULL, 'evergreen-park', 'US', 1, 41.7205900000, -87.7017200000), (1116266, 1001407, 'Everman', NULL, 'everman', 'US', 1, 32.6309700000, -97.2891800000), (1116267, 1001462, 'Everson', NULL, 'everson', 'US', 1, 48.9201200000, -122.3426600000), (1116268, 1001417, 'Ewing', NULL, 'ewing', 'US', 1, 40.2698300000, -74.7998800000), (1116269, 1001420, 'Excelsior', NULL, 'excelsior', 'US', 1, 44.9033000000, -93.5663500000), (1116270, 1001451, 'Excelsior Springs', NULL, 'excelsior-springs', 'US', 1, 39.3391700000, -94.2260600000), (1116271, 1001404, 'Exeter', NULL, 'exeter', 'US', 1, 42.9814800000, -70.9478300000), (1116272, 1001422, 'Exeter', NULL, 'exeter', 'US', 1, 41.3206400000, -75.8190800000), (1116273, 1001461, 'Exeter', NULL, 'exeter', 'US', 1, 41.5776000000, -71.5375600000), (1116274, 1001416, 'Exeter', NULL, 'exeter', 'US', 1, 36.2960600000, -119.1420500000), (1116275, 1001427, 'Exmore', NULL, 'exmore', 'US', 1, 37.5318000000, -75.8229900000), (1116276, 1001455, 'Experiment', NULL, 'experiment', 'US', 1, 33.2653900000, -84.2815900000), (1116277, 1001422, 'Exton', NULL, 'exton', 'US', 1, 40.0290000000, -75.6207700000), (1116278, 1001420, 'Eyota', NULL, 'eyota', 'US', 1, 43.9883000000, -92.2285000000), (1116279, 1001407, 'Fabens', NULL, 'fabens', 'US', 1, 31.5023400000, -106.1585900000), (1116280, 1001422, 'Factoryville', NULL, 'factoryville', 'US', 1, 41.5631300000, -75.7826900000), (1116281, 1001451, 'Fair Grove', NULL, 'fair-grove', 'US', 1, 37.3839300000, -93.1513000000), (1116282, 1001417, 'Fair Haven', NULL, 'fair-haven', 'US', 1, 40.3606700000, -74.0381900000), (1116283, 1001409, 'Fair Haven', NULL, 'fair-haven', 'US', 1, 43.5947900000, -73.2656700000), (1116284, 1001417, 'Fair Lawn', NULL, 'fair-lawn', 'US', 1, 40.9403800000, -74.1318100000), (1116285, 1001455, 'Fair Oaks', NULL, 'fair-oaks', 'US', 1, 33.9164900000, -84.5446500000), (1116286, 1001416, 'Fair Oaks', NULL, 'fair-oaks', 'US', 1, 38.6446300000, -121.2721700000), (1116287, 1001407, 'Fair Oaks Ranch', NULL, 'fair-oaks-ranch', 'US', 1, 29.7457800000, -98.6433600000), (1116288, 1001426, 'Fair Plain', NULL, 'fair-plain', 'US', 1, 42.0869900000, -86.4558600000), (1116289, 1001459, 'Fairbank', NULL, 'fairbank', 'US', 1, 42.6391500000, -92.0471200000), (1116290, 1001400, 'Fairbanks', NULL, 'fairbanks', 'US', 1, 64.8377800000, -147.7163900000), (1116291, 1001400, 'Fairbanks North Star Borough', NULL, 'fairbanks-north-star-borough', 'US', 1, 64.8333300000, -146.4166700000), (1116292, 1001416, 'Fairbanks Ranch', NULL, 'fairbanks-ranch', 'US', 1, 32.9939300000, -117.1872600000), (1116293, 1001455, 'Fairburn', NULL, 'fairburn', 'US', 1, 33.5670600000, -84.5810400000), (1116294, 1001425, 'Fairbury', NULL, 'fairbury', 'US', 1, 40.7472600000, -88.5147800000), (1116295, 1001408, 'Fairbury', NULL, 'fairbury', 'US', 1, 40.1372200000, -97.1805900000), (1116296, 1001422, 'Fairchance', NULL, 'fairchance', 'US', 1, 39.8248000000, -79.7544900000), (1116297, 1001462, 'Fairchild Air Force Base', NULL, 'fairchild-air-force-base', 'US', 1, 47.6187900000, -117.6482600000), (1116298, 1001407, 'Fairchilds', NULL, 'fairchilds', 'US', 1, 29.4313500000, -95.7802300000), (1116299, 1001419, 'Fairdale', NULL, 'fairdale', 'US', 1, 38.1050700000, -85.7588500000), (1116300, 1001422, 'Fairdale', NULL, 'fairdale', 'US', 1, 39.8870200000, -79.9681100000), (1116301, 1001443, 'Fairfax', NULL, 'fairfax', 'US', 1, 32.9590500000, -81.2365000000), (1116302, 1001421, 'Fairfax', NULL, 'fairfax', 'US', 1, 36.5736600000, -96.7042000000), (1116303, 1001427, 'Fairfax', NULL, 'fairfax', 'US', 1, 38.8462200000, -77.3063700000), (1116304, 1001459, 'Fairfax', NULL, 'fairfax', 'US', 1, 41.9194500000, -91.7810100000), (1116305, 1001420, 'Fairfax', NULL, 'fairfax', 'US', 1, 44.5291300000, -94.7208200000), (1116306, 1001416, 'Fairfax', NULL, 'fairfax', 'US', 1, 37.9871500000, -122.5888700000), (1116307, 1001427, 'Fairfax County', NULL, 'fairfax-county', 'US', 1, 38.8346900000, -77.2762200000), (1116308, 1001427, 'Fairfax Station', NULL, 'fairfax-station', 'US', 1, 38.8009500000, -77.3255400000), (1116309, 1001456, 'Fairfield', NULL, 'fairfield', 'US', 1, 33.4859400000, -86.9119400000), (1116310, 1001425, 'Fairfield', NULL, 'fairfield', 'US', 1, 38.3789400000, -88.3597700000), (1116311, 1001407, 'Fairfield', NULL, 'fairfield', 'US', 1, 31.7246100000, -96.1652500000), (1116312, 1001435, 'Fairfield', NULL, 'fairfield', 'US', 1, 41.1412100000, -73.2637300000), (1116313, 1001459, 'Fairfield', NULL, 'fairfield', 'US', 1, 41.0086300000, -91.9626700000), (1116314, 1001453, 'Fairfield', NULL, 'fairfield', 'US', 1, 44.5884000000, -69.5986600000), (1116315, 1001417, 'Fairfield', NULL, 'fairfield', 'US', 1, 40.8837100000, -74.3059800000), (1116316, 1001416, 'Fairfield', NULL, 'fairfield', 'US', 1, 38.2493600000, -122.0399700000), (1116317, 1001460, 'Fairfield', NULL, 'fairfield', 'US', 1, 43.3465700000, -114.7917300000), (1116318, 1001444, 'Fairfield Bay', NULL, 'fairfield-bay', 'US', 1, 35.5942400000, -92.2779300000), (1116319, 1001443, 'Fairfield County', NULL, 'fairfield-county', 'US', 1, 34.3951100000, -81.1212300000), (1116320, 1001435, 'Fairfield County', NULL, 'fairfield-county', 'US', 1, 41.2249600000, -73.3712000000), (1116321, 1001454, 'Fairfield Glade', NULL, 'fairfield-glade', 'US', 1, 36.0003500000, -84.8863400000), (1116322, 1001447, 'Fairfield Harbour', NULL, 'fairfield-harbour', 'US', 1, 35.0765500000, -76.9635600000), (1116323, 1001440, 'Fairfield Heights', NULL, 'fairfield-heights', 'US', 1, 39.8286100000, -86.3822400000), (1116324, 1001443, 'Fairforest', NULL, 'fairforest', 'US', 1, 34.9565100000, -82.0101100000), (1116325, 1001433, 'Fairhaven', NULL, 'fairhaven', 'US', 1, 41.6376000000, -70.9036500000), (1116326, 1001456, 'Fairhope', NULL, 'fairhope', 'US', 1, 30.5229700000, -87.9033300000), (1116327, 1001422, 'Fairhope', NULL, 'fairhope', 'US', 1, 40.1136800000, -79.8397700000), (1116328, 1001401, 'Fairland', NULL, 'fairland', 'US', 1, 39.0762200000, -76.9577500000), (1116329, 1001421, 'Fairland', NULL, 'fairland', 'US', 1, 36.7511800000, -94.8474600000), (1116330, 1001427, 'Fairlawn', NULL, 'fairlawn', 'US', 1, 37.1484600000, -80.5783900000), (1116331, 1001429, 'Fairlea', NULL, 'fairlea', 'US', 1, 37.7806800000, -80.4570200000), (1116332, 1001422, 'Fairless Hills', NULL, 'fairless-hills', 'US', 1, 40.1795500000, -74.8551600000), (1116333, 1001416, 'Fairmead', NULL, 'fairmead', 'US', 1, 37.0763300000, -120.1929500000), (1116334, 1001447, 'Fairmont', NULL, 'fairmont', 'US', 1, 34.4968300000, -79.1142000000), (1116335, 1001429, 'Fairmont', NULL, 'fairmont', 'US', 1, 39.4850800000, -80.1425800000), (1116336, 1001425, 'Fairmont', NULL, 'fairmont', 'US', 1, 41.5561400000, -88.0592300000), (1116337, 1001420, 'Fairmont', NULL, 'fairmont', 'US', 1, 43.6521800000, -94.4610800000), (1116338, 1001425, 'Fairmont City', NULL, 'fairmont-city', 'US', 1, 38.6497700000, -90.0931600000), (1116339, 1001454, 'Fairmount', NULL, 'fairmount', 'US', 1, 35.1814600000, -85.3235700000), (1116340, 1001440, 'Fairmount', NULL, 'fairmount', 'US', 1, 40.4153200000, -85.6505300000), (1116341, 1001452, 'Fairmount', NULL, 'fairmount', 'US', 1, 43.0472900000, -76.2385400000), (1116342, 1001401, 'Fairmount Heights', NULL, 'fairmount-heights', 'US', 1, 38.9009500000, -76.9155300000), (1116343, 1001447, 'Fairplains', NULL, 'fairplains', 'US', 1, 36.1984700000, -81.1528600000), (1116344, 1001450, 'Fairplay', NULL, 'fairplay', 'US', 1, 39.2247100000, -106.0019600000), (1116345, 1001452, 'Fairport', NULL, 'fairport', 'US', 1, 43.0986700000, -77.4419400000), (1116346, 1001417, 'Fairton', NULL, 'fairton', 'US', 1, 39.3817800000, -75.2199100000), (1116347, 1001455, 'Fairview', NULL, 'fairview', 'US', 1, 34.9456300000, -85.2844000000), (1116348, 1001447, 'Fairview', NULL, 'fairview', 'US', 1, 35.5140100000, -82.3959500000), (1116349, 1001454, 'Fairview', NULL, 'fairview', 'US', 1, 35.9820100000, -87.1214000000), (1116350, 1001421, 'Fairview', NULL, 'fairview', 'US', 1, 36.2689200000, -98.4798000000), (1116351, 1001407, 'Fairview', NULL, 'fairview', 'US', 1, 33.1579000000, -96.6316600000), (1116352, 1001417, 'Fairview', NULL, 'fairview', 'US', 1, 40.8126000000, -73.9990300000), (1116353, 1001452, 'Fairview', NULL, 'fairview', 'US', 1, 41.7237000000, -73.9198600000), (1116354, 1001422, 'Fairview', NULL, 'fairview', 'US', 1, 42.0314500000, -80.2553400000), (1116355, 1001416, 'Fairview', NULL, 'fairview', 'US', 1, 37.6785400000, -122.0458000000), (1116356, 1001415, 'Fairview', NULL, 'fairview', 'US', 1, 45.5384500000, -122.4339800000), (1116357, 1001414, 'Fairview', NULL, 'fairview', 'US', 1, 39.6263500000, -111.4396300000), (1116358, 1001425, 'Fairview Heights', NULL, 'fairview-heights', 'US', 1, 38.5889400000, -89.9903800000), (1116359, 1001440, 'Fairview Park', NULL, 'fairview-park', 'US', 1, 39.6803100000, -87.4175200000), (1116360, 1001436, 'Fairview Shores', NULL, 'fairview-shores', 'US', 1, 28.5911100000, -81.3942400000), (1116361, 1001422, 'Fairview-Ferndale', NULL, 'fairview-ferndale', 'US', 1, 40.7803700000, -76.5752800000), (1116362, 1001406, 'Fairway', NULL, 'fairway', 'US', 1, 39.0222300000, -94.6319000000), (1116363, 1001462, 'Fairwood', NULL, 'fairwood', 'US', 1, 47.4484300000, -122.1573400000), (1116364, 1001401, 'Fairwood', NULL, 'fairwood', 'US', 1, 38.9566500000, -76.7777200000), (1116365, 1001420, 'Falcon Heights', NULL, 'falcon-heights', 'US', 1, 44.9916300000, -93.1663300000), (1116366, 1001407, 'Falcon Lake Estates', NULL, 'falcon-lake-estates', 'US', 1, 26.8728200000, -99.2553100000), (1116367, 1001452, 'Falconer', NULL, 'falconer', 'US', 1, 42.1186700000, -79.1983800000), (1116368, 1001407, 'Falfurrias', NULL, 'falfurrias', 'US', 1, 27.2269900000, -98.1441700000), (1116369, 1001456, 'Falkville', NULL, 'falkville', 'US', 1, 34.3684300000, -86.9086200000), (1116370, 1001454, 'Fall Branch', NULL, 'fall-branch', 'US', 1, 36.4181600000, -82.6237600000), (1116371, 1001462, 'Fall City', NULL, 'fall-city', 'US', 1, 47.5673200000, -121.8887300000), (1116372, 1001441, 'Fall Creek', NULL, 'fall-creek', 'US', 1, 44.7635700000, -91.2771000000), (1116373, 1001433, 'Fall River', NULL, 'fall-river', 'US', 1, 41.7014900000, -71.1550500000), (1116374, 1001441, 'Fall River', NULL, 'fall-river', 'US', 1, 43.3844300000, -89.0451100000), (1116375, 1001445, 'Fall River County', NULL, 'fall-river-county', 'US', 1, 43.2393900000, -103.5275600000), (1116376, 1001416, 'Fallbrook', NULL, 'fallbrook', 'US', 1, 33.3764200000, -117.2511500000), (1116377, 1001454, 'Falling Water', NULL, 'falling-water', 'US', 1, 35.2031200000, -85.2535700000), (1116378, 1001458, 'Fallon', NULL, 'fallon', 'US', 1, 39.4735300000, -118.7773700000), (1116379, 1001446, 'Fallon County', NULL, 'fallon-county', 'US', 1, 46.3340200000, -104.4174200000), (1116380, 1001427, 'Falls Church', NULL, 'falls-church', 'US', 1, 38.8823300000, -77.1710900000), (1116381, 1001408, 'Falls City', NULL, 'falls-city', 'US', 1, 40.0608400000, -95.6019300000), (1116382, 1001407, 'Falls County', NULL, 'falls-county', 'US', 1, 31.2532700000, -96.9358500000), (1116383, 1001422, 'Falls Creek', NULL, 'falls-creek', 'US', 1, 41.1450600000, -78.8044700000), (1116384, 1001452, 'Fallsburg', NULL, 'fallsburg', 'US', 1, 41.7320400000, -74.6012700000), (1116385, 1001401, 'Fallston', NULL, 'fallston', 'US', 1, 39.5145500000, -76.4110700000); INSERT INTO `[[dbprefix]]t_city` VALUES (1116386, 1001419, 'Falmouth', NULL, 'falmouth', 'US', 1, 38.6767400000, -84.3302100000), (1116387, 1001427, 'Falmouth', NULL, 'falmouth', 'US', 1, 38.3240200000, -77.4683200000), (1116388, 1001433, 'Falmouth', NULL, 'falmouth', 'US', 1, 41.5515000000, -70.6147500000), (1116389, 1001453, 'Falmouth', NULL, 'falmouth', 'US', 1, 43.7295300000, -70.2419900000), (1116390, 1001453, 'Falmouth Foreside', NULL, 'falmouth-foreside', 'US', 1, 43.7348000000, -70.2078300000), (1116391, 1001407, 'Fannett', NULL, 'fannett', 'US', 1, 29.9260500000, -94.2507400000), (1116392, 1001455, 'Fannin County', NULL, 'fannin-county', 'US', 1, 34.8641100000, -84.3198500000), (1116393, 1001407, 'Fannin County', NULL, 'fannin-county', 'US', 1, 33.5938100000, -96.1068300000), (1116394, 1001417, 'Fanwood', NULL, 'fanwood', 'US', 1, 40.6409400000, -74.3834800000), (1116395, 1001452, 'Far Rockaway', NULL, 'far-rockaway', 'US', 1, 40.6053800000, -73.7551300000), (1116396, 1001418, 'Fargo', NULL, 'fargo', 'US', 1, 46.8771900000, -96.7898000000), (1116397, 1001420, 'Faribault', NULL, 'faribault', 'US', 1, 44.2949600000, -93.2688300000), (1116398, 1001420, 'Faribault County', NULL, 'faribault-county', 'US', 1, 43.6739300000, -93.9480000000), (1116399, 1001459, 'Farley', NULL, 'farley', 'US', 1, 42.4427800000, -91.0062500000), (1116400, 1001419, 'Farley', NULL, 'farley', 'US', 1, 37.0463400000, -88.5685600000), (1116401, 1001400, 'Farm Loop', NULL, 'farm-loop', 'US', 1, 61.6389100000, -149.1421500000), (1116402, 1001425, 'Farmer City', NULL, 'farmer-city', 'US', 1, 40.2433700000, -88.6425700000), (1116403, 1001407, 'Farmers Branch', NULL, 'farmers-branch', 'US', 1, 32.9265100000, -96.8961200000), (1116404, 1001400, 'Farmers Loop', NULL, 'farmers-loop', 'US', 1, 64.9082200000, -147.6986600000), (1116405, 1001440, 'Farmersburg', NULL, 'farmersburg', 'US', 1, 39.2486500000, -87.3819600000), (1116406, 1001407, 'Farmersville', NULL, 'farmersville', 'US', 1, 33.1634500000, -96.3599800000), (1116407, 1001416, 'Farmersville', NULL, 'farmersville', 'US', 1, 36.2977300000, -119.2067800000), (1116408, 1001457, 'Farmerville', NULL, 'farmerville', 'US', 1, 32.7734700000, -92.4057000000), (1116409, 1001453, 'Farmingdale', NULL, 'farmingdale', 'US', 1, 44.2445100000, -69.7714300000), (1116410, 1001417, 'Farmingdale', NULL, 'farmingdale', 'US', 1, 40.1965000000, -74.1684800000), (1116411, 1001452, 'Farmingdale', NULL, 'farmingdale', 'US', 1, 40.7326000000, -73.4454000000), (1116412, 1001444, 'Farmington', NULL, 'farmington', 'US', 1, 36.0420200000, -94.2471500000), (1116413, 1001451, 'Farmington', NULL, 'farmington', 'US', 1, 37.7808800000, -90.4217900000), (1116414, 1001430, 'Farmington', NULL, 'farmington', 'US', 1, 34.9300900000, -88.4522700000), (1116415, 1001435, 'Farmington', NULL, 'farmington', 'US', 1, 41.7198200000, -72.8320400000), (1116416, 1001425, 'Farmington', NULL, 'farmington', 'US', 1, 40.6980900000, -90.0059500000), (1116417, 1001426, 'Farmington', NULL, 'farmington', 'US', 1, 42.4644800000, -83.3763200000), (1116418, 1001453, 'Farmington', NULL, 'farmington', 'US', 1, 44.6706200000, -70.1511700000), (1116419, 1001420, 'Farmington', NULL, 'farmington', 'US', 1, 44.6402400000, -93.1435500000), (1116420, 1001404, 'Farmington', NULL, 'farmington', 'US', 1, 43.3898000000, -71.0650600000), (1116421, 1001423, 'Farmington', NULL, 'farmington', 'US', 1, 36.7280600000, -108.2186900000), (1116422, 1001414, 'Farmington', NULL, 'farmington', 'US', 1, 40.9805000000, -111.8874400000), (1116423, 1001426, 'Farmington Hills', NULL, 'farmington-hills', 'US', 1, 42.4853100000, -83.3771600000), (1116424, 1001452, 'Farmingville', NULL, 'farmingville', 'US', 1, 40.8312100000, -73.0295500000), (1116425, 1001440, 'Farmland', NULL, 'farmland', 'US', 1, 40.1878200000, -85.1274700000), (1116426, 1001447, 'Farmville', NULL, 'farmville', 'US', 1, 35.5954400000, -77.5852500000), (1116427, 1001427, 'Farmville', NULL, 'farmville', 'US', 1, 37.3021000000, -78.3919400000), (1116428, 1001414, 'Farr West', NULL, 'farr-west', 'US', 1, 41.2971700000, -112.0277200000), (1116429, 1001454, 'Farragut', NULL, 'farragut', 'US', 1, 35.8845200000, -84.1535300000), (1116430, 1001422, 'Farrell', NULL, 'farrell', 'US', 1, 41.2122800000, -80.4967400000), (1116431, 1001407, 'Farwell', NULL, 'farwell', 'US', 1, 34.3834100000, -103.0380000000), (1116432, 1001407, 'Fate', NULL, 'fate', 'US', 1, 32.9415100000, -96.3813700000), (1116433, 1001445, 'Faulk County', NULL, 'faulk-county', 'US', 1, 45.0710100000, -99.1452500000), (1116434, 1001444, 'Faulkner County', NULL, 'faulkner-county', 'US', 1, 35.1469800000, -92.3320400000), (1116435, 1001445, 'Faulkton', NULL, 'faulkton', 'US', 1, 45.0349700000, -99.1240000000), (1116436, 1001427, 'Fauquier County', NULL, 'fauquier-county', 'US', 1, 38.7385500000, -77.8092700000), (1116437, 1001422, 'Faxon', NULL, 'faxon', 'US', 1, 41.2484100000, -76.9771900000), (1116438, 1001456, 'Fayette', NULL, 'fayette', 'US', 1, 33.6845500000, -87.8308500000), (1116439, 1001451, 'Fayette', NULL, 'fayette', 'US', 1, 39.1458700000, -92.6837900000), (1116440, 1001430, 'Fayette', NULL, 'fayette', 'US', 1, 31.7115500000, -91.0606600000), (1116441, 1001459, 'Fayette', NULL, 'fayette', 'US', 1, 42.8419300000, -91.8021100000), (1116442, 1001453, 'Fayette', NULL, 'fayette', 'US', 1, 44.4089600000, -70.0336700000), (1116443, 1001456, 'Fayette County', NULL, 'fayette-county', 'US', 1, 33.7212100000, -87.7388600000), (1116444, 1001455, 'Fayette County', NULL, 'fayette-county', 'US', 1, 33.4139400000, -84.4941900000), (1116445, 1001425, 'Fayette County', NULL, 'fayette-county', 'US', 1, 39.0001900000, -89.0241400000), (1116446, 1001440, 'Fayette County', NULL, 'fayette-county', 'US', 1, 39.6400600000, -85.1787300000), (1116447, 1001419, 'Fayette County', NULL, 'fayette-county', 'US', 1, 38.0423300000, -84.4587300000), (1116448, 1001454, 'Fayette County', NULL, 'fayette-county', 'US', 1, 35.1970800000, -89.4143700000), (1116449, 1001407, 'Fayette County', NULL, 'fayette-county', 'US', 1, 29.8767900000, -96.9197600000), (1116450, 1001429, 'Fayette County', NULL, 'fayette-county', 'US', 1, 38.0287800000, -81.0811900000), (1116451, 1001459, 'Fayette County', NULL, 'fayette-county', 'US', 1, 42.8625900000, -91.8443200000), (1116452, 1001422, 'Fayette County', NULL, 'fayette-county', 'US', 1, 39.9199000000, -79.6473700000), (1116453, 1001456, 'Fayetteville', NULL, 'fayetteville', 'US', 1, 33.1456700000, -86.4058100000), (1116454, 1001444, 'Fayetteville', NULL, 'fayetteville', 'US', 1, 36.0625800000, -94.1574300000), (1116455, 1001455, 'Fayetteville', NULL, 'fayetteville', 'US', 1, 33.4487300000, -84.4549300000), (1116456, 1001447, 'Fayetteville', NULL, 'fayetteville', 'US', 1, 35.0526600000, -78.8783600000), (1116457, 1001454, 'Fayetteville', NULL, 'fayetteville', 'US', 1, 35.1520300000, -86.5705500000), (1116458, 1001422, 'Fayetteville', NULL, 'fayetteville', 'US', 1, 39.9112000000, -77.5499900000), (1116459, 1001429, 'Fayetteville', NULL, 'fayetteville', 'US', 1, 38.0528900000, -81.1039900000), (1116460, 1001452, 'Fayetteville', NULL, 'fayetteville', 'US', 1, 43.0297900000, -76.0043600000), (1116461, 1001447, 'Fearrington Village', NULL, 'fearrington-village', 'US', 1, 35.8037600000, -79.0902900000), (1116462, 1001422, 'Feasterville', NULL, 'feasterville', 'US', 1, 40.1440000000, -75.0051700000), (1116463, 1001436, 'Feather Sound', NULL, 'feather-sound', 'US', 1, 27.9007900000, -82.6734900000), (1116464, 1001450, 'Federal Heights', NULL, 'federal-heights', 'US', 1, 39.8513700000, -104.9985900000), (1116465, 1001462, 'Federal Way', NULL, 'federal-way', 'US', 1, 47.3223200000, -122.3126200000), (1116466, 1001401, 'Federalsburg', NULL, 'federalsburg', 'US', 1, 38.6942800000, -75.7721600000), (1116467, 1001462, 'Felida', NULL, 'felida', 'US', 1, 45.7095600000, -122.7073200000), (1116468, 1001422, 'Fellsburg', NULL, 'fellsburg', 'US', 1, 40.1831300000, -79.8242100000), (1116469, 1001436, 'Fellsmere', NULL, 'fellsmere', 'US', 1, 27.7678100000, -80.6014400000), (1116470, 1001399, 'Felton', NULL, 'felton', 'US', 1, 39.0084500000, -75.5779800000), (1116471, 1001416, 'Felton', NULL, 'felton', 'US', 1, 37.0513400000, -122.0733000000), (1116472, 1001441, 'Fennimore', NULL, 'fennimore', 'US', 1, 42.9836000000, -90.6554000000), (1116473, 1001426, 'Fennville', NULL, 'fennville', 'US', 1, 42.5939200000, -86.1017000000), (1116474, 1001451, 'Fenton', NULL, 'fenton', 'US', 1, 38.5131100000, -90.4359500000), (1116475, 1001426, 'Fenton', NULL, 'fenton', 'US', 1, 42.7978100000, -83.7049500000), (1116476, 1001454, 'Fentress County', NULL, 'fentress-county', 'US', 1, 36.3804900000, -84.9324600000), (1116477, 1001440, 'Ferdinand', NULL, 'ferdinand', 'US', 1, 38.2239400000, -86.8622200000), (1116478, 1001446, 'Fergus County', NULL, 'fergus-county', 'US', 1, 47.2635700000, -109.2243300000), (1116479, 1001420, 'Fergus Falls', NULL, 'fergus-falls', 'US', 1, 46.2830200000, -96.0775600000), (1116480, 1001451, 'Ferguson', NULL, 'ferguson', 'US', 1, 38.7442200000, -90.3053900000), (1116481, 1001411, 'Fern Acres', NULL, 'fern-acres', 'US', 1, 19.5122200000, -155.0802800000), (1116482, 1001419, 'Fern Creek', NULL, 'fern-creek', 'US', 1, 38.1597900000, -85.5877400000), (1116483, 1001436, 'Fern Park', NULL, 'fern-park', 'US', 1, 28.6491600000, -81.3511800000), (1116484, 1001462, 'Fern Prairie', NULL, 'fern-prairie', 'US', 1, 45.6365100000, -122.3987000000), (1116485, 1001436, 'Fernandina Beach', NULL, 'fernandina-beach', 'US', 1, 30.6696800000, -81.4625900000), (1116486, 1001401, 'Ferndale', NULL, 'ferndale', 'US', 1, 39.1831600000, -76.6402400000), (1116487, 1001426, 'Ferndale', NULL, 'ferndale', 'US', 1, 42.4605900000, -83.1346500000), (1116488, 1001422, 'Ferndale', NULL, 'ferndale', 'US', 1, 40.2889600000, -78.9147500000), (1116489, 1001416, 'Ferndale', NULL, 'ferndale', 'US', 1, 40.5762400000, -124.2639400000), (1116490, 1001462, 'Ferndale', NULL, 'ferndale', 'US', 1, 48.8465000000, -122.5910100000), (1116491, 1001458, 'Fernley', NULL, 'fernley', 'US', 1, 39.6079700000, -119.2518300000), (1116492, 1001422, 'Fernway', NULL, 'fernway', 'US', 1, 40.6947900000, -80.1308900000), (1116493, 1001457, 'Ferriday', NULL, 'ferriday', 'US', 1, 31.6301700000, -91.5545600000), (1116494, 1001407, 'Ferris', NULL, 'ferris', 'US', 1, 32.5340300000, -96.6655500000), (1116495, 1001409, 'Ferrisburgh', NULL, 'ferrisburgh', 'US', 1, 44.2056100000, -73.2462300000), (1116496, 1001414, 'Ferron', NULL, 'ferron', 'US', 1, 39.0935800000, -111.1332200000), (1116497, 1001427, 'Ferrum', NULL, 'ferrum', 'US', 1, 36.9229200000, -80.0133700000), (1116498, 1001462, 'Ferry County', NULL, 'ferry-county', 'US', 1, 48.4700700000, -118.5164900000), (1116499, 1001436, 'Ferry Pass', NULL, 'ferry-pass', 'US', 1, 30.5102000000, -87.2124700000), (1116500, 1001426, 'Ferrysburg', NULL, 'ferrysburg', 'US', 1, 43.0844600000, -86.2203300000), (1116501, 1001418, 'Fessenden', NULL, 'fessenden', 'US', 1, 47.6491700000, -99.6292900000), (1116502, 1001451, 'Festus', NULL, 'festus', 'US', 1, 38.2206100000, -90.3959500000), (1116503, 1001416, 'Fetters Hot Springs-Agua Caliente', NULL, 'fetters-hot-springs-agua-caliente', 'US', 1, 38.3214000000, -122.4868200000), (1116504, 1001462, 'Fife', NULL, 'fife', 'US', 1, 47.2392700000, -122.3570700000), (1116505, 1001462, 'Fife Heights', NULL, 'fife-heights', 'US', 1, 47.2589900000, -122.3456800000), (1116506, 1001407, 'Fifth Street', NULL, 'fifth-street', 'US', 1, 29.5982900000, -95.5513300000), (1116507, 1001460, 'Filer', NULL, 'filer', 'US', 1, 42.5701900000, -114.6078200000), (1116508, 1001416, 'Fillmore', NULL, 'fillmore', 'US', 1, 34.3991600000, -118.9181500000), (1116509, 1001414, 'Fillmore', NULL, 'fillmore', 'US', 1, 38.9688500000, -112.3235500000), (1116510, 1001420, 'Fillmore County', NULL, 'fillmore-county', 'US', 1, 43.6740000000, -92.0901700000), (1116511, 1001408, 'Fillmore County', NULL, 'fillmore-county', 'US', 1, 40.5246700000, -97.5965000000), (1116512, 1001452, 'Financial District', NULL, 'financial-district', 'US', 1, 40.7078900000, -74.0085700000), (1116513, 1001454, 'Fincastle', NULL, 'fincastle', 'US', 1, 36.4098000000, -84.0477000000), (1116514, 1001427, 'Fincastle', NULL, 'fincastle', 'US', 1, 37.4993000000, -79.8772600000), (1116515, 1001417, 'Finderne', NULL, 'finderne', 'US', 1, 40.5631600000, -74.5776600000), (1116516, 1001418, 'Finley', NULL, 'finley', 'US', 1, 47.5141600000, -97.8359300000), (1116517, 1001462, 'Finley', NULL, 'finley', 'US', 1, 46.1540200000, -119.0339000000), (1116518, 1001406, 'Finney County', NULL, 'finney-county', 'US', 1, 38.0443000000, -100.7369900000), (1116519, 1001462, 'Fircrest', NULL, 'fircrest', 'US', 1, 47.2395400000, -122.5159600000), (1116520, 1001416, 'Firebaugh', NULL, 'firebaugh', 'US', 1, 36.8588400000, -120.4560100000), (1116521, 1001450, 'Firestone', NULL, 'firestone', 'US', 1, 40.1124800000, -104.9366400000), (1116522, 1001455, 'Firing Range', NULL, 'firing-range', 'US', 1, 33.4375200000, -82.6906800000), (1116523, 1001434, 'First Mesa', NULL, 'first-mesa', 'US', 1, 35.8366700000, -110.3815200000), (1116524, 1001452, 'Firthcliffe', NULL, 'firthcliffe', 'US', 1, 41.4392600000, -74.0451400000), (1116525, 1001436, 'Fish Hawk', NULL, 'fish-hawk', 'US', 1, 27.8505800000, -82.2109200000), (1116526, 1001440, 'Fish Lake', NULL, 'fish-lake', 'US', 1, 41.5667100000, -86.5519600000), (1116527, 1001425, 'Fisher', NULL, 'fisher', 'US', 1, 40.3147600000, -88.3500500000), (1116528, 1001407, 'Fisher County', NULL, 'fisher-county', 'US', 1, 32.7428200000, -100.4021700000), (1116529, 1001440, 'Fishers', NULL, 'fishers', 'US', 1, 39.9555900000, -86.0138700000), (1116530, 1001427, 'Fishersville', NULL, 'fishersville', 'US', 1, 38.0990200000, -78.9691900000), (1116531, 1001400, 'Fishhook', NULL, 'fishhook', 'US', 1, 61.7440200000, -149.2361300000), (1116532, 1001452, 'Fishkill', NULL, 'fishkill', 'US', 1, 41.5356500000, -73.8990300000), (1116533, 1001433, 'Fiskdale', NULL, 'fiskdale', 'US', 1, 42.1162100000, -72.1134100000), (1116534, 1001433, 'Fitchburg', NULL, 'fitchburg', 'US', 1, 42.5834200000, -71.8023000000), (1116535, 1001441, 'Fitchburg', NULL, 'fitchburg', 'US', 1, 42.9608300000, -89.4698400000), (1116536, 1001455, 'Fitzgerald', NULL, 'fitzgerald', 'US', 1, 31.7149100000, -83.2526500000), (1116537, 1001404, 'Fitzwilliam', NULL, 'fitzwilliam', 'US', 1, 42.7806400000, -72.1417500000), (1116538, 1001462, 'Five Corners', NULL, 'five-corners', 'US', 1, 45.6845600000, -122.5751000000), (1116539, 1001443, 'Five Forks', NULL, 'five-forks', 'US', 1, 34.8048400000, -82.2295600000), (1116540, 1001436, 'Five Points', NULL, 'five-points', 'US', 1, 30.2091200000, -82.6373500000), (1116541, 1001422, 'Fivepointville', NULL, 'fivepointville', 'US', 1, 40.1828700000, -76.0510600000), (1116542, 1001436, 'Flagami', NULL, 'flagami', 'US', 1, 25.7623200000, -80.3161600000), (1116543, 1001436, 'Flagler Beach', NULL, 'flagler-beach', 'US', 1, 29.4749800000, -81.1270000000), (1116544, 1001436, 'Flagler County', NULL, 'flagler-county', 'US', 1, 29.4711500000, -81.2929900000), (1116545, 1001436, 'Flagler Estates', NULL, 'flagler-estates', 'US', 1, 29.6455300000, -81.4570000000), (1116546, 1001434, 'Flagstaff', NULL, 'flagstaff', 'US', 1, 35.1980700000, -111.6512700000), (1116547, 1001425, 'Flanagan', NULL, 'flanagan', 'US', 1, 40.8780900000, -88.8611800000), (1116548, 1001452, 'Flanders', NULL, 'flanders', 'US', 1, 40.9034300000, -72.6175900000), (1116549, 1001445, 'Flandreau', NULL, 'flandreau', 'US', 1, 44.0494200000, -96.5953200000), (1116550, 1001451, 'Flat River', NULL, 'flat-river', 'US', 1, 37.8500500000, -90.5167900000), (1116551, 1001447, 'Flat Rock', NULL, 'flat-rock', 'US', 1, 35.2712300000, -82.4415100000), (1116552, 1001426, 'Flat Rock', NULL, 'flat-rock', 'US', 1, 42.0964300000, -83.2918700000), (1116553, 1001452, 'Flatbush', NULL, 'flatbush', 'US', 1, 40.6520500000, -73.9590300000), (1116554, 1001446, 'Flathead County', NULL, 'flathead-county', 'US', 1, 48.2951600000, -114.0498100000), (1116555, 1001452, 'Flatlands', NULL, 'flatlands', 'US', 1, 40.6212200000, -73.9348600000), (1116556, 1001407, 'Flatonia', NULL, 'flatonia', 'US', 1, 29.6877300000, -97.1086000000), (1116557, 1001419, 'Flatwoods', NULL, 'flatwoods', 'US', 1, 38.5225800000, -82.7171100000), (1116558, 1001422, 'Fleetwood', NULL, 'fleetwood', 'US', 1, 40.4539800000, -75.8179800000), (1116559, 1001419, 'Fleming County', NULL, 'fleming-county', 'US', 1, 38.3701100000, -83.6966500000), (1116560, 1001436, 'Fleming Island', NULL, 'fleming-island', 'US', 1, 30.0933000000, -81.7189800000), (1116561, 1001419, 'Flemingsburg', NULL, 'flemingsburg', 'US', 1, 38.4223000000, -83.7338100000), (1116562, 1001417, 'Flemington', NULL, 'flemington', 'US', 1, 40.5123300000, -74.8593300000), (1116563, 1001422, 'Flemington', NULL, 'flemington', 'US', 1, 41.1264600000, -77.4716500000), (1116564, 1001447, 'Fletcher', NULL, 'fletcher', 'US', 1, 35.4306700000, -82.5012300000), (1116565, 1001421, 'Fletcher', NULL, 'fletcher', 'US', 1, 34.8231200000, -98.2442200000), (1116566, 1001426, 'Flint', NULL, 'flint', 'US', 1, 43.0125300000, -83.6874600000), (1116567, 1001456, 'Flint City', NULL, 'flint-city', 'US', 1, 34.5231500000, -86.9702900000), (1116568, 1001444, 'Flippin', NULL, 'flippin', 'US', 1, 36.2789600000, -92.5971100000), (1116569, 1001456, 'Flomaton', NULL, 'flomaton', 'US', 1, 31.0001800000, -87.2608100000), (1116570, 1001425, 'Flora', NULL, 'flora', 'US', 1, 38.6689400000, -88.4856000000), (1116571, 1001430, 'Flora', NULL, 'flora', 'US', 1, 32.5432000000, -90.3092600000), (1116572, 1001440, 'Flora', NULL, 'flora', 'US', 1, 40.5472600000, -86.5244400000), (1116573, 1001423, 'Flora Vista', NULL, 'flora-vista', 'US', 1, 36.7944500000, -108.0803500000), (1116574, 1001436, 'Floral City', NULL, 'floral-city', 'US', 1, 28.7499900000, -82.2967600000), (1116575, 1001452, 'Floral Park', NULL, 'floral-park', 'US', 1, 40.7237100000, -73.7048500000), (1116576, 1001456, 'Florala', NULL, 'florala', 'US', 1, 31.0051800000, -86.3280000000), (1116577, 1001456, 'Florence', NULL, 'florence', 'US', 1, 34.7998100000, -87.6772500000), (1116578, 1001419, 'Florence', NULL, 'florence', 'US', 1, 38.9989500000, -84.6266100000), (1116579, 1001430, 'Florence', NULL, 'florence', 'US', 1, 32.1534800000, -90.1312000000), (1116580, 1001443, 'Florence', NULL, 'florence', 'US', 1, 34.1954300000, -79.7625600000), (1116581, 1001407, 'Florence', NULL, 'florence', 'US', 1, 30.8413000000, -97.7936300000), (1116582, 1001417, 'Florence', NULL, 'florence', 'US', 1, 39.7342800000, -74.9182200000), (1116583, 1001434, 'Florence', NULL, 'florence', 'US', 1, 33.0314500000, -111.3873400000), (1116584, 1001441, 'Florence', NULL, 'florence', 'US', 1, 45.9221800000, -88.2518000000), (1116585, 1001450, 'Florence', NULL, 'florence', 'US', 1, 38.3902800000, -105.1186000000), (1116586, 1001415, 'Florence', NULL, 'florence', 'US', 1, 43.9826200000, -124.0998400000), (1116587, 1001443, 'Florence County', NULL, 'florence-county', 'US', 1, 34.0243900000, -79.7028200000), (1116588, 1001441, 'Florence County', NULL, 'florence-county', 'US', 1, 45.8484500000, -88.3981600000), (1116589, 1001416, 'Florence-Graham', NULL, 'florence-graham', 'US', 1, 33.9677200000, -118.2443800000), (1116590, 1001407, 'Floresville', NULL, 'floresville', 'US', 1, 29.1335800000, -98.1561200000), (1116591, 1001417, 'Florham Park', NULL, 'florham-park', 'US', 1, 40.7878800000, -74.3882100000), (1116592, 1001452, 'Florida', NULL, 'florida', 'US', 1, 41.3317600000, -74.3568200000), (1116593, 1001436, 'Florida City', NULL, 'florida-city', 'US', 1, 25.4478900000, -80.4792200000), (1116594, 1001436, 'Florida Ridge', NULL, 'florida-ridge', 'US', 1, 27.5803100000, -80.3867200000), (1116595, 1001416, 'Florin', NULL, 'florin', 'US', 1, 38.4960200000, -121.4088400000), (1116596, 1001427, 'Floris', NULL, 'floris', 'US', 1, 38.9370600000, -77.4127700000), (1116597, 1001451, 'Florissant', NULL, 'florissant', 'US', 1, 38.7892200000, -90.3226100000), (1116598, 1001425, 'Flossmoor', NULL, 'flossmoor', 'US', 1, 41.5428100000, -87.6847700000), (1116599, 1001422, 'Flourtown', NULL, 'flourtown', 'US', 1, 40.1034400000, -75.2124000000), (1116600, 1001452, 'Flower Hill', NULL, 'flower-hill', 'US', 1, 40.8073200000, -73.6812400000), (1116601, 1001407, 'Flower Mound', NULL, 'flower-mound', 'US', 1, 33.0145700000, -97.0969600000), (1116602, 1001455, 'Flowery Branch', NULL, 'flowery-branch', 'US', 1, 34.1851000000, -83.9251800000), (1116603, 1001434, 'Flowing Wells', NULL, 'flowing-wells', 'US', 1, 32.2939600000, -111.0098200000), (1116604, 1001430, 'Flowood', NULL, 'flowood', 'US', 1, 32.3095900000, -90.1389800000), (1116605, 1001427, 'Floyd', NULL, 'floyd', 'US', 1, 36.9112400000, -80.3200500000), (1116606, 1001455, 'Floyd County', NULL, 'floyd-county', 'US', 1, 34.2631600000, -85.2142800000), (1116607, 1001440, 'Floyd County', NULL, 'floyd-county', 'US', 1, 38.3189100000, -85.9068700000), (1116608, 1001419, 'Floyd County', NULL, 'floyd-county', 'US', 1, 37.5571100000, -82.7457000000), (1116609, 1001427, 'Floyd County', NULL, 'floyd-county', 'US', 1, 36.9314900000, -80.3625500000), (1116610, 1001459, 'Floyd County', NULL, 'floyd-county', 'US', 1, 43.0599200000, -92.7890000000), (1116611, 1001407, 'Floyd County', NULL, 'floyd-county', 'US', 1, 34.0724200000, -101.3032300000), (1116612, 1001407, 'Floydada', NULL, 'floydada', 'US', 1, 33.9845200000, -101.3376600000), (1116613, 1001426, 'Flushing', NULL, 'flushing', 'US', 1, 43.0630800000, -83.8510700000), (1116614, 1001427, 'Fluvanna County', NULL, 'fluvanna-county', 'US', 1, 37.8418700000, -78.2774500000), (1116615, 1001422, 'Flying Hills', NULL, 'flying-hills', 'US', 1, 40.2767600000, -75.9141000000), (1116616, 1001407, 'Foard County', NULL, 'foard-county', 'US', 1, 33.9746200000, -99.7779800000), (1116617, 1001462, 'Fobes Hill', NULL, 'fobes-hill', 'US', 1, 47.9489900000, -122.1198500000), (1116618, 1001422, 'Folcroft', NULL, 'folcroft', 'US', 1, 39.8909500000, -75.2838000000), (1116619, 1001456, 'Foley', NULL, 'foley', 'US', 1, 30.4065900000, -87.6836000000), (1116620, 1001420, 'Foley', NULL, 'foley', 'US', 1, 45.6646900000, -93.9097000000), (1116621, 1001455, 'Folkston', NULL, 'folkston', 'US', 1, 30.8309500000, -82.0113100000), (1116622, 1001429, 'Follansbee', NULL, 'follansbee', 'US', 1, 40.3275700000, -80.5959100000), (1116623, 1001443, 'Folly Beach', NULL, 'folly-beach', 'US', 1, 32.6551800000, -79.9403700000), (1116624, 1001417, 'Folsom', NULL, 'folsom', 'US', 1, 39.6020600000, -74.8426700000), (1116625, 1001422, 'Folsom', NULL, 'folsom', 'US', 1, 39.8898300000, -75.3251900000), (1116626, 1001416, 'Folsom', NULL, 'folsom', 'US', 1, 38.6779600000, -121.1760600000), (1116627, 1001441, 'Fond du Lac', NULL, 'fond-du-lac', 'US', 1, 43.7750000000, -88.4388300000), (1116628, 1001441, 'Fond du Lac County', NULL, 'fond-du-lac-county', 'US', 1, 43.7535900000, -88.4882600000), (1116629, 1001452, 'Fonda', NULL, 'fonda', 'US', 1, 42.9545200000, -74.3765200000), (1116630, 1001441, 'Fontana', NULL, 'fontana', 'US', 1, 42.5514100000, -88.5751000000), (1116631, 1001416, 'Fontana', NULL, 'fontana', 'US', 1, 34.0922300000, -117.4350500000), (1116632, 1001416, 'Foothill Farms', NULL, 'foothill-farms', 'US', 1, 38.6787700000, -121.3511400000), (1116633, 1001416, 'Foothill Ranch', NULL, 'foothill-ranch', 'US', 1, 33.6864100000, -117.6608800000), (1116634, 1001422, 'Ford City', NULL, 'ford-city', 'US', 1, 40.7722900000, -79.5297700000), (1116635, 1001416, 'Ford City', NULL, 'ford-city', 'US', 1, 35.1544100000, -119.4562300000), (1116636, 1001406, 'Ford County', NULL, 'ford-county', 'US', 1, 37.6917000000, -99.8879400000), (1116637, 1001425, 'Ford County', NULL, 'ford-county', 'US', 1, 40.5971800000, -88.2232600000), (1116638, 1001425, 'Ford Heights', NULL, 'ford-heights', 'US', 1, 41.5064200000, -87.5917100000), (1116639, 1001452, 'Fordham', NULL, 'fordham', 'US', 1, 40.8592700000, -73.8984700000), (1116640, 1001417, 'Fords', NULL, 'fords', 'US', 1, 40.5292700000, -74.3159800000), (1116641, 1001462, 'Fords Prairie', NULL, 'fords-prairie', 'US', 1, 46.7351000000, -122.9890200000), (1116642, 1001444, 'Fordyce', NULL, 'fordyce', 'US', 1, 33.8137200000, -92.4129300000), (1116643, 1001430, 'Forest', NULL, 'forest', 'US', 1, 32.3645900000, -89.4742300000), (1116644, 1001427, 'Forest', NULL, 'forest', 'US', 1, 37.3637500000, -79.2897500000), (1116645, 1001443, 'Forest Acres', NULL, 'forest-acres', 'US', 1, 34.0193200000, -80.9898100000), (1116646, 1001436, 'Forest City', NULL, 'forest-city', 'US', 1, 28.6667800000, -81.4433400000), (1116647, 1001447, 'Forest City', NULL, 'forest-city', 'US', 1, 35.3340100000, -81.8651000000), (1116648, 1001459, 'Forest City', NULL, 'forest-city', 'US', 1, 43.2624600000, -93.6371600000), (1116649, 1001422, 'Forest City', NULL, 'forest-city', 'US', 1, 41.6514700000, -75.4665700000), (1116650, 1001422, 'Forest County', NULL, 'forest-county', 'US', 1, 41.5130700000, -79.2360100000), (1116651, 1001441, 'Forest County', NULL, 'forest-county', 'US', 1, 45.6672600000, -88.7703800000), (1116652, 1001401, 'Forest Glen', NULL, 'forest-glen', 'US', 1, 39.0145500000, -77.0547000000), (1116653, 1001415, 'Forest Grove', NULL, 'forest-grove', 'US', 1, 45.5198400000, -123.1106600000), (1116654, 1001401, 'Forest Heights', NULL, 'forest-heights', 'US', 1, 38.8095600000, -76.9980300000), (1116655, 1001407, 'Forest Hill', NULL, 'forest-hill', 'US', 1, 32.6720800000, -97.2691800000), (1116656, 1001454, 'Forest Hills', NULL, 'forest-hills', 'US', 1, 36.0683900000, -86.8441700000), (1116657, 1001426, 'Forest Hills', NULL, 'forest-hills', 'US', 1, 42.9594700000, -85.4897500000), (1116658, 1001452, 'Forest Hills', NULL, 'forest-hills', 'US', 1, 40.7162100000, -73.8501400000), (1116659, 1001422, 'Forest Hills', NULL, 'forest-hills', 'US', 1, 40.4197900000, -79.8500500000), (1116660, 1001425, 'Forest Lake', NULL, 'forest-lake', 'US', 1, 42.2075200000, -88.0556300000), (1116661, 1001420, 'Forest Lake', NULL, 'forest-lake', 'US', 1, 45.2788600000, -92.9852200000), (1116662, 1001416, 'Forest Meadows', NULL, 'forest-meadows', 'US', 1, 38.1685100000, -120.4065900000), (1116663, 1001447, 'Forest Oaks', NULL, 'forest-oaks', 'US', 1, 35.9881900000, -79.7061400000), (1116664, 1001455, 'Forest Park', NULL, 'forest-park', 'US', 1, 33.6220500000, -84.3690900000), (1116665, 1001421, 'Forest Park', NULL, 'forest-park', 'US', 1, 35.5042300000, -97.4461500000), (1116666, 1001425, 'Forest Park', NULL, 'forest-park', 'US', 1, 41.8794800000, -87.8136700000), (1116667, 1001416, 'Forest Ranch', NULL, 'forest-ranch', 'US', 1, 39.8821100000, -121.6727500000), (1116668, 1001443, 'Forestbrook', NULL, 'forestbrook', 'US', 1, 33.7223900000, -78.9580900000), (1116669, 1001456, 'Forestdale', NULL, 'forestdale', 'US', 1, 33.5701100000, -86.8963800000), (1116670, 1001433, 'Forestdale', NULL, 'forestdale', 'US', 1, 41.6917700000, -70.4994700000), (1116671, 1001416, 'Foresthill', NULL, 'foresthill', 'US', 1, 39.0201800000, -120.8179900000), (1116672, 1001401, 'Forestville', NULL, 'forestville', 'US', 1, 38.8451100000, -76.8749700000), (1116673, 1001416, 'Forestville', NULL, 'forestville', 'US', 1, 38.4735200000, -122.8902700000), (1116674, 1001417, 'Forked River', NULL, 'forked-river', 'US', 1, 39.8398400000, -74.1901400000), (1116675, 1001462, 'Forks', NULL, 'forks', 'US', 1, 47.9503600000, -124.3854900000), (1116676, 1001418, 'Forman', NULL, 'forman', 'US', 1, 46.1077400000, -97.6364900000), (1116677, 1001407, 'Forney', NULL, 'forney', 'US', 1, 32.7481800000, -96.4719300000), (1116678, 1001425, 'Forrest', NULL, 'forrest', 'US', 1, 40.7519800000, -88.4111600000), (1116679, 1001444, 'Forrest City', NULL, 'forrest-city', 'US', 1, 35.0081500000, -90.7898300000), (1116680, 1001430, 'Forrest County', NULL, 'forrest-county', 'US', 1, 31.1888700000, -89.2578600000), (1116681, 1001425, 'Forreston', NULL, 'forreston', 'US', 1, 42.1261400000, -89.5792800000), (1116682, 1001425, 'Forsyth', NULL, 'forsyth', 'US', 1, 39.9325400000, -88.9511900000), (1116683, 1001455, 'Forsyth', NULL, 'forsyth', 'US', 1, 33.0343000000, -83.9382400000), (1116684, 1001451, 'Forsyth', NULL, 'forsyth', 'US', 1, 36.6850600000, -93.1199000000), (1116685, 1001446, 'Forsyth', NULL, 'forsyth', 'US', 1, 46.2663800000, -106.6778100000), (1116686, 1001455, 'Forsyth County', NULL, 'forsyth-county', 'US', 1, 34.2255100000, -84.1250200000), (1116687, 1001447, 'Forsyth County', NULL, 'forsyth-county', 'US', 1, 36.1304900000, -80.2563600000), (1116688, 1001429, 'Fort Ashby', NULL, 'fort-ashby', 'US', 1, 39.5031500000, -78.7686300000), (1116689, 1001441, 'Fort Atkinson', NULL, 'fort-atkinson', 'US', 1, 42.9288900000, -88.8370500000), (1116690, 1001446, 'Fort Belknap Agency', NULL, 'fort-belknap-agency', 'US', 1, 48.4825000000, -108.7654400000), (1116691, 1001427, 'Fort Belvoir', NULL, 'fort-belvoir', 'US', 1, 38.7119000000, -77.1458900000), (1116692, 1001407, 'Fort Bend County', NULL, 'fort-bend-county', 'US', 1, 29.5274900000, -95.7708900000), (1116693, 1001446, 'Fort Benton', NULL, 'fort-benton', 'US', 1, 47.8183000000, -110.6674400000), (1116694, 1001407, 'Fort Bliss', NULL, 'fort-bliss', 'US', 1, 31.8135700000, -106.4122400000), (1116695, 1001416, 'Fort Bragg', NULL, 'fort-bragg', 'US', 1, 39.4457200000, -123.8052900000), (1116696, 1001447, 'Fort Bragg', NULL, 'fort-bragg', 'US', 1, 35.1390000000, -79.0060300000), (1116697, 1001440, 'Fort Branch', NULL, 'fort-branch', 'US', 1, 38.2511600000, -87.5811300000), (1116698, 1001419, 'Fort Campbell North', NULL, 'fort-campbell-north', 'US', 1, 36.6542900000, -87.4605600000), (1116699, 1001450, 'Fort Carson', NULL, 'fort-carson', 'US', 1, 38.7374900000, -104.7888600000), (1116700, 1001407, 'Fort Clark Springs', NULL, 'fort-clark-springs', 'US', 1, 29.3060700000, -100.4220200000), (1116701, 1001450, 'Fort Collins', NULL, 'fort-collins', 'US', 1, 40.5852600000, -105.0844200000), (1116702, 1001452, 'Fort Covington Hamlet', NULL, 'fort-covington-hamlet', 'US', 1, 44.9717800000, -74.5075700000), (1116703, 1001407, 'Fort Davis', NULL, 'fort-davis', 'US', 1, 30.5882100000, -103.8946300000), (1116704, 1001434, 'Fort Defiance', NULL, 'fort-defiance', 'US', 1, 35.7444600000, -109.0764800000), (1116705, 1001456, 'Fort Deposit', NULL, 'fort-deposit', 'US', 1, 31.9845900000, -86.5785900000), (1116706, 1001417, 'Fort Dix', NULL, 'fort-dix', 'US', 1, 40.0298400000, -74.6184900000), (1116707, 1001459, 'Fort Dodge', NULL, 'fort-dodge', 'US', 1, 42.4974700000, -94.1680200000), (1116708, 1001452, 'Fort Drum', NULL, 'fort-drum', 'US', 1, 44.0584300000, -75.7618900000), (1116709, 1001452, 'Fort Edward', NULL, 'fort-edward', 'US', 1, 43.2670200000, -73.5845600000), (1116710, 1001453, 'Fort Fairfield', NULL, 'fort-fairfield', 'US', 1, 46.7722700000, -67.8339100000), (1116711, 1001455, 'Fort Gaines', NULL, 'fort-gaines', 'US', 1, 31.6092400000, -85.0493300000), (1116712, 1001401, 'Fort George G Mead Junction', NULL, 'fort-george-g-mead-junction', 'US', 1, 39.1259400000, -76.7891400000), (1116713, 1001421, 'Fort Gibson', NULL, 'fort-gibson', 'US', 1, 35.7976000000, -95.2505200000), (1116714, 1001460, 'Fort Hall', NULL, 'fort-hall', 'US', 1, 43.0332500000, -112.4383100000), (1116715, 1001452, 'Fort Hamilton', NULL, 'fort-hamilton', 'US', 1, 40.6187200000, -74.0332000000), (1116716, 1001407, 'Fort Hancock', NULL, 'fort-hancock', 'US', 1, 31.2984600000, -105.8452500000), (1116717, 1001407, 'Fort Hood', NULL, 'fort-hood', 'US', 1, 31.1348900000, -97.7756100000), (1116718, 1001427, 'Fort Hunt', NULL, 'fort-hunt', 'US', 1, 38.7328900000, -77.0580300000), (1116719, 1001416, 'Fort Irwin', NULL, 'fort-irwin', 'US', 1, 35.2627500000, -116.6847500000), (1116720, 1001453, 'Fort Kent', NULL, 'fort-kent', 'US', 1, 47.2586500000, -68.5894900000), (1116721, 1001419, 'Fort Knox', NULL, 'fort-knox', 'US', 1, 37.8911300000, -85.9636300000), (1116722, 1001436, 'Fort Lauderdale', NULL, 'fort-lauderdale', 'US', 1, 26.1223100000, -80.1433800000), (1116723, 1001417, 'Fort Lee', NULL, 'fort-lee', 'US', 1, 40.8509300000, -73.9701400000), (1116724, 1001427, 'Fort Lee', NULL, 'fort-lee', 'US', 1, 37.2469400000, -77.3344200000), (1116725, 1001451, 'Fort Leonard Wood', NULL, 'fort-leonard-wood', 'US', 1, 37.7057300000, -92.1571700000), (1116726, 1001450, 'Fort Lupton', NULL, 'fort-lupton', 'US', 1, 40.0847100000, -104.8130300000), (1116727, 1001459, 'Fort Madison', NULL, 'fort-madison', 'US', 1, 40.6297600000, -91.3151500000), (1116728, 1001436, 'Fort Meade', NULL, 'fort-meade', 'US', 1, 27.7522500000, -81.8017500000), (1116729, 1001401, 'Fort Meade', NULL, 'fort-meade', 'US', 1, 39.1081500000, -76.7432300000), (1116730, 1001443, 'Fort Mill', NULL, 'fort-mill', 'US', 1, 35.0073700000, -80.9450800000), (1116731, 1001419, 'Fort Mitchell', NULL, 'fort-mitchell', 'US', 1, 39.0595000000, -84.5474400000), (1116732, 1001452, 'Fort Montgomery', NULL, 'fort-montgomery', 'US', 1, 41.3314800000, -73.9868100000), (1116733, 1001450, 'Fort Morgan', NULL, 'fort-morgan', 'US', 1, 40.2502600000, -103.7999500000), (1116734, 1001436, 'Fort Myers', NULL, 'fort-myers', 'US', 1, 26.6216800000, -81.8405900000), (1116735, 1001436, 'Fort Myers Beach', NULL, 'fort-myers-beach', 'US', 1, 26.4527100000, -81.9501100000), (1116736, 1001436, 'Fort Myers Shores', NULL, 'fort-myers-shores', 'US', 1, 26.7092400000, -81.7459200000), (1116737, 1001455, 'Fort Oglethorpe', NULL, 'fort-oglethorpe', 'US', 1, 34.9489600000, -85.2569000000), (1116738, 1001456, 'Fort Payne', NULL, 'fort-payne', 'US', 1, 34.4442500000, -85.7196900000), (1116739, 1001436, 'Fort Pierce', NULL, 'fort-pierce', 'US', 1, 27.4467100000, -80.3256100000), (1116740, 1001436, 'Fort Pierce North', NULL, 'fort-pierce-north', 'US', 1, 27.4736400000, -80.3593000000), (1116741, 1001436, 'Fort Pierce South', NULL, 'fort-pierce-south', 'US', 1, 27.4096200000, -80.3548300000), (1116742, 1001445, 'Fort Pierre', NULL, 'fort-pierre', 'US', 1, 44.3535900000, -100.3737400000), (1116743, 1001452, 'Fort Plain', NULL, 'fort-plain', 'US', 1, 42.9314600000, -74.6226400000), (1116744, 1001457, 'Fort Polk North', NULL, 'fort-polk-north', 'US', 1, 31.1030200000, -93.1791300000), (1116745, 1001457, 'Fort Polk South', NULL, 'fort-polk-south', 'US', 1, 31.0511000000, -93.2157800000), (1116746, 1001406, 'Fort Riley North', NULL, 'fort-riley-north', 'US', 1, 39.1108100000, -96.8139200000), (1116747, 1001456, 'Fort Rucker', NULL, 'fort-rucker', 'US', 1, 31.3428200000, -85.7153800000), (1116748, 1001452, 'Fort Salonga', NULL, 'fort-salonga', 'US', 1, 40.9126000000, -73.3009500000), (1116749, 1001406, 'Fort Scott', NULL, 'fort-scott', 'US', 1, 37.8397600000, -94.7083000000), (1116750, 1001444, 'Fort Smith', NULL, 'fort-smith', 'US', 1, 35.3859200000, -94.3985500000), (1116751, 1001455, 'Fort Stewart', NULL, 'fort-stewart', 'US', 1, 31.8721700000, -81.6100100000), (1116752, 1001407, 'Fort Stockton', NULL, 'fort-stockton', 'US', 1, 30.8940400000, -102.8793200000), (1116753, 1001423, 'Fort Sumner', NULL, 'fort-sumner', 'US', 1, 34.4717300000, -104.2455300000), (1116754, 1001419, 'Fort Thomas', NULL, 'fort-thomas', 'US', 1, 39.0750600000, -84.4471600000), (1116755, 1001445, 'Fort Thompson', NULL, 'fort-thompson', 'US', 1, 44.0686000000, -99.4378800000), (1116756, 1001418, 'Fort Totten', NULL, 'fort-totten', 'US', 1, 47.9800000000, -98.9929000000), (1116757, 1001455, 'Fort Valley', NULL, 'fort-valley', 'US', 1, 32.5537600000, -83.8874100000), (1116758, 1001452, 'Fort Wadsworth', NULL, 'fort-wadsworth', 'US', 1, 40.6011300000, -74.0573800000), (1116759, 1001436, 'Fort Walton Beach', NULL, 'fort-walton-beach', 'US', 1, 30.4205900000, -86.6170700000), (1116760, 1001442, 'Fort Washakie', NULL, 'fort-washakie', 'US', 1, 43.0063500000, -108.8823500000), (1116761, 1001401, 'Fort Washington', NULL, 'fort-washington', 'US', 1, 38.7073400000, -77.0230300000), (1116762, 1001422, 'Fort Washington', NULL, 'fort-washington', 'US', 1, 40.1417800000, -75.2090600000), (1116763, 1001440, 'Fort Wayne', NULL, 'fort-wayne', 'US', 1, 41.1306000000, -85.1288600000), (1116764, 1001407, 'Fort Worth', NULL, 'fort-worth', 'US', 1, 32.7254100000, -97.3208500000), (1116765, 1001419, 'Fort Wright', NULL, 'fort-wright', 'US', 1, 39.0517300000, -84.5341100000), (1116766, 1001418, 'Fort Yates', NULL, 'fort-yates', 'US', 1, 46.0869400000, -100.6301300000), (1116767, 1001416, 'Fortuna', NULL, 'fortuna', 'US', 1, 40.5981900000, -124.1572800000), (1116768, 1001434, 'Fortuna Foothills', NULL, 'fortuna-foothills', 'US', 1, 32.6578300000, -114.4118900000), (1116769, 1001440, 'Fortville', NULL, 'fortville', 'US', 1, 39.9322600000, -85.8480400000), (1116770, 1001422, 'Forty Fort', NULL, 'forty-fort', 'US', 1, 41.2789700000, -75.8782500000), (1116771, 1001447, 'Foscoe', NULL, 'foscoe', 'US', 1, 36.1617900000, -81.7656600000), (1116772, 1001415, 'Fossil', NULL, 'fossil', 'US', 1, 44.9981900000, -120.2161400000), (1116773, 1001420, 'Fosston', NULL, 'fosston', 'US', 1, 47.5763500000, -95.7514100000), (1116774, 1001461, 'Foster', NULL, 'foster', 'US', 1, 41.8537100000, -71.7581200000), (1116775, 1001422, 'Foster Brook', NULL, 'foster-brook', 'US', 1, 41.9750600000, -78.6172500000), (1116776, 1001416, 'Foster City', NULL, 'foster-city', 'US', 1, 37.5585500000, -122.2710800000), (1116777, 1001418, 'Foster County', NULL, 'foster-county', 'US', 1, 47.4570800000, -98.8830200000), (1116778, 1001450, 'Fountain', NULL, 'fountain', 'US', 1, 38.6822200000, -104.7008100000), (1116779, 1001440, 'Fountain County', NULL, 'fountain-county', 'US', 1, 40.1208700000, -87.2419900000), (1116780, 1001414, 'Fountain Green', NULL, 'fountain-green', 'US', 1, 39.6299600000, -111.6352000000), (1116781, 1001422, 'Fountain Hill', NULL, 'fountain-hill', 'US', 1, 40.6014900000, -75.3951800000), (1116782, 1001434, 'Fountain Hills', NULL, 'fountain-hills', 'US', 1, 33.6117100000, -111.7173600000), (1116783, 1001443, 'Fountain Inn', NULL, 'fountain-inn', 'US', 1, 34.6890100000, -82.1956700000), (1116784, 1001416, 'Fountain Valley', NULL, 'fountain-valley', 'US', 1, 33.7091800000, -117.9536700000), (1116785, 1001436, 'Fountainebleau', NULL, 'fountainebleau', 'US', 1, 25.7728800000, -80.3478300000), (1116786, 1001401, 'Fountainhead-Orchard Hills', NULL, 'fountainhead-orchard-hills', 'US', 1, 39.6863600000, -77.7190100000), (1116787, 1001401, 'Four Corners', NULL, 'four-corners', 'US', 1, 39.0203900000, -77.0127500000), (1116788, 1001407, 'Four Corners', NULL, 'four-corners', 'US', 1, 29.6685700000, -95.6577200000), (1116789, 1001415, 'Four Corners', NULL, 'four-corners', 'US', 1, 44.9279000000, -122.9837100000), (1116790, 1001446, 'Four Corners', NULL, 'four-corners', 'US', 1, 45.6296500000, -111.1860600000), (1116791, 1001436, 'Four Corners', NULL, 'four-corners', 'US', 1, 28.3328700000, -81.6473800000), (1116792, 1001447, 'Four Oaks', NULL, 'four-oaks', 'US', 1, 35.4448800000, -78.4269500000), (1116793, 1001451, 'Four Seasons', NULL, 'four-seasons', 'US', 1, 38.1980900000, -92.7110200000), (1116794, 1001440, 'Fowler', NULL, 'fowler', 'US', 1, 40.6167000000, -87.3208500000), (1116795, 1001426, 'Fowler', NULL, 'fowler', 'US', 1, 43.0017000000, -84.7397200000), (1116796, 1001450, 'Fowler', NULL, 'fowler', 'US', 1, 38.1291700000, -104.0232900000), (1116797, 1001416, 'Fowler', NULL, 'fowler', 'US', 1, 36.6305100000, -119.6784700000), (1116798, 1001426, 'Fowlerville', NULL, 'fowlerville', 'US', 1, 42.6605900000, -84.0730100000), (1116799, 1001422, 'Fox Chapel', NULL, 'fox-chapel', 'US', 1, 40.5134000000, -79.8797700000), (1116800, 1001422, 'Fox Chase', NULL, 'fox-chase', 'US', 1, 40.3955700000, -75.9621600000), (1116801, 1001442, 'Fox Farm-College', NULL, 'fox-farm-college', 'US', 1, 41.1120300000, -104.7854600000), (1116802, 1001462, 'Fox Island', NULL, 'fox-island', 'US', 1, 47.2514900000, -122.6290200000), (1116803, 1001425, 'Fox Lake', NULL, 'fox-lake', 'US', 1, 42.3966900000, -88.1837000000), (1116804, 1001441, 'Fox Lake', NULL, 'fox-lake', 'US', 1, 43.5655400000, -88.9065000000), (1116805, 1001425, 'Fox Lake Hills', NULL, 'fox-lake-hills', 'US', 1, 42.4080800000, -88.1317500000), (1116806, 1001441, 'Fox Point', NULL, 'fox-point', 'US', 1, 43.1575100000, -87.9017500000), (1116807, 1001425, 'Fox River Grove', NULL, 'fox-river-grove', 'US', 1, 42.2008600000, -88.2145300000), (1116808, 1001422, 'Fox Run', NULL, 'fox-run', 'US', 1, 40.7022900000, -80.0828400000), (1116809, 1001433, 'Foxborough', NULL, 'foxborough', 'US', 1, 42.0653800000, -71.2478300000), (1116810, 1001422, 'Frackville', NULL, 'frackville', 'US', 1, 40.7839800000, -76.2302200000), (1116811, 1001433, 'Framingham', NULL, 'framingham', 'US', 1, 42.2792600000, -71.4161700000), (1116812, 1001433, 'Framingham Center', NULL, 'framingham-center', 'US', 1, 42.2973200000, -71.4370100000), (1116813, 1001404, 'Francestown', NULL, 'francestown', 'US', 1, 42.9875800000, -71.8125800000), (1116814, 1001414, 'Francis', NULL, 'francis', 'US', 1, 40.6105100000, -111.2807400000), (1116815, 1001419, 'Francisville', NULL, 'francisville', 'US', 1, 39.1050600000, -84.7243900000), (1116816, 1001427, 'Franconia', NULL, 'franconia', 'US', 1, 38.7820600000, -77.1463700000), (1116817, 1001426, 'Frankenmuth', NULL, 'frankenmuth', 'US', 1, 43.3316900000, -83.7380200000), (1116818, 1001419, 'Frankfort', NULL, 'frankfort', 'US', 1, 38.2009100000, -84.8732800000), (1116819, 1001425, 'Frankfort', NULL, 'frankfort', 'US', 1, 41.4958700000, -87.8486600000), (1116820, 1001440, 'Frankfort', NULL, 'frankfort', 'US', 1, 40.2794800000, -86.5108400000), (1116821, 1001426, 'Frankfort', NULL, 'frankfort', 'US', 1, 44.6336100000, -86.2345400000), (1116822, 1001453, 'Frankfort', NULL, 'frankfort', 'US', 1, 44.6098000000, -68.8767000000), (1116823, 1001452, 'Frankfort', NULL, 'frankfort', 'US', 1, 43.0389600000, -75.0704400000), (1116824, 1001425, 'Frankfort Square', NULL, 'frankfort-square', 'US', 1, 41.5189200000, -87.8031000000), (1116825, 1001419, 'Franklin', NULL, 'franklin', 'US', 1, 36.7222600000, -86.5772200000), (1116826, 1001455, 'Franklin', NULL, 'franklin', 'US', 1, 33.2776200000, -85.0980000000), (1116827, 1001457, 'Franklin', NULL, 'franklin', 'US', 1, 29.7960400000, -91.5015000000), (1116828, 1001447, 'Franklin', NULL, 'franklin', 'US', 1, 35.1823200000, -83.3815400000), (1116829, 1001454, 'Franklin', NULL, 'franklin', 'US', 1, 35.9250600000, -86.8688900000), (1116830, 1001407, 'Franklin', NULL, 'franklin', 'US', 1, 31.0260200000, -96.4852400000), (1116831, 1001427, 'Franklin', NULL, 'franklin', 'US', 1, 36.6776500000, -76.9224600000), (1116832, 1001429, 'Franklin', NULL, 'franklin', 'US', 1, 38.6428900000, -79.3311500000), (1116833, 1001440, 'Franklin', NULL, 'franklin', 'US', 1, 39.4806100000, -86.0549900000), (1116834, 1001433, 'Franklin', NULL, 'franklin', 'US', 1, 42.0834300000, -71.3967300000), (1116835, 1001453, 'Franklin', NULL, 'franklin', 'US', 1, 44.5870200000, -68.2322400000), (1116836, 1001426, 'Franklin', NULL, 'franklin', 'US', 1, 42.5222600000, -83.3060400000), (1116837, 1001404, 'Franklin', NULL, 'franklin', 'US', 1, 43.4442400000, -71.6473000000), (1116838, 1001417, 'Franklin', NULL, 'franklin', 'US', 1, 41.1220400000, -74.5804400000), (1116839, 1001408, 'Franklin', NULL, 'franklin', 'US', 1, 40.0961200000, -98.9525800000), (1116840, 1001422, 'Franklin', NULL, 'franklin', 'US', 1, 41.3978400000, -79.8314400000), (1116841, 1001441, 'Franklin', NULL, 'franklin', 'US', 1, 42.8886300000, -88.0384200000), (1116842, 1001417, 'Franklin Center', NULL, 'franklin-center', 'US', 1, 40.5315300000, -74.5414100000), (1116843, 1001456, 'Franklin County', NULL, 'franklin-county', 'US', 1, 34.4416700000, -87.8438100000), (1116844, 1001444, 'Franklin County', NULL, 'franklin-county', 'US', 1, 35.5123500000, -93.8906200000), (1116845, 1001436, 'Franklin County', NULL, 'franklin-county', 'US', 1, 29.8116800000, -84.8004600000), (1116846, 1001455, 'Franklin County', NULL, 'franklin-county', 'US', 1, 34.3754400000, -83.2291800000), (1116847, 1001425, 'Franklin County', NULL, 'franklin-county', 'US', 1, 37.9922900000, -88.9241500000), (1116848, 1001440, 'Franklin County', NULL, 'franklin-county', 'US', 1, 39.4148600000, -85.0602800000), (1116849, 1001406, 'Franklin County', NULL, 'franklin-county', 'US', 1, 38.5645200000, -95.2859500000), (1116850, 1001419, 'Franklin County', NULL, 'franklin-county', 'US', 1, 38.2391500000, -84.8770700000), (1116851, 1001451, 'Franklin County', NULL, 'franklin-county', 'US', 1, 38.4111400000, -91.0749900000), (1116852, 1001430, 'Franklin County', NULL, 'franklin-county', 'US', 1, 31.4771500000, -90.8978500000), (1116853, 1001447, 'Franklin County', NULL, 'franklin-county', 'US', 1, 36.0827900000, -78.2856100000), (1116854, 1001454, 'Franklin County', NULL, 'franklin-county', 'US', 1, 35.1549600000, -86.0921800000), (1116855, 1001407, 'Franklin County', NULL, 'franklin-county', 'US', 1, 33.1755500000, -95.2184200000), (1116856, 1001427, 'Franklin County', NULL, 'franklin-county', 'US', 1, 36.9919400000, -79.8810400000), (1116857, 1001459, 'Franklin County', NULL, 'franklin-county', 'US', 1, 42.7325500000, -93.2624700000), (1116858, 1001433, 'Franklin County', NULL, 'franklin-county', 'US', 1, 42.5831200000, -72.5918700000), (1116859, 1001453, 'Franklin County', NULL, 'franklin-county', 'US', 1, 44.9741700000, -70.4441000000), (1116860, 1001408, 'Franklin County', NULL, 'franklin-county', 'US', 1, 40.1763400000, -98.9528000000), (1116861, 1001452, 'Franklin County', NULL, 'franklin-county', 'US', 1, 44.5929300000, -74.3037600000), (1116862, 1001422, 'Franklin County', NULL, 'franklin-county', 'US', 1, 39.9274200000, -77.7212700000), (1116863, 1001409, 'Franklin County', NULL, 'franklin-county', 'US', 1, 44.8574800000, -72.9120000000), (1116864, 1001460, 'Franklin County', NULL, 'franklin-county', 'US', 1, 42.1811700000, -111.8132300000), (1116865, 1001462, 'Franklin County', NULL, 'franklin-county', 'US', 1, 46.5347700000, -118.8988900000), (1116866, 1001417, 'Franklin Lakes', NULL, 'franklin-lakes', 'US', 1, 41.0167600000, -74.2057000000), (1116867, 1001457, 'Franklin Parish', NULL, 'franklin-parish', 'US', 1, 32.1332200000, -91.6737700000), (1116868, 1001425, 'Franklin Park', NULL, 'franklin-park', 'US', 1, 41.9353100000, -87.8656200000), (1116869, 1001417, 'Franklin Park', NULL, 'franklin-park', 'US', 1, 40.4389900000, -74.5351500000), (1116870, 1001422, 'Franklin Park', NULL, 'franklin-park', 'US', 1, 40.5834000000, -80.0878400000), (1116871, 1001455, 'Franklin Springs', NULL, 'franklin-springs', 'US', 1, 34.2848300000, -83.1443200000), (1116872, 1001452, 'Franklin Square', NULL, 'franklin-square', 'US', 1, 40.7073200000, -73.6759600000), (1116873, 1001457, 'Franklinton', NULL, 'franklinton', 'US', 1, 30.8473100000, -90.1552700000), (1116874, 1001447, 'Franklinton', NULL, 'franklinton', 'US', 1, 36.1018200000, -78.4580500000), (1116875, 1001447, 'Franklinville', NULL, 'franklinville', 'US', 1, 35.7437500000, -79.6922500000), (1116876, 1001452, 'Franklinville', NULL, 'franklinville', 'US', 1, 42.3370100000, -78.4580800000), (1116877, 1001407, 'Frankston', NULL, 'frankston', 'US', 1, 32.0526600000, -95.5063500000), (1116878, 1001441, 'Franksville', NULL, 'franksville', 'US', 1, 42.7600200000, -87.9134100000), (1116879, 1001440, 'Frankton', NULL, 'frankton', 'US', 1, 40.2228200000, -85.7788700000), (1116880, 1001426, 'Fraser', NULL, 'fraser', 'US', 1, 42.5392000000, -82.9493700000), (1116881, 1001450, 'Fraser', NULL, 'fraser', 'US', 1, 39.9449900000, -105.8172300000), (1116882, 1001420, 'Frazee', NULL, 'frazee', 'US', 1, 46.7280100000, -95.7008800000), (1116883, 1001416, 'Frazier Park', NULL, 'frazier-park', 'US', 1, 34.8227600000, -118.9448200000), (1116884, 1001441, 'Frederic', NULL, 'frederic', 'US', 1, 45.6591200000, -92.4671400000), (1116885, 1001401, 'Frederick', NULL, 'frederick', 'US', 1, 39.4142700000, -77.4105400000), (1116886, 1001421, 'Frederick', NULL, 'frederick', 'US', 1, 34.3920300000, -99.0184100000), (1116887, 1001450, 'Frederick', NULL, 'frederick', 'US', 1, 40.0991500000, -104.9372000000), (1116888, 1001401, 'Frederick County', NULL, 'frederick-county', 'US', 1, 39.4722200000, -77.3979900000), (1116889, 1001427, 'Frederick County', NULL, 'frederick-county', 'US', 1, 39.2045600000, -78.2625800000), (1116890, 1001407, 'Fredericksburg', NULL, 'fredericksburg', 'US', 1, 30.2752000000, -98.8719800000), (1116891, 1001427, 'Fredericksburg', NULL, 'fredericksburg', 'US', 1, 38.3031800000, -77.4605400000), (1116892, 1001422, 'Fredericksburg', NULL, 'fredericksburg', 'US', 1, 40.4437000000, -76.4282900000), (1116893, 1001462, 'Frederickson', NULL, 'frederickson', 'US', 1, 47.0962100000, -122.3587300000), (1116894, 1001451, 'Fredericktown', NULL, 'fredericktown', 'US', 1, 37.5597800000, -90.2940100000), (1116895, 1001406, 'Fredonia', NULL, 'fredonia', 'US', 1, 37.5339400000, -95.8266500000), (1116896, 1001452, 'Fredonia', NULL, 'fredonia', 'US', 1, 42.4400600000, -79.3317100000), (1116897, 1001441, 'Fredonia', NULL, 'fredonia', 'US', 1, 43.4705600000, -87.9506500000), (1116898, 1001434, 'Fredonia', NULL, 'fredonia', 'US', 1, 36.9455400000, -112.5265900000), (1116899, 1001420, 'Freeborn County', NULL, 'freeborn-county', 'US', 1, 43.6738400000, -93.3488200000), (1116900, 1001425, 'Freeburg', NULL, 'freeburg', 'US', 1, 38.4275500000, -89.9137100000), (1116901, 1001404, 'Freedom', NULL, 'freedom', 'US', 1, 43.8123000000, -71.0356200000), (1116902, 1001422, 'Freedom', NULL, 'freedom', 'US', 1, 40.6856200000, -80.2517300000), (1116903, 1001416, 'Freedom', NULL, 'freedom', 'US', 1, 36.9352300000, -121.7730100000), (1116904, 1001417, 'Freehold', NULL, 'freehold', 'US', 1, 40.2601100000, -74.2737600000), (1116905, 1001426, 'Freeland', NULL, 'freeland', 'US', 1, 43.5250300000, -84.1227600000), (1116906, 1001422, 'Freeland', NULL, 'freeland', 'US', 1, 41.0167500000, -75.8971400000), (1116907, 1001462, 'Freeland', NULL, 'freeland', 'US', 1, 48.0095400000, -122.5259800000), (1116908, 1001445, 'Freeman', NULL, 'freeman', 'US', 1, 43.3524900000, -97.4372900000), (1116909, 1001422, 'Freemansburg', NULL, 'freemansburg', 'US', 1, 40.6264900000, -75.3457400000), (1116910, 1001436, 'Freeport', NULL, 'freeport', 'US', 1, 30.4982500000, -86.1360500000), (1116911, 1001407, 'Freeport', NULL, 'freeport', 'US', 1, 28.9541400000, -95.3596600000), (1116912, 1001425, 'Freeport', NULL, 'freeport', 'US', 1, 42.2966900000, -89.6212300000), (1116913, 1001453, 'Freeport', NULL, 'freeport', 'US', 1, 43.8570200000, -70.1031100000), (1116914, 1001452, 'Freeport', NULL, 'freeport', 'US', 1, 40.6576000000, -73.5831800000), (1116915, 1001422, 'Freeport', NULL, 'freeport', 'US', 1, 40.6739500000, -79.6847700000), (1116916, 1001407, 'Freer', NULL, 'freer', 'US', 1, 27.8828000000, -98.6177900000), (1116917, 1001407, 'Freestone County', NULL, 'freestone-county', 'US', 1, 31.7048900000, -96.1490900000), (1116918, 1001433, 'Freetown', NULL, 'freetown', 'US', 1, 41.7667700000, -71.0328200000), (1116919, 1001447, 'Fremont', NULL, 'fremont', 'US', 1, 35.5454400000, -77.9747100000); INSERT INTO `[[dbprefix]]t_city` VALUES (1116920, 1001440, 'Fremont', NULL, 'fremont', 'US', 1, 41.7308800000, -84.9327400000), (1116921, 1001426, 'Fremont', NULL, 'fremont', 'US', 1, 43.4675200000, -85.9420000000), (1116922, 1001404, 'Fremont', NULL, 'fremont', 'US', 1, 42.9909200000, -71.1425600000), (1116923, 1001408, 'Fremont', NULL, 'fremont', 'US', 1, 41.4333300000, -96.4980800000), (1116924, 1001416, 'Fremont', NULL, 'fremont', 'US', 1, 37.5482700000, -121.9885700000), (1116925, 1001459, 'Fremont County', NULL, 'fremont-county', 'US', 1, 40.7455900000, -95.6046800000), (1116926, 1001450, 'Fremont County', NULL, 'fremont-county', 'US', 1, 38.4729700000, -105.4396600000), (1116927, 1001460, 'Fremont County', NULL, 'fremont-county', 'US', 1, 44.2287900000, -111.4820200000), (1116928, 1001442, 'Fremont County', NULL, 'fremont-county', 'US', 1, 43.0405300000, -108.6304200000), (1116929, 1001416, 'French Camp', NULL, 'french-camp', 'US', 1, 37.8840900000, -121.2710600000), (1116930, 1001441, 'French Island', NULL, 'french-island', 'US', 1, 43.8583000000, -91.2604200000), (1116931, 1001440, 'French Lick', NULL, 'french-lick', 'US', 1, 38.5489400000, -86.6199900000), (1116932, 1001457, 'French Settlement', NULL, 'french-settlement', 'US', 1, 30.2959900000, -90.7963000000), (1116933, 1001419, 'Frenchburg', NULL, 'frenchburg', 'US', 1, 37.9509200000, -83.6257500000), (1116934, 1001417, 'Frenchtown', NULL, 'frenchtown', 'US', 1, 40.5262100000, -75.0615600000), (1116935, 1001446, 'Frenchtown', NULL, 'frenchtown', 'US', 1, 47.0149200000, -114.2298400000), (1116936, 1001453, 'Frenchville', NULL, 'frenchville', 'US', 1, 47.2808700000, -68.3797600000), (1116937, 1001452, 'Fresh Meadows', NULL, 'fresh-meadows', 'US', 1, 40.7348200000, -73.7934700000), (1116938, 1001407, 'Fresno', NULL, 'fresno', 'US', 1, 29.5388500000, -95.4474400000), (1116939, 1001416, 'Fresno', NULL, 'fresno', 'US', 1, 36.7477300000, -119.7723700000), (1116940, 1001416, 'Fresno County', NULL, 'fresno-county', 'US', 1, 36.7581800000, -119.6493200000), (1116941, 1001452, 'Frewsburg', NULL, 'frewsburg', 'US', 1, 42.0545000000, -79.1581000000), (1116942, 1001430, 'Friars Point', NULL, 'friars-point', 'US', 1, 34.3708800000, -90.6383400000), (1116943, 1001462, 'Friday Harbor', NULL, 'friday-harbor', 'US', 1, 48.5342700000, -123.0171200000), (1116944, 1001420, 'Fridley', NULL, 'fridley', 'US', 1, 45.0860800000, -93.2632800000), (1116945, 1001422, 'Friedens', NULL, 'friedens', 'US', 1, 40.0500800000, -78.9983600000), (1116946, 1001408, 'Friend', NULL, 'friend', 'US', 1, 40.6536200000, -97.2861600000), (1116947, 1001401, 'Friendly', NULL, 'friendly', 'US', 1, 38.7517800000, -76.9785900000), (1116948, 1001453, 'Friendship', NULL, 'friendship', 'US', 1, 43.9836900000, -69.3339400000), (1116949, 1001452, 'Friendship', NULL, 'friendship', 'US', 1, 42.2064600000, -78.1375100000), (1116950, 1001441, 'Friendship', NULL, 'friendship', 'US', 1, 43.9705300000, -89.8167900000), (1116951, 1001401, 'Friendship Village', NULL, 'friendship-village', 'US', 1, 38.9628900000, -77.0888700000), (1116952, 1001407, 'Friendswood', NULL, 'friendswood', 'US', 1, 29.5294000000, -95.2010400000), (1116953, 1001407, 'Frio County', NULL, 'frio-county', 'US', 1, 28.8678200000, -99.1082700000), (1116954, 1001407, 'Friona', NULL, 'friona', 'US', 1, 34.6417300000, -102.7241000000), (1116955, 1001407, 'Frisco', NULL, 'frisco', 'US', 1, 33.1506700000, -96.8236100000), (1116956, 1001450, 'Frisco', NULL, 'frisco', 'US', 1, 39.5744300000, -106.0975200000), (1116957, 1001456, 'Frisco City', NULL, 'frisco-city', 'US', 1, 31.4335000000, -87.4013800000), (1116958, 1001407, 'Fritch', NULL, 'fritch', 'US', 1, 35.6397700000, -101.6032300000), (1116959, 1001400, 'Fritz Creek', NULL, 'fritz-creek', 'US', 1, 59.7361100000, -151.2952800000), (1116960, 1001427, 'Front Royal', NULL, 'front-royal', 'US', 1, 38.9181700000, -78.1944400000), (1116961, 1001406, 'Frontenac', NULL, 'frontenac', 'US', 1, 37.4556000000, -94.6891300000), (1116962, 1001451, 'Frontenac', NULL, 'frontenac', 'US', 1, 38.6356100000, -90.4151200000), (1116963, 1001408, 'Frontier County', NULL, 'frontier-county', 'US', 1, 40.5300800000, -100.3942000000), (1116964, 1001401, 'Frostburg', NULL, 'frostburg', 'US', 1, 39.6581400000, -78.9283600000), (1116965, 1001436, 'Frostproof', NULL, 'frostproof', 'US', 1, 27.7458600000, -81.5306300000), (1116966, 1001436, 'Fruit Cove', NULL, 'fruit-cove', 'US', 1, 30.1110700000, -81.6417600000), (1116967, 1001414, 'Fruit Heights', NULL, 'fruit-heights', 'US', 1, 41.0321700000, -111.9021600000), (1116968, 1001450, 'Fruita', NULL, 'fruita', 'US', 1, 39.1588700000, -108.7289900000), (1116969, 1001415, 'Fruitdale', NULL, 'fruitdale', 'US', 1, 42.4220600000, -123.3081100000), (1116970, 1001401, 'Fruitland', NULL, 'fruitland', 'US', 1, 38.3220600000, -75.6202000000), (1116971, 1001447, 'Fruitland', NULL, 'fruitland', 'US', 1, 35.3965100000, -82.3931700000), (1116972, 1001460, 'Fruitland', NULL, 'fruitland', 'US', 1, 44.0076600000, -116.9165500000), (1116973, 1001436, 'Fruitland Park', NULL, 'fruitland-park', 'US', 1, 28.8613800000, -81.9064700000), (1116974, 1001426, 'Fruitport', NULL, 'fruitport', 'US', 1, 43.1319600000, -86.1547800000), (1116975, 1001416, 'Fruitridge Pocket', NULL, 'fruitridge-pocket', 'US', 1, 38.5326500000, -121.4558100000), (1116976, 1001450, 'Fruitvale', NULL, 'fruitvale', 'US', 1, 39.0816500000, -108.4967600000), (1116977, 1001436, 'Fruitville', NULL, 'fruitville', 'US', 1, 27.3297700000, -82.4576000000), (1116978, 1001453, 'Fryeburg', NULL, 'fryeburg', 'US', 1, 44.0164600000, -70.9806200000), (1116979, 1001420, 'Fulda', NULL, 'fulda', 'US', 1, 43.8705200000, -95.6002900000), (1116980, 1001436, 'Fuller Heights', NULL, 'fuller-heights', 'US', 1, 27.9091900000, -81.9981400000), (1116981, 1001408, 'Fullerton', NULL, 'fullerton', 'US', 1, 41.3633500000, -97.9692300000), (1116982, 1001422, 'Fullerton', NULL, 'fullerton', 'US', 1, 40.6317600000, -75.4732400000), (1116983, 1001416, 'Fullerton', NULL, 'fullerton', 'US', 1, 33.8702900000, -117.9253400000), (1116984, 1001407, 'Fulshear', NULL, 'fulshear', 'US', 1, 29.6899600000, -95.8996800000), (1116985, 1001419, 'Fulton', NULL, 'fulton', 'US', 1, 36.5042300000, -88.8742300000), (1116986, 1001451, 'Fulton', NULL, 'fulton', 'US', 1, 38.8467100000, -91.9479600000), (1116987, 1001401, 'Fulton', NULL, 'fulton', 'US', 1, 39.1509400000, -76.9230300000), (1116988, 1001430, 'Fulton', NULL, 'fulton', 'US', 1, 34.2739900000, -88.4092100000), (1116989, 1001407, 'Fulton', NULL, 'fulton', 'US', 1, 28.0614000000, -97.0411000000), (1116990, 1001425, 'Fulton', NULL, 'fulton', 'US', 1, 41.8672500000, -90.1595700000), (1116991, 1001452, 'Fulton', NULL, 'fulton', 'US', 1, 43.3228500000, -76.4171600000), (1116992, 1001444, 'Fulton County', NULL, 'fulton-county', 'US', 1, 36.3816700000, -91.8182400000), (1116993, 1001455, 'Fulton County', NULL, 'fulton-county', 'US', 1, 33.7902500000, -84.4670200000), (1116994, 1001419, 'Fulton County', NULL, 'fulton-county', 'US', 1, 36.5540800000, -89.1876100000), (1116995, 1001425, 'Fulton County', NULL, 'fulton-county', 'US', 1, 40.4727700000, -90.2074700000), (1116996, 1001440, 'Fulton County', NULL, 'fulton-county', 'US', 1, 41.0469600000, -86.2635800000), (1116997, 1001452, 'Fulton County', NULL, 'fulton-county', 'US', 1, 43.1138500000, -74.4221700000), (1116998, 1001422, 'Fulton County', NULL, 'fulton-county', 'US', 1, 39.9253400000, -78.1126800000), (1116999, 1001456, 'Fultondale', NULL, 'fultondale', 'US', 1, 33.6048300000, -86.7938800000), (1117000, 1001447, 'Fuquay-Varina', NULL, 'fuquay-varina', 'US', 1, 35.5843200000, -78.8000100000), (1117001, 1001408, 'Furnas County', NULL, 'furnas-county', 'US', 1, 40.1764700000, -99.9122700000), (1117002, 1001436, 'Fussels Corner', NULL, 'fussels-corner', 'US', 1, 28.0541900000, -81.8606400000), (1117003, 1001456, 'Fyffe', NULL, 'fyffe', 'US', 1, 34.4467600000, -85.9041400000), (1117004, 1001456, 'Gadsden', NULL, 'gadsden', 'US', 1, 34.0143400000, -86.0063900000), (1117005, 1001443, 'Gadsden', NULL, 'gadsden', 'US', 1, 33.8457100000, -80.7659200000), (1117006, 1001436, 'Gadsden County', NULL, 'gadsden-county', 'US', 1, 30.5794700000, -84.6136000000), (1117007, 1001443, 'Gaffney', NULL, 'gaffney', 'US', 1, 35.0717900000, -81.6498200000), (1117008, 1001408, 'Gage County', NULL, 'gage-county', 'US', 1, 40.2619300000, -96.6894400000), (1117009, 1001425, 'Gage Park', NULL, 'gage-park', 'US', 1, 41.7950300000, -87.6961600000), (1117010, 1001425, 'Gages Lake', NULL, 'gages-lake', 'US', 1, 42.3516900000, -87.9825800000), (1117011, 1001407, 'Gail', NULL, 'gail', 'US', 1, 32.7703800000, -101.4454100000), (1117012, 1001407, 'Gaines County', NULL, 'gaines-county', 'US', 1, 32.7407300000, -102.6351800000), (1117013, 1001454, 'Gainesboro', NULL, 'gainesboro', 'US', 1, 36.3556100000, -85.6588700000), (1117014, 1001436, 'Gainesville', NULL, 'gainesville', 'US', 1, 29.6516300000, -82.3248300000), (1117015, 1001455, 'Gainesville', NULL, 'gainesville', 'US', 1, 34.2978800000, -83.8240700000), (1117016, 1001451, 'Gainesville', NULL, 'gainesville', 'US', 1, 36.6031200000, -92.4282200000), (1117017, 1001407, 'Gainesville', NULL, 'gainesville', 'US', 1, 33.6259400000, -97.1333500000), (1117018, 1001427, 'Gainesville', NULL, 'gainesville', 'US', 1, 38.7956700000, -77.6138800000), (1117019, 1001401, 'Gaithersburg', NULL, 'gaithersburg', 'US', 1, 39.1434400000, -77.2013700000), (1117020, 1001427, 'Galax', NULL, 'galax', 'US', 1, 36.6612400000, -80.9239700000), (1117021, 1001440, 'Galena', NULL, 'galena', 'US', 1, 38.3517300000, -85.9416400000), (1117022, 1001406, 'Galena', NULL, 'galena', 'US', 1, 37.0759000000, -94.6396700000), (1117023, 1001451, 'Galena', NULL, 'galena', 'US', 1, 36.8053400000, -93.4665800000), (1117024, 1001425, 'Galena', NULL, 'galena', 'US', 1, 42.4166700000, -90.4290200000), (1117025, 1001407, 'Galena Park', NULL, 'galena-park', 'US', 1, 29.7335600000, -95.2302100000), (1117026, 1001435, 'Gales Ferry', NULL, 'gales-ferry', 'US', 1, 41.4298200000, -72.0820200000), (1117027, 1001425, 'Galesburg', NULL, 'galesburg', 'US', 1, 40.9478200000, -90.3712400000), (1117028, 1001426, 'Galesburg', NULL, 'galesburg', 'US', 1, 42.2886500000, -85.4180600000), (1117029, 1001441, 'Galesville', NULL, 'galesville', 'US', 1, 44.0816300000, -91.3490400000), (1117030, 1001422, 'Galeton', NULL, 'galeton', 'US', 1, 41.7331200000, -77.6419300000), (1117031, 1001452, 'Galeville', NULL, 'galeville', 'US', 1, 43.0900700000, -76.1729800000), (1117032, 1001451, 'Gallatin', NULL, 'gallatin', 'US', 1, 39.9144500000, -93.9621700000), (1117033, 1001454, 'Gallatin', NULL, 'gallatin', 'US', 1, 36.3883800000, -86.4466600000), (1117034, 1001425, 'Gallatin County', NULL, 'gallatin-county', 'US', 1, 37.7627500000, -88.2305000000), (1117035, 1001419, 'Gallatin County', NULL, 'gallatin-county', 'US', 1, 38.7568700000, -84.8593100000), (1117036, 1001446, 'Gallatin County', NULL, 'gallatin-county', 'US', 1, 45.5404900000, -111.1703500000), (1117037, 1001457, 'Galliano', NULL, 'galliano', 'US', 1, 29.4421600000, -90.2992500000), (1117038, 1001422, 'Gallitzin', NULL, 'gallitzin', 'US', 1, 40.4822900000, -78.5516800000), (1117039, 1001423, 'Gallup', NULL, 'gallup', 'US', 1, 35.5280800000, -108.7425800000), (1117040, 1001416, 'Galt', NULL, 'galt', 'US', 1, 38.2546400000, -121.2999500000), (1117041, 1001425, 'Galva', NULL, 'galva', 'US', 1, 41.1675400000, -90.0426100000), (1117042, 1001407, 'Galveston', NULL, 'galveston', 'US', 1, 29.3013500000, -94.7977000000), (1117043, 1001440, 'Galveston', NULL, 'galveston', 'US', 1, 40.5789300000, -86.1902700000), (1117044, 1001407, 'Galveston County', NULL, 'galveston-county', 'US', 1, 29.2976700000, -94.8108700000), (1117045, 1001401, 'Gambrills', NULL, 'gambrills', 'US', 1, 39.0670500000, -76.6652400000), (1117046, 1001447, 'Gamewell', NULL, 'gamewell', 'US', 1, 35.8693000000, -81.5962100000), (1117047, 1001407, 'Ganado', NULL, 'ganado', 'US', 1, 29.0405400000, -96.5135800000), (1117048, 1001434, 'Ganado', NULL, 'ganado', 'US', 1, 35.7114000000, -109.5420500000), (1117049, 1001436, 'Gandy', NULL, 'gandy', 'US', 1, 27.8685000000, -82.6161200000), (1117050, 1001452, 'Gang Mills', NULL, 'gang-mills', 'US', 1, 42.1461900000, -77.1116400000), (1117051, 1001443, 'Gantt', NULL, 'gantt', 'US', 1, 34.8001200000, -82.4242900000), (1117052, 1001422, 'Gap', NULL, 'gap', 'US', 1, 39.9873200000, -76.0205100000), (1117053, 1001416, 'Garden Acres', NULL, 'garden-acres', 'US', 1, 37.9638100000, -121.2293900000), (1117054, 1001455, 'Garden City', NULL, 'garden-city', 'US', 1, 32.1143700000, -81.1540000000), (1117055, 1001451, 'Garden City', NULL, 'garden-city', 'US', 1, 38.5611200000, -94.1913300000), (1117056, 1001443, 'Garden City', NULL, 'garden-city', 'US', 1, 33.5929500000, -79.0086500000), (1117057, 1001426, 'Garden City', NULL, 'garden-city', 'US', 1, 42.3255900000, -83.3310400000), (1117058, 1001452, 'Garden City', NULL, 'garden-city', 'US', 1, 40.7267700000, -73.6343000000), (1117059, 1001406, 'Garden City', NULL, 'garden-city', 'US', 1, 37.9716900000, -100.8726600000), (1117060, 1001407, 'Garden City', NULL, 'garden-city', 'US', 1, 31.8640200000, -101.4812300000), (1117061, 1001460, 'Garden City', NULL, 'garden-city', 'US', 1, 43.6221100000, -116.2381700000), (1117062, 1001452, 'Garden City Park', NULL, 'garden-city-park', 'US', 1, 40.7409300000, -73.6626300000), (1117063, 1001452, 'Garden City South', NULL, 'garden-city-south', 'US', 1, 40.7123200000, -73.6609600000), (1117064, 1001408, 'Garden County', NULL, 'garden-county', 'US', 1, 41.6194300000, -102.3354400000), (1117065, 1001416, 'Garden Grove', NULL, 'garden-grove', 'US', 1, 33.7739100000, -117.9414500000), (1117066, 1001415, 'Garden Home-Whitford', NULL, 'garden-home-whitford', 'US', 1, 45.4640000000, -122.7589100000), (1117067, 1001407, 'Garden Ridge', NULL, 'garden-ridge', 'US', 1, 29.6346700000, -98.3052900000), (1117068, 1001422, 'Garden View', NULL, 'garden-view', 'US', 1, 41.2542400000, -77.0460800000), (1117069, 1001416, 'Gardena', NULL, 'gardena', 'US', 1, 33.8883500000, -118.3089600000), (1117070, 1001456, 'Gardendale', NULL, 'gardendale', 'US', 1, 33.6601000000, -86.8127700000), (1117071, 1001407, 'Gardendale', NULL, 'gardendale', 'US', 1, 32.0204000000, -102.3801500000), (1117072, 1001457, 'Gardere', NULL, 'gardere', 'US', 1, 30.3457500000, -91.1401100000), (1117073, 1001453, 'Gardiner', NULL, 'gardiner', 'US', 1, 44.2300700000, -69.7753200000), (1117074, 1001406, 'Gardner', NULL, 'gardner', 'US', 1, 38.8108400000, -94.9271900000), (1117075, 1001433, 'Gardner', NULL, 'gardner', 'US', 1, 42.5750900000, -71.9981300000), (1117076, 1001425, 'Gardner', NULL, 'gardner', 'US', 1, 41.1855900000, -88.3097800000), (1117077, 1001452, 'Gardnertown', NULL, 'gardnertown', 'US', 1, 41.5350900000, -74.0701400000), (1117078, 1001458, 'Gardnerville', NULL, 'gardnerville', 'US', 1, 38.9413000000, -119.7496200000), (1117079, 1001458, 'Gardnerville Ranchos', NULL, 'gardnerville-ranchos', 'US', 1, 38.8882400000, -119.7412900000), (1117080, 1001407, 'Garfield', NULL, 'garfield', 'US', 1, 30.1874400000, -97.5577800000), (1117081, 1001417, 'Garfield', NULL, 'garfield', 'US', 1, 40.8814900000, -74.1132000000), (1117082, 1001421, 'Garfield County', NULL, 'garfield-county', 'US', 1, 36.3790600000, -97.7827200000), (1117083, 1001408, 'Garfield County', NULL, 'garfield-county', 'US', 1, 41.9143600000, -98.9913900000), (1117084, 1001450, 'Garfield County', NULL, 'garfield-county', 'US', 1, 39.5993100000, -107.9039500000), (1117085, 1001414, 'Garfield County', NULL, 'garfield-county', 'US', 1, 37.8549200000, -111.4431300000), (1117086, 1001446, 'Garfield County', NULL, 'garfield-county', 'US', 1, 47.2777000000, -106.9928300000), (1117087, 1001462, 'Garfield County', NULL, 'garfield-county', 'US', 1, 46.4315600000, -117.5451900000), (1117088, 1001407, 'Garland', NULL, 'garland', 'US', 1, 32.9126200000, -96.6388800000), (1117089, 1001453, 'Garland', NULL, 'garland', 'US', 1, 45.0384000000, -69.1603200000), (1117090, 1001414, 'Garland', NULL, 'garland', 'US', 1, 41.7410400000, -112.1616200000), (1117091, 1001444, 'Garland County', NULL, 'garland-county', 'US', 1, 34.5766900000, -93.1504300000), (1117092, 1001447, 'Garner', NULL, 'garner', 'US', 1, 35.7112600000, -78.6141700000), (1117093, 1001459, 'Garner', NULL, 'garner', 'US', 1, 43.1024600000, -93.6018800000), (1117094, 1001416, 'Garnet', NULL, 'garnet', 'US', 1, 33.9019600000, -116.5455700000), (1117095, 1001406, 'Garnett', NULL, 'garnett', 'US', 1, 38.2805800000, -95.2419200000), (1117096, 1001419, 'Garrard County', NULL, 'garrard-county', 'US', 1, 37.6395800000, -84.5376300000), (1117097, 1001445, 'Garretson', NULL, 'garretson', 'US', 1, 43.7174700000, -96.5028200000), (1117098, 1001440, 'Garrett', NULL, 'garrett', 'US', 1, 41.3494900000, -85.1355300000), (1117099, 1001462, 'Garrett', NULL, 'garrett', 'US', 1, 46.0520800000, -118.4027500000), (1117100, 1001401, 'Garrett County', NULL, 'garrett-county', 'US', 1, 39.5286000000, -79.2738800000), (1117101, 1001401, 'Garrett Park', NULL, 'garrett-park', 'US', 1, 39.0381600000, -77.0930300000), (1117102, 1001401, 'Garrison', NULL, 'garrison', 'US', 1, 39.4059400000, -76.7605300000), (1117103, 1001418, 'Garrison', NULL, 'garrison', 'US', 1, 47.6522200000, -101.4157200000), (1117104, 1001421, 'Garvin County', NULL, 'garvin-county', 'US', 1, 34.7045700000, -97.3093200000), (1117105, 1001417, 'Garwood', NULL, 'garwood', 'US', 1, 40.6517700000, -74.3229300000), (1117106, 1001440, 'Gary', NULL, 'gary', 'US', 1, 41.5933700000, -87.3464300000), (1117107, 1001457, 'Garyville', NULL, 'garyville', 'US', 1, 30.0560400000, -90.6192600000), (1117108, 1001407, 'Garza County', NULL, 'garza-county', 'US', 1, 33.1798800000, -101.2984200000), (1117109, 1001440, 'Gas City', NULL, 'gas-city', 'US', 1, 40.4872600000, -85.6130300000), (1117110, 1001451, 'Gasconade County', NULL, 'gasconade-county', 'US', 1, 38.4408700000, -91.5079300000), (1117111, 1001452, 'Gasport', NULL, 'gasport', 'US', 1, 43.1992200000, -78.5761400000), (1117112, 1001444, 'Gassville', NULL, 'gassville', 'US', 1, 36.2831200000, -92.4940500000), (1117113, 1001447, 'Gaston', NULL, 'gaston', 'US', 1, 36.5004300000, -77.6449800000), (1117114, 1001443, 'Gaston', NULL, 'gaston', 'US', 1, 33.8171000000, -81.1009300000), (1117115, 1001447, 'Gaston County', NULL, 'gaston-county', 'US', 1, 35.2943700000, -81.1802500000), (1117116, 1001447, 'Gastonia', NULL, 'gastonia', 'US', 1, 35.2620800000, -81.1873000000), (1117117, 1001422, 'Gastonville', NULL, 'gastonville', 'US', 1, 40.2572900000, -79.9958800000), (1117118, 1001427, 'Gate City', NULL, 'gate-city', 'US', 1, 36.6378800000, -82.5809900000), (1117119, 1001447, 'Gates County', NULL, 'gates-county', 'US', 1, 36.4448900000, -76.7004900000), (1117120, 1001452, 'Gates-North Gates', NULL, 'gates-north-gates', 'US', 1, 43.1654700000, -77.7006600000), (1117121, 1001447, 'Gatesville', NULL, 'gatesville', 'US', 1, 36.4034900000, -76.7530100000), (1117122, 1001407, 'Gatesville', NULL, 'gatesville', 'US', 1, 31.4351600000, -97.7439100000), (1117123, 1001436, 'Gateway', NULL, 'gateway', 'US', 1, 26.5775700000, -81.7503600000), (1117124, 1001400, 'Gateway', NULL, 'gateway', 'US', 1, 61.5727800000, -149.2408300000), (1117125, 1001454, 'Gatlinburg', NULL, 'gatlinburg', 'US', 1, 35.7145300000, -83.5118900000), (1117126, 1001430, 'Gautier', NULL, 'gautier', 'US', 1, 30.3857500000, -88.6116900000), (1117127, 1001426, 'Gaylord', NULL, 'gaylord', 'US', 1, 45.0275100000, -84.6747500000), (1117128, 1001420, 'Gaylord', NULL, 'gaylord', 'US', 1, 44.5530200000, -94.2205300000), (1117129, 1001415, 'Gearhart', NULL, 'gearhart', 'US', 1, 46.0242700000, -123.9112500000), (1117130, 1001421, 'Geary', NULL, 'geary', 'US', 1, 35.6311600000, -98.3172900000), (1117131, 1001406, 'Geary County', NULL, 'geary-county', 'US', 1, 39.0023600000, -96.7525400000), (1117132, 1001422, 'Geistown', NULL, 'geistown', 'US', 1, 40.2909100000, -78.8689100000), (1117133, 1001460, 'Gem County', NULL, 'gem-county', 'US', 1, 44.0616900000, -116.3972300000), (1117134, 1001450, 'Genesee', NULL, 'genesee', 'US', 1, 39.6858200000, -105.2727700000), (1117135, 1001426, 'Genesee County', NULL, 'genesee-county', 'US', 1, 43.0217200000, -83.7067100000), (1117136, 1001452, 'Genesee County', NULL, 'genesee-county', 'US', 1, 43.0009300000, -78.1937100000), (1117137, 1001425, 'Geneseo', NULL, 'geneseo', 'US', 1, 41.4480900000, -90.1542800000), (1117138, 1001452, 'Geneseo', NULL, 'geneseo', 'US', 1, 42.7959000000, -77.8169500000), (1117139, 1001456, 'Geneva', NULL, 'geneva', 'US', 1, 31.0329600000, -85.8638200000), (1117140, 1001436, 'Geneva', NULL, 'geneva', 'US', 1, 28.7397200000, -81.1150600000), (1117141, 1001440, 'Geneva', NULL, 'geneva', 'US', 1, 40.5919900000, -84.9571900000), (1117142, 1001425, 'Geneva', NULL, 'geneva', 'US', 1, 41.8875300000, -88.3053500000), (1117143, 1001408, 'Geneva', NULL, 'geneva', 'US', 1, 40.5269500000, -97.5958800000), (1117144, 1001452, 'Geneva', NULL, 'geneva', 'US', 1, 42.8689600000, -76.9777400000), (1117145, 1001462, 'Geneva', NULL, 'geneva', 'US', 1, 48.7456700000, -122.4018300000), (1117146, 1001456, 'Geneva County', NULL, 'geneva-county', 'US', 1, 31.0950200000, -85.8389800000), (1117147, 1001425, 'Genoa', NULL, 'genoa', 'US', 1, 42.0972500000, -88.6928700000), (1117148, 1001441, 'Genoa City', NULL, 'genoa-city', 'US', 1, 42.4983500000, -88.3281500000), (1117149, 1001414, 'Genola', NULL, 'genola', 'US', 1, 39.9963400000, -111.8432700000), (1117150, 1001444, 'Gentry', NULL, 'gentry', 'US', 1, 36.2675800000, -94.4846600000), (1117151, 1001451, 'Gentry County', NULL, 'gentry-county', 'US', 1, 40.2121100000, -94.4099200000), (1117152, 1001459, 'George', NULL, 'george', 'US', 1, 43.3438600000, -96.0022400000), (1117153, 1001430, 'George County', NULL, 'george-county', 'US', 1, 30.8626100000, -88.6440300000), (1117154, 1001407, 'George West', NULL, 'george-west', 'US', 1, 28.3325000000, -98.1175100000), (1117155, 1001399, 'Georgetown', NULL, 'georgetown', 'US', 1, 38.6901100000, -75.3854700000), (1117156, 1001455, 'Georgetown', NULL, 'georgetown', 'US', 1, 31.9832600000, -81.2273300000), (1117157, 1001419, 'Georgetown', NULL, 'georgetown', 'US', 1, 38.2098000000, -84.5588300000), (1117158, 1001422, 'Georgetown', NULL, 'georgetown', 'US', 1, 39.9376000000, -76.0832900000), (1117159, 1001443, 'Georgetown', NULL, 'georgetown', 'US', 1, 33.3768300000, -79.2945000000), (1117160, 1001407, 'Georgetown', NULL, 'georgetown', 'US', 1, 30.6326900000, -97.6772300000), (1117161, 1001435, 'Georgetown', NULL, 'georgetown', 'US', 1, 41.2556500000, -73.4348400000), (1117162, 1001425, 'Georgetown', NULL, 'georgetown', 'US', 1, 42.1397500000, -89.8287300000), (1117163, 1001440, 'Georgetown', NULL, 'georgetown', 'US', 1, 40.7406000000, -86.5047300000), (1117164, 1001450, 'Georgetown', NULL, 'georgetown', 'US', 1, 39.7061000000, -105.6975000000), (1117165, 1001416, 'Georgetown', NULL, 'georgetown', 'US', 1, 38.9068400000, -120.8385500000), (1117166, 1001443, 'Georgetown County', NULL, 'georgetown-county', 'US', 1, 33.4127500000, -79.2993400000), (1117167, 1001456, 'Georgiana', NULL, 'georgiana', 'US', 1, 31.6371000000, -86.7419200000), (1117168, 1001451, 'Gerald', NULL, 'gerald', 'US', 1, 38.3997700000, -91.3307100000), (1117169, 1001416, 'Gerber', NULL, 'gerber', 'US', 1, 40.0562700000, -122.1502700000), (1117170, 1001408, 'Gering', NULL, 'gering', 'US', 1, 41.8258000000, -103.6605000000), (1117171, 1001425, 'Germantown', NULL, 'germantown', 'US', 1, 38.5536600000, -89.5384200000), (1117172, 1001401, 'Germantown', NULL, 'germantown', 'US', 1, 39.1731600000, -77.2716500000), (1117173, 1001454, 'Germantown', NULL, 'germantown', 'US', 1, 35.0867600000, -89.8100900000), (1117174, 1001441, 'Germantown', NULL, 'germantown', 'US', 1, 43.2286200000, -88.1103700000), (1117175, 1001425, 'Germantown Hills', NULL, 'germantown-hills', 'US', 1, 40.7664300000, -89.4678700000), (1117176, 1001421, 'Geronimo', NULL, 'geronimo', 'US', 1, 34.4811900000, -98.3831100000), (1117177, 1001407, 'Geronimo', NULL, 'geronimo', 'US', 1, 29.6630000000, -97.9669500000), (1117178, 1001415, 'Gervais', NULL, 'gervais', 'US', 1, 45.1081800000, -122.8976000000), (1117179, 1001422, 'Gettysburg', NULL, 'gettysburg', 'US', 1, 39.8309300000, -77.2311000000), (1117180, 1001445, 'Gettysburg', NULL, 'gettysburg', 'US', 1, 45.0116500000, -99.9556700000), (1117181, 1001407, 'Gholson', NULL, 'gholson', 'US', 1, 31.7010000000, -97.2164000000), (1117182, 1001408, 'Gibbon', NULL, 'gibbon', 'US', 1, 40.7483500000, -98.8448000000), (1117183, 1001417, 'Gibbsboro', NULL, 'gibbsboro', 'US', 1, 39.8381700000, -74.9648900000), (1117184, 1001417, 'Gibbstown', NULL, 'gibbstown', 'US', 1, 39.8251100000, -75.2835200000), (1117185, 1001426, 'Gibraltar', NULL, 'gibraltar', 'US', 1, 42.0950400000, -83.1896500000), (1117186, 1001444, 'Gibson', NULL, 'gibson', 'US', 1, 34.8842600000, -92.2357000000), (1117187, 1001455, 'Gibson', NULL, 'gibson', 'US', 1, 33.2334800000, -82.5954100000), (1117188, 1001425, 'Gibson City', NULL, 'gibson-city', 'US', 1, 40.4584300000, -88.3846000000), (1117189, 1001440, 'Gibson County', NULL, 'gibson-county', 'US', 1, 38.3118300000, -87.5845900000), (1117190, 1001454, 'Gibson County', NULL, 'gibson-county', 'US', 1, 35.9966100000, -88.9326200000), (1117191, 1001436, 'Gibsonia', NULL, 'gibsonia', 'US', 1, 28.1147400000, -81.9736900000), (1117192, 1001422, 'Gibsonia', NULL, 'gibsonia', 'US', 1, 40.6300700000, -79.9695000000), (1117193, 1001436, 'Gibsonton', NULL, 'gibsonton', 'US', 1, 27.8536400000, -82.3825900000), (1117194, 1001447, 'Gibsonville', NULL, 'gibsonville', 'US', 1, 36.1056900000, -79.5422500000), (1117195, 1001407, 'Giddings', NULL, 'giddings', 'US', 1, 30.1827200000, -96.9363700000), (1117196, 1001451, 'Gideon', NULL, 'gideon', 'US', 1, 36.4520100000, -89.9192600000), (1117197, 1001436, 'Gifford', NULL, 'gifford', 'US', 1, 27.6753100000, -80.4092200000), (1117198, 1001425, 'Gifford', NULL, 'gifford', 'US', 1, 40.3058700000, -88.0211500000), (1117199, 1001462, 'Gig Harbor', NULL, 'gig-harbor', 'US', 1, 47.3292600000, -122.5801300000), (1117200, 1001434, 'Gila Bend', NULL, 'gila-bend', 'US', 1, 32.9478200000, -112.7168300000), (1117201, 1001434, 'Gila County', NULL, 'gila-county', 'US', 1, 33.7997500000, -110.8117400000), (1117202, 1001459, 'Gilbert', NULL, 'gilbert', 'US', 1, 42.1069300000, -93.6496600000), (1117203, 1001420, 'Gilbert', NULL, 'gilbert', 'US', 1, 47.4888200000, -92.4649100000), (1117204, 1001434, 'Gilbert', NULL, 'gilbert', 'US', 1, 33.3528300000, -111.7890300000), (1117205, 1001429, 'Gilbert Creek', NULL, 'gilbert-creek', 'US', 1, 37.5759400000, -81.8948400000), (1117206, 1001425, 'Gilberts', NULL, 'gilberts', 'US', 1, 42.1033600000, -88.3728600000), (1117207, 1001422, 'Gilbertsville', NULL, 'gilbertsville', 'US', 1, 40.3201000000, -75.6101800000), (1117208, 1001436, 'Gilchrist County', NULL, 'gilchrist-county', 'US', 1, 29.7258200000, -82.8003700000), (1117209, 1001450, 'Gilcrest', NULL, 'gilcrest', 'US', 1, 40.2819300000, -104.7777500000), (1117210, 1001454, 'Giles County', NULL, 'giles-county', 'US', 1, 35.2021500000, -87.0347800000), (1117211, 1001427, 'Giles County', NULL, 'giles-county', 'US', 1, 37.3140300000, -80.7037400000), (1117212, 1001404, 'Gilford', NULL, 'gilford', 'US', 1, 43.5475800000, -71.4067400000), (1117213, 1001433, 'Gill', NULL, 'gill', 'US', 1, 42.6403600000, -72.4995300000), (1117214, 1001425, 'Gillespie', NULL, 'gillespie', 'US', 1, 39.1297700000, -89.8195400000), (1117215, 1001407, 'Gillespie County', NULL, 'gillespie-county', 'US', 1, 30.3180600000, -98.9464800000), (1117216, 1001441, 'Gillett', NULL, 'gillett', 'US', 1, 44.8899900000, -88.3073200000), (1117217, 1001442, 'Gillette', NULL, 'gillette', 'US', 1, 44.2910900000, -105.5022200000), (1117218, 1001415, 'Gilliam County', NULL, 'gilliam-county', 'US', 1, 45.3780600000, -120.2108700000), (1117219, 1001425, 'Gilman', NULL, 'gilman', 'US', 1, 40.7667000000, -87.9922600000), (1117220, 1001404, 'Gilmanton', NULL, 'gilmanton', 'US', 1, 43.4242500000, -71.4145200000), (1117221, 1001407, 'Gilmer', NULL, 'gilmer', 'US', 1, 32.7287500000, -94.9424400000), (1117222, 1001455, 'Gilmer County', NULL, 'gilmer-county', 'US', 1, 34.6912100000, -84.4555900000), (1117223, 1001429, 'Gilmer County', NULL, 'gilmer-county', 'US', 1, 38.9240600000, -80.8570800000), (1117224, 1001450, 'Gilpin County', NULL, 'gilpin-county', 'US', 1, 39.8575600000, -105.5225300000), (1117225, 1001416, 'Gilroy', NULL, 'gilroy', 'US', 1, 37.0057800000, -121.5682800000), (1117226, 1001425, 'Girard', NULL, 'girard', 'US', 1, 39.4464400000, -89.7809300000), (1117227, 1001406, 'Girard', NULL, 'girard', 'US', 1, 37.5111600000, -94.8380200000), (1117228, 1001422, 'Girard', NULL, 'girard', 'US', 1, 42.0003300000, -80.3181200000), (1117229, 1001422, 'Girardville', NULL, 'girardville', 'US', 1, 40.7914800000, -76.2835600000), (1117230, 1001400, 'Girdwood', NULL, 'girdwood', 'US', 1, 60.9425000000, -149.1663900000), (1117231, 1001446, 'Glacier County', NULL, 'glacier-county', 'US', 1, 48.7050800000, -112.9947500000), (1117232, 1001427, 'Glade Spring', NULL, 'glade-spring', 'US', 1, 36.7912200000, -81.7712300000), (1117233, 1001436, 'Glades County', NULL, 'glades-county', 'US', 1, 26.9564800000, -81.1889800000), (1117234, 1001436, 'Gladeview', NULL, 'gladeview', 'US', 1, 25.8392600000, -80.2356000000), (1117235, 1001407, 'Gladewater', NULL, 'gladewater', 'US', 1, 32.5365300000, -94.9427200000), (1117236, 1001451, 'Gladstone', NULL, 'gladstone', 'US', 1, 39.2038900000, -94.5546800000), (1117237, 1001426, 'Gladstone', NULL, 'gladstone', 'US', 1, 45.8527400000, -87.0218000000), (1117238, 1001417, 'Gladstone', NULL, 'gladstone', 'US', 1, 40.7226000000, -74.6654400000), (1117239, 1001415, 'Gladstone', NULL, 'gladstone', 'US', 1, 45.3806800000, -122.5948100000), (1117240, 1001426, 'Gladwin', NULL, 'gladwin', 'US', 1, 43.9808500000, -84.4864000000), (1117241, 1001426, 'Gladwin County', NULL, 'gladwin-county', 'US', 1, 43.9906700000, -84.3882500000), (1117242, 1001452, 'Glasco', NULL, 'glasco', 'US', 1, 42.0437000000, -73.9473600000), (1117243, 1001455, 'Glascock County', NULL, 'glascock-county', 'US', 1, 33.2292800000, -82.6107000000), (1117244, 1001425, 'Glasford', NULL, 'glasford', 'US', 1, 40.5725400000, -89.8134400000), (1117245, 1001399, 'Glasgow', NULL, 'glasgow', 'US', 1, 39.6048300000, -75.7452100000), (1117246, 1001419, 'Glasgow', NULL, 'glasgow', 'US', 1, 36.9958800000, -85.9119200000), (1117247, 1001451, 'Glasgow', NULL, 'glasgow', 'US', 1, 39.2272500000, -92.8465800000), (1117248, 1001427, 'Glasgow', NULL, 'glasgow', 'US', 1, 37.6340200000, -79.4503100000), (1117249, 1001446, 'Glasgow', NULL, 'glasgow', 'US', 1, 48.1969600000, -106.6367100000), (1117250, 1001451, 'Glasgow Village', NULL, 'glasgow-village', 'US', 1, 38.7536600000, -90.1984400000), (1117251, 1001417, 'Glassboro', NULL, 'glassboro', 'US', 1, 39.7028900000, -75.1118400000), (1117252, 1001407, 'Glasscock County', NULL, 'glasscock-county', 'US', 1, 31.8694600000, -101.5208000000), (1117253, 1001401, 'Glassmanor', NULL, 'glassmanor', 'US', 1, 38.8190000000, -76.9985900000), (1117254, 1001422, 'Glassport', NULL, 'glassport', 'US', 1, 40.3247900000, -79.8922700000), (1117255, 1001435, 'Glastonbury', NULL, 'glastonbury', 'US', 1, 41.7123200000, -72.6081500000), (1117256, 1001435, 'Glastonbury Center', NULL, 'glastonbury-center', 'US', 1, 41.7009300000, -72.5995300000), (1117257, 1001454, 'Gleason', NULL, 'gleason', 'US', 1, 36.2136700000, -88.6125500000), (1117258, 1001462, 'Gleed', NULL, 'gleed', 'US', 1, 46.6581800000, -120.6134000000), (1117259, 1001427, 'Glen Allen', NULL, 'glen-allen', 'US', 1, 37.6659800000, -77.5063700000), (1117260, 1001447, 'Glen Alpine', NULL, 'glen-alpine', 'US', 1, 35.7290200000, -81.7792700000), (1117261, 1001416, 'Glen Avon', NULL, 'glen-avon', 'US', 1, 34.0116800000, -117.4847700000), (1117262, 1001401, 'Glen Burnie', NULL, 'glen-burnie', 'US', 1, 39.1626100000, -76.6246900000), (1117263, 1001425, 'Glen Carbon', NULL, 'glen-carbon', 'US', 1, 38.7483800000, -89.9831600000), (1117264, 1001452, 'Glen Cove', NULL, 'glen-cove', 'US', 1, 40.8623200000, -73.6337400000), (1117265, 1001425, 'Glen Ellyn', NULL, 'glen-ellyn', 'US', 1, 41.8775300000, -88.0670100000), (1117266, 1001417, 'Glen Gardner', NULL, 'glen-gardner', 'US', 1, 40.6967700000, -74.9407200000), (1117267, 1001452, 'Glen Head', NULL, 'glen-head', 'US', 1, 40.8353800000, -73.6237400000), (1117268, 1001422, 'Glen Lyon', NULL, 'glen-lyon', 'US', 1, 41.1750800000, -76.0746500000), (1117269, 1001452, 'Glen Oaks', NULL, 'glen-oaks', 'US', 1, 40.7470500000, -73.7115200000), (1117270, 1001447, 'Glen Raven', NULL, 'glen-raven', 'US', 1, 36.1131900000, -79.4764100000), (1117271, 1001417, 'Glen Ridge', NULL, 'glen-ridge', 'US', 1, 40.8053800000, -74.2037600000), (1117272, 1001422, 'Glen Rock', NULL, 'glen-rock', 'US', 1, 39.7931600000, -76.7302500000), (1117273, 1001417, 'Glen Rock', NULL, 'glen-rock', 'US', 1, 40.9628800000, -74.1329200000), (1117274, 1001407, 'Glen Rose', NULL, 'glen-rose', 'US', 1, 32.2345900000, -97.7553100000), (1117275, 1001401, 'Glenarden', NULL, 'glenarden', 'US', 1, 38.9292800000, -76.8616400000), (1117276, 1001456, 'Glencoe', NULL, 'glencoe', 'US', 1, 33.9570400000, -85.9324700000), (1117277, 1001436, 'Glencoe', NULL, 'glencoe', 'US', 1, 29.0258200000, -80.9720000000), (1117278, 1001425, 'Glencoe', NULL, 'glencoe', 'US', 1, 42.1350300000, -87.7581200000), (1117279, 1001420, 'Glencoe', NULL, 'glencoe', 'US', 1, 44.7691300000, -94.1516400000), (1117280, 1001451, 'Glendale', NULL, 'glendale', 'US', 1, 38.5958900000, -90.3770600000), (1117281, 1001430, 'Glendale', NULL, 'glendale', 'US', 1, 31.3646200000, -89.3061700000), (1117282, 1001429, 'Glendale', NULL, 'glendale', 'US', 1, 39.9492400000, -80.7542500000), (1117283, 1001452, 'Glendale', NULL, 'glendale', 'US', 1, 40.7014900000, -73.8868000000), (1117284, 1001441, 'Glendale', NULL, 'glendale', 'US', 1, 43.1352900000, -87.9356400000), (1117285, 1001434, 'Glendale', NULL, 'glendale', 'US', 1, 33.5386500000, -112.1859900000), (1117286, 1001416, 'Glendale', NULL, 'glendale', 'US', 1, 34.1425100000, -118.2550800000), (1117287, 1001450, 'Glendale', NULL, 'glendale', 'US', 1, 39.7049900000, -104.9335900000), (1117288, 1001425, 'Glendale Heights', NULL, 'glendale-heights', 'US', 1, 41.9146000000, -88.0648600000), (1117289, 1001446, 'Glendive', NULL, 'glendive', 'US', 1, 47.1052900000, -104.7124600000), (1117290, 1001417, 'Glendora', NULL, 'glendora', 'US', 1, 39.8395600000, -75.0735100000), (1117291, 1001416, 'Glendora', NULL, 'glendora', 'US', 1, 34.1361200000, -117.8653400000), (1117292, 1001450, 'Gleneagle', NULL, 'gleneagle', 'US', 1, 39.0452700000, -104.8244200000), (1117293, 1001401, 'Glenmont', NULL, 'glenmont', 'US', 1, 39.0578900000, -77.0497000000), (1117294, 1001457, 'Glenmora', NULL, 'glenmora', 'US', 1, 30.9765800000, -92.5851400000), (1117295, 1001441, 'Glenmore', NULL, 'glenmore', 'US', 1, 44.3858300000, -87.9273200000), (1117296, 1001416, 'Glenn County', NULL, 'glenn-county', 'US', 1, 39.5984000000, -122.3922100000), (1117297, 1001401, 'Glenn Dale', NULL, 'glenn-dale', 'US', 1, 38.9876100000, -76.8205300000), (1117298, 1001407, 'Glenn Heights', NULL, 'glenn-heights', 'US', 1, 32.5487500000, -96.8566700000), (1117299, 1001460, 'Glenns Ferry', NULL, 'glenns-ferry', 'US', 1, 42.9549000000, -115.3009000000), (1117300, 1001455, 'Glennville', NULL, 'glennville', 'US', 1, 31.9365900000, -81.9284500000), (1117301, 1001422, 'Glenolden', NULL, 'glenolden', 'US', 1, 39.9001100000, -75.2890700000), (1117302, 1001421, 'Glenpool', NULL, 'glenpool', 'US', 1, 35.9553700000, -96.0088800000), (1117303, 1001442, 'Glenrock', NULL, 'glenrock', 'US', 1, 42.8613600000, -105.8722300000), (1117304, 1001452, 'Glens Falls', NULL, 'glens-falls', 'US', 1, 43.3095200000, -73.6440100000), (1117305, 1001452, 'Glens Falls North', NULL, 'glens-falls-north', 'US', 1, 43.3350600000, -73.6825100000), (1117306, 1001422, 'Glenshaw', NULL, 'glenshaw', 'US', 1, 40.5328500000, -79.9675500000), (1117307, 1001422, 'Glenside', NULL, 'glenside', 'US', 1, 40.1023300000, -75.1521200000), (1117308, 1001436, 'Glenvar Heights', NULL, 'glenvar-heights', 'US', 1, 25.7076000000, -80.3256100000), (1117309, 1001425, 'Glenview', NULL, 'glenview', 'US', 1, 42.0697500000, -87.7878400000), (1117310, 1001429, 'Glenville', NULL, 'glenville', 'US', 1, 38.9342600000, -80.8376000000), (1117311, 1001435, 'Glenville', NULL, 'glenville', 'US', 1, 41.0353800000, -73.6598500000), (1117312, 1001444, 'Glenwood', NULL, 'glenwood', 'US', 1, 34.3267700000, -93.5507400000), (1117313, 1001459, 'Glenwood', NULL, 'glenwood', 'US', 1, 41.0469400000, -95.7425100000), (1117314, 1001425, 'Glenwood', NULL, 'glenwood', 'US', 1, 41.5425300000, -87.6022700000), (1117315, 1001420, 'Glenwood', NULL, 'glenwood', 'US', 1, 45.6502400000, -95.3897600000), (1117316, 1001441, 'Glenwood City', NULL, 'glenwood-city', 'US', 1, 45.0585700000, -92.1724100000), (1117317, 1001452, 'Glenwood Landing', NULL, 'glenwood-landing', 'US', 1, 40.8306600000, -73.6387400000), (1117318, 1001450, 'Glenwood Springs', NULL, 'glenwood-springs', 'US', 1, 39.5505400000, -107.3247800000), (1117319, 1001459, 'Glidden', NULL, 'glidden', 'US', 1, 42.0569300000, -94.7288700000), (1117320, 1001415, 'Glide', NULL, 'glide', 'US', 1, 43.3015100000, -123.1011800000), (1117321, 1001434, 'Globe', NULL, 'globe', 'US', 1, 33.3942200000, -110.7865000000), (1117322, 1001433, 'Gloucester', NULL, 'gloucester', 'US', 1, 42.6140500000, -70.6631300000), (1117323, 1001417, 'Gloucester City', NULL, 'gloucester-city', 'US', 1, 39.8917800000, -75.1162900000), (1117324, 1001417, 'Gloucester County', NULL, 'gloucester-county', 'US', 1, 39.7173100000, -75.1416700000), (1117325, 1001427, 'Gloucester County', NULL, 'gloucester-county', 'US', 1, 37.4012100000, -76.5229700000), (1117326, 1001427, 'Gloucester Courthouse', NULL, 'gloucester-courthouse', 'US', 1, 37.4098600000, -76.5266200000), (1117327, 1001427, 'Gloucester Point', NULL, 'gloucester-point', 'US', 1, 37.2540300000, -76.4968900000), (1117328, 1001452, 'Gloversville', NULL, 'gloversville', 'US', 1, 43.0528500000, -74.3437500000), (1117329, 1001443, 'Gloverville', NULL, 'gloverville', 'US', 1, 33.5259700000, -81.8301100000), (1117330, 1001420, 'Glyndon', NULL, 'glyndon', 'US', 1, 46.8752400000, -96.5789600000), (1117331, 1001455, 'Glynn County', NULL, 'glynn-county', 'US', 1, 31.2132400000, -81.4937000000), (1117332, 1001406, 'Goddard', NULL, 'goddard', 'US', 1, 37.6597400000, -97.5753300000), (1117333, 1001401, 'Goddard', NULL, 'goddard', 'US', 1, 38.9895500000, -76.8533100000), (1117334, 1001425, 'Godfrey', NULL, 'godfrey', 'US', 1, 38.9556000000, -90.1867800000), (1117335, 1001407, 'Godley', NULL, 'godley', 'US', 1, 32.4490300000, -97.5266900000), (1117336, 1001404, 'Goffstown', NULL, 'goffstown', 'US', 1, 43.0203600000, -71.6003500000), (1117337, 1001426, 'Gogebic County', NULL, 'gogebic-county', 'US', 1, 46.4955200000, -89.7955500000), (1117338, 1001425, 'Golconda', NULL, 'golconda', 'US', 1, 37.3672700000, -88.4864300000), (1117339, 1001462, 'Gold Bar', NULL, 'gold-bar', 'US', 1, 47.8567700000, -121.6970600000), (1117340, 1001415, 'Gold Beach', NULL, 'gold-beach', 'US', 1, 42.4073300000, -124.4217700000), (1117341, 1001434, 'Gold Camp', NULL, 'gold-camp', 'US', 1, 33.2936700000, -111.3042900000), (1117342, 1001434, 'Gold Canyon', NULL, 'gold-canyon', 'US', 1, 33.3714500000, -111.4369100000), (1117343, 1001415, 'Gold Hill', NULL, 'gold-hill', 'US', 1, 42.4317900000, -123.0506000000), (1117344, 1001422, 'Gold Key Lake', NULL, 'gold-key-lake', 'US', 1, 41.3059300000, -74.9385000000), (1117345, 1001416, 'Gold River', NULL, 'gold-river', 'US', 1, 38.6262900000, -121.2466200000), (1117346, 1001450, 'Golden', NULL, 'golden', 'US', 1, 39.7555400000, -105.2211000000), (1117347, 1001401, 'Golden Beach', NULL, 'golden-beach', 'US', 1, 38.4898500000, -76.6821800000), (1117348, 1001436, 'Golden Gate', NULL, 'golden-gate', 'US', 1, 26.1878700000, -81.6950900000), (1117349, 1001436, 'Golden Glades', NULL, 'golden-glades', 'US', 1, 25.9117600000, -80.2003300000), (1117350, 1001443, 'Golden Grove', NULL, 'golden-grove', 'US', 1, 34.7340100000, -82.4437400000), (1117351, 1001416, 'Golden Hills', NULL, 'golden-hills', 'US', 1, 35.1424700000, -118.4903600000), (1117352, 1001457, 'Golden Meadow', NULL, 'golden-meadow', 'US', 1, 29.3791100000, -90.2600800000), (1117353, 1001434, 'Golden Shores', NULL, 'golden-shores', 'US', 1, 34.7818800000, -114.4777500000), (1117354, 1001417, 'Golden Triangle', NULL, 'golden-triangle', 'US', 1, 39.9278900000, -75.0387800000), (1117355, 1001420, 'Golden Valley', NULL, 'golden-valley', 'US', 1, 45.0096900000, -93.3491200000), (1117356, 1001434, 'Golden Valley', NULL, 'golden-valley', 'US', 1, 35.2233300000, -114.2230100000), (1117357, 1001458, 'Golden Valley', NULL, 'golden-valley', 'US', 1, 39.6154700000, -119.8265800000), (1117358, 1001446, 'Golden Valley County', NULL, 'golden-valley-county', 'US', 1, 46.3812600000, -109.1749400000), (1117359, 1001418, 'Golden Valley County', NULL, 'golden-valley-county', 'US', 1, 46.9402200000, -103.8467000000), (1117360, 1001462, 'Goldendale', NULL, 'goldendale', 'US', 1, 45.8206800000, -120.8217300000), (1117361, 1001436, 'Goldenrod', NULL, 'goldenrod', 'US', 1, 28.6102800000, -81.2886800000), (1117362, 1001452, 'Goldens Bridge', NULL, 'goldens-bridge', 'US', 1, 41.2934300000, -73.6768000000), (1117363, 1001458, 'Goldfield', NULL, 'goldfield', 'US', 1, 37.7085400000, -117.2356300000), (1117364, 1001447, 'Goldsboro', NULL, 'goldsboro', 'US', 1, 35.3848800000, -77.9927700000), (1117365, 1001421, 'Goldsby', NULL, 'goldsby', 'US', 1, 35.1411800000, -97.4769800000), (1117366, 1001407, 'Goldthwaite', NULL, 'goldthwaite', 'US', 1, 31.4498900000, -98.5708800000), (1117367, 1001416, 'Goleta', NULL, 'goleta', 'US', 1, 34.4358300000, -119.8276400000), (1117368, 1001407, 'Goliad', NULL, 'goliad', 'US', 1, 28.6683300000, -97.3883300000), (1117369, 1001407, 'Goliad County', NULL, 'goliad-county', 'US', 1, 28.6571000000, -97.4264900000), (1117370, 1001457, 'Gonzales', NULL, 'gonzales', 'US', 1, 30.2385300000, -90.9201000000), (1117371, 1001407, 'Gonzales', NULL, 'gonzales', 'US', 1, 29.5016300000, -97.4524900000), (1117372, 1001416, 'Gonzales', NULL, 'gonzales', 'US', 1, 36.5066300000, -121.4443800000), (1117373, 1001407, 'Gonzales County', NULL, 'gonzales-county', 'US', 1, 29.4567300000, -97.4925200000), (1117374, 1001436, 'Gonzalez', NULL, 'gonzalez', 'US', 1, 30.5815800000, -87.2913600000), (1117375, 1001427, 'Goochland', NULL, 'goochland', 'US', 1, 37.6843100000, -77.8852700000), (1117376, 1001427, 'Goochland County', NULL, 'goochland-county', 'US', 1, 37.7219800000, -77.9163600000), (1117377, 1001456, 'Good Hope', NULL, 'good-hope', 'US', 1, 34.1159300000, -86.8636100000), (1117378, 1001416, 'Good Hope', NULL, 'good-hope', 'US', 1, 33.7647400000, -117.2669800000), (1117379, 1001420, 'Goodhue', NULL, 'goodhue', 'US', 1, 44.4005200000, -92.6238000000), (1117380, 1001420, 'Goodhue County', NULL, 'goodhue-county', 'US', 1, 44.4098500000, -92.7225900000), (1117381, 1001460, 'Gooding', NULL, 'gooding', 'US', 1, 42.9387900000, -114.7131100000), (1117382, 1001460, 'Gooding County', NULL, 'gooding-county', 'US', 1, 42.9709000000, -114.8115200000), (1117383, 1001425, 'Goodings Grove', NULL, 'goodings-grove', 'US', 1, 41.6292000000, -87.9308900000), (1117384, 1001440, 'Goodland', NULL, 'goodland', 'US', 1, 40.7633700000, -87.2936300000), (1117385, 1001406, 'Goodland', NULL, 'goodland', 'US', 1, 39.3508300000, -101.7101700000), (1117386, 1001454, 'Goodlettsville', NULL, 'goodlettsville', 'US', 1, 36.3231100000, -86.7133300000), (1117387, 1001451, 'Goodman', NULL, 'goodman', 'US', 1, 36.7417400000, -94.3991100000), (1117388, 1001430, 'Goodman', NULL, 'goodman', 'US', 1, 32.9701300000, -89.9123100000), (1117389, 1001426, 'Goodrich', NULL, 'goodrich', 'US', 1, 42.9169700000, -83.5063400000), (1117390, 1001420, 'Goodview', NULL, 'goodview', 'US', 1, 44.0624600000, -91.6957100000), (1117391, 1001456, 'Goodwater', NULL, 'goodwater', 'US', 1, 33.0656700000, -86.0533000000), (1117392, 1001421, 'Goodwell', NULL, 'goodwell', 'US', 1, 36.5953000000, -101.6365500000), (1117393, 1001434, 'Goodyear', NULL, 'goodyear', 'US', 1, 33.4353200000, -112.3582100000), (1117394, 1001443, 'Goose Creek', NULL, 'goose-creek', 'US', 1, 32.9810100000, -80.0325900000), (1117395, 1001456, 'Gordo', NULL, 'gordo', 'US', 1, 33.3201200000, -87.9028000000), (1117396, 1001455, 'Gordon', NULL, 'gordon', 'US', 1, 32.8820900000, -83.3323800000), (1117397, 1001408, 'Gordon', NULL, 'gordon', 'US', 1, 42.8047200000, -102.2032200000), (1117398, 1001455, 'Gordon County', NULL, 'gordon-county', 'US', 1, 34.5033600000, -84.8757500000), (1117399, 1001452, 'Gordon Heights', NULL, 'gordon-heights', 'US', 1, 40.8587100000, -72.9706600000), (1117400, 1001454, 'Gordonsville', NULL, 'gordonsville', 'US', 1, 36.1725600000, -85.9297100000), (1117401, 1001427, 'Gordonsville', NULL, 'gordonsville', 'US', 1, 38.1373600000, -78.1877800000), (1117402, 1001425, 'Goreville', NULL, 'goreville', 'US', 1, 37.5545000000, -88.9722900000), (1117403, 1001453, 'Gorham', NULL, 'gorham', 'US', 1, 43.6795200000, -70.4442200000), (1117404, 1001404, 'Gorham', NULL, 'gorham', 'US', 1, 44.3878400000, -71.1731300000), (1117405, 1001447, 'Gorman', NULL, 'gorman', 'US', 1, 36.0365300000, -78.8233400000), (1117406, 1001407, 'Gorman', NULL, 'gorman', 'US', 1, 32.2137500000, -98.6706100000), (1117407, 1001444, 'Goshen', NULL, 'goshen', 'US', 1, 36.1011900000, -93.9913100000), (1117408, 1001440, 'Goshen', NULL, 'goshen', 'US', 1, 41.5822700000, -85.8344400000), (1117409, 1001452, 'Goshen', NULL, 'goshen', 'US', 1, 41.4020400000, -74.3243200000), (1117410, 1001416, 'Goshen', NULL, 'goshen', 'US', 1, 36.3510600000, -119.4201200000), (1117411, 1001442, 'Goshen County', NULL, 'goshen-county', 'US', 1, 42.0879400000, -104.3532600000), (1117412, 1001444, 'Gosnell', NULL, 'gosnell', 'US', 1, 35.9597900000, -89.9720300000), (1117413, 1001408, 'Gosper County', NULL, 'gosper-county', 'US', 1, 40.5148200000, -99.8307000000), (1117414, 1001436, 'Gotha', NULL, 'gotha', 'US', 1, 28.5277800000, -81.5231300000), (1117415, 1001408, 'Gothenburg', NULL, 'gothenburg', 'US', 1, 40.9294500000, -100.1606800000), (1117416, 1001436, 'Goulding', NULL, 'goulding', 'US', 1, 30.4429800000, -87.2224700000), (1117417, 1001436, 'Goulds', NULL, 'goulds', 'US', 1, 25.5626100000, -80.3822800000), (1117418, 1001453, 'Gouldsboro', NULL, 'gouldsboro', 'US', 1, 44.4784100000, -68.0383400000), (1117419, 1001452, 'Gouverneur', NULL, 'gouverneur', 'US', 1, 44.3367300000, -75.4629900000), (1117420, 1001406, 'Gove', NULL, 'gove', 'US', 1, 38.9577900000, -100.4887500000), (1117421, 1001406, 'Gove County', NULL, 'gove-county', 'US', 1, 38.9161000000, -100.4829000000), (1117422, 1001452, 'Gowanda', NULL, 'gowanda', 'US', 1, 42.4631200000, -78.9358700000), (1117423, 1001451, 'Gower', NULL, 'gower', 'US', 1, 39.6108300000, -94.5994000000), (1117424, 1001440, 'Grabill', NULL, 'grabill', 'US', 1, 41.2108800000, -84.9669100000), (1117425, 1001436, 'Graceville', NULL, 'graceville', 'US', 1, 30.9568500000, -85.5166000000), (1117426, 1001455, 'Grady County', NULL, 'grady-county', 'US', 1, 30.8746700000, -84.2344300000), (1117427, 1001421, 'Grady County', NULL, 'grady-county', 'US', 1, 35.0169400000, -97.8841100000), (1117428, 1001429, 'Grafton', NULL, 'grafton', 'US', 1, 39.3409200000, -80.0189700000), (1117429, 1001433, 'Grafton', NULL, 'grafton', 'US', 1, 42.2070400000, -71.6856200000), (1117430, 1001404, 'Grafton', NULL, 'grafton', 'US', 1, 43.5586800000, -71.9439700000), (1117431, 1001418, 'Grafton', NULL, 'grafton', 'US', 1, 48.4122100000, -97.4106300000), (1117432, 1001441, 'Grafton', NULL, 'grafton', 'US', 1, 43.3197300000, -87.9534200000), (1117433, 1001404, 'Grafton County', NULL, 'grafton-county', 'US', 1, 43.9407400000, -71.8205500000), (1117434, 1001447, 'Graham', NULL, 'graham', 'US', 1, 36.0690300000, -79.4005800000), (1117435, 1001407, 'Graham', NULL, 'graham', 'US', 1, 33.1070600000, -98.5895000000), (1117436, 1001462, 'Graham', NULL, 'graham', 'US', 1, 47.0528800000, -122.2942800000), (1117437, 1001406, 'Graham County', NULL, 'graham-county', 'US', 1, 39.3497200000, -99.8832500000), (1117438, 1001447, 'Graham County', NULL, 'graham-county', 'US', 1, 35.3501600000, -83.8335600000), (1117439, 1001434, 'Graham County', NULL, 'graham-county', 'US', 1, 32.9327200000, -109.8874400000), (1117440, 1001451, 'Grain Valley', NULL, 'grain-valley', 'US', 1, 39.0150100000, -94.1985600000), (1117441, 1001454, 'Grainger County', NULL, 'grainger-county', 'US', 1, 36.2762500000, -83.5096200000), (1117442, 1001457, 'Grambling', NULL, 'grambling', 'US', 1, 32.5276500000, -92.7140400000), (1117443, 1001457, 'Gramercy', NULL, 'gramercy', 'US', 1, 30.0474200000, -90.6898100000), (1117444, 1001452, 'Gramercy Park', NULL, 'gramercy-park', 'US', 1, 40.7375000000, -73.9861100000), (1117445, 1001407, 'Granbury', NULL, 'granbury', 'US', 1, 32.4420800000, -97.7942000000), (1117446, 1001451, 'Granby', NULL, 'granby', 'US', 1, 36.9192300000, -94.2552200000), (1117447, 1001433, 'Granby', NULL, 'granby', 'US', 1, 42.2564800000, -72.5162000000), (1117448, 1001450, 'Granby', NULL, 'granby', 'US', 1, 40.0861000000, -105.9394600000), (1117449, 1001456, 'Grand Bay', NULL, 'grand-bay', 'US', 1, 30.4763100000, -88.3422300000), (1117450, 1001426, 'Grand Blanc', NULL, 'grand-blanc', 'US', 1, 42.9275300000, -83.6299500000), (1117451, 1001425, 'Grand Boulevard', NULL, 'grand-boulevard', 'US', 1, 41.8139200000, -87.6172700000), (1117452, 1001434, 'Grand Canyon', NULL, 'grand-canyon', 'US', 1, 36.0544300000, -112.1393400000), (1117453, 1001434, 'Grand Canyon Village', NULL, 'grand-canyon-village', 'US', 1, 36.0463700000, -112.1540600000), (1117454, 1001462, 'Grand Coulee', NULL, 'grand-coulee', 'US', 1, 47.9415400000, -119.0033500000), (1117455, 1001414, 'Grand County', NULL, 'grand-county', 'US', 1, 38.9817400000, -109.5697100000), (1117456, 1001450, 'Grand County', NULL, 'grand-county', 'US', 1, 40.1026100000, -106.1183600000), (1117457, 1001418, 'Grand Forks', NULL, 'grand-forks', 'US', 1, 47.9252600000, -97.0328500000), (1117458, 1001418, 'Grand Forks Air Force Base', NULL, 'grand-forks-air-force-base', 'US', 1, 47.9549300000, -97.3866400000), (1117459, 1001418, 'Grand Forks County', NULL, 'grand-forks-county', 'US', 1, 47.9219200000, -97.4569300000), (1117460, 1001426, 'Grand Haven', NULL, 'grand-haven', 'US', 1, 43.0630700000, -86.2283900000), (1117461, 1001408, 'Grand Island', NULL, 'grand-island', 'US', 1, 40.9250100000, -98.3420100000), (1117462, 1001452, 'Grand Island', NULL, 'grand-island', 'US', 1, 43.0331100000, -78.9625400000), (1117463, 1001457, 'Grand Isle', NULL, 'grand-isle', 'US', 1, 29.2366200000, -89.9872900000); INSERT INTO `[[dbprefix]]t_city` VALUES (1117464, 1001409, 'Grand Isle County', NULL, 'grand-isle-county', 'US', 1, 44.7968300000, -73.2948300000), (1117465, 1001450, 'Grand Junction', NULL, 'grand-junction', 'US', 1, 39.0638700000, -108.5506500000), (1117466, 1001426, 'Grand Ledge', NULL, 'grand-ledge', 'US', 1, 42.7533700000, -84.7463800000), (1117467, 1001420, 'Grand Marais', NULL, 'grand-marais', 'US', 1, 47.7504500000, -90.3342700000), (1117468, 1001420, 'Grand Meadow', NULL, 'grand-meadow', 'US', 1, 43.7058000000, -92.5721200000), (1117469, 1001462, 'Grand Mound', NULL, 'grand-mound', 'US', 1, 46.7878800000, -123.0112500000), (1117470, 1001457, 'Grand Point', NULL, 'grand-point', 'US', 1, 30.0613100000, -90.7534300000), (1117471, 1001407, 'Grand Prairie', NULL, 'grand-prairie', 'US', 1, 32.7459600000, -96.9977800000), (1117472, 1001420, 'Grand Rapids', NULL, 'grand-rapids', 'US', 1, 47.2371700000, -93.5302100000), (1117473, 1001426, 'Grand Rapids', NULL, 'grand-rapids', 'US', 1, 42.9633600000, -85.6680900000), (1117474, 1001415, 'Grand Ronde', NULL, 'grand-ronde', 'US', 1, 45.0601100000, -123.6092800000), (1117475, 1001407, 'Grand Saline', NULL, 'grand-saline', 'US', 1, 32.6734600000, -95.7094100000), (1117476, 1001416, 'Grand Terrace', NULL, 'grand-terrace', 'US', 1, 34.0339000000, -117.3136500000), (1117477, 1001426, 'Grand Traverse County', NULL, 'grand-traverse-county', 'US', 1, 44.7162400000, -85.5522000000), (1117478, 1001425, 'Grandview', NULL, 'grandview', 'US', 1, 39.8164400000, -89.6187100000), (1117479, 1001451, 'Grandview', NULL, 'grandview', 'US', 1, 38.8858400000, -94.5330100000), (1117480, 1001407, 'Grandview', NULL, 'grandview', 'US', 1, 32.2704200000, -97.1791800000), (1117481, 1001462, 'Grandview', NULL, 'grandview', 'US', 1, 46.2509700000, -119.9017000000), (1117482, 1001406, 'Grandview Plaza', NULL, 'grandview-plaza', 'US', 1, 39.0291600000, -96.7891700000), (1117483, 1001426, 'Grandville', NULL, 'grandville', 'US', 1, 42.9097500000, -85.7630900000), (1117484, 1001425, 'Grandwood Park', NULL, 'grandwood-park', 'US', 1, 42.3930800000, -87.9867400000), (1117485, 1001452, 'Grandyle Village', NULL, 'grandyle-village', 'US', 1, 42.9964500000, -78.9550400000), (1117486, 1001407, 'Granger', NULL, 'granger', 'US', 1, 30.7176900000, -97.4427800000), (1117487, 1001459, 'Granger', NULL, 'granger', 'US', 1, 41.7611000000, -93.8243900000), (1117488, 1001440, 'Granger', NULL, 'granger', 'US', 1, 41.7533800000, -86.1108400000), (1117489, 1001462, 'Granger', NULL, 'granger', 'US', 1, 46.3420700000, -120.1872700000), (1117490, 1001460, 'Grangeville', NULL, 'grangeville', 'US', 1, 45.9265500000, -116.1223700000), (1117491, 1001421, 'Granite', NULL, 'granite', 'US', 1, 34.9622800000, -99.3806400000), (1117492, 1001414, 'Granite', NULL, 'granite', 'US', 1, 40.5730000000, -111.8060400000), (1117493, 1001416, 'Granite Bay', NULL, 'granite-bay', 'US', 1, 38.7632300000, -121.1638400000), (1117494, 1001425, 'Granite City', NULL, 'granite-city', 'US', 1, 38.7014400000, -90.1487200000), (1117495, 1001446, 'Granite County', NULL, 'granite-county', 'US', 1, 46.4044400000, -113.4402600000), (1117496, 1001447, 'Granite Falls', NULL, 'granite-falls', 'US', 1, 35.7965200000, -81.4306500000), (1117497, 1001420, 'Granite Falls', NULL, 'granite-falls', 'US', 1, 44.8099600000, -95.5455800000), (1117498, 1001462, 'Granite Falls', NULL, 'granite-falls', 'US', 1, 48.0839900000, -121.9687400000), (1117499, 1001416, 'Granite Hills', NULL, 'granite-hills', 'US', 1, 32.8031100000, -116.9047500000), (1117500, 1001447, 'Granite Quarry', NULL, 'granite-quarry', 'US', 1, 35.6123600000, -80.4467300000), (1117501, 1001407, 'Granite Shoals', NULL, 'granite-shoals', 'US', 1, 30.5890800000, -98.3839200000), (1117502, 1001443, 'Graniteville', NULL, 'graniteville', 'US', 1, 33.5637500000, -81.8078900000), (1117503, 1001452, 'Graniteville', NULL, 'graniteville', 'US', 1, 40.6248300000, -74.1484800000), (1117504, 1001420, 'Grant', NULL, 'grant', 'US', 1, 45.0844100000, -92.9104900000), (1117505, 1001408, 'Grant', NULL, 'grant', 'US', 1, 40.8419400000, -101.7251700000), (1117506, 1001451, 'Grant City', NULL, 'grant-city', 'US', 1, 40.4874900000, -94.4110700000), (1117507, 1001452, 'Grant City', NULL, 'grant-city', 'US', 1, 40.5820500000, -74.1048600000), (1117508, 1001444, 'Grant County', NULL, 'grant-county', 'US', 1, 34.2900200000, -92.4235800000), (1117509, 1001419, 'Grant County', NULL, 'grant-county', 'US', 1, 38.6488100000, -84.6246100000), (1117510, 1001421, 'Grant County', NULL, 'grant-county', 'US', 1, 36.7961400000, -97.7861600000), (1117511, 1001429, 'Grant County', NULL, 'grant-county', 'US', 1, 39.1051300000, -79.1955700000), (1117512, 1001440, 'Grant County', NULL, 'grant-county', 'US', 1, 40.5158400000, -85.6547300000), (1117513, 1001420, 'Grant County', NULL, 'grant-county', 'US', 1, 45.9340500000, -96.0121800000), (1117514, 1001445, 'Grant County', NULL, 'grant-county', 'US', 1, 45.1719400000, -96.7676900000), (1117515, 1001441, 'Grant County', NULL, 'grant-county', 'US', 1, 42.8674900000, -90.7062200000), (1117516, 1001406, 'Grant County', NULL, 'grant-county', 'US', 1, 37.5621900000, -101.3080200000), (1117517, 1001423, 'Grant County', NULL, 'grant-county', 'US', 1, 32.7390100000, -108.3822500000), (1117518, 1001418, 'Grant County', NULL, 'grant-county', 'US', 1, 46.3582800000, -101.6397100000), (1117519, 1001408, 'Grant County', NULL, 'grant-county', 'US', 1, 41.9149900000, -101.7405200000), (1117520, 1001415, 'Grant County', NULL, 'grant-county', 'US', 1, 44.4912500000, -119.0073800000), (1117521, 1001462, 'Grant County', NULL, 'grant-county', 'US', 1, 47.2056600000, -119.4517700000), (1117522, 1001457, 'Grant Parish', NULL, 'grant-parish', 'US', 1, 31.5997000000, -92.5595200000), (1117523, 1001425, 'Grant Park', NULL, 'grant-park', 'US', 1, 41.2411400000, -87.6461500000), (1117524, 1001436, 'Grant-Valkaria', NULL, 'grant-valkaria', 'US', 1, 27.9398000000, -80.5710400000), (1117525, 1001404, 'Grantham', NULL, 'grantham', 'US', 1, 43.4895200000, -72.1375900000), (1117526, 1001422, 'Grantley', NULL, 'grantley', 'US', 1, 39.9403800000, -76.7291300000), (1117527, 1001423, 'Grants', NULL, 'grants', 'US', 1, 35.1476000000, -107.8526100000), (1117528, 1001415, 'Grants Pass', NULL, 'grants-pass', 'US', 1, 42.4393300000, -123.3306700000), (1117529, 1001441, 'Grantsburg', NULL, 'grantsburg', 'US', 1, 45.7763400000, -92.6827000000), (1117530, 1001429, 'Grantsville', NULL, 'grantsville', 'US', 1, 38.9234200000, -81.0959500000), (1117531, 1001414, 'Grantsville', NULL, 'grantsville', 'US', 1, 40.5999400000, -112.4644000000), (1117532, 1001455, 'Grantville', NULL, 'grantville', 'US', 1, 33.2348400000, -84.8357700000), (1117533, 1001429, 'Granville', NULL, 'granville', 'US', 1, 39.6459100000, -79.9872900000), (1117534, 1001433, 'Granville', NULL, 'granville', 'US', 1, 42.0667600000, -72.8614900000), (1117535, 1001425, 'Granville', NULL, 'granville', 'US', 1, 41.2611500000, -89.2275900000), (1117536, 1001452, 'Granville', NULL, 'granville', 'US', 1, 43.4078500000, -73.2595500000), (1117537, 1001447, 'Granville County', NULL, 'granville-county', 'US', 1, 36.3040200000, -78.6530200000), (1117538, 1001407, 'Grape Creek', NULL, 'grape-creek', 'US', 1, 31.5793200000, -100.5476000000), (1117539, 1001407, 'Grapeland', NULL, 'grapeland', 'US', 1, 31.4918500000, -95.4785600000), (1117540, 1001407, 'Grapevine', NULL, 'grapevine', 'US', 1, 32.9342900000, -97.0780700000), (1117541, 1001401, 'Grasonville', NULL, 'grasonville', 'US', 1, 38.9581700000, -76.2102300000), (1117542, 1001426, 'Grass Lake', NULL, 'grass-lake', 'US', 1, 42.2508700000, -84.2130100000), (1117543, 1001416, 'Grass Valley', NULL, 'grass-valley', 'US', 1, 39.2190600000, -121.0610600000), (1117544, 1001426, 'Gratiot County', NULL, 'gratiot-county', 'US', 1, 43.2927300000, -84.6049100000), (1117545, 1001416, 'Graton', NULL, 'graton', 'US', 1, 38.4363000000, -122.8697200000), (1117546, 1001444, 'Gravel Ridge', NULL, 'gravel-ridge', 'US', 1, 34.8684200000, -92.1907000000), (1117547, 1001419, 'Graves County', NULL, 'graves-county', 'US', 1, 36.7231400000, -88.6512100000), (1117548, 1001452, 'Gravesend', NULL, 'gravesend', 'US', 1, 40.5976000000, -73.9651400000), (1117549, 1001444, 'Gravette', NULL, 'gravette', 'US', 1, 36.4220200000, -94.4535500000), (1117550, 1001455, 'Gray', NULL, 'gray', 'US', 1, 33.0095800000, -83.5337800000), (1117551, 1001457, 'Gray', NULL, 'gray', 'US', 1, 29.6977100000, -90.7864800000), (1117552, 1001454, 'Gray', NULL, 'gray', 'US', 1, 36.4198300000, -82.4765400000), (1117553, 1001406, 'Gray County', NULL, 'gray-county', 'US', 1, 37.7382000000, -100.4378600000), (1117554, 1001407, 'Gray County', NULL, 'gray-county', 'US', 1, 35.4011600000, -100.8125600000), (1117555, 1001451, 'Gray Summit', NULL, 'gray-summit', 'US', 1, 38.4897800000, -90.8168000000), (1117556, 1001426, 'Grayling', NULL, 'grayling', 'US', 1, 44.6614000000, -84.7147500000), (1117557, 1001419, 'Graymoor-Devondale', NULL, 'graymoor-devondale', 'US', 1, 38.2731300000, -85.6230200000), (1117558, 1001462, 'Grays Harbor County', NULL, 'grays-harbor-county', 'US', 1, 47.1444500000, -123.8284700000), (1117559, 1001425, 'Grayslake', NULL, 'grayslake', 'US', 1, 42.3444700000, -88.0417500000), (1117560, 1001455, 'Grayson', NULL, 'grayson', 'US', 1, 33.8942700000, -83.9557400000), (1117561, 1001419, 'Grayson', NULL, 'grayson', 'US', 1, 38.3325800000, -82.9485000000), (1117562, 1001419, 'Grayson County', NULL, 'grayson-county', 'US', 1, 37.4608200000, -86.3438800000), (1117563, 1001407, 'Grayson County', NULL, 'grayson-county', 'US', 1, 33.6268100000, -96.6777200000), (1117564, 1001427, 'Grayson County', NULL, 'grayson-county', 'US', 1, 36.6565900000, -81.2250500000), (1117565, 1001456, 'Grayson Valley', NULL, 'grayson-valley', 'US', 1, 33.6481600000, -86.6394300000), (1117566, 1001456, 'Graysville', NULL, 'graysville', 'US', 1, 33.6206600000, -86.9713800000), (1117567, 1001454, 'Graysville', NULL, 'graysville', 'US', 1, 35.4470100000, -85.0844000000), (1117568, 1001425, 'Grayville', NULL, 'grayville', 'US', 1, 38.2575500000, -87.9936400000), (1117569, 1001433, 'Great Barrington', NULL, 'great-barrington', 'US', 1, 42.1959200000, -73.3620600000), (1117570, 1001406, 'Great Bend', NULL, 'great-bend', 'US', 1, 38.3644600000, -98.7648100000), (1117571, 1001443, 'Great Falls', NULL, 'great-falls', 'US', 1, 34.5751400000, -80.9020200000), (1117572, 1001427, 'Great Falls', NULL, 'great-falls', 'US', 1, 38.9981700000, -77.2883200000), (1117573, 1001446, 'Great Falls', NULL, 'great-falls', 'US', 1, 47.5002400000, -111.3008100000), (1117574, 1001452, 'Great Kills', NULL, 'great-kills', 'US', 1, 40.5542700000, -74.1515300000), (1117575, 1001452, 'Great Neck', NULL, 'great-neck', 'US', 1, 40.8006600000, -73.7284600000), (1117576, 1001452, 'Great Neck Estates', NULL, 'great-neck-estates', 'US', 1, 40.7870500000, -73.7368000000), (1117577, 1001452, 'Great Neck Gardens', NULL, 'great-neck-gardens', 'US', 1, 40.7972200000, -73.7238900000), (1117578, 1001452, 'Great Neck Plaza', NULL, 'great-neck-plaza', 'US', 1, 40.7867700000, -73.7265200000), (1117579, 1001452, 'Great River', NULL, 'great-river', 'US', 1, 40.7212100000, -73.1576100000), (1117580, 1001425, 'Greater Grand Crossing', NULL, 'greater-grand-crossing', 'US', 1, 41.7611300000, -87.6148500000), (1117581, 1001436, 'Greater Northdale', NULL, 'greater-northdale', 'US', 1, 28.1054500000, -82.5259400000), (1117582, 1001401, 'Greater Upper Marlboro', NULL, 'greater-upper-marlboro', 'US', 1, 38.8314200000, -76.7482700000), (1117583, 1001407, 'Greatwood', NULL, 'greatwood', 'US', 1, 29.5541300000, -95.6757800000), (1117584, 1001452, 'Greece', NULL, 'greece', 'US', 1, 43.2097800000, -77.6930600000), (1117585, 1001408, 'Greeley', NULL, 'greeley', 'US', 1, 41.5486200000, -98.5311800000), (1117586, 1001450, 'Greeley', NULL, 'greeley', 'US', 1, 40.4233100000, -104.7091300000), (1117587, 1001408, 'Greeley County', NULL, 'greeley-county', 'US', 1, 41.5674400000, -98.5212400000), (1117588, 1001406, 'Greeley County', NULL, 'greeley-county', 'US', 1, 38.4805400000, -101.8059700000), (1117589, 1001415, 'Green', NULL, 'green', 'US', 1, 43.1603900000, -123.3678500000), (1117590, 1001416, 'Green Acres', NULL, 'green-acres', 'US', 1, 33.7380800000, -117.0764200000), (1117591, 1001441, 'Green Bay', NULL, 'green-bay', 'US', 1, 44.5191600000, -88.0198300000), (1117592, 1001419, 'Green County', NULL, 'green-county', 'US', 1, 37.2641100000, -85.5531100000), (1117593, 1001441, 'Green County', NULL, 'green-county', 'US', 1, 42.6799900000, -89.6022100000), (1117594, 1001436, 'Green Cove Springs', NULL, 'green-cove-springs', 'US', 1, 29.9919100000, -81.6781500000), (1117595, 1001444, 'Green Forest', NULL, 'green-forest', 'US', 1, 36.3353500000, -93.4360200000), (1117596, 1001433, 'Green Harbor-Cedar Crest', NULL, 'green-harbor-cedar-crest', 'US', 1, 42.0749500000, -70.6584300000), (1117597, 1001401, 'Green Haven', NULL, 'green-haven', 'US', 1, 39.1395500000, -76.5477400000), (1117598, 1001454, 'Green Hill', NULL, 'green-hill', 'US', 1, 36.2228300000, -86.5494400000), (1117599, 1001452, 'Green Island', NULL, 'green-island', 'US', 1, 42.7442400000, -73.6915100000), (1117600, 1001417, 'Green Knoll', NULL, 'green-knoll', 'US', 1, 40.6001000000, -74.6121000000), (1117601, 1001441, 'Green Lake', NULL, 'green-lake', 'US', 1, 43.8441500000, -88.9601100000), (1117602, 1001441, 'Green Lake County', NULL, 'green-lake-county', 'US', 1, 43.8003800000, -89.0448600000), (1117603, 1001447, 'Green Level', NULL, 'green-level', 'US', 1, 36.1209700000, -79.3441900000), (1117604, 1001425, 'Green Oaks', NULL, 'green-oaks', 'US', 1, 42.2900200000, -87.9034100000), (1117605, 1001451, 'Green Park', NULL, 'green-park', 'US', 1, 38.5236600000, -90.3384500000), (1117606, 1001442, 'Green River', NULL, 'green-river', 'US', 1, 41.5285800000, -109.4662500000), (1117607, 1001425, 'Green Rock', NULL, 'green-rock', 'US', 1, 41.4730900000, -90.3576300000), (1117608, 1001422, 'Green Tree', NULL, 'green-tree', 'US', 1, 40.4117400000, -80.0456100000), (1117609, 1001401, 'Green Valley', NULL, 'green-valley', 'US', 1, 39.3092700000, -77.2972100000), (1117610, 1001434, 'Green Valley', NULL, 'green-valley', 'US', 1, 31.8542500000, -110.9937000000), (1117611, 1001416, 'Green Valley', NULL, 'green-valley', 'US', 1, 38.2529700000, -122.1621900000), (1117612, 1001407, 'Green Valley Farms', NULL, 'green-valley-farms', 'US', 1, 26.1220200000, -97.5605400000), (1117613, 1001416, 'Greenacres', NULL, 'greenacres', 'US', 1, 35.3832900000, -119.1098300000), (1117614, 1001436, 'Greenacres City', NULL, 'greenacres-city', 'US', 1, 26.6236800000, -80.1253200000), (1117615, 1001454, 'Greenback', NULL, 'greenback', 'US', 1, 35.6611900000, -84.1721400000), (1117616, 1001401, 'Greenbelt', NULL, 'greenbelt', 'US', 1, 39.0045500000, -76.8755300000), (1117617, 1001427, 'Greenbriar', NULL, 'greenbriar', 'US', 1, 38.8734500000, -77.4008200000), (1117618, 1001436, 'Greenbriar', NULL, 'greenbriar', 'US', 1, 28.0112800000, -82.7527200000), (1117619, 1001444, 'Greenbrier', NULL, 'greenbrier', 'US', 1, 35.2339700000, -92.3876500000), (1117620, 1001454, 'Greenbrier', NULL, 'greenbrier', 'US', 1, 36.4275500000, -86.8047200000), (1117621, 1001429, 'Greenbrier County', NULL, 'greenbrier-county', 'US', 1, 37.9469300000, -80.4529500000), (1117622, 1001452, 'Greenburgh', NULL, 'greenburgh', 'US', 1, 41.0328700000, -73.8429100000), (1117623, 1001453, 'Greenbush', NULL, 'greenbush', 'US', 1, 45.0803400000, -68.6508600000), (1117624, 1001440, 'Greencastle', NULL, 'greencastle', 'US', 1, 39.6444900000, -86.8647300000), (1117625, 1001422, 'Greencastle', NULL, 'greencastle', 'US', 1, 39.7903700000, -77.7277700000), (1117626, 1001440, 'Greendale', NULL, 'greendale', 'US', 1, 39.1125600000, -84.8641200000), (1117627, 1001441, 'Greendale', NULL, 'greendale', 'US', 1, 42.9405700000, -87.9959200000), (1117628, 1001459, 'Greene', NULL, 'greene', 'US', 1, 42.8958100000, -92.8024200000), (1117629, 1001453, 'Greene', NULL, 'greene', 'US', 1, 44.1897900000, -70.1403300000), (1117630, 1001452, 'Greene', NULL, 'greene', 'US', 1, 42.3292400000, -75.7699100000), (1117631, 1001456, 'Greene County', NULL, 'greene-county', 'US', 1, 32.8531400000, -87.9522300000), (1117632, 1001444, 'Greene County', NULL, 'greene-county', 'US', 1, 36.1176900000, -90.5590800000), (1117633, 1001455, 'Greene County', NULL, 'greene-county', 'US', 1, 33.5787800000, -83.1666600000), (1117634, 1001425, 'Greene County', NULL, 'greene-county', 'US', 1, 39.3562000000, -90.3904900000), (1117635, 1001440, 'Greene County', NULL, 'greene-county', 'US', 1, 39.0363300000, -86.9620500000), (1117636, 1001451, 'Greene County', NULL, 'greene-county', 'US', 1, 37.2580500000, -93.3419900000), (1117637, 1001430, 'Greene County', NULL, 'greene-county', 'US', 1, 31.2142200000, -88.6391600000), (1117638, 1001447, 'Greene County', NULL, 'greene-county', 'US', 1, 35.4854100000, -77.6758700000), (1117639, 1001454, 'Greene County', NULL, 'greene-county', 'US', 1, 36.1753600000, -82.8458200000), (1117640, 1001427, 'Greene County', NULL, 'greene-county', 'US', 1, 38.2976000000, -78.4668800000), (1117641, 1001459, 'Greene County', NULL, 'greene-county', 'US', 1, 42.0362400000, -94.3968400000), (1117642, 1001452, 'Greene County', NULL, 'greene-county', 'US', 1, 42.2765200000, -74.1227100000), (1117643, 1001422, 'Greene County', NULL, 'greene-county', 'US', 1, 39.8538000000, -80.2228700000), (1117644, 1001454, 'Greeneville', NULL, 'greeneville', 'US', 1, 36.1631600000, -82.8309900000), (1117645, 1001425, 'Greenfield', NULL, 'greenfield', 'US', 1, 39.3436600000, -90.2126100000), (1117646, 1001440, 'Greenfield', NULL, 'greenfield', 'US', 1, 39.7850400000, -85.7694200000), (1117647, 1001451, 'Greenfield', NULL, 'greenfield', 'US', 1, 37.4153200000, -93.8410400000), (1117648, 1001454, 'Greenfield', NULL, 'greenfield', 'US', 1, 36.1534000000, -88.8006200000), (1117649, 1001459, 'Greenfield', NULL, 'greenfield', 'US', 1, 41.3052700000, -94.4613500000), (1117650, 1001433, 'Greenfield', NULL, 'greenfield', 'US', 1, 42.5875900000, -72.5995300000), (1117651, 1001420, 'Greenfield', NULL, 'greenfield', 'US', 1, 45.1033000000, -93.6913500000), (1117652, 1001404, 'Greenfield', NULL, 'greenfield', 'US', 1, 42.9506400000, -71.8723000000), (1117653, 1001441, 'Greenfield', NULL, 'greenfield', 'US', 1, 42.9614000000, -88.0125900000), (1117654, 1001416, 'Greenfield', NULL, 'greenfield', 'US', 1, 36.3208000000, -121.2438100000), (1117655, 1001422, 'Greenfields', NULL, 'greenfields', 'US', 1, 40.3599000000, -75.9519900000), (1117656, 1001444, 'Greenland', NULL, 'greenland', 'US', 1, 35.9942500000, -94.1752000000), (1117657, 1001404, 'Greenland', NULL, 'greenland', 'US', 1, 43.0362000000, -70.8328300000), (1117658, 1001452, 'Greenlawn', NULL, 'greenlawn', 'US', 1, 40.8689900000, -73.3651200000), (1117659, 1001434, 'Greenlee County', NULL, 'greenlee-county', 'US', 1, 33.2153600000, -109.2401000000), (1117660, 1001422, 'Greenock', NULL, 'greenock', 'US', 1, 40.3122900000, -79.8067100000), (1117661, 1001452, 'Greenpoint', NULL, 'greenpoint', 'US', 1, 40.7237100000, -73.9509700000), (1117662, 1001452, 'Greenport', NULL, 'greenport', 'US', 1, 41.1034300000, -72.3592500000), (1117663, 1001452, 'Greenport West', NULL, 'greenport-west', 'US', 1, 41.1017800000, -72.3719500000), (1117664, 1001456, 'Greensboro', NULL, 'greensboro', 'US', 1, 32.7041500000, -87.5955000000), (1117665, 1001455, 'Greensboro', NULL, 'greensboro', 'US', 1, 33.5756800000, -83.1823800000), (1117666, 1001401, 'Greensboro', NULL, 'greensboro', 'US', 1, 38.9737200000, -75.8049300000), (1117667, 1001447, 'Greensboro', NULL, 'greensboro', 'US', 1, 36.0726400000, -79.7919800000), (1117668, 1001419, 'Greensburg', NULL, 'greensburg', 'US', 1, 37.2608900000, -85.4988500000), (1117669, 1001440, 'Greensburg', NULL, 'greensburg', 'US', 1, 39.3372700000, -85.4835800000), (1117670, 1001406, 'Greensburg', NULL, 'greensburg', 'US', 1, 37.6028000000, -99.2926100000), (1117671, 1001457, 'Greensburg', NULL, 'greensburg', 'US', 1, 30.8307400000, -90.6717600000), (1117672, 1001422, 'Greensburg', NULL, 'greensburg', 'US', 1, 40.3014600000, -79.5389300000), (1117673, 1001427, 'Greensville County', NULL, 'greensville-county', 'US', 1, 36.6758500000, -77.5595800000), (1117674, 1001440, 'Greentown', NULL, 'greentown', 'US', 1, 40.4780900000, -85.9666500000), (1117675, 1001417, 'Greentree', NULL, 'greentree', 'US', 1, 39.8970600000, -74.9557200000), (1117676, 1001425, 'Greenup', NULL, 'greenup', 'US', 1, 39.2478200000, -88.1633700000), (1117677, 1001419, 'Greenup', NULL, 'greenup', 'US', 1, 38.5731300000, -82.8301700000), (1117678, 1001419, 'Greenup County', NULL, 'greenup-county', 'US', 1, 38.5456600000, -82.9222900000), (1117679, 1001452, 'Greenvale', NULL, 'greenvale', 'US', 1, 40.8106600000, -73.6284600000), (1117680, 1001456, 'Greenville', NULL, 'greenville', 'US', 1, 31.8296000000, -86.6177500000), (1117681, 1001399, 'Greenville', NULL, 'greenville', 'US', 1, 39.7790000000, -75.5982600000), (1117682, 1001419, 'Greenville', NULL, 'greenville', 'US', 1, 37.2011500000, -87.1788900000), (1117683, 1001425, 'Greenville', NULL, 'greenville', 'US', 1, 38.8922700000, -89.4131400000), (1117684, 1001455, 'Greenville', NULL, 'greenville', 'US', 1, 33.0287400000, -84.7129800000), (1117685, 1001451, 'Greenville', NULL, 'greenville', 'US', 1, 37.1272700000, -90.4501100000), (1117686, 1001430, 'Greenville', NULL, 'greenville', 'US', 1, 33.4089800000, -91.0597800000), (1117687, 1001447, 'Greenville', NULL, 'greenville', 'US', 1, 35.6126600000, -77.3663500000), (1117688, 1001443, 'Greenville', NULL, 'greenville', 'US', 1, 34.8526200000, -82.3940100000), (1117689, 1001407, 'Greenville', NULL, 'greenville', 'US', 1, 33.1384500000, -96.1108100000), (1117690, 1001426, 'Greenville', NULL, 'greenville', 'US', 1, 43.1775300000, -85.2528000000), (1117691, 1001453, 'Greenville', NULL, 'greenville', 'US', 1, 45.4594900000, -69.5906100000), (1117692, 1001404, 'Greenville', NULL, 'greenville', 'US', 1, 42.7673100000, -71.8123000000), (1117693, 1001452, 'Greenville', NULL, 'greenville', 'US', 1, 40.9931500000, -73.8198600000), (1117694, 1001422, 'Greenville', NULL, 'greenville', 'US', 1, 41.4045000000, -80.3911800000), (1117695, 1001461, 'Greenville', NULL, 'greenville', 'US', 1, 41.8712100000, -71.5520100000), (1117696, 1001416, 'Greenville', NULL, 'greenville', 'US', 1, 40.1396100000, -120.9510700000), (1117697, 1001443, 'Greenville County', NULL, 'greenville-county', 'US', 1, 34.8943100000, -82.3707200000), (1117698, 1001435, 'Greenwich', NULL, 'greenwich', 'US', 1, 41.0264900000, -73.6284600000), (1117699, 1001452, 'Greenwich', NULL, 'greenwich', 'US', 1, 43.0906300000, -73.4987300000), (1117700, 1001399, 'Greenwood', NULL, 'greenwood', 'US', 1, 38.8070600000, -75.5913200000), (1117701, 1001444, 'Greenwood', NULL, 'greenwood', 'US', 1, 35.2156500000, -94.2557700000), (1117702, 1001440, 'Greenwood', NULL, 'greenwood', 'US', 1, 39.6136600000, -86.1066500000), (1117703, 1001451, 'Greenwood', NULL, 'greenwood', 'US', 1, 38.8516800000, -94.3438400000), (1117704, 1001457, 'Greenwood', NULL, 'greenwood', 'US', 1, 32.4429300000, -93.9729600000), (1117705, 1001430, 'Greenwood', NULL, 'greenwood', 'US', 1, 33.5162300000, -90.1795300000), (1117706, 1001443, 'Greenwood', NULL, 'greenwood', 'US', 1, 34.1954000000, -82.1617900000), (1117707, 1001422, 'Greenwood', NULL, 'greenwood', 'US', 1, 40.5359000000, -78.3575100000), (1117708, 1001441, 'Greenwood', NULL, 'greenwood', 'US', 1, 44.7702400000, -90.5993100000), (1117709, 1001406, 'Greenwood County', NULL, 'greenwood-county', 'US', 1, 37.8777900000, -96.2326400000), (1117710, 1001443, 'Greenwood County', NULL, 'greenwood-county', 'US', 1, 34.1538300000, -82.1259300000), (1117711, 1001452, 'Greenwood Lake', NULL, 'greenwood-lake', 'US', 1, 41.2225900000, -74.2943200000), (1117712, 1001450, 'Greenwood Village', NULL, 'greenwood-village', 'US', 1, 39.6172100000, -104.9508100000), (1117713, 1001443, 'Greer', NULL, 'greer', 'US', 1, 34.9387300000, -82.2270600000), (1117714, 1001421, 'Greer County', NULL, 'greer-county', 'US', 1, 34.9357000000, -99.5608000000), (1117715, 1001407, 'Gregg County', NULL, 'gregg-county', 'US', 1, 32.4804700000, -94.8169500000), (1117716, 1001407, 'Gregory', NULL, 'gregory', 'US', 1, 27.9222400000, -97.2899900000), (1117717, 1001445, 'Gregory', NULL, 'gregory', 'US', 1, 43.2322200000, -99.4303800000), (1117718, 1001445, 'Gregory County', NULL, 'gregory-county', 'US', 1, 43.1923800000, -99.1856100000), (1117719, 1001426, 'Greilickville', NULL, 'greilickville', 'US', 1, 44.7830600000, -85.6386900000), (1117720, 1001430, 'Grenada', NULL, 'grenada', 'US', 1, 33.7690000000, -89.8084200000), (1117721, 1001430, 'Grenada County', NULL, 'grenada-county', 'US', 1, 33.7699500000, -89.8020100000), (1117722, 1001415, 'Gresham', NULL, 'gresham', 'US', 1, 45.4981800000, -122.4314800000), (1117723, 1001455, 'Gresham Park', NULL, 'gresham-park', 'US', 1, 33.7034400000, -84.3143700000), (1117724, 1001436, 'Gretna', NULL, 'gretna', 'US', 1, 30.6171400000, -84.6599100000), (1117725, 1001457, 'Gretna', NULL, 'gretna', 'US', 1, 29.9146500000, -90.0539600000), (1117726, 1001427, 'Gretna', NULL, 'gretna', 'US', 1, 36.9537500000, -79.3589100000), (1117727, 1001408, 'Gretna', NULL, 'gretna', 'US', 1, 41.1408300000, -96.2397400000), (1117728, 1001442, 'Greybull', NULL, 'greybull', 'US', 1, 44.4891200000, -108.0562100000), (1117729, 1001425, 'Gridley', NULL, 'gridley', 'US', 1, 40.7433700000, -88.8814600000), (1117730, 1001416, 'Gridley', NULL, 'gridley', 'US', 1, 39.3637800000, -121.6935800000), (1117731, 1001455, 'Griffin', NULL, 'griffin', 'US', 1, 33.2467800000, -84.2640900000), (1117732, 1001440, 'Griffith', NULL, 'griffith', 'US', 1, 41.5283700000, -87.4236500000), (1117733, 1001447, 'Grifton', NULL, 'grifton', 'US', 1, 35.3726600000, -77.4374600000), (1117734, 1001418, 'Griggs County', NULL, 'griggs-county', 'US', 1, 47.4572900000, -98.2370400000), (1117735, 1001425, 'Griggsville', NULL, 'griggsville', 'US', 1, 39.7089400000, -90.7245700000), (1117736, 1001422, 'Grill', NULL, 'grill', 'US', 1, 40.2987000000, -75.9404900000), (1117737, 1001459, 'Grimes', NULL, 'grimes', 'US', 1, 41.6883200000, -93.7910600000), (1117738, 1001407, 'Grimes County', NULL, 'grimes-county', 'US', 1, 30.5434700000, -95.9855000000), (1117739, 1001454, 'Grimsley', NULL, 'grimsley', 'US', 1, 36.2670100000, -84.9844000000), (1117740, 1001459, 'Grinnell', NULL, 'grinnell', 'US', 1, 41.7430500000, -92.7224100000), (1117741, 1001440, 'Grissom Air Force Base', NULL, 'grissom-air-force-base', 'US', 1, 40.6575300000, -86.1475500000), (1117742, 1001407, 'Groesbeck', NULL, 'groesbeck', 'US', 1, 31.5243400000, -96.5338700000), (1117743, 1001426, 'Grosse Ile', NULL, 'grosse-ile', 'US', 1, 42.1292100000, -83.1443700000), (1117744, 1001426, 'Grosse Pointe', NULL, 'grosse-pointe', 'US', 1, 42.3861500000, -82.9118600000), (1117745, 1001426, 'Grosse Pointe Farms', NULL, 'grosse-pointe-farms', 'US', 1, 42.4092000000, -82.8918600000), (1117746, 1001426, 'Grosse Pointe Park', NULL, 'grosse-pointe-park', 'US', 1, 42.3758700000, -82.9374200000), (1117747, 1001426, 'Grosse Pointe Shores', NULL, 'grosse-pointe-shores', 'US', 1, 42.4367000000, -82.8768600000), (1117748, 1001426, 'Grosse Pointe Woods', NULL, 'grosse-pointe-woods', 'US', 1, 42.4436500000, -82.9068600000), (1117749, 1001435, 'Groton', NULL, 'groton', 'US', 1, 41.3501000000, -72.0784100000), (1117750, 1001452, 'Groton', NULL, 'groton', 'US', 1, 42.5878500000, -76.3668800000), (1117751, 1001445, 'Groton', NULL, 'groton', 'US', 1, 45.4474600000, -98.0987100000), (1117752, 1001433, 'Groton', NULL, 'groton', 'US', 1, 42.6112000000, -71.5745100000), (1117753, 1001427, 'Grottoes', NULL, 'grottoes', 'US', 1, 38.2673500000, -78.8258600000), (1117754, 1001421, 'Grove', NULL, 'grove', 'US', 1, 36.5936900000, -94.7691200000), (1117755, 1001436, 'Grove City', NULL, 'grove-city', 'US', 1, 26.9142300000, -82.3270400000), (1117756, 1001422, 'Grove City', NULL, 'grove-city', 'US', 1, 41.1578400000, -80.0886700000), (1117757, 1001456, 'Grove Hill', NULL, 'grove-hill', 'US', 1, 31.7087700000, -87.7772200000), (1117758, 1001436, 'Groveland', NULL, 'groveland', 'US', 1, 28.5580500000, -81.8511900000), (1117759, 1001433, 'Groveland', NULL, 'groveland', 'US', 1, 42.7603700000, -71.0314500000), (1117760, 1001416, 'Grover Beach', NULL, 'grover-beach', 'US', 1, 35.1216400000, -120.6212800000), (1117761, 1001407, 'Groves', NULL, 'groves', 'US', 1, 29.9482700000, -93.9171200000), (1117762, 1001407, 'Groveton', NULL, 'groveton', 'US', 1, 31.0549100000, -95.1257700000), (1117763, 1001427, 'Groveton', NULL, 'groveton', 'US', 1, 38.7673400000, -77.0847000000), (1117764, 1001404, 'Groveton', NULL, 'groveton', 'US', 1, 44.5986700000, -71.5112000000), (1117765, 1001455, 'Grovetown', NULL, 'grovetown', 'US', 1, 33.4504200000, -82.1981800000), (1117766, 1001417, 'Groveville', NULL, 'groveville', 'US', 1, 40.1698300000, -74.6715500000), (1117767, 1001454, 'Gruetli-Laager', NULL, 'gruetli-laager', 'US', 1, 35.3723000000, -85.6180300000), (1117768, 1001427, 'Grundy', NULL, 'grundy', 'US', 1, 37.2778900000, -82.0990200000), (1117769, 1001459, 'Grundy Center', NULL, 'grundy-center', 'US', 1, 42.3616500000, -92.7685300000), (1117770, 1001454, 'Grundy County', NULL, 'grundy-county', 'US', 1, 35.3883700000, -85.7225800000), (1117771, 1001459, 'Grundy County', NULL, 'grundy-county', 'US', 1, 42.4018700000, -92.7914200000), (1117772, 1001425, 'Grundy County', NULL, 'grundy-county', 'US', 1, 41.2850900000, -88.4185000000), (1117773, 1001451, 'Grundy County', NULL, 'grundy-county', 'US', 1, 40.1139300000, -93.5653400000), (1117774, 1001407, 'Gruver', NULL, 'gruver', 'US', 1, 36.2650300000, -101.4062700000), (1117775, 1001452, 'Grymes Hill', NULL, 'grymes-hill', 'US', 1, 40.6187200000, -74.0934800000), (1117776, 1001434, 'Guadalupe', NULL, 'guadalupe', 'US', 1, 33.3708800000, -111.9629200000), (1117777, 1001416, 'Guadalupe', NULL, 'guadalupe', 'US', 1, 34.9716400000, -120.5718400000), (1117778, 1001407, 'Guadalupe County', NULL, 'guadalupe-county', 'US', 1, 29.5830500000, -97.9485800000), (1117779, 1001423, 'Guadalupe County', NULL, 'guadalupe-county', 'US', 1, 34.8633300000, -104.7907000000), (1117780, 1001416, 'Guerneville', NULL, 'guerneville', 'US', 1, 38.5018600000, -122.9961100000), (1117781, 1001442, 'Guernsey', NULL, 'guernsey', 'US', 1, 42.2696900000, -104.7416300000), (1117782, 1001457, 'Gueydan', NULL, 'gueydan', 'US', 1, 30.0260400000, -92.5084700000), (1117783, 1001409, 'Guildhall', NULL, 'guildhall', 'US', 1, 44.5650600000, -71.5598100000), (1117784, 1001435, 'Guilford', NULL, 'guilford', 'US', 1, 41.2889900000, -72.6817600000), (1117785, 1001422, 'Guilford', NULL, 'guilford', 'US', 1, 39.9154100000, -77.6010500000), (1117786, 1001435, 'Guilford Center', NULL, 'guilford-center', 'US', 1, 41.2815600000, -72.6761900000), (1117787, 1001447, 'Guilford County', NULL, 'guilford-county', 'US', 1, 36.0794500000, -79.7890100000), (1117788, 1001422, 'Guilford Siding', NULL, 'guilford-siding', 'US', 1, 39.8653700000, -77.6124900000), (1117789, 1001456, 'Guin', NULL, 'guin', 'US', 1, 33.9656600000, -87.9147500000), (1117790, 1001436, 'Gulf Breeze', NULL, 'gulf-breeze', 'US', 1, 30.3571400000, -87.1638600000), (1117791, 1001436, 'Gulf County', NULL, 'gulf-county', 'US', 1, 29.9086200000, -85.2610100000), (1117792, 1001436, 'Gulf Gate Estates', NULL, 'gulf-gate-estates', 'US', 1, 27.2517300000, -82.5147100000), (1117793, 1001430, 'Gulf Hills', NULL, 'gulf-hills', 'US', 1, 30.4304800000, -88.8422500000), (1117794, 1001430, 'Gulf Park Estates', NULL, 'gulf-park-estates', 'US', 1, 30.3918700000, -88.7611400000), (1117795, 1001456, 'Gulf Shores', NULL, 'gulf-shores', 'US', 1, 30.2460400000, -87.7008200000), (1117796, 1001436, 'Gulfport', NULL, 'gulfport', 'US', 1, 27.7483600000, -82.7034300000), (1117797, 1001430, 'Gulfport', NULL, 'gulfport', 'US', 1, 30.3674200000, -89.0928200000), (1117798, 1001440, 'Gulivoire Park', NULL, 'gulivoire-park', 'US', 1, 41.6133800000, -86.2452800000), (1117799, 1001455, 'Gumlog', NULL, 'gumlog', 'US', 1, 34.4917700000, -83.0965400000), (1117800, 1001407, 'Gun Barrel City', NULL, 'gun-barrel-city', 'US', 1, 32.3345900000, -96.1513600000), (1117801, 1001450, 'Gunbarrel', NULL, 'gunbarrel', 'US', 1, 40.0633500000, -105.1710700000), (1117802, 1001450, 'Gunnison', NULL, 'gunnison', 'US', 1, 38.5458200000, -106.9253200000), (1117803, 1001414, 'Gunnison', NULL, 'gunnison', 'US', 1, 39.1552400000, -111.8182600000), (1117804, 1001450, 'Gunnison County', NULL, 'gunnison-county', 'US', 1, 38.6668000000, -107.0317000000), (1117805, 1001407, 'Gunter', NULL, 'gunter', 'US', 1, 33.4478900000, -96.7474900000), (1117806, 1001456, 'Guntersville', NULL, 'guntersville', 'US', 1, 34.3582300000, -86.2944600000), (1117807, 1001430, 'Guntown', NULL, 'guntown', 'US', 1, 34.4431600000, -88.6597800000), (1117808, 1001444, 'Gurdon', NULL, 'gurdon', 'US', 1, 33.9209400000, -93.1540600000), (1117809, 1001425, 'Gurnee', NULL, 'gurnee', 'US', 1, 42.3703000000, -87.9020200000), (1117810, 1001416, 'Gustine', NULL, 'gustine', 'US', 1, 37.2577200000, -120.9988200000), (1117811, 1001419, 'Guthrie', NULL, 'guthrie', 'US', 1, 36.6483800000, -87.1663900000), (1117812, 1001421, 'Guthrie', NULL, 'guthrie', 'US', 1, 35.8789400000, -97.4253200000), (1117813, 1001407, 'Guthrie', NULL, 'guthrie', 'US', 1, 33.6206400000, -100.3228900000), (1117814, 1001459, 'Guthrie Center', NULL, 'guthrie-center', 'US', 1, 41.6772100000, -94.5033000000), (1117815, 1001459, 'Guthrie County', NULL, 'guthrie-county', 'US', 1, 41.6837500000, -94.5010500000), (1117816, 1001459, 'Guttenberg', NULL, 'guttenberg', 'US', 1, 42.7858200000, -91.0995700000), (1117817, 1001417, 'Guttenberg', NULL, 'guttenberg', 'US', 1, 40.7920500000, -74.0037500000), (1117818, 1001421, 'Guymon', NULL, 'guymon', 'US', 1, 36.6828000000, -101.4815500000), (1117819, 1001455, 'Guyton', NULL, 'guyton', 'US', 1, 32.3363000000, -81.3915000000), (1117820, 1001426, 'Gwinn', NULL, 'gwinn', 'US', 1, 46.2810600000, -87.4409700000), (1117821, 1001455, 'Gwinnett County', NULL, 'gwinnett-county', 'US', 1, 33.9617300000, -84.0236300000), (1117822, 1001450, 'Gypsum', NULL, 'gypsum', 'US', 1, 39.6469300000, -106.9517100000), (1117823, 1001445, 'Haakon County', NULL, 'haakon-county', 'US', 1, 44.2944300000, -101.5399900000), (1117824, 1001455, 'Habersham County', NULL, 'habersham-county', 'US', 1, 34.6310200000, -83.5311200000), (1117825, 1001416, 'Hacienda Heights', NULL, 'hacienda-heights', 'US', 1, 33.9930700000, -117.9686800000), (1117826, 1001457, 'Hackberry', NULL, 'hackberry', 'US', 1, 29.9960500000, -93.3421000000), (1117827, 1001407, 'Hackberry', NULL, 'hackberry', 'US', 1, 33.1523400000, -96.9177800000), (1117828, 1001417, 'Hackensack', NULL, 'hackensack', 'US', 1, 40.8859300000, -74.0434700000), (1117829, 1001417, 'Hackettstown', NULL, 'hackettstown', 'US', 1, 40.8539900000, -74.8290600000), (1117830, 1001456, 'Hackleburg', NULL, 'hackleburg', 'US', 1, 34.2773200000, -87.8286400000), (1117831, 1001417, 'Haddon Heights', NULL, 'haddon-heights', 'US', 1, 39.8773400000, -75.0646200000), (1117832, 1001417, 'Haddonfield', NULL, 'haddonfield', 'US', 1, 39.8915000000, -75.0376700000), (1117833, 1001433, 'Hadley', NULL, 'hadley', 'US', 1, 42.3417600000, -72.5884200000), (1117834, 1001452, 'Hadley', NULL, 'hadley', 'US', 1, 43.3172900000, -73.8481800000), (1117835, 1001452, 'Hagaman', NULL, 'hagaman', 'US', 1, 42.9745200000, -74.1509600000), (1117836, 1001423, 'Hagerman', NULL, 'hagerman', 'US', 1, 33.1151100000, -104.3269100000), (1117837, 1001440, 'Hagerstown', NULL, 'hagerstown', 'US', 1, 39.9111600000, -85.1616300000), (1117838, 1001401, 'Hagerstown', NULL, 'hagerstown', 'US', 1, 39.6417600000, -77.7199900000), (1117839, 1001455, 'Hahira', NULL, 'hahira', 'US', 1, 30.9913100000, -83.3726600000), (1117840, 1001457, 'Hahnville', NULL, 'hahnville', 'US', 1, 29.9765900000, -90.4089700000), (1117841, 1001411, 'Haiku-Pauwela', NULL, 'haiku-pauwela', 'US', 1, 20.9218700000, -156.3050800000), (1117842, 1001460, 'Hailey', NULL, 'hailey', 'US', 1, 43.5196300000, -114.3153200000), (1117843, 1001400, 'Haines', NULL, 'haines', 'US', 1, 59.2359500000, -135.4453300000), (1117844, 1001400, 'Haines Borough', NULL, 'haines-borough', 'US', 1, 59.2505600000, -135.5005600000), (1117845, 1001436, 'Haines City', NULL, 'haines-city', 'US', 1, 28.1145000000, -81.6200900000), (1117846, 1001425, 'Hainesville', NULL, 'hainesville', 'US', 1, 42.3450200000, -88.0678600000), (1117847, 1001407, 'Hale Center', NULL, 'hale-center', 'US', 1, 34.0642400000, -101.8437900000), (1117848, 1001456, 'Hale County', NULL, 'hale-county', 'US', 1, 32.7626600000, -87.6291200000), (1117849, 1001407, 'Hale County', NULL, 'hale-county', 'US', 1, 34.0705100000, -101.8268800000), (1117850, 1001417, 'Haledon', NULL, 'haledon', 'US', 1, 40.9356500000, -74.1862600000), (1117851, 1001441, 'Hales Corners', NULL, 'hales-corners', 'US', 1, 42.9375100000, -88.0487000000), (1117852, 1001452, 'Halesite', NULL, 'halesite', 'US', 1, 40.8884300000, -73.4154000000), (1117853, 1001456, 'Haleyville', NULL, 'haleyville', 'US', 1, 34.2264900000, -87.6214100000), (1117854, 1001411, 'Hale‘iwa', NULL, 'hale-iwa', 'US', 1, 21.5928400000, -158.1033900000), (1117855, 1001447, 'Half Moon', NULL, 'half-moon', 'US', 1, 34.8260000000, -77.4594100000), (1117856, 1001416, 'Half Moon Bay', NULL, 'half-moon-bay', 'US', 1, 37.4635500000, -122.4285900000), (1117857, 1001401, 'Halfway', NULL, 'halfway', 'US', 1, 39.6206500000, -77.7588800000), (1117858, 1001422, 'Halfway House', NULL, 'halfway-house', 'US', 1, 40.2820400000, -75.6432400000), (1117859, 1001447, 'Halifax', NULL, 'halifax', 'US', 1, 36.3284900000, -77.5894200000), (1117860, 1001427, 'Halifax', NULL, 'halifax', 'US', 1, 36.7659700000, -78.9283400000), (1117861, 1001433, 'Halifax', NULL, 'halifax', 'US', 1, 41.9912100000, -70.8619900000), (1117862, 1001447, 'Halifax County', NULL, 'halifax-county', 'US', 1, 36.2575000000, -77.6518800000), (1117863, 1001427, 'Halifax County', NULL, 'halifax-county', 'US', 1, 36.7669500000, -78.9366200000), (1117864, 1001455, 'Hall County', NULL, 'hall-county', 'US', 1, 34.3168900000, -83.8196800000), (1117865, 1001408, 'Hall County', NULL, 'hall-county', 'US', 1, 40.8725700000, -98.5021700000), (1117866, 1001407, 'Hall County', NULL, 'hall-county', 'US', 1, 34.5307800000, -100.6811300000), (1117867, 1001421, 'Hall Park', NULL, 'hall-park', 'US', 1, 35.2370100000, -97.4064200000), (1117868, 1001422, 'Hallam', NULL, 'hallam', 'US', 1, 40.0048200000, -76.6041300000), (1117869, 1001436, 'Hallandale Beach', NULL, 'hallandale-beach', 'US', 1, 25.9812000000, -80.1483800000), (1117870, 1001407, 'Hallettsville', NULL, 'hallettsville', 'US', 1, 29.4438500000, -96.9410900000), (1117871, 1001420, 'Hallock', NULL, 'hallock', 'US', 1, 48.7744300000, -96.9464500000), (1117872, 1001453, 'Hallowell', NULL, 'hallowell', 'US', 1, 44.2859000000, -69.7908800000), (1117873, 1001454, 'Halls', NULL, 'halls', 'US', 1, 35.8756300000, -89.3961800000), (1117874, 1001422, 'Hallstead', NULL, 'hallstead', 'US', 1, 41.9611900000, -75.7432400000), (1117875, 1001451, 'Hallsville', NULL, 'hallsville', 'US', 1, 39.1169900000, -92.2207400000), (1117876, 1001407, 'Hallsville', NULL, 'hallsville', 'US', 1, 32.5043200000, -94.5740900000), (1117877, 1001406, 'Halstead', NULL, 'halstead', 'US', 1, 38.0014000000, -97.5086500000), (1117878, 1001407, 'Haltom City', NULL, 'haltom-city', 'US', 1, 32.7995700000, -97.2691800000), (1117879, 1001420, 'Ham Lake', NULL, 'ham-lake', 'US', 1, 45.2502400000, -93.2499500000), (1117880, 1001454, 'Hamblen County', NULL, 'hamblen-county', 'US', 1, 36.2171500000, -83.2666600000), (1117881, 1001444, 'Hamburg', NULL, 'hamburg', 'US', 1, 33.2281800000, -91.7976300000), (1117882, 1001459, 'Hamburg', NULL, 'hamburg', 'US', 1, 40.6044500000, -95.6577700000), (1117883, 1001417, 'Hamburg', NULL, 'hamburg', 'US', 1, 41.1534300000, -74.5762700000), (1117884, 1001452, 'Hamburg', NULL, 'hamburg', 'US', 1, 42.7158900000, -78.8294800000), (1117885, 1001422, 'Hamburg', NULL, 'hamburg', 'US', 1, 40.5556500000, -75.9818800000), (1117886, 1001435, 'Hamden', NULL, 'hamden', 'US', 1, 41.3959300000, -72.8967700000), (1117887, 1001456, 'Hamilton', NULL, 'hamilton', 'US', 1, 34.1423200000, -87.9886400000), (1117888, 1001455, 'Hamilton', NULL, 'hamilton', 'US', 1, 32.7579100000, -84.8749300000), (1117889, 1001451, 'Hamilton', NULL, 'hamilton', 'US', 1, 39.7436200000, -93.9982700000), (1117890, 1001407, 'Hamilton', NULL, 'hamilton', 'US', 1, 31.7037700000, -98.1239200000), (1117891, 1001440, 'Hamilton', NULL, 'hamilton', 'US', 1, 41.5336600000, -84.9127400000), (1117892, 1001425, 'Hamilton', NULL, 'hamilton', 'US', 1, 40.3964300000, -91.3390400000), (1117893, 1001452, 'Hamilton', NULL, 'hamilton', 'US', 1, 42.8270100000, -75.5446200000), (1117894, 1001446, 'Hamilton', NULL, 'hamilton', 'US', 1, 46.2468700000, -114.1603700000), (1117895, 1001416, 'Hamilton City', NULL, 'hamilton-city', 'US', 1, 39.7426600000, -122.0135900000), (1117896, 1001436, 'Hamilton County', NULL, 'hamilton-county', 'US', 1, 30.4964300000, -82.9479600000), (1117897, 1001425, 'Hamilton County', NULL, 'hamilton-county', 'US', 1, 38.0815700000, -88.5391100000), (1117898, 1001454, 'Hamilton County', NULL, 'hamilton-county', 'US', 1, 35.1808600000, -85.1647900000), (1117899, 1001407, 'Hamilton County', NULL, 'hamilton-county', 'US', 1, 31.7048000000, -98.1107300000), (1117900, 1001459, 'Hamilton County', NULL, 'hamilton-county', 'US', 1, 42.3837700000, -93.7068100000), (1117901, 1001440, 'Hamilton County', NULL, 'hamilton-county', 'US', 1, 40.0724900000, -86.0520100000), (1117902, 1001408, 'Hamilton County', NULL, 'hamilton-county', 'US', 1, 40.8735600000, -98.0232300000), (1117903, 1001452, 'Hamilton County', NULL, 'hamilton-county', 'US', 1, 43.6611200000, -74.4973600000), (1117904, 1001406, 'Hamilton County', NULL, 'hamilton-county', 'US', 1, 37.9991500000, -101.7912600000), (1117905, 1001417, 'Hamilton Square', NULL, 'hamilton-square', 'US', 1, 40.2273300000, -74.6532100000), (1117906, 1001433, 'Hamilton Worcester', NULL, 'hamilton-worcester', 'US', 1, 42.2562000000, -71.7675700000), (1117907, 1001447, 'Hamlet', NULL, 'hamlet', 'US', 1, 34.8848800000, -79.6942200000), (1117908, 1001429, 'Hamlin', NULL, 'hamlin', 'US', 1, 38.2787000000, -82.1029200000), (1117909, 1001452, 'Hamlin', NULL, 'hamlin', 'US', 1, 43.3031200000, -77.9211200000), (1117910, 1001407, 'Hamlin', NULL, 'hamlin', 'US', 1, 32.8848300000, -100.1264900000), (1117911, 1001445, 'Hamlin County', NULL, 'hamlin-county', 'US', 1, 44.6737600000, -97.1883300000), (1117912, 1001457, 'Hammond', NULL, 'hammond', 'US', 1, 30.5046300000, -90.4629300000), (1117913, 1001440, 'Hammond', NULL, 'hammond', 'US', 1, 41.5833700000, -87.5000400000), (1117914, 1001441, 'Hammond', NULL, 'hammond', 'US', 1, 44.9788600000, -92.4357500000), (1117915, 1001417, 'Hammonton', NULL, 'hammonton', 'US', 1, 39.6365100000, -74.8023900000), (1117916, 1001433, 'Hampden', NULL, 'hampden', 'US', 1, 42.0639800000, -72.4134200000), (1117917, 1001453, 'Hampden', NULL, 'hampden', 'US', 1, 44.7445200000, -68.8369800000), (1117918, 1001433, 'Hampden County', NULL, 'hampden-county', 'US', 1, 42.1351100000, -72.6316200000), (1117919, 1001427, 'Hampden Sydney', NULL, 'hampden-sydney', 'US', 1, 37.2423700000, -78.4597200000), (1117920, 1001425, 'Hampshire', NULL, 'hampshire', 'US', 1, 42.0978000000, -88.5303600000), (1117921, 1001429, 'Hampshire County', NULL, 'hampshire-county', 'US', 1, 39.3170700000, -78.6141700000), (1117922, 1001433, 'Hampshire County', NULL, 'hampshire-county', 'US', 1, 42.3401400000, -72.6637700000), (1117923, 1001401, 'Hampstead', NULL, 'hampstead', 'US', 1, 39.6048300000, -76.8499800000), (1117924, 1001447, 'Hampstead', NULL, 'hampstead', 'US', 1, 34.3676700000, -77.7105300000), (1117925, 1001404, 'Hampstead', NULL, 'hampstead', 'US', 1, 42.8745300000, -71.1811700000), (1117926, 1001444, 'Hampton', NULL, 'hampton', 'US', 1, 33.5378900000, -92.4698800000), (1117927, 1001455, 'Hampton', NULL, 'hampton', 'US', 1, 33.3870600000, -84.2829800000), (1117928, 1001401, 'Hampton', NULL, 'hampton', 'US', 1, 39.4228800000, -76.5846900000), (1117929, 1001443, 'Hampton', NULL, 'hampton', 'US', 1, 32.8779400000, -81.1276100000), (1117930, 1001459, 'Hampton', NULL, 'hampton', 'US', 1, 42.7419200000, -93.2024200000), (1117931, 1001427, 'Hampton', NULL, 'hampton', 'US', 1, 37.0298700000, -76.3452200000), (1117932, 1001425, 'Hampton', NULL, 'hampton', 'US', 1, 41.5558700000, -90.4093000000), (1117933, 1001417, 'Hampton', NULL, 'hampton', 'US', 1, 40.7070400000, -74.9560000000), (1117934, 1001404, 'Hampton', NULL, 'hampton', 'US', 1, 42.9375900000, -70.8389400000), (1117935, 1001452, 'Hampton Bays', NULL, 'hampton-bays', 'US', 1, 40.8689900000, -72.5175900000), (1117936, 1001404, 'Hampton Beach', NULL, 'hampton-beach', 'US', 1, 42.9073100000, -70.8120000000), (1117937, 1001443, 'Hampton County', NULL, 'hampton-county', 'US', 1, 32.7762800000, -81.1407000000), (1117938, 1001404, 'Hampton Falls', NULL, 'hampton-falls', 'US', 1, 42.9162000000, -70.8636600000), (1117939, 1001452, 'Hampton Manor', NULL, 'hampton-manor', 'US', 1, 42.6209100000, -73.7284500000), (1117940, 1001426, 'Hamtramck', NULL, 'hamtramck', 'US', 1, 42.3928200000, -83.0496400000), (1117941, 1001411, 'Hana', NULL, 'hana', 'US', 1, 20.7580600000, -155.9902800000), (1117942, 1001443, 'Hanahan', NULL, 'hanahan', 'US', 1, 32.9185100000, -80.0220300000), (1117943, 1001411, 'Hanamā‘ulu', NULL, 'hanama-ulu', 'US', 1, 21.9977300000, -159.3591800000), (1117944, 1001411, 'Hanapēpē', NULL, 'hanapepe', 'US', 1, 21.9073300000, -159.5944000000), (1117945, 1001411, 'Hanapēpē Heights', NULL, 'hanapepe-heights', 'US', 1, 21.9163300000, -159.5899500000), (1117946, 1001456, 'Hanceville', NULL, 'hanceville', 'US', 1, 34.0606500000, -86.7675000000), (1117947, 1001401, 'Hancock', NULL, 'hancock', 'US', 1, 39.6989800000, -78.1797300000), (1117948, 1001453, 'Hancock', NULL, 'hancock', 'US', 1, 44.5292400000, -68.2536300000), (1117949, 1001426, 'Hancock', NULL, 'hancock', 'US', 1, 47.1268700000, -88.5809600000), (1117950, 1001455, 'Hancock County', NULL, 'hancock-county', 'US', 1, 33.2704300000, -83.0006900000), (1117951, 1001440, 'Hancock County', NULL, 'hancock-county', 'US', 1, 39.8235500000, -85.7732400000), (1117952, 1001419, 'Hancock County', NULL, 'hancock-county', 'US', 1, 37.8415100000, -86.7779300000), (1117953, 1001430, 'Hancock County', NULL, 'hancock-county', 'US', 1, 30.3937800000, -89.4745600000), (1117954, 1001454, 'Hancock County', NULL, 'hancock-county', 'US', 1, 36.5236500000, -83.2218300000), (1117955, 1001459, 'Hancock County', NULL, 'hancock-county', 'US', 1, 43.0818900000, -93.7342700000), (1117956, 1001425, 'Hancock County', NULL, 'hancock-county', 'US', 1, 40.4037800000, -91.1647000000), (1117957, 1001453, 'Hancock County', NULL, 'hancock-county', 'US', 1, 44.5628900000, -68.3682100000), (1117958, 1001429, 'Hancock County', NULL, 'hancock-county', 'US', 1, 40.5218500000, -80.5738900000), (1117959, 1001445, 'Hand County', NULL, 'hand-county', 'US', 1, 44.5477800000, -99.0049400000), (1117960, 1001416, 'Hanford', NULL, 'hanford', 'US', 1, 36.3274500000, -119.6456800000), (1117961, 1001451, 'Hanley Hills', NULL, 'hanley-hills', 'US', 1, 38.6858800000, -90.3237300000), (1117962, 1001425, 'Hanna City', NULL, 'hanna-city', 'US', 1, 40.6917000000, -89.7951100000), (1117963, 1001455, 'Hannahs Mill', NULL, 'hannahs-mill', 'US', 1, 32.9329100000, -84.3493600000), (1117964, 1001452, 'Hannawa Falls', NULL, 'hannawa-falls', 'US', 1, 44.6122800000, -74.9710300000), (1117965, 1001451, 'Hannibal', NULL, 'hannibal', 'US', 1, 39.7083800000, -91.3584800000), (1117966, 1001440, 'Hanover', NULL, 'hanover', 'US', 1, 38.7142300000, -85.4735700000), (1117967, 1001401, 'Hanover', NULL, 'hanover', 'US', 1, 39.1928900000, -76.7241400000), (1117968, 1001422, 'Hanover', NULL, 'hanover', 'US', 1, 39.8006600000, -76.9830400000), (1117969, 1001427, 'Hanover', NULL, 'hanover', 'US', 1, 37.7665300000, -77.3702600000), (1117970, 1001433, 'Hanover', NULL, 'hanover', 'US', 1, 42.1131600000, -70.8119900000), (1117971, 1001420, 'Hanover', NULL, 'hanover', 'US', 1, 45.1558000000, -93.6663500000), (1117972, 1001404, 'Hanover', NULL, 'hanover', 'US', 1, 43.7022900000, -72.2895400000), (1117973, 1001417, 'Hanover', NULL, 'hanover', 'US', 1, 40.8045400000, -74.3668200000), (1117974, 1001427, 'Hanover County', NULL, 'hanover-county', 'US', 1, 37.7601500000, -77.4908700000), (1117975, 1001425, 'Hanover Park', NULL, 'hanover-park', 'US', 1, 41.9994700000, -88.1450700000), (1117976, 1001460, 'Hansen', NULL, 'hansen', 'US', 1, 42.5306800000, -114.3010100000), (1117977, 1001407, 'Hansford County', NULL, 'hansford-county', 'US', 1, 36.2774500000, -101.3545400000), (1117978, 1001433, 'Hanson', NULL, 'hanson', 'US', 1, 42.0751000000, -70.8800400000), (1117979, 1001445, 'Hanson County', NULL, 'hanson-county', 'US', 1, 43.6748200000, -97.7873400000), (1117980, 1001462, 'Hansville', NULL, 'hansville', 'US', 1, 47.9187000000, -122.5543100000), (1117981, 1001455, 'Hapeville', NULL, 'hapeville', 'US', 1, 33.6601100000, -84.4102000000), (1117982, 1001416, 'Happy Camp', NULL, 'happy-camp', 'US', 1, 41.7927500000, -123.3808000000), (1117983, 1001415, 'Happy Valley', NULL, 'happy-valley', 'US', 1, 45.4467900000, -122.5303700000), (1117984, 1001457, 'Harahan', NULL, 'harahan', 'US', 1, 29.9404800000, -90.2031300000), (1117985, 1001455, 'Haralson County', NULL, 'haralson-county', 'US', 1, 33.7942300000, -85.2110300000), (1117986, 1001416, 'Harbison Canyon', NULL, 'harbison-canyon', 'US', 1, 32.8203300000, -116.8300200000), (1117987, 1001415, 'Harbor', NULL, 'harbor', 'US', 1, 42.0531700000, -124.2675900000), (1117988, 1001426, 'Harbor Beach', NULL, 'harbor-beach', 'US', 1, 43.8447400000, -82.6513200000), (1117989, 1001436, 'Harbor Bluffs', NULL, 'harbor-bluffs', 'US', 1, 27.9094700000, -82.8276000000), (1117990, 1001452, 'Harbor Isle', NULL, 'harbor-isle', 'US', 1, 40.6034400000, -73.6645700000), (1117991, 1001426, 'Harbor Springs', NULL, 'harbor-springs', 'US', 1, 45.4316800000, -84.9920000000), (1117992, 1001436, 'Harbour Heights', NULL, 'harbour-heights', 'US', 1, 26.9908900000, -82.0023100000), (1117993, 1001436, 'Hardee County', NULL, 'hardee-county', 'US', 1, 27.4927000000, -81.8099300000), (1117994, 1001443, 'Hardeeville', NULL, 'hardeeville', 'US', 1, 32.2871400000, -81.0806700000), (1117995, 1001454, 'Hardeman County', NULL, 'hardeman-county', 'US', 1, 35.2068700000, -88.9930800000), (1117996, 1001407, 'Hardeman County', NULL, 'hardeman-county', 'US', 1, 34.2902900000, -99.7457200000), (1117997, 1001425, 'Hardin', NULL, 'hardin', 'US', 1, 39.1567100000, -90.6179000000), (1117998, 1001446, 'Hardin', NULL, 'hardin', 'US', 1, 45.7324800000, -107.6120300000); INSERT INTO `[[dbprefix]]t_city` VALUES (1117999, 1001425, 'Hardin County', NULL, 'hardin-county', 'US', 1, 37.5182000000, -88.2668500000), (1118000, 1001419, 'Hardin County', NULL, 'hardin-county', 'US', 1, 37.6979200000, -85.9633700000), (1118001, 1001454, 'Hardin County', NULL, 'hardin-county', 'US', 1, 35.1986800000, -88.1844800000), (1118002, 1001407, 'Hardin County', NULL, 'hardin-county', 'US', 1, 30.3323700000, -94.3902200000), (1118003, 1001459, 'Hardin County', NULL, 'hardin-county', 'US', 1, 42.3838800000, -93.2404000000), (1118004, 1001423, 'Harding County', NULL, 'harding-county', 'US', 1, 35.8579400000, -103.8199300000), (1118005, 1001445, 'Harding County', NULL, 'harding-county', 'US', 1, 45.5803500000, -103.4957700000), (1118006, 1001419, 'Hardinsburg', NULL, 'hardinsburg', 'US', 1, 37.7800600000, -86.4605300000), (1118007, 1001455, 'Hardwick', NULL, 'hardwick', 'US', 1, 33.0682000000, -83.2234900000), (1118008, 1001433, 'Hardwick', NULL, 'hardwick', 'US', 1, 42.3500900000, -72.1995200000), (1118009, 1001417, 'Hardwick', NULL, 'hardwick', 'US', 1, 41.0545400000, -74.9321200000), (1118010, 1001409, 'Hardwick', NULL, 'hardwick', 'US', 1, 44.5047800000, -72.3681600000), (1118011, 1001429, 'Hardy County', NULL, 'hardy-county', 'US', 1, 39.0075000000, -78.8579200000), (1118012, 1001401, 'Harford County', NULL, 'harford-county', 'US', 1, 39.5364400000, -76.2988700000), (1118013, 1001407, 'Harker Heights', NULL, 'harker-heights', 'US', 1, 31.0835100000, -97.6597400000), (1118014, 1001447, 'Harkers Island', NULL, 'harkers-island', 'US', 1, 34.6951600000, -76.5593700000), (1118015, 1001419, 'Harlan', NULL, 'harlan', 'US', 1, 36.8431400000, -83.3218500000), (1118016, 1001459, 'Harlan', NULL, 'harlan', 'US', 1, 41.6530400000, -95.3255500000), (1118017, 1001440, 'Harlan', NULL, 'harlan', 'US', 1, 41.1961600000, -84.9196900000), (1118018, 1001419, 'Harlan County', NULL, 'harlan-county', 'US', 1, 36.8569700000, -83.2179500000), (1118019, 1001408, 'Harlan County', NULL, 'harlan-county', 'US', 1, 40.1765000000, -99.4046400000), (1118020, 1001422, 'Harleigh', NULL, 'harleigh', 'US', 1, 40.9806400000, -75.9713100000), (1118021, 1001436, 'Harlem', NULL, 'harlem', 'US', 1, 26.7375700000, -80.9509000000), (1118022, 1001455, 'Harlem', NULL, 'harlem', 'US', 1, 33.4145800000, -82.3126200000), (1118023, 1001452, 'Harlem', NULL, 'harlem', 'US', 1, 40.8078800000, -73.9454200000), (1118024, 1001436, 'Harlem Heights', NULL, 'harlem-heights', 'US', 1, 26.5161900000, -81.9278700000), (1118025, 1001422, 'Harleysville', NULL, 'harleysville', 'US', 1, 40.2795500000, -75.3871200000), (1118026, 1001407, 'Harlingen', NULL, 'harlingen', 'US', 1, 26.1906300000, -97.6961000000), (1118027, 1001446, 'Harlowton', NULL, 'harlowton', 'US', 1, 46.4355100000, -109.8343500000), (1118028, 1001421, 'Harmon County', NULL, 'harmon-county', 'US', 1, 34.7441200000, -99.8462800000), (1118029, 1001447, 'Harnett County', NULL, 'harnett-county', 'US', 1, 35.3686000000, -78.8693100000), (1118030, 1001415, 'Harney County', NULL, 'harney-county', 'US', 1, 43.0640200000, -118.9678700000), (1118031, 1001406, 'Harper', NULL, 'harper', 'US', 1, 37.2866900000, -98.0258900000), (1118032, 1001407, 'Harper', NULL, 'harper', 'US', 1, 30.2999200000, -99.2442100000), (1118033, 1001406, 'Harper County', NULL, 'harper-county', 'US', 1, 37.1916000000, -98.0755000000), (1118034, 1001421, 'Harper County', NULL, 'harper-county', 'US', 1, 36.7887300000, -99.6673600000), (1118035, 1001426, 'Harper Woods', NULL, 'harper-woods', 'US', 1, 42.4330900000, -82.9240800000), (1118036, 1001456, 'Harpersville', NULL, 'harpersville', 'US', 1, 33.3440000000, -86.4380400000), (1118037, 1001453, 'Harpswell Center', NULL, 'harpswell-center', 'US', 1, 43.8017500000, -69.9842100000), (1118038, 1001421, 'Harrah', NULL, 'harrah', 'US', 1, 35.4895100000, -97.1636400000), (1118039, 1001454, 'Harriman', NULL, 'harriman', 'US', 1, 35.9339600000, -84.5524400000), (1118040, 1001452, 'Harriman', NULL, 'harriman', 'US', 1, 41.3084300000, -74.1445900000), (1118041, 1001399, 'Harrington', NULL, 'harrington', 'US', 1, 38.9237200000, -75.5777000000), (1118042, 1001417, 'Harrington Park', NULL, 'harrington-park', 'US', 1, 40.9837100000, -73.9798600000), (1118043, 1001420, 'Harris', NULL, 'harris', 'US', 1, 45.5863500000, -92.9746600000), (1118044, 1001455, 'Harris County', NULL, 'harris-county', 'US', 1, 32.7360000000, -84.9089900000), (1118045, 1001407, 'Harris County', NULL, 'harris-county', 'US', 1, 29.8572800000, -95.3923400000), (1118046, 1001452, 'Harris Hill', NULL, 'harris-hill', 'US', 1, 42.9647800000, -78.6775300000), (1118047, 1001444, 'Harrisburg', NULL, 'harrisburg', 'US', 1, 35.5642500000, -90.7167800000), (1118048, 1001425, 'Harrisburg', NULL, 'harrisburg', 'US', 1, 37.7383800000, -88.5406100000), (1118049, 1001447, 'Harrisburg', NULL, 'harrisburg', 'US', 1, 35.3239500000, -80.6578400000), (1118050, 1001422, 'Harrisburg', NULL, 'harrisburg', 'US', 1, 40.2737000000, -76.8844200000), (1118051, 1001445, 'Harrisburg', NULL, 'harrisburg', 'US', 1, 43.4313700000, -96.6972700000), (1118052, 1001408, 'Harrisburg', NULL, 'harrisburg', 'US', 1, 41.5563600000, -103.7385600000), (1118053, 1001415, 'Harrisburg', NULL, 'harrisburg', 'US', 1, 44.2740100000, -123.1706500000), (1118054, 1001444, 'Harrison', NULL, 'harrison', 'US', 1, 36.2297900000, -93.1076800000), (1118055, 1001454, 'Harrison', NULL, 'harrison', 'US', 1, 35.1136800000, -85.1380100000), (1118056, 1001453, 'Harrison', NULL, 'harrison', 'US', 1, 44.1103500000, -70.6792300000), (1118057, 1001426, 'Harrison', NULL, 'harrison', 'US', 1, 44.0191900000, -84.7994700000), (1118058, 1001417, 'Harrison', NULL, 'harrison', 'US', 1, 40.7464900000, -74.1562600000), (1118059, 1001452, 'Harrison', NULL, 'harrison', 'US', 1, 40.9689900000, -73.7126300000), (1118060, 1001408, 'Harrison', NULL, 'harrison', 'US', 1, 42.6871900000, -103.8827100000), (1118061, 1001441, 'Harrison', NULL, 'harrison', 'US', 1, 44.2277600000, -88.3359100000), (1118062, 1001440, 'Harrison County', NULL, 'harrison-county', 'US', 1, 38.1951200000, -86.1113100000), (1118063, 1001419, 'Harrison County', NULL, 'harrison-county', 'US', 1, 38.4418100000, -84.3313900000), (1118064, 1001430, 'Harrison County', NULL, 'harrison-county', 'US', 1, 30.4160500000, -89.0816400000), (1118065, 1001407, 'Harrison County', NULL, 'harrison-county', 'US', 1, 32.5481300000, -94.3714900000), (1118066, 1001429, 'Harrison County', NULL, 'harrison-county', 'US', 1, 39.2835300000, -80.3798700000), (1118067, 1001459, 'Harrison County', NULL, 'harrison-county', 'US', 1, 41.6828500000, -95.8169200000), (1118068, 1001451, 'Harrison County', NULL, 'harrison-county', 'US', 1, 40.3546700000, -93.9920600000), (1118069, 1001457, 'Harrisonburg', NULL, 'harrisonburg', 'US', 1, 31.7721100000, -91.8215200000), (1118070, 1001427, 'Harrisonburg', NULL, 'harrisonburg', 'US', 1, 38.4495700000, -78.8689200000), (1118071, 1001451, 'Harrisonville', NULL, 'harrisonville', 'US', 1, 38.6533400000, -94.3488400000), (1118072, 1001425, 'Harristown', NULL, 'harristown', 'US', 1, 39.8539300000, -89.0839700000), (1118073, 1001429, 'Harrisville', NULL, 'harrisville', 'US', 1, 39.2095200000, -81.0517800000), (1118074, 1001426, 'Harrisville', NULL, 'harrisville', 'US', 1, 44.6564000000, -83.2946900000), (1118075, 1001404, 'Harrisville', NULL, 'harrisville', 'US', 1, 42.9450800000, -72.0964700000), (1118076, 1001461, 'Harrisville', NULL, 'harrisville', 'US', 1, 41.9656500000, -71.6745100000), (1118077, 1001414, 'Harrisville', NULL, 'harrisville', 'US', 1, 41.2813300000, -111.9882800000), (1118078, 1001419, 'Harrodsburg', NULL, 'harrodsburg', 'US', 1, 37.7623000000, -84.8432900000), (1118079, 1001454, 'Harrogate', NULL, 'harrogate', 'US', 1, 36.5823000000, -83.6568600000), (1118080, 1001426, 'Hart', NULL, 'hart', 'US', 1, 43.6983400000, -86.3639700000), (1118081, 1001407, 'Hart', NULL, 'hart', 'US', 1, 34.3850700000, -102.1157400000), (1118082, 1001455, 'Hart County', NULL, 'hart-county', 'US', 1, 34.3509000000, -82.9642500000), (1118083, 1001419, 'Hart County', NULL, 'hart-county', 'US', 1, 37.2999300000, -85.8847100000), (1118084, 1001456, 'Hartford', NULL, 'hartford', 'US', 1, 31.1024000000, -85.6968800000), (1118085, 1001425, 'Hartford', NULL, 'hartford', 'US', 1, 38.8333800000, -90.0959400000), (1118086, 1001419, 'Hartford', NULL, 'hartford', 'US', 1, 37.4511600000, -86.9091600000), (1118087, 1001435, 'Hartford', NULL, 'hartford', 'US', 1, 41.7637100000, -72.6850900000), (1118088, 1001426, 'Hartford', NULL, 'hartford', 'US', 1, 42.2067100000, -86.1666900000), (1118089, 1001453, 'Hartford', NULL, 'hartford', 'US', 1, 44.3728400000, -70.3467300000), (1118090, 1001452, 'Hartford', NULL, 'hartford', 'US', 1, 43.3636800000, -73.3937200000), (1118091, 1001441, 'Hartford', NULL, 'hartford', 'US', 1, 43.3177800000, -88.3789900000), (1118092, 1001409, 'Hartford', NULL, 'hartford', 'US', 1, 43.6606300000, -72.3384200000), (1118093, 1001445, 'Hartford', NULL, 'hartford', 'US', 1, 43.6230300000, -96.9425500000), (1118094, 1001440, 'Hartford City', NULL, 'hartford-city', 'US', 1, 40.4511500000, -85.3699700000), (1118095, 1001435, 'Hartford County', NULL, 'hartford-county', 'US', 1, 41.8064200000, -72.7328400000), (1118096, 1001408, 'Hartington', NULL, 'hartington', 'US', 1, 42.6225000000, -97.2645000000), (1118097, 1001441, 'Hartland', NULL, 'hartland', 'US', 1, 43.1050100000, -88.3420400000), (1118098, 1001459, 'Hartley', NULL, 'hartley', 'US', 1, 43.1799700000, -95.4769500000), (1118099, 1001416, 'Hartley', NULL, 'hartley', 'US', 1, 38.4171300000, -121.9469100000), (1118100, 1001407, 'Hartley County', NULL, 'hartley-county', 'US', 1, 35.8400200000, -102.6028900000), (1118101, 1001452, 'Hartsdale', NULL, 'hartsdale', 'US', 1, 41.0189900000, -73.7981900000), (1118102, 1001456, 'Hartselle', NULL, 'hartselle', 'US', 1, 34.4434300000, -86.9352800000), (1118103, 1001421, 'Hartshorne', NULL, 'hartshorne', 'US', 1, 34.8451000000, -95.5574800000), (1118104, 1001443, 'Hartsville', NULL, 'hartsville', 'US', 1, 34.3740400000, -80.0734000000), (1118105, 1001454, 'Hartsville', NULL, 'hartsville', 'US', 1, 36.3908800000, -86.1672100000), (1118106, 1001451, 'Hartville', NULL, 'hartville', 'US', 1, 37.2508800000, -92.5104400000), (1118107, 1001455, 'Hartwell', NULL, 'hartwell', 'US', 1, 34.3528800000, -82.9320900000), (1118108, 1001425, 'Harvard', NULL, 'harvard', 'US', 1, 42.4222400000, -88.6137100000), (1118109, 1001433, 'Harvard', NULL, 'harvard', 'US', 1, 42.5000900000, -71.5828400000), (1118110, 1001456, 'Harvest', NULL, 'harvest', 'US', 1, 34.8556400000, -86.7508300000), (1118111, 1001457, 'Harvey', NULL, 'harvey', 'US', 1, 29.9035400000, -90.0772900000), (1118112, 1001425, 'Harvey', NULL, 'harvey', 'US', 1, 41.6100300000, -87.6467100000), (1118113, 1001426, 'Harvey', NULL, 'harvey', 'US', 1, 46.4946600000, -87.3543100000), (1118114, 1001418, 'Harvey', NULL, 'harvey', 'US', 1, 47.7697200000, -99.9354000000), (1118115, 1001406, 'Harvey County', NULL, 'harvey-county', 'US', 1, 38.0432200000, -97.4272700000), (1118116, 1001422, 'Harveys Lake', NULL, 'harveys-lake', 'US', 1, 41.3834100000, -76.0246500000), (1118117, 1001433, 'Harwich', NULL, 'harwich', 'US', 1, 41.6862200000, -70.0758500000), (1118118, 1001433, 'Harwich Center', NULL, 'harwich-center', 'US', 1, 41.6923500000, -70.0693800000), (1118119, 1001433, 'Harwich Port', NULL, 'harwich-port', 'US', 1, 41.6667800000, -70.0786300000), (1118120, 1001425, 'Harwood Heights', NULL, 'harwood-heights', 'US', 1, 41.9672500000, -87.8075600000), (1118121, 1001417, 'Hasbrouck Heights', NULL, 'hasbrouck-heights', 'US', 1, 40.8581600000, -74.0807000000), (1118122, 1001444, 'Haskell', NULL, 'haskell', 'US', 1, 34.5014800000, -92.6365500000), (1118123, 1001421, 'Haskell', NULL, 'haskell', 'US', 1, 35.8203800000, -95.6741500000), (1118124, 1001407, 'Haskell', NULL, 'haskell', 'US', 1, 33.1576000000, -99.7337000000), (1118125, 1001421, 'Haskell County', NULL, 'haskell-county', 'US', 1, 35.2248200000, -95.1166000000), (1118126, 1001407, 'Haskell County', NULL, 'haskell-county', 'US', 1, 33.1782300000, -99.7303000000), (1118127, 1001406, 'Haskell County', NULL, 'haskell-county', 'US', 1, 37.5622500000, -100.8711900000), (1118128, 1001407, 'Haslet', NULL, 'haslet', 'US', 1, 32.9748500000, -97.3478000000), (1118129, 1001426, 'Haslett', NULL, 'haslett', 'US', 1, 42.7469800000, -84.4010800000), (1118130, 1001422, 'Hasson Heights', NULL, 'hasson-heights', 'US', 1, 41.4489500000, -79.6770000000), (1118131, 1001426, 'Hastings', NULL, 'hastings', 'US', 1, 42.6458700000, -85.2908400000), (1118132, 1001420, 'Hastings', NULL, 'hastings', 'US', 1, 44.7433000000, -92.8524300000), (1118133, 1001408, 'Hastings', NULL, 'hastings', 'US', 1, 40.5861200000, -98.3883900000), (1118134, 1001422, 'Hastings', NULL, 'hastings', 'US', 1, 40.6650700000, -78.7122500000), (1118135, 1001452, 'Hastings-on-Hudson', NULL, 'hastings-on-hudson', 'US', 1, 40.9945400000, -73.8787500000), (1118136, 1001422, 'Hatboro', NULL, 'hatboro', 'US', 1, 40.1742800000, -75.1068400000), (1118137, 1001423, 'Hatch', NULL, 'hatch', 'US', 1, 32.6653600000, -107.1530700000), (1118138, 1001433, 'Hatfield', NULL, 'hatfield', 'US', 1, 42.3709200000, -72.5981400000), (1118139, 1001422, 'Hatfield', NULL, 'hatfield', 'US', 1, 40.2798300000, -75.2993400000), (1118140, 1001430, 'Hattiesburg', NULL, 'hattiesburg', 'US', 1, 31.3271200000, -89.2903400000), (1118141, 1001440, 'Haubstadt', NULL, 'haubstadt', 'US', 1, 38.2050400000, -87.5741900000), (1118142, 1001457, 'Haughton', NULL, 'haughton', 'US', 1, 32.5326500000, -93.5040600000), (1118143, 1001452, 'Hauppauge', NULL, 'hauppauge', 'US', 1, 40.8256500000, -73.2026100000), (1118144, 1001411, 'Hau‘ula', NULL, 'hau-ula', 'US', 1, 21.6076000000, -157.9086800000), (1118145, 1001436, 'Havana', NULL, 'havana', 'US', 1, 30.6238100000, -84.4146300000), (1118146, 1001425, 'Havana', NULL, 'havana', 'US', 1, 40.3000400000, -90.0609500000), (1118147, 1001447, 'Havelock', NULL, 'havelock', 'US', 1, 34.8790500000, -76.9013300000), (1118148, 1001406, 'Haven', NULL, 'haven', 'US', 1, 37.8989000000, -97.7828300000), (1118149, 1001436, 'Haverhill', NULL, 'haverhill', 'US', 1, 26.6911800000, -80.1200400000), (1118150, 1001433, 'Haverhill', NULL, 'haverhill', 'US', 1, 42.7762000000, -71.0772800000), (1118151, 1001404, 'Haverhill', NULL, 'haverhill', 'US', 1, 44.0345100000, -72.0639800000), (1118152, 1001452, 'Haverstraw', NULL, 'haverstraw', 'US', 1, 41.1975900000, -73.9645800000), (1118153, 1001452, 'Haviland', NULL, 'haviland', 'US', 1, 41.7667600000, -73.9015200000), (1118154, 1001446, 'Havre', NULL, 'havre', 'US', 1, 48.5500000000, -109.6840900000), (1118155, 1001401, 'Havre de Grace', NULL, 'havre-de-grace', 'US', 1, 39.5492800000, -76.0916200000), (1118156, 1001447, 'Haw River', NULL, 'haw-river', 'US', 1, 36.0915300000, -79.3641900000), (1118157, 1001411, 'Hawaii County', NULL, 'hawaii-county', 'US', 1, 19.6024000000, -155.5228900000), (1118158, 1001411, 'Hawaiian Acres', NULL, 'hawaiian-acres', 'US', 1, 19.5380600000, -155.0522200000), (1118159, 1001411, 'Hawaiian Beaches', NULL, 'hawaiian-beaches', 'US', 1, 19.5430600000, -154.9158300000), (1118160, 1001416, 'Hawaiian Gardens', NULL, 'hawaiian-gardens', 'US', 1, 33.8314000000, -118.0728400000), (1118161, 1001411, 'Hawaiian Ocean View', NULL, 'hawaiian-ocean-view', 'US', 1, 19.0686100000, -155.7650000000), (1118162, 1001411, 'Hawaiian Paradise Park', NULL, 'hawaiian-paradise-park', 'US', 1, 19.5933300000, -154.9730600000), (1118163, 1001459, 'Hawarden', NULL, 'hawarden', 'US', 1, 42.9958200000, -96.4853100000), (1118164, 1001419, 'Hawesville', NULL, 'hawesville', 'US', 1, 37.9000600000, -86.7549900000), (1118165, 1001407, 'Hawkins', NULL, 'hawkins', 'US', 1, 32.5884700000, -95.2041100000), (1118166, 1001454, 'Hawkins County', NULL, 'hawkins-county', 'US', 1, 36.4411700000, -82.9446800000), (1118167, 1001455, 'Hawkinsville', NULL, 'hawkinsville', 'US', 1, 32.2837700000, -83.4721200000), (1118168, 1001420, 'Hawley', NULL, 'hawley', 'US', 1, 46.8807900000, -96.3167300000), (1118169, 1001422, 'Hawley', NULL, 'hawley', 'US', 1, 41.4759200000, -75.1821200000), (1118170, 1001417, 'Haworth', NULL, 'haworth', 'US', 1, 40.9609300000, -73.9901400000), (1118171, 1001425, 'Hawthorn Woods', NULL, 'hawthorn-woods', 'US', 1, 42.2169700000, -88.0495200000), (1118172, 1001436, 'Hawthorne', NULL, 'hawthorne', 'US', 1, 29.5919100000, -82.0873200000), (1118173, 1001417, 'Hawthorne', NULL, 'hawthorne', 'US', 1, 40.9492600000, -74.1537500000), (1118174, 1001452, 'Hawthorne', NULL, 'hawthorne', 'US', 1, 41.1073200000, -73.7959700000), (1118175, 1001416, 'Hawthorne', NULL, 'hawthorne', 'US', 1, 33.9164000000, -118.3525700000), (1118176, 1001458, 'Hawthorne', NULL, 'hawthorne', 'US', 1, 38.5246400000, -118.6245800000), (1118177, 1001456, 'Hayden', NULL, 'hayden', 'US', 1, 33.8926000000, -86.7577700000), (1118178, 1001450, 'Hayden', NULL, 'hayden', 'US', 1, 40.4952900000, -107.2572900000), (1118179, 1001460, 'Hayden', NULL, 'hayden', 'US', 1, 47.7660200000, -116.7865800000), (1118180, 1001408, 'Hayes Center', NULL, 'hayes-center', 'US', 1, 40.5108400000, -101.0196000000), (1118181, 1001408, 'Hayes County', NULL, 'hayes-county', 'US', 1, 40.5247800000, -101.0618400000), (1118182, 1001447, 'Hayesville', NULL, 'hayesville', 'US', 1, 35.0462000000, -83.8179500000), (1118183, 1001415, 'Hayesville', NULL, 'hayesville', 'US', 1, 44.9859500000, -122.9828700000), (1118184, 1001427, 'Hayfield', NULL, 'hayfield', 'US', 1, 38.7517800000, -77.1358100000), (1118185, 1001420, 'Hayfield', NULL, 'hayfield', 'US', 1, 43.8905200000, -92.8476900000), (1118186, 1001416, 'Hayfork', NULL, 'hayfork', 'US', 1, 40.5543100000, -123.1830800000), (1118187, 1001427, 'Haymarket', NULL, 'haymarket', 'US', 1, 38.8120600000, -77.6363800000), (1118188, 1001457, 'Haynesville', NULL, 'haynesville', 'US', 1, 32.9620800000, -93.1401600000), (1118189, 1001456, 'Hayneville', NULL, 'hayneville', 'US', 1, 32.1840300000, -86.5802500000), (1118190, 1001406, 'Hays', NULL, 'hays', 'US', 1, 38.8791800000, -99.3267700000), (1118191, 1001447, 'Hays', NULL, 'hays', 'US', 1, 36.2498500000, -81.1156400000), (1118192, 1001407, 'Hays County', NULL, 'hays-county', 'US', 1, 30.0581500000, -98.0310600000), (1118193, 1001406, 'Haysville', NULL, 'haysville', 'US', 1, 37.5644600000, -97.3522700000), (1118194, 1001451, 'Hayti', NULL, 'hayti', 'US', 1, 36.2336800000, -89.7495300000), (1118195, 1001445, 'Hayti', NULL, 'hayti', 'US', 1, 44.6571900000, -97.2050700000), (1118196, 1001441, 'Hayward', NULL, 'hayward', 'US', 1, 46.0130100000, -91.4846200000), (1118197, 1001416, 'Hayward', NULL, 'hayward', 'US', 1, 37.6688200000, -122.0808000000), (1118198, 1001447, 'Haywood County', NULL, 'haywood-county', 'US', 1, 35.5560500000, -82.9822400000), (1118199, 1001454, 'Haywood County', NULL, 'haywood-county', 'US', 1, 35.5832200000, -89.2838400000), (1118200, 1001419, 'Hazard', NULL, 'hazard', 'US', 1, 37.2495400000, -83.1932300000), (1118201, 1001435, 'Hazardville', NULL, 'hazardville', 'US', 1, 41.9873200000, -72.5448100000), (1118202, 1001425, 'Hazel Crest', NULL, 'hazel-crest', 'US', 1, 41.5717000000, -87.6944900000), (1118203, 1001462, 'Hazel Dell', NULL, 'hazel-dell', 'US', 1, 45.6715100000, -122.6628800000), (1118204, 1001456, 'Hazel Green', NULL, 'hazel-green', 'US', 1, 34.9323100000, -86.5719400000), (1118205, 1001441, 'Hazel Green', NULL, 'hazel-green', 'US', 1, 42.5327800000, -90.4345700000), (1118206, 1001426, 'Hazel Park', NULL, 'hazel-park', 'US', 1, 42.4625400000, -83.1040900000), (1118207, 1001451, 'Hazelwood', NULL, 'hazelwood', 'US', 1, 38.7714400000, -90.3709500000), (1118208, 1001447, 'Hazelwood', NULL, 'hazelwood', 'US', 1, 35.4687100000, -83.0040300000), (1118209, 1001444, 'Hazen', NULL, 'hazen', 'US', 1, 34.7809300000, -91.5809700000), (1118210, 1001418, 'Hazen', NULL, 'hazen', 'US', 1, 47.2944500000, -101.6226600000), (1118211, 1001455, 'Hazlehurst', NULL, 'hazlehurst', 'US', 1, 31.8696300000, -82.5943000000), (1118212, 1001430, 'Hazlehurst', NULL, 'hazlehurst', 'US', 1, 31.8604400000, -90.3959300000), (1118213, 1001422, 'Hazleton', NULL, 'hazleton', 'US', 1, 40.9584200000, -75.9746500000), (1118214, 1001433, 'Head of Westport', NULL, 'head-of-westport', 'US', 1, 41.6209400000, -71.0619900000), (1118215, 1001452, 'Head of the Harbor', NULL, 'head-of-the-harbor', 'US', 1, 40.9034300000, -73.1578900000), (1118216, 1001456, 'Headland', NULL, 'headland', 'US', 1, 31.3512800000, -85.3421600000), (1118217, 1001416, 'Healdsburg', NULL, 'healdsburg', 'US', 1, 38.6104700000, -122.8691600000), (1118218, 1001421, 'Healdton', NULL, 'healdton', 'US', 1, 34.2331500000, -97.4878000000), (1118219, 1001400, 'Healy', NULL, 'healy', 'US', 1, 63.8569400000, -148.9661100000), (1118220, 1001455, 'Heard County', NULL, 'heard-county', 'US', 1, 33.2970300000, -85.1282700000), (1118221, 1001407, 'Hearne', NULL, 'hearne', 'US', 1, 30.8785200000, -96.5930300000), (1118222, 1001407, 'Heath', NULL, 'heath', 'US', 1, 32.8365100000, -96.4749900000), (1118223, 1001417, 'Heathcote', NULL, 'heathcote', 'US', 1, 40.3887200000, -74.5757100000), (1118224, 1001436, 'Heathrow', NULL, 'heathrow', 'US', 1, 28.7633300000, -81.3722500000), (1118225, 1001427, 'Heathsville', NULL, 'heathsville', 'US', 1, 37.9176300000, -76.4721700000), (1118226, 1001421, 'Heavener', NULL, 'heavener', 'US', 1, 34.8892700000, -94.6007800000), (1118227, 1001407, 'Hebbronville', NULL, 'hebbronville', 'US', 1, 27.3068800000, -98.6803200000), (1118228, 1001416, 'Heber', NULL, 'heber', 'US', 1, 32.7308900000, -115.5297200000), (1118229, 1001414, 'Heber City', NULL, 'heber-city', 'US', 1, 40.5069000000, -111.4132400000), (1118230, 1001444, 'Heber Springs', NULL, 'heber-springs', 'US', 1, 35.4914700000, -92.0312600000), (1118231, 1001434, 'Heber-Overgaard', NULL, 'heber-overgaard', 'US', 1, 34.4141400000, -110.5695600000), (1118232, 1001419, 'Hebron', NULL, 'hebron', 'US', 1, 39.0658900000, -84.7010600000), (1118233, 1001401, 'Hebron', NULL, 'hebron', 'US', 1, 38.4201200000, -75.6877100000), (1118234, 1001435, 'Hebron', NULL, 'hebron', 'US', 1, 41.6578800000, -72.3659200000), (1118235, 1001440, 'Hebron', NULL, 'hebron', 'US', 1, 41.3186500000, -87.2003100000), (1118236, 1001425, 'Hebron', NULL, 'hebron', 'US', 1, 42.4716900000, -88.4323200000), (1118237, 1001453, 'Hebron', NULL, 'hebron', 'US', 1, 44.1981300000, -70.4064500000), (1118238, 1001408, 'Hebron', NULL, 'hebron', 'US', 1, 40.1663900000, -97.5858800000), (1118239, 1001422, 'Hebron', NULL, 'hebron', 'US', 1, 40.3389800000, -76.3994000000), (1118240, 1001419, 'Hebron Estates', NULL, 'hebron-estates', 'US', 1, 38.0495100000, -85.6660700000), (1118241, 1001420, 'Hector', NULL, 'hector', 'US', 1, 44.7438500000, -94.7155500000), (1118242, 1001407, 'Hedwig Village', NULL, 'hedwig-village', 'US', 1, 29.7774500000, -95.5171600000), (1118243, 1001456, 'Heflin', NULL, 'heflin', 'US', 1, 33.6489900000, -85.5874600000), (1118244, 1001407, 'Heidelberg', NULL, 'heidelberg', 'US', 1, 26.1970200000, -97.8802800000), (1118245, 1001422, 'Heidelberg', NULL, 'heidelberg', 'US', 1, 40.3922900000, -80.0908900000), (1118246, 1001456, 'Helena', NULL, 'helena', 'US', 1, 33.2962200000, -86.8436000000), (1118247, 1001444, 'Helena', NULL, 'helena', 'US', 1, 34.5295500000, -90.5917700000), (1118248, 1001455, 'Helena', NULL, 'helena', 'US', 1, 32.0737900000, -82.9145900000), (1118249, 1001430, 'Helena', NULL, 'helena', 'US', 1, 30.4946400000, -88.4958500000), (1118250, 1001421, 'Helena', NULL, 'helena', 'US', 1, 36.5461400000, -98.2700700000), (1118251, 1001446, 'Helena', NULL, 'helena', 'US', 1, 46.5927100000, -112.0361100000), (1118252, 1001446, 'Helena Valley Northeast', NULL, 'helena-valley-northeast', 'US', 1, 46.6988200000, -111.9520700000), (1118253, 1001446, 'Helena Valley Northwest', NULL, 'helena-valley-northwest', 'US', 1, 46.7289400000, -112.0627500000), (1118254, 1001446, 'Helena Valley Southeast', NULL, 'helena-valley-southeast', 'US', 1, 46.6152700000, -111.9215600000), (1118255, 1001446, 'Helena Valley West Central', NULL, 'helena-valley-west-central', 'US', 1, 46.6629100000, -112.0604400000), (1118256, 1001446, 'Helena West Side', NULL, 'helena-west-side', 'US', 1, 46.5967200000, -112.1130400000), (1118257, 1001444, 'Helena-West Helena', NULL, 'helena-west-helena', 'US', 1, 34.5291000000, -90.5900000000), (1118258, 1001452, 'Hell''s Kitchen', NULL, 'hell-s-kitchen', 'US', 1, 40.7649600000, -73.9909000000), (1118259, 1001422, 'Hellertown', NULL, 'hellertown', 'US', 1, 40.5795400000, -75.3407300000), (1118260, 1001417, 'Helmetta', NULL, 'helmetta', 'US', 1, 40.3767700000, -74.4246000000), (1118261, 1001407, 'Helotes', NULL, 'helotes', 'US', 1, 29.5780100000, -98.6897500000), (1118262, 1001414, 'Helper', NULL, 'helper', 'US', 1, 39.6841300000, -110.8546100000), (1118263, 1001447, 'Hemby Bridge', NULL, 'hemby-bridge', 'US', 1, 35.1037100000, -80.6279800000), (1118264, 1001416, 'Hemet', NULL, 'hemet', 'US', 1, 33.7476100000, -116.9730700000), (1118265, 1001426, 'Hemlock', NULL, 'hemlock', 'US', 1, 43.4147500000, -84.2305400000), (1118266, 1001422, 'Hemlock Farms', NULL, 'hemlock-farms', 'US', 1, 41.3267600000, -75.0365600000), (1118267, 1001407, 'Hemphill', NULL, 'hemphill', 'US', 1, 31.3407400000, -93.8468500000), (1118268, 1001407, 'Hemphill County', NULL, 'hemphill-county', 'US', 1, 35.8375700000, -100.2704700000), (1118269, 1001407, 'Hempstead', NULL, 'hempstead', 'US', 1, 30.0974400000, -96.0782900000), (1118270, 1001452, 'Hempstead', NULL, 'hempstead', 'US', 1, 40.7062100000, -73.6187400000), (1118271, 1001444, 'Hempstead County', NULL, 'hempstead-county', 'US', 1, 33.7353000000, -93.6684400000), (1118272, 1001456, 'Henagar', NULL, 'henagar', 'US', 1, 34.6350800000, -85.7671900000), (1118273, 1001407, 'Henderson', NULL, 'henderson', 'US', 1, 32.1532200000, -94.7993800000), (1118274, 1001419, 'Henderson', NULL, 'henderson', 'US', 1, 37.8361500000, -87.5900100000), (1118275, 1001457, 'Henderson', NULL, 'henderson', 'US', 1, 30.3132500000, -91.7903900000), (1118276, 1001447, 'Henderson', NULL, 'henderson', 'US', 1, 36.3295900000, -78.3991600000), (1118277, 1001454, 'Henderson', NULL, 'henderson', 'US', 1, 35.4392400000, -88.6414400000), (1118278, 1001458, 'Henderson', NULL, 'henderson', 'US', 1, 36.0397000000, -114.9819400000), (1118279, 1001455, 'Henderson', NULL, 'henderson', 'US', 1, 32.0081300000, -81.2588700000), (1118280, 1001419, 'Henderson County', NULL, 'henderson-county', 'US', 1, 37.7959000000, -87.5731600000), (1118281, 1001447, 'Henderson County', NULL, 'henderson-county', 'US', 1, 35.3362900000, -82.4799100000), (1118282, 1001454, 'Henderson County', NULL, 'henderson-county', 'US', 1, 35.6542600000, -88.3879900000), (1118283, 1001407, 'Henderson County', NULL, 'henderson-county', 'US', 1, 32.2118900000, -95.8535600000), (1118284, 1001425, 'Henderson County', NULL, 'henderson-county', 'US', 1, 40.8181200000, -90.9251100000), (1118285, 1001447, 'Hendersonville', NULL, 'hendersonville', 'US', 1, 35.3187300000, -82.4609500000), (1118286, 1001454, 'Hendersonville', NULL, 'hendersonville', 'US', 1, 36.3047700000, -86.6200000000), (1118287, 1001440, 'Hendricks County', NULL, 'hendricks-county', 'US', 1, 39.7695200000, -86.5099800000), (1118288, 1001419, 'Hendron', NULL, 'hendron', 'US', 1, 37.0395000000, -88.6292200000), (1118289, 1001436, 'Hendry County', NULL, 'hendry-county', 'US', 1, 26.5534900000, -81.1659000000), (1118290, 1001425, 'Hennepin', NULL, 'hennepin', 'US', 1, 41.2542000000, -89.3423100000), (1118291, 1001420, 'Hennepin County', NULL, 'hennepin-county', 'US', 1, 45.0045800000, -93.4768800000), (1118292, 1001421, 'Hennessey', NULL, 'hennessey', 'US', 1, 36.1092000000, -97.8986700000), (1118293, 1001404, 'Henniker', NULL, 'henniker', 'US', 1, 43.1798000000, -71.8223000000), (1118294, 1001427, 'Henrico County', NULL, 'henrico-county', 'US', 1, 37.4577100000, -77.2964600000), (1118295, 1001407, 'Henrietta', NULL, 'henrietta', 'US', 1, 33.8173200000, -98.1953200000), (1118296, 1001425, 'Henry', NULL, 'henry', 'US', 1, 41.1114200000, -89.3564800000), (1118297, 1001456, 'Henry County', NULL, 'henry-county', 'US', 1, 31.5146900000, -85.2414100000), (1118298, 1001455, 'Henry County', NULL, 'henry-county', 'US', 1, 33.4530000000, -84.1542000000), (1118299, 1001440, 'Henry County', NULL, 'henry-county', 'US', 1, 39.9310400000, -85.3964400000), (1118300, 1001419, 'Henry County', NULL, 'henry-county', 'US', 1, 38.4484700000, -85.1189300000), (1118301, 1001451, 'Henry County', NULL, 'henry-county', 'US', 1, 38.3851600000, -93.7927500000), (1118302, 1001454, 'Henry County', NULL, 'henry-county', 'US', 1, 36.3318300000, -88.3012200000), (1118303, 1001427, 'Henry County', NULL, 'henry-county', 'US', 1, 36.6847000000, -79.9815200000), (1118304, 1001459, 'Henry County', NULL, 'henry-county', 'US', 1, 40.9879400000, -91.5445200000), (1118305, 1001425, 'Henry County', NULL, 'henry-county', 'US', 1, 41.3531300000, -90.1314200000), (1118306, 1001427, 'Henry Fork', NULL, 'henry-fork', 'US', 1, 36.9662500000, -79.8703100000), (1118307, 1001421, 'Henryetta', NULL, 'henryetta', 'US', 1, 35.4398300000, -95.9819400000), (1118308, 1001440, 'Henryville', NULL, 'henryville', 'US', 1, 38.5417300000, -85.7677400000), (1118309, 1001455, 'Hephzibah', NULL, 'hephzibah', 'US', 1, 33.3140300000, -82.0967900000), (1118310, 1001415, 'Heppner', NULL, 'heppner', 'US', 1, 45.3531800000, -119.5578000000), (1118311, 1001416, 'Herald', NULL, 'herald', 'US', 1, 38.2957500000, -121.2443900000), (1118312, 1001401, 'Herald Harbor', NULL, 'herald-harbor', 'US', 1, 39.0537200000, -76.5691300000), (1118313, 1001451, 'Herculaneum', NULL, 'herculaneum', 'US', 1, 38.2683900000, -90.3801200000), (1118314, 1001416, 'Hercules', NULL, 'hercules', 'US', 1, 38.0171400000, -122.2885800000), (1118315, 1001407, 'Hereford', NULL, 'hereford', 'US', 1, 34.8152100000, -102.3993200000), (1118316, 1001406, 'Herington', NULL, 'herington', 'US', 1, 38.6711200000, -96.9425100000), (1118317, 1001419, 'Heritage Creek', NULL, 'heritage-creek', 'US', 1, 38.1236800000, -85.7196800000), (1118318, 1001452, 'Heritage Hills', NULL, 'heritage-hills', 'US', 1, 41.3395400000, -73.6973500000), (1118319, 1001425, 'Heritage Lake', NULL, 'heritage-lake', 'US', 1, 40.5474500000, -89.3258100000), (1118320, 1001440, 'Heritage Lake', NULL, 'heritage-lake', 'US', 1, 39.7277900000, -86.7102200000), (1118321, 1001436, 'Heritage Pines', NULL, 'heritage-pines', 'US', 1, 28.4252200000, -82.6211100000), (1118322, 1001435, 'Heritage Village', NULL, 'heritage-village', 'US', 1, 41.4856500000, -73.2378900000), (1118323, 1001452, 'Herkimer', NULL, 'herkimer', 'US', 1, 43.0256300000, -74.9859900000), (1118324, 1001452, 'Herkimer County', NULL, 'herkimer-county', 'US', 1, 43.4197000000, -74.9625000000), (1118325, 1001451, 'Hermann', NULL, 'hermann', 'US', 1, 38.7042100000, -91.4373800000), (1118326, 1001420, 'Hermantown', NULL, 'hermantown', 'US', 1, 46.8068900000, -92.2382500000), (1118327, 1001415, 'Hermiston', NULL, 'hermiston', 'US', 1, 45.8404100000, -119.2894600000), (1118328, 1001451, 'Hermitage', NULL, 'hermitage', 'US', 1, 37.9414200000, -93.3163100000), (1118329, 1001422, 'Hermitage', NULL, 'hermitage', 'US', 1, 41.2333900000, -80.4486800000), (1118330, 1001453, 'Hermon', NULL, 'hermon', 'US', 1, 44.8100700000, -68.9133700000), (1118331, 1001416, 'Hermosa Beach', NULL, 'hermosa-beach', 'US', 1, 33.8622400000, -118.3995200000), (1118332, 1001436, 'Hernando', NULL, 'hernando', 'US', 1, 28.8999800000, -82.3745400000), (1118333, 1001430, 'Hernando', NULL, 'hernando', 'US', 1, 34.8239900000, -89.9937000000), (1118334, 1001436, 'Hernando Beach', NULL, 'hernando-beach', 'US', 1, 28.4694400000, -82.6592700000), (1118335, 1001436, 'Hernando County', NULL, 'hernando-county', 'US', 1, 28.5561700000, -82.4684900000), (1118336, 1001427, 'Herndon', NULL, 'herndon', 'US', 1, 38.9695500000, -77.3861000000), (1118337, 1001452, 'Herricks', NULL, 'herricks', 'US', 1, 40.7553800000, -73.6668000000), (1118338, 1001414, 'Herriman', NULL, 'herriman', 'US', 1, 40.5141100000, -112.0329900000), (1118339, 1001425, 'Herrin', NULL, 'herrin', 'US', 1, 37.8031100000, -89.0275700000), (1118340, 1001425, 'Herscher', NULL, 'herscher', 'US', 1, 41.0492000000, -88.0978300000), (1118341, 1001422, 'Hershey', NULL, 'hershey', 'US', 1, 40.2859200000, -76.6502500000), (1118342, 1001447, 'Hertford', NULL, 'hertford', 'US', 1, 36.1901600000, -76.4660500000), (1118343, 1001447, 'Hertford County', NULL, 'hertford-county', 'US', 1, 36.3586300000, -76.9806600000), (1118344, 1001416, 'Hesperia', NULL, 'hesperia', 'US', 1, 34.4263900000, -117.3008800000), (1118345, 1001406, 'Hesston', NULL, 'hesston', 'US', 1, 38.1383400000, -97.4314300000), (1118346, 1001418, 'Hettinger', NULL, 'hettinger', 'US', 1, 46.0013900000, -102.6368200000), (1118347, 1001418, 'Hettinger County', NULL, 'hettinger-county', 'US', 1, 46.4325300000, -102.4603600000), (1118348, 1001407, 'Hewitt', NULL, 'hewitt', 'US', 1, 31.4623900000, -97.1958400000), (1118349, 1001452, 'Hewlett', NULL, 'hewlett', 'US', 1, 40.6431600000, -73.6956900000), (1118350, 1001452, 'Hewlett Harbor', NULL, 'hewlett-harbor', 'US', 1, 40.6362100000, -73.6815200000), (1118351, 1001460, 'Heyburn', NULL, 'heyburn', 'US', 1, 42.5585200000, -113.7639000000), (1118352, 1001425, 'Heyworth', NULL, 'heyworth', 'US', 1, 40.3133700000, -88.9736900000), (1118353, 1001411, 'He‘eia', NULL, 'he-eia', 'US', 1, 21.4305400000, -157.8161100000), (1118354, 1001436, 'Hialeah', NULL, 'hialeah', 'US', 1, 25.8576000000, -80.2781100000), (1118355, 1001436, 'Hialeah Gardens', NULL, 'hialeah-gardens', 'US', 1, 25.8651000000, -80.3245000000), (1118356, 1001455, 'Hiawassee', NULL, 'hiawassee', 'US', 1, 34.9492600000, -83.7573900000), (1118357, 1001406, 'Hiawatha', NULL, 'hiawatha', 'US', 1, 39.8525000000, -95.5358200000), (1118358, 1001459, 'Hiawatha', NULL, 'hiawatha', 'US', 1, 42.0358300000, -91.6821200000), (1118359, 1001420, 'Hibbing', NULL, 'hibbing', 'US', 1, 47.4271500000, -92.9376900000), (1118360, 1001411, 'Hickam Field', NULL, 'hickam-field', 'US', 1, 21.3396700000, -157.9601800000), (1118361, 1001419, 'Hickman', NULL, 'hickman', 'US', 1, 36.5711700000, -89.1861800000), (1118362, 1001408, 'Hickman', NULL, 'hickman', 'US', 1, 40.6200000000, -96.6291800000), (1118363, 1001419, 'Hickman County', NULL, 'hickman-county', 'US', 1, 36.6781700000, -88.9762200000), (1118364, 1001454, 'Hickman County', NULL, 'hickman-county', 'US', 1, 35.8032500000, -87.4733100000), (1118365, 1001447, 'Hickory', NULL, 'hickory', 'US', 1, 35.7331900000, -81.3412000000), (1118366, 1001451, 'Hickory County', NULL, 'hickory-county', 'US', 1, 37.9407900000, -93.3207200000), (1118367, 1001407, 'Hickory Creek', NULL, 'hickory-creek', 'US', 1, 33.1223400000, -97.0430600000), (1118368, 1001430, 'Hickory Hills', NULL, 'hickory-hills', 'US', 1, 30.4568700000, -88.6391900000), (1118369, 1001425, 'Hickory Hills', NULL, 'hickory-hills', 'US', 1, 41.7255900000, -87.8250600000), (1118370, 1001454, 'Hickory Withe', NULL, 'hickory-withe', 'US', 1, 35.2439800000, -89.5886900000), (1118371, 1001452, 'Hicksville', NULL, 'hicksville', 'US', 1, 40.7684300000, -73.5251300000), (1118372, 1001407, 'Hico', NULL, 'hico', 'US', 1, 31.9829300000, -98.0336500000), (1118373, 1001407, 'Hidalgo', NULL, 'hidalgo', 'US', 1, 26.1003500000, -98.2630700000), (1118374, 1001407, 'Hidalgo County', NULL, 'hidalgo-county', 'US', 1, 26.3967200000, -98.1810700000), (1118375, 1001423, 'Hidalgo County', NULL, 'hidalgo-county', 'US', 1, 31.9141600000, -108.7148200000), (1118376, 1001416, 'Hidden Hills', NULL, 'hidden-hills', 'US', 1, 34.1602800000, -118.6523100000), (1118377, 1001416, 'Hidden Meadows', NULL, 'hidden-meadows', 'US', 1, 33.2253100000, -117.1125300000), (1118378, 1001460, 'Hidden Spring', NULL, 'hidden-spring', 'US', 1, 43.7221600000, -116.2509300000), (1118379, 1001440, 'Hidden Valley', NULL, 'hidden-valley', 'US', 1, 39.1622800000, -84.8430100000), (1118380, 1001416, 'Hidden Valley Lake', NULL, 'hidden-valley-lake', 'US', 1, 38.8079600000, -122.5583200000), (1118381, 1001430, 'Hide-A-Way Lake', NULL, 'hide-a-way-lake', 'US', 1, 30.5649200000, -89.6402000000), (1118382, 1001407, 'Hideaway', NULL, 'hideaway', 'US', 1, 32.4904200000, -95.4574600000), (1118383, 1001435, 'Higganum', NULL, 'higganum', 'US', 1, 41.4970400000, -72.5570300000), (1118384, 1001451, 'Higginsville', NULL, 'higginsville', 'US', 1, 39.0725100000, -93.7171600000), (1118385, 1001417, 'High Bridge', NULL, 'high-bridge', 'US', 1, 40.6670500000, -74.8957200000), (1118386, 1001447, 'High Point', NULL, 'high-point', 'US', 1, 35.9556900000, -80.0053200000), (1118387, 1001436, 'High Point', NULL, 'high-point', 'US', 1, 28.5468700000, -82.5246800000), (1118388, 1001451, 'High Ridge', NULL, 'high-ridge', 'US', 1, 38.4589400000, -90.5365100000), (1118389, 1001436, 'High Springs', NULL, 'high-springs', 'US', 1, 29.8269100000, -82.5967800000), (1118390, 1001401, 'Highfield-Cascade', NULL, 'highfield-cascade', 'US', 1, 39.7161600000, -77.4828200000), (1118391, 1001416, 'Highgrove', NULL, 'highgrove', 'US', 1, 34.0158500000, -117.3333800000), (1118392, 1001444, 'Highland', NULL, 'highland', 'US', 1, 36.2759000000, -91.5240300000), (1118393, 1001425, 'Highland', NULL, 'highland', 'US', 1, 38.7394900000, -89.6712000000), (1118394, 1001406, 'Highland', NULL, 'highland', 'US', 1, 39.8597200000, -95.2697000000), (1118395, 1001401, 'Highland', NULL, 'highland', 'US', 1, 39.1790000000, -76.9574800000), (1118396, 1001440, 'Highland', NULL, 'highland', 'US', 1, 41.5536500000, -87.4519800000), (1118397, 1001452, 'Highland', NULL, 'highland', 'US', 1, 41.7209300000, -73.9601400000), (1118398, 1001416, 'Highland', NULL, 'highland', 'US', 1, 34.1283400000, -117.2086500000), (1118399, 1001462, 'Highland', NULL, 'highland', 'US', 1, 46.1315200000, -119.1141800000), (1118400, 1001414, 'Highland', NULL, 'highland', 'US', 1, 40.4254800000, -111.7944700000), (1118401, 1001399, 'Highland Acres', NULL, 'highland-acres', 'US', 1, 39.1209500000, -75.5218700000), (1118402, 1001436, 'Highland Beach', NULL, 'highland-beach', 'US', 1, 26.3995200000, -80.0656000000), (1118403, 1001436, 'Highland City', NULL, 'highland-city', 'US', 1, 27.9653000000, -81.8778600000), (1118404, 1001427, 'Highland County', NULL, 'highland-county', 'US', 1, 38.3623300000, -79.5685400000), (1118405, 1001452, 'Highland Falls', NULL, 'highland-falls', 'US', 1, 41.3692600000, -73.9662500000), (1118406, 1001419, 'Highland Heights', NULL, 'highland-heights', 'US', 1, 39.0331200000, -84.4518900000), (1118407, 1001417, 'Highland Lake', NULL, 'highland-lake', 'US', 1, 41.1767600000, -74.4565500000), (1118408, 1001456, 'Highland Lakes', NULL, 'highland-lakes', 'US', 1, 33.3983800000, -86.6513000000), (1118409, 1001452, 'Highland Mills', NULL, 'highland-mills', 'US', 1, 41.3470400000, -74.1262600000), (1118410, 1001407, 'Highland Park', NULL, 'highland-park', 'US', 1, 32.8334600000, -96.7919500000), (1118411, 1001425, 'Highland Park', NULL, 'highland-park', 'US', 1, 42.1816900000, -87.8003400000), (1118412, 1001426, 'Highland Park', NULL, 'highland-park', 'US', 1, 42.4055900000, -83.0968700000), (1118413, 1001417, 'Highland Park', NULL, 'highland-park', 'US', 1, 40.4959400000, -74.4243200000), (1118414, 1001422, 'Highland Park', NULL, 'highland-park', 'US', 1, 40.6209100000, -77.5680500000), (1118415, 1001427, 'Highland Springs', NULL, 'highland-springs', 'US', 1, 37.5459800000, -77.3277600000), (1118416, 1001407, 'Highland Village', NULL, 'highland-village', 'US', 1, 33.0917900000, -97.0466800000), (1118417, 1001407, 'Highlands', NULL, 'highlands', 'US', 1, 29.8188400000, -95.0560400000), (1118418, 1001417, 'Highlands', NULL, 'highlands', 'US', 1, 40.4037200000, -73.9915300000), (1118419, 1001436, 'Highlands County', NULL, 'highlands-county', 'US', 1, 27.3434000000, -81.3409700000), (1118420, 1001450, 'Highlands Ranch', NULL, 'highlands-ranch', 'US', 1, 39.5538800000, -104.9694300000), (1118421, 1001416, 'Highlands-Baywood Park', NULL, 'highlands-baywood-park', 'US', 1, 37.5227200000, -122.3450600000), (1118422, 1001445, 'Highmore', NULL, 'highmore', 'US', 1, 44.5213700000, -99.4415000000), (1118423, 1001422, 'Highspire', NULL, 'highspire', 'US', 1, 40.2109200000, -76.7910800000), (1118424, 1001417, 'Hightstown', NULL, 'hightstown', 'US', 1, 40.2695500000, -74.5232100000), (1118425, 1001419, 'Highview', NULL, 'highview', 'US', 1, 38.1428500000, -85.6241300000), (1118426, 1001425, 'Highwood', NULL, 'highwood', 'US', 1, 42.1997500000, -87.8092300000), (1118427, 1001436, 'Hiland Park', NULL, 'hiland-park', 'US', 1, 30.2010300000, -85.6268700000), (1118428, 1001441, 'Hilbert', NULL, 'hilbert', 'US', 1, 44.1402700000, -88.1639900000), (1118429, 1001414, 'Hildale', NULL, 'hildale', 'US', 1, 37.0036000000, -112.9668800000), (1118430, 1001447, 'Hildebran', NULL, 'hildebran', 'US', 1, 35.7140200000, -81.4220300000), (1118431, 1001404, 'Hill', NULL, 'hill', 'US', 1, 43.5242400000, -71.7009100000), (1118432, 1001436, 'Hill ''n Dale', NULL, 'hill-n-dale', 'US', 1, 28.5197200000, -82.2992600000), (1118433, 1001414, 'Hill Air Force Base', NULL, 'hill-air-force-base', 'US', 1, 41.1111800000, -111.9771200000), (1118434, 1001406, 'Hill City', NULL, 'hill-city', 'US', 1, 39.3647300000, -99.8420600000), (1118435, 1001407, 'Hill Country Village', NULL, 'hill-country-village', 'US', 1, 29.5824500000, -98.4908500000), (1118436, 1001407, 'Hill County', NULL, 'hill-county', 'US', 1, 31.9906800000, -97.1324300000), (1118437, 1001446, 'Hill County', NULL, 'hill-county', 'US', 1, 48.6282300000, -110.1113100000), (1118438, 1001401, 'Hillandale', NULL, 'hillandale', 'US', 1, 39.0265000000, -76.9741400000), (1118439, 1001425, 'Hillcrest', NULL, 'hillcrest', 'US', 1, 41.9511400000, -89.0645400000), (1118440, 1001452, 'Hillcrest', NULL, 'hillcrest', 'US', 1, 41.1278700000, -74.0409700000), (1118441, 1001401, 'Hillcrest Heights', NULL, 'hillcrest-heights', 'US', 1, 38.8328900000, -76.9594200000), (1118442, 1001422, 'Hilldale', NULL, 'hilldale', 'US', 1, 41.2892500000, -75.8363100000), (1118443, 1001422, 'Hiller', NULL, 'hiller', 'US', 1, 40.0103500000, -79.9008800000), (1118444, 1001436, 'Hilliard', NULL, 'hilliard', 'US', 1, 30.6910700000, -81.9173300000), (1118445, 1001406, 'Hillsboro', NULL, 'hillsboro', 'US', 1, 38.3519600000, -97.2044700000), (1118446, 1001425, 'Hillsboro', NULL, 'hillsboro', 'US', 1, 39.1612800000, -89.4954000000), (1118447, 1001451, 'Hillsboro', NULL, 'hillsboro', 'US', 1, 38.2322800000, -90.5629000000), (1118448, 1001430, 'Hillsboro', NULL, 'hillsboro', 'US', 1, 32.4593100000, -89.5114600000), (1118449, 1001407, 'Hillsboro', NULL, 'hillsboro', 'US', 1, 32.0109900000, -97.1300100000), (1118450, 1001418, 'Hillsboro', NULL, 'hillsboro', 'US', 1, 47.4038700000, -97.0620300000), (1118451, 1001441, 'Hillsboro', NULL, 'hillsboro', 'US', 1, 43.6522000000, -90.3440200000), (1118452, 1001415, 'Hillsboro', NULL, 'hillsboro', 'US', 1, 45.5228900000, -122.9898300000), (1118453, 1001436, 'Hillsboro Beach', NULL, 'hillsboro-beach', 'US', 1, 26.2939700000, -80.0789300000), (1118454, 1001447, 'Hillsborough', NULL, 'hillsborough', 'US', 1, 36.0754200000, -79.0997300000), (1118455, 1001416, 'Hillsborough', NULL, 'hillsborough', 'US', 1, 37.5741000000, -122.3794200000), (1118456, 1001404, 'Hillsborough', NULL, 'hillsborough', 'US', 1, 43.1141000000, -71.8992000000), (1118457, 1001436, 'Hillsborough County', NULL, 'hillsborough-county', 'US', 1, 27.9062300000, -82.3469200000), (1118458, 1001404, 'Hillsborough County', NULL, 'hillsborough-county', 'US', 1, 42.9153100000, -71.7160100000), (1118459, 1001451, 'Hillsdale', NULL, 'hillsdale', 'US', 1, 38.6833800000, -90.2840000000), (1118460, 1001426, 'Hillsdale', NULL, 'hillsdale', 'US', 1, 41.9200500000, -84.6305100000), (1118461, 1001417, 'Hillsdale', NULL, 'hillsdale', 'US', 1, 41.0026000000, -74.0404200000), (1118462, 1001426, 'Hillsdale County', NULL, 'hillsdale-county', 'US', 1, 41.8877700000, -84.5929300000), (1118463, 1001425, 'Hillside', NULL, 'hillside', 'US', 1, 41.8778100000, -87.9028400000), (1118464, 1001417, 'Hillside', NULL, 'hillside', 'US', 1, 40.7012100000, -74.2301500000), (1118465, 1001452, 'Hillside', NULL, 'hillside', 'US', 1, 40.7078800000, -73.7868000000), (1118466, 1001452, 'Hillside Lake', NULL, 'hillside-lake', 'US', 1, 41.6148200000, -73.7981900000), (1118467, 1001401, 'Hillsmere Shores', NULL, 'hillsmere-shores', 'US', 1, 38.9401100000, -76.4949600000), (1118468, 1001427, 'Hillsville', NULL, 'hillsville', 'US', 1, 36.7626300000, -80.7347900000), (1118469, 1001407, 'Hilltop Lakes', NULL, 'hilltop-lakes', 'US', 1, 31.0793500000, -96.2038500000), (1118470, 1001419, 'Hillview', NULL, 'hillview', 'US', 1, 38.0697900000, -85.6855100000), (1118471, 1001416, 'Hilmar-Irwin', NULL, 'hilmar-irwin', 'US', 1, 37.4045400000, -120.8504200000), (1118472, 1001411, 'Hilo', NULL, 'hilo', 'US', 1, 19.7299100000, -155.0907300000), (1118473, 1001452, 'Hilton', NULL, 'hilton', 'US', 1, 43.2881200000, -77.7933400000), (1118474, 1001443, 'Hilton Head', NULL, 'hilton-head', 'US', 1, 32.2163200000, -80.7526100000), (1118475, 1001443, 'Hilton Head Island', NULL, 'hilton-head-island', 'US', 1, 32.1938200000, -80.7381600000), (1118476, 1001425, 'Hinckley', NULL, 'hinckley', 'US', 1, 41.7689200000, -88.6409100000), (1118477, 1001420, 'Hinckley', NULL, 'hinckley', 'US', 1, 46.0113400000, -92.9443700000), (1118478, 1001419, 'Hindman', NULL, 'hindman', 'US', 1, 37.3359300000, -82.9804400000), (1118479, 1001430, 'Hinds County', NULL, 'hinds-county', 'US', 1, 32.2667000000, -90.4428200000), (1118480, 1001415, 'Hines', NULL, 'hines', 'US', 1, 43.5640400000, -119.0810500000), (1118481, 1001409, 'Hinesburg', NULL, 'hinesburg', 'US', 1, 44.3292200000, -73.1106800000), (1118482, 1001455, 'Hinesville', NULL, 'hinesville', 'US', 1, 31.8468800000, -81.5959500000), (1118483, 1001433, 'Hingham', NULL, 'hingham', 'US', 1, 42.2417700000, -70.8897700000), (1118484, 1001433, 'Hinsdale', NULL, 'hinsdale', 'US', 1, 42.4387000000, -73.1253800000), (1118485, 1001425, 'Hinsdale', NULL, 'hinsdale', 'US', 1, 41.8008600000, -87.9370100000), (1118486, 1001404, 'Hinsdale', NULL, 'hinsdale', 'US', 1, 42.7861900000, -72.4864800000), (1118487, 1001450, 'Hinsdale County', NULL, 'hinsdale-county', 'US', 1, 37.8213400000, -107.3003100000), (1118488, 1001421, 'Hinton', NULL, 'hinton', 'US', 1, 35.4714400000, -98.3556200000), (1118489, 1001429, 'Hinton', NULL, 'hinton', 'US', 1, 37.6740100000, -80.8892500000), (1118490, 1001455, 'Hiram', NULL, 'hiram', 'US', 1, 33.8756600000, -84.7621600000), (1118491, 1001453, 'Hiram', NULL, 'hiram', 'US', 1, 43.8786800000, -70.8034000000), (1118492, 1001407, 'Hitchcock', NULL, 'hitchcock', 'US', 1, 29.3482900000, -95.0160400000), (1118493, 1001408, 'Hitchcock County', NULL, 'hitchcock-county', 'US', 1, 40.1763500000, -101.0422700000), (1118494, 1001417, 'Ho-Ho-Kus', NULL, 'ho-ho-kus', 'US', 1, 40.9964900000, -74.1012500000), (1118495, 1001442, 'Hoback', NULL, 'hoback', 'US', 1, 43.2818700000, -110.7838100000), (1118496, 1001421, 'Hobart', NULL, 'hobart', 'US', 1, 35.0295000000, -99.0931300000), (1118497, 1001440, 'Hobart', NULL, 'hobart', 'US', 1, 41.5322600000, -87.2550400000), (1118498, 1001462, 'Hobart', NULL, 'hobart', 'US', 1, 47.4217700000, -121.9728900000), (1118499, 1001441, 'Hobart', NULL, 'hobart', 'US', 1, 44.4992500000, -88.1498600000), (1118500, 1001423, 'Hobbs', NULL, 'hobbs', 'US', 1, 32.7026100000, -103.1360400000), (1118501, 1001436, 'Hobe Sound', NULL, 'hobe-sound', 'US', 1, 27.0595000000, -80.1364300000), (1118502, 1001417, 'Hoboken', NULL, 'hoboken', 'US', 1, 40.7439900000, -74.0323600000), (1118503, 1001399, 'Hockessin', NULL, 'hockessin', 'US', 1, 39.7876100000, -75.6966000000), (1118504, 1001462, 'Hockinson', NULL, 'hockinson', 'US', 1, 45.7378900000, -122.4870400000), (1118505, 1001407, 'Hockley County', NULL, 'hockley-county', 'US', 1, 33.6076400000, -102.3432000000), (1118506, 1001453, 'Hodgdon', NULL, 'hodgdon', 'US', 1, 46.0539400000, -67.8666800000), (1118507, 1001406, 'Hodgeman County', NULL, 'hodgeman-county', 'US', 1, 38.0874800000, -99.8979400000), (1118508, 1001419, 'Hodgenville', NULL, 'hodgenville', 'US', 1, 37.5739500000, -85.7399600000), (1118509, 1001425, 'Hodgkins', NULL, 'hodgkins', 'US', 1, 41.7689200000, -87.8578300000), (1118510, 1001425, 'Hoffman Estates', NULL, 'hoffman-estates', 'US', 1, 42.0428100000, -88.0798000000), (1118511, 1001455, 'Hogansville', NULL, 'hogansville', 'US', 1, 33.1731800000, -84.9149400000), (1118512, 1001454, 'Hohenwald', NULL, 'hohenwald', 'US', 1, 35.5478500000, -87.5519600000), (1118513, 1001406, 'Hoisington', NULL, 'hoisington', 'US', 1, 38.5180700000, -98.7781400000), (1118514, 1001447, 'Hoke County', NULL, 'hoke-county', 'US', 1, 35.0173600000, -79.2371100000), (1118515, 1001422, 'Hokendauqua', NULL, 'hokendauqua', 'US', 1, 40.6620400000, -75.4910200000), (1118516, 1001456, 'Hokes Bluff', NULL, 'hokes-bluff', 'US', 1, 33.9981500000, -85.8663600000), (1118517, 1001433, 'Holbrook', NULL, 'holbrook', 'US', 1, 42.1551000000, -71.0086600000), (1118518, 1001452, 'Holbrook', NULL, 'holbrook', 'US', 1, 40.8123200000, -73.0784400000), (1118519, 1001434, 'Holbrook', NULL, 'holbrook', 'US', 1, 34.9022500000, -110.1581800000), (1118520, 1001452, 'Holcomb', NULL, 'holcomb', 'US', 1, 42.9022900000, -77.4197100000), (1118521, 1001406, 'Holcomb', NULL, 'holcomb', 'US', 1, 37.9861400000, -100.9893300000), (1118522, 1001451, 'Holden', NULL, 'holden', 'US', 1, 38.7141800000, -93.9913300000), (1118523, 1001433, 'Holden', NULL, 'holden', 'US', 1, 42.3517600000, -71.8634100000), (1118524, 1001453, 'Holden', NULL, 'holden', 'US', 1, 44.7528500000, -68.6789200000), (1118525, 1001436, 'Holden Heights', NULL, 'holden-heights', 'US', 1, 28.4966700000, -81.3878500000), (1118526, 1001421, 'Holdenville', NULL, 'holdenville', 'US', 1, 35.0803600000, -96.3991800000), (1118527, 1001404, 'Holderness', NULL, 'holderness', 'US', 1, 43.7320200000, -71.5884100000), (1118528, 1001408, 'Holdrege', NULL, 'holdrege', 'US', 1, 40.4402900000, -99.3698200000), (1118529, 1001436, 'Holiday', NULL, 'holiday', 'US', 1, 28.1877900000, -82.7395500000), (1118530, 1001417, 'Holiday City South', NULL, 'holiday-city-south', 'US', 1, 39.9532400000, -74.2377800000), (1118531, 1001417, 'Holiday City-Berkeley', NULL, 'holiday-city-berkeley', 'US', 1, 39.9638000000, -74.2780300000), (1118532, 1001417, 'Holiday Heights', NULL, 'holiday-heights', 'US', 1, 39.9459500000, -74.2540300000), (1118533, 1001444, 'Holiday Island', NULL, 'holiday-island', 'US', 1, 36.4853500000, -93.7321400000), (1118534, 1001407, 'Holiday Lakes', NULL, 'holiday-lakes', 'US', 1, 29.2096900000, -95.5168900000), (1118535, 1001425, 'Holiday Shores', NULL, 'holiday-shores', 'US', 1, 38.9219900000, -89.9406600000), (1118536, 1001414, 'Holladay', NULL, 'holladay', 'US', 1, 40.6688400000, -111.8246600000), (1118537, 1001407, 'Holland', NULL, 'holland', 'US', 1, 30.8782400000, -97.4016700000); INSERT INTO `[[dbprefix]]t_city` VALUES (1118538, 1001433, 'Holland', NULL, 'holland', 'US', 1, 42.0639800000, -72.1573000000), (1118539, 1001426, 'Holland', NULL, 'holland', 'US', 1, 42.7875200000, -86.1089300000), (1118540, 1001452, 'Holland', NULL, 'holland', 'US', 1, 42.6411700000, -78.5416900000), (1118541, 1001430, 'Hollandale', NULL, 'hollandale', 'US', 1, 33.1690100000, -90.8539900000), (1118542, 1001436, 'Holley', NULL, 'holley', 'US', 1, 30.4468600000, -86.9069100000), (1118543, 1001452, 'Holley', NULL, 'holley', 'US', 1, 43.2264500000, -78.0266800000), (1118544, 1001407, 'Holliday', NULL, 'holliday', 'US', 1, 33.8162100000, -98.6950600000), (1118545, 1001422, 'Hollidaysburg', NULL, 'hollidaysburg', 'US', 1, 40.4272900000, -78.3889000000), (1118546, 1001427, 'Hollins', NULL, 'hollins', 'US', 1, 37.3412500000, -79.9431000000), (1118547, 1001421, 'Hollis', NULL, 'hollis', 'US', 1, 34.6883900000, -99.9120500000), (1118548, 1001404, 'Hollis', NULL, 'hollis', 'US', 1, 42.7431400000, -71.5917400000), (1118549, 1001452, 'Hollis', NULL, 'hollis', 'US', 1, 40.7134400000, -73.7670800000), (1118550, 1001453, 'Hollis Center', NULL, 'hollis-center', 'US', 1, 43.6050800000, -70.5931100000), (1118551, 1001451, 'Hollister', NULL, 'hollister', 'US', 1, 36.6211700000, -93.2154600000), (1118552, 1001416, 'Hollister', NULL, 'hollister', 'US', 1, 36.8524500000, -121.4016000000), (1118553, 1001433, 'Holliston', NULL, 'holliston', 'US', 1, 42.2001000000, -71.4245000000), (1118554, 1001423, 'Holloman Air Force Base', NULL, 'holloman-air-force-base', 'US', 1, 32.8482700000, -106.0997700000), (1118555, 1001426, 'Holly', NULL, 'holly', 'US', 1, 42.7919700000, -83.6277300000), (1118556, 1001436, 'Holly Hill', NULL, 'holly-hill', 'US', 1, 29.2435900000, -81.0375600000), (1118557, 1001443, 'Holly Hill', NULL, 'holly-hill', 'US', 1, 33.3226600000, -80.4137000000), (1118558, 1001450, 'Holly Hills', NULL, 'holly-hills', 'US', 1, 39.6675700000, -104.9179700000), (1118559, 1001407, 'Holly Lake Ranch', NULL, 'holly-lake-ranch', 'US', 1, 32.7133600000, -95.1975600000), (1118560, 1001447, 'Holly Ridge', NULL, 'holly-ridge', 'US', 1, 34.4954400000, -77.5549700000), (1118561, 1001455, 'Holly Springs', NULL, 'holly-springs', 'US', 1, 34.1739900000, -84.5013200000), (1118562, 1001447, 'Holly Springs', NULL, 'holly-springs', 'US', 1, 35.6512700000, -78.8336200000), (1118563, 1001430, 'Holly Springs', NULL, 'holly-springs', 'US', 1, 34.7676000000, -89.4486900000), (1118564, 1001427, 'Hollymead', NULL, 'hollymead', 'US', 1, 38.1170800000, -78.4416800000), (1118565, 1001436, 'Hollywood', NULL, 'hollywood', 'US', 1, 26.0112000000, -80.1494900000), (1118566, 1001443, 'Hollywood', NULL, 'hollywood', 'US', 1, 32.7343400000, -80.2417700000), (1118567, 1001416, 'Hollywood', NULL, 'hollywood', 'US', 1, 34.0983400000, -118.3267400000), (1118568, 1001407, 'Hollywood Park', NULL, 'hollywood-park', 'US', 1, 29.6005000000, -98.4872400000), (1118569, 1001441, 'Holmen', NULL, 'holmen', 'US', 1, 43.9633000000, -91.2562500000), (1118570, 1001436, 'Holmes Beach', NULL, 'holmes-beach', 'US', 1, 27.4953200000, -82.7109300000), (1118571, 1001436, 'Holmes County', NULL, 'holmes-county', 'US', 1, 30.8678900000, -85.8141000000), (1118572, 1001430, 'Holmes County', NULL, 'holmes-county', 'US', 1, 33.1235100000, -90.0920500000), (1118573, 1001459, 'Holstein', NULL, 'holstein', 'US', 1, 42.4891500000, -95.5450000000), (1118574, 1001456, 'Holt', NULL, 'holt', 'US', 1, 33.2340100000, -87.4844500000), (1118575, 1001426, 'Holt', NULL, 'holt', 'US', 1, 42.6405900000, -84.5152500000), (1118576, 1001451, 'Holt County', NULL, 'holt-county', 'US', 1, 40.0944300000, -95.2155100000), (1118577, 1001408, 'Holt County', NULL, 'holt-county', 'US', 1, 42.4557100000, -98.7838400000), (1118578, 1001406, 'Holton', NULL, 'holton', 'US', 1, 39.4652700000, -95.7363700000), (1118579, 1001451, 'Holts Summit', NULL, 'holts-summit', 'US', 1, 38.6403200000, -92.1224100000), (1118580, 1001452, 'Holtsville', NULL, 'holtsville', 'US', 1, 40.8153800000, -73.0451100000), (1118581, 1001456, 'Holtville', NULL, 'holtville', 'US', 1, 32.6362400000, -86.3266400000), (1118582, 1001416, 'Holtville', NULL, 'holtville', 'US', 1, 32.8111600000, -115.3802600000), (1118583, 1001433, 'Holyoke', NULL, 'holyoke', 'US', 1, 42.2042600000, -72.6162000000), (1118584, 1001450, 'Holyoke', NULL, 'holyoke', 'US', 1, 40.5844400000, -102.3024100000), (1118585, 1001462, 'Home', NULL, 'home', 'US', 1, 47.2748200000, -122.7637500000), (1118586, 1001416, 'Home Garden', NULL, 'home-garden', 'US', 1, 36.3032800000, -119.6362400000), (1118587, 1001416, 'Home Gardens', NULL, 'home-gardens', 'US', 1, 33.8780700000, -117.5208800000), (1118588, 1001422, 'Homeacre-Lyndora', NULL, 'homeacre-lyndora', 'US', 1, 40.8720600000, -79.9206000000), (1118589, 1001460, 'Homedale', NULL, 'homedale', 'US', 1, 43.6176600000, -116.9337600000), (1118590, 1001416, 'Homeland', NULL, 'homeland', 'US', 1, 33.7430800000, -117.1092000000), (1118591, 1001443, 'Homeland Park', NULL, 'homeland-park', 'US', 1, 34.4706600000, -82.6706900000), (1118592, 1001455, 'Homer', NULL, 'homer', 'US', 1, 34.3337200000, -83.4990500000), (1118593, 1001457, 'Homer', NULL, 'homer', 'US', 1, 32.7919200000, -93.0550300000), (1118594, 1001425, 'Homer', NULL, 'homer', 'US', 1, 40.0347600000, -87.9580900000), (1118595, 1001426, 'Homer', NULL, 'homer', 'US', 1, 42.1458800000, -84.8088600000), (1118596, 1001452, 'Homer', NULL, 'homer', 'US', 1, 42.6370100000, -76.1788200000), (1118597, 1001400, 'Homer', NULL, 'homer', 'US', 1, 59.6425000000, -151.5494000000), (1118598, 1001422, 'Homer City', NULL, 'homer-city', 'US', 1, 40.5434000000, -79.1622600000), (1118599, 1001425, 'Homer Glen', NULL, 'homer-glen', 'US', 1, 41.6000300000, -87.9381100000), (1118600, 1001455, 'Homerville', NULL, 'homerville', 'US', 1, 31.0366000000, -82.7470800000), (1118601, 1001436, 'Homestead', NULL, 'homestead', 'US', 1, 25.4687200000, -80.4775600000), (1118602, 1001422, 'Homestead', NULL, 'homestead', 'US', 1, 40.4059000000, -79.9119900000), (1118603, 1001407, 'Homestead Meadows North', NULL, 'homestead-meadows-north', 'US', 1, 31.8496300000, -106.1728500000), (1118604, 1001407, 'Homestead Meadows South', NULL, 'homestead-meadows-south', 'US', 1, 31.8109700000, -106.1642700000), (1118605, 1001425, 'Hometown', NULL, 'hometown', 'US', 1, 41.7344800000, -87.7314400000), (1118606, 1001422, 'Hometown', NULL, 'hometown', 'US', 1, 40.8237000000, -75.9802000000), (1118607, 1001456, 'Homewood', NULL, 'homewood', 'US', 1, 33.4717700000, -86.8008200000), (1118608, 1001425, 'Homewood', NULL, 'homewood', 'US', 1, 41.5572600000, -87.6656000000), (1118609, 1001421, 'Hominy', NULL, 'hominy', 'US', 1, 36.4142400000, -96.3953000000), (1118610, 1001436, 'Homosassa', NULL, 'homosassa', 'US', 1, 28.7813700000, -82.6151000000), (1118611, 1001436, 'Homosassa Springs', NULL, 'homosassa-springs', 'US', 1, 28.8035900000, -82.5759300000), (1118612, 1001427, 'Honaker', NULL, 'honaker', 'US', 1, 37.0162200000, -81.9742900000), (1118613, 1001411, 'Honalo', NULL, 'honalo', 'US', 1, 19.5463900000, -155.9319400000), (1118614, 1001411, 'Honaunau-Napoopoo', NULL, 'honaunau-napoopoo', 'US', 1, 19.4562700000, -155.8646600000), (1118615, 1001407, 'Hondo', NULL, 'hondo', 'US', 1, 29.3474600000, -99.1414200000), (1118616, 1001443, 'Honea Path', NULL, 'honea-path', 'US', 1, 34.4465000000, -82.3915100000), (1118617, 1001452, 'Honeoye Falls', NULL, 'honeoye-falls', 'US', 1, 42.9522900000, -77.5902800000), (1118618, 1001422, 'Honesdale', NULL, 'honesdale', 'US', 1, 41.5767600000, -75.2587900000), (1118619, 1001422, 'Honey Brook', NULL, 'honey-brook', 'US', 1, 40.0942700000, -75.9113300000), (1118620, 1001407, 'Honey Grove', NULL, 'honey-grove', 'US', 1, 33.5834400000, -95.9099700000), (1118621, 1001414, 'Honeyville', NULL, 'honeyville', 'US', 1, 41.6385400000, -112.0793900000), (1118622, 1001411, 'Honoka‘a', NULL, 'honoka-a', 'US', 1, 20.0793100000, -155.4669100000), (1118623, 1001411, 'Honolulu', NULL, 'honolulu', 'US', 1, 21.3069400000, -157.8583300000), (1118624, 1001411, 'Honolulu County', NULL, 'honolulu-county', 'US', 1, 21.4554300000, -157.9613800000), (1118625, 1001407, 'Hood County', NULL, 'hood-county', 'US', 1, 32.4299300000, -97.8322700000), (1118626, 1001415, 'Hood River', NULL, 'hood-river', 'US', 1, 45.7054000000, -121.5214600000), (1118627, 1001415, 'Hood River County', NULL, 'hood-river-county', 'US', 1, 45.5191100000, -121.6511100000), (1118628, 1001421, 'Hooker', NULL, 'hooker', 'US', 1, 36.8600300000, -101.2135000000), (1118629, 1001408, 'Hooker County', NULL, 'hooker-county', 'US', 1, 41.9159100000, -101.1353300000), (1118630, 1001407, 'Hooks', NULL, 'hooks', 'US', 1, 33.4662300000, -94.2885300000), (1118631, 1001404, 'Hooksett', NULL, 'hooksett', 'US', 1, 43.0967500000, -71.4650700000), (1118632, 1001400, 'Hoonah-Angoon Census Area', NULL, 'hoonah-angoon-census-area', 'US', 1, 57.9480700000, -134.9415300000), (1118633, 1001414, 'Hooper', NULL, 'hooper', 'US', 1, 41.1638300000, -112.1224400000), (1118634, 1001400, 'Hooper Bay', NULL, 'hooper-bay', 'US', 1, 61.5311100000, -166.0966700000), (1118635, 1001447, 'Hoopers Creek', NULL, 'hoopers-creek', 'US', 1, 35.4390000000, -82.4667900000), (1118636, 1001425, 'Hoopeston', NULL, 'hoopeston', 'US', 1, 40.4672600000, -87.6683600000), (1118637, 1001452, 'Hoosick Falls', NULL, 'hoosick-falls', 'US', 1, 42.9011900000, -73.3515000000), (1118638, 1001456, 'Hoover', NULL, 'hoover', 'US', 1, 33.4053900000, -86.8113800000), (1118639, 1001429, 'Hooverson Heights', NULL, 'hooverson-heights', 'US', 1, 40.3247900000, -80.5775700000), (1118640, 1001417, 'Hopatcong', NULL, 'hopatcong', 'US', 1, 40.9328800000, -74.6593300000), (1118641, 1001417, 'Hopatcong Hills', NULL, 'hopatcong-hills', 'US', 1, 40.9439900000, -74.6707200000), (1118642, 1001444, 'Hope', NULL, 'hope', 'US', 1, 33.6670600000, -93.5915700000), (1118643, 1001440, 'Hope', NULL, 'hope', 'US', 1, 39.3039400000, -85.7713700000), (1118644, 1001453, 'Hope', NULL, 'hope', 'US', 1, 44.2650800000, -69.1589300000), (1118645, 1001447, 'Hope Mills', NULL, 'hope-mills', 'US', 1, 34.9704400000, -78.9453100000), (1118646, 1001461, 'Hope Valley', NULL, 'hope-valley', 'US', 1, 41.5076000000, -71.7161800000), (1118647, 1001433, 'Hopedale', NULL, 'hopedale', 'US', 1, 42.1306500000, -71.5411700000), (1118648, 1001454, 'Hopewell', NULL, 'hopewell', 'US', 1, 35.2347900000, -84.8880000000), (1118649, 1001427, 'Hopewell', NULL, 'hopewell', 'US', 1, 37.3043200000, -77.2872000000), (1118650, 1001417, 'Hopewell', NULL, 'hopewell', 'US', 1, 40.3892700000, -74.7618300000), (1118651, 1001443, 'Hopkins', NULL, 'hopkins', 'US', 1, 33.9043200000, -80.8770300000), (1118652, 1001420, 'Hopkins', NULL, 'hopkins', 'US', 1, 44.9249600000, -93.4627300000), (1118653, 1001419, 'Hopkins County', NULL, 'hopkins-county', 'US', 1, 37.3088200000, -87.5408400000), (1118654, 1001407, 'Hopkins County', NULL, 'hopkins-county', 'US', 1, 33.1495600000, -95.5639500000), (1118655, 1001419, 'Hopkinsville', NULL, 'hopkinsville', 'US', 1, 36.8656100000, -87.4911700000), (1118656, 1001433, 'Hopkinton', NULL, 'hopkinton', 'US', 1, 42.2287100000, -71.5225600000), (1118657, 1001404, 'Hopkinton', NULL, 'hopkinton', 'US', 1, 43.1914700000, -71.6753500000), (1118658, 1001461, 'Hopkinton', NULL, 'hopkinton', 'US', 1, 41.4612100000, -71.7775700000), (1118659, 1001422, 'Hopwood', NULL, 'hopwood', 'US', 1, 39.8770200000, -79.7019900000), (1118660, 1001462, 'Hoquiam', NULL, 'hoquiam', 'US', 1, 46.9809200000, -123.8893300000), (1118661, 1001418, 'Horace', NULL, 'horace', 'US', 1, 46.7588600000, -96.9037000000), (1118662, 1001444, 'Horatio', NULL, 'horatio', 'US', 1, 33.9384500000, -94.3571500000), (1118663, 1001441, 'Horicon', NULL, 'horicon', 'US', 1, 43.4513800000, -88.6312100000), (1118664, 1001407, 'Horizon City', NULL, 'horizon-city', 'US', 1, 31.6926100000, -106.2074800000), (1118665, 1001436, 'Horizon West', NULL, 'horizon-west', 'US', 1, 28.4338300000, -81.6227000000), (1118666, 1001430, 'Horn Lake', NULL, 'horn-lake', 'US', 1, 34.9553700000, -90.0348100000), (1118667, 1001452, 'Hornell', NULL, 'hornell', 'US', 1, 42.3278500000, -77.6611000000), (1118668, 1001407, 'Hornsby Bend', NULL, 'hornsby-bend', 'US', 1, 30.2474300000, -97.5833300000), (1118669, 1001443, 'Horry County', NULL, 'horry-county', 'US', 1, 33.9044800000, -78.9761500000), (1118670, 1001419, 'Horse Cave', NULL, 'horse-cave', 'US', 1, 37.1795000000, -85.9069200000), (1118671, 1001427, 'Horse Pasture', NULL, 'horse-pasture', 'US', 1, 36.6284700000, -79.9508700000), (1118672, 1001447, 'Horse Shoe', NULL, 'horse-shoe', 'US', 1, 35.3431700000, -82.5565100000), (1118673, 1001452, 'Horseheads', NULL, 'horseheads', 'US', 1, 42.1670200000, -76.8205100000), (1118674, 1001452, 'Horseheads North', NULL, 'horseheads-north', 'US', 1, 42.1927800000, -76.8078200000), (1118675, 1001407, 'Horseshoe Bay', NULL, 'horseshoe-bay', 'US', 1, 30.5442900000, -98.3739400000), (1118676, 1001444, 'Horseshoe Bend', NULL, 'horseshoe-bend', 'US', 1, 36.2292300000, -91.7643100000), (1118677, 1001422, 'Horsham', NULL, 'horsham', 'US', 1, 40.1784400000, -75.1285100000), (1118678, 1001406, 'Horton', NULL, 'horton', 'US', 1, 39.6605600000, -95.5263700000), (1118679, 1001441, 'Hortonville', NULL, 'hortonville', 'US', 1, 44.3347000000, -88.6381600000), (1118680, 1001455, 'Hoschton', NULL, 'hoschton', 'US', 1, 34.0965000000, -83.7612800000), (1118681, 1001444, 'Hot Spring County', NULL, 'hot-spring-county', 'US', 1, 34.3176300000, -92.9460100000), (1118682, 1001444, 'Hot Springs', NULL, 'hot-springs', 'US', 1, 34.5037000000, -93.0551800000), (1118683, 1001445, 'Hot Springs', NULL, 'hot-springs', 'US', 1, 43.4316500000, -103.4743600000), (1118684, 1001442, 'Hot Springs County', NULL, 'hot-springs-county', 'US', 1, 43.7189300000, -108.4421000000), (1118685, 1001444, 'Hot Springs National Park', NULL, 'hot-springs-national-park', 'US', 1, 34.5317000000, -93.0637700000), (1118686, 1001444, 'Hot Springs Village', NULL, 'hot-springs-village', 'US', 1, 34.6720400000, -92.9987900000), (1118687, 1001450, 'Hot Sulphur Springs', NULL, 'hot-sulphur-springs', 'US', 1, 40.0730400000, -106.1028000000), (1118688, 1001434, 'Houck', NULL, 'houck', 'US', 1, 35.2830800000, -109.2070400000), (1118689, 1001426, 'Houghton', NULL, 'houghton', 'US', 1, 47.1218700000, -88.5690100000), (1118690, 1001452, 'Houghton', NULL, 'houghton', 'US', 1, 42.4234000000, -78.1572300000), (1118691, 1001426, 'Houghton County', NULL, 'houghton-county', 'US', 1, 46.9915500000, -88.6520600000), (1118692, 1001426, 'Houghton Lake', NULL, 'houghton-lake', 'US', 1, 44.3147400000, -84.7647500000), (1118693, 1001453, 'Houlton', NULL, 'houlton', 'US', 1, 46.1261600000, -67.8403000000), (1118694, 1001457, 'Houma', NULL, 'houma', 'US', 1, 29.5957700000, -90.7195300000), (1118695, 1001433, 'Housatonic', NULL, 'housatonic', 'US', 1, 42.2542500000, -73.3662200000), (1118696, 1001422, 'Houserville', NULL, 'houserville', 'US', 1, 40.8239500000, -77.8288900000), (1118697, 1001451, 'Houston', NULL, 'houston', 'US', 1, 37.3261600000, -91.9559900000), (1118698, 1001430, 'Houston', NULL, 'houston', 'US', 1, 33.8984500000, -88.9992300000), (1118699, 1001407, 'Houston', NULL, 'houston', 'US', 1, 29.7632800000, -95.3632700000), (1118700, 1001422, 'Houston', NULL, 'houston', 'US', 1, 40.2464600000, -80.2114500000), (1118701, 1001400, 'Houston', NULL, 'houston', 'US', 1, 61.6302800000, -149.8180600000), (1118702, 1001456, 'Houston County', NULL, 'houston-county', 'US', 1, 31.1531800000, -85.3025200000), (1118703, 1001455, 'Houston County', NULL, 'houston-county', 'US', 1, 32.4590100000, -83.6662400000), (1118704, 1001454, 'Houston County', NULL, 'houston-county', 'US', 1, 36.2859700000, -87.7170400000), (1118705, 1001407, 'Houston County', NULL, 'houston-county', 'US', 1, 31.3177300000, -95.4226800000), (1118706, 1001420, 'Houston County', NULL, 'houston-county', 'US', 1, 43.6714400000, -91.4928300000), (1118707, 1001406, 'Howard', NULL, 'howard', 'US', 1, 37.4703100000, -96.2636100000), (1118708, 1001441, 'Howard', NULL, 'howard', 'US', 1, 44.5436000000, -88.0881600000), (1118709, 1001445, 'Howard', NULL, 'howard', 'US', 1, 44.0108100000, -97.5267400000), (1118710, 1001452, 'Howard Beach', NULL, 'howard-beach', 'US', 1, 40.6578800000, -73.8362500000), (1118711, 1001426, 'Howard City', NULL, 'howard-city', 'US', 1, 43.3955800000, -85.4678200000), (1118712, 1001444, 'Howard County', NULL, 'howard-county', 'US', 1, 34.0887400000, -93.9934900000), (1118713, 1001401, 'Howard County', NULL, 'howard-county', 'US', 1, 39.2507200000, -76.9311900000), (1118714, 1001451, 'Howard County', NULL, 'howard-county', 'US', 1, 39.1425000000, -92.6962700000), (1118715, 1001459, 'Howard County', NULL, 'howard-county', 'US', 1, 43.3567700000, -92.3172000000), (1118716, 1001440, 'Howard County', NULL, 'howard-county', 'US', 1, 40.4835900000, -86.1169300000), (1118717, 1001408, 'Howard County', NULL, 'howard-county', 'US', 1, 41.2200400000, -98.5170900000), (1118718, 1001407, 'Howard County', NULL, 'howard-county', 'US', 1, 32.3061700000, -101.4355100000), (1118719, 1001420, 'Howard Lake', NULL, 'howard-lake', 'US', 1, 45.0608000000, -94.0733100000), (1118720, 1001441, 'Howards Grove', NULL, 'howards-grove', 'US', 1, 43.8338800000, -87.8200900000), (1118721, 1001407, 'Howe', NULL, 'howe', 'US', 1, 33.5087200000, -96.6122100000), (1118722, 1001426, 'Howell', NULL, 'howell', 'US', 1, 42.6072600000, -83.9294000000), (1118723, 1001451, 'Howell County', NULL, 'howell-county', 'US', 1, 36.7740100000, -91.8865400000), (1118724, 1001436, 'Howey-in-the-Hills', NULL, 'howey-in-the-hills', 'US', 1, 28.7169400000, -81.7734100000), (1118725, 1001453, 'Howland', NULL, 'howland', 'US', 1, 45.2386700000, -68.6636400000), (1118726, 1001444, 'Hoxie', NULL, 'hoxie', 'US', 1, 36.0503500000, -90.9751200000), (1118727, 1001406, 'Hoxie', NULL, 'hoxie', 'US', 1, 39.3575000000, -100.4418100000), (1118728, 1001420, 'Hoyt Lakes', NULL, 'hoyt-lakes', 'US', 1, 47.5196500000, -92.1385100000), (1118729, 1001434, 'Huachuca City', NULL, 'huachuca-city', 'US', 1, 31.6278700000, -110.3339700000), (1118730, 1001407, 'Hubbard', NULL, 'hubbard', 'US', 1, 31.8484900000, -96.7972100000), (1118731, 1001415, 'Hubbard', NULL, 'hubbard', 'US', 1, 45.1823400000, -122.8078700000), (1118732, 1001420, 'Hubbard County', NULL, 'hubbard-county', 'US', 1, 47.1086500000, -94.9166400000), (1118733, 1001426, 'Hubbard Lake', NULL, 'hubbard-lake', 'US', 1, 44.7597300000, -83.5444200000), (1118734, 1001433, 'Hubbardston', NULL, 'hubbardston', 'US', 1, 42.4737000000, -72.0061900000), (1118735, 1001436, 'Hudson', NULL, 'hudson', 'US', 1, 28.3644500000, -82.6934300000), (1118736, 1001447, 'Hudson', NULL, 'hudson', 'US', 1, 35.8484600000, -81.4959300000), (1118737, 1001407, 'Hudson', NULL, 'hudson', 'US', 1, 31.3226800000, -94.7782600000), (1118738, 1001459, 'Hudson', NULL, 'hudson', 'US', 1, 42.4066500000, -92.4554700000), (1118739, 1001425, 'Hudson', NULL, 'hudson', 'US', 1, 40.6058700000, -88.9873000000), (1118740, 1001433, 'Hudson', NULL, 'hudson', 'US', 1, 42.3917600000, -71.5661800000), (1118741, 1001426, 'Hudson', NULL, 'hudson', 'US', 1, 41.8550500000, -84.3538400000), (1118742, 1001453, 'Hudson', NULL, 'hudson', 'US', 1, 45.0011800000, -68.8805900000), (1118743, 1001404, 'Hudson', NULL, 'hudson', 'US', 1, 42.7648100000, -71.4397900000), (1118744, 1001452, 'Hudson', NULL, 'hudson', 'US', 1, 42.2528600000, -73.7909600000), (1118745, 1001422, 'Hudson', NULL, 'hudson', 'US', 1, 41.2748000000, -75.8360300000), (1118746, 1001441, 'Hudson', NULL, 'hudson', 'US', 1, 44.9746900000, -92.7568700000), (1118747, 1001450, 'Hudson', NULL, 'hudson', 'US', 1, 40.0735900000, -104.6430200000), (1118748, 1001407, 'Hudson Bend', NULL, 'hudson-bend', 'US', 1, 30.4171400000, -97.9291800000), (1118749, 1001417, 'Hudson County', NULL, 'hudson-county', 'US', 1, 40.7309400000, -74.0759400000), (1118750, 1001452, 'Hudson Falls', NULL, 'hudson-falls', 'US', 1, 43.3006300000, -73.5859500000), (1118751, 1001440, 'Hudson Lake', NULL, 'hudson-lake', 'US', 1, 41.7103200000, -86.5341900000), (1118752, 1001407, 'Hudson Oaks', NULL, 'hudson-oaks', 'US', 1, 32.7570700000, -97.7067000000), (1118753, 1001426, 'Hudsonville', NULL, 'hudsonville', 'US', 1, 42.8708600000, -85.8650400000), (1118754, 1001407, 'Hudspeth County', NULL, 'hudspeth-county', 'US', 1, 31.4561800000, -105.3864600000), (1118755, 1001450, 'Huerfano County', NULL, 'huerfano-county', 'US', 1, 37.6846800000, -104.9605800000), (1118756, 1001456, 'Hueytown', NULL, 'hueytown', 'US', 1, 33.4512200000, -86.9966600000), (1118757, 1001444, 'Hughes', NULL, 'hughes', 'US', 1, 34.9492600000, -90.4714900000), (1118758, 1001421, 'Hughes County', NULL, 'hughes-county', 'US', 1, 35.0483400000, -96.2502400000), (1118759, 1001445, 'Hughes County', NULL, 'hughes-county', 'US', 1, 44.3890300000, -99.9960500000), (1118760, 1001407, 'Hughes Springs', NULL, 'hughes-springs', 'US', 1, 32.9984600000, -94.6307600000), (1118761, 1001422, 'Hughestown', NULL, 'hughestown', 'US', 1, 41.3270200000, -75.7732500000), (1118762, 1001401, 'Hughesville', NULL, 'hughesville', 'US', 1, 38.5326200000, -76.7838600000), (1118763, 1001422, 'Hughesville', NULL, 'hughesville', 'US', 1, 41.2411900000, -76.7238500000), (1118764, 1001416, 'Hughson', NULL, 'hughson', 'US', 1, 37.5968800000, -120.8660400000), (1118765, 1001421, 'Hugo', NULL, 'hugo', 'US', 1, 34.0106600000, -95.5096800000), (1118766, 1001420, 'Hugo', NULL, 'hugo', 'US', 1, 45.1599700000, -92.9932700000), (1118767, 1001450, 'Hugo', NULL, 'hugo', 'US', 1, 39.1361000000, -103.4699400000), (1118768, 1001406, 'Hugoton', NULL, 'hugoton', 'US', 1, 37.1753000000, -101.3496000000), (1118769, 1001452, 'Huguenot', NULL, 'huguenot', 'US', 1, 40.5373300000, -74.1945900000), (1118770, 1001456, 'Huguley', NULL, 'huguley', 'US', 1, 32.8345700000, -85.2296600000), (1118771, 1001459, 'Hull', NULL, 'hull', 'US', 1, 43.1885900000, -96.1336300000), (1118772, 1001433, 'Hull', NULL, 'hull', 'US', 1, 42.3020400000, -70.9078200000), (1118773, 1001451, 'Humansville', NULL, 'humansville', 'US', 1, 37.7944800000, -93.5779800000), (1118774, 1001407, 'Humble', NULL, 'humble', 'US', 1, 29.9988300000, -95.2621600000), (1118775, 1001406, 'Humboldt', NULL, 'humboldt', 'US', 1, 37.8106000000, -95.4369300000), (1118776, 1001454, 'Humboldt', NULL, 'humboldt', 'US', 1, 35.8197900000, -88.9159000000), (1118777, 1001459, 'Humboldt', NULL, 'humboldt', 'US', 1, 42.7208000000, -94.2152400000), (1118778, 1001459, 'Humboldt County', NULL, 'humboldt-county', 'US', 1, 42.7764700000, -94.2071900000), (1118779, 1001416, 'Humboldt County', NULL, 'humboldt-county', 'US', 1, 40.7050100000, -123.9158200000), (1118780, 1001458, 'Humboldt County', NULL, 'humboldt-county', 'US', 1, 41.4068400000, -118.1119700000), (1118781, 1001416, 'Humboldt Hill', NULL, 'humboldt-hill', 'US', 1, 40.7259600000, -124.1897800000), (1118782, 1001422, 'Hummels Wharf', NULL, 'hummels-wharf', 'US', 1, 40.8317500000, -76.8358000000), (1118783, 1001422, 'Hummelstown', NULL, 'hummelstown', 'US', 1, 40.2653700000, -76.7083000000), (1118784, 1001430, 'Humphreys County', NULL, 'humphreys-county', 'US', 1, 33.1287000000, -90.5266200000), (1118785, 1001454, 'Humphreys County', NULL, 'humphreys-county', 'US', 1, 36.0408200000, -87.7756300000), (1118786, 1001407, 'Hunt County', NULL, 'hunt-county', 'US', 1, 33.1236000000, -96.0854500000), (1118787, 1001401, 'Hunt Valley', NULL, 'hunt-valley', 'US', 1, 39.4998300000, -76.6410800000), (1118788, 1001454, 'Hunter', NULL, 'hunter', 'US', 1, 36.3717800000, -82.1587400000), (1118789, 1001417, 'Hunterdon County', NULL, 'hunterdon-county', 'US', 1, 40.5672900000, -74.9122200000), (1118790, 1001436, 'Hunters Creek', NULL, 'hunters-creek', 'US', 1, 28.3605600000, -81.4222900000), (1118791, 1001407, 'Hunters Creek Village', NULL, 'hunters-creek-village', 'US', 1, 29.7705100000, -95.4955000000), (1118792, 1001447, 'Huntersville', NULL, 'huntersville', 'US', 1, 35.4106900000, -80.8428500000), (1118793, 1001440, 'Huntertown', NULL, 'huntertown', 'US', 1, 41.2283800000, -85.1724700000), (1118794, 1001440, 'Huntingburg', NULL, 'huntingburg', 'US', 1, 38.2989400000, -86.9550000000), (1118795, 1001454, 'Huntingdon', NULL, 'huntingdon', 'US', 1, 36.0006200000, -88.4281100000), (1118796, 1001422, 'Huntingdon', NULL, 'huntingdon', 'US', 1, 40.4848000000, -78.0102800000), (1118797, 1001422, 'Huntingdon County', NULL, 'huntingdon-county', 'US', 1, 40.4169300000, -77.9812100000), (1118798, 1001407, 'Huntington', NULL, 'huntington', 'US', 1, 31.2776900000, -94.5765900000), (1118799, 1001427, 'Huntington', NULL, 'huntington', 'US', 1, 38.7923400000, -77.0708100000), (1118800, 1001429, 'Huntington', NULL, 'huntington', 'US', 1, 38.4192500000, -82.4451500000), (1118801, 1001440, 'Huntington', NULL, 'huntington', 'US', 1, 40.8831000000, -85.4974800000), (1118802, 1001452, 'Huntington', NULL, 'huntington', 'US', 1, 40.8681500000, -73.4256800000), (1118803, 1001414, 'Huntington', NULL, 'huntington', 'US', 1, 39.3266400000, -110.9646100000), (1118804, 1001452, 'Huntington Bay', NULL, 'huntington-bay', 'US', 1, 40.8998200000, -73.4148400000), (1118805, 1001416, 'Huntington Beach', NULL, 'huntington-beach', 'US', 1, 33.6603000000, -117.9992300000), (1118806, 1001440, 'Huntington County', NULL, 'huntington-county', 'US', 1, 40.8292400000, -85.4881700000), (1118807, 1001416, 'Huntington Park', NULL, 'huntington-park', 'US', 1, 33.9816800000, -118.2250700000), (1118808, 1001452, 'Huntington Station', NULL, 'huntington-station', 'US', 1, 40.8534300000, -73.4115100000), (1118809, 1001426, 'Huntington Woods', NULL, 'huntington-woods', 'US', 1, 42.4805900000, -83.1668700000), (1118810, 1001401, 'Huntingtown', NULL, 'huntingtown', 'US', 1, 38.6159500000, -76.6130200000), (1118811, 1001401, 'Huntingtown Town Center', NULL, 'huntingtown-town-center', 'US', 1, 38.6209500000, -76.6160700000), (1118812, 1001425, 'Huntley', NULL, 'huntley', 'US', 1, 42.1680800000, -88.4281400000), (1118813, 1001452, 'Hunts Point', NULL, 'hunts-point', 'US', 1, 40.8126000000, -73.8840200000), (1118814, 1001456, 'Huntsville', NULL, 'huntsville', 'US', 1, 34.7304000000, -86.5859400000), (1118815, 1001444, 'Huntsville', NULL, 'huntsville', 'US', 1, 36.0861900000, -93.7413000000), (1118816, 1001451, 'Huntsville', NULL, 'huntsville', 'US', 1, 39.4405900000, -92.5451800000), (1118817, 1001454, 'Huntsville', NULL, 'huntsville', 'US', 1, 36.4098000000, -84.4904900000), (1118818, 1001407, 'Huntsville', NULL, 'huntsville', 'US', 1, 30.7235300000, -95.5507800000), (1118819, 1001430, 'Hurley', NULL, 'hurley', 'US', 1, 30.6610300000, -88.4941800000), (1118820, 1001452, 'Hurley', NULL, 'hurley', 'US', 1, 41.9245400000, -74.0612500000), (1118821, 1001441, 'Hurley', NULL, 'hurley', 'US', 1, 46.4496700000, -90.1865600000), (1118822, 1001423, 'Hurley', NULL, 'hurley', 'US', 1, 32.6992400000, -108.1319900000), (1118823, 1001401, 'Hurlock', NULL, 'hurlock', 'US', 1, 38.6242800000, -75.8543800000), (1118824, 1001445, 'Huron', NULL, 'huron', 'US', 1, 44.3633200000, -98.2142600000), (1118825, 1001416, 'Huron', NULL, 'huron', 'US', 1, 36.2027300000, -120.1029200000), (1118826, 1001426, 'Huron County', NULL, 'huron-county', 'US', 1, 43.9100700000, -82.8555100000), (1118827, 1001429, 'Hurricane', NULL, 'hurricane', 'US', 1, 38.4325900000, -82.0201400000), (1118828, 1001414, 'Hurricane', NULL, 'hurricane', 'US', 1, 37.1752600000, -113.2899500000), (1118829, 1001407, 'Hurst', NULL, 'hurst', 'US', 1, 32.8234600000, -97.1705700000), (1118830, 1001419, 'Hurstbourne', NULL, 'hurstbourne', 'US', 1, 38.2381300000, -85.5882900000), (1118831, 1001419, 'Hurstbourne Acres', NULL, 'hurstbourne-acres', 'US', 1, 38.2211800000, -85.5891300000), (1118832, 1001427, 'Hurt', NULL, 'hurt', 'US', 1, 37.0926400000, -79.2964100000), (1118833, 1001441, 'Hustisford', NULL, 'hustisford', 'US', 1, 43.3461100000, -88.6006600000), (1118834, 1001407, 'Hutchins', NULL, 'hutchins', 'US', 1, 32.6493000000, -96.7130500000), (1118835, 1001406, 'Hutchinson', NULL, 'hutchinson', 'US', 1, 38.0608400000, -97.9297700000), (1118836, 1001420, 'Hutchinson', NULL, 'hutchinson', 'US', 1, 44.8877400000, -94.3697100000), (1118837, 1001445, 'Hutchinson County', NULL, 'hutchinson-county', 'US', 1, 43.3348500000, -97.7544200000), (1118838, 1001407, 'Hutchinson County', NULL, 'hutchinson-county', 'US', 1, 35.8400300000, -101.3547000000), (1118839, 1001436, 'Hutchinson Island South', NULL, 'hutchinson-island-south', 'US', 1, 27.2994900000, -80.2204500000), (1118840, 1001407, 'Hutto', NULL, 'hutto', 'US', 1, 30.5427000000, -97.5466700000), (1118841, 1001459, 'Huxley', NULL, 'huxley', 'US', 1, 41.8952700000, -93.6007700000), (1118842, 1001433, 'Hyannis', NULL, 'hyannis', 'US', 1, 41.6528900000, -70.2828000000), (1118843, 1001408, 'Hyannis', NULL, 'hyannis', 'US', 1, 42.0005400000, -101.7618400000), (1118844, 1001401, 'Hyattsville', NULL, 'hyattsville', 'US', 1, 38.9559400000, -76.9455300000), (1118845, 1001427, 'Hybla Valley', NULL, 'hybla-valley', 'US', 1, 38.7476100000, -77.0830300000), (1118846, 1001422, 'Hyde', NULL, 'hyde', 'US', 1, 41.0025600000, -78.4625200000), (1118847, 1001447, 'Hyde County', NULL, 'hyde-county', 'US', 1, 35.4100400000, -76.1485000000), (1118848, 1001445, 'Hyde County', NULL, 'hyde-county', 'US', 1, 44.5473600000, -99.4871100000), (1118849, 1001425, 'Hyde Park', NULL, 'hyde-park', 'US', 1, 41.7942000000, -87.5939400000), (1118850, 1001452, 'Hyde Park', NULL, 'hyde-park', 'US', 1, 41.7848200000, -73.9331900000), (1118851, 1001422, 'Hyde Park', NULL, 'hyde-park', 'US', 1, 40.3773200000, -75.9252100000), (1118852, 1001409, 'Hyde Park', NULL, 'hyde-park', 'US', 1, 44.5939400000, -72.6165100000), (1118853, 1001414, 'Hyde Park', NULL, 'hyde-park', 'US', 1, 41.7988200000, -111.8191100000), (1118854, 1001419, 'Hyden', NULL, 'hyden', 'US', 1, 37.1609300000, -83.3732400000), (1118855, 1001416, 'Hydesville', NULL, 'hydesville', 'US', 1, 40.5476300000, -124.0972700000), (1118856, 1001436, 'Hypoluxo', NULL, 'hypoluxo', 'US', 1, 26.5664600000, -80.0533700000), (1118857, 1001414, 'Hyrum', NULL, 'hyrum', 'US', 1, 41.6341000000, -111.8521700000), (1118858, 1001446, 'Hysham', NULL, 'hysham', 'US', 1, 46.2927700000, -107.2342300000), (1118859, 1001411, 'Hālawa', NULL, 'halawa', 'US', 1, 21.3794400000, -157.9216700000), (1118860, 1001411, 'Hālawa Heights', NULL, 'halawa-heights', 'US', 1, 21.3784800000, -157.9138800000), (1118861, 1001411, 'Hāwī', NULL, 'hawi', 'US', 1, 20.2412200000, -155.8335100000), (1118862, 1001411, 'Hōlualoa', NULL, 'holualoa', 'US', 1, 19.6197900000, -155.9483100000), (1118863, 1001457, 'Iberia Parish', NULL, 'iberia-parish', 'US', 1, 29.5135300000, -91.8396400000), (1118864, 1001457, 'Iberville Parish', NULL, 'iberville-parish', 'US', 1, 30.2585000000, -91.3493600000), (1118865, 1001447, 'Icard', NULL, 'icard', 'US', 1, 35.7273500000, -81.4706500000), (1118866, 1001459, 'Ida County', NULL, 'ida-county', 'US', 1, 42.3868700000, -95.5135000000), (1118867, 1001459, 'Ida Grove', NULL, 'ida-grove', 'US', 1, 42.3449900000, -95.4716700000), (1118868, 1001421, 'Idabel', NULL, 'idabel', 'US', 1, 33.8956600000, -94.8263300000), (1118869, 1001460, 'Idaho City', NULL, 'idaho-city', 'US', 1, 43.8285000000, -115.8345500000), (1118870, 1001460, 'Idaho County', NULL, 'idaho-county', 'US', 1, 45.8442000000, -115.4674500000), (1118871, 1001460, 'Idaho Falls', NULL, 'idaho-falls', 'US', 1, 43.4665800000, -112.0341400000), (1118872, 1001450, 'Idaho Springs', NULL, 'idaho-springs', 'US', 1, 39.7424900000, -105.5136100000), (1118873, 1001407, 'Idalou', NULL, 'idalou', 'US', 1, 33.6664700000, -101.6829400000), (1118874, 1001416, 'Idyllwild', NULL, 'idyllwild', 'US', 1, 33.7400200000, -116.7189100000), (1118875, 1001416, 'Idyllwild-Pine Cove', NULL, 'idyllwild-pine-cove', 'US', 1, 33.7442900000, -116.7258700000), (1118876, 1001427, 'Idylwood', NULL, 'idylwood', 'US', 1, 38.8951100000, -77.2116500000), (1118877, 1001401, 'Ilchester', NULL, 'ilchester', 'US', 1, 39.2509400000, -76.7646900000), (1118878, 1001452, 'Ilion', NULL, 'ilion', 'US', 1, 43.0150700000, -75.0354300000), (1118879, 1001426, 'Imlay City', NULL, 'imlay-city', 'US', 1, 43.0247500000, -83.0777200000), (1118880, 1001436, 'Immokalee', NULL, 'immokalee', 'US', 1, 26.4186900000, -81.4173000000), (1118881, 1001451, 'Imperial', NULL, 'imperial', 'US', 1, 38.3697800000, -90.3784500000), (1118882, 1001422, 'Imperial', NULL, 'imperial', 'US', 1, 40.4495100000, -80.2445000000), (1118883, 1001416, 'Imperial', NULL, 'imperial', 'US', 1, 32.8475500000, -115.5694400000), (1118884, 1001408, 'Imperial', NULL, 'imperial', 'US', 1, 40.5169400000, -101.6432300000), (1118885, 1001416, 'Imperial Beach', NULL, 'imperial-beach', 'US', 1, 32.5839400000, -117.1130800000), (1118886, 1001416, 'Imperial County', NULL, 'imperial-county', 'US', 1, 33.0395100000, -115.3653200000), (1118887, 1001425, 'Ina', NULL, 'ina', 'US', 1, 38.1511600000, -88.9039600000), (1118888, 1001458, 'Incline Village', NULL, 'incline-village', 'US', 1, 39.2513000000, -119.9729700000), (1118889, 1001406, 'Independence', NULL, 'independence', 'US', 1, 37.2242400000, -95.7083100000), (1118890, 1001419, 'Independence', NULL, 'independence', 'US', 1, 38.9431200000, -84.5441100000), (1118891, 1001457, 'Independence', NULL, 'independence', 'US', 1, 30.6355100000, -90.5033500000), (1118892, 1001451, 'Independence', NULL, 'independence', 'US', 1, 39.0911200000, -94.4155100000), (1118893, 1001459, 'Independence', NULL, 'independence', 'US', 1, 42.4686000000, -91.8893400000), (1118894, 1001427, 'Independence', NULL, 'independence', 'US', 1, 36.6224500000, -81.1530900000), (1118895, 1001420, 'Independence', NULL, 'independence', 'US', 1, 45.0252400000, -93.7074600000), (1118896, 1001441, 'Independence', NULL, 'independence', 'US', 1, 44.3569100000, -91.4204300000), (1118897, 1001415, 'Independence', NULL, 'independence', 'US', 1, 44.8512300000, -123.1867700000), (1118898, 1001444, 'Independence County', NULL, 'independence-county', 'US', 1, 35.7415800000, -91.5697200000), (1118899, 1001427, 'Independent Hill', NULL, 'independent-hill', 'US', 1, 38.6359500000, -77.4377600000), (1118900, 1001443, 'India Hook', NULL, 'india-hook', 'US', 1, 35.0073700000, -81.0217400000), (1118901, 1001436, 'Indialantic', NULL, 'indialantic', 'US', 1, 28.0894600000, -80.5656100000), (1118902, 1001436, 'Indian Harbour Beach', NULL, 'indian-harbour-beach', 'US', 1, 28.1489000000, -80.5883900000), (1118903, 1001401, 'Indian Head', NULL, 'indian-head', 'US', 1, 38.6001200000, -77.1622000000), (1118904, 1001425, 'Indian Head Park', NULL, 'indian-head-park', 'US', 1, 41.7703100000, -87.9022800000), (1118905, 1001440, 'Indian Heights', NULL, 'indian-heights', 'US', 1, 40.4272600000, -86.1255500000), (1118906, 1001419, 'Indian Hills', NULL, 'indian-hills', 'US', 1, 38.2725700000, -85.6627400000), (1118907, 1001407, 'Indian Hills', NULL, 'indian-hills', 'US', 1, 26.2128500000, -97.9163900000), (1118908, 1001450, 'Indian Hills', NULL, 'indian-hills', 'US', 1, 39.6166500000, -105.2372100000), (1118909, 1001458, 'Indian Hills', NULL, 'indian-hills', 'US', 1, 39.0860200000, -119.7840700000), (1118910, 1001419, 'Indian Hills Cherokee Section', NULL, 'indian-hills-cherokee-section', 'US', 1, 38.2795100000, -85.6499600000), (1118911, 1001422, 'Indian Mountain Lake', NULL, 'indian-mountain-lake', 'US', 1, 41.0031400000, -75.5082400000), (1118912, 1001426, 'Indian River', NULL, 'indian-river', 'US', 1, 45.4125100000, -84.6125400000), (1118913, 1001436, 'Indian River County', NULL, 'indian-river-county', 'US', 1, 27.6963900000, -80.5740900000), (1118914, 1001436, 'Indian River Estates', NULL, 'indian-river-estates', 'US', 1, 27.3644900000, -80.3097700000), (1118915, 1001436, 'Indian River Shores', NULL, 'indian-river-shores', 'US', 1, 27.7167000000, -80.3842200000), (1118916, 1001436, 'Indian Rocks Beach', NULL, 'indian-rocks-beach', 'US', 1, 27.8753000000, -82.8512200000), (1118917, 1001436, 'Indian Shores', NULL, 'indian-shores', 'US', 1, 27.8628000000, -82.8484400000), (1118918, 1001455, 'Indian Springs', NULL, 'indian-springs', 'US', 1, 34.9578500000, -85.1644000000), (1118919, 1001456, 'Indian Springs Village', NULL, 'indian-springs-village', 'US', 1, 33.3553900000, -86.7544300000), (1118920, 1001447, 'Indian Trail', NULL, 'indian-trail', 'US', 1, 35.0768100000, -80.6692400000), (1118921, 1001416, 'Indian Wells', NULL, 'indian-wells', 'US', 1, 33.7179100000, -116.3431100000), (1118922, 1001422, 'Indiana', NULL, 'indiana', 'US', 1, 40.6214600000, -79.1525300000), (1118923, 1001422, 'Indiana County', NULL, 'indiana-county', 'US', 1, 40.6520500000, -79.0875500000), (1118924, 1001440, 'Indianapolis', NULL, 'indianapolis', 'US', 1, 39.7683800000, -86.1580400000), (1118925, 1001430, 'Indianola', NULL, 'indianola', 'US', 1, 33.4509500000, -90.6550900000), (1118926, 1001459, 'Indianola', NULL, 'indianola', 'US', 1, 41.3580500000, -93.5574400000), (1118927, 1001462, 'Indianola', NULL, 'indianola', 'US', 1, 47.7470400000, -122.5256900000), (1118928, 1001436, 'Indiantown', NULL, 'indiantown', 'US', 1, 27.0272800000, -80.4856100000), (1118929, 1001416, 'Indio', NULL, 'indio', 'US', 1, 33.7207000000, -116.2167700000), (1118930, 1001422, 'Industry', NULL, 'industry', 'US', 1, 40.6445100000, -80.4161800000), (1118931, 1001419, 'Inez', NULL, 'inez', 'US', 1, 37.8664800000, -82.5387600000), (1118932, 1001407, 'Inez', NULL, 'inez', 'US', 1, 28.9038800000, -96.7880400000), (1118933, 1001440, 'Ingalls', NULL, 'ingalls', 'US', 1, 39.9569900000, -85.8052600000), (1118934, 1001425, 'Ingalls Park', NULL, 'ingalls-park', 'US', 1, 41.5225300000, -88.0428300000), (1118935, 1001426, 'Ingham County', NULL, 'ingham-county', 'US', 1, 42.5971000000, -84.3735400000), (1118936, 1001407, 'Ingleside', NULL, 'ingleside', 'US', 1, 27.8778000000, -97.2116600000), (1118937, 1001416, 'Inglewood', NULL, 'inglewood', 'US', 1, 33.9616800000, -118.3531300000), (1118938, 1001462, 'Inglewood-Finn Hill', NULL, 'inglewood-finn-hill', 'US', 1, 47.7204900000, -122.2316700000), (1118939, 1001436, 'Inglis', NULL, 'inglis', 'US', 1, 29.0302500000, -82.6687200000), (1118940, 1001407, 'Ingram', NULL, 'ingram', 'US', 1, 30.0774300000, -99.2403200000), (1118941, 1001422, 'Ingram', NULL, 'ingram', 'US', 1, 40.4461800000, -80.0675500000), (1118942, 1001422, 'Inkerman', NULL, 'inkerman', 'US', 1, 41.2989700000, -75.8126900000), (1118943, 1001426, 'Inkster', NULL, 'inkster', 'US', 1, 42.2942000000, -83.3099300000), (1118944, 1001406, 'Inman', NULL, 'inman', 'US', 1, 38.2319500000, -97.7733800000), (1118945, 1001443, 'Inman', NULL, 'inman', 'US', 1, 35.0470600000, -82.0901100000), (1118946, 1001443, 'Inman Mills', NULL, 'inman-mills', 'US', 1, 35.0415100000, -82.1042800000), (1118947, 1001457, 'Inniswold', NULL, 'inniswold', 'US', 1, 30.4049100000, -91.0834400000), (1118948, 1001421, 'Inola', NULL, 'inola', 'US', 1, 36.1512100000, -95.5094200000), (1118949, 1001422, 'Intercourse', NULL, 'intercourse', 'US', 1, 40.0376000000, -76.1049500000), (1118950, 1001436, 'Interlachen', NULL, 'interlachen', 'US', 1, 29.6242100000, -81.8925600000), (1118951, 1001416, 'Interlaken', NULL, 'interlaken', 'US', 1, 36.9513400000, -121.7338400000), (1118952, 1001420, 'International Falls', NULL, 'international-falls', 'US', 1, 48.6010500000, -93.4109800000), (1118953, 1001420, 'Inver Grove Heights', NULL, 'inver-grove-heights', 'US', 1, 44.8480200000, -93.0427200000), (1118954, 1001456, 'Inverness', NULL, 'inverness', 'US', 1, 32.0148800000, -85.7460600000), (1118955, 1001436, 'Inverness', NULL, 'inverness', 'US', 1, 28.8358200000, -82.3303700000), (1118956, 1001425, 'Inverness', NULL, 'inverness', 'US', 1, 42.1180800000, -88.0961900000), (1118957, 1001416, 'Inverness', NULL, 'inverness', 'US', 1, 38.1010300000, -122.8569400000), (1118958, 1001450, 'Inverness', NULL, 'inverness', 'US', 1, 39.5773800000, -104.8613500000), (1118959, 1001436, 'Inverness Highlands North', NULL, 'inverness-highlands-north', 'US', 1, 28.8642000000, -82.3768800000), (1118960, 1001436, 'Inverness Highlands South', NULL, 'inverness-highlands-south', 'US', 1, 28.8005500000, -82.3371000000), (1118961, 1001436, 'Inwood', NULL, 'inwood', 'US', 1, 28.0369700000, -81.7650800000), (1118962, 1001429, 'Inwood', NULL, 'inwood', 'US', 1, 39.3578800000, -78.0400000000), (1118963, 1001452, 'Inwood', NULL, 'inwood', 'US', 1, 40.8656600000, -73.9268000000), (1118964, 1001416, 'Inyo County', NULL, 'inyo-county', 'US', 1, 36.5111300000, -117.4107900000), (1118965, 1001416, 'Inyokern', NULL, 'inyokern', 'US', 1, 35.6469000000, -117.8125700000), (1118966, 1001406, 'Iola', NULL, 'iola', 'US', 1, 37.9244800000, -95.3999800000), (1118967, 1001441, 'Iola', NULL, 'iola', 'US', 1, 44.5080300000, -89.1306700000), (1118968, 1001436, 'Iona', NULL, 'iona', 'US', 1, 26.5203600000, -81.9639800000), (1118969, 1001460, 'Iona', NULL, 'iona', 'US', 1, 43.5263000000, -111.9330200000), (1118970, 1001416, 'Ione', NULL, 'ione', 'US', 1, 38.3526900000, -120.9327200000), (1118971, 1001426, 'Ionia', NULL, 'ionia', 'US', 1, 42.9872500000, -85.0711200000), (1118972, 1001426, 'Ionia County', NULL, 'ionia-county', 'US', 1, 42.9450900000, -85.0746000000), (1118973, 1001426, 'Iosco County', NULL, 'iosco-county', 'US', 1, 44.3012500000, -83.5139500000), (1118974, 1001457, 'Iota', NULL, 'iota', 'US', 1, 30.3313100000, -92.4956900000), (1118975, 1001457, 'Iowa', NULL, 'iowa', 'US', 1, 30.2368700000, -93.0137600000), (1118976, 1001459, 'Iowa City', NULL, 'iowa-city', 'US', 1, 41.6611300000, -91.5301700000), (1118977, 1001407, 'Iowa Colony', NULL, 'iowa-colony', 'US', 1, 29.4824600000, -95.4155000000), (1118978, 1001459, 'Iowa County', NULL, 'iowa-county', 'US', 1, 41.6863200000, -92.0655200000), (1118979, 1001441, 'Iowa County', NULL, 'iowa-county', 'US', 1, 43.0004800000, -90.1354300000), (1118980, 1001459, 'Iowa Falls', NULL, 'iowa-falls', 'US', 1, 42.5224800000, -93.2513100000), (1118981, 1001407, 'Iowa Park', NULL, 'iowa-park', 'US', 1, 33.9514800000, -98.6686700000), (1118982, 1001433, 'Ipswich', NULL, 'ipswich', 'US', 1, 42.6792600000, -70.8411600000), (1118983, 1001445, 'Ipswich', NULL, 'ipswich', 'US', 1, 45.4444200000, -99.0292800000), (1118984, 1001407, 'Iraan', NULL, 'iraan', 'US', 1, 30.9140500000, -101.8979100000), (1118985, 1001447, 'Iredell County', NULL, 'iredell-county', 'US', 1, 35.8070800000, -80.8734400000), (1118986, 1001407, 'Irion County', NULL, 'irion-county', 'US', 1, 31.3039200000, -100.9824200000), (1118987, 1001443, 'Irmo', NULL, 'irmo', 'US', 1, 34.0859800000, -81.1831500000), (1118988, 1001451, 'Iron County', NULL, 'iron-county', 'US', 1, 37.5042600000, -90.6900300000), (1118989, 1001426, 'Iron County', NULL, 'iron-county', 'US', 1, 46.2086900000, -88.5305300000), (1118990, 1001441, 'Iron County', NULL, 'iron-county', 'US', 1, 46.3170600000, -90.2644500000), (1118991, 1001414, 'Iron County', NULL, 'iron-county', 'US', 1, 37.8591700000, -113.2892700000), (1118992, 1001426, 'Iron Mountain', NULL, 'iron-mountain', 'US', 1, 45.8202300000, -88.0659600000), (1118993, 1001426, 'Iron River', NULL, 'iron-river', 'US', 1, 46.0927300000, -88.6423500000), (1118994, 1001456, 'Irondale', NULL, 'irondale', 'US', 1, 33.5381600000, -86.7072100000), (1118995, 1001455, 'Irondale', NULL, 'irondale', 'US', 1, 33.4806700000, -84.3588100000), (1118996, 1001452, 'Irondequoit', NULL, 'irondequoit', 'US', 1, 43.2134000000, -77.5797200000), (1118997, 1001451, 'Ironton', NULL, 'ironton', 'US', 1, 37.5972700000, -90.6273400000), (1118998, 1001419, 'Ironville', NULL, 'ironville', 'US', 1, 38.4564700000, -82.6923800000), (1118999, 1001426, 'Ironwood', NULL, 'ironwood', 'US', 1, 46.4546700000, -90.1710100000), (1119000, 1001425, 'Iroquois County', NULL, 'iroquois-county', 'US', 1, 40.7472300000, -87.8243000000), (1119001, 1001411, 'Iroquois Point', NULL, 'iroquois-point', 'US', 1, 21.3277600000, -157.9830100000), (1119002, 1001415, 'Irrigon', NULL, 'irrigon', 'US', 1, 45.8956900000, -119.4914100000), (1119003, 1001419, 'Irvine', NULL, 'irvine', 'US', 1, 37.7006400000, -83.9738100000), (1119004, 1001416, 'Irvine', NULL, 'irvine', 'US', 1, 33.6694600000, -117.8231100000), (1119005, 1001407, 'Irving', NULL, 'irving', 'US', 1, 32.8140200000, -96.9488900000), (1119006, 1001425, 'Irving Park', NULL, 'irving-park', 'US', 1, 41.9533600000, -87.7364500000), (1119007, 1001419, 'Irvington', NULL, 'irvington', 'US', 1, 37.8803400000, -86.2838600000), (1119008, 1001401, 'Irvington', NULL, 'irvington', 'US', 1, 39.2828800000, -76.6860800000), (1119009, 1001417, 'Irvington', NULL, 'irvington', 'US', 1, 40.7323200000, -74.2348700000), (1119010, 1001452, 'Irvington', NULL, 'irvington', 'US', 1, 41.0392200000, -73.8682300000), (1119011, 1001443, 'Irwin', NULL, 'irwin', 'US', 1, 34.6937600000, -80.8222900000), (1119012, 1001422, 'Irwin', NULL, 'irwin', 'US', 1, 40.3245100000, -79.7011500000), (1119013, 1001455, 'Irwin County', NULL, 'irwin-county', 'US', 1, 31.6022800000, -83.2763800000), (1119014, 1001416, 'Irwindale', NULL, 'irwindale', 'US', 1, 34.1069500000, -117.9353400000), (1119015, 1001455, 'Irwinton', NULL, 'irwinton', 'US', 1, 32.8112600000, -83.1726500000), (1119016, 1001426, 'Isabella County', NULL, 'isabella-county', 'US', 1, 43.6406000000, -84.8468000000), (1119017, 1001420, 'Isanti', NULL, 'isanti', 'US', 1, 45.4902400000, -93.2477300000), (1119018, 1001420, 'Isanti County', NULL, 'isanti-county', 'US', 1, 45.5614900000, -93.2951800000), (1119019, 1001417, 'Iselin', NULL, 'iselin', 'US', 1, 40.5753800000, -74.3223700000), (1119020, 1001426, 'Ishpeming', NULL, 'ishpeming', 'US', 1, 46.4885500000, -87.6676400000), (1119021, 1001416, 'Isla Vista', NULL, 'isla-vista', 'US', 1, 34.4133300000, -119.8609700000), (1119022, 1001436, 'Islamorada', NULL, 'islamorada', 'US', 1, 24.9243000000, -80.6278400000), (1119023, 1001415, 'Island City', NULL, 'island-city', 'US', 1, 45.3409700000, -118.0446600000), (1119024, 1001462, 'Island County', NULL, 'island-county', 'US', 1, 48.2082000000, -122.6692200000), (1119025, 1001417, 'Island Heights', NULL, 'island-heights', 'US', 1, 39.9420600000, -74.1498600000), (1119026, 1001425, 'Island Lake', NULL, 'island-lake', 'US', 1, 42.2761300000, -88.1920300000), (1119027, 1001452, 'Island Park', NULL, 'island-park', 'US', 1, 40.6042700000, -73.6554100000), (1119028, 1001436, 'Island Walk', NULL, 'island-walk', 'US', 1, 26.2509900000, -81.7110100000), (1119029, 1001452, 'Islandia', NULL, 'islandia', 'US', 1, 40.8042600000, -73.1690000000), (1119030, 1001455, 'Isle of Hope', NULL, 'isle-of-hope', 'US', 1, 31.9818800000, -81.0609400000), (1119031, 1001436, 'Isle of Normandy', NULL, 'isle-of-normandy', 'US', 1, 25.8528700000, -80.1350500000), (1119032, 1001443, 'Isle of Palms', NULL, 'isle-of-palms', 'US', 1, 32.7868400000, -79.7948000000), (1119033, 1001427, 'Isle of Wight County', NULL, 'isle-of-wight-county', 'US', 1, 36.9067300000, -76.7091300000), (1119034, 1001452, 'Islip', NULL, 'islip', 'US', 1, 40.7298200000, -73.2103900000), (1119035, 1001452, 'Islip Terrace', NULL, 'islip-terrace', 'US', 1, 40.7431500000, -73.1926200000), (1119036, 1001462, 'Issaquah', NULL, 'issaquah', 'US', 1, 47.5301000000, -122.0326200000), (1119037, 1001430, 'Issaquena County', NULL, 'issaquena-county', 'US', 1, 32.7413900000, -90.9892100000), (1119038, 1001407, 'Italy', NULL, 'italy', 'US', 1, 32.1840400000, -96.8847200000), (1119039, 1001407, 'Itasca', NULL, 'itasca', 'US', 1, 32.1595900000, -97.1500100000), (1119040, 1001425, 'Itasca', NULL, 'itasca', 'US', 1, 41.9750300000, -88.0072900000), (1119041, 1001420, 'Itasca County', NULL, 'itasca-county', 'US', 1, 47.5095300000, -93.6320000000), (1119042, 1001430, 'Itawamba County', NULL, 'itawamba-county', 'US', 1, 34.2799900000, -88.3613200000), (1119043, 1001426, 'Ithaca', NULL, 'ithaca', 'US', 1, 43.2917000000, -84.6075000000), (1119044, 1001452, 'Ithaca', NULL, 'ithaca', 'US', 1, 42.4406300000, -76.4966100000), (1119045, 1001430, 'Itta Bena', NULL, 'itta-bena', 'US', 1, 33.4951200000, -90.3198100000), (1119046, 1001430, 'Iuka', NULL, 'iuka', 'US', 1, 34.8117600000, -88.1900400000), (1119047, 1001443, 'Iva', NULL, 'iva', 'US', 1, 34.3065000000, -82.6637400000), (1119048, 1001420, 'Ivanhoe', NULL, 'ivanhoe', 'US', 1, 44.4633000000, -96.2472600000), (1119049, 1001416, 'Ivanhoe', NULL, 'ivanhoe', 'US', 1, 36.3871700000, -119.2178900000), (1119050, 1001436, 'Ives Estates', NULL, 'ives-estates', 'US', 1, 25.9623100000, -80.1767100000), (1119051, 1001414, 'Ivins', NULL, 'ivins', 'US', 1, 37.1685900000, -113.6794100000), (1119052, 1001422, 'Ivyland', NULL, 'ivyland', 'US', 1, 40.2078900000, -75.0726700000), (1119053, 1001441, 'Ixonia', NULL, 'ixonia', 'US', 1, 43.1438900000, -88.5973200000), (1119054, 1001444, 'Izard County', NULL, 'izard-county', 'US', 1, 36.0948700000, -91.9134200000), (1119055, 1001407, 'Jacinto City', NULL, 'jacinto-city', 'US', 1, 29.7674500000, -95.2338200000), (1119056, 1001407, 'Jack County', NULL, 'jack-county', 'US', 1, 33.2334600000, -98.1724600000), (1119057, 1001458, 'Jackpot', NULL, 'jackpot', 'US', 1, 41.9832400000, -114.6747600000), (1119058, 1001454, 'Jacksboro', NULL, 'jacksboro', 'US', 1, 36.3300800000, -84.1838200000), (1119059, 1001407, 'Jacksboro', NULL, 'jacksboro', 'US', 1, 33.2184500000, -98.1586600000), (1119060, 1001456, 'Jackson', NULL, 'jackson', 'US', 1, 31.5090500000, -87.8944400000), (1119061, 1001455, 'Jackson', NULL, 'jackson', 'US', 1, 33.2945700000, -83.9660200000), (1119062, 1001419, 'Jackson', NULL, 'jackson', 'US', 1, 37.5531500000, -83.3835100000), (1119063, 1001457, 'Jackson', NULL, 'jackson', 'US', 1, 30.8374000000, -91.2176100000), (1119064, 1001451, 'Jackson', NULL, 'jackson', 'US', 1, 37.3822700000, -89.6662100000), (1119065, 1001430, 'Jackson', NULL, 'jackson', 'US', 1, 32.2987600000, -90.1848100000), (1119066, 1001417, 'Jackson', NULL, 'jackson', 'US', 1, 39.7765000000, -74.8623800000), (1119067, 1001447, 'Jackson', NULL, 'jackson', 'US', 1, 36.3896000000, -77.4213600000), (1119068, 1001454, 'Jackson', NULL, 'jackson', 'US', 1, 35.6145200000, -88.8139500000), (1119069, 1001443, 'Jackson', NULL, 'jackson', 'US', 1, 33.3254200000, -81.7878900000), (1119070, 1001420, 'Jackson', NULL, 'jackson', 'US', 1, 43.6207900000, -94.9886000000), (1119071, 1001426, 'Jackson', NULL, 'jackson', 'US', 1, 42.2458700000, -84.4013500000), (1119072, 1001441, 'Jackson', NULL, 'jackson', 'US', 1, 43.3238900000, -88.1667600000), (1119073, 1001416, 'Jackson', NULL, 'jackson', 'US', 1, 38.3488000000, -120.7741000000), (1119074, 1001442, 'Jackson', NULL, 'jackson', 'US', 1, 43.4799300000, -110.7624300000), (1119075, 1001456, 'Jackson County', NULL, 'jackson-county', 'US', 1, 34.7794100000, -85.9993000000), (1119076, 1001444, 'Jackson County', NULL, 'jackson-county', 'US', 1, 35.5992300000, -91.2145700000), (1119077, 1001436, 'Jackson County', NULL, 'jackson-county', 'US', 1, 30.7953900000, -85.2154600000), (1119078, 1001455, 'Jackson County', NULL, 'jackson-county', 'US', 1, 34.1338800000, -83.5663500000); INSERT INTO `[[dbprefix]]t_city` VALUES (1119079, 1001425, 'Jackson County', NULL, 'jackson-county', 'US', 1, 37.7851400000, -89.3821200000), (1119080, 1001440, 'Jackson County', NULL, 'jackson-county', 'US', 1, 38.9064200000, -86.0375400000), (1119081, 1001406, 'Jackson County', NULL, 'jackson-county', 'US', 1, 39.4168200000, -95.7936600000), (1119082, 1001419, 'Jackson County', NULL, 'jackson-county', 'US', 1, 37.4197800000, -84.0057700000), (1119083, 1001451, 'Jackson County', NULL, 'jackson-county', 'US', 1, 39.0085000000, -94.3460900000), (1119084, 1001430, 'Jackson County', NULL, 'jackson-county', 'US', 1, 30.4628900000, -88.6228400000), (1119085, 1001447, 'Jackson County', NULL, 'jackson-county', 'US', 1, 35.2873900000, -83.1408300000), (1119086, 1001421, 'Jackson County', NULL, 'jackson-county', 'US', 1, 34.5879700000, -99.4147600000), (1119087, 1001454, 'Jackson County', NULL, 'jackson-county', 'US', 1, 36.3592100000, -85.6731500000), (1119088, 1001407, 'Jackson County', NULL, 'jackson-county', 'US', 1, 28.9542400000, -96.5776800000), (1119089, 1001429, 'Jackson County', NULL, 'jackson-county', 'US', 1, 38.8344700000, -81.6747900000), (1119090, 1001459, 'Jackson County', NULL, 'jackson-county', 'US', 1, 42.1717400000, -90.5742300000), (1119091, 1001426, 'Jackson County', NULL, 'jackson-county', 'US', 1, 42.2484900000, -84.4234400000), (1119092, 1001420, 'Jackson County', NULL, 'jackson-county', 'US', 1, 43.6741700000, -95.1541100000), (1119093, 1001441, 'Jackson County', NULL, 'jackson-county', 'US', 1, 44.3191300000, -90.8051800000), (1119094, 1001450, 'Jackson County', NULL, 'jackson-county', 'US', 1, 40.6664300000, -106.3427900000), (1119095, 1001415, 'Jackson County', NULL, 'jackson-county', 'US', 1, 42.4321500000, -122.7284300000), (1119096, 1001445, 'Jackson County', NULL, 'jackson-county', 'US', 1, 43.6942100000, -101.6281300000), (1119097, 1001452, 'Jackson Heights', NULL, 'jackson-heights', 'US', 1, 40.7556600000, -73.8854100000), (1119098, 1001457, 'Jackson Parish', NULL, 'jackson-parish', 'US', 1, 32.3020300000, -92.5577400000), (1119099, 1001456, 'Jacksonville', NULL, 'jacksonville', 'US', 1, 33.8138200000, -85.7613000000), (1119100, 1001444, 'Jacksonville', NULL, 'jacksonville', 'US', 1, 34.8662000000, -92.1101500000), (1119101, 1001436, 'Jacksonville', NULL, 'jacksonville', 'US', 1, 30.3321800000, -81.6556500000), (1119102, 1001425, 'Jacksonville', NULL, 'jacksonville', 'US', 1, 39.7339400000, -90.2290100000), (1119103, 1001447, 'Jacksonville', NULL, 'jacksonville', 'US', 1, 34.7540500000, -77.4302400000), (1119104, 1001407, 'Jacksonville', NULL, 'jacksonville', 'US', 1, 31.9637800000, -95.2705000000), (1119105, 1001415, 'Jacksonville', NULL, 'jacksonville', 'US', 1, 42.3134600000, -122.9669900000), (1119106, 1001436, 'Jacksonville Beach', NULL, 'jacksonville-beach', 'US', 1, 30.2946900000, -81.3931400000), (1119107, 1001422, 'Jacksonwald', NULL, 'jacksonwald', 'US', 1, 40.3245400000, -75.8496500000), (1119108, 1001422, 'Jacobus', NULL, 'jacobus', 'US', 1, 39.8831600000, -76.7105200000), (1119109, 1001404, 'Jaffrey', NULL, 'jaffrey', 'US', 1, 42.8139700000, -72.0231400000), (1119110, 1001423, 'Jal', NULL, 'jal', 'US', 1, 32.1131800000, -103.1935100000), (1119111, 1001452, 'Jamaica', NULL, 'jamaica', 'US', 1, 40.6914900000, -73.8056900000), (1119112, 1001409, 'Jamaica', NULL, 'jamaica', 'US', 1, 43.1003600000, -72.7784300000), (1119113, 1001407, 'Jamaica Beach', NULL, 'jamaica-beach', 'US', 1, 29.1896800000, -94.9796500000), (1119114, 1001433, 'Jamaica Plain', NULL, 'jamaica-plain', 'US', 1, 42.3098200000, -71.1203300000), (1119115, 1001447, 'James City', NULL, 'james-city', 'US', 1, 35.0887700000, -77.0349500000), (1119116, 1001427, 'James City County', NULL, 'james-city-county', 'US', 1, 37.3133200000, -76.7737600000), (1119117, 1001443, 'James Island', NULL, 'james-island', 'US', 1, 32.7237400000, -79.9628400000), (1119118, 1001417, 'Jamesburg', NULL, 'jamesburg', 'US', 1, 40.3526100000, -74.4401500000), (1119119, 1001452, 'Jamesport', NULL, 'jamesport', 'US', 1, 40.9495400000, -72.5814800000), (1119120, 1001419, 'Jamestown', NULL, 'jamestown', 'US', 1, 36.9847900000, -85.0630100000), (1119121, 1001447, 'Jamestown', NULL, 'jamestown', 'US', 1, 35.9943000000, -79.9353100000), (1119122, 1001454, 'Jamestown', NULL, 'jamestown', 'US', 1, 36.4275700000, -84.9318900000), (1119123, 1001418, 'Jamestown', NULL, 'jamestown', 'US', 1, 46.9105400000, -98.7084400000), (1119124, 1001452, 'Jamestown', NULL, 'jamestown', 'US', 1, 42.0970000000, -79.2353300000), (1119125, 1001461, 'Jamestown', NULL, 'jamestown', 'US', 1, 41.4970500000, -71.3672800000), (1119126, 1001416, 'Jamestown', NULL, 'jamestown', 'US', 1, 37.9532600000, -120.4227000000), (1119127, 1001452, 'Jamestown West', NULL, 'jamestown-west', 'US', 1, 42.0885100000, -79.2811000000), (1119128, 1001416, 'Jamul', NULL, 'jamul', 'US', 1, 32.7170000000, -116.8761300000), (1119129, 1001436, 'Jan-Phyl Village', NULL, 'jan-phyl-village', 'US', 1, 28.0147400000, -81.7717500000), (1119130, 1001420, 'Janesville', NULL, 'janesville', 'US', 1, 44.1160800000, -93.7080000000), (1119131, 1001441, 'Janesville', NULL, 'janesville', 'US', 1, 42.6827900000, -89.0187200000), (1119132, 1001416, 'Janesville', NULL, 'janesville', 'US', 1, 40.2965600000, -120.5241100000), (1119133, 1001423, 'Jarales', NULL, 'jarales', 'US', 1, 34.6131200000, -106.7636400000), (1119134, 1001407, 'Jarrell', NULL, 'jarrell', 'US', 1, 30.8249100000, -97.6044500000), (1119135, 1001401, 'Jarrettsville', NULL, 'jarrettsville', 'US', 1, 39.6045500000, -76.4777400000), (1119136, 1001436, 'Jasmine Estates', NULL, 'jasmine-estates', 'US', 1, 28.2930600000, -82.6901000000), (1119137, 1001440, 'Jasonville', NULL, 'jasonville', 'US', 1, 39.1631000000, -87.1991800000), (1119138, 1001456, 'Jasper', NULL, 'jasper', 'US', 1, 33.8312200000, -87.2775100000), (1119139, 1001444, 'Jasper', NULL, 'jasper', 'US', 1, 36.0081300000, -93.1865700000), (1119140, 1001436, 'Jasper', NULL, 'jasper', 'US', 1, 30.5182700000, -82.9481900000), (1119141, 1001440, 'Jasper', NULL, 'jasper', 'US', 1, 38.3914400000, -86.9311100000), (1119142, 1001455, 'Jasper', NULL, 'jasper', 'US', 1, 34.4678700000, -84.4290900000), (1119143, 1001454, 'Jasper', NULL, 'jasper', 'US', 1, 35.0742400000, -85.6260800000), (1119144, 1001407, 'Jasper', NULL, 'jasper', 'US', 1, 30.9202000000, -93.9965800000), (1119145, 1001455, 'Jasper County', NULL, 'jasper-county', 'US', 1, 33.3164300000, -83.6880900000), (1119146, 1001425, 'Jasper County', NULL, 'jasper-county', 'US', 1, 39.0100300000, -88.1538100000), (1119147, 1001451, 'Jasper County', NULL, 'jasper-county', 'US', 1, 37.2035500000, -94.3406100000), (1119148, 1001430, 'Jasper County', NULL, 'jasper-county', 'US', 1, 32.0191100000, -89.1188600000), (1119149, 1001443, 'Jasper County', NULL, 'jasper-county', 'US', 1, 32.4219500000, -81.0232700000), (1119150, 1001407, 'Jasper County', NULL, 'jasper-county', 'US', 1, 30.7439600000, -94.0250900000), (1119151, 1001459, 'Jasper County', NULL, 'jasper-county', 'US', 1, 41.6860400000, -93.0537600000), (1119152, 1001440, 'Jasper County', NULL, 'jasper-county', 'US', 1, 41.0230000000, -87.1161200000), (1119153, 1001421, 'Jay', NULL, 'jay', 'US', 1, 36.4211900000, -94.7969000000), (1119154, 1001453, 'Jay', NULL, 'jay', 'US', 1, 44.5039500000, -70.2161700000), (1119155, 1001440, 'Jay County', NULL, 'jay-county', 'US', 1, 40.4379200000, -85.0056400000), (1119156, 1001407, 'Jayton', NULL, 'jayton', 'US', 1, 33.2481500000, -100.5737300000), (1119157, 1001457, 'Jean Lafitte', NULL, 'jean-lafitte', 'US', 1, 29.7360400000, -90.1267400000), (1119158, 1001457, 'Jeanerette', NULL, 'jeanerette', 'US', 1, 29.9110400000, -91.6634500000), (1119159, 1001422, 'Jeannette', NULL, 'jeannette', 'US', 1, 40.3281200000, -79.6153200000), (1119160, 1001455, 'Jeff Davis County', NULL, 'jeff-davis-county', 'US', 1, 31.8056000000, -82.6369400000), (1119161, 1001407, 'Jeff Davis County', NULL, 'jeff-davis-county', 'US', 1, 30.7154800000, -104.1400200000), (1119162, 1001455, 'Jefferson', NULL, 'jefferson', 'US', 1, 34.1170500000, -83.5723900000), (1119163, 1001457, 'Jefferson', NULL, 'jefferson', 'US', 1, 29.9660400000, -90.1531300000), (1119164, 1001401, 'Jefferson', NULL, 'jefferson', 'US', 1, 39.3620500000, -77.5316500000), (1119165, 1001447, 'Jefferson', NULL, 'jefferson', 'US', 1, 36.4204000000, -81.4734400000), (1119166, 1001407, 'Jefferson', NULL, 'jefferson', 'US', 1, 32.7573600000, -94.3451900000), (1119167, 1001427, 'Jefferson', NULL, 'jefferson', 'US', 1, 38.8645600000, -77.1877600000), (1119168, 1001459, 'Jefferson', NULL, 'jefferson', 'US', 1, 42.0152600000, -94.3774700000), (1119169, 1001453, 'Jefferson', NULL, 'jefferson', 'US', 1, 44.2067400000, -69.4525400000), (1119170, 1001404, 'Jefferson', NULL, 'jefferson', 'US', 1, 44.4189500000, -71.4745300000), (1119171, 1001441, 'Jefferson', NULL, 'jefferson', 'US', 1, 43.0055600000, -88.8073300000), (1119172, 1001415, 'Jefferson', NULL, 'jefferson', 'US', 1, 44.7195700000, -123.0103700000), (1119173, 1001451, 'Jefferson City', NULL, 'jefferson-city', 'US', 1, 38.5767000000, -92.1735200000), (1119174, 1001454, 'Jefferson City', NULL, 'jefferson-city', 'US', 1, 36.1223100000, -83.4924000000), (1119175, 1001456, 'Jefferson County', NULL, 'jefferson-county', 'US', 1, 33.5543100000, -86.8964900000), (1119176, 1001444, 'Jefferson County', NULL, 'jefferson-county', 'US', 1, 34.2687900000, -91.9315100000), (1119177, 1001436, 'Jefferson County', NULL, 'jefferson-county', 'US', 1, 30.4234600000, -83.9004700000), (1119178, 1001455, 'Jefferson County', NULL, 'jefferson-county', 'US', 1, 33.0548400000, -82.4181500000), (1119179, 1001425, 'Jefferson County', NULL, 'jefferson-county', 'US', 1, 38.3005200000, -88.9240100000), (1119180, 1001440, 'Jefferson County', NULL, 'jefferson-county', 'US', 1, 38.7858200000, -85.4385700000), (1119181, 1001406, 'Jefferson County', NULL, 'jefferson-county', 'US', 1, 39.2357600000, -95.3834500000), (1119182, 1001419, 'Jefferson County', NULL, 'jefferson-county', 'US', 1, 38.1871900000, -85.6591600000), (1119183, 1001451, 'Jefferson County', NULL, 'jefferson-county', 'US', 1, 38.2610700000, -90.5376900000), (1119184, 1001430, 'Jefferson County', NULL, 'jefferson-county', 'US', 1, 31.7342100000, -91.0371800000), (1119185, 1001421, 'Jefferson County', NULL, 'jefferson-county', 'US', 1, 34.1110100000, -97.8358500000), (1119186, 1001454, 'Jefferson County', NULL, 'jefferson-county', 'US', 1, 36.0509900000, -83.4463100000), (1119187, 1001407, 'Jefferson County', NULL, 'jefferson-county', 'US', 1, 29.8537300000, -94.1534400000), (1119188, 1001429, 'Jefferson County', NULL, 'jefferson-county', 'US', 1, 39.3076200000, -77.8627400000), (1119189, 1001459, 'Jefferson County', NULL, 'jefferson-county', 'US', 1, 41.0317600000, -91.9488800000), (1119190, 1001408, 'Jefferson County', NULL, 'jefferson-county', 'US', 1, 40.1757600000, -97.1427200000), (1119191, 1001452, 'Jefferson County', NULL, 'jefferson-county', 'US', 1, 43.9988500000, -76.0521100000), (1119192, 1001422, 'Jefferson County', NULL, 'jefferson-county', 'US', 1, 41.1281500000, -78.9994200000), (1119193, 1001441, 'Jefferson County', NULL, 'jefferson-county', 'US', 1, 43.0208200000, -88.7758700000), (1119194, 1001450, 'Jefferson County', NULL, 'jefferson-county', 'US', 1, 39.5864200000, -105.2504700000), (1119195, 1001460, 'Jefferson County', NULL, 'jefferson-county', 'US', 1, 43.8201400000, -112.3112800000), (1119196, 1001446, 'Jefferson County', NULL, 'jefferson-county', 'US', 1, 46.1484900000, -112.0937400000), (1119197, 1001415, 'Jefferson County', NULL, 'jefferson-county', 'US', 1, 44.6294100000, -121.1754100000), (1119198, 1001462, 'Jefferson County', NULL, 'jefferson-county', 'US', 1, 47.7765500000, -123.5743100000), (1119199, 1001430, 'Jefferson Davis County', NULL, 'jefferson-davis-county', 'US', 1, 31.5696400000, -89.8230000000), (1119200, 1001457, 'Jefferson Davis Parish', NULL, 'jefferson-davis-parish', 'US', 1, 30.2677200000, -92.8141200000), (1119201, 1001452, 'Jefferson Heights', NULL, 'jefferson-heights', 'US', 1, 42.2339800000, -73.8823500000), (1119202, 1001422, 'Jefferson Hills', NULL, 'jefferson-hills', 'US', 1, 40.2911800000, -79.9319900000), (1119203, 1001457, 'Jefferson Parish', NULL, 'jefferson-parish', 'US', 1, 29.6809700000, -90.0979800000), (1119204, 1001452, 'Jefferson Valley-Yorktown', NULL, 'jefferson-valley-yorktown', 'US', 1, 41.3179700000, -73.8006600000), (1119205, 1001419, 'Jeffersontown', NULL, 'jeffersontown', 'US', 1, 38.1942400000, -85.5644000000), (1119206, 1001419, 'Jeffersonville', NULL, 'jeffersonville', 'US', 1, 37.9736900000, -83.8418600000), (1119207, 1001455, 'Jeffersonville', NULL, 'jeffersonville', 'US', 1, 32.6876500000, -83.3465600000), (1119208, 1001440, 'Jeffersonville', NULL, 'jeffersonville', 'US', 1, 38.2775700000, -85.7371800000), (1119209, 1001454, 'Jellico', NULL, 'jellico', 'US', 1, 36.5878600000, -84.1268700000), (1119210, 1001423, 'Jemez Pueblo', NULL, 'jemez-pueblo', 'US', 1, 35.6142200000, -106.7283200000), (1119211, 1001456, 'Jemison', NULL, 'jemison', 'US', 1, 32.9598500000, -86.7466500000), (1119212, 1001457, 'Jena', NULL, 'jena', 'US', 1, 31.6832300000, -92.1337400000), (1119213, 1001426, 'Jenison', NULL, 'jenison', 'US', 1, 42.9072500000, -85.7919800000), (1119214, 1001419, 'Jenkins', NULL, 'jenkins', 'US', 1, 37.1734400000, -82.6309900000), (1119215, 1001455, 'Jenkins County', NULL, 'jenkins-county', 'US', 1, 32.7924700000, -81.9635300000), (1119216, 1001422, 'Jenkintown', NULL, 'jenkintown', 'US', 1, 40.0959400000, -75.1251700000), (1119217, 1001421, 'Jenks', NULL, 'jenks', 'US', 1, 36.0228700000, -95.9683300000), (1119218, 1001457, 'Jennings', NULL, 'jennings', 'US', 1, 30.2224300000, -92.6570800000), (1119219, 1001451, 'Jennings', NULL, 'jennings', 'US', 1, 38.7192200000, -90.2603900000), (1119220, 1001440, 'Jennings County', NULL, 'jennings-county', 'US', 1, 38.9969300000, -85.6280600000), (1119221, 1001415, 'Jennings Lodge', NULL, 'jennings-lodge', 'US', 1, 45.3912300000, -122.6125900000), (1119222, 1001436, 'Jensen Beach', NULL, 'jensen-beach', 'US', 1, 27.2544900000, -80.2297700000), (1119223, 1001445, 'Jerauld County', NULL, 'jerauld-county', 'US', 1, 44.0663500000, -98.6297300000), (1119224, 1001452, 'Jericho', NULL, 'jericho', 'US', 1, 40.7920400000, -73.5398500000), (1119225, 1001409, 'Jericho', NULL, 'jericho', 'US', 1, 44.5039400000, -72.9976300000), (1119226, 1001422, 'Jermyn', NULL, 'jermyn', 'US', 1, 41.5309100000, -75.5454600000), (1119227, 1001425, 'Jerome', NULL, 'jerome', 'US', 1, 39.7675500000, -89.6806600000), (1119228, 1001422, 'Jerome', NULL, 'jerome', 'US', 1, 40.2089600000, -78.9836400000), (1119229, 1001460, 'Jerome', NULL, 'jerome', 'US', 1, 42.7240700000, -114.5186500000), (1119230, 1001460, 'Jerome County', NULL, 'jerome-county', 'US', 1, 42.6899000000, -114.2640300000), (1119231, 1001417, 'Jersey City', NULL, 'jersey-city', 'US', 1, 40.7281600000, -74.0776400000), (1119232, 1001425, 'Jersey County', NULL, 'jersey-county', 'US', 1, 39.0856600000, -90.3566800000), (1119233, 1001422, 'Jersey Shore', NULL, 'jersey-shore', 'US', 1, 41.2020200000, -77.2644200000), (1119234, 1001407, 'Jersey Village', NULL, 'jersey-village', 'US', 1, 29.8877200000, -95.5630000000), (1119235, 1001425, 'Jerseyville', NULL, 'jerseyville', 'US', 1, 39.1200500000, -90.3284500000), (1119236, 1001419, 'Jessamine County', NULL, 'jessamine-county', 'US', 1, 37.8720300000, -84.5809300000), (1119237, 1001401, 'Jessup', NULL, 'jessup', 'US', 1, 39.1492700000, -76.7752500000), (1119238, 1001422, 'Jessup', NULL, 'jessup', 'US', 1, 41.4686900000, -75.5621300000), (1119239, 1001455, 'Jesup', NULL, 'jesup', 'US', 1, 31.6078500000, -81.8863400000), (1119240, 1001459, 'Jesup', NULL, 'jesup', 'US', 1, 42.4755400000, -92.0637900000), (1119241, 1001406, 'Jetmore', NULL, 'jetmore', 'US', 1, 38.0844600000, -99.8934600000), (1119242, 1001459, 'Jewell', NULL, 'jewell', 'US', 1, 42.3069300000, -93.6402200000), (1119243, 1001406, 'Jewell County', NULL, 'jewell-county', 'US', 1, 39.7847300000, -98.2183400000), (1119244, 1001407, 'Jewett', NULL, 'jewett', 'US', 1, 31.3615700000, -96.1441300000), (1119245, 1001435, 'Jewett City', NULL, 'jewett-city', 'US', 1, 41.6067700000, -71.9809100000), (1119246, 1001407, 'Jim Hogg County', NULL, 'jim-hogg-county', 'US', 1, 27.0434000000, -98.6973100000), (1119247, 1001422, 'Jim Thorpe', NULL, 'jim-thorpe', 'US', 1, 40.8759200000, -75.7324100000), (1119248, 1001407, 'Jim Wells County', NULL, 'jim-wells-county', 'US', 1, 27.7313000000, -98.0899400000), (1119249, 1001425, 'Jo Daviess County', NULL, 'jo-daviess-county', 'US', 1, 42.3657100000, -90.2124100000), (1119250, 1001443, 'Joanna', NULL, 'joanna', 'US', 1, 34.4149100000, -81.8124000000), (1119251, 1001415, 'John Day', NULL, 'john-day', 'US', 1, 44.4159900000, -118.9530100000), (1119252, 1001455, 'Johns Creek', NULL, 'johns-creek', 'US', 1, 34.0289300000, -84.1985800000), (1119253, 1001425, 'Johnsburg', NULL, 'johnsburg', 'US', 1, 42.3800200000, -88.2420300000), (1119254, 1001444, 'Johnson', NULL, 'johnson', 'US', 1, 36.1328600000, -94.1654800000), (1119255, 1001409, 'Johnson', NULL, 'johnson', 'US', 1, 44.6356100000, -72.6804000000), (1119256, 1001406, 'Johnson', NULL, 'johnson', 'US', 1, 37.5705700000, -101.7510000000), (1119257, 1001454, 'Johnson City', NULL, 'johnson-city', 'US', 1, 36.3134400000, -82.3534700000), (1119258, 1001407, 'Johnson City', NULL, 'johnson-city', 'US', 1, 30.2768700000, -98.4119700000), (1119259, 1001452, 'Johnson City', NULL, 'johnson-city', 'US', 1, 42.1156300000, -75.9588100000), (1119260, 1001444, 'Johnson County', NULL, 'johnson-county', 'US', 1, 35.5700500000, -93.4599100000), (1119261, 1001455, 'Johnson County', NULL, 'johnson-county', 'US', 1, 32.7014600000, -82.6600800000), (1119262, 1001425, 'Johnson County', NULL, 'johnson-county', 'US', 1, 37.4596300000, -88.8808900000), (1119263, 1001440, 'Johnson County', NULL, 'johnson-county', 'US', 1, 39.4899700000, -86.1016400000), (1119264, 1001406, 'Johnson County', NULL, 'johnson-county', 'US', 1, 38.8837600000, -94.8222600000), (1119265, 1001419, 'Johnson County', NULL, 'johnson-county', 'US', 1, 37.8466400000, -82.8315400000), (1119266, 1001451, 'Johnson County', NULL, 'johnson-county', 'US', 1, 38.7440900000, -93.8063700000), (1119267, 1001454, 'Johnson County', NULL, 'johnson-county', 'US', 1, 36.4549400000, -81.8517500000), (1119268, 1001407, 'Johnson County', NULL, 'johnson-county', 'US', 1, 32.3790100000, -97.3663300000), (1119269, 1001459, 'Johnson County', NULL, 'johnson-county', 'US', 1, 41.6715500000, -91.5880800000), (1119270, 1001408, 'Johnson County', NULL, 'johnson-county', 'US', 1, 40.3926300000, -96.2651000000), (1119271, 1001442, 'Johnson County', NULL, 'johnson-county', 'US', 1, 44.0387700000, -106.5846300000), (1119272, 1001441, 'Johnson Creek', NULL, 'johnson-creek', 'US', 1, 43.0761100000, -88.7742700000), (1119273, 1001458, 'Johnson Lane', NULL, 'johnson-lane', 'US', 1, 39.0479600000, -119.7221200000), (1119274, 1001422, 'Johnsonburg', NULL, 'johnsonburg', 'US', 1, 41.4906200000, -78.6750300000), (1119275, 1001454, 'Johnsonville', NULL, 'johnsonville', 'US', 1, 36.0600600000, -87.9528100000), (1119276, 1001443, 'Johnsonville', NULL, 'johnsonville', 'US', 1, 33.8179400000, -79.4492200000), (1119277, 1001443, 'Johnston', NULL, 'johnston', 'US', 1, 33.8320800000, -81.8009400000), (1119278, 1001459, 'Johnston', NULL, 'johnston', 'US', 1, 41.6730400000, -93.6977200000), (1119279, 1001461, 'Johnston', NULL, 'johnston', 'US', 1, 41.8218600000, -71.5067500000), (1119280, 1001425, 'Johnston City', NULL, 'johnston-city', 'US', 1, 37.8206100000, -88.9275700000), (1119281, 1001447, 'Johnston County', NULL, 'johnston-county', 'US', 1, 35.5176100000, -78.3656400000), (1119282, 1001421, 'Johnston County', NULL, 'johnston-county', 'US', 1, 34.3164900000, -96.6606600000), (1119283, 1001416, 'Johnstonville', NULL, 'johnstonville', 'US', 1, 40.3843400000, -120.5874500000), (1119284, 1001452, 'Johnstown', NULL, 'johnstown', 'US', 1, 43.0067400000, -74.3676400000), (1119285, 1001422, 'Johnstown', NULL, 'johnstown', 'US', 1, 40.3267400000, -78.9219700000), (1119286, 1001450, 'Johnstown', NULL, 'johnstown', 'US', 1, 40.3369300000, -104.9122000000), (1119287, 1001462, 'Joint Base Lewis McChord', NULL, 'joint-base-lewis-mcchord', 'US', 1, 47.1078700000, -122.5769400000), (1119288, 1001425, 'Joliet', NULL, 'joliet', 'US', 1, 41.5251900000, -88.0834000000), (1119289, 1001427, 'Jolivue', NULL, 'jolivue', 'US', 1, 38.1098500000, -79.0730800000), (1119290, 1001407, 'Jollyville', NULL, 'jollyville', 'US', 1, 30.4427000000, -97.7750100000), (1119291, 1001421, 'Jones', NULL, 'jones', 'US', 1, 35.5658900000, -97.2869800000), (1119292, 1001455, 'Jones County', NULL, 'jones-county', 'US', 1, 33.0251300000, -83.5605200000), (1119293, 1001430, 'Jones County', NULL, 'jones-county', 'US', 1, 31.6225600000, -89.1687900000), (1119294, 1001447, 'Jones County', NULL, 'jones-county', 'US', 1, 35.0217000000, -77.3552600000), (1119295, 1001407, 'Jones County', NULL, 'jones-county', 'US', 1, 32.7399000000, -99.8787400000), (1119296, 1001459, 'Jones County', NULL, 'jones-county', 'US', 1, 42.1212400000, -91.1314400000), (1119297, 1001445, 'Jones County', NULL, 'jones-county', 'US', 1, 43.9606100000, -100.6897200000), (1119298, 1001407, 'Jones Creek', NULL, 'jones-creek', 'US', 1, 28.9685800000, -95.4552200000), (1119299, 1001444, 'Jonesboro', NULL, 'jonesboro', 'US', 1, 35.8423000000, -90.7042800000), (1119300, 1001455, 'Jonesboro', NULL, 'jonesboro', 'US', 1, 33.5215000000, -84.3538100000), (1119301, 1001425, 'Jonesboro', NULL, 'jonesboro', 'US', 1, 37.4517200000, -89.2681400000), (1119302, 1001457, 'Jonesboro', NULL, 'jonesboro', 'US', 1, 32.2412700000, -92.7159900000), (1119303, 1001440, 'Jonesboro', NULL, 'jonesboro', 'US', 1, 40.4797600000, -85.6277500000), (1119304, 1001454, 'Jonesborough', NULL, 'jonesborough', 'US', 1, 36.2942700000, -82.4734800000), (1119305, 1001453, 'Jonesport', NULL, 'jonesport', 'US', 1, 44.5328600000, -67.5983300000), (1119306, 1001430, 'Jonestown', NULL, 'jonestown', 'US', 1, 34.3195500000, -90.4556500000), (1119307, 1001407, 'Jonestown', NULL, 'jonestown', 'US', 1, 30.4954700000, -97.9233500000), (1119308, 1001422, 'Jonestown', NULL, 'jonestown', 'US', 1, 40.4137000000, -76.4783000000), (1119309, 1001457, 'Jonesville', NULL, 'jonesville', 'US', 1, 31.6265600000, -91.8181800000), (1119310, 1001447, 'Jonesville', NULL, 'jonesville', 'US', 1, 36.2393000000, -80.8445200000), (1119311, 1001427, 'Jonesville', NULL, 'jonesville', 'US', 1, 36.6889800000, -83.1110000000), (1119312, 1001426, 'Jonesville', NULL, 'jonesville', 'US', 1, 41.9842100000, -84.6619000000), (1119313, 1001451, 'Joplin', NULL, 'joplin', 'US', 1, 37.0842300000, -94.5132800000), (1119314, 1001401, 'Joppatowne', NULL, 'joppatowne', 'US', 1, 39.4578900000, -76.3552400000), (1119315, 1001420, 'Jordan', NULL, 'jordan', 'US', 1, 44.6669100000, -93.6269000000), (1119316, 1001452, 'Jordan', NULL, 'jordan', 'US', 1, 43.0653400000, -76.4729900000), (1119317, 1001446, 'Jordan', NULL, 'jordan', 'US', 1, 47.3208300000, -106.9100700000), (1119318, 1001415, 'Joseph', NULL, 'joseph', 'US', 1, 45.3543200000, -117.2296100000), (1119319, 1001434, 'Joseph City', NULL, 'joseph-city', 'US', 1, 34.9558600000, -110.3340100000), (1119320, 1001407, 'Josephine', NULL, 'josephine', 'US', 1, 33.0612300000, -96.3072000000), (1119321, 1001415, 'Josephine County', NULL, 'josephine-county', 'US', 1, 42.3654600000, -123.5555800000), (1119322, 1001407, 'Joshua', NULL, 'joshua', 'US', 1, 32.4615300000, -97.3880700000), (1119323, 1001416, 'Joshua Tree', NULL, 'joshua-tree', 'US', 1, 34.1347300000, -116.3130700000), (1119324, 1001407, 'Jourdanton', NULL, 'jourdanton', 'US', 1, 28.9180300000, -98.5464100000), (1119325, 1001414, 'Juab County', NULL, 'juab-county', 'US', 1, 39.7026200000, -112.7847700000), (1119326, 1001446, 'Judith Basin County', NULL, 'judith-basin-county', 'US', 1, 47.0454600000, -110.2660700000), (1119327, 1001443, 'Judson', NULL, 'judson', 'US', 1, 34.8331700000, -82.4276200000), (1119328, 1001444, 'Judsonia', NULL, 'judsonia', 'US', 1, 35.2700900000, -91.6398600000), (1119329, 1001450, 'Julesburg', NULL, 'julesburg', 'US', 1, 40.9883300000, -102.2643500000), (1119330, 1001416, 'Julian', NULL, 'julian', 'US', 1, 33.0786600000, -116.6019600000), (1119331, 1001407, 'Junction', NULL, 'junction', 'US', 1, 30.4893600000, -99.7720100000), (1119332, 1001414, 'Junction', NULL, 'junction', 'US', 1, 38.2374800000, -112.2199300000), (1119333, 1001419, 'Junction City', NULL, 'junction-city', 'US', 1, 37.5867400000, -84.7938400000), (1119334, 1001406, 'Junction City', NULL, 'junction-city', 'US', 1, 39.0286100000, -96.8314000000), (1119335, 1001415, 'Junction City', NULL, 'junction-city', 'US', 1, 44.2192900000, -123.2056500000), (1119336, 1001436, 'June Park', NULL, 'june-park', 'US', 1, 28.0722400000, -80.6800600000), (1119337, 1001441, 'Juneau', NULL, 'juneau', 'US', 1, 43.4055500000, -88.7051000000), (1119338, 1001400, 'Juneau', NULL, 'juneau', 'US', 1, 58.3019400000, -134.4197200000), (1119339, 1001441, 'Juneau County', NULL, 'juneau-county', 'US', 1, 43.9244400000, -90.1140200000), (1119340, 1001422, 'Juniata County', NULL, 'juniata-county', 'US', 1, 40.5310600000, -77.4021600000), (1119341, 1001436, 'Juno Beach', NULL, 'juno-beach', 'US', 1, 26.8797800000, -80.0533700000), (1119342, 1001436, 'Jupiter', NULL, 'jupiter', 'US', 1, 26.9342200000, -80.0942100000), (1119343, 1001416, 'Jurupa Valley', NULL, 'jurupa-valley', 'US', 1, 33.9925100000, -117.5164400000), (1119344, 1001421, 'Justice', NULL, 'justice', 'US', 1, 36.2928700000, -95.5666400000), (1119345, 1001425, 'Justice', NULL, 'justice', 'US', 1, 41.7444800000, -87.8378300000), (1119346, 1001407, 'Justin', NULL, 'justin', 'US', 1, 33.0848400000, -97.2961300000), (1119347, 1001426, 'K. I. Sawyer Air Force Base', NULL, 'k-i-sawyer-air-force-base', 'US', 1, 46.3465100000, -87.3863200000), (1119348, 1001411, 'Kaanapali Landing', NULL, 'kaanapali-landing', 'US', 1, 20.9309000000, -156.6877800000), (1119349, 1001434, 'Kachina Village', NULL, 'kachina-village', 'US', 1, 35.0969600000, -111.6926600000), (1119350, 1001445, 'Kadoka', NULL, 'kadoka', 'US', 1, 43.8338800000, -101.5098700000), (1119351, 1001411, 'Kahaluu-Keauhou', NULL, 'kahaluu-keauhou', 'US', 1, 19.5718100000, -155.9617200000), (1119352, 1001411, 'Kahalu‘u', NULL, 'kahalu-u', 'US', 1, 21.4575900000, -157.8443100000), (1119353, 1001451, 'Kahoka', NULL, 'kahoka', 'US', 1, 40.4203200000, -91.7196100000), (1119354, 1001411, 'Kahuku', NULL, 'kahuku', 'US', 1, 21.6804800000, -157.9523700000), (1119355, 1001411, 'Kahului', NULL, 'kahului', 'US', 1, 20.8895300000, -156.4743200000), (1119356, 1001434, 'Kaibito', NULL, 'kaibito', 'US', 1, 36.5972200000, -111.0743100000), (1119357, 1001411, 'Kailua', NULL, 'kailua', 'US', 1, 21.4024100000, -157.7405400000), (1119358, 1001411, 'Kailua-Kona', NULL, 'kailua-kona', 'US', 1, 19.6401600000, -155.9991200000), (1119359, 1001462, 'Kalama', NULL, 'kalama', 'US', 1, 46.0084500000, -122.8445500000), (1119360, 1001426, 'Kalamazoo', NULL, 'kalamazoo', 'US', 1, 42.2917100000, -85.5872300000), (1119361, 1001426, 'Kalamazoo County', NULL, 'kalamazoo-county', 'US', 1, 42.2454500000, -85.5311800000), (1119362, 1001411, 'Kalaoa', NULL, 'kalaoa', 'US', 1, 19.7286100000, -155.9816700000), (1119363, 1001411, 'Kalawao County', NULL, 'kalawao-county', 'US', 1, 21.1856900000, -156.9594400000), (1119364, 1001400, 'Kalifornsky', NULL, 'kalifornsky', 'US', 1, 60.4183300000, -151.2900000000), (1119365, 1001446, 'Kalispell', NULL, 'kalispell', 'US', 1, 48.1957900000, -114.3129100000), (1119366, 1001426, 'Kalkaska', NULL, 'kalkaska', 'US', 1, 44.7341700000, -85.1758900000), (1119367, 1001426, 'Kalkaska County', NULL, 'kalkaska-county', 'US', 1, 44.6846600000, -85.0902300000), (1119368, 1001459, 'Kalona', NULL, 'kalona', 'US', 1, 41.4830700000, -91.7060000000), (1119369, 1001411, 'Kalāheo', NULL, 'kalaheo', 'US', 1, 21.9241600000, -159.5268600000), (1119370, 1001414, 'Kamas', NULL, 'kamas', 'US', 1, 40.6430100000, -111.2807400000), (1119371, 1001460, 'Kamiah', NULL, 'kamiah', 'US', 1, 46.2271200000, -116.0293100000), (1119372, 1001414, 'Kanab', NULL, 'kanab', 'US', 1, 37.0474900000, -112.5263100000), (1119373, 1001420, 'Kanabec County', NULL, 'kanabec-county', 'US', 1, 45.9452200000, -93.2934300000), (1119374, 1001429, 'Kanawha County', NULL, 'kanawha-county', 'US', 1, 38.3365700000, -81.5281200000), (1119375, 1001420, 'Kandiyohi County', NULL, 'kandiyohi-county', 'US', 1, 45.1523800000, -95.0047400000), (1119376, 1001422, 'Kane', NULL, 'kane', 'US', 1, 41.6628400000, -78.8111400000), (1119377, 1001425, 'Kane County', NULL, 'kane-county', 'US', 1, 41.9389400000, -88.4286600000), (1119378, 1001414, 'Kane County', NULL, 'kane-county', 'US', 1, 37.2850700000, -111.8878500000), (1119379, 1001411, 'Kaneohe', NULL, 'kaneohe', 'US', 1, 21.3999400000, -157.7989500000), (1119380, 1001425, 'Kankakee', NULL, 'kankakee', 'US', 1, 41.1200300000, -87.8611500000), (1119381, 1001425, 'Kankakee County', NULL, 'kankakee-county', 'US', 1, 41.1377000000, -87.8618000000), (1119382, 1001447, 'Kannapolis', NULL, 'kannapolis', 'US', 1, 35.4873600000, -80.6217300000), (1119383, 1001406, 'Kansas City', NULL, 'kansas-city', 'US', 1, 39.1141700000, -94.6274600000), (1119384, 1001451, 'Kansas City', NULL, 'kansas-city', 'US', 1, 39.0997300000, -94.5785700000), (1119385, 1001411, 'Kapaau', NULL, 'kapaau', 'US', 1, 20.2338900000, -155.8019400000), (1119386, 1001411, 'Kapa‘a', NULL, 'kapa-a', 'US', 1, 22.0752100000, -159.3189500000), (1119387, 1001457, 'Kaplan', NULL, 'kaplan', 'US', 1, 29.9979800000, -92.2848500000), (1119388, 1001411, 'Kapolei', NULL, 'kapolei', 'US', 1, 21.3355500000, -158.0582000000), (1119389, 1001407, 'Karnes City', NULL, 'karnes-city', 'US', 1, 28.8849800000, -97.9008400000), (1119390, 1001407, 'Karnes County', NULL, 'karnes-county', 'US', 1, 28.9057400000, -97.8594000000), (1119391, 1001452, 'Kaser', NULL, 'kaser', 'US', 1, 41.1212100000, -74.0670900000), (1119392, 1001420, 'Kasson', NULL, 'kasson', 'US', 1, 44.0299600000, -92.7507400000), (1119393, 1001436, 'Kathleen', NULL, 'kathleen', 'US', 1, 28.1208500000, -82.0231400000), (1119394, 1001452, 'Katonah', NULL, 'katonah', 'US', 1, 41.2589800000, -73.6854100000), (1119395, 1001407, 'Katy', NULL, 'katy', 'US', 1, 29.7857900000, -95.8244000000), (1119396, 1001411, 'Kauai County', NULL, 'kauai-county', 'US', 1, 22.0110800000, -159.7054400000), (1119397, 1001407, 'Kaufman', NULL, 'kaufman', 'US', 1, 32.5890200000, -96.3088700000), (1119398, 1001407, 'Kaufman County', NULL, 'kaufman-county', 'US', 1, 32.5993000000, -96.2878000000), (1119399, 1001441, 'Kaukauna', NULL, 'kaukauna', 'US', 1, 44.2780400000, -88.2720500000), (1119400, 1001411, 'Kaunakakai', NULL, 'kaunakakai', 'US', 1, 21.0936300000, -157.0261300000), (1119401, 1001421, 'Kay County', NULL, 'kay-county', 'US', 1, 36.8180100000, -97.1439200000), (1119402, 1001434, 'Kayenta', NULL, 'kayenta', 'US', 1, 36.7277800000, -110.2545800000), (1119403, 1001414, 'Kaysville', NULL, 'kaysville', 'US', 1, 41.0352200000, -111.9385500000), (1119404, 1001411, 'Ka‘a‘awa', NULL, 'ka-a-awa', 'US', 1, 21.5544500000, -157.8510300000), (1119405, 1001411, 'Kealakekua', NULL, 'kealakekua', 'US', 1, 19.5208300000, -155.9225000000), (1119406, 1001417, 'Keansburg', NULL, 'keansburg', 'US', 1, 40.4417700000, -74.1298600000), (1119407, 1001451, 'Kearney', NULL, 'kearney', 'US', 1, 39.3677800000, -94.3621700000), (1119408, 1001408, 'Kearney', NULL, 'kearney', 'US', 1, 40.6994600000, -99.0814800000), (1119409, 1001408, 'Kearney County', NULL, 'kearney-county', 'US', 1, 40.5067100000, -98.9480200000), (1119410, 1001430, 'Kearney Park', NULL, 'kearney-park', 'US', 1, 32.5890300000, -90.3153700000), (1119411, 1001414, 'Kearns', NULL, 'kearns', 'US', 1, 40.6599500000, -111.9963300000), (1119412, 1001417, 'Kearny', NULL, 'kearny', 'US', 1, 40.7684300000, -74.1454200000), (1119413, 1001434, 'Kearny', NULL, 'kearny', 'US', 1, 33.0570100000, -110.9106700000), (1119414, 1001406, 'Kearny County', NULL, 'kearny-county', 'US', 1, 38.0002000000, -101.3198600000), (1119415, 1001411, 'Kea‘au', NULL, 'kea-au', 'US', 1, 19.6226500000, -155.0374400000), (1119416, 1001406, 'Kechi', NULL, 'kechi', 'US', 1, 37.7958500000, -97.2794900000), (1119417, 1001401, 'Keedysville', NULL, 'keedysville', 'US', 1, 39.4862100000, -77.6997100000), (1119418, 1001426, 'Keego Harbor', NULL, 'keego-harbor', 'US', 1, 42.6080900000, -83.3438200000), (1119419, 1001423, 'Keeler Farm', NULL, 'keeler-farm', 'US', 1, 32.3160700000, -107.7602300000), (1119420, 1001407, 'Keene', NULL, 'keene', 'US', 1, 32.3968100000, -97.3239000000), (1119421, 1001404, 'Keene', NULL, 'keene', 'US', 1, 42.9336900000, -72.2781400000), (1119422, 1001450, 'Keenesburg', NULL, 'keenesburg', 'US', 1, 40.1083200000, -104.5199600000), (1119423, 1001452, 'Keeseville', NULL, 'keeseville', 'US', 1, 44.5050500000, -73.4801300000), (1119424, 1001420, 'Keewatin', NULL, 'keewatin', 'US', 1, 47.3996600000, -93.0724200000), (1119425, 1001408, 'Keith County', NULL, 'keith-county', 'US', 1, 41.1987900000, -101.6613500000), (1119426, 1001415, 'Keizer', NULL, 'keizer', 'US', 1, 44.9901200000, -123.0262100000), (1119427, 1001411, 'Kekaha', NULL, 'kekaha', 'US', 1, 21.9668600000, -159.7118600000), (1119428, 1001407, 'Keller', NULL, 'keller', 'US', 1, 32.9345700000, -97.2516800000), (1119429, 1001460, 'Kellogg', NULL, 'kellogg', 'US', 1, 47.5382600000, -116.1193300000), (1119430, 1001421, 'Kellyville', NULL, 'kellyville', 'US', 1, 35.9437000000, -96.2136100000), (1119431, 1001416, 'Kelseyville', NULL, 'kelseyville', 'US', 1, 38.9779500000, -122.8394400000), (1119432, 1001462, 'Kelso', NULL, 'kelso', 'US', 1, 46.1467800000, -122.9084400000), (1119433, 1001407, 'Kemah', NULL, 'kemah', 'US', 1, 29.5427300000, -95.0204800000), (1119434, 1001442, 'Kemmerer', NULL, 'kemmerer', 'US', 1, 41.7924500000, -110.5376700000), (1119435, 1001407, 'Kemp', NULL, 'kemp', 'US', 1, 32.4426400000, -96.2299800000), (1119436, 1001401, 'Kemp Mill', NULL, 'kemp-mill', 'US', 1, 39.0390000000, -77.0191400000), (1119437, 1001430, 'Kemper County', NULL, 'kemper-county', 'US', 1, 32.7545600000, -88.6411600000), (1119438, 1001407, 'Kempner', NULL, 'kempner', 'US', 1, 31.0810100000, -98.0025200000), (1119439, 1001450, 'Ken Caryl', NULL, 'ken-caryl', 'US', 1, 39.5758200000, -105.1122100000), (1119440, 1001400, 'Kenai', NULL, 'kenai', 'US', 1, 60.5544400000, -151.2583300000), (1119441, 1001400, 'Kenai Peninsula Borough', NULL, 'kenai-peninsula-borough', 'US', 1, 60.4166700000, -151.2505600000), (1119442, 1001447, 'Kenansville', NULL, 'kenansville', 'US', 1, 34.9623900000, -77.9622100000), (1119443, 1001427, 'Kenbridge', NULL, 'kenbridge', 'US', 1, 36.9620900000, -78.1250000000), (1119444, 1001436, 'Kendale Lakes', NULL, 'kendale-lakes', 'US', 1, 25.7081600000, -80.4070000000), (1119445, 1001436, 'Kendall', NULL, 'kendall', 'US', 1, 25.6792700000, -80.3172700000), (1119446, 1001407, 'Kendall County', NULL, 'kendall-county', 'US', 1, 29.9446900000, -98.7115600000), (1119447, 1001425, 'Kendall County', NULL, 'kendall-county', 'US', 1, 41.5905600000, -88.4288500000), (1119448, 1001436, 'Kendall Green', NULL, 'kendall-green', 'US', 1, 26.2539700000, -80.1239300000), (1119449, 1001417, 'Kendall Park', NULL, 'kendall-park', 'US', 1, 40.4209400000, -74.5607100000), (1119450, 1001436, 'Kendall West', NULL, 'kendall-west', 'US', 1, 25.7065000000, -80.4388000000), (1119451, 1001440, 'Kendallville', NULL, 'kendallville', 'US', 1, 41.4414400000, -85.2649800000), (1119452, 1001453, 'Kenduskeag', NULL, 'kenduskeag', 'US', 1, 44.9195100000, -68.9317000000), (1119453, 1001407, 'Kenedy', NULL, 'kenedy', 'US', 1, 28.8191500000, -97.8486100000), (1119454, 1001407, 'Kenedy County', NULL, 'kenedy-county', 'US', 1, 26.9280200000, -97.6364600000), (1119455, 1001422, 'Kenhorst', NULL, 'kenhorst', 'US', 1, 40.3106500000, -75.9393800000), (1119456, 1001425, 'Kenilworth', NULL, 'kenilworth', 'US', 1, 42.0858600000, -87.7175600000), (1119457, 1001417, 'Kenilworth', NULL, 'kenilworth', 'US', 1, 40.6764900000, -74.2907000000), (1119458, 1001422, 'Kenilworth', NULL, 'kenilworth', 'US', 1, 40.2314900000, -75.6340800000), (1119459, 1001447, 'Kenly', NULL, 'kenly', 'US', 1, 35.5962700000, -78.1241600000), (1119460, 1001422, 'Kenmar', NULL, 'kenmar', 'US', 1, 41.2534100000, -76.9594100000), (1119461, 1001418, 'Kenmare', NULL, 'kenmare', 'US', 1, 48.6747500000, -102.0826600000), (1119462, 1001452, 'Kenmore', NULL, 'kenmore', 'US', 1, 42.9658900000, -78.8700400000), (1119463, 1001462, 'Kenmore', NULL, 'kenmore', 'US', 1, 47.7573200000, -122.2440100000), (1119464, 1001445, 'Kennebec', NULL, 'kennebec', 'US', 1, 43.9036000000, -99.8617800000), (1119465, 1001453, 'Kennebec County', NULL, 'kennebec-county', 'US', 1, 44.4091600000, -69.7672600000), (1119466, 1001453, 'Kennebunk', NULL, 'kennebunk', 'US', 1, 43.3839700000, -70.5447800000), (1119467, 1001453, 'Kennebunkport', NULL, 'kennebunkport', 'US', 1, 43.3617500000, -70.4767200000), (1119468, 1001407, 'Kennedale', NULL, 'kennedale', 'US', 1, 32.6468000000, -97.2258500000), (1119469, 1001416, 'Kennedy', NULL, 'kennedy', 'US', 1, 37.9299200000, -121.2527200000), (1119470, 1001457, 'Kenner', NULL, 'kenner', 'US', 1, 29.9940900000, -90.2417400000), (1119471, 1001455, 'Kennesaw', NULL, 'kennesaw', 'US', 1, 34.0234300000, -84.6154900000), (1119472, 1001436, 'Kenneth City', NULL, 'kenneth-city', 'US', 1, 27.8155800000, -82.7201000000), (1119473, 1001451, 'Kennett', NULL, 'kennett', 'US', 1, 36.2361800000, -90.0556500000), (1119474, 1001422, 'Kennett Square', NULL, 'kennett-square', 'US', 1, 39.8467800000, -75.7116000000), (1119475, 1001462, 'Kennewick', NULL, 'kennewick', 'US', 1, 46.2112500000, -119.1372300000), (1119476, 1001441, 'Kenosha', NULL, 'kenosha', 'US', 1, 42.5847400000, -87.8211900000), (1119477, 1001441, 'Kenosha County', NULL, 'kenosha-county', 'US', 1, 42.5728000000, -87.8398100000), (1119478, 1001429, 'Kenova', NULL, 'kenova', 'US', 1, 38.3989700000, -82.5782100000), (1119479, 1001444, 'Kensett', NULL, 'kensett', 'US', 1, 35.2317500000, -91.6676400000), (1119480, 1001401, 'Kensington', NULL, 'kensington', 'US', 1, 39.0256700000, -77.0763700000), (1119481, 1001435, 'Kensington', NULL, 'kensington', 'US', 1, 41.6353800000, -72.7687100000), (1119482, 1001404, 'Kensington', NULL, 'kensington', 'US', 1, 42.9270300000, -70.9439400000), (1119483, 1001452, 'Kensington', NULL, 'kensington', 'US', 1, 40.7934300000, -73.7220800000), (1119484, 1001416, 'Kensington', NULL, 'kensington', 'US', 1, 37.9104800000, -122.2802500000), (1119485, 1001436, 'Kensington Park', NULL, 'kensington-park', 'US', 1, 27.3594900000, -82.4964900000), (1119486, 1001435, 'Kent', NULL, 'kent', 'US', 1, 41.7248200000, -73.4770700000), (1119487, 1001462, 'Kent', NULL, 'kent', 'US', 1, 47.3809300000, -122.2348400000), (1119488, 1001399, 'Kent Acres', NULL, 'kent-acres', 'US', 1, 39.1317800000, -75.5249200000), (1119489, 1001426, 'Kent City', NULL, 'kent-city', 'US', 1, 43.2200200000, -85.7511500000), (1119490, 1001399, 'Kent County', NULL, 'kent-county', 'US', 1, 39.0959500000, -75.5046100000), (1119491, 1001401, 'Kent County', NULL, 'kent-county', 'US', 1, 39.2356000000, -76.0958200000), (1119492, 1001426, 'Kent County', NULL, 'kent-county', 'US', 1, 43.0321600000, -85.5493000000), (1119493, 1001461, 'Kent County', NULL, 'kent-county', 'US', 1, 41.6733400000, -71.5789500000), (1119494, 1001407, 'Kent County', NULL, 'kent-county', 'US', 1, 33.1814200000, -100.7775700000), (1119495, 1001416, 'Kentfield', NULL, 'kentfield', 'US', 1, 37.9521500000, -122.5572000000), (1119496, 1001440, 'Kentland', NULL, 'kentland', 'US', 1, 40.7703200000, -87.4453000000), (1119497, 1001454, 'Kenton', NULL, 'kenton', 'US', 1, 36.2022900000, -89.0122900000), (1119498, 1001415, 'Kenton', NULL, 'kenton', 'US', 1, 45.5817800000, -122.6814900000), (1119499, 1001419, 'Kenton County', NULL, 'kenton-county', 'US', 1, 38.9334600000, -84.5333400000), (1119500, 1001457, 'Kentwood', NULL, 'kentwood', 'US', 1, 30.9382400000, -90.5089800000), (1119501, 1001426, 'Kentwood', NULL, 'kentwood', 'US', 1, 42.8694700000, -85.6447500000), (1119502, 1001417, 'Kenvil', NULL, 'kenvil', 'US', 1, 40.8798200000, -74.6184900000), (1119503, 1001421, 'Kenwood', NULL, 'kenwood', 'US', 1, 36.3145300000, -94.9857900000), (1119504, 1001425, 'Kenwood', NULL, 'kenwood', 'US', 1, 41.8092000000, -87.5975500000), (1119505, 1001416, 'Kenwood', NULL, 'kenwood', 'US', 1, 38.4138000000, -122.5460900000), (1119506, 1001420, 'Kenyon', NULL, 'kenyon', 'US', 1, 44.2721900000, -92.9854800000), (1119507, 1001459, 'Keokuk', NULL, 'keokuk', 'US', 1, 40.3972700000, -91.3848700000), (1119508, 1001459, 'Keokuk County', NULL, 'keokuk-county', 'US', 1, 41.3364600000, -92.1786400000), (1119509, 1001459, 'Keosauqua', NULL, 'keosauqua', 'US', 1, 40.7303100000, -91.9623900000), (1119510, 1001407, 'Kerens', NULL, 'kerens', 'US', 1, 32.1332100000, -96.2277500000), (1119511, 1001452, 'Kerhonkson', NULL, 'kerhonkson', 'US', 1, 41.7748200000, -74.2982100000), (1119512, 1001416, 'Kerman', NULL, 'kerman', 'US', 1, 36.7235600000, -120.0598800000), (1119513, 1001407, 'Kermit', NULL, 'kermit', 'US', 1, 31.8576300000, -103.0926700000), (1119514, 1001416, 'Kern County', NULL, 'kern-county', 'US', 1, 35.3428500000, -118.7299000000), (1119515, 1001447, 'Kernersville', NULL, 'kernersville', 'US', 1, 36.1198600000, -80.0736500000), (1119516, 1001416, 'Kernville', NULL, 'kernville', 'US', 1, 35.7546700000, -118.4253600000), (1119517, 1001407, 'Kerr County', NULL, 'kerr-county', 'US', 1, 30.0614800000, -99.3501600000), (1119518, 1001407, 'Kerrville', NULL, 'kerrville', 'US', 1, 30.0474300000, -99.1403200000), (1119519, 1001450, 'Kersey', NULL, 'kersey', 'US', 1, 40.3874800000, -104.5616300000), (1119520, 1001443, 'Kershaw', NULL, 'kershaw', 'US', 1, 34.5518200000, -80.5836800000), (1119521, 1001443, 'Kershaw County', NULL, 'kershaw-county', 'US', 1, 34.3387600000, -80.5902600000), (1119522, 1001441, 'Keshena', NULL, 'keshena', 'US', 1, 44.8838700000, -88.6337200000), (1119523, 1001400, 'Ketchikan', NULL, 'ketchikan', 'US', 1, 55.3418000000, -131.6475700000), (1119524, 1001400, 'Ketchikan Gateway Borough', NULL, 'ketchikan-gateway-borough', 'US', 1, 55.5005600000, -131.4166700000), (1119525, 1001460, 'Ketchum', NULL, 'ketchum', 'US', 1, 43.6807400000, -114.3636600000), (1119526, 1001401, 'Kettering', NULL, 'kettering', 'US', 1, 38.8845600000, -76.8146900000), (1119527, 1001462, 'Kettle Falls', NULL, 'kettle-falls', 'US', 1, 48.6107400000, -118.0558200000), (1119528, 1001416, 'Kettleman City', NULL, 'kettleman-city', 'US', 1, 36.0082900000, -119.9618000000), (1119529, 1001452, 'Keuka Park', NULL, 'keuka-park', 'US', 1, 42.6153500000, -77.0921900000), (1119530, 1001452, 'Kew Gardens', NULL, 'kew-gardens', 'US', 1, 40.7142700000, -73.8309700000), (1119531, 1001452, 'Kew Gardens Hills', NULL, 'kew-gardens-hills', 'US', 1, 40.7300200000, -73.8234000000), (1119532, 1001425, 'Kewanee', NULL, 'kewanee', 'US', 1, 41.2455900000, -89.9248300000), (1119533, 1001441, 'Kewaskum', NULL, 'kewaskum', 'US', 1, 43.5208300000, -88.2289900000), (1119534, 1001441, 'Kewaunee', NULL, 'kewaunee', 'US', 1, 44.4583300000, -87.5031400000), (1119535, 1001441, 'Kewaunee County', NULL, 'kewaunee-county', 'US', 1, 44.4827900000, -87.5143400000), (1119536, 1001426, 'Keweenaw County', NULL, 'keweenaw-county', 'US', 1, 47.2829600000, -88.2119800000), (1119537, 1001436, 'Key Biscayne', NULL, 'key-biscayne', 'US', 1, 25.6937100000, -80.1628200000), (1119538, 1001462, 'Key Center', NULL, 'key-center', 'US', 1, 47.3406500000, -122.7454100000), (1119539, 1001436, 'Key Largo', NULL, 'key-largo', 'US', 1, 25.0865200000, -80.4472800000), (1119540, 1001436, 'Key Vista', NULL, 'key-vista', 'US', 1, 28.1947000000, -82.7703800000), (1119541, 1001436, 'Key West', NULL, 'key-west', 'US', 1, 24.5552400000, -81.7816300000), (1119542, 1001408, 'Keya Paha County', NULL, 'keya-paha-county', 'US', 1, 42.8788300000, -99.7123500000), (1119543, 1001416, 'Keyes', NULL, 'keyes', 'US', 1, 37.5566000000, -120.9154900000), (1119544, 1001417, 'Keyport', NULL, 'keyport', 'US', 1, 40.4331600000, -74.1995900000), (1119545, 1001429, 'Keyser', NULL, 'keyser', 'US', 1, 39.4409300000, -78.9739200000), (1119546, 1001436, 'Keystone', NULL, 'keystone', 'US', 1, 28.1558500000, -82.6212100000), (1119547, 1001450, 'Keystone', NULL, 'keystone', 'US', 1, 39.5994300000, -105.9872400000), (1119548, 1001436, 'Keystone Heights', NULL, 'keystone-heights', 'US', 1, 29.7860800000, -82.0314900000), (1119549, 1001451, 'Keytesville', NULL, 'keytesville', 'US', 1, 39.4344700000, -92.9382500000), (1119550, 1001452, 'Kiantone', NULL, 'kiantone', 'US', 1, 42.0220000000, -79.1981000000), (1119551, 1001443, 'Kiawah Island', NULL, 'kiawah-island', 'US', 1, 32.6082400000, -80.0848200000), (1119552, 1001418, 'Kidder County', NULL, 'kidder-county', 'US', 1, 46.9801400000, -99.7800900000), (1119553, 1001421, 'Kiefer', NULL, 'kiefer', 'US', 1, 35.9448200000, -96.0652800000), (1119554, 1001441, 'Kiel', NULL, 'kiel', 'US', 1, 43.9124900000, -88.0356500000), (1119555, 1001425, 'Kildeer', NULL, 'kildeer', 'US', 1, 42.1705800000, -88.0478500000), (1119556, 1001407, 'Kilgore', NULL, 'kilgore', 'US', 1, 32.3862600000, -94.8757700000), (1119557, 1001447, 'Kill Devil Hills', NULL, 'kill-devil-hills', 'US', 1, 36.0307200000, -75.6760100000), (1119558, 1001418, 'Killdeer', NULL, 'killdeer', 'US', 1, 47.3719600000, -102.7540800000), (1119559, 1001407, 'Killeen', NULL, 'killeen', 'US', 1, 31.1171200000, -97.7278000000), (1119560, 1001457, 'Killian', NULL, 'killian', 'US', 1, 30.3588100000, -90.5862000000), (1119561, 1001435, 'Killingly Center', NULL, 'killingly-center', 'US', 1, 41.8387100000, -71.8692400000), (1119562, 1001426, 'Kilmanagh', NULL, 'kilmanagh', 'US', 1, 43.7561300000, -83.3569000000), (1119563, 1001427, 'Kilmarnock', NULL, 'kilmarnock', 'US', 1, 37.7104100000, -76.3796700000), (1119564, 1001430, 'Kiln', NULL, 'kiln', 'US', 1, 30.4090800000, -89.4350500000), (1119565, 1001454, 'Kimball', NULL, 'kimball', 'US', 1, 35.0478600000, -85.6719100000), (1119566, 1001408, 'Kimball', NULL, 'kimball', 'US', 1, 41.2358100000, -103.6630000000), (1119567, 1001408, 'Kimball County', NULL, 'kimball-county', 'US', 1, 41.1976600000, -103.7149500000), (1119568, 1001451, 'Kimberling City', NULL, 'kimberling-city', 'US', 1, 36.6334000000, -93.4168500000), (1119569, 1001456, 'Kimberly', NULL, 'kimberly', 'US', 1, 33.7734400000, -86.8138800000), (1119570, 1001441, 'Kimberly', NULL, 'kimberly', 'US', 1, 44.2722100000, -88.3390000000), (1119571, 1001460, 'Kimberly', NULL, 'kimberly', 'US', 1, 42.5338000000, -114.3647600000), (1119572, 1001407, 'Kimble County', NULL, 'kimble-county', 'US', 1, 30.4867800000, -99.7487000000), (1119573, 1001425, 'Kincaid', NULL, 'kincaid', 'US', 1, 39.5886600000, -89.4145400000), (1119574, 1001457, 'Kinder', NULL, 'kinder', 'US', 1, 30.4854800000, -92.8507000000), (1119575, 1001452, 'Kinderhook', NULL, 'kinderhook', 'US', 1, 42.3953600000, -73.6979000000), (1119576, 1001447, 'King', NULL, 'king', 'US', 1, 36.2806900000, -80.3592200000), (1119577, 1001441, 'King', NULL, 'king', 'US', 1, 44.3374800000, -89.1417800000), (1119578, 1001451, 'King City', NULL, 'king-city', 'US', 1, 40.0513800000, -94.5241200000), (1119579, 1001416, 'King City', NULL, 'king-city', 'US', 1, 36.2127400000, -121.1260300000), (1119580, 1001415, 'King City', NULL, 'king-city', 'US', 1, 45.4026200000, -122.8039900000), (1119581, 1001407, 'King County', NULL, 'king-county', 'US', 1, 33.6164800000, -100.2558500000), (1119582, 1001462, 'King County', NULL, 'king-county', 'US', 1, 47.4908400000, -121.8358300000), (1119583, 1001400, 'King Cove', NULL, 'king-cove', 'US', 1, 55.0608700000, -162.3185300000), (1119584, 1001427, 'King George', NULL, 'king-george', 'US', 1, 38.2681800000, -77.1844200000), (1119585, 1001427, 'King George County', NULL, 'king-george-county', 'US', 1, 38.2737400000, -77.1565100000), (1119586, 1001427, 'King William', NULL, 'king-william', 'US', 1, 37.6873600000, -77.0135800000), (1119587, 1001427, 'King William County', NULL, 'king-william-county', 'US', 1, 37.7066000000, -77.0883900000), (1119588, 1001427, 'King and Queen County', NULL, 'king-and-queen-county', 'US', 1, 37.7186200000, -76.8952700000), (1119589, 1001427, 'King and Queen Court House', NULL, 'king-and-queen-court-house', 'US', 1, 37.6698600000, -76.8774600000), (1119590, 1001422, 'King of Prussia', NULL, 'king-of-prussia', 'US', 1, 40.0892700000, -75.3960200000), (1119591, 1001453, 'Kingfield', NULL, 'kingfield', 'US', 1, 44.9592200000, -70.1539500000), (1119592, 1001421, 'Kingfisher', NULL, 'kingfisher', 'US', 1, 35.8614300000, -97.9317200000), (1119593, 1001421, 'Kingfisher County', NULL, 'kingfisher-county', 'US', 1, 35.9453900000, -97.9421100000), (1119594, 1001406, 'Kingman', NULL, 'kingman', 'US', 1, 37.6458500000, -98.1136700000), (1119595, 1001434, 'Kingman', NULL, 'kingman', 'US', 1, 35.1894400000, -114.0530100000), (1119596, 1001406, 'Kingman County', NULL, 'kingman-county', 'US', 1, 37.5588800000, -98.1363300000), (1119597, 1001455, 'Kings Bay Base', NULL, 'kings-bay-base', 'US', 1, 30.7983600000, -81.5658900000), (1119598, 1001416, 'Kings Beach', NULL, 'kings-beach', 'US', 1, 39.2376800000, -120.0265800000), (1119599, 1001452, 'Kings Bridge', NULL, 'kings-bridge', 'US', 1, 40.8787100000, -73.9051400000), (1119600, 1001416, 'Kings County', NULL, 'kings-county', 'US', 1, 36.0753600000, -119.8155000000), (1119601, 1001452, 'Kings County', NULL, 'kings-county', 'US', 1, 40.6343900000, -73.9502700000), (1119602, 1001447, 'Kings Grant', NULL, 'kings-grant', 'US', 1, 34.2629500000, -77.8636000000), (1119603, 1001447, 'Kings Mountain', NULL, 'kings-mountain', 'US', 1, 35.2451300000, -81.3411900000), (1119604, 1001427, 'Kings Park', NULL, 'kings-park', 'US', 1, 38.8062200000, -77.2433200000), (1119605, 1001452, 'Kings Park', NULL, 'kings-park', 'US', 1, 40.8862100000, -73.2573400000), (1119606, 1001427, 'Kings Park West', NULL, 'kings-park-west', 'US', 1, 38.8144300000, -77.2958200000), (1119607, 1001436, 'Kings Point', NULL, 'kings-point', 'US', 1, 26.4453500000, -80.1397700000), (1119608, 1001452, 'Kings Point', NULL, 'kings-point', 'US', 1, 40.8198200000, -73.7351300000), (1119609, 1001416, 'Kingsburg', NULL, 'kingsburg', 'US', 1, 36.5138400000, -119.5540200000), (1119610, 1001458, 'Kingsbury', NULL, 'kingsbury', 'US', 1, 38.9771300000, -119.9068500000), (1119611, 1001445, 'Kingsbury County', NULL, 'kingsbury-county', 'US', 1, 44.3695900000, -97.4914800000), (1119612, 1001426, 'Kingsford', NULL, 'kingsford', 'US', 1, 45.7949600000, -88.0720700000), (1119613, 1001440, 'Kingsford Heights', NULL, 'kingsford-heights', 'US', 1, 41.4806000000, -86.6916900000), (1119614, 1001462, 'Kingsgate', NULL, 'kingsgate', 'US', 1, 47.7270400000, -122.1795700000); INSERT INTO `[[dbprefix]]t_city` VALUES (1119615, 1001455, 'Kingsland', NULL, 'kingsland', 'US', 1, 30.7999600000, -81.6898300000), (1119616, 1001407, 'Kingsland', NULL, 'kingsland', 'US', 1, 30.6582400000, -98.4405800000), (1119617, 1001459, 'Kingsley', NULL, 'kingsley', 'US', 1, 42.5883200000, -95.9675200000), (1119618, 1001426, 'Kingsley', NULL, 'kingsley', 'US', 1, 44.5847300000, -85.5359000000), (1119619, 1001454, 'Kingsport', NULL, 'kingsport', 'US', 1, 36.5484300000, -82.5618200000), (1119620, 1001451, 'Kingston', NULL, 'kingston', 'US', 1, 39.6441700000, -94.0385500000), (1119621, 1001454, 'Kingston', NULL, 'kingston', 'US', 1, 35.8809100000, -84.5085400000), (1119622, 1001421, 'Kingston', NULL, 'kingston', 'US', 1, 33.9987100000, -96.7197200000), (1119623, 1001433, 'Kingston', NULL, 'kingston', 'US', 1, 41.9945500000, -70.7244800000), (1119624, 1001425, 'Kingston', NULL, 'kingston', 'US', 1, 42.0997500000, -88.7589800000), (1119625, 1001404, 'Kingston', NULL, 'kingston', 'US', 1, 42.9364800000, -71.0533900000), (1119626, 1001417, 'Kingston', NULL, 'kingston', 'US', 1, 40.3753800000, -74.6134900000), (1119627, 1001452, 'Kingston', NULL, 'kingston', 'US', 1, 41.9270400000, -73.9973600000), (1119628, 1001422, 'Kingston', NULL, 'kingston', 'US', 1, 41.2617500000, -75.8968600000), (1119629, 1001461, 'Kingston', NULL, 'kingston', 'US', 1, 41.4803800000, -71.5225600000), (1119630, 1001462, 'Kingston', NULL, 'kingston', 'US', 1, 47.7985000000, -122.4980600000), (1119631, 1001417, 'Kingston Estates', NULL, 'kingston-estates', 'US', 1, 39.9237200000, -74.9879500000), (1119632, 1001454, 'Kingston Springs', NULL, 'kingston-springs', 'US', 1, 36.1020000000, -87.1150100000), (1119633, 1001401, 'Kingstown', NULL, 'kingstown', 'US', 1, 39.2048300000, -76.0513300000), (1119634, 1001443, 'Kingstree', NULL, 'kingstree', 'US', 1, 33.6676600000, -79.8306300000), (1119635, 1001401, 'Kingsville', NULL, 'kingsville', 'US', 1, 39.4487200000, -76.4177400000), (1119636, 1001407, 'Kingsville', NULL, 'kingsville', 'US', 1, 27.5158700000, -97.8561100000), (1119637, 1001429, 'Kingwood', NULL, 'kingwood', 'US', 1, 39.4717600000, -79.6833900000), (1119638, 1001407, 'Kingwood Area', NULL, 'kingwood-area', 'US', 1, 30.0335500000, -95.2610400000), (1119639, 1001417, 'Kinnelon', NULL, 'kinnelon', 'US', 1, 41.0017600000, -74.3671000000), (1119640, 1001407, 'Kinney County', NULL, 'kinney-county', 'US', 1, 29.3502100000, -100.4179500000), (1119641, 1001456, 'Kinsey', NULL, 'kinsey', 'US', 1, 31.2990600000, -85.3443800000), (1119642, 1001406, 'Kinsley', NULL, 'kinsley', 'US', 1, 37.9230700000, -99.4098400000), (1119643, 1001447, 'Kinston', NULL, 'kinston', 'US', 1, 35.2626600000, -77.5816400000), (1119644, 1001406, 'Kiowa', NULL, 'kiowa', 'US', 1, 37.0172500000, -98.4853500000), (1119645, 1001450, 'Kiowa', NULL, 'kiowa', 'US', 1, 39.3472100000, -104.4644100000), (1119646, 1001406, 'Kiowa County', NULL, 'kiowa-county', 'US', 1, 37.5582600000, -99.2860500000), (1119647, 1001421, 'Kiowa County', NULL, 'kiowa-county', 'US', 1, 34.9163700000, -98.9808700000), (1119648, 1001450, 'Kiowa County', NULL, 'kiowa-county', 'US', 1, 38.4326900000, -102.7403400000), (1119649, 1001407, 'Kirby', NULL, 'kirby', 'US', 1, 29.4632900000, -98.3855700000), (1119650, 1001407, 'Kirbyville', NULL, 'kirbyville', 'US', 1, 30.6604800000, -93.8926800000), (1119651, 1001425, 'Kirkland', NULL, 'kirkland', 'US', 1, 42.0925300000, -88.8512100000), (1119652, 1001462, 'Kirkland', NULL, 'kirkland', 'US', 1, 47.6814900000, -122.2087400000), (1119653, 1001451, 'Kirksville', NULL, 'kirksville', 'US', 1, 40.1947500000, -92.5832500000), (1119654, 1001451, 'Kirkwood', NULL, 'kirkwood', 'US', 1, 38.5833900000, -90.4067800000), (1119655, 1001423, 'Kirtland', NULL, 'kirtland', 'US', 1, 36.7341700000, -108.3598000000), (1119656, 1001452, 'Kiryas Joel', NULL, 'kiryas-joel', 'US', 1, 41.3420400000, -74.1679200000), (1119657, 1001451, 'Kissee Mills', NULL, 'kissee-mills', 'US', 1, 36.6836700000, -93.0499000000), (1119658, 1001436, 'Kissimmee', NULL, 'kissimmee', 'US', 1, 28.3046800000, -81.4166700000), (1119659, 1001450, 'Kit Carson County', NULL, 'kit-carson-county', 'US', 1, 39.3054400000, -102.6028900000), (1119660, 1001462, 'Kitsap County', NULL, 'kitsap-county', 'US', 1, 47.6398300000, -122.6490000000), (1119661, 1001422, 'Kittanning', NULL, 'kittanning', 'US', 1, 40.8164500000, -79.5219900000), (1119662, 1001453, 'Kittery', NULL, 'kittery', 'US', 1, 43.0881400000, -70.7361600000), (1119663, 1001453, 'Kittery Point', NULL, 'kittery-point', 'US', 1, 43.0834200000, -70.7078300000), (1119664, 1001462, 'Kittitas', NULL, 'kittitas', 'US', 1, 46.9831800000, -120.4170100000), (1119665, 1001462, 'Kittitas County', NULL, 'kittitas-county', 'US', 1, 47.1241700000, -120.6797200000), (1119666, 1001450, 'Kittredge', NULL, 'kittredge', 'US', 1, 39.6547100000, -105.2997100000), (1119667, 1001420, 'Kittson County', NULL, 'kittson-county', 'US', 1, 48.7766300000, -96.7828500000), (1119668, 1001447, 'Kitty Hawk', NULL, 'kitty-hawk', 'US', 1, 36.0646100000, -75.7057300000), (1119669, 1001462, 'Klahanie', NULL, 'klahanie', 'US', 1, 47.4312100000, -122.4365200000), (1119670, 1001415, 'Klamath County', NULL, 'klamath-county', 'US', 1, 42.6863400000, -121.6501300000), (1119671, 1001415, 'Klamath Falls', NULL, 'klamath-falls', 'US', 1, 42.2248700000, -121.7816700000), (1119672, 1001407, 'Kleberg County', NULL, 'kleberg-county', 'US', 1, 27.4267100000, -97.6683900000), (1119673, 1001462, 'Klickitat County', NULL, 'klickitat-county', 'US', 1, 45.8737800000, -120.7892600000), (1119674, 1001447, 'Knightdale', NULL, 'knightdale', 'US', 1, 35.7876500000, -78.4805600000), (1119675, 1001416, 'Knightsen', NULL, 'knightsen', 'US', 1, 37.9688100000, -121.6680100000), (1119676, 1001440, 'Knightstown', NULL, 'knightstown', 'US', 1, 39.7956000000, -85.5263600000), (1119677, 1001400, 'Knik-Fairview', NULL, 'knik-fairview', 'US', 1, 61.5126200000, -149.6001200000), (1119678, 1001451, 'Knob Noster', NULL, 'knob-noster', 'US', 1, 38.7666800000, -93.5585500000), (1119679, 1001425, 'Knollwood', NULL, 'knollwood', 'US', 1, 42.2861300000, -87.8856300000), (1119680, 1001419, 'Knott County', NULL, 'knott-county', 'US', 1, 37.3540500000, -82.9541300000), (1119681, 1001419, 'Knottsville', NULL, 'knottsville', 'US', 1, 37.7717200000, -86.9041600000), (1119682, 1001440, 'Knox', NULL, 'knox', 'US', 1, 41.2958800000, -86.6250100000), (1119683, 1001422, 'Knox', NULL, 'knox', 'US', 1, 41.2345100000, -79.5372700000), (1119684, 1001407, 'Knox City', NULL, 'knox-city', 'US', 1, 33.4181500000, -99.8189800000), (1119685, 1001440, 'Knox County', NULL, 'knox-county', 'US', 1, 38.6890900000, -87.4180100000), (1119686, 1001419, 'Knox County', NULL, 'knox-county', 'US', 1, 36.8906700000, -83.8540400000), (1119687, 1001454, 'Knox County', NULL, 'knox-county', 'US', 1, 35.9932200000, -83.9370900000), (1119688, 1001407, 'Knox County', NULL, 'knox-county', 'US', 1, 33.6061300000, -99.7414300000), (1119689, 1001425, 'Knox County', NULL, 'knox-county', 'US', 1, 40.9318200000, -90.2132600000), (1119690, 1001453, 'Knox County', NULL, 'knox-county', 'US', 1, 44.0757500000, -69.1259800000), (1119691, 1001451, 'Knox County', NULL, 'knox-county', 'US', 1, 40.1282500000, -92.1480700000), (1119692, 1001408, 'Knox County', NULL, 'knox-county', 'US', 1, 42.6367800000, -97.8919000000), (1119693, 1001455, 'Knoxville', NULL, 'knoxville', 'US', 1, 32.7243100000, -83.9976900000), (1119694, 1001454, 'Knoxville', NULL, 'knoxville', 'US', 1, 35.9606400000, -83.9207400000), (1119695, 1001459, 'Knoxville', NULL, 'knoxville', 'US', 1, 41.3208300000, -93.1093700000), (1119696, 1001425, 'Knoxville', NULL, 'knoxville', 'US', 1, 40.9083700000, -90.2848500000), (1119697, 1001411, 'Ko Olina', NULL, 'ko-olina', 'US', 1, 21.3399300000, -158.1256200000), (1119698, 1001400, 'Kodiak', NULL, 'kodiak', 'US', 1, 57.7885200000, -152.4053300000), (1119699, 1001400, 'Kodiak Island Borough', NULL, 'kodiak-island-borough', 'US', 1, 57.3333300000, -153.3333300000), (1119700, 1001400, 'Kodiak Station', NULL, 'kodiak-station', 'US', 1, 57.7658700000, -152.6000400000), (1119701, 1001441, 'Kohler', NULL, 'kohler', 'US', 1, 43.7391600000, -87.7817500000), (1119702, 1001440, 'Kokomo', NULL, 'kokomo', 'US', 1, 40.4864300000, -86.1336000000), (1119703, 1001411, 'Koloa', NULL, 'koloa', 'US', 1, 21.9069000000, -159.4699400000), (1119704, 1001421, 'Konawa', NULL, 'konawa', 'US', 1, 34.9595300000, -96.7528000000), (1119705, 1001420, 'Koochiching County', NULL, 'koochiching-county', 'US', 1, 48.2452700000, -93.7833700000), (1119706, 1001440, 'Koontz Lake', NULL, 'koontz-lake', 'US', 1, 41.4181000000, -86.4858500000), (1119707, 1001460, 'Kootenai County', NULL, 'kootenai-county', 'US', 1, 47.6745600000, -116.7000100000), (1119708, 1001416, 'Koreatown', NULL, 'koreatown', 'US', 1, 34.0577900000, -118.3009100000), (1119709, 1001430, 'Kosciusko', NULL, 'kosciusko', 'US', 1, 33.0580000000, -89.5895600000), (1119710, 1001440, 'Kosciusko County', NULL, 'kosciusko-county', 'US', 1, 41.2441000000, -85.8607200000), (1119711, 1001459, 'Kossuth County', NULL, 'kossuth-county', 'US', 1, 43.2041300000, -94.2067200000), (1119712, 1001400, 'Kotzebue', NULL, 'kotzebue', 'US', 1, 66.8984600000, -162.5980900000), (1119713, 1001407, 'Kountze', NULL, 'kountze', 'US', 1, 30.3716000000, -94.3124100000), (1119714, 1001440, 'Kouts', NULL, 'kouts', 'US', 1, 41.3167100000, -87.0258600000), (1119715, 1001421, 'Krebs', NULL, 'krebs', 'US', 1, 34.9278700000, -95.7158200000), (1119716, 1001450, 'Kremmling', NULL, 'kremmling', 'US', 1, 40.0588700000, -106.3889200000), (1119717, 1001441, 'Kronenwetter', NULL, 'kronenwetter', 'US', 1, 44.8221900000, -89.5904000000), (1119718, 1001457, 'Krotz Springs', NULL, 'krotz-springs', 'US', 1, 30.5368600000, -91.7528900000), (1119719, 1001407, 'Krugerville', NULL, 'krugerville', 'US', 1, 33.2815100000, -96.9905600000), (1119720, 1001407, 'Krum', NULL, 'krum', 'US', 1, 33.2615100000, -97.2380700000), (1119721, 1001411, 'Kualapu‘u', NULL, 'kualapu-u', 'US', 1, 21.1530600000, -157.0367700000), (1119722, 1001411, 'Kula', NULL, 'kula', 'US', 1, 20.7909400000, -156.3269500000), (1119723, 1001422, 'Kulpmont', NULL, 'kulpmont', 'US', 1, 40.7934200000, -76.4724500000), (1119724, 1001422, 'Kulpsville', NULL, 'kulpsville', 'US', 1, 40.2428800000, -75.3365600000), (1119725, 1001460, 'Kuna', NULL, 'kuna', 'US', 1, 43.4918300000, -116.4201200000), (1119726, 1001447, 'Kure Beach', NULL, 'kure-beach', 'US', 1, 33.9968400000, -77.9072100000), (1119727, 1001411, 'Kurtistown', NULL, 'kurtistown', 'US', 1, 19.6036100000, -155.0572200000), (1119728, 1001422, 'Kutztown', NULL, 'kutztown', 'US', 1, 40.5173200000, -75.7774200000), (1119729, 1001407, 'Kyle', NULL, 'kyle', 'US', 1, 29.9891100000, -97.8772300000), (1119730, 1001411, 'Kā‘anapali', NULL, 'ka-anapali', 'US', 1, 20.9288100000, -156.6942200000), (1119731, 1001411, 'Kēōkea', NULL, 'keokea', 'US', 1, 20.7071100000, -156.3544600000), (1119732, 1001411, 'Kīhei', NULL, 'kihei', 'US', 1, 20.7646200000, -156.4457800000), (1119733, 1001411, 'Kīlauea', NULL, 'kilauea', 'US', 1, 22.2120800000, -159.4134200000), (1119734, 1001426, 'L''Anse', NULL, 'l-anse', 'US', 1, 46.7566000000, -88.4529100000), (1119735, 1001407, 'La Blanca', NULL, 'la-blanca', 'US', 1, 26.2928500000, -98.0377800000), (1119736, 1001416, 'La Cañada Flintridge', NULL, 'la-canada-flintridge', 'US', 1, 34.1991700000, -118.1878500000), (1119737, 1001419, 'La Center', NULL, 'la-center', 'US', 1, 37.0767200000, -88.9736800000), (1119738, 1001462, 'La Center', NULL, 'la-center', 'US', 1, 45.8623400000, -122.6703800000), (1119739, 1001423, 'La Cienega', NULL, 'la-cienega', 'US', 1, 35.5628100000, -106.1308600000), (1119740, 1001407, 'La Coste', NULL, 'la-coste', 'US', 1, 29.3107900000, -98.8100300000), (1119741, 1001420, 'La Crescent', NULL, 'la-crescent', 'US', 1, 43.8280200000, -91.3040300000), (1119742, 1001416, 'La Crescenta-Montrose', NULL, 'la-crescenta-montrose', 'US', 1, 34.2321600000, -118.2352900000), (1119743, 1001406, 'La Crosse', NULL, 'la-crosse', 'US', 1, 38.5314000000, -99.3087200000), (1119744, 1001441, 'La Crosse', NULL, 'la-crosse', 'US', 1, 43.8013600000, -91.2395800000), (1119745, 1001441, 'La Crosse County', NULL, 'la-crosse-county', 'US', 1, 43.9065300000, -91.1152200000), (1119746, 1001406, 'La Cygne', NULL, 'la-cygne', 'US', 1, 38.3500200000, -94.7613500000), (1119747, 1001407, 'La Feria', NULL, 'la-feria', 'US', 1, 26.1589600000, -97.8238900000), (1119748, 1001415, 'La Grande', NULL, 'la-grande', 'US', 1, 45.3245800000, -118.0877200000), (1119749, 1001419, 'La Grange', NULL, 'la-grange', 'US', 1, 38.4075700000, -85.3788500000), (1119750, 1001447, 'La Grange', NULL, 'la-grange', 'US', 1, 35.3068300000, -77.7880300000), (1119751, 1001407, 'La Grange', NULL, 'la-grange', 'US', 1, 29.9055000000, -96.8766500000), (1119752, 1001425, 'La Grange', NULL, 'la-grange', 'US', 1, 41.8050300000, -87.8692300000), (1119753, 1001425, 'La Grange Park', NULL, 'la-grange-park', 'US', 1, 41.8347500000, -87.8617300000), (1119754, 1001407, 'La Grulla', NULL, 'la-grulla', 'US', 1, 26.2695100000, -98.6472500000), (1119755, 1001416, 'La Habra', NULL, 'la-habra', 'US', 1, 33.9319600000, -117.9461700000), (1119756, 1001416, 'La Habra Heights', NULL, 'la-habra-heights', 'US', 1, 33.9608500000, -117.9506200000), (1119757, 1001425, 'La Harpe', NULL, 'la-harpe', 'US', 1, 40.5833700000, -90.9693100000), (1119758, 1001407, 'La Homa', NULL, 'la-homa', 'US', 1, 26.2500700000, -98.3636300000), (1119759, 1001423, 'La Huerta', NULL, 'la-huerta', 'US', 1, 32.4429000000, -104.2210600000), (1119760, 1001416, 'La Jolla', NULL, 'la-jolla', 'US', 1, 32.8472700000, -117.2742000000), (1119761, 1001407, 'La Joya', NULL, 'la-joya', 'US', 1, 26.2470200000, -98.4814100000), (1119762, 1001450, 'La Junta', NULL, 'la-junta', 'US', 1, 37.9850100000, -103.5438300000), (1119763, 1001423, 'La Luz', NULL, 'la-luz', 'US', 1, 32.9778700000, -105.9419300000), (1119764, 1001407, 'La Marque', NULL, 'la-marque', 'US', 1, 29.3685700000, -94.9713100000), (1119765, 1001416, 'La Mesa', NULL, 'la-mesa', 'US', 1, 32.7678300000, -117.0230800000), (1119766, 1001423, 'La Mesilla', NULL, 'la-mesilla', 'US', 1, 35.9483600000, -106.0705800000), (1119767, 1001416, 'La Mirada', NULL, 'la-mirada', 'US', 1, 33.9172400000, -118.0120100000), (1119768, 1001451, 'La Monte', NULL, 'la-monte', 'US', 1, 38.7741800000, -93.4252100000), (1119769, 1001416, 'La Palma', NULL, 'la-palma', 'US', 1, 33.8464000000, -118.0467300000), (1119770, 1001407, 'La Paloma', NULL, 'la-paloma', 'US', 1, 26.0459100000, -97.6674900000), (1119771, 1001434, 'La Paz County', NULL, 'la-paz-county', 'US', 1, 33.7292600000, -113.9813400000), (1119772, 1001415, 'La Pine', NULL, 'la-pine', 'US', 1, 43.6704000000, -121.5036400000), (1119773, 1001401, 'La Plata', NULL, 'la-plata', 'US', 1, 38.5292900000, -76.9752500000), (1119774, 1001451, 'La Plata', NULL, 'la-plata', 'US', 1, 40.0233700000, -92.4915800000), (1119775, 1001450, 'La Plata County', NULL, 'la-plata-county', 'US', 1, 37.2865600000, -107.8433400000), (1119776, 1001407, 'La Porte', NULL, 'la-porte', 'US', 1, 29.6657800000, -95.0193700000), (1119777, 1001440, 'La Porte', NULL, 'la-porte', 'US', 1, 41.6077400000, -86.7138900000), (1119778, 1001459, 'La Porte City', NULL, 'la-porte-city', 'US', 1, 42.3149900000, -92.1921300000), (1119779, 1001416, 'La Presa', NULL, 'la-presa', 'US', 1, 32.7081100000, -116.9972500000), (1119780, 1001407, 'La Pryor', NULL, 'la-pryor', 'US', 1, 28.9410800000, -99.8497800000), (1119781, 1001423, 'La Puebla', NULL, 'la-puebla', 'US', 1, 35.9891900000, -105.9964100000), (1119782, 1001416, 'La Puente', NULL, 'la-puente', 'US', 1, 34.0200100000, -117.9495100000), (1119783, 1001416, 'La Quinta', NULL, 'la-quinta', 'US', 1, 33.6633600000, -116.3100100000), (1119784, 1001416, 'La Riviera', NULL, 'la-riviera', 'US', 1, 38.5668500000, -121.3569000000), (1119785, 1001425, 'La Salle', NULL, 'la-salle', 'US', 1, 41.3333700000, -89.0917500000), (1119786, 1001450, 'La Salle', NULL, 'la-salle', 'US', 1, 40.3488700000, -104.7019100000), (1119787, 1001407, 'La Salle County', NULL, 'la-salle-county', 'US', 1, 28.3450700000, -99.0996600000), (1119788, 1001457, 'La Salle Parish', NULL, 'la-salle-parish', 'US', 1, 31.6767300000, -92.1604400000), (1119789, 1001416, 'La Selva Beach', NULL, 'la-selva-beach', 'US', 1, 36.9366200000, -121.8646800000), (1119790, 1001423, 'La Union', NULL, 'la-union', 'US', 1, 31.9506600000, -106.6616600000), (1119791, 1001401, 'La Vale', NULL, 'la-vale', 'US', 1, 39.6556400000, -78.8105800000), (1119792, 1001454, 'La Vergne', NULL, 'la-vergne', 'US', 1, 36.0156200000, -86.5819400000), (1119793, 1001416, 'La Verne', NULL, 'la-verne', 'US', 1, 34.1008400000, -117.7678400000), (1119794, 1001407, 'La Vernia', NULL, 'la-vernia', 'US', 1, 29.3563500000, -98.1155600000), (1119795, 1001407, 'La Villa', NULL, 'la-villa', 'US', 1, 26.2986800000, -97.9286100000), (1119796, 1001408, 'La Vista', NULL, 'la-vista', 'US', 1, 41.1838900000, -96.0311300000), (1119797, 1001451, 'LaBarque Creek', NULL, 'labarque-creek', 'US', 1, 38.4170100000, -90.6798900000), (1119798, 1001436, 'LaBelle', NULL, 'labelle', 'US', 1, 26.7617300000, -81.4384100000), (1119799, 1001455, 'LaFayette', NULL, 'lafayette', 'US', 1, 34.7048000000, -85.2819000000), (1119800, 1001454, 'LaFollette', NULL, 'lafollette', 'US', 1, 36.3828600000, -84.1199300000), (1119801, 1001455, 'LaGrange', NULL, 'lagrange', 'US', 1, 33.0392900000, -85.0313300000), (1119802, 1001440, 'LaGrange County', NULL, 'lagrange-county', 'US', 1, 41.6426100000, -85.4265000000), (1119803, 1001418, 'LaMoure County', NULL, 'lamoure-county', 'US', 1, 46.4569100000, -98.5354600000), (1119804, 1001440, 'LaPorte', NULL, 'laporte', 'US', 1, 41.6106000000, -86.7225200000), (1119805, 1001440, 'LaPorte County', NULL, 'laporte-county', 'US', 1, 41.5490200000, -86.7423700000), (1119806, 1001425, 'LaSalle County', NULL, 'lasalle-county', 'US', 1, 41.3439900000, -88.8859500000), (1119807, 1001414, 'LaVerkin', NULL, 'laverkin', 'US', 1, 37.2010900000, -113.2696700000), (1119808, 1001457, 'Labadieville', NULL, 'labadieville', 'US', 1, 29.8374300000, -90.9562100000), (1119809, 1001406, 'Labette County', NULL, 'labette-county', 'US', 1, 37.1913300000, -95.2975800000), (1119810, 1001441, 'Lac du Flambeau', NULL, 'lac-du-flambeau', 'US', 1, 45.9696700000, -89.8921000000), (1119811, 1001420, 'Lac qui Parle County', NULL, 'lac-qui-parle-county', 'US', 1, 44.9954900000, -96.1734800000), (1119812, 1001462, 'Lacey', NULL, 'lacey', 'US', 1, 47.0342600000, -122.8231900000), (1119813, 1001452, 'Lackawanna', NULL, 'lackawanna', 'US', 1, 42.8256100000, -78.8233700000), (1119814, 1001422, 'Lackawanna County', NULL, 'lackawanna-county', 'US', 1, 41.4367900000, -75.6092000000), (1119815, 1001407, 'Lackland Air Force Base', NULL, 'lackland-air-force-base', 'US', 1, 29.3866300000, -98.6179700000), (1119816, 1001451, 'Laclede County', NULL, 'laclede-county', 'US', 1, 37.6583200000, -92.5903500000), (1119817, 1001457, 'Lacombe', NULL, 'lacombe', 'US', 1, 30.3135300000, -89.9431300000), (1119818, 1001425, 'Lacon', NULL, 'lacon', 'US', 1, 41.0247600000, -89.4112000000), (1119819, 1001404, 'Laconia', NULL, 'laconia', 'US', 1, 43.5278500000, -71.4703500000), (1119820, 1001436, 'Lacoochee', NULL, 'lacoochee', 'US', 1, 28.4658300000, -82.1720300000), (1119821, 1001407, 'Lacy-Lakeview', NULL, 'lacy-lakeview', 'US', 1, 31.6293300000, -97.1027800000), (1119822, 1001425, 'Ladd', NULL, 'ladd', 'US', 1, 41.3825300000, -89.2189700000), (1119823, 1001416, 'Ladera', NULL, 'ladera', 'US', 1, 37.3999400000, -122.1983000000), (1119824, 1001416, 'Ladera Heights', NULL, 'ladera-heights', 'US', 1, 33.9941800000, -118.3753500000), (1119825, 1001416, 'Ladera Ranch', NULL, 'ladera-ranch', 'US', 1, 33.5708600000, -117.6356100000), (1119826, 1001456, 'Ladonia', NULL, 'ladonia', 'US', 1, 32.4682000000, -85.0791000000), (1119827, 1001443, 'Ladson', NULL, 'ladson', 'US', 1, 32.9857300000, -80.1098100000), (1119828, 1001451, 'Ladue', NULL, 'ladue', 'US', 1, 38.6497700000, -90.3806700000), (1119829, 1001436, 'Lady Lake', NULL, 'lady-lake', 'US', 1, 28.9174900000, -81.9228600000), (1119830, 1001441, 'Ladysmith', NULL, 'ladysmith', 'US', 1, 45.4630200000, -91.1040400000), (1119831, 1001456, 'Lafayette', NULL, 'lafayette', 'US', 1, 32.8998500000, -85.4010600000), (1119832, 1001457, 'Lafayette', NULL, 'lafayette', 'US', 1, 30.2240900000, -92.0198400000), (1119833, 1001454, 'Lafayette', NULL, 'lafayette', 'US', 1, 36.5211600000, -86.0263700000), (1119834, 1001440, 'Lafayette', NULL, 'lafayette', 'US', 1, 40.4167000000, -86.8752900000), (1119835, 1001416, 'Lafayette', NULL, 'lafayette', 'US', 1, 37.8857600000, -122.1180200000), (1119836, 1001450, 'Lafayette', NULL, 'lafayette', 'US', 1, 39.9936000000, -105.0897100000), (1119837, 1001415, 'Lafayette', NULL, 'lafayette', 'US', 1, 45.2442800000, -123.1148300000), (1119838, 1001444, 'Lafayette County', NULL, 'lafayette-county', 'US', 1, 33.2409800000, -93.6070400000), (1119839, 1001436, 'Lafayette County', NULL, 'lafayette-county', 'US', 1, 29.9855200000, -83.1810700000), (1119840, 1001451, 'Lafayette County', NULL, 'lafayette-county', 'US', 1, 39.0655900000, -93.7855400000), (1119841, 1001430, 'Lafayette County', NULL, 'lafayette-county', 'US', 1, 34.3567500000, -89.4849200000), (1119842, 1001441, 'Lafayette County', NULL, 'lafayette-county', 'US', 1, 42.6605000000, -90.1317200000), (1119843, 1001422, 'Lafayette Hill', NULL, 'lafayette-hill', 'US', 1, 40.0924500000, -75.2533000000), (1119844, 1001457, 'Lafayette Parish', NULL, 'lafayette-parish', 'US', 1, 30.2067700000, -92.0638800000), (1119845, 1001422, 'Laflin', NULL, 'laflin', 'US', 1, 41.2889700000, -75.8054700000), (1119846, 1001457, 'Lafourche Parish', NULL, 'lafourche-parish', 'US', 1, 29.5003300000, -90.4025900000), (1119847, 1001407, 'Lago Vista', NULL, 'lago-vista', 'US', 1, 30.4602000000, -97.9883500000), (1119848, 1001440, 'Lagrange', NULL, 'lagrange', 'US', 1, 41.6417200000, -85.4166500000), (1119849, 1001416, 'Laguna', NULL, 'laguna', 'US', 1, 38.4210200000, -121.4238400000), (1119850, 1001423, 'Laguna', NULL, 'laguna', 'US', 1, 35.0367100000, -107.3828200000), (1119851, 1001436, 'Laguna Beach', NULL, 'laguna-beach', 'US', 1, 30.2396500000, -85.9241000000), (1119852, 1001416, 'Laguna Beach', NULL, 'laguna-beach', 'US', 1, 33.5422500000, -117.7831100000), (1119853, 1001407, 'Laguna Heights', NULL, 'laguna-heights', 'US', 1, 26.0800800000, -97.2538600000), (1119854, 1001416, 'Laguna Hills', NULL, 'laguna-hills', 'US', 1, 33.6125200000, -117.7128300000), (1119855, 1001416, 'Laguna Niguel', NULL, 'laguna-niguel', 'US', 1, 33.5225300000, -117.7075500000), (1119856, 1001407, 'Laguna Park', NULL, 'laguna-park', 'US', 1, 31.8593200000, -97.3797400000), (1119857, 1001407, 'Laguna Vista', NULL, 'laguna-vista', 'US', 1, 26.1009100000, -97.2902500000), (1119858, 1001416, 'Laguna Woods', NULL, 'laguna-woods', 'US', 1, 33.6103000000, -117.7253300000), (1119859, 1001416, 'Lagunitas-Forest Knolls', NULL, 'lagunitas-forest-knolls', 'US', 1, 38.0179300000, -122.6912400000), (1119860, 1001411, 'Lahaina', NULL, 'lahaina', 'US', 1, 20.8742900000, -156.6766300000), (1119861, 1001426, 'Laingsburg', NULL, 'laingsburg', 'US', 1, 42.8903100000, -84.3513600000), (1119862, 1001436, 'Lake Alfred', NULL, 'lake-alfred', 'US', 1, 28.0919600000, -81.7234100000), (1119863, 1001445, 'Lake Andes', NULL, 'lake-andes', 'US', 1, 43.1563800000, -98.5414700000), (1119864, 1001401, 'Lake Arbor', NULL, 'lake-arbor', 'US', 1, 38.9078900000, -76.8296900000), (1119865, 1001453, 'Lake Arrowhead', NULL, 'lake-arrowhead', 'US', 1, 43.6636900000, -70.7347800000), (1119866, 1001416, 'Lake Arrowhead', NULL, 'lake-arrowhead', 'US', 1, 34.2483400000, -117.1892100000), (1119867, 1001457, 'Lake Arthur', NULL, 'lake-arthur', 'US', 1, 30.0807600000, -92.6715300000), (1119868, 1001427, 'Lake Barcroft', NULL, 'lake-barcroft', 'US', 1, 38.8478900000, -77.1558100000), (1119869, 1001425, 'Lake Barrington', NULL, 'lake-barrington', 'US', 1, 42.2125200000, -88.1525800000), (1119870, 1001436, 'Lake Belvedere Estates', NULL, 'lake-belvedere-estates', 'US', 1, 26.6892300000, -80.1333800000), (1119871, 1001425, 'Lake Bluff', NULL, 'lake-bluff', 'US', 1, 42.2789100000, -87.8342400000), (1119872, 1001407, 'Lake Brownwood', NULL, 'lake-brownwood', 'US', 1, 31.8357000000, -99.0078300000), (1119873, 1001436, 'Lake Butler', NULL, 'lake-butler', 'US', 1, 30.0227400000, -82.3395600000), (1119874, 1001425, 'Lake Camelot', NULL, 'lake-camelot', 'US', 1, 40.6306500000, -89.7421000000), (1119875, 1001452, 'Lake Carmel', NULL, 'lake-carmel', 'US', 1, 41.4614800000, -73.6709600000), (1119876, 1001425, 'Lake Catherine', NULL, 'lake-catherine', 'US', 1, 42.4791900000, -88.1334200000), (1119877, 1001457, 'Lake Charles', NULL, 'lake-charles', 'US', 1, 30.2130900000, -93.2044000000), (1119878, 1001444, 'Lake City', NULL, 'lake-city', 'US', 1, 35.8161900000, -90.4342700000), (1119879, 1001436, 'Lake City', NULL, 'lake-city', 'US', 1, 30.1896800000, -82.6392900000), (1119880, 1001455, 'Lake City', NULL, 'lake-city', 'US', 1, 33.6065000000, -84.3352000000), (1119881, 1001443, 'Lake City', NULL, 'lake-city', 'US', 1, 33.8710000000, -79.7553500000), (1119882, 1001459, 'Lake City', NULL, 'lake-city', 'US', 1, 42.2674800000, -94.7338700000), (1119883, 1001420, 'Lake City', NULL, 'lake-city', 'US', 1, 44.4496800000, -92.2682000000), (1119884, 1001426, 'Lake City', NULL, 'lake-city', 'US', 1, 44.3352900000, -85.2150500000), (1119885, 1001422, 'Lake City', NULL, 'lake-city', 'US', 1, 42.0142200000, -80.3453400000), (1119886, 1001450, 'Lake City', NULL, 'lake-city', 'US', 1, 38.0300000000, -107.3153300000), (1119887, 1001436, 'Lake Clarke Shores', NULL, 'lake-clarke-shores', 'US', 1, 26.6453400000, -80.0758800000), (1119888, 1001417, 'Lake Como', NULL, 'lake-como', 'US', 1, 40.1598400000, -74.0281900000), (1119889, 1001436, 'Lake County', NULL, 'lake-county', 'US', 1, 28.7614700000, -81.7113000000), (1119890, 1001454, 'Lake County', NULL, 'lake-county', 'US', 1, 36.3353800000, -89.4934700000), (1119891, 1001425, 'Lake County', NULL, 'lake-county', 'US', 1, 42.3494100000, -87.8617900000), (1119892, 1001440, 'Lake County', NULL, 'lake-county', 'US', 1, 41.4722100000, -87.3763700000), (1119893, 1001426, 'Lake County', NULL, 'lake-county', 'US', 1, 43.9900100000, -85.8017000000), (1119894, 1001420, 'Lake County', NULL, 'lake-county', 'US', 1, 47.5231700000, -91.4088500000), (1119895, 1001445, 'Lake County', NULL, 'lake-county', 'US', 1, 44.0220400000, -97.1293800000), (1119896, 1001416, 'Lake County', NULL, 'lake-county', 'US', 1, 39.0996500000, -122.7531800000), (1119897, 1001450, 'Lake County', NULL, 'lake-county', 'US', 1, 39.2023800000, -106.3448400000), (1119898, 1001446, 'Lake County', NULL, 'lake-county', 'US', 1, 47.6459400000, -114.0893500000), (1119899, 1001415, 'Lake County', NULL, 'lake-county', 'US', 1, 42.7933900000, -120.3874700000), (1119900, 1001420, 'Lake Crystal', NULL, 'lake-crystal', 'US', 1, 44.1058000000, -94.2188500000), (1119901, 1001440, 'Lake Dalecarlia', NULL, 'lake-dalecarlia', 'US', 1, 41.3308700000, -87.3947600000), (1119902, 1001407, 'Lake Dallas', NULL, 'lake-dallas', 'US', 1, 33.1192900000, -97.0255600000), (1119903, 1001441, 'Lake Delton', NULL, 'lake-delton', 'US', 1, 43.6010900000, -89.7937400000), (1119904, 1001407, 'Lake Dunlap', NULL, 'lake-dunlap', 'US', 1, 29.6757800000, -98.0722300000), (1119905, 1001420, 'Lake Elmo', NULL, 'lake-elmo', 'US', 1, 44.9958000000, -92.8793800000), (1119906, 1001416, 'Lake Elsinore', NULL, 'lake-elsinore', 'US', 1, 33.6680800000, -117.3272600000), (1119907, 1001452, 'Lake Erie Beach', NULL, 'lake-erie-beach', 'US', 1, 42.6242300000, -79.0669800000), (1119908, 1001426, 'Lake Fenton', NULL, 'lake-fenton', 'US', 1, 42.8461400000, -83.7077300000), (1119909, 1001436, 'Lake Forest', NULL, 'lake-forest', 'US', 1, 25.9775900000, -80.1831000000), (1119910, 1001425, 'Lake Forest', NULL, 'lake-forest', 'US', 1, 42.2586300000, -87.8406300000), (1119911, 1001416, 'Lake Forest', NULL, 'lake-forest', 'US', 1, 33.6469700000, -117.6892200000), (1119912, 1001462, 'Lake Forest Park', NULL, 'lake-forest-park', 'US', 1, 47.7567600000, -122.2809600000), (1119913, 1001441, 'Lake Geneva', NULL, 'lake-geneva', 'US', 1, 42.5916800000, -88.4334300000), (1119914, 1001452, 'Lake Grove', NULL, 'lake-grove', 'US', 1, 40.8528800000, -73.1151100000), (1119915, 1001441, 'Lake Hallie', NULL, 'lake-hallie', 'US', 1, 44.8757900000, -91.4407100000), (1119916, 1001444, 'Lake Hamilton', NULL, 'lake-hamilton', 'US', 1, 34.4245300000, -93.0951800000), (1119917, 1001436, 'Lake Hamilton', NULL, 'lake-hamilton', 'US', 1, 28.0444600000, -81.6278500000), (1119918, 1001434, 'Lake Havasu City', NULL, 'lake-havasu-city', 'US', 1, 34.4839000000, -114.3224500000), (1119919, 1001436, 'Lake Helen', NULL, 'lake-helen', 'US', 1, 28.9808200000, -81.2333900000), (1119920, 1001422, 'Lake Heritage', NULL, 'lake-heritage', 'US', 1, 39.8095400000, -77.1838700000), (1119921, 1001425, 'Lake Holiday', NULL, 'lake-holiday', 'US', 1, 41.6129200000, -88.6720900000), (1119922, 1001426, 'Lake Isabella', NULL, 'lake-isabella', 'US', 1, 43.6436400000, -84.9972500000), (1119923, 1001416, 'Lake Isabella', NULL, 'lake-isabella', 'US', 1, 35.6180100000, -118.4731400000), (1119924, 1001407, 'Lake Jackson', NULL, 'lake-jackson', 'US', 1, 29.0338600000, -95.4343900000), (1119925, 1001447, 'Lake Junaluska', NULL, 'lake-junaluska', 'US', 1, 35.5278800000, -82.9595800000), (1119926, 1001452, 'Lake Katrine', NULL, 'lake-katrine', 'US', 1, 41.9856500000, -73.9881900000), (1119927, 1001407, 'Lake Kiowa', NULL, 'lake-kiowa', 'US', 1, 33.5770500000, -97.0130600000), (1119928, 1001441, 'Lake Koshkonong', NULL, 'lake-koshkonong', 'US', 1, 42.9097300000, -88.9195500000), (1119929, 1001422, 'Lake Latonka', NULL, 'lake-latonka', 'US', 1, 41.2903900000, -80.1812900000), (1119930, 1001436, 'Lake Lorraine', NULL, 'lake-lorraine', 'US', 1, 30.4415900000, -86.5652300000), (1119931, 1001416, 'Lake Los Angeles', NULL, 'lake-los-angeles', 'US', 1, 34.6124900000, -117.8281200000), (1119932, 1001451, 'Lake Lotawana', NULL, 'lake-lotawana', 'US', 1, 38.9230600000, -94.2441100000), (1119933, 1001436, 'Lake Lucerne', NULL, 'lake-lucerne', 'US', 1, 25.9650900000, -80.2414400000), (1119934, 1001447, 'Lake Lure', NULL, 'lake-lure', 'US', 1, 35.4279000000, -82.2048300000), (1119935, 1001452, 'Lake Luzerne', NULL, 'lake-luzerne', 'US', 1, 43.3128500000, -73.8348400000), (1119936, 1001436, 'Lake Mack-Forest Hills', NULL, 'lake-mack-forest-hills', 'US', 1, 29.0007400000, -81.4239700000), (1119937, 1001436, 'Lake Magdalene', NULL, 'lake-magdalene', 'US', 1, 28.0741800000, -82.4717600000), (1119938, 1001462, 'Lake Marcel-Stillwater', NULL, 'lake-marcel-stillwater', 'US', 1, 47.6926300000, -121.9151300000), (1119939, 1001436, 'Lake Mary', NULL, 'lake-mary', 'US', 1, 28.7588800000, -81.3178400000), (1119940, 1001422, 'Lake Meade', NULL, 'lake-meade', 'US', 1, 39.9851000000, -77.0372000000), (1119941, 1001426, 'Lake Michigan Beach', NULL, 'lake-michigan-beach', 'US', 1, 42.2208700000, -86.3694700000), (1119942, 1001459, 'Lake Mills', NULL, 'lake-mills', 'US', 1, 43.4194000000, -93.5332700000), (1119943, 1001441, 'Lake Mills', NULL, 'lake-mills', 'US', 1, 43.0813900000, -88.9117700000), (1119944, 1001417, 'Lake Mohawk', NULL, 'lake-mohawk', 'US', 1, 41.0184300000, -74.6601600000), (1119945, 1001452, 'Lake Mohegan', NULL, 'lake-mohegan', 'US', 1, 41.3178700000, -73.8462500000), (1119946, 1001434, 'Lake Montezuma', NULL, 'lake-montezuma', 'US', 1, 34.6322400000, -111.7779300000), (1119947, 1001427, 'Lake Monticello', NULL, 'lake-monticello', 'US', 1, 37.9232000000, -78.3347300000), (1119948, 1001462, 'Lake Morton-Berrydale', NULL, 'lake-morton-berrydale', 'US', 1, 47.3325100000, -122.1028600000), (1119949, 1001443, 'Lake Murray of Richland', NULL, 'lake-murray-of-richland', 'US', 1, 34.1204800000, -81.2645000000), (1119950, 1001416, 'Lake Nacimiento', NULL, 'lake-nacimiento', 'US', 1, 35.7283000000, -120.8796300000), (1119951, 1001441, 'Lake Nebagamon', NULL, 'lake-nebagamon', 'US', 1, 46.5149400000, -91.6999100000), (1119952, 1001447, 'Lake Norman of Catawba', NULL, 'lake-norman-of-catawba', 'US', 1, 35.5868000000, -80.9595200000), (1119953, 1001426, 'Lake Odessa', NULL, 'lake-odessa', 'US', 1, 42.7847600000, -85.1383400000), (1119954, 1001426, 'Lake Orion', NULL, 'lake-orion', 'US', 1, 42.7844800000, -83.2396600000), (1119955, 1001415, 'Lake Oswego', NULL, 'lake-oswego', 'US', 1, 45.4206700000, -122.6706500000), (1119956, 1001451, 'Lake Ozark', NULL, 'lake-ozark', 'US', 1, 38.1986400000, -92.6388000000), (1119957, 1001436, 'Lake Panasoffkee', NULL, 'lake-panasoffkee', 'US', 1, 28.7558200000, -82.0948100000), (1119958, 1001459, 'Lake Panorama', NULL, 'lake-panorama', 'US', 1, 41.7110500000, -94.3905900000), (1119959, 1001436, 'Lake Park', NULL, 'lake-park', 'US', 1, 26.8003400000, -80.0664300000), (1119960, 1001447, 'Lake Park', NULL, 'lake-park', 'US', 1, 35.0862600000, -80.6350700000), (1119961, 1001459, 'Lake Park', NULL, 'lake-park', 'US', 1, 43.4555200000, -95.3208300000), (1119962, 1001436, 'Lake Placid', NULL, 'lake-placid', 'US', 1, 27.3519700000, -81.3263100000), (1119963, 1001452, 'Lake Placid', NULL, 'lake-placid', 'US', 1, 44.2796200000, -73.9819800000), (1119964, 1001452, 'Lake Pleasant', NULL, 'lake-pleasant', 'US', 1, 43.4709000000, -74.4126500000), (1119965, 1001435, 'Lake Pocotopaug', NULL, 'lake-pocotopaug', 'US', 1, 41.5984300000, -72.5103700000), (1119966, 1001457, 'Lake Providence', NULL, 'lake-providence', 'US', 1, 32.8049900000, -91.1709800000), (1119967, 1001456, 'Lake Purdy', NULL, 'lake-purdy', 'US', 1, 33.4301100000, -86.6805400000), (1119968, 1001427, 'Lake Ridge', NULL, 'lake-ridge', 'US', 1, 38.6878900000, -77.2977600000), (1119969, 1001441, 'Lake Ripley', NULL, 'lake-ripley', 'US', 1, 43.0058300000, -88.9862200000), (1119970, 1001452, 'Lake Ronkonkoma', NULL, 'lake-ronkonkoma', 'US', 1, 40.8351000000, -73.1312200000), (1119971, 1001420, 'Lake Saint Croix Beach', NULL, 'lake-saint-croix-beach', 'US', 1, 44.9208000000, -92.7668700000), (1119972, 1001451, 'Lake Saint Louis', NULL, 'lake-saint-louis', 'US', 1, 38.7975500000, -90.7856800000), (1119973, 1001416, 'Lake San Marcos', NULL, 'lake-san-marcos', 'US', 1, 33.1261500000, -117.2083700000), (1119974, 1001436, 'Lake Sarasota', NULL, 'lake-sarasota', 'US', 1, 27.2925500000, -82.4376000000), (1119975, 1001443, 'Lake Secession', NULL, 'lake-secession', 'US', 1, 34.2845500000, -82.5945700000), (1119976, 1001401, 'Lake Shore', NULL, 'lake-shore', 'US', 1, 39.1070500000, -76.4849600000), (1119977, 1001420, 'Lake Shore', NULL, 'lake-shore', 'US', 1, 46.4855200000, -94.3605600000), (1119978, 1001462, 'Lake Shore', NULL, 'lake-shore', 'US', 1, 45.6906700000, -122.6909300000), (1119979, 1001440, 'Lake Station', NULL, 'lake-station', 'US', 1, 41.5750400000, -87.2389200000), (1119980, 1001462, 'Lake Stevens', NULL, 'lake-stevens', 'US', 1, 48.0151000000, -122.0637400000), (1119981, 1001462, 'Lake Stickney', NULL, 'lake-stickney', 'US', 1, 47.8765500000, -122.2621400000), (1119982, 1001452, 'Lake Success', NULL, 'lake-success', 'US', 1, 40.7706600000, -73.7176300000), (1119983, 1001425, 'Lake Summerset', NULL, 'lake-summerset', 'US', 1, 42.4544600000, -89.3895600000), (1119984, 1001454, 'Lake Tansi', NULL, 'lake-tansi', 'US', 1, 35.8728500000, -85.0544000000), (1119985, 1001417, 'Lake Telemark', NULL, 'lake-telemark', 'US', 1, 40.9567700000, -74.4979300000), (1119986, 1001456, 'Lake View', NULL, 'lake-view', 'US', 1, 33.2806700000, -87.1375000000), (1119987, 1001459, 'Lake View', NULL, 'lake-view', 'US', 1, 42.3116500000, -95.0533200000), (1119988, 1001425, 'Lake Villa', NULL, 'lake-villa', 'US', 1, 42.4169700000, -88.0739700000), (1119989, 1001444, 'Lake Village', NULL, 'lake-village', 'US', 1, 33.3287300000, -91.2817800000), (1119990, 1001447, 'Lake Waccamaw', NULL, 'lake-waccamaw', 'US', 1, 34.3190600000, -78.5000100000), (1119991, 1001436, 'Lake Wales', NULL, 'lake-wales', 'US', 1, 27.9014100000, -81.5859100000), (1119992, 1001441, 'Lake Wazeecha', NULL, 'lake-wazeecha', 'US', 1, 44.3710800000, -89.7565100000), (1119993, 1001416, 'Lake Wildwood', NULL, 'lake-wildwood', 'US', 1, 39.2329500000, -121.2005100000), (1119994, 1001451, 'Lake Winnebago', NULL, 'lake-winnebago', 'US', 1, 38.8314000000, -94.3585600000), (1119995, 1001441, 'Lake Wisconsin', NULL, 'lake-wisconsin', 'US', 1, 43.3736000000, -89.5756800000), (1119996, 1001441, 'Lake Wissota', NULL, 'lake-wissota', 'US', 1, 44.9263500000, -91.3009900000), (1119997, 1001436, 'Lake Worth', NULL, 'lake-worth', 'US', 1, 26.6170800000, -80.0723100000), (1119998, 1001407, 'Lake Worth', NULL, 'lake-worth', 'US', 1, 32.8048500000, -97.4450200000), (1119999, 1001436, 'Lake Worth Corridor', NULL, 'lake-worth-corridor', 'US', 1, 26.6164900000, -80.1010200000), (1120000, 1001443, 'Lake Wylie', NULL, 'lake-wylie', 'US', 1, 35.1084800000, -81.0428500000), (1120001, 1001422, 'Lake Wynonah', NULL, 'lake-wynonah', 'US', 1, 40.5992600000, -76.1638300000), (1120002, 1001425, 'Lake Zurich', NULL, 'lake-zurich', 'US', 1, 42.1969700000, -88.0934100000), (1120003, 1001400, 'Lake and Peninsula Borough', NULL, 'lake-and-peninsula-borough', 'US', 1, 57.0005600000, -158.0005600000), (1120004, 1001425, 'Lake in the Hills', NULL, 'lake-in-the-hills', 'US', 1, 42.1816900000, -88.3303600000), (1120005, 1001416, 'Lake of the Pines', NULL, 'lake-of-the-pines', 'US', 1, 39.0396200000, -121.0566100000), (1120006, 1001425, 'Lake of the Woods', NULL, 'lake-of-the-woods', 'US', 1, 40.2064200000, -88.3686700000), (1120007, 1001434, 'Lake of the Woods', NULL, 'lake-of-the-woods', 'US', 1, 34.1639300000, -109.9895500000), (1120008, 1001420, 'Lake of the Woods County', NULL, 'lake-of-the-woods-county', 'US', 1, 48.7705100000, -94.9050300000), (1120009, 1001420, 'Lakefield', NULL, 'lakefield', 'US', 1, 43.6774600000, -95.1716600000), (1120010, 1001407, 'Lakehills', NULL, 'lakehills', 'US', 1, 29.6046700000, -98.9430900000), (1120011, 1001417, 'Lakehurst', NULL, 'lakehurst', 'US', 1, 40.0145600000, -74.3112600000), (1120012, 1001436, 'Lakeland', NULL, 'lakeland', 'US', 1, 28.0394700000, -81.9498000000), (1120013, 1001455, 'Lakeland', NULL, 'lakeland', 'US', 1, 31.0410400000, -83.0751500000), (1120014, 1001454, 'Lakeland', NULL, 'lakeland', 'US', 1, 35.2306400000, -89.7403600000), (1120015, 1001420, 'Lakeland', NULL, 'lakeland', 'US', 1, 44.9563600000, -92.7657600000), (1120016, 1001452, 'Lakeland', NULL, 'lakeland', 'US', 1, 43.0903400000, -76.2404800000), (1120017, 1001436, 'Lakeland Highlands', NULL, 'lakeland-highlands', 'US', 1, 27.9597500000, -81.9500800000), (1120018, 1001462, 'Lakeland North', NULL, 'lakeland-north', 'US', 1, 47.3334300000, -122.2769500000), (1120019, 1001462, 'Lakeland South', NULL, 'lakeland-south', 'US', 1, 47.2784300000, -122.2832600000), (1120020, 1001416, 'Lakeland Village', NULL, 'lakeland-village', 'US', 1, 33.6386300000, -117.3439300000), (1120021, 1001422, 'Lakemont', NULL, 'lakemont', 'US', 1, 40.4728500000, -78.3883500000), (1120022, 1001425, 'Lakemoor', NULL, 'lakemoor', 'US', 1, 42.3286300000, -88.1989700000), (1120023, 1001416, 'Lakeport', NULL, 'lakeport', 'US', 1, 39.0429500000, -122.9158300000), (1120024, 1001400, 'Lakes', NULL, 'lakes', 'US', 1, 61.6071300000, -149.3086100000), (1120025, 1001436, 'Lakes by the Bay', NULL, 'lakes-by-the-bay', 'US', 1, 25.5723300000, -80.3253300000), (1120026, 1001440, 'Lakes of the Four Seasons', NULL, 'lakes-of-the-four-seasons', 'US', 1, 41.4103200000, -87.2130900000), (1120027, 1001451, 'Lakeshire', NULL, 'lakeshire', 'US', 1, 38.5386600000, -90.3351200000), (1120028, 1001457, 'Lakeshore', NULL, 'lakeshore', 'US', 1, 32.5351400000, -92.0295800000), (1120029, 1001436, 'Lakeside', NULL, 'lakeside', 'US', 1, 30.1299600000, -81.7681500000), (1120030, 1001407, 'Lakeside', NULL, 'lakeside', 'US', 1, 32.8223500000, -97.4933500000), (1120031, 1001427, 'Lakeside', NULL, 'lakeside', 'US', 1, 37.6076500000, -77.4769300000), (1120032, 1001416, 'Lakeside', NULL, 'lakeside', 'US', 1, 32.8572700000, -116.9222500000), (1120033, 1001446, 'Lakeside', NULL, 'lakeside', 'US', 1, 48.0193900000, -114.2245700000), (1120034, 1001415, 'Lakeside', NULL, 'lakeside', 'US', 1, 43.5756700000, -124.1751100000), (1120035, 1001419, 'Lakeside Park', NULL, 'lakeside-park', 'US', 1, 39.0356200000, -84.5691100000), (1120036, 1001454, 'Lakesite', NULL, 'lakesite', 'US', 1, 35.2086800000, -85.1269000000), (1120037, 1001455, 'Lakeview', NULL, 'lakeview', 'US', 1, 34.9792400000, -85.2588400000), (1120038, 1001426, 'Lakeview', NULL, 'lakeview', 'US', 1, 43.4464200000, -85.2742000000), (1120039, 1001452, 'Lakeview', NULL, 'lakeview', 'US', 1, 40.6853800000, -73.6526300000), (1120040, 1001416, 'Lakeview', NULL, 'lakeview', 'US', 1, 33.8386300000, -117.1180900000), (1120041, 1001415, 'Lakeview', NULL, 'lakeview', 'US', 1, 42.1887700000, -120.3457900000), (1120042, 1001455, 'Lakeview Estates', NULL, 'lakeview-estates', 'US', 1, 33.7067800000, -84.0315800000), (1120043, 1001420, 'Lakeville', NULL, 'lakeville', 'US', 1, 44.6496900000, -93.2427200000), (1120044, 1001407, 'Lakeway', NULL, 'lakeway', 'US', 1, 30.3637700000, -97.9795900000), (1120045, 1001443, 'Lakewood', NULL, 'lakewood', 'US', 1, 33.8468300000, -80.3500800000), (1120046, 1001454, 'Lakewood', NULL, 'lakewood', 'US', 1, 36.2431100000, -86.6355500000), (1120047, 1001425, 'Lakewood', NULL, 'lakewood', 'US', 1, 42.2291900000, -88.3550900000), (1120048, 1001417, 'Lakewood', NULL, 'lakewood', 'US', 1, 40.0978900000, -74.2176400000), (1120049, 1001452, 'Lakewood', NULL, 'lakewood', 'US', 1, 42.1042200000, -79.3331000000), (1120050, 1001450, 'Lakewood', NULL, 'lakewood', 'US', 1, 39.7047100000, -105.0813700000), (1120051, 1001416, 'Lakewood', NULL, 'lakewood', 'US', 1, 33.8536300000, -118.1339600000), (1120052, 1001462, 'Lakewood', NULL, 'lakewood', 'US', 1, 47.1717600000, -122.5184600000), (1120053, 1001426, 'Lakewood Club', NULL, 'lakewood-club', 'US', 1, 43.3711200000, -86.2603400000), (1120054, 1001436, 'Lakewood Park', NULL, 'lakewood-park', 'US', 1, 27.5430900000, -80.4022700000), (1120055, 1001425, 'Lakewood Shores', NULL, 'lakewood-shores', 'US', 1, 41.2817000000, -88.1447800000), (1120056, 1001406, 'Lakin', NULL, 'lakin', 'US', 1, 37.9405800000, -101.2548900000), (1120057, 1001418, 'Lakota', NULL, 'lakota', 'US', 1, 48.0427800000, -98.3362100000), (1120058, 1001444, 'Lamar', NULL, 'lamar', 'US', 1, 35.4406400000, -93.3879600000), (1120059, 1001451, 'Lamar', NULL, 'lamar', 'US', 1, 37.4950500000, -94.2766100000), (1120060, 1001450, 'Lamar', NULL, 'lamar', 'US', 1, 38.0872300000, -102.6207500000), (1120061, 1001456, 'Lamar County', NULL, 'lamar-county', 'US', 1, 33.7792100000, -88.0969000000), (1120062, 1001455, 'Lamar County', NULL, 'lamar-county', 'US', 1, 33.0765400000, -84.1394600000), (1120063, 1001430, 'Lamar County', NULL, 'lamar-county', 'US', 1, 31.2058700000, -89.5086900000), (1120064, 1001407, 'Lamar County', NULL, 'lamar-county', 'US', 1, 33.6672600000, -95.5712000000), (1120065, 1001441, 'Lamartine', NULL, 'lamartine', 'US', 1, 43.7333200000, -88.5687200000), (1120066, 1001407, 'Lamb County', NULL, 'lamb-county', 'US', 1, 34.0686200000, -102.3517100000), (1120067, 1001430, 'Lambert', NULL, 'lambert', 'US', 1, 34.2017800000, -90.2834300000), (1120068, 1001426, 'Lambertville', NULL, 'lambertville', 'US', 1, 41.7658800000, -83.6279900000), (1120069, 1001417, 'Lambertville', NULL, 'lambertville', 'US', 1, 40.3659400000, -74.9429400000), (1120070, 1001446, 'Lame Deer', NULL, 'lame-deer', 'US', 1, 45.6230500000, -106.6667000000), (1120071, 1001407, 'Lamesa', NULL, 'lamesa', 'US', 1, 32.7376000000, -101.9509900000), (1120072, 1001409, 'Lamoille County', NULL, 'lamoille-county', 'US', 1, 44.6057600000, -72.6414500000), (1120073, 1001459, 'Lamoni', NULL, 'lamoni', 'US', 1, 40.6227800000, -93.9341200000), (1120074, 1001416, 'Lamont', NULL, 'lamont', 'US', 1, 35.2596800000, -118.9142700000), (1120075, 1001407, 'Lampasas', NULL, 'lampasas', 'US', 1, 31.0637800000, -98.1817000000), (1120076, 1001407, 'Lampasas County', NULL, 'lampasas-county', 'US', 1, 31.1961900000, -98.2414500000), (1120077, 1001422, 'Lampeter', NULL, 'lampeter', 'US', 1, 39.9901000000, -76.2396800000), (1120078, 1001411, 'Lanai City', NULL, 'lanai-city', 'US', 1, 20.8275700000, -156.9239900000), (1120079, 1001425, 'Lanark', NULL, 'lanark', 'US', 1, 42.1022500000, -89.8334500000), (1120080, 1001419, 'Lancaster', NULL, 'lancaster', 'US', 1, 37.6195200000, -84.5780000000), (1120081, 1001443, 'Lancaster', NULL, 'lancaster', 'US', 1, 34.7204300000, -80.7709000000), (1120082, 1001407, 'Lancaster', NULL, 'lancaster', 'US', 1, 32.5920800000, -96.7561100000), (1120083, 1001433, 'Lancaster', NULL, 'lancaster', 'US', 1, 42.4556500000, -71.6731200000), (1120084, 1001404, 'Lancaster', NULL, 'lancaster', 'US', 1, 44.4889500000, -71.5692500000), (1120085, 1001451, 'Lancaster', NULL, 'lancaster', 'US', 1, 40.5208600000, -92.5279700000), (1120086, 1001452, 'Lancaster', NULL, 'lancaster', 'US', 1, 42.9006100000, -78.6703100000), (1120087, 1001422, 'Lancaster', NULL, 'lancaster', 'US', 1, 40.0378800000, -76.3055100000), (1120088, 1001441, 'Lancaster', NULL, 'lancaster', 'US', 1, 42.8474900000, -90.7106800000), (1120089, 1001416, 'Lancaster', NULL, 'lancaster', 'US', 1, 34.6980400000, -118.1367400000), (1120090, 1001443, 'Lancaster County', NULL, 'lancaster-county', 'US', 1, 34.6867000000, -80.7054300000), (1120091, 1001427, 'Lancaster County', NULL, 'lancaster-county', 'US', 1, 37.7017100000, -76.4202300000), (1120092, 1001408, 'Lancaster County', NULL, 'lancaster-county', 'US', 1, 40.7841700000, -96.6877600000), (1120093, 1001422, 'Lancaster County', NULL, 'lancaster-county', 'US', 1, 40.0424400000, -76.2477000000), (1120094, 1001443, 'Lancaster Mill', NULL, 'lancaster-mill', 'US', 1, 34.7093100000, -80.7947900000), (1120095, 1001436, 'Land O'' Lakes', NULL, 'land-o-lakes', 'US', 1, 28.2189000000, -82.4575900000), (1120096, 1001442, 'Lander', NULL, 'lander', 'US', 1, 42.8330100000, -108.7306700000), (1120097, 1001458, 'Lander County', NULL, 'lander-county', 'US', 1, 39.9338100000, -117.0379100000), (1120098, 1001417, 'Landing', NULL, 'landing', 'US', 1, 40.9051000000, -74.6651600000), (1120099, 1001447, 'Landis', NULL, 'landis', 'US', 1, 35.5456900000, -80.6109000000), (1120100, 1001422, 'Landisville', NULL, 'landisville', 'US', 1, 40.0953700000, -76.4099600000), (1120101, 1001444, 'Landmark', NULL, 'landmark', 'US', 1, 34.6112000000, -92.3196000000), (1120102, 1001401, 'Landover', NULL, 'landover', 'US', 1, 38.9340000000, -76.8966400000), (1120103, 1001401, 'Landover Hills', NULL, 'landover-hills', 'US', 1, 38.9431700000, -76.8922000000), (1120104, 1001443, 'Landrum', NULL, 'landrum', 'US', 1, 35.1751100000, -82.1892800000), (1120105, 1001406, 'Lane County', NULL, 'lane-county', 'US', 1, 38.4813000000, -100.4664000000), (1120106, 1001415, 'Lane County', NULL, 'lane-county', 'US', 1, 43.9415500000, -122.8765500000), (1120107, 1001433, 'Lanesborough', NULL, 'lanesborough', 'US', 1, 42.5173100000, -73.2281600000), (1120108, 1001456, 'Lanett', NULL, 'lanett', 'US', 1, 32.8687400000, -85.1905000000), (1120109, 1001418, 'Langdon', NULL, 'langdon', 'US', 1, 48.7600000000, -98.3681700000), (1120110, 1001422, 'Langhorne', NULL, 'langhorne', 'US', 1, 40.1745500000, -74.9226700000), (1120111, 1001422, 'Langhorne Manor', NULL, 'langhorne-manor', 'US', 1, 40.1670500000, -74.9176700000), (1120112, 1001441, 'Langlade County', NULL, 'langlade-county', 'US', 1, 45.2623600000, -89.0719100000), (1120113, 1001443, 'Langley', NULL, 'langley', 'US', 1, 33.5179100000, -81.8440000000), (1120114, 1001462, 'Langley', NULL, 'langley', 'US', 1, 48.0400900000, -122.4062600000), (1120115, 1001401, 'Langley Park', NULL, 'langley-park', 'US', 1, 38.9887200000, -76.9813600000), (1120116, 1001421, 'Langston', NULL, 'langston', 'US', 1, 35.9450500000, -97.2553100000), (1120117, 1001401, 'Lanham', NULL, 'lanham', 'US', 1, 38.9687500000, -76.8634000000), (1120118, 1001401, 'Lanham-Seabrook', NULL, 'lanham-seabrook', 'US', 1, 38.9683500000, -76.8510800000), (1120119, 1001455, 'Lanier County', NULL, 'lanier-county', 'US', 1, 31.0378900000, -83.0626500000), (1120120, 1001441, 'Lannon', NULL, 'lannon', 'US', 1, 43.1461200000, -88.1662000000), (1120121, 1001422, 'Lansdale', NULL, 'lansdale', 'US', 1, 40.2415000000, -75.2837900000), (1120122, 1001401, 'Lansdowne', NULL, 'lansdowne', 'US', 1, 39.2451100000, -76.6605200000), (1120123, 1001422, 'Lansdowne', NULL, 'lansdowne', 'US', 1, 39.9381700000, -75.2718500000), (1120124, 1001422, 'Lansford', NULL, 'lansford', 'US', 1, 40.8317600000, -75.8824200000), (1120125, 1001406, 'Lansing', NULL, 'lansing', 'US', 1, 39.2486100000, -94.9002400000), (1120126, 1001425, 'Lansing', NULL, 'lansing', 'US', 1, 41.5647600000, -87.5389300000), (1120127, 1001426, 'Lansing', NULL, 'lansing', 'US', 1, 42.7325300000, -84.5555300000), (1120128, 1001452, 'Lansing', NULL, 'lansing', 'US', 1, 42.4842400000, -76.4799400000), (1120129, 1001436, 'Lantana', NULL, 'lantana', 'US', 1, 26.5867400000, -80.0519900000), (1120130, 1001407, 'Lantana', NULL, 'lantana', 'US', 1, 33.0907300000, -97.1241600000), (1120131, 1001426, 'Lapeer', NULL, 'lapeer', 'US', 1, 43.0514200000, -83.3188300000), (1120132, 1001426, 'Lapeer County', NULL, 'lapeer-county', 'US', 1, 43.0901500000, -83.2217800000), (1120133, 1001440, 'Lapel', NULL, 'lapel', 'US', 1, 40.0683700000, -85.8483100000), (1120134, 1001457, 'Laplace', NULL, 'laplace', 'US', 1, 30.0669800000, -90.4814700000), (1120135, 1001422, 'Laporte', NULL, 'laporte', 'US', 1, 41.4239700000, -76.4941100000), (1120136, 1001450, 'Laporte', NULL, 'laporte', 'US', 1, 40.6263300000, -105.1391600000), (1120137, 1001460, 'Lapwai', NULL, 'lapwai', 'US', 1, 46.4048900000, -116.8048700000), (1120138, 1001442, 'Laramie', NULL, 'laramie', 'US', 1, 41.3113700000, -105.5911000000), (1120139, 1001442, 'Laramie County', NULL, 'laramie-county', 'US', 1, 41.3070700000, -104.6896200000), (1120140, 1001462, 'Larch Way', NULL, 'larch-way', 'US', 1, 47.8429000000, -122.2527500000), (1120141, 1001452, 'Larchmont', NULL, 'larchmont', 'US', 1, 40.9278800000, -73.7518000000), (1120142, 1001407, 'Laredo', NULL, 'laredo', 'US', 1, 27.5064100000, -99.5075400000), (1120143, 1001436, 'Largo', NULL, 'largo', 'US', 1, 27.9097900000, -82.7884200000), (1120144, 1001401, 'Largo', NULL, 'largo', 'US', 1, 38.8976100000, -76.8302500000), (1120145, 1001450, 'Larimer County', NULL, 'larimer-county', 'US', 1, 40.6664100000, -105.4611600000), (1120146, 1001418, 'Larimore', NULL, 'larimore', 'US', 1, 47.9066600000, -97.6267500000), (1120147, 1001416, 'Larkfield-Wikiup', NULL, 'larkfield-wikiup', 'US', 1, 38.5134200000, -122.7509400000), (1120148, 1001416, 'Larkspur', NULL, 'larkspur', 'US', 1, 37.9340900000, -122.5352500000); INSERT INTO `[[dbprefix]]t_city` VALUES (1120149, 1001422, 'Larksville', NULL, 'larksville', 'US', 1, 41.2450800000, -75.9307500000), (1120150, 1001406, 'Larned', NULL, 'larned', 'US', 1, 38.1805700000, -99.0987100000), (1120151, 1001457, 'Larose', NULL, 'larose', 'US', 1, 29.5724400000, -90.3817500000), (1120152, 1001419, 'Larue County', NULL, 'larue-county', 'US', 1, 37.5458000000, -85.6979200000), (1120153, 1001450, 'Las Animas', NULL, 'las-animas', 'US', 1, 38.0666700000, -103.2227100000), (1120154, 1001450, 'Las Animas County', NULL, 'las-animas-county', 'US', 1, 37.3158500000, -104.0387200000), (1120155, 1001423, 'Las Cruces', NULL, 'las-cruces', 'US', 1, 32.3123200000, -106.7783400000), (1120156, 1001416, 'Las Flores', NULL, 'las-flores', 'US', 1, 33.5880800000, -117.6267200000), (1120157, 1001407, 'Las Lomas', NULL, 'las-lomas', 'US', 1, 26.3647900000, -98.7753000000), (1120158, 1001416, 'Las Lomas', NULL, 'las-lomas', 'US', 1, 36.8652300000, -121.7349500000), (1120159, 1001423, 'Las Maravillas', NULL, 'las-maravillas', 'US', 1, 34.7381500000, -106.6685400000), (1120160, 1001407, 'Las Palmas II', NULL, 'las-palmas-ii', 'US', 1, 26.2017100000, -97.7376000000), (1120161, 1001407, 'Las Quintas Fronterizas', NULL, 'las-quintas-fronterizas', 'US', 1, 28.6905300000, -100.4686900000), (1120162, 1001407, 'Las Quintas Fronterizas Colonia', NULL, 'las-quintas-fronterizas-colonia', 'US', 1, 28.6913700000, -100.4692400000), (1120163, 1001458, 'Las Vegas', NULL, 'las-vegas', 'US', 1, 36.1749700000, -115.1372200000), (1120164, 1001423, 'Las Vegas', NULL, 'las-vegas', 'US', 1, 35.5939300000, -105.2239000000), (1120165, 1001407, 'Lasara', NULL, 'lasara', 'US', 1, 26.4647900000, -97.9111100000), (1120166, 1001416, 'Lassen County', NULL, 'lassen-county', 'US', 1, 40.6735900000, -120.5943300000), (1120167, 1001460, 'Latah County', NULL, 'latah-county', 'US', 1, 46.8161300000, -116.7116800000), (1120168, 1001452, 'Latham', NULL, 'latham', 'US', 1, 42.7470200000, -73.7590100000), (1120169, 1001451, 'Lathrop', NULL, 'lathrop', 'US', 1, 39.5483400000, -94.3299500000), (1120170, 1001416, 'Lathrop', NULL, 'lathrop', 'US', 1, 37.8227000000, -121.2766100000), (1120171, 1001426, 'Lathrup Village', NULL, 'lathrup-village', 'US', 1, 42.4964200000, -83.2227100000), (1120172, 1001430, 'Latimer', NULL, 'latimer', 'US', 1, 30.5346400000, -88.8667000000), (1120173, 1001421, 'Latimer County', NULL, 'latimer-county', 'US', 1, 34.8760600000, -95.2504200000), (1120174, 1001416, 'Laton', NULL, 'laton', 'US', 1, 36.4332800000, -119.6868000000), (1120175, 1001422, 'Latrobe', NULL, 'latrobe', 'US', 1, 40.3211800000, -79.3794800000), (1120176, 1001443, 'Latta', NULL, 'latta', 'US', 1, 34.3371000000, -79.4311600000), (1120177, 1001452, 'Lattingtown', NULL, 'lattingtown', 'US', 1, 40.8953800000, -73.6009600000), (1120178, 1001420, 'Lauderdale', NULL, 'lauderdale', 'US', 1, 44.9985800000, -93.2057800000), (1120179, 1001456, 'Lauderdale County', NULL, 'lauderdale-county', 'US', 1, 34.9013700000, -87.6540000000), (1120180, 1001430, 'Lauderdale County', NULL, 'lauderdale-county', 'US', 1, 32.4042900000, -88.6625400000), (1120181, 1001454, 'Lauderdale County', NULL, 'lauderdale-county', 'US', 1, 35.7610100000, -89.6314400000), (1120182, 1001436, 'Lauderdale Lakes', NULL, 'lauderdale-lakes', 'US', 1, 26.1664700000, -80.2083800000), (1120183, 1001436, 'Lauderdale-by-the-Sea', NULL, 'lauderdale-by-the-sea', 'US', 1, 26.1920300000, -80.0964300000), (1120184, 1001436, 'Lauderhill', NULL, 'lauderhill', 'US', 1, 26.1403600000, -80.2133800000), (1120185, 1001458, 'Laughlin', NULL, 'laughlin', 'US', 1, 35.1677800000, -114.5730200000), (1120186, 1001407, 'Laughlin Air Force Base', NULL, 'laughlin-air-force-base', 'US', 1, 29.3566300000, -100.7835300000), (1120187, 1001399, 'Laurel', NULL, 'laurel', 'US', 1, 38.5565000000, -75.5713100000), (1120188, 1001436, 'Laurel', NULL, 'laurel', 'US', 1, 27.1437800000, -82.4615800000), (1120189, 1001401, 'Laurel', NULL, 'laurel', 'US', 1, 39.0992800000, -76.8483100000), (1120190, 1001430, 'Laurel', NULL, 'laurel', 'US', 1, 31.6940500000, -89.1306100000), (1120191, 1001427, 'Laurel', NULL, 'laurel', 'US', 1, 37.6429200000, -77.5088700000), (1120192, 1001452, 'Laurel', NULL, 'laurel', 'US', 1, 40.9695400000, -72.5620300000), (1120193, 1001446, 'Laurel', NULL, 'laurel', 'US', 1, 45.6691200000, -108.7715300000), (1120194, 1001443, 'Laurel Bay', NULL, 'laurel-bay', 'US', 1, 32.4501900000, -80.7848300000), (1120195, 1001419, 'Laurel County', NULL, 'laurel-county', 'US', 1, 37.1106700000, -84.1178000000), (1120196, 1001447, 'Laurel Hill', NULL, 'laurel-hill', 'US', 1, 34.8090500000, -79.5478300000), (1120197, 1001427, 'Laurel Hill', NULL, 'laurel-hill', 'US', 1, 38.7166300000, -77.2368600000), (1120198, 1001452, 'Laurel Hollow', NULL, 'laurel-hollow', 'US', 1, 40.8567700000, -73.4695700000), (1120199, 1001417, 'Laurel Lake', NULL, 'laurel-lake', 'US', 1, 39.3395600000, -75.0299000000), (1120200, 1001447, 'Laurel Park', NULL, 'laurel-park', 'US', 1, 35.3137300000, -82.4934500000), (1120201, 1001417, 'Laurel Springs', NULL, 'laurel-springs', 'US', 1, 39.8201100000, -75.0062800000), (1120202, 1001422, 'Laureldale', NULL, 'laureldale', 'US', 1, 40.3881500000, -75.9179800000), (1120203, 1001407, 'Laureles', NULL, 'laureles', 'US', 1, 26.1092400000, -97.4941500000), (1120204, 1001452, 'Laurelton', NULL, 'laurelton', 'US', 1, 40.6701900000, -73.7465900000), (1120205, 1001417, 'Laurence Harbor', NULL, 'laurence-harbor', 'US', 1, 40.4567700000, -74.2465300000), (1120206, 1001443, 'Laurens', NULL, 'laurens', 'US', 1, 34.4990100000, -82.0142600000), (1120207, 1001459, 'Laurens', NULL, 'laurens', 'US', 1, 42.8466400000, -94.8519300000), (1120208, 1001455, 'Laurens County', NULL, 'laurens-county', 'US', 1, 32.4636600000, -82.9222400000), (1120209, 1001443, 'Laurens County', NULL, 'laurens-county', 'US', 1, 34.4835700000, -82.0059300000), (1120210, 1001447, 'Laurinburg', NULL, 'laurinburg', 'US', 1, 34.7740500000, -79.4628200000), (1120211, 1001426, 'Laurium', NULL, 'laurium', 'US', 1, 47.2374300000, -88.4431700000), (1120212, 1001422, 'Laurys Station', NULL, 'laurys-station', 'US', 1, 40.7231500000, -75.5301800000), (1120213, 1001444, 'Lavaca', NULL, 'lavaca', 'US', 1, 35.3362000000, -94.1732600000), (1120214, 1001407, 'Lavaca County', NULL, 'lavaca-county', 'US', 1, 29.3843500000, -96.9301500000), (1120215, 1001429, 'Lavalette', NULL, 'lavalette', 'US', 1, 38.3228600000, -82.4468200000), (1120216, 1001417, 'Lavallette', NULL, 'lavallette', 'US', 1, 39.9704000000, -74.0687500000), (1120217, 1001434, 'Laveen', NULL, 'laveen', 'US', 1, 33.3628200000, -112.1693200000), (1120218, 1001421, 'Laverne', NULL, 'laverne', 'US', 1, 36.7097500000, -99.8934600000), (1120219, 1001407, 'Lavon', NULL, 'lavon', 'US', 1, 33.0276200000, -96.4341500000), (1120220, 1001455, 'Lavonia', NULL, 'lavonia', 'US', 1, 34.4359400000, -83.1068200000), (1120221, 1001411, 'Lawai', NULL, 'lawai', 'US', 1, 21.9215900000, -159.5037600000), (1120222, 1001416, 'Lawndale', NULL, 'lawndale', 'US', 1, 33.8872400000, -118.3525700000), (1120223, 1001417, 'Lawnside', NULL, 'lawnside', 'US', 1, 39.8665000000, -75.0282300000), (1120224, 1001422, 'Lawnton', NULL, 'lawnton', 'US', 1, 40.2584200000, -76.8038600000), (1120225, 1001440, 'Lawrence', NULL, 'lawrence', 'US', 1, 39.8386500000, -86.0252600000), (1120226, 1001406, 'Lawrence', NULL, 'lawrence', 'US', 1, 38.9716700000, -95.2352500000), (1120227, 1001433, 'Lawrence', NULL, 'lawrence', 'US', 1, 42.7070400000, -71.1631100000), (1120228, 1001452, 'Lawrence', NULL, 'lawrence', 'US', 1, 40.6156600000, -73.7295800000), (1120229, 1001456, 'Lawrence County', NULL, 'lawrence-county', 'US', 1, 34.5216500000, -87.3110400000), (1120230, 1001444, 'Lawrence County', NULL, 'lawrence-county', 'US', 1, 36.0412500000, -91.1070800000), (1120231, 1001425, 'Lawrence County', NULL, 'lawrence-county', 'US', 1, 38.7199500000, -87.7267300000), (1120232, 1001440, 'Lawrence County', NULL, 'lawrence-county', 'US', 1, 38.8411600000, -86.4834500000), (1120233, 1001419, 'Lawrence County', NULL, 'lawrence-county', 'US', 1, 38.0678800000, -82.7347500000), (1120234, 1001451, 'Lawrence County', NULL, 'lawrence-county', 'US', 1, 37.1063500000, -93.8329400000), (1120235, 1001430, 'Lawrence County', NULL, 'lawrence-county', 'US', 1, 31.5502000000, -90.1069900000), (1120236, 1001454, 'Lawrence County', NULL, 'lawrence-county', 'US', 1, 35.2172700000, -87.3955900000), (1120237, 1001422, 'Lawrence County', NULL, 'lawrence-county', 'US', 1, 40.9912700000, -80.3341900000), (1120238, 1001445, 'Lawrence County', NULL, 'lawrence-county', 'US', 1, 44.3586300000, -103.7922200000), (1120239, 1001422, 'Lawrence Park', NULL, 'lawrence-park', 'US', 1, 42.1522800000, -80.0231100000), (1120240, 1001440, 'Lawrenceburg', NULL, 'lawrenceburg', 'US', 1, 39.0908900000, -84.8499500000), (1120241, 1001419, 'Lawrenceburg', NULL, 'lawrenceburg', 'US', 1, 38.0373000000, -84.8966200000), (1120242, 1001454, 'Lawrenceburg', NULL, 'lawrenceburg', 'US', 1, 35.2423000000, -87.3347400000), (1120243, 1001455, 'Lawrenceville', NULL, 'lawrenceville', 'US', 1, 33.9562100000, -83.9879600000), (1120244, 1001425, 'Lawrenceville', NULL, 'lawrenceville', 'US', 1, 38.7292100000, -87.6816900000), (1120245, 1001427, 'Lawrenceville', NULL, 'lawrenceville', 'US', 1, 36.7576500000, -77.8469400000), (1120246, 1001417, 'Lawrenceville', NULL, 'lawrenceville', 'US', 1, 40.2973300000, -74.7296000000), (1120247, 1001451, 'Lawson', NULL, 'lawson', 'US', 1, 39.4383400000, -94.2041100000), (1120248, 1001422, 'Lawson Heights', NULL, 'lawson-heights', 'US', 1, 40.2917400000, -79.3892000000), (1120249, 1001457, 'Lawtell', NULL, 'lawtell', 'US', 1, 30.5185300000, -92.1848500000), (1120250, 1001421, 'Lawton', NULL, 'lawton', 'US', 1, 34.6086900000, -98.3903300000), (1120251, 1001426, 'Lawton', NULL, 'lawton', 'US', 1, 42.1672600000, -85.8469500000), (1120252, 1001401, 'Layhill', NULL, 'layhill', 'US', 1, 39.0923300000, -77.0444200000), (1120253, 1001427, 'Laymantown', NULL, 'laymantown', 'US', 1, 37.3656900000, -79.8575400000), (1120254, 1001414, 'Layton', NULL, 'layton', 'US', 1, 41.0602200000, -111.9710500000), (1120255, 1001416, 'Laytonville', NULL, 'laytonville', 'US', 1, 39.6882100000, -123.4827900000), (1120256, 1001400, 'Lazy Mountain', NULL, 'lazy-mountain', 'US', 1, 61.6261100000, -148.9455600000), (1120257, 1001420, 'Le Center', NULL, 'le-center', 'US', 1, 44.3894100000, -93.7302300000), (1120258, 1001459, 'Le Claire', NULL, 'le-claire', 'US', 1, 41.5986400000, -90.3434600000), (1120259, 1001421, 'Le Flore County', NULL, 'le-flore-county', 'US', 1, 34.9003000000, -94.7033900000), (1120260, 1001416, 'Le Grand', NULL, 'le-grand', 'US', 1, 37.2285500000, -120.2482300000), (1120261, 1001459, 'Le Mars', NULL, 'le-mars', 'US', 1, 42.7941600000, -96.1655800000), (1120262, 1001425, 'Le Roy', NULL, 'le-roy', 'US', 1, 40.3519800000, -88.7642400000), (1120263, 1001452, 'Le Roy', NULL, 'le-roy', 'US', 1, 42.9783900000, -77.9841800000), (1120264, 1001420, 'Le Sueur', NULL, 'le-sueur', 'US', 1, 44.4613500000, -93.9152400000), (1120265, 1001420, 'Le Sueur County', NULL, 'le-sueur-county', 'US', 1, 44.3714300000, -93.7300800000), (1120266, 1001434, 'LeChee', NULL, 'lechee', 'US', 1, 36.8621100000, -111.4406300000), (1120267, 1001423, 'Lea County', NULL, 'lea-county', 'US', 1, 32.7921800000, -103.4124500000), (1120268, 1001462, 'Lea Hill', NULL, 'lea-hill', 'US', 1, 47.3262100000, -122.1815100000), (1120269, 1001444, 'Leachville', NULL, 'leachville', 'US', 1, 35.9359100000, -90.2578800000), (1120270, 1001445, 'Lead', NULL, 'lead', 'US', 1, 44.3522100000, -103.7652000000), (1120271, 1001450, 'Leadville', NULL, 'leadville', 'US', 1, 39.2508200000, -106.2925200000), (1120272, 1001450, 'Leadville North', NULL, 'leadville-north', 'US', 1, 39.2576000000, -106.3013800000), (1120273, 1001451, 'Leadwood', NULL, 'leadwood', 'US', 1, 37.8672700000, -90.5931800000), (1120274, 1001407, 'League City', NULL, 'league-city', 'US', 1, 29.5074500000, -95.0949300000), (1120275, 1001430, 'Leake County', NULL, 'leake-county', 'US', 1, 32.7535300000, -89.5240600000), (1120276, 1001430, 'Leakesville', NULL, 'leakesville', 'US', 1, 31.1557400000, -88.5578000000), (1120277, 1001407, 'Leakey', NULL, 'leakey', 'US', 1, 29.7288400000, -99.7614500000), (1120278, 1001436, 'Lealman', NULL, 'lealman', 'US', 1, 27.8211400000, -82.6792700000), (1120279, 1001407, 'Leander', NULL, 'leander', 'US', 1, 30.5788100000, -97.8530700000), (1120280, 1001406, 'Leavenworth', NULL, 'leavenworth', 'US', 1, 39.3111100000, -94.9224600000), (1120281, 1001462, 'Leavenworth', NULL, 'leavenworth', 'US', 1, 47.5962300000, -120.6614800000), (1120282, 1001406, 'Leavenworth County', NULL, 'leavenworth-county', 'US', 1, 39.1993200000, -95.0379000000), (1120283, 1001406, 'Leawood', NULL, 'leawood', 'US', 1, 38.9666700000, -94.6169000000), (1120284, 1001425, 'Lebanon', NULL, 'lebanon', 'US', 1, 38.6039400000, -89.8073200000), (1120285, 1001419, 'Lebanon', NULL, 'lebanon', 'US', 1, 37.5697900000, -85.2527400000), (1120286, 1001451, 'Lebanon', NULL, 'lebanon', 'US', 1, 37.6806000000, -92.6637900000), (1120287, 1001454, 'Lebanon', NULL, 'lebanon', 'US', 1, 36.2081100000, -86.2911000000), (1120288, 1001427, 'Lebanon', NULL, 'lebanon', 'US', 1, 36.9009400000, -82.0801300000), (1120289, 1001440, 'Lebanon', NULL, 'lebanon', 'US', 1, 40.0483700000, -86.4691700000), (1120290, 1001453, 'Lebanon', NULL, 'lebanon', 'US', 1, 43.3945300000, -70.8508900000), (1120291, 1001404, 'Lebanon', NULL, 'lebanon', 'US', 1, 43.6422900000, -72.2517600000), (1120292, 1001417, 'Lebanon', NULL, 'lebanon', 'US', 1, 40.6417700000, -74.8360000000), (1120293, 1001422, 'Lebanon', NULL, 'lebanon', 'US', 1, 40.3409300000, -76.4113500000), (1120294, 1001415, 'Lebanon', NULL, 'lebanon', 'US', 1, 44.5365100000, -122.9070300000), (1120295, 1001422, 'Lebanon County', NULL, 'lebanon-county', 'US', 1, 40.3672300000, -76.4577100000), (1120296, 1001419, 'Lebanon Junction', NULL, 'lebanon-junction', 'US', 1, 37.8345100000, -85.7319000000), (1120297, 1001422, 'Lebanon South', NULL, 'lebanon-south', 'US', 1, 40.3280400000, -76.4064400000), (1120298, 1001416, 'Lebec', NULL, 'lebec', 'US', 1, 34.8416400000, -118.8648200000), (1120299, 1001436, 'Lecanto', NULL, 'lecanto', 'US', 1, 28.8516500000, -82.4876000000), (1120300, 1001457, 'Lecompte', NULL, 'lecompte', 'US', 1, 31.0946300000, -92.4004100000), (1120301, 1001419, 'Ledbetter', NULL, 'ledbetter', 'US', 1, 37.0475600000, -88.4769900000), (1120302, 1001435, 'Ledyard', NULL, 'ledyard', 'US', 1, 41.4398200000, -72.0142400000), (1120303, 1001433, 'Lee', NULL, 'lee', 'US', 1, 42.3042500000, -73.2481600000), (1120304, 1001404, 'Lee', NULL, 'lee', 'US', 1, 43.1231400000, -71.0114500000), (1120305, 1001423, 'Lee Acres', NULL, 'lee-acres', 'US', 1, 35.1486600000, -106.6469700000), (1120306, 1001456, 'Lee County', NULL, 'lee-county', 'US', 1, 32.6011400000, -85.3555600000), (1120307, 1001444, 'Lee County', NULL, 'lee-county', 'US', 1, 34.7806200000, -90.7820700000), (1120308, 1001436, 'Lee County', NULL, 'lee-county', 'US', 1, 26.6253600000, -81.8495200000), (1120309, 1001455, 'Lee County', NULL, 'lee-county', 'US', 1, 31.7795100000, -84.1411300000), (1120310, 1001419, 'Lee County', NULL, 'lee-county', 'US', 1, 37.5948000000, -83.7162800000), (1120311, 1001430, 'Lee County', NULL, 'lee-county', 'US', 1, 34.2898900000, -88.6804200000), (1120312, 1001447, 'Lee County', NULL, 'lee-county', 'US', 1, 35.4751700000, -79.1714300000), (1120313, 1001443, 'Lee County', NULL, 'lee-county', 'US', 1, 34.1632900000, -80.2545200000), (1120314, 1001407, 'Lee County', NULL, 'lee-county', 'US', 1, 30.3106800000, -96.9657000000), (1120315, 1001427, 'Lee County', NULL, 'lee-county', 'US', 1, 36.7054500000, -83.1285300000), (1120316, 1001459, 'Lee County', NULL, 'lee-county', 'US', 1, 40.6419800000, -91.4792600000), (1120317, 1001425, 'Lee County', NULL, 'lee-county', 'US', 1, 41.7461900000, -89.3003900000), (1120318, 1001451, 'Lee''s Summit', NULL, 'lee-s-summit', 'US', 1, 38.9108400000, -94.3821700000), (1120319, 1001422, 'Leechburg', NULL, 'leechburg', 'US', 1, 40.6270100000, -79.6056000000), (1120320, 1001456, 'Leeds', NULL, 'leeds', 'US', 1, 33.5481600000, -86.5444300000), (1120321, 1001453, 'Leeds', NULL, 'leeds', 'US', 1, 44.3034000000, -70.1195000000), (1120322, 1001426, 'Leelanau County', NULL, 'leelanau-county', 'US', 1, 45.1517700000, -86.0385000000), (1120323, 1001456, 'Leesburg', NULL, 'leesburg', 'US', 1, 34.1798200000, -85.7613600000), (1120324, 1001436, 'Leesburg', NULL, 'leesburg', 'US', 1, 28.8108200000, -81.8778600000), (1120325, 1001455, 'Leesburg', NULL, 'leesburg', 'US', 1, 31.7321200000, -84.1707400000), (1120326, 1001427, 'Leesburg', NULL, 'leesburg', 'US', 1, 39.1156600000, -77.5636000000), (1120327, 1001422, 'Leesport', NULL, 'leesport', 'US', 1, 40.4470400000, -75.9663200000), (1120328, 1001457, 'Leesville', NULL, 'leesville', 'US', 1, 31.1435200000, -93.2610000000), (1120329, 1001443, 'Leesville', NULL, 'leesville', 'US', 1, 33.9165300000, -81.5134400000), (1120330, 1001422, 'Leetsdale', NULL, 'leetsdale', 'US', 1, 40.5631200000, -80.2083900000), (1120331, 1001430, 'Leflore County', NULL, 'leflore-county', 'US', 1, 33.5505200000, -90.3010600000), (1120332, 1001441, 'Legend Lake', NULL, 'legend-lake', 'US', 1, 44.8909500000, -88.5440600000), (1120333, 1001414, 'Lehi', NULL, 'lehi', 'US', 1, 40.3916200000, -111.8507700000), (1120334, 1001436, 'Lehigh Acres', NULL, 'lehigh-acres', 'US', 1, 26.6253500000, -81.6248000000), (1120335, 1001422, 'Lehigh County', NULL, 'lehigh-county', 'US', 1, 40.6127100000, -75.5923700000), (1120336, 1001422, 'Lehighton', NULL, 'lehighton', 'US', 1, 40.8337000000, -75.7138000000), (1120337, 1001433, 'Leicester', NULL, 'leicester', 'US', 1, 42.2459300000, -71.9086800000), (1120338, 1001409, 'Leicester', NULL, 'leicester', 'US', 1, 43.8667300000, -73.1078900000), (1120339, 1001411, 'Leilani Estates', NULL, 'leilani-estates', 'US', 1, 19.4697200000, -154.9177800000), (1120340, 1001436, 'Leisure City', NULL, 'leisure-city', 'US', 1, 25.4953900000, -80.4292200000), (1120341, 1001417, 'Leisure Knoll', NULL, 'leisure-knoll', 'US', 1, 40.0190100000, -74.2920900000), (1120342, 1001417, 'Leisure Village', NULL, 'leisure-village', 'US', 1, 40.0426200000, -74.1848600000), (1120343, 1001417, 'Leisure Village East', NULL, 'leisure-village-east', 'US', 1, 40.0301200000, -74.1643100000), (1120344, 1001417, 'Leisure Village West-Pine Lake Park', NULL, 'leisure-village-west-pine-lake-park', 'US', 1, 40.0041600000, -74.2662900000), (1120345, 1001401, 'Leisure World', NULL, 'leisure-world', 'US', 1, 39.1023000000, -77.0689800000), (1120346, 1001417, 'Leisuretowne', NULL, 'leisuretowne', 'US', 1, 39.8923400000, -74.7021000000), (1120347, 1001419, 'Leitchfield', NULL, 'leitchfield', 'US', 1, 37.4800500000, -86.2938600000), (1120348, 1001422, 'Leith-Hatfield', NULL, 'leith-hatfield', 'US', 1, 39.8774400000, -79.7313300000), (1120349, 1001430, 'Leland', NULL, 'leland', 'US', 1, 33.4053900000, -90.8976000000), (1120350, 1001447, 'Leland', NULL, 'leland', 'US', 1, 34.2562800000, -78.0447100000), (1120351, 1001426, 'Leland', NULL, 'leland', 'US', 1, 45.0230500000, -85.7598100000), (1120352, 1001425, 'Leland Grove', NULL, 'leland-grove', 'US', 1, 39.7770000000, -89.6792700000), (1120353, 1001436, 'Lely', NULL, 'lely', 'US', 1, 26.1006500000, -81.7284200000), (1120354, 1001436, 'Lely Resort', NULL, 'lely-resort', 'US', 1, 26.0809300000, -81.6978600000), (1120355, 1001451, 'Lemay', NULL, 'lemay', 'US', 1, 38.5333900000, -90.2792800000), (1120356, 1001460, 'Lemhi County', NULL, 'lemhi-county', 'US', 1, 44.9433100000, -113.9332400000), (1120357, 1001445, 'Lemmon', NULL, 'lemmon', 'US', 1, 45.9408300000, -102.1593200000), (1120358, 1001458, 'Lemmon Valley', NULL, 'lemmon-valley', 'US', 1, 39.6360200000, -119.8432500000), (1120359, 1001416, 'Lemon Grove', NULL, 'lemon-grove', 'US', 1, 32.7425500000, -117.0314200000), (1120360, 1001425, 'Lemont', NULL, 'lemont', 'US', 1, 41.6736400000, -88.0017300000), (1120361, 1001422, 'Lemont', NULL, 'lemont', 'US', 1, 40.8106200000, -77.8183300000), (1120362, 1001416, 'Lemoore', NULL, 'lemoore', 'US', 1, 36.3007800000, -119.7829100000), (1120363, 1001416, 'Lemoore Station', NULL, 'lemoore-station', 'US', 1, 36.2632600000, -119.9047600000), (1120364, 1001422, 'Lemoyne', NULL, 'lemoyne', 'US', 1, 40.2412000000, -76.8941400000), (1120365, 1001404, 'Lempster', NULL, 'lempster', 'US', 1, 43.2384100000, -72.2106400000), (1120366, 1001425, 'Lena', NULL, 'lena', 'US', 1, 42.3794600000, -89.8223400000), (1120367, 1001422, 'Lenape Heights', NULL, 'lenape-heights', 'US', 1, 40.7642300000, -79.5206000000), (1120368, 1001426, 'Lenawee County', NULL, 'lenawee-county', 'US', 1, 41.8950800000, -84.0663600000), (1120369, 1001406, 'Lenexa', NULL, 'lenexa', 'US', 1, 38.9536200000, -94.7335700000), (1120370, 1001445, 'Lennox', NULL, 'lennox', 'US', 1, 43.3541500000, -96.8920000000), (1120371, 1001416, 'Lennox', NULL, 'lennox', 'US', 1, 33.9380700000, -118.3525800000), (1120372, 1001447, 'Lenoir', NULL, 'lenoir', 'US', 1, 35.9140200000, -81.5389800000), (1120373, 1001454, 'Lenoir City', NULL, 'lenoir-city', 'US', 1, 35.7973000000, -84.2560300000), (1120374, 1001447, 'Lenoir County', NULL, 'lenoir-county', 'US', 1, 35.2391500000, -77.6412700000), (1120375, 1001459, 'Lenox', NULL, 'lenox', 'US', 1, 40.8816500000, -94.5619100000), (1120376, 1001433, 'Lenox', NULL, 'lenox', 'US', 1, 42.3564800000, -73.2848300000), (1120377, 1001415, 'Lents', NULL, 'lents', 'US', 1, 45.4798400000, -122.5673100000), (1120378, 1001416, 'Lenwood', NULL, 'lenwood', 'US', 1, 34.8766500000, -117.1039300000), (1120379, 1001440, 'Leo-Cedarville', NULL, 'leo-cedarville', 'US', 1, 41.2125500000, -85.0166400000), (1120380, 1001422, 'Leola', NULL, 'leola', 'US', 1, 40.0878700000, -76.1849500000), (1120381, 1001445, 'Leola', NULL, 'leola', 'US', 1, 45.7227500000, -98.9409400000), (1120382, 1001433, 'Leominster', NULL, 'leominster', 'US', 1, 42.5250900000, -71.7597900000), (1120383, 1001459, 'Leon', NULL, 'leon', 'US', 1, 40.7397200000, -93.7477200000), (1120384, 1001436, 'Leon County', NULL, 'leon-county', 'US', 1, 30.4580400000, -84.2778800000), (1120385, 1001407, 'Leon County', NULL, 'leon-county', 'US', 1, 31.2965100000, -95.9956900000), (1120386, 1001407, 'Leon Valley', NULL, 'leon-valley', 'US', 1, 29.4952300000, -98.6186300000), (1120387, 1001416, 'Leona Valley', NULL, 'leona-valley', 'US', 1, 34.6183200000, -118.2881300000), (1120388, 1001407, 'Leonard', NULL, 'leonard', 'US', 1, 33.3795500000, -96.2474800000), (1120389, 1001417, 'Leonardo', NULL, 'leonardo', 'US', 1, 40.4173300000, -74.0620800000), (1120390, 1001401, 'Leonardtown', NULL, 'leonardtown', 'US', 1, 38.2912400000, -76.6357900000), (1120391, 1001417, 'Leonia', NULL, 'leonia', 'US', 1, 40.8614900000, -73.9881900000), (1120392, 1001457, 'Leonville', NULL, 'leonville', 'US', 1, 30.4704700000, -91.9784500000), (1120393, 1001406, 'Leoti', NULL, 'leoti', 'US', 1, 38.4797400000, -101.3587700000), (1120394, 1001444, 'Lepanto', NULL, 'lepanto', 'US', 1, 35.6111900000, -90.3298200000), (1120395, 1001429, 'Lesage', NULL, 'lesage', 'US', 1, 38.5064700000, -82.2984800000), (1120396, 1001426, 'Leslie', NULL, 'leslie', 'US', 1, 42.4514300000, -84.4324700000), (1120397, 1001419, 'Leslie County', NULL, 'leslie-county', 'US', 1, 37.0940600000, -83.3811600000), (1120398, 1001443, 'Lesslie', NULL, 'lesslie', 'US', 1, 34.8907000000, -80.9564700000), (1120399, 1001420, 'Lester Prairie', NULL, 'lester-prairie', 'US', 1, 44.8838500000, -94.0416400000), (1120400, 1001419, 'Letcher County', NULL, 'letcher-county', 'US', 1, 37.1211900000, -82.8552800000), (1120401, 1001453, 'Levant', NULL, 'levant', 'US', 1, 44.8692400000, -68.9347600000), (1120402, 1001422, 'Level Green', NULL, 'level-green', 'US', 1, 40.3934000000, -79.7203200000), (1120403, 1001426, 'Level Park-Oak Park', NULL, 'level-park-oak-park', 'US', 1, 42.3641800000, -85.2665000000), (1120404, 1001456, 'Level Plains', NULL, 'level-plains', 'US', 1, 31.2996200000, -85.7779900000), (1120405, 1001407, 'Levelland', NULL, 'levelland', 'US', 1, 33.5873200000, -102.3779600000), (1120406, 1001433, 'Leverett', NULL, 'leverett', 'US', 1, 42.4520300000, -72.5014800000), (1120407, 1001452, 'Levittown', NULL, 'levittown', 'US', 1, 40.7259300000, -73.5142900000), (1120408, 1001422, 'Levittown', NULL, 'levittown', 'US', 1, 40.1551100000, -74.8287700000), (1120409, 1001436, 'Levy County', NULL, 'levy-county', 'US', 1, 29.2822100000, -82.7886100000), (1120410, 1001399, 'Lewes', NULL, 'lewes', 'US', 1, 38.7745600000, -75.1393500000), (1120411, 1001419, 'Lewis County', NULL, 'lewis-county', 'US', 1, 38.5315400000, -83.3780500000), (1120412, 1001454, 'Lewis County', NULL, 'lewis-county', 'US', 1, 35.5272800000, -87.4931000000), (1120413, 1001429, 'Lewis County', NULL, 'lewis-county', 'US', 1, 38.9958700000, -80.5021600000), (1120414, 1001451, 'Lewis County', NULL, 'lewis-county', 'US', 1, 40.0969000000, -91.7221400000), (1120415, 1001452, 'Lewis County', NULL, 'lewis-county', 'US', 1, 43.7846900000, -75.4487900000), (1120416, 1001460, 'Lewis County', NULL, 'lewis-county', 'US', 1, 46.2370200000, -116.4262500000), (1120417, 1001462, 'Lewis County', NULL, 'lewis-county', 'US', 1, 46.5777300000, -122.3924100000), (1120418, 1001446, 'Lewis and Clark County', NULL, 'lewis-and-clark-county', 'US', 1, 47.1223400000, -112.3903500000), (1120419, 1001454, 'Lewisburg', NULL, 'lewisburg', 'US', 1, 35.4492400000, -86.7888900000), (1120420, 1001429, 'Lewisburg', NULL, 'lewisburg', 'US', 1, 37.8017900000, -80.4456300000), (1120421, 1001422, 'Lewisburg', NULL, 'lewisburg', 'US', 1, 40.9645300000, -76.8844100000), (1120422, 1001419, 'Lewisport', NULL, 'lewisport', 'US', 1, 37.9370000000, -86.9022100000), (1120423, 1001453, 'Lewiston', NULL, 'lewiston', 'US', 1, 44.1003500000, -70.2147800000), (1120424, 1001426, 'Lewiston', NULL, 'lewiston', 'US', 1, 44.8839000000, -84.3055700000), (1120425, 1001420, 'Lewiston', NULL, 'lewiston', 'US', 1, 43.9844100000, -91.8693200000), (1120426, 1001452, 'Lewiston', NULL, 'lewiston', 'US', 1, 43.1725600000, -79.0358800000), (1120427, 1001416, 'Lewiston', NULL, 'lewiston', 'US', 1, 40.7073700000, -122.8075200000), (1120428, 1001460, 'Lewiston', NULL, 'lewiston', 'US', 1, 46.4165500000, -117.0176600000), (1120429, 1001414, 'Lewiston', NULL, 'lewiston', 'US', 1, 41.9757600000, -111.8563400000), (1120430, 1001460, 'Lewiston Orchards', NULL, 'lewiston-orchards', 'US', 1, 46.3804400000, -116.9754300000), (1120431, 1001425, 'Lewistown', NULL, 'lewistown', 'US', 1, 40.3931000000, -90.1548400000), (1120432, 1001422, 'Lewistown', NULL, 'lewistown', 'US', 1, 40.5992400000, -77.5713800000), (1120433, 1001446, 'Lewistown', NULL, 'lewistown', 'US', 1, 47.0624700000, -109.4282400000), (1120434, 1001444, 'Lewisville', NULL, 'lewisville', 'US', 1, 33.3584600000, -93.5776800000), (1120435, 1001447, 'Lewisville', NULL, 'lewisville', 'US', 1, 36.0970800000, -80.4192200000), (1120436, 1001407, 'Lewisville', NULL, 'lewisville', 'US', 1, 33.0462300000, -96.9941700000), (1120437, 1001462, 'Lewisville', NULL, 'lewisville', 'US', 1, 45.8098400000, -122.5231500000), (1120438, 1001455, 'Lexington', NULL, 'lexington', 'US', 1, 33.8698400000, -83.1118200000), (1120439, 1001419, 'Lexington', NULL, 'lexington', 'US', 1, 37.9886900000, -84.4777200000), (1120440, 1001451, 'Lexington', NULL, 'lexington', 'US', 1, 39.1847300000, -93.8799400000), (1120441, 1001430, 'Lexington', NULL, 'lexington', 'US', 1, 33.1131800000, -90.0531400000), (1120442, 1001447, 'Lexington', NULL, 'lexington', 'US', 1, 35.8240300000, -80.2533800000), (1120443, 1001443, 'Lexington', NULL, 'lexington', 'US', 1, 33.9815400000, -81.2362100000), (1120444, 1001454, 'Lexington', NULL, 'lexington', 'US', 1, 35.6509000000, -88.3933800000), (1120445, 1001421, 'Lexington', NULL, 'lexington', 'US', 1, 35.0147900000, -97.3355800000), (1120446, 1001407, 'Lexington', NULL, 'lexington', 'US', 1, 30.4191000000, -97.0116500000), (1120447, 1001427, 'Lexington', NULL, 'lexington', 'US', 1, 37.7840200000, -79.4428200000), (1120448, 1001433, 'Lexington', NULL, 'lexington', 'US', 1, 42.4473200000, -71.2245000000), (1120449, 1001425, 'Lexington', NULL, 'lexington', 'US', 1, 40.6414200000, -88.7834000000), (1120450, 1001420, 'Lexington', NULL, 'lexington', 'US', 1, 45.1424700000, -93.1632800000), (1120451, 1001426, 'Lexington', NULL, 'lexington', 'US', 1, 43.2680800000, -82.5307600000), (1120452, 1001408, 'Lexington', NULL, 'lexington', 'US', 1, 40.7808400000, -99.7415000000), (1120453, 1001443, 'Lexington County', NULL, 'lexington-county', 'US', 1, 33.9023300000, -81.2721900000), (1120454, 1001416, 'Lexington Hills', NULL, 'lexington-hills', 'US', 1, 37.1646700000, -121.9730100000), (1120455, 1001401, 'Lexington Park', NULL, 'lexington-park', 'US', 1, 38.2667900000, -76.4538400000), (1120456, 1001419, 'Lexington-Fayette', NULL, 'lexington-fayette', 'US', 1, 38.0498000000, -84.4585500000), (1120457, 1001446, 'Libby', NULL, 'libby', 'US', 1, 48.3882900000, -115.5560000000), (1120458, 1001406, 'Liberal', NULL, 'liberal', 'US', 1, 37.0430800000, -100.9210000000), (1120459, 1001419, 'Liberty', NULL, 'liberty', 'US', 1, 37.3184100000, -84.9394000000), (1120460, 1001440, 'Liberty', NULL, 'liberty', 'US', 1, 39.6356000000, -84.9310700000), (1120461, 1001451, 'Liberty', NULL, 'liberty', 'US', 1, 39.2461100000, -94.4191200000), (1120462, 1001447, 'Liberty', NULL, 'liberty', 'US', 1, 35.8534700000, -79.5716900000), (1120463, 1001430, 'Liberty', NULL, 'liberty', 'US', 1, 31.1582300000, -90.8123200000), (1120464, 1001443, 'Liberty', NULL, 'liberty', 'US', 1, 34.7878900000, -82.6923600000), (1120465, 1001407, 'Liberty', NULL, 'liberty', 'US', 1, 30.0579900000, -94.7954800000), (1120466, 1001452, 'Liberty', NULL, 'liberty', 'US', 1, 41.8012000000, -74.7465500000), (1120467, 1001422, 'Liberty', NULL, 'liberty', 'US', 1, 40.3253500000, -79.8561600000), (1120468, 1001414, 'Liberty', NULL, 'liberty', 'US', 1, 41.3335500000, -111.8635500000), (1120469, 1001407, 'Liberty City', NULL, 'liberty-city', 'US', 1, 32.4454300000, -94.9485500000), (1120470, 1001436, 'Liberty County', NULL, 'liberty-county', 'US', 1, 30.2413600000, -84.8829100000), (1120471, 1001455, 'Liberty County', NULL, 'liberty-county', 'US', 1, 31.8072300000, -81.4562600000), (1120472, 1001407, 'Liberty County', NULL, 'liberty-county', 'US', 1, 30.1516100000, -94.8122100000), (1120473, 1001446, 'Liberty County', NULL, 'liberty-county', 'US', 1, 48.5616900000, -111.0246100000), (1120474, 1001407, 'Liberty Hill', NULL, 'liberty-hill', 'US', 1, 30.6649100000, -97.9225200000), (1120475, 1001462, 'Liberty Lake', NULL, 'liberty-lake', 'US', 1, 47.6759100000, -117.1182100000), (1120476, 1001425, 'Libertyville', NULL, 'libertyville', 'US', 1, 42.2830800000, -87.9531300000), (1120477, 1001451, 'Licking', NULL, 'licking', 'US', 1, 37.4994900000, -91.8571000000), (1120478, 1001452, 'Lido Beach', NULL, 'lido-beach', 'US', 1, 40.5889900000, -73.6254100000), (1120479, 1001422, 'Light Street', NULL, 'light-street', 'US', 1, 41.0362000000, -76.4235600000), (1120480, 1001436, 'Lighthouse Point', NULL, 'lighthouse-point', 'US', 1, 26.2756400000, -80.0872700000), (1120481, 1001440, 'Ligonier', NULL, 'ligonier', 'US', 1, 41.4658800000, -85.5874800000), (1120482, 1001422, 'Ligonier', NULL, 'ligonier', 'US', 1, 40.2431300000, -79.2375300000), (1120483, 1001411, 'Lihue', NULL, 'lihue', 'US', 1, 21.9812100000, -159.3721000000), (1120484, 1001451, 'Lilbourn', NULL, 'lilbourn', 'US', 1, 36.5922800000, -89.6153600000), (1120485, 1001455, 'Lilburn', NULL, 'lilburn', 'US', 1, 33.8901000000, -84.1429700000), (1120486, 1001447, 'Lillington', NULL, 'lillington', 'US', 1, 35.3993300000, -78.8158500000), (1120487, 1001425, 'Lily Lake', NULL, 'lily-lake', 'US', 1, 41.9489200000, -88.4778600000), (1120488, 1001422, 'Lima', NULL, 'lima', 'US', 1, 39.9173300000, -75.4404700000), (1120489, 1001452, 'Lima', NULL, 'lima', 'US', 1, 42.9047900000, -77.6113900000), (1120490, 1001453, 'Limerick', NULL, 'limerick', 'US', 1, 43.6884100000, -70.7936700000), (1120491, 1001422, 'Limerick', NULL, 'limerick', 'US', 1, 40.2309300000, -75.5221200000), (1120492, 1001453, 'Limestone', NULL, 'limestone', 'US', 1, 46.9086600000, -67.8258500000), (1120493, 1001425, 'Limestone', NULL, 'limestone', 'US', 1, 41.1323700000, -87.9684000000), (1120494, 1001456, 'Limestone County', NULL, 'limestone-county', 'US', 1, 34.8100800000, -86.9813700000), (1120495, 1001407, 'Limestone County', NULL, 'limestone-county', 'US', 1, 31.5454600000, -96.5805300000), (1120496, 1001436, 'Limestone Creek', NULL, 'limestone-creek', 'US', 1, 26.9428400000, -80.1411500000), (1120497, 1001453, 'Limington', NULL, 'limington', 'US', 1, 43.7317400000, -70.7108900000), (1120498, 1001450, 'Limon', NULL, 'limon', 'US', 1, 39.2638800000, -103.6921700000), (1120499, 1001456, 'Lincoln', NULL, 'lincoln', 'US', 1, 33.6131600000, -86.1183100000), (1120500, 1001444, 'Lincoln', NULL, 'lincoln', 'US', 1, 35.9495300000, -94.4235500000), (1120501, 1001406, 'Lincoln', NULL, 'lincoln', 'US', 1, 39.0408400000, -98.1447700000), (1120502, 1001451, 'Lincoln', NULL, 'lincoln', 'US', 1, 38.3908600000, -93.3346500000), (1120503, 1001425, 'Lincoln', NULL, 'lincoln', 'US', 1, 40.1483800000, -89.3648200000), (1120504, 1001433, 'Lincoln', NULL, 'lincoln', 'US', 1, 42.4259300000, -71.3039500000), (1120505, 1001453, 'Lincoln', NULL, 'lincoln', 'US', 1, 45.3622800000, -68.5050200000), (1120506, 1001408, 'Lincoln', NULL, 'lincoln', 'US', 1, 40.8000000000, -96.6669600000), (1120507, 1001422, 'Lincoln', NULL, 'lincoln', 'US', 1, 40.3189600000, -79.8547700000), (1120508, 1001409, 'Lincoln', NULL, 'lincoln', 'US', 1, 44.1058900000, -72.9970600000), (1120509, 1001416, 'Lincoln', NULL, 'lincoln', 'US', 1, 38.8915600000, -121.2930100000), (1120510, 1001418, 'Lincoln', NULL, 'lincoln', 'US', 1, 46.7624900000, -100.7004000000), (1120511, 1001460, 'Lincoln', NULL, 'lincoln', 'US', 1, 43.5129700000, -111.9644100000), (1120512, 1001446, 'Lincoln', NULL, 'lincoln', 'US', 1, 46.9549400000, -112.6817100000), (1120513, 1001461, 'Lincoln', NULL, 'lincoln', 'US', 1, 41.9211100000, -71.4350000000), (1120514, 1001415, 'Lincoln Beach', NULL, 'lincoln-beach', 'US', 1, 44.8503900000, -124.0467800000), (1120515, 1001415, 'Lincoln City', NULL, 'lincoln-city', 'US', 1, 44.9581600000, -124.0178900000), (1120516, 1001444, 'Lincoln County', NULL, 'lincoln-county', 'US', 1, 33.9574700000, -91.7333200000), (1120517, 1001455, 'Lincoln County', NULL, 'lincoln-county', 'US', 1, 33.7936600000, -82.4512100000), (1120518, 1001406, 'Lincoln County', NULL, 'lincoln-county', 'US', 1, 39.0453300000, -98.2077000000), (1120519, 1001419, 'Lincoln County', NULL, 'lincoln-county', 'US', 1, 37.4553500000, -84.6608100000), (1120520, 1001451, 'Lincoln County', NULL, 'lincoln-county', 'US', 1, 39.0580200000, -90.9600500000), (1120521, 1001430, 'Lincoln County', NULL, 'lincoln-county', 'US', 1, 31.5323900000, -90.4540000000), (1120522, 1001447, 'Lincoln County', NULL, 'lincoln-county', 'US', 1, 35.4861800000, -81.2238700000), (1120523, 1001421, 'Lincoln County', NULL, 'lincoln-county', 'US', 1, 35.7030000000, -96.8809200000), (1120524, 1001454, 'Lincoln County', NULL, 'lincoln-county', 'US', 1, 35.1405200000, -86.5889400000), (1120525, 1001429, 'Lincoln County', NULL, 'lincoln-county', 'US', 1, 38.1753600000, -82.0703900000), (1120526, 1001453, 'Lincoln County', NULL, 'lincoln-county', 'US', 1, 43.9977900000, -69.5257600000), (1120527, 1001420, 'Lincoln County', NULL, 'lincoln-county', 'US', 1, 44.4126000000, -96.2670900000), (1120528, 1001445, 'Lincoln County', NULL, 'lincoln-county', 'US', 1, 43.2789200000, -96.7218200000), (1120529, 1001441, 'Lincoln County', NULL, 'lincoln-county', 'US', 1, 45.3374600000, -89.7346100000), (1120530, 1001450, 'Lincoln County', NULL, 'lincoln-county', 'US', 1, 38.9880700000, -103.5139700000), (1120531, 1001423, 'Lincoln County', NULL, 'lincoln-county', 'US', 1, 33.7452400000, -105.4592500000), (1120532, 1001458, 'Lincoln County', NULL, 'lincoln-county', 'US', 1, 37.6433500000, -114.8775500000), (1120533, 1001460, 'Lincoln County', NULL, 'lincoln-county', 'US', 1, 43.0024100000, -114.1383100000), (1120534, 1001446, 'Lincoln County', NULL, 'lincoln-county', 'US', 1, 48.5425300000, -115.4051900000), (1120535, 1001408, 'Lincoln County', NULL, 'lincoln-county', 'US', 1, 41.0477700000, -100.7452300000), (1120536, 1001415, 'Lincoln County', NULL, 'lincoln-county', 'US', 1, 44.6456800000, -123.9077000000), (1120537, 1001462, 'Lincoln County', NULL, 'lincoln-county', 'US', 1, 47.5761900000, -118.4187900000), (1120538, 1001442, 'Lincoln County', NULL, 'lincoln-county', 'US', 1, 42.2640400000, -110.6559700000), (1120539, 1001457, 'Lincoln Parish', NULL, 'lincoln-parish', 'US', 1, 32.6016400000, -92.6648200000), (1120540, 1001425, 'Lincoln Park', NULL, 'lincoln-park', 'US', 1, 41.9217000000, -87.6478300000), (1120541, 1001426, 'Lincoln Park', NULL, 'lincoln-park', 'US', 1, 42.2505900000, -83.1785400000), (1120542, 1001417, 'Lincoln Park', NULL, 'lincoln-park', 'US', 1, 40.9242700000, -74.3020900000), (1120543, 1001452, 'Lincoln Park', NULL, 'lincoln-park', 'US', 1, 41.9506500000, -73.9940300000), (1120544, 1001422, 'Lincoln Park', NULL, 'lincoln-park', 'US', 1, 40.3148100000, -75.9854900000), (1120545, 1001450, 'Lincoln Park', NULL, 'lincoln-park', 'US', 1, 38.4291600000, -105.2199900000), (1120546, 1001425, 'Lincoln Square', NULL, 'lincoln-square', 'US', 1, 41.9758700000, -87.6892200000), (1120547, 1001416, 'Lincoln Village', NULL, 'lincoln-village', 'US', 1, 38.0052000000, -121.3282800000), (1120548, 1001452, 'Lincolndale', NULL, 'lincolndale', 'US', 1, 41.3228700000, -73.7181900000), (1120549, 1001427, 'Lincolnia', NULL, 'lincolnia', 'US', 1, 38.8184500000, -77.1433100000), (1120550, 1001425, 'Lincolnshire', NULL, 'lincolnshire', 'US', 1, 42.1900200000, -87.9084000000), (1120551, 1001455, 'Lincolnton', NULL, 'lincolnton', 'US', 1, 33.7923500000, -82.4790200000), (1120552, 1001447, 'Lincolnton', NULL, 'lincolnton', 'US', 1, 35.4737500000, -81.2545300000), (1120553, 1001443, 'Lincolnville', NULL, 'lincolnville', 'US', 1, 33.0068400000, -80.1553700000), (1120554, 1001453, 'Lincolnville', NULL, 'lincolnville', 'US', 1, 44.2811900000, -69.0086500000), (1120555, 1001425, 'Lincolnwood', NULL, 'lincolnwood', 'US', 1, 42.0044800000, -87.7300600000), (1120556, 1001417, 'Lincroft', NULL, 'lincroft', 'US', 1, 40.3306700000, -74.1209700000), (1120557, 1001416, 'Linda', NULL, 'linda', 'US', 1, 39.1276700000, -121.5508000000), (1120558, 1001455, 'Lindale', NULL, 'lindale', 'US', 1, 34.1867600000, -85.1746700000), (1120559, 1001407, 'Lindale', NULL, 'lindale', 'US', 1, 32.5157000000, -95.4094000000), (1120560, 1001456, 'Linden', NULL, 'linden', 'US', 1, 32.3062500000, -87.7980700000), (1120561, 1001454, 'Linden', NULL, 'linden', 'US', 1, 35.6172900000, -87.8394700000), (1120562, 1001407, 'Linden', NULL, 'linden', 'US', 1, 33.0123500000, -94.3654700000), (1120563, 1001426, 'Linden', NULL, 'linden', 'US', 1, 42.8144700000, -83.7824500000), (1120564, 1001417, 'Linden', NULL, 'linden', 'US', 1, 40.6220500000, -74.2445900000), (1120565, 1001434, 'Linden', NULL, 'linden', 'US', 1, 34.2850400000, -110.1570600000), (1120566, 1001416, 'Linden', NULL, 'linden', 'US', 1, 38.0213100000, -121.0838300000), (1120567, 1001425, 'Lindenhurst', NULL, 'lindenhurst', 'US', 1, 42.4105800000, -88.0261900000), (1120568, 1001452, 'Lindenhurst', NULL, 'lindenhurst', 'US', 1, 40.6867700000, -73.3734500000), (1120569, 1001417, 'Lindenwold', NULL, 'lindenwold', 'US', 1, 39.8242800000, -74.9976700000), (1120570, 1001452, 'Lindley', NULL, 'lindley', 'US', 1, 42.0284100000, -77.1396900000), (1120571, 1001414, 'Lindon', NULL, 'lindon', 'US', 1, 40.3432900000, -111.7207600000), (1120572, 1001421, 'Lindsay', NULL, 'lindsay', 'US', 1, 34.8348000000, -97.6025300000), (1120573, 1001407, 'Lindsay', NULL, 'lindsay', 'US', 1, 33.6359400000, -97.2227900000), (1120574, 1001416, 'Lindsay', NULL, 'lindsay', 'US', 1, 36.2030100000, -119.0881600000), (1120575, 1001406, 'Lindsborg', NULL, 'lindsborg', 'US', 1, 38.5736200000, -97.6744800000), (1120576, 1001420, 'Lindstrom', NULL, 'lindstrom', 'US', 1, 45.3894100000, -92.8479900000), (1120577, 1001456, 'Lineville', NULL, 'lineville', 'US', 1, 33.3106700000, -85.7544100000), (1120578, 1001401, 'Linganore', NULL, 'linganore', 'US', 1, 39.4403800000, -77.2080400000), (1120579, 1001422, 'Linglestown', NULL, 'linglestown', 'US', 1, 40.3339800000, -76.7891400000), (1120580, 1001451, 'Linn', NULL, 'linn', 'US', 1, 38.4858700000, -91.8504500000), (1120581, 1001406, 'Linn County', NULL, 'linn-county', 'US', 1, 38.2122700000, -94.8429300000), (1120582, 1001451, 'Linn County', NULL, 'linn-county', 'US', 1, 39.8702100000, -93.1071800000), (1120583, 1001459, 'Linn County', NULL, 'linn-county', 'US', 1, 42.0789500000, -91.5989600000), (1120584, 1001415, 'Linn County', NULL, 'linn-county', 'US', 1, 44.4885700000, -122.5341900000), (1120585, 1001451, 'Linneus', NULL, 'linneus', 'US', 1, 39.8786300000, -93.1888200000), (1120586, 1001422, 'Linntown', NULL, 'linntown', 'US', 1, 40.9589700000, -76.8991300000), (1120587, 1001420, 'Lino Lakes', NULL, 'lino-lakes', 'US', 1, 45.1602400000, -93.0888300000), (1120588, 1001401, 'Linthicum', NULL, 'linthicum', 'US', 1, 39.2051100000, -76.6527500000), (1120589, 1001440, 'Linton', NULL, 'linton', 'US', 1, 39.0347700000, -87.1658500000), (1120590, 1001418, 'Linton', NULL, 'linton', 'US', 1, 46.2666600000, -100.2328900000), (1120591, 1001427, 'Linton Hall', NULL, 'linton-hall', 'US', 1, 38.7598400000, -77.5749900000), (1120592, 1001417, 'Linwood', NULL, 'linwood', 'US', 1, 39.3398400000, -74.5751600000), (1120593, 1001422, 'Linwood', NULL, 'linwood', 'US', 1, 39.8265000000, -75.4254700000), (1120594, 1001422, 'Lionville', NULL, 'lionville', 'US', 1, 40.0537200000, -75.6599300000), (1120595, 1001456, 'Lipscomb', NULL, 'lipscomb', 'US', 1, 33.4256600000, -86.9266600000), (1120596, 1001407, 'Lipscomb County', NULL, 'lipscomb-county', 'US', 1, 36.2777100000, -100.2731200000), (1120597, 1001435, 'Lisbon', NULL, 'lisbon', 'US', 1, 41.6039900000, -72.0117400000), (1120598, 1001459, 'Lisbon', NULL, 'lisbon', 'US', 1, 41.9211200000, -91.3854500000), (1120599, 1001453, 'Lisbon', NULL, 'lisbon', 'US', 1, 44.0314600000, -70.1045000000), (1120600, 1001418, 'Lisbon', NULL, 'lisbon', 'US', 1, 46.4416300000, -97.6812100000), (1120601, 1001453, 'Lisbon Falls', NULL, 'lisbon-falls', 'US', 1, 43.9961900000, -70.0606100000), (1120602, 1001425, 'Lisle', NULL, 'lisle', 'US', 1, 41.8011400000, -88.0747900000), (1120603, 1001425, 'Litchfield', NULL, 'litchfield', 'US', 1, 39.1753300000, -89.6542600000), (1120604, 1001435, 'Litchfield', NULL, 'litchfield', 'US', 1, 41.7473200000, -73.1887200000), (1120605, 1001420, 'Litchfield', NULL, 'litchfield', 'US', 1, 45.1271800000, -94.5280500000), (1120606, 1001426, 'Litchfield', NULL, 'litchfield', 'US', 1, 42.0439300000, -84.7574600000), (1120607, 1001404, 'Litchfield', NULL, 'litchfield', 'US', 1, 42.8442500000, -71.4797900000), (1120608, 1001435, 'Litchfield County', NULL, 'litchfield-county', 'US', 1, 41.7924900000, -73.2453200000), (1120609, 1001434, 'Litchfield Park', NULL, 'litchfield-park', 'US', 1, 33.4933700000, -112.3579400000), (1120610, 1001455, 'Lithia Springs', NULL, 'lithia-springs', 'US', 1, 33.7940000000, -84.6604900000), (1120611, 1001455, 'Lithonia', NULL, 'lithonia', 'US', 1, 33.7123300000, -84.1051900000), (1120612, 1001422, 'Lititz', NULL, 'lititz', 'US', 1, 40.1573200000, -76.3069000000), (1120613, 1001420, 'Little Canada', NULL, 'little-canada', 'US', 1, 45.0269100000, -93.0877200000), (1120614, 1001441, 'Little Chute', NULL, 'little-chute', 'US', 1, 44.2799900000, -88.3184400000), (1120615, 1001414, 'Little Cottonwood Creek Valley', NULL, 'little-cottonwood-creek-valley', 'US', 1, 40.6043900000, -111.8293800000), (1120616, 1001407, 'Little Elm', NULL, 'little-elm', 'US', 1, 33.1626200000, -96.9375100000), (1120617, 1001420, 'Little Falls', NULL, 'little-falls', 'US', 1, 45.9763500000, -94.3625000000), (1120618, 1001417, 'Little Falls', NULL, 'little-falls', 'US', 1, 40.8689900000, -74.2082000000), (1120619, 1001452, 'Little Falls', NULL, 'little-falls', 'US', 1, 43.0434000000, -74.8596000000), (1120620, 1001417, 'Little Ferry', NULL, 'little-ferry', 'US', 1, 40.8528800000, -74.0420800000), (1120621, 1001444, 'Little Flock', NULL, 'little-flock', 'US', 1, 36.3859100000, -94.1352000000), (1120622, 1001452, 'Little Neck', NULL, 'little-neck', 'US', 1, 40.7628900000, -73.7322500000), (1120623, 1001443, 'Little River', NULL, 'little-river', 'US', 1, 33.8732300000, -78.6141800000), (1120624, 1001444, 'Little River County', NULL, 'little-river-county', 'US', 1, 33.7005400000, -94.2343400000), (1120625, 1001407, 'Little River-Academy', NULL, 'little-river-academy', 'US', 1, 30.9862900000, -97.3586100000), (1120626, 1001444, 'Little Rock', NULL, 'little-rock', 'US', 1, 34.7464800000, -92.2895900000), (1120627, 1001420, 'Little Rock', NULL, 'little-rock', 'US', 1, 47.8680100000, -95.1105500000), (1120628, 1001444, 'Little Rock Air Force Base', NULL, 'little-rock-air-force-base', 'US', 1, 34.8914900000, -92.1595500000), (1120629, 1001441, 'Little Round Lake', NULL, 'little-round-lake', 'US', 1, 45.9649500000, -91.3679500000), (1120630, 1001417, 'Little Silver', NULL, 'little-silver', 'US', 1, 40.3367800000, -74.0470800000), (1120631, 1001452, 'Little Valley', NULL, 'little-valley', 'US', 1, 42.2525600000, -78.8055900000), (1120632, 1001407, 'Littlefield', NULL, 'littlefield', 'US', 1, 33.9173100000, -102.3249000000), (1120633, 1001416, 'Littlerock', NULL, 'littlerock', 'US', 1, 34.5211000000, -117.9836800000), (1120634, 1001422, 'Littlestown', NULL, 'littlestown', 'US', 1, 39.7445400000, -77.0880400000), (1120635, 1001404, 'Littleton', NULL, 'littleton', 'US', 1, 44.3061700000, -71.7700900000), (1120636, 1001450, 'Littleton', NULL, 'littleton', 'US', 1, 39.6133200000, -105.0166500000), (1120637, 1001433, 'Littleton Common', NULL, 'littleton-common', 'US', 1, 42.5459300000, -71.4745100000), (1120638, 1001436, 'Live Oak', NULL, 'live-oak', 'US', 1, 30.2949500000, -82.9840200000), (1120639, 1001407, 'Live Oak', NULL, 'live-oak', 'US', 1, 29.5652300000, -98.3364000000), (1120640, 1001416, 'Live Oak', NULL, 'live-oak', 'US', 1, 36.9835600000, -121.9805200000), (1120641, 1001407, 'Live Oak County', NULL, 'live-oak-county', 'US', 1, 28.3513700000, -98.1247900000), (1120642, 1001419, 'Livermore', NULL, 'livermore', 'US', 1, 37.4931000000, -87.1319400000), (1120643, 1001453, 'Livermore', NULL, 'livermore', 'US', 1, 44.3839600000, -70.2492200000), (1120644, 1001416, 'Livermore', NULL, 'livermore', 'US', 1, 37.6818700000, -121.7680100000), (1120645, 1001453, 'Livermore Falls', NULL, 'livermore-falls', 'US', 1, 44.4753400000, -70.1881100000), (1120646, 1001452, 'Liverpool', NULL, 'liverpool', 'US', 1, 43.1064600000, -76.2177000000), (1120647, 1001456, 'Livingston', NULL, 'livingston', 'US', 1, 32.5843000000, -88.1872500000), (1120648, 1001457, 'Livingston', NULL, 'livingston', 'US', 1, 30.5021300000, -90.7478700000), (1120649, 1001454, 'Livingston', NULL, 'livingston', 'US', 1, 36.3834000000, -85.3230200000), (1120650, 1001407, 'Livingston', NULL, 'livingston', 'US', 1, 30.7110300000, -94.9329900000), (1120651, 1001417, 'Livingston', NULL, 'livingston', 'US', 1, 40.7959300000, -74.3148700000), (1120652, 1001416, 'Livingston', NULL, 'livingston', 'US', 1, 37.3868800000, -120.7235300000), (1120653, 1001446, 'Livingston', NULL, 'livingston', 'US', 1, 45.6624400000, -110.5610400000), (1120654, 1001419, 'Livingston County', NULL, 'livingston-county', 'US', 1, 37.2097000000, -88.3538100000), (1120655, 1001451, 'Livingston County', NULL, 'livingston-county', 'US', 1, 39.7821100000, -93.5482800000), (1120656, 1001425, 'Livingston County', NULL, 'livingston-county', 'US', 1, 40.8915600000, -88.5577200000), (1120657, 1001426, 'Livingston County', NULL, 'livingston-county', 'US', 1, 42.6029200000, -83.9115300000), (1120658, 1001452, 'Livingston County', NULL, 'livingston-county', 'US', 1, 42.7280800000, -77.7754900000), (1120659, 1001452, 'Livingston Manor', NULL, 'livingston-manor', 'US', 1, 41.9003700000, -74.8282200000), (1120660, 1001457, 'Livingston Parish', NULL, 'livingston-parish', 'US', 1, 30.4401400000, -90.7279100000), (1120661, 1001457, 'Livonia', NULL, 'livonia', 'US', 1, 30.5590800000, -91.5559400000), (1120662, 1001426, 'Livonia', NULL, 'livonia', 'US', 1, 42.3683700000, -83.3527100000), (1120663, 1001452, 'Livonia', NULL, 'livonia', 'US', 1, 42.8214500000, -77.6686100000), (1120664, 1001407, 'Llano', NULL, 'llano', 'US', 1, 30.7593500000, -98.6750400000), (1120665, 1001407, 'Llano County', NULL, 'llano-county', 'US', 1, 30.7057400000, -98.6841000000), (1120666, 1001407, 'Llano Grande', NULL, 'llano-grande', 'US', 1, 26.1298000000, -97.9680600000), (1120667, 1001452, 'Lloyd Harbor', NULL, 'lloyd-harbor', 'US', 1, 40.9034300000, -73.4598400000), (1120668, 1001414, 'Loa', NULL, 'loa', 'US', 1, 38.4027600000, -111.6429600000), (1120669, 1001427, 'Loch Lomond', NULL, 'loch-lomond', 'US', 1, 38.7862300000, -77.4780400000), (1120670, 1001450, 'Lochbuie', NULL, 'lochbuie', 'US', 1, 40.0072100000, -104.7160800000), (1120671, 1001401, 'Lochearn', NULL, 'lochearn', 'US', 1, 39.3406600000, -76.7221900000), (1120672, 1001436, 'Lochmoor Waterway Estates', NULL, 'lochmoor-waterway-estates', 'US', 1, 26.6442400000, -81.9098100000), (1120673, 1001462, 'Lochsloy', NULL, 'lochsloy', 'US', 1, 48.0514900000, -122.0320800000), (1120674, 1001422, 'Lock Haven', NULL, 'lock-haven', 'US', 1, 41.1370100000, -77.4469300000), (1120675, 1001416, 'Lockeford', NULL, 'lockeford', 'US', 1, 38.1635300000, -121.1499400000), (1120676, 1001436, 'Lockhart', NULL, 'lockhart', 'US', 1, 28.6194400000, -81.4425700000), (1120677, 1001407, 'Lockhart', NULL, 'lockhart', 'US', 1, 29.8849400000, -97.6700000000), (1120678, 1001407, 'Lockney', NULL, 'lockney', 'US', 1, 34.1245200000, -101.4415500000), (1120679, 1001457, 'Lockport', NULL, 'lockport', 'US', 1, 29.6460500000, -90.5392500000), (1120680, 1001425, 'Lockport', NULL, 'lockport', 'US', 1, 41.5894800000, -88.0578400000), (1120681, 1001452, 'Lockport', NULL, 'lockport', 'US', 1, 43.1706100000, -78.6903100000), (1120682, 1001457, 'Lockport Heights', NULL, 'lockport-heights', 'US', 1, 29.6504900000, -90.5464700000), (1120683, 1001446, 'Lockwood', NULL, 'lockwood', 'US', 1, 45.8191200000, -108.4148600000), (1120684, 1001447, 'Locust', NULL, 'locust', 'US', 1, 35.2598700000, -80.4253400000), (1120685, 1001456, 'Locust Fork', NULL, 'locust-fork', 'US', 1, 33.9076000000, -86.6152700000), (1120686, 1001455, 'Locust Grove', NULL, 'locust-grove', 'US', 1, 33.3459500000, -84.1090800000), (1120687, 1001421, 'Locust Grove', NULL, 'locust-grove', 'US', 1, 36.2000900000, -95.1677400000); INSERT INTO `[[dbprefix]]t_city` VALUES (1120688, 1001452, 'Locust Valley', NULL, 'locust-valley', 'US', 1, 40.8759300000, -73.5970700000), (1120689, 1001417, 'Lodi', NULL, 'lodi', 'US', 1, 40.8823200000, -74.0832000000), (1120690, 1001441, 'Lodi', NULL, 'lodi', 'US', 1, 43.3138800000, -89.5265100000), (1120691, 1001416, 'Lodi', NULL, 'lodi', 'US', 1, 38.1302000000, -121.2724500000), (1120692, 1001462, 'Lofall', NULL, 'lofall', 'US', 1, 47.8120400000, -122.6582100000), (1120693, 1001429, 'Logan', NULL, 'logan', 'US', 1, 37.8487100000, -81.9934600000), (1120694, 1001459, 'Logan', NULL, 'logan', 'US', 1, 41.6430500000, -95.7889000000), (1120695, 1001414, 'Logan', NULL, 'logan', 'US', 1, 41.7354900000, -111.8343900000), (1120696, 1001444, 'Logan County', NULL, 'logan-county', 'US', 1, 35.2152700000, -93.7163100000), (1120697, 1001419, 'Logan County', NULL, 'logan-county', 'US', 1, 36.8597000000, -86.8789400000), (1120698, 1001421, 'Logan County', NULL, 'logan-county', 'US', 1, 35.9193400000, -97.4433200000), (1120699, 1001429, 'Logan County', NULL, 'logan-county', 'US', 1, 37.8315300000, -81.9353400000), (1120700, 1001425, 'Logan County', NULL, 'logan-county', 'US', 1, 40.1245600000, -89.3675500000), (1120701, 1001418, 'Logan County', NULL, 'logan-county', 'US', 1, 46.4573600000, -99.4774700000), (1120702, 1001406, 'Logan County', NULL, 'logan-county', 'US', 1, 38.9173400000, -101.1483900000), (1120703, 1001450, 'Logan County', NULL, 'logan-county', 'US', 1, 40.7246800000, -103.1101000000), (1120704, 1001408, 'Logan County', NULL, 'logan-county', 'US', 1, 41.5664900000, -100.4828600000), (1120705, 1001425, 'Logan Square', NULL, 'logan-square', 'US', 1, 41.9233700000, -87.6992200000), (1120706, 1001457, 'Logansport', NULL, 'logansport', 'US', 1, 31.9754500000, -93.9979700000), (1120707, 1001440, 'Logansport', NULL, 'logansport', 'US', 1, 40.7544800000, -86.3566700000), (1120708, 1001455, 'Loganville', NULL, 'loganville', 'US', 1, 33.8390000000, -83.9007400000), (1120709, 1001422, 'Loganville', NULL, 'loganville', 'US', 1, 39.8556600000, -76.7074700000), (1120710, 1001446, 'Lolo', NULL, 'lolo', 'US', 1, 46.7588100000, -114.0809400000), (1120711, 1001450, 'Loma', NULL, 'loma', 'US', 1, 39.1958100000, -108.8131600000), (1120712, 1001416, 'Loma Linda', NULL, 'loma-linda', 'US', 1, 34.0483500000, -117.2611500000), (1120713, 1001416, 'Loma Rica', NULL, 'loma-rica', 'US', 1, 39.3118300000, -121.4177400000), (1120714, 1001425, 'Lombard', NULL, 'lombard', 'US', 1, 41.8800300000, -88.0078400000), (1120715, 1001441, 'Lomira', NULL, 'lomira', 'US', 1, 43.5913800000, -88.4437100000), (1120716, 1001416, 'Lomita', NULL, 'lomita', 'US', 1, 33.7922400000, -118.3150700000), (1120717, 1001416, 'Lompico', NULL, 'lompico', 'US', 1, 37.1055000000, -122.0527400000), (1120718, 1001416, 'Lompoc', NULL, 'lompoc', 'US', 1, 34.6391500000, -120.4579400000), (1120719, 1001401, 'Lonaconing', NULL, 'lonaconing', 'US', 1, 39.5659200000, -78.9803000000), (1120720, 1001444, 'London', NULL, 'london', 'US', 1, 35.3289700000, -93.2529600000), (1120721, 1001419, 'London', NULL, 'london', 'US', 1, 37.1289800000, -84.0832600000), (1120722, 1001416, 'London', NULL, 'london', 'US', 1, 36.4760600000, -119.4431800000), (1120723, 1001404, 'Londonderry', NULL, 'londonderry', 'US', 1, 42.8650900000, -71.3739500000), (1120724, 1001409, 'Londonderry', NULL, 'londonderry', 'US', 1, 43.2264600000, -72.8064900000), (1120725, 1001401, 'Londontowne', NULL, 'londontowne', 'US', 1, 38.9334500000, -76.5494100000), (1120726, 1001421, 'Lone Grove', NULL, 'lone-grove', 'US', 1, 34.1753700000, -97.2627900000), (1120727, 1001451, 'Lone Jack', NULL, 'lone-jack', 'US', 1, 38.8708400000, -94.1738300000), (1120728, 1001454, 'Lone Oak', NULL, 'lone-oak', 'US', 1, 35.2006300000, -85.3641300000), (1120729, 1001416, 'Lone Pine', NULL, 'lone-pine', 'US', 1, 36.6062600000, -118.0646200000), (1120730, 1001407, 'Lone Star', NULL, 'lone-star', 'US', 1, 32.9440200000, -94.7071500000), (1120731, 1001459, 'Lone Tree', NULL, 'lone-tree', 'US', 1, 41.4880800000, -91.4259900000), (1120732, 1001450, 'Lone Tree', NULL, 'lone-tree', 'US', 1, 39.5517100000, -104.8863000000), (1120733, 1001401, 'Long Beach', NULL, 'long-beach', 'US', 1, 38.4609600000, -76.4688400000), (1120734, 1001447, 'Long Beach', NULL, 'long-beach', 'US', 1, 33.9104500000, -78.1177700000), (1120735, 1001430, 'Long Beach', NULL, 'long-beach', 'US', 1, 30.3504800000, -89.1528200000), (1120736, 1001440, 'Long Beach', NULL, 'long-beach', 'US', 1, 41.7389300000, -86.8569700000), (1120737, 1001452, 'Long Beach', NULL, 'long-beach', 'US', 1, 40.5884400000, -73.6579100000), (1120738, 1001416, 'Long Beach', NULL, 'long-beach', 'US', 1, 33.7669600000, -118.1892300000), (1120739, 1001462, 'Long Beach', NULL, 'long-beach', 'US', 1, 46.3523200000, -124.0543200000), (1120740, 1001417, 'Long Branch', NULL, 'long-branch', 'US', 1, 40.3042800000, -73.9923600000), (1120741, 1001455, 'Long County', NULL, 'long-county', 'US', 1, 31.7525800000, -81.7457700000), (1120742, 1001425, 'Long Creek', NULL, 'long-creek', 'US', 1, 39.8119800000, -88.8475700000), (1120743, 1001425, 'Long Grove', NULL, 'long-grove', 'US', 1, 42.1783600000, -87.9978500000), (1120744, 1001435, 'Long Hill', NULL, 'long-hill', 'US', 1, 41.3539900000, -72.0523000000), (1120745, 1001452, 'Long Island City', NULL, 'long-island-city', 'US', 1, 40.7448200000, -73.9487500000), (1120746, 1001425, 'Long Lake', NULL, 'long-lake', 'US', 1, 42.3708500000, -88.1275800000), (1120747, 1001420, 'Long Lake', NULL, 'long-lake', 'US', 1, 44.9866300000, -93.5716200000), (1120748, 1001399, 'Long Neck', NULL, 'long-neck', 'US', 1, 38.6201100000, -75.1507400000), (1120749, 1001420, 'Long Prairie', NULL, 'long-prairie', 'US', 1, 45.9746900000, -94.8655800000), (1120750, 1001417, 'Long Valley', NULL, 'long-valley', 'US', 1, 40.7859300000, -74.7801600000), (1120751, 1001436, 'Longboat Key', NULL, 'longboat-key', 'US', 1, 27.4125400000, -82.6589900000), (1120752, 1001462, 'Longbranch', NULL, 'longbranch', 'US', 1, 47.2089800000, -122.7568000000), (1120753, 1001433, 'Longmeadow', NULL, 'longmeadow', 'US', 1, 42.0501000000, -72.5828700000), (1120754, 1001450, 'Longmont', NULL, 'longmont', 'US', 1, 40.1672100000, -105.1019300000), (1120755, 1001421, 'Longtown', NULL, 'longtown', 'US', 1, 35.2453800000, -95.5127600000), (1120756, 1001447, 'Longview', NULL, 'longview', 'US', 1, 35.7293000000, -81.3834200000), (1120757, 1001407, 'Longview', NULL, 'longview', 'US', 1, 32.5007000000, -94.7404900000), (1120758, 1001462, 'Longview', NULL, 'longview', 'US', 1, 46.1381700000, -122.9381700000), (1120759, 1001462, 'Longview Heights', NULL, 'longview-heights', 'US', 1, 46.1803900000, -122.9570600000), (1120760, 1001436, 'Longwood', NULL, 'longwood', 'US', 1, 28.7030500000, -81.3384000000), (1120761, 1001444, 'Lonoke', NULL, 'lonoke', 'US', 1, 34.7839800000, -91.8998600000), (1120762, 1001444, 'Lonoke County', NULL, 'lonoke-county', 'US', 1, 34.7542700000, -91.8886700000), (1120763, 1001420, 'Lonsdale', NULL, 'lonsdale', 'US', 1, 44.4802400000, -93.4285600000), (1120764, 1001440, 'Loogootee', NULL, 'loogootee', 'US', 1, 38.6769900000, -86.9141700000), (1120765, 1001455, 'Lookout Mountain', NULL, 'lookout-mountain', 'US', 1, 34.9775800000, -85.3577400000), (1120766, 1001454, 'Lookout Mountain', NULL, 'lookout-mountain', 'US', 1, 34.9942400000, -85.3494000000), (1120767, 1001416, 'Loomis', NULL, 'loomis', 'US', 1, 38.8212900000, -121.1930000000), (1120768, 1001407, 'Lopezville', NULL, 'lopezville', 'US', 1, 26.2381300000, -98.1597300000), (1120769, 1001422, 'Lorane', NULL, 'lorane', 'US', 1, 40.2884300000, -75.8546500000), (1120770, 1001423, 'Lordsburg', NULL, 'lordsburg', 'US', 1, 32.3503600000, -108.7086600000), (1120771, 1001407, 'Lorena', NULL, 'lorena', 'US', 1, 31.3865600000, -97.2155600000), (1120772, 1001452, 'Lorenz Park', NULL, 'lorenz-park', 'US', 1, 42.2637000000, -73.7684600000), (1120773, 1001407, 'Lorenzo', NULL, 'lorenzo', 'US', 1, 33.6706400000, -101.5351600000), (1120774, 1001454, 'Loretto', NULL, 'loretto', 'US', 1, 35.0778600000, -87.4397400000), (1120775, 1001422, 'Loretto', NULL, 'loretto', 'US', 1, 40.5031300000, -78.6303000000), (1120776, 1001443, 'Loris', NULL, 'loris', 'US', 1, 34.0562800000, -78.8903000000), (1120777, 1001427, 'Lorton', NULL, 'lorton', 'US', 1, 38.7042800000, -77.2277600000), (1120778, 1001416, 'Los Alamitos', NULL, 'los-alamitos', 'US', 1, 33.8030700000, -118.0725600000), (1120779, 1001416, 'Los Alamos', NULL, 'los-alamos', 'US', 1, 34.7444300000, -120.2782100000), (1120780, 1001423, 'Los Alamos', NULL, 'los-alamos', 'US', 1, 35.8880800000, -106.3069700000), (1120781, 1001423, 'Los Alamos County', NULL, 'los-alamos-county', 'US', 1, 35.8693700000, -106.3072900000), (1120782, 1001416, 'Los Altos', NULL, 'los-altos', 'US', 1, 37.3852200000, -122.1141300000), (1120783, 1001416, 'Los Altos Hills', NULL, 'los-altos-hills', 'US', 1, 37.3796600000, -122.1374600000), (1120784, 1001416, 'Los Angeles', NULL, 'los-angeles', 'US', 1, 34.0522300000, -118.2436800000), (1120785, 1001416, 'Los Angeles County', NULL, 'los-angeles-county', 'US', 1, 34.1980100000, -118.2610200000), (1120786, 1001416, 'Los Banos', NULL, 'los-banos', 'US', 1, 37.0582800000, -120.8499200000), (1120787, 1001423, 'Los Chavez', NULL, 'los-chavez', 'US', 1, 34.7257100000, -106.7572600000), (1120788, 1001407, 'Los Fresnos', NULL, 'los-fresnos', 'US', 1, 26.0717400000, -97.4763700000), (1120789, 1001416, 'Los Gatos', NULL, 'los-gatos', 'US', 1, 37.2266100000, -121.9746800000), (1120790, 1001407, 'Los Indios', NULL, 'los-indios', 'US', 1, 26.0492400000, -97.7449900000), (1120791, 1001423, 'Los Lunas', NULL, 'los-lunas', 'US', 1, 34.8061700000, -106.7333600000), (1120792, 1001416, 'Los Molinos', NULL, 'los-molinos', 'US', 1, 40.0212700000, -122.1002700000), (1120793, 1001416, 'Los Olivos', NULL, 'los-olivos', 'US', 1, 34.6677600000, -120.1148700000), (1120794, 1001416, 'Los Osos', NULL, 'los-osos', 'US', 1, 35.3110900000, -120.8324000000), (1120795, 1001423, 'Los Ranchos de Albuquerque', NULL, 'los-ranchos-de-albuquerque', 'US', 1, 35.1619900000, -106.6428000000), (1120796, 1001416, 'Los Serranos', NULL, 'los-serranos', 'US', 1, 33.9727900000, -117.7081100000), (1120797, 1001407, 'Lost Creek', NULL, 'lost-creek', 'US', 1, 30.2954800000, -97.8444500000), (1120798, 1001416, 'Lost Hills', NULL, 'lost-hills', 'US', 1, 35.6163500000, -119.6942900000), (1120799, 1001454, 'Loudon', NULL, 'loudon', 'US', 1, 35.7328500000, -84.3338100000), (1120800, 1001454, 'Loudon County', NULL, 'loudon-county', 'US', 1, 35.7347800000, -84.3118700000), (1120801, 1001427, 'Loudoun County', NULL, 'loudoun-county', 'US', 1, 39.0906800000, -77.6357200000), (1120802, 1001427, 'Loudoun Valley Estates', NULL, 'loudoun-valley-estates', 'US', 1, 38.9808100000, -77.5079000000), (1120803, 1001436, 'Loughman', NULL, 'loughman', 'US', 1, 28.2419600000, -81.5667400000), (1120804, 1001419, 'Louisa', NULL, 'louisa', 'US', 1, 38.1142500000, -82.6032100000), (1120805, 1001427, 'Louisa', NULL, 'louisa', 'US', 1, 38.0251400000, -78.0041600000), (1120806, 1001427, 'Louisa County', NULL, 'louisa-county', 'US', 1, 37.9782100000, -77.9629800000), (1120807, 1001459, 'Louisa County', NULL, 'louisa-county', 'US', 1, 41.2185100000, -91.2596200000), (1120808, 1001406, 'Louisburg', NULL, 'louisburg', 'US', 1, 38.6194600000, -94.6807900000), (1120809, 1001447, 'Louisburg', NULL, 'louisburg', 'US', 1, 36.0990400000, -78.3011100000), (1120810, 1001451, 'Louisiana', NULL, 'louisiana', 'US', 1, 39.4489400000, -91.0515300000), (1120811, 1001455, 'Louisville', NULL, 'louisville', 'US', 1, 33.0015400000, -82.4112400000), (1120812, 1001425, 'Louisville', NULL, 'louisville', 'US', 1, 38.7722700000, -88.5025500000), (1120813, 1001419, 'Louisville', NULL, 'louisville', 'US', 1, 38.2542400000, -85.7594100000), (1120814, 1001430, 'Louisville', NULL, 'louisville', 'US', 1, 33.1237400000, -89.0550600000), (1120815, 1001454, 'Louisville', NULL, 'louisville', 'US', 1, 35.8217500000, -84.0479600000), (1120816, 1001408, 'Louisville', NULL, 'louisville', 'US', 1, 40.9977800000, -96.1622400000), (1120817, 1001450, 'Louisville', NULL, 'louisville', 'US', 1, 39.9777600000, -105.1319300000), (1120818, 1001408, 'Loup City', NULL, 'loup-city', 'US', 1, 41.2755700000, -98.9667500000), (1120819, 1001408, 'Loup County', NULL, 'loup-county', 'US', 1, 41.9138500000, -99.4544200000), (1120820, 1001421, 'Love County', NULL, 'love-county', 'US', 1, 33.9498600000, -97.2441800000), (1120821, 1001455, 'Lovejoy', NULL, 'lovejoy', 'US', 1, 33.4362200000, -84.3143700000), (1120822, 1001450, 'Loveland', NULL, 'loveland', 'US', 1, 40.3977600000, -105.0749800000), (1120823, 1001453, 'Lovell', NULL, 'lovell', 'US', 1, 44.1267400000, -70.8917300000), (1120824, 1001442, 'Lovell', NULL, 'lovell', 'US', 1, 44.8374500000, -108.3895600000), (1120825, 1001458, 'Lovelock', NULL, 'lovelock', 'US', 1, 40.1793500000, -118.4734800000), (1120826, 1001425, 'Loves Park', NULL, 'loves-park', 'US', 1, 42.3200200000, -89.0581600000), (1120827, 1001427, 'Lovettsville', NULL, 'lovettsville', 'US', 1, 39.2726000000, -77.6366600000), (1120828, 1001423, 'Loving', NULL, 'loving', 'US', 1, 32.2862300000, -104.0957700000), (1120829, 1001407, 'Loving County', NULL, 'loving-county', 'US', 1, 31.8492300000, -103.5799600000), (1120830, 1001427, 'Lovingston', NULL, 'lovingston', 'US', 1, 37.7598600000, -78.8708600000), (1120831, 1001425, 'Lovington', NULL, 'lovington', 'US', 1, 39.7155900000, -88.6325600000), (1120832, 1001423, 'Lovington', NULL, 'lovington', 'US', 1, 32.9440100000, -103.3485500000), (1120833, 1001444, 'Lowell', NULL, 'lowell', 'US', 1, 36.2553500000, -94.1307600000), (1120834, 1001447, 'Lowell', NULL, 'lowell', 'US', 1, 35.2679200000, -81.1028500000), (1120835, 1001440, 'Lowell', NULL, 'lowell', 'US', 1, 41.2914200000, -87.4205900000), (1120836, 1001433, 'Lowell', NULL, 'lowell', 'US', 1, 42.6334200000, -71.3161700000), (1120837, 1001426, 'Lowell', NULL, 'lowell', 'US', 1, 42.9336400000, -85.3419600000), (1120838, 1001415, 'Lowell', NULL, 'lowell', 'US', 1, 43.9184600000, -122.7836800000), (1120839, 1001422, 'Lower Allen', NULL, 'lower-allen', 'US', 1, 40.2264800000, -76.9005300000), (1120840, 1001422, 'Lower Burrell', NULL, 'lower-burrell', 'US', 1, 40.5531200000, -79.7572700000), (1120841, 1001436, 'Lower Grand Lagoon', NULL, 'lower-grand-lagoon', 'US', 1, 30.1440900000, -85.7507600000), (1120842, 1001416, 'Lower Lake', NULL, 'lower-lake', 'US', 1, 38.9104500000, -122.6102600000), (1120843, 1001425, 'Lower West Side', NULL, 'lower-west-side', 'US', 1, 41.8542000000, -87.6656100000), (1120844, 1001427, 'Lowes Island', NULL, 'lowes-island', 'US', 1, 39.0598300000, -77.3522100000), (1120845, 1001447, 'Lowesville', NULL, 'lowesville', 'US', 1, 35.4170800000, -81.0111900000), (1120846, 1001456, 'Lowndes County', NULL, 'lowndes-county', 'US', 1, 32.1547500000, -86.6501100000), (1120847, 1001455, 'Lowndes County', NULL, 'lowndes-county', 'US', 1, 30.8338600000, -83.2677100000), (1120848, 1001430, 'Lowndes County', NULL, 'lowndes-county', 'US', 1, 33.4729100000, -88.4433100000), (1120849, 1001407, 'Lowry Crossing', NULL, 'lowry-crossing', 'US', 1, 33.1548400000, -96.5472100000), (1120850, 1001452, 'Lowville', NULL, 'lowville', 'US', 1, 43.7867400000, -75.4918500000), (1120851, 1001436, 'Loxahatchee Groves', NULL, 'loxahatchee-groves', 'US', 1, 26.6836800000, -80.2797700000), (1120852, 1001456, 'Loxley', NULL, 'loxley', 'US', 1, 30.6182500000, -87.7530500000), (1120853, 1001441, 'Loyal', NULL, 'loyal', 'US', 1, 44.7369100000, -90.4959700000), (1120854, 1001422, 'Loyalhanna', NULL, 'loyalhanna', 'US', 1, 40.3225700000, -79.3622600000), (1120855, 1001416, 'Loyola', NULL, 'loyola', 'US', 1, 37.3513300000, -122.1005200000), (1120856, 1001407, 'Lubbock', NULL, 'lubbock', 'US', 1, 33.5778600000, -101.8551700000), (1120857, 1001407, 'Lubbock County', NULL, 'lubbock-county', 'US', 1, 33.6102100000, -101.8205500000), (1120858, 1001429, 'Lubeck', NULL, 'lubeck', 'US', 1, 39.2353500000, -81.6312400000), (1120859, 1001447, 'Lucama', NULL, 'lucama', 'US', 1, 35.6454400000, -78.0097100000), (1120860, 1001407, 'Lucas', NULL, 'lucas', 'US', 1, 33.0842900000, -96.5766600000), (1120861, 1001459, 'Lucas County', NULL, 'lucas-county', 'US', 1, 41.0293700000, -93.3277200000), (1120862, 1001416, 'Lucas Valley-Marinwood', NULL, 'lucas-valley-marinwood', 'US', 1, 38.0401100000, -122.5755000000), (1120863, 1001426, 'Luce County', NULL, 'luce-county', 'US', 1, 46.3677800000, -85.5093400000), (1120864, 1001430, 'Lucedale', NULL, 'lucedale', 'US', 1, 30.9251900000, -88.5900200000), (1120865, 1001416, 'Lucerne', NULL, 'lucerne', 'US', 1, 36.3807800000, -119.6643000000), (1120866, 1001416, 'Lucerne Valley', NULL, 'lucerne-valley', 'US', 1, 34.4438900000, -116.9678100000), (1120867, 1001441, 'Luck', NULL, 'luck', 'US', 1, 45.5760700000, -92.4827000000), (1120868, 1001426, 'Ludington', NULL, 'ludington', 'US', 1, 43.9552800000, -86.4525800000), (1120869, 1001419, 'Ludlow', NULL, 'ludlow', 'US', 1, 39.0925600000, -84.5474400000), (1120870, 1001433, 'Ludlow', NULL, 'ludlow', 'US', 1, 42.1600900000, -72.4759200000), (1120871, 1001455, 'Ludowici', NULL, 'ludowici', 'US', 1, 31.7079900000, -81.7423400000), (1120872, 1001407, 'Lufkin', NULL, 'lufkin', 'US', 1, 31.3382400000, -94.7291000000), (1120873, 1001443, 'Lugoff', NULL, 'lugoff', 'US', 1, 34.2273700000, -80.6892500000), (1120874, 1001434, 'Lukachukai', NULL, 'lukachukai', 'US', 1, 36.4169500000, -109.2287100000), (1120875, 1001455, 'Lula', NULL, 'lula', 'US', 1, 34.3876000000, -83.6662900000), (1120876, 1001457, 'Luling', NULL, 'luling', 'US', 1, 29.9321500000, -90.3664700000), (1120877, 1001407, 'Luling', NULL, 'luling', 'US', 1, 29.6805100000, -97.6475000000), (1120878, 1001455, 'Lumber City', NULL, 'lumber-city', 'US', 1, 31.9293500000, -82.6795800000), (1120879, 1001430, 'Lumberton', NULL, 'lumberton', 'US', 1, 31.0012900000, -89.4522900000), (1120880, 1001447, 'Lumberton', NULL, 'lumberton', 'US', 1, 34.6183400000, -79.0104500000), (1120881, 1001407, 'Lumberton', NULL, 'lumberton', 'US', 1, 30.2657700000, -94.1996300000), (1120882, 1001455, 'Lumpkin', NULL, 'lumpkin', 'US', 1, 32.0509900000, -84.7990900000), (1120883, 1001455, 'Lumpkin County', NULL, 'lumpkin-county', 'US', 1, 34.5721900000, -84.0026500000), (1120884, 1001423, 'Luna County', NULL, 'luna-county', 'US', 1, 32.1821500000, -107.7497700000), (1120885, 1001426, 'Luna Pier', NULL, 'luna-pier', 'US', 1, 41.8069900000, -83.4424300000), (1120886, 1001427, 'Lunenburg', NULL, 'lunenburg', 'US', 1, 36.9609800000, -78.2655500000), (1120887, 1001433, 'Lunenburg', NULL, 'lunenburg', 'US', 1, 42.5945300000, -71.7245200000), (1120888, 1001409, 'Lunenburg', NULL, 'lunenburg', 'US', 1, 44.4631100000, -71.6820300000), (1120889, 1001427, 'Lunenburg County', NULL, 'lunenburg-county', 'US', 1, 36.9462100000, -78.2405700000), (1120890, 1001427, 'Luray', NULL, 'luray', 'US', 1, 38.6654000000, -78.4594500000), (1120891, 1001401, 'Lusby', NULL, 'lusby', 'US', 1, 38.4106800000, -76.4552300000), (1120892, 1001442, 'Lusk', NULL, 'lusk', 'US', 1, 42.7624700000, -104.4521700000), (1120893, 1001457, 'Lutcher', NULL, 'lutcher', 'US', 1, 30.0404800000, -90.6989800000), (1120894, 1001421, 'Luther', NULL, 'luther', 'US', 1, 35.6617300000, -97.1955900000), (1120895, 1001401, 'Lutherville', NULL, 'lutherville', 'US', 1, 39.4212200000, -76.6260800000), (1120896, 1001401, 'Lutherville-Timonium', NULL, 'lutherville-timonium', 'US', 1, 39.4399700000, -76.6109900000), (1120897, 1001454, 'Luttrell', NULL, 'luttrell', 'US', 1, 36.1995300000, -83.7418500000), (1120898, 1001436, 'Lutz', NULL, 'lutz', 'US', 1, 28.1511200000, -82.4614800000), (1120899, 1001456, 'Luverne', NULL, 'luverne', 'US', 1, 31.7165500000, -86.2638500000), (1120900, 1001420, 'Luverne', NULL, 'luverne', 'US', 1, 43.6541400000, -96.2128100000), (1120901, 1001441, 'Luxemburg', NULL, 'luxemburg', 'US', 1, 44.5386100000, -87.7039800000), (1120902, 1001444, 'Luxora', NULL, 'luxora', 'US', 1, 35.7561900000, -89.9281400000), (1120903, 1001422, 'Luzerne', NULL, 'luzerne', 'US', 1, 41.2856400000, -75.9010300000), (1120904, 1001422, 'Luzerne County', NULL, 'luzerne-county', 'US', 1, 41.1770100000, -75.9890300000), (1120905, 1001422, 'Lycoming County', NULL, 'lycoming-county', 'US', 1, 41.3433800000, -77.0645100000), (1120906, 1001407, 'Lyford', NULL, 'lyford', 'US', 1, 26.4122900000, -97.7897200000), (1120907, 1001422, 'Lykens', NULL, 'lykens', 'US', 1, 40.5667500000, -76.7005200000), (1120908, 1001430, 'Lyman', NULL, 'lyman', 'US', 1, 30.4947400000, -89.1256100000), (1120909, 1001443, 'Lyman', NULL, 'lyman', 'US', 1, 34.9481700000, -82.1273300000), (1120910, 1001442, 'Lyman', NULL, 'lyman', 'US', 1, 41.3274500000, -110.2929300000), (1120911, 1001445, 'Lyman County', NULL, 'lyman-county', 'US', 1, 43.8958200000, -99.8473800000), (1120912, 1001404, 'Lyme', NULL, 'lyme', 'US', 1, 43.8095100000, -72.1559200000), (1120913, 1001452, 'Lynbrook', NULL, 'lynbrook', 'US', 1, 40.6548300000, -73.6718000000), (1120914, 1001430, 'Lynchburg', NULL, 'lynchburg', 'US', 1, 34.9623200000, -90.0959300000), (1120915, 1001454, 'Lynchburg', NULL, 'lynchburg', 'US', 1, 35.2831400000, -86.3741600000), (1120916, 1001427, 'Lynchburg', NULL, 'lynchburg', 'US', 1, 37.4137500000, -79.1422500000), (1120917, 1001452, 'Lyncourt', NULL, 'lyncourt', 'US', 1, 43.0814600000, -76.1257600000), (1120918, 1001404, 'Lyndeborough', NULL, 'lyndeborough', 'US', 1, 42.9075800000, -71.7664600000), (1120919, 1001462, 'Lynden', NULL, 'lynden', 'US', 1, 48.9465000000, -122.4521100000), (1120920, 1001427, 'Lyndhurst', NULL, 'lyndhurst', 'US', 1, 38.0293000000, -78.9450200000), (1120921, 1001417, 'Lyndhurst', NULL, 'lyndhurst', 'US', 1, 40.8120400000, -74.1243100000), (1120922, 1001406, 'Lyndon', NULL, 'lyndon', 'US', 1, 38.6100100000, -95.6844300000), (1120923, 1001419, 'Lyndon', NULL, 'lyndon', 'US', 1, 38.2567400000, -85.6016300000), (1120924, 1001409, 'Lyndon', NULL, 'lyndon', 'US', 1, 44.5142200000, -72.0109300000), (1120925, 1001409, 'Lyndonville', NULL, 'lyndonville', 'US', 1, 44.5336700000, -72.0031500000), (1120926, 1001440, 'Lynn', NULL, 'lynn', 'US', 1, 40.0497700000, -84.9396900000), (1120927, 1001433, 'Lynn', NULL, 'lynn', 'US', 1, 42.4667600000, -70.9494900000), (1120928, 1001407, 'Lynn County', NULL, 'lynn-county', 'US', 1, 33.1768200000, -101.8161200000), (1120929, 1001436, 'Lynn Haven', NULL, 'lynn-haven', 'US', 1, 30.2454800000, -85.6482600000), (1120930, 1001433, 'Lynnfield', NULL, 'lynnfield', 'US', 1, 42.5389800000, -71.0481100000), (1120931, 1001462, 'Lynnwood', NULL, 'lynnwood', 'US', 1, 47.8209300000, -122.3151300000), (1120932, 1001422, 'Lynnwood-Pricedale', NULL, 'lynnwood-pricedale', 'US', 1, 40.1307100000, -79.8513500000), (1120933, 1001425, 'Lynwood', NULL, 'lynwood', 'US', 1, 41.5264200000, -87.5386500000), (1120934, 1001416, 'Lynwood', NULL, 'lynwood', 'US', 1, 33.9302900000, -118.2114600000), (1120935, 1001406, 'Lyon County', NULL, 'lyon-county', 'US', 1, 38.4561900000, -96.1526400000), (1120936, 1001419, 'Lyon County', NULL, 'lyon-county', 'US', 1, 37.0191300000, -88.0832800000), (1120937, 1001459, 'Lyon County', NULL, 'lyon-county', 'US', 1, 43.3805000000, -96.2102900000), (1120938, 1001420, 'Lyon County', NULL, 'lyon-county', 'US', 1, 44.4134900000, -95.8389700000), (1120939, 1001458, 'Lyon County', NULL, 'lyon-county', 'US', 1, 39.0204000000, -119.1892000000), (1120940, 1001455, 'Lyons', NULL, 'lyons', 'US', 1, 32.2043500000, -82.3217900000), (1120941, 1001406, 'Lyons', NULL, 'lyons', 'US', 1, 38.3450100000, -98.2017300000), (1120942, 1001425, 'Lyons', NULL, 'lyons', 'US', 1, 41.8133700000, -87.8181100000), (1120943, 1001452, 'Lyons', NULL, 'lyons', 'US', 1, 43.0642300000, -76.9902500000), (1120944, 1001415, 'Lyons', NULL, 'lyons', 'US', 1, 44.7745700000, -122.6150900000), (1120945, 1001450, 'Lyons', NULL, 'lyons', 'US', 1, 40.2247100000, -105.2713800000), (1120946, 1001407, 'Lytle', NULL, 'lytle', 'US', 1, 29.2332900000, -98.7964100000), (1120947, 1001411, 'Lā‘ie', NULL, 'la-ie', 'US', 1, 21.6454700000, -157.9225000000), (1120948, 1001407, 'Mabank', NULL, 'mabank', 'US', 1, 32.3665300000, -96.1008100000), (1120949, 1001455, 'Mableton', NULL, 'mableton', 'US', 1, 33.8187200000, -84.5824300000), (1120950, 1001429, 'Mabscott', NULL, 'mabscott', 'US', 1, 37.7709500000, -81.2084300000), (1120951, 1001462, 'Mabton', NULL, 'mabton', 'US', 1, 46.2148500000, -119.9967100000), (1120952, 1001429, 'MacArthur', NULL, 'macarthur', 'US', 1, 37.7584500000, -81.2126000000), (1120953, 1001436, 'Macclenny', NULL, 'macclenny', 'US', 1, 30.2821800000, -82.1220600000), (1120954, 1001452, 'Macedon', NULL, 'macedon', 'US', 1, 43.0692300000, -77.2988700000), (1120955, 1001425, 'Machesney Park', NULL, 'machesney-park', 'US', 1, 42.3472400000, -89.0390000000), (1120956, 1001453, 'Machias', NULL, 'machias', 'US', 1, 44.7150800000, -67.4613800000), (1120957, 1001462, 'Machias', NULL, 'machias', 'US', 1, 47.9814900000, -122.0459600000), (1120958, 1001453, 'Machiasport', NULL, 'machiasport', 'US', 1, 44.6986900000, -67.3947100000), (1120959, 1001426, 'Mackinac County', NULL, 'mackinac-county', 'US', 1, 45.8718400000, -84.7622700000), (1120960, 1001425, 'Mackinaw', NULL, 'mackinaw', 'US', 1, 40.5369800000, -89.3575900000), (1120961, 1001425, 'Macomb', NULL, 'macomb', 'US', 1, 40.4592100000, -90.6718000000), (1120962, 1001426, 'Macomb County', NULL, 'macomb-county', 'US', 1, 42.6727900000, -82.9101600000), (1120963, 1001425, 'Macon', NULL, 'macon', 'US', 1, 39.7128200000, -88.9970200000), (1120964, 1001455, 'Macon', NULL, 'macon', 'US', 1, 32.8406900000, -83.6324000000), (1120965, 1001451, 'Macon', NULL, 'macon', 'US', 1, 39.7422600000, -92.4726900000), (1120966, 1001430, 'Macon', NULL, 'macon', 'US', 1, 33.1054000000, -88.5608800000), (1120967, 1001456, 'Macon County', NULL, 'macon-county', 'US', 1, 32.3859700000, -85.6926700000), (1120968, 1001455, 'Macon County', NULL, 'macon-county', 'US', 1, 32.3583900000, -84.0424800000), (1120969, 1001425, 'Macon County', NULL, 'macon-county', 'US', 1, 39.8600000000, -88.9616000000), (1120970, 1001451, 'Macon County', NULL, 'macon-county', 'US', 1, 39.8308000000, -92.5646100000), (1120971, 1001447, 'Macon County', NULL, 'macon-county', 'US', 1, 35.1503800000, -83.4221000000), (1120972, 1001454, 'Macon County', NULL, 'macon-county', 'US', 1, 36.5320300000, -86.0072700000), (1120973, 1001425, 'Macoupin County', NULL, 'macoupin-county', 'US', 1, 39.2610200000, -89.9244300000), (1120974, 1001422, 'Macungie', NULL, 'macungie', 'US', 1, 40.5159300000, -75.5551900000), (1120975, 1001408, 'Macy', NULL, 'macy', 'US', 1, 42.1130500000, -96.3564200000), (1120976, 1001453, 'Madawaska', NULL, 'madawaska', 'US', 1, 46.8842100000, -67.9472500000), (1120977, 1001404, 'Madbury', NULL, 'madbury', 'US', 1, 43.1692500000, -70.9239500000), (1120978, 1001436, 'Madeira Beach', NULL, 'madeira-beach', 'US', 1, 27.7980800000, -82.7973200000), (1120979, 1001420, 'Madelia', NULL, 'madelia', 'US', 1, 44.0507900000, -94.4183000000), (1120980, 1001416, 'Madera', NULL, 'madera', 'US', 1, 36.9613400000, -120.0607200000), (1120981, 1001416, 'Madera Acres', NULL, 'madera-acres', 'US', 1, 37.0191100000, -120.0668300000), (1120982, 1001416, 'Madera County', NULL, 'madera-county', 'US', 1, 37.2180400000, -119.7626500000), (1120983, 1001421, 'Madill', NULL, 'madill', 'US', 1, 34.0903800000, -96.7716700000), (1120984, 1001456, 'Madison', NULL, 'madison', 'US', 1, 34.6992600000, -86.7483300000), (1120985, 1001436, 'Madison', NULL, 'madison', 'US', 1, 30.4693800000, -83.4129300000), (1120986, 1001455, 'Madison', NULL, 'madison', 'US', 1, 33.5956800000, -83.4679400000), (1120987, 1001425, 'Madison', NULL, 'madison', 'US', 1, 38.6825500000, -90.1570500000), (1120988, 1001440, 'Madison', NULL, 'madison', 'US', 1, 38.7358900000, -85.3799600000), (1120989, 1001430, 'Madison', NULL, 'madison', 'US', 1, 32.4618100000, -90.1153600000), (1120990, 1001447, 'Madison', NULL, 'madison', 'US', 1, 36.3854200000, -79.9594900000), (1120991, 1001427, 'Madison', NULL, 'madison', 'US', 1, 38.3804100000, -78.2575000000), (1120992, 1001435, 'Madison', NULL, 'madison', 'US', 1, 41.2795400000, -72.5984300000), (1120993, 1001429, 'Madison', NULL, 'madison', 'US', 1, 38.0670500000, -81.8192900000), (1120994, 1001420, 'Madison', NULL, 'madison', 'US', 1, 45.0096800000, -96.1958800000), (1120995, 1001453, 'Madison', NULL, 'madison', 'US', 1, 44.7975600000, -69.8797800000), (1120996, 1001404, 'Madison', NULL, 'madison', 'US', 1, 43.8992400000, -71.1484000000), (1120997, 1001408, 'Madison', NULL, 'madison', 'US', 1, 41.8283400000, -97.4550500000), (1120998, 1001417, 'Madison', NULL, 'madison', 'US', 1, 40.7598200000, -74.4171000000), (1120999, 1001441, 'Madison', NULL, 'madison', 'US', 1, 43.0730500000, -89.4012300000), (1121000, 1001445, 'Madison', NULL, 'madison', 'US', 1, 44.0060800000, -97.1139500000), (1121001, 1001435, 'Madison Center', NULL, 'madison-center', 'US', 1, 41.2792500000, -72.6004800000), (1121002, 1001456, 'Madison County', NULL, 'madison-county', 'US', 1, 34.7630900000, -86.5502100000), (1121003, 1001444, 'Madison County', NULL, 'madison-county', 'US', 1, 36.0109600000, -93.7245600000), (1121004, 1001436, 'Madison County', NULL, 'madison-county', 'US', 1, 30.4441400000, -83.4701200000), (1121005, 1001455, 'Madison County', NULL, 'madison-county', 'US', 1, 34.1277800000, -83.2090400000), (1121006, 1001425, 'Madison County', NULL, 'madison-county', 'US', 1, 38.8298500000, -89.9051700000), (1121007, 1001419, 'Madison County', NULL, 'madison-county', 'US', 1, 37.7201800000, -84.2780000000), (1121008, 1001451, 'Madison County', NULL, 'madison-county', 'US', 1, 37.4781000000, -90.3450300000), (1121009, 1001430, 'Madison County', NULL, 'madison-county', 'US', 1, 32.6346600000, -90.0337600000), (1121010, 1001447, 'Madison County', NULL, 'madison-county', 'US', 1, 35.8580900000, -82.7057600000), (1121011, 1001454, 'Madison County', NULL, 'madison-county', 'US', 1, 35.6081400000, -88.8384700000), (1121012, 1001407, 'Madison County', NULL, 'madison-county', 'US', 1, 30.9655400000, -95.9284100000), (1121013, 1001427, 'Madison County', NULL, 'madison-county', 'US', 1, 38.4136900000, -78.2792400000), (1121014, 1001459, 'Madison County', NULL, 'madison-county', 'US', 1, 41.3307100000, -94.0155600000), (1121015, 1001440, 'Madison County', NULL, 'madison-county', 'US', 1, 40.1616600000, -85.7193500000), (1121016, 1001408, 'Madison County', NULL, 'madison-county', 'US', 1, 41.9167000000, -97.6007800000), (1121017, 1001452, 'Madison County', NULL, 'madison-county', 'US', 1, 42.9127700000, -75.6696700000), (1121018, 1001460, 'Madison County', NULL, 'madison-county', 'US', 1, 43.7841900000, -111.6593400000), (1121019, 1001446, 'Madison County', NULL, 'madison-county', 'US', 1, 45.3007400000, -111.9203300000), (1121020, 1001427, 'Madison Heights', NULL, 'madison-heights', 'US', 1, 37.4309800000, -79.1230800000), (1121021, 1001426, 'Madison Heights', NULL, 'madison-heights', 'US', 1, 42.4858700000, -83.1052000000), (1121022, 1001420, 'Madison Lake', NULL, 'madison-lake', 'US', 1, 44.2044100000, -93.8155100000), (1121023, 1001457, 'Madison Parish', NULL, 'madison-parish', 'US', 1, 32.3644000000, -91.2425800000), (1121024, 1001417, 'Madison Park', NULL, 'madison-park', 'US', 1, 40.4515000000, -74.3079200000), (1121025, 1001419, 'Madisonville', NULL, 'madisonville', 'US', 1, 37.3281000000, -87.4988900000), (1121026, 1001454, 'Madisonville', NULL, 'madisonville', 'US', 1, 35.5198000000, -84.3635300000), (1121027, 1001407, 'Madisonville', NULL, 'madisonville', 'US', 1, 30.9499100000, -95.9116200000), (1121028, 1001415, 'Madras', NULL, 'madras', 'US', 1, 44.6334500000, -121.1294900000), (1121029, 1001459, 'Madrid', NULL, 'madrid', 'US', 1, 41.8766500000, -93.8232800000), (1121030, 1001414, 'Maeser', NULL, 'maeser', 'US', 1, 40.4771800000, -109.5868100000), (1121031, 1001416, 'Magalia', NULL, 'magalia', 'US', 1, 39.8121100000, -121.5783100000), (1121032, 1001430, 'Magee', NULL, 'magee', 'US', 1, 31.8737700000, -89.7336900000), (1121033, 1001447, 'Maggie Valley', NULL, 'maggie-valley', 'US', 1, 35.5181600000, -83.0976400000), (1121034, 1001414, 'Magna', NULL, 'magna', 'US', 1, 40.7091100000, -112.1016100000), (1121035, 1001444, 'Magnolia', NULL, 'magnolia', 'US', 1, 33.2670700000, -93.2393300000), (1121036, 1001430, 'Magnolia', NULL, 'magnolia', 'US', 1, 31.1432300000, -90.4587100000), (1121037, 1001417, 'Magnolia', NULL, 'magnolia', 'US', 1, 39.8545600000, -75.0390600000), (1121038, 1001407, 'Magnolia', NULL, 'magnolia', 'US', 1, 30.2093800000, -95.7507800000), (1121039, 1001419, 'Magoffin County', NULL, 'magoffin-county', 'US', 1, 37.7064700000, -83.0649100000), (1121040, 1001422, 'Mahanoy City', NULL, 'mahanoy-city', 'US', 1, 40.8125900000, -76.1416000000), (1121041, 1001459, 'Maharishi Vedic City', NULL, 'maharishi-vedic-city', 'US', 1, 41.0525200000, -91.9949000000), (1121042, 1001459, 'Mahaska County', NULL, 'mahaska-county', 'US', 1, 41.3352000000, -92.6409100000), (1121043, 1001420, 'Mahnomen', NULL, 'mahnomen', 'US', 1, 47.3152400000, -95.9686500000), (1121044, 1001420, 'Mahnomen County', NULL, 'mahnomen-county', 'US', 1, 47.3252400000, -95.8090500000), (1121045, 1001425, 'Mahomet', NULL, 'mahomet', 'US', 1, 40.1953100000, -88.4042200000), (1121046, 1001452, 'Mahopac', NULL, 'mahopac', 'US', 1, 41.3723200000, -73.7334600000), (1121047, 1001420, 'Mahtomedi', NULL, 'mahtomedi', 'US', 1, 45.0696900000, -92.9516000000), (1121048, 1001417, 'Mahwah', NULL, 'mahwah', 'US', 1, 41.0887100000, -74.1437600000), (1121049, 1001447, 'Maiden', NULL, 'maiden', 'US', 1, 35.5756900000, -81.2117500000), (1121050, 1001441, 'Maine', NULL, 'maine', 'US', 1, 45.0271600000, -89.6903900000), (1121051, 1001436, 'Maitland', NULL, 'maitland', 'US', 1, 28.6277800000, -81.3631200000), (1121052, 1001406, 'Maize', NULL, 'maize', 'US', 1, 37.7791800000, -97.4672700000), (1121053, 1001421, 'Major County', NULL, 'major-county', 'US', 1, 36.3116400000, -98.5359500000), (1121054, 1001411, 'Makakilo City', NULL, 'makakilo-city', 'US', 1, 21.3469400000, -158.0858300000), (1121055, 1001411, 'Makawao', NULL, 'makawao', 'US', 1, 20.8569400000, -156.3130600000), (1121056, 1001436, 'Malabar', NULL, 'malabar', 'US', 1, 28.0036300000, -80.5656100000), (1121057, 1001460, 'Malad City', NULL, 'malad-city', 'US', 1, 42.1915900000, -112.2508000000), (1121058, 1001407, 'Malakoff', NULL, 'malakoff', 'US', 1, 32.1696000000, -96.0124700000), (1121059, 1001451, 'Malden', NULL, 'malden', 'US', 1, 36.5570000000, -89.9664800000), (1121060, 1001433, 'Malden', NULL, 'malden', 'US', 1, 42.4251000000, -71.0661600000), (1121061, 1001415, 'Malheur County', NULL, 'malheur-county', 'US', 1, 43.1934100000, -117.6230700000), (1121062, 1001416, 'Malibu', NULL, 'malibu', 'US', 1, 34.0257700000, -118.7804000000), (1121063, 1001429, 'Mallory', NULL, 'mallory', 'US', 1, 37.7306600000, -81.8379000000), (1121064, 1001446, 'Malmstrom Air Force Base', NULL, 'malmstrom-air-force-base', 'US', 1, 47.5054900000, -111.1830200000), (1121065, 1001436, 'Malone', NULL, 'malone', 'US', 1, 30.9576900000, -85.1621500000), (1121066, 1001452, 'Malone', NULL, 'malone', 'US', 1, 44.8486600000, -74.2949000000), (1121067, 1001425, 'Malta', NULL, 'malta', 'US', 1, 41.9297500000, -88.8609200000), (1121068, 1001446, 'Malta', NULL, 'malta', 'US', 1, 48.3597200000, -107.8742800000), (1121069, 1001462, 'Maltby', NULL, 'maltby', 'US', 1, 47.8051000000, -122.1131800000), (1121070, 1001456, 'Malvern', NULL, 'malvern', 'US', 1, 31.1393400000, -85.5191000000), (1121071, 1001444, 'Malvern', NULL, 'malvern', 'US', 1, 34.3623100000, -92.8129500000), (1121072, 1001459, 'Malvern', NULL, 'malvern', 'US', 1, 41.0027800000, -95.5852800000), (1121073, 1001422, 'Malvern', NULL, 'malvern', 'US', 1, 40.0362200000, -75.5138100000), (1121074, 1001452, 'Malverne', NULL, 'malverne', 'US', 1, 40.6789900000, -73.6740200000), (1121075, 1001452, 'Mamaroneck', NULL, 'mamaroneck', 'US', 1, 40.9487100000, -73.7326300000), (1121076, 1001434, 'Mammoth', NULL, 'mammoth', 'US', 1, 32.7225700000, -110.6406500000), (1121077, 1001416, 'Mammoth Lakes', NULL, 'mammoth-lakes', 'US', 1, 37.6485500000, -118.9720800000), (1121078, 1001457, 'Mamou', NULL, 'mamou', 'US', 1, 30.6338100000, -92.4193000000), (1121079, 1001417, 'Manahawkin', NULL, 'manahawkin', 'US', 1, 39.6954000000, -74.2587500000), (1121080, 1001436, 'Manasota Key', NULL, 'manasota-key', 'US', 1, 26.9253400000, -82.3520400000), (1121081, 1001417, 'Manasquan', NULL, 'manasquan', 'US', 1, 40.1262300000, -74.0493000000), (1121082, 1001427, 'Manassas', NULL, 'manassas', 'US', 1, 38.7509500000, -77.4752700000), (1121083, 1001427, 'Manassas Park', NULL, 'manassas-park', 'US', 1, 38.7840000000, -77.4697100000), (1121084, 1001436, 'Manatee County', NULL, 'manatee-county', 'US', 1, 27.4775200000, -82.3575400000), (1121085, 1001436, 'Manatee Road', NULL, 'manatee-road', 'US', 1, 29.5130200000, -82.9142900000), (1121086, 1001441, 'Manawa', NULL, 'manawa', 'US', 1, 44.4644300000, -88.9198300000), (1121087, 1001426, 'Mancelona', NULL, 'mancelona', 'US', 1, 44.9022300000, -85.0608800000), (1121088, 1001407, 'Manchaca', NULL, 'manchaca', 'US', 1, 30.1407700000, -97.8330600000), (1121089, 1001455, 'Manchester', NULL, 'manchester', 'US', 1, 32.8598500000, -84.6199300000), (1121090, 1001401, 'Manchester', NULL, 'manchester', 'US', 1, 39.6612100000, -76.8849800000), (1121091, 1001419, 'Manchester', NULL, 'manchester', 'US', 1, 37.1537000000, -83.7618600000), (1121092, 1001451, 'Manchester', NULL, 'manchester', 'US', 1, 38.5970000000, -90.5092900000), (1121093, 1001454, 'Manchester', NULL, 'manchester', 'US', 1, 35.4817400000, -86.0886000000), (1121094, 1001435, 'Manchester', NULL, 'manchester', 'US', 1, 41.7759300000, -72.5214800000), (1121095, 1001459, 'Manchester', NULL, 'manchester', 'US', 1, 42.4841500000, -91.4554300000), (1121096, 1001426, 'Manchester', NULL, 'manchester', 'US', 1, 42.1503200000, -84.0377200000), (1121097, 1001453, 'Manchester', NULL, 'manchester', 'US', 1, 44.3245100000, -69.8603300000), (1121098, 1001404, 'Manchester', NULL, 'manchester', 'US', 1, 42.9956400000, -71.4547900000), (1121099, 1001452, 'Manchester', NULL, 'manchester', 'US', 1, 42.9697900000, -77.2302600000), (1121100, 1001422, 'Manchester', NULL, 'manchester', 'US', 1, 40.0631500000, -76.7183000000), (1121101, 1001441, 'Manchester', NULL, 'manchester', 'US', 1, 43.6905400000, -89.0484500000), (1121102, 1001462, 'Manchester', NULL, 'manchester', 'US', 1, 47.5556600000, -122.5450700000), (1121103, 1001409, 'Manchester Center', NULL, 'manchester-center', 'US', 1, 43.1770200000, -73.0570500000), (1121104, 1001433, 'Manchester-by-the-Sea', NULL, 'manchester-by-the-sea', 'US', 1, 42.5778700000, -70.7689400000), (1121105, 1001450, 'Mancos', NULL, 'mancos', 'US', 1, 37.3450000000, -108.2892500000), (1121106, 1001418, 'Mandan', NULL, 'mandan', 'US', 1, 46.8266600000, -100.8895800000), (1121107, 1001457, 'Mandeville', NULL, 'mandeville', 'US', 1, 30.3582500000, -90.0656300000), (1121108, 1001436, 'Mango', NULL, 'mango', 'US', 1, 27.9797400000, -82.3064800000), (1121109, 1001436, 'Mangonia Park', NULL, 'mangonia-park', 'US', 1, 26.7603400000, -80.0736500000), (1121110, 1001421, 'Mangum', NULL, 'mangum', 'US', 1, 34.8720000000, -99.5042600000), (1121111, 1001452, 'Manhasset', NULL, 'manhasset', 'US', 1, 40.7978800000, -73.6995700000), (1121112, 1001452, 'Manhasset Hills', NULL, 'manhasset-hills', 'US', 1, 40.7592700000, -73.6798500000), (1121113, 1001406, 'Manhattan', NULL, 'manhattan', 'US', 1, 39.1836100000, -96.5716700000), (1121114, 1001425, 'Manhattan', NULL, 'manhattan', 'US', 1, 41.4225300000, -87.9858900000), (1121115, 1001452, 'Manhattan', NULL, 'manhattan', 'US', 1, 40.7834300000, -73.9662500000), (1121116, 1001446, 'Manhattan', NULL, 'manhattan', 'US', 1, 45.8566000000, -111.3324600000), (1121117, 1001416, 'Manhattan Beach', NULL, 'manhattan-beach', 'US', 1, 33.8847400000, -118.4109100000), (1121118, 1001422, 'Manheim', NULL, 'manheim', 'US', 1, 40.1634300000, -76.3949600000), (1121119, 1001444, 'Manila', NULL, 'manila', 'US', 1, 35.8800700000, -90.1670400000), (1121120, 1001414, 'Manila', NULL, 'manila', 'US', 1, 40.9880100000, -109.7226500000), (1121121, 1001426, 'Manistee', NULL, 'manistee', 'US', 1, 44.2444500000, -86.3242500000), (1121122, 1001426, 'Manistee County', NULL, 'manistee-county', 'US', 1, 44.2383100000, -86.2879900000), (1121123, 1001426, 'Manistique', NULL, 'manistique', 'US', 1, 45.9577500000, -86.2462500000), (1121124, 1001425, 'Manito', NULL, 'manito', 'US', 1, 40.4258700000, -89.7792800000), (1121125, 1001426, 'Manitou Beach-Devils Lake', NULL, 'manitou-beach-devils-lake', 'US', 1, 41.9756500000, -84.2861600000), (1121126, 1001450, 'Manitou Springs', NULL, 'manitou-springs', 'US', 1, 38.8597100000, -104.9172000000), (1121127, 1001441, 'Manitowoc', NULL, 'manitowoc', 'US', 1, 44.0886100000, -87.6575800000), (1121128, 1001441, 'Manitowoc County', NULL, 'manitowoc-county', 'US', 1, 44.0905400000, -87.6997400000), (1121129, 1001406, 'Mankato', NULL, 'mankato', 'US', 1, 39.7872300000, -98.2100500000), (1121130, 1001420, 'Mankato', NULL, 'mankato', 'US', 1, 44.1590600000, -94.0091500000), (1121131, 1001452, 'Manlius', NULL, 'manlius', 'US', 1, 43.0020100000, -75.9768600000), (1121132, 1001459, 'Manly', NULL, 'manly', 'US', 1, 43.2871800000, -93.2021500000), (1121133, 1001421, 'Mannford', NULL, 'mannford', 'US', 1, 36.1334100000, -96.3544600000), (1121134, 1001443, 'Manning', NULL, 'manning', 'US', 1, 33.6951600000, -80.2109100000), (1121135, 1001459, 'Manning', NULL, 'manning', 'US', 1, 41.9091500000, -95.0649900000), (1121136, 1001418, 'Manning', NULL, 'manning', 'US', 1, 47.2300100000, -102.7701900000), (1121137, 1001429, 'Mannington', NULL, 'mannington', 'US', 1, 39.5309200000, -80.3434200000), (1121138, 1001407, 'Manor', NULL, 'manor', 'US', 1, 30.3407600000, -97.5569500000), (1121139, 1001422, 'Manor', NULL, 'manor', 'US', 1, 40.3339600000, -79.6700400000), (1121140, 1001452, 'Manorhaven', NULL, 'manorhaven', 'US', 1, 40.8431600000, -73.7148500000), (1121141, 1001452, 'Manorville', NULL, 'manorville', 'US', 1, 40.8737100000, -72.8078800000), (1121142, 1001444, 'Mansfield', NULL, 'mansfield', 'US', 1, 35.0595400000, -94.2527100000), (1121143, 1001451, 'Mansfield', NULL, 'mansfield', 'US', 1, 37.1067200000, -92.5807200000), (1121144, 1001457, 'Mansfield', NULL, 'mansfield', 'US', 1, 32.0376600000, -93.7001800000), (1121145, 1001407, 'Mansfield', NULL, 'mansfield', 'US', 1, 32.5631900000, -97.1416800000), (1121146, 1001433, 'Mansfield', NULL, 'mansfield', 'US', 1, 42.0334300000, -71.2189400000), (1121147, 1001422, 'Mansfield', NULL, 'mansfield', 'US', 1, 41.8073000000, -77.0774700000), (1121148, 1001433, 'Mansfield Center', NULL, 'mansfield-center', 'US', 1, 42.0226200000, -71.2180800000), (1121149, 1001435, 'Mansfield City', NULL, 'mansfield-city', 'US', 1, 41.7659300000, -72.2336900000), (1121150, 1001459, 'Manson', NULL, 'manson', 'US', 1, 42.5291400000, -94.5341400000), (1121151, 1001462, 'Manson', NULL, 'manson', 'US', 1, 47.8848600000, -120.1584100000), (1121152, 1001457, 'Mansura', NULL, 'mansura', 'US', 1, 31.0579700000, -92.0490100000), (1121153, 1001430, 'Mantachie', NULL, 'mantachie', 'US', 1, 34.3242700000, -88.4911600000), (1121154, 1001416, 'Manteca', NULL, 'manteca', 'US', 1, 37.7974300000, -121.2160500000), (1121155, 1001425, 'Manteno', NULL, 'manteno', 'US', 1, 41.2505900000, -87.8314300000), (1121156, 1001447, 'Manteo', NULL, 'manteo', 'US', 1, 35.9082300000, -75.6757300000), (1121157, 1001414, 'Manti', NULL, 'manti', 'US', 1, 39.2683000000, -111.6368600000), (1121158, 1001426, 'Manton', NULL, 'manton', 'US', 1, 44.4108400000, -85.3989400000), (1121159, 1001420, 'Mantorville', NULL, 'mantorville', 'US', 1, 44.0691300000, -92.7557500000), (1121160, 1001427, 'Mantua', NULL, 'mantua', 'US', 1, 38.8537200000, -77.2594300000), (1121161, 1001407, 'Manvel', NULL, 'manvel', 'US', 1, 29.4627400000, -95.3579900000), (1121162, 1001417, 'Manville', NULL, 'manville', 'US', 1, 40.5409400000, -74.5876600000), (1121163, 1001457, 'Many', NULL, 'many', 'US', 1, 31.5687800000, -93.4840600000), (1121164, 1001434, 'Many Farms', NULL, 'many-farms', 'US', 1, 36.3527800000, -109.6178900000), (1121165, 1001441, 'Maple Bluff', NULL, 'maple-bluff', 'US', 1, 43.1183300000, -89.3795600000), (1121166, 1001422, 'Maple Glen', NULL, 'maple-glen', 'US', 1, 40.1792800000, -75.1804500000), (1121167, 1001420, 'Maple Grove', NULL, 'maple-grove', 'US', 1, 45.0724600000, -93.4557900000), (1121168, 1001462, 'Maple Heights-Lake Desire', NULL, 'maple-heights-lake-desire', 'US', 1, 47.4441300000, -122.0973600000), (1121169, 1001420, 'Maple Lake', NULL, 'maple-lake', 'US', 1, 45.2291300000, -94.0019200000), (1121170, 1001425, 'Maple Park', NULL, 'maple-park', 'US', 1, 41.9075300000, -88.5992500000), (1121171, 1001420, 'Maple Plain', NULL, 'maple-plain', 'US', 1, 45.0071900000, -93.6557900000), (1121172, 1001417, 'Maple Shade', NULL, 'maple-shade', 'US', 1, 39.9526100000, -74.9923900000), (1121173, 1001462, 'Maple Valley', NULL, 'maple-valley', 'US', 1, 47.3927200000, -122.0464100000), (1121174, 1001459, 'Mapleton', NULL, 'mapleton', 'US', 1, 42.1658200000, -95.7930600000), (1121175, 1001420, 'Mapleton', NULL, 'mapleton', 'US', 1, 43.9288500000, -93.9560600000), (1121176, 1001414, 'Mapleton', NULL, 'mapleton', 'US', 1, 40.1302300000, -111.5785300000), (1121177, 1001451, 'Maplewood', NULL, 'maplewood', 'US', 1, 38.6125500000, -90.3245600000), (1121178, 1001420, 'Maplewood', NULL, 'maplewood', 'US', 1, 44.9530200000, -92.9952200000), (1121179, 1001417, 'Maplewood', NULL, 'maplewood', 'US', 1, 40.7312100000, -74.2734800000), (1121180, 1001462, 'Maplewood', NULL, 'maplewood', 'US', 1, 47.4017600000, -122.5570700000), (1121181, 1001459, 'Maquoketa', NULL, 'maquoketa', 'US', 1, 42.0689100000, -90.6656900000), (1121182, 1001447, 'Mar-Mac', NULL, 'mar-mac', 'US', 1, 35.3348800000, -78.0558200000), (1121183, 1001434, 'Marana', NULL, 'marana', 'US', 1, 32.4367400000, -111.2253800000), (1121184, 1001436, 'Marathon', NULL, 'marathon', 'US', 1, 24.7137500000, -81.0903500000), (1121185, 1001441, 'Marathon', NULL, 'marathon', 'US', 1, 44.9291300000, -89.8404000000), (1121186, 1001441, 'Marathon County', NULL, 'marathon-county', 'US', 1, 44.8982900000, -89.7590600000), (1121187, 1001407, 'Marble Falls', NULL, 'marble-falls', 'US', 1, 30.5784100000, -98.2750700000), (1121188, 1001451, 'Marble Hill', NULL, 'marble-hill', 'US', 1, 37.3058900000, -89.9703800000), (1121189, 1001433, 'Marblehead', NULL, 'marblehead', 'US', 1, 42.5001000000, -70.8578300000), (1121190, 1001442, 'Marbleton', NULL, 'marbleton', 'US', 1, 42.5535500000, -110.1093200000), (1121191, 1001452, 'Marbletown', NULL, 'marbletown', 'US', 1, 41.8834300000, -74.1132000000), (1121192, 1001456, 'Marbury', NULL, 'marbury', 'US', 1, 32.7012400000, -86.4710900000), (1121193, 1001451, 'Marceline', NULL, 'marceline', 'US', 1, 39.7119700000, -92.9482500000), (1121194, 1001426, 'Marcellus', NULL, 'marcellus', 'US', 1, 42.0258800000, -85.8155600000), (1121195, 1001452, 'Marcellus', NULL, 'marcellus', 'US', 1, 42.9828400000, -76.3404900000), (1121196, 1001416, 'March Air Force Base', NULL, 'march-air-force-base', 'US', 1, 33.8920900000, -117.2631000000), (1121197, 1001436, 'Marco', NULL, 'marco', 'US', 1, 25.9726000000, -81.7289800000), (1121198, 1001436, 'Marco Island', NULL, 'marco-island', 'US', 1, 25.9412100000, -81.7184200000), (1121199, 1001459, 'Marcus', NULL, 'marcus', 'US', 1, 42.8258200000, -95.8075100000), (1121200, 1001422, 'Marcus Hook', NULL, 'marcus-hook', 'US', 1, 39.8192800000, -75.4185300000), (1121201, 1001459, 'Marengo', NULL, 'marengo', 'US', 1, 41.7980600000, -92.0707400000), (1121202, 1001425, 'Marengo', NULL, 'marengo', 'US', 1, 42.2486300000, -88.6084300000), (1121203, 1001456, 'Marengo County', NULL, 'marengo-county', 'US', 1, 32.2476100000, -87.7895200000), (1121204, 1001407, 'Marfa', NULL, 'marfa', 'US', 1, 30.3097300000, -104.0213400000), (1121205, 1001456, 'Margaret', NULL, 'margaret', 'US', 1, 33.6862100000, -86.4749800000), (1121206, 1001436, 'Margate', NULL, 'margate', 'US', 1, 26.2445300000, -80.2064400000), (1121207, 1001417, 'Margate City', NULL, 'margate-city', 'US', 1, 39.3278900000, -74.5034900000), (1121208, 1001444, 'Marianna', NULL, 'marianna', 'US', 1, 34.7737100000, -90.7576100000), (1121209, 1001436, 'Marianna', NULL, 'marianna', 'US', 1, 30.7743600000, -85.2268700000), (1121210, 1001422, 'Marianne', NULL, 'marianne', 'US', 1, 41.2464500000, -79.4289300000), (1121211, 1001434, 'Maricopa', NULL, 'maricopa', 'US', 1, 33.0581100000, -112.0476400000), (1121212, 1001416, 'Maricopa', NULL, 'maricopa', 'US', 1, 35.0588600000, -119.4009500000), (1121213, 1001434, 'Maricopa County', NULL, 'maricopa-county', 'US', 1, 33.3488300000, -112.4912300000), (1121214, 1001422, 'Marienville', NULL, 'marienville', 'US', 1, 41.4689500000, -79.1231000000), (1121215, 1001451, 'Maries County', NULL, 'maries-county', 'US', 1, 38.1616300000, -91.9248900000), (1121216, 1001455, 'Marietta', NULL, 'marietta', 'US', 1, 33.9526000000, -84.5499300000), (1121217, 1001421, 'Marietta', NULL, 'marietta', 'US', 1, 33.9370400000, -97.1166800000), (1121218, 1001422, 'Marietta', NULL, 'marietta', 'US', 1, 40.0570400000, -76.5521900000), (1121219, 1001462, 'Marietta', NULL, 'marietta', 'US', 1, 48.7870500000, -122.5804500000), (1121220, 1001462, 'Marietta-Alderwood', NULL, 'marietta-alderwood', 'US', 1, 48.7896500000, -122.5536900000), (1121221, 1001416, 'Marin City', NULL, 'marin-city', 'US', 1, 37.8685400000, -122.5091400000), (1121222, 1001416, 'Marin County', NULL, 'marin-county', 'US', 1, 38.0551800000, -122.7488600000), (1121223, 1001416, 'Marina', NULL, 'marina', 'US', 1, 36.6844000000, -121.8021700000), (1121224, 1001416, 'Marina del Rey', NULL, 'marina-del-rey', 'US', 1, 33.9802900000, -118.4517400000), (1121225, 1001426, 'Marine City', NULL, 'marine-city', 'US', 1, 42.7194800000, -82.4921300000), (1121226, 1001411, 'Marine Corps Base Hawaii - MCBH', NULL, 'marine-corps-base-hawaii-mcbh', 'US', 1, 21.4433600000, -157.7498100000), (1121227, 1001452, 'Mariners Harbor', NULL, 'mariners-harbor', 'US', 1, 40.6367700000, -74.1587500000), (1121228, 1001441, 'Marinette', NULL, 'marinette', 'US', 1, 45.0999800000, -87.6306600000), (1121229, 1001441, 'Marinette County', NULL, 'marinette-county', 'US', 1, 45.3509000000, -88.0022200000), (1121230, 1001457, 'Maringouin', NULL, 'maringouin', 'US', 1, 30.4913000000, -91.5195500000), (1121231, 1001456, 'Marion', NULL, 'marion', 'US', 1, 32.6323500000, -87.3191700000), (1121232, 1001444, 'Marion', NULL, 'marion', 'US', 1, 35.2145300000, -90.1964800000), (1121233, 1001425, 'Marion', NULL, 'marion', 'US', 1, 37.7306100000, -88.9331300000), (1121234, 1001406, 'Marion', NULL, 'marion', 'US', 1, 38.3483500000, -97.0172500000), (1121235, 1001419, 'Marion', NULL, 'marion', 'US', 1, 37.3328300000, -88.0811300000); INSERT INTO `[[dbprefix]]t_city` VALUES (1121236, 1001447, 'Marion', NULL, 'marion', 'US', 1, 35.6840100000, -82.0092700000), (1121237, 1001430, 'Marion', NULL, 'marion', 'US', 1, 32.4173600000, -88.6478200000), (1121238, 1001443, 'Marion', NULL, 'marion', 'US', 1, 34.1782200000, -79.4006100000), (1121239, 1001407, 'Marion', NULL, 'marion', 'US', 1, 29.5713400000, -98.1402900000), (1121240, 1001459, 'Marion', NULL, 'marion', 'US', 1, 42.0341700000, -91.5976800000), (1121241, 1001427, 'Marion', NULL, 'marion', 'US', 1, 36.8348400000, -81.5148400000), (1121242, 1001433, 'Marion', NULL, 'marion', 'US', 1, 41.7001000000, -70.7628100000), (1121243, 1001440, 'Marion', NULL, 'marion', 'US', 1, 40.5583700000, -85.6591400000), (1121244, 1001452, 'Marion', NULL, 'marion', 'US', 1, 43.1434000000, -77.1891500000), (1121245, 1001441, 'Marion', NULL, 'marion', 'US', 1, 44.6708100000, -88.8892700000), (1121246, 1001433, 'Marion Center', NULL, 'marion-center', 'US', 1, 41.7042400000, -70.7628600000), (1121247, 1001456, 'Marion County', NULL, 'marion-county', 'US', 1, 34.1365500000, -87.8871400000), (1121248, 1001444, 'Marion County', NULL, 'marion-county', 'US', 1, 36.2683500000, -92.6842200000), (1121249, 1001436, 'Marion County', NULL, 'marion-county', 'US', 1, 29.2102000000, -82.0566800000), (1121250, 1001455, 'Marion County', NULL, 'marion-county', 'US', 1, 32.3533800000, -84.5246400000), (1121251, 1001425, 'Marion County', NULL, 'marion-county', 'US', 1, 38.6495900000, -88.9189700000), (1121252, 1001440, 'Marion County', NULL, 'marion-county', 'US', 1, 39.7817100000, -86.1384700000), (1121253, 1001406, 'Marion County', NULL, 'marion-county', 'US', 1, 38.3588700000, -97.0968900000), (1121254, 1001419, 'Marion County', NULL, 'marion-county', 'US', 1, 37.5525300000, -85.2696300000), (1121255, 1001451, 'Marion County', NULL, 'marion-county', 'US', 1, 39.8059600000, -91.6223500000), (1121256, 1001430, 'Marion County', NULL, 'marion-county', 'US', 1, 31.2308200000, -89.8224400000), (1121257, 1001443, 'Marion County', NULL, 'marion-county', 'US', 1, 34.0800600000, -79.3625100000), (1121258, 1001454, 'Marion County', NULL, 'marion-county', 'US', 1, 35.1293500000, -85.6220300000), (1121259, 1001407, 'Marion County', NULL, 'marion-county', 'US', 1, 32.7979800000, -94.3572200000), (1121260, 1001429, 'Marion County', NULL, 'marion-county', 'US', 1, 39.5100000000, -80.2434000000), (1121261, 1001459, 'Marion County', NULL, 'marion-county', 'US', 1, 41.3344500000, -93.0994400000), (1121262, 1001415, 'Marion County', NULL, 'marion-county', 'US', 1, 44.9031900000, -122.5847300000), (1121263, 1001451, 'Marionville', NULL, 'marionville', 'US', 1, 37.0031100000, -93.6374200000), (1121264, 1001416, 'Mariposa', NULL, 'mariposa', 'US', 1, 37.4849400000, -119.9662800000), (1121265, 1001416, 'Mariposa County', NULL, 'mariposa-county', 'US', 1, 37.5815200000, -119.9055200000), (1121266, 1001425, 'Marissa', NULL, 'marissa', 'US', 1, 38.2500500000, -89.7501000000), (1121267, 1001444, 'Marked Tree', NULL, 'marked-tree', 'US', 1, 35.5328600000, -90.4206600000), (1121268, 1001441, 'Markesan', NULL, 'markesan', 'US', 1, 43.7072000000, -88.9901100000), (1121269, 1001407, 'Markham', NULL, 'markham', 'US', 1, 28.9602600000, -96.0652400000), (1121270, 1001425, 'Markham', NULL, 'markham', 'US', 1, 41.5936500000, -87.6947700000), (1121271, 1001440, 'Markle', NULL, 'markle', 'US', 1, 40.8246200000, -85.3388400000), (1121272, 1001430, 'Marks', NULL, 'marks', 'US', 1, 34.2568300000, -90.2729800000), (1121273, 1001457, 'Marksville', NULL, 'marksville', 'US', 1, 31.1279700000, -92.0662400000), (1121274, 1001417, 'Marlboro', NULL, 'marlboro', 'US', 1, 40.3153900000, -74.2462600000), (1121275, 1001452, 'Marlboro', NULL, 'marlboro', 'US', 1, 41.6056500000, -73.9715300000), (1121276, 1001443, 'Marlboro County', NULL, 'marlboro-county', 'US', 1, 34.6019900000, -79.6786300000), (1121277, 1001401, 'Marlboro Meadows', NULL, 'marlboro-meadows', 'US', 1, 38.8362200000, -76.7149700000), (1121278, 1001401, 'Marlboro Village', NULL, 'marlboro-village', 'US', 1, 38.8305400000, -76.7696500000), (1121279, 1001451, 'Marlborough', NULL, 'marlborough', 'US', 1, 38.5703300000, -90.3370600000), (1121280, 1001433, 'Marlborough', NULL, 'marlborough', 'US', 1, 42.3459300000, -71.5522900000), (1121281, 1001404, 'Marlborough', NULL, 'marlborough', 'US', 1, 42.9042500000, -72.2078600000), (1121282, 1001426, 'Marlette', NULL, 'marlette', 'US', 1, 43.3269700000, -83.0802200000), (1121283, 1001407, 'Marlin', NULL, 'marlin', 'US', 1, 31.3062900000, -96.8980400000), (1121284, 1001429, 'Marlinton', NULL, 'marlinton', 'US', 1, 38.2234500000, -80.0945100000), (1121285, 1001421, 'Marlow', NULL, 'marlow', 'US', 1, 34.6481300000, -97.9580900000), (1121286, 1001401, 'Marlow Heights', NULL, 'marlow-heights', 'US', 1, 38.8334500000, -76.9516400000), (1121287, 1001401, 'Marlton', NULL, 'marlton', 'US', 1, 38.7737300000, -76.7899700000), (1121288, 1001417, 'Marlton', NULL, 'marlton', 'US', 1, 39.8912200000, -74.9218300000), (1121289, 1001444, 'Marmaduke', NULL, 'marmaduke', 'US', 1, 36.1870100000, -90.3831600000), (1121290, 1001429, 'Marmet', NULL, 'marmet', 'US', 1, 38.2453800000, -81.5670600000), (1121291, 1001425, 'Maroa', NULL, 'maroa', 'US', 1, 40.0364300000, -88.9570300000), (1121292, 1001426, 'Marquette', NULL, 'marquette', 'US', 1, 46.5435400000, -87.3954200000), (1121293, 1001426, 'Marquette County', NULL, 'marquette-county', 'US', 1, 46.6629500000, -87.5735000000), (1121294, 1001441, 'Marquette County', NULL, 'marquette-county', 'US', 1, 43.8195800000, -89.3987500000), (1121295, 1001425, 'Marquette Heights', NULL, 'marquette-heights', 'US', 1, 40.6175400000, -89.6003800000), (1121296, 1001457, 'Marrero', NULL, 'marrero', 'US', 1, 29.8993700000, -90.1003500000), (1121297, 1001414, 'Marriott-Slaterville', NULL, 'marriott-slaterville', 'US', 1, 41.2516100000, -112.0255000000), (1121298, 1001422, 'Mars', NULL, 'mars', 'US', 1, 40.6959000000, -80.0117300000), (1121299, 1001447, 'Mars Hill', NULL, 'mars-hill', 'US', 1, 35.8265000000, -82.5493000000), (1121300, 1001425, 'Marseilles', NULL, 'marseilles', 'US', 1, 41.3308700000, -88.7081300000), (1121301, 1001444, 'Marshall', NULL, 'marshall', 'US', 1, 35.9089600000, -92.6312700000), (1121302, 1001425, 'Marshall', NULL, 'marshall', 'US', 1, 39.3914300000, -87.6936400000), (1121303, 1001451, 'Marshall', NULL, 'marshall', 'US', 1, 39.1230800000, -93.1968700000), (1121304, 1001447, 'Marshall', NULL, 'marshall', 'US', 1, 35.7973300000, -82.6840300000), (1121305, 1001407, 'Marshall', NULL, 'marshall', 'US', 1, 32.5448700000, -94.3674200000), (1121306, 1001427, 'Marshall', NULL, 'marshall', 'US', 1, 38.8648400000, -77.8577700000), (1121307, 1001426, 'Marshall', NULL, 'marshall', 'US', 1, 42.2722600000, -84.9633100000), (1121308, 1001420, 'Marshall', NULL, 'marshall', 'US', 1, 44.4469000000, -95.7883500000), (1121309, 1001441, 'Marshall', NULL, 'marshall', 'US', 1, 43.1683300000, -89.0667800000), (1121310, 1001456, 'Marshall County', NULL, 'marshall-county', 'US', 1, 34.3669600000, -86.3066400000), (1121311, 1001406, 'Marshall County', NULL, 'marshall-county', 'US', 1, 39.7836200000, -96.5229400000), (1121312, 1001419, 'Marshall County', NULL, 'marshall-county', 'US', 1, 36.8834500000, -88.3293800000), (1121313, 1001430, 'Marshall County', NULL, 'marshall-county', 'US', 1, 34.7622500000, -89.5030500000), (1121314, 1001421, 'Marshall County', NULL, 'marshall-county', 'US', 1, 34.0244900000, -96.7691300000), (1121315, 1001454, 'Marshall County', NULL, 'marshall-county', 'US', 1, 35.4688600000, -86.7650200000), (1121316, 1001429, 'Marshall County', NULL, 'marshall-county', 'US', 1, 39.8606100000, -80.6633900000), (1121317, 1001459, 'Marshall County', NULL, 'marshall-county', 'US', 1, 42.0358500000, -92.9987700000), (1121318, 1001425, 'Marshall County', NULL, 'marshall-county', 'US', 1, 41.0331700000, -89.3447800000), (1121319, 1001440, 'Marshall County', NULL, 'marshall-county', 'US', 1, 41.3248500000, -86.2617600000), (1121320, 1001420, 'Marshall County', NULL, 'marshall-county', 'US', 1, 48.3581300000, -96.3684700000), (1121321, 1001445, 'Marshall County', NULL, 'marshall-county', 'US', 1, 45.7586700000, -97.5985000000), (1121322, 1001422, 'Marshallton', NULL, 'marshallton', 'US', 1, 40.7867500000, -76.5394000000), (1121323, 1001459, 'Marshalltown', NULL, 'marshalltown', 'US', 1, 42.0494300000, -92.9079800000), (1121324, 1001455, 'Marshallville', NULL, 'marshallville', 'US', 1, 32.4562600000, -83.9401900000), (1121325, 1001451, 'Marshfield', NULL, 'marshfield', 'US', 1, 37.3386600000, -92.9071200000), (1121326, 1001433, 'Marshfield', NULL, 'marshfield', 'US', 1, 42.0917700000, -70.7055900000), (1121327, 1001441, 'Marshfield', NULL, 'marshfield', 'US', 1, 44.6688500000, -90.1718000000), (1121328, 1001433, 'Marshfield Hills', NULL, 'marshfield-hills', 'US', 1, 42.1459400000, -70.7397600000), (1121329, 1001447, 'Marshville', NULL, 'marshville', 'US', 1, 34.9884900000, -80.3670100000), (1121330, 1001460, 'Marsing', NULL, 'marsing', 'US', 1, 43.5454400000, -116.8132000000), (1121331, 1001433, 'Marstons Mills', NULL, 'marstons-mills', 'US', 1, 41.6562200000, -70.4161400000), (1121332, 1001407, 'Mart', NULL, 'mart', 'US', 1, 31.5423900000, -96.8336000000), (1121333, 1001462, 'Martha Lake', NULL, 'martha-lake', 'US', 1, 47.8509300000, -122.2393000000), (1121334, 1001451, 'Marthasville', NULL, 'marthasville', 'US', 1, 38.6283800000, -91.0576400000), (1121335, 1001454, 'Martin', NULL, 'martin', 'US', 1, 36.3434000000, -88.8503400000), (1121336, 1001445, 'Martin', NULL, 'martin', 'US', 1, 43.1725000000, -101.7326500000), (1121337, 1001436, 'Martin County', NULL, 'martin-county', 'US', 1, 27.0815700000, -80.3985100000), (1121338, 1001440, 'Martin County', NULL, 'martin-county', 'US', 1, 38.7080100000, -86.8030700000), (1121339, 1001419, 'Martin County', NULL, 'martin-county', 'US', 1, 37.8015800000, -82.5132900000), (1121340, 1001447, 'Martin County', NULL, 'martin-county', 'US', 1, 35.8416000000, -77.1070800000), (1121341, 1001420, 'Martin County', NULL, 'martin-county', 'US', 1, 43.6743600000, -94.5510700000), (1121342, 1001407, 'Martin County', NULL, 'martin-county', 'US', 1, 32.3060300000, -101.9512200000), (1121343, 1001407, 'Martindale', NULL, 'martindale', 'US', 1, 29.8455000000, -97.8408400000), (1121344, 1001455, 'Martinez', NULL, 'martinez', 'US', 1, 33.5173600000, -82.0756700000), (1121345, 1001416, 'Martinez', NULL, 'martinez', 'US', 1, 38.0193700000, -122.1341300000), (1121346, 1001429, 'Martinsburg', NULL, 'martinsburg', 'US', 1, 39.4562100000, -77.9638900000), (1121347, 1001422, 'Martinsburg', NULL, 'martinsburg', 'US', 1, 40.3111900000, -78.3241800000), (1121348, 1001440, 'Martinsville', NULL, 'martinsville', 'US', 1, 39.4278300000, -86.4283300000), (1121349, 1001425, 'Martinsville', NULL, 'martinsville', 'US', 1, 39.3355900000, -87.8819800000), (1121350, 1001427, 'Martinsville', NULL, 'martinsville', 'US', 1, 36.6915300000, -79.8725400000), (1121351, 1001417, 'Martinsville', NULL, 'martinsville', 'US', 1, 40.6012100000, -74.5590500000), (1121352, 1001444, 'Marvell', NULL, 'marvell', 'US', 1, 34.5556600000, -90.9128900000), (1121353, 1001447, 'Marvin', NULL, 'marvin', 'US', 1, 34.9918200000, -80.8147900000), (1121354, 1001436, 'Mary Esther', NULL, 'mary-esther', 'US', 1, 30.4101500000, -86.6650900000), (1121355, 1001401, 'Maryland City', NULL, 'maryland-city', 'US', 1, 39.0920500000, -76.8177500000), (1121356, 1001451, 'Maryland Heights', NULL, 'maryland-heights', 'US', 1, 38.7131100000, -90.4298400000), (1121357, 1001406, 'Marysville', NULL, 'marysville', 'US', 1, 39.8411100000, -96.6472400000), (1121358, 1001426, 'Marysville', NULL, 'marysville', 'US', 1, 42.9125300000, -82.4868600000), (1121359, 1001422, 'Marysville', NULL, 'marysville', 'US', 1, 40.3425900000, -76.9299700000), (1121360, 1001416, 'Marysville', NULL, 'marysville', 'US', 1, 39.1457300000, -121.5913500000), (1121361, 1001462, 'Marysville', NULL, 'marysville', 'US', 1, 48.0517600000, -122.1770800000), (1121362, 1001434, 'Maryvale', NULL, 'maryvale', 'US', 1, 33.5019900000, -112.1776500000), (1121363, 1001425, 'Maryville', NULL, 'maryville', 'US', 1, 38.7236600000, -89.9559300000), (1121364, 1001454, 'Maryville', NULL, 'maryville', 'US', 1, 35.7564700000, -83.9704600000), (1121365, 1001451, 'Maryville', NULL, 'maryville', 'US', 1, 40.3461000000, -94.8724700000), (1121366, 1001436, 'Masaryktown', NULL, 'masaryktown', 'US', 1, 28.4416700000, -82.4570400000), (1121367, 1001454, 'Mascot', NULL, 'mascot', 'US', 1, 36.0612000000, -83.7457300000), (1121368, 1001436, 'Mascotte', NULL, 'mascotte', 'US', 1, 28.5783300000, -81.8867500000), (1121369, 1001425, 'Mascoutah', NULL, 'mascoutah', 'US', 1, 38.4903300000, -89.7931500000), (1121370, 1001433, 'Mashpee', NULL, 'mashpee', 'US', 1, 41.6484400000, -70.4811400000), (1121371, 1001454, 'Mason', NULL, 'mason', 'US', 1, 35.4117500000, -89.5328500000), (1121372, 1001407, 'Mason', NULL, 'mason', 'US', 1, 30.7487900000, -99.2306100000), (1121373, 1001426, 'Mason', NULL, 'mason', 'US', 1, 42.5792000000, -84.4435800000), (1121374, 1001404, 'Mason', NULL, 'mason', 'US', 1, 42.7437000000, -71.7689600000), (1121375, 1001459, 'Mason City', NULL, 'mason-city', 'US', 1, 43.1535700000, -93.2010400000), (1121376, 1001425, 'Mason City', NULL, 'mason-city', 'US', 1, 40.2022700000, -89.6981600000), (1121377, 1001419, 'Mason County', NULL, 'mason-county', 'US', 1, 38.5951700000, -83.8242500000), (1121378, 1001407, 'Mason County', NULL, 'mason-county', 'US', 1, 30.7177200000, -99.2261300000), (1121379, 1001429, 'Mason County', NULL, 'mason-county', 'US', 1, 38.7697400000, -82.0265400000), (1121380, 1001425, 'Mason County', NULL, 'mason-county', 'US', 1, 40.2396500000, -89.9167800000), (1121381, 1001426, 'Mason County', NULL, 'mason-county', 'US', 1, 43.9562500000, -86.4225800000), (1121382, 1001462, 'Mason County', NULL, 'mason-county', 'US', 1, 47.3504800000, -123.1830900000), (1121383, 1001447, 'Masonboro', NULL, 'masonboro', 'US', 1, 34.1793400000, -77.8474800000), (1121384, 1001422, 'Masontown', NULL, 'masontown', 'US', 1, 39.8467400000, -79.8997800000), (1121385, 1001419, 'Masonville', NULL, 'masonville', 'US', 1, 37.6750500000, -87.0347200000), (1121386, 1001452, 'Maspeth', NULL, 'maspeth', 'US', 1, 40.7231600000, -73.9126400000), (1121387, 1001419, 'Massac', NULL, 'massac', 'US', 1, 37.0167200000, -88.7306100000), (1121388, 1001425, 'Massac County', NULL, 'massac-county', 'US', 1, 37.2190300000, -88.7077400000), (1121389, 1001427, 'Massanetta Springs', NULL, 'massanetta-springs', 'US', 1, 38.4004000000, -78.8341900000), (1121390, 1001427, 'Massanutten', NULL, 'massanutten', 'US', 1, 38.4095700000, -78.7378000000), (1121391, 1001452, 'Massapequa', NULL, 'massapequa', 'US', 1, 40.6806600000, -73.4742900000), (1121392, 1001452, 'Massapequa Park', NULL, 'massapequa-park', 'US', 1, 40.6803800000, -73.4551200000), (1121393, 1001452, 'Massena', NULL, 'massena', 'US', 1, 44.9281000000, -74.8918600000), (1121394, 1001452, 'Mastic', NULL, 'mastic', 'US', 1, 40.8020400000, -72.8409400000), (1121395, 1001452, 'Mastic Beach', NULL, 'mastic-beach', 'US', 1, 40.7667700000, -72.8520500000), (1121396, 1001407, 'Matador', NULL, 'matador', 'US', 1, 34.0120200000, -100.8220800000), (1121397, 1001407, 'Matagorda County', NULL, 'matagorda-county', 'US', 1, 28.7856500000, -96.0039800000), (1121398, 1001422, 'Matamoras', NULL, 'matamoras', 'US', 1, 41.3687000000, -74.7001600000), (1121399, 1001400, 'Matanuska-Susitna Borough', NULL, 'matanuska-susitna-borough', 'US', 1, 62.5005600000, -150.0055600000), (1121400, 1001417, 'Matawan', NULL, 'matawan', 'US', 1, 40.4148300000, -74.2295900000), (1121401, 1001416, 'Matheny', NULL, 'matheny', 'US', 1, 36.1706600000, -119.3515800000), (1121402, 1001457, 'Mathews', NULL, 'mathews', 'US', 1, 29.6863200000, -90.5467500000), (1121403, 1001427, 'Mathews', NULL, 'mathews', 'US', 1, 37.4370800000, -76.3199400000), (1121404, 1001427, 'Mathews County', NULL, 'mathews-county', 'US', 1, 37.4173100000, -76.2712900000), (1121405, 1001407, 'Mathis', NULL, 'mathis', 'US', 1, 28.0944600000, -97.8280500000), (1121406, 1001427, 'Matoaca', NULL, 'matoaca', 'US', 1, 37.2304300000, -77.4774900000), (1121407, 1001433, 'Mattapoisett', NULL, 'mattapoisett', 'US', 1, 41.6584400000, -70.8161500000), (1121408, 1001433, 'Mattapoisett Center', NULL, 'mattapoisett-center', 'US', 1, 41.6659500000, -70.8072000000), (1121409, 1001462, 'Mattawa', NULL, 'mattawa', 'US', 1, 46.7379100000, -119.9028200000), (1121410, 1001426, 'Mattawan', NULL, 'mattawan', 'US', 1, 42.2094800000, -85.7844500000), (1121411, 1001425, 'Matteson', NULL, 'matteson', 'US', 1, 41.5039200000, -87.7131000000), (1121412, 1001447, 'Matthews', NULL, 'matthews', 'US', 1, 35.1168100000, -80.7236800000), (1121413, 1001452, 'Mattituck', NULL, 'mattituck', 'US', 1, 40.9912100000, -72.5342500000), (1121414, 1001425, 'Mattoon', NULL, 'mattoon', 'US', 1, 39.4830900000, -88.3728300000), (1121415, 1001452, 'Mattydale', NULL, 'mattydale', 'US', 1, 43.0978400000, -76.1452000000), (1121416, 1001421, 'Maud', NULL, 'maud', 'US', 1, 35.1303600000, -96.7758500000), (1121417, 1001407, 'Maud', NULL, 'maud', 'US', 1, 33.3329000000, -94.3427000000), (1121418, 1001401, 'Maugansville', NULL, 'maugansville', 'US', 1, 39.6928700000, -77.7447200000), (1121419, 1001411, 'Maui County', NULL, 'maui-county', 'US', 1, 20.8677400000, -156.6170600000), (1121420, 1001443, 'Mauldin', NULL, 'mauldin', 'US', 1, 34.7787300000, -82.3101200000), (1121421, 1001444, 'Maumelle', NULL, 'maumelle', 'US', 1, 34.8667600000, -92.4043200000), (1121422, 1001411, 'Maunawili', NULL, 'maunawili', 'US', 1, 21.3727800000, -157.7705600000), (1121423, 1001457, 'Maurice', NULL, 'maurice', 'US', 1, 30.1085400000, -92.1245700000), (1121424, 1001407, 'Mauriceville', NULL, 'mauriceville', 'US', 1, 30.2035400000, -93.8662800000), (1121425, 1001447, 'Maury', NULL, 'maury', 'US', 1, 35.4821100000, -77.5860800000), (1121426, 1001454, 'Maury County', NULL, 'maury-county', 'US', 1, 35.6169400000, -87.0770100000), (1121427, 1001441, 'Mauston', NULL, 'mauston', 'US', 1, 43.7971900000, -90.0773500000), (1121428, 1001407, 'Maverick County', NULL, 'maverick-county', 'US', 1, 28.7425900000, -100.3145100000), (1121429, 1001447, 'Maxton', NULL, 'maxton', 'US', 1, 34.7351600000, -79.3489300000), (1121430, 1001416, 'Maxwell', NULL, 'maxwell', 'US', 1, 39.2762800000, -122.1913700000), (1121431, 1001452, 'Maybrook', NULL, 'maybrook', 'US', 1, 41.4839800000, -74.2176500000), (1121432, 1001420, 'Mayer', NULL, 'mayer', 'US', 1, 44.8849600000, -93.8877500000), (1121433, 1001434, 'Mayer', NULL, 'mayer', 'US', 1, 34.3978100000, -112.2362700000), (1121434, 1001430, 'Mayersville', NULL, 'mayersville', 'US', 1, 32.9020700000, -91.0512200000), (1121435, 1001421, 'Mayes County', NULL, 'mayes-county', 'US', 1, 36.3018800000, -95.2308500000), (1121436, 1001419, 'Mayfield', NULL, 'mayfield', 'US', 1, 36.7417200000, -88.6367200000), (1121437, 1001422, 'Mayfield', NULL, 'mayfield', 'US', 1, 41.5381400000, -75.5360200000), (1121438, 1001444, 'Mayflower', NULL, 'mayflower', 'US', 1, 34.9570300000, -92.4273800000), (1121439, 1001416, 'Mayflower Village', NULL, 'mayflower-village', 'US', 1, 34.1150100000, -118.0097900000), (1121440, 1001433, 'Maynard', NULL, 'maynard', 'US', 1, 42.4334300000, -71.4495100000), (1121441, 1001454, 'Maynardville', NULL, 'maynardville', 'US', 1, 36.2506400000, -83.7974100000), (1121442, 1001436, 'Mayo', NULL, 'mayo', 'US', 1, 30.0530000000, -83.1748600000), (1121443, 1001401, 'Mayo', NULL, 'mayo', 'US', 1, 38.8876100000, -76.5119000000), (1121444, 1001443, 'Mayo', NULL, 'mayo', 'US', 1, 35.0840100000, -81.8598300000), (1121445, 1001447, 'Mayodan', NULL, 'mayodan', 'US', 1, 36.4123600000, -79.9669900000), (1121446, 1001401, 'Mays Chapel', NULL, 'mays-chapel', 'US', 1, 39.4331600000, -76.6494100000), (1121447, 1001417, 'Mays Landing', NULL, 'mays-landing', 'US', 1, 39.4523400000, -74.7276600000), (1121448, 1001455, 'Maysville', NULL, 'maysville', 'US', 1, 34.2528800000, -83.5615500000), (1121449, 1001451, 'Maysville', NULL, 'maysville', 'US', 1, 39.8891700000, -94.3619000000), (1121450, 1001419, 'Maysville', NULL, 'maysville', 'US', 1, 38.6411900000, -83.7443700000), (1121451, 1001447, 'Maysville', NULL, 'maysville', 'US', 1, 34.9048800000, -77.2313400000), (1121452, 1001421, 'Maysville', NULL, 'maysville', 'US', 1, 34.8173000000, -97.4058600000), (1121453, 1001422, 'Maytown', NULL, 'maytown', 'US', 1, 40.0753700000, -76.5821900000), (1121454, 1001418, 'Mayville', NULL, 'mayville', 'US', 1, 47.4980400000, -97.3245400000), (1121455, 1001452, 'Mayville', NULL, 'mayville', 'US', 1, 42.2539500000, -79.5044900000), (1121456, 1001441, 'Mayville', NULL, 'mayville', 'US', 1, 43.4941600000, -88.5448200000), (1121457, 1001425, 'Maywood', NULL, 'maywood', 'US', 1, 41.8792000000, -87.8431200000), (1121458, 1001417, 'Maywood', NULL, 'maywood', 'US', 1, 40.9026000000, -74.0618100000), (1121459, 1001416, 'Maywood', NULL, 'maywood', 'US', 1, 33.9866800000, -118.1853500000), (1121460, 1001441, 'Mazomanie', NULL, 'mazomanie', 'US', 1, 43.1766600000, -89.7948500000), (1121461, 1001422, 'McAdoo', NULL, 'mcadoo', 'US', 1, 40.9012700000, -75.9910600000), (1121462, 1001421, 'McAlester', NULL, 'mcalester', 'US', 1, 34.9334300000, -95.7697100000), (1121463, 1001407, 'McAllen', NULL, 'mcallen', 'US', 1, 26.2034100000, -98.2300100000), (1121464, 1001444, 'McAlmont', NULL, 'mcalmont', 'US', 1, 34.8084200000, -92.1818100000), (1121465, 1001460, 'McCall', NULL, 'mccall', 'US', 1, 44.9110100000, -116.0987400000), (1121466, 1001407, 'McCamey', NULL, 'mccamey', 'US', 1, 31.1359800000, -102.2243000000), (1121467, 1001455, 'McCaysville', NULL, 'mccaysville', 'US', 1, 34.9861900000, -84.3713100000), (1121468, 1001462, 'McChord Air Force Base', NULL, 'mcchord-air-force-base', 'US', 1, 47.1339700000, -122.4915700000), (1121469, 1001421, 'McClain County', NULL, 'mcclain-county', 'US', 1, 35.0093400000, -97.4443000000), (1121470, 1001462, 'McCleary', NULL, 'mccleary', 'US', 1, 47.0531500000, -123.2654300000), (1121471, 1001416, 'McCloud', NULL, 'mccloud', 'US', 1, 41.2557100000, -122.1394500000), (1121472, 1001418, 'McClusky', NULL, 'mcclusky', 'US', 1, 47.4858300000, -100.4431800000), (1121473, 1001443, 'McColl', NULL, 'mccoll', 'US', 1, 34.6687700000, -79.5453300000), (1121474, 1001430, 'McComb', NULL, 'mccomb', 'US', 1, 31.2437900000, -90.4531500000), (1121475, 1001446, 'McCone County', NULL, 'mccone-county', 'US', 1, 47.6452300000, -105.7953400000), (1121476, 1001406, 'McConnell AFB', NULL, 'mcconnell-afb', 'US', 1, 37.6300700000, -97.2586900000), (1121477, 1001422, 'McConnellsburg', NULL, 'mcconnellsburg', 'US', 1, 39.9325900000, -77.9988900000), (1121478, 1001422, 'McConnellstown', NULL, 'mcconnellstown', 'US', 1, 40.4525700000, -78.0816700000), (1121479, 1001408, 'McCook', NULL, 'mccook', 'US', 1, 40.2019500000, -100.6257100000), (1121480, 1001445, 'McCook County', NULL, 'mccook-county', 'US', 1, 43.6743100000, -97.3684400000), (1121481, 1001421, 'McCord', NULL, 'mccord', 'US', 1, 36.6784700000, -97.0400000000), (1121482, 1001440, 'McCordsville', NULL, 'mccordsville', 'US', 1, 39.9081000000, -85.9227600000), (1121483, 1001443, 'McCormick', NULL, 'mccormick', 'US', 1, 33.9134600000, -82.2934600000), (1121484, 1001443, 'McCormick County', NULL, 'mccormick-county', 'US', 1, 33.8995500000, -82.3098800000), (1121485, 1001419, 'McCracken County', NULL, 'mccracken-county', 'US', 1, 37.0540800000, -88.7127200000), (1121486, 1001419, 'McCreary County', NULL, 'mccreary-county', 'US', 1, 36.7371400000, -84.4841700000), (1121487, 1001444, 'McCrory', NULL, 'mccrory', 'US', 1, 35.2562000000, -91.2001200000), (1121488, 1001407, 'McCulloch County', NULL, 'mcculloch-county', 'US', 1, 31.1988700000, -99.3474800000), (1121489, 1001425, 'McCullom Lake', NULL, 'mccullom-lake', 'US', 1, 42.3683500000, -88.2925900000), (1121490, 1001421, 'McCurtain County', NULL, 'mccurtain-county', 'US', 1, 34.1152900000, -94.7713300000), (1121491, 1001422, 'McDonald', NULL, 'mcdonald', 'US', 1, 40.3709000000, -80.2347800000), (1121492, 1001451, 'McDonald County', NULL, 'mcdonald-county', 'US', 1, 36.6286700000, -94.3483600000), (1121493, 1001455, 'McDonough', NULL, 'mcdonough', 'US', 1, 33.4473400000, -84.1468600000), (1121494, 1001425, 'McDonough County', NULL, 'mcdonough-county', 'US', 1, 40.4562100000, -90.6779100000), (1121495, 1001447, 'McDowell County', NULL, 'mcdowell-county', 'US', 1, 35.6812400000, -82.0487000000), (1121496, 1001429, 'McDowell County', NULL, 'mcdowell-county', 'US', 1, 37.3785000000, -81.6535800000), (1121497, 1001455, 'McDuffie County', NULL, 'mcduffie-county', 'US', 1, 33.4828500000, -82.4813700000), (1121498, 1001454, 'McEwen', NULL, 'mcewen', 'US', 1, 36.1078400000, -87.6330700000), (1121499, 1001441, 'McFarland', NULL, 'mcfarland', 'US', 1, 43.0125000000, -89.2898400000), (1121500, 1001416, 'McFarland', NULL, 'mcfarland', 'US', 1, 35.6780100000, -119.2292700000), (1121501, 1001444, 'McGehee', NULL, 'mcgehee', 'US', 1, 33.6290000000, -91.3995600000), (1121502, 1001458, 'McGill', NULL, 'mcgill', 'US', 1, 39.4049400000, -114.7786300000), (1121503, 1001422, 'McGovern', NULL, 'mcgovern', 'US', 1, 40.2289600000, -80.2164500000), (1121504, 1001452, 'McGraw', NULL, 'mcgraw', 'US', 1, 42.5961800000, -76.0932600000), (1121505, 1001436, 'McGregor', NULL, 'mcgregor', 'US', 1, 26.5609100000, -81.9145300000), (1121506, 1001407, 'McGregor', NULL, 'mcgregor', 'US', 1, 31.4440600000, -97.4091800000), (1121507, 1001417, 'McGuire AFB', NULL, 'mcguire-afb', 'US', 1, 40.0397700000, -74.5817400000), (1121508, 1001425, 'McHenry', NULL, 'mchenry', 'US', 1, 42.3333500000, -88.2667500000), (1121509, 1001425, 'McHenry County', NULL, 'mchenry-county', 'US', 1, 42.3243900000, -88.4524500000), (1121510, 1001418, 'McHenry County', NULL, 'mchenry-county', 'US', 1, 48.2345800000, -100.6362800000), (1121511, 1001423, 'McIntosh', NULL, 'mcintosh', 'US', 1, 34.8647800000, -106.0516900000), (1121512, 1001445, 'McIntosh', NULL, 'mcintosh', 'US', 1, 45.9213900000, -101.3495800000), (1121513, 1001455, 'McIntosh County', NULL, 'mcintosh-county', 'US', 1, 31.4838100000, -81.3755700000), (1121514, 1001421, 'McIntosh County', NULL, 'mcintosh-county', 'US', 1, 35.3736600000, -95.6668400000), (1121515, 1001418, 'McIntosh County', NULL, 'mcintosh-county', 'US', 1, 46.1117900000, -99.4412000000), (1121516, 1001422, 'McKean County', NULL, 'mckean-county', 'US', 1, 41.8077500000, -78.5690300000), (1121517, 1001419, 'McKee', NULL, 'mckee', 'US', 1, 37.4303600000, -83.9979800000), (1121518, 1001422, 'McKees Rocks', NULL, 'mckees-rocks', 'US', 1, 40.4656200000, -80.0656100000), (1121519, 1001422, 'McKeesport', NULL, 'mckeesport', 'US', 1, 40.3478500000, -79.8642200000), (1121520, 1001454, 'McKenzie', NULL, 'mckenzie', 'US', 1, 36.1325600000, -88.5186600000), (1121521, 1001418, 'McKenzie County', NULL, 'mckenzie-county', 'US', 1, 47.7401500000, -103.3952700000), (1121522, 1001423, 'McKinley County', NULL, 'mckinley-county', 'US', 1, 35.5806100000, -108.2619300000), (1121523, 1001425, 'McKinley Park', NULL, 'mckinley-park', 'US', 1, 41.8317000000, -87.6736600000), (1121524, 1001416, 'McKinleyville', NULL, 'mckinleyville', 'US', 1, 40.9465200000, -124.1006200000), (1121525, 1001407, 'McKinney', NULL, 'mckinney', 'US', 1, 33.1976200000, -96.6152700000), (1121526, 1001452, 'McKownville', NULL, 'mckownville', 'US', 1, 42.6839700000, -73.8476200000), (1121527, 1001427, 'McLean', NULL, 'mclean', 'US', 1, 38.9342800000, -77.1774800000), (1121528, 1001419, 'McLean County', NULL, 'mclean-county', 'US', 1, 37.5291900000, -87.2636100000), (1121529, 1001425, 'McLean County', NULL, 'mclean-county', 'US', 1, 40.4908900000, -88.8473200000), (1121530, 1001418, 'McLean County', NULL, 'mclean-county', 'US', 1, 47.6069600000, -101.3218300000), (1121531, 1001425, 'McLeansboro', NULL, 'mcleansboro', 'US', 1, 38.0933800000, -88.5356100000), (1121532, 1001447, 'McLeansville', NULL, 'mcleansville', 'US', 1, 36.1073600000, -79.6586400000), (1121533, 1001407, 'McLendon-Chisholm', NULL, 'mclendon-chisholm', 'US', 1, 32.8423500000, -96.3805400000), (1121534, 1001407, 'McLennan County', NULL, 'mclennan-county', 'US', 1, 31.5523800000, -97.2017900000), (1121535, 1001420, 'McLeod County', NULL, 'mcleod-county', 'US', 1, 44.8235400000, -94.2724200000), (1121536, 1001421, 'McLoud', NULL, 'mcloud', 'US', 1, 35.4359000000, -97.0914200000), (1121537, 1001429, 'McMechen', NULL, 'mcmechen', 'US', 1, 39.9881300000, -80.7314700000), (1121538, 1001462, 'McMillin', NULL, 'mcmillin', 'US', 1, 47.1398200000, -122.2365100000), (1121539, 1001454, 'McMinn County', NULL, 'mcminn-county', 'US', 1, 35.4247500000, -84.6174700000), (1121540, 1001454, 'McMinnville', NULL, 'mcminnville', 'US', 1, 35.6834000000, -85.7699800000), (1121541, 1001415, 'McMinnville', NULL, 'mcminnville', 'US', 1, 45.2101200000, -123.1987200000), (1121542, 1001407, 'McMullen County', NULL, 'mcmullen-county', 'US', 1, 28.3526900000, -98.5678400000), (1121543, 1001422, 'McMurray', NULL, 'mcmurray', 'US', 1, 40.2778500000, -80.0839400000), (1121544, 1001454, 'McNairy County', NULL, 'mcnairy-county', 'US', 1, 35.1754500000, -88.5636400000), (1121545, 1001406, 'McPherson', NULL, 'mcpherson', 'US', 1, 38.3708400000, -97.6642100000), (1121546, 1001406, 'McPherson County', NULL, 'mcpherson-county', 'US', 1, 38.3916700000, -97.6480800000), (1121547, 1001445, 'McPherson County', NULL, 'mcpherson-county', 'US', 1, 45.7663700000, -99.2214600000), (1121548, 1001408, 'McPherson County', NULL, 'mcpherson-county', 'US', 1, 41.5680800000, -101.0605300000), (1121549, 1001407, 'McQueeney', NULL, 'mcqueeney', 'US', 1, 29.5921700000, -98.0333400000), (1121550, 1001455, 'McRae', NULL, 'mcrae', 'US', 1, 32.0679500000, -82.9007000000), (1121551, 1001422, 'McSherrystown', NULL, 'mcsherrystown', 'US', 1, 39.8073200000, -77.0113700000), (1121552, 1001450, 'Mead', NULL, 'mead', 'US', 1, 40.2333200000, -104.9985900000), (1121553, 1001462, 'Mead', NULL, 'mead', 'US', 1, 47.7673900000, -117.3549400000), (1121554, 1001416, 'Mead Valley', NULL, 'mead-valley', 'US', 1, 33.8333500000, -117.2961500000), (1121555, 1001406, 'Meade', NULL, 'meade', 'US', 1, 37.2855800000, -100.3401500000), (1121556, 1001419, 'Meade County', NULL, 'meade-county', 'US', 1, 37.9698400000, -86.2171800000), (1121557, 1001406, 'Meade County', NULL, 'meade-county', 'US', 1, 37.2382000000, -100.3661800000), (1121558, 1001445, 'Meade County', NULL, 'meade-county', 'US', 1, 44.5668400000, -102.7168700000), (1121559, 1001462, 'Meadow Glade', NULL, 'meadow-glade', 'US', 1, 45.7584500000, -122.5603800000), (1121560, 1001423, 'Meadow Lake', NULL, 'meadow-lake', 'US', 1, 34.8014400000, -106.5436300000), (1121561, 1001400, 'Meadow Lakes', NULL, 'meadow-lakes', 'US', 1, 61.6247200000, -149.6011100000), (1121562, 1001436, 'Meadow Oaks', NULL, 'meadow-oaks', 'US', 1, 28.3461900000, -82.6028400000), (1121563, 1001416, 'Meadow Vista', NULL, 'meadow-vista', 'US', 1, 39.0010100000, -121.0218900000), (1121564, 1001436, 'Meadow Woods', NULL, 'meadow-woods', 'US', 1, 28.3855600000, -81.3664600000), (1121565, 1001456, 'Meadowbrook', NULL, 'meadowbrook', 'US', 1, 33.4020500000, -86.6966500000), (1121566, 1001427, 'Meadowbrook', NULL, 'meadowbrook', 'US', 1, 37.4488200000, -77.4735300000), (1121567, 1001416, 'Meadowbrook', NULL, 'meadowbrook', 'US', 1, 33.7257800000, -117.2850900000), (1121568, 1001462, 'Meadowdale', NULL, 'meadowdale', 'US', 1, 47.8528700000, -122.3334700000), (1121569, 1001407, 'Meadowlakes', NULL, 'meadowlakes', 'US', 1, 30.5624500000, -98.2986700000), (1121570, 1001422, 'Meadowood', NULL, 'meadowood', 'US', 1, 40.8420100000, -79.8939400000), (1121571, 1001407, 'Meadows Place', NULL, 'meadows-place', 'US', 1, 29.6513400000, -95.5880000000), (1121572, 1001419, 'Meads', NULL, 'meads', 'US', 1, 38.4125800000, -82.7090500000), (1121573, 1001434, 'Meadview', NULL, 'meadview', 'US', 1, 36.0022100000, -114.0682900000), (1121574, 1001430, 'Meadville', NULL, 'meadville', 'US', 1, 31.4723900000, -90.8967700000), (1121575, 1001422, 'Meadville', NULL, 'meadville', 'US', 1, 41.6414400000, -80.1514500000), (1121576, 1001446, 'Meagher County', NULL, 'meagher-county', 'US', 1, 46.5981900000, -110.8856400000), (1121577, 1001447, 'Mebane', NULL, 'mebane', 'US', 1, 36.0959700000, -79.2669600000), (1121578, 1001416, 'Mecca', NULL, 'mecca', 'US', 1, 33.5721900000, -116.0782000000), (1121579, 1001453, 'Mechanic Falls', NULL, 'mechanic-falls', 'US', 1, 44.1117400000, -70.3917200000), (1121580, 1001422, 'Mechanicsburg', NULL, 'mechanicsburg', 'US', 1, 40.2142600000, -77.0085900000), (1121581, 1001452, 'Mechanicstown', NULL, 'mechanicstown', 'US', 1, 41.4428700000, -74.3884900000), (1121582, 1001401, 'Mechanicsville', NULL, 'mechanicsville', 'US', 1, 38.4429000000, -76.7438500000), (1121583, 1001427, 'Mechanicsville', NULL, 'mechanicsville', 'US', 1, 37.6087600000, -77.3733100000), (1121584, 1001459, 'Mechanicsville', NULL, 'mechanicsville', 'US', 1, 41.9044600000, -91.2546100000), (1121585, 1001422, 'Mechanicsville', NULL, 'mechanicsville', 'US', 1, 40.9664800000, -76.5866200000), (1121586, 1001452, 'Mechanicville', NULL, 'mechanicville', 'US', 1, 42.9028500000, -73.6873400000), (1121587, 1001447, 'Mecklenburg County', NULL, 'mecklenburg-county', 'US', 1, 35.2467100000, -80.8327600000), (1121588, 1001427, 'Mecklenburg County', NULL, 'mecklenburg-county', 'US', 1, 36.6803600000, -78.3627300000), (1121589, 1001426, 'Mecosta County', NULL, 'mecosta-county', 'US', 1, 43.6408000000, -85.3246200000), (1121590, 1001433, 'Medfield', NULL, 'medfield', 'US', 1, 42.1876000000, -71.3064500000), (1121591, 1001421, 'Medford', NULL, 'medford', 'US', 1, 36.8069700000, -97.7336600000), (1121592, 1001433, 'Medford', NULL, 'medford', 'US', 1, 42.4184300000, -71.1061600000), (1121593, 1001420, 'Medford', NULL, 'medford', 'US', 1, 44.1741300000, -93.2463200000), (1121594, 1001452, 'Medford', NULL, 'medford', 'US', 1, 40.8176000000, -73.0001100000), (1121595, 1001441, 'Medford', NULL, 'medford', 'US', 1, 45.1385800000, -90.3401400000), (1121596, 1001415, 'Medford', NULL, 'medford', 'US', 1, 42.3265200000, -122.8755900000), (1121597, 1001417, 'Medford Lakes', NULL, 'medford-lakes', 'US', 1, 39.8584500000, -74.8029400000), (1121598, 1001422, 'Media', NULL, 'media', 'US', 1, 39.9167800000, -75.3876900000), (1121599, 1001459, 'Mediapolis', NULL, 'mediapolis', 'US', 1, 41.0080900000, -91.1640400000), (1121600, 1001462, 'Medical Lake', NULL, 'medical-lake', 'US', 1, 47.5729400000, -117.6821600000), (1121601, 1001406, 'Medicine Lodge', NULL, 'medicine-lodge', 'US', 1, 37.2811300000, -98.5803600000), (1121602, 1001454, 'Medina', NULL, 'medina', 'US', 1, 35.8028500000, -88.7747800000), (1121603, 1001407, 'Medina', NULL, 'medina', 'US', 1, 29.7966100000, -99.2464300000), (1121604, 1001420, 'Medina', NULL, 'medina', 'US', 1, 45.0352400000, -93.5824600000), (1121605, 1001452, 'Medina', NULL, 'medina', 'US', 1, 43.2200600000, -78.3869700000), (1121606, 1001462, 'Medina', NULL, 'medina', 'US', 1, 47.6209300000, -122.2276200000), (1121607, 1001407, 'Medina County', NULL, 'medina-county', 'US', 1, 29.3557000000, -99.1101300000), (1121608, 1001418, 'Medora', NULL, 'medora', 'US', 1, 46.9139000000, -103.5243500000), (1121609, 1001436, 'Medulla', NULL, 'medulla', 'US', 1, 27.9678000000, -81.9734200000), (1121610, 1001433, 'Medway', NULL, 'medway', 'US', 1, 42.1417600000, -71.3967300000), (1121611, 1001453, 'Medway', NULL, 'medway', 'US', 1, 45.6089400000, -68.5308600000), (1121612, 1001421, 'Meeker', NULL, 'meeker', 'US', 1, 35.5034000000, -96.9028000000), (1121613, 1001450, 'Meeker', NULL, 'meeker', 'US', 1, 40.0374700000, -107.9131300000), (1121614, 1001420, 'Meeker County', NULL, 'meeker-county', 'US', 1, 45.1231200000, -94.5273100000), (1121615, 1001443, 'Meggett', NULL, 'meggett', 'US', 1, 32.7179600000, -80.2389900000), (1121616, 1001451, 'Mehlville', NULL, 'mehlville', 'US', 1, 38.5083900000, -90.3228900000), (1121617, 1001455, 'Meigs', NULL, 'meigs', 'US', 1, 31.0724100000, -84.0890700000), (1121618, 1001454, 'Meigs County', NULL, 'meigs-county', 'US', 1, 35.5128300000, -84.8133900000), (1121619, 1001416, 'Meiners Oaks', NULL, 'meiners-oaks', 'US', 1, 34.4469400000, -119.2792800000), (1121620, 1001436, 'Melbourne', NULL, 'melbourne', 'US', 1, 28.0836300000, -80.6081100000), (1121621, 1001444, 'Melbourne', NULL, 'melbourne', 'US', 1, 36.0595100000, -91.9084800000), (1121622, 1001436, 'Melbourne Beach', NULL, 'melbourne-beach', 'US', 1, 28.0683500000, -80.5603300000), (1121623, 1001459, 'Melcher-Dallas', NULL, 'melcher-dallas', 'US', 1, 41.2250000000, -93.2413200000), (1121624, 1001407, 'Melissa', NULL, 'melissa', 'US', 1, 33.2859500000, -96.5727700000), (1121625, 1001445, 'Mellette County', NULL, 'mellette-county', 'US', 1, 43.5812700000, -100.7599900000), (1121626, 1001401, 'Mellwood', NULL, 'mellwood', 'US', 1, 38.8103900000, -76.8241400000), (1121627, 1001440, 'Melody Hill', NULL, 'melody-hill', 'US', 1, 38.0261500000, -87.5158500000), (1121628, 1001433, 'Melrose', NULL, 'melrose', 'US', 1, 42.4584300000, -71.0661600000), (1121629, 1001420, 'Melrose', NULL, 'melrose', 'US', 1, 45.6746900000, -94.8075200000), (1121630, 1001452, 'Melrose', NULL, 'melrose', 'US', 1, 40.8245500000, -73.9104100000), (1121631, 1001436, 'Melrose Park', NULL, 'melrose-park', 'US', 1, 26.1134200000, -80.1933800000), (1121632, 1001425, 'Melrose Park', NULL, 'melrose-park', 'US', 1, 41.9005900000, -87.8567300000), (1121633, 1001452, 'Melrose Park', NULL, 'melrose-park', 'US', 1, 42.9086800000, -76.5402200000), (1121634, 1001457, 'Melville', NULL, 'melville', 'US', 1, 30.6929700000, -91.7440000000), (1121635, 1001452, 'Melville', NULL, 'melville', 'US', 1, 40.7934300000, -73.4151200000), (1121636, 1001461, 'Melville', NULL, 'melville', 'US', 1, 41.5870500000, -71.2833800000), (1121637, 1001426, 'Melvindale', NULL, 'melvindale', 'US', 1, 42.2825400000, -83.1752000000), (1121638, 1001436, 'Memphis', NULL, 'memphis', 'US', 1, 27.5358700000, -82.5612100000), (1121639, 1001454, 'Memphis', NULL, 'memphis', 'US', 1, 35.1495300000, -90.0489800000), (1121640, 1001426, 'Memphis', NULL, 'memphis', 'US', 1, 42.8964200000, -82.7688100000), (1121641, 1001451, 'Memphis', NULL, 'memphis', 'US', 1, 40.4578100000, -92.1712900000), (1121642, 1001407, 'Memphis', NULL, 'memphis', 'US', 1, 34.7247800000, -100.5340100000), (1121643, 1001444, 'Mena', NULL, 'mena', 'US', 1, 34.5862200000, -94.2396600000), (1121644, 1001420, 'Menahga', NULL, 'menahga', 'US', 1, 46.7538500000, -95.0980800000), (1121645, 1001452, 'Menands', NULL, 'menands', 'US', 1, 42.6920200000, -73.7245600000), (1121646, 1001407, 'Menard', NULL, 'menard', 'US', 1, 30.9176700000, -99.7864600000), (1121647, 1001407, 'Menard County', NULL, 'menard-county', 'US', 1, 30.8897800000, -99.8206400000), (1121648, 1001425, 'Menard County', NULL, 'menard-county', 'US', 1, 40.0274000000, -89.8021700000), (1121649, 1001441, 'Menasha', NULL, 'menasha', 'US', 1, 44.2022100000, -88.4465000000), (1121650, 1001430, 'Mendenhall', NULL, 'mendenhall', 'US', 1, 31.9618200000, -89.8700800000), (1121651, 1001417, 'Mendham', NULL, 'mendham', 'US', 1, 40.7759300000, -74.6007100000), (1121652, 1001416, 'Mendocino County', NULL, 'mendocino-county', 'US', 1, 39.4336200000, -123.4315500000), (1121653, 1001433, 'Mendon', NULL, 'mendon', 'US', 1, 42.1056500000, -71.5522900000), (1121654, 1001409, 'Mendon', NULL, 'mendon', 'US', 1, 43.6519800000, -72.9278000000), (1121655, 1001414, 'Mendon', NULL, 'mendon', 'US', 1, 41.7099300000, -111.9777300000), (1121656, 1001425, 'Mendota', NULL, 'mendota', 'US', 1, 41.5472500000, -89.1175900000), (1121657, 1001416, 'Mendota', NULL, 'mendota', 'US', 1, 36.7535600000, -120.3815600000), (1121658, 1001420, 'Mendota Heights', NULL, 'mendota-heights', 'US', 1, 44.8835800000, -93.1382700000), (1121659, 1001416, 'Menifee', NULL, 'menifee', 'US', 1, 33.7283500000, -117.1464200000), (1121660, 1001419, 'Menifee County', NULL, 'menifee-county', 'US', 1, 37.9413800000, -83.5988700000), (1121661, 1001416, 'Menlo Park', NULL, 'menlo-park', 'US', 1, 37.4538300000, -122.1821900000), (1121662, 1001426, 'Menominee', NULL, 'menominee', 'US', 1, 45.1077600000, -87.6142700000), (1121663, 1001426, 'Menominee County', NULL, 'menominee-county', 'US', 1, 45.5251400000, -87.5096900000), (1121664, 1001441, 'Menominee County', NULL, 'menominee-county', 'US', 1, 45.0043700000, -88.7100100000), (1121665, 1001441, 'Menomonee Falls', NULL, 'menomonee-falls', 'US', 1, 43.1789000000, -88.1173100000), (1121666, 1001441, 'Menomonie', NULL, 'menomonie', 'US', 1, 44.8755200000, -91.9193400000), (1121667, 1001416, 'Mentone', NULL, 'mentone', 'US', 1, 34.0700100000, -117.1344800000), (1121668, 1001407, 'Mentone', NULL, 'mentone', 'US', 1, 31.7051300000, -103.5993500000), (1121669, 1001441, 'Mequon', NULL, 'mequon', 'US', 1, 43.2155500000, -88.0300100000), (1121670, 1001457, 'Meraux', NULL, 'meraux', 'US', 1, 29.9301700000, -89.9162300000), (1121671, 1001416, 'Merced', NULL, 'merced', 'US', 1, 37.3021600000, -120.4829700000), (1121672, 1001416, 'Merced County', NULL, 'merced-county', 'US', 1, 37.1918600000, -120.7176700000), (1121673, 1001407, 'Mercedes', NULL, 'mercedes', 'US', 1, 26.1498000000, -97.9136100000), (1121674, 1001422, 'Mercer', NULL, 'mercer', 'US', 1, 41.2270000000, -80.2397900000), (1121675, 1001419, 'Mercer County', NULL, 'mercer-county', 'US', 1, 37.8110300000, -84.8744400000), (1121676, 1001429, 'Mercer County', NULL, 'mercer-county', 'US', 1, 37.4055200000, -81.1114400000), (1121677, 1001425, 'Mercer County', NULL, 'mercer-county', 'US', 1, 41.2053400000, -90.7414100000), (1121678, 1001451, 'Mercer County', NULL, 'mercer-county', 'US', 1, 40.4223300000, -93.5685600000), (1121679, 1001417, 'Mercer County', NULL, 'mercer-county', 'US', 1, 40.2834000000, -74.7016900000), (1121680, 1001422, 'Mercer County', NULL, 'mercer-county', 'US', 1, 41.3021800000, -80.2577000000), (1121681, 1001418, 'Mercer County', NULL, 'mercer-county', 'US', 1, 47.3092200000, -101.8315300000), (1121682, 1001462, 'Mercer Island', NULL, 'mercer-island', 'US', 1, 47.5706500000, -122.2220700000), (1121683, 1001422, 'Mercersburg', NULL, 'mercersburg', 'US', 1, 39.8278700000, -77.9033300000), (1121684, 1001417, 'Mercerville', NULL, 'mercerville', 'US', 1, 40.2370500000, -74.6865500000), (1121685, 1001417, 'Mercerville-Hamilton Square', NULL, 'mercerville-hamilton-square', 'US', 1, 40.2312600000, -74.6722300000), (1121686, 1001417, 'Merchantville', NULL, 'merchantville', 'US', 1, 39.9473400000, -75.0665600000), (1121687, 1001404, 'Meredith', NULL, 'meredith', 'US', 1, 43.6575700000, -71.5003500000), (1121688, 1001425, 'Meredosia', NULL, 'meredosia', 'US', 1, 39.8311600000, -90.5595700000), (1121689, 1001435, 'Meriden', NULL, 'meriden', 'US', 1, 41.5381500000, -72.8070400000), (1121690, 1001430, 'Meridian', NULL, 'meridian', 'US', 1, 32.3643100000, -88.7036600000), (1121691, 1001421, 'Meridian', NULL, 'meridian', 'US', 1, 34.4273100000, -97.9780900000), (1121692, 1001407, 'Meridian', NULL, 'meridian', 'US', 1, 31.9232100000, -97.6566900000), (1121693, 1001422, 'Meridian', NULL, 'meridian', 'US', 1, 40.8484000000, -79.9620000000), (1121694, 1001450, 'Meridian', NULL, 'meridian', 'US', 1, 39.5395700000, -104.8452800000), (1121695, 1001460, 'Meridian', NULL, 'meridian', 'US', 1, 43.6121100000, -116.3915100000), (1121696, 1001440, 'Meridian Hills', NULL, 'meridian-hills', 'US', 1, 39.8900400000, -86.1572100000), (1121697, 1001430, 'Meridian Station', NULL, 'meridian-station', 'US', 1, 32.5504900000, -88.6184900000), (1121698, 1001456, 'Meridianville', NULL, 'meridianville', 'US', 1, 34.8514800000, -86.5722200000), (1121699, 1001455, 'Meriwether County', NULL, 'meriwether-county', 'US', 1, 33.0406600000, -84.6883100000), (1121700, 1001407, 'Merkel', NULL, 'merkel', 'US', 1, 32.4706800000, -100.0128700000), (1121701, 1001415, 'Merlin', NULL, 'merlin', 'US', 1, 42.5173400000, -123.4197900000), (1121702, 1001406, 'Merriam', NULL, 'merriam', 'US', 1, 39.0236200000, -94.6935700000), (1121703, 1001451, 'Merriam Woods', NULL, 'merriam-woods', 'US', 1, 36.7139500000, -93.1618500000), (1121704, 1001452, 'Merrick', NULL, 'merrick', 'US', 1, 40.6628800000, -73.5515200000), (1121705, 1001408, 'Merrick County', NULL, 'merrick-county', 'US', 1, 41.1698200000, -98.0376500000), (1121706, 1001427, 'Merrifield', NULL, 'merrifield', 'US', 1, 38.8742800000, -77.2269300000), (1121707, 1001441, 'Merrill', NULL, 'merrill', 'US', 1, 45.1805200000, -89.6834600000), (1121708, 1001440, 'Merrillville', NULL, 'merrillville', 'US', 1, 41.4828100000, -87.3328100000), (1121709, 1001427, 'Merrimac', NULL, 'merrimac', 'US', 1, 37.1895700000, -80.4256100000), (1121710, 1001433, 'Merrimac', NULL, 'merrimac', 'US', 1, 42.8306500000, -71.0022800000), (1121711, 1001404, 'Merrimack', NULL, 'merrimack', 'US', 1, 42.8650900000, -71.4934000000), (1121712, 1001404, 'Merrimack County', NULL, 'merrimack-county', 'US', 1, 43.2976500000, -71.6801900000), (1121713, 1001425, 'Merrionette Park', NULL, 'merrionette-park', 'US', 1, 41.6842000000, -87.7003300000), (1121714, 1001436, 'Merritt Island', NULL, 'merritt-island', 'US', 1, 28.5391700000, -80.6720000000), (1121715, 1001452, 'Merritt Park', NULL, 'merritt-park', 'US', 1, 41.5384800000, -73.8723800000), (1121716, 1001457, 'Merrydale', NULL, 'merrydale', 'US', 1, 30.5013000000, -91.1084400000), (1121717, 1001457, 'Merryville', NULL, 'merryville', 'US', 1, 30.7543700000, -93.5404500000), (1121718, 1001441, 'Merton', NULL, 'merton', 'US', 1, 43.1466700000, -88.3067600000), (1121719, 1001407, 'Mertzon', NULL, 'mertzon', 'US', 1, 31.2618300000, -100.8173300000), (1121720, 1001434, 'Mesa', NULL, 'mesa', 'US', 1, 33.4222700000, -111.8226400000), (1121721, 1001450, 'Mesa County', NULL, 'mesa-county', 'US', 1, 39.0182800000, -108.4664500000), (1121722, 1001416, 'Mesa Verde', NULL, 'mesa-verde', 'US', 1, 33.6058600000, -114.7310700000), (1121723, 1001434, 'Mescal', NULL, 'mescal', 'US', 1, 31.9900800000, -110.4353500000), (1121724, 1001423, 'Mescalero', NULL, 'mescalero', 'US', 1, 33.1575900000, -105.7741500000), (1121725, 1001423, 'Mesilla', NULL, 'mesilla', 'US', 1, 32.2700900000, -106.8008400000), (1121726, 1001407, 'Mesquite', NULL, 'mesquite', 'US', 1, 32.7668000000, -96.5991600000), (1121727, 1001458, 'Mesquite', NULL, 'mesquite', 'US', 1, 36.8055300000, -114.0671900000), (1121728, 1001423, 'Mesquite', NULL, 'mesquite', 'US', 1, 32.1645400000, -106.6966600000), (1121729, 1001457, 'Metairie', NULL, 'metairie', 'US', 1, 29.9840900000, -90.1528500000), (1121730, 1001457, 'Metairie Terrace', NULL, 'metairie-terrace', 'US', 1, 29.9785400000, -90.1639600000), (1121731, 1001425, 'Metamora', NULL, 'metamora', 'US', 1, 40.7905900000, -89.3606400000), (1121732, 1001430, 'Metcalfe', NULL, 'metcalfe', 'US', 1, 33.4540000000, -91.0073300000), (1121733, 1001419, 'Metcalfe County', NULL, 'metcalfe-county', 'US', 1, 36.9905400000, -85.6292500000), (1121734, 1001433, 'Methuen', NULL, 'methuen', 'US', 1, 42.7262000000, -71.1908900000), (1121735, 1001400, 'Metlakatla', NULL, 'metlakatla', 'US', 1, 55.1284800000, -131.5751900000), (1121736, 1001425, 'Metropolis', NULL, 'metropolis', 'US', 1, 37.1511700000, -88.7320000000), (1121737, 1001455, 'Metter', NULL, 'metter', 'US', 1, 32.3971200000, -82.0601200000), (1121738, 1001417, 'Metuchen', NULL, 'metuchen', 'US', 1, 40.5431600000, -74.3632000000), (1121739, 1001415, 'Metzger', NULL, 'metzger', 'US', 1, 45.4465100000, -122.7589900000), (1121740, 1001407, 'Mexia', NULL, 'mexia', 'US', 1, 31.6798900000, -96.4822000000), (1121741, 1001451, 'Mexico', NULL, 'mexico', 'US', 1, 39.1697600000, -91.8829500000), (1121742, 1001453, 'Mexico', NULL, 'mexico', 'US', 1, 44.5609000000, -70.5453400000), (1121743, 1001452, 'Mexico', NULL, 'mexico', 'US', 1, 43.4595100000, -76.2288200000), (1121744, 1001436, 'Mexico Beach', NULL, 'mexico-beach', 'US', 1, 29.9480900000, -85.4199500000), (1121745, 1001422, 'Meyersdale', NULL, 'meyersdale', 'US', 1, 39.8136900000, -79.0247500000), (1121746, 1001436, 'Miami', NULL, 'miami', 'US', 1, 25.7742700000, -80.1936600000), (1121747, 1001421, 'Miami', NULL, 'miami', 'US', 1, 36.8745100000, -94.8774600000), (1121748, 1001434, 'Miami', NULL, 'miami', 'US', 1, 33.3992200000, -110.8687200000), (1121749, 1001407, 'Miami', NULL, 'miami', 'US', 1, 35.6914300000, -100.6381900000), (1121750, 1001436, 'Miami Beach', NULL, 'miami-beach', 'US', 1, 25.7906500000, -80.1300500000), (1121751, 1001406, 'Miami County', NULL, 'miami-county', 'US', 1, 38.5635800000, -94.8380600000), (1121752, 1001440, 'Miami County', NULL, 'miami-county', 'US', 1, 40.7695000000, -86.0450200000), (1121753, 1001436, 'Miami Gardens', NULL, 'miami-gardens', 'US', 1, 25.9420400000, -80.2456000000), (1121754, 1001436, 'Miami Lakes', NULL, 'miami-lakes', 'US', 1, 25.9087100000, -80.3086600000), (1121755, 1001436, 'Miami Shores', NULL, 'miami-shores', 'US', 1, 25.8631500000, -80.1928300000), (1121756, 1001436, 'Miami Springs', NULL, 'miami-springs', 'US', 1, 25.8223200000, -80.2895000000), (1121757, 1001436, 'Miami-Dade County', NULL, 'miami-dade-county', 'US', 1, 25.6089700000, -80.4986700000), (1121758, 1001436, 'Micco', NULL, 'micco', 'US', 1, 27.8805800000, -80.5003300000), (1121759, 1001426, 'Michigan Center', NULL, 'michigan-center', 'US', 1, 42.2330900000, -84.3271800000), (1121760, 1001440, 'Michigan City', NULL, 'michigan-city', 'US', 1, 41.7075400000, -86.8950300000), (1121761, 1001452, 'Middle Island', NULL, 'middle-island', 'US', 1, 40.8842700000, -72.9373300000), (1121762, 1001401, 'Middle River', NULL, 'middle-river', 'US', 1, 39.3342700000, -76.4394100000), (1121763, 1001454, 'Middle Valley', NULL, 'middle-valley', 'US', 1, 35.1959000000, -85.1846800000), (1121764, 1001452, 'Middle Village', NULL, 'middle-village', 'US', 1, 40.7164900000, -73.8812500000), (1121765, 1001433, 'Middleborough', NULL, 'middleborough', 'US', 1, 41.8931600000, -70.9111500000), (1121766, 1001433, 'Middleborough Center', NULL, 'middleborough-center', 'US', 1, 41.8946000000, -70.9261800000), (1121767, 1001429, 'Middlebourne', NULL, 'middlebourne', 'US', 1, 39.4923000000, -80.9037200000), (1121768, 1001436, 'Middleburg', NULL, 'middleburg', 'US', 1, 30.0688500000, -81.8603800000), (1121769, 1001422, 'Middleburg', NULL, 'middleburg', 'US', 1, 40.7859200000, -77.0472000000), (1121770, 1001452, 'Middleburgh', NULL, 'middleburgh', 'US', 1, 42.5986900000, -74.3329200000), (1121771, 1001435, 'Middlebury', NULL, 'middlebury', 'US', 1, 41.5278700000, -73.1276100000), (1121772, 1001440, 'Middlebury', NULL, 'middlebury', 'US', 1, 41.6753300000, -85.7061000000), (1121773, 1001409, 'Middlebury (village)', NULL, 'middlebury-village', 'US', 1, 44.0155300000, -73.1693700000), (1121774, 1001417, 'Middlebush', NULL, 'middlebush', 'US', 1, 40.4976000000, -74.5293200000), (1121775, 1001452, 'Middleport', NULL, 'middleport', 'US', 1, 43.2125600000, -78.4764100000); INSERT INTO `[[dbprefix]]t_city` VALUES (1121776, 1001419, 'Middlesboro', NULL, 'middlesboro', 'US', 1, 36.6084200000, -83.7165800000), (1121777, 1001417, 'Middlesex', NULL, 'middlesex', 'US', 1, 40.5726000000, -74.4926500000), (1121778, 1001427, 'Middlesex County', NULL, 'middlesex-county', 'US', 1, 37.5973700000, -76.5781400000), (1121779, 1001435, 'Middlesex County', NULL, 'middlesex-county', 'US', 1, 41.4353800000, -72.5231200000), (1121780, 1001433, 'Middlesex County', NULL, 'middlesex-county', 'US', 1, 42.4855500000, -71.3918400000), (1121781, 1001417, 'Middlesex County', NULL, 'middlesex-county', 'US', 1, 40.4400400000, -74.4088900000), (1121782, 1001433, 'Middleton', NULL, 'middleton', 'US', 1, 42.5950900000, -71.0161600000), (1121783, 1001441, 'Middleton', NULL, 'middleton', 'US', 1, 43.0972200000, -89.5042900000), (1121784, 1001460, 'Middleton', NULL, 'middleton', 'US', 1, 43.7068300000, -116.6201400000), (1121785, 1001399, 'Middletown', NULL, 'middletown', 'US', 1, 39.4495600000, -75.7163200000), (1121786, 1001401, 'Middletown', NULL, 'middletown', 'US', 1, 39.4437100000, -77.5447100000), (1121787, 1001419, 'Middletown', NULL, 'middletown', 'US', 1, 38.2453500000, -85.5388500000), (1121788, 1001435, 'Middletown', NULL, 'middletown', 'US', 1, 41.5623200000, -72.6506500000), (1121789, 1001427, 'Middletown', NULL, 'middletown', 'US', 1, 39.0276100000, -78.2805600000), (1121790, 1001440, 'Middletown', NULL, 'middletown', 'US', 1, 40.0572700000, -85.5372000000), (1121791, 1001452, 'Middletown', NULL, 'middletown', 'US', 1, 41.4459300000, -74.4229300000), (1121792, 1001422, 'Middletown', NULL, 'middletown', 'US', 1, 40.1998100000, -76.7310800000), (1121793, 1001461, 'Middletown', NULL, 'middletown', 'US', 1, 41.5456600000, -71.2914400000), (1121794, 1001416, 'Middletown', NULL, 'middletown', 'US', 1, 38.7524000000, -122.6149900000), (1121795, 1001426, 'Middleville', NULL, 'middleville', 'US', 1, 42.7130900000, -85.4619600000), (1121796, 1001456, 'Midfield', NULL, 'midfield', 'US', 1, 33.4615000000, -86.9088800000), (1121797, 1001447, 'Midland', NULL, 'midland', 'US', 1, 35.2273700000, -80.5006200000), (1121798, 1001426, 'Midland', NULL, 'midland', 'US', 1, 43.6155800000, -84.2472100000), (1121799, 1001422, 'Midland', NULL, 'midland', 'US', 1, 40.6325700000, -80.4464500000), (1121800, 1001407, 'Midland', NULL, 'midland', 'US', 1, 31.9973500000, -102.0779100000), (1121801, 1001462, 'Midland', NULL, 'midland', 'US', 1, 47.1670400000, -122.4048400000), (1121802, 1001452, 'Midland Beach', NULL, 'midland-beach', 'US', 1, 40.5731600000, -74.0945900000), (1121803, 1001456, 'Midland City', NULL, 'midland-city', 'US', 1, 31.3190600000, -85.4938200000), (1121804, 1001426, 'Midland County', NULL, 'midland-county', 'US', 1, 43.6468600000, -84.3881100000), (1121805, 1001407, 'Midland County', NULL, 'midland-county', 'US', 1, 31.8691700000, -102.0316200000), (1121806, 1001417, 'Midland Park', NULL, 'midland-park', 'US', 1, 40.9892600000, -74.1407000000), (1121807, 1001407, 'Midlothian', NULL, 'midlothian', 'US', 1, 32.4823600000, -96.9944500000), (1121808, 1001425, 'Midlothian', NULL, 'midlothian', 'US', 1, 41.6253100000, -87.7175500000), (1121809, 1001416, 'Midpines', NULL, 'midpines', 'US', 1, 37.5443800000, -119.9204500000), (1121810, 1001454, 'Midtown', NULL, 'midtown', 'US', 1, 35.8795200000, -84.5641000000), (1121811, 1001414, 'Midvale', NULL, 'midvale', 'US', 1, 40.6110600000, -111.8999400000), (1121812, 1001444, 'Midway', NULL, 'midway', 'US', 1, 36.3853400000, -92.4618300000), (1121813, 1001455, 'Midway', NULL, 'midway', 'US', 1, 31.8057700000, -81.4306600000), (1121814, 1001419, 'Midway', NULL, 'midway', 'US', 1, 38.1509100000, -84.6838300000), (1121815, 1001457, 'Midway', NULL, 'midway', 'US', 1, 31.6921200000, -92.1523600000), (1121816, 1001447, 'Midway', NULL, 'midway', 'US', 1, 35.9534700000, -80.2181000000), (1121817, 1001454, 'Midway', NULL, 'midway', 'US', 1, 36.3001100000, -82.4237500000), (1121818, 1001422, 'Midway', NULL, 'midway', 'US', 1, 39.8084300000, -77.0027600000), (1121819, 1001414, 'Midway', NULL, 'midway', 'US', 1, 40.5121800000, -111.4743500000), (1121820, 1001436, 'Midway', NULL, 'midway', 'US', 1, 30.4064800000, -87.0055300000), (1121821, 1001416, 'Midway City', NULL, 'midway-city', 'US', 1, 33.7447400000, -117.9892300000), (1121822, 1001407, 'Midway North', NULL, 'midway-north', 'US', 1, 26.1877600000, -98.0170800000), (1121823, 1001407, 'Midway South', NULL, 'midway-south', 'US', 1, 26.1569400000, -98.0201100000), (1121824, 1001421, 'Midwest City', NULL, 'midwest-city', 'US', 1, 35.4495100000, -97.3967000000), (1121825, 1001422, 'Mifflin County', NULL, 'mifflin-county', 'US', 1, 40.6104100000, -77.6170400000), (1121826, 1001422, 'Mifflinburg', NULL, 'mifflinburg', 'US', 1, 40.9175800000, -77.0477500000), (1121827, 1001422, 'Mifflintown', NULL, 'mifflintown', 'US', 1, 40.5698000000, -77.3969300000), (1121828, 1001422, 'Mifflinville', NULL, 'mifflinville', 'US', 1, 41.0323100000, -76.3079900000), (1121829, 1001456, 'Mignon', NULL, 'mignon', 'US', 1, 33.1834500000, -86.2610900000), (1121830, 1001430, 'Mikoma', NULL, 'mikoma', 'US', 1, 33.9503900000, -90.2839800000), (1121831, 1001407, 'Mila Doce', NULL, 'mila-doce', 'US', 1, 26.2261800000, -97.9588900000), (1121832, 1001420, 'Milaca', NULL, 'milaca', 'US', 1, 45.7558000000, -93.6544100000), (1121833, 1001407, 'Milam', NULL, 'milam', 'US', 1, 31.4324000000, -93.8457400000), (1121834, 1001407, 'Milam County', NULL, 'milam-county', 'US', 1, 30.7863400000, -96.9768500000), (1121835, 1001440, 'Milan', NULL, 'milan', 'US', 1, 39.1211700000, -85.1313500000), (1121836, 1001454, 'Milan', NULL, 'milan', 'US', 1, 35.9197900000, -88.7589500000), (1121837, 1001425, 'Milan', NULL, 'milan', 'US', 1, 41.4530900000, -90.5720800000), (1121838, 1001426, 'Milan', NULL, 'milan', 'US', 1, 42.0853200000, -83.6824400000), (1121839, 1001451, 'Milan', NULL, 'milan', 'US', 1, 40.2022400000, -93.1252100000), (1121840, 1001404, 'Milan', NULL, 'milan', 'US', 1, 44.5733900000, -71.1850800000), (1121841, 1001423, 'Milan', NULL, 'milan', 'US', 1, 35.1697600000, -107.8908900000), (1121842, 1001445, 'Milbank', NULL, 'milbank', 'US', 1, 45.2191300000, -96.6356200000), (1121843, 1001453, 'Milbridge', NULL, 'milbridge', 'US', 1, 44.5353600000, -67.8808300000), (1121844, 1001446, 'Miles City', NULL, 'miles-city', 'US', 1, 46.4083400000, -105.8405600000), (1121845, 1001422, 'Milesburg', NULL, 'milesburg', 'US', 1, 40.9417300000, -77.7850000000), (1121846, 1001399, 'Milford', NULL, 'milford', 'US', 1, 38.9126100000, -75.4279700000), (1121847, 1001435, 'Milford', NULL, 'milford', 'US', 1, 41.2223200000, -73.0565000000), (1121848, 1001459, 'Milford', NULL, 'milford', 'US', 1, 43.3246900000, -95.1500000000), (1121849, 1001440, 'Milford', NULL, 'milford', 'US', 1, 41.4097700000, -85.8455500000), (1121850, 1001433, 'Milford', NULL, 'milford', 'US', 1, 42.1398200000, -71.5161700000), (1121851, 1001425, 'Milford', NULL, 'milford', 'US', 1, 40.6283700000, -87.6961400000), (1121852, 1001426, 'Milford', NULL, 'milford', 'US', 1, 42.5936400000, -83.5993900000), (1121853, 1001453, 'Milford', NULL, 'milford', 'US', 1, 44.9461800000, -68.6439200000), (1121854, 1001417, 'Milford', NULL, 'milford', 'US', 1, 40.5687100000, -75.0946200000), (1121855, 1001408, 'Milford', NULL, 'milford', 'US', 1, 40.7744500000, -97.0505900000), (1121856, 1001404, 'Milford', NULL, 'milford', 'US', 1, 42.8353600000, -71.6489600000), (1121857, 1001422, 'Milford', NULL, 'milford', 'US', 1, 41.3223200000, -74.8023900000), (1121858, 1001441, 'Milford', NULL, 'milford', 'US', 1, 43.1008300000, -88.8467700000), (1121859, 1001414, 'Milford', NULL, 'milford', 'US', 1, 38.3969100000, -113.0107900000), (1121860, 1001401, 'Milford Mill', NULL, 'milford-mill', 'US', 1, 39.3478800000, -76.7699700000), (1121861, 1001411, 'Mililani Town', NULL, 'mililani-town', 'US', 1, 21.4500000000, -158.0011100000), (1121862, 1001415, 'Mill City', NULL, 'mill-city', 'US', 1, 44.7540100000, -122.4781400000), (1121863, 1001462, 'Mill Creek', NULL, 'mill-creek', 'US', 1, 47.8601000000, -122.2043000000), (1121864, 1001462, 'Mill Creek East', NULL, 'mill-creek-east', 'US', 1, 47.8360200000, -122.1876600000), (1121865, 1001422, 'Mill Hall', NULL, 'mill-hall', 'US', 1, 41.1072900000, -77.4844300000), (1121866, 1001452, 'Mill Neck', NULL, 'mill-neck', 'US', 1, 40.8870400000, -73.5551200000), (1121867, 1001462, 'Mill Plain', NULL, 'mill-plain', 'US', 1, 45.6429000000, -122.4939800000), (1121868, 1001416, 'Mill Valley', NULL, 'mill-valley', 'US', 1, 37.9060400000, -122.5449800000), (1121869, 1001414, 'Millard County', NULL, 'millard-county', 'US', 1, 39.0738100000, -113.1004600000), (1121870, 1001422, 'Millbourne', NULL, 'millbourne', 'US', 1, 39.9634500000, -75.2501800000), (1121871, 1001416, 'Millbrae', NULL, 'millbrae', 'US', 1, 37.5985500000, -122.3871900000), (1121872, 1001456, 'Millbrook', NULL, 'millbrook', 'US', 1, 32.4798600000, -86.3619200000), (1121873, 1001452, 'Millbrook', NULL, 'millbrook', 'US', 1, 41.7850900000, -73.6940200000), (1121874, 1001433, 'Millbury', NULL, 'millbury', 'US', 1, 42.1939800000, -71.7600700000), (1121875, 1001414, 'Millcreek', NULL, 'millcreek', 'US', 1, 40.6868900000, -111.8754900000), (1121876, 1001420, 'Mille Lacs County', NULL, 'mille-lacs-county', 'US', 1, 45.9380500000, -93.6300900000), (1121877, 1001455, 'Milledgeville', NULL, 'milledgeville', 'US', 1, 33.0801400000, -83.2321000000), (1121878, 1001455, 'Millen', NULL, 'millen', 'US', 1, 32.8040500000, -81.9492800000), (1121879, 1001445, 'Miller', NULL, 'miller', 'US', 1, 44.5183100000, -98.9884300000), (1121880, 1001444, 'Miller County', NULL, 'miller-county', 'US', 1, 33.3121500000, -93.8915600000), (1121881, 1001455, 'Miller County', NULL, 'miller-county', 'US', 1, 31.1639900000, -84.7307200000), (1121882, 1001451, 'Miller County', NULL, 'miller-county', 'US', 1, 38.2145300000, -92.4284100000), (1121883, 1001452, 'Miller Place', NULL, 'miller-place', 'US', 1, 40.9598200000, -72.9962100000), (1121884, 1001447, 'Millers Creek', NULL, 'millers-creek', 'US', 1, 36.1893000000, -81.2375900000), (1121885, 1001433, 'Millers Falls', NULL, 'millers-falls', 'US', 1, 42.5820300000, -72.4925900000), (1121886, 1001422, 'Millersburg', NULL, 'millersburg', 'US', 1, 40.5395300000, -76.9608100000), (1121887, 1001415, 'Millersburg', NULL, 'millersburg', 'US', 1, 44.6809500000, -123.0614800000), (1121888, 1001454, 'Millersville', NULL, 'millersville', 'US', 1, 36.3711600000, -86.7100000000), (1121889, 1001422, 'Millersville', NULL, 'millersville', 'US', 1, 39.9978800000, -76.3541300000), (1121890, 1001450, 'Milliken', NULL, 'milliken', 'US', 1, 40.3294300000, -104.8552500000), (1121891, 1001454, 'Millington', NULL, 'millington', 'US', 1, 35.3414700000, -89.8973100000), (1121892, 1001426, 'Millington', NULL, 'millington', 'US', 1, 43.2814100000, -83.5296800000), (1121893, 1001453, 'Millinocket', NULL, 'millinocket', 'US', 1, 45.6572700000, -68.7097600000), (1121894, 1001433, 'Millis', NULL, 'millis', 'US', 1, 42.1676000000, -71.3578400000), (1121895, 1001433, 'Millis-Clicquot', NULL, 'millis-clicquot', 'US', 1, 42.1648000000, -71.3544200000), (1121896, 1001442, 'Mills', NULL, 'mills', 'US', 1, 42.8405200000, -106.3658600000), (1121897, 1001407, 'Mills County', NULL, 'mills-county', 'US', 1, 31.4951900000, -98.5954600000), (1121898, 1001459, 'Mills County', NULL, 'mills-county', 'US', 1, 41.0334500000, -95.6213300000), (1121899, 1001447, 'Mills River', NULL, 'mills-river', 'US', 1, 35.3884500000, -82.5667900000), (1121900, 1001399, 'Millsboro', NULL, 'millsboro', 'US', 1, 38.5915000000, -75.2913000000), (1121901, 1001425, 'Millstadt', NULL, 'millstadt', 'US', 1, 38.4614400000, -90.0917800000), (1121902, 1001417, 'Milltown', NULL, 'milltown', 'US', 1, 40.4562200000, -74.4432100000), (1121903, 1001422, 'Millvale', NULL, 'millvale', 'US', 1, 40.4800700000, -79.9783900000), (1121904, 1001417, 'Millville', NULL, 'millville', 'US', 1, 39.4020600000, -75.0393400000), (1121905, 1001433, 'Millville', NULL, 'millville', 'US', 1, 42.0278800000, -71.5809000000), (1121906, 1001414, 'Millville', NULL, 'millville', 'US', 1, 41.6816000000, -111.8230000000), (1121907, 1001462, 'Millwood', NULL, 'millwood', 'US', 1, 47.6812800000, -117.2827100000), (1121908, 1001453, 'Milo', NULL, 'milo', 'US', 1, 45.2536600000, -68.9858700000), (1121909, 1001416, 'Milpitas', NULL, 'milpitas', 'US', 1, 37.4282700000, -121.9066200000), (1121910, 1001422, 'Milroy', NULL, 'milroy', 'US', 1, 40.7139600000, -77.5905500000), (1121911, 1001399, 'Milton', NULL, 'milton', 'US', 1, 38.7776100000, -75.3099100000), (1121912, 1001436, 'Milton', NULL, 'milton', 'US', 1, 30.6324100000, -87.0396900000), (1121913, 1001457, 'Milton', NULL, 'milton', 'US', 1, 30.1038100000, -92.0765100000), (1121914, 1001429, 'Milton', NULL, 'milton', 'US', 1, 38.4345300000, -82.1323600000), (1121915, 1001433, 'Milton', NULL, 'milton', 'US', 1, 42.2495400000, -71.0661600000), (1121916, 1001452, 'Milton', NULL, 'milton', 'US', 1, 43.0336900000, -73.8526200000), (1121917, 1001422, 'Milton', NULL, 'milton', 'US', 1, 41.0120300000, -76.8477400000), (1121918, 1001441, 'Milton', NULL, 'milton', 'US', 1, 42.7755600000, -88.9440000000), (1121919, 1001409, 'Milton', NULL, 'milton', 'US', 1, 44.6397700000, -73.1104100000), (1121920, 1001455, 'Milton', NULL, 'milton', 'US', 1, 34.1321600000, -84.3006700000), (1121921, 1001462, 'Milton', NULL, 'milton', 'US', 1, 47.2481600000, -122.3129000000), (1121922, 1001415, 'Milton-Freewater', NULL, 'milton-freewater', 'US', 1, 45.9326300000, -118.3877400000), (1121923, 1001441, 'Milwaukee', NULL, 'milwaukee', 'US', 1, 43.0389000000, -87.9064700000), (1121924, 1001441, 'Milwaukee County', NULL, 'milwaukee-county', 'US', 1, 43.0217200000, -87.9290800000), (1121925, 1001415, 'Milwaukie', NULL, 'milwaukie', 'US', 1, 45.4462300000, -122.6392600000), (1121926, 1001436, 'Mims', NULL, 'mims', 'US', 1, 28.6652700000, -80.8447800000), (1121927, 1001421, 'Minco', NULL, 'minco', 'US', 1, 35.3128400000, -97.9444900000), (1121928, 1001457, 'Minden', NULL, 'minden', 'US', 1, 32.6154300000, -93.2868400000), (1121929, 1001408, 'Minden', NULL, 'minden', 'US', 1, 40.4986300000, -98.9478600000), (1121930, 1001458, 'Minden', NULL, 'minden', 'US', 1, 38.9540700000, -119.7657300000), (1121931, 1001407, 'Mineola', NULL, 'mineola', 'US', 1, 32.6631900000, -95.4882900000), (1121932, 1001452, 'Mineola', NULL, 'mineola', 'US', 1, 40.7492700000, -73.6406800000), (1121933, 1001445, 'Miner County', NULL, 'miner-county', 'US', 1, 44.0219500000, -97.6102500000), (1121934, 1001429, 'Mineral County', NULL, 'mineral-county', 'US', 1, 39.4147200000, -78.9437500000), (1121935, 1001450, 'Mineral County', NULL, 'mineral-county', 'US', 1, 37.6690000000, -106.9240900000), (1121936, 1001458, 'Mineral County', NULL, 'mineral-county', 'US', 1, 38.5388100000, -118.4352100000), (1121937, 1001446, 'Mineral County', NULL, 'mineral-county', 'US', 1, 47.1473200000, -114.9985000000), (1121938, 1001441, 'Mineral Point', NULL, 'mineral-point', 'US', 1, 42.8600000000, -90.1798500000), (1121939, 1001444, 'Mineral Springs', NULL, 'mineral-springs', 'US', 1, 33.8751200000, -93.9138000000), (1121940, 1001447, 'Mineral Springs', NULL, 'mineral-springs', 'US', 1, 34.9379300000, -80.6686800000), (1121941, 1001407, 'Mineral Wells', NULL, 'mineral-wells', 'US', 1, 32.8084600000, -98.1128200000), (1121942, 1001429, 'Mineral Wells', NULL, 'mineral-wells', 'US', 1, 39.1903500000, -81.5320700000), (1121943, 1001422, 'Minersville', NULL, 'minersville', 'US', 1, 40.6906500000, -76.2621700000), (1121944, 1001452, 'Minetto', NULL, 'minetto', 'US', 1, 43.3981200000, -76.4774400000), (1121945, 1001452, 'Mineville', NULL, 'mineville', 'US', 1, 44.0928300000, -73.5181800000), (1121946, 1001429, 'Mingo County', NULL, 'mingo-county', 'US', 1, 37.7264000000, -82.1347600000), (1121947, 1001460, 'Minidoka County', NULL, 'minidoka-county', 'US', 1, 42.8544000000, -113.6375200000), (1121948, 1001425, 'Minier', NULL, 'minier', 'US', 1, 40.4336500000, -89.3131500000), (1121949, 1001416, 'Minkler', NULL, 'minkler', 'US', 1, 36.7238400000, -119.4581800000), (1121950, 1001406, 'Minneapolis', NULL, 'minneapolis', 'US', 1, 39.1219400000, -97.7067000000), (1121951, 1001420, 'Minneapolis', NULL, 'minneapolis', 'US', 1, 44.9799700000, -93.2638400000), (1121952, 1001462, 'Minnehaha', NULL, 'minnehaha', 'US', 1, 45.6590100000, -122.6487100000), (1121953, 1001445, 'Minnehaha County', NULL, 'minnehaha-county', 'US', 1, 43.6741800000, -96.7914400000), (1121954, 1001436, 'Minneola', NULL, 'minneola', 'US', 1, 28.5744400000, -81.7461900000), (1121955, 1001420, 'Minneota', NULL, 'minneota', 'US', 1, 44.5588500000, -95.9855900000), (1121956, 1001420, 'Minnetonka', NULL, 'minnetonka', 'US', 1, 44.9133000000, -93.5032900000), (1121957, 1001420, 'Minnetonka Mills', NULL, 'minnetonka-mills', 'US', 1, 44.9410700000, -93.4419000000), (1121958, 1001420, 'Minnetrista', NULL, 'minnetrista', 'US', 1, 44.9383000000, -93.7177400000), (1121959, 1001418, 'Minnewaukan', NULL, 'minnewaukan', 'US', 1, 48.0713900000, -99.2523600000), (1121960, 1001452, 'Minoa', NULL, 'minoa', 'US', 1, 43.0761800000, -76.0007500000), (1121961, 1001425, 'Minonk', NULL, 'minonk', 'US', 1, 40.9044800000, -89.0345200000), (1121962, 1001425, 'Minooka', NULL, 'minooka', 'US', 1, 41.4553100000, -88.2617300000), (1121963, 1001456, 'Minor', NULL, 'minor', 'US', 1, 33.5373300000, -86.9405500000), (1121964, 1001457, 'Minorca', NULL, 'minorca', 'US', 1, 31.5793300000, -91.4817900000), (1121965, 1001453, 'Minot', NULL, 'minot', 'US', 1, 44.0856300000, -70.3200600000), (1121966, 1001418, 'Minot', NULL, 'minot', 'US', 1, 48.2325100000, -101.2962700000), (1121967, 1001418, 'Minot Air Force Base', NULL, 'minot-air-force-base', 'US', 1, 48.4208700000, -101.3391400000), (1121968, 1001447, 'Mint Hill', NULL, 'mint-hill', 'US', 1, 35.1795900000, -80.6472900000), (1121969, 1001450, 'Minturn', NULL, 'minturn', 'US', 1, 39.5863700000, -106.4308600000), (1121970, 1001426, 'Mio', NULL, 'mio', 'US', 1, 44.6522400000, -84.1297300000), (1121971, 1001416, 'Mira Mesa', NULL, 'mira-mesa', 'US', 1, 32.9156000000, -117.1439200000), (1121972, 1001416, 'Mira Monte', NULL, 'mira-monte', 'US', 1, 34.4336100000, -119.2851100000), (1121973, 1001436, 'Miramar', NULL, 'miramar', 'US', 1, 25.9873100000, -80.2322700000), (1121974, 1001436, 'Miramar Beach', NULL, 'miramar-beach', 'US', 1, 30.3743700000, -86.3585600000), (1121975, 1001462, 'Mirrormont', NULL, 'mirrormont', 'US', 1, 47.4623200000, -121.9956700000), (1121976, 1001440, 'Mishawaka', NULL, 'mishawaka', 'US', 1, 41.6619900000, -86.1586200000), (1121977, 1001441, 'Mishicot', NULL, 'mishicot', 'US', 1, 44.2391600000, -87.6411900000), (1121978, 1001426, 'Missaukee County', NULL, 'missaukee-county', 'US', 1, 44.3373000000, -85.0946700000), (1121979, 1001406, 'Mission', NULL, 'mission', 'US', 1, 39.0277800000, -94.6557900000), (1121980, 1001407, 'Mission', NULL, 'mission', 'US', 1, 26.2159100000, -98.3252900000), (1121981, 1001415, 'Mission', NULL, 'mission', 'US', 1, 45.6704100000, -118.6835900000), (1121982, 1001445, 'Mission', NULL, 'mission', 'US', 1, 43.3058400000, -100.6581900000), (1121983, 1001407, 'Mission Bend', NULL, 'mission-bend', 'US', 1, 29.6938400000, -95.6649500000), (1121984, 1001416, 'Mission Canyon', NULL, 'mission-canyon', 'US', 1, 34.4508300000, -119.7129100000), (1121985, 1001416, 'Mission District', NULL, 'mission-district', 'US', 1, 37.7599300000, -122.4191400000), (1121986, 1001406, 'Mission Hills', NULL, 'mission-hills', 'US', 1, 39.0177800000, -94.6169000000), (1121987, 1001416, 'Mission Hills', NULL, 'mission-hills', 'US', 1, 34.6860900000, -120.4368300000), (1121988, 1001416, 'Mission Viejo', NULL, 'mission-viejo', 'US', 1, 33.6000200000, -117.6720000000), (1121989, 1001444, 'Mississippi County', NULL, 'mississippi-county', 'US', 1, 35.7639000000, -90.0541700000), (1121990, 1001451, 'Mississippi County', NULL, 'mississippi-county', 'US', 1, 36.8281000000, -89.2911800000), (1121991, 1001446, 'Missoula', NULL, 'missoula', 'US', 1, 46.8721500000, -113.9940000000), (1121992, 1001446, 'Missoula County', NULL, 'missoula-county', 'US', 1, 47.0364900000, -113.9237100000), (1121993, 1001407, 'Missouri City', NULL, 'missouri-city', 'US', 1, 29.6185700000, -95.5377200000), (1121994, 1001459, 'Missouri Valley', NULL, 'missouri-valley', 'US', 1, 41.5563800000, -95.8877900000), (1121995, 1001425, 'Mitchell', NULL, 'mitchell', 'US', 1, 38.7619900000, -90.0853800000), (1121996, 1001440, 'Mitchell', NULL, 'mitchell', 'US', 1, 38.7328300000, -86.4736000000), (1121997, 1001445, 'Mitchell', NULL, 'mitchell', 'US', 1, 43.7094300000, -98.0298000000), (1121998, 1001408, 'Mitchell', NULL, 'mitchell', 'US', 1, 41.9402400000, -103.8085600000), (1121999, 1001455, 'Mitchell County', NULL, 'mitchell-county', 'US', 1, 31.2253200000, -84.1943100000), (1122000, 1001406, 'Mitchell County', NULL, 'mitchell-county', 'US', 1, 39.3932700000, -98.2093600000), (1122001, 1001447, 'Mitchell County', NULL, 'mitchell-county', 'US', 1, 36.0132900000, -82.1634700000), (1122002, 1001459, 'Mitchell County', NULL, 'mitchell-county', 'US', 1, 43.3564100000, -92.7890300000), (1122003, 1001407, 'Mitchell County', NULL, 'mitchell-county', 'US', 1, 32.3062100000, -100.9212300000), (1122004, 1001401, 'Mitchellville', NULL, 'mitchellville', 'US', 1, 38.9251100000, -76.7427500000), (1122005, 1001459, 'Mitchellville', NULL, 'mitchellville', 'US', 1, 41.6686000000, -93.3577100000), (1122006, 1001414, 'Moab', NULL, 'moab', 'US', 1, 38.5733200000, -109.5498400000), (1122007, 1001458, 'Moapa Town', NULL, 'moapa-town', 'US', 1, 36.6821900000, -114.5941600000), (1122008, 1001458, 'Moapa Valley', NULL, 'moapa-valley', 'US', 1, 36.5805300000, -114.4702600000), (1122009, 1001451, 'Moberly', NULL, 'moberly', 'US', 1, 39.4183700000, -92.4382400000), (1122010, 1001456, 'Mobile', NULL, 'mobile', 'US', 1, 30.6943600000, -88.0430500000), (1122011, 1001456, 'Mobile County', NULL, 'mobile-county', 'US', 1, 30.6851500000, -88.1975300000), (1122012, 1001445, 'Mobridge', NULL, 'mobridge', 'US', 1, 45.5372200000, -100.4279100000), (1122013, 1001447, 'Mocksville', NULL, 'mocksville', 'US', 1, 35.8940300000, -80.5614500000), (1122014, 1001416, 'Modesto', NULL, 'modesto', 'US', 1, 37.6391000000, -120.9968800000), (1122015, 1001416, 'Modoc County', NULL, 'modoc-county', 'US', 1, 41.5898500000, -120.7249700000), (1122016, 1001450, 'Moffat County', NULL, 'moffat-county', 'US', 1, 40.6184300000, -108.2073000000), (1122017, 1001458, 'Mogul', NULL, 'mogul', 'US', 1, 39.5138000000, -119.9260300000), (1122018, 1001418, 'Mohall', NULL, 'mohall', 'US', 1, 48.7633600000, -101.5132200000), (1122019, 1001434, 'Mohave County', NULL, 'mohave-county', 'US', 1, 35.7040400000, -113.7579100000), (1122020, 1001434, 'Mohave Valley', NULL, 'mohave-valley', 'US', 1, 34.9330600000, -114.5888500000), (1122021, 1001452, 'Mohawk', NULL, 'mohawk', 'US', 1, 43.0114600000, -75.0040400000), (1122022, 1001422, 'Mohnton', NULL, 'mohnton', 'US', 1, 40.2859300000, -75.9843800000), (1122023, 1001416, 'Mojave', NULL, 'mojave', 'US', 1, 35.0524700000, -118.1739600000), (1122024, 1001425, 'Mokena', NULL, 'mokena', 'US', 1, 41.5261400000, -87.8892200000), (1122025, 1001411, 'Mokulēia', NULL, 'mokuleia', 'US', 1, 21.5796700000, -158.1531300000), (1122026, 1001415, 'Molalla', NULL, 'molalla', 'US', 1, 45.1473400000, -122.5770300000), (1122027, 1001425, 'Moline', NULL, 'moline', 'US', 1, 41.5067000000, -90.5151300000), (1122028, 1001451, 'Moline Acres', NULL, 'moline-acres', 'US', 1, 38.7469900000, -90.2401100000), (1122029, 1001436, 'Molino', NULL, 'molino', 'US', 1, 30.7240800000, -87.3141400000), (1122030, 1001425, 'Momence', NULL, 'momence', 'US', 1, 41.1667000000, -87.6628100000), (1122031, 1001414, 'Mona', NULL, 'mona', 'US', 1, 39.8160700000, -111.8554900000), (1122032, 1001422, 'Monaca', NULL, 'monaca', 'US', 1, 40.6872900000, -80.2714500000), (1122033, 1001407, 'Monahans', NULL, 'monahans', 'US', 1, 31.5943000000, -102.8926500000), (1122034, 1001443, 'Monarch Mill', NULL, 'monarch-mill', 'US', 1, 34.7161000000, -81.5850000000), (1122035, 1001443, 'Moncks Corner', NULL, 'moncks-corner', 'US', 1, 33.1963200000, -80.0142900000), (1122036, 1001441, 'Mondovi', NULL, 'mondovi', 'US', 1, 44.5677400000, -91.6709900000), (1122037, 1001425, 'Monee', NULL, 'monee', 'US', 1, 41.4200300000, -87.7417100000), (1122038, 1001422, 'Monessen', NULL, 'monessen', 'US', 1, 40.1484100000, -79.8878300000), (1122039, 1001451, 'Monett', NULL, 'monett', 'US', 1, 36.9289500000, -93.9277100000), (1122040, 1001444, 'Monette', NULL, 'monette', 'US', 1, 35.8906300000, -90.3442700000), (1122041, 1001451, 'Moniteau County', NULL, 'moniteau-county', 'US', 1, 38.6327500000, -92.5830500000), (1122042, 1001425, 'Monmouth', NULL, 'monmouth', 'US', 1, 40.9114300000, -90.6473600000), (1122043, 1001453, 'Monmouth', NULL, 'monmouth', 'US', 1, 44.2386800000, -70.0356100000), (1122044, 1001415, 'Monmouth', NULL, 'monmouth', 'US', 1, 44.8484500000, -123.2339900000), (1122045, 1001417, 'Monmouth Beach', NULL, 'monmouth-beach', 'US', 1, 40.3303900000, -73.9815300000), (1122046, 1001417, 'Monmouth County', NULL, 'monmouth-county', 'US', 1, 40.2875500000, -74.1581500000), (1122047, 1001417, 'Monmouth Junction', NULL, 'monmouth-junction', 'US', 1, 40.3790000000, -74.5465400000), (1122048, 1001416, 'Mono County', NULL, 'mono-county', 'US', 1, 37.9389900000, -118.8867100000), (1122049, 1001416, 'Mono Vista', NULL, 'mono-vista', 'US', 1, 37.9977000000, -120.2699100000), (1122050, 1001440, 'Monon', NULL, 'monon', 'US', 1, 40.8678200000, -86.8789000000), (1122051, 1001459, 'Monona', NULL, 'monona', 'US', 1, 43.0516500000, -91.3893000000), (1122052, 1001441, 'Monona', NULL, 'monona', 'US', 1, 43.0622200000, -89.3340100000), (1122053, 1001459, 'Monona County', NULL, 'monona-county', 'US', 1, 42.0516700000, -95.9599200000), (1122054, 1001429, 'Monongah', NULL, 'monongah', 'US', 1, 39.4625800000, -80.2181400000), (1122055, 1001422, 'Monongahela', NULL, 'monongahela', 'US', 1, 40.2031300000, -79.9261600000), (1122056, 1001429, 'Monongalia County', NULL, 'monongalia-county', 'US', 1, 39.6302800000, -80.0465400000), (1122057, 1001455, 'Monroe', NULL, 'monroe', 'US', 1, 33.7948400000, -83.7132300000), (1122058, 1001457, 'Monroe', NULL, 'monroe', 'US', 1, 32.5093100000, -92.1193000000), (1122059, 1001447, 'Monroe', NULL, 'monroe', 'US', 1, 34.9854300000, -80.5495100000), (1122060, 1001459, 'Monroe', NULL, 'monroe', 'US', 1, 41.5222100000, -93.1018700000), (1122061, 1001426, 'Monroe', NULL, 'monroe', 'US', 1, 41.9164300000, -83.3977100000), (1122062, 1001452, 'Monroe', NULL, 'monroe', 'US', 1, 41.3306500000, -74.1868100000), (1122063, 1001441, 'Monroe', NULL, 'monroe', 'US', 1, 42.6011200000, -89.6384500000), (1122064, 1001414, 'Monroe', NULL, 'monroe', 'US', 1, 38.6299700000, -112.1207600000), (1122065, 1001462, 'Monroe', NULL, 'monroe', 'US', 1, 47.8553800000, -121.9709600000), (1122066, 1001451, 'Monroe City', NULL, 'monroe-city', 'US', 1, 39.6536500000, -91.7346100000), (1122067, 1001456, 'Monroe County', NULL, 'monroe-county', 'US', 1, 31.5708400000, -87.3654300000), (1122068, 1001444, 'Monroe County', NULL, 'monroe-county', 'US', 1, 34.6778400000, -91.2038900000), (1122069, 1001436, 'Monroe County', NULL, 'monroe-county', 'US', 1, 25.5573100000, -80.9170500000), (1122070, 1001455, 'Monroe County', NULL, 'monroe-county', 'US', 1, 33.0140800000, -83.9187200000), (1122071, 1001425, 'Monroe County', NULL, 'monroe-county', 'US', 1, 38.2786500000, -90.1773800000), (1122072, 1001440, 'Monroe County', NULL, 'monroe-county', 'US', 1, 39.1609200000, -86.5231400000), (1122073, 1001419, 'Monroe County', NULL, 'monroe-county', 'US', 1, 36.7121800000, -85.7165200000), (1122074, 1001451, 'Monroe County', NULL, 'monroe-county', 'US', 1, 39.4954600000, -92.0007400000), (1122075, 1001430, 'Monroe County', NULL, 'monroe-county', 'US', 1, 33.8922400000, -88.4804700000), (1122076, 1001454, 'Monroe County', NULL, 'monroe-county', 'US', 1, 35.4426500000, -84.2527900000), (1122077, 1001429, 'Monroe County', NULL, 'monroe-county', 'US', 1, 37.5603700000, -80.5505500000), (1122078, 1001459, 'Monroe County', NULL, 'monroe-county', 'US', 1, 41.0297800000, -92.8689900000), (1122079, 1001426, 'Monroe County', NULL, 'monroe-county', 'US', 1, 41.9214000000, -83.4942600000), (1122080, 1001452, 'Monroe County', NULL, 'monroe-county', 'US', 1, 43.1651200000, -77.6362600000), (1122081, 1001422, 'Monroe County', NULL, 'monroe-county', 'US', 1, 41.0580700000, -75.3394800000), (1122082, 1001441, 'Monroe County', NULL, 'monroe-county', 'US', 1, 43.9457500000, -90.6178700000), (1122083, 1001462, 'Monroe North', NULL, 'monroe-north', 'US', 1, 47.8822500000, -121.9872900000), (1122084, 1001456, 'Monroeville', NULL, 'monroeville', 'US', 1, 31.5279400000, -87.3247100000), (1122085, 1001440, 'Monroeville', NULL, 'monroeville', 'US', 1, 40.9747700000, -84.8683000000), (1122086, 1001422, 'Monroeville', NULL, 'monroeville', 'US', 1, 40.4211800000, -79.7881000000), (1122087, 1001440, 'Monrovia', NULL, 'monrovia', 'US', 1, 39.5789400000, -86.4822200000), (1122088, 1001416, 'Monrovia', NULL, 'monrovia', 'US', 1, 34.1480600000, -117.9989500000), (1122089, 1001452, 'Monsey', NULL, 'monsey', 'US', 1, 41.1112100000, -74.0684800000), (1122090, 1001433, 'Monson', NULL, 'monson', 'US', 1, 42.1042600000, -72.3189700000), (1122091, 1001433, 'Monson Center', NULL, 'monson-center', 'US', 1, 42.0989800000, -72.3048100000), (1122092, 1001422, 'Mont Alto', NULL, 'mont-alto', 'US', 1, 39.8442600000, -77.5583200000), (1122093, 1001407, 'Mont Belvieu', NULL, 'mont-belvieu', 'US', 1, 29.8477200000, -94.8907600000), (1122094, 1001404, 'Mont Vernon', NULL, 'mont-vernon', 'US', 1, 42.8945300000, -71.6742400000), (1122095, 1001407, 'Montague', NULL, 'montague', 'US', 1, 33.6648300000, -97.7205900000), (1122096, 1001433, 'Montague', NULL, 'montague', 'US', 1, 42.5356400000, -72.5350900000), (1122097, 1001426, 'Montague', NULL, 'montague', 'US', 1, 43.4166800000, -86.3570100000), (1122098, 1001416, 'Montague', NULL, 'montague', 'US', 1, 41.7282000000, -122.5278000000), (1122099, 1001407, 'Montague County', NULL, 'montague-county', 'US', 1, 33.6756300000, -97.7246500000), (1122100, 1001416, 'Montalvin', NULL, 'montalvin', 'US', 1, 37.9954800000, -122.3327500000), (1122101, 1001446, 'Montana City', NULL, 'montana-city', 'US', 1, 46.5377100000, -111.9327700000), (1122102, 1001416, 'Montara', NULL, 'montara', 'US', 1, 37.5421600000, -122.5160900000), (1122103, 1001452, 'Montauk', NULL, 'montauk', 'US', 1, 41.0359400000, -71.9545100000), (1122104, 1001426, 'Montcalm County', NULL, 'montcalm-county', 'US', 1, 43.3109600000, -85.1525200000), (1122105, 1001427, 'Montclair', NULL, 'montclair', 'US', 1, 38.6109500000, -77.3397100000), (1122106, 1001417, 'Montclair', NULL, 'montclair', 'US', 1, 40.8259300000, -74.2090300000), (1122107, 1001416, 'Montclair', NULL, 'montclair', 'US', 1, 34.0775100000, -117.6897800000), (1122108, 1001407, 'Monte Alto', NULL, 'monte-alto', 'US', 1, 26.3731200000, -97.9716700000), (1122109, 1001416, 'Monte Rio', NULL, 'monte-rio', 'US', 1, 38.4654700000, -123.0088900000), (1122110, 1001416, 'Monte Sereno', NULL, 'monte-sereno', 'US', 1, 37.2363300000, -121.9924600000), (1122111, 1001450, 'Monte Vista', NULL, 'monte-vista', 'US', 1, 37.5791700000, -106.1480800000), (1122112, 1001454, 'Monteagle', NULL, 'monteagle', 'US', 1, 35.2400800000, -85.8397000000), (1122113, 1001452, 'Montebello', NULL, 'montebello', 'US', 1, 41.1359300000, -74.1184800000), (1122114, 1001416, 'Montebello', NULL, 'montebello', 'US', 1, 34.0094600000, -118.1053500000), (1122115, 1001416, 'Montecito', NULL, 'montecito', 'US', 1, 34.4366600000, -119.6320800000), (1122116, 1001457, 'Montegut', NULL, 'montegut', 'US', 1, 29.4743900000, -90.5570300000), (1122117, 1001441, 'Montello', NULL, 'montello', 'US', 1, 43.7913700000, -89.3198400000), (1122118, 1001454, 'Monterey', NULL, 'monterey', 'US', 1, 36.1475600000, -85.2683000000), (1122119, 1001427, 'Monterey', NULL, 'monterey', 'US', 1, 38.4123400000, -79.5806000000), (1122120, 1001416, 'Monterey', NULL, 'monterey', 'US', 1, 36.6002400000, -121.8946800000), (1122121, 1001416, 'Monterey County', NULL, 'monterey-county', 'US', 1, 36.2397700000, -121.3089000000), (1122122, 1001416, 'Monterey Park', NULL, 'monterey-park', 'US', 1, 34.0625100000, -118.1228500000), (1122123, 1001423, 'Monterey Park', NULL, 'monterey-park', 'US', 1, 34.7589800000, -106.6408500000), (1122124, 1001462, 'Montesano', NULL, 'montesano', 'US', 1, 46.9812100000, -123.6026600000), (1122125, 1001456, 'Montevallo', NULL, 'montevallo', 'US', 1, 33.1006700000, -86.8641600000), (1122126, 1001420, 'Montevideo', NULL, 'montevideo', 'US', 1, 44.9480300000, -95.7170100000), (1122127, 1001455, 'Montezuma', NULL, 'montezuma', 'US', 1, 32.3051600000, -84.0274100000), (1122128, 1001459, 'Montezuma', NULL, 'montezuma', 'US', 1, 41.5858300000, -92.5274100000), (1122129, 1001450, 'Montezuma County', NULL, 'montezuma-county', 'US', 1, 37.3384100000, -108.5967100000), (1122130, 1001456, 'Montgomery', NULL, 'montgomery', 'US', 1, 32.3668100000, -86.2999700000), (1122131, 1001455, 'Montgomery', NULL, 'montgomery', 'US', 1, 31.9404900000, -81.1220500000), (1122132, 1001429, 'Montgomery', NULL, 'montgomery', 'US', 1, 38.1803800000, -81.3284500000), (1122133, 1001425, 'Montgomery', NULL, 'montgomery', 'US', 1, 41.7305800000, -88.3459000000), (1122134, 1001420, 'Montgomery', NULL, 'montgomery', 'US', 1, 44.4388500000, -93.5813400000), (1122135, 1001452, 'Montgomery', NULL, 'montgomery', 'US', 1, 41.5275900000, -74.2368200000), (1122136, 1001422, 'Montgomery', NULL, 'montgomery', 'US', 1, 41.1703600000, -76.8769100000), (1122137, 1001409, 'Montgomery', NULL, 'montgomery', 'US', 1, 44.9025500000, -72.6381800000), (1122138, 1001451, 'Montgomery City', NULL, 'montgomery-city', 'US', 1, 38.9775400000, -91.5048800000), (1122139, 1001456, 'Montgomery County', NULL, 'montgomery-county', 'US', 1, 32.2202600000, -86.2076100000), (1122140, 1001444, 'Montgomery County', NULL, 'montgomery-county', 'US', 1, 34.5387900000, -93.6595300000), (1122141, 1001455, 'Montgomery County', NULL, 'montgomery-county', 'US', 1, 32.1733600000, -82.5348200000), (1122142, 1001425, 'Montgomery County', NULL, 'montgomery-county', 'US', 1, 39.2310400000, -89.4788700000), (1122143, 1001406, 'Montgomery County', NULL, 'montgomery-county', 'US', 1, 37.1925200000, -95.7428800000), (1122144, 1001419, 'Montgomery County', NULL, 'montgomery-county', 'US', 1, 38.0335300000, -83.9131000000), (1122145, 1001401, 'Montgomery County', NULL, 'montgomery-county', 'US', 1, 39.1363800000, -77.2042400000), (1122146, 1001451, 'Montgomery County', NULL, 'montgomery-county', 'US', 1, 38.9414900000, -91.4702100000), (1122147, 1001430, 'Montgomery County', NULL, 'montgomery-county', 'US', 1, 33.4941000000, -89.6164000000), (1122148, 1001447, 'Montgomery County', NULL, 'montgomery-county', 'US', 1, 35.3324600000, -79.9054700000), (1122149, 1001454, 'Montgomery County', NULL, 'montgomery-county', 'US', 1, 36.4968600000, -87.3828900000), (1122150, 1001407, 'Montgomery County', NULL, 'montgomery-county', 'US', 1, 30.3002100000, -95.5030100000), (1122151, 1001427, 'Montgomery County', NULL, 'montgomery-county', 'US', 1, 37.1740400000, -80.3870000000), (1122152, 1001459, 'Montgomery County', NULL, 'montgomery-county', 'US', 1, 41.0301400000, -95.1563800000), (1122153, 1001440, 'Montgomery County', NULL, 'montgomery-county', 'US', 1, 40.0403800000, -86.8933000000), (1122154, 1001452, 'Montgomery County', NULL, 'montgomery-county', 'US', 1, 42.9022800000, -74.4396800000), (1122155, 1001422, 'Montgomery County', NULL, 'montgomery-county', 'US', 1, 40.2108300000, -75.3673000000), (1122156, 1001401, 'Montgomery Village', NULL, 'montgomery-village', 'US', 1, 39.1767700000, -77.1952600000), (1122157, 1001422, 'Montgomeryville', NULL, 'montgomeryville', 'US', 1, 40.2473300000, -75.2437900000), (1122158, 1001444, 'Monticello', NULL, 'monticello', 'US', 1, 33.6290000000, -91.7909600000), (1122159, 1001436, 'Monticello', NULL, 'monticello', 'US', 1, 30.5451500000, -83.8713000000), (1122160, 1001455, 'Monticello', NULL, 'monticello', 'US', 1, 33.3048500000, -83.6832300000), (1122161, 1001457, 'Monticello', NULL, 'monticello', 'US', 1, 30.4890800000, -91.0487200000), (1122162, 1001419, 'Monticello', NULL, 'monticello', 'US', 1, 36.8297900000, -84.8491100000), (1122163, 1001430, 'Monticello', NULL, 'monticello', 'US', 1, 31.5537800000, -90.1073100000), (1122164, 1001459, 'Monticello', NULL, 'monticello', 'US', 1, 42.2383400000, -91.1870900000), (1122165, 1001440, 'Monticello', NULL, 'monticello', 'US', 1, 40.7453200000, -86.7647300000), (1122166, 1001425, 'Monticello', NULL, 'monticello', 'US', 1, 40.0278100000, -88.5734000000), (1122167, 1001420, 'Monticello', NULL, 'monticello', 'US', 1, 45.3055200000, -93.7941400000), (1122168, 1001451, 'Monticello', NULL, 'monticello', 'US', 1, 40.1183800000, -91.7121100000), (1122169, 1001452, 'Monticello', NULL, 'monticello', 'US', 1, 41.6556500000, -74.6893300000), (1122170, 1001441, 'Monticello', NULL, 'monticello', 'US', 1, 42.7455600000, -89.5948400000), (1122171, 1001414, 'Monticello', NULL, 'monticello', 'US', 1, 37.8713800000, -109.3428900000), (1122172, 1001426, 'Montmorency County', NULL, 'montmorency-county', 'US', 1, 45.0275500000, -84.1272100000), (1122173, 1001422, 'Montour County', NULL, 'montour-county', 'US', 1, 41.0279200000, -76.6585600000), (1122174, 1001452, 'Montour Falls', NULL, 'montour-falls', 'US', 1, 42.3473000000, -76.8452400000), (1122175, 1001422, 'Montoursville', NULL, 'montoursville', 'US', 1, 41.2542500000, -76.9205200000), (1122176, 1001440, 'Montpelier', NULL, 'montpelier', 'US', 1, 40.5539300000, -85.2774700000), (1122177, 1001409, 'Montpelier', NULL, 'montpelier', 'US', 1, 44.2600600000, -72.5753900000), (1122178, 1001460, 'Montpelier', NULL, 'montpelier', 'US', 1, 42.3221500000, -111.2977000000), (1122179, 1001427, 'Montrose', NULL, 'montrose', 'US', 1, 37.5207000000, -77.3783100000), (1122180, 1001420, 'Montrose', NULL, 'montrose', 'US', 1, 45.0649600000, -93.9110800000), (1122181, 1001426, 'Montrose', NULL, 'montrose', 'US', 1, 43.1766900000, -83.8927400000), (1122182, 1001452, 'Montrose', NULL, 'montrose', 'US', 1, 41.2523200000, -73.9315300000), (1122183, 1001422, 'Montrose', NULL, 'montrose', 'US', 1, 41.8339700000, -75.8771400000), (1122184, 1001450, 'Montrose', NULL, 'montrose', 'US', 1, 38.4783200000, -107.8761700000), (1122185, 1001450, 'Montrose County', NULL, 'montrose-county', 'US', 1, 38.4021800000, -108.2693600000), (1122186, 1001427, 'Montross', NULL, 'montross', 'US', 1, 38.0951300000, -76.8274600000), (1122187, 1001417, 'Montvale', NULL, 'montvale', 'US', 1, 41.0467600000, -74.0229200000), (1122188, 1001436, 'Montverde', NULL, 'montverde', 'US', 1, 28.6002800000, -81.6739600000), (1122189, 1001435, 'Montville Center', NULL, 'montville-center', 'US', 1, 41.4789900000, -72.1511900000), (1122190, 1001457, 'Montz', NULL, 'montz', 'US', 1, 30.0068700000, -90.4686900000), (1122191, 1001450, 'Monument', NULL, 'monument', 'US', 1, 39.0916600000, -104.8727600000), (1122192, 1001433, 'Monument Beach', NULL, 'monument-beach', 'US', 1, 41.7195500000, -70.6119800000), (1122193, 1001416, 'Monument Hills', NULL, 'monument-hills', 'US', 1, 38.6642900000, -121.8756600000), (1122194, 1001435, 'Moodus', NULL, 'moodus', 'US', 1, 41.5028800000, -72.4500900000), (1122195, 1001456, 'Moody', NULL, 'moody', 'US', 1, 33.5909400000, -86.4908200000), (1122196, 1001407, 'Moody', NULL, 'moody', 'US', 1, 31.3082300000, -97.3614000000), (1122197, 1001445, 'Moody County', NULL, 'moody-county', 'US', 1, 44.0220100000, -96.6709200000), (1122198, 1001417, 'Moonachie', NULL, 'moonachie', 'US', 1, 40.8412100000, -74.0451400000), (1122199, 1001442, 'Moorcroft', NULL, 'moorcroft', 'US', 1, 44.2633100000, -104.9502500000), (1122200, 1001421, 'Moore', NULL, 'moore', 'US', 1, 35.3395100000, -97.4867000000), (1122201, 1001447, 'Moore County', NULL, 'moore-county', 'US', 1, 35.3107200000, -79.4813100000), (1122202, 1001454, 'Moore County', NULL, 'moore-county', 'US', 1, 35.2846200000, -86.3587700000), (1122203, 1001407, 'Moore County', NULL, 'moore-county', 'US', 1, 35.8376900000, -101.8929200000), (1122204, 1001436, 'Moore Haven', NULL, 'moore-haven', 'US', 1, 26.8331200000, -81.0931200000), (1122205, 1001429, 'Moorefield', NULL, 'moorefield', 'US', 1, 39.0623300000, -78.9694700000), (1122206, 1001421, 'Mooreland', NULL, 'mooreland', 'US', 1, 36.4392000000, -99.2048200000), (1122207, 1001456, 'Moores Mill', NULL, 'moores-mill', 'US', 1, 34.8439800000, -86.5183200000), (1122208, 1001417, 'Moorestown-Lenola', NULL, 'moorestown-lenola', 'US', 1, 39.9659100000, -74.9644100000), (1122209, 1001440, 'Mooresville', NULL, 'mooresville', 'US', 1, 39.6128200000, -86.3741600000), (1122210, 1001447, 'Mooresville', NULL, 'mooresville', 'US', 1, 35.5848600000, -80.8100700000), (1122211, 1001430, 'Moorhead', NULL, 'moorhead', 'US', 1, 33.4501200000, -90.5056400000), (1122212, 1001420, 'Moorhead', NULL, 'moorhead', 'US', 1, 46.8738600000, -96.7695100000), (1122213, 1001416, 'Moorpark', NULL, 'moorpark', 'US', 1, 34.2855600000, -118.8820400000), (1122214, 1001420, 'Moose Lake', NULL, 'moose-lake', 'US', 1, 46.4541100000, -92.7618700000), (1122215, 1001442, 'Moose Wilson Road', NULL, 'moose-wilson-road', 'US', 1, 43.5252100000, -110.8446600000), (1122216, 1001422, 'Moosic', NULL, 'moosic', 'US', 1, 41.3534100000, -75.7382500000), (1122217, 1001435, 'Moosup', NULL, 'moosup', 'US', 1, 41.7128800000, -71.8809100000), (1122218, 1001420, 'Mora', NULL, 'mora', 'US', 1, 45.8769000000, -93.2938400000), (1122219, 1001423, 'Mora', NULL, 'mora', 'US', 1, 35.9742000000, -105.3300100000), (1122220, 1001423, 'Mora County', NULL, 'mora-county', 'US', 1, 36.0099500000, -104.9445800000), (1122221, 1001416, 'Morada', NULL, 'morada', 'US', 1, 38.0385300000, -121.2457800000), (1122222, 1001416, 'Moraga', NULL, 'moraga', 'US', 1, 37.8349300000, -122.1296900000), (1122223, 1001452, 'Moravia', NULL, 'moravia', 'US', 1, 42.7125700000, -76.4216000000), (1122224, 1001447, 'Moravian Falls', NULL, 'moravian-falls', 'US', 1, 36.0968000000, -81.1823100000), (1122225, 1001419, 'Morehead', NULL, 'morehead', 'US', 1, 38.1839700000, -83.4326800000), (1122226, 1001447, 'Morehead City', NULL, 'morehead-city', 'US', 1, 34.7229400000, -76.7260400000), (1122227, 1001457, 'Morehouse Parish', NULL, 'morehouse-parish', 'US', 1, 32.8202200000, -91.8018000000), (1122228, 1001460, 'Moreland', NULL, 'moreland', 'US', 1, 43.2226900000, -112.4424800000), (1122229, 1001426, 'Morenci', NULL, 'morenci', 'US', 1, 41.7194900000, -84.2180000000), (1122230, 1001434, 'Morenci', NULL, 'morenci', 'US', 1, 33.0786700000, -109.3653500000), (1122231, 1001416, 'Moreno Valley', NULL, 'moreno-valley', 'US', 1, 33.9375200000, -117.2305900000), (1122232, 1001409, 'Moretown', NULL, 'moretown', 'US', 1, 44.2508900000, -72.7609500000), (1122233, 1001455, 'Morgan', NULL, 'morgan', 'US', 1, 31.5376700000, -84.5993600000), (1122234, 1001414, 'Morgan', NULL, 'morgan', 'US', 1, 41.0360600000, -111.6768800000), (1122235, 1001457, 'Morgan City', NULL, 'morgan-city', 'US', 1, 29.6993700000, -91.2067700000), (1122236, 1001456, 'Morgan County', NULL, 'morgan-county', 'US', 1, 34.4534700000, -86.8529300000), (1122237, 1001455, 'Morgan County', NULL, 'morgan-county', 'US', 1, 33.5908300000, -83.4923800000), (1122238, 1001425, 'Morgan County', NULL, 'morgan-county', 'US', 1, 39.7155600000, -90.2015000000), (1122239, 1001440, 'Morgan County', NULL, 'morgan-county', 'US', 1, 39.4815500000, -86.4462100000), (1122240, 1001419, 'Morgan County', NULL, 'morgan-county', 'US', 1, 37.9222800000, -83.2588900000), (1122241, 1001451, 'Morgan County', NULL, 'morgan-county', 'US', 1, 38.4237400000, -92.8859800000), (1122242, 1001454, 'Morgan County', NULL, 'morgan-county', 'US', 1, 36.1350200000, -84.6492000000), (1122243, 1001429, 'Morgan County', NULL, 'morgan-county', 'US', 1, 39.5604300000, -78.2577300000), (1122244, 1001450, 'Morgan County', NULL, 'morgan-county', 'US', 1, 40.2627100000, -103.8098200000), (1122245, 1001414, 'Morgan County', NULL, 'morgan-county', 'US', 1, 41.0893200000, -111.5731200000), (1122246, 1001416, 'Morgan Hill', NULL, 'morgan-hill', 'US', 1, 37.1305000000, -121.6543900000), (1122247, 1001425, 'Morgan Park', NULL, 'morgan-park', 'US', 1, 41.6903100000, -87.6667200000), (1122248, 1001419, 'Morganfield', NULL, 'morganfield', 'US', 1, 37.6833800000, -87.9166900000), (1122249, 1001407, 'Morgans Point Resort', NULL, 'morgans-point-resort', 'US', 1, 31.1482300000, -97.4633400000), (1122250, 1001447, 'Morganton', NULL, 'morganton', 'US', 1, 35.7454100000, -81.6848200000), (1122251, 1001419, 'Morgantown', NULL, 'morgantown', 'US', 1, 37.2256000000, -86.6836000000), (1122252, 1001430, 'Morgantown', NULL, 'morgantown', 'US', 1, 31.5726700000, -91.3476100000), (1122253, 1001429, 'Morgantown', NULL, 'morgantown', 'US', 1, 39.6295300000, -79.9559000000), (1122254, 1001417, 'Morganville', NULL, 'morganville', 'US', 1, 40.3765000000, -74.2443100000), (1122255, 1001423, 'Moriarty', NULL, 'moriarty', 'US', 1, 34.9900500000, -106.0491900000), (1122256, 1001452, 'Moriches', NULL, 'moriches', 'US', 1, 40.8073200000, -72.8212100000), (1122257, 1001401, 'Morningside', NULL, 'morningside', 'US', 1, 38.8301100000, -76.8913600000), (1122258, 1001452, 'Morningside Heights', NULL, 'morningside-heights', 'US', 1, 40.8100000000, -73.9625000000), (1122259, 1001415, 'Moro', NULL, 'moro', 'US', 1, 45.4840100000, -120.7311700000), (1122260, 1001440, 'Morocco', NULL, 'morocco', 'US', 1, 40.9461500000, -87.4533600000), (1122261, 1001416, 'Morongo Valley', NULL, 'morongo-valley', 'US', 1, 34.0469500000, -116.5808500000), (1122262, 1001414, 'Moroni', NULL, 'moroni', 'US', 1, 39.5249600000, -111.5904700000), (1122263, 1001408, 'Morrill County', NULL, 'morrill-county', 'US', 1, 41.7160000000, -103.0105500000), (1122264, 1001444, 'Morrilton', NULL, 'morrilton', 'US', 1, 35.1509200000, -92.7440500000), (1122265, 1001456, 'Morris', NULL, 'morris', 'US', 1, 33.7481600000, -86.8086000000), (1122266, 1001421, 'Morris', NULL, 'morris', 'US', 1, 35.6076000000, -95.8602700000), (1122267, 1001425, 'Morris', NULL, 'morris', 'US', 1, 41.3572500000, -88.4211800000), (1122268, 1001420, 'Morris', NULL, 'morris', 'US', 1, 45.5860700000, -95.9139400000), (1122269, 1001406, 'Morris County', NULL, 'morris-county', 'US', 1, 38.6874300000, -96.6498500000), (1122270, 1001407, 'Morris County', NULL, 'morris-county', 'US', 1, 33.1134800000, -94.7326500000), (1122271, 1001417, 'Morris County', NULL, 'morris-county', 'US', 1, 40.8620300000, -74.5444400000), (1122272, 1001452, 'Morris Heights', NULL, 'morris-heights', 'US', 1, 40.8498200000, -73.9198600000), (1122273, 1001452, 'Morris Park', NULL, 'morris-park', 'US', 1, 40.8523200000, -73.8534700000), (1122274, 1001417, 'Morris Plains', NULL, 'morris-plains', 'US', 1, 40.8217700000, -74.4809900000), (1122275, 1001452, 'Morrisania', NULL, 'morrisania', 'US', 1, 40.8292700000, -73.9065300000), (1122276, 1001425, 'Morrison', NULL, 'morrison', 'US', 1, 41.8097500000, -89.9651200000), (1122277, 1001420, 'Morrison County', NULL, 'morrison-county', 'US', 1, 46.0126200000, -94.2684200000), (1122278, 1001425, 'Morrisonville', NULL, 'morrisonville', 'US', 1, 39.4200500000, -89.4556500000), (1122279, 1001452, 'Morrisonville', NULL, 'morrisonville', 'US', 1, 44.6931000000, -73.5620800000), (1122280, 1001440, 'Morristown', NULL, 'morristown', 'US', 1, 39.6733800000, -85.6985900000), (1122281, 1001454, 'Morristown', NULL, 'morristown', 'US', 1, 36.2139800000, -83.2948900000), (1122282, 1001417, 'Morristown', NULL, 'morristown', 'US', 1, 40.7967700000, -74.4815400000), (1122283, 1001409, 'Morristown', NULL, 'morristown', 'US', 1, 44.5572700000, -72.6237300000), (1122284, 1001447, 'Morrisville', NULL, 'morrisville', 'US', 1, 35.8234800000, -78.8255600000), (1122285, 1001452, 'Morrisville', NULL, 'morrisville', 'US', 1, 42.8986800000, -75.6401800000), (1122286, 1001422, 'Morrisville', NULL, 'morrisville', 'US', 1, 40.2115000000, -74.7879400000), (1122287, 1001409, 'Morrisville', NULL, 'morrisville', 'US', 1, 44.5617200000, -72.5984500000), (1122288, 1001416, 'Morro Bay', NULL, 'morro-bay', 'US', 1, 35.3658100000, -120.8499000000), (1122289, 1001455, 'Morrow', NULL, 'morrow', 'US', 1, 33.5831700000, -84.3393700000), (1122290, 1001415, 'Morrow County', NULL, 'morrow-county', 'US', 1, 45.4188300000, -119.5843000000), (1122291, 1001430, 'Morton', NULL, 'morton', 'US', 1, 32.3537600000, -89.6545200000), (1122292, 1001422, 'Morton', NULL, 'morton', 'US', 1, 39.9098300000, -75.3235200000), (1122293, 1001425, 'Morton', NULL, 'morton', 'US', 1, 40.6128200000, -89.4592600000), (1122294, 1001407, 'Morton', NULL, 'morton', 'US', 1, 33.7251000000, -102.7593800000), (1122295, 1001462, 'Morton', NULL, 'morton', 'US', 1, 46.5584400000, -122.2751000000), (1122296, 1001406, 'Morton County', NULL, 'morton-county', 'US', 1, 37.1914000000, -101.7992500000), (1122297, 1001418, 'Morton County', NULL, 'morton-county', 'US', 1, 46.7160600000, -101.2811700000), (1122298, 1001425, 'Morton Grove', NULL, 'morton-grove', 'US', 1, 42.0405900000, -87.7825600000), (1122299, 1001422, 'Moscow', NULL, 'moscow', 'US', 1, 41.3367500000, -75.5185200000), (1122300, 1001460, 'Moscow', NULL, 'moscow', 'US', 1, 46.7323900000, -117.0001700000), (1122301, 1001451, 'Moscow Mills', NULL, 'moscow-mills', 'US', 1, 38.9478300000, -90.9181900000), (1122302, 1001462, 'Moses Lake', NULL, 'moses-lake', 'US', 1, 47.1301400000, -119.2780800000), (1122303, 1001462, 'Moses Lake North', NULL, 'moses-lake-north', 'US', 1, 47.1943300000, -119.3171900000), (1122304, 1001454, 'Mosheim', NULL, 'mosheim', 'US', 1, 36.1895400000, -82.9584900000), (1122305, 1001441, 'Mosinee', NULL, 'mosinee', 'US', 1, 44.7930200000, -89.7031800000), (1122306, 1001423, 'Mosquero', NULL, 'mosquero', 'US', 1, 35.7769800000, -103.9566400000), (1122307, 1001416, 'Moss Beach', NULL, 'moss-beach', 'US', 1, 37.5274400000, -122.5133100000), (1122308, 1001457, 'Moss Bluff', NULL, 'moss-bluff', 'US', 1, 30.3027000000, -93.1907100000), (1122309, 1001430, 'Moss Point', NULL, 'moss-point', 'US', 1, 30.4115900000, -88.5344600000), (1122310, 1001427, 'Motley', NULL, 'motley', 'US', 1, 37.0695900000, -79.3411400000), (1122311, 1001407, 'Motley County', NULL, 'motley-county', 'US', 1, 34.0740900000, -100.7798300000), (1122312, 1001418, 'Mott', NULL, 'mott', 'US', 1, 46.3725000000, -102.3271100000), (1122313, 1001452, 'Mott Haven', NULL, 'mott-haven', 'US', 1, 40.8089900000, -73.9229100000), (1122314, 1001456, 'Moulton', NULL, 'moulton', 'US', 1, 34.4812100000, -87.2933500000), (1122315, 1001404, 'Moultonborough', NULL, 'moultonborough', 'US', 1, 43.7548000000, -71.3967400000), (1122316, 1001455, 'Moultrie', NULL, 'moultrie', 'US', 1, 31.1799100000, -83.7890600000); INSERT INTO `[[dbprefix]]t_city` VALUES (1122317, 1001425, 'Moultrie County', NULL, 'moultrie-county', 'US', 1, 39.6414800000, -88.6193000000), (1122318, 1001420, 'Mound', NULL, 'mound', 'US', 1, 44.9366300000, -93.6660700000), (1122319, 1001430, 'Mound Bayou', NULL, 'mound-bayou', 'US', 1, 33.8781700000, -90.7273200000), (1122320, 1001425, 'Mound City', NULL, 'mound-city', 'US', 1, 37.0853300000, -89.1625700000), (1122321, 1001406, 'Mound City', NULL, 'mound-city', 'US', 1, 38.1428100000, -94.8135700000), (1122322, 1001451, 'Mound City', NULL, 'mound-city', 'US', 1, 40.1311100000, -95.2316400000), (1122323, 1001445, 'Mound City', NULL, 'mound-city', 'US', 1, 45.7252700000, -100.0684500000), (1122324, 1001406, 'Moundridge', NULL, 'moundridge', 'US', 1, 38.2030700000, -97.5192100000), (1122325, 1001421, 'Mounds', NULL, 'mounds', 'US', 1, 35.8764800000, -96.0611100000), (1122326, 1001420, 'Mounds View', NULL, 'mounds-view', 'US', 1, 45.1049700000, -93.2085600000), (1122327, 1001429, 'Moundsville', NULL, 'moundsville', 'US', 1, 39.9203500000, -80.7431400000), (1122328, 1001456, 'Moundville', NULL, 'moundville', 'US', 1, 32.9976200000, -87.6300100000), (1122329, 1001455, 'Mount Airy', NULL, 'mount-airy', 'US', 1, 34.5187100000, -83.5007300000), (1122330, 1001401, 'Mount Airy', NULL, 'mount-airy', 'US', 1, 39.3762100000, -77.1547000000), (1122331, 1001447, 'Mount Airy', NULL, 'mount-airy', 'US', 1, 36.4993000000, -80.6072900000), (1122332, 1001415, 'Mount Angel', NULL, 'mount-angel', 'US', 1, 45.0679000000, -122.8000900000), (1122333, 1001417, 'Mount Arlington', NULL, 'mount-arlington', 'US', 1, 40.9259300000, -74.6348800000), (1122334, 1001459, 'Mount Ayr', NULL, 'mount-ayr', 'US', 1, 40.7147100000, -94.2352300000), (1122335, 1001425, 'Mount Carmel', NULL, 'mount-carmel', 'US', 1, 38.4108800000, -87.7614200000), (1122336, 1001454, 'Mount Carmel', NULL, 'mount-carmel', 'US', 1, 36.5453800000, -82.6609900000), (1122337, 1001422, 'Mount Carmel', NULL, 'mount-carmel', 'US', 1, 40.7970300000, -76.4119000000), (1122338, 1001425, 'Mount Carroll', NULL, 'mount-carroll', 'US', 1, 42.0950200000, -89.9781800000), (1122339, 1001426, 'Mount Clemens', NULL, 'mount-clemens', 'US', 1, 42.5972600000, -82.8779800000), (1122340, 1001422, 'Mount Cobb', NULL, 'mount-cobb', 'US', 1, 41.4134200000, -75.4932400000), (1122341, 1001436, 'Mount Dora', NULL, 'mount-dora', 'US', 1, 28.8024900000, -81.6445200000), (1122342, 1001417, 'Mount Ephraim', NULL, 'mount-ephraim', 'US', 1, 39.8784500000, -75.0926700000), (1122343, 1001429, 'Mount Gay-Shamrock', NULL, 'mount-gay-shamrock', 'US', 1, 37.8385700000, -82.0297000000), (1122344, 1001447, 'Mount Gilead', NULL, 'mount-gilead', 'US', 1, 35.2148700000, -80.0022800000), (1122345, 1001425, 'Mount Greenwood', NULL, 'mount-greenwood', 'US', 1, 41.6980900000, -87.7086600000), (1122346, 1001427, 'Mount Hermon', NULL, 'mount-hermon', 'US', 1, 36.6784700000, -79.4222500000), (1122347, 1001416, 'Mount Hermon', NULL, 'mount-hermon', 'US', 1, 37.0510600000, -122.0585700000), (1122348, 1001417, 'Mount Holly', NULL, 'mount-holly', 'US', 1, 39.9928900000, -74.7876600000), (1122349, 1001447, 'Mount Holly', NULL, 'mount-holly', 'US', 1, 35.2981900000, -81.0159100000), (1122350, 1001409, 'Mount Holly', NULL, 'mount-holly', 'US', 1, 43.4522900000, -72.8248200000), (1122351, 1001422, 'Mount Holly Springs', NULL, 'mount-holly-springs', 'US', 1, 40.1184200000, -77.1899800000), (1122352, 1001415, 'Mount Hood Village', NULL, 'mount-hood-village', 'US', 1, 45.3554000000, -121.9806400000), (1122353, 1001429, 'Mount Hope', NULL, 'mount-hope', 'US', 1, 37.8953900000, -81.1642700000), (1122354, 1001441, 'Mount Horeb', NULL, 'mount-horeb', 'US', 1, 43.0086100000, -89.7384600000), (1122355, 1001444, 'Mount Ida', NULL, 'mount-ida', 'US', 1, 34.5567600000, -93.6340800000), (1122356, 1001452, 'Mount Ivy', NULL, 'mount-ivy', 'US', 1, 41.1867600000, -74.0348600000), (1122357, 1001427, 'Mount Jackson', NULL, 'mount-jackson', 'US', 1, 38.7459500000, -78.6422400000), (1122358, 1001422, 'Mount Joy', NULL, 'mount-joy', 'US', 1, 40.1098200000, -76.5033000000), (1122359, 1001454, 'Mount Juliet', NULL, 'mount-juliet', 'US', 1, 36.2000500000, -86.5186100000), (1122360, 1001452, 'Mount Kisco', NULL, 'mount-kisco', 'US', 1, 41.2042600000, -73.7270800000), (1122361, 1001417, 'Mount Laurel', NULL, 'mount-laurel', 'US', 1, 39.9340000000, -74.8910000000), (1122362, 1001422, 'Mount Lebanon', NULL, 'mount-lebanon', 'US', 1, 40.3553500000, -80.0495000000), (1122363, 1001425, 'Mount Morris', NULL, 'mount-morris', 'US', 1, 42.0503100000, -89.4312200000), (1122364, 1001426, 'Mount Morris', NULL, 'mount-morris', 'US', 1, 43.1186400000, -83.6949600000), (1122365, 1001452, 'Mount Morris', NULL, 'mount-morris', 'US', 1, 42.7256200000, -77.8741700000), (1122366, 1001441, 'Mount Morris', NULL, 'mount-morris', 'US', 1, 44.1144200000, -89.1906700000), (1122367, 1001456, 'Mount Olive', NULL, 'mount-olive', 'US', 1, 33.6709400000, -86.8561000000), (1122368, 1001425, 'Mount Olive', NULL, 'mount-olive', 'US', 1, 39.0722700000, -89.7273100000), (1122369, 1001447, 'Mount Olive', NULL, 'mount-olive', 'US', 1, 35.1965500000, -78.0663800000), (1122370, 1001422, 'Mount Oliver', NULL, 'mount-oliver', 'US', 1, 40.4142400000, -79.9878300000), (1122371, 1001419, 'Mount Olivet', NULL, 'mount-olivet', 'US', 1, 38.5314600000, -84.0368700000), (1122372, 1001414, 'Mount Olympus', NULL, 'mount-olympus', 'US', 1, 40.6855000000, -111.7885400000), (1122373, 1001422, 'Mount Penn', NULL, 'mount-penn', 'US', 1, 40.3281500000, -75.8907600000), (1122374, 1001447, 'Mount Pleasant', NULL, 'mount-pleasant', 'US', 1, 35.3993100000, -80.4359000000), (1122375, 1001454, 'Mount Pleasant', NULL, 'mount-pleasant', 'US', 1, 35.5342400000, -87.2069500000), (1122376, 1001443, 'Mount Pleasant', NULL, 'mount-pleasant', 'US', 1, 32.7940700000, -79.8625900000), (1122377, 1001407, 'Mount Pleasant', NULL, 'mount-pleasant', 'US', 1, 33.1567900000, -94.9682700000), (1122378, 1001459, 'Mount Pleasant', NULL, 'mount-pleasant', 'US', 1, 40.9636400000, -91.5579400000), (1122379, 1001426, 'Mount Pleasant', NULL, 'mount-pleasant', 'US', 1, 43.5978100000, -84.7675100000), (1122380, 1001422, 'Mount Pleasant', NULL, 'mount-pleasant', 'US', 1, 40.1489600000, -79.5411500000), (1122381, 1001414, 'Mount Pleasant', NULL, 'mount-pleasant', 'US', 1, 39.5469100000, -111.4554700000), (1122382, 1001441, 'Mount Pleasant', NULL, 'mount-pleasant', 'US', 1, 42.6974300000, -87.8557700000), (1122383, 1001436, 'Mount Plymouth', NULL, 'mount-plymouth', 'US', 1, 28.8080500000, -81.5331300000), (1122384, 1001422, 'Mount Pocono', NULL, 'mount-pocono', 'US', 1, 41.1220300000, -75.3646300000), (1122385, 1001425, 'Mount Prospect', NULL, 'mount-prospect', 'US', 1, 42.0664200000, -87.9372900000), (1122386, 1001425, 'Mount Pulaski', NULL, 'mount-pulaski', 'US', 1, 40.0108800000, -89.2823100000), (1122387, 1001401, 'Mount Rainier', NULL, 'mount-rainier', 'US', 1, 38.9415000000, -76.9649800000), (1122388, 1001416, 'Mount Shasta', NULL, 'mount-shasta', 'US', 1, 41.3102400000, -122.3122500000), (1122389, 1001452, 'Mount Sinai', NULL, 'mount-sinai', 'US', 1, 40.9470400000, -73.0295500000), (1122390, 1001425, 'Mount Sterling', NULL, 'mount-sterling', 'US', 1, 39.9872700000, -90.7634600000), (1122391, 1001419, 'Mount Sterling', NULL, 'mount-sterling', 'US', 1, 38.0564700000, -83.9432600000), (1122392, 1001422, 'Mount Union', NULL, 'mount-union', 'US', 1, 40.3845200000, -77.8822200000), (1122393, 1001456, 'Mount Vernon', NULL, 'mount-vernon', 'US', 1, 31.0851800000, -88.0133300000), (1122394, 1001440, 'Mount Vernon', NULL, 'mount-vernon', 'US', 1, 37.9322700000, -87.8950300000), (1122395, 1001455, 'Mount Vernon', NULL, 'mount-vernon', 'US', 1, 32.1785100000, -82.5945800000), (1122396, 1001425, 'Mount Vernon', NULL, 'mount-vernon', 'US', 1, 38.3172700000, -88.9031200000), (1122397, 1001419, 'Mount Vernon', NULL, 'mount-vernon', 'US', 1, 37.3528600000, -84.3404900000), (1122398, 1001451, 'Mount Vernon', NULL, 'mount-vernon', 'US', 1, 37.1036700000, -93.8185400000), (1122399, 1001407, 'Mount Vernon', NULL, 'mount-vernon', 'US', 1, 33.1887300000, -95.2213300000), (1122400, 1001459, 'Mount Vernon', NULL, 'mount-vernon', 'US', 1, 41.9219500000, -91.4168400000), (1122401, 1001453, 'Mount Vernon', NULL, 'mount-vernon', 'US', 1, 44.5011800000, -69.9875600000), (1122402, 1001452, 'Mount Vernon', NULL, 'mount-vernon', 'US', 1, 40.9126000000, -73.8370800000), (1122403, 1001462, 'Mount Vernon', NULL, 'mount-vernon', 'US', 1, 48.4212200000, -122.3340500000), (1122404, 1001427, 'Mount Vernon', NULL, 'mount-vernon', 'US', 1, 38.7191900000, -77.1072600000), (1122405, 1001462, 'Mount Vista', NULL, 'mount-vista', 'US', 1, 45.7342800000, -122.6328800000), (1122406, 1001419, 'Mount Washington', NULL, 'mount-washington', 'US', 1, 38.0500600000, -85.5457900000), (1122407, 1001422, 'Mount Wolf', NULL, 'mount-wolf', 'US', 1, 40.0631500000, -76.7038600000), (1122408, 1001455, 'Mount Zion', NULL, 'mount-zion', 'US', 1, 33.6342800000, -85.1871700000), (1122409, 1001425, 'Mount Zion', NULL, 'mount-zion', 'US', 1, 39.7714300000, -88.8742400000), (1122410, 1001456, 'Mountain Brook', NULL, 'mountain-brook', 'US', 1, 33.5009400000, -86.7522100000), (1122411, 1001455, 'Mountain City', NULL, 'mountain-city', 'US', 1, 34.9181500000, -83.3854400000), (1122412, 1001454, 'Mountain City', NULL, 'mountain-city', 'US', 1, 36.4745600000, -81.8048400000), (1122413, 1001414, 'Mountain Green', NULL, 'mountain-green', 'US', 1, 41.1430000000, -111.7916000000), (1122414, 1001451, 'Mountain Grove', NULL, 'mountain-grove', 'US', 1, 37.1306100000, -92.2634900000), (1122415, 1001444, 'Mountain Home', NULL, 'mountain-home', 'US', 1, 36.3353400000, -92.3851600000), (1122416, 1001447, 'Mountain Home', NULL, 'mountain-home', 'US', 1, 35.3695600000, -82.4929000000), (1122417, 1001460, 'Mountain Home', NULL, 'mountain-home', 'US', 1, 43.1329500000, -115.6912000000), (1122418, 1001416, 'Mountain House', NULL, 'mountain-house', 'US', 1, 37.7832600000, -121.5427300000), (1122419, 1001420, 'Mountain Iron', NULL, 'mountain-iron', 'US', 1, 47.5324300000, -92.6235100000), (1122420, 1001420, 'Mountain Lake', NULL, 'mountain-lake', 'US', 1, 43.9388500000, -94.9297100000), (1122421, 1001401, 'Mountain Lake Park', NULL, 'mountain-lake-park', 'US', 1, 39.3984300000, -79.3817100000), (1122422, 1001417, 'Mountain Lakes', NULL, 'mountain-lakes', 'US', 1, 40.8948200000, -74.4329300000), (1122423, 1001452, 'Mountain Lodge Park', NULL, 'mountain-lodge-park', 'US', 1, 41.3884300000, -74.1418100000), (1122424, 1001455, 'Mountain Park', NULL, 'mountain-park', 'US', 1, 33.8442700000, -84.1293600000), (1122425, 1001416, 'Mountain Ranch', NULL, 'mountain-ranch', 'US', 1, 38.2282500000, -120.5407600000), (1122426, 1001427, 'Mountain Road', NULL, 'mountain-road', 'US', 1, 36.7595800000, -78.9869600000), (1122427, 1001422, 'Mountain Top', NULL, 'mountain-top', 'US', 1, 41.1695300000, -75.8774200000), (1122428, 1001444, 'Mountain View', NULL, 'mountain-view', 'US', 1, 35.8684100000, -92.1176500000), (1122429, 1001451, 'Mountain View', NULL, 'mountain-view', 'US', 1, 36.9953300000, -91.7037600000), (1122430, 1001447, 'Mountain View', NULL, 'mountain-view', 'US', 1, 35.6831900000, -81.3689800000), (1122431, 1001416, 'Mountain View', NULL, 'mountain-view', 'US', 1, 37.3860500000, -122.0838500000), (1122432, 1001411, 'Mountain View', NULL, 'mountain-view', 'US', 1, 19.5558300000, -155.1080600000), (1122433, 1001442, 'Mountain View', NULL, 'mountain-view', 'US', 1, 41.2688400000, -110.3398800000), (1122434, 1001416, 'Mountain View Acres', NULL, 'mountain-view-acres', 'US', 1, 34.4966600000, -117.3489400000), (1122435, 1001450, 'Mountain Village', NULL, 'mountain-village', 'US', 1, 37.9313800000, -107.8564500000), (1122436, 1001434, 'Mountainaire', NULL, 'mountainaire', 'US', 1, 35.0852900000, -111.6659900000), (1122437, 1001422, 'Mountainhome', NULL, 'mountainhome', 'US', 1, 41.1737000000, -75.2710200000), (1122438, 1001417, 'Mountainside', NULL, 'mountainside', 'US', 1, 40.6723200000, -74.3573700000), (1122439, 1001462, 'Mountlake Terrace', NULL, 'mountlake-terrace', 'US', 1, 47.7881500000, -122.3087400000), (1122440, 1001418, 'Mountrail County', NULL, 'mountrail-county', 'US', 1, 48.2013300000, -102.3556500000), (1122441, 1001422, 'Mountville', NULL, 'mountville', 'US', 1, 40.0392600000, -76.4308000000), (1122442, 1001459, 'Moville', NULL, 'moville', 'US', 1, 42.4888800000, -96.0725200000), (1122443, 1001454, 'Mowbray Mountain', NULL, 'mowbray-mountain', 'US', 1, 35.2753600000, -85.2224600000), (1122444, 1001425, 'Moweaqua', NULL, 'moweaqua', 'US', 1, 39.6247600000, -89.0189700000), (1122445, 1001420, 'Mower County', NULL, 'mower-county', 'US', 1, 43.6714700000, -92.7525100000), (1122446, 1001447, 'Moyock', NULL, 'moyock', 'US', 1, 36.5246000000, -76.1782700000), (1122447, 1001407, 'Muenster', NULL, 'muenster', 'US', 1, 33.6517700000, -97.3764100000), (1122448, 1001419, 'Muhlenberg County', NULL, 'muhlenberg-county', 'US', 1, 37.2157900000, -87.1420400000), (1122449, 1001422, 'Muhlenberg Park', NULL, 'muhlenberg-park', 'US', 1, 40.3848200000, -75.9413200000), (1122450, 1001462, 'Mukilteo', NULL, 'mukilteo', 'US', 1, 47.9445400000, -122.3045800000), (1122451, 1001441, 'Mukwonago', NULL, 'mukwonago', 'US', 1, 42.8666800000, -88.3334300000), (1122452, 1001444, 'Mulberry', NULL, 'mulberry', 'US', 1, 35.5006400000, -94.0515900000), (1122453, 1001436, 'Mulberry', NULL, 'mulberry', 'US', 1, 27.8953000000, -81.9734200000), (1122454, 1001447, 'Mulberry', NULL, 'mulberry', 'US', 1, 36.2395800000, -81.1806400000), (1122455, 1001440, 'Mulberry', NULL, 'mulberry', 'US', 1, 40.3444800000, -86.6652800000), (1122456, 1001421, 'Muldrow', NULL, 'muldrow', 'US', 1, 35.4062000000, -94.5988300000), (1122457, 1001407, 'Muleshoe', NULL, 'muleshoe', 'US', 1, 34.2264700000, -102.7238300000), (1122458, 1001415, 'Mulino', NULL, 'mulino', 'US', 1, 45.2215100000, -122.5820300000), (1122459, 1001408, 'Mullen', NULL, 'mullen', 'US', 1, 42.0427800000, -101.0426600000), (1122460, 1001429, 'Mullens', NULL, 'mullens', 'US', 1, 37.5831700000, -81.3803800000), (1122461, 1001417, 'Mullica Hill', NULL, 'mullica-hill', 'US', 1, 39.7392800000, -75.2240700000), (1122462, 1001443, 'Mullins', NULL, 'mullins', 'US', 1, 34.2057200000, -79.2544900000), (1122463, 1001415, 'Multnomah County', NULL, 'multnomah-county', 'US', 1, 45.5468700000, -122.4153400000), (1122464, 1001406, 'Mulvane', NULL, 'mulvane', 'US', 1, 37.4744600000, -97.2439300000), (1122465, 1001440, 'Muncie', NULL, 'muncie', 'US', 1, 40.1933800000, -85.3863600000), (1122466, 1001422, 'Muncy', NULL, 'muncy', 'US', 1, 41.2056400000, -76.7855200000), (1122467, 1001407, 'Munday', NULL, 'munday', 'US', 1, 33.4492600000, -99.6228600000), (1122468, 1001425, 'Mundelein', NULL, 'mundelein', 'US', 1, 42.2630800000, -88.0039700000), (1122469, 1001422, 'Mundys Corner', NULL, 'mundys-corner', 'US', 1, 40.4447900000, -78.8411300000), (1122470, 1001456, 'Munford', NULL, 'munford', 'US', 1, 33.5298300000, -85.9508000000), (1122471, 1001454, 'Munford', NULL, 'munford', 'US', 1, 35.4492500000, -89.8150800000), (1122472, 1001419, 'Munfordville', NULL, 'munfordville', 'US', 1, 37.2722800000, -85.8910800000), (1122473, 1001422, 'Munhall', NULL, 'munhall', 'US', 1, 40.3922900000, -79.9000500000), (1122474, 1001426, 'Munising', NULL, 'munising', 'US', 1, 46.4112000000, -86.6492600000), (1122475, 1001407, 'Muniz', NULL, 'muniz', 'US', 1, 26.2564600000, -98.0894500000), (1122476, 1001452, 'Munsey Park', NULL, 'munsey-park', 'US', 1, 40.7987100000, -73.6798500000), (1122477, 1001452, 'Munsons Corners', NULL, 'munsons-corners', 'US', 1, 42.5822900000, -76.2091000000), (1122478, 1001440, 'Munster', NULL, 'munster', 'US', 1, 41.5644800000, -87.5125400000), (1122479, 1001445, 'Murdo', NULL, 'murdo', 'US', 1, 43.8883200000, -100.7129100000), (1122480, 1001444, 'Murfreesboro', NULL, 'murfreesboro', 'US', 1, 34.0623300000, -93.6899000000), (1122481, 1001447, 'Murfreesboro', NULL, 'murfreesboro', 'US', 1, 36.4423800000, -77.0985800000), (1122482, 1001454, 'Murfreesboro', NULL, 'murfreesboro', 'US', 1, 35.8456200000, -86.3902700000), (1122483, 1001407, 'Murillo Colonia', NULL, 'murillo-colonia', 'US', 1, 26.2564600000, -98.1133400000), (1122484, 1001451, 'Murphy', NULL, 'murphy', 'US', 1, 38.4903300000, -90.4870700000), (1122485, 1001447, 'Murphy', NULL, 'murphy', 'US', 1, 35.0875800000, -84.0346300000), (1122486, 1001407, 'Murphy', NULL, 'murphy', 'US', 1, 33.0151200000, -96.6130500000), (1122487, 1001460, 'Murphy', NULL, 'murphy', 'US', 1, 43.2182200000, -116.5523400000), (1122488, 1001416, 'Murphys', NULL, 'murphys', 'US', 1, 38.1376200000, -120.4610500000), (1122489, 1001443, 'Murphys Estates', NULL, 'murphys-estates', 'US', 1, 33.6012500000, -81.9442800000), (1122490, 1001425, 'Murphysboro', NULL, 'murphysboro', 'US', 1, 37.7645000000, -89.3350900000), (1122491, 1001419, 'Murray', NULL, 'murray', 'US', 1, 36.6103300000, -88.3147600000), (1122492, 1001414, 'Murray', NULL, 'murray', 'US', 1, 40.6668900000, -111.8879900000), (1122493, 1001455, 'Murray County', NULL, 'murray-county', 'US', 1, 34.7884500000, -84.7480900000), (1122494, 1001421, 'Murray County', NULL, 'murray-county', 'US', 1, 34.4823300000, -97.0679200000), (1122495, 1001420, 'Murray County', NULL, 'murray-county', 'US', 1, 44.0221200000, -95.7632800000), (1122496, 1001447, 'Murraysville', NULL, 'murraysville', 'US', 1, 34.2957200000, -77.8474800000), (1122497, 1001443, 'Murrells Inlet', NULL, 'murrells-inlet', 'US', 1, 33.5510000000, -79.0414300000), (1122498, 1001416, 'Murrieta', NULL, 'murrieta', 'US', 1, 33.5539100000, -117.2139200000), (1122499, 1001416, 'Murrieta Hot Springs', NULL, 'murrieta-hot-springs', 'US', 1, 33.5605800000, -117.1580900000), (1122500, 1001422, 'Murrysville', NULL, 'murrysville', 'US', 1, 40.4284000000, -79.6975500000), (1122501, 1001459, 'Muscatine', NULL, 'muscatine', 'US', 1, 41.4244700000, -91.0432100000), (1122502, 1001459, 'Muscatine County', NULL, 'muscatine-county', 'US', 1, 41.4839200000, -91.1127600000), (1122503, 1001456, 'Muscle Shoals', NULL, 'muscle-shoals', 'US', 1, 34.7448100000, -87.6675300000), (1122504, 1001441, 'Muscoda', NULL, 'muscoda', 'US', 1, 43.1849900000, -90.4431800000), (1122505, 1001455, 'Muscogee County', NULL, 'muscogee-county', 'US', 1, 32.5099600000, -84.8770400000), (1122506, 1001416, 'Muscoy', NULL, 'muscoy', 'US', 1, 34.1541800000, -117.3442100000), (1122507, 1001422, 'Muse', NULL, 'muse', 'US', 1, 40.2928500000, -80.2003400000), (1122508, 1001441, 'Muskego', NULL, 'muskego', 'US', 1, 42.9058500000, -88.1389800000), (1122509, 1001426, 'Muskegon', NULL, 'muskegon', 'US', 1, 43.2341800000, -86.2483900000), (1122510, 1001426, 'Muskegon County', NULL, 'muskegon-county', 'US', 1, 43.2191900000, -86.2124600000), (1122511, 1001426, 'Muskegon Heights', NULL, 'muskegon-heights', 'US', 1, 43.2011300000, -86.2389500000), (1122512, 1001421, 'Muskogee', NULL, 'muskogee', 'US', 1, 35.7478800000, -95.3696900000), (1122513, 1001421, 'Muskogee County', NULL, 'muskogee-county', 'US', 1, 35.6161300000, -95.3795300000), (1122514, 1001446, 'Musselshell County', NULL, 'musselshell-county', 'US', 1, 46.4965500000, -108.3977100000), (1122515, 1001421, 'Mustang', NULL, 'mustang', 'US', 1, 35.3842300000, -97.7244900000), (1122516, 1001452, 'Muttontown', NULL, 'muttontown', 'US', 1, 40.8239900000, -73.5476300000), (1122517, 1001452, 'Myers Corner', NULL, 'myers-corner', 'US', 1, 41.6062000000, -73.8729100000), (1122518, 1001422, 'Myerstown', NULL, 'myerstown', 'US', 1, 40.3745400000, -76.3027300000), (1122519, 1001401, 'Myersville', NULL, 'myersville', 'US', 1, 39.5051000000, -77.5663800000), (1122520, 1001443, 'Myrtle Beach', NULL, 'myrtle-beach', 'US', 1, 33.6890600000, -78.8866900000), (1122521, 1001415, 'Myrtle Creek', NULL, 'myrtle-creek', 'US', 1, 43.0201200000, -123.2931200000), (1122522, 1001436, 'Myrtle Grove', NULL, 'myrtle-grove', 'US', 1, 30.4210300000, -87.3074700000), (1122523, 1001447, 'Myrtle Grove', NULL, 'myrtle-grove', 'US', 1, 34.1346200000, -77.8816500000), (1122524, 1001415, 'Myrtle Point', NULL, 'myrtle-point', 'US', 1, 43.0648300000, -124.1389900000), (1122525, 1001416, 'Myrtletown', NULL, 'myrtletown', 'US', 1, 40.7887400000, -124.1303400000), (1122526, 1001435, 'Mystic', NULL, 'mystic', 'US', 1, 41.3542700000, -71.9664600000), (1122527, 1001417, 'Mystic Island', NULL, 'mystic-island', 'US', 1, 39.5442800000, -74.3823700000), (1122528, 1001411, 'Mākaha', NULL, 'makaha', 'US', 1, 21.4662700000, -158.2103700000), (1122529, 1001411, 'Mākaha Valley', NULL, 'makaha-valley', 'US', 1, 21.4758300000, -158.1991800000), (1122530, 1001411, 'Mā‘ili', NULL, 'ma-ili', 'US', 1, 21.4162900000, -158.1753100000), (1122531, 1001434, 'Naco', NULL, 'naco', 'US', 1, 31.3353800000, -109.9481300000), (1122532, 1001407, 'Nacogdoches', NULL, 'nacogdoches', 'US', 1, 31.6035100000, -94.6554900000), (1122533, 1001407, 'Nacogdoches County', NULL, 'nacogdoches-county', 'US', 1, 31.6159800000, -94.6158700000), (1122534, 1001447, 'Nags Head', NULL, 'nags-head', 'US', 1, 35.9573900000, -75.6240600000), (1122535, 1001433, 'Nahant', NULL, 'nahant', 'US', 1, 42.4264900000, -70.9189400000), (1122536, 1001455, 'Nahunta', NULL, 'nahunta', 'US', 1, 31.2043900000, -81.9812300000), (1122537, 1001423, 'Nambe', NULL, 'nambe', 'US', 1, 35.8933600000, -105.9825200000), (1122538, 1001460, 'Nampa', NULL, 'nampa', 'US', 1, 43.5407200000, -116.5634600000), (1122539, 1001411, 'Nanawale Estates', NULL, 'nanawale-estates', 'US', 1, 19.5061100000, -154.9119400000), (1122540, 1001408, 'Nance County', NULL, 'nance-county', 'US', 1, 41.3973000000, -97.9922500000), (1122541, 1001422, 'Nanticoke', NULL, 'nanticoke', 'US', 1, 41.2053600000, -76.0049200000), (1122542, 1001433, 'Nantucket', NULL, 'nantucket', 'US', 1, 41.2834600000, -70.0994600000), (1122543, 1001433, 'Nantucket County', NULL, 'nantucket-county', 'US', 1, 41.2695500000, -70.0217100000), (1122544, 1001422, 'Nanty Glo', NULL, 'nanty-glo', 'US', 1, 40.4722900000, -78.8333600000), (1122545, 1001452, 'Nanuet', NULL, 'nanuet', 'US', 1, 41.0887100000, -74.0134700000), (1122546, 1001416, 'Napa', NULL, 'napa', 'US', 1, 38.2971400000, -122.2855300000), (1122547, 1001416, 'Napa County', NULL, 'napa-county', 'US', 1, 38.5064700000, -122.3305300000), (1122548, 1001452, 'Napanoch', NULL, 'napanoch', 'US', 1, 41.7439800000, -74.3715400000), (1122549, 1001462, 'Napavine', NULL, 'napavine', 'US', 1, 46.5745500000, -122.9081800000), (1122550, 1001425, 'Naperville', NULL, 'naperville', 'US', 1, 41.7858600000, -88.1472900000), (1122551, 1001411, 'Napili-Honokowai', NULL, 'napili-honokowai', 'US', 1, 20.9753300000, -156.6782600000), (1122552, 1001436, 'Naples', NULL, 'naples', 'US', 1, 26.1423400000, -81.7959600000), (1122553, 1001407, 'Naples', NULL, 'naples', 'US', 1, 33.2031800000, -94.6802100000), (1122554, 1001452, 'Naples', NULL, 'naples', 'US', 1, 42.6153500000, -77.4024900000), (1122555, 1001414, 'Naples', NULL, 'naples', 'US', 1, 40.4269100000, -109.4993000000), (1122556, 1001436, 'Naples Manor', NULL, 'naples-manor', 'US', 1, 26.0887000000, -81.7262000000), (1122557, 1001436, 'Naples Park', NULL, 'naples-park', 'US', 1, 26.2617500000, -81.8092500000), (1122558, 1001426, 'Napoleon', NULL, 'napoleon', 'US', 1, 42.1605900000, -84.2460600000), (1122559, 1001418, 'Napoleon', NULL, 'napoleon', 'US', 1, 46.5083100000, -99.7712200000), (1122560, 1001457, 'Napoleonville', NULL, 'napoleonville', 'US', 1, 29.9404800000, -91.0248200000), (1122561, 1001440, 'Nappanee', NULL, 'nappanee', 'US', 1, 41.4428300000, -86.0013900000), (1122562, 1001436, 'Naranja', NULL, 'naranja', 'US', 1, 25.5181600000, -80.4228300000), (1122563, 1001422, 'Narberth', NULL, 'narberth', 'US', 1, 40.0084500000, -75.2604600000), (1122564, 1001461, 'Narragansett', NULL, 'narragansett', 'US', 1, 41.4501000000, -71.4495000000), (1122565, 1001461, 'Narragansett Pier', NULL, 'narragansett-pier', 'US', 1, 41.4323200000, -71.4564400000), (1122566, 1001427, 'Narrows', NULL, 'narrows', 'US', 1, 37.3315100000, -80.8111900000), (1122567, 1001407, 'Nash', NULL, 'nash', 'US', 1, 33.4423500000, -94.1307500000), (1122568, 1001447, 'Nash County', NULL, 'nash-county', 'US', 1, 35.9672200000, -77.9864800000), (1122569, 1001441, 'Nashotah', NULL, 'nashotah', 'US', 1, 43.0977900000, -88.4023200000), (1122570, 1001459, 'Nashua', NULL, 'nashua', 'US', 1, 42.9527500000, -92.5363000000), (1122571, 1001404, 'Nashua', NULL, 'nashua', 'US', 1, 42.7653700000, -71.4675700000), (1122572, 1001444, 'Nashville', NULL, 'nashville', 'US', 1, 33.9456700000, -93.8471300000), (1122573, 1001440, 'Nashville', NULL, 'nashville', 'US', 1, 39.2072700000, -86.2511000000), (1122574, 1001425, 'Nashville', NULL, 'nashville', 'US', 1, 38.3436600000, -89.3806400000), (1122575, 1001455, 'Nashville', NULL, 'nashville', 'US', 1, 31.2074200000, -83.2501500000), (1122576, 1001447, 'Nashville', NULL, 'nashville', 'US', 1, 35.9746000000, -77.9655400000), (1122577, 1001454, 'Nashville', NULL, 'nashville', 'US', 1, 36.1658900000, -86.7844400000), (1122578, 1001426, 'Nashville', NULL, 'nashville', 'US', 1, 42.6028100000, -85.0930500000), (1122579, 1001441, 'Nashville', NULL, 'nashville', 'US', 1, 45.5227400000, -89.0248400000), (1122580, 1001452, 'Nassau', NULL, 'nassau', 'US', 1, 42.5159100000, -73.6101200000), (1122581, 1001407, 'Nassau Bay', NULL, 'nassau-bay', 'US', 1, 29.5446800000, -95.0910400000), (1122582, 1001436, 'Nassau County', NULL, 'nassau-county', 'US', 1, 30.6105800000, -81.7714200000), (1122583, 1001452, 'Nassau County', NULL, 'nassau-county', 'US', 1, 40.7321700000, -73.5854500000), (1122584, 1001436, 'Nassau Village-Ratliff', NULL, 'nassau-village-ratliff', 'US', 1, 30.5111100000, -81.8092500000), (1122585, 1001457, 'Natalbany', NULL, 'natalbany', 'US', 1, 30.5462200000, -90.4861900000), (1122586, 1001407, 'Natalia', NULL, 'natalia', 'US', 1, 29.1896800000, -98.8625300000), (1122587, 1001430, 'Natchez', NULL, 'natchez', 'US', 1, 31.5601700000, -91.4032900000), (1122588, 1001457, 'Natchitoches', NULL, 'natchitoches', 'US', 1, 31.7607200000, -93.0862700000), (1122589, 1001457, 'Natchitoches Parish', NULL, 'natchitoches-parish', 'US', 1, 31.7235400000, -93.0962400000), (1122590, 1001433, 'Natick', NULL, 'natick', 'US', 1, 42.2834300000, -71.3495000000), (1122591, 1001416, 'National City', NULL, 'national-city', 'US', 1, 32.6781100000, -117.0992000000), (1122592, 1001401, 'National Harbor', NULL, 'national-harbor', 'US', 1, 38.7826400000, -77.0150600000), (1122593, 1001417, 'National Park', NULL, 'national-park', 'US', 1, 39.8659500000, -75.1787900000), (1122594, 1001442, 'Natrona County', NULL, 'natrona-county', 'US', 1, 42.9622400000, -106.7984900000), (1122595, 1001435, 'Naugatuck', NULL, 'naugatuck', 'US', 1, 41.4859300000, -73.0506600000), (1122596, 1001425, 'Nauvoo', NULL, 'nauvoo', 'US', 1, 40.5500400000, -91.3848700000), (1122597, 1001423, 'Navajo', NULL, 'navajo', 'US', 1, 35.9000100000, -109.0339800000), (1122598, 1001434, 'Navajo County', NULL, 'navajo-county', 'US', 1, 35.3996300000, -110.3214000000), (1122599, 1001401, 'Naval Academy', NULL, 'naval-academy', 'US', 1, 38.9856800000, -76.4877400000), (1122600, 1001436, 'Navarre', NULL, 'navarre', 'US', 1, 30.4015900000, -86.8635700000), (1122601, 1001407, 'Navarro County', NULL, 'navarro-county', 'US', 1, 32.0469300000, -96.4724900000), (1122602, 1001407, 'Navasota', NULL, 'navasota', 'US', 1, 30.3879800000, -96.0877300000), (1122603, 1001447, 'Navassa', NULL, 'navassa', 'US', 1, 34.2554500000, -78.0074900000), (1122604, 1001417, 'Navesink', NULL, 'navesink', 'US', 1, 40.3995500000, -74.0354200000), (1122605, 1001462, 'Navy Yard City', NULL, 'navy-yard-city', 'US', 1, 47.5534300000, -122.6645800000), (1122606, 1001422, 'Nazareth', NULL, 'nazareth', 'US', 1, 40.7403800000, -75.3096200000), (1122607, 1001425, 'Near North Side', NULL, 'near-north-side', 'US', 1, 41.9000300000, -87.6345000000), (1122608, 1001425, 'Near South Side', NULL, 'near-south-side', 'US', 1, 41.8567000000, -87.6247700000), (1122609, 1001408, 'Nebraska City', NULL, 'nebraska-city', 'US', 1, 40.6766700000, -95.8591700000), (1122610, 1001407, 'Nederland', NULL, 'nederland', 'US', 1, 29.9743800000, -93.9924000000), (1122611, 1001450, 'Nederland', NULL, 'nederland', 'US', 1, 39.9613800000, -105.5108300000), (1122612, 1001452, 'Nedrow', NULL, 'nedrow', 'US', 1, 42.9750700000, -76.1413100000), (1122613, 1001433, 'Needham', NULL, 'needham', 'US', 1, 42.2834300000, -71.2328300000), (1122614, 1001416, 'Needles', NULL, 'needles', 'US', 1, 34.8480600000, -114.6141300000), (1122615, 1001407, 'Needville', NULL, 'needville', 'US', 1, 29.3994100000, -95.8377300000), (1122616, 1001441, 'Neenah', NULL, 'neenah', 'US', 1, 44.1858200000, -88.4626100000), (1122617, 1001426, 'Negaunee', NULL, 'negaunee', 'US', 1, 46.4991000000, -87.6118000000), (1122618, 1001441, 'Neillsville', NULL, 'neillsville', 'US', 1, 44.5599600000, -90.5962500000), (1122619, 1001441, 'Nekoosa', NULL, 'nekoosa', 'US', 1, 44.3124600000, -89.9042900000), (1122620, 1001408, 'Neligh', NULL, 'neligh', 'US', 1, 42.1286200000, -98.0297900000), (1122621, 1001430, 'Nellieburg', NULL, 'nellieburg', 'US', 1, 32.4068100000, -88.7772700000), (1122622, 1001458, 'Nellis Air Force Base', NULL, 'nellis-air-force-base', 'US', 1, 36.2460700000, -115.0572100000), (1122623, 1001427, 'Nellysford', NULL, 'nellysford', 'US', 1, 37.8904200000, -78.8722400000), (1122624, 1001455, 'Nelson', NULL, 'nelson', 'US', 1, 34.3820400000, -84.3710300000), (1122625, 1001408, 'Nelson', NULL, 'nelson', 'US', 1, 40.2016800000, -98.0678200000), (1122626, 1001419, 'Nelson County', NULL, 'nelson-county', 'US', 1, 37.8051300000, -85.4659900000), (1122627, 1001427, 'Nelson County', NULL, 'nelson-county', 'US', 1, 37.7874100000, -78.8867600000), (1122628, 1001418, 'Nelson County', NULL, 'nelson-county', 'US', 1, 47.9216900000, -98.1920400000), (1122629, 1001406, 'Nemaha County', NULL, 'nemaha-county', 'US', 1, 39.7834500000, -96.0141000000), (1122630, 1001408, 'Nemaha County', NULL, 'nemaha-county', 'US', 1, 40.3876500000, -95.8498200000), (1122631, 1001406, 'Neodesha', NULL, 'neodesha', 'US', 1, 37.4183900000, -95.6802600000), (1122632, 1001425, 'Neoga', NULL, 'neoga', 'US', 1, 39.3194800000, -88.4528300000), (1122633, 1001451, 'Neosho', NULL, 'neosho', 'US', 1, 36.8689600000, -94.3680000000), (1122634, 1001406, 'Neosho County', NULL, 'neosho-county', 'US', 1, 37.5584900000, -95.3067900000), (1122635, 1001414, 'Nephi', NULL, 'nephi', 'US', 1, 39.7102300000, -111.8363200000), (1122636, 1001452, 'Neponsit', NULL, 'neponsit', 'US', 1, 40.5717700000, -73.8615200000), (1122637, 1001436, 'Neptune Beach', NULL, 'neptune-beach', 'US', 1, 30.3119100000, -81.3964700000), (1122638, 1001417, 'Neptune City', NULL, 'neptune-city', 'US', 1, 40.2001100000, -74.0279200000), (1122639, 1001452, 'Nesconset', NULL, 'nesconset', 'US', 1, 40.8520400000, -73.1540000000), (1122640, 1001422, 'Nescopeck', NULL, 'nescopeck', 'US', 1, 41.0520300000, -76.2207700000), (1122641, 1001430, 'Neshoba County', NULL, 'neshoba-county', 'US', 1, 32.7535000000, -89.1175700000), (1122642, 1001422, 'Nesquehoning', NULL, 'nesquehoning', 'US', 1, 40.8645300000, -75.8110300000), (1122643, 1001406, 'Ness City', NULL, 'ness-city', 'US', 1, 38.4527900000, -99.9065100000), (1122644, 1001406, 'Ness County', NULL, 'ness-county', 'US', 1, 38.4794200000, -99.9161800000), (1122645, 1001417, 'Netcong', NULL, 'netcong', 'US', 1, 40.8989900000, -74.7065500000), (1122646, 1001430, 'Nettleton', NULL, 'nettleton', 'US', 1, 34.0890000000, -88.6222700000), (1122647, 1001447, 'Neuse Forest', NULL, 'neuse-forest', 'US', 1, 34.9637700000, -76.9446700000), (1122648, 1001451, 'Nevada', NULL, 'nevada', 'US', 1, 37.8392100000, -94.3546700000), (1122649, 1001407, 'Nevada', NULL, 'nevada', 'US', 1, 33.0423400000, -96.3738700000), (1122650, 1001459, 'Nevada', NULL, 'nevada', 'US', 1, 42.0227700000, -93.4524300000), (1122651, 1001416, 'Nevada City', NULL, 'nevada-city', 'US', 1, 39.2617300000, -121.0177900000), (1122652, 1001444, 'Nevada County', NULL, 'nevada-county', 'US', 1, 33.6639700000, -93.3071400000), (1122653, 1001416, 'Nevada County', NULL, 'nevada-county', 'US', 1, 39.3013700000, -120.7687500000), (1122654, 1001440, 'New Albany', NULL, 'new-albany', 'US', 1, 38.2856200000, -85.8241300000), (1122655, 1001430, 'New Albany', NULL, 'new-albany', 'US', 1, 34.4942700000, -89.0078400000), (1122656, 1001425, 'New Athens', NULL, 'new-athens', 'US', 1, 38.3264400000, -89.8770500000), (1122657, 1001430, 'New Augusta', NULL, 'new-augusta', 'US', 1, 31.2026300000, -89.0366800000), (1122658, 1001425, 'New Baden', NULL, 'new-baden', 'US', 1, 38.5350500000, -89.7006500000), (1122659, 1001427, 'New Baltimore', NULL, 'new-baltimore', 'US', 1, 38.7673400000, -77.7283300000), (1122660, 1001426, 'New Baltimore', NULL, 'new-baltimore', 'US', 1, 42.6811400000, -82.7368600000), (1122661, 1001422, 'New Beaver', NULL, 'new-beaver', 'US', 1, 40.8764500000, -80.3706200000), (1122662, 1001433, 'New Bedford', NULL, 'new-bedford', 'US', 1, 41.6352600000, -70.9270100000), (1122663, 1001425, 'New Berlin', NULL, 'new-berlin', 'US', 1, 39.7253300000, -89.9106600000), (1122664, 1001441, 'New Berlin', NULL, 'new-berlin', 'US', 1, 42.9764000000, -88.1084200000), (1122665, 1001422, 'New Berlinville', NULL, 'new-berlinville', 'US', 1, 40.3453700000, -75.6329600000), (1122666, 1001447, 'New Bern', NULL, 'new-bern', 'US', 1, 35.1084900000, -77.0441100000), (1122667, 1001422, 'New Bloomfield', NULL, 'new-bloomfield', 'US', 1, 40.4198100000, -77.1863700000), (1122668, 1001407, 'New Boston', NULL, 'new-boston', 'US', 1, 33.4598400000, -94.4154800000), (1122669, 1001404, 'New Boston', NULL, 'new-boston', 'US', 1, 42.9761900000, -71.6939600000), (1122670, 1001407, 'New Braunfels', NULL, 'new-braunfels', 'US', 1, 29.7030000000, -98.1244500000), (1122671, 1001420, 'New Brighton', NULL, 'new-brighton', 'US', 1, 45.0655200000, -93.2018900000), (1122672, 1001452, 'New Brighton', NULL, 'new-brighton', 'US', 1, 40.6423300000, -74.0929200000), (1122673, 1001422, 'New Brighton', NULL, 'new-brighton', 'US', 1, 40.7303400000, -80.3100600000), (1122674, 1001435, 'New Britain', NULL, 'new-britain', 'US', 1, 41.6612100000, -72.7795400000), (1122675, 1001422, 'New Britain', NULL, 'new-britain', 'US', 1, 40.2990000000, -75.1810100000), (1122676, 1001456, 'New Brockton', NULL, 'new-brockton', 'US', 1, 31.3857200000, -85.9293900000), (1122677, 1001417, 'New Brunswick', NULL, 'new-brunswick', 'US', 1, 40.4862200000, -74.4518200000), (1122678, 1001426, 'New Buffalo', NULL, 'new-buffalo', 'US', 1, 41.7939300000, -86.7439200000), (1122679, 1001435, 'New Canaan', NULL, 'new-canaan', 'US', 1, 41.1467600000, -73.4948400000), (1122680, 1001440, 'New Carlisle', NULL, 'new-carlisle', 'US', 1, 41.7003200000, -86.5094600000), (1122681, 1001401, 'New Carrollton', NULL, 'new-carrollton', 'US', 1, 38.9698300000, -76.8799700000), (1122682, 1001452, 'New Cassel', NULL, 'new-cassel', 'US', 1, 40.7589900000, -73.5695700000), (1122683, 1001399, 'New Castle', NULL, 'new-castle', 'US', 1, 39.6620600000, -75.5663100000), (1122684, 1001440, 'New Castle', NULL, 'new-castle', 'US', 1, 39.9289400000, -85.3702500000), (1122685, 1001419, 'New Castle', NULL, 'new-castle', 'US', 1, 38.4334000000, -85.1696800000), (1122686, 1001427, 'New Castle', NULL, 'new-castle', 'US', 1, 37.5001300000, -80.1108800000), (1122687, 1001404, 'New Castle', NULL, 'new-castle', 'US', 1, 43.0723100000, -70.7161600000), (1122688, 1001422, 'New Castle', NULL, 'new-castle', 'US', 1, 41.0036700000, -80.3470100000), (1122689, 1001450, 'New Castle', NULL, 'new-castle', 'US', 1, 39.5727600000, -107.5364400000), (1122690, 1001399, 'New Castle County', NULL, 'new-castle-county', 'US', 1, 39.5783300000, -75.6389800000), (1122691, 1001422, 'New Castle Northwest', NULL, 'new-castle-northwest', 'US', 1, 41.0220800000, -80.3568200000), (1122692, 1001406, 'New Century, KS', NULL, 'new-century-ks', 'US', 1, 38.8225300000, -94.8997100000), (1122693, 1001440, 'New Chicago', NULL, 'new-chicago', 'US', 1, 41.5583700000, -87.2744800000), (1122694, 1001425, 'New City', NULL, 'new-city', 'US', 1, 41.8075300000, -87.6564400000), (1122695, 1001452, 'New City', NULL, 'new-city', 'US', 1, 41.1476000000, -73.9893100000), (1122696, 1001422, 'New Columbia', NULL, 'new-columbia', 'US', 1, 41.0409200000, -76.8669100000), (1122697, 1001422, 'New Cumberland', NULL, 'new-cumberland', 'US', 1, 40.2323100000, -76.8847000000), (1122698, 1001429, 'New Cumberland', NULL, 'new-cumberland', 'US', 1, 40.4967300000, -80.6067400000), (1122699, 1001452, 'New Dorp', NULL, 'new-dorp', 'US', 1, 40.5739900000, -74.1159800000), (1122700, 1001452, 'New Dorp Beach', NULL, 'new-dorp-beach', 'US', 1, 40.5653800000, -74.1029200000), (1122701, 1001404, 'New Durham', NULL, 'new-durham', 'US', 1, 43.4367500000, -71.1722900000), (1122702, 1001422, 'New Eagle', NULL, 'new-eagle', 'US', 1, 40.2078500000, -79.9469900000), (1122703, 1001417, 'New Egypt', NULL, 'new-egypt', 'US', 1, 40.0676100000, -74.5307100000), (1122704, 1001443, 'New Ellenton', NULL, 'new-ellenton', 'US', 1, 33.4215300000, -81.6856700000), (1122705, 1001435, 'New Fairfield', NULL, 'new-fairfield', 'US', 1, 41.4664800000, -73.4856800000), (1122706, 1001451, 'New Franklin', NULL, 'new-franklin', 'US', 1, 39.0172500000, -92.7374100000), (1122707, 1001422, 'New Freedom', NULL, 'new-freedom', 'US', 1, 39.7378800000, -76.7013600000), (1122708, 1001441, 'New Glarus', NULL, 'new-glarus', 'US', 1, 42.8144500000, -89.6351200000), (1122709, 1001453, 'New Gloucester', NULL, 'new-gloucester', 'US', 1, 43.9628500000, -70.2825500000), (1122710, 1001459, 'New Hampton', NULL, 'new-hampton', 'US', 1, 43.0591400000, -92.3176800000), (1122711, 1001447, 'New Hanover County', NULL, 'new-hanover-county', 'US', 1, 34.1814100000, -77.8656100000), (1122712, 1001452, 'New Hartford', NULL, 'new-hartford', 'US', 1, 43.0734000000, -75.2876700000), (1122713, 1001435, 'New Hartford Center', NULL, 'new-hartford-center', 'US', 1, 41.8799600000, -72.9753000000), (1122714, 1001451, 'New Haven', NULL, 'new-haven', 'US', 1, 38.6083800000, -91.2190400000), (1122715, 1001429, 'New Haven', NULL, 'new-haven', 'US', 1, 38.9864700000, -81.9734700000), (1122716, 1001435, 'New Haven', NULL, 'new-haven', 'US', 1, 41.3081500000, -72.9281600000), (1122717, 1001440, 'New Haven', NULL, 'new-haven', 'US', 1, 41.0706000000, -85.0144100000), (1122718, 1001426, 'New Haven', NULL, 'new-haven', 'US', 1, 42.7294800000, -82.8013100000), (1122719, 1001435, 'New Haven County', NULL, 'new-haven-county', 'US', 1, 41.3488200000, -72.8998600000), (1122720, 1001452, 'New Hempstead', NULL, 'new-hempstead', 'US', 1, 41.1498200000, -74.0337500000), (1122721, 1001422, 'New Holland', NULL, 'new-holland', 'US', 1, 40.1017600000, -76.0852300000), (1122722, 1001441, 'New Holstein', NULL, 'new-holstein', 'US', 1, 43.9499900000, -88.0842600000), (1122723, 1001456, 'New Hope', NULL, 'new-hope', 'US', 1, 34.5371200000, -86.3942600000), (1122724, 1001430, 'New Hope', NULL, 'new-hope', 'US', 1, 33.4681700000, -88.3267000000), (1122725, 1001454, 'New Hope', NULL, 'new-hope', 'US', 1, 35.0050800000, -85.6583000000), (1122726, 1001420, 'New Hope', NULL, 'new-hope', 'US', 1, 45.0380200000, -93.3866200000), (1122727, 1001422, 'New Hope', NULL, 'new-hope', 'US', 1, 40.3642700000, -74.9512800000), (1122728, 1001415, 'New Hope', NULL, 'new-hope', 'US', 1, 42.3623400000, -123.3678400000), (1122729, 1001452, 'New Hyde Park', NULL, 'new-hyde-park', 'US', 1, 40.7351000000, -73.6879100000), (1122730, 1001457, 'New Iberia', NULL, 'new-iberia', 'US', 1, 30.0035400000, -91.8187300000), (1122731, 1001404, 'New Ipswich', NULL, 'new-ipswich', 'US', 1, 42.7481400000, -71.8542400000), (1122732, 1001454, 'New Johnsonville', NULL, 'new-johnsonville', 'US', 1, 36.0211700000, -87.9669800000), (1122733, 1001422, 'New Kensington', NULL, 'new-kensington', 'US', 1, 40.5697900000, -79.7647700000), (1122734, 1001427, 'New Kent', NULL, 'new-kent', 'US', 1, 37.5176500000, -76.9788600000), (1122735, 1001427, 'New Kent County', NULL, 'new-kent-county', 'US', 1, 37.5051400000, -76.9971300000), (1122736, 1001434, 'New Kingman-Butler', NULL, 'new-kingman-butler', 'US', 1, 35.2650400000, -114.0322600000), (1122737, 1001425, 'New Lenox', NULL, 'new-lenox', 'US', 1, 41.5119800000, -87.9656100000), (1122738, 1001441, 'New Lisbon', NULL, 'new-lisbon', 'US', 1, 43.8791400000, -90.1654100000), (1122739, 1001457, 'New Llano', NULL, 'new-llano', 'US', 1, 31.1149100000, -93.2715500000), (1122740, 1001451, 'New London', NULL, 'new-london', 'US', 1, 39.5853200000, -91.4009800000), (1122741, 1001435, 'New London', NULL, 'new-london', 'US', 1, 41.3556500000, -72.0995200000), (1122742, 1001459, 'New London', NULL, 'new-london', 'US', 1, 40.9269800000, -91.3996000000), (1122743, 1001420, 'New London', NULL, 'new-london', 'US', 1, 45.3010800000, -94.9441800000), (1122744, 1001404, 'New London', NULL, 'new-london', 'US', 1, 43.4139600000, -71.9850800000), (1122745, 1001441, 'New London', NULL, 'new-london', 'US', 1, 44.3927600000, -88.7398300000), (1122746, 1001435, 'New London County', NULL, 'new-london-county', 'US', 1, 41.4667800000, -72.1065000000), (1122747, 1001451, 'New Madrid', NULL, 'new-madrid', 'US', 1, 36.5864500000, -89.5278500000), (1122748, 1001451, 'New Madrid County', NULL, 'new-madrid-county', 'US', 1, 36.5946500000, -89.6518300000), (1122749, 1001456, 'New Market', NULL, 'new-market', 'US', 1, 34.9100300000, -86.4277900000), (1122750, 1001454, 'New Market', NULL, 'new-market', 'US', 1, 36.1039800000, -83.5526800000), (1122751, 1001427, 'New Market', NULL, 'new-market', 'US', 1, 38.6479000000, -78.6714100000), (1122752, 1001433, 'New Marlborough', NULL, 'new-marlborough', 'US', 1, 42.1228700000, -73.2287200000), (1122753, 1001429, 'New Martinsville', NULL, 'new-martinsville', 'US', 1, 39.6445200000, -80.8576000000), (1122754, 1001435, 'New Milford', NULL, 'new-milford', 'US', 1, 41.5770400000, -73.4084500000), (1122755, 1001417, 'New Milford', NULL, 'new-milford', 'US', 1, 40.9351000000, -74.0190300000), (1122756, 1001457, 'New Orleans', NULL, 'new-orleans', 'US', 1, 29.9546500000, -90.0750700000), (1122757, 1001422, 'New Oxford', NULL, 'new-oxford', 'US', 1, 39.8637100000, -77.0558100000), (1122758, 1001440, 'New Palestine', NULL, 'new-palestine', 'US', 1, 39.7219900000, -85.8891500000), (1122759, 1001452, 'New Paltz', NULL, 'new-paltz', 'US', 1, 41.7475900000, -74.0868100000), (1122760, 1001440, 'New Paris', NULL, 'new-paris', 'US', 1, 41.5003300000, -85.8280500000), (1122761, 1001440, 'New Pekin', NULL, 'new-pekin', 'US', 1, 38.5050600000, -86.0169200000), (1122762, 1001422, 'New Philadelphia', NULL, 'new-philadelphia', 'US', 1, 40.7195300000, -76.1157700000), (1122763, 1001460, 'New Plymouth', NULL, 'new-plymouth', 'US', 1, 43.9698900000, -116.8190400000), (1122764, 1001436, 'New Port Richey', NULL, 'new-port-richey', 'US', 1, 28.2441800000, -82.7192700000), (1122765, 1001436, 'New Port Richey East', NULL, 'new-port-richey-east', 'US', 1, 28.2602700000, -82.6926100000), (1122766, 1001420, 'New Prague', NULL, 'new-prague', 'US', 1, 44.5433000000, -93.5760700000), (1122767, 1001435, 'New Preston', NULL, 'new-preston', 'US', 1, 41.6751000000, -73.3517900000), (1122768, 1001417, 'New Providence', NULL, 'new-providence', 'US', 1, 40.6984300000, -74.4015400000), (1122769, 1001420, 'New Richland', NULL, 'new-richland', 'US', 1, 43.8938500000, -93.4938300000), (1122770, 1001441, 'New Richmond', NULL, 'new-richmond', 'US', 1, 45.1230200000, -92.5365900000), (1122771, 1001434, 'New River', NULL, 'new-river', 'US', 1, 33.9158700000, -112.1359900000), (1122772, 1001457, 'New Roads', NULL, 'new-roads', 'US', 1, 30.7015700000, -91.4362200000), (1122773, 1001452, 'New Rochelle', NULL, 'new-rochelle', 'US', 1, 40.9114900000, -73.7823500000), (1122774, 1001418, 'New Rockford', NULL, 'new-rockford', 'US', 1, 47.6800000000, -99.1379000000), (1122775, 1001457, 'New Sarpy', NULL, 'new-sarpy', 'US', 1, 29.9781700000, -90.3896300000), (1122776, 1001459, 'New Sharon', NULL, 'new-sharon', 'US', 1, 41.4700000000, -92.6513000000), (1122777, 1001453, 'New Sharon', NULL, 'new-sharon', 'US', 1, 44.6389500000, -70.0156100000), (1122778, 1001461, 'New Shoreham', NULL, 'new-shoreham', 'US', 1, 41.1723300000, -71.5578300000), (1122779, 1001436, 'New Smyrna Beach', NULL, 'new-smyrna-beach', 'US', 1, 29.0258200000, -80.9270000000), (1122780, 1001454, 'New South Memphis', NULL, 'new-south-memphis', 'US', 1, 35.0867600000, -90.0567600000), (1122781, 1001452, 'New Springville', NULL, 'new-springville', 'US', 1, 40.5934400000, -74.1632000000), (1122782, 1001452, 'New Square', NULL, 'new-square', 'US', 1, 41.1395600000, -74.0294200000), (1122783, 1001422, 'New Stanton', NULL, 'new-stanton', 'US', 1, 40.2192400000, -79.6094800000), (1122784, 1001407, 'New Summerfield', NULL, 'new-summerfield', 'US', 1, 31.9807200000, -95.0938300000), (1122785, 1001454, 'New Tazewell', NULL, 'new-tazewell', 'US', 1, 36.4425800000, -83.5996300000), (1122786, 1001407, 'New Territory', NULL, 'new-territory', 'US', 1, 29.5941200000, -95.6807800000), (1122787, 1001418, 'New Town', NULL, 'new-town', 'US', 1, 47.9808500000, -102.4901800000), (1122788, 1001420, 'New Ulm', NULL, 'new-ulm', 'US', 1, 44.3124600000, -94.4605300000), (1122789, 1001454, 'New Union', NULL, 'new-union', 'US', 1, 35.5325800000, -86.0808200000), (1122790, 1001407, 'New Waverly', NULL, 'new-waverly', 'US', 1, 30.5377000000, -95.4832800000), (1122791, 1001440, 'New Whiteland', NULL, 'new-whiteland', 'US', 1, 39.5581000000, -86.0952600000), (1122792, 1001422, 'New Wilmington', NULL, 'new-wilmington', 'US', 1, 41.1222800000, -80.3328400000), (1122793, 1001401, 'New Windsor', NULL, 'new-windsor', 'US', 1, 39.5420500000, -77.1080400000), (1122794, 1001452, 'New Windsor', NULL, 'new-windsor', 'US', 1, 41.4767600000, -74.0237500000), (1122795, 1001452, 'New York City', NULL, 'new-york-city', 'US', 1, 40.7142700000, -74.0059700000), (1122796, 1001452, 'New York County', NULL, 'new-york-county', 'US', 1, 40.7742700000, -73.9698100000), (1122797, 1001420, 'New York Mills', NULL, 'new-york-mills', 'US', 1, 46.5180200000, -95.3761500000), (1122798, 1001452, 'New York Mills', NULL, 'new-york-mills', 'US', 1, 43.1053500000, -75.2912800000), (1122799, 1001399, 'Newark', NULL, 'newark', 'US', 1, 39.6837200000, -75.7496600000), (1122800, 1001444, 'Newark', NULL, 'newark', 'US', 1, 35.7017400000, -91.4415200000), (1122801, 1001407, 'Newark', NULL, 'newark', 'US', 1, 33.0012400000, -97.4844700000), (1122802, 1001425, 'Newark', NULL, 'newark', 'US', 1, 41.5369700000, -88.5834100000), (1122803, 1001417, 'Newark', NULL, 'newark', 'US', 1, 40.7356600000, -74.1723700000), (1122804, 1001452, 'Newark', NULL, 'newark', 'US', 1, 43.0467300000, -77.0952500000), (1122805, 1001416, 'Newark', NULL, 'newark', 'US', 1, 37.5296600000, -122.0402400000), (1122806, 1001426, 'Newaygo', NULL, 'newaygo', 'US', 1, 43.4197400000, -85.8000500000), (1122807, 1001426, 'Newaygo County', NULL, 'newaygo-county', 'US', 1, 43.5541700000, -85.8009100000), (1122808, 1001415, 'Newberg', NULL, 'newberg', 'US', 1, 45.3001200000, -122.9731600000), (1122809, 1001454, 'Newbern', NULL, 'newbern', 'US', 1, 36.1128500000, -89.2617400000), (1122810, 1001436, 'Newberry', NULL, 'newberry', 'US', 1, 29.6463500000, -82.6065000000), (1122811, 1001443, 'Newberry', NULL, 'newberry', 'US', 1, 34.2745800000, -81.6187200000), (1122812, 1001426, 'Newberry', NULL, 'newberry', 'US', 1, 46.3550000000, -85.5095600000), (1122813, 1001443, 'Newberry County', NULL, 'newberry-county', 'US', 1, 34.2898100000, -81.6001200000), (1122814, 1001419, 'Newburg', NULL, 'newburg', 'US', 1, 38.1600700000, -85.6596800000), (1122815, 1001441, 'Newburg', NULL, 'newburg', 'US', 1, 43.4316700000, -88.0464800000), (1122816, 1001440, 'Newburgh', NULL, 'newburgh', 'US', 1, 37.9444900000, -87.4052900000), (1122817, 1001452, 'Newburgh', NULL, 'newburgh', 'US', 1, 41.5034300000, -74.0104200000), (1122818, 1001404, 'Newbury', NULL, 'newbury', 'US', 1, 43.3214600000, -72.0359200000), (1122819, 1001433, 'Newburyport', NULL, 'newburyport', 'US', 1, 42.8125900000, -70.8772800000), (1122820, 1001421, 'Newcastle', NULL, 'newcastle', 'US', 1, 35.2472900000, -97.5997600000), (1122821, 1001416, 'Newcastle', NULL, 'newcastle', 'US', 1, 38.8740700000, -121.1332800000), (1122822, 1001442, 'Newcastle', NULL, 'newcastle', 'US', 1, 43.8547000000, -104.2049400000), (1122823, 1001462, 'Newcastle', NULL, 'newcastle', 'US', 1, 47.5389900000, -122.1556800000), (1122824, 1001429, 'Newell', NULL, 'newell', 'US', 1, 40.6184000000, -80.6042400000), (1122825, 1001457, 'Newellton', NULL, 'newellton', 'US', 1, 32.0726500000, -91.2409500000), (1122826, 1001452, 'Newfane', NULL, 'newfane', 'US', 1, 43.2867200000, -78.7103100000), (1122827, 1001409, 'Newfane', NULL, 'newfane', 'US', 1, 42.9856400000, -72.6559300000), (1122828, 1001417, 'Newfield', NULL, 'newfield', 'US', 1, 39.5468800000, -75.0263600000), (1122829, 1001453, 'Newfield', NULL, 'newfield', 'US', 1, 43.6481300000, -70.8470100000), (1122830, 1001427, 'Newington', NULL, 'newington', 'US', 1, 38.7384500000, -77.1849800000), (1122831, 1001435, 'Newington', NULL, 'newington', 'US', 1, 41.6978800000, -72.7237100000), (1122832, 1001421, 'Newkirk', NULL, 'newkirk', 'US', 1, 36.8822500000, -97.0533700000), (1122833, 1001447, 'Newland', NULL, 'newland', 'US', 1, 36.0873500000, -81.9273400000), (1122834, 1001416, 'Newman', NULL, 'newman', 'US', 1, 37.3138300000, -121.0207600000), (1122835, 1001422, 'Newmanstown', NULL, 'newmanstown', 'US', 1, 40.3495400000, -76.2132800000), (1122836, 1001404, 'Newmarket', NULL, 'newmarket', 'US', 1, 43.0828600000, -70.9350600000), (1122837, 1001455, 'Newnan', NULL, 'newnan', 'US', 1, 33.3806700000, -84.7996600000), (1122838, 1001399, 'Newport', NULL, 'newport', 'US', 1, 39.7137200000, -75.6093700000), (1122839, 1001444, 'Newport', NULL, 'newport', 'US', 1, 35.6048000000, -91.2818000000), (1122840, 1001440, 'Newport', NULL, 'newport', 'US', 1, 39.8842000000, -87.4086300000), (1122841, 1001419, 'Newport', NULL, 'newport', 'US', 1, 39.0914500000, -84.4957800000), (1122842, 1001447, 'Newport', NULL, 'newport', 'US', 1, 34.7865500000, -76.8591100000), (1122843, 1001454, 'Newport', NULL, 'newport', 'US', 1, 35.9670400000, -83.1876600000), (1122844, 1001443, 'Newport', NULL, 'newport', 'US', 1, 34.9898600000, -81.1009100000), (1122845, 1001420, 'Newport', NULL, 'newport', 'US', 1, 44.8663600000, -93.0004900000), (1122846, 1001453, 'Newport', NULL, 'newport', 'US', 1, 44.8353400000, -69.2739400000), (1122847, 1001404, 'Newport', NULL, 'newport', 'US', 1, 43.3653500000, -72.1734200000), (1122848, 1001422, 'Newport', NULL, 'newport', 'US', 1, 40.4778600000, -77.1305400000), (1122849, 1001461, 'Newport', NULL, 'newport', 'US', 1, 41.4901000000, -71.3128300000), (1122850, 1001409, 'Newport', NULL, 'newport', 'US', 1, 44.9364400000, -72.2051000000); INSERT INTO `[[dbprefix]]t_city` VALUES (1122851, 1001415, 'Newport', NULL, 'newport', 'US', 1, 44.6367800000, -124.0534500000), (1122852, 1001462, 'Newport', NULL, 'newport', 'US', 1, 48.1796300000, -117.0432600000), (1122853, 1001416, 'Newport Beach', NULL, 'newport-beach', 'US', 1, 33.6189100000, -117.9289500000), (1122854, 1001461, 'Newport County', NULL, 'newport-county', 'US', 1, 41.4998000000, -71.2810000000), (1122855, 1001461, 'Newport East', NULL, 'newport-east', 'US', 1, 41.5157900000, -71.2875200000), (1122856, 1001427, 'Newport News', NULL, 'newport-news', 'US', 1, 37.0833900000, -76.4696500000), (1122857, 1001456, 'Newton', NULL, 'newton', 'US', 1, 31.3351700000, -85.6052100000), (1122858, 1001406, 'Newton', NULL, 'newton', 'US', 1, 38.0466800000, -97.3450400000), (1122859, 1001455, 'Newton', NULL, 'newton', 'US', 1, 31.3129600000, -84.3357400000), (1122860, 1001430, 'Newton', NULL, 'newton', 'US', 1, 32.3212600000, -89.1633900000), (1122861, 1001447, 'Newton', NULL, 'newton', 'US', 1, 35.6698600000, -81.2214700000), (1122862, 1001407, 'Newton', NULL, 'newton', 'US', 1, 30.8485300000, -93.7574000000), (1122863, 1001459, 'Newton', NULL, 'newton', 'US', 1, 41.6997100000, -93.0479800000), (1122864, 1001425, 'Newton', NULL, 'newton', 'US', 1, 38.9908800000, -88.1625400000), (1122865, 1001433, 'Newton', NULL, 'newton', 'US', 1, 42.3370400000, -71.2092200000), (1122866, 1001404, 'Newton', NULL, 'newton', 'US', 1, 42.8695300000, -71.0345000000), (1122867, 1001417, 'Newton', NULL, 'newton', 'US', 1, 41.0581500000, -74.7526700000), (1122868, 1001444, 'Newton County', NULL, 'newton-county', 'US', 1, 35.9199700000, -93.2178700000), (1122869, 1001455, 'Newton County', NULL, 'newton-county', 'US', 1, 33.5550500000, -83.8501900000), (1122870, 1001451, 'Newton County', NULL, 'newton-county', 'US', 1, 36.9055100000, -94.3392500000), (1122871, 1001430, 'Newton County', NULL, 'newton-county', 'US', 1, 32.4002300000, -89.1188100000), (1122872, 1001407, 'Newton County', NULL, 'newton-county', 'US', 1, 30.7863100000, -93.7447400000), (1122873, 1001440, 'Newton County', NULL, 'newton-county', 'US', 1, 40.9558500000, -87.3975400000), (1122874, 1001422, 'Newtown', NULL, 'newtown', 'US', 1, 40.2292800000, -74.9368300000), (1122875, 1001435, 'Newtown', NULL, 'newtown', 'US', 1, 41.4139800000, -73.3034500000), (1122876, 1001422, 'Newtown Grant', NULL, 'newtown-grant', 'US', 1, 40.2601100000, -74.9548900000), (1122877, 1001422, 'Newville', NULL, 'newville', 'US', 1, 40.1731400000, -77.3986000000), (1122878, 1001460, 'Nez Perce County', NULL, 'nez-perce-county', 'US', 1, 46.3267600000, -116.7502400000), (1122879, 1001460, 'Nezperce', NULL, 'nezperce', 'US', 1, 46.2348900000, -116.2407000000), (1122880, 1001441, 'Niagara', NULL, 'niagara', 'US', 1, 45.7713500000, -87.9948500000), (1122881, 1001452, 'Niagara County', NULL, 'niagara-county', 'US', 1, 43.1731400000, -78.6909500000), (1122882, 1001452, 'Niagara Falls', NULL, 'niagara-falls', 'US', 1, 43.0945000000, -79.0567100000), (1122883, 1001435, 'Niantic', NULL, 'niantic', 'US', 1, 41.3253800000, -72.1931300000), (1122884, 1001414, 'Nibley', NULL, 'nibley', 'US', 1, 41.6743800000, -111.8330000000), (1122885, 1001416, 'Nice', NULL, 'nice', 'US', 1, 39.1232300000, -122.8483300000), (1122886, 1001436, 'Niceville', NULL, 'niceville', 'US', 1, 30.5168600000, -86.4821700000), (1122887, 1001419, 'Nicholas County', NULL, 'nicholas-county', 'US', 1, 38.3356000000, -84.0153300000), (1122888, 1001429, 'Nicholas County', NULL, 'nicholas-county', 'US', 1, 38.2917000000, -80.7993300000), (1122889, 1001419, 'Nicholasville', NULL, 'nicholasville', 'US', 1, 37.8806300000, -84.5730000000), (1122890, 1001455, 'Nicholls', NULL, 'nicholls', 'US', 1, 31.5174200000, -82.6348600000), (1122891, 1001421, 'Nichols Hills', NULL, 'nichols-hills', 'US', 1, 35.5508900000, -97.5489300000), (1122892, 1001455, 'Nicholson', NULL, 'nicholson', 'US', 1, 34.1140000000, -83.4315500000), (1122893, 1001430, 'Nicholson', NULL, 'nicholson', 'US', 1, 30.4771400000, -89.6936700000), (1122894, 1001406, 'Nickerson', NULL, 'nickerson', 'US', 1, 38.1472300000, -98.0836700000), (1122895, 1001420, 'Nicollet', NULL, 'nicollet', 'US', 1, 44.2760800000, -94.1874600000), (1122896, 1001420, 'Nicollet County', NULL, 'nicollet-county', 'US', 1, 44.3498900000, -94.2473000000), (1122897, 1001421, 'Nicoma Park', NULL, 'nicoma-park', 'US', 1, 35.4911700000, -97.3230900000), (1122898, 1001400, 'Nikiski', NULL, 'nikiski', 'US', 1, 60.6902800000, -151.2888900000), (1122899, 1001416, 'Niland', NULL, 'niland', 'US', 1, 33.2400400000, -115.5188800000), (1122900, 1001425, 'Niles', NULL, 'niles', 'US', 1, 42.0189200000, -87.8028400000), (1122901, 1001426, 'Niles', NULL, 'niles', 'US', 1, 41.8297700000, -86.2541800000), (1122902, 1001443, 'Ninety Six', NULL, 'ninety-six', 'US', 1, 34.1751300000, -82.0240100000), (1122903, 1001421, 'Ninnekah', NULL, 'ninnekah', 'US', 1, 34.9478500000, -97.9239300000), (1122904, 1001442, 'Niobrara County', NULL, 'niobrara-county', 'US', 1, 43.0565000000, -104.4753800000), (1122905, 1001416, 'Nipomo', NULL, 'nipomo', 'US', 1, 35.0427500000, -120.4760000000), (1122906, 1001452, 'Niskayuna', NULL, 'niskayuna', 'US', 1, 42.7798000000, -73.8456800000), (1122907, 1001452, 'Nissequogue', NULL, 'nissequogue', 'US', 1, 40.9039900000, -73.1978900000), (1122908, 1001420, 'Nisswa', NULL, 'nisswa', 'US', 1, 46.5205200000, -94.2886100000), (1122909, 1001429, 'Nitro', NULL, 'nitro', 'US', 1, 38.4148100000, -81.8440200000), (1122910, 1001452, 'Niverville', NULL, 'niverville', 'US', 1, 42.4409200000, -73.6609500000), (1122911, 1001450, 'Niwot', NULL, 'niwot', 'US', 1, 40.1038700000, -105.1708200000), (1122912, 1001451, 'Nixa', NULL, 'nixa', 'US', 1, 37.0433900000, -93.2943500000), (1122913, 1001407, 'Nixon', NULL, 'nixon', 'US', 1, 29.2674600000, -97.7644400000), (1122914, 1001422, 'Nixon', NULL, 'nixon', 'US', 1, 40.7834000000, -79.9295000000), (1122915, 1001435, 'Noank', NULL, 'noank', 'US', 1, 41.3278800000, -71.9906300000), (1122916, 1001421, 'Noble', NULL, 'noble', 'US', 1, 35.1392400000, -97.3947500000), (1122917, 1001421, 'Noble County', NULL, 'noble-county', 'US', 1, 36.3886000000, -97.2305100000), (1122918, 1001440, 'Noble County', NULL, 'noble-county', 'US', 1, 41.3986000000, -85.4174700000), (1122919, 1001453, 'Nobleboro', NULL, 'nobleboro', 'US', 1, 44.0795200000, -69.4850500000), (1122920, 1001420, 'Nobles County', NULL, 'nobles-county', 'US', 1, 43.6742400000, -95.7533900000), (1122921, 1001440, 'Noblesville', NULL, 'noblesville', 'US', 1, 40.0455900000, -86.0086000000), (1122922, 1001436, 'Nocatee', NULL, 'nocatee', 'US', 1, 27.1603300000, -81.8823100000), (1122923, 1001407, 'Nocona', NULL, 'nocona', 'US', 1, 33.7867700000, -97.7258600000), (1122924, 1001451, 'Nodaway County', NULL, 'nodaway-county', 'US', 1, 40.3607700000, -94.8834300000), (1122925, 1001416, 'Noe Valley', NULL, 'noe-valley', 'US', 1, 37.7501800000, -122.4336900000), (1122926, 1001451, 'Noel', NULL, 'noel', 'US', 1, 36.5456300000, -94.4852200000), (1122927, 1001434, 'Nogales', NULL, 'nogales', 'US', 1, 31.3403800000, -110.9342500000), (1122928, 1001427, 'Nokesville', NULL, 'nokesville', 'US', 1, 38.6987300000, -77.5797100000), (1122929, 1001436, 'Nokomis', NULL, 'nokomis', 'US', 1, 27.1192200000, -82.4442600000), (1122930, 1001425, 'Nokomis', NULL, 'nokomis', 'US', 1, 39.3011600000, -89.2850800000), (1122931, 1001407, 'Nolan County', NULL, 'nolan-county', 'US', 1, 32.3034900000, -100.4060500000), (1122932, 1001407, 'Nolanville', NULL, 'nolanville', 'US', 1, 31.0787900000, -97.6055700000), (1122933, 1001454, 'Nolensville', NULL, 'nolensville', 'US', 1, 35.9522900000, -86.6694400000), (1122934, 1001400, 'Nome', NULL, 'nome', 'US', 1, 64.5011100000, -165.4063900000), (1122935, 1001400, 'Nome Census Area', NULL, 'nome-census-area', 'US', 1, 64.8333300000, -163.7505600000), (1122936, 1001462, 'Nooksack', NULL, 'nooksack', 'US', 1, 48.9276200000, -122.3215500000), (1122937, 1001459, 'Nora Springs', NULL, 'nora-springs', 'US', 1, 43.1427500000, -93.0043700000), (1122938, 1001457, 'Norco', NULL, 'norco', 'US', 1, 29.9990900000, -90.4123000000), (1122939, 1001416, 'Norco', NULL, 'norco', 'US', 1, 33.9311300000, -117.5486600000), (1122940, 1001455, 'Norcross', NULL, 'norcross', 'US', 1, 33.9412100000, -84.2135300000), (1122941, 1001427, 'Norfolk', NULL, 'norfolk', 'US', 1, 36.8468100000, -76.2852200000), (1122942, 1001433, 'Norfolk', NULL, 'norfolk', 'US', 1, 42.1195400000, -71.3250600000), (1122943, 1001408, 'Norfolk', NULL, 'norfolk', 'US', 1, 42.0283400000, -97.4170000000), (1122944, 1001452, 'Norfolk', NULL, 'norfolk', 'US', 1, 44.8008900000, -74.9910300000), (1122945, 1001433, 'Norfolk County', NULL, 'norfolk-county', 'US', 1, 42.1709700000, -71.1838100000), (1122946, 1001436, 'Norland', NULL, 'norland', 'US', 1, 25.9489800000, -80.2122700000), (1122947, 1001447, 'Norlina', NULL, 'norlina', 'US', 1, 36.4457000000, -78.1983300000), (1122948, 1001425, 'Normal', NULL, 'normal', 'US', 1, 40.5142000000, -88.9906300000), (1122949, 1001421, 'Norman', NULL, 'norman', 'US', 1, 35.2225700000, -97.4394800000), (1122950, 1001420, 'Norman County', NULL, 'norman-county', 'US', 1, 47.3264800000, -96.4552800000), (1122951, 1001451, 'Normandy', NULL, 'normandy', 'US', 1, 38.7208800000, -90.2973400000), (1122952, 1001462, 'Normandy Park', NULL, 'normandy-park', 'US', 1, 47.4362100000, -122.3406800000), (1122953, 1001425, 'Norridge', NULL, 'norridge', 'US', 1, 41.9633600000, -87.8272800000), (1122954, 1001453, 'Norridgewock', NULL, 'norridgewock', 'US', 1, 44.7131200000, -69.7906100000), (1122955, 1001454, 'Norris', NULL, 'norris', 'US', 1, 36.1956300000, -84.0679700000), (1122956, 1001425, 'Norris City', NULL, 'norris-city', 'US', 1, 37.9811600000, -88.3292100000), (1122957, 1001422, 'Norristown', NULL, 'norristown', 'US', 1, 40.1215000000, -75.3399000000), (1122958, 1001433, 'North Adams', NULL, 'north-adams', 'US', 1, 42.7009200000, -73.1087100000), (1122959, 1001407, 'North Alamo', NULL, 'north-alamo', 'US', 1, 26.2173000000, -98.1289000000), (1122960, 1001433, 'North Amherst', NULL, 'north-amherst', 'US', 1, 42.4103700000, -72.5309200000), (1122961, 1001452, 'North Amityville', NULL, 'north-amityville', 'US', 1, 40.6976000000, -73.4251200000), (1122962, 1001433, 'North Andover', NULL, 'north-andover', 'US', 1, 42.6987000000, -71.1350600000), (1122963, 1001436, 'North Andrews Gardens', NULL, 'north-andrews-gardens', 'US', 1, 26.1914700000, -80.1442100000), (1122964, 1001422, 'North Apollo', NULL, 'north-apollo', 'US', 1, 40.5961800000, -79.5556000000), (1122965, 1001417, 'North Arlington', NULL, 'north-arlington', 'US', 1, 40.7884300000, -74.1332000000), (1122966, 1001455, 'North Atlanta', NULL, 'north-atlanta', 'US', 1, 33.8651000000, -84.3365900000), (1122967, 1001433, 'North Attleborough Center', NULL, 'north-attleborough-center', 'US', 1, 41.9726300000, -71.3247400000), (1122968, 1001416, 'North Auburn', NULL, 'north-auburn', 'US', 1, 38.9312900000, -121.0818900000), (1122969, 1001443, 'North Augusta', NULL, 'north-augusta', 'US', 1, 33.5018000000, -81.9651200000), (1122970, 1001425, 'North Aurora', NULL, 'north-aurora', 'US', 1, 41.8061400000, -88.3273000000), (1122971, 1001452, 'North Babylon', NULL, 'north-babylon', 'US', 1, 40.7164900000, -73.3217900000), (1122972, 1001452, 'North Ballston Spa', NULL, 'north-ballston-spa', 'US', 1, 43.0196900000, -73.8510900000), (1122973, 1001425, 'North Barrington', NULL, 'north-barrington', 'US', 1, 42.2078000000, -88.1406300000), (1122974, 1001453, 'North Bath', NULL, 'north-bath', 'US', 1, 43.9348000000, -69.8158800000), (1122975, 1001452, 'North Bay Shore', NULL, 'north-bay-shore', 'US', 1, 40.7362100000, -73.2626200000), (1122976, 1001436, 'North Bay Village', NULL, 'north-bay-village', 'US', 1, 25.8462100000, -80.1539400000), (1122977, 1001401, 'North Beach', NULL, 'north-beach', 'US', 1, 38.7073400000, -76.5310700000), (1122978, 1001417, 'North Beach Haven', NULL, 'north-beach-haven', 'US', 1, 39.5731700000, -74.2315300000), (1122979, 1001401, 'North Bel Air', NULL, 'north-bel-air', 'US', 1, 39.5398300000, -76.3549600000), (1122980, 1001422, 'North Belle Vernon', NULL, 'north-belle-vernon', 'US', 1, 40.1292400000, -79.8681000000), (1122981, 1001452, 'North Bellmore', NULL, 'north-bellmore', 'US', 1, 40.6914900000, -73.5334600000), (1122982, 1001452, 'North Bellport', NULL, 'north-bellport', 'US', 1, 40.7742700000, -72.9428800000), (1122983, 1001408, 'North Bend', NULL, 'north-bend', 'US', 1, 41.4619500000, -96.7797500000), (1122984, 1001415, 'North Bend', NULL, 'north-bend', 'US', 1, 43.4065000000, -124.2242800000), (1122985, 1001462, 'North Bend', NULL, 'north-bend', 'US', 1, 47.4956600000, -121.7867800000), (1122986, 1001409, 'North Bennington', NULL, 'north-bennington', 'US', 1, 42.9303600000, -73.2426100000), (1122987, 1001417, 'North Bergen', NULL, 'north-bergen', 'US', 1, 40.8042700000, -74.0120800000), (1122988, 1001453, 'North Berwick', NULL, 'north-berwick', 'US', 1, 43.3037000000, -70.7333900000), (1122989, 1001401, 'North Bethesda', NULL, 'north-bethesda', 'US', 1, 39.0445500000, -77.1188700000), (1122990, 1001456, 'North Bibb', NULL, 'north-bibb', 'US', 1, 33.2040100000, -87.1530500000), (1122991, 1001452, 'North Boston', NULL, 'north-boston', 'US', 1, 42.6856200000, -78.7767000000), (1122992, 1001422, 'North Braddock', NULL, 'north-braddock', 'US', 1, 40.3989600000, -79.8408800000), (1122993, 1001426, 'North Branch', NULL, 'north-branch', 'US', 1, 43.2294700000, -83.1966100000), (1122994, 1001420, 'North Branch', NULL, 'north-branch', 'US', 1, 45.5113500000, -92.9802200000), (1122995, 1001435, 'North Branford', NULL, 'north-branford', 'US', 1, 41.3276000000, -72.7673200000), (1122996, 1001433, 'North Brookfield', NULL, 'north-brookfield', 'US', 1, 42.2667600000, -72.0828500000), (1122997, 1001436, 'North Brooksville', NULL, 'north-brooksville', 'US', 1, 28.5730500000, -82.4081500000), (1122998, 1001446, 'North Browning', NULL, 'north-browning', 'US', 1, 48.5702500000, -113.0095300000), (1122999, 1001417, 'North Caldwell', NULL, 'north-caldwell', 'US', 1, 40.8648200000, -74.2582000000), (1123000, 1001417, 'North Cape May', NULL, 'north-cape-may', 'US', 1, 38.9820600000, -74.9579500000), (1123001, 1001452, 'North Castle', NULL, 'north-castle', 'US', 1, 41.1400000000, -73.6838900000), (1123002, 1001422, 'North Catasauqua', NULL, 'north-catasauqua', 'US', 1, 40.6598200000, -75.4768500000), (1123003, 1001425, 'North Center', NULL, 'north-center', 'US', 1, 41.9539200000, -87.6789500000), (1123004, 1001422, 'North Charleroi', NULL, 'north-charleroi', 'US', 1, 40.1511800000, -79.9075500000), (1123005, 1001443, 'North Charleston', NULL, 'north-charleston', 'US', 1, 32.8546200000, -79.9748100000), (1123006, 1001425, 'North Chicago', NULL, 'north-chicago', 'US', 1, 42.3255800000, -87.8411800000), (1123007, 1001433, 'North Chicopee', NULL, 'north-chicopee', 'US', 1, 42.1834300000, -72.5995300000), (1123008, 1001452, 'North Collins', NULL, 'north-collins', 'US', 1, 42.5953400000, -78.9411500000), (1123009, 1001404, 'North Conway', NULL, 'north-conway', 'US', 1, 44.0536800000, -71.1284000000), (1123010, 1001419, 'North Corbin', NULL, 'north-corbin', 'US', 1, 36.9606400000, -84.0932600000), (1123011, 1001462, 'North Creek', NULL, 'north-creek', 'US', 1, 47.8195400000, -122.1762400000), (1123012, 1001444, 'North Crossett', NULL, 'north-crossett', 'US', 1, 33.1656800000, -91.9415200000), (1123013, 1001436, 'North DeLand', NULL, 'north-deland', 'US', 1, 29.0494300000, -81.2981200000), (1123014, 1001455, 'North Decatur', NULL, 'north-decatur', 'US', 1, 33.7903800000, -84.3060300000), (1123015, 1001455, 'North Druid Hills', NULL, 'north-druid-hills', 'US', 1, 33.8167700000, -84.3132600000), (1123016, 1001445, 'North Eagle Butte', NULL, 'north-eagle-butte', 'US', 1, 45.0041500000, -101.2337600000), (1123017, 1001401, 'North East', NULL, 'north-east', 'US', 1, 39.6001100000, -75.9413300000), (1123018, 1001422, 'North East', NULL, 'north-east', 'US', 1, 42.2156100000, -79.8342200000), (1123019, 1001433, 'North Eastham', NULL, 'north-eastham', 'US', 1, 41.8651100000, -69.9911300000), (1123020, 1001416, 'North Edwards', NULL, 'north-edwards', 'US', 1, 35.0166400000, -117.8328400000), (1123021, 1001416, 'North El Monte', NULL, 'north-el-monte', 'US', 1, 34.1027900000, -118.0242300000), (1123022, 1001452, 'North Elba', NULL, 'north-elba', 'US', 1, 44.2433800000, -73.9543100000), (1123023, 1001459, 'North English', NULL, 'north-english', 'US', 1, 41.5139000000, -92.0762900000), (1123024, 1001416, 'North Fair Oaks', NULL, 'north-fair-oaks', 'US', 1, 37.4743800000, -122.1966300000), (1123025, 1001433, 'North Falmouth', NULL, 'north-falmouth', 'US', 1, 41.6459400000, -70.6183600000), (1123026, 1001441, 'North Fond du Lac', NULL, 'north-fond-du-lac', 'US', 1, 43.8113800000, -88.4834400000), (1123027, 1001434, 'North Fork', NULL, 'north-fork', 'US', 1, 34.0016700000, -109.9635500000), (1123028, 1001462, 'North Fort Lewis', NULL, 'north-fort-lewis', 'US', 1, 47.1213100000, -122.5945200000), (1123029, 1001436, 'North Fort Myers', NULL, 'north-fort-myers', 'US', 1, 26.6672900000, -81.8800900000), (1123030, 1001452, 'North Gates', NULL, 'north-gates', 'US', 1, 43.1764500000, -77.7013900000), (1123031, 1001435, 'North Granby', NULL, 'north-granby', 'US', 1, 41.9959300000, -72.8295400000), (1123032, 1001452, 'North Great River', NULL, 'north-great-river', 'US', 1, 40.7473200000, -73.1698400000), (1123033, 1001435, 'North Grosvenor Dale', NULL, 'north-grosvenor-dale', 'US', 1, 41.9856500000, -71.8986800000), (1123034, 1001417, 'North Haledon', NULL, 'north-haledon', 'US', 1, 40.9551000000, -74.1859800000), (1123035, 1001404, 'North Hampton', NULL, 'north-hampton', 'US', 1, 42.9725900000, -70.8297800000), (1123036, 1001443, 'North Hartsville', NULL, 'north-hartsville', 'US', 1, 34.3937700000, -80.0695100000), (1123037, 1001435, 'North Haven', NULL, 'north-haven', 'US', 1, 41.3909300000, -72.8595400000), (1123038, 1001409, 'North Hero', NULL, 'north-hero', 'US', 1, 44.8312500000, -73.2732300000), (1123039, 1001416, 'North Highlands', NULL, 'north-highlands', 'US', 1, 38.6857400000, -121.3721700000), (1123040, 1001452, 'North Hills', NULL, 'north-hills', 'US', 1, 40.7809300000, -73.6765200000), (1123041, 1001416, 'North Hills', NULL, 'north-hills', 'US', 1, 34.2363900000, -118.4847200000), (1123042, 1001416, 'North Hollywood', NULL, 'north-hollywood', 'US', 1, 34.1722300000, -118.3789700000), (1123043, 1001441, 'North Hudson', NULL, 'north-hudson', 'US', 1, 44.9930200000, -92.7568700000), (1123044, 1001440, 'North Judson', NULL, 'north-judson', 'US', 1, 41.2150400000, -86.7758500000), (1123045, 1001451, 'North Kansas City', NULL, 'north-kansas-city', 'US', 1, 39.1300000000, -94.5621800000), (1123046, 1001401, 'North Kensington', NULL, 'north-kensington', 'US', 1, 39.0303900000, -77.0724800000), (1123047, 1001436, 'North Key Largo', NULL, 'north-key-largo', 'US', 1, 25.2673400000, -80.3233900000), (1123048, 1001461, 'North Kingstown', NULL, 'north-kingstown', 'US', 1, 41.5501000000, -71.4661700000), (1123049, 1001441, 'North La Crosse', NULL, 'north-la-crosse', 'US', 1, 43.8463500000, -91.2481900000), (1123050, 1001416, 'North Lakeport', NULL, 'north-lakeport', 'US', 1, 39.0883100000, -122.9053800000), (1123051, 1001433, 'North Lakeville', NULL, 'north-lakeville', 'US', 1, 41.8576000000, -70.9422600000), (1123052, 1001458, 'North Las Vegas', NULL, 'north-las-vegas', 'US', 1, 36.1988600000, -115.1175000000), (1123053, 1001436, 'North Lauderdale', NULL, 'north-lauderdale', 'US', 1, 26.2173000000, -80.2258800000), (1123054, 1001401, 'North Laurel', NULL, 'north-laurel', 'US', 1, 39.1390000000, -76.8705300000), (1123055, 1001425, 'North Lawndale', NULL, 'north-lawndale', 'US', 1, 41.8600300000, -87.7183900000), (1123056, 1001459, 'North Liberty', NULL, 'north-liberty', 'US', 1, 41.7491800000, -91.5979500000), (1123057, 1001440, 'North Liberty', NULL, 'north-liberty', 'US', 1, 41.5342100000, -86.4272300000), (1123058, 1001452, 'North Lindenhurst', NULL, 'north-lindenhurst', 'US', 1, 40.7142700000, -73.3815100000), (1123059, 1001444, 'North Little Rock', NULL, 'north-little-rock', 'US', 1, 34.7695400000, -92.2670900000), (1123060, 1001414, 'North Logan', NULL, 'north-logan', 'US', 1, 41.7693700000, -111.8046700000), (1123061, 1001440, 'North Madison', NULL, 'north-madison', 'US', 1, 38.7678400000, -85.3966300000), (1123062, 1001440, 'North Manchester', NULL, 'north-manchester', 'US', 1, 41.0006000000, -85.7686000000), (1123063, 1001420, 'North Mankato', NULL, 'north-mankato', 'US', 1, 44.1733000000, -94.0338500000), (1123064, 1001452, 'North Massapequa', NULL, 'north-massapequa', 'US', 1, 40.7009300000, -73.4620700000), (1123065, 1001452, 'North Merrick', NULL, 'north-merrick', 'US', 1, 40.6912100000, -73.5631800000), (1123066, 1001436, 'North Miami', NULL, 'north-miami', 'US', 1, 25.8900900000, -80.1867100000), (1123067, 1001436, 'North Miami Beach', NULL, 'north-miami-beach', 'US', 1, 25.9331500000, -80.1625500000), (1123068, 1001417, 'North Middletown', NULL, 'north-middletown', 'US', 1, 40.4395500000, -74.1190300000), (1123069, 1001426, 'North Muskegon', NULL, 'north-muskegon', 'US', 1, 43.2561300000, -86.2675600000), (1123070, 1001443, 'North Myrtle Beach', NULL, 'north-myrtle-beach', 'US', 1, 33.8160100000, -78.6800200000), (1123071, 1001452, 'North New Hyde Park', NULL, 'north-new-hyde-park', 'US', 1, 40.7431600000, -73.6931900000), (1123072, 1001406, 'North Newton', NULL, 'north-newton', 'US', 1, 38.0722300000, -97.3455900000), (1123073, 1001420, 'North Oaks', NULL, 'north-oaks', 'US', 1, 45.1027400000, -93.0791100000), (1123074, 1001414, 'North Ogden', NULL, 'north-ogden', 'US', 1, 41.3071600000, -111.9602200000), (1123075, 1001436, 'North Palm Beach', NULL, 'north-palm-beach', 'US', 1, 26.8175600000, -80.0819900000), (1123076, 1001452, 'North Patchogue', NULL, 'north-patchogue', 'US', 1, 40.7870400000, -73.0090000000), (1123077, 1001425, 'North Pekin', NULL, 'north-pekin', 'US', 1, 40.6150400000, -89.6223200000), (1123078, 1001433, 'North Pembroke', NULL, 'north-pembroke', 'US', 1, 42.0931600000, -70.7925400000), (1123079, 1001425, 'North Peoria', NULL, 'north-peoria', 'US', 1, 40.7175400000, -89.5842600000), (1123080, 1001417, 'North Plainfield', NULL, 'north-plainfield', 'US', 1, 40.6301000000, -74.4273700000), (1123081, 1001415, 'North Plains', NULL, 'north-plains', 'US', 1, 45.5970600000, -122.9934400000), (1123082, 1001408, 'North Platte', NULL, 'north-platte', 'US', 1, 41.1238900000, -100.7654200000), (1123083, 1001433, 'North Plymouth', NULL, 'north-plymouth', 'US', 1, 41.9709400000, -70.6828100000), (1123084, 1001400, 'North Pole', NULL, 'north-pole', 'US', 1, 64.7511100000, -147.3494400000), (1123085, 1001436, 'North Port', NULL, 'north-port', 'US', 1, 27.0442200000, -82.2359300000), (1123086, 1001415, 'North Portland', NULL, 'north-portland', 'US', 1, 45.6103900000, -122.7034300000), (1123087, 1001401, 'North Potomac', NULL, 'north-potomac', 'US', 1, 39.0828900000, -77.2649800000), (1123088, 1001441, 'North Prairie', NULL, 'north-prairie', 'US', 1, 42.9344600000, -88.4053700000), (1123089, 1001461, 'North Providence', NULL, 'north-providence', 'US', 1, 41.8501000000, -71.4661700000), (1123090, 1001462, 'North Puyallup', NULL, 'north-puyallup', 'US', 1, 47.2067700000, -122.2823400000), (1123091, 1001433, 'North Reading', NULL, 'north-reading', 'US', 1, 42.5750900000, -71.0786700000), (1123092, 1001436, 'North Redington Beach', NULL, 'north-redington-beach', 'US', 1, 27.8161400000, -82.8206600000), (1123093, 1001407, 'North Richland Hills', NULL, 'north-richland-hills', 'US', 1, 32.8343000000, -97.2289000000), (1123094, 1001416, 'North Richmond', NULL, 'north-richmond', 'US', 1, 37.9588100000, -122.3674700000), (1123095, 1001436, 'North River Shores', NULL, 'north-river-shores', 'US', 1, 27.2175500000, -80.2697700000), (1123096, 1001425, 'North Riverside', NULL, 'north-riverside', 'US', 1, 41.8428100000, -87.8231100000), (1123097, 1001442, 'North Rock Springs', NULL, 'north-rock-springs', 'US', 1, 41.6435800000, -109.2656800000), (1123098, 1001420, 'North Saint Paul', NULL, 'north-saint-paul', 'US', 1, 45.0124700000, -92.9918800000), (1123099, 1001414, 'North Salt Lake', NULL, 'north-salt-lake', 'US', 1, 40.8485600000, -111.9068800000), (1123100, 1001436, 'North Sarasota', NULL, 'north-sarasota', 'US', 1, 27.3739300000, -82.5184300000), (1123101, 1001433, 'North Scituate', NULL, 'north-scituate', 'US', 1, 42.2189900000, -70.7856000000), (1123102, 1001461, 'North Scituate', NULL, 'north-scituate', 'US', 1, 41.8317700000, -71.5872900000), (1123103, 1001452, 'North Sea', NULL, 'north-sea', 'US', 1, 40.9328800000, -72.4142500000), (1123104, 1001433, 'North Seekonk', NULL, 'north-seekonk', 'US', 1, 41.8892700000, -71.3300500000), (1123105, 1001427, 'North Shore', NULL, 'north-shore', 'US', 1, 37.0820900000, -79.6583600000), (1123106, 1001445, 'North Sioux City', NULL, 'north-sioux-city', 'US', 1, 42.5272200000, -96.4830900000), (1123107, 1001400, 'North Slope Borough', NULL, 'north-slope-borough', 'US', 1, 69.2505600000, -152.0005600000), (1123108, 1001461, 'North Smithfield', NULL, 'north-smithfield', 'US', 1, 41.9667700000, -71.5495100000), (1123109, 1001445, 'North Spearfish', NULL, 'north-spearfish', 'US', 1, 44.5066500000, -103.8921500000), (1123110, 1001427, 'North Springfield', NULL, 'north-springfield', 'US', 1, 38.8042800000, -77.2047000000), (1123111, 1001435, 'North Stamford', NULL, 'north-stamford', 'US', 1, 41.1381500000, -73.5434600000), (1123112, 1001399, 'North Star', NULL, 'north-star', 'US', 1, 39.7612200000, -75.7191000000), (1123113, 1001452, 'North Syracuse', NULL, 'north-syracuse', 'US', 1, 43.1347900000, -76.1299200000), (1123114, 1001440, 'North Terre Haute', NULL, 'north-terre-haute', 'US', 1, 39.5278100000, -87.3603000000), (1123115, 1001452, 'North Tonawanda', NULL, 'north-tonawanda', 'US', 1, 43.0386700000, -78.8642000000), (1123116, 1001430, 'North Tunica', NULL, 'north-tunica', 'US', 1, 34.7009300000, -90.3781500000), (1123117, 1001416, 'North Tustin', NULL, 'north-tustin', 'US', 1, 33.7644600000, -117.7939400000), (1123118, 1001457, 'North Vacherie', NULL, 'north-vacherie', 'US', 1, 29.9968700000, -90.7056500000), (1123119, 1001423, 'North Valley', NULL, 'north-valley', 'US', 1, 35.1733800000, -106.6233600000), (1123120, 1001452, 'North Valley Stream', NULL, 'north-valley-stream', 'US', 1, 40.6851000000, -73.7018000000), (1123121, 1001440, 'North Vernon', NULL, 'north-vernon', 'US', 1, 39.0061700000, -85.6235800000), (1123122, 1001422, 'North Versailles', NULL, 'north-versailles', 'US', 1, 40.3797900000, -79.8094900000), (1123123, 1001422, 'North Wales', NULL, 'north-wales', 'US', 1, 40.2109400000, -75.2782300000), (1123124, 1001452, 'North Wantagh', NULL, 'north-wantagh', 'US', 1, 40.6934300000, -73.5076300000), (1123125, 1001422, 'North Warren', NULL, 'north-warren', 'US', 1, 41.8742300000, -79.1522700000), (1123126, 1001440, 'North Webster', NULL, 'north-webster', 'US', 1, 41.3256000000, -85.6977600000), (1123127, 1001436, 'North Weeki Wachee', NULL, 'north-weeki-wachee', 'US', 1, 28.5501400000, -82.5588800000), (1123128, 1001433, 'North Westport', NULL, 'north-westport', 'US', 1, 41.6603800000, -71.0883800000), (1123129, 1001417, 'North Wildwood', NULL, 'north-wildwood', 'US', 1, 39.0006700000, -74.7993300000), (1123130, 1001447, 'North Wilkesboro', NULL, 'north-wilkesboro', 'US', 1, 36.1584700000, -81.1475800000), (1123131, 1001453, 'North Windham', NULL, 'north-windham', 'US', 1, 43.8342400000, -70.4383900000), (1123132, 1001462, 'North Yelm', NULL, 'north-yelm', 'US', 1, 46.9631500000, -122.6029000000), (1123133, 1001422, 'North York', NULL, 'north-york', 'US', 1, 39.9781500000, -76.7330200000), (1123134, 1001433, 'Northampton', NULL, 'northampton', 'US', 1, 42.3250900000, -72.6412000000), (1123135, 1001422, 'Northampton', NULL, 'northampton', 'US', 1, 40.6862100000, -75.4968500000), (1123136, 1001447, 'Northampton County', NULL, 'northampton-county', 'US', 1, 36.4176600000, -77.3967400000), (1123137, 1001427, 'Northampton County', NULL, 'northampton-county', 'US', 1, 37.3007800000, -75.9285400000), (1123138, 1001422, 'Northampton County', NULL, 'northampton-county', 'US', 1, 40.7542300000, -75.3074200000), (1123139, 1001433, 'Northborough', NULL, 'northborough', 'US', 1, 42.3195400000, -71.6411800000), (1123140, 1001433, 'Northbridge', NULL, 'northbridge', 'US', 1, 42.1514800000, -71.6495100000), (1123141, 1001425, 'Northbrook', NULL, 'northbrook', 'US', 1, 42.1275300000, -87.8289500000), (1123142, 1001447, 'Northchase', NULL, 'northchase', 'US', 1, 34.3078200000, -77.8774900000), (1123143, 1001407, 'Northcliff', NULL, 'northcliff', 'US', 1, 29.6210600000, -98.2247300000), (1123144, 1001407, 'Northcrest', NULL, 'northcrest', 'US', 1, 31.6365500000, -97.0997200000), (1123145, 1001436, 'Northdale', NULL, 'northdale', 'US', 1, 28.0939000000, -82.5056100000), (1123146, 1001452, 'Northeast Ithaca', NULL, 'northeast-ithaca', 'US', 1, 42.4703200000, -76.4622800000), (1123147, 1001422, 'Northern Cambria', NULL, 'northern-cambria', 'US', 1, 40.6592300000, -78.7816900000), (1123148, 1001419, 'Northfield', NULL, 'northfield', 'US', 1, 38.2870100000, -85.6410700000), (1123149, 1001417, 'Northfield', NULL, 'northfield', 'US', 1, 39.3703900000, -74.5501500000), (1123150, 1001433, 'Northfield', NULL, 'northfield', 'US', 1, 42.6959200000, -72.4528700000), (1123151, 1001425, 'Northfield', NULL, 'northfield', 'US', 1, 42.0997500000, -87.7809000000), (1123152, 1001420, 'Northfield', NULL, 'northfield', 'US', 1, 44.4583000000, -93.1616000000), (1123153, 1001404, 'Northfield', NULL, 'northfield', 'US', 1, 43.4331300000, -71.5923000000), (1123154, 1001409, 'Northfield', NULL, 'northfield', 'US', 1, 44.1511700000, -72.6565000000), (1123155, 1001450, 'Northglenn', NULL, 'northglenn', 'US', 1, 39.8855400000, -104.9872000000), (1123156, 1001443, 'Northlake', NULL, 'northlake', 'US', 1, 34.5662200000, -82.6840200000), (1123157, 1001407, 'Northlake', NULL, 'northlake', 'US', 1, 33.1273400000, -97.2655700000), (1123158, 1001425, 'Northlake', NULL, 'northlake', 'US', 1, 41.9172500000, -87.8956200000), (1123159, 1001447, 'Northlakes', NULL, 'northlakes', 'US', 1, 35.7818000000, -81.3750900000), (1123160, 1001456, 'Northport', NULL, 'northport', 'US', 1, 33.2290100000, -87.5772300000), (1123161, 1001453, 'Northport', NULL, 'northport', 'US', 1, 44.3378600000, -68.9614200000), (1123162, 1001452, 'Northport', NULL, 'northport', 'US', 1, 40.9009300000, -73.3431700000), (1123163, 1001416, 'Northridge', NULL, 'northridge', 'US', 1, 34.2283400000, -118.5367500000), (1123164, 1001404, 'Northumberland', NULL, 'northumberland', 'US', 1, 44.5633900000, -71.5587000000), (1123165, 1001452, 'Northumberland', NULL, 'northumberland', 'US', 1, 43.1273000000, -73.5881700000), (1123166, 1001422, 'Northumberland', NULL, 'northumberland', 'US', 1, 40.8917500000, -76.7974700000), (1123167, 1001427, 'Northumberland County', NULL, 'northumberland-county', 'US', 1, 37.8824400000, -76.4717100000), (1123168, 1001422, 'Northumberland County', NULL, 'northumberland-county', 'US', 1, 40.8519800000, -76.7093200000), (1123169, 1001417, 'Northvale', NULL, 'northvale', 'US', 1, 41.0064900000, -73.9490300000), (1123170, 1001426, 'Northview', NULL, 'northview', 'US', 1, 43.0455800000, -85.6005900000), (1123171, 1001426, 'Northville', NULL, 'northville', 'US', 1, 42.4311500000, -83.4832700000), (1123172, 1001452, 'Northville', NULL, 'northville', 'US', 1, 40.9701000000, -72.6189800000), (1123173, 1001400, 'Northwest Arctic Borough', NULL, 'northwest-arctic-borough', 'US', 1, 66.8333300000, -161.0005600000), (1123174, 1001452, 'Northwest Harbor', NULL, 'northwest-harbor', 'US', 1, 41.0098200000, -72.2211900000), (1123175, 1001422, 'Northwest Harborcreek', NULL, 'northwest-harborcreek', 'US', 1, 42.1494400000, -79.9946300000), (1123176, 1001433, 'Northwest Harwich', NULL, 'northwest-harwich', 'US', 1, 41.6902900000, -70.1025000000), (1123177, 1001435, 'Northwest Harwinton', NULL, 'northwest-harwinton', 'US', 1, 41.7768500000, -73.0792200000), (1123178, 1001452, 'Northwest Ithaca', NULL, 'northwest-ithaca', 'US', 1, 42.4705900000, -76.5414500000), (1123179, 1001459, 'Northwood', NULL, 'northwood', 'US', 1, 43.4441200000, -93.2210400000), (1123180, 1001404, 'Northwood', NULL, 'northwood', 'US', 1, 43.1942500000, -71.1509000000), (1123181, 1001451, 'Northwoods', NULL, 'northwoods', 'US', 1, 38.7042200000, -90.2834500000), (1123182, 1001406, 'Norton', NULL, 'norton', 'US', 1, 39.8338900000, -99.8915100000), (1123183, 1001427, 'Norton', NULL, 'norton', 'US', 1, 36.9334300000, -82.6290500000), (1123184, 1001433, 'Norton', NULL, 'norton', 'US', 1, 41.9667700000, -71.1869900000), (1123185, 1001433, 'Norton Center', NULL, 'norton-center', 'US', 1, 41.9725400000, -71.1853500000), (1123186, 1001406, 'Norton County', NULL, 'norton-county', 'US', 1, 39.7843900000, -99.9034800000), (1123187, 1001426, 'Norton Shores', NULL, 'norton-shores', 'US', 1, 43.1689000000, -86.2639500000), (1123188, 1001419, 'Nortonville', NULL, 'nortonville', 'US', 1, 37.1908800000, -87.4527800000), (1123189, 1001459, 'Norwalk', NULL, 'norwalk', 'US', 1, 41.4755500000, -93.6788300000), (1123190, 1001435, 'Norwalk', NULL, 'norwalk', 'US', 1, 41.1176000000, -73.4079000000), (1123191, 1001416, 'Norwalk', NULL, 'norwalk', 'US', 1, 33.9022400000, -118.0817300000), (1123192, 1001426, 'Norway', NULL, 'norway', 'US', 1, 45.7869000000, -87.9037400000), (1123193, 1001453, 'Norway', NULL, 'norway', 'US', 1, 44.2139600000, -70.5447800000), (1123194, 1001433, 'Norwell', NULL, 'norwell', 'US', 1, 42.1617700000, -70.7939300000), (1123195, 1001435, 'Norwich', NULL, 'norwich', 'US', 1, 41.5242600000, -72.0759100000), (1123196, 1001452, 'Norwich', NULL, 'norwich', 'US', 1, 42.5311800000, -75.5235100000), (1123197, 1001447, 'Norwood', NULL, 'norwood', 'US', 1, 35.2195900000, -80.1189500000), (1123198, 1001422, 'Norwood', NULL, 'norwood', 'US', 1, 39.8917800000, -75.2996300000), (1123199, 1001433, 'Norwood', NULL, 'norwood', 'US', 1, 42.1945400000, -71.1995000000), (1123200, 1001417, 'Norwood', NULL, 'norwood', 'US', 1, 40.9981500000, -73.9618000000), (1123201, 1001452, 'Norwood', NULL, 'norwood', 'US', 1, 44.7514500000, -74.9943600000), (1123202, 1001420, 'Norwood (historical)', NULL, 'norwood-historical', 'US', 1, 44.7680200000, -93.9274700000), (1123203, 1001420, 'Norwood Young America', NULL, 'norwood-young-america', 'US', 1, 44.7735700000, -93.9216300000), (1123204, 1001440, 'Notre Dame', NULL, 'notre-dame', 'US', 1, 41.7001900000, -86.2379300000), (1123205, 1001404, 'Nottingham', NULL, 'nottingham', 'US', 1, 43.1145300000, -71.0997800000), (1123206, 1001427, 'Nottoway County', NULL, 'nottoway-county', 'US', 1, 37.1430600000, -78.0512600000), (1123207, 1001416, 'Novato', NULL, 'novato', 'US', 1, 38.1074200000, -122.5697000000), (1123208, 1001426, 'Novi', NULL, 'novi', 'US', 1, 42.4805900000, -83.4754900000), (1123209, 1001421, 'Nowata', NULL, 'nowata', 'US', 1, 36.7006500000, -95.6380300000), (1123210, 1001421, 'Nowata County', NULL, 'nowata-county', 'US', 1, 36.7984800000, -95.6174000000), (1123211, 1001420, 'Nowthen', NULL, 'nowthen', 'US', 1, 45.3280200000, -93.4702300000), (1123212, 1001430, 'Noxubee County', NULL, 'noxubee-county', 'US', 1, 33.1101100000, -88.5698200000), (1123213, 1001452, 'Noyack', NULL, 'noyack', 'US', 1, 40.9956600000, -72.3411900000), (1123214, 1001408, 'Nuckolls County', NULL, 'nuckolls-county', 'US', 1, 40.1763800000, -98.0471800000), (1123215, 1001407, 'Nueces County', NULL, 'nueces-county', 'US', 1, 27.7350600000, -97.5163200000), (1123216, 1001416, 'Nuevo', NULL, 'nuevo', 'US', 1, 33.8014100000, -117.1458700000), (1123217, 1001452, 'Nunda', NULL, 'nunda', 'US', 1, 42.5795100000, -77.9425000000), (1123218, 1001407, 'Nurillo', NULL, 'nurillo', 'US', 1, 26.2670200000, -98.1214000000), (1123219, 1001417, 'Nutley', NULL, 'nutley', 'US', 1, 40.8223200000, -74.1598700000), (1123220, 1001429, 'Nutter Fort', NULL, 'nutter-fort', 'US', 1, 39.2634200000, -80.3198100000), (1123221, 1001452, 'Nyack', NULL, 'nyack', 'US', 1, 41.0906500000, -73.9179100000), (1123222, 1001458, 'Nye County', NULL, 'nye-county', 'US', 1, 38.0423800000, -116.4719300000), (1123223, 1001415, 'Nyssa', NULL, 'nyssa', 'US', 1, 43.8768300000, -116.9948800000), (1123224, 1001411, 'Nānākuli', NULL, 'nanakuli', 'US', 1, 21.3936200000, -158.1542900000), (1123225, 1001459, 'O''Brien County', NULL, 'o-brien-county', 'US', 1, 43.0837500000, -95.6248800000), (1123226, 1001425, 'O''Fallon', NULL, 'o-fallon', 'US', 1, 38.5922700000, -89.9112100000), (1123227, 1001451, 'O''Fallon', NULL, 'o-fallon', 'US', 1, 38.8106100000, -90.6998500000), (1123228, 1001408, 'O''Neill', NULL, 'o-neill', 'US', 1, 42.4577800000, -98.6475900000), (1123229, 1001433, 'Oak Bluffs', NULL, 'oak-bluffs', 'US', 1, 41.4542800000, -70.5619700000), (1123230, 1001425, 'Oak Brook', NULL, 'oak-brook', 'US', 1, 41.8328100000, -87.9289500000), (1123231, 1001407, 'Oak Cliff Place', NULL, 'oak-cliff-place', 'US', 1, 29.9271200000, -95.6267200000), (1123232, 1001441, 'Oak Creek', NULL, 'oak-creek', 'US', 1, 42.8858500000, -87.8631400000), (1123233, 1001425, 'Oak Forest', NULL, 'oak-forest', 'US', 1, 41.6028100000, -87.7439400000), (1123234, 1001419, 'Oak Grove', NULL, 'oak-grove', 'US', 1, 36.6650500000, -87.4427900000), (1123235, 1001457, 'Oak Grove', NULL, 'oak-grove', 'US', 1, 32.8609600000, -91.3884500000), (1123236, 1001451, 'Oak Grove', NULL, 'oak-grove', 'US', 1, 39.0050100000, -94.1293900000), (1123237, 1001454, 'Oak Grove', NULL, 'oak-grove', 'US', 1, 36.4117700000, -82.4245900000), (1123238, 1001427, 'Oak Grove', NULL, 'oak-grove', 'US', 1, 38.9840000000, -77.4038800000), (1123239, 1001420, 'Oak Grove', NULL, 'oak-grove', 'US', 1, 45.3408000000, -93.3269000000), (1123240, 1001415, 'Oak Grove', NULL, 'oak-grove', 'US', 1, 45.4167900000, -122.6400900000), (1123241, 1001443, 'Oak Grove', NULL, 'oak-grove', 'US', 1, 33.9809000000, -81.1428600000), (1123242, 1001462, 'Oak Harbor', NULL, 'oak-harbor', 'US', 1, 48.2931600000, -122.6432200000), (1123243, 1001436, 'Oak Hill', NULL, 'oak-hill', 'US', 1, 28.8644300000, -80.8545000000), (1123244, 1001454, 'Oak Hill', NULL, 'oak-hill', 'US', 1, 36.0878400000, -86.7830500000), (1123245, 1001429, 'Oak Hill', NULL, 'oak-hill', 'US', 1, 37.9723300000, -81.1487100000), (1123246, 1001427, 'Oak Hill', NULL, 'oak-hill', 'US', 1, 38.9258000000, -77.4015600000), (1123247, 1001422, 'Oak Hills', NULL, 'oak-hills', 'US', 1, 40.8247900000, -79.9131100000), (1123248, 1001416, 'Oak Hills', NULL, 'oak-hills', 'US', 1, 34.3831300000, -117.3813500000), (1123249, 1001415, 'Oak Hills', NULL, 'oak-hills', 'US', 1, 45.5412300000, -122.8412100000), (1123250, 1001457, 'Oak Hills Place', NULL, 'oak-hills-place', 'US', 1, 30.3599200000, -91.0876000000), (1123251, 1001447, 'Oak Island', NULL, 'oak-island', 'US', 1, 33.9165600000, -78.1611100000), (1123252, 1001425, 'Oak Lawn', NULL, 'oak-lawn', 'US', 1, 41.7108700000, -87.7581100000), (1123253, 1001407, 'Oak Leaf', NULL, 'oak-leaf', 'US', 1, 32.5204200000, -96.8547200000), (1123254, 1001440, 'Oak Park', NULL, 'oak-park', 'US', 1, 38.3056200000, -85.6963500000), (1123255, 1001425, 'Oak Park', NULL, 'oak-park', 'US', 1, 41.8850300000, -87.7845000000), (1123256, 1001426, 'Oak Park', NULL, 'oak-park', 'US', 1, 42.4594800000, -83.1827100000), (1123257, 1001416, 'Oak Park', NULL, 'oak-park', 'US', 1, 34.1791700000, -118.7628700000), (1123258, 1001420, 'Oak Park Heights', NULL, 'oak-park-heights', 'US', 1, 45.0313600000, -92.7929800000), (1123259, 1001407, 'Oak Point', NULL, 'oak-point', 'US', 1, 33.1901200000, -96.9916700000), (1123260, 1001436, 'Oak Ridge', NULL, 'oak-ridge', 'US', 1, 28.4711200000, -81.4245200000), (1123261, 1001447, 'Oak Ridge', NULL, 'oak-ridge', 'US', 1, 36.1734700000, -79.9889300000), (1123262, 1001454, 'Oak Ridge', NULL, 'oak-ridge', 'US', 1, 36.0103600000, -84.2696400000), (1123263, 1001407, 'Oak Ridge North', NULL, 'oak-ridge-north', 'US', 1, 30.1602200000, -95.4443800000), (1123264, 1001407, 'Oak Trail Shores', NULL, 'oak-trail-shores', 'US', 1, 32.4887500000, -97.8342000000), (1123265, 1001417, 'Oak Valley', NULL, 'oak-valley', 'US', 1, 39.8012200000, -75.1624000000), (1123266, 1001416, 'Oak View', NULL, 'oak-view', 'US', 1, 34.4000000000, -119.3001100000), (1123267, 1001447, 'Oakboro', NULL, 'oakboro', 'US', 1, 35.2257000000, -80.3289500000), (1123268, 1001419, 'Oakbrook', NULL, 'oakbrook', 'US', 1, 38.9997800000, -84.6852200000), (1123269, 1001425, 'Oakbrook Terrace', NULL, 'oakbrook-terrace', 'US', 1, 41.8500300000, -87.9645100000), (1123270, 1001457, 'Oakdale', NULL, 'oakdale', 'US', 1, 30.8160300000, -92.6604200000), (1123271, 1001420, 'Oakdale', NULL, 'oakdale', 'US', 1, 44.9630200000, -92.9649400000), (1123272, 1001452, 'Oakdale', NULL, 'oakdale', 'US', 1, 40.7439900000, -73.1387200000), (1123273, 1001422, 'Oakdale', NULL, 'oakdale', 'US', 1, 40.3981200000, -80.1856100000), (1123274, 1001416, 'Oakdale', NULL, 'oakdale', 'US', 1, 37.7665900000, -120.8471500000), (1123275, 1001418, 'Oakes', NULL, 'oakes', 'US', 1, 46.1385800000, -98.0903800000), (1123276, 1001452, 'Oakfield', NULL, 'oakfield', 'US', 1, 43.0658900000, -78.2697400000), (1123277, 1001441, 'Oakfield', NULL, 'oakfield', 'US', 1, 43.6861000000, -88.5465000000), (1123278, 1001433, 'Oakham', NULL, 'oakham', 'US', 1, 42.3528700000, -72.0453500000), (1123279, 1001421, 'Oakhurst', NULL, 'oakhurst', 'US', 1, 36.0753700000, -96.0644400000), (1123280, 1001417, 'Oakhurst', NULL, 'oakhurst', 'US', 1, 40.2709400000, -74.0162500000), (1123281, 1001416, 'Oakhurst', NULL, 'oakhurst', 'US', 1, 37.3280000000, -119.6493200000), (1123282, 1001436, 'Oakland', NULL, 'oakland', 'US', 1, 28.5550000000, -81.6331300000), (1123283, 1001451, 'Oakland', NULL, 'oakland', 'US', 1, 38.5764400000, -90.3856700000), (1123284, 1001401, 'Oakland', NULL, 'oakland', 'US', 1, 39.4078700000, -79.4067100000), (1123285, 1001454, 'Oakland', NULL, 'oakland', 'US', 1, 35.2289800000, -89.5150800000), (1123286, 1001443, 'Oakland', NULL, 'oakland', 'US', 1, 33.9829300000, -80.4884200000), (1123287, 1001421, 'Oakland', NULL, 'oakland', 'US', 1, 34.1001000000, -96.7938900000), (1123288, 1001459, 'Oakland', NULL, 'oakland', 'US', 1, 41.3091600000, -95.3966700000), (1123289, 1001453, 'Oakland', NULL, 'oakland', 'US', 1, 44.5403400000, -69.7219900000), (1123290, 1001417, 'Oakland', NULL, 'oakland', 'US', 1, 41.0131500000, -74.2643100000), (1123291, 1001408, 'Oakland', NULL, 'oakland', 'US', 1, 41.8358300000, -96.4669700000), (1123292, 1001422, 'Oakland', NULL, 'oakland', 'US', 1, 40.3064600000, -78.8875200000), (1123293, 1001416, 'Oakland', NULL, 'oakland', 'US', 1, 37.8043700000, -122.2708000000), (1123294, 1001440, 'Oakland City', NULL, 'oakland-city', 'US', 1, 38.3386600000, -87.3450100000), (1123295, 1001426, 'Oakland County', NULL, 'oakland-county', 'US', 1, 42.6604100000, -83.3858000000), (1123296, 1001436, 'Oakland Park', NULL, 'oakland-park', 'US', 1, 26.1723100000, -80.1319900000), (1123297, 1001436, 'Oakleaf Plantation', NULL, 'oakleaf-plantation', 'US', 1, 30.1708300000, -81.8354900000), (1123298, 1001416, 'Oakley', NULL, 'oakley', 'US', 1, 37.9974200000, -121.7124500000), (1123299, 1001406, 'Oakley', NULL, 'oakley', 'US', 1, 39.1333400000, -100.8637600000), (1123300, 1001414, 'Oakley', NULL, 'oakley', 'US', 1, 40.7146700000, -111.3007400000), (1123301, 1001417, 'Oaklyn', NULL, 'oaklyn', 'US', 1, 39.9009500000, -75.0846200000), (1123302, 1001422, 'Oakmont', NULL, 'oakmont', 'US', 1, 40.5217300000, -79.8422700000), (1123303, 1001420, 'Oakport', NULL, 'oakport', 'US', 1, 46.9319100000, -96.7789700000), (1123304, 1001415, 'Oakridge', NULL, 'oakridge', 'US', 1, 43.7465100000, -122.4617200000), (1123305, 1001427, 'Oakton', NULL, 'oakton', 'US', 1, 38.8809500000, -77.3008200000), (1123306, 1001451, 'Oakville', NULL, 'oakville', 'US', 1, 38.4700500000, -90.3045600000), (1123307, 1001435, 'Oakville', NULL, 'oakville', 'US', 1, 41.5934300000, -73.0853900000), (1123308, 1001455, 'Oakwood', NULL, 'oakwood', 'US', 1, 34.2276000000, -83.8843500000), (1123309, 1001425, 'Oakwood', NULL, 'oakwood', 'US', 1, 40.1161500000, -87.7783600000), (1123310, 1001452, 'Oakwood', NULL, 'oakwood', 'US', 1, 40.5639900000, -74.1159800000), (1123311, 1001422, 'Oakwood', NULL, 'oakwood', 'US', 1, 41.0106200000, -80.3795100000), (1123312, 1001425, 'Oakwood Hills', NULL, 'oakwood-hills', 'US', 1, 42.2464100000, -88.2428600000), (1123313, 1001416, 'Oasis', NULL, 'oasis', 'US', 1, 33.4658600000, -116.0988900000), (1123314, 1001415, 'Oatfield', NULL, 'oatfield', 'US', 1, 45.4141800000, -122.6000700000), (1123315, 1001457, 'Oberlin', NULL, 'oberlin', 'US', 1, 30.6202000000, -92.7626500000), (1123316, 1001406, 'Oberlin', NULL, 'oberlin', 'US', 1, 39.8183400000, -100.5282000000), (1123317, 1001454, 'Obion', NULL, 'obion', 'US', 1, 36.2589600000, -89.1917400000), (1123318, 1001454, 'Obion County', NULL, 'obion-county', 'US', 1, 36.3582500000, -89.1488000000), (1123319, 1001425, 'Oblong', NULL, 'oblong', 'US', 1, 39.0019900000, -87.9089200000), (1123320, 1001436, 'Ocala', NULL, 'ocala', 'US', 1, 29.1872000000, -82.1400900000), (1123321, 1001416, 'Occidental', NULL, 'occidental', 'US', 1, 38.4074100000, -122.9483300000), (1123322, 1001427, 'Occoquan', NULL, 'occoquan', 'US', 1, 38.6837300000, -77.2602600000), (1123323, 1001417, 'Ocean Acres', NULL, 'ocean-acres', 'US', 1, 39.7434500000, -74.2809800000), (1123324, 1001433, 'Ocean Bluff-Brant Rock', NULL, 'ocean-bluff-brant-rock', 'US', 1, 42.1023400000, -70.6573600000), (1123325, 1001436, 'Ocean City', NULL, 'ocean-city', 'US', 1, 30.4410300000, -86.6135600000), (1123326, 1001401, 'Ocean City', NULL, 'ocean-city', 'US', 1, 38.3365000000, -75.0849100000), (1123327, 1001417, 'Ocean City', NULL, 'ocean-city', 'US', 1, 39.2776200000, -74.5746000000), (1123328, 1001417, 'Ocean County', NULL, 'ocean-county', 'US', 1, 39.8660000000, -74.2500300000), (1123329, 1001417, 'Ocean Gate', NULL, 'ocean-gate', 'US', 1, 39.9267900000, -74.1337500000), (1123330, 1001433, 'Ocean Grove', NULL, 'ocean-grove', 'US', 1, 41.7292700000, -71.2092100000), (1123331, 1001417, 'Ocean Grove', NULL, 'ocean-grove', 'US', 1, 40.2120600000, -74.0065300000), (1123332, 1001462, 'Ocean Park', NULL, 'ocean-park', 'US', 1, 46.4917700000, -124.0520800000), (1123333, 1001401, 'Ocean Pines', NULL, 'ocean-pines', 'US', 1, 38.3953900000, -75.1557400000), (1123334, 1001411, 'Ocean Pointe', NULL, 'ocean-pointe', 'US', 1, 21.3106600000, -158.0363800000), (1123335, 1001436, 'Ocean Ridge', NULL, 'ocean-ridge', 'US', 1, 26.5270200000, -80.0483700000), (1123336, 1001462, 'Ocean Shores', NULL, 'ocean-shores', 'US', 1, 46.9737000000, -124.1562900000), (1123337, 1001430, 'Ocean Springs', NULL, 'ocean-springs', 'US', 1, 30.4113100000, -88.8278100000), (1123338, 1001399, 'Ocean View', NULL, 'ocean-view', 'US', 1, 38.5451100000, -75.0890700000), (1123339, 1001429, 'Oceana', NULL, 'oceana', 'US', 1, 37.6920600000, -81.6240000000), (1123340, 1001426, 'Oceana County', NULL, 'oceana-county', 'US', 1, 43.6817800000, -86.3168300000), (1123341, 1001416, 'Oceano', NULL, 'oceano', 'US', 1, 35.0988600000, -120.6123900000), (1123342, 1001417, 'Oceanport', NULL, 'oceanport', 'US', 1, 40.3181700000, -74.0151400000), (1123343, 1001452, 'Oceanside', NULL, 'oceanside', 'US', 1, 40.6387100000, -73.6401300000), (1123344, 1001416, 'Oceanside', NULL, 'oceanside', 'US', 1, 33.1958700000, -117.3794800000), (1123345, 1001407, 'Ochiltree County', NULL, 'ochiltree-county', 'US', 1, 36.2784100000, -100.8156500000), (1123346, 1001455, 'Ocilla', NULL, 'ocilla', 'US', 1, 31.5944700000, -83.2513000000), (1123347, 1001436, 'Ocoee', NULL, 'ocoee', 'US', 1, 28.5691700000, -81.5439600000), (1123348, 1001455, 'Oconee County', NULL, 'oconee-county', 'US', 1, 33.8349400000, -83.4370500000), (1123349, 1001443, 'Oconee County', NULL, 'oconee-county', 'US', 1, 34.7535100000, -83.0658800000), (1123350, 1001441, 'Oconomowoc', NULL, 'oconomowoc', 'US', 1, 43.1116700000, -88.4992700000), (1123351, 1001441, 'Oconto', NULL, 'oconto', 'US', 1, 44.8872100000, -87.8645500000), (1123352, 1001441, 'Oconto County', NULL, 'oconto-county', 'US', 1, 44.9985100000, -88.2205600000), (1123353, 1001441, 'Oconto Falls', NULL, 'oconto-falls', 'US', 1, 44.8738800000, -88.1428800000), (1123354, 1001415, 'Odell', NULL, 'odell', 'US', 1, 45.6270600000, -121.5431300000), (1123355, 1001407, 'Odem', NULL, 'odem', 'US', 1, 27.9505700000, -97.5822200000), (1123356, 1001401, 'Odenton', NULL, 'odenton', 'US', 1, 39.0840000000, -76.7002500000), (1123357, 1001456, 'Odenville', NULL, 'odenville', 'US', 1, 33.6773200000, -86.3966500000), (1123358, 1001436, 'Odessa', NULL, 'odessa', 'US', 1, 28.1939000000, -82.5917600000), (1123359, 1001451, 'Odessa', NULL, 'odessa', 'US', 1, 38.9991700000, -93.9535600000), (1123360, 1001407, 'Odessa', NULL, 'odessa', 'US', 1, 31.8456800000, -102.3676400000), (1123361, 1001425, 'Odin', NULL, 'odin', 'US', 1, 38.6172700000, -89.0522900000), (1123362, 1001440, 'Odon', NULL, 'odon', 'US', 1, 38.8428300000, -86.9914000000), (1123363, 1001459, 'Oelwein', NULL, 'oelwein', 'US', 1, 42.6733200000, -91.9135000000), (1123364, 1001408, 'Offutt Air Force Base', NULL, 'offutt-air-force-base', 'US', 1, 41.1202400000, -95.9209500000), (1123365, 1001408, 'Ogallala', NULL, 'ogallala', 'US', 1, 41.1280500000, -101.7196200000), (1123366, 1001406, 'Ogden', NULL, 'ogden', 'US', 1, 39.1111100000, -96.7061200000), (1123367, 1001447, 'Ogden', NULL, 'ogden', 'US', 1, 34.2723900000, -77.8185900000), (1123368, 1001459, 'Ogden', NULL, 'ogden', 'US', 1, 42.0391500000, -94.0277300000), (1123369, 1001414, 'Ogden', NULL, 'ogden', 'US', 1, 41.2230000000, -111.9738300000), (1123370, 1001440, 'Ogden Dunes', NULL, 'ogden-dunes', 'US', 1, 41.6228100000, -87.1917000000), (1123371, 1001417, 'Ogdensburg', NULL, 'ogdensburg', 'US', 1, 41.0817600000, -74.5923800000), (1123372, 1001452, 'Ogdensburg', NULL, 'ogdensburg', 'US', 1, 44.6942300000, -75.4863400000), (1123373, 1001426, 'Ogemaw County', NULL, 'ogemaw-county', 'US', 1, 44.3349400000, -84.1264100000), (1123374, 1001445, 'Oglala', NULL, 'oglala', 'US', 1, 43.1885900000, -102.7396200000), (1123375, 1001445, 'Oglala Lakota County', NULL, 'oglala-lakota-county', 'US', 1, 43.3355900000, -102.5516200000), (1123376, 1001425, 'Ogle County', NULL, 'ogle-county', 'US', 1, 42.0426400000, -89.3206500000), (1123377, 1001425, 'Oglesby', NULL, 'oglesby', 'US', 1, 41.2953100000, -89.0595300000), (1123378, 1001455, 'Oglethorpe', NULL, 'oglethorpe', 'US', 1, 32.2937700000, -84.0610200000), (1123379, 1001455, 'Oglethorpe County', NULL, 'oglethorpe-county', 'US', 1, 33.8806500000, -83.0807000000), (1123380, 1001453, 'Ogunquit', NULL, 'ogunquit', 'US', 1, 43.2489800000, -70.5992200000), (1123381, 1001456, 'Ohatchee', NULL, 'ohatchee', 'US', 1, 33.7834300000, -86.0024700000); INSERT INTO `[[dbprefix]]t_city` VALUES (1123382, 1001440, 'Ohio County', NULL, 'ohio-county', 'US', 1, 38.9501000000, -84.9650300000), (1123383, 1001419, 'Ohio County', NULL, 'ohio-county', 'US', 1, 37.4781900000, -86.8488900000), (1123384, 1001429, 'Ohio County', NULL, 'ohio-county', 'US', 1, 40.0969200000, -80.6190600000), (1123385, 1001422, 'Ohioville', NULL, 'ohioville', 'US', 1, 40.6792300000, -80.4947900000), (1123386, 1001423, 'Ohkay Owingeh', NULL, 'ohkay-owingeh', 'US', 1, 36.0508200000, -106.0689700000), (1123387, 1001422, 'Oil City', NULL, 'oil-city', 'US', 1, 41.4339500000, -79.7064400000), (1123388, 1001416, 'Oildale', NULL, 'oildale', 'US', 1, 35.4196800000, -119.0195500000), (1123389, 1001421, 'Oilton', NULL, 'oilton', 'US', 1, 36.0845100000, -96.5836300000), (1123390, 1001416, 'Ojai', NULL, 'ojai', 'US', 1, 34.4480500000, -119.2428900000), (1123391, 1001436, 'Ojus', NULL, 'ojus', 'US', 1, 25.9484300000, -80.1506000000), (1123392, 1001436, 'Okaloosa County', NULL, 'okaloosa-county', 'US', 1, 30.6650300000, -86.5921800000), (1123393, 1001462, 'Okanogan', NULL, 'okanogan', 'US', 1, 48.3612600000, -119.5833900000), (1123394, 1001462, 'Okanogan County', NULL, 'okanogan-county', 'US', 1, 48.5488500000, -119.7407900000), (1123395, 1001421, 'Okarche', NULL, 'okarche', 'US', 1, 35.7258800000, -97.9764400000), (1123396, 1001441, 'Okauchee Lake', NULL, 'okauchee-lake', 'US', 1, 43.1233400000, -88.4406500000), (1123397, 1001425, 'Okawville', NULL, 'okawville', 'US', 1, 38.4342200000, -89.5503700000), (1123398, 1001436, 'Okeechobee', NULL, 'okeechobee', 'US', 1, 27.2439300000, -80.8297800000), (1123399, 1001436, 'Okeechobee County', NULL, 'okeechobee-county', 'US', 1, 27.3862900000, -80.8885800000), (1123400, 1001421, 'Okeene', NULL, 'okeene', 'US', 1, 36.1161500000, -98.3170200000), (1123401, 1001421, 'Okemah', NULL, 'okemah', 'US', 1, 35.4325900000, -96.3050100000), (1123402, 1001426, 'Okemos', NULL, 'okemos', 'US', 1, 42.7222600000, -84.4274700000), (1123403, 1001421, 'Okfuskee County', NULL, 'okfuskee-county', 'US', 1, 35.4654600000, -96.3228000000), (1123404, 1001421, 'Oklahoma City', NULL, 'oklahoma-city', 'US', 1, 35.4675600000, -97.5164300000), (1123405, 1001421, 'Oklahoma County', NULL, 'oklahoma-county', 'US', 1, 35.5515200000, -97.4072000000), (1123406, 1001421, 'Okmulgee', NULL, 'okmulgee', 'US', 1, 35.6234400000, -95.9605500000), (1123407, 1001421, 'Okmulgee County', NULL, 'okmulgee-county', 'US', 1, 35.6466600000, -95.9643100000), (1123408, 1001419, 'Okolona', NULL, 'okolona', 'US', 1, 38.1411800000, -85.6877400000), (1123409, 1001430, 'Okolona', NULL, 'okolona', 'US', 1, 34.0017800000, -88.7553300000), (1123410, 1001430, 'Oktibbeha County', NULL, 'oktibbeha-county', 'US', 1, 33.4249500000, -88.8793000000), (1123411, 1001444, 'Ola', NULL, 'ola', 'US', 1, 35.0323100000, -93.2232300000), (1123412, 1001406, 'Olathe', NULL, 'olathe', 'US', 1, 38.8814000000, -94.8191300000), (1123413, 1001450, 'Olathe', NULL, 'olathe', 'US', 1, 38.6049900000, -107.9822900000), (1123414, 1001452, 'Olcott', NULL, 'olcott', 'US', 1, 43.3378300000, -78.7147600000), (1123415, 1001452, 'Old Bethpage', NULL, 'old-bethpage', 'US', 1, 40.7626000000, -73.4531800000), (1123416, 1001417, 'Old Bridge', NULL, 'old-bridge', 'US', 1, 40.4148300000, -74.3654300000), (1123417, 1001452, 'Old Brookville', NULL, 'old-brookville', 'US', 1, 40.8320400000, -73.6048500000), (1123418, 1001416, 'Old Fig Garden', NULL, 'old-fig-garden', 'US', 1, 36.7988500000, -119.8051500000), (1123419, 1001422, 'Old Forge', NULL, 'old-forge', 'US', 1, 41.3711900000, -75.7349100000), (1123420, 1001435, 'Old Greenwich', NULL, 'old-greenwich', 'US', 1, 41.0228700000, -73.5648500000), (1123421, 1001451, 'Old Jamestown', NULL, 'old-jamestown', 'US', 1, 38.8349400000, -90.2851100000), (1123422, 1001457, 'Old Jefferson', NULL, 'old-jefferson', 'US', 1, 30.3826900000, -91.0170500000), (1123423, 1001435, 'Old Mystic', NULL, 'old-mystic', 'US', 1, 41.3914900000, -71.9617400000), (1123424, 1001422, 'Old Orchard', NULL, 'old-orchard', 'US', 1, 40.6578800000, -75.2621200000), (1123425, 1001453, 'Old Orchard Beach', NULL, 'old-orchard-beach', 'US', 1, 43.5173100000, -70.3775500000), (1123426, 1001407, 'Old River-Winfree', NULL, 'old-river-winfree', 'US', 1, 29.8682800000, -94.8327000000), (1123427, 1001435, 'Old Saybrook', NULL, 'old-saybrook', 'US', 1, 41.2917700000, -72.3762000000), (1123428, 1001435, 'Old Saybrook Center', NULL, 'old-saybrook-center', 'US', 1, 41.2915000000, -72.3652800000), (1123429, 1001417, 'Old Tappan', NULL, 'old-tappan', 'US', 1, 41.0106500000, -73.9912500000), (1123430, 1001453, 'Old Town', NULL, 'old-town', 'US', 1, 44.9342300000, -68.6453100000), (1123431, 1001452, 'Old Westbury', NULL, 'old-westbury', 'US', 1, 40.7887100000, -73.5995700000), (1123432, 1001419, 'Oldham County', NULL, 'oldham-county', 'US', 1, 38.3994400000, -85.4483700000), (1123433, 1001407, 'Oldham County', NULL, 'oldham-county', 'US', 1, 35.4050200000, -102.6028700000), (1123434, 1001436, 'Oldsmar', NULL, 'oldsmar', 'US', 1, 28.0341800000, -82.6651000000), (1123435, 1001452, 'Olean', NULL, 'olean', 'US', 1, 42.0775600000, -78.4297400000), (1123436, 1001422, 'Oley', NULL, 'oley', 'US', 1, 40.3875900000, -75.7896400000), (1123437, 1001436, 'Olga', NULL, 'olga', 'US', 1, 26.7189600000, -81.7123000000), (1123438, 1001407, 'Olivarez', NULL, 'olivarez', 'US', 1, 26.2284100000, -97.9922300000), (1123439, 1001430, 'Olive Branch', NULL, 'olive-branch', 'US', 1, 34.9617600000, -89.8295300000), (1123440, 1001419, 'Olive Hill', NULL, 'olive-hill', 'US', 1, 38.3000800000, -83.1740700000), (1123441, 1001416, 'Olivehurst', NULL, 'olivehurst', 'US', 1, 39.0954500000, -121.5521900000), (1123442, 1001422, 'Oliver', NULL, 'oliver', 'US', 1, 39.9186900000, -79.7178200000), (1123443, 1001418, 'Oliver County', NULL, 'oliver-county', 'US', 1, 47.1152800000, -101.3403600000), (1123444, 1001454, 'Oliver Springs', NULL, 'oliver-springs', 'US', 1, 36.0445200000, -84.3443700000), (1123445, 1001417, 'Olivet', NULL, 'olivet', 'US', 1, 39.5481700000, -75.1546300000), (1123446, 1001454, 'Olivet', NULL, 'olivet', 'US', 1, 35.2142500000, -88.2003100000), (1123447, 1001426, 'Olivet', NULL, 'olivet', 'US', 1, 42.4414300000, -84.9241500000), (1123448, 1001445, 'Olivet', NULL, 'olivet', 'US', 1, 43.2408200000, -97.6753400000), (1123449, 1001451, 'Olivette', NULL, 'olivette', 'US', 1, 38.6653300000, -90.3759500000), (1123450, 1001420, 'Olivia', NULL, 'olivia', 'US', 1, 44.7763500000, -94.9897200000), (1123451, 1001457, 'Olla', NULL, 'olla', 'US', 1, 31.9029400000, -92.2431900000), (1123452, 1001407, 'Olmito', NULL, 'olmito', 'US', 1, 26.0217400000, -97.5341500000), (1123453, 1001407, 'Olmos Park', NULL, 'olmos-park', 'US', 1, 29.4788400000, -98.4875200000), (1123454, 1001420, 'Olmsted County', NULL, 'olmsted-county', 'US', 1, 44.0037500000, -92.4017700000), (1123455, 1001425, 'Olney', NULL, 'olney', 'US', 1, 38.7308800000, -88.0853200000), (1123456, 1001401, 'Olney', NULL, 'olney', 'US', 1, 39.1531600000, -77.0669200000), (1123457, 1001407, 'Olney', NULL, 'olney', 'US', 1, 33.3706600000, -98.7528400000), (1123458, 1001407, 'Olton', NULL, 'olton', 'US', 1, 34.1834100000, -102.1346300000), (1123459, 1001462, 'Olympia', NULL, 'olympia', 'US', 1, 47.0378700000, -122.9007000000), (1123460, 1001425, 'Olympia Fields', NULL, 'olympia-fields', 'US', 1, 41.5133700000, -87.6742100000), (1123461, 1001436, 'Olympia Heights', NULL, 'olympia-heights', 'US', 1, 25.7267700000, -80.3553300000), (1123462, 1001422, 'Olyphant', NULL, 'olyphant', 'US', 1, 41.4684100000, -75.6029700000), (1123463, 1001408, 'Omaha', NULL, 'omaha', 'US', 1, 41.2562600000, -95.9404300000), (1123464, 1001462, 'Omak', NULL, 'omak', 'US', 1, 48.4109900000, -119.5275500000), (1123465, 1001455, 'Omega', NULL, 'omega', 'US', 1, 31.3410200000, -83.5935000000), (1123466, 1001441, 'Omro', NULL, 'omro', 'US', 1, 44.0394300000, -88.7442800000), (1123467, 1001407, 'Onalaska', NULL, 'onalaska', 'US', 1, 30.8057500000, -95.1163300000), (1123468, 1001441, 'Onalaska', NULL, 'onalaska', 'US', 1, 43.8844100000, -91.2351400000), (1123469, 1001427, 'Onancock', NULL, 'onancock', 'US', 1, 37.7118000000, -75.7491000000), (1123470, 1001425, 'Onarga', NULL, 'onarga', 'US', 1, 40.7150400000, -88.0061500000), (1123471, 1001459, 'Onawa', NULL, 'onawa', 'US', 1, 42.0266500000, -96.0972400000), (1123472, 1001454, 'Oneida', NULL, 'oneida', 'US', 1, 36.4981300000, -84.5127200000), (1123473, 1001452, 'Oneida', NULL, 'oneida', 'US', 1, 43.0925700000, -75.6512900000), (1123474, 1001441, 'Oneida', NULL, 'oneida', 'US', 1, 44.4986000000, -88.1828800000), (1123475, 1001452, 'Oneida County', NULL, 'oneida-county', 'US', 1, 43.2417500000, -75.4358400000), (1123476, 1001441, 'Oneida County', NULL, 'oneida-county', 'US', 1, 45.7055900000, -89.5217100000), (1123477, 1001460, 'Oneida County', NULL, 'oneida-county', 'US', 1, 42.1949000000, -112.5396200000), (1123478, 1001456, 'Oneonta', NULL, 'oneonta', 'US', 1, 33.9481500000, -86.4727600000), (1123479, 1001452, 'Oneonta', NULL, 'oneonta', 'US', 1, 42.4528600000, -75.0637700000), (1123480, 1001445, 'Onida', NULL, 'onida', 'US', 1, 44.7080400000, -100.0598400000), (1123481, 1001407, 'Onion Creek', NULL, 'onion-creek', 'US', 1, 30.1366000000, -97.7841700000), (1123482, 1001452, 'Onondaga County', NULL, 'onondaga-county', 'US', 1, 43.0058000000, -76.1946400000), (1123483, 1001433, 'Onset', NULL, 'onset', 'US', 1, 41.7417700000, -70.6578100000), (1123484, 1001447, 'Onslow County', NULL, 'onslow-county', 'US', 1, 34.7630500000, -77.3931900000), (1123485, 1001452, 'Ontario', NULL, 'ontario', 'US', 1, 43.2209000000, -77.2830400000), (1123486, 1001416, 'Ontario', NULL, 'ontario', 'US', 1, 34.0633400000, -117.6508900000), (1123487, 1001415, 'Ontario', NULL, 'ontario', 'US', 1, 44.0265500000, -116.9629400000), (1123488, 1001452, 'Ontario County', NULL, 'ontario-county', 'US', 1, 42.8528500000, -77.2998200000), (1123489, 1001426, 'Ontonagon', NULL, 'ontonagon', 'US', 1, 46.8710500000, -89.3140300000), (1123490, 1001426, 'Ontonagon County', NULL, 'ontonagon-county', 'US', 1, 46.7774900000, -89.3051100000), (1123491, 1001440, 'Oolitic', NULL, 'oolitic', 'US', 1, 38.9008800000, -86.5252700000), (1123492, 1001421, 'Oologah', NULL, 'oologah', 'US', 1, 36.4470400000, -95.7083200000), (1123493, 1001441, 'Oostburg', NULL, 'oostburg', 'US', 1, 43.6227700000, -87.7945300000), (1123494, 1001436, 'Opa-locka', NULL, 'opa-locka', 'US', 1, 25.9023200000, -80.2503300000), (1123495, 1001416, 'Opal Cliffs', NULL, 'opal-cliffs', 'US', 1, 36.9607800000, -121.9641300000), (1123496, 1001456, 'Opelika', NULL, 'opelika', 'US', 1, 32.6454100000, -85.3782800000), (1123497, 1001457, 'Opelousas', NULL, 'opelousas', 'US', 1, 30.5335300000, -92.0815100000), (1123498, 1001456, 'Opp', NULL, 'opp', 'US', 1, 31.2826700000, -86.2555100000), (1123499, 1001462, 'Opportunity', NULL, 'opportunity', 'US', 1, 47.6499500000, -117.2399100000), (1123500, 1001425, 'Oquawka', NULL, 'oquawka', 'US', 1, 40.9319800000, -90.9470900000), (1123501, 1001414, 'Oquirrh', NULL, 'oquirrh', 'US', 1, 40.6305000000, -112.0338300000), (1123502, 1001434, 'Oracle', NULL, 'oracle', 'US', 1, 32.6109100000, -110.7709300000), (1123503, 1001417, 'Oradell', NULL, 'oradell', 'US', 1, 40.9587100000, -74.0368100000), (1123504, 1001451, 'Oran', NULL, 'oran', 'US', 1, 37.0850500000, -89.6553600000), (1123505, 1001407, 'Orange', NULL, 'orange', 'US', 1, 30.0929900000, -93.7365500000), (1123506, 1001427, 'Orange', NULL, 'orange', 'US', 1, 38.2454100000, -78.1108300000), (1123507, 1001435, 'Orange', NULL, 'orange', 'US', 1, 41.2784300000, -73.0256600000), (1123508, 1001433, 'Orange', NULL, 'orange', 'US', 1, 42.5903600000, -72.3098100000), (1123509, 1001417, 'Orange', NULL, 'orange', 'US', 1, 40.7706600000, -74.2326500000), (1123510, 1001416, 'Orange', NULL, 'orange', 'US', 1, 33.7877900000, -117.8531100000), (1123511, 1001456, 'Orange Beach', NULL, 'orange-beach', 'US', 1, 30.2943700000, -87.5735900000), (1123512, 1001436, 'Orange City', NULL, 'orange-city', 'US', 1, 28.9488800000, -81.2986700000), (1123513, 1001459, 'Orange City', NULL, 'orange-city', 'US', 1, 43.0072100000, -96.0583500000), (1123514, 1001436, 'Orange County', NULL, 'orange-county', 'US', 1, 28.5144200000, -81.3234800000), (1123515, 1001440, 'Orange County', NULL, 'orange-county', 'US', 1, 38.5417800000, -86.4950700000), (1123516, 1001447, 'Orange County', NULL, 'orange-county', 'US', 1, 36.0613000000, -79.1206000000), (1123517, 1001407, 'Orange County', NULL, 'orange-county', 'US', 1, 30.1213100000, -93.8939000000), (1123518, 1001427, 'Orange County', NULL, 'orange-county', 'US', 1, 38.2462400000, -78.0134900000), (1123519, 1001452, 'Orange County', NULL, 'orange-county', 'US', 1, 41.4021400000, -74.3055700000), (1123520, 1001409, 'Orange County', NULL, 'orange-county', 'US', 1, 44.0056000000, -72.3766100000), (1123521, 1001416, 'Orange County', NULL, 'orange-county', 'US', 1, 33.6769100000, -117.7761700000), (1123522, 1001416, 'Orange Cove', NULL, 'orange-cove', 'US', 1, 36.6243900000, -119.3137300000), (1123523, 1001407, 'Orange Grove', NULL, 'orange-grove', 'US', 1, 27.9566800000, -97.9369400000), (1123524, 1001452, 'Orange Lake', NULL, 'orange-lake', 'US', 1, 41.5398200000, -74.0982000000), (1123525, 1001436, 'Orange Park', NULL, 'orange-park', 'US', 1, 30.1660700000, -81.7064800000), (1123526, 1001443, 'Orangeburg', NULL, 'orangeburg', 'US', 1, 33.4918200000, -80.8556500000), (1123527, 1001452, 'Orangeburg', NULL, 'orangeburg', 'US', 1, 41.0464900000, -73.9495800000), (1123528, 1001443, 'Orangeburg County', NULL, 'orangeburg-county', 'US', 1, 33.4389900000, -80.8003000000), (1123529, 1001436, 'Orangetree', NULL, 'orangetree', 'US', 1, 26.2928600000, -81.5884200000), (1123530, 1001416, 'Orangevale', NULL, 'orangevale', 'US', 1, 38.6785100000, -121.2257800000), (1123531, 1001414, 'Orangeville', NULL, 'orangeville', 'US', 1, 39.2271900000, -111.0535000000), (1123532, 1001450, 'Orchard City', NULL, 'orchard-city', 'US', 1, 38.8283200000, -107.9709000000), (1123533, 1001419, 'Orchard Grass Hills', NULL, 'orchard-grass-hills', 'US', 1, 38.3236800000, -85.5213500000), (1123534, 1001422, 'Orchard Hills', NULL, 'orchard-hills', 'US', 1, 40.5861800000, -79.5314300000), (1123535, 1001446, 'Orchard Homes', NULL, 'orchard-homes', 'US', 1, 46.8632600000, -114.0484400000), (1123536, 1001426, 'Orchard Lake', NULL, 'orchard-lake', 'US', 1, 42.5830900000, -83.3593800000), (1123537, 1001450, 'Orchard Mesa', NULL, 'orchard-mesa', 'US', 1, 39.0430400000, -108.5523200000), (1123538, 1001452, 'Orchard Park', NULL, 'orchard-park', 'US', 1, 42.7675600000, -78.7439200000), (1123539, 1001462, 'Orchards', NULL, 'orchards', 'US', 1, 45.6665100000, -122.5609300000), (1123540, 1001411, 'Orchidlands Estates', NULL, 'orchidlands-estates', 'US', 1, 19.5608400000, -155.0152700000), (1123541, 1001416, 'Orcutt', NULL, 'orcutt', 'US', 1, 34.8652600000, -120.4360000000), (1123542, 1001408, 'Ord', NULL, 'ord', 'US', 1, 41.6033400000, -98.9262000000), (1123543, 1001450, 'Ordway', NULL, 'ordway', 'US', 1, 38.2180600000, -103.7560600000), (1123544, 1001407, 'Ore City', NULL, 'ore-city', 'US', 1, 32.8001400000, -94.7207600000), (1123545, 1001451, 'Oregon', NULL, 'oregon', 'US', 1, 39.9869400000, -95.1449800000), (1123546, 1001425, 'Oregon', NULL, 'oregon', 'US', 1, 42.0147500000, -89.3323300000), (1123547, 1001441, 'Oregon', NULL, 'oregon', 'US', 1, 42.9261100000, -89.3845600000), (1123548, 1001415, 'Oregon City', NULL, 'oregon-city', 'US', 1, 45.3573400000, -122.6067600000), (1123549, 1001451, 'Oregon County', NULL, 'oregon-county', 'US', 1, 36.6867200000, -91.4032900000), (1123550, 1001422, 'Oreland', NULL, 'oreland', 'US', 1, 40.1184400000, -75.1776800000), (1123551, 1001414, 'Orem', NULL, 'orem', 'US', 1, 40.2969000000, -111.6946500000), (1123552, 1001404, 'Orford', NULL, 'orford', 'US', 1, 43.9053500000, -72.1400900000), (1123553, 1001441, 'Orfordville', NULL, 'orfordville', 'US', 1, 42.6275100000, -89.2531700000), (1123554, 1001416, 'Orinda', NULL, 'orinda', 'US', 1, 37.8771500000, -122.1796900000), (1123555, 1001436, 'Oriole Beach', NULL, 'oriole-beach', 'US', 1, 30.3738100000, -87.0913600000), (1123556, 1001425, 'Orion', NULL, 'orion', 'US', 1, 41.3547600000, -90.3815200000), (1123557, 1001452, 'Oriskany', NULL, 'oriskany', 'US', 1, 43.1572900000, -75.3326700000), (1123558, 1001453, 'Orland', NULL, 'orland', 'US', 1, 44.5703500000, -68.7358600000), (1123559, 1001416, 'Orland', NULL, 'orland', 'US', 1, 39.7473800000, -122.1963700000), (1123560, 1001425, 'Orland Hills', NULL, 'orland-hills', 'US', 1, 41.5853100000, -87.8431100000), (1123561, 1001425, 'Orland Park', NULL, 'orland-park', 'US', 1, 41.6303100000, -87.8539400000), (1123562, 1001436, 'Orlando', NULL, 'orlando', 'US', 1, 28.5383400000, -81.3792400000), (1123563, 1001440, 'Orleans', NULL, 'orleans', 'US', 1, 38.6617200000, -86.4516600000), (1123564, 1001433, 'Orleans', NULL, 'orleans', 'US', 1, 41.7898300000, -69.9897400000), (1123565, 1001452, 'Orleans County', NULL, 'orleans-county', 'US', 1, 43.2507000000, -78.1890100000), (1123566, 1001409, 'Orleans County', NULL, 'orleans-county', 'US', 1, 44.8288100000, -72.2438100000), (1123567, 1001457, 'Orleans Parish', NULL, 'orleans-parish', 'US', 1, 30.0686400000, -89.9281300000), (1123568, 1001436, 'Orlovista', NULL, 'orlovista', 'US', 1, 28.5383400000, -81.4603500000), (1123569, 1001436, 'Ormond Beach', NULL, 'ormond-beach', 'US', 1, 29.2858100000, -81.0558900000), (1123570, 1001436, 'Ormond-by-the-Sea', NULL, 'ormond-by-the-sea', 'US', 1, 29.3491400000, -81.0664500000), (1123571, 1001434, 'Oro Valley', NULL, 'oro-valley', 'US', 1, 32.3909100000, -110.9664900000), (1123572, 1001460, 'Orofino', NULL, 'orofino', 'US', 1, 46.4793500000, -116.2551400000), (1123573, 1001420, 'Orono', NULL, 'orono', 'US', 1, 44.9713500000, -93.6044000000), (1123574, 1001453, 'Orono', NULL, 'orono', 'US', 1, 44.8831200000, -68.6719800000), (1123575, 1001420, 'Oronoco', NULL, 'oronoco', 'US', 1, 44.1660800000, -92.5349100000), (1123576, 1001451, 'Oronogo', NULL, 'oronogo', 'US', 1, 37.1883900000, -94.4702300000), (1123577, 1001416, 'Orosi', NULL, 'orosi', 'US', 1, 36.5449500000, -119.2873400000), (1123578, 1001416, 'Oroville', NULL, 'oroville', 'US', 1, 39.5139400000, -121.5577600000), (1123579, 1001462, 'Oroville', NULL, 'oroville', 'US', 1, 48.9390500000, -119.4356200000), (1123580, 1001416, 'Oroville East', NULL, 'oroville-east', 'US', 1, 39.5112600000, -121.4751900000), (1123581, 1001453, 'Orrington', NULL, 'orrington', 'US', 1, 44.7311800000, -68.8264300000), (1123582, 1001462, 'Orting', NULL, 'orting', 'US', 1, 47.0978800000, -122.2042800000), (1123583, 1001426, 'Ortonville', NULL, 'ortonville', 'US', 1, 42.8522500000, -83.4430000000), (1123584, 1001420, 'Ortonville', NULL, 'ortonville', 'US', 1, 45.3046900000, -96.4447800000), (1123585, 1001422, 'Orwigsburg', NULL, 'orwigsburg', 'US', 1, 40.6548100000, -76.1007700000), (1123586, 1001459, 'Osage', NULL, 'osage', 'US', 1, 43.2841400000, -92.8110300000), (1123587, 1001451, 'Osage Beach', NULL, 'osage-beach', 'US', 1, 38.1295600000, -92.6527700000), (1123588, 1001406, 'Osage City', NULL, 'osage-city', 'US', 1, 38.6339000000, -95.8258200000), (1123589, 1001406, 'Osage County', NULL, 'osage-county', 'US', 1, 38.6523300000, -95.7269500000), (1123590, 1001451, 'Osage County', NULL, 'osage-county', 'US', 1, 38.4603700000, -91.8618400000), (1123591, 1001421, 'Osage County', NULL, 'osage-county', 'US', 1, 36.6291900000, -96.3984900000), (1123592, 1001420, 'Osakis', NULL, 'osakis', 'US', 1, 45.8669100000, -95.1522500000), (1123593, 1001406, 'Osawatomie', NULL, 'osawatomie', 'US', 1, 38.4972400000, -94.9505200000), (1123594, 1001406, 'Osborne', NULL, 'osborne', 'US', 1, 39.4391400000, -98.6962400000), (1123595, 1001406, 'Osborne County', NULL, 'osborne-county', 'US', 1, 39.3503300000, -98.7679900000), (1123596, 1001460, 'Osburn', NULL, 'osburn', 'US', 1, 47.5060400000, -115.9993300000), (1123597, 1001444, 'Osceola', NULL, 'osceola', 'US', 1, 35.7050800000, -89.9695300000), (1123598, 1001451, 'Osceola', NULL, 'osceola', 'US', 1, 38.0467000000, -93.7043800000), (1123599, 1001459, 'Osceola', NULL, 'osceola', 'US', 1, 41.0338900000, -93.7655000000), (1123600, 1001440, 'Osceola', NULL, 'osceola', 'US', 1, 41.6650500000, -86.0758400000), (1123601, 1001408, 'Osceola', NULL, 'osceola', 'US', 1, 41.1797400000, -97.5475500000), (1123602, 1001441, 'Osceola', NULL, 'osceola', 'US', 1, 45.3205200000, -92.7049300000), (1123603, 1001436, 'Osceola County', NULL, 'osceola-county', 'US', 1, 28.0626600000, -81.1494800000), (1123604, 1001459, 'Osceola County', NULL, 'osceola-county', 'US', 1, 43.3785700000, -95.6236900000), (1123605, 1001426, 'Osceola County', NULL, 'osceola-county', 'US', 1, 43.9898700000, -85.3252800000), (1123606, 1001422, 'Osceola Mills', NULL, 'osceola-mills', 'US', 1, 40.8500600000, -78.2705700000), (1123607, 1001426, 'Oscoda County', NULL, 'oscoda-county', 'US', 1, 44.6817500000, -84.1297400000), (1123608, 1001440, 'Osgood', NULL, 'osgood', 'US', 1, 39.1292200000, -85.2916300000), (1123609, 1001441, 'Oshkosh', NULL, 'oshkosh', 'US', 1, 44.0247100000, -88.5426100000), (1123610, 1001408, 'Oshkosh', NULL, 'oshkosh', 'US', 1, 41.4049800000, -102.3443600000), (1123611, 1001406, 'Oskaloosa', NULL, 'oskaloosa', 'US', 1, 39.2152800000, -95.3127500000), (1123612, 1001459, 'Oskaloosa', NULL, 'oskaloosa', 'US', 1, 41.2963900000, -92.6443600000), (1123613, 1001436, 'Osprey', NULL, 'osprey', 'US', 1, 27.1961600000, -82.4903700000), (1123614, 1001420, 'Osseo', NULL, 'osseo', 'US', 1, 45.1194100000, -93.4024500000), (1123615, 1001441, 'Osseo', NULL, 'osseo', 'US', 1, 44.5721800000, -91.2273800000), (1123616, 1001440, 'Ossian', NULL, 'ossian', 'US', 1, 40.8806000000, -85.1663600000), (1123617, 1001452, 'Ossining', NULL, 'ossining', 'US', 1, 41.1628700000, -73.8615200000), (1123618, 1001404, 'Ossipee', NULL, 'ossipee', 'US', 1, 43.6853600000, -71.1167300000), (1123619, 1001457, 'Ossun', NULL, 'ossun', 'US', 1, 30.2760300000, -92.1123500000), (1123620, 1001433, 'Osterville', NULL, 'osterville', 'US', 1, 41.6284400000, -70.3869700000), (1123621, 1001406, 'Oswego', NULL, 'oswego', 'US', 1, 37.1675700000, -95.1099600000), (1123622, 1001425, 'Oswego', NULL, 'oswego', 'US', 1, 41.6828100000, -88.3514600000), (1123623, 1001452, 'Oswego', NULL, 'oswego', 'US', 1, 43.4553500000, -76.5105000000), (1123624, 1001452, 'Oswego County', NULL, 'oswego-county', 'US', 1, 43.4638900000, -76.2086800000), (1123625, 1001450, 'Otero County', NULL, 'otero-county', 'US', 1, 37.9027000000, -103.7164500000), (1123626, 1001423, 'Otero County', NULL, 'otero-county', 'US', 1, 32.6131600000, -105.7416800000), (1123627, 1001462, 'Othello', NULL, 'othello', 'US', 1, 46.8259700000, -119.1752900000), (1123628, 1001433, 'Otis', NULL, 'otis', 'US', 1, 42.1931500000, -73.0917700000), (1123629, 1001462, 'Otis Orchards-East Farms', NULL, 'otis-orchards-east-farms', 'US', 1, 47.7098800000, -117.0797500000), (1123630, 1001452, 'Otisville', NULL, 'otisville', 'US', 1, 41.4734300000, -74.5384900000), (1123631, 1001408, 'Otoe County', NULL, 'otoe-county', 'US', 1, 40.6485000000, -96.1347800000), (1123632, 1001426, 'Otsego', NULL, 'otsego', 'US', 1, 42.4605900000, -85.6964100000), (1123633, 1001420, 'Otsego', NULL, 'otsego', 'US', 1, 45.2741300000, -93.5913500000), (1123634, 1001426, 'Otsego County', NULL, 'otsego-county', 'US', 1, 45.0214400000, -84.5989800000), (1123635, 1001452, 'Otsego County', NULL, 'otsego-county', 'US', 1, 42.6337600000, -75.0326100000), (1123636, 1001406, 'Ottawa', NULL, 'ottawa', 'US', 1, 38.6155700000, -95.2677500000), (1123637, 1001425, 'Ottawa', NULL, 'ottawa', 'US', 1, 41.3455900000, -88.8425800000), (1123638, 1001406, 'Ottawa County', NULL, 'ottawa-county', 'US', 1, 39.1325400000, -97.6502200000), (1123639, 1001421, 'Ottawa County', NULL, 'ottawa-county', 'US', 1, 36.8355100000, -94.8104400000), (1123640, 1001426, 'Ottawa County', NULL, 'ottawa-county', 'US', 1, 43.0026400000, -86.1795000000), (1123641, 1001420, 'Otter Tail County', NULL, 'otter-tail-county', 'US', 1, 46.4088000000, -95.7080000000), (1123642, 1001440, 'Otterbein', NULL, 'otterbein', 'US', 1, 40.4905900000, -87.0964000000), (1123643, 1001459, 'Ottumwa', NULL, 'ottumwa', 'US', 1, 41.0200100000, -92.4113000000), (1123644, 1001444, 'Ouachita County', NULL, 'ouachita-county', 'US', 1, 33.5933600000, -92.8819300000), (1123645, 1001457, 'Ouachita Parish', NULL, 'ouachita-parish', 'US', 1, 32.4783100000, -92.1548700000), (1123646, 1001450, 'Ouray', NULL, 'ouray', 'US', 1, 38.0227700000, -107.6714500000), (1123647, 1001450, 'Ouray County', NULL, 'ouray-county', 'US', 1, 38.1555000000, -107.7693200000), (1123648, 1001441, 'Outagamie County', NULL, 'outagamie-county', 'US', 1, 44.4160900000, -88.4649300000), (1123649, 1001406, 'Overbrook', NULL, 'overbrook', 'US', 1, 38.7805600000, -95.5572000000), (1123650, 1001451, 'Overland', NULL, 'overland', 'US', 1, 38.7011600000, -90.3623400000), (1123651, 1001406, 'Overland Park', NULL, 'overland-park', 'US', 1, 38.9822300000, -94.6707900000), (1123652, 1001401, 'Overlea', NULL, 'overlea', 'US', 1, 39.3634400000, -76.5205200000), (1123653, 1001407, 'Overton', NULL, 'overton', 'US', 1, 32.2746000000, -94.9785500000), (1123654, 1001454, 'Overton County', NULL, 'overton-county', 'US', 1, 36.3450000000, -85.2880800000), (1123655, 1001426, 'Ovid', NULL, 'ovid', 'US', 1, 43.0058600000, -84.3716400000), (1123656, 1001436, 'Oviedo', NULL, 'oviedo', 'US', 1, 28.6700000000, -81.2081200000), (1123657, 1001407, 'Ovilla', NULL, 'ovilla', 'US', 1, 32.5265300000, -96.8863900000), (1123658, 1001421, 'Owasso', NULL, 'owasso', 'US', 1, 36.2695400000, -95.8547100000), (1123659, 1001420, 'Owatonna', NULL, 'owatonna', 'US', 1, 44.0838500000, -93.2260400000), (1123660, 1001452, 'Owego', NULL, 'owego', 'US', 1, 42.1034100000, -76.2621500000), (1123661, 1001440, 'Owen County', NULL, 'owen-county', 'US', 1, 39.3128100000, -86.8376500000), (1123662, 1001419, 'Owen County', NULL, 'owen-county', 'US', 1, 38.5196400000, -84.8281100000), (1123663, 1001456, 'Owens Cross Roads', NULL, 'owens-cross-roads', 'US', 1, 34.5881500000, -86.4588800000), (1123664, 1001419, 'Owensboro', NULL, 'owensboro', 'US', 1, 37.7742200000, -87.1133300000), (1123665, 1001440, 'Owensville', NULL, 'owensville', 'US', 1, 38.2719900000, -87.6878000000), (1123666, 1001451, 'Owensville', NULL, 'owensville', 'US', 1, 38.3456000000, -91.5015500000), (1123667, 1001419, 'Owenton', NULL, 'owenton', 'US', 1, 38.5367200000, -84.8433800000), (1123668, 1001401, 'Owings', NULL, 'owings', 'US', 1, 38.7176200000, -76.6013500000), (1123669, 1001401, 'Owings Mills', NULL, 'owings-mills', 'US', 1, 39.4195500000, -76.7802500000), (1123670, 1001419, 'Owingsville', NULL, 'owingsville', 'US', 1, 38.1448000000, -83.7640800000), (1123671, 1001453, 'Owls Head', NULL, 'owls-head', 'US', 1, 44.0823000000, -69.0572600000), (1123672, 1001426, 'Owosso', NULL, 'owosso', 'US', 1, 42.9978000000, -84.1766400000), (1123673, 1001419, 'Owsley County', NULL, 'owsley-county', 'US', 1, 37.4192000000, -83.6831100000), (1123674, 1001460, 'Owyhee County', NULL, 'owyhee-county', 'US', 1, 42.5815300000, -116.1699800000), (1123675, 1001456, 'Oxford', NULL, 'oxford', 'US', 1, 33.6142700000, -85.8349600000), (1123676, 1001455, 'Oxford', NULL, 'oxford', 'US', 1, 33.6190000000, -83.8674100000), (1123677, 1001406, 'Oxford', NULL, 'oxford', 'US', 1, 37.2741900000, -97.1689300000), (1123678, 1001430, 'Oxford', NULL, 'oxford', 'US', 1, 34.3665000000, -89.5192500000), (1123679, 1001447, 'Oxford', NULL, 'oxford', 'US', 1, 36.3107000000, -78.5908300000), (1123680, 1001422, 'Oxford', NULL, 'oxford', 'US', 1, 39.7853900000, -75.9788300000), (1123681, 1001435, 'Oxford', NULL, 'oxford', 'US', 1, 41.4339900000, -73.1167800000), (1123682, 1001440, 'Oxford', NULL, 'oxford', 'US', 1, 40.5197600000, -87.2477900000), (1123683, 1001433, 'Oxford', NULL, 'oxford', 'US', 1, 42.1167600000, -71.8647900000), (1123684, 1001453, 'Oxford', NULL, 'oxford', 'US', 1, 44.1317400000, -70.4931100000), (1123685, 1001426, 'Oxford', NULL, 'oxford', 'US', 1, 42.8247500000, -83.2646600000), (1123686, 1001417, 'Oxford', NULL, 'oxford', 'US', 1, 40.8031500000, -74.9896200000), (1123687, 1001452, 'Oxford', NULL, 'oxford', 'US', 1, 42.4420200000, -75.5976900000), (1123688, 1001453, 'Oxford County', NULL, 'oxford-county', 'US', 1, 44.4997700000, -70.7565700000), (1123689, 1001416, 'Oxnard', NULL, 'oxnard', 'US', 1, 34.1975000000, -119.1770500000), (1123690, 1001435, 'Oxoboxo River', NULL, 'oxoboxo-river', 'US', 1, 41.4439100000, -72.1250200000), (1123691, 1001401, 'Oxon Hill', NULL, 'oxon-hill', 'US', 1, 38.8034500000, -76.9897000000), (1123692, 1001401, 'Oxon Hill-Glassmanor', NULL, 'oxon-hill-glassmanor', 'US', 1, 38.7961500000, -76.9749900000), (1123693, 1001452, 'Oyster Bay', NULL, 'oyster-bay', 'US', 1, 40.8656500000, -73.5320700000), (1123694, 1001452, 'Oyster Bay Cove', NULL, 'oyster-bay-cove', 'US', 1, 40.8709300000, -73.5109600000), (1123695, 1001407, 'Oyster Creek', NULL, 'oyster-creek', 'US', 1, 29.0030200000, -95.3318800000), (1123696, 1001456, 'Ozark', NULL, 'ozark', 'US', 1, 31.4590600000, -85.6404900000), (1123697, 1001444, 'Ozark', NULL, 'ozark', 'US', 1, 35.4870300000, -93.8277000000), (1123698, 1001451, 'Ozark', NULL, 'ozark', 'US', 1, 37.0208900000, -93.2060200000), (1123699, 1001451, 'Ozark County', NULL, 'ozark-county', 'US', 1, 36.6493200000, -92.4446600000), (1123700, 1001441, 'Ozaukee County', NULL, 'ozaukee-county', 'US', 1, 43.4030500000, -87.8906300000), (1123701, 1001407, 'Ozona', NULL, 'ozona', 'US', 1, 30.7101700000, -101.2006700000), (1123702, 1001452, 'Ozone Park', NULL, 'ozone-park', 'US', 1, 40.6767700000, -73.8437500000), (1123703, 1001446, 'Pablo', NULL, 'pablo', 'US', 1, 47.6002100000, -114.1190000000), (1123704, 1001436, 'Pace', NULL, 'pace', 'US', 1, 30.5993600000, -87.1610800000), (1123705, 1001416, 'Pacheco', NULL, 'pacheco', 'US', 1, 37.9835300000, -122.0752400000), (1123706, 1001451, 'Pacific', NULL, 'pacific', 'US', 1, 38.4820000000, -90.7415200000), (1123707, 1001462, 'Pacific', NULL, 'pacific', 'US', 1, 47.2645500000, -122.2501200000), (1123708, 1001415, 'Pacific City', NULL, 'pacific-city', 'US', 1, 45.2023300000, -123.9628900000), (1123709, 1001462, 'Pacific County', NULL, 'pacific-county', 'US', 1, 46.5512800000, -123.7788600000), (1123710, 1001416, 'Pacific Grove', NULL, 'pacific-grove', 'US', 1, 36.6177400000, -121.9166200000), (1123711, 1001416, 'Pacifica', NULL, 'pacifica', 'US', 1, 37.6138300000, -122.4869200000), (1123712, 1001443, 'Pacolet', NULL, 'pacolet', 'US', 1, 34.8990200000, -81.7617700000), (1123713, 1001441, 'Paddock Lake', NULL, 'paddock-lake', 'US', 1, 42.5775200000, -88.1050900000), (1123714, 1001429, 'Paden City', NULL, 'paden-city', 'US', 1, 39.6028500000, -80.9367700000), (1123715, 1001419, 'Paducah', NULL, 'paducah', 'US', 1, 37.0833900000, -88.6000500000), (1123716, 1001407, 'Paducah', NULL, 'paducah', 'US', 1, 34.0123000000, -100.3020600000), (1123717, 1001434, 'Page', NULL, 'page', 'US', 1, 36.9147200000, -111.4558300000), (1123718, 1001427, 'Page County', NULL, 'page-county', 'US', 1, 38.6199800000, -78.4841300000), (1123719, 1001459, 'Page County', NULL, 'page-county', 'US', 1, 40.7391400000, -95.1501700000), (1123720, 1001451, 'Pagedale', NULL, 'pagedale', 'US', 1, 38.6833800000, -90.3076100000), (1123721, 1001443, 'Pageland', NULL, 'pageland', 'US', 1, 34.7732100000, -80.3917300000), (1123722, 1001450, 'Pagosa Springs', NULL, 'pagosa-springs', 'US', 1, 37.2694500000, -107.0097600000), (1123723, 1001436, 'Pahokee', NULL, 'pahokee', 'US', 1, 26.8200600000, -80.6653400000), (1123724, 1001458, 'Pahrump', NULL, 'pahrump', 'US', 1, 36.2082900000, -115.9839100000), (1123725, 1001411, 'Paia', NULL, 'paia', 'US', 1, 20.9033300000, -156.3694400000), (1123726, 1001407, 'Paint Rock', NULL, 'paint-rock', 'US', 1, 31.5084900000, -99.9200800000), (1123727, 1001452, 'Painted Post', NULL, 'painted-post', 'US', 1, 42.1620200000, -77.0941400000), (1123728, 1001419, 'Paintsville', NULL, 'paintsville', 'US', 1, 37.8145400000, -82.8071100000), (1123729, 1001416, 'Pajaro', NULL, 'pajaro', 'US', 1, 36.9041200000, -121.7485600000), (1123730, 1001407, 'Palacios', NULL, 'palacios', 'US', 1, 28.7080500000, -96.2174700000), (1123731, 1001425, 'Palatine', NULL, 'palatine', 'US', 1, 42.1103000000, -88.0342400000), (1123732, 1001436, 'Palatka', NULL, 'palatka', 'US', 1, 29.6485800000, -81.6375800000), (1123733, 1001452, 'Palenville', NULL, 'palenville', 'US', 1, 42.1745300000, -74.0201400000), (1123734, 1001453, 'Palermo', NULL, 'palermo', 'US', 1, 44.4078500000, -69.4739300000), (1123735, 1001416, 'Palermo', NULL, 'palermo', 'US', 1, 39.4354400000, -121.5380200000), (1123736, 1001425, 'Palestine', NULL, 'palestine', 'US', 1, 39.0036500000, -87.6128000000), (1123737, 1001407, 'Palestine', NULL, 'palestine', 'US', 1, 31.7621200000, -95.6307900000), (1123738, 1001450, 'Palisade', NULL, 'palisade', 'US', 1, 39.1102600000, -108.3509200000), (1123739, 1001417, 'Palisades Park', NULL, 'palisades-park', 'US', 1, 40.8481600000, -73.9976400000), (1123740, 1001436, 'Palm Aire', NULL, 'palm-aire', 'US', 1, 26.2061900000, -80.1917100000), (1123741, 1001436, 'Palm Bay', NULL, 'palm-bay', 'US', 1, 28.0344600000, -80.5886600000), (1123742, 1001436, 'Palm Beach', NULL, 'palm-beach', 'US', 1, 26.7056200000, -80.0364300000), (1123743, 1001436, 'Palm Beach County', NULL, 'palm-beach-county', 'US', 1, 26.6475700000, -80.4365100000), (1123744, 1001436, 'Palm Beach Gardens', NULL, 'palm-beach-gardens', 'US', 1, 26.8233900000, -80.1386500000), (1123745, 1001436, 'Palm Beach Shores', NULL, 'palm-beach-shores', 'US', 1, 26.7781200000, -80.0356000000), (1123746, 1001436, 'Palm City', NULL, 'palm-city', 'US', 1, 27.1678300000, -80.2661600000), (1123747, 1001436, 'Palm Coast', NULL, 'palm-coast', 'US', 1, 29.5849700000, -81.2078400000), (1123748, 1001416, 'Palm Desert', NULL, 'palm-desert', 'US', 1, 33.7225500000, -116.3769700000), (1123749, 1001436, 'Palm Harbor', NULL, 'palm-harbor', 'US', 1, 28.0780700000, -82.7637100000), (1123750, 1001436, 'Palm River-Clair Mel', NULL, 'palm-river-clair-mel', 'US', 1, 27.9238600000, -82.3793900000), (1123751, 1001436, 'Palm Springs', NULL, 'palm-springs', 'US', 1, 26.6359000000, -80.0961500000), (1123752, 1001416, 'Palm Springs', NULL, 'palm-springs', 'US', 1, 33.8303000000, -116.5452900000), (1123753, 1001436, 'Palm Springs North', NULL, 'palm-springs-north', 'US', 1, 25.9351000000, -80.3338300000), (1123754, 1001436, 'Palm Valley', NULL, 'palm-valley', 'US', 1, 30.1774600000, -81.3875800000), (1123755, 1001407, 'Palm Valley', NULL, 'palm-valley', 'US', 1, 26.2017400000, -97.7541600000), (1123756, 1001422, 'Palmdale', NULL, 'palmdale', 'US', 1, 40.2978700000, -76.6185800000), (1123757, 1001416, 'Palmdale', NULL, 'palmdale', 'US', 1, 34.5794300000, -118.1164600000), (1123758, 1001407, 'Palmer', NULL, 'palmer', 'US', 1, 32.4312500000, -96.6677700000), (1123759, 1001433, 'Palmer', NULL, 'palmer', 'US', 1, 42.1584300000, -72.3286900000), (1123760, 1001400, 'Palmer', NULL, 'palmer', 'US', 1, 61.5994100000, -149.1145600000), (1123761, 1001422, 'Palmer Heights', NULL, 'palmer-heights', 'US', 1, 40.6873200000, -75.2624000000), (1123762, 1001450, 'Palmer Lake', NULL, 'palmer-lake', 'US', 1, 39.1222100000, -104.9172000000), (1123763, 1001422, 'Palmerton', NULL, 'palmerton', 'US', 1, 40.8014000000, -75.6119000000), (1123764, 1001436, 'Palmetto', NULL, 'palmetto', 'US', 1, 27.5214300000, -82.5723200000), (1123765, 1001455, 'Palmetto', NULL, 'palmetto', 'US', 1, 33.5178900000, -84.6696500000), (1123766, 1001436, 'Palmetto Bay', NULL, 'palmetto-bay', 'US', 1, 25.6217700000, -80.3247700000), (1123767, 1001436, 'Palmetto Estates', NULL, 'palmetto-estates', 'US', 1, 25.6214900000, -80.3620000000), (1123768, 1001407, 'Palmhurst', NULL, 'palmhurst', 'US', 1, 26.2584100000, -98.3180700000), (1123769, 1001436, 'Palmona Park', NULL, 'palmona-park', 'US', 1, 26.6864600000, -81.8964800000), (1123770, 1001407, 'Palmview', NULL, 'palmview', 'US', 1, 26.2334100000, -98.3708500000), (1123771, 1001407, 'Palmview South', NULL, 'palmview-south', 'US', 1, 26.2156300000, -98.3786300000), (1123772, 1001451, 'Palmyra', NULL, 'palmyra', 'US', 1, 39.7942100000, -91.5232100000), (1123773, 1001427, 'Palmyra', NULL, 'palmyra', 'US', 1, 37.8609700000, -78.2633400000), (1123774, 1001453, 'Palmyra', NULL, 'palmyra', 'US', 1, 44.8464500000, -69.3586600000), (1123775, 1001417, 'Palmyra', NULL, 'palmyra', 'US', 1, 40.0070600000, -75.0282300000), (1123776, 1001452, 'Palmyra', NULL, 'palmyra', 'US', 1, 43.0639500000, -77.2333200000), (1123777, 1001422, 'Palmyra', NULL, 'palmyra', 'US', 1, 40.3089800000, -76.5933000000), (1123778, 1001441, 'Palmyra', NULL, 'palmyra', 'US', 1, 42.8777900000, -88.5862100000), (1123779, 1001459, 'Palo', NULL, 'palo', 'US', 1, 42.0661100000, -91.7954600000), (1123780, 1001422, 'Palo Alto', NULL, 'palo-alto', 'US', 1, 40.6873100000, -76.1721600000), (1123781, 1001416, 'Palo Alto', NULL, 'palo-alto', 'US', 1, 37.4418800000, -122.1430200000), (1123782, 1001459, 'Palo Alto County', NULL, 'palo-alto-county', 'US', 1, 43.0820600000, -94.6781400000), (1123783, 1001416, 'Palo Cedro', NULL, 'palo-cedro', 'US', 1, 40.5637600000, -122.2388900000), (1123784, 1001407, 'Palo Pinto', NULL, 'palo-pinto', 'US', 1, 32.7673500000, -98.2986600000), (1123785, 1001407, 'Palo Pinto County', NULL, 'palo-pinto-county', 'US', 1, 32.7531800000, -98.3130200000), (1123786, 1001407, 'Paloma Creek', NULL, 'paloma-creek', 'US', 1, 33.2253000000, -96.9374200000), (1123787, 1001407, 'Paloma Creek South', NULL, 'paloma-creek-south', 'US', 1, 33.2113600000, -96.9355400000), (1123788, 1001425, 'Palos Heights', NULL, 'palos-heights', 'US', 1, 41.6680900000, -87.7964400000), (1123789, 1001425, 'Palos Hills', NULL, 'palos-hills', 'US', 1, 41.6967000000, -87.8170000000), (1123790, 1001425, 'Palos Park', NULL, 'palos-park', 'US', 1, 41.6672500000, -87.8303300000), (1123791, 1001416, 'Palos Verdes Estates', NULL, 'palos-verdes-estates', 'US', 1, 33.8010500000, -118.3924500000), (1123792, 1001462, 'Palouse', NULL, 'palouse', 'US', 1, 46.9101700000, -117.0757300000), (1123793, 1001447, 'Pamlico County', NULL, 'pamlico-county', 'US', 1, 35.1515200000, -76.6671600000), (1123794, 1001407, 'Pampa', NULL, 'pampa', 'US', 1, 35.5361600000, -100.9598700000), (1123795, 1001443, 'Pamplico', NULL, 'pamplico', 'US', 1, 33.9960000000, -79.5700600000), (1123796, 1001425, 'Pana', NULL, 'pana', 'US', 1, 39.3889300000, -89.0800800000), (1123797, 1001421, 'Panama', NULL, 'panama', 'US', 1, 35.1673200000, -94.6724500000), (1123798, 1001436, 'Panama City', NULL, 'panama-city', 'US', 1, 30.1594600000, -85.6598300000), (1123799, 1001436, 'Panama City Beach', NULL, 'panama-city-beach', 'US', 1, 30.1765900000, -85.8054900000), (1123800, 1001414, 'Panguitch', NULL, 'panguitch', 'US', 1, 37.8227600000, -112.4357600000), (1123801, 1001407, 'Panhandle', NULL, 'panhandle', 'US', 1, 35.3456000000, -101.3804400000), (1123802, 1001427, 'Pannill Fork', NULL, 'pannill-fork', 'US', 1, 36.7090300000, -80.0131000000), (1123803, 1001430, 'Panola County', NULL, 'panola-county', 'US', 1, 34.3639400000, -89.9505700000), (1123804, 1001407, 'Panola County', NULL, 'panola-county', 'US', 1, 32.1623600000, -94.3056500000), (1123805, 1001459, 'Panora', NULL, 'panora', 'US', 1, 41.6916500000, -94.3630200000), (1123806, 1001407, 'Panorama Village', NULL, 'panorama-village', 'US', 1, 30.3810400000, -95.4935500000), (1123807, 1001407, 'Pantego', NULL, 'pantego', 'US', 1, 32.7143000000, -97.1564000000), (1123808, 1001455, 'Panthersville', NULL, 'panthersville', 'US', 1, 33.7073300000, -84.2718700000), (1123809, 1001427, 'Pantops', NULL, 'pantops', 'US', 1, 38.0337900000, -78.4550700000), (1123810, 1001406, 'Paola', NULL, 'paola', 'US', 1, 38.5722400000, -94.8791300000), (1123811, 1001440, 'Paoli', NULL, 'paoli', 'US', 1, 38.5561700000, -86.4683200000), (1123812, 1001422, 'Paoli', NULL, 'paoli', 'US', 1, 40.0420500000, -75.4763100000), (1123813, 1001450, 'Paonia', NULL, 'paonia', 'US', 1, 38.8683200000, -107.5920000000), (1123814, 1001408, 'Papillion', NULL, 'papillion', 'US', 1, 41.1544400000, -96.0422400000), (1123815, 1001450, 'Parachute', NULL, 'parachute', 'US', 1, 39.4519200000, -108.0528500000), (1123816, 1001457, 'Paradis', NULL, 'paradis', 'US', 1, 29.8796500000, -90.4339700000), (1123817, 1001422, 'Paradise', NULL, 'paradise', 'US', 1, 40.0098200000, -76.1285700000), (1123818, 1001416, 'Paradise', NULL, 'paradise', 'US', 1, 39.7596100000, -121.6219200000), (1123819, 1001458, 'Paradise', NULL, 'paradise', 'US', 1, 36.0971900000, -115.1466600000), (1123820, 1001436, 'Paradise Heights', NULL, 'paradise-heights', 'US', 1, 28.6236100000, -81.5439600000), (1123821, 1001423, 'Paradise Hills', NULL, 'paradise-hills', 'US', 1, 35.2006000000, -106.7011400000), (1123822, 1001434, 'Paradise Valley', NULL, 'paradise-valley', 'US', 1, 33.5311500000, -111.9426500000), (1123823, 1001444, 'Paragould', NULL, 'paragould', 'US', 1, 36.0584000000, -90.4973300000), (1123824, 1001416, 'Paramount', NULL, 'paramount', 'US', 1, 33.8894600000, -118.1597900000), (1123825, 1001401, 'Paramount-Long Meadow', NULL, 'paramount-long-meadow', 'US', 1, 39.6804200000, -77.6929000000), (1123826, 1001417, 'Paramus', NULL, 'paramus', 'US', 1, 40.9445400000, -74.0754200000), (1123827, 1001426, 'Parchment', NULL, 'parchment', 'US', 1, 42.3281000000, -85.5697300000), (1123828, 1001441, 'Pardeeville', NULL, 'pardeeville', 'US', 1, 43.5377600000, -89.3001200000), (1123829, 1001444, 'Paris', NULL, 'paris', 'US', 1, 35.2920300000, -93.7299200000), (1123830, 1001425, 'Paris', NULL, 'paris', 'US', 1, 39.6111500000, -87.6961400000), (1123831, 1001419, 'Paris', NULL, 'paris', 'US', 1, 38.2098000000, -84.2529900000), (1123832, 1001451, 'Paris', NULL, 'paris', 'US', 1, 39.4808700000, -92.0012800000), (1123833, 1001454, 'Paris', NULL, 'paris', 'US', 1, 36.3020000000, -88.3267100000), (1123834, 1001407, 'Paris', NULL, 'paris', 'US', 1, 33.6609400000, -95.5555100000), (1123835, 1001453, 'Paris', NULL, 'paris', 'US', 1, 44.2597900000, -70.5006200000), (1123836, 1001460, 'Paris', NULL, 'paris', 'US', 1, 42.2271500000, -111.4010400000), (1123837, 1001406, 'Park City', NULL, 'park-city', 'US', 1, 37.8000100000, -97.3183800000), (1123838, 1001454, 'Park City', NULL, 'park-city', 'US', 1, 35.0820300000, -86.5711100000), (1123839, 1001425, 'Park City', NULL, 'park-city', 'US', 1, 42.3483600000, -87.8842400000), (1123840, 1001414, 'Park City', NULL, 'park-city', 'US', 1, 40.6460600000, -111.4979700000), (1123841, 1001450, 'Park County', NULL, 'park-county', 'US', 1, 39.1193000000, -105.7171700000), (1123842, 1001446, 'Park County', NULL, 'park-county', 'US', 1, 45.4883400000, -110.5263200000), (1123843, 1001442, 'Park County', NULL, 'park-county', 'US', 1, 44.5205700000, -109.5885300000), (1123844, 1001441, 'Park Falls', NULL, 'park-falls', 'US', 1, 45.9344000000, -90.4415500000), (1123845, 1001425, 'Park Forest', NULL, 'park-forest', 'US', 1, 41.4914200000, -87.6744900000), (1123846, 1001422, 'Park Forest Village', NULL, 'park-forest-village', 'US', 1, 40.8067300000, -77.9169500000), (1123847, 1001421, 'Park Hill', NULL, 'park-hill', 'US', 1, 35.8612000000, -94.9588400000), (1123848, 1001451, 'Park Hills', NULL, 'park-hills', 'US', 1, 37.8542200000, -90.5181800000), (1123849, 1001419, 'Park Hills', NULL, 'park-hills', 'US', 1, 39.0714500000, -84.5321700000), (1123850, 1001420, 'Park Rapids', NULL, 'park-rapids', 'US', 1, 46.9221800000, -95.0586300000), (1123851, 1001425, 'Park Ridge', NULL, 'park-ridge', 'US', 1, 42.0111400000, -87.8406200000), (1123852, 1001417, 'Park Ridge', NULL, 'park-ridge', 'US', 1, 41.0376000000, -74.0407000000), (1123853, 1001418, 'Park River', NULL, 'park-river', 'US', 1, 48.3986000000, -97.7412000000), (1123854, 1001452, 'Park Slope', NULL, 'park-slope', 'US', 1, 40.6701000000, -73.9859700000), (1123855, 1001459, 'Park View', NULL, 'park-view', 'US', 1, 41.6942000000, -90.5456900000), (1123856, 1001452, 'Parkchester', NULL, 'parkchester', 'US', 1, 40.8389900000, -73.8604100000), (1123857, 1001440, 'Parke County', NULL, 'parke-county', 'US', 1, 39.7736300000, -87.2063600000), (1123858, 1001436, 'Parker', NULL, 'parker', 'US', 1, 30.1310400000, -85.6032600000), (1123859, 1001443, 'Parker', NULL, 'parker', 'US', 1, 34.8506700000, -82.4534600000), (1123860, 1001407, 'Parker', NULL, 'parker', 'US', 1, 33.0554000000, -96.6219400000), (1123861, 1001434, 'Parker', NULL, 'parker', 'US', 1, 34.1500200000, -114.2891200000), (1123862, 1001445, 'Parker', NULL, 'parker', 'US', 1, 43.3974800000, -97.1364500000), (1123863, 1001450, 'Parker', NULL, 'parker', 'US', 1, 39.5186000000, -104.7613600000), (1123864, 1001440, 'Parker City', NULL, 'parker-city', 'US', 1, 40.1889300000, -85.2041300000), (1123865, 1001407, 'Parker County', NULL, 'parker-county', 'US', 1, 32.7776500000, -97.8051000000), (1123866, 1001420, 'Parkers Prairie', NULL, 'parkers-prairie', 'US', 1, 46.1530200000, -95.3289200000), (1123867, 1001459, 'Parkersburg', NULL, 'parkersburg', 'US', 1, 42.5774800000, -92.7868600000), (1123868, 1001429, 'Parkersburg', NULL, 'parkersburg', 'US', 1, 39.2667400000, -81.5615100000), (1123869, 1001422, 'Parkesburg', NULL, 'parkesburg', 'US', 1, 39.9587200000, -75.9193900000), (1123870, 1001444, 'Parkin', NULL, 'parkin', 'US', 1, 35.2634200000, -90.5712200000), (1123871, 1001436, 'Parkland', NULL, 'parkland', 'US', 1, 26.3100800000, -80.2372700000), (1123872, 1001462, 'Parkland', NULL, 'parkland', 'US', 1, 47.1553800000, -122.4340100000), (1123873, 1001434, 'Parks', NULL, 'parks', 'US', 1, 35.2605700000, -111.9487700000), (1123874, 1001416, 'Parksdale', NULL, 'parksdale', 'US', 1, 36.9471700000, -120.0229400000), (1123875, 1001422, 'Parkside', NULL, 'parkside', 'US', 1, 39.8642800000, -75.3785300000), (1123876, 1001445, 'Parkston', NULL, 'parkston', 'US', 1, 43.3988800000, -97.9836800000), (1123877, 1001401, 'Parkville', NULL, 'parkville', 'US', 1, 39.3773300000, -76.5396900000), (1123878, 1001451, 'Parkville', NULL, 'parkville', 'US', 1, 39.1950000000, -94.6821800000), (1123879, 1001422, 'Parkville', NULL, 'parkville', 'US', 1, 39.7812100000, -76.9633100000), (1123880, 1001420, 'Parkville', NULL, 'parkville', 'US', 1, 47.5310400000, -92.5790700000), (1123881, 1001416, 'Parkway', NULL, 'parkway', 'US', 1, 38.4960200000, -121.4588400000), (1123882, 1001416, 'Parkwood', NULL, 'parkwood', 'US', 1, 36.9268900000, -120.0446100000), (1123883, 1001462, 'Parkwood', NULL, 'parkwood', 'US', 1, 47.5331500000, -122.6101400000), (1123884, 1001416, 'Parlier', NULL, 'parlier', 'US', 1, 36.6116200000, -119.5270700000), (1123885, 1001460, 'Parma', NULL, 'parma', 'US', 1, 43.7851600000, -116.9432100000), (1123886, 1001407, 'Parmer County', NULL, 'parmer-county', 'US', 1, 34.5301000000, -102.7845200000), (1123887, 1001401, 'Parole', NULL, 'parole', 'US', 1, 38.9795600000, -76.5305200000), (1123888, 1001414, 'Parowan', NULL, 'parowan', 'US', 1, 37.8422000000, -112.8280000000), (1123889, 1001418, 'Parshall', NULL, 'parshall', 'US', 1, 47.9533500000, -102.1348900000), (1123890, 1001417, 'Parsippany', NULL, 'parsippany', 'US', 1, 40.8578800000, -74.4259900000), (1123891, 1001406, 'Parsons', NULL, 'parsons', 'US', 1, 37.3403400000, -95.2610800000), (1123892, 1001454, 'Parsons', NULL, 'parsons', 'US', 1, 35.6497900000, -88.1267000000), (1123893, 1001429, 'Parsons', NULL, 'parsons', 'US', 1, 39.0964900000, -79.6809000000), (1123894, 1001453, 'Parsonsfield', NULL, 'parsonsfield', 'US', 1, 43.7270200000, -70.9286800000), (1123895, 1001401, 'Pasadena', NULL, 'pasadena', 'US', 1, 39.1073300000, -76.5710800000), (1123896, 1001407, 'Pasadena', NULL, 'pasadena', 'US', 1, 29.6910600000, -95.2091000000), (1123897, 1001416, 'Pasadena', NULL, 'pasadena', 'US', 1, 34.1477800000, -118.1445200000), (1123898, 1001436, 'Pasadena Hills', NULL, 'pasadena-hills', 'US', 1, 28.2800100000, -82.2243800000), (1123899, 1001416, 'Pasatiempo', NULL, 'pasatiempo', 'US', 1, 37.0043900000, -122.0258000000), (1123900, 1001430, 'Pascagoula', NULL, 'pascagoula', 'US', 1, 30.3657600000, -88.5561300000), (1123901, 1001462, 'Pasco', NULL, 'pasco', 'US', 1, 46.2395800000, -119.1005700000), (1123902, 1001436, 'Pasco County', NULL, 'pasco-county', 'US', 1, 28.3067400000, -82.4388700000), (1123903, 1001461, 'Pascoag', NULL, 'pascoag', 'US', 1, 41.9556500000, -71.7022900000), (1123904, 1001416, 'Paso Robles', NULL, 'paso-robles', 'US', 1, 35.6266400000, -120.6910000000), (1123905, 1001447, 'Pasquotank County', NULL, 'pasquotank-county', 'US', 1, 36.2649000000, -76.2491300000), (1123906, 1001430, 'Pass Christian', NULL, 'pass-christian', 'US', 1, 30.3157500000, -89.2475400000), (1123907, 1001417, 'Passaic', NULL, 'passaic', 'US', 1, 40.8567700000, -74.1284800000), (1123908, 1001417, 'Passaic County', NULL, 'passaic-county', 'US', 1, 41.0337000000, -74.3003200000), (1123909, 1001427, 'Passapatanzy', NULL, 'passapatanzy', 'US', 1, 38.2973500000, -77.3141500000), (1123910, 1001452, 'Patchogue', NULL, 'patchogue', 'US', 1, 40.7656500000, -73.0151100000), (1123911, 1001417, 'Paterson', NULL, 'paterson', 'US', 1, 40.9167700000, -74.1718100000), (1123912, 1001427, 'Patrick County', NULL, 'patrick-county', 'US', 1, 36.6783300000, -80.2843500000), (1123913, 1001427, 'Patrick Springs', NULL, 'patrick-springs', 'US', 1, 36.6418000000, -80.1950500000), (1123914, 1001453, 'Patten', NULL, 'patten', 'US', 1, 45.9964400000, -68.4461400000), (1123915, 1001457, 'Patterson', NULL, 'patterson', 'US', 1, 29.6932600000, -91.3020500000), (1123916, 1001416, 'Patterson', NULL, 'patterson', 'US', 1, 37.4716000000, -121.1296600000), (1123917, 1001416, 'Patterson Tract', NULL, 'patterson-tract', 'US', 1, 36.3795200000, -119.2956000000), (1123918, 1001422, 'Patton', NULL, 'patton', 'US', 1, 40.6339600000, -78.6503000000), (1123919, 1001407, 'Patton Village', NULL, 'patton-village', 'US', 1, 30.1929900000, -95.1688200000), (1123920, 1001460, 'Paul', NULL, 'paul', 'US', 1, 42.6079600000, -113.7833500000), (1123921, 1001434, 'Paulden', NULL, 'paulden', 'US', 1, 34.8855800000, -112.4682300000), (1123922, 1001455, 'Paulding County', NULL, 'paulding-county', 'US', 1, 33.9205500000, -84.8672900000), (1123923, 1001457, 'Paulina', NULL, 'paulina', 'US', 1, 30.0263100000, -90.7131500000), (1123924, 1001459, 'Paullina', NULL, 'paullina', 'US', 1, 42.9791500000, -95.6880700000), (1123925, 1001421, 'Pauls Valley', NULL, 'pauls-valley', 'US', 1, 34.7400800000, -97.2222500000), (1123926, 1001417, 'Paulsboro', NULL, 'paulsboro', 'US', 1, 39.8303900000, -75.2404600000), (1123927, 1001426, 'Paw Paw', NULL, 'paw-paw', 'US', 1, 42.2178200000, -85.8911200000), (1123928, 1001426, 'Paw Paw Lake', NULL, 'paw-paw-lake', 'US', 1, 42.2122600000, -86.2719700000), (1123929, 1001435, 'Pawcatuck', NULL, 'pawcatuck', 'US', 1, 41.3773200000, -71.8336800000), (1123930, 1001421, 'Pawhuska', NULL, 'pawhuska', 'US', 1, 36.6678400000, -96.3372300000); INSERT INTO `[[dbprefix]]t_city` VALUES (1123931, 1001409, 'Pawlet', NULL, 'pawlet', 'US', 1, 43.3467400000, -73.1762200000), (1123932, 1001452, 'Pawling', NULL, 'pawling', 'US', 1, 41.5620400000, -73.6026300000), (1123933, 1001425, 'Pawnee', NULL, 'pawnee', 'US', 1, 39.5917200000, -89.5803700000), (1123934, 1001421, 'Pawnee', NULL, 'pawnee', 'US', 1, 36.3378300000, -96.8039200000), (1123935, 1001408, 'Pawnee City', NULL, 'pawnee-city', 'US', 1, 40.1083300000, -96.1544500000), (1123936, 1001406, 'Pawnee County', NULL, 'pawnee-county', 'US', 1, 38.1813300000, -99.2367300000), (1123937, 1001421, 'Pawnee County', NULL, 'pawnee-county', 'US', 1, 36.3169300000, -96.6993000000), (1123938, 1001408, 'Pawnee County', NULL, 'pawnee-county', 'US', 1, 40.1315400000, -96.2370600000), (1123939, 1001461, 'Pawtucket', NULL, 'pawtucket', 'US', 1, 41.8787100000, -71.3825600000), (1123940, 1001422, 'Paxtang', NULL, 'paxtang', 'US', 1, 40.2589800000, -76.8319200000), (1123941, 1001425, 'Paxton', NULL, 'paxton', 'US', 1, 40.4603100000, -88.0953200000), (1123942, 1001433, 'Paxton', NULL, 'paxton', 'US', 1, 42.3112000000, -71.9281300000), (1123943, 1001422, 'Paxtonia', NULL, 'paxtonia', 'US', 1, 40.3173100000, -76.7944200000), (1123944, 1001460, 'Payette', NULL, 'payette', 'US', 1, 44.0782200000, -116.9337700000), (1123945, 1001460, 'Payette County', NULL, 'payette-county', 'US', 1, 44.0067400000, -116.7608400000), (1123946, 1001421, 'Payne County', NULL, 'payne-county', 'US', 1, 36.0773200000, -96.9757700000), (1123947, 1001420, 'Paynesville', NULL, 'paynesville', 'US', 1, 45.3805200000, -94.7119500000), (1123948, 1001425, 'Payson', NULL, 'payson', 'US', 1, 39.8169900000, -91.2423700000), (1123949, 1001434, 'Payson', NULL, 'payson', 'US', 1, 34.2308700000, -111.3251400000), (1123950, 1001414, 'Payson', NULL, 'payson', 'US', 1, 40.0444000000, -111.7321500000), (1123951, 1001444, 'Pea Ridge', NULL, 'pea-ridge', 'US', 1, 36.4539600000, -94.1152000000), (1123952, 1001429, 'Pea Ridge', NULL, 'pea-ridge', 'US', 1, 38.4139700000, -82.3198700000), (1123953, 1001406, 'Peabody', NULL, 'peabody', 'US', 1, 38.1694600000, -97.1067000000), (1123954, 1001433, 'Peabody', NULL, 'peabody', 'US', 1, 42.5278700000, -70.9286600000), (1123955, 1001462, 'Peaceful Valley', NULL, 'peaceful-valley', 'US', 1, 48.9381500000, -122.1473300000), (1123956, 1001455, 'Peach County', NULL, 'peach-county', 'US', 1, 32.5687800000, -83.8268800000), (1123957, 1001452, 'Peach Lake', NULL, 'peach-lake', 'US', 1, 41.3675900000, -73.5779000000), (1123958, 1001434, 'Peach Springs', NULL, 'peach-springs', 'US', 1, 35.5291600000, -113.4254900000), (1123959, 1001455, 'Peachtree City', NULL, 'peachtree-city', 'US', 1, 33.3967800000, -84.5957600000), (1123960, 1001455, 'Peachtree Corners', NULL, 'peachtree-corners', 'US', 1, 33.9701000000, -84.2215900000), (1123961, 1001417, 'Peapack', NULL, 'peapack', 'US', 1, 40.7167700000, -74.6565500000), (1123962, 1001427, 'Pearisburg', NULL, 'pearisburg', 'US', 1, 37.3267300000, -80.7370200000), (1123963, 1001430, 'Pearl', NULL, 'pearl', 'US', 1, 32.2745900000, -90.1320300000), (1123964, 1001426, 'Pearl Beach', NULL, 'pearl-beach', 'US', 1, 42.6267000000, -82.5976900000), (1123965, 1001411, 'Pearl City', NULL, 'pearl-city', 'US', 1, 21.3973400000, -157.9751600000), (1123966, 1001457, 'Pearl River', NULL, 'pearl-river', 'US', 1, 30.3760300000, -89.7484000000), (1123967, 1001430, 'Pearl River', NULL, 'pearl-river', 'US', 1, 32.7834700000, -89.2278400000), (1123968, 1001452, 'Pearl River', NULL, 'pearl-river', 'US', 1, 41.0589900000, -74.0218100000), (1123969, 1001430, 'Pearl River County', NULL, 'pearl-river-county', 'US', 1, 30.7685800000, -89.5897800000), (1123970, 1001407, 'Pearland', NULL, 'pearland', 'US', 1, 29.5635700000, -95.2860500000), (1123971, 1001430, 'Pearlington', NULL, 'pearlington', 'US', 1, 30.2465800000, -89.6111700000), (1123972, 1001407, 'Pearsall', NULL, 'pearsall', 'US', 1, 28.8921900000, -99.0950300000), (1123973, 1001455, 'Pearson', NULL, 'pearson', 'US', 1, 31.2977000000, -82.8523700000), (1123974, 1001436, 'Pebble Creek', NULL, 'pebble-creek', 'US', 1, 28.1483500000, -82.3456500000), (1123975, 1001407, 'Pecan Acres', NULL, 'pecan-acres', 'US', 1, 32.9701300000, -97.4747400000), (1123976, 1001407, 'Pecan Grove', NULL, 'pecan-grove', 'US', 1, 29.6260700000, -95.7316200000), (1123977, 1001407, 'Pecan Plantation', NULL, 'pecan-plantation', 'US', 1, 32.3604200000, -97.6755800000), (1123978, 1001425, 'Pecatonica', NULL, 'pecatonica', 'US', 1, 42.3139100000, -89.3592800000), (1123979, 1001423, 'Pecos', NULL, 'pecos', 'US', 1, 35.5742000000, -105.6750200000), (1123980, 1001407, 'Pecos', NULL, 'pecos', 'US', 1, 31.4229100000, -103.4932300000), (1123981, 1001407, 'Pecos County', NULL, 'pecos-county', 'US', 1, 30.7810600000, -102.7235700000), (1123982, 1001451, 'Peculiar', NULL, 'peculiar', 'US', 1, 38.7191800000, -94.4585600000), (1123983, 1001416, 'Pedley', NULL, 'pedley', 'US', 1, 33.9752900000, -117.4758800000), (1123984, 1001452, 'Peekskill', NULL, 'peekskill', 'US', 1, 41.2900900000, -73.9204200000), (1123985, 1001454, 'Pegram', NULL, 'pegram', 'US', 1, 36.1006100000, -87.0511200000), (1123986, 1001425, 'Pekin', NULL, 'pekin', 'US', 1, 40.5675400000, -89.6406600000), (1123987, 1001430, 'Pelahatchie', NULL, 'pelahatchie', 'US', 1, 32.3129200000, -89.7984100000), (1123988, 1001456, 'Pelham', NULL, 'pelham', 'US', 1, 33.2856700000, -86.8099900000), (1123989, 1001455, 'Pelham', NULL, 'pelham', 'US', 1, 31.1280200000, -84.1530400000), (1123990, 1001433, 'Pelham', NULL, 'pelham', 'US', 1, 42.3931500000, -72.4037000000), (1123991, 1001404, 'Pelham', NULL, 'pelham', 'US', 1, 42.7345300000, -71.3245100000), (1123992, 1001452, 'Pelham', NULL, 'pelham', 'US', 1, 40.9098200000, -73.8079100000), (1123993, 1001452, 'Pelham Manor', NULL, 'pelham-manor', 'US', 1, 40.8953800000, -73.8070800000), (1123994, 1001436, 'Pelican Bay', NULL, 'pelican-bay', 'US', 1, 26.2312000000, -81.8056400000), (1123995, 1001407, 'Pelican Bay', NULL, 'pelican-bay', 'US', 1, 32.9209600000, -97.5183600000), (1123996, 1001420, 'Pelican Rapids', NULL, 'pelican-rapids', 'US', 1, 46.5707900000, -96.0831100000), (1123997, 1001456, 'Pell City', NULL, 'pell-city', 'US', 1, 33.5862100000, -86.2860900000), (1123998, 1001441, 'Pell Lake', NULL, 'pell-lake', 'US', 1, 42.5380700000, -88.3509300000), (1123999, 1001459, 'Pella', NULL, 'pella', 'US', 1, 41.4080500000, -92.9163100000), (1124000, 1001417, 'Pemberton', NULL, 'pemberton', 'US', 1, 39.9720600000, -74.6829400000), (1124001, 1001417, 'Pemberton Heights', NULL, 'pemberton-heights', 'US', 1, 39.9626100000, -74.6787700000), (1124002, 1001435, 'Pemberwick', NULL, 'pemberwick', 'US', 1, 41.0256500000, -73.6606800000), (1124003, 1001418, 'Pembina County', NULL, 'pembina-county', 'US', 1, 48.7675200000, -97.5518300000), (1124004, 1001455, 'Pembroke', NULL, 'pembroke', 'US', 1, 32.1363400000, -81.6234800000), (1124005, 1001447, 'Pembroke', NULL, 'pembroke', 'US', 1, 34.6801600000, -79.1950400000), (1124006, 1001427, 'Pembroke', NULL, 'pembroke', 'US', 1, 37.3195700000, -80.6389500000), (1124007, 1001404, 'Pembroke', NULL, 'pembroke', 'US', 1, 43.1467500000, -71.4575700000), (1124008, 1001436, 'Pembroke Park', NULL, 'pembroke-park', 'US', 1, 25.9878700000, -80.1747700000), (1124009, 1001436, 'Pembroke Pines', NULL, 'pembroke-pines', 'US', 1, 26.0031500000, -80.2239400000), (1124010, 1001451, 'Pemiscot County', NULL, 'pemiscot-county', 'US', 1, 36.2114500000, -89.7853800000), (1124011, 1001422, 'Pen Argyl', NULL, 'pen-argyl', 'US', 1, 40.8687100000, -75.2549000000), (1124012, 1001422, 'Penbrook', NULL, 'penbrook', 'US', 1, 40.2753700000, -76.8480300000), (1124013, 1001462, 'Pend Oreille County', NULL, 'pend-oreille-county', 'US', 1, 48.5323000000, -117.2739700000), (1124014, 1001408, 'Pender', NULL, 'pender', 'US', 1, 42.1141600000, -96.7072600000), (1124015, 1001447, 'Pender County', NULL, 'pender-county', 'US', 1, 34.5149400000, -77.8888700000), (1124016, 1001440, 'Pendleton', NULL, 'pendleton', 'US', 1, 39.9975400000, -85.7466400000), (1124017, 1001443, 'Pendleton', NULL, 'pendleton', 'US', 1, 34.6517700000, -82.7837500000), (1124018, 1001415, 'Pendleton', NULL, 'pendleton', 'US', 1, 45.6720700000, -118.7886000000), (1124019, 1001419, 'Pendleton County', NULL, 'pendleton-county', 'US', 1, 38.6956300000, -84.3602700000), (1124020, 1001429, 'Pendleton County', NULL, 'pendleton-county', 'US', 1, 38.6807300000, -79.3508900000), (1124021, 1001407, 'Penitas', NULL, 'penitas', 'US', 1, 26.2306300000, -98.4447400000), (1124022, 1001422, 'Penn Estates', NULL, 'penn-estates', 'US', 1, 41.0375000000, -75.2395600000), (1124023, 1001422, 'Penn Hills', NULL, 'penn-hills', 'US', 1, 40.5011800000, -79.8392200000), (1124024, 1001416, 'Penn Valley', NULL, 'penn-valley', 'US', 1, 39.1960000000, -121.1910700000), (1124025, 1001422, 'Penn Wynne', NULL, 'penn-wynne', 'US', 1, 39.9862200000, -75.2754600000), (1124026, 1001452, 'Penn Yan', NULL, 'penn-yan', 'US', 1, 42.6609000000, -77.0538600000), (1124027, 1001422, 'Penndel', NULL, 'penndel', 'US', 1, 40.1520500000, -74.9165600000), (1124028, 1001416, 'Penngrove', NULL, 'penngrove', 'US', 1, 38.2996400000, -122.6666500000), (1124029, 1001417, 'Pennington', NULL, 'pennington', 'US', 1, 40.3284400000, -74.7907200000), (1124030, 1001420, 'Pennington County', NULL, 'pennington-county', 'US', 1, 48.0662300000, -96.0366700000), (1124031, 1001445, 'Pennington County', NULL, 'pennington-county', 'US', 1, 44.0037300000, -102.8238300000), (1124032, 1001427, 'Pennington Gap', NULL, 'pennington-gap', 'US', 1, 36.7584200000, -83.0271100000), (1124033, 1001417, 'Penns Grove', NULL, 'penns-grove', 'US', 1, 39.7295600000, -75.4679700000), (1124034, 1001417, 'Pennsauken', NULL, 'pennsauken', 'US', 1, 39.9562200000, -75.0579500000), (1124035, 1001429, 'Pennsboro', NULL, 'pennsboro', 'US', 1, 39.2850800000, -80.9684400000), (1124036, 1001422, 'Pennsburg', NULL, 'pennsburg', 'US', 1, 40.3909300000, -75.4921200000), (1124037, 1001422, 'Pennside', NULL, 'pennside', 'US', 1, 40.3373200000, -75.8785400000), (1124038, 1001422, 'Pennsport', NULL, 'pennsport', 'US', 1, 39.9276100000, -75.1504500000), (1124039, 1001417, 'Pennsville', NULL, 'pennsville', 'US', 1, 39.6534500000, -75.5165900000), (1124040, 1001422, 'Pennville', NULL, 'pennville', 'US', 1, 39.7895400000, -76.9980400000), (1124041, 1001453, 'Penobscot', NULL, 'penobscot', 'US', 1, 44.4645200000, -68.7111400000), (1124042, 1001453, 'Penobscot County', NULL, 'penobscot-county', 'US', 1, 45.4005100000, -68.6494300000), (1124043, 1001450, 'Penrose', NULL, 'penrose', 'US', 1, 38.4250000000, -105.0227600000), (1124044, 1001422, 'Penryn', NULL, 'penryn', 'US', 1, 40.2050900000, -76.3682900000), (1124045, 1001436, 'Pensacola', NULL, 'pensacola', 'US', 1, 30.4213100000, -87.2169100000), (1124046, 1001425, 'Peoria', NULL, 'peoria', 'US', 1, 40.6936500000, -89.5889900000), (1124047, 1001434, 'Peoria', NULL, 'peoria', 'US', 1, 33.5806000000, -112.2373800000), (1124048, 1001425, 'Peoria County', NULL, 'peoria-county', 'US', 1, 40.7880800000, -89.7599900000), (1124049, 1001425, 'Peoria Heights', NULL, 'peoria-heights', 'US', 1, 40.7472600000, -89.5739800000), (1124050, 1001459, 'Peosta', NULL, 'peosta', 'US', 1, 42.4505600000, -90.8504100000), (1124051, 1001425, 'Peotone', NULL, 'peotone', 'US', 1, 41.3322600000, -87.7853200000), (1124052, 1001411, 'Pepeekeo', NULL, 'pepeekeo', 'US', 1, 19.8336100000, -155.1072200000), (1124053, 1001441, 'Pepin County', NULL, 'pepin-county', 'US', 1, 44.4826500000, -92.1496900000), (1124054, 1001433, 'Pepperell', NULL, 'pepperell', 'US', 1, 42.6659200000, -71.5884000000), (1124055, 1001401, 'Peppermill Village', NULL, 'peppermill-village', 'US', 1, 38.8947200000, -76.8865400000), (1124056, 1001420, 'Pequot Lakes', NULL, 'pequot-lakes', 'US', 1, 46.6030200000, -94.3094400000), (1124057, 1001423, 'Peralta', NULL, 'peralta', 'US', 1, 34.8370000000, -106.6905800000), (1124058, 1001407, 'Perezville', NULL, 'perezville', 'US', 1, 26.2245200000, -98.4005700000), (1124059, 1001420, 'Perham', NULL, 'perham', 'US', 1, 46.5944000000, -95.5725400000), (1124060, 1001434, 'Peridot', NULL, 'peridot', 'US', 1, 33.3103400000, -110.4553800000), (1124061, 1001422, 'Perkasie', NULL, 'perkasie', 'US', 1, 40.3720500000, -75.2926800000), (1124062, 1001421, 'Perkins', NULL, 'perkins', 'US', 1, 35.9739400000, -97.0336400000), (1124063, 1001408, 'Perkins County', NULL, 'perkins-county', 'US', 1, 40.8509400000, -101.6496100000), (1124064, 1001445, 'Perkins County', NULL, 'perkins-county', 'US', 1, 45.4905100000, -102.4756300000), (1124065, 1001447, 'Perquimans County', NULL, 'perquimans-county', 'US', 1, 36.1772000000, -76.4076700000), (1124066, 1001416, 'Perris', NULL, 'perris', 'US', 1, 33.7825200000, -117.2286500000), (1124067, 1001436, 'Perry', NULL, 'perry', 'US', 1, 30.1176600000, -83.5827400000), (1124068, 1001455, 'Perry', NULL, 'perry', 'US', 1, 32.4582100000, -83.7315700000), (1124069, 1001421, 'Perry', NULL, 'perry', 'US', 1, 36.2894900000, -97.2881000000), (1124070, 1001459, 'Perry', NULL, 'perry', 'US', 1, 41.8386000000, -94.1071800000), (1124071, 1001426, 'Perry', NULL, 'perry', 'US', 1, 42.8264200000, -84.2194100000), (1124072, 1001452, 'Perry', NULL, 'perry', 'US', 1, 42.7156200000, -78.0055600000), (1124073, 1001414, 'Perry', NULL, 'perry', 'US', 1, 41.4649400000, -112.0324500000), (1124074, 1001456, 'Perry County', NULL, 'perry-county', 'US', 1, 32.6384700000, -87.2944000000), (1124075, 1001444, 'Perry County', NULL, 'perry-county', 'US', 1, 34.9473700000, -92.9314700000), (1124076, 1001425, 'Perry County', NULL, 'perry-county', 'US', 1, 38.0837600000, -89.3670200000), (1124077, 1001440, 'Perry County', NULL, 'perry-county', 'US', 1, 38.0796500000, -86.6380300000), (1124078, 1001419, 'Perry County', NULL, 'perry-county', 'US', 1, 37.2442900000, -83.2214800000), (1124079, 1001451, 'Perry County', NULL, 'perry-county', 'US', 1, 37.7071400000, -89.8244100000), (1124080, 1001430, 'Perry County', NULL, 'perry-county', 'US', 1, 31.1720200000, -88.9923300000), (1124081, 1001454, 'Perry County', NULL, 'perry-county', 'US', 1, 35.6426300000, -87.8589700000), (1124082, 1001422, 'Perry County', NULL, 'perry-county', 'US', 1, 40.3984100000, -77.2623000000), (1124083, 1001401, 'Perry Hall', NULL, 'perry-hall', 'US', 1, 39.4126100000, -76.4635700000), (1124084, 1001450, 'Perry Park', NULL, 'perry-park', 'US', 1, 39.2566600000, -104.9924800000), (1124085, 1001401, 'Perryman', NULL, 'perryman', 'US', 1, 39.4695500000, -76.2044000000), (1124086, 1001422, 'Perryopolis', NULL, 'perryopolis', 'US', 1, 40.0870200000, -79.7506000000), (1124087, 1001407, 'Perryton', NULL, 'perryton', 'US', 1, 36.4000300000, -100.8026500000), (1124088, 1001444, 'Perryville', NULL, 'perryville', 'US', 1, 35.0048100000, -92.8026700000), (1124089, 1001451, 'Perryville', NULL, 'perryville', 'US', 1, 37.7242200000, -89.8612200000), (1124090, 1001401, 'Perryville', NULL, 'perryville', 'US', 1, 39.5601100000, -76.0713400000), (1124091, 1001458, 'Pershing County', NULL, 'pershing-county', 'US', 1, 40.4403600000, -118.4044400000), (1124092, 1001447, 'Person County', NULL, 'person-county', 'US', 1, 36.3901100000, -78.9717100000), (1124093, 1001452, 'Perth', NULL, 'perth', 'US', 1, 43.0175700000, -74.1940200000), (1124094, 1001417, 'Perth Amboy', NULL, 'perth-amboy', 'US', 1, 40.5067700000, -74.2654200000), (1124095, 1001425, 'Peru', NULL, 'peru', 'US', 1, 41.3275300000, -89.1289700000), (1124096, 1001440, 'Peru', NULL, 'peru', 'US', 1, 40.7536500000, -86.0688800000), (1124097, 1001453, 'Peru', NULL, 'peru', 'US', 1, 44.5067300000, -70.4053400000), (1124098, 1001452, 'Peru', NULL, 'peru', 'US', 1, 44.5783800000, -73.5268000000), (1124099, 1001441, 'Peshtigo', NULL, 'peshtigo', 'US', 1, 45.0544300000, -87.7492700000), (1124100, 1001430, 'Petal', NULL, 'petal', 'US', 1, 31.3465600000, -89.2600600000), (1124101, 1001416, 'Petaluma', NULL, 'petaluma', 'US', 1, 38.2324200000, -122.6366500000), (1124102, 1001404, 'Peterborough', NULL, 'peterborough', 'US', 1, 42.8706400000, -71.9517500000), (1124103, 1001440, 'Petersburg', NULL, 'petersburg', 'US', 1, 38.4919900000, -87.2786200000), (1124104, 1001429, 'Petersburg', NULL, 'petersburg', 'US', 1, 38.9926100000, -79.1239200000), (1124105, 1001427, 'Petersburg', NULL, 'petersburg', 'US', 1, 37.2279300000, -77.4019300000), (1124106, 1001425, 'Petersburg', NULL, 'petersburg', 'US', 1, 40.0117200000, -89.8481700000), (1124107, 1001426, 'Petersburg', NULL, 'petersburg', 'US', 1, 41.9011600000, -83.7149400000), (1124108, 1001400, 'Petersburg', NULL, 'petersburg', 'US', 1, 56.8125000000, -132.9555600000), (1124109, 1001407, 'Petersburg', NULL, 'petersburg', 'US', 1, 33.8695200000, -101.5973900000), (1124110, 1001400, 'Petersburg Borough', NULL, 'petersburg-borough', 'US', 1, 56.7652900000, -133.1931300000), (1124111, 1001426, 'Petoskey', NULL, 'petoskey', 'US', 1, 45.3733400000, -84.9553300000), (1124112, 1001446, 'Petroleum County', NULL, 'petroleum-county', 'US', 1, 47.1175100000, -108.2501200000), (1124113, 1001451, 'Pettis County', NULL, 'pettis-county', 'US', 1, 38.7282900000, -93.2851000000), (1124114, 1001451, 'Pevely', NULL, 'pevely', 'US', 1, 38.2833900000, -90.3951200000), (1124115, 1001441, 'Pewaukee', NULL, 'pewaukee', 'US', 1, 43.0805700000, -88.2612000000), (1124116, 1001419, 'Pewee Valley', NULL, 'pewee-valley', 'US', 1, 38.3106200000, -85.4874600000), (1124117, 1001407, 'Pflugerville', NULL, 'pflugerville', 'US', 1, 30.4393700000, -97.6200000000), (1124118, 1001407, 'Pharr', NULL, 'pharr', 'US', 1, 26.1948000000, -98.1836200000), (1124119, 1001416, 'Phelan', NULL, 'phelan', 'US', 1, 34.4261100000, -117.5722800000), (1124120, 1001452, 'Phelps', NULL, 'phelps', 'US', 1, 42.9575600000, -77.0574700000), (1124121, 1001451, 'Phelps County', NULL, 'phelps-county', 'US', 1, 37.8771300000, -91.7923600000), (1124122, 1001408, 'Phelps County', NULL, 'phelps-county', 'US', 1, 40.5111100000, -99.4145400000), (1124123, 1001456, 'Phenix City', NULL, 'phenix-city', 'US', 1, 32.4709800000, -85.0007700000), (1124124, 1001456, 'Phil Campbell', NULL, 'phil-campbell', 'US', 1, 34.3509300000, -87.7064200000), (1124125, 1001430, 'Philadelphia', NULL, 'philadelphia', 'US', 1, 32.7715200000, -89.1167300000), (1124126, 1001422, 'Philadelphia', NULL, 'philadelphia', 'US', 1, 39.9523300000, -75.1637900000), (1124127, 1001452, 'Philadelphia', NULL, 'philadelphia', 'US', 1, 44.1545000000, -75.7088200000), (1124128, 1001422, 'Philadelphia County', NULL, 'philadelphia-county', 'US', 1, 40.0076400000, -75.1339600000), (1124129, 1001445, 'Philip', NULL, 'philip', 'US', 1, 44.0394300000, -101.6651400000), (1124130, 1001429, 'Philippi', NULL, 'philippi', 'US', 1, 39.1523200000, -80.0403600000), (1124131, 1001422, 'Philipsburg', NULL, 'philipsburg', 'US', 1, 40.8964500000, -78.2205700000), (1124132, 1001446, 'Philipsburg', NULL, 'philipsburg', 'US', 1, 46.3321500000, -113.2942300000), (1124133, 1001453, 'Phillips', NULL, 'phillips', 'US', 1, 44.8231100000, -70.3395100000), (1124134, 1001441, 'Phillips', NULL, 'phillips', 'US', 1, 45.6966300000, -90.4004300000), (1124135, 1001444, 'Phillips County', NULL, 'phillips-county', 'US', 1, 34.4282900000, -90.8480200000), (1124136, 1001406, 'Phillips County', NULL, 'phillips-county', 'US', 1, 39.7845800000, -99.3470200000), (1124137, 1001450, 'Phillips County', NULL, 'phillips-county', 'US', 1, 40.5938800000, -102.3575800000), (1124138, 1001446, 'Phillips County', NULL, 'phillips-county', 'US', 1, 48.2590900000, -107.9132900000), (1124139, 1001406, 'Phillipsburg', NULL, 'phillipsburg', 'US', 1, 39.7561200000, -99.3239900000), (1124140, 1001417, 'Phillipsburg', NULL, 'phillipsburg', 'US', 1, 40.6937100000, -75.1901800000), (1124141, 1001433, 'Phillipston', NULL, 'phillipston', 'US', 1, 42.5487000000, -72.1328600000), (1124142, 1001452, 'Philmont', NULL, 'philmont', 'US', 1, 42.2484200000, -73.6531800000), (1124143, 1001425, 'Philo', NULL, 'philo', 'US', 1, 40.0069800000, -88.1581000000), (1124144, 1001415, 'Philomath', NULL, 'philomath', 'US', 1, 44.5401200000, -123.3676000000), (1124145, 1001453, 'Phippsburg', NULL, 'phippsburg', 'US', 1, 43.8206400000, -69.8147700000), (1124146, 1001425, 'Phoenix', NULL, 'phoenix', 'US', 1, 41.6111500000, -87.6347700000), (1124147, 1001452, 'Phoenix', NULL, 'phoenix', 'US', 1, 43.2311800000, -76.3007600000), (1124148, 1001434, 'Phoenix', NULL, 'phoenix', 'US', 1, 33.4483800000, -112.0740400000), (1124149, 1001415, 'Phoenix', NULL, 'phoenix', 'US', 1, 42.2754100000, -122.8180900000), (1124150, 1001416, 'Phoenix Lake', NULL, 'phoenix-lake', 'US', 1, 38.0059400000, -120.3070200000), (1124151, 1001422, 'Phoenixville', NULL, 'phoenixville', 'US', 1, 40.1303800000, -75.5149100000), (1124152, 1001425, 'Piatt County', NULL, 'piatt-county', 'US', 1, 40.0103700000, -88.5910900000), (1124153, 1001430, 'Picayune', NULL, 'picayune', 'US', 1, 30.5255600000, -89.6778800000), (1124154, 1001430, 'Pickens', NULL, 'pickens', 'US', 1, 32.8837400000, -89.9714700000), (1124155, 1001443, 'Pickens', NULL, 'pickens', 'US', 1, 34.8834500000, -82.7073600000), (1124156, 1001456, 'Pickens County', NULL, 'pickens-county', 'US', 1, 33.2808800000, -88.0886900000), (1124157, 1001455, 'Pickens County', NULL, 'pickens-county', 'US', 1, 34.4643200000, -84.4656400000), (1124158, 1001443, 'Pickens County', NULL, 'pickens-county', 'US', 1, 34.8875200000, -82.7253200000), (1124159, 1001454, 'Pickett County', NULL, 'pickett-county', 'US', 1, 36.5584100000, -85.0749900000), (1124160, 1001462, 'Picnic Point', NULL, 'picnic-point', 'US', 1, 47.8811100000, -122.3284000000), (1124161, 1001462, 'Picnic Point-North Lynnwood', NULL, 'picnic-point-north-lynnwood', 'US', 1, 47.8627800000, -122.2949700000), (1124162, 1001416, 'Pico Rivera', NULL, 'pico-rivera', 'US', 1, 33.9830700000, -118.0967300000), (1124163, 1001434, 'Picture Rocks', NULL, 'picture-rocks', 'US', 1, 32.3459100000, -111.2462100000), (1124164, 1001456, 'Piedmont', NULL, 'piedmont', 'US', 1, 33.9245500000, -85.6113500000), (1124165, 1001451, 'Piedmont', NULL, 'piedmont', 'US', 1, 37.1544900000, -90.6956700000), (1124166, 1001443, 'Piedmont', NULL, 'piedmont', 'US', 1, 34.7023400000, -82.4645700000), (1124167, 1001421, 'Piedmont', NULL, 'piedmont', 'US', 1, 35.6420000000, -97.7464300000), (1124168, 1001416, 'Piedmont', NULL, 'piedmont', 'US', 1, 37.8243700000, -122.2316300000), (1124169, 1001408, 'Pierce', NULL, 'pierce', 'US', 1, 42.1991700000, -97.5267200000), (1124170, 1001451, 'Pierce City', NULL, 'pierce-city', 'US', 1, 36.9459000000, -94.0002100000), (1124171, 1001455, 'Pierce County', NULL, 'pierce-county', 'US', 1, 31.3587600000, -82.2127400000), (1124172, 1001408, 'Pierce County', NULL, 'pierce-county', 'US', 1, 42.2643700000, -97.6012900000), (1124173, 1001441, 'Pierce County', NULL, 'pierce-county', 'US', 1, 44.7196300000, -92.4224900000), (1124174, 1001418, 'Pierce County', NULL, 'pierce-county', 'US', 1, 48.2496000000, -99.9718200000), (1124175, 1001462, 'Pierce County', NULL, 'pierce-county', 'US', 1, 47.0376400000, -122.1373500000), (1124176, 1001440, 'Pierceton', NULL, 'pierceton', 'US', 1, 41.2003200000, -85.7055400000), (1124177, 1001452, 'Piermont', NULL, 'piermont', 'US', 1, 41.0420400000, -73.9181900000), (1124178, 1001445, 'Pierre', NULL, 'pierre', 'US', 1, 44.3683200000, -100.3509700000), (1124179, 1001457, 'Pierre Part', NULL, 'pierre-part', 'US', 1, 29.9652000000, -91.2031600000), (1124180, 1001436, 'Pierson', NULL, 'pierson', 'US', 1, 29.2394200000, -81.4656300000), (1124181, 1001420, 'Pierz', NULL, 'pierz', 'US', 1, 45.9816300000, -94.1047100000), (1124182, 1001426, 'Pigeon', NULL, 'pigeon', 'US', 1, 43.8300200000, -83.2699600000), (1124183, 1001454, 'Pigeon Forge', NULL, 'pigeon-forge', 'US', 1, 35.7884200000, -83.5543300000), (1124184, 1001444, 'Piggott', NULL, 'piggott', 'US', 1, 36.3828400000, -90.1906500000), (1124185, 1001456, 'Pike County', NULL, 'pike-county', 'US', 1, 31.8027200000, -85.9409200000), (1124186, 1001444, 'Pike County', NULL, 'pike-county', 'US', 1, 34.1635000000, -93.6563400000), (1124187, 1001455, 'Pike County', NULL, 'pike-county', 'US', 1, 33.0922700000, -84.3892300000), (1124188, 1001425, 'Pike County', NULL, 'pike-county', 'US', 1, 39.6225000000, -90.8862900000), (1124189, 1001440, 'Pike County', NULL, 'pike-county', 'US', 1, 38.3987800000, -87.2321600000), (1124190, 1001419, 'Pike County', NULL, 'pike-county', 'US', 1, 37.4690200000, -82.3958700000), (1124191, 1001451, 'Pike County', NULL, 'pike-county', 'US', 1, 39.3438400000, -91.1713600000), (1124192, 1001430, 'Pike County', NULL, 'pike-county', 'US', 1, 31.1749100000, -90.4041600000), (1124193, 1001422, 'Pike County', NULL, 'pike-county', 'US', 1, 41.3319900000, -75.0338300000), (1124194, 1001399, 'Pike Creek', NULL, 'pike-creek', 'US', 1, 39.7309500000, -75.7041000000), (1124195, 1001399, 'Pike Creek Valley', NULL, 'pike-creek-valley', 'US', 1, 39.7362200000, -75.6982700000), (1124196, 1001456, 'Pike Road', NULL, 'pike-road', 'US', 1, 32.2843100000, -86.1030200000), (1124197, 1001401, 'Pikesville', NULL, 'pikesville', 'US', 1, 39.3742700000, -76.7224700000), (1124198, 1001419, 'Pikeville', NULL, 'pikeville', 'US', 1, 37.4792700000, -82.5187600000), (1124199, 1001454, 'Pikeville', NULL, 'pikeville', 'US', 1, 35.6056200000, -85.1888500000), (1124200, 1001447, 'Pilot Mountain', NULL, 'pilot-mountain', 'US', 1, 36.3865300000, -80.4695000000), (1124201, 1001407, 'Pilot Point', NULL, 'pilot-point', 'US', 1, 33.3965000000, -96.9605600000), (1124202, 1001415, 'Pilot Rock', NULL, 'pilot-rock', 'US', 1, 45.4831800000, -118.8299800000), (1124203, 1001434, 'Pima', NULL, 'pima', 'US', 1, 32.8965600000, -109.8283500000), (1124204, 1001434, 'Pima County', NULL, 'pima-county', 'US', 1, 32.0973800000, -111.7899500000), (1124205, 1001427, 'Pimmit Hills', NULL, 'pimmit-hills', 'US', 1, 38.9128900000, -77.2008100000), (1124206, 1001434, 'Pinal County', NULL, 'pinal-county', 'US', 1, 32.9043100000, -111.3447100000), (1124207, 1001404, 'Pinardville', NULL, 'pinardville', 'US', 1, 42.9942500000, -71.5072900000), (1124208, 1001429, 'Pinch', NULL, 'pinch', 'US', 1, 38.4087100000, -81.4817900000), (1124209, 1001426, 'Pinckney', NULL, 'pinckney', 'US', 1, 42.4570000000, -83.9479100000), (1124210, 1001425, 'Pinckneyville', NULL, 'pinckneyville', 'US', 1, 38.0803300000, -89.3820300000), (1124211, 1001426, 'Pinconning', NULL, 'pinconning', 'US', 1, 43.8536300000, -83.9649900000), (1124212, 1001434, 'Pine', NULL, 'pine', 'US', 1, 34.3844700000, -111.4551400000), (1124213, 1001417, 'Pine Beach', NULL, 'pine-beach', 'US', 1, 39.9359500000, -74.1709700000), (1124214, 1001444, 'Pine Bluff', NULL, 'pine-bluff', 'US', 1, 34.2284300000, -92.0032000000), (1124215, 1001442, 'Pine Bluffs', NULL, 'pine-bluffs', 'US', 1, 41.1819300000, -104.0691200000), (1124216, 1001452, 'Pine Bush', NULL, 'pine-bush', 'US', 1, 41.6081500000, -74.2990400000), (1124217, 1001436, 'Pine Castle', NULL, 'pine-castle', 'US', 1, 28.4719500000, -81.3678500000), (1124218, 1001420, 'Pine City', NULL, 'pine-city', 'US', 1, 45.8260700000, -92.9685400000), (1124219, 1001420, 'Pine County', NULL, 'pine-county', 'US', 1, 46.1207700000, -92.7412700000), (1124220, 1001454, 'Pine Crest', NULL, 'pine-crest', 'US', 1, 36.2992700000, -82.3179200000), (1124221, 1001422, 'Pine Grove', NULL, 'pine-grove', 'US', 1, 40.5484200000, -76.3846800000), (1124222, 1001416, 'Pine Grove', NULL, 'pine-grove', 'US', 1, 38.4129700000, -120.6588200000), (1124223, 1001422, 'Pine Grove Mills', NULL, 'pine-grove-mills', 'US', 1, 40.7336700000, -77.8855600000), (1124224, 1001417, 'Pine Hill', NULL, 'pine-hill', 'US', 1, 39.7842800000, -74.9921100000), (1124225, 1001436, 'Pine Hills', NULL, 'pine-hills', 'US', 1, 28.5577800000, -81.4534000000), (1124226, 1001416, 'Pine Hills', NULL, 'pine-hills', 'US', 1, 40.7331800000, -124.1522800000), (1124227, 1001407, 'Pine Island', NULL, 'pine-island', 'US', 1, 30.0580000000, -96.0374600000), (1124228, 1001420, 'Pine Island', NULL, 'pine-island', 'US', 1, 44.2013500000, -92.6463000000), (1124229, 1001436, 'Pine Island Center', NULL, 'pine-island-center', 'US', 1, 26.6136900000, -82.1181500000), (1124230, 1001436, 'Pine Island Ridge', NULL, 'pine-island-ridge', 'US', 1, 26.0948100000, -80.2739400000), (1124231, 1001447, 'Pine Knoll Shores', NULL, 'pine-knoll-shores', 'US', 1, 34.6973800000, -76.8132700000), (1124232, 1001419, 'Pine Knot', NULL, 'pine-knot', 'US', 1, 36.6509100000, -84.4385500000), (1124233, 1001417, 'Pine Lake Park', NULL, 'pine-lake-park', 'US', 1, 40.0031700000, -74.2565300000), (1124234, 1001451, 'Pine Lawn', NULL, 'pine-lawn', 'US', 1, 38.6958800000, -90.2751100000), (1124235, 1001456, 'Pine Level', NULL, 'pine-level', 'US', 1, 32.5837400000, -86.4655300000), (1124236, 1001447, 'Pine Level', NULL, 'pine-level', 'US', 1, 35.5132200000, -78.2444400000), (1124237, 1001436, 'Pine Manor', NULL, 'pine-manor', 'US', 1, 26.5728500000, -81.8781400000), (1124238, 1001455, 'Pine Mountain', NULL, 'pine-mountain', 'US', 1, 32.8648500000, -84.8541000000), (1124239, 1001416, 'Pine Mountain Club', NULL, 'pine-mountain-club', 'US', 1, 34.8463700000, -119.1495500000), (1124240, 1001452, 'Pine Plains', NULL, 'pine-plains', 'US', 1, 41.9798100000, -73.6559600000), (1124241, 1001457, 'Pine Prairie', NULL, 'pine-prairie', 'US', 1, 30.7838100000, -92.4254100000), (1124242, 1001436, 'Pine Ridge', NULL, 'pine-ridge', 'US', 1, 28.9383100000, -82.4734300000), (1124243, 1001445, 'Pine Ridge', NULL, 'pine-ridge', 'US', 1, 43.0255400000, -102.5562700000), (1124244, 1001422, 'Pine Ridge', NULL, 'pine-ridge', 'US', 1, 41.1459800000, -74.9911600000), (1124245, 1001417, 'Pine Ridge at Crestwood', NULL, 'pine-ridge-at-crestwood', 'US', 1, 39.9545600000, -74.3151500000), (1124246, 1001416, 'Pine Valley', NULL, 'pine-valley', 'US', 1, 32.8214400000, -116.5291800000), (1124247, 1001447, 'Pinebluff', NULL, 'pinebluff', 'US', 1, 35.1098800000, -79.4722600000), (1124248, 1001436, 'Pinecrest', NULL, 'pinecrest', 'US', 1, 25.6670500000, -80.3081100000), (1124249, 1001442, 'Pinedale', NULL, 'pinedale', 'US', 1, 42.8666100000, -109.8609900000), (1124250, 1001447, 'Pinehurst', NULL, 'pinehurst', 'US', 1, 35.1954300000, -79.4694800000), (1124251, 1001407, 'Pinehurst', NULL, 'pinehurst', 'US', 1, 30.1710500000, -95.6824500000), (1124252, 1001433, 'Pinehurst', NULL, 'pinehurst', 'US', 1, 42.5292600000, -71.2281100000), (1124253, 1001460, 'Pinehurst', NULL, 'pinehurst', 'US', 1, 47.5388100000, -116.2373900000), (1124254, 1001436, 'Pinellas County', NULL, 'pinellas-county', 'US', 1, 27.9026800000, -82.7395500000), (1124255, 1001436, 'Pinellas Park', NULL, 'pinellas-park', 'US', 1, 27.8428000000, -82.6995400000), (1124256, 1001443, 'Pineridge', NULL, 'pineridge', 'US', 1, 33.9104300000, -81.1045400000), (1124257, 1001434, 'Pinetop-Lakeside', NULL, 'pinetop-lakeside', 'US', 1, 34.1425400000, -109.9603800000), (1124258, 1001447, 'Pinetops', NULL, 'pinetops', 'US', 1, 35.7884900000, -77.6377500000), (1124259, 1001419, 'Pineville', NULL, 'pineville', 'US', 1, 36.7620300000, -83.6949200000), (1124260, 1001457, 'Pineville', NULL, 'pineville', 'US', 1, 31.3224000000, -92.4343000000), (1124261, 1001451, 'Pineville', NULL, 'pineville', 'US', 1, 36.5945200000, -94.3841000000), (1124262, 1001447, 'Pineville', NULL, 'pineville', 'US', 1, 35.0832000000, -80.8923000000), (1124263, 1001429, 'Pineville', NULL, 'pineville', 'US', 1, 37.5831700000, -81.5370500000), (1124264, 1001436, 'Pinewood', NULL, 'pinewood', 'US', 1, 25.8689800000, -80.2169900000), (1124265, 1001407, 'Pinewood Estates', NULL, 'pinewood-estates', 'US', 1, 30.1643800000, -94.3215800000), (1124266, 1001444, 'Piney', NULL, 'piney', 'US', 1, 34.5031400000, -93.1260200000), (1124267, 1001447, 'Piney Green', NULL, 'piney-green', 'US', 1, 34.7160000000, -77.3202400000), (1124268, 1001407, 'Piney Point Village', NULL, 'piney-point-village', 'US', 1, 29.7599500000, -95.5171600000), (1124269, 1001425, 'Pingree Grove', NULL, 'pingree-grove', 'US', 1, 42.0686400000, -88.4134200000), (1124270, 1001421, 'Pink', NULL, 'pink', 'US', 1, 35.2606300000, -97.1197500000), (1124271, 1001416, 'Pinole', NULL, 'pinole', 'US', 1, 38.0043700000, -122.2988600000), (1124272, 1001456, 'Pinson', NULL, 'pinson', 'US', 1, 33.6889900000, -86.6833200000), (1124273, 1001458, 'Pioche', NULL, 'pioche', 'US', 1, 37.9296900000, -114.4522100000), (1124274, 1001416, 'Pioneer', NULL, 'pioneer', 'US', 1, 38.4318600000, -120.5718700000), (1124275, 1001419, 'Pioneer Village', NULL, 'pioneer-village', 'US', 1, 38.0606200000, -85.6777400000), (1124276, 1001454, 'Piperton', NULL, 'piperton', 'US', 1, 35.0450900000, -89.6217500000), (1124277, 1001420, 'Pipestone', NULL, 'pipestone', 'US', 1, 44.0005300000, -96.3175300000), (1124278, 1001420, 'Pipestone County', NULL, 'pipestone-county', 'US', 1, 44.0230000000, -96.2586400000), (1124279, 1001434, 'Pirtleville', NULL, 'pirtleville', 'US', 1, 31.3571600000, -109.5635200000), (1124280, 1001416, 'Piru', NULL, 'piru', 'US', 1, 34.4152700000, -118.7939800000), (1124281, 1001453, 'Piscataquis County', NULL, 'piscataquis-county', 'US', 1, 45.8373600000, -69.2845200000), (1124282, 1001417, 'Piscataway', NULL, 'piscataway', 'US', 1, 40.4992700000, -74.3990400000), (1124283, 1001416, 'Pismo Beach', NULL, 'pismo-beach', 'US', 1, 35.1427500000, -120.6412800000), (1124284, 1001425, 'Pistakee Highlands', NULL, 'pistakee-highlands', 'US', 1, 42.4086300000, -88.2064800000), (1124285, 1001422, 'Pitcairn', NULL, 'pitcairn', 'US', 1, 40.4031200000, -79.7781000000), (1124286, 1001450, 'Pitkin County', NULL, 'pitkin-county', 'US', 1, 39.2171100000, -106.9165800000), (1124287, 1001417, 'Pitman', NULL, 'pitman', 'US', 1, 39.7328900000, -75.1315700000), (1124288, 1001447, 'Pitt County', NULL, 'pitt-county', 'US', 1, 35.5935200000, -77.3746500000), (1124289, 1001440, 'Pittsboro', NULL, 'pittsboro', 'US', 1, 39.8639300000, -86.4669400000), (1124290, 1001430, 'Pittsboro', NULL, 'pittsboro', 'US', 1, 33.9403900000, -89.3375700000), (1124291, 1001447, 'Pittsboro', NULL, 'pittsboro', 'US', 1, 35.7201500000, -79.1772400000), (1124292, 1001406, 'Pittsburg', NULL, 'pittsburg', 'US', 1, 37.4108800000, -94.7049600000), (1124293, 1001407, 'Pittsburg', NULL, 'pittsburg', 'US', 1, 32.9954000000, -94.9657700000), (1124294, 1001416, 'Pittsburg', NULL, 'pittsburg', 'US', 1, 38.0279800000, -121.8846800000), (1124295, 1001421, 'Pittsburg County', NULL, 'pittsburg-county', 'US', 1, 34.9239100000, -95.7484000000), (1124296, 1001422, 'Pittsburgh', NULL, 'pittsburgh', 'US', 1, 40.4406200000, -79.9958900000), (1124297, 1001425, 'Pittsfield', NULL, 'pittsfield', 'US', 1, 39.6078300000, -90.8051300000), (1124298, 1001433, 'Pittsfield', NULL, 'pittsfield', 'US', 1, 42.4500800000, -73.2453800000), (1124299, 1001453, 'Pittsfield', NULL, 'pittsfield', 'US', 1, 44.7825600000, -69.3833800000), (1124300, 1001404, 'Pittsfield', NULL, 'pittsfield', 'US', 1, 43.3059100000, -71.3242300000), (1124301, 1001441, 'Pittsfield', NULL, 'pittsfield', 'US', 1, 44.5994400000, -88.2451000000), (1124302, 1001452, 'Pittsford', NULL, 'pittsford', 'US', 1, 43.0906200000, -77.5150000000), (1124303, 1001453, 'Pittston', NULL, 'pittston', 'US', 1, 44.2217400000, -69.7556000000), (1124304, 1001422, 'Pittston', NULL, 'pittston', 'US', 1, 41.3259100000, -75.7893600000), (1124305, 1001401, 'Pittsville', NULL, 'pittsville', 'US', 1, 38.3953900000, -75.4129700000), (1124306, 1001427, 'Pittsylvania County', NULL, 'pittsylvania-county', 'US', 1, 36.8213300000, -79.3971100000), (1124307, 1001414, 'Piute County', NULL, 'piute-county', 'US', 1, 38.3364500000, -112.1269500000), (1124308, 1001416, 'Pixley', NULL, 'pixley', 'US', 1, 35.9685600000, -119.2917800000), (1124309, 1001416, 'Piñon Hills', NULL, 'pinon-hills', 'US', 1, 34.4333300000, -117.6467200000), (1124310, 1001416, 'Placentia', NULL, 'placentia', 'US', 1, 33.8722400000, -117.8703400000), (1124311, 1001416, 'Placer County', NULL, 'placer-county', 'US', 1, 39.0634300000, -120.7176600000), (1124312, 1001416, 'Placerville', NULL, 'placerville', 'US', 1, 38.7296300000, -120.7985500000), (1124313, 1001436, 'Placid Lakes', NULL, 'placid-lakes', 'US', 1, 27.2414400000, -81.4070200000), (1124314, 1001423, 'Placitas', NULL, 'placitas', 'US', 1, 35.3069800000, -106.4247500000), (1124315, 1001414, 'Plain City', NULL, 'plain-city', 'US', 1, 41.2980000000, -112.0860500000), (1124316, 1001447, 'Plain View', NULL, 'plain-view', 'US', 1, 35.2485000000, -78.5552900000), (1124317, 1001452, 'Plainedge', NULL, 'plainedge', 'US', 1, 40.7173200000, -73.4837400000), (1124318, 1001440, 'Plainfield', NULL, 'plainfield', 'US', 1, 39.7042100000, -86.3994400000), (1124319, 1001435, 'Plainfield', NULL, 'plainfield', 'US', 1, 41.6764900000, -71.9150700000), (1124320, 1001425, 'Plainfield', NULL, 'plainfield', 'US', 1, 41.6269700000, -88.2039500000), (1124321, 1001417, 'Plainfield', NULL, 'plainfield', 'US', 1, 40.6337100000, -74.4073700000), (1124322, 1001435, 'Plainfield Village', NULL, 'plainfield-village', 'US', 1, 41.6768600000, -71.9248900000), (1124323, 1001422, 'Plains', NULL, 'plains', 'US', 1, 41.2753600000, -75.8502000000), (1124324, 1001407, 'Plains', NULL, 'plains', 'US', 1, 33.1887100000, -102.8279900000), (1124325, 1001406, 'Plains', NULL, 'plains', 'US', 1, 37.2603000000, -100.5926500000), (1124326, 1001446, 'Plains', NULL, 'plains', 'US', 1, 47.4602100000, -114.8829100000), (1124327, 1001417, 'Plainsboro Center', NULL, 'plainsboro-center', 'US', 1, 40.3317700000, -74.5946000000), (1124328, 1001420, 'Plainview', NULL, 'plainview', 'US', 1, 44.1649700000, -92.1715600000), (1124329, 1001408, 'Plainview', NULL, 'plainview', 'US', 1, 42.3497300000, -97.7920100000), (1124330, 1001452, 'Plainview', NULL, 'plainview', 'US', 1, 40.7764900000, -73.4673500000), (1124331, 1001407, 'Plainview', NULL, 'plainview', 'US', 1, 34.1847900000, -101.7068400000), (1124332, 1001454, 'Plainview', NULL, 'plainview', 'US', 1, 36.1773100000, -83.7953400000), (1124333, 1001406, 'Plainville', NULL, 'plainville', 'US', 1, 39.2347300000, -99.2981600000), (1124334, 1001435, 'Plainville', NULL, 'plainville', 'US', 1, 41.6745400000, -72.8581600000), (1124335, 1001433, 'Plainville', NULL, 'plainville', 'US', 1, 42.0042700000, -71.3328300000), (1124336, 1001426, 'Plainwell', NULL, 'plainwell', 'US', 1, 42.4400400000, -85.6489000000), (1124337, 1001404, 'Plaistow', NULL, 'plaistow', 'US', 1, 42.8364800000, -71.0947800000), (1124338, 1001416, 'Planada', NULL, 'planada', 'US', 1, 37.2907700000, -120.3185200000), (1124339, 1001452, 'Plandome', NULL, 'plandome', 'US', 1, 40.8067700000, -73.7034600000), (1124340, 1001452, 'Plandome Heights', NULL, 'plandome-heights', 'US', 1, 40.8026000000, -73.7043000000), (1124341, 1001445, 'Plankinton', NULL, 'plankinton', 'US', 1, 43.7155500000, -98.4850900000), (1124342, 1001419, 'Plano', NULL, 'plano', 'US', 1, 36.8803200000, -86.4183200000), (1124343, 1001407, 'Plano', NULL, 'plano', 'US', 1, 33.0198400000, -96.6988900000), (1124344, 1001425, 'Plano', NULL, 'plano', 'US', 1, 41.6628100000, -88.5370200000), (1124345, 1001436, 'Plant City', NULL, 'plant-city', 'US', 1, 28.0188800000, -82.1146900000), (1124346, 1001436, 'Plantation', NULL, 'plantation', 'US', 1, 26.1342100000, -80.2318400000), (1124347, 1001436, 'Plantation Mobile Home Park', NULL, 'plantation-mobile-home-park', 'US', 1, 26.7031200000, -80.1322700000), (1124348, 1001430, 'Plantersville', NULL, 'plantersville', 'US', 1, 34.2134400000, -88.6645000000), (1124349, 1001457, 'Plaquemine', NULL, 'plaquemine', 'US', 1, 30.2900500000, -91.2349700000), (1124350, 1001457, 'Plaquemines Parish', NULL, 'plaquemines-parish', 'US', 1, 29.5442100000, -89.8204700000), (1124351, 1001445, 'Platte', NULL, 'platte', 'US', 1, 43.3869400000, -98.8445300000), (1124352, 1001451, 'Platte City', NULL, 'platte-city', 'US', 1, 39.3702800000, -94.7824600000), (1124353, 1001451, 'Platte County', NULL, 'platte-county', 'US', 1, 39.3805000000, -94.7735900000), (1124354, 1001408, 'Platte County', NULL, 'platte-county', 'US', 1, 41.5712900000, -97.5211600000), (1124355, 1001442, 'Platte County', NULL, 'platte-county', 'US', 1, 42.1330500000, -104.9658200000), (1124356, 1001452, 'Plattekill', NULL, 'plattekill', 'US', 1, 41.6175900000, -74.0759800000), (1124357, 1001441, 'Platteville', NULL, 'platteville', 'US', 1, 42.7341600000, -90.4784600000), (1124358, 1001450, 'Platteville', NULL, 'platteville', 'US', 1, 40.2149800000, -104.8227500000), (1124359, 1001451, 'Plattsburg', NULL, 'plattsburg', 'US', 1, 39.5655500000, -94.4480100000), (1124360, 1001452, 'Plattsburgh', NULL, 'plattsburgh', 'US', 1, 44.6994900000, -73.4529100000), (1124361, 1001452, 'Plattsburgh West', NULL, 'plattsburgh-west', 'US', 1, 44.6831500000, -73.5029500000), (1124362, 1001408, 'Plattsmouth', NULL, 'plattsmouth', 'US', 1, 41.0113900000, -95.8822300000), (1124363, 1001407, 'Pleak', NULL, 'pleak', 'US', 1, 29.4891300000, -95.8077300000), (1124364, 1001422, 'Pleasant Gap', NULL, 'pleasant-gap', 'US', 1, 40.8681200000, -77.7466700000), (1124365, 1001447, 'Pleasant Garden', NULL, 'pleasant-garden', 'US', 1, 35.9620800000, -79.7622500000), (1124366, 1001456, 'Pleasant Grove', NULL, 'pleasant-grove', 'US', 1, 33.4909400000, -86.9702700000), (1124367, 1001414, 'Pleasant Grove', NULL, 'pleasant-grove', 'US', 1, 40.3641200000, -111.7385400000), (1124368, 1001451, 'Pleasant Hill', NULL, 'pleasant-hill', 'US', 1, 38.7875100000, -94.2693900000), (1124369, 1001447, 'Pleasant Hill', NULL, 'pleasant-hill', 'US', 1, 35.8734700000, -79.4816900000), (1124370, 1001459, 'Pleasant Hill', NULL, 'pleasant-hill', 'US', 1, 41.5838800000, -93.5199400000), (1124371, 1001422, 'Pleasant Hill', NULL, 'pleasant-hill', 'US', 1, 40.3362000000, -76.4416300000), (1124372, 1001416, 'Pleasant Hill', NULL, 'pleasant-hill', 'US', 1, 37.9479800000, -122.0608000000), (1124373, 1001401, 'Pleasant Hills', NULL, 'pleasant-hills', 'US', 1, 39.4795500000, -76.3941300000), (1124374, 1001422, 'Pleasant Hills', NULL, 'pleasant-hills', 'US', 1, 40.3356300000, -79.9606100000), (1124375, 1001441, 'Pleasant Prairie', NULL, 'pleasant-prairie', 'US', 1, 42.5530800000, -87.9334100000), (1124376, 1001426, 'Pleasant Ridge', NULL, 'pleasant-ridge', 'US', 1, 42.4711500000, -83.1421500000), (1124377, 1001451, 'Pleasant Valley', NULL, 'pleasant-valley', 'US', 1, 39.2163900000, -94.4841200000), (1124378, 1001429, 'Pleasant Valley', NULL, 'pleasant-valley', 'US', 1, 39.4553600000, -80.1417500000), (1124379, 1001452, 'Pleasant Valley', NULL, 'pleasant-valley', 'US', 1, 41.7445400000, -73.8212400000), (1124380, 1001454, 'Pleasant View', NULL, 'pleasant-view', 'US', 1, 36.3942200000, -87.0366700000), (1124381, 1001414, 'Pleasant View', NULL, 'pleasant-view', 'US', 1, 41.3182800000, -111.9921600000), (1124382, 1001406, 'Pleasanton', NULL, 'pleasanton', 'US', 1, 38.1778100000, -94.7113500000), (1124383, 1001407, 'Pleasanton', NULL, 'pleasanton', 'US', 1, 28.9671900000, -98.4786300000), (1124384, 1001416, 'Pleasanton', NULL, 'pleasanton', 'US', 1, 37.6624300000, -121.8746800000), (1124385, 1001429, 'Pleasants County', NULL, 'pleasants-county', 'US', 1, 39.3709400000, -81.1606300000), (1124386, 1001417, 'Pleasantville', NULL, 'pleasantville', 'US', 1, 39.3898400000, -74.5240400000), (1124387, 1001459, 'Pleasantville', NULL, 'pleasantville', 'US', 1, 41.3858300000, -93.2693700000), (1124388, 1001452, 'Pleasantville', NULL, 'pleasantville', 'US', 1, 41.1328700000, -73.7926300000), (1124389, 1001419, 'Pleasure Ridge Park', NULL, 'pleasure-ridge-park', 'US', 1, 38.1453500000, -85.8583000000), (1124390, 1001446, 'Plentywood', NULL, 'plentywood', 'US', 1, 48.7747500000, -104.5624600000), (1124391, 1001441, 'Plover', NULL, 'plover', 'US', 1, 44.4563600000, -89.5440100000), (1124392, 1001422, 'Plum', NULL, 'plum', 'US', 1, 40.5003500000, -79.7494900000), (1124393, 1001427, 'Plum Creek', NULL, 'plum-creek', 'US', 1, 37.1298400000, -80.5006000000), (1124394, 1001407, 'Plum Grove', NULL, 'plum-grove', 'US', 1, 32.1957000000, -96.9894500000), (1124395, 1001416, 'Plumas County', NULL, 'plumas-county', 'US', 1, 40.0046800000, -120.8386000000), (1124396, 1001416, 'Plumas Lake', NULL, 'plumas-lake', 'US', 1, 39.0207300000, -121.5580200000), (1124397, 1001460, 'Plummer', NULL, 'plummer', 'US', 1, 47.3351800000, -116.8885100000), (1124398, 1001422, 'Plumsteadville', NULL, 'plumsteadville', 'US', 1, 40.3873300000, -75.1465600000), (1124399, 1001447, 'Plymouth', NULL, 'plymouth', 'US', 1, 35.8668300000, -76.7485600000), (1124400, 1001435, 'Plymouth', NULL, 'plymouth', 'US', 1, 41.6720400000, -73.0528900000), (1124401, 1001440, 'Plymouth', NULL, 'plymouth', 'US', 1, 41.3436600000, -86.3097300000), (1124402, 1001433, 'Plymouth', NULL, 'plymouth', 'US', 1, 41.9584400000, -70.6672600000), (1124403, 1001426, 'Plymouth', NULL, 'plymouth', 'US', 1, 42.3714300000, -83.4702100000), (1124404, 1001453, 'Plymouth', NULL, 'plymouth', 'US', 1, 44.7672900000, -69.2103300000), (1124405, 1001420, 'Plymouth', NULL, 'plymouth', 'US', 1, 45.0105200000, -93.4555100000), (1124406, 1001404, 'Plymouth', NULL, 'plymouth', 'US', 1, 43.7570200000, -71.6881300000), (1124407, 1001422, 'Plymouth', NULL, 'plymouth', 'US', 1, 41.2403600000, -75.9446400000), (1124408, 1001441, 'Plymouth', NULL, 'plymouth', 'US', 1, 43.7486100000, -87.9770400000), (1124409, 1001459, 'Plymouth County', NULL, 'plymouth-county', 'US', 1, 42.7378300000, -96.2140400000), (1124410, 1001433, 'Plymouth County', NULL, 'plymouth-county', 'US', 1, 41.9874300000, -70.7370700000), (1124411, 1001422, 'Plymouth Meeting', NULL, 'plymouth-meeting', 'US', 1, 40.1023300000, -75.2743500000), (1124412, 1001433, 'Plympton', NULL, 'plympton', 'US', 1, 41.9528800000, -70.8144800000), (1124413, 1001444, 'Pocahontas', NULL, 'pocahontas', 'US', 1, 36.2614600000, -90.9712300000), (1124414, 1001459, 'Pocahontas', NULL, 'pocahontas', 'US', 1, 42.7355300000, -94.6691500000), (1124415, 1001429, 'Pocahontas County', NULL, 'pocahontas-county', 'US', 1, 38.3318000000, -80.0077500000), (1124416, 1001459, 'Pocahontas County', NULL, 'pocahontas-county', 'US', 1, 42.7341400000, -94.6787500000), (1124417, 1001433, 'Pocasset', NULL, 'pocasset', 'US', 1, 41.6862200000, -70.6161400000), (1124418, 1001460, 'Pocatello', NULL, 'pocatello', 'US', 1, 42.8713000000, -112.4455300000), (1124419, 1001421, 'Pocola', NULL, 'pocola', 'US', 1, 35.2312100000, -94.4780000000), (1124420, 1001401, 'Pocomoke City', NULL, 'pocomoke-city', 'US', 1, 38.0756800000, -75.5679800000), (1124421, 1001422, 'Pocono Pines', NULL, 'pocono-pines', 'US', 1, 41.1067500000, -75.4543500000), (1124422, 1001422, 'Pocono Ranch Lands', NULL, 'pocono-ranch-lands', 'US', 1, 41.1645400000, -74.9521200000), (1124423, 1001452, 'Poestenkill', NULL, 'poestenkill', 'US', 1, 42.6903600000, -73.5645600000), (1124424, 1001436, 'Poinciana', NULL, 'poinciana', 'US', 1, 28.1402900000, -81.4584100000), (1124425, 1001444, 'Poinsett County', NULL, 'poinsett-county', 'US', 1, 35.5740400000, -90.6629300000), (1124426, 1001436, 'Point Baker', NULL, 'point-baker', 'US', 1, 30.6901900000, -87.0535800000), (1124427, 1001456, 'Point Clear', NULL, 'point-clear', 'US', 1, 30.4740800000, -87.9191600000), (1124428, 1001452, 'Point Lookout', NULL, 'point-lookout', 'US', 1, 40.5923300000, -73.5806800000), (1124429, 1001422, 'Point Marion', NULL, 'point-marion', 'US', 1, 39.7389700000, -79.8986700000), (1124430, 1001429, 'Point Pleasant', NULL, 'point-pleasant', 'US', 1, 38.8445300000, -82.1370900000), (1124431, 1001417, 'Point Pleasant', NULL, 'point-pleasant', 'US', 1, 40.0831700000, -74.0681900000), (1124432, 1001417, 'Point Pleasant Beach', NULL, 'point-pleasant-beach', 'US', 1, 40.0912300000, -74.0479100000), (1124433, 1001462, 'Point Roberts', NULL, 'point-roberts', 'US', 1, 48.9853800000, -123.0779700000), (1124434, 1001401, 'Point of Rocks', NULL, 'point-of-rocks', 'US', 1, 39.2759400000, -77.5391500000), (1124435, 1001457, 'Pointe Coupee Parish', NULL, 'pointe-coupee-parish', 'US', 1, 30.7094000000, -91.6007900000), (1124436, 1001423, 'Pojoaque', NULL, 'pojoaque', 'US', 1, 35.8928000000, -106.0230800000), (1124437, 1001453, 'Poland', NULL, 'poland', 'US', 1, 44.0606300000, -70.3936700000), (1124438, 1001436, 'Polk City', NULL, 'polk-city', 'US', 1, 28.1825100000, -81.8239700000), (1124439, 1001459, 'Polk City', NULL, 'polk-city', 'US', 1, 41.7713800000, -93.7130000000), (1124440, 1001444, 'Polk County', NULL, 'polk-county', 'US', 1, 34.4858400000, -94.2280700000), (1124441, 1001436, 'Polk County', NULL, 'polk-county', 'US', 1, 27.9488800000, -81.6976700000), (1124442, 1001455, 'Polk County', NULL, 'polk-county', 'US', 1, 34.0017800000, -85.1881500000), (1124443, 1001451, 'Polk County', NULL, 'polk-county', 'US', 1, 37.6164800000, -93.4005300000), (1124444, 1001447, 'Polk County', NULL, 'polk-county', 'US', 1, 35.2792900000, -82.1696700000), (1124445, 1001454, 'Polk County', NULL, 'polk-county', 'US', 1, 35.1199000000, -84.5233000000), (1124446, 1001407, 'Polk County', NULL, 'polk-county', 'US', 1, 30.7927200000, -94.8300200000), (1124447, 1001459, 'Polk County', NULL, 'polk-county', 'US', 1, 41.6855000000, -93.5735300000), (1124448, 1001420, 'Polk County', NULL, 'polk-county', 'US', 1, 47.7738500000, -96.4018100000), (1124449, 1001408, 'Polk County', NULL, 'polk-county', 'US', 1, 41.1869000000, -97.5684200000), (1124450, 1001441, 'Polk County', NULL, 'polk-county', 'US', 1, 45.4614200000, -92.4413900000), (1124451, 1001415, 'Polk County', NULL, 'polk-county', 'US', 1, 44.9034800000, -123.4133700000), (1124452, 1001447, 'Polkton', NULL, 'polkton', 'US', 1, 35.0076500000, -80.2008900000), (1124453, 1001416, 'Pollock Pines', NULL, 'pollock-pines', 'US', 1, 38.7615800000, -120.5861100000), (1124454, 1001425, 'Polo', NULL, 'polo', 'US', 1, 41.9861400000, -89.5792800000), (1124455, 1001446, 'Polson', NULL, 'polson', 'US', 1, 47.6935500000, -114.1631700000), (1124456, 1001462, 'Pomeroy', NULL, 'pomeroy', 'US', 1, 46.4748700000, -117.6026900000), (1124457, 1001417, 'Pomona', NULL, 'pomona', 'US', 1, 39.4784500000, -74.5751600000), (1124458, 1001452, 'Pomona', NULL, 'pomona', 'US', 1, 41.1670400000, -74.0432000000), (1124459, 1001416, 'Pomona', NULL, 'pomona', 'US', 1, 34.0552900000, -117.7522800000), (1124460, 1001436, 'Pompano Beach', NULL, 'pompano-beach', 'US', 1, 26.2378600000, -80.1247700000), (1124461, 1001436, 'Pompano Beach Highlands', NULL, 'pompano-beach-highlands', 'US', 1, 26.2828600000, -80.1069900000), (1124462, 1001417, 'Pompton Lakes', NULL, 'pompton-lakes', 'US', 1, 41.0053800000, -74.2907000000), (1124463, 1001408, 'Ponca', NULL, 'ponca', 'US', 1, 42.5625000000, -96.7055900000), (1124464, 1001421, 'Ponca City', NULL, 'ponca-city', 'US', 1, 36.7069800000, -97.0855900000), (1124465, 1001436, 'Ponce Inlet', NULL, 'ponce-inlet', 'US', 1, 29.0963700000, -80.9370000000), (1124466, 1001457, 'Ponchatoula', NULL, 'ponchatoula', 'US', 1, 30.4388000000, -90.4414800000), (1124467, 1001407, 'Ponder', NULL, 'ponder', 'US', 1, 33.1829000000, -97.2872400000); INSERT INTO `[[dbprefix]]t_city` VALUES (1124468, 1001446, 'Pondera County', NULL, 'pondera-county', 'US', 1, 48.2279800000, -112.2263900000), (1124469, 1001460, 'Ponderay', NULL, 'ponderay', 'US', 1, 48.3054800000, -116.5338000000), (1124470, 1001450, 'Ponderosa Park', NULL, 'ponderosa-park', 'US', 1, 39.4083200000, -104.6510800000), (1124471, 1001423, 'Ponderosa Pine', NULL, 'ponderosa-pine', 'US', 1, 34.9769900000, -106.3241900000), (1124472, 1001436, 'Ponte Vedra Beach', NULL, 'ponte-vedra-beach', 'US', 1, 30.2396900000, -81.3856400000), (1124473, 1001425, 'Pontiac', NULL, 'pontiac', 'US', 1, 40.8808700000, -88.6297800000), (1124474, 1001426, 'Pontiac', NULL, 'pontiac', 'US', 1, 42.6389200000, -83.2910500000), (1124475, 1001425, 'Pontoon Beach', NULL, 'pontoon-beach', 'US', 1, 38.7317200000, -90.0803800000), (1124476, 1001430, 'Pontotoc', NULL, 'pontotoc', 'US', 1, 34.2478800000, -88.9986700000), (1124477, 1001430, 'Pontotoc County', NULL, 'pontotoc-county', 'US', 1, 34.2254400000, -89.0374100000), (1124478, 1001421, 'Pontotoc County', NULL, 'pontotoc-county', 'US', 1, 34.7280000000, -96.6844400000), (1124479, 1001455, 'Pooler', NULL, 'pooler', 'US', 1, 32.1154800000, -81.2470600000), (1124480, 1001401, 'Poolesville', NULL, 'poolesville', 'US', 1, 39.1459400000, -77.4169300000), (1124481, 1001444, 'Pope County', NULL, 'pope-county', 'US', 1, 35.4476300000, -93.0341600000), (1124482, 1001425, 'Pope County', NULL, 'pope-county', 'US', 1, 37.4127600000, -88.5615800000), (1124483, 1001420, 'Pope County', NULL, 'pope-county', 'US', 1, 45.5860200000, -95.4444800000), (1124484, 1001451, 'Poplar Bluff', NULL, 'poplar-bluff', 'US', 1, 36.7570000000, -90.3928900000), (1124485, 1001425, 'Poplar Grove', NULL, 'poplar-grove', 'US', 1, 42.3683500000, -88.8220500000), (1124486, 1001416, 'Poplar-Cotton Center', NULL, 'poplar-cotton-center', 'US', 1, 36.0563500000, -119.1491900000), (1124487, 1001430, 'Poplarville', NULL, 'poplarville', 'US', 1, 30.8401900000, -89.5342300000), (1124488, 1001435, 'Poquonock Bridge', NULL, 'poquonock-bridge', 'US', 1, 41.3451000000, -72.0248000000), (1124489, 1001427, 'Poquoson', NULL, 'poquoson', 'US', 1, 37.1223700000, -76.3457800000), (1124490, 1001445, 'Porcupine', NULL, 'porcupine', 'US', 1, 43.2397100000, -102.3309900000), (1124491, 1001422, 'Port Allegany', NULL, 'port-allegany', 'US', 1, 41.8109000000, -78.2797400000), (1124492, 1001457, 'Port Allen', NULL, 'port-allen', 'US', 1, 30.4521400000, -91.2101100000), (1124493, 1001462, 'Port Angeles', NULL, 'port-angeles', 'US', 1, 48.1181500000, -123.4307400000), (1124494, 1001462, 'Port Angeles East', NULL, 'port-angeles-east', 'US', 1, 48.1066700000, -123.3717200000), (1124495, 1001407, 'Port Aransas', NULL, 'port-aransas', 'US', 1, 27.8339200000, -97.0611000000), (1124496, 1001407, 'Port Arthur', NULL, 'port-arthur', 'US', 1, 29.8851900000, -93.9423300000), (1124497, 1001457, 'Port Barre', NULL, 'port-barre', 'US', 1, 30.5602000000, -91.9540100000), (1124498, 1001425, 'Port Barrington', NULL, 'port-barrington', 'US', 1, 42.2425200000, -88.2020300000), (1124499, 1001425, 'Port Byron', NULL, 'port-byron', 'US', 1, 41.6064200000, -90.3354100000), (1124500, 1001452, 'Port Byron', NULL, 'port-byron', 'US', 1, 43.0345100000, -76.6238300000), (1124501, 1001422, 'Port Carbon', NULL, 'port-carbon', 'US', 1, 40.6964800000, -76.1688300000), (1124502, 1001436, 'Port Charlotte', NULL, 'port-charlotte', 'US', 1, 26.9761700000, -82.0906400000), (1124503, 1001452, 'Port Chester', NULL, 'port-chester', 'US', 1, 41.0017600000, -73.6656800000), (1124504, 1001452, 'Port Dickinson', NULL, 'port-dickinson', 'US', 1, 42.1334100000, -75.8963100000), (1124505, 1001441, 'Port Edwards', NULL, 'port-edwards', 'US', 1, 44.3508000000, -89.8654000000), (1124506, 1001452, 'Port Ewen', NULL, 'port-ewen', 'US', 1, 41.9053700000, -73.9762500000), (1124507, 1001430, 'Port Gibson', NULL, 'port-gibson', 'US', 1, 31.9609900000, -90.9839900000), (1124508, 1001462, 'Port Hadlock-Irondale', NULL, 'port-hadlock-irondale', 'US', 1, 48.0327300000, -122.7852900000), (1124509, 1001452, 'Port Henry', NULL, 'port-henry', 'US', 1, 44.0483900000, -73.4598500000), (1124510, 1001416, 'Port Hueneme', NULL, 'port-hueneme', 'US', 1, 34.1477800000, -119.1951100000), (1124511, 1001426, 'Port Huron', NULL, 'port-huron', 'US', 1, 42.9708600000, -82.4249100000), (1124512, 1001407, 'Port Isabel', NULL, 'port-isabel', 'US', 1, 26.0734100000, -97.2085800000), (1124513, 1001452, 'Port Jefferson', NULL, 'port-jefferson', 'US', 1, 40.9464900000, -73.0692700000), (1124514, 1001452, 'Port Jefferson Station', NULL, 'port-jefferson-station', 'US', 1, 40.9253800000, -73.0473300000), (1124515, 1001452, 'Port Jervis', NULL, 'port-jervis', 'US', 1, 41.3750900000, -74.6926600000), (1124516, 1001436, 'Port LaBelle', NULL, 'port-labelle', 'US', 1, 26.7564500000, -81.4050800000), (1124517, 1001407, 'Port Lavaca', NULL, 'port-lavaca', 'US', 1, 28.6150000000, -96.6260900000), (1124518, 1001462, 'Port Ludlow', NULL, 'port-ludlow', 'US', 1, 47.9253700000, -122.6834900000), (1124519, 1001417, 'Port Monmouth', NULL, 'port-monmouth', 'US', 1, 40.4301100000, -74.0984700000), (1124520, 1001452, 'Port Morris', NULL, 'port-morris', 'US', 1, 40.8014900000, -73.9095800000), (1124521, 1001407, 'Port Neches', NULL, 'port-neches', 'US', 1, 29.9913200000, -93.9585100000), (1124522, 1001417, 'Port Norris', NULL, 'port-norris', 'US', 1, 39.2459500000, -75.0351800000), (1124523, 1001407, 'Port O''Connor', NULL, 'port-o-connor', 'US', 1, 28.4483400000, -96.4058100000), (1124524, 1001436, 'Port Orange', NULL, 'port-orange', 'US', 1, 29.1383200000, -80.9956100000), (1124525, 1001462, 'Port Orchard', NULL, 'port-orchard', 'US', 1, 47.5403700000, -122.6362500000), (1124526, 1001415, 'Port Orford', NULL, 'port-orford', 'US', 1, 42.7456600000, -124.4973300000), (1124527, 1001417, 'Port Reading', NULL, 'port-reading', 'US', 1, 40.5653800000, -74.2604200000), (1124528, 1001417, 'Port Republic', NULL, 'port-republic', 'US', 1, 39.5206700000, -74.4857100000), (1124529, 1001436, 'Port Richey', NULL, 'port-richey', 'US', 1, 28.2716800000, -82.7195500000), (1124530, 1001452, 'Port Richmond', NULL, 'port-richmond', 'US', 1, 40.6331600000, -74.1365300000), (1124531, 1001443, 'Port Royal', NULL, 'port-royal', 'US', 1, 32.3790800000, -80.6926100000), (1124532, 1001436, 'Port Saint Joe', NULL, 'port-saint-joe', 'US', 1, 29.8118800000, -85.3029700000), (1124533, 1001436, 'Port Saint John', NULL, 'port-saint-john', 'US', 1, 28.4769500000, -80.7886700000), (1124534, 1001436, 'Port Saint Lucie', NULL, 'port-saint-lucie', 'US', 1, 27.2939300000, -80.3503300000), (1124535, 1001436, 'Port Salerno', NULL, 'port-salerno', 'US', 1, 27.1442200000, -80.2006000000), (1124536, 1001457, 'Port Sulphur', NULL, 'port-sulphur', 'US', 1, 29.4804900000, -89.6939500000), (1124537, 1001462, 'Port Townsend', NULL, 'port-townsend', 'US', 1, 48.1170400000, -122.7604500000), (1124538, 1001422, 'Port Vue', NULL, 'port-vue', 'US', 1, 40.3359000000, -79.8697700000), (1124539, 1001452, 'Port Washington', NULL, 'port-washington', 'US', 1, 40.8256600000, -73.6981900000), (1124540, 1001441, 'Port Washington', NULL, 'port-washington', 'US', 1, 43.3872200000, -87.8756400000), (1124541, 1001452, 'Port Washington North', NULL, 'port-washington-north', 'US', 1, 40.8448200000, -73.7018000000), (1124542, 1001455, 'Port Wentworth', NULL, 'port-wentworth', 'US', 1, 32.1490900000, -81.1631700000), (1124543, 1001440, 'Portage', NULL, 'portage', 'US', 1, 41.5758700000, -87.1761500000), (1124544, 1001426, 'Portage', NULL, 'portage', 'US', 1, 42.2011500000, -85.5800000000), (1124545, 1001422, 'Portage', NULL, 'portage', 'US', 1, 40.3886800000, -78.6722400000), (1124546, 1001441, 'Portage', NULL, 'portage', 'US', 1, 43.5391500000, -89.4626200000), (1124547, 1001441, 'Portage County', NULL, 'portage-county', 'US', 1, 44.4760400000, -89.5014200000), (1124548, 1001425, 'Portage Park', NULL, 'portage-park', 'US', 1, 41.9578100000, -87.7650600000), (1124549, 1001451, 'Portageville', NULL, 'portageville', 'US', 1, 36.4253400000, -89.6995300000), (1124550, 1001423, 'Portales', NULL, 'portales', 'US', 1, 34.1861900000, -103.3344000000), (1124551, 1001440, 'Porter', NULL, 'porter', 'US', 1, 41.6155900000, -87.0742000000), (1124552, 1001453, 'Porter', NULL, 'porter', 'US', 1, 43.7959100000, -70.9325600000), (1124553, 1001440, 'Porter County', NULL, 'porter-county', 'US', 1, 41.5088400000, -87.0733200000), (1124554, 1001407, 'Porter Heights', NULL, 'porter-heights', 'US', 1, 30.1518800000, -95.3218800000), (1124555, 1001455, 'Porterdale', NULL, 'porterdale', 'US', 1, 33.5751100000, -83.8938000000), (1124556, 1001416, 'Porterville', NULL, 'porterville', 'US', 1, 36.0652300000, -119.0167700000), (1124557, 1001407, 'Portland', NULL, 'portland', 'US', 1, 27.8772500000, -97.3238800000), (1124558, 1001454, 'Portland', NULL, 'portland', 'US', 1, 36.5817100000, -86.5163800000), (1124559, 1001435, 'Portland', NULL, 'portland', 'US', 1, 41.5728800000, -72.6406500000), (1124560, 1001440, 'Portland', NULL, 'portland', 'US', 1, 40.4344900000, -84.9777500000), (1124561, 1001426, 'Portland', NULL, 'portland', 'US', 1, 42.8692000000, -84.9030500000), (1124562, 1001453, 'Portland', NULL, 'portland', 'US', 1, 43.6573700000, -70.2589000000), (1124563, 1001452, 'Portland', NULL, 'portland', 'US', 1, 42.3797800000, -79.4675500000), (1124564, 1001441, 'Portland', NULL, 'portland', 'US', 1, 43.7688600000, -90.8581900000), (1124565, 1001415, 'Portland', NULL, 'portland', 'US', 1, 45.5234500000, -122.6762100000), (1124566, 1001416, 'Portola', NULL, 'portola', 'US', 1, 39.8104600000, -120.4691000000), (1124567, 1001416, 'Portola Hills', NULL, 'portola-hills', 'US', 1, 33.6791900000, -117.6311600000), (1124568, 1001416, 'Portola Valley', NULL, 'portola-valley', 'US', 1, 37.3841100000, -122.2352400000), (1124569, 1001427, 'Portsmouth', NULL, 'portsmouth', 'US', 1, 36.8354300000, -76.2982700000), (1124570, 1001404, 'Portsmouth', NULL, 'portsmouth', 'US', 1, 43.0770400000, -70.7576600000), (1124571, 1001461, 'Portsmouth', NULL, 'portsmouth', 'US', 1, 41.6023200000, -71.2503300000), (1124572, 1001427, 'Portsmouth Heights', NULL, 'portsmouth-heights', 'US', 1, 36.8209800000, -76.3688300000), (1124573, 1001425, 'Posen', NULL, 'posen', 'US', 1, 41.6317000000, -87.6814400000), (1124574, 1001440, 'Posey County', NULL, 'posey-county', 'US', 1, 38.0218900000, -87.8684700000), (1124575, 1001440, 'Poseyville', NULL, 'poseyville', 'US', 1, 38.1700400000, -87.7830800000), (1124576, 1001407, 'Post', NULL, 'post', 'US', 1, 33.1912200000, -101.3790000000), (1124577, 1001460, 'Post Falls', NULL, 'post-falls', 'US', 1, 47.7179600000, -116.9515900000), (1124578, 1001459, 'Postville', NULL, 'postville', 'US', 1, 43.0847000000, -91.5682000000), (1124579, 1001421, 'Poteau', NULL, 'poteau', 'US', 1, 35.0537100000, -94.6235600000), (1124580, 1001407, 'Poteet', NULL, 'poteet', 'US', 1, 29.0405200000, -98.5680700000), (1124581, 1001407, 'Poth', NULL, 'poth', 'US', 1, 29.0696900000, -98.0819500000), (1124582, 1001401, 'Potomac', NULL, 'potomac', 'US', 1, 39.0181700000, -77.2085900000), (1124583, 1001401, 'Potomac Heights', NULL, 'potomac-heights', 'US', 1, 38.6087300000, -77.1405300000), (1124584, 1001427, 'Potomac Mills', NULL, 'potomac-mills', 'US', 1, 38.6459500000, -77.2941500000), (1124585, 1001401, 'Potomac Park', NULL, 'potomac-park', 'US', 1, 39.6117600000, -78.8058500000), (1124586, 1001451, 'Potosi', NULL, 'potosi', 'US', 1, 37.9364400000, -90.7879100000), (1124587, 1001407, 'Potosi', NULL, 'potosi', 'US', 1, 32.3293000000, -99.6564700000), (1124588, 1001452, 'Potsdam', NULL, 'potsdam', 'US', 1, 44.6697800000, -74.9813100000), (1124589, 1001406, 'Pottawatomie County', NULL, 'pottawatomie-county', 'US', 1, 39.3790100000, -96.3424400000), (1124590, 1001421, 'Pottawatomie County', NULL, 'pottawatomie-county', 'US', 1, 35.2067200000, -96.9483000000), (1124591, 1001459, 'Pottawattamie County', NULL, 'pottawattamie-county', 'US', 1, 41.3366100000, -95.5423900000), (1124592, 1001422, 'Potter County', NULL, 'potter-county', 'US', 1, 41.7449200000, -77.8958100000), (1124593, 1001445, 'Potter County', NULL, 'potter-county', 'US', 1, 45.0645000000, -99.9572500000), (1124594, 1001407, 'Potter County', NULL, 'potter-county', 'US', 1, 35.4012700000, -101.8940000000), (1124595, 1001441, 'Potter Lake', NULL, 'potter-lake', 'US', 1, 42.8216800000, -88.3489800000), (1124596, 1001426, 'Potterville', NULL, 'potterville', 'US', 1, 42.6292000000, -84.7388700000), (1124597, 1001407, 'Pottsboro', NULL, 'pottsboro', 'US', 1, 33.7592700000, -96.6694400000), (1124598, 1001422, 'Pottsgrove', NULL, 'pottsgrove', 'US', 1, 40.2648200000, -75.6118500000), (1124599, 1001422, 'Pottstown', NULL, 'pottstown', 'US', 1, 40.2453700000, -75.6496300000), (1124600, 1001444, 'Pottsville', NULL, 'pottsville', 'US', 1, 35.2481400000, -93.0490600000), (1124601, 1001422, 'Pottsville', NULL, 'pottsville', 'US', 1, 40.6856500000, -76.1955000000), (1124602, 1001452, 'Poughkeepsie', NULL, 'poughkeepsie', 'US', 1, 41.7003700000, -73.9209700000), (1124603, 1001462, 'Poulsbo', NULL, 'poulsbo', 'US', 1, 47.7359300000, -122.6465400000), (1124604, 1001409, 'Poultney', NULL, 'poultney', 'US', 1, 43.5170100000, -73.2362200000), (1124605, 1001452, 'Pound Ridge', NULL, 'pound-ridge', 'US', 1, 41.2087100000, -73.5748500000), (1124606, 1001416, 'Poway', NULL, 'poway', 'US', 1, 32.9628200000, -117.0358600000), (1124607, 1001446, 'Powder River County', NULL, 'powder-river-county', 'US', 1, 45.3950100000, -105.6301000000), (1124608, 1001455, 'Powder Springs', NULL, 'powder-springs', 'US', 1, 33.8595500000, -84.6838200000), (1124609, 1001407, 'Powderly', NULL, 'powderly', 'US', 1, 33.8112200000, -95.5244000000), (1124610, 1001443, 'Powdersville', NULL, 'powdersville', 'US', 1, 34.7917800000, -82.4929100000), (1124611, 1001442, 'Powell', NULL, 'powell', 'US', 1, 44.7538400000, -108.7573500000), (1124612, 1001419, 'Powell County', NULL, 'powell-county', 'US', 1, 37.8311500000, -83.8237700000), (1124613, 1001446, 'Powell County', NULL, 'powell-county', 'US', 1, 46.8566300000, -112.9362000000), (1124614, 1001454, 'Powells Crossroads', NULL, 'powells-crossroads', 'US', 1, 35.1895200000, -85.4858000000), (1124615, 1001460, 'Power County', NULL, 'power-county', 'US', 1, 42.6936900000, -112.8406700000), (1124616, 1001441, 'Powers Lake', NULL, 'powers-lake', 'US', 1, 42.5536300000, -88.2945400000), (1124617, 1001459, 'Poweshiek County', NULL, 'poweshiek-county', 'US', 1, 41.6864400000, -92.5314700000), (1124618, 1001427, 'Powhatan County', NULL, 'powhatan-county', 'US', 1, 37.5502000000, -77.9151900000), (1124619, 1001409, 'Pownal', NULL, 'pownal', 'US', 1, 42.7656400000, -73.2359400000), (1124620, 1001457, 'Poydras', NULL, 'poydras', 'US', 1, 29.8693700000, -89.8889500000), (1124621, 1001441, 'Poynette', NULL, 'poynette', 'US', 1, 43.3902600000, -89.4029000000), (1124622, 1001421, 'Prague', NULL, 'prague', 'US', 1, 35.4867400000, -96.6850200000), (1124623, 1001459, 'Prairie City', NULL, 'prairie-city', 'US', 1, 41.5994300000, -93.2352100000), (1124624, 1001444, 'Prairie County', NULL, 'prairie-county', 'US', 1, 34.8297900000, -91.5527700000), (1124625, 1001446, 'Prairie County', NULL, 'prairie-county', 'US', 1, 46.8604900000, -105.3779400000), (1124626, 1001444, 'Prairie Creek', NULL, 'prairie-creek', 'US', 1, 36.3420200000, -94.0618700000), (1124627, 1001444, 'Prairie Grove', NULL, 'prairie-grove', 'US', 1, 35.9759100000, -94.3177100000), (1124628, 1001425, 'Prairie Grove', NULL, 'prairie-grove', 'US', 1, 42.2786300000, -88.2609200000), (1124629, 1001462, 'Prairie Heights', NULL, 'prairie-heights', 'US', 1, 47.1493300000, -122.1053000000), (1124630, 1001462, 'Prairie Ridge', NULL, 'prairie-ridge', 'US', 1, 47.1376000000, -122.1487300000), (1124631, 1001407, 'Prairie View', NULL, 'prairie-view', 'US', 1, 30.0932700000, -95.9877300000), (1124632, 1001406, 'Prairie Village', NULL, 'prairie-village', 'US', 1, 38.9916700000, -94.6335700000), (1124633, 1001441, 'Prairie du Chien', NULL, 'prairie-du-chien', 'US', 1, 43.0516500000, -91.1412400000), (1124634, 1001441, 'Prairie du Sac', NULL, 'prairie-du-sac', 'US', 1, 43.2869300000, -89.7240100000), (1124635, 1001457, 'Prairieville', NULL, 'prairieville', 'US', 1, 30.3029700000, -90.9720500000), (1124636, 1001406, 'Pratt', NULL, 'pratt', 'US', 1, 37.6439100000, -98.7375900000), (1124637, 1001406, 'Pratt County', NULL, 'pratt-county', 'US', 1, 37.6477400000, -98.7396000000), (1124638, 1001456, 'Prattville', NULL, 'prattville', 'US', 1, 32.4640200000, -86.4597000000), (1124639, 1001407, 'Premont', NULL, 'premont', 'US', 1, 27.3605900000, -98.1236200000), (1124640, 1001430, 'Prentiss', NULL, 'prentiss', 'US', 1, 31.5985000000, -89.8670200000), (1124641, 1001430, 'Prentiss County', NULL, 'prentiss-county', 'US', 1, 34.6182900000, -88.5201000000), (1124642, 1001444, 'Prescott', NULL, 'prescott', 'US', 1, 33.8026100000, -93.3810100000), (1124643, 1001434, 'Prescott', NULL, 'prescott', 'US', 1, 34.5400200000, -112.4685000000), (1124644, 1001441, 'Prescott', NULL, 'prescott', 'US', 1, 44.7488600000, -92.8021500000), (1124645, 1001434, 'Prescott Valley', NULL, 'prescott-valley', 'US', 1, 34.6100200000, -112.3157200000), (1124646, 1001417, 'Presidential Lakes Estates', NULL, 'presidential-lakes-estates', 'US', 1, 39.9137300000, -74.5646000000), (1124647, 1001407, 'Presidio', NULL, 'presidio', 'US', 1, 29.5607400000, -104.3721500000), (1124648, 1001407, 'Presidio County', NULL, 'presidio-county', 'US', 1, 29.9998000000, -104.2405200000), (1124649, 1001453, 'Presque Isle', NULL, 'presque-isle', 'US', 1, 46.6811500000, -68.0158600000), (1124650, 1001426, 'Presque Isle County', NULL, 'presque-isle-county', 'US', 1, 45.3984500000, -83.8435400000), (1124651, 1001457, 'Presquille', NULL, 'presquille', 'US', 1, 29.5638300000, -90.6462000000), (1124652, 1001425, 'Prestbury', NULL, 'prestbury', 'US', 1, 41.7832900000, -88.4176400000), (1124653, 1001455, 'Preston', NULL, 'preston', 'US', 1, 32.0659900000, -84.5374200000), (1124654, 1001407, 'Preston', NULL, 'preston', 'US', 1, 33.8823200000, -96.6330500000), (1124655, 1001459, 'Preston', NULL, 'preston', 'US', 1, 42.0503000000, -90.4140200000), (1124656, 1001420, 'Preston', NULL, 'preston', 'US', 1, 43.6702400000, -92.0832200000), (1124657, 1001460, 'Preston', NULL, 'preston', 'US', 1, 42.0963100000, -111.8766200000), (1124658, 1001435, 'Preston City', NULL, 'preston-city', 'US', 1, 41.5289900000, -71.9739600000), (1124659, 1001429, 'Preston County', NULL, 'preston-county', 'US', 1, 39.4693000000, -79.6681600000), (1124660, 1001425, 'Preston Heights', NULL, 'preston-heights', 'US', 1, 41.4917000000, -88.0817200000), (1124661, 1001419, 'Prestonsburg', NULL, 'prestonsburg', 'US', 1, 37.6656500000, -82.7715500000), (1124662, 1001436, 'Pretty Bayou', NULL, 'pretty-bayou', 'US', 1, 30.1965900000, -85.6966000000), (1124663, 1001414, 'Price', NULL, 'price', 'US', 1, 39.5994100000, -110.8107100000), (1124664, 1001441, 'Price County', NULL, 'price-county', 'US', 1, 45.6803800000, -90.3613700000), (1124665, 1001427, 'Prices Fork', NULL, 'prices-fork', 'US', 1, 37.2098500000, -80.4900500000), (1124666, 1001456, 'Priceville', NULL, 'priceville', 'US', 1, 34.5250900000, -86.8947300000), (1124667, 1001456, 'Prichard', NULL, 'prichard', 'US', 1, 30.7388000000, -88.0788900000), (1124668, 1001457, 'Prien', NULL, 'prien', 'US', 1, 30.1818700000, -93.2737700000), (1124669, 1001460, 'Priest River', NULL, 'priest-river', 'US', 1, 48.1809700000, -116.9115700000), (1124670, 1001407, 'Primera', NULL, 'primera', 'US', 1, 26.2259100000, -97.7580500000), (1124671, 1001459, 'Primghar', NULL, 'primghar', 'US', 1, 43.0869200000, -95.6272300000), (1124672, 1001427, 'Prince Edward County', NULL, 'prince-edward-county', 'US', 1, 37.2243000000, -78.4410800000), (1124673, 1001401, 'Prince Frederick', NULL, 'prince-frederick', 'US', 1, 38.5404000000, -76.5844000000), (1124674, 1001427, 'Prince George', NULL, 'prince-george', 'US', 1, 37.2204300000, -77.2880300000), (1124675, 1001427, 'Prince George County', NULL, 'prince-george-county', 'US', 1, 37.1865300000, -77.2241300000), (1124676, 1001401, 'Prince George''s County', NULL, 'prince-george-s-county', 'US', 1, 38.8295200000, -76.8472900000), (1124677, 1001427, 'Prince William County', NULL, 'prince-william-county', 'US', 1, 38.7016700000, -77.4776600000), (1124678, 1001440, 'Princes Lakes', NULL, 'princes-lakes', 'US', 1, 39.3536600000, -86.0980500000), (1124679, 1001401, 'Princess Anne', NULL, 'princess-anne', 'US', 1, 38.2029000000, -75.6924300000), (1124680, 1001436, 'Princeton', NULL, 'princeton', 'US', 1, 25.5384400000, -80.4089400000), (1124681, 1001440, 'Princeton', NULL, 'princeton', 'US', 1, 38.3553200000, -87.5675200000), (1124682, 1001419, 'Princeton', NULL, 'princeton', 'US', 1, 37.1092200000, -87.8819600000), (1124683, 1001447, 'Princeton', NULL, 'princeton', 'US', 1, 35.4659900000, -78.1605500000), (1124684, 1001407, 'Princeton', NULL, 'princeton', 'US', 1, 33.1801200000, -96.4980400000), (1124685, 1001429, 'Princeton', NULL, 'princeton', 'US', 1, 37.3662300000, -81.1025900000), (1124686, 1001425, 'Princeton', NULL, 'princeton', 'US', 1, 41.3680900000, -89.4648100000), (1124687, 1001433, 'Princeton', NULL, 'princeton', 'US', 1, 42.4487000000, -71.8773000000), (1124688, 1001420, 'Princeton', NULL, 'princeton', 'US', 1, 45.5699700000, -93.5816300000), (1124689, 1001417, 'Princeton', NULL, 'princeton', 'US', 1, 40.3487200000, -74.6590500000), (1124690, 1001451, 'Princeton', NULL, 'princeton', 'US', 1, 40.4008400000, -93.5805000000), (1124691, 1001441, 'Princeton', NULL, 'princeton', 'US', 1, 43.8508100000, -89.1217800000), (1124692, 1001417, 'Princeton Junction', NULL, 'princeton-junction', 'US', 1, 40.3173300000, -74.6198800000), (1124693, 1001417, 'Princeton Meadows', NULL, 'princeton-meadows', 'US', 1, 40.3317700000, -74.5637700000), (1124694, 1001447, 'Princeville', NULL, 'princeville', 'US', 1, 35.8896000000, -77.5321900000), (1124695, 1001425, 'Princeville', NULL, 'princeville', 'US', 1, 40.9297600000, -89.7576000000), (1124696, 1001411, 'Princeville', NULL, 'princeville', 'US', 1, 22.2175800000, -159.4788800000), (1124697, 1001415, 'Prineville', NULL, 'prineville', 'US', 1, 44.2998500000, -120.8344700000), (1124698, 1001420, 'Prior Lake', NULL, 'prior-lake', 'US', 1, 44.7133000000, -93.4227300000), (1124699, 1001443, 'Privateer', NULL, 'privateer', 'US', 1, 33.8332100000, -80.4142500000), (1124700, 1001420, 'Proctor', NULL, 'proctor', 'US', 1, 46.7471600000, -92.2254700000), (1124701, 1001407, 'Progreso', NULL, 'progreso', 'US', 1, 26.0923000000, -97.9572200000), (1124702, 1001422, 'Progress', NULL, 'progress', 'US', 1, 40.2850900000, -76.8313600000), (1124703, 1001436, 'Progress Village', NULL, 'progress-village', 'US', 1, 27.9003000000, -82.3645400000), (1124704, 1001425, 'Prophetstown', NULL, 'prophetstown', 'US', 1, 41.6714200000, -89.9362200000), (1124705, 1001419, 'Prospect', NULL, 'prospect', 'US', 1, 38.3450700000, -85.6155200000), (1124706, 1001435, 'Prospect', NULL, 'prospect', 'US', 1, 41.5023200000, -72.9787200000), (1124707, 1001422, 'Prospect', NULL, 'prospect', 'US', 1, 40.9045100000, -80.0464500000), (1124708, 1001425, 'Prospect Heights', NULL, 'prospect-heights', 'US', 1, 42.0953000000, -87.9375700000), (1124709, 1001422, 'Prospect Park', NULL, 'prospect-park', 'US', 1, 39.8878900000, -75.3082400000), (1124710, 1001417, 'Prospect Park', NULL, 'prospect-park', 'US', 1, 40.9370400000, -74.1743100000), (1124711, 1001407, 'Prosper', NULL, 'prosper', 'US', 1, 33.2362300000, -96.8011100000), (1124712, 1001443, 'Prosperity', NULL, 'prosperity', 'US', 1, 34.2093100000, -81.5331600000), (1124713, 1001429, 'Prosperity', NULL, 'prosperity', 'US', 1, 37.8365000000, -81.2017700000), (1124714, 1001462, 'Prosser', NULL, 'prosser', 'US', 1, 46.2068000000, -119.7689200000), (1124715, 1001419, 'Providence', NULL, 'providence', 'US', 1, 38.5745100000, -85.2210700000), (1124716, 1001461, 'Providence', NULL, 'providence', 'US', 1, 41.8239900000, -71.4128300000), (1124717, 1001414, 'Providence', NULL, 'providence', 'US', 1, 41.7063200000, -111.8171700000), (1124718, 1001407, 'Providence', NULL, 'providence', 'US', 1, 33.2334000000, -96.9615800000), (1124719, 1001461, 'Providence County', NULL, 'providence-county', 'US', 1, 41.8713600000, -71.5786000000), (1124720, 1001433, 'Provincetown', NULL, 'provincetown', 'US', 1, 42.0529500000, -70.1864000000), (1124721, 1001414, 'Provo', NULL, 'provo', 'US', 1, 40.2338400000, -111.6585300000), (1124722, 1001450, 'Prowers County', NULL, 'prowers-county', 'US', 1, 37.9551800000, -102.3933500000), (1124723, 1001426, 'Prudenville', NULL, 'prudenville', 'US', 1, 44.2983500000, -84.6519700000), (1124724, 1001400, 'Prudhoe Bay', NULL, 'prudhoe-bay', 'US', 1, 70.2552800000, -148.3372200000), (1124725, 1001416, 'Prunedale', NULL, 'prunedale', 'US', 1, 36.7757900000, -121.6696700000), (1124726, 1001421, 'Pryor', NULL, 'pryor', 'US', 1, 36.3084300000, -95.3169100000), (1124727, 1001421, 'Pryor Creek', NULL, 'pryor-creek', 'US', 1, 36.3086200000, -95.3177700000), (1124728, 1001450, 'Pueblo', NULL, 'pueblo', 'US', 1, 38.2544500000, -104.6091400000), (1124729, 1001450, 'Pueblo County', NULL, 'pueblo-county', 'US', 1, 38.1734200000, -104.5128500000), (1124730, 1001450, 'Pueblo West', NULL, 'pueblo-west', 'US', 1, 38.3500000000, -104.7227500000), (1124731, 1001411, 'Puhi', NULL, 'puhi', 'US', 1, 21.9688800000, -159.4001200000), (1124732, 1001411, 'Pukalani', NULL, 'pukalani', 'US', 1, 20.8366700000, -156.3366700000), (1124733, 1001454, 'Pulaski', NULL, 'pulaski', 'US', 1, 35.1998000000, -87.0308400000), (1124734, 1001427, 'Pulaski', NULL, 'pulaski', 'US', 1, 37.0479000000, -80.7797900000), (1124735, 1001452, 'Pulaski', NULL, 'pulaski', 'US', 1, 43.5670100000, -76.1277000000), (1124736, 1001441, 'Pulaski', NULL, 'pulaski', 'US', 1, 44.6722200000, -88.2426000000), (1124737, 1001444, 'Pulaski County', NULL, 'pulaski-county', 'US', 1, 34.7699300000, -92.3118000000), (1124738, 1001455, 'Pulaski County', NULL, 'pulaski-county', 'US', 1, 32.2323000000, -83.4759600000), (1124739, 1001425, 'Pulaski County', NULL, 'pulaski-county', 'US', 1, 37.2229100000, -89.1265700000), (1124740, 1001419, 'Pulaski County', NULL, 'pulaski-county', 'US', 1, 37.1039300000, -84.5771800000), (1124741, 1001451, 'Pulaski County', NULL, 'pulaski-county', 'US', 1, 37.8246300000, -92.2076600000), (1124742, 1001427, 'Pulaski County', NULL, 'pulaski-county', 'US', 1, 37.0636100000, -80.7143400000), (1124743, 1001440, 'Pulaski County', NULL, 'pulaski-county', 'US', 1, 41.0418300000, -86.6987800000), (1124744, 1001462, 'Pullman', NULL, 'pullman', 'US', 1, 46.7312700000, -117.1796200000), (1124745, 1001401, 'Pumphrey', NULL, 'pumphrey', 'US', 1, 39.2173300000, -76.6371900000), (1124746, 1001447, 'Pumpkin Center', NULL, 'pumpkin-center', 'US', 1, 34.7915500000, -77.3724600000), (1124747, 1001411, 'Punalu‘u', NULL, 'punalu-u', 'US', 1, 21.5704500000, -157.8755700000), (1124748, 1001436, 'Punta Gorda', NULL, 'punta-gorda', 'US', 1, 26.9297800000, -82.0453700000), (1124749, 1001436, 'Punta Gorda Isles', NULL, 'punta-gorda-isles', 'US', 1, 26.9175600000, -82.0784200000), (1124750, 1001436, 'Punta Rassa', NULL, 'punta-rassa', 'US', 1, 26.4878600000, -82.0123100000), (1124751, 1001422, 'Punxsutawney', NULL, 'punxsutawney', 'US', 1, 40.9436800000, -78.9708700000), (1124752, 1001411, 'Pupukea', NULL, 'pupukea', 'US', 1, 21.6545600000, -158.0606500000), (1124753, 1001421, 'Purcell', NULL, 'purcell', 'US', 1, 35.0136800000, -97.3611400000), (1124754, 1001427, 'Purcellville', NULL, 'purcellville', 'US', 1, 39.1367700000, -77.7147200000), (1124755, 1001452, 'Purchase', NULL, 'purchase', 'US', 1, 41.0409300000, -73.7145700000), (1124756, 1001451, 'Purdy', NULL, 'purdy', 'US', 1, 36.8172900000, -93.9207600000), (1124757, 1001462, 'Purdy', NULL, 'purdy', 'US', 1, 47.3889900000, -122.6254100000), (1124758, 1001430, 'Purvis', NULL, 'purvis', 'US', 1, 31.1432400000, -89.4097900000), (1124759, 1001421, 'Pushmataha County', NULL, 'pushmataha-county', 'US', 1, 34.4162000000, -95.3757900000), (1124760, 1001435, 'Putnam', NULL, 'putnam', 'US', 1, 41.9151000000, -71.9089600000), (1124761, 1001436, 'Putnam County', NULL, 'putnam-county', 'US', 1, 29.6086300000, -81.7443000000), (1124762, 1001455, 'Putnam County', NULL, 'putnam-county', 'US', 1, 33.3217700000, -83.3728400000), (1124763, 1001440, 'Putnam County', NULL, 'putnam-county', 'US', 1, 39.6662600000, -86.8450000000), (1124764, 1001454, 'Putnam County', NULL, 'putnam-county', 'US', 1, 36.1408300000, -85.4951900000), (1124765, 1001429, 'Putnam County', NULL, 'putnam-county', 'US', 1, 38.5086200000, -81.9089900000), (1124766, 1001425, 'Putnam County', NULL, 'putnam-county', 'US', 1, 41.2044700000, -89.2858300000), (1124767, 1001451, 'Putnam County', NULL, 'putnam-county', 'US', 1, 40.4789100000, -93.0161300000), (1124768, 1001452, 'Putnam County', NULL, 'putnam-county', 'US', 1, 41.4266600000, -73.7495100000), (1124769, 1001452, 'Putnam Lake', NULL, 'putnam-lake', 'US', 1, 41.4620400000, -73.5462400000), (1124770, 1001455, 'Putney', NULL, 'putney', 'US', 1, 31.4701800000, -84.1176800000), (1124771, 1001462, 'Puyallup', NULL, 'puyallup', 'US', 1, 47.1853800000, -122.2929000000), (1124772, 1001422, 'Pymatuning Central', NULL, 'pymatuning-central', 'US', 1, 41.5854600000, -80.4796000000), (1124773, 1001411, 'Pāhala', NULL, 'pahala', 'US', 1, 19.2029700000, -155.4786000000), (1124774, 1001411, 'Pāpa‘ikou', NULL, 'papa-ikou', 'US', 1, 19.7871800000, -155.0932600000), (1124775, 1001407, 'Quail Creek', NULL, 'quail-creek', 'US', 1, 28.7764000000, -97.0823200000), (1124776, 1001436, 'Quail Ridge', NULL, 'quail-ridge', 'US', 1, 28.3490500000, -82.5553200000), (1124777, 1001416, 'Quail Valley', NULL, 'quail-valley', 'US', 1, 33.7069700000, -117.2450400000), (1124778, 1001422, 'Quakertown', NULL, 'quakertown', 'US', 1, 40.4417700000, -75.3415700000), (1124779, 1001407, 'Quanah', NULL, 'quanah', 'US', 1, 34.2978500000, -99.7403700000), (1124780, 1001427, 'Quantico Station', NULL, 'quantico-station', 'US', 1, 38.5226300000, -77.3183400000), (1124781, 1001422, 'Quarryville', NULL, 'quarryville', 'US', 1, 39.8970500000, -76.1635700000), (1124782, 1001416, 'Quartz Hill', NULL, 'quartz-hill', 'US', 1, 34.6452600000, -118.2181300000), (1124783, 1001434, 'Quartzsite', NULL, 'quartzsite', 'US', 1, 33.6639100000, -114.2299500000), (1124784, 1001423, 'Quay County', NULL, 'quay-county', 'US', 1, 35.1043600000, -103.5497400000), (1124785, 1001401, 'Queen Anne', NULL, 'queen-anne', 'US', 1, 38.8987200000, -76.6783000000), (1124786, 1001401, 'Queen Anne''s County', NULL, 'queen-anne-s-county', 'US', 1, 39.0376300000, -76.0850400000), (1124787, 1001407, 'Queen City', NULL, 'queen-city', 'US', 1, 33.1487400000, -94.1501900000), (1124788, 1001434, 'Queen Creek', NULL, 'queen-creek', 'US', 1, 33.2486600000, -111.6343000000), (1124789, 1001401, 'Queenland', NULL, 'queenland', 'US', 1, 38.8052400000, -76.7912600000), (1124790, 1001452, 'Queens', NULL, 'queens', 'US', 1, 40.6814900000, -73.8365200000), (1124791, 1001452, 'Queens County', NULL, 'queens-county', 'US', 1, 40.6574900000, -73.8387500000), (1124792, 1001452, 'Queens Village', NULL, 'queens-village', 'US', 1, 40.7267700000, -73.7415200000), (1124793, 1001452, 'Queensbury', NULL, 'queensbury', 'US', 1, 43.3772900000, -73.6131700000), (1124794, 1001423, 'Questa', NULL, 'questa', 'US', 1, 36.7039100000, -105.5950100000), (1124795, 1001436, 'Quincy', NULL, 'quincy', 'US', 1, 30.5871400000, -84.5832500000), (1124796, 1001425, 'Quincy', NULL, 'quincy', 'US', 1, 39.9356000000, -91.4098700000), (1124797, 1001433, 'Quincy', NULL, 'quincy', 'US', 1, 42.2528800000, -71.0022700000), (1124798, 1001426, 'Quincy', NULL, 'quincy', 'US', 1, 41.9442100000, -84.8838500000), (1124799, 1001416, 'Quincy', NULL, 'quincy', 'US', 1, 39.9368200000, -120.9464700000), (1124800, 1001462, 'Quincy', NULL, 'quincy', 'US', 1, 47.2343000000, -119.8525500000), (1124801, 1001435, 'Quinebaug', NULL, 'quinebaug', 'US', 1, 42.0237100000, -71.9498000000), (1124802, 1001407, 'Quinlan', NULL, 'quinlan', 'US', 1, 32.9104000000, -96.1355300000), (1124803, 1001426, 'Quinnesec', NULL, 'quinnesec', 'US', 1, 45.8063500000, -87.9884600000), (1124804, 1001421, 'Quinton', NULL, 'quinton', 'US', 1, 35.1228800000, -95.3710900000), (1124805, 1001455, 'Quitman', NULL, 'quitman', 'US', 1, 30.7849200000, -83.5598800000), (1124806, 1001430, 'Quitman', NULL, 'quitman', 'US', 1, 32.0401500000, -88.7281000000), (1124807, 1001407, 'Quitman', NULL, 'quitman', 'US', 1, 32.7959600000, -95.4510600000), (1124808, 1001455, 'Quitman County', NULL, 'quitman-county', 'US', 1, 31.8673300000, -85.0187800000), (1124809, 1001430, 'Quitman County', NULL, 'quitman-county', 'US', 1, 34.2514100000, -90.2891200000), (1124810, 1001455, 'Rabun County', NULL, 'rabun-county', 'US', 1, 34.8816800000, -83.4021400000), (1124811, 1001457, 'Raceland', NULL, 'raceland', 'US', 1, 29.7274300000, -90.5989800000), (1124812, 1001419, 'Raceland', NULL, 'raceland', 'US', 1, 38.5400800000, -82.7285000000), (1124813, 1001441, 'Racine', NULL, 'racine', 'US', 1, 42.7261300000, -87.7828500000), (1124814, 1001441, 'Racine County', NULL, 'racine-county', 'US', 1, 42.7298700000, -87.8123500000), (1124815, 1001419, 'Radcliff', NULL, 'radcliff', 'US', 1, 37.8403500000, -85.9491300000), (1124816, 1001427, 'Radford', NULL, 'radford', 'US', 1, 37.1317900000, -80.5764500000), (1124817, 1001423, 'Radium Springs', NULL, 'radium-springs', 'US', 1, 32.5012000000, -106.9280700000), (1124818, 1001422, 'Radnor', NULL, 'radnor', 'US', 1, 40.0462200000, -75.3599100000), (1124819, 1001447, 'Raeford', NULL, 'raeford', 'US', 1, 34.9810000000, -79.2242000000), (1124820, 1001442, 'Rafter J Ranch', NULL, 'rafter-j-ranch', 'US', 1, 43.4260400000, -110.7990900000), (1124821, 1001456, 'Ragland', NULL, 'ragland', 'US', 1, 33.7445400000, -86.1558100000), (1124822, 1001417, 'Rahway', NULL, 'rahway', 'US', 1, 40.6081600000, -74.2776500000), (1124823, 1001416, 'Rainbow', NULL, 'rainbow', 'US', 1, 33.4103100000, -117.1478100000), (1124824, 1001456, 'Rainbow City', NULL, 'rainbow-city', 'US', 1, 33.9548200000, -86.0419200000), (1124825, 1001429, 'Rainelle', NULL, 'rainelle', 'US', 1, 37.9687300000, -80.7670300000), (1124826, 1001415, 'Rainier', NULL, 'rainier', 'US', 1, 46.0890000000, -122.9359400000), (1124827, 1001462, 'Rainier', NULL, 'rainier', 'US', 1, 46.8881500000, -122.6884600000), (1124828, 1001407, 'Rains County', NULL, 'rains-county', 'US', 1, 32.8703400000, -95.7933800000), (1124829, 1001456, 'Rainsville', NULL, 'rainsville', 'US', 1, 34.4942500000, -85.8477500000), (1124830, 1001430, 'Raleigh', NULL, 'raleigh', 'US', 1, 32.0334900000, -89.5222900000), (1124831, 1001447, 'Raleigh', NULL, 'raleigh', 'US', 1, 35.7721000000, -78.6386100000), (1124832, 1001429, 'Raleigh County', NULL, 'raleigh-county', 'US', 1, 37.7713600000, -81.2486300000), (1124833, 1001415, 'Raleigh Hills', NULL, 'raleigh-hills', 'US', 1, 45.4806700000, -122.7620400000), (1124834, 1001407, 'Ralls', NULL, 'ralls', 'US', 1, 33.6742500000, -101.3876600000), (1124835, 1001451, 'Ralls County', NULL, 'ralls-county', 'US', 1, 39.5276700000, -91.5220200000), (1124836, 1001408, 'Ralston', NULL, 'ralston', 'US', 1, 41.2052800000, -96.0425200000), (1124837, 1001417, 'Ramblewood', NULL, 'ramblewood', 'US', 1, 39.9287200000, -74.9437800000), (1124838, 1001416, 'Ramona', NULL, 'ramona', 'US', 1, 33.0417100000, -116.8680800000), (1124839, 1001447, 'Ramseur', NULL, 'ramseur', 'US', 1, 35.7334700000, -79.6525300000), (1124840, 1001425, 'Ramsey', NULL, 'ramsey', 'US', 1, 39.1444900000, -89.1086800000), (1124841, 1001420, 'Ramsey', NULL, 'ramsey', 'US', 1, 45.2611000000, -93.4500000000), (1124842, 1001417, 'Ramsey', NULL, 'ramsey', 'US', 1, 41.0573200000, -74.1409800000), (1124843, 1001420, 'Ramsey County', NULL, 'ramsey-county', 'US', 1, 45.0170600000, -93.0996100000), (1124844, 1001418, 'Ramsey County', NULL, 'ramsey-county', 'US', 1, 48.2689300000, -98.7201400000), (1124845, 1001417, 'Ramtown', NULL, 'ramtown', 'US', 1, 40.1209500000, -74.1437500000), (1124846, 1001442, 'Ranchettes', NULL, 'ranchettes', 'US', 1, 41.2185900000, -104.7902500000), (1124847, 1001407, 'Rancho Alegre', NULL, 'rancho-alegre', 'US', 1, 27.7416900000, -98.0947300000), (1124848, 1001416, 'Rancho Calaveras', NULL, 'rancho-calaveras', 'US', 1, 38.1274200000, -120.8582700000), (1124849, 1001416, 'Rancho Cordova', NULL, 'rancho-cordova', 'US', 1, 38.5890700000, -121.3027300000), (1124850, 1001416, 'Rancho Cucamonga', NULL, 'rancho-cucamonga', 'US', 1, 34.1064000000, -117.5931100000), (1124851, 1001416, 'Rancho Mirage', NULL, 'rancho-mirage', 'US', 1, 33.7397400000, -116.4127900000), (1124852, 1001416, 'Rancho Murieta', NULL, 'rancho-murieta', 'US', 1, 38.5018500000, -121.0946700000), (1124853, 1001416, 'Rancho Palos Verdes', NULL, 'rancho-palos-verdes', 'US', 1, 33.7444600000, -118.3870200000), (1124854, 1001416, 'Rancho Penasquitos', NULL, 'rancho-penasquitos', 'US', 1, 32.9594900000, -117.1153100000), (1124855, 1001416, 'Rancho San Diego', NULL, 'rancho-san-diego', 'US', 1, 32.7472700000, -116.9353000000), (1124856, 1001416, 'Rancho Santa Fe', NULL, 'rancho-santa-fe', 'US', 1, 33.0203200000, -117.2028100000), (1124857, 1001416, 'Rancho Santa Margarita', NULL, 'rancho-santa-margarita', 'US', 1, 33.6408600000, -117.6031000000), (1124858, 1001416, 'Rancho Tehama Reserve', NULL, 'rancho-tehama-reserve', 'US', 1, 40.0156900000, -122.4007200000), (1124859, 1001407, 'Rancho Viejo', NULL, 'rancho-viejo', 'US', 1, 26.0395200000, -97.5563800000), (1124860, 1001423, 'Ranchos de Taos', NULL, 'ranchos-de-taos', 'US', 1, 36.3586400000, -105.6094600000), (1124861, 1001429, 'Rand', NULL, 'rand', 'US', 1, 38.2826000000, -81.5623400000), (1124862, 1001407, 'Randall County', NULL, 'randall-county', 'US', 1, 34.9658500000, -101.8969500000), (1124863, 1001401, 'Randallstown', NULL, 'randallstown', 'US', 1, 39.3673300000, -76.7952500000), (1124864, 1001447, 'Randleman', NULL, 'randleman', 'US', 1, 35.8179100000, -79.8030900000), (1124865, 1001433, 'Randolph', NULL, 'randolph', 'US', 1, 42.1626000000, -71.0411600000), (1124866, 1001453, 'Randolph', NULL, 'randolph', 'US', 1, 44.2303500000, -69.7667100000), (1124867, 1001452, 'Randolph', NULL, 'randolph', 'US', 1, 42.1620100000, -78.9753200000), (1124868, 1001409, 'Randolph', NULL, 'randolph', 'US', 1, 43.9250700000, -72.6659400000), (1124869, 1001441, 'Randolph', NULL, 'randolph', 'US', 1, 43.5391500000, -89.0067800000), (1124870, 1001414, 'Randolph', NULL, 'randolph', 'US', 1, 41.6657800000, -111.1821400000), (1124871, 1001417, 'Randolph', NULL, 'randolph', 'US', 1, 40.8482900000, -74.5814800000), (1124872, 1001456, 'Randolph County', NULL, 'randolph-county', 'US', 1, 33.2937900000, -85.4590700000), (1124873, 1001444, 'Randolph County', NULL, 'randolph-county', 'US', 1, 36.3414800000, -91.0277200000), (1124874, 1001455, 'Randolph County', NULL, 'randolph-county', 'US', 1, 31.7626200000, -84.7541900000), (1124875, 1001425, 'Randolph County', NULL, 'randolph-county', 'US', 1, 38.0521200000, -89.8253100000), (1124876, 1001451, 'Randolph County', NULL, 'randolph-county', 'US', 1, 39.4401700000, -92.4970800000), (1124877, 1001447, 'Randolph County', NULL, 'randolph-county', 'US', 1, 35.7103300000, -79.8061600000), (1124878, 1001429, 'Randolph County', NULL, 'randolph-county', 'US', 1, 38.7747200000, -79.8758000000), (1124879, 1001440, 'Randolph County', NULL, 'randolph-county', 'US', 1, 40.1576400000, -85.0113100000), (1124880, 1001441, 'Random Lake', NULL, 'random-lake', 'US', 1, 43.5522200000, -87.9617600000), (1124881, 1001450, 'Rangely', NULL, 'rangely', 'US', 1, 40.0874800000, -108.8048300000), (1124882, 1001407, 'Ranger', NULL, 'ranger', 'US', 1, 32.4698500000, -98.6789500000), (1124883, 1001422, 'Rankin', NULL, 'rankin', 'US', 1, 40.4125700000, -79.8792200000), (1124884, 1001407, 'Rankin', NULL, 'rankin', 'US', 1, 31.2226500000, -101.9379100000), (1124885, 1001430, 'Rankin County', NULL, 'rankin-county', 'US', 1, 32.2641200000, -89.9458000000), (1124886, 1001447, 'Ranlo', NULL, 'ranlo', 'US', 1, 35.2862500000, -81.1303500000), (1124887, 1001407, 'Ransom Canyon', NULL, 'ransom-canyon', 'US', 1, 33.5334200000, -101.6796100000), (1124888, 1001418, 'Ransom County', NULL, 'ransom-county', 'US', 1, 46.4561600000, -97.6574500000), (1124889, 1001452, 'Ransomville', NULL, 'ransomville', 'US', 1, 43.2386700000, -78.9097600000), (1124890, 1001429, 'Ranson', NULL, 'ranson', 'US', 1, 39.2951000000, -77.8605500000), (1124891, 1001425, 'Rantoul', NULL, 'rantoul', 'US', 1, 40.3083700000, -88.1558800000), (1124892, 1001455, 'Raoul', NULL, 'raoul', 'US', 1, 34.4495400000, -83.5943400000), (1124893, 1001426, 'Rapid City', NULL, 'rapid-city', 'US', 1, 44.8344500000, -85.2825600000), (1124894, 1001445, 'Rapid City', NULL, 'rapid-city', 'US', 1, 44.0805400000, -103.2310100000), (1124895, 1001445, 'Rapid Valley', NULL, 'rapid-valley', 'US', 1, 44.0624900000, -103.1462900000), (1124896, 1001457, 'Rapides Parish', NULL, 'rapides-parish', 'US', 1, 31.1986200000, -92.5332000000), (1124897, 1001452, 'Rapids', NULL, 'rapids', 'US', 1, 43.0983900000, -78.6408600000), (1124898, 1001427, 'Rappahannock County', NULL, 'rappahannock-county', 'US', 1, 38.6847100000, -78.1592500000), (1124899, 1001417, 'Raritan', NULL, 'raritan', 'US', 1, 40.5695500000, -74.6329400000), (1124900, 1001460, 'Rathdrum', NULL, 'rathdrum', 'US', 1, 47.8124000000, -116.8965900000), (1124901, 1001423, 'Raton', NULL, 'raton', 'US', 1, 36.9033600000, -104.4391500000), (1124902, 1001422, 'Raubsville', NULL, 'raubsville', 'US', 1, 40.6356600000, -75.1929500000), (1124903, 1001446, 'Ravalli County', NULL, 'ravalli-county', 'US', 1, 46.0817000000, -114.1206900000), (1124904, 1001427, 'Raven', NULL, 'raven', 'US', 1, 37.0870600000, -81.8551200000), (1124905, 1001452, 'Ravena', NULL, 'ravena', 'US', 1, 42.4684100000, -73.8162400000), (1124906, 1001443, 'Ravenel', NULL, 'ravenel', 'US', 1, 32.7632300000, -80.2501000000), (1124907, 1001426, 'Ravenna', NULL, 'ravenna', 'US', 1, 43.1894700000, -85.9369900000), (1124908, 1001408, 'Ravenna', NULL, 'ravenna', 'US', 1, 41.0261200000, -98.9125800000), (1124909, 1001462, 'Ravensdale', NULL, 'ravensdale', 'US', 1, 47.3523200000, -121.9837300000), (1124910, 1001429, 'Ravenswood', NULL, 'ravenswood', 'US', 1, 38.9481400000, -81.7609600000), (1124911, 1001427, 'Ravensworth', NULL, 'ravensworth', 'US', 1, 38.8040000000, -77.2205400000), (1124912, 1001442, 'Rawlins', NULL, 'rawlins', 'US', 1, 41.7910700000, -107.2386600000), (1124913, 1001406, 'Rawlins County', NULL, 'rawlins-county', 'US', 1, 39.7852400000, -101.0757100000), (1124914, 1001430, 'Rawls Springs', NULL, 'rawls-springs', 'US', 1, 31.3807300000, -89.3714500000), (1124915, 1001455, 'Ray City', NULL, 'ray-city', 'US', 1, 31.0746400000, -83.1993200000), (1124916, 1001451, 'Ray County', NULL, 'ray-county', 'US', 1, 39.3524100000, -93.9898800000), (1124917, 1001430, 'Raymond', NULL, 'raymond', 'US', 1, 32.2593100000, -90.4226000000), (1124918, 1001453, 'Raymond', NULL, 'raymond', 'US', 1, 43.9014600000, -70.4703300000), (1124919, 1001404, 'Raymond', NULL, 'raymond', 'US', 1, 43.0362000000, -71.1834000000), (1124920, 1001462, 'Raymond', NULL, 'raymond', 'US', 1, 46.6864900000, -123.7329400000), (1124921, 1001407, 'Raymondville', NULL, 'raymondville', 'US', 1, 26.4814600000, -97.7830500000), (1124922, 1001451, 'Raymore', NULL, 'raymore', 'US', 1, 38.8019500000, -94.4527300000), (1124923, 1001457, 'Rayne', NULL, 'rayne', 'US', 1, 30.2349300000, -92.2684600000), (1124924, 1001433, 'Raynham', NULL, 'raynham', 'US', 1, 41.9487100000, -71.0731000000), (1124925, 1001433, 'Raynham Center', NULL, 'raynham-center', 'US', 1, 41.9237100000, -71.0522700000), (1124926, 1001451, 'Raytown', NULL, 'raytown', 'US', 1, 39.0086200000, -94.4635600000), (1124927, 1001457, 'Rayville', NULL, 'rayville', 'US', 1, 32.4773600000, -91.7548500000), (1124928, 1001453, 'Readfield', NULL, 'readfield', 'US', 1, 44.3878500000, -69.9667200000), (1124929, 1001433, 'Reading', NULL, 'reading', 'US', 1, 42.5256500000, -71.0953300000), (1124930, 1001426, 'Reading', NULL, 'reading', 'US', 1, 41.8394900000, -84.7480100000), (1124931, 1001422, 'Reading', NULL, 'reading', 'US', 1, 40.3356500000, -75.9268700000), (1124932, 1001407, 'Reagan County', NULL, 'reagan-county', 'US', 1, 31.3661900000, -101.5230100000), (1124933, 1001407, 'Real County', NULL, 'real-county', 'US', 1, 29.8317400000, -99.8221700000), (1124934, 1001422, 'Reamstown', NULL, 'reamstown', 'US', 1, 40.2114800000, -76.1232800000), (1124935, 1001444, 'Rector', NULL, 'rector', 'US', 1, 36.2631200000, -90.2926000000), (1124936, 1001443, 'Red Bank', NULL, 'red-bank', 'US', 1, 33.9320900000, -81.2384300000), (1124937, 1001454, 'Red Bank', NULL, 'red-bank', 'US', 1, 35.1122900000, -85.2941300000), (1124938, 1001417, 'Red Bank', NULL, 'red-bank', 'US', 1, 40.3470500000, -74.0643100000), (1124939, 1001456, 'Red Bay', NULL, 'red-bay', 'US', 1, 34.4398200000, -88.1408700000), (1124940, 1001416, 'Red Bluff', NULL, 'red-bluff', 'US', 1, 40.1784900000, -122.2358300000), (1124941, 1001454, 'Red Boiling Springs', NULL, 'red-boiling-springs', 'US', 1, 36.5333900000, -85.8499800000), (1124942, 1001425, 'Red Bud', NULL, 'red-bud', 'US', 1, 38.2117200000, -89.9942700000), (1124943, 1001457, 'Red Chute', NULL, 'red-chute', 'US', 1, 32.5559800000, -93.6132300000), (1124944, 1001408, 'Red Cloud', NULL, 'red-cloud', 'US', 1, 40.0889000000, -98.5195000000), (1124945, 1001416, 'Red Corral', NULL, 'red-corral', 'US', 1, 38.4116500000, -120.6055200000), (1124946, 1001443, 'Red Hill', NULL, 'red-hill', 'US', 1, 33.8207300000, -79.0189200000), (1124947, 1001422, 'Red Hill', NULL, 'red-hill', 'US', 1, 40.3728800000, -75.4810100000), (1124948, 1001452, 'Red Hook', NULL, 'red-hook', 'US', 1, 41.9950900000, -73.8754100000), (1124949, 1001420, 'Red Lake', NULL, 'red-lake', 'US', 1, 47.8763500000, -95.0169400000), (1124950, 1001420, 'Red Lake County', NULL, 'red-lake-county', 'US', 1, 47.8716900000, -96.0953000000), (1124951, 1001420, 'Red Lake Falls', NULL, 'red-lake-falls', 'US', 1, 47.8821900000, -96.2742100000), (1124952, 1001407, 'Red Lick', NULL, 'red-lick', 'US', 1, 33.4648500000, -94.1710300000), (1124953, 1001422, 'Red Lion', NULL, 'red-lion', 'US', 1, 39.9009300000, -76.6058000000), (1124954, 1001446, 'Red Lodge', NULL, 'red-lodge', 'US', 1, 45.1857800000, -109.2468200000), (1124955, 1001447, 'Red Oak', NULL, 'red-oak', 'US', 1, 36.0384900000, -77.9063700000), (1124956, 1001407, 'Red Oak', NULL, 'red-oak', 'US', 1, 32.5176400000, -96.8044400000), (1124957, 1001459, 'Red Oak', NULL, 'red-oak', 'US', 1, 41.0097200000, -95.2255500000), (1124958, 1001452, 'Red Oaks Mill', NULL, 'red-oaks-mill', 'US', 1, 41.6556500000, -73.8748600000), (1124959, 1001407, 'Red River County', NULL, 'red-river-county', 'US', 1, 33.6206800000, -95.0503600000), (1124960, 1001457, 'Red River Parish', NULL, 'red-river-parish', 'US', 1, 32.0931500000, -93.3398800000), (1124961, 1001447, 'Red Springs', NULL, 'red-springs', 'US', 1, 34.8151600000, -79.1830900000), (1124962, 1001408, 'Red Willow County', NULL, 'red-willow-county', 'US', 1, 40.1758300000, -100.4768600000), (1124963, 1001420, 'Red Wing', NULL, 'red-wing', 'US', 1, 44.5624700000, -92.5338000000), (1124964, 1001455, 'Redan', NULL, 'redan', 'US', 1, 33.7453800000, -84.1315800000), (1124965, 1001420, 'Redby', NULL, 'redby', 'US', 1, 47.8785700000, -94.9130500000), (1124966, 1001416, 'Redding', NULL, 'redding', 'US', 1, 40.5865400000, -122.3916800000), (1124967, 1001444, 'Redfield', NULL, 'redfield', 'US', 1, 34.4451000000, -92.1832000000), (1124968, 1001445, 'Redfield', NULL, 'redfield', 'US', 1, 44.8758100000, -98.5187100000), (1124969, 1001426, 'Redford', NULL, 'redford', 'US', 1, 42.3833700000, -83.2966000000), (1124970, 1001441, 'Redgranite', NULL, 'redgranite', 'US', 1, 44.0419200000, -89.0984500000), (1124971, 1001436, 'Redington Beach', NULL, 'redington-beach', 'US', 1, 27.8086400000, -82.8112100000), (1124972, 1001436, 'Redington Shores', NULL, 'redington-shores', 'US', 1, 27.8261400000, -82.8289900000), (1124973, 1001440, 'Redkey', NULL, 'redkey', 'US', 1, 40.3489300000, -85.1499700000), (1124974, 1001401, 'Redland', NULL, 'redland', 'US', 1, 39.1453900000, -77.1441500000), (1124975, 1001407, 'Redland', NULL, 'redland', 'US', 1, 31.4043500000, -94.7213200000), (1124976, 1001416, 'Redlands', NULL, 'redlands', 'US', 1, 34.0555700000, -117.1825400000), (1124977, 1001450, 'Redlands', NULL, 'redlands', 'US', 1, 39.0788700000, -108.6356500000), (1124978, 1001415, 'Redmond', NULL, 'redmond', 'US', 1, 44.2726200000, -121.1739200000), (1124979, 1001462, 'Redmond', NULL, 'redmond', 'US', 1, 47.6739900000, -122.1215100000), (1124980, 1001416, 'Redondo Beach', NULL, 'redondo-beach', 'US', 1, 33.8491800000, -118.3884100000), (1124981, 1001456, 'Redstone Arsenal', NULL, 'redstone-arsenal', 'US', 1, 34.6838700000, -86.6476400000), (1124982, 1001407, 'Redwater', NULL, 'redwater', 'US', 1, 33.3581800000, -94.2543600000), (1124983, 1001416, 'Redway', NULL, 'redway', 'US', 1, 40.1201400000, -123.8233600000), (1124984, 1001407, 'Redwood', NULL, 'redwood', 'US', 1, 29.8102200000, -97.9113900000), (1124985, 1001415, 'Redwood', NULL, 'redwood', 'US', 1, 42.4220600000, -123.3872800000), (1124986, 1001416, 'Redwood City', NULL, 'redwood-city', 'US', 1, 37.4852200000, -122.2363500000), (1124987, 1001420, 'Redwood County', NULL, 'redwood-county', 'US', 1, 44.4036600000, -95.2538300000), (1124988, 1001420, 'Redwood Falls', NULL, 'redwood-falls', 'US', 1, 44.5394000000, -95.1169400000), (1124989, 1001416, 'Redwood Shores', NULL, 'redwood-shores', 'US', 1, 37.5318800000, -122.2480200000), (1124990, 1001416, 'Redwood Valley', NULL, 'redwood-valley', 'US', 1, 39.2654400000, -123.2044500000), (1124991, 1001426, 'Reed City', NULL, 'reed-city', 'US', 1, 43.8750200000, -85.5100500000), (1124992, 1001455, 'Reed Creek', NULL, 'reed-creek', 'US', 1, 34.4459400000, -82.9248700000), (1124993, 1001416, 'Reedley', NULL, 'reedley', 'US', 1, 36.5963400000, -119.4504000000), (1124994, 1001441, 'Reedsburg', NULL, 'reedsburg', 'US', 1, 43.5324800000, -90.0026300000), (1124995, 1001415, 'Reedsport', NULL, 'reedsport', 'US', 1, 43.7023400000, -124.0967800000), (1124996, 1001441, 'Reedsville', NULL, 'reedsville', 'US', 1, 44.1536000000, -87.9567600000), (1124997, 1001426, 'Reese', NULL, 'reese', 'US', 1, 43.4505800000, -83.6963500000), (1124998, 1001407, 'Reeves County', NULL, 'reeves-county', 'US', 1, 31.3231800000, -103.6931700000), (1124999, 1001456, 'Reform', NULL, 'reform', 'US', 1, 33.3784500000, -88.0153000000), (1125000, 1001407, 'Refugio', NULL, 'refugio', 'US', 1, 28.3052800000, -97.2752700000), (1125001, 1001407, 'Refugio County', NULL, 'refugio-county', 'US', 1, 28.3215800000, -97.1595200000), (1125002, 1001452, 'Rego Park', NULL, 'rego-park', 'US', 1, 40.7264900000, -73.8526400000); INSERT INTO `[[dbprefix]]t_city` VALUES (1125003, 1001456, 'Rehobeth', NULL, 'rehobeth', 'US', 1, 31.1229600000, -85.4527100000), (1125004, 1001433, 'Rehoboth', NULL, 'rehoboth', 'US', 1, 41.8403800000, -71.2494900000), (1125005, 1001399, 'Rehoboth Beach', NULL, 'rehoboth-beach', 'US', 1, 38.7209500000, -75.0760100000), (1125006, 1001419, 'Reidland', NULL, 'reidland', 'US', 1, 37.0175600000, -88.5314300000), (1125007, 1001455, 'Reidsville', NULL, 'reidsville', 'US', 1, 32.0868600000, -82.1179000000), (1125008, 1001447, 'Reidsville', NULL, 'reidsville', 'US', 1, 36.3548600000, -79.6644700000), (1125009, 1001422, 'Reiffton', NULL, 'reiffton', 'US', 1, 40.3198100000, -75.8735400000), (1125010, 1001459, 'Reinbeck', NULL, 'reinbeck', 'US', 1, 42.3236000000, -92.5993600000), (1125011, 1001422, 'Reinholds', NULL, 'reinholds', 'US', 1, 40.2667600000, -76.1155000000), (1125012, 1001401, 'Reisterstown', NULL, 'reisterstown', 'US', 1, 39.4697600000, -76.8319000000), (1125013, 1001455, 'Remerton', NULL, 'remerton', 'US', 1, 30.8440900000, -83.3104300000), (1125014, 1001440, 'Remington', NULL, 'remington', 'US', 1, 40.7608700000, -87.1508500000), (1125015, 1001459, 'Remsen', NULL, 'remsen', 'US', 1, 42.8147100000, -95.9733500000), (1125016, 1001452, 'Remsenburg-Speonk', NULL, 'remsenburg-speonk', 'US', 1, 40.8264200000, -72.6967300000), (1125017, 1001407, 'Rendon', NULL, 'rendon', 'US', 1, 32.5762500000, -97.2414000000), (1125018, 1001422, 'Rennerdale', NULL, 'rennerdale', 'US', 1, 40.3984000000, -80.1414500000), (1125019, 1001407, 'Reno', NULL, 'reno', 'US', 1, 33.6631600000, -95.4624500000), (1125020, 1001458, 'Reno', NULL, 'reno', 'US', 1, 39.5296300000, -119.8138000000), (1125021, 1001406, 'Reno County', NULL, 'reno-county', 'US', 1, 37.9529500000, -98.0860100000), (1125022, 1001422, 'Renovo', NULL, 'renovo', 'US', 1, 41.3264600000, -77.7508200000), (1125023, 1001440, 'Rensselaer', NULL, 'rensselaer', 'US', 1, 40.9367000000, -87.1508600000), (1125024, 1001452, 'Rensselaer', NULL, 'rensselaer', 'US', 1, 42.6425800000, -73.7429000000), (1125025, 1001452, 'Rensselaer County', NULL, 'rensselaer-county', 'US', 1, 42.7110500000, -73.5097200000), (1125026, 1001462, 'Renton', NULL, 'renton', 'US', 1, 47.4828800000, -122.2170700000), (1125027, 1001420, 'Renville', NULL, 'renville', 'US', 1, 44.7891300000, -95.2116700000), (1125028, 1001420, 'Renville County', NULL, 'renville-county', 'US', 1, 44.7268100000, -94.9471400000), (1125029, 1001418, 'Renville County', NULL, 'renville-county', 'US', 1, 48.7190700000, -101.6577800000), (1125030, 1001451, 'Republic', NULL, 'republic', 'US', 1, 37.1200500000, -93.4801900000), (1125031, 1001422, 'Republic', NULL, 'republic', 'US', 1, 39.9625800000, -79.8767100000), (1125032, 1001462, 'Republic', NULL, 'republic', 'US', 1, 48.6482200000, -118.7378100000), (1125033, 1001406, 'Republic County', NULL, 'republic-county', 'US', 1, 39.8278000000, -97.6506200000), (1125034, 1001457, 'Reserve', NULL, 'reserve', 'US', 1, 30.0538100000, -90.5517500000), (1125035, 1001423, 'Reserve', NULL, 'reserve', 'US', 1, 33.7131100000, -108.7578400000), (1125036, 1001427, 'Reston', NULL, 'reston', 'US', 1, 38.9687200000, -77.3411000000), (1125037, 1001433, 'Revere', NULL, 'revere', 'US', 1, 42.4084300000, -71.0119900000), (1125038, 1001460, 'Rexburg', NULL, 'rexburg', 'US', 1, 43.8260200000, -111.7896900000), (1125039, 1001455, 'Reynolds', NULL, 'reynolds', 'US', 1, 32.5598700000, -84.0963000000), (1125040, 1001451, 'Reynolds County', NULL, 'reynolds-county', 'US', 1, 37.3623300000, -90.9690800000), (1125041, 1001422, 'Reynolds Heights', NULL, 'reynolds-heights', 'US', 1, 41.3450600000, -80.3942300000), (1125042, 1001422, 'Reynoldsville', NULL, 'reynoldsville', 'US', 1, 41.0970100000, -78.8886400000), (1125043, 1001454, 'Rhea County', NULL, 'rhea-county', 'US', 1, 35.6087100000, -84.9244000000), (1125044, 1001422, 'Rheems', NULL, 'rheems', 'US', 1, 40.1300900000, -76.5705200000), (1125045, 1001452, 'Rhinebeck', NULL, 'rhinebeck', 'US', 1, 41.9267600000, -73.9126400000), (1125046, 1001441, 'Rhinelander', NULL, 'rhinelander', 'US', 1, 45.6366200000, -89.4120800000), (1125047, 1001447, 'Rhodhiss', NULL, 'rhodhiss', 'US', 1, 35.7740200000, -81.4312000000), (1125048, 1001407, 'Rhome', NULL, 'rhome', 'US', 1, 33.0534600000, -97.4719700000), (1125049, 1001416, 'Rialto', NULL, 'rialto', 'US', 1, 34.1064000000, -117.3703200000), (1125050, 1001441, 'Rib Mountain', NULL, 'rib-mountain', 'US', 1, 44.9127500000, -89.6754000000), (1125051, 1001407, 'Ricardo', NULL, 'ricardo', 'US', 1, 27.4214300000, -97.8511100000), (1125052, 1001420, 'Rice', NULL, 'rice', 'US', 1, 45.7519100000, -94.2202700000), (1125053, 1001406, 'Rice County', NULL, 'rice-county', 'US', 1, 38.3471400000, -98.2010300000), (1125054, 1001420, 'Rice County', NULL, 'rice-county', 'US', 1, 44.3542600000, -93.2966800000), (1125055, 1001441, 'Rice Lake', NULL, 'rice-lake', 'US', 1, 45.5060700000, -91.7382300000), (1125056, 1001414, 'Rich County', NULL, 'rich-county', 'US', 1, 41.6323200000, -111.2444500000), (1125057, 1001451, 'Rich Hill', NULL, 'rich-hill', 'US', 1, 38.0964200000, -94.3610600000), (1125058, 1001407, 'Richardson', NULL, 'richardson', 'US', 1, 32.9481800000, -96.7297200000), (1125059, 1001408, 'Richardson County', NULL, 'richardson-county', 'US', 1, 40.1250600000, -95.7175300000), (1125060, 1001422, 'Richboro', NULL, 'richboro', 'US', 1, 40.2151100000, -75.0107200000), (1125061, 1001420, 'Richfield', NULL, 'richfield', 'US', 1, 44.8833000000, -93.2830000000), (1125062, 1001441, 'Richfield', NULL, 'richfield', 'US', 1, 43.2561200000, -88.1939800000), (1125063, 1001414, 'Richfield', NULL, 'richfield', 'US', 1, 38.7724700000, -112.0840900000), (1125064, 1001452, 'Richfield Springs', NULL, 'richfield-springs', 'US', 1, 42.8534100000, -74.9854300000), (1125065, 1001409, 'Richford', NULL, 'richford', 'US', 1, 44.9969900000, -72.6712400000), (1125066, 1001416, 'Richgrove', NULL, 'richgrove', 'US', 1, 35.7966200000, -119.1078800000), (1125067, 1001455, 'Richland', NULL, 'richland', 'US', 1, 32.0879300000, -84.6674200000), (1125068, 1001451, 'Richland', NULL, 'richland', 'US', 1, 37.8569800000, -92.4043400000), (1125069, 1001430, 'Richland', NULL, 'richland', 'US', 1, 32.2390400000, -90.1584200000), (1125070, 1001452, 'Richland', NULL, 'richland', 'US', 1, 43.5695100000, -76.0477000000), (1125071, 1001422, 'Richland', NULL, 'richland', 'US', 1, 40.3592600000, -76.2582800000), (1125072, 1001462, 'Richland', NULL, 'richland', 'US', 1, 46.2856900000, -119.2844600000), (1125073, 1001441, 'Richland Center', NULL, 'richland-center', 'US', 1, 43.3347100000, -90.3867900000), (1125074, 1001425, 'Richland County', NULL, 'richland-county', 'US', 1, 38.7123600000, -88.0851000000), (1125075, 1001443, 'Richland County', NULL, 'richland-county', 'US', 1, 34.0218000000, -80.9030400000), (1125076, 1001418, 'Richland County', NULL, 'richland-county', 'US', 1, 46.2646600000, -96.9482800000), (1125077, 1001441, 'Richland County', NULL, 'richland-county', 'US', 1, 43.3756400000, -90.4294800000), (1125078, 1001446, 'Richland County', NULL, 'richland-county', 'US', 1, 47.7879200000, -104.5613400000), (1125079, 1001407, 'Richland Hills', NULL, 'richland-hills', 'US', 1, 32.8159600000, -97.2280700000), (1125080, 1001457, 'Richland Parish', NULL, 'richland-parish', 'US', 1, 32.4177900000, -91.7634900000), (1125081, 1001447, 'Richlands', NULL, 'richlands', 'US', 1, 34.8993300000, -77.5466300000), (1125082, 1001427, 'Richlands', NULL, 'richlands', 'US', 1, 37.0931700000, -81.7937300000), (1125083, 1001422, 'Richlandtown', NULL, 'richlandtown', 'US', 1, 40.4701000000, -75.3204600000), (1125084, 1001440, 'Richmond', NULL, 'richmond', 'US', 1, 39.8289400000, -84.8902400000), (1125085, 1001419, 'Richmond', NULL, 'richmond', 'US', 1, 37.7478600000, -84.2946500000), (1125086, 1001451, 'Richmond', NULL, 'richmond', 'US', 1, 39.2786200000, -93.9768900000), (1125087, 1001407, 'Richmond', NULL, 'richmond', 'US', 1, 29.5821800000, -95.7607800000), (1125088, 1001427, 'Richmond', NULL, 'richmond', 'US', 1, 37.5537600000, -77.4602600000), (1125089, 1001425, 'Richmond', NULL, 'richmond', 'US', 1, 42.4758500000, -88.3059300000), (1125090, 1001433, 'Richmond', NULL, 'richmond', 'US', 1, 42.3731400000, -73.3676100000), (1125091, 1001453, 'Richmond', NULL, 'richmond', 'US', 1, 44.0873000000, -69.7989300000), (1125092, 1001426, 'Richmond', NULL, 'richmond', 'US', 1, 42.8092000000, -82.7557600000), (1125093, 1001404, 'Richmond', NULL, 'richmond', 'US', 1, 42.7548100000, -72.2717500000), (1125094, 1001420, 'Richmond', NULL, 'richmond', 'US', 1, 45.4541300000, -94.5183300000), (1125095, 1001441, 'Richmond', NULL, 'richmond', 'US', 1, 42.7147300000, -88.7492700000), (1125096, 1001416, 'Richmond', NULL, 'richmond', 'US', 1, 37.9357600000, -122.3477500000), (1125097, 1001414, 'Richmond', NULL, 'richmond', 'US', 1, 41.9227100000, -111.8135600000), (1125098, 1001455, 'Richmond County', NULL, 'richmond-county', 'US', 1, 33.3596300000, -82.0735500000), (1125099, 1001447, 'Richmond County', NULL, 'richmond-county', 'US', 1, 35.0059400000, -79.7478300000), (1125100, 1001427, 'Richmond County', NULL, 'richmond-county', 'US', 1, 37.9370500000, -76.7296800000), (1125101, 1001452, 'Richmond County', NULL, 'richmond-county', 'US', 1, 40.5834400000, -74.1495900000), (1125102, 1001436, 'Richmond Heights', NULL, 'richmond-heights', 'US', 1, 25.6314900000, -80.3689400000), (1125103, 1001451, 'Richmond Heights', NULL, 'richmond-heights', 'US', 1, 38.6286600000, -90.3195600000), (1125104, 1001455, 'Richmond Hill', NULL, 'richmond-hill', 'US', 1, 31.9382700000, -81.3034400000), (1125105, 1001452, 'Richmond Hill', NULL, 'richmond-hill', 'US', 1, 40.6998300000, -73.8312500000), (1125106, 1001436, 'Richmond West', NULL, 'richmond-west', 'US', 1, 25.6105000000, -80.4297100000), (1125107, 1001430, 'Richton', NULL, 'richton', 'US', 1, 31.3493400000, -88.9400500000), (1125108, 1001425, 'Richton Park', NULL, 'richton-park', 'US', 1, 41.4844800000, -87.7033800000), (1125109, 1001457, 'Richwood', NULL, 'richwood', 'US', 1, 32.4487600000, -92.0848600000), (1125110, 1001417, 'Richwood', NULL, 'richwood', 'US', 1, 39.7226100000, -75.1654600000), (1125111, 1001407, 'Richwood', NULL, 'richwood', 'US', 1, 29.0560800000, -95.4099400000), (1125112, 1001429, 'Richwood', NULL, 'richwood', 'US', 1, 38.2248400000, -80.5331400000), (1125113, 1001415, 'Riddle', NULL, 'riddle', 'US', 1, 42.9509500000, -123.3642300000), (1125114, 1001452, 'Ridge', NULL, 'ridge', 'US', 1, 40.8939900000, -72.8959400000), (1125115, 1001436, 'Ridge Manor', NULL, 'ridge-manor', 'US', 1, 28.5075000000, -82.1703600000), (1125116, 1001436, 'Ridge Wood Heights', NULL, 'ridge-wood-heights', 'US', 1, 27.2872700000, -82.5131500000), (1125117, 1001436, 'Ridgecrest', NULL, 'ridgecrest', 'US', 1, 27.8975000000, -82.8052900000), (1125118, 1001416, 'Ridgecrest', NULL, 'ridgecrest', 'US', 1, 35.6224600000, -117.6709000000), (1125119, 1001435, 'Ridgefield', NULL, 'ridgefield', 'US', 1, 41.2814800000, -73.4981800000), (1125120, 1001417, 'Ridgefield', NULL, 'ridgefield', 'US', 1, 40.8342700000, -74.0087500000), (1125121, 1001462, 'Ridgefield', NULL, 'ridgefield', 'US', 1, 45.8151100000, -122.7426000000), (1125122, 1001417, 'Ridgefield Park', NULL, 'ridgefield-park', 'US', 1, 40.8570400000, -74.0215300000), (1125123, 1001430, 'Ridgeland', NULL, 'ridgeland', 'US', 1, 32.4284800000, -90.1323100000), (1125124, 1001443, 'Ridgeland', NULL, 'ridgeland', 'US', 1, 32.4807400000, -80.9803900000), (1125125, 1001401, 'Ridgely', NULL, 'ridgely', 'US', 1, 38.9478900000, -75.8843800000), (1125126, 1001454, 'Ridgely', NULL, 'ridgely', 'US', 1, 36.2634000000, -89.4878500000), (1125127, 1001416, 'Ridgemark', NULL, 'ridgemark', 'US', 1, 36.8124600000, -121.3657700000), (1125128, 1001454, 'Ridgetop', NULL, 'ridgetop', 'US', 1, 36.3950500000, -86.7794400000), (1125129, 1001443, 'Ridgeville', NULL, 'ridgeville', 'US', 1, 33.0957200000, -80.3153700000), (1125130, 1001400, 'Ridgeway', NULL, 'ridgeway', 'US', 1, 60.5319400000, -151.0852800000), (1125131, 1001417, 'Ridgewood', NULL, 'ridgewood', 'US', 1, 40.9792600000, -74.1165300000), (1125132, 1001452, 'Ridgewood', NULL, 'ridgewood', 'US', 1, 40.7001000000, -73.9056900000), (1125133, 1001422, 'Ridgway', NULL, 'ridgway', 'US', 1, 41.4203400000, -78.7286400000), (1125134, 1001422, 'Ridley Park', NULL, 'ridley-park', 'US', 1, 39.8812200000, -75.3238000000), (1125135, 1001407, 'Riesel', NULL, 'riesel', 'US', 1, 31.4748900000, -96.9233300000), (1125136, 1001450, 'Rifle', NULL, 'rifle', 'US', 1, 39.5347000000, -107.7831200000), (1125137, 1001460, 'Rigby', NULL, 'rigby', 'US', 1, 43.6724100000, -111.9149700000), (1125138, 1001406, 'Riley County', NULL, 'riley-county', 'US', 1, 39.2964600000, -96.7351800000), (1125139, 1001455, 'Rincon', NULL, 'rincon', 'US', 1, 32.2960300000, -81.2353900000), (1125140, 1001404, 'Rindge', NULL, 'rindge', 'US', 1, 42.7512000000, -72.0098000000), (1125141, 1001455, 'Ringgold', NULL, 'ringgold', 'US', 1, 34.9159100000, -85.1091200000), (1125142, 1001457, 'Ringgold', NULL, 'ringgold', 'US', 1, 32.3284900000, -93.2798900000), (1125143, 1001459, 'Ringgold County', NULL, 'ringgold-county', 'US', 1, 40.7352000000, -94.2439700000), (1125144, 1001421, 'Ringling', NULL, 'ringling', 'US', 1, 34.1784300000, -97.5925300000), (1125145, 1001417, 'Ringwood', NULL, 'ringwood', 'US', 1, 41.1134300000, -74.2454300000), (1125146, 1001441, 'Rio', NULL, 'rio', 'US', 1, 43.4477600000, -89.2398400000), (1125147, 1001423, 'Rio Arriba County', NULL, 'rio-arriba-county', 'US', 1, 36.5095700000, -106.6931100000), (1125148, 1001450, 'Rio Blanco County', NULL, 'rio-blanco-county', 'US', 1, 39.9798400000, -108.2172100000), (1125149, 1001407, 'Rio Bravo', NULL, 'rio-bravo', 'US', 1, 27.3641900000, -99.4800400000), (1125150, 1001423, 'Rio Communities', NULL, 'rio-communities', 'US', 1, 34.6495900000, -106.7340300000), (1125151, 1001416, 'Rio Del Mar', NULL, 'rio-del-mar', 'US', 1, 36.9682800000, -121.9002300000), (1125152, 1001416, 'Rio Dell', NULL, 'rio-dell', 'US', 1, 40.4993000000, -124.1064400000), (1125153, 1001417, 'Rio Grande', NULL, 'rio-grande', 'US', 1, 39.0145600000, -74.8815600000), (1125154, 1001407, 'Rio Grande City', NULL, 'rio-grande-city', 'US', 1, 26.3797900000, -98.8203000000), (1125155, 1001450, 'Rio Grande County', NULL, 'rio-grande-county', 'US', 1, 37.5825200000, -106.3832100000), (1125156, 1001407, 'Rio Hondo', NULL, 'rio-hondo', 'US', 1, 26.2353500000, -97.5819300000), (1125157, 1001416, 'Rio Linda', NULL, 'rio-linda', 'US', 1, 38.6910100000, -121.4485700000), (1125158, 1001423, 'Rio Rancho', NULL, 'rio-rancho', 'US', 1, 35.2333800000, -106.6644700000), (1125159, 1001434, 'Rio Rico', NULL, 'rio-rico', 'US', 1, 31.4714800000, -110.9764800000), (1125160, 1001434, 'Rio Verde', NULL, 'rio-verde', 'US', 1, 33.7225400000, -111.6756900000), (1125161, 1001416, 'Rio Vista', NULL, 'rio-vista', 'US', 1, 38.1638900000, -121.6958300000), (1125162, 1001430, 'Ripley', NULL, 'ripley', 'US', 1, 34.7298200000, -88.9506200000), (1125163, 1001454, 'Ripley', NULL, 'ripley', 'US', 1, 35.7453600000, -89.5298000000), (1125164, 1001429, 'Ripley', NULL, 'ripley', 'US', 1, 38.8187000000, -81.7106900000), (1125165, 1001440, 'Ripley County', NULL, 'ripley-county', 'US', 1, 39.1034500000, -85.2623900000), (1125166, 1001451, 'Ripley County', NULL, 'ripley-county', 'US', 1, 36.6528200000, -90.8638800000), (1125167, 1001441, 'Ripon', NULL, 'ripon', 'US', 1, 43.8422000000, -88.8359400000), (1125168, 1001416, 'Ripon', NULL, 'ripon', 'US', 1, 37.7415900000, -121.1243800000), (1125169, 1001440, 'Rising Sun', NULL, 'rising-sun', 'US', 1, 38.9495000000, -84.8538400000), (1125170, 1001401, 'Rising Sun', NULL, 'rising-sun', 'US', 1, 39.6978900000, -76.0627300000), (1125171, 1001399, 'Rising Sun-Lebanon', NULL, 'rising-sun-lebanon', 'US', 1, 39.0997700000, -75.5048800000), (1125172, 1001444, 'Rison', NULL, 'rison', 'US', 1, 33.9584300000, -92.1901500000), (1125173, 1001429, 'Ritchie County', NULL, 'ritchie-county', 'US', 1, 39.1782700000, -81.0629500000), (1125174, 1001462, 'Ritzville', NULL, 'ritzville', 'US', 1, 47.1275500000, -118.3799900000), (1125175, 1001401, 'Riva', NULL, 'riva', 'US', 1, 38.9520600000, -76.5780200000), (1125176, 1001447, 'River Bend', NULL, 'river-bend', 'US', 1, 35.0690500000, -77.1469000000), (1125177, 1001417, 'River Edge', NULL, 'river-edge', 'US', 1, 40.9287100000, -74.0398600000), (1125178, 1001441, 'River Falls', NULL, 'river-falls', 'US', 1, 44.8613600000, -92.6238100000), (1125179, 1001425, 'River Forest', NULL, 'river-forest', 'US', 1, 41.8978100000, -87.8139500000), (1125180, 1001425, 'River Grove', NULL, 'river-grove', 'US', 1, 41.9258600000, -87.8358900000), (1125181, 1001414, 'River Heights', NULL, 'river-heights', 'US', 1, 41.7216000000, -111.8213300000), (1125182, 1001441, 'River Hills', NULL, 'river-hills', 'US', 1, 43.1741800000, -87.9242500000), (1125183, 1001407, 'River Oaks', NULL, 'river-oaks', 'US', 1, 32.7770700000, -97.3944600000), (1125184, 1001436, 'River Park', NULL, 'river-park', 'US', 1, 27.3142100000, -80.3472700000), (1125185, 1001457, 'River Ridge', NULL, 'river-ridge', 'US', 1, 29.9602000000, -90.2156300000), (1125186, 1001447, 'River Road', NULL, 'river-road', 'US', 1, 35.5068300000, -76.9907800000), (1125187, 1001426, 'River Rouge', NULL, 'river-rouge', 'US', 1, 42.2733700000, -83.1343700000), (1125188, 1001417, 'River Vale', NULL, 'river-vale', 'US', 1, 40.9953800000, -74.0120800000), (1125189, 1001422, 'River View Park', NULL, 'river-view-park', 'US', 1, 40.3925900000, -75.9588200000), (1125190, 1001416, 'Riverbank', NULL, 'riverbank', 'US', 1, 37.7360400000, -120.9354900000), (1125191, 1001462, 'Riverbend', NULL, 'riverbend', 'US', 1, 47.4664900000, -121.7503900000), (1125192, 1001455, 'Riverdale', NULL, 'riverdale', 'US', 1, 33.5726100000, -84.4132600000), (1125193, 1001425, 'Riverdale', NULL, 'riverdale', 'US', 1, 41.6333700000, -87.6331000000), (1125194, 1001417, 'Riverdale', NULL, 'riverdale', 'US', 1, 40.9939900000, -74.3034800000), (1125195, 1001452, 'Riverdale', NULL, 'riverdale', 'US', 1, 40.9005600000, -73.9063900000), (1125196, 1001416, 'Riverdale', NULL, 'riverdale', 'US', 1, 36.4310600000, -119.8595800000), (1125197, 1001414, 'Riverdale', NULL, 'riverdale', 'US', 1, 41.1768900000, -112.0038300000), (1125198, 1001401, 'Riverdale Park', NULL, 'riverdale-park', 'US', 1, 38.9634400000, -76.9316400000), (1125199, 1001416, 'Riverdale Park', NULL, 'riverdale-park', 'US', 1, 37.6093800000, -121.0518800000), (1125200, 1001452, 'Riverhead', NULL, 'riverhead', 'US', 1, 40.9170400000, -72.6620400000), (1125201, 1001456, 'Riverside', NULL, 'riverside', 'US', 1, 33.6062100000, -86.2044200000), (1125202, 1001401, 'Riverside', NULL, 'riverside', 'US', 1, 39.4737200000, -76.2413400000), (1125203, 1001451, 'Riverside', NULL, 'riverside', 'US', 1, 39.1775000000, -94.6130100000), (1125204, 1001435, 'Riverside', NULL, 'riverside', 'US', 1, 41.0337100000, -73.5781800000), (1125205, 1001459, 'Riverside', NULL, 'riverside', 'US', 1, 41.4797400000, -91.5812800000), (1125206, 1001425, 'Riverside', NULL, 'riverside', 'US', 1, 41.8350300000, -87.8228400000), (1125207, 1001452, 'Riverside', NULL, 'riverside', 'US', 1, 40.8812100000, -72.6778700000), (1125208, 1001422, 'Riverside', NULL, 'riverside', 'US', 1, 40.9553600000, -76.6288500000), (1125209, 1001416, 'Riverside', NULL, 'riverside', 'US', 1, 33.9533500000, -117.3961600000), (1125210, 1001416, 'Riverside County', NULL, 'riverside-county', 'US', 1, 33.7436800000, -115.9938600000), (1125211, 1001425, 'Riverton', NULL, 'riverton', 'US', 1, 39.8442200000, -89.5395400000), (1125212, 1001417, 'Riverton', NULL, 'riverton', 'US', 1, 40.0115000000, -75.0148900000), (1125213, 1001462, 'Riverton', NULL, 'riverton', 'US', 1, 47.4842700000, -122.2945700000), (1125214, 1001442, 'Riverton', NULL, 'riverton', 'US', 1, 43.0249600000, -108.3801000000), (1125215, 1001414, 'Riverton', NULL, 'riverton', 'US', 1, 40.5218900000, -111.9391000000), (1125216, 1001436, 'Riverview', NULL, 'riverview', 'US', 1, 27.8661400000, -82.3264800000), (1125217, 1001399, 'Riverview', NULL, 'riverview', 'US', 1, 39.0265000000, -75.5107600000), (1125218, 1001451, 'Riverview', NULL, 'riverview', 'US', 1, 38.7478300000, -90.2115000000), (1125219, 1001426, 'Riverview', NULL, 'riverview', 'US', 1, 42.1742100000, -83.1793700000), (1125220, 1001425, 'Riverwoods', NULL, 'riverwoods', 'US', 1, 42.1675300000, -87.8970100000), (1125221, 1001436, 'Riviera Beach', NULL, 'riviera-beach', 'US', 1, 26.7753400000, -80.0581000000), (1125222, 1001401, 'Riviera Beach', NULL, 'riviera-beach', 'US', 1, 39.1667800000, -76.5080200000), (1125223, 1001454, 'Roan Mountain', NULL, 'roan-mountain', 'US', 1, 36.1962300000, -82.0704000000), (1125224, 1001454, 'Roane County', NULL, 'roane-county', 'US', 1, 35.8478600000, -84.5232400000), (1125225, 1001429, 'Roane County', NULL, 'roane-county', 'US', 1, 38.7140300000, -81.3483500000), (1125226, 1001456, 'Roanoke', NULL, 'roanoke', 'US', 1, 33.1512300000, -85.3721700000), (1125227, 1001407, 'Roanoke', NULL, 'roanoke', 'US', 1, 33.0040100000, -97.2258500000), (1125228, 1001427, 'Roanoke', NULL, 'roanoke', 'US', 1, 37.2709700000, -79.9414300000), (1125229, 1001425, 'Roanoke', NULL, 'roanoke', 'US', 1, 40.7961500000, -89.1973000000), (1125230, 1001440, 'Roanoke', NULL, 'roanoke', 'US', 1, 40.9625500000, -85.3733100000), (1125231, 1001427, 'Roanoke County', NULL, 'roanoke-county', 'US', 1, 37.2090700000, -80.0508500000), (1125232, 1001447, 'Roanoke Rapids', NULL, 'roanoke-rapids', 'US', 1, 36.4615400000, -77.6541500000), (1125233, 1001422, 'Roaring Spring', NULL, 'roaring-spring', 'US', 1, 40.3359100000, -78.3908500000), (1125234, 1001447, 'Robbins', NULL, 'robbins', 'US', 1, 35.4340300000, -79.5869700000), (1125235, 1001425, 'Robbins', NULL, 'robbins', 'US', 1, 41.6439200000, -87.7036600000), (1125236, 1001420, 'Robbinsdale', NULL, 'robbinsdale', 'US', 1, 45.0321900000, -93.3385600000), (1125237, 1001447, 'Robbinsville', NULL, 'robbinsville', 'US', 1, 35.3228700000, -83.8074000000), (1125238, 1001417, 'Robbinsville', NULL, 'robbinsville', 'US', 1, 40.2145500000, -74.6193200000), (1125239, 1001447, 'Robersonville', NULL, 'robersonville', 'US', 1, 35.8251600000, -77.2491300000), (1125240, 1001407, 'Robert Lee', NULL, 'robert-lee', 'US', 1, 31.8923700000, -100.4848200000), (1125241, 1001441, 'Roberts', NULL, 'roberts', 'US', 1, 44.9838600000, -92.5560300000), (1125242, 1001445, 'Roberts County', NULL, 'roberts-county', 'US', 1, 45.6296500000, -96.9461200000), (1125243, 1001407, 'Roberts County', NULL, 'roberts-county', 'US', 1, 35.8384900000, -100.8134400000), (1125244, 1001456, 'Robertsdale', NULL, 'robertsdale', 'US', 1, 30.5538000000, -87.7119300000), (1125245, 1001419, 'Robertson County', NULL, 'robertson-county', 'US', 1, 38.5188200000, -84.0520300000), (1125246, 1001454, 'Robertson County', NULL, 'robertson-county', 'US', 1, 36.5254600000, -86.8705700000), (1125247, 1001407, 'Robertson County', NULL, 'robertson-county', 'US', 1, 31.0270400000, -96.5127900000), (1125248, 1001417, 'Robertsville', NULL, 'robertsville', 'US', 1, 40.3462200000, -74.2879200000), (1125249, 1001447, 'Robeson County', NULL, 'robeson-county', 'US', 1, 34.6400900000, -79.1035300000), (1125250, 1001422, 'Robesonia', NULL, 'robesonia', 'US', 1, 40.3517600000, -76.1343900000), (1125251, 1001459, 'Robins', NULL, 'robins', 'US', 1, 42.0711100000, -91.6668400000), (1125252, 1001455, 'Robins Air Force Base', NULL, 'robins-air-force-base', 'US', 1, 32.6091100000, -83.5844400000), (1125253, 1001425, 'Robinson', NULL, 'robinson', 'US', 1, 39.0053200000, -87.7391900000), (1125254, 1001407, 'Robinson', NULL, 'robinson', 'US', 1, 31.4676700000, -97.1147200000), (1125255, 1001401, 'Robinwood', NULL, 'robinwood', 'US', 1, 39.6370400000, -77.6569400000), (1125256, 1001407, 'Robstown', NULL, 'robstown', 'US', 1, 27.7903000000, -97.6688800000), (1125257, 1001407, 'Roby', NULL, 'roby', 'US', 1, 32.7448300000, -100.3776100000), (1125258, 1001455, 'Rochelle', NULL, 'rochelle', 'US', 1, 31.9510100000, -83.4562700000), (1125259, 1001425, 'Rochelle', NULL, 'rochelle', 'US', 1, 41.9239200000, -89.0687100000), (1125260, 1001417, 'Rochelle Park', NULL, 'rochelle-park', 'US', 1, 40.9073200000, -74.0751400000), (1125261, 1001425, 'Rochester', NULL, 'rochester', 'US', 1, 39.7494900000, -89.5317600000), (1125262, 1001433, 'Rochester', NULL, 'rochester', 'US', 1, 41.7317700000, -70.8200400000), (1125263, 1001440, 'Rochester', NULL, 'rochester', 'US', 1, 41.0647600000, -86.2158300000), (1125264, 1001426, 'Rochester', NULL, 'rochester', 'US', 1, 42.6805900000, -83.1338200000), (1125265, 1001404, 'Rochester', NULL, 'rochester', 'US', 1, 43.3045300000, -70.9756200000), (1125266, 1001420, 'Rochester', NULL, 'rochester', 'US', 1, 44.0216300000, -92.4699000000), (1125267, 1001452, 'Rochester', NULL, 'rochester', 'US', 1, 43.1547800000, -77.6155600000), (1125268, 1001422, 'Rochester', NULL, 'rochester', 'US', 1, 40.7022900000, -80.2864500000), (1125269, 1001441, 'Rochester', NULL, 'rochester', 'US', 1, 42.7414100000, -88.2242600000), (1125270, 1001462, 'Rochester', NULL, 'rochester', 'US', 1, 46.8217700000, -123.0962500000), (1125271, 1001426, 'Rochester Hills', NULL, 'rochester-hills', 'US', 1, 42.6583700000, -83.1499300000), (1125272, 1001420, 'Rock County', NULL, 'rock-county', 'US', 1, 43.6746300000, -96.2532100000), (1125273, 1001408, 'Rock County', NULL, 'rock-county', 'US', 1, 42.4212900000, -99.4499300000), (1125274, 1001441, 'Rock County', NULL, 'rock-county', 'US', 1, 42.6712200000, -89.0715800000), (1125275, 1001456, 'Rock Creek', NULL, 'rock-creek', 'US', 1, 33.4770500000, -87.0802700000), (1125276, 1001420, 'Rock Creek', NULL, 'rock-creek', 'US', 1, 45.7574600000, -92.9624300000), (1125277, 1001425, 'Rock Falls', NULL, 'rock-falls', 'US', 1, 41.7797500000, -89.6890000000), (1125278, 1001401, 'Rock Hall', NULL, 'rock-hall', 'US', 1, 39.1381700000, -76.2349500000), (1125279, 1001451, 'Rock Hill', NULL, 'rock-hill', 'US', 1, 38.6075500000, -90.3784500000), (1125280, 1001443, 'Rock Hill', NULL, 'rock-hill', 'US', 1, 34.9248700000, -81.0250800000), (1125281, 1001452, 'Rock Hill', NULL, 'rock-hill', 'US', 1, 41.6259300000, -74.5976600000), (1125282, 1001436, 'Rock Island', NULL, 'rock-island', 'US', 1, 26.1550900000, -80.1769900000), (1125283, 1001425, 'Rock Island', NULL, 'rock-island', 'US', 1, 41.5094800000, -90.5787500000), (1125284, 1001425, 'Rock Island County', NULL, 'rock-island-county', 'US', 1, 41.4673300000, -90.5674300000), (1125285, 1001451, 'Rock Port', NULL, 'rock-port', 'US', 1, 40.4111100000, -95.5169300000), (1125286, 1001459, 'Rock Rapids', NULL, 'rock-rapids', 'US', 1, 43.4271900000, -96.1758600000), (1125287, 1001442, 'Rock Springs', NULL, 'rock-springs', 'US', 1, 41.5874600000, -109.2029000000), (1125288, 1001459, 'Rock Valley', NULL, 'rock-valley', 'US', 1, 43.2052600000, -96.2950300000), (1125289, 1001417, 'Rockaway', NULL, 'rockaway', 'US', 1, 40.9012100000, -74.5143200000), (1125290, 1001415, 'Rockaway Beach', NULL, 'rockaway-beach', 'US', 1, 45.6134400000, -123.9429100000), (1125291, 1001452, 'Rockaway Point', NULL, 'rockaway-point', 'US', 1, 40.5606600000, -73.9151400000), (1125292, 1001427, 'Rockbridge County', NULL, 'rockbridge-county', 'US', 1, 37.8146100000, -79.4475800000), (1125293, 1001419, 'Rockcastle County', NULL, 'rockcastle-county', 'US', 1, 37.3651800000, -84.3159400000), (1125294, 1001415, 'Rockcreek', NULL, 'rockcreek', 'US', 1, 45.5501200000, -122.8770500000), (1125295, 1001407, 'Rockdale', NULL, 'rockdale', 'US', 1, 30.6554800000, -97.0013700000), (1125296, 1001425, 'Rockdale', NULL, 'rockdale', 'US', 1, 41.5061400000, -88.1145000000), (1125297, 1001455, 'Rockdale County', NULL, 'rockdale-county', 'US', 1, 33.6542400000, -84.0266100000), (1125298, 1001447, 'Rockfish', NULL, 'rockfish', 'US', 1, 34.9926600000, -79.0661400000), (1125299, 1001456, 'Rockford', NULL, 'rockford', 'US', 1, 32.8895700000, -86.2196900000), (1125300, 1001425, 'Rockford', NULL, 'rockford', 'US', 1, 42.2711300000, -89.0940000000), (1125301, 1001426, 'Rockford', NULL, 'rockford', 'US', 1, 43.1200300000, -85.5600300000), (1125302, 1001420, 'Rockford', NULL, 'rockford', 'US', 1, 45.0883000000, -93.7344100000), (1125303, 1001447, 'Rockingham', NULL, 'rockingham', 'US', 1, 34.9393200000, -79.7739500000), (1125304, 1001409, 'Rockingham', NULL, 'rockingham', 'US', 1, 43.1875800000, -72.4889800000), (1125305, 1001447, 'Rockingham County', NULL, 'rockingham-county', 'US', 1, 36.3960800000, -79.7751500000), (1125306, 1001427, 'Rockingham County', NULL, 'rockingham-county', 'US', 1, 38.5121300000, -78.8757600000), (1125307, 1001404, 'Rockingham County', NULL, 'rockingham-county', 'US', 1, 42.9845400000, -71.0889700000), (1125308, 1001453, 'Rockland', NULL, 'rockland', 'US', 1, 44.1036900000, -69.1089300000), (1125309, 1001433, 'Rockland', NULL, 'rockland', 'US', 1, 42.1306600000, -70.9161600000), (1125310, 1001452, 'Rockland County', NULL, 'rockland-county', 'US', 1, 41.1524300000, -74.0240900000), (1125311, 1001436, 'Rockledge', NULL, 'rockledge', 'US', 1, 28.3508400000, -80.7253300000), (1125312, 1001422, 'Rockledge', NULL, 'rockledge', 'US', 1, 40.0812200000, -75.0896200000), (1125313, 1001416, 'Rocklin', NULL, 'rocklin', 'US', 1, 38.7907300000, -121.2357800000), (1125314, 1001455, 'Rockmart', NULL, 'rockmart', 'US', 1, 34.0026000000, -85.0416100000), (1125315, 1001440, 'Rockport', NULL, 'rockport', 'US', 1, 37.8831100000, -87.0494400000), (1125316, 1001407, 'Rockport', NULL, 'rockport', 'US', 1, 28.0207700000, -97.0560100000), (1125317, 1001433, 'Rockport', NULL, 'rockport', 'US', 1, 42.6556500000, -70.6203200000), (1125318, 1001453, 'Rockport', NULL, 'rockport', 'US', 1, 44.1845200000, -69.0761500000), (1125319, 1001407, 'Rocksprings', NULL, 'rocksprings', 'US', 1, 30.0157600000, -100.2053600000), (1125320, 1001425, 'Rockton', NULL, 'rockton', 'US', 1, 42.4525200000, -89.0723300000), (1125321, 1001440, 'Rockville', NULL, 'rockville', 'US', 1, 39.7625400000, -87.2291800000), (1125322, 1001401, 'Rockville', NULL, 'rockville', 'US', 1, 39.0840000000, -77.1527600000), (1125323, 1001435, 'Rockville', NULL, 'rockville', 'US', 1, 41.8667600000, -72.4495300000), (1125324, 1001420, 'Rockville', NULL, 'rockville', 'US', 1, 45.4719100000, -94.3408300000), (1125325, 1001452, 'Rockville Centre', NULL, 'rockville-centre', 'US', 1, 40.6587100000, -73.6412400000), (1125326, 1001407, 'Rockwall', NULL, 'rockwall', 'US', 1, 32.9312300000, -96.4597100000), (1125327, 1001407, 'Rockwall County', NULL, 'rockwall-county', 'US', 1, 32.8977300000, -96.4077700000), (1125328, 1001444, 'Rockwell', NULL, 'rockwell', 'US', 1, 34.4642600000, -93.1337900000), (1125329, 1001447, 'Rockwell', NULL, 'rockwell', 'US', 1, 35.5512500000, -80.4064500000), (1125330, 1001459, 'Rockwell', NULL, 'rockwell', 'US', 1, 42.9852400000, -93.1918700000), (1125331, 1001459, 'Rockwell City', NULL, 'rockwell-city', 'US', 1, 42.3952600000, -94.6338700000), (1125332, 1001454, 'Rockwood', NULL, 'rockwood', 'US', 1, 35.8656300000, -84.6849400000), (1125333, 1001426, 'Rockwood', NULL, 'rockwood', 'US', 1, 42.0708800000, -83.2466000000), (1125334, 1001450, 'Rocky Ford', NULL, 'rocky-ford', 'US', 1, 38.0525100000, -103.7202300000), (1125335, 1001447, 'Rocky Mount', NULL, 'rocky-mount', 'US', 1, 35.9382100000, -77.7905300000), (1125336, 1001427, 'Rocky Mount', NULL, 'rocky-mount', 'US', 1, 36.9976400000, -79.8919800000), (1125337, 1001447, 'Rocky Point', NULL, 'rocky-point', 'US', 1, 34.4351700000, -77.8877600000), (1125338, 1001452, 'Rocky Point', NULL, 'rocky-point', 'US', 1, 40.9526000000, -72.9253800000), (1125339, 1001462, 'Rocky Point', NULL, 'rocky-point', 'US', 1, 47.5928700000, -122.6684800000), (1125340, 1001454, 'Rocky Top', NULL, 'rocky-top', 'US', 1, 36.2178600000, -84.1546500000), (1125341, 1001416, 'Rodeo', NULL, 'rodeo', 'US', 1, 38.0329800000, -122.2669100000), (1125342, 1001399, 'Rodney Village', NULL, 'rodney-village', 'US', 1, 39.1320600000, -75.5324200000), (1125343, 1001417, 'Roebling', NULL, 'roebling', 'US', 1, 40.1159400000, -74.7862700000), (1125344, 1001443, 'Roebuck', NULL, 'roebuck', 'US', 1, 34.8795700000, -81.9662100000), (1125345, 1001406, 'Roeland Park', NULL, 'roeland-park', 'US', 1, 39.0375100000, -94.6321800000), (1125346, 1001452, 'Roessleville', NULL, 'roessleville', 'US', 1, 42.6950800000, -73.8070700000), (1125347, 1001421, 'Roger Mills County', NULL, 'roger-mills-county', 'US', 1, 35.6883900000, -99.6956900000), (1125348, 1001444, 'Rogers', NULL, 'rogers', 'US', 1, 36.3320200000, -94.1185400000), (1125349, 1001407, 'Rogers', NULL, 'rogers', 'US', 1, 30.9315700000, -97.2266600000), (1125350, 1001420, 'Rogers', NULL, 'rogers', 'US', 1, 45.1888500000, -93.5530100000), (1125351, 1001426, 'Rogers City', NULL, 'rogers-city', 'US', 1, 45.4214000000, -83.8183300000), (1125352, 1001421, 'Rogers County', NULL, 'rogers-county', 'US', 1, 36.3715700000, -95.6043600000), (1125353, 1001425, 'Rogers Park', NULL, 'rogers-park', 'US', 1, 42.0086400000, -87.6667200000), (1125354, 1001456, 'Rogersville', NULL, 'rogersville', 'US', 1, 34.8257800000, -87.2967600000), (1125355, 1001451, 'Rogersville', NULL, 'rogersville', 'US', 1, 37.1170000000, -93.0557300000), (1125356, 1001454, 'Rogersville', NULL, 'rogersville', 'US', 1, 36.4073200000, -83.0054400000), (1125357, 1001415, 'Rogue River', NULL, 'rogue-river', 'US', 1, 42.4359500000, -123.1720000000), (1125358, 1001416, 'Rohnert Park', NULL, 'rohnert-park', 'US', 1, 38.3396400000, -122.7011000000), (1125359, 1001421, 'Roland', NULL, 'roland', 'US', 1, 35.4212000000, -94.5146600000), (1125360, 1001459, 'Roland', NULL, 'roland', 'US', 1, 42.1663700000, -93.5018800000), (1125361, 1001447, 'Rolesville', NULL, 'rolesville', 'US', 1, 35.9232100000, -78.4575000000), (1125362, 1001418, 'Rolette County', NULL, 'rolette-county', 'US', 1, 48.7724500000, -99.8409900000), (1125363, 1001451, 'Rolla', NULL, 'rolla', 'US', 1, 37.9514300000, -91.7712700000), (1125364, 1001418, 'Rolla', NULL, 'rolla', 'US', 1, 48.8577800000, -99.6179200000), (1125365, 1001430, 'Rolling Fork', NULL, 'rolling-fork', 'US', 1, 32.9065200000, -90.8781600000), (1125366, 1001416, 'Rolling Hills', NULL, 'rolling-hills', 'US', 1, 33.7573900000, -118.3575200000), (1125367, 1001416, 'Rolling Hills Estates', NULL, 'rolling-hills-estates', 'US', 1, 33.7877900000, -118.3581300000), (1125368, 1001425, 'Rolling Meadows', NULL, 'rolling-meadows', 'US', 1, 42.0841900000, -88.0131300000), (1125369, 1001407, 'Rollingwood', NULL, 'rollingwood', 'US', 1, 30.2768700000, -97.7911200000), (1125370, 1001416, 'Rollingwood', NULL, 'rollingwood', 'US', 1, 37.9652000000, -122.3299700000), (1125371, 1001404, 'Rollinsford', NULL, 'rollinsford', 'US', 1, 43.2362000000, -70.8203400000), (1125372, 1001407, 'Roma', NULL, 'roma', 'US', 1, 26.4052600000, -99.0158100000), (1125373, 1001407, 'Roma-Los Saenz', NULL, 'roma-los-saenz', 'US', 1, 26.4050600000, -99.0158600000), (1125374, 1001407, 'Roman Forest', NULL, 'roman-forest', 'US', 1, 30.1791000000, -95.1624300000), (1125375, 1001455, 'Rome', NULL, 'rome', 'US', 1, 34.2570400000, -85.1646700000), (1125376, 1001425, 'Rome', NULL, 'rome', 'US', 1, 40.8830900000, -89.5025900000), (1125377, 1001453, 'Rome', NULL, 'rome', 'US', 1, 44.5850600000, -69.8692200000), (1125378, 1001452, 'Rome', NULL, 'rome', 'US', 1, 43.2128500000, -75.4557300000), (1125379, 1001441, 'Rome', NULL, 'rome', 'US', 1, 44.2206000000, -89.8084300000), (1125380, 1001440, 'Rome City', NULL, 'rome-city', 'US', 1, 41.4961600000, -85.3766500000), (1125381, 1001426, 'Romeo', NULL, 'romeo', 'US', 1, 42.8028100000, -83.0129900000), (1125382, 1001425, 'Romeoville', NULL, 'romeoville', 'US', 1, 41.6475300000, -88.0895100000), (1125383, 1001429, 'Romney', NULL, 'romney', 'US', 1, 39.3420400000, -78.7566800000), (1125384, 1001416, 'Romoland', NULL, 'romoland', 'US', 1, 33.7458500000, -117.1750300000), (1125385, 1001426, 'Romulus', NULL, 'romulus', 'US', 1, 42.2222600000, -83.3966000000), (1125386, 1001446, 'Ronan', NULL, 'ronan', 'US', 1, 47.5288200000, -114.1015000000), (1125387, 1001429, 'Ronceverte', NULL, 'ronceverte', 'US', 1, 37.7498400000, -80.4628500000), (1125388, 1001452, 'Ronkonkoma', NULL, 'ronkonkoma', 'US', 1, 40.8153800000, -73.1123300000), (1125389, 1001425, 'Roodhouse', NULL, 'roodhouse', 'US', 1, 39.4839400000, -90.3715100000), (1125390, 1001406, 'Rooks County', NULL, 'rooks-county', 'US', 1, 39.3502300000, -99.3250500000), (1125391, 1001452, 'Roosevelt', NULL, 'roosevelt', 'US', 1, 40.6787100000, -73.5890200000), (1125392, 1001414, 'Roosevelt', NULL, 'roosevelt', 'US', 1, 40.2994000000, -109.9887600000), (1125393, 1001423, 'Roosevelt County', NULL, 'roosevelt-county', 'US', 1, 34.0212700000, -103.4801800000), (1125394, 1001446, 'Roosevelt County', NULL, 'roosevelt-county', 'US', 1, 48.2945500000, -105.0165200000), (1125395, 1001436, 'Roosevelt Gardens', NULL, 'roosevelt-gardens', 'US', 1, 26.1408700000, -80.1802700000), (1125396, 1001426, 'Roosevelt Park', NULL, 'roosevelt-park', 'US', 1, 43.1964000000, -86.2722800000), (1125397, 1001416, 'Rosamond', NULL, 'rosamond', 'US', 1, 34.8641400000, -118.1634100000), (1125398, 1001401, 'Rosaryville', NULL, 'rosaryville', 'US', 1, 38.7567800000, -76.8096900000), (1125399, 1001425, 'Roscoe', NULL, 'roscoe', 'US', 1, 42.4133500000, -89.0092700000), (1125400, 1001407, 'Roscoe', NULL, 'roscoe', 'US', 1, 32.4459500000, -100.5387200000), (1125401, 1001426, 'Roscommon', NULL, 'roscommon', 'US', 1, 44.4983500000, -84.5919700000), (1125402, 1001426, 'Roscommon County', NULL, 'roscommon-county', 'US', 1, 44.3356100000, -84.6116000000), (1125403, 1001406, 'Rose Hill', NULL, 'rose-hill', 'US', 1, 37.5583500000, -97.1350400000), (1125404, 1001447, 'Rose Hill', NULL, 'rose-hill', 'US', 1, 34.8282200000, -78.0230400000), (1125405, 1001427, 'Rose Hill', NULL, 'rose-hill', 'US', 1, 38.7887200000, -77.1127600000), (1125406, 1001415, 'Rose Lodge', NULL, 'rose-lodge', 'US', 1, 45.0103900000, -123.8803900000), (1125407, 1001420, 'Roseau', NULL, 'roseau', 'US', 1, 48.8460900000, -95.7627700000), (1125408, 1001420, 'Roseau County', NULL, 'roseau-county', 'US', 1, 48.7751400000, -95.8108200000), (1125409, 1001452, 'Rosebank', NULL, 'rosebank', 'US', 1, 40.6139900000, -74.0662500000), (1125410, 1001447, 'Roseboro', NULL, 'roseboro', 'US', 1, 34.9529500000, -78.5086200000), (1125411, 1001407, 'Rosebud', NULL, 'rosebud', 'US', 1, 31.0729600000, -96.9786000000), (1125412, 1001445, 'Rosebud', NULL, 'rosebud', 'US', 1, 43.2327800000, -100.8534800000), (1125413, 1001446, 'Rosebud County', NULL, 'rosebud-county', 'US', 1, 46.2297400000, -106.7308200000), (1125414, 1001415, 'Roseburg', NULL, 'roseburg', 'US', 1, 43.2165000000, -123.3417400000), (1125415, 1001415, 'Roseburg North', NULL, 'roseburg-north', 'US', 1, 43.2645200000, -123.3033100000), (1125416, 1001401, 'Rosedale', NULL, 'rosedale', 'US', 1, 39.3201100000, -76.5155200000), (1125417, 1001430, 'Rosedale', NULL, 'rosedale', 'US', 1, 33.8534400000, -91.0278900000), (1125418, 1001452, 'Rosedale', NULL, 'rosedale', 'US', 1, 40.6620500000, -73.7354100000), (1125419, 1001416, 'Rosedale', NULL, 'rosedale', 'US', 1, 35.3835700000, -119.1453800000), (1125420, 1001462, 'Rosedale', NULL, 'rosedale', 'US', 1, 47.3314900000, -122.6523500000), (1125421, 1001436, 'Roseland', NULL, 'roseland', 'US', 1, 27.8358600000, -80.4931100000), (1125422, 1001457, 'Roseland', NULL, 'roseland', 'US', 1, 30.7649100000, -90.5117600000), (1125423, 1001417, 'Roseland', NULL, 'roseland', 'US', 1, 40.8206600000, -74.2937600000), (1125424, 1001416, 'Roseland', NULL, 'roseland', 'US', 1, 38.4221300000, -122.7280400000), (1125425, 1001440, 'Roselawn', NULL, 'roselawn', 'US', 1, 41.1417000000, -87.3147500000), (1125426, 1001425, 'Roselle', NULL, 'roselle', 'US', 1, 41.9847500000, -88.0797900000), (1125427, 1001417, 'Roselle', NULL, 'roselle', 'US', 1, 40.6522300000, -74.2588200000), (1125428, 1001417, 'Roselle Park', NULL, 'roselle-park', 'US', 1, 40.6645500000, -74.2643100000), (1125429, 1001416, 'Rosemead', NULL, 'rosemead', 'US', 1, 34.0805700000, -118.0728500000), (1125430, 1001425, 'Rosemont', NULL, 'rosemont', 'US', 1, 41.9953100000, -87.8845100000), (1125431, 1001416, 'Rosemont', NULL, 'rosemont', 'US', 1, 38.5518500000, -121.3646700000), (1125432, 1001420, 'Rosemount', NULL, 'rosemount', 'US', 1, 44.7394100000, -93.1257700000), (1125433, 1001407, 'Rosenberg', NULL, 'rosenberg', 'US', 1, 29.5571800000, -95.8085600000), (1125434, 1001441, 'Rosendale', NULL, 'rosendale', 'US', 1, 43.8077600000, -88.6748300000), (1125435, 1001452, 'Rosendale Village', NULL, 'rosendale-village', 'US', 1, 41.8503800000, -74.0737900000), (1125436, 1001417, 'Rosenhayn', NULL, 'rosenhayn', 'US', 1, 39.4781700000, -75.1312900000), (1125437, 1001457, 'Rosepine', NULL, 'rosepine', 'US', 1, 30.9199100000, -93.2823900000), (1125438, 1001422, 'Roseto', NULL, 'roseto', 'US', 1, 40.8806500000, -75.2146200000), (1125439, 1001426, 'Roseville', NULL, 'roseville', 'US', 1, 42.4972600000, -82.9371400000), (1125440, 1001420, 'Roseville', NULL, 'roseville', 'US', 1, 45.0060800000, -93.1566100000), (1125441, 1001416, 'Roseville', NULL, 'roseville', 'US', 1, 38.7521200000, -121.2880100000), (1125442, 1001425, 'Rosewood Heights', NULL, 'rosewood-heights', 'US', 1, 38.8878300000, -90.0848300000), (1125443, 1001407, 'Rosharon', NULL, 'rosharon', 'US', 1, 29.3521800000, -95.4602200000), (1125444, 1001425, 'Rosiclare', NULL, 'rosiclare', 'US', 1, 37.4236600000, -88.3461500000), (1125445, 1001407, 'Rosita North', NULL, 'rosita-north', 'US', 1, 28.6564400000, -100.4221800000), (1125446, 1001407, 'Rosita South', NULL, 'rosita-south', 'US', 1, 28.6237500000, -100.4283700000), (1125447, 1001452, 'Roslyn', NULL, 'roslyn', 'US', 1, 40.7998200000, -73.6509600000), (1125448, 1001452, 'Roslyn Estates', NULL, 'roslyn-estates', 'US', 1, 40.7942700000, -73.6604100000), (1125449, 1001452, 'Roslyn Harbor', NULL, 'roslyn-harbor', 'US', 1, 40.8164900000, -73.6370700000), (1125450, 1001452, 'Roslyn Heights', NULL, 'roslyn-heights', 'US', 1, 40.7887100000, -73.6473500000), (1125451, 1001416, 'Ross', NULL, 'ross', 'US', 1, 37.9624200000, -122.5549800000), (1125452, 1001427, 'Rosslyn', NULL, 'rosslyn', 'US', 1, 38.8967800000, -77.0724800000), (1125453, 1001401, 'Rossmoor', NULL, 'rossmoor', 'US', 1, 39.1037200000, -77.0710900000), (1125454, 1001417, 'Rossmoor', NULL, 'rossmoor', 'US', 1, 40.3365000000, -74.4734900000), (1125455, 1001416, 'Rossmoor', NULL, 'rossmoor', 'US', 1, 33.7855700000, -118.0850600000), (1125456, 1001455, 'Rossville', NULL, 'rossville', 'US', 1, 34.9831300000, -85.2860700000), (1125457, 1001406, 'Rossville', NULL, 'rossville', 'US', 1, 39.1361100000, -95.9516600000), (1125458, 1001401, 'Rossville', NULL, 'rossville', 'US', 1, 39.3384400000, -76.4796800000), (1125459, 1001425, 'Rossville', NULL, 'rossville', 'US', 1, 40.3792000000, -87.6686300000), (1125460, 1001440, 'Rossville', NULL, 'rossville', 'US', 1, 40.4169800000, -86.5947200000), (1125461, 1001452, 'Rossville', NULL, 'rossville', 'US', 1, 40.5556600000, -74.2134800000), (1125462, 1001455, 'Roswell', NULL, 'roswell', 'US', 1, 34.0231600000, -84.3615900000), (1125463, 1001423, 'Roswell', NULL, 'roswell', 'US', 1, 33.3943700000, -104.5249100000), (1125464, 1001407, 'Rotan', NULL, 'rotan', 'US', 1, 32.8520500000, -100.4656600000), (1125465, 1001441, 'Rothschild', NULL, 'rothschild', 'US', 1, 44.8871900000, -89.6201200000), (1125466, 1001422, 'Rothsville', NULL, 'rothsville', 'US', 1, 40.1512100000, -76.2510700000), (1125467, 1001436, 'Rotonda West', NULL, 'rotonda-west', 'US', 1, 26.8836800000, -82.2900900000), (1125468, 1001452, 'Rotterdam', NULL, 'rotterdam', 'US', 1, 42.7870200000, -73.9709600000), (1125469, 1001425, 'Round Lake', NULL, 'round-lake', 'US', 1, 42.3533600000, -88.0934100000), (1125470, 1001425, 'Round Lake Beach', NULL, 'round-lake-beach', 'US', 1, 42.3716900000, -88.0900800000), (1125471, 1001425, 'Round Lake Heights', NULL, 'round-lake-heights', 'US', 1, 42.3800200000, -88.1042500000), (1125472, 1001425, 'Round Lake Park', NULL, 'round-lake-park', 'US', 1, 42.3569700000, -88.0767500000), (1125473, 1001407, 'Round Rock', NULL, 'round-rock', 'US', 1, 30.5082600000, -97.6789000000), (1125474, 1001446, 'Roundup', NULL, 'roundup', 'US', 1, 46.4452400000, -108.5418000000), (1125475, 1001452, 'Rouses Point', NULL, 'rouses-point', 'US', 1, 44.9939300000, -73.3648600000), (1125476, 1001450, 'Routt County', NULL, 'routt-county', 'US', 1, 40.4850700000, -106.9911900000), (1125477, 1001419, 'Rowan County', NULL, 'rowan-county', 'US', 1, 38.1962600000, -83.4210800000), (1125478, 1001447, 'Rowan County', NULL, 'rowan-county', 'US', 1, 35.6395400000, -80.5246400000), (1125479, 1001447, 'Rowland', NULL, 'rowland', 'US', 1, 34.5365500000, -79.2914300000), (1125480, 1001416, 'Rowland Heights', NULL, 'rowland-heights', 'US', 1, 33.9761200000, -117.9053400000), (1125481, 1001407, 'Rowlett', NULL, 'rowlett', 'US', 1, 32.9029000000, -96.5638800000), (1125482, 1001433, 'Rowley', NULL, 'rowley', 'US', 1, 42.7167600000, -70.8786600000), (1125483, 1001425, 'Roxana', NULL, 'roxana', 'US', 1, 38.8483800000, -90.0762200000), (1125484, 1001447, 'Roxboro', NULL, 'roxboro', 'US', 1, 36.3937500000, -78.9827900000), (1125485, 1001450, 'Roxborough Park', NULL, 'roxborough-park', 'US', 1, 39.4738800000, -105.0852600000), (1125486, 1001441, 'Roxbury', NULL, 'roxbury', 'US', 1, 43.2494300000, -89.6754000000), (1125487, 1001414, 'Roy', NULL, 'roy', 'US', 1, 41.1616100000, -112.0263300000), (1125488, 1001462, 'Royal City', NULL, 'royal-city', 'US', 1, 46.9009700000, -119.6305900000), (1125489, 1001411, 'Royal Kunia', NULL, 'royal-kunia', 'US', 1, 21.3939200000, -158.0267000000), (1125490, 1001426, 'Royal Oak', NULL, 'royal-oak', 'US', 1, 42.4894800000, -83.1446500000), (1125491, 1001436, 'Royal Palm Beach', NULL, 'royal-palm-beach', 'US', 1, 26.7084000000, -80.2306000000), (1125492, 1001436, 'Royal Palm Estates', NULL, 'royal-palm-estates', 'US', 1, 26.6817300000, -80.1250400000), (1125493, 1001447, 'Royal Pines', NULL, 'royal-pines', 'US', 1, 35.4751100000, -82.5159500000), (1125494, 1001433, 'Royalston', NULL, 'royalston', 'US', 1, 42.6775900000, -72.1878600000), (1125495, 1001425, 'Royalton', NULL, 'royalton', 'US', 1, 37.8769900000, -89.1145200000), (1125496, 1001420, 'Royalton', NULL, 'royalton', 'US', 1, 45.8299700000, -94.2936100000), (1125497, 1001422, 'Royalton', NULL, 'royalton', 'US', 1, 40.1873100000, -76.7299700000), (1125498, 1001422, 'Royersford', NULL, 'royersford', 'US', 1, 40.1842700000, -75.5379600000), (1125499, 1001407, 'Royse City', NULL, 'royse-city', 'US', 1, 32.9751200000, -96.3324800000), (1125500, 1001455, 'Royston', NULL, 'royston', 'US', 1, 34.2870500000, -83.1101500000), (1125501, 1001416, 'Rubidoux', NULL, 'rubidoux', 'US', 1, 33.9961300000, -117.4056000000), (1125502, 1001427, 'Ruckersville', NULL, 'ruckersville', 'US', 1, 38.2331900000, -78.3691700000), (1125503, 1001418, 'Rugby', NULL, 'rugby', 'US', 1, 48.3688900000, -99.9962500000), (1125504, 1001423, 'Ruidoso', NULL, 'ruidoso', 'US', 1, 33.3317500000, -105.6730400000), (1125505, 1001423, 'Ruidoso Downs', NULL, 'ruidoso-downs', 'US', 1, 33.3289700000, -105.6044300000), (1125506, 1001430, 'Ruleville', NULL, 'ruleville', 'US', 1, 33.7259500000, -90.5514800000), (1125507, 1001453, 'Rumford', NULL, 'rumford', 'US', 1, 44.5536700000, -70.5509000000), (1125508, 1001404, 'Rumney', NULL, 'rumney', 'US', 1, 43.8053500000, -71.8125800000), (1125509, 1001417, 'Rumson', NULL, 'rumson', 'US', 1, 40.3720500000, -73.9990300000), (1125510, 1001407, 'Runaway Bay', NULL, 'runaway-bay', 'US', 1, 33.1678900000, -97.8783700000), (1125511, 1001407, 'Runge', NULL, 'runge', 'US', 1, 28.8833100000, -97.7130500000), (1125512, 1001407, 'Runnels County', NULL, 'runnels-county', 'US', 1, 31.8311000000, -99.9762300000), (1125513, 1001417, 'Runnemede', NULL, 'runnemede', 'US', 1, 39.8523400000, -75.0679500000), (1125514, 1001416, 'Running Springs', NULL, 'running-springs', 'US', 1, 34.2077900000, -117.1092000000), (1125515, 1001460, 'Rupert', NULL, 'rupert', 'US', 1, 42.6190800000, -113.6772300000), (1125516, 1001447, 'Rural Hall', NULL, 'rural-hall', 'US', 1, 36.2404200000, -80.2933800000), (1125517, 1001454, 'Rural Hill', NULL, 'rural-hill', 'US', 1, 36.1167300000, -86.4791600000), (1125518, 1001427, 'Rural Retreat', NULL, 'rural-retreat', 'US', 1, 36.8937300000, -81.2759300000), (1125519, 1001420, 'Rush City', NULL, 'rush-city', 'US', 1, 45.6855100000, -92.9654900000), (1125520, 1001440, 'Rush County', NULL, 'rush-county', 'US', 1, 39.6199500000, -85.4657600000), (1125521, 1001406, 'Rush County', NULL, 'rush-county', 'US', 1, 38.5231600000, -99.3092400000), (1125522, 1001421, 'Rush Springs', NULL, 'rush-springs', 'US', 1, 34.7825700000, -97.9569800000), (1125523, 1001420, 'Rushford', NULL, 'rushford', 'US', 1, 43.8083000000, -91.7529300000), (1125524, 1001427, 'Rushmere', NULL, 'rushmere', 'US', 1, 37.0668100000, -76.6763500000), (1125525, 1001440, 'Rushville', NULL, 'rushville', 'US', 1, 39.6092100000, -85.4463600000), (1125526, 1001425, 'Rushville', NULL, 'rushville', 'US', 1, 40.1211600000, -90.5631800000), (1125527, 1001408, 'Rushville', NULL, 'rushville', 'US', 1, 42.7183200000, -102.4640600000), (1125528, 1001407, 'Rusk', NULL, 'rusk', 'US', 1, 31.7960100000, -95.1502200000), (1125529, 1001407, 'Rusk County', NULL, 'rusk-county', 'US', 1, 32.1077200000, -94.7618800000), (1125530, 1001441, 'Rusk County', NULL, 'rusk-county', 'US', 1, 45.4751300000, -91.1331200000), (1125531, 1001436, 'Ruskin', NULL, 'ruskin', 'US', 1, 27.7208600000, -82.4331500000), (1125532, 1001455, 'Russell', NULL, 'russell', 'US', 1, 33.9787200000, -83.7001700000), (1125533, 1001406, 'Russell', NULL, 'russell', 'US', 1, 38.8952700000, -98.8610300000), (1125534, 1001419, 'Russell', NULL, 'russell', 'US', 1, 38.5173000000, -82.6976600000), (1125535, 1001422, 'Russell', NULL, 'russell', 'US', 1, 41.9414500000, -79.1350500000), (1125536, 1001456, 'Russell County', NULL, 'russell-county', 'US', 1, 32.2883800000, -85.1849600000), (1125537, 1001406, 'Russell County', NULL, 'russell-county', 'US', 1, 38.9147800000, -98.7623500000), (1125538, 1001419, 'Russell County', NULL, 'russell-county', 'US', 1, 36.9910300000, -85.0586900000), (1125539, 1001427, 'Russell County', NULL, 'russell-county', 'US', 1, 36.9337600000, -82.0956400000), (1125540, 1001419, 'Russell Springs', NULL, 'russell-springs', 'US', 1, 37.0561800000, -85.0885700000), (1125541, 1001422, 'Russellton', NULL, 'russellton', 'US', 1, 40.6114600000, -79.8370000000), (1125542, 1001456, 'Russellville', NULL, 'russellville', 'US', 1, 34.5078700000, -87.7286400000), (1125543, 1001444, 'Russellville', NULL, 'russellville', 'US', 1, 35.2784200000, -93.1337900000), (1125544, 1001419, 'Russellville', NULL, 'russellville', 'US', 1, 36.8453200000, -86.8872200000), (1125545, 1001440, 'Russiaville', NULL, 'russiaville', 'US', 1, 40.4175400000, -86.2713800000); INSERT INTO `[[dbprefix]]t_city` VALUES (1125546, 1001427, 'Rustburg', NULL, 'rustburg', 'US', 1, 37.2768100000, -79.1008500000), (1125547, 1001457, 'Ruston', NULL, 'ruston', 'US', 1, 32.5232100000, -92.6379300000), (1125548, 1001454, 'Rutherford', NULL, 'rutherford', 'US', 1, 36.1275700000, -88.9859000000), (1125549, 1001417, 'Rutherford', NULL, 'rutherford', 'US', 1, 40.8264900000, -74.1068100000), (1125550, 1001422, 'Rutherford', NULL, 'rutherford', 'US', 1, 40.2689800000, -76.7680300000), (1125551, 1001447, 'Rutherford College', NULL, 'rutherford-college', 'US', 1, 35.7484600000, -81.5225900000), (1125552, 1001447, 'Rutherford County', NULL, 'rutherford-county', 'US', 1, 35.4022500000, -81.9200900000), (1125553, 1001454, 'Rutherford County', NULL, 'rutherford-county', 'US', 1, 35.8427000000, -86.4167400000), (1125554, 1001447, 'Rutherfordton', NULL, 'rutherfordton', 'US', 1, 35.3692900000, -81.9567700000), (1125555, 1001433, 'Rutland', NULL, 'rutland', 'US', 1, 42.3695400000, -71.9481300000), (1125556, 1001441, 'Rutland', NULL, 'rutland', 'US', 1, 42.8788900000, -89.3501200000), (1125557, 1001409, 'Rutland', NULL, 'rutland', 'US', 1, 43.6106200000, -72.9726100000), (1125558, 1001409, 'Rutland County', NULL, 'rutland-county', 'US', 1, 43.5800900000, -73.0366100000), (1125559, 1001454, 'Rutledge', NULL, 'rutledge', 'US', 1, 36.2809200000, -83.5149000000), (1125560, 1001455, 'Rydal', NULL, 'rydal', 'US', 1, 34.3353700000, -84.7154900000), (1125561, 1001404, 'Rye', NULL, 'rye', 'US', 1, 43.0134200000, -70.7708900000), (1125562, 1001452, 'Rye', NULL, 'rye', 'US', 1, 40.9806500000, -73.6837400000), (1125563, 1001452, 'Rye Brook', NULL, 'rye-brook', 'US', 1, 41.0192600000, -73.6834600000), (1125564, 1001446, 'Ryegate', NULL, 'ryegate', 'US', 1, 46.2971800000, -109.2587900000), (1125565, 1001419, 'Ryland Heights', NULL, 'ryland-heights', 'US', 1, 38.9575600000, -84.4630000000), (1125566, 1001453, 'Sabattus', NULL, 'sabattus', 'US', 1, 44.1198000000, -70.1075500000), (1125567, 1001406, 'Sabetha', NULL, 'sabetha', 'US', 1, 39.9022200000, -95.8008200000), (1125568, 1001407, 'Sabinal', NULL, 'sabinal', 'US', 1, 29.3174600000, -99.4664400000), (1125569, 1001407, 'Sabine County', NULL, 'sabine-county', 'US', 1, 31.3432000000, -93.8518000000), (1125570, 1001457, 'Sabine Parish', NULL, 'sabine-parish', 'US', 1, 31.5640100000, -93.5547000000), (1125571, 1001459, 'Sac City', NULL, 'sac-city', 'US', 1, 42.4222000000, -94.9897100000), (1125572, 1001459, 'Sac County', NULL, 'sac-county', 'US', 1, 42.3862600000, -95.1053900000), (1125573, 1001434, 'Sacaton', NULL, 'sacaton', 'US', 1, 33.0767200000, -111.7393000000), (1125574, 1001407, 'Sachse', NULL, 'sachse', 'US', 1, 32.9762300000, -96.5952700000), (1125575, 1001452, 'Sackets Harbor', NULL, 'sackets-harbor', 'US', 1, 43.9461700000, -76.1190900000), (1125576, 1001453, 'Saco', NULL, 'saco', 'US', 1, 43.5009200000, -70.4428300000), (1125577, 1001416, 'Sacramento', NULL, 'sacramento', 'US', 1, 38.5815700000, -121.4944000000), (1125578, 1001416, 'Sacramento County', NULL, 'sacramento-county', 'US', 1, 38.4493200000, -121.3442400000), (1125579, 1001417, 'Saddle Brook', NULL, 'saddle-brook', 'US', 1, 40.8989900000, -74.0926400000), (1125580, 1001434, 'Saddle Brooke', NULL, 'saddle-brooke', 'US', 1, 32.5347200000, -110.8736100000), (1125581, 1001417, 'Saddle River', NULL, 'saddle-river', 'US', 1, 41.0317600000, -74.1020900000), (1125582, 1001436, 'Safety Harbor', NULL, 'safety-harbor', 'US', 1, 27.9908500000, -82.6931600000), (1125583, 1001434, 'Safford', NULL, 'safford', 'US', 1, 32.8339500000, -109.7075800000), (1125584, 1001452, 'Sag Harbor', NULL, 'sag-harbor', 'US', 1, 40.9978800000, -72.2925800000), (1125585, 1001453, 'Sagadahoc County', NULL, 'sagadahoc-county', 'US', 1, 43.9117300000, -69.8393100000), (1125586, 1001433, 'Sagamore', NULL, 'sagamore', 'US', 1, 41.7701100000, -70.5283600000), (1125587, 1001407, 'Saginaw', NULL, 'saginaw', 'US', 1, 32.8601300000, -97.3639100000), (1125588, 1001426, 'Saginaw', NULL, 'saginaw', 'US', 1, 43.4194700000, -83.9508100000), (1125589, 1001426, 'Saginaw County', NULL, 'saginaw-county', 'US', 1, 43.3350300000, -84.0531900000), (1125590, 1001426, 'Saginaw Township North', NULL, 'saginaw-township-north', 'US', 1, 43.4600400000, -84.0067400000), (1125591, 1001450, 'Saguache', NULL, 'saguache', 'US', 1, 38.0875000000, -106.1419700000), (1125592, 1001450, 'Saguache County', NULL, 'saguache-county', 'US', 1, 38.0805500000, -106.2815600000), (1125593, 1001434, 'Sahuarita', NULL, 'sahuarita', 'US', 1, 31.9575800000, -110.9556500000), (1125594, 1001429, 'Saint Albans', NULL, 'saint-albans', 'US', 1, 38.3856500000, -81.8362400000), (1125595, 1001453, 'Saint Albans', NULL, 'saint-albans', 'US', 1, 44.9100600000, -69.4100500000), (1125596, 1001409, 'Saint Albans', NULL, 'saint-albans', 'US', 1, 44.8108800000, -73.0831900000), (1125597, 1001443, 'Saint Andrews', NULL, 'saint-andrews', 'US', 1, 34.0454300000, -81.1292600000), (1125598, 1001451, 'Saint Ann', NULL, 'saint-ann', 'US', 1, 38.7272700000, -90.3831700000), (1125599, 1001425, 'Saint Anne', NULL, 'saint-anne', 'US', 1, 41.0250300000, -87.7139200000), (1125600, 1001459, 'Saint Ansgar', NULL, 'saint-ansgar', 'US', 1, 43.3783000000, -92.9188100000), (1125601, 1001420, 'Saint Anthony', NULL, 'saint-anthony', 'US', 1, 45.0205200000, -93.2180000000), (1125602, 1001460, 'Saint Anthony', NULL, 'saint-anthony', 'US', 1, 43.9663000000, -111.6821800000), (1125603, 1001420, 'Saint Augusta', NULL, 'saint-augusta', 'US', 1, 45.4583000000, -94.1980400000), (1125604, 1001436, 'Saint Augustine', NULL, 'saint-augustine', 'US', 1, 29.8946900000, -81.3145200000), (1125605, 1001436, 'Saint Augustine Beach', NULL, 'saint-augustine-beach', 'US', 1, 29.8505300000, -81.2653500000), (1125606, 1001436, 'Saint Augustine Shores', NULL, 'saint-augustine-shores', 'US', 1, 29.8108000000, -81.3103500000), (1125607, 1001436, 'Saint Augustine South', NULL, 'saint-augustine-south', 'US', 1, 29.8424900000, -81.3144800000), (1125608, 1001457, 'Saint Bernard Parish', NULL, 'saint-bernard-parish', 'US', 1, 29.8739900000, -89.8242200000), (1125609, 1001452, 'Saint Bonaventure', NULL, 'saint-bonaventure', 'US', 1, 42.0803400000, -78.4750200000), (1125610, 1001420, 'Saint Bonifacius', NULL, 'saint-bonifacius', 'US', 1, 44.9055200000, -93.7474600000), (1125611, 1001401, 'Saint Charles', NULL, 'saint-charles', 'US', 1, 38.6031700000, -76.9385800000), (1125612, 1001451, 'Saint Charles', NULL, 'saint-charles', 'US', 1, 38.7839400000, -90.4812300000), (1125613, 1001425, 'Saint Charles', NULL, 'saint-charles', 'US', 1, 41.9141900000, -88.3086900000), (1125614, 1001426, 'Saint Charles', NULL, 'saint-charles', 'US', 1, 43.2969700000, -84.1405300000), (1125615, 1001420, 'Saint Charles', NULL, 'saint-charles', 'US', 1, 43.9694100000, -92.0643300000), (1125616, 1001451, 'Saint Charles County', NULL, 'saint-charles-county', 'US', 1, 38.7819200000, -90.6749000000), (1125617, 1001457, 'Saint Charles Parish', NULL, 'saint-charles-parish', 'US', 1, 29.9055300000, -90.3582200000), (1125618, 1001451, 'Saint Clair', NULL, 'saint-clair', 'US', 1, 38.3453300000, -90.9809700000), (1125619, 1001426, 'Saint Clair', NULL, 'saint-clair', 'US', 1, 42.8208700000, -82.4860200000), (1125620, 1001422, 'Saint Clair', NULL, 'saint-clair', 'US', 1, 40.7206500000, -76.1910500000), (1125621, 1001456, 'Saint Clair County', NULL, 'saint-clair-county', 'US', 1, 33.7157000000, -86.3146900000), (1125622, 1001425, 'Saint Clair County', NULL, 'saint-clair-county', 'US', 1, 38.4703100000, -89.9284100000), (1125623, 1001451, 'Saint Clair County', NULL, 'saint-clair-county', 'US', 1, 38.0371800000, -93.7759800000), (1125624, 1001426, 'Saint Clair County', NULL, 'saint-clair-county', 'US', 1, 42.9311200000, -82.6643700000), (1125625, 1001426, 'Saint Clair Shores', NULL, 'saint-clair-shores', 'US', 1, 42.4969800000, -82.8888100000), (1125626, 1001436, 'Saint Cloud', NULL, 'saint-cloud', 'US', 1, 28.2489000000, -81.2811800000), (1125627, 1001420, 'Saint Cloud', NULL, 'saint-cloud', 'US', 1, 45.5608000000, -94.1624900000), (1125628, 1001441, 'Saint Croix County', NULL, 'saint-croix-county', 'US', 1, 45.0340700000, -92.4527800000), (1125629, 1001441, 'Saint Croix Falls', NULL, 'saint-croix-falls', 'US', 1, 45.4099600000, -92.6396500000), (1125630, 1001434, 'Saint David', NULL, 'saint-david', 'US', 1, 31.9042500000, -110.2142400000), (1125631, 1001419, 'Saint Dennis', NULL, 'saint-dennis', 'US', 1, 38.1884000000, -85.8458000000), (1125632, 1001425, 'Saint Elmo', NULL, 'saint-elmo', 'US', 1, 39.0272700000, -88.8481100000), (1125633, 1001420, 'Saint Francis', NULL, 'saint-francis', 'US', 1, 45.3869100000, -93.3594000000), (1125634, 1001441, 'Saint Francis', NULL, 'saint-francis', 'US', 1, 42.9675200000, -87.8775800000), (1125635, 1001406, 'Saint Francis', NULL, 'saint-francis', 'US', 1, 39.7722200000, -101.7999000000), (1125636, 1001444, 'Saint Francis County', NULL, 'saint-francis-county', 'US', 1, 35.0220000000, -90.7477800000), (1125637, 1001457, 'Saint Francisville', NULL, 'saint-francisville', 'US', 1, 30.7799000000, -91.3765000000), (1125638, 1001451, 'Saint Francois County', NULL, 'saint-francois-county', 'US', 1, 37.8102800000, -90.4722700000), (1125639, 1001457, 'Saint Gabriel', NULL, 'saint-gabriel', 'US', 1, 30.2577000000, -91.0992700000), (1125640, 1001436, 'Saint George', NULL, 'saint-george', 'US', 1, 28.0564100000, -82.7278800000), (1125641, 1001451, 'Saint George', NULL, 'saint-george', 'US', 1, 38.5367200000, -90.3148400000), (1125642, 1001443, 'Saint George', NULL, 'saint-george', 'US', 1, 33.1860000000, -80.5756500000), (1125643, 1001453, 'Saint George', NULL, 'saint-george', 'US', 1, 44.0164700000, -69.1989300000), (1125644, 1001414, 'Saint George', NULL, 'saint-george', 'US', 1, 37.1041500000, -113.5841200000), (1125645, 1001407, 'Saint Hedwig', NULL, 'saint-hedwig', 'US', 1, 29.4144000000, -98.2000100000), (1125646, 1001426, 'Saint Helen', NULL, 'saint-helen', 'US', 1, 44.3636300000, -84.4102900000), (1125647, 1001416, 'Saint Helena', NULL, 'saint-helena', 'US', 1, 38.5051900000, -122.4702600000), (1125648, 1001457, 'Saint Helena Parish', NULL, 'saint-helena-parish', 'US', 1, 30.8219800000, -90.7103200000), (1125649, 1001415, 'Saint Helens', NULL, 'saint-helens', 'US', 1, 45.8640000000, -122.8064900000), (1125650, 1001426, 'Saint Ignace', NULL, 'saint-ignace', 'US', 1, 45.8661400000, -84.7275100000), (1125651, 1001425, 'Saint Jacob', NULL, 'saint-jacob', 'US', 1, 38.7139400000, -89.7681500000), (1125652, 1001401, 'Saint James', NULL, 'saint-james', 'US', 1, 39.5626000000, -77.7580500000), (1125653, 1001451, 'Saint James', NULL, 'saint-james', 'US', 1, 37.9972600000, -91.6143200000), (1125654, 1001447, 'Saint James', NULL, 'saint-james', 'US', 1, 33.9293400000, -78.1163800000), (1125655, 1001420, 'Saint James', NULL, 'saint-james', 'US', 1, 43.9824600000, -94.6269200000), (1125656, 1001452, 'Saint James', NULL, 'saint-james', 'US', 1, 40.8789900000, -73.1567800000), (1125657, 1001436, 'Saint James City', NULL, 'saint-james-city', 'US', 1, 26.4975800000, -82.0784300000), (1125658, 1001457, 'Saint James Parish', NULL, 'saint-james-parish', 'US', 1, 30.0263000000, -90.7963200000), (1125659, 1001407, 'Saint Jo', NULL, 'saint-jo', 'US', 1, 33.6948300000, -97.5225200000), (1125660, 1001406, 'Saint John', NULL, 'saint-john', 'US', 1, 38.0022400000, -98.7600900000), (1125661, 1001451, 'Saint John', NULL, 'saint-john', 'US', 1, 38.7148400000, -90.3462700000), (1125662, 1001440, 'Saint John', NULL, 'saint-john', 'US', 1, 41.4500400000, -87.4700400000), (1125663, 1001457, 'Saint John the Baptist Parish', NULL, 'saint-john-the-baptist-parish', 'US', 1, 30.1264600000, -90.4708800000), (1125664, 1001451, 'Saint Johns', NULL, 'saint-johns', 'US', 1, 38.7133800000, -90.3431700000), (1125665, 1001426, 'Saint Johns', NULL, 'saint-johns', 'US', 1, 43.0011400000, -84.5591500000), (1125666, 1001434, 'Saint Johns', NULL, 'saint-johns', 'US', 1, 34.5058700000, -109.3609300000), (1125667, 1001436, 'Saint Johns County', NULL, 'saint-johns-county', 'US', 1, 29.9121800000, -81.4098900000), (1125668, 1001409, 'Saint Johnsbury', NULL, 'saint-johnsbury', 'US', 1, 44.4192200000, -72.0150900000), (1125669, 1001452, 'Saint Johnsville', NULL, 'saint-johnsville', 'US', 1, 42.9981300000, -74.6829200000), (1125670, 1001457, 'Saint Joseph', NULL, 'saint-joseph', 'US', 1, 31.9184900000, -91.2334500000), (1125671, 1001451, 'Saint Joseph', NULL, 'saint-joseph', 'US', 1, 39.7686100000, -94.8466300000), (1125672, 1001425, 'Saint Joseph', NULL, 'saint-joseph', 'US', 1, 40.1117000000, -88.0417000000), (1125673, 1001426, 'Saint Joseph', NULL, 'saint-joseph', 'US', 1, 42.1097600000, -86.4800200000), (1125674, 1001420, 'Saint Joseph', NULL, 'saint-joseph', 'US', 1, 45.5649600000, -94.3183300000), (1125675, 1001440, 'Saint Joseph County', NULL, 'saint-joseph-county', 'US', 1, 41.6167200000, -86.2898600000), (1125676, 1001426, 'Saint Joseph County', NULL, 'saint-joseph-county', 'US', 1, 41.9144100000, -85.5277400000), (1125677, 1001457, 'Saint Landry Parish', NULL, 'saint-landry-parish', 'US', 1, 30.5988500000, -92.0058600000), (1125678, 1001422, 'Saint Lawrence', NULL, 'saint-lawrence', 'US', 1, 40.3270400000, -75.8718700000), (1125679, 1001436, 'Saint Leo', NULL, 'saint-leo', 'US', 1, 28.3372300000, -82.2584200000), (1125680, 1001426, 'Saint Louis', NULL, 'saint-louis', 'US', 1, 43.4083600000, -84.6066700000), (1125681, 1001451, 'Saint Louis County', NULL, 'saint-louis-county', 'US', 1, 38.6406800000, -90.4434100000), (1125682, 1001420, 'Saint Louis County', NULL, 'saint-louis-county', 'US', 1, 47.5898600000, -92.4614700000), (1125683, 1001420, 'Saint Louis Park', NULL, 'saint-louis-park', 'US', 1, 44.9483000000, -93.3480100000), (1125684, 1001436, 'Saint Lucie County', NULL, 'saint-lucie-county', 'US', 1, 27.3808100000, -80.4455400000), (1125685, 1001460, 'Saint Maries', NULL, 'saint-maries', 'US', 1, 47.3143500000, -116.5626700000), (1125686, 1001430, 'Saint Martin', NULL, 'saint-martin', 'US', 1, 30.4379800000, -88.8680900000), (1125687, 1001457, 'Saint Martin Parish', NULL, 'saint-martin-parish', 'US', 1, 30.1290700000, -91.6083000000), (1125688, 1001451, 'Saint Martins', NULL, 'saint-martins', 'US', 1, 38.5942000000, -92.3371300000), (1125689, 1001457, 'Saint Martinville', NULL, 'saint-martinville', 'US', 1, 30.1252000000, -91.8334500000), (1125690, 1001457, 'Saint Mary Parish', NULL, 'saint-mary-parish', 'US', 1, 29.6346200000, -91.4729300000), (1125691, 1001401, 'Saint Mary''s County', NULL, 'saint-mary-s-county', 'US', 1, 38.2158600000, -76.5290600000), (1125692, 1001406, 'Saint Marys', NULL, 'saint-marys', 'US', 1, 39.1941600000, -96.0711000000), (1125693, 1001429, 'Saint Marys', NULL, 'saint-marys', 'US', 1, 39.3917400000, -81.2051100000), (1125694, 1001422, 'Saint Marys', NULL, 'saint-marys', 'US', 1, 41.4278400000, -78.5608600000), (1125695, 1001419, 'Saint Matthews', NULL, 'saint-matthews', 'US', 1, 38.2528500000, -85.6557900000), (1125696, 1001443, 'Saint Matthews', NULL, 'saint-matthews', 'US', 1, 33.6648800000, -80.7778700000), (1125697, 1001420, 'Saint Michael', NULL, 'saint-michael', 'US', 1, 45.2099600000, -93.6649600000), (1125698, 1001401, 'Saint Michaels', NULL, 'saint-michaels', 'US', 1, 38.7851200000, -76.2243900000), (1125699, 1001434, 'Saint Michaels', NULL, 'saint-michaels', 'US', 1, 35.6447400000, -109.0956500000), (1125700, 1001440, 'Saint Paul', NULL, 'saint-paul', 'US', 1, 39.4281000000, -85.6283100000), (1125701, 1001451, 'Saint Paul', NULL, 'saint-paul', 'US', 1, 38.8614400000, -90.7417900000), (1125702, 1001407, 'Saint Paul', NULL, 'saint-paul', 'US', 1, 33.0412300000, -96.5502700000), (1125703, 1001420, 'Saint Paul', NULL, 'saint-paul', 'US', 1, 44.9444100000, -93.0932700000), (1125704, 1001408, 'Saint Paul', NULL, 'saint-paul', 'US', 1, 41.2147300000, -98.4581200000), (1125705, 1001420, 'Saint Paul Park', NULL, 'saint-paul-park', 'US', 1, 44.8421900000, -92.9913200000), (1125706, 1001447, 'Saint Pauls', NULL, 'saint-pauls', 'US', 1, 34.8065500000, -78.9711400000), (1125707, 1001436, 'Saint Pete Beach', NULL, 'saint-pete-beach', 'US', 1, 27.7253100000, -82.7412100000), (1125708, 1001420, 'Saint Peter', NULL, 'saint-peter', 'US', 1, 44.3235800000, -93.9580100000), (1125709, 1001441, 'Saint Peter', NULL, 'saint-peter', 'US', 1, 43.8363800000, -88.3414900000), (1125710, 1001451, 'Saint Peters', NULL, 'saint-peters', 'US', 1, 38.8003300000, -90.6265100000), (1125711, 1001419, 'Saint Regis Park', NULL, 'saint-regis-park', 'US', 1, 38.2267400000, -85.6166300000), (1125712, 1001451, 'Saint Robert', NULL, 'saint-robert', 'US', 1, 37.8281000000, -92.1776700000), (1125713, 1001457, 'Saint Rose', NULL, 'saint-rose', 'US', 1, 29.9468700000, -90.3231300000), (1125714, 1001455, 'Saint Simon Mills', NULL, 'saint-simon-mills', 'US', 1, 31.1707900000, -81.4073200000), (1125715, 1001455, 'Saint Simons Island', NULL, 'saint-simons-island', 'US', 1, 31.1505100000, -81.3695400000), (1125716, 1001443, 'Saint Stephen', NULL, 'saint-stephen', 'US', 1, 33.4043300000, -79.9217400000), (1125717, 1001447, 'Saint Stephens', NULL, 'saint-stephens', 'US', 1, 35.7645800000, -81.2731400000), (1125718, 1001457, 'Saint Tammany Parish', NULL, 'saint-tammany-parish', 'US', 1, 30.4087500000, -89.9539300000), (1125719, 1001451, 'Sainte Genevieve', NULL, 'sainte-genevieve', 'US', 1, 37.9814400000, -90.0417800000), (1125720, 1001451, 'Sainte Genevieve County', NULL, 'sainte-genevieve-county', 'US', 1, 37.8944000000, -90.1944200000), (1125721, 1001456, 'Saks', NULL, 'saks', 'US', 1, 33.6987100000, -85.8396900000), (1125722, 1001407, 'Salado', NULL, 'salado', 'US', 1, 30.9471300000, -97.5386200000), (1125723, 1001452, 'Salamanca', NULL, 'salamanca', 'US', 1, 42.1578400000, -78.7150300000), (1125724, 1001400, 'Salcha', NULL, 'salcha', 'US', 1, 64.5239900000, -146.9021000000), (1125725, 1001454, 'Sale Creek', NULL, 'sale-creek', 'US', 1, 35.3822900000, -85.1088400000), (1125726, 1001444, 'Salem', NULL, 'salem', 'US', 1, 34.6289800000, -92.5582200000), (1125727, 1001440, 'Salem', NULL, 'salem', 'US', 1, 38.6056100000, -86.1010900000), (1125728, 1001425, 'Salem', NULL, 'salem', 'US', 1, 38.6269900000, -88.9456200000), (1125729, 1001417, 'Salem', NULL, 'salem', 'US', 1, 39.5717800000, -75.4671400000), (1125730, 1001451, 'Salem', NULL, 'salem', 'US', 1, 37.6456000000, -91.5359800000), (1125731, 1001447, 'Salem', NULL, 'salem', 'US', 1, 35.6987400000, -81.6970400000), (1125732, 1001435, 'Salem', NULL, 'salem', 'US', 1, 41.4903800000, -72.2753600000), (1125733, 1001429, 'Salem', NULL, 'salem', 'US', 1, 39.2828700000, -80.5589900000), (1125734, 1001427, 'Salem', NULL, 'salem', 'US', 1, 37.2934700000, -80.0547600000), (1125735, 1001433, 'Salem', NULL, 'salem', 'US', 1, 42.5195400000, -70.8967200000), (1125736, 1001404, 'Salem', NULL, 'salem', 'US', 1, 42.7884200000, -71.2008900000), (1125737, 1001445, 'Salem', NULL, 'salem', 'US', 1, 43.7241500000, -97.3889500000), (1125738, 1001441, 'Salem', NULL, 'salem', 'US', 1, 42.5547400000, -88.1109200000), (1125739, 1001414, 'Salem', NULL, 'salem', 'US', 1, 40.0530100000, -111.6735400000), (1125740, 1001415, 'Salem', NULL, 'salem', 'US', 1, 44.9429000000, -123.0351000000), (1125741, 1001417, 'Salem County', NULL, 'salem-county', 'US', 1, 39.5765800000, -75.3579100000), (1125742, 1001416, 'Salida', NULL, 'salida', 'US', 1, 37.7057600000, -121.0849400000), (1125743, 1001450, 'Salida', NULL, 'salida', 'US', 1, 38.5347200000, -105.9989000000), (1125744, 1001406, 'Salina', NULL, 'salina', 'US', 1, 38.8402800000, -97.6114200000), (1125745, 1001421, 'Salina', NULL, 'salina', 'US', 1, 36.2928700000, -95.1533000000), (1125746, 1001414, 'Salina', NULL, 'salina', 'US', 1, 38.9577400000, -111.8599300000), (1125747, 1001416, 'Salinas', NULL, 'salinas', 'US', 1, 36.6777400000, -121.6555000000), (1125748, 1001426, 'Saline', NULL, 'saline', 'US', 1, 42.1667100000, -83.7816100000), (1125749, 1001444, 'Saline County', NULL, 'saline-county', 'US', 1, 34.6466200000, -92.6765700000), (1125750, 1001425, 'Saline County', NULL, 'saline-county', 'US', 1, 37.7531800000, -88.5408000000), (1125751, 1001406, 'Saline County', NULL, 'saline-county', 'US', 1, 38.7838100000, -97.6499300000), (1125752, 1001451, 'Saline County', NULL, 'saline-county', 'US', 1, 39.1368400000, -93.2018500000), (1125753, 1001408, 'Saline County', NULL, 'saline-county', 'US', 1, 40.5240600000, -97.1409100000), (1125754, 1001401, 'Salisbury', NULL, 'salisbury', 'US', 1, 38.3606700000, -75.5993700000), (1125755, 1001451, 'Salisbury', NULL, 'salisbury', 'US', 1, 39.4239200000, -92.8015800000), (1125756, 1001447, 'Salisbury', NULL, 'salisbury', 'US', 1, 35.6709700000, -80.4742300000), (1125757, 1001433, 'Salisbury', NULL, 'salisbury', 'US', 1, 42.8417600000, -70.8606100000), (1125758, 1001404, 'Salisbury', NULL, 'salisbury', 'US', 1, 43.3800800000, -71.7170200000), (1125759, 1001452, 'Salisbury', NULL, 'salisbury', 'US', 1, 40.7456600000, -73.5601300000), (1125760, 1001409, 'Salisbury', NULL, 'salisbury', 'US', 1, 43.8964500000, -73.0998400000), (1125761, 1001422, 'Salix', NULL, 'salix', 'US', 1, 40.3000800000, -78.7653000000), (1125762, 1001421, 'Sallisaw', NULL, 'sallisaw', 'US', 1, 35.4603700000, -94.7874500000), (1125763, 1001460, 'Salmon', NULL, 'salmon', 'US', 1, 45.1757500000, -113.8959000000), (1125764, 1001435, 'Salmon Brook', NULL, 'salmon-brook', 'US', 1, 41.9564900000, -72.7953700000), (1125765, 1001462, 'Salmon Creek', NULL, 'salmon-creek', 'US', 1, 45.7106700000, -122.6489900000), (1125766, 1001434, 'Salome', NULL, 'salome', 'US', 1, 33.7811400000, -113.6146500000), (1125767, 1001414, 'Salt Lake City', NULL, 'salt-lake-city', 'US', 1, 40.7607800000, -111.8910500000), (1125768, 1001414, 'Salt Lake County', NULL, 'salt-lake-county', 'US', 1, 40.6675800000, -111.9240300000), (1125769, 1001430, 'Saltillo', NULL, 'saltillo', 'US', 1, 34.3764900000, -88.6817200000), (1125770, 1001416, 'Salton City', NULL, 'salton-city', 'US', 1, 33.2986500000, -115.9561100000), (1125771, 1001427, 'Saltville', NULL, 'saltville', 'US', 1, 36.8815000000, -81.7620600000), (1125772, 1001443, 'Saluda', NULL, 'saluda', 'US', 1, 34.0015200000, -81.7720500000), (1125773, 1001427, 'Saluda', NULL, 'saluda', 'US', 1, 37.6059700000, -76.5949500000), (1125774, 1001443, 'Saluda County', NULL, 'saluda-county', 'US', 1, 34.0061400000, -81.7269200000), (1125775, 1001422, 'Salunga', NULL, 'salunga', 'US', 1, 40.1009300000, -76.4246900000), (1125776, 1001419, 'Salyersville', NULL, 'salyersville', 'US', 1, 37.7525900000, -83.0687800000), (1125777, 1001407, 'Sam Rayburn', NULL, 'sam-rayburn', 'US', 1, 31.0640800000, -94.0357500000), (1125778, 1001462, 'Sammamish', NULL, 'sammamish', 'US', 1, 47.6417700000, -122.0804000000), (1125779, 1001436, 'Samoset', NULL, 'samoset', 'US', 1, 27.4694800000, -82.5414900000), (1125780, 1001447, 'Sampson County', NULL, 'sampson-county', 'US', 1, 34.9916300000, -78.3715200000), (1125781, 1001456, 'Samson', NULL, 'samson', 'US', 1, 31.1129500000, -86.0460500000), (1125782, 1001436, 'Samsula-Spruce Creek', NULL, 'samsula-spruce-creek', 'US', 1, 29.0493200000, -81.0619200000), (1125783, 1001416, 'San Andreas', NULL, 'san-andreas', 'US', 1, 38.1960300000, -120.6804900000), (1125784, 1001407, 'San Angelo', NULL, 'san-angelo', 'US', 1, 31.4637700000, -100.4370400000), (1125785, 1001416, 'San Anselmo', NULL, 'san-anselmo', 'US', 1, 37.9746500000, -122.5616400000), (1125786, 1001436, 'San Antonio', NULL, 'san-antonio', 'US', 1, 28.3361100000, -82.2745300000), (1125787, 1001407, 'San Antonio', NULL, 'san-antonio', 'US', 1, 29.4241200000, -98.4936300000), (1125788, 1001416, 'San Antonio Heights', NULL, 'san-antonio-heights', 'US', 1, 34.1555600000, -117.6564400000), (1125789, 1001407, 'San Augustine', NULL, 'san-augustine', 'US', 1, 31.5299000000, -94.1060300000), (1125790, 1001407, 'San Augustine County', NULL, 'san-augustine-county', 'US', 1, 31.3942200000, -94.1681900000), (1125791, 1001407, 'San Benito', NULL, 'san-benito', 'US', 1, 26.1325800000, -97.6311000000), (1125792, 1001416, 'San Benito County', NULL, 'san-benito-county', 'US', 1, 36.6057100000, -121.0750000000), (1125793, 1001416, 'San Bernardino', NULL, 'san-bernardino', 'US', 1, 34.1083400000, -117.2897700000), (1125794, 1001416, 'San Bernardino County', NULL, 'san-bernardino-county', 'US', 1, 34.8414300000, -116.1784600000), (1125795, 1001416, 'San Bruno', NULL, 'san-bruno', 'US', 1, 37.6304900000, -122.4110800000), (1125796, 1001407, 'San Carlos', NULL, 'san-carlos', 'US', 1, 26.2956300000, -98.0719500000), (1125797, 1001434, 'San Carlos', NULL, 'san-carlos', 'US', 1, 33.3456200000, -110.4550400000), (1125798, 1001416, 'San Carlos', NULL, 'san-carlos', 'US', 1, 37.5071600000, -122.2605200000), (1125799, 1001436, 'San Carlos Park', NULL, 'san-carlos-park', 'US', 1, 26.4673000000, -81.8014700000), (1125800, 1001416, 'San Clemente', NULL, 'san-clemente', 'US', 1, 33.4269700000, -117.6119900000), (1125801, 1001407, 'San Diego', NULL, 'san-diego', 'US', 1, 27.7639100000, -98.2389000000), (1125802, 1001416, 'San Diego', NULL, 'san-diego', 'US', 1, 32.7157100000, -117.1647200000), (1125803, 1001416, 'San Diego Country Estates', NULL, 'san-diego-country-estates', 'US', 1, 33.0067100000, -116.7836400000), (1125804, 1001416, 'San Diego County', NULL, 'san-diego-county', 'US', 1, 33.0282000000, -116.7702100000), (1125805, 1001416, 'San Dimas', NULL, 'san-dimas', 'US', 1, 34.1066800000, -117.8067300000), (1125806, 1001407, 'San Elizario', NULL, 'san-elizario', 'US', 1, 31.5851100000, -106.2727600000), (1125807, 1001423, 'San Felipe Pueblo', NULL, 'san-felipe-pueblo', 'US', 1, 35.4339200000, -106.4466900000), (1125808, 1001416, 'San Fernando', NULL, 'san-fernando', 'US', 1, 34.2819500000, -118.4389700000), (1125809, 1001416, 'San Francisco', NULL, 'san-francisco', 'US', 1, 37.7749300000, -122.4194200000), (1125810, 1001416, 'San Gabriel', NULL, 'san-gabriel', 'US', 1, 34.0961100000, -118.1058300000), (1125811, 1001416, 'San Jacinto', NULL, 'san-jacinto', 'US', 1, 33.7839100000, -116.9586400000), (1125812, 1001407, 'San Jacinto County', NULL, 'san-jacinto-county', 'US', 1, 30.5795300000, -95.1669000000), (1125813, 1001416, 'San Joaquin', NULL, 'san-joaquin', 'US', 1, 36.6066200000, -120.1890400000), (1125814, 1001416, 'San Joaquin County', NULL, 'san-joaquin-county', 'US', 1, 37.9347800000, -121.2714500000), (1125815, 1001416, 'San Joaquin Hills', NULL, 'san-joaquin-hills', 'US', 1, 33.6116900000, -117.8367200000), (1125816, 1001416, 'San Jose', NULL, 'san-jose', 'US', 1, 37.3393900000, -121.8949600000), (1125817, 1001407, 'San Juan', NULL, 'san-juan', 'US', 1, 26.1892400000, -98.1552900000), (1125818, 1001416, 'San Juan Bautista', NULL, 'san-juan-bautista', 'US', 1, 36.8455100000, -121.5380000000), (1125819, 1001416, 'San Juan Capistrano', NULL, 'san-juan-capistrano', 'US', 1, 33.5016900000, -117.6625500000), (1125820, 1001450, 'San Juan County', NULL, 'san-juan-county', 'US', 1, 37.7640400000, -107.6761500000), (1125821, 1001423, 'San Juan County', NULL, 'san-juan-county', 'US', 1, 36.5084700000, -108.3206000000), (1125822, 1001414, 'San Juan County', NULL, 'san-juan-county', 'US', 1, 37.6260100000, -109.8045700000), (1125823, 1001462, 'San Juan County', NULL, 'san-juan-county', 'US', 1, 48.5311600000, -123.0249000000), (1125824, 1001416, 'San Leandro', NULL, 'san-leandro', 'US', 1, 37.7249300000, -122.1560800000), (1125825, 1001407, 'San Leon', NULL, 'san-leon', 'US', 1, 29.4832900000, -94.9221500000), (1125826, 1001416, 'San Lorenzo', NULL, 'san-lorenzo', 'US', 1, 37.6810400000, -122.1244100000), (1125827, 1001434, 'San Luis', NULL, 'san-luis', 'US', 1, 32.4870000000, -114.7821800000), (1125828, 1001450, 'San Luis', NULL, 'san-luis', 'US', 1, 37.2008500000, -105.4239000000), (1125829, 1001416, 'San Luis Obispo', NULL, 'san-luis-obispo', 'US', 1, 35.2827500000, -120.6596200000), (1125830, 1001416, 'San Luis Obispo County', NULL, 'san-luis-obispo-county', 'US', 1, 35.3874200000, -120.4522000000), (1125831, 1001434, 'San Manuel', NULL, 'san-manuel', 'US', 1, 32.5997900000, -110.6309300000), (1125832, 1001407, 'San Marcos', NULL, 'san-marcos', 'US', 1, 29.8832700000, -97.9413900000), (1125833, 1001416, 'San Marcos', NULL, 'san-marcos', 'US', 1, 33.1433700000, -117.1661400000), (1125834, 1001416, 'San Marino', NULL, 'san-marino', 'US', 1, 34.1214000000, -118.1064600000), (1125835, 1001416, 'San Martin', NULL, 'san-martin', 'US', 1, 37.0849500000, -121.6102200000), (1125836, 1001416, 'San Mateo', NULL, 'san-mateo', 'US', 1, 37.5629900000, -122.3255300000), (1125837, 1001416, 'San Mateo County', NULL, 'san-mateo-county', 'US', 1, 37.4362100000, -122.3556600000), (1125838, 1001416, 'San Miguel', NULL, 'san-miguel', 'US', 1, 35.7524700000, -120.6962800000), (1125839, 1001423, 'San Miguel', NULL, 'san-miguel', 'US', 1, 32.1553800000, -106.7350000000), (1125840, 1001450, 'San Miguel County', NULL, 'san-miguel-county', 'US', 1, 38.0037400000, -108.4058300000), (1125841, 1001423, 'San Miguel County', NULL, 'san-miguel-county', 'US', 1, 35.4802900000, -104.8158500000), (1125842, 1001416, 'San Pablo', NULL, 'san-pablo', 'US', 1, 37.9621500000, -122.3455300000), (1125843, 1001416, 'San Pasqual', NULL, 'san-pasqual', 'US', 1, 33.0917100000, -116.9539200000), (1125844, 1001407, 'San Patricio County', NULL, 'san-patricio-county', 'US', 1, 28.0087800000, -97.5182700000), (1125845, 1001416, 'San Pedro', NULL, 'san-pedro', 'US', 1, 33.7358500000, -118.2922900000), (1125846, 1001416, 'San Rafael', NULL, 'san-rafael', 'US', 1, 37.9735300000, -122.5310900000), (1125847, 1001416, 'San Ramon', NULL, 'san-ramon', 'US', 1, 37.7799300000, -121.9780200000), (1125848, 1001407, 'San Saba', NULL, 'san-saba', 'US', 1, 31.1957200000, -98.7181000000), (1125849, 1001407, 'San Saba County', NULL, 'san-saba-county', 'US', 1, 31.1552000000, -98.8175800000), (1125850, 1001434, 'San Tan Valley', NULL, 'san-tan-valley', 'US', 1, 33.1911000000, -111.5280000000), (1125851, 1001423, 'San Ysidro', NULL, 'san-ysidro', 'US', 1, 32.3509300000, -106.8111200000), (1125852, 1001422, 'Sanatoga', NULL, 'sanatoga', 'US', 1, 40.2451000000, -75.5951800000), (1125853, 1001459, 'Sanborn', NULL, 'sanborn', 'US', 1, 43.1816400000, -95.6555700000), (1125854, 1001452, 'Sanborn', NULL, 'sanborn', 'US', 1, 43.1367200000, -78.8847600000), (1125855, 1001445, 'Sanborn County', NULL, 'sanborn-county', 'US', 1, 44.0234500000, -98.0913900000), (1125856, 1001404, 'Sanbornton', NULL, 'sanbornton', 'US', 1, 43.4892400000, -71.5823000000), (1125857, 1001404, 'Sanbornville', NULL, 'sanbornville', 'US', 1, 43.5542500000, -71.0309000000), (1125858, 1001422, 'Sand Hill', NULL, 'sand-hill', 'US', 1, 40.3595400000, -76.4316300000), (1125859, 1001426, 'Sand Lake', NULL, 'sand-lake', 'US', 1, 44.3191800000, -83.6847000000), (1125860, 1001400, 'Sand Point', NULL, 'sand-point', 'US', 1, 55.3365500000, -160.4988000000), (1125861, 1001421, 'Sand Springs', NULL, 'sand-springs', 'US', 1, 36.1398100000, -96.1088900000), (1125862, 1001436, 'Sandalfoot Cove', NULL, 'sandalfoot-cove', 'US', 1, 26.3386300000, -80.1869000000), (1125863, 1001446, 'Sanders County', NULL, 'sanders-county', 'US', 1, 47.6748300000, -115.1332900000), (1125864, 1001407, 'Sanderson', NULL, 'sanderson', 'US', 1, 30.1424100000, -102.3940300000), (1125865, 1001455, 'Sandersville', NULL, 'sandersville', 'US', 1, 32.9815400000, -82.8101400000), (1125866, 1001423, 'Sandia Heights', NULL, 'sandia-heights', 'US', 1, 35.1769900000, -106.4914100000), (1125867, 1001423, 'Sandia Knolls', NULL, 'sandia-knolls', 'US', 1, 35.1639300000, -106.3114100000), (1125868, 1001425, 'Sandoval', NULL, 'sandoval', 'US', 1, 38.6156000000, -89.1142300000), (1125869, 1001423, 'Sandoval County', NULL, 'sandoval-county', 'US', 1, 35.6885500000, -106.8658400000), (1125870, 1001404, 'Sandown', NULL, 'sandown', 'US', 1, 42.9287000000, -71.1870100000), (1125871, 1001460, 'Sandpoint', NULL, 'sandpoint', 'US', 1, 48.2765900000, -116.5532500000), (1125872, 1001452, 'Sands Point', NULL, 'sands-point', 'US', 1, 40.8517700000, -73.7187400000), (1125873, 1001427, 'Sandston', NULL, 'sandston', 'US', 1, 37.5234800000, -77.3158100000), (1125874, 1001420, 'Sandstone', NULL, 'sandstone', 'US', 1, 46.1310600000, -92.8674200000), (1125875, 1001426, 'Sandusky', NULL, 'sandusky', 'US', 1, 43.4203000000, -82.8296600000), (1125876, 1001425, 'Sandwich', NULL, 'sandwich', 'US', 1, 41.6458600000, -88.6217400000), (1125877, 1001433, 'Sandwich', NULL, 'sandwich', 'US', 1, 41.7590000000, -70.4939200000), (1125878, 1001404, 'Sandwich', NULL, 'sandwich', 'US', 1, 43.7903500000, -71.4111800000), (1125879, 1001422, 'Sandy', NULL, 'sandy', 'US', 1, 41.1078400000, -78.7711400000), (1125880, 1001415, 'Sandy', NULL, 'sandy', 'US', 1, 45.3973400000, -122.2614800000), (1125881, 1001414, 'Sandy', NULL, 'sandy', 'US', 1, 40.5916100000, -111.8841000000), (1125882, 1001414, 'Sandy Hills', NULL, 'sandy-hills', 'US', 1, 40.5810600000, -111.8507700000), (1125883, 1001419, 'Sandy Hook', NULL, 'sandy-hook', 'US', 1, 38.0864700000, -83.1262800000), (1125884, 1001455, 'Sandy Springs', NULL, 'sandy-springs', 'US', 1, 33.9242700000, -84.3785400000), (1125885, 1001458, 'Sandy Valley', NULL, 'sandy-valley', 'US', 1, 35.8169200000, -115.6322300000), (1125886, 1001436, 'Sanford', NULL, 'sanford', 'US', 1, 28.8005500000, -81.2731200000), (1125887, 1001447, 'Sanford', NULL, 'sanford', 'US', 1, 35.4798800000, -79.1803000000), (1125888, 1001453, 'Sanford', NULL, 'sanford', 'US', 1, 43.4392500000, -70.7742200000), (1125889, 1001425, 'Sangamon County', NULL, 'sangamon-county', 'US', 1, 39.7581700000, -89.6589000000), (1125890, 1001443, 'Sangaree', NULL, 'sangaree', 'US', 1, 33.0354500000, -80.1278700000), (1125891, 1001407, 'Sanger', NULL, 'sanger', 'US', 1, 33.3631700000, -97.1739000000), (1125892, 1001416, 'Sanger', NULL, 'sanger', 'US', 1, 36.7080100000, -119.5559700000), (1125893, 1001453, 'Sangerville', NULL, 'sangerville', 'US', 1, 45.1647800000, -69.3564400000), (1125894, 1001436, 'Sanibel', NULL, 'sanibel', 'US', 1, 26.4489700000, -82.0223100000), (1125895, 1001426, 'Sanilac County', NULL, 'sanilac-county', 'US', 1, 43.4433100000, -82.6457500000), (1125896, 1001414, 'Sanpete County', NULL, 'sanpete-county', 'US', 1, 39.3739600000, -111.5763400000), (1125897, 1001443, 'Sans Souci', NULL, 'sans-souci', 'US', 1, 34.8779000000, -82.4240100000), (1125898, 1001407, 'Sansom Park', NULL, 'sansom-park', 'US', 1, 32.8059600000, -97.4030700000), (1125899, 1001416, 'Santa Ana', NULL, 'santa-ana', 'US', 1, 33.7455700000, -117.8678300000), (1125900, 1001407, 'Santa Anna', NULL, 'santa-anna', 'US', 1, 31.7420900000, -99.3217300000), (1125901, 1001416, 'Santa Barbara', NULL, 'santa-barbara', 'US', 1, 34.4208300000, -119.6981900000), (1125902, 1001416, 'Santa Barbara County', NULL, 'santa-barbara-county', 'US', 1, 34.5383400000, -120.0307800000), (1125903, 1001416, 'Santa Clara', NULL, 'santa-clara', 'US', 1, 37.3541100000, -121.9552400000), (1125904, 1001423, 'Santa Clara', NULL, 'santa-clara', 'US', 1, 32.7795200000, -108.1503200000), (1125905, 1001414, 'Santa Clara', NULL, 'santa-clara', 'US', 1, 37.1330400000, -113.6541300000), (1125906, 1001416, 'Santa Clara County', NULL, 'santa-clara-county', 'US', 1, 37.2324900000, -121.6962700000), (1125907, 1001423, 'Santa Clara Pueblo', NULL, 'santa-clara-pueblo', 'US', 1, 35.9655800000, -106.0886300000), (1125908, 1001416, 'Santa Clarita', NULL, 'santa-clarita', 'US', 1, 34.3916600000, -118.5425900000), (1125909, 1001440, 'Santa Claus', NULL, 'santa-claus', 'US', 1, 38.1200500000, -86.9141600000), (1125910, 1001416, 'Santa Cruz', NULL, 'santa-cruz', 'US', 1, 36.9741200000, -122.0308000000), (1125911, 1001434, 'Santa Cruz County', NULL, 'santa-cruz-county', 'US', 1, 31.5260000000, -110.8465700000), (1125912, 1001416, 'Santa Cruz County', NULL, 'santa-cruz-county', 'US', 1, 37.0216100000, -122.0097900000), (1125913, 1001407, 'Santa Fe', NULL, 'santa-fe', 'US', 1, 29.3780100000, -95.1057600000), (1125914, 1001423, 'Santa Fe', NULL, 'santa-fe', 'US', 1, 35.6869800000, -105.9378000000), (1125915, 1001423, 'Santa Fe County', NULL, 'santa-fe-county', 'US', 1, 35.5068600000, -105.9761200000), (1125916, 1001416, 'Santa Fe Springs', NULL, 'santa-fe-springs', 'US', 1, 33.9472400000, -118.0853500000), (1125917, 1001416, 'Santa Margarita', NULL, 'santa-margarita', 'US', 1, 35.3899700000, -120.6090600000), (1125918, 1001416, 'Santa Maria', NULL, 'santa-maria', 'US', 1, 34.9530300000, -120.4357200000), (1125919, 1001416, 'Santa Monica', NULL, 'santa-monica', 'US', 1, 34.0194500000, -118.4911900000), (1125920, 1001416, 'Santa Paula', NULL, 'santa-paula', 'US', 1, 34.3541700000, -119.0592700000), (1125921, 1001407, 'Santa Rosa', NULL, 'santa-rosa', 'US', 1, 26.2567400000, -97.8250000000), (1125922, 1001416, 'Santa Rosa', NULL, 'santa-rosa', 'US', 1, 38.4404700000, -122.7144300000), (1125923, 1001423, 'Santa Rosa', NULL, 'santa-rosa', 'US', 1, 34.9386700000, -104.6824900000), (1125924, 1001436, 'Santa Rosa County', NULL, 'santa-rosa-county', 'US', 1, 30.6929000000, -87.0184500000), (1125925, 1001416, 'Santa Susana', NULL, 'santa-susana', 'US', 1, 34.2716700000, -118.7089800000), (1125926, 1001423, 'Santa Teresa', NULL, 'santa-teresa', 'US', 1, 31.8559400000, -106.6391600000), (1125927, 1001416, 'Santa Venetia', NULL, 'santa-venetia', 'US', 1, 37.9985300000, -122.5252500000), (1125928, 1001416, 'Santa Ynez', NULL, 'santa-ynez', 'US', 1, 34.6144300000, -120.0798700000), (1125929, 1001414, 'Santaquin', NULL, 'santaquin', 'US', 1, 39.9755100000, -111.7852100000), (1125930, 1001416, 'Santee', NULL, 'santee', 'US', 1, 32.8383800000, -116.9739200000), (1125931, 1001423, 'Santo Domingo Pueblo', NULL, 'santo-domingo-pueblo', 'US', 1, 35.5147600000, -106.3658600000), (1125932, 1001451, 'Sappington', NULL, 'sappington', 'US', 1, 38.5370000000, -90.3798400000), (1125933, 1001421, 'Sapulpa', NULL, 'sapulpa', 'US', 1, 35.9987000000, -96.1141700000), (1125934, 1001456, 'Saraland', NULL, 'saraland', 'US', 1, 30.8207400000, -88.0705600000), (1125935, 1001426, 'Saranac', NULL, 'saranac', 'US', 1, 42.9294800000, -85.2130700000), (1125936, 1001452, 'Saranac Lake', NULL, 'saranac-lake', 'US', 1, 44.3295000000, -74.1312700000), (1125937, 1001416, 'Saranap', NULL, 'saranap', 'US', 1, 37.8849200000, -122.0760700000), (1125938, 1001436, 'Sarasota', NULL, 'sarasota', 'US', 1, 27.3364300000, -82.5306500000), (1125939, 1001436, 'Sarasota County', NULL, 'sarasota-county', 'US', 1, 27.1824800000, -82.3649800000), (1125940, 1001436, 'Sarasota Springs', NULL, 'sarasota-springs', 'US', 1, 27.3089400000, -82.4795400000), (1125941, 1001416, 'Saratoga', NULL, 'saratoga', 'US', 1, 37.2638300000, -122.0230100000), (1125942, 1001442, 'Saratoga', NULL, 'saratoga', 'US', 1, 41.4549600000, -106.8064300000), (1125943, 1001452, 'Saratoga County', NULL, 'saratoga-county', 'US', 1, 43.1073800000, -73.8639000000), (1125944, 1001452, 'Saratoga Springs', NULL, 'saratoga-springs', 'US', 1, 43.0831300000, -73.7845700000), (1125945, 1001414, 'Saratoga Springs', NULL, 'saratoga-springs', 'US', 1, 40.3491200000, -111.9046600000), (1125946, 1001451, 'Sarcoxie', NULL, 'sarcoxie', 'US', 1, 37.0692300000, -94.1166000000), (1125947, 1001455, 'Sardis', NULL, 'sardis', 'US', 1, 32.7965200000, -84.6388100000), (1125948, 1001430, 'Sardis', NULL, 'sardis', 'US', 1, 34.4370500000, -89.9159200000), (1125949, 1001456, 'Sardis City', NULL, 'sardis-city', 'US', 1, 34.1742600000, -86.1227500000), (1125950, 1001418, 'Sargent County', NULL, 'sargent-county', 'US', 1, 46.1079400000, -97.6307200000), (1125951, 1001407, 'Sarita', NULL, 'sarita', 'US', 1, 27.2217100000, -97.7891600000), (1125952, 1001408, 'Sarpy County', NULL, 'sarpy-county', 'US', 1, 41.1129300000, -96.1119900000), (1125953, 1001420, 'Sartell', NULL, 'sartell', 'US', 1, 45.6216300000, -94.2069400000), (1125954, 1001406, 'Satanta', NULL, 'satanta', 'US', 1, 37.4372500000, -100.9721100000), (1125955, 1001436, 'Satellite Beach', NULL, 'satellite-beach', 'US', 1, 28.1761200000, -80.5900500000), (1125956, 1001416, 'Saticoy', NULL, 'saticoy', 'US', 1, 34.2830600000, -119.1498300000), (1125957, 1001456, 'Satsuma', NULL, 'satsuma', 'US', 1, 30.8532400000, -88.0561100000), (1125958, 1001430, 'Saucier', NULL, 'saucier', 'US', 1, 30.6357500000, -89.1350400000), (1125959, 1001452, 'Saugerties', NULL, 'saugerties', 'US', 1, 42.0775900000, -73.9529100000), (1125960, 1001452, 'Saugerties South', NULL, 'saugerties-south', 'US', 1, 42.0613900000, -73.9506700000), (1125961, 1001433, 'Saugus', NULL, 'saugus', 'US', 1, 42.4648200000, -71.0100500000), (1125962, 1001420, 'Sauk Centre', NULL, 'sauk-centre', 'US', 1, 45.7374700000, -94.9525200000), (1125963, 1001441, 'Sauk City', NULL, 'sauk-city', 'US', 1, 43.2708200000, -89.7220700000), (1125964, 1001441, 'Sauk County', NULL, 'sauk-county', 'US', 1, 43.4267800000, -89.9483700000), (1125965, 1001420, 'Sauk Rapids', NULL, 'sauk-rapids', 'US', 1, 45.5919100000, -94.1661000000), (1125966, 1001425, 'Sauk Village', NULL, 'sauk-village', 'US', 1, 41.4883700000, -87.5675400000), (1125967, 1001441, 'Saukville', NULL, 'saukville', 'US', 1, 43.3816700000, -87.9406500000), (1125968, 1001426, 'Sault Ste. Marie', NULL, 'sault-ste-marie', 'US', 1, 46.4953000000, -84.3453200000), (1125969, 1001408, 'Saunders County', NULL, 'saunders-county', 'US', 1, 41.2263700000, -96.6374000000), (1125970, 1001416, 'Sausalito', NULL, 'sausalito', 'US', 1, 37.8590900000, -122.4852500000), (1125971, 1001401, 'Savage', NULL, 'savage', 'US', 1, 39.1378900000, -76.8238600000), (1125972, 1001420, 'Savage', NULL, 'savage', 'US', 1, 44.7791300000, -93.3363400000), (1125973, 1001425, 'Savanna', NULL, 'savanna', 'US', 1, 42.0944700000, -90.1567900000), (1125974, 1001455, 'Savannah', NULL, 'savannah', 'US', 1, 32.0835400000, -81.0998300000), (1125975, 1001451, 'Savannah', NULL, 'savannah', 'US', 1, 39.9416600000, -94.8302500000), (1125976, 1001454, 'Savannah', NULL, 'savannah', 'US', 1, 35.2248000000, -88.2492000000), (1125977, 1001407, 'Savannah', NULL, 'savannah', 'US', 1, 33.2260300000, -96.9078600000), (1125978, 1001425, 'Savoy', NULL, 'savoy', 'US', 1, 40.0547500000, -88.2517200000), (1125979, 1001422, 'Saw Creek', NULL, 'saw-creek', 'US', 1, 41.1125900000, -75.0507300000), (1125980, 1001436, 'Sawgrass', NULL, 'sawgrass', 'US', 1, 30.1927400000, -81.3706400000), (1125981, 1001447, 'Sawmills', NULL, 'sawmills', 'US', 1, 35.8248500000, -81.4745400000), (1125982, 1001441, 'Sawyer County', NULL, 'sawyer-county', 'US', 1, 45.8799700000, -91.1446700000), (1125983, 1001447, 'Saxapahaw', NULL, 'saxapahaw', 'US', 1, 35.9473600000, -79.3219600000), (1125984, 1001443, 'Saxon', NULL, 'saxon', 'US', 1, 34.9612300000, -81.9673300000), (1125985, 1001422, 'Saxonburg', NULL, 'saxonburg', 'US', 1, 40.7539500000, -79.8100500000), (1125986, 1001435, 'Saybrook Manor', NULL, 'saybrook-manor', 'US', 1, 41.2853800000, -72.3989700000), (1125987, 1001422, 'Saylorsburg', NULL, 'saylorsburg', 'US', 1, 40.8956500000, -75.3235200000), (1125988, 1001459, 'Saylorville', NULL, 'saylorville', 'US', 1, 41.6786000000, -93.6296600000), (1125989, 1001421, 'Sayre', NULL, 'sayre', 'US', 1, 35.2911600000, -99.6401000000), (1125990, 1001422, 'Sayre', NULL, 'sayre', 'US', 1, 41.9789600000, -76.5155000000), (1125991, 1001417, 'Sayreville', NULL, 'sayreville', 'US', 1, 40.4592700000, -74.3609800000), (1125992, 1001417, 'Sayreville Junction', NULL, 'sayreville-junction', 'US', 1, 40.4653800000, -74.3304300000), (1125993, 1001452, 'Sayville', NULL, 'sayville', 'US', 1, 40.7359300000, -73.0820600000), (1125994, 1001401, 'Scaggsville', NULL, 'scaggsville', 'US', 1, 39.1451100000, -76.9002500000), (1125995, 1001420, 'Scandia', NULL, 'scandia', 'US', 1, 45.2535800000, -92.8057700000), (1125996, 1001415, 'Scappoose', NULL, 'scappoose', 'US', 1, 45.7542800000, -122.8776000000), (1125997, 1001453, 'Scarborough', NULL, 'scarborough', 'US', 1, 43.5781400000, -70.3217200000), (1125998, 1001452, 'Scarsdale', NULL, 'scarsdale', 'US', 1, 41.0051000000, -73.7845800000), (1125999, 1001434, 'Scenic', NULL, 'scenic', 'US', 1, 36.7935900000, -114.0127500000), (1126000, 1001407, 'Scenic Oaks', NULL, 'scenic-oaks', 'US', 1, 29.7107800000, -98.6758600000), (1126001, 1001436, 'Schall Circle', NULL, 'schall-circle', 'US', 1, 26.7156200000, -80.1150400000), (1126002, 1001425, 'Schaumburg', NULL, 'schaumburg', 'US', 1, 42.0333600000, -88.0834100000), (1126003, 1001452, 'Schenectady', NULL, 'schenectady', 'US', 1, 42.8142400000, -73.9395700000), (1126004, 1001452, 'Schenectady County', NULL, 'schenectady-county', 'US', 1, 42.8181200000, -74.0585700000), (1126005, 1001440, 'Schererville', NULL, 'schererville', 'US', 1, 41.4789200000, -87.4547600000), (1126006, 1001407, 'Schertz', NULL, 'schertz', 'US', 1, 29.5521700000, -98.2697300000), (1126007, 1001425, 'Schiller Park', NULL, 'schiller-park', 'US', 1, 41.9558600000, -87.8709000000), (1126008, 1001407, 'Schleicher County', NULL, 'schleicher-county', 'US', 1, 30.8974500000, -100.5385500000), (1126009, 1001455, 'Schley County', NULL, 'schley-county', 'US', 1, 32.2616900000, -84.3147200000), (1126010, 1001422, 'Schlusser', NULL, 'schlusser', 'US', 1, 40.2417500000, -77.1769300000), (1126011, 1001422, 'Schnecksville', NULL, 'schnecksville', 'US', 1, 40.6751400000, -75.6204400000), (1126012, 1001422, 'Schoeneck', NULL, 'schoeneck', 'US', 1, 40.2414800000, -76.1741100000), (1126013, 1001441, 'Schofield', NULL, 'schofield', 'US', 1, 44.9096900000, -89.6045700000), (1126014, 1001411, 'Schofield Barracks', NULL, 'schofield-barracks', 'US', 1, 21.4983700000, -158.0651500000), (1126015, 1001452, 'Schoharie', NULL, 'schoharie', 'US', 1, 42.6659100000, -74.3095800000), (1126016, 1001452, 'Schoharie County', NULL, 'schoharie-county', 'US', 1, 42.5882200000, -74.4421200000), (1126017, 1001426, 'Schoolcraft', NULL, 'schoolcraft', 'US', 1, 42.1142100000, -85.6377800000), (1126018, 1001426, 'Schoolcraft County', NULL, 'schoolcraft-county', 'US', 1, 46.0424900000, -86.1773000000), (1126019, 1001457, 'Schriever', NULL, 'schriever', 'US', 1, 29.7421500000, -90.8103700000), (1126020, 1001407, 'Schulenburg', NULL, 'schulenburg', 'US', 1, 29.6819000000, -96.9030400000), (1126021, 1001408, 'Schuyler', NULL, 'schuyler', 'US', 1, 41.4472300000, -97.0594800000), (1126022, 1001425, 'Schuyler County', NULL, 'schuyler-county', 'US', 1, 40.1580300000, -90.6150700000), (1126023, 1001451, 'Schuyler County', NULL, 'schuyler-county', 'US', 1, 40.4702700000, -92.5209400000), (1126024, 1001452, 'Schuyler County', NULL, 'schuyler-county', 'US', 1, 42.3938000000, -76.8751800000), (1126025, 1001452, 'Schuylerville', NULL, 'schuylerville', 'US', 1, 43.1000800000, -73.5817800000), (1126026, 1001422, 'Schuylkill County', NULL, 'schuylkill-county', 'US', 1, 40.7058000000, -76.2159500000), (1126027, 1001422, 'Schuylkill Haven', NULL, 'schuylkill-haven', 'US', 1, 40.6306500000, -76.1710500000), (1126028, 1001422, 'Schwenksville', NULL, 'schwenksville', 'US', 1, 40.2562100000, -75.4637900000), (1126029, 1001407, 'Scissors', NULL, 'scissors', 'US', 1, 26.1398000000, -98.0538900000), (1126030, 1001433, 'Scituate', NULL, 'scituate', 'US', 1, 42.1959300000, -70.7258700000), (1126031, 1001446, 'Scobey', NULL, 'scobey', 'US', 1, 48.7925200000, -105.4208300000), (1126032, 1001417, 'Scotch Plains', NULL, 'scotch-plains', 'US', 1, 40.6553800000, -74.3898700000), (1126033, 1001452, 'Scotchtown', NULL, 'scotchtown', 'US', 1, 41.4814800000, -74.3601500000), (1126034, 1001452, 'Scotia', NULL, 'scotia', 'US', 1, 42.8264700000, -73.9642900000), (1126035, 1001422, 'Scotland', NULL, 'scotland', 'US', 1, 39.9687000000, -77.5872100000), (1126036, 1001447, 'Scotland County', NULL, 'scotland-county', 'US', 1, 34.8409000000, -79.4804300000), (1126037, 1001451, 'Scotland County', NULL, 'scotland-county', 'US', 1, 40.4526000000, -92.1470500000), (1126038, 1001447, 'Scotland Neck', NULL, 'scotland-neck', 'US', 1, 36.1296000000, -77.4202500000), (1126039, 1001457, 'Scott', NULL, 'scott', 'US', 1, 30.2357600000, -92.0945700000), (1126040, 1001425, 'Scott Air Force Base', NULL, 'scott-air-force-base', 'US', 1, 38.5427000000, -89.8503500000), (1126041, 1001451, 'Scott City', NULL, 'scott-city', 'US', 1, 37.2167200000, -89.5245300000), (1126042, 1001406, 'Scott City', NULL, 'scott-city', 'US', 1, 38.4825200000, -100.9070900000), (1126043, 1001444, 'Scott County', NULL, 'scott-county', 'US', 1, 34.8607700000, -94.0632500000), (1126044, 1001425, 'Scott County', NULL, 'scott-county', 'US', 1, 39.6441400000, -90.4747000000), (1126045, 1001440, 'Scott County', NULL, 'scott-county', 'US', 1, 38.6850700000, -85.7474700000), (1126046, 1001419, 'Scott County', NULL, 'scott-county', 'US', 1, 38.2915600000, -84.5839300000), (1126047, 1001451, 'Scott County', NULL, 'scott-county', 'US', 1, 37.0530500000, -89.5685100000), (1126048, 1001430, 'Scott County', NULL, 'scott-county', 'US', 1, 32.4063800000, -89.5376400000), (1126049, 1001454, 'Scott County', NULL, 'scott-county', 'US', 1, 36.4285400000, -84.5035200000), (1126050, 1001427, 'Scott County', NULL, 'scott-county', 'US', 1, 36.7142200000, -82.6029800000), (1126051, 1001459, 'Scott County', NULL, 'scott-county', 'US', 1, 41.6371000000, -90.6232400000), (1126052, 1001420, 'Scott County', NULL, 'scott-county', 'US', 1, 44.6484600000, -93.5359300000), (1126053, 1001406, 'Scott County', NULL, 'scott-county', 'US', 1, 38.4821700000, -100.9068600000), (1126054, 1001436, 'Scott Lake', NULL, 'scott-lake', 'US', 1, 25.9414800000, -80.2319900000), (1126055, 1001455, 'Scottdale', NULL, 'scottdale', 'US', 1, 33.7898300000, -84.2640900000), (1126056, 1001422, 'Scottdale', NULL, 'scottdale', 'US', 1, 40.1003500000, -79.5869800000), (1126057, 1001408, 'Scotts Bluff County', NULL, 'scotts-bluff-county', 'US', 1, 41.8506100000, -103.7079500000), (1126058, 1001447, 'Scotts Mill', NULL, 'scotts-mill', 'US', 1, 35.7266600000, -78.8839000000), (1126059, 1001416, 'Scotts Valley', NULL, 'scotts-valley', 'US', 1, 37.0510600000, -122.0146800000), (1126060, 1001408, 'Scottsbluff', NULL, 'scottsbluff', 'US', 1, 41.8666300000, -103.6671700000), (1126061, 1001456, 'Scottsboro', NULL, 'scottsboro', 'US', 1, 34.6723100000, -86.0341500000), (1126062, 1001440, 'Scottsburg', NULL, 'scottsburg', 'US', 1, 38.6856100000, -85.7702500000), (1126063, 1001434, 'Scottsdale', NULL, 'scottsdale', 'US', 1, 33.5092100000, -111.8990300000), (1126064, 1001419, 'Scottsville', NULL, 'scottsville', 'US', 1, 36.7533800000, -86.1905400000), (1126065, 1001452, 'Scottsville', NULL, 'scottsville', 'US', 1, 43.0259000000, -77.7452800000), (1126066, 1001426, 'Scottville', NULL, 'scottville', 'US', 1, 43.9547300000, -86.2800800000), (1126067, 1001422, 'Scranton', NULL, 'scranton', 'US', 1, 41.4091600000, -75.6649000000), (1126068, 1001455, 'Screven County', NULL, 'screven-county', 'US', 1, 32.7505900000, -81.6119300000), (1126069, 1001407, 'Scurry County', NULL, 'scurry-county', 'US', 1, 32.7463200000, -100.9164100000); INSERT INTO `[[dbprefix]]t_city` VALUES (1126070, 1001447, 'Sea Breeze', NULL, 'sea-breeze', 'US', 1, 34.0632300000, -77.8913700000), (1126071, 1001417, 'Sea Bright', NULL, 'sea-bright', 'US', 1, 40.3615000000, -73.9740300000), (1126072, 1001452, 'Sea Cliff', NULL, 'sea-cliff', 'US', 1, 40.8489900000, -73.6448500000), (1126073, 1001417, 'Sea Girt', NULL, 'sea-girt', 'US', 1, 40.1320600000, -74.0345800000), (1126074, 1001417, 'Sea Isle City', NULL, 'sea-isle-city', 'US', 1, 39.1534500000, -74.6929400000), (1126075, 1001416, 'Sea Ranch', NULL, 'sea-ranch', 'US', 1, 38.7151900000, -123.4544500000), (1126076, 1001462, 'SeaTac', NULL, 'seatac', 'US', 1, 47.4484600000, -122.2921700000), (1126077, 1001462, 'Seabeck', NULL, 'seabeck', 'US', 1, 47.6395400000, -122.8284900000), (1126078, 1001401, 'Seabrook', NULL, 'seabrook', 'US', 1, 38.9680500000, -76.8465800000), (1126079, 1001407, 'Seabrook', NULL, 'seabrook', 'US', 1, 29.5641200000, -95.0254800000), (1126080, 1001404, 'Seabrook', NULL, 'seabrook', 'US', 1, 42.8948100000, -70.8711600000), (1126081, 1001417, 'Seabrook Farms', NULL, 'seabrook-farms', 'US', 1, 39.5009500000, -75.2179600000), (1126082, 1001443, 'Seabrook Island', NULL, 'seabrook-island', 'US', 1, 32.5771300000, -80.1706500000), (1126083, 1001416, 'Seacliff', NULL, 'seacliff', 'US', 1, 36.9741200000, -121.9157900000), (1126084, 1001407, 'Seadrift', NULL, 'seadrift', 'US', 1, 28.4152800000, -96.7135900000), (1126085, 1001399, 'Seaford', NULL, 'seaford', 'US', 1, 38.6412300000, -75.6110400000), (1126086, 1001452, 'Seaford', NULL, 'seaford', 'US', 1, 40.6659300000, -73.4881800000), (1126087, 1001447, 'Seagate', NULL, 'seagate', 'US', 1, 34.2093400000, -77.8435900000), (1126088, 1001407, 'Seagoville', NULL, 'seagoville', 'US', 1, 32.6395800000, -96.5383200000), (1126089, 1001407, 'Seagraves', NULL, 'seagraves', 'US', 1, 32.9442700000, -102.5649100000), (1126090, 1001416, 'Seal Beach', NULL, 'seal-beach', 'US', 1, 33.7414100000, -118.1047900000), (1126091, 1001407, 'Sealy', NULL, 'sealy', 'US', 1, 29.7807900000, -96.1571800000), (1126092, 1001444, 'Searcy', NULL, 'searcy', 'US', 1, 35.2506400000, -91.7362500000), (1126093, 1001444, 'Searcy County', NULL, 'searcy-county', 'US', 1, 35.9109000000, -92.6994900000), (1126094, 1001452, 'Searingtown', NULL, 'searingtown', 'US', 1, 40.7748200000, -73.6556800000), (1126095, 1001416, 'Searles Valley', NULL, 'searles-valley', 'US', 1, 35.7674500000, -117.4039500000), (1126096, 1001453, 'Searsmont', NULL, 'searsmont', 'US', 1, 44.3617400000, -69.1950400000), (1126097, 1001436, 'Seaside', NULL, 'seaside', 'US', 1, 30.3210300000, -86.1416100000), (1126098, 1001452, 'Seaside', NULL, 'seaside', 'US', 1, 40.5831600000, -73.8281900000), (1126099, 1001416, 'Seaside', NULL, 'seaside', 'US', 1, 36.6110700000, -121.8516200000), (1126100, 1001415, 'Seaside', NULL, 'seaside', 'US', 1, 45.9931600000, -123.9226400000), (1126101, 1001417, 'Seaside Heights', NULL, 'seaside-heights', 'US', 1, 39.9442900000, -74.0729100000), (1126102, 1001417, 'Seaside Park', NULL, 'seaside-park', 'US', 1, 39.9267900000, -74.0770800000), (1126103, 1001401, 'Seat Pleasant', NULL, 'seat-pleasant', 'US', 1, 38.8962200000, -76.9066400000), (1126104, 1001462, 'Seattle', NULL, 'seattle', 'US', 1, 47.6062100000, -122.3320700000), (1126105, 1001436, 'Sebastian', NULL, 'sebastian', 'US', 1, 27.8164100000, -80.4706100000), (1126106, 1001407, 'Sebastian', NULL, 'sebastian', 'US', 1, 26.3428500000, -97.7902700000), (1126107, 1001444, 'Sebastian County', NULL, 'sebastian-county', 'US', 1, 35.1992600000, -94.2739100000), (1126108, 1001416, 'Sebastopol', NULL, 'sebastopol', 'US', 1, 38.4021400000, -122.8238800000), (1126109, 1001426, 'Sebewaing', NULL, 'sebewaing', 'US', 1, 43.7322400000, -83.4510700000), (1126110, 1001419, 'Sebree', NULL, 'sebree', 'US', 1, 37.6069900000, -87.5286200000), (1126111, 1001436, 'Sebring', NULL, 'sebring', 'US', 1, 27.4955900000, -81.4409100000), (1126112, 1001417, 'Secaucus', NULL, 'secaucus', 'US', 1, 40.7895500000, -74.0565300000), (1126113, 1001450, 'Security-Widefield', NULL, 'security-widefield', 'US', 1, 38.7472800000, -104.7143900000), (1126114, 1001451, 'Sedalia', NULL, 'sedalia', 'US', 1, 38.7044600000, -93.2282600000), (1126115, 1001406, 'Sedan', NULL, 'sedan', 'US', 1, 37.1267200000, -96.1869400000), (1126116, 1001416, 'Sedco Hills', NULL, 'sedco-hills', 'US', 1, 33.6416900000, -117.2908700000), (1126117, 1001406, 'Sedgwick', NULL, 'sedgwick', 'US', 1, 37.9166800000, -97.4225400000), (1126118, 1001453, 'Sedgwick', NULL, 'sedgwick', 'US', 1, 44.3036900000, -68.6161400000), (1126119, 1001406, 'Sedgwick County', NULL, 'sedgwick-county', 'US', 1, 37.6847600000, -97.4609700000), (1126120, 1001450, 'Sedgwick County', NULL, 'sedgwick-county', 'US', 1, 40.8759100000, -102.3517900000), (1126121, 1001434, 'Sedona', NULL, 'sedona', 'US', 1, 34.8697400000, -111.7609900000), (1126122, 1001462, 'Sedro-Woolley', NULL, 'sedro-woolley', 'US', 1, 48.5038900000, -122.2361100000), (1126123, 1001433, 'Seekonk', NULL, 'seekonk', 'US', 1, 41.8084300000, -71.3370000000), (1126124, 1001416, 'Seeley', NULL, 'seeley', 'US', 1, 32.7931100000, -115.6911100000), (1126125, 1001446, 'Seeley Lake', NULL, 'seeley-lake', 'US', 1, 47.1793800000, -113.4845200000), (1126126, 1001440, 'Seelyville', NULL, 'seelyville', 'US', 1, 39.4919800000, -87.2672400000), (1126127, 1001436, 'Seffner', NULL, 'seffner', 'US', 1, 27.9836300000, -82.2756500000), (1126128, 1001407, 'Seguin', NULL, 'seguin', 'US', 1, 29.5688400000, -97.9647300000), (1126129, 1001462, 'Selah', NULL, 'selah', 'US', 1, 46.6540200000, -120.5300700000), (1126130, 1001445, 'Selby', NULL, 'selby', 'US', 1, 45.5063800000, -100.0320700000), (1126131, 1001401, 'Selby-on-the-Bay', NULL, 'selby-on-the-bay', 'US', 1, 38.9162200000, -76.5224600000), (1126132, 1001399, 'Selbyville', NULL, 'selbyville', 'US', 1, 38.4603900000, -75.2207400000), (1126133, 1001452, 'Selden', NULL, 'selden', 'US', 1, 40.8664900000, -73.0356600000), (1126134, 1001422, 'Selinsgrove', NULL, 'selinsgrove', 'US', 1, 40.7989700000, -76.8621900000), (1126135, 1001440, 'Sellersburg', NULL, 'sellersburg', 'US', 1, 38.3981200000, -85.7549600000), (1126136, 1001422, 'Sellersville', NULL, 'sellersville', 'US', 1, 40.3539900000, -75.3049000000), (1126137, 1001434, 'Sells', NULL, 'sells', 'US', 1, 31.9120200000, -111.8812300000), (1126138, 1001456, 'Selma', NULL, 'selma', 'US', 1, 32.4073600000, -87.0211000000), (1126139, 1001447, 'Selma', NULL, 'selma', 'US', 1, 35.5365500000, -78.2844400000), (1126140, 1001407, 'Selma', NULL, 'selma', 'US', 1, 29.5843900000, -98.3058500000), (1126141, 1001416, 'Selma', NULL, 'selma', 'US', 1, 36.5707800000, -119.6120800000), (1126142, 1001454, 'Selmer', NULL, 'selmer', 'US', 1, 35.1700800000, -88.5922700000), (1126143, 1001456, 'Selmont-West Selmont', NULL, 'selmont-west-selmont', 'US', 1, 32.3784300000, -87.0074000000), (1126144, 1001436, 'Seminole', NULL, 'seminole', 'US', 1, 27.8397500000, -82.7912100000), (1126145, 1001421, 'Seminole', NULL, 'seminole', 'US', 1, 35.2245200000, -96.6705700000), (1126146, 1001407, 'Seminole', NULL, 'seminole', 'US', 1, 32.7189900000, -102.6449100000), (1126147, 1001436, 'Seminole County', NULL, 'seminole-county', 'US', 1, 28.7169800000, -81.2363000000), (1126148, 1001455, 'Seminole County', NULL, 'seminole-county', 'US', 1, 30.9387800000, -84.8688700000), (1126149, 1001421, 'Seminole County', NULL, 'seminole-county', 'US', 1, 35.1674900000, -96.6155200000), (1126150, 1001436, 'Seminole Manor', NULL, 'seminole-manor', 'US', 1, 26.5836800000, -80.1003200000), (1126151, 1001456, 'Semmes', NULL, 'semmes', 'US', 1, 30.7782400000, -88.2591700000), (1126152, 1001451, 'Senath', NULL, 'senath', 'US', 1, 36.1342300000, -90.1598200000), (1126153, 1001430, 'Senatobia', NULL, 'senatobia', 'US', 1, 34.6176000000, -89.9687000000), (1126154, 1001406, 'Seneca', NULL, 'seneca', 'US', 1, 39.8341600000, -96.0641700000), (1126155, 1001451, 'Seneca', NULL, 'seneca', 'US', 1, 36.8414600000, -94.6110600000), (1126156, 1001443, 'Seneca', NULL, 'seneca', 'US', 1, 34.6856600000, -82.9532000000), (1126157, 1001425, 'Seneca', NULL, 'seneca', 'US', 1, 41.3111400000, -88.6097900000), (1126158, 1001422, 'Seneca', NULL, 'seneca', 'US', 1, 41.3786700000, -79.7039400000), (1126159, 1001452, 'Seneca County', NULL, 'seneca-county', 'US', 1, 42.7810800000, -76.8237800000), (1126160, 1001452, 'Seneca Falls', NULL, 'seneca-falls', 'US', 1, 42.9106200000, -76.7966200000), (1126161, 1001452, 'Seneca Knolls', NULL, 'seneca-knolls', 'US', 1, 43.1200700000, -76.2863200000), (1126162, 1001455, 'Senoia', NULL, 'senoia', 'US', 1, 33.3023400000, -84.5538200000), (1126163, 1001454, 'Sequatchie County', NULL, 'sequatchie-county', 'US', 1, 35.3711500000, -85.4105900000), (1126164, 1001462, 'Sequim', NULL, 'sequim', 'US', 1, 48.0796300000, -123.1023400000), (1126165, 1001421, 'Sequoyah County', NULL, 'sequoyah-county', 'US', 1, 35.4953500000, -94.7552400000), (1126166, 1001407, 'Serenada', NULL, 'serenada', 'US', 1, 30.6993600000, -97.6919500000), (1126167, 1001459, 'Sergeant Bluff', NULL, 'sergeant-bluff', 'US', 1, 42.4038800000, -96.3586400000), (1126168, 1001425, 'Sesser', NULL, 'sesser', 'US', 1, 38.0917200000, -89.0503500000), (1126169, 1001452, 'Setauket-East Setauket', NULL, 'setauket-east-setauket', 'US', 1, 40.9306400000, -73.1017900000), (1126170, 1001407, 'Seth Ward', NULL, 'seth-ward', 'US', 1, 34.2117400000, -101.6901700000), (1126171, 1001427, 'Seven Corners', NULL, 'seven-corners', 'US', 1, 38.8720600000, -77.1552600000), (1126172, 1001422, 'Seven Fields', NULL, 'seven-fields', 'US', 1, 40.6917300000, -80.0625600000), (1126173, 1001447, 'Seven Lakes', NULL, 'seven-lakes', 'US', 1, 35.2784900000, -79.5644800000), (1126174, 1001443, 'Seven Oaks', NULL, 'seven-oaks', 'US', 1, 34.0487600000, -81.1464800000), (1126175, 1001407, 'Seven Points', NULL, 'seven-points', 'US', 1, 32.3204200000, -96.2130300000), (1126176, 1001416, 'Seven Trees', NULL, 'seven-trees', 'US', 1, 37.2860500000, -121.8385600000), (1126177, 1001450, 'Severance', NULL, 'severance', 'US', 1, 40.5241500000, -104.8510800000), (1126178, 1001401, 'Severn', NULL, 'severn', 'US', 1, 39.1370500000, -76.6983000000), (1126179, 1001401, 'Severna Park', NULL, 'severna-park', 'US', 1, 39.0703900000, -76.5452400000), (1126180, 1001444, 'Sevier County', NULL, 'sevier-county', 'US', 1, 33.9972000000, -94.2412200000), (1126181, 1001454, 'Sevier County', NULL, 'sevier-county', 'US', 1, 35.7846600000, -83.5241800000), (1126182, 1001414, 'Sevier County', NULL, 'sevier-county', 'US', 1, 38.7476400000, -111.8046400000), (1126183, 1001454, 'Sevierville', NULL, 'sevierville', 'US', 1, 35.8681500000, -83.5618400000), (1126184, 1001436, 'Sewall''s Point', NULL, 'sewall-s-point', 'US', 1, 27.1994900000, -80.2022700000), (1126185, 1001454, 'Sewanee', NULL, 'sewanee', 'US', 1, 35.2031400000, -85.9210900000), (1126186, 1001408, 'Seward', NULL, 'seward', 'US', 1, 40.9069500000, -97.0989200000), (1126187, 1001400, 'Seward', NULL, 'seward', 'US', 1, 60.1042600000, -149.4435000000), (1126188, 1001408, 'Seward County', NULL, 'seward-county', 'US', 1, 40.8723900000, -97.1395100000), (1126189, 1001406, 'Seward County', NULL, 'seward-county', 'US', 1, 37.1933000000, -100.8512900000), (1126190, 1001417, 'Sewaren', NULL, 'sewaren', 'US', 1, 40.5520500000, -74.2587600000), (1126191, 1001422, 'Sewickley', NULL, 'sewickley', 'US', 1, 40.5364600000, -80.1845000000), (1126192, 1001440, 'Seymour', NULL, 'seymour', 'US', 1, 38.9592200000, -85.8902500000), (1126193, 1001451, 'Seymour', NULL, 'seymour', 'US', 1, 37.1464400000, -92.7687800000), (1126194, 1001454, 'Seymour', NULL, 'seymour', 'US', 1, 35.8906400000, -83.7246200000), (1126195, 1001407, 'Seymour', NULL, 'seymour', 'US', 1, 33.5942600000, -99.2603500000), (1126196, 1001435, 'Seymour', NULL, 'seymour', 'US', 1, 41.3967600000, -73.0759400000), (1126197, 1001441, 'Seymour', NULL, 'seymour', 'US', 1, 44.5149900000, -88.3303800000), (1126198, 1001416, 'Shackelford', NULL, 'shackelford', 'US', 1, 37.6138200000, -120.9927100000), (1126199, 1001407, 'Shackelford County', NULL, 'shackelford-county', 'US', 1, 32.7359700000, -99.3540700000), (1126200, 1001454, 'Shackle Island', NULL, 'shackle-island', 'US', 1, 36.3706000000, -86.6166600000), (1126201, 1001440, 'Shadeland', NULL, 'shadeland', 'US', 1, 40.3736500000, -86.9489000000), (1126202, 1001416, 'Shadow Hills', NULL, 'shadow-hills', 'US', 1, 34.2619500000, -118.3517500000), (1126203, 1001415, 'Shady Cove', NULL, 'shady-cove', 'US', 1, 42.6106800000, -122.8125400000), (1126204, 1001436, 'Shady Hills', NULL, 'shady-hills', 'US', 1, 28.4100000000, -82.5428800000), (1126205, 1001407, 'Shady Hollow', NULL, 'shady-hollow', 'US', 1, 30.1649300000, -97.8622300000), (1126206, 1001407, 'Shady Shores', NULL, 'shady-shores', 'US', 1, 33.1651200000, -97.0294500000), (1126207, 1001401, 'Shady Side', NULL, 'shady-side', 'US', 1, 38.8417800000, -76.5121800000), (1126208, 1001429, 'Shady Spring', NULL, 'shady-spring', 'US', 1, 37.7056700000, -81.0984300000), (1126209, 1001420, 'Shafer', NULL, 'shafer', 'US', 1, 45.3869100000, -92.7477100000), (1126210, 1001416, 'Shafter', NULL, 'shafter', 'US', 1, 35.5005100000, -119.2717800000), (1126211, 1001420, 'Shakopee', NULL, 'shakopee', 'US', 1, 44.7980200000, -93.5269000000), (1126212, 1001447, 'Shallotte', NULL, 'shallotte', 'US', 1, 33.9732300000, -78.3858400000), (1126213, 1001407, 'Shallowater', NULL, 'shallowater', 'US', 1, 33.6889700000, -101.9982300000), (1126214, 1001422, 'Shamokin', NULL, 'shamokin', 'US', 1, 40.7889700000, -76.5588500000), (1126215, 1001422, 'Shamokin Dam', NULL, 'shamokin-dam', 'US', 1, 40.8487000000, -76.8196900000), (1126216, 1001407, 'Shamrock', NULL, 'shamrock', 'US', 1, 35.2142200000, -100.2490100000), (1126217, 1001416, 'Shandon', NULL, 'shandon', 'US', 1, 35.6552500000, -120.3754300000), (1126218, 1001455, 'Shannon', NULL, 'shannon', 'US', 1, 34.3367600000, -85.0713400000), (1126219, 1001430, 'Shannon', NULL, 'shannon', 'US', 1, 34.1162200000, -88.7117200000), (1126220, 1001451, 'Shannon County', NULL, 'shannon-county', 'US', 1, 37.1573900000, -91.4005100000), (1126221, 1001444, 'Shannon Hills', NULL, 'shannon-hills', 'US', 1, 34.6200900000, -92.3954300000), (1126222, 1001429, 'Shannondale', NULL, 'shannondale', 'US', 1, 39.2170500000, -77.8074900000), (1126223, 1001422, 'Shanor-Northvue', NULL, 'shanor-northvue', 'US', 1, 40.9104500000, -79.9156200000), (1126224, 1001453, 'Shapleigh', NULL, 'shapleigh', 'US', 1, 43.5406400000, -70.8481200000), (1126225, 1001417, 'Shark River Hills', NULL, 'shark-river-hills', 'US', 1, 40.1940000000, -74.0487500000), (1126226, 1001430, 'Sharkey County', NULL, 'sharkey-county', 'US', 1, 32.8797200000, -90.8132100000), (1126227, 1001430, 'Sharon', NULL, 'sharon', 'US', 1, 31.7896000000, -89.0986700000), (1126228, 1001433, 'Sharon', NULL, 'sharon', 'US', 1, 42.1237100000, -71.1786600000), (1126229, 1001422, 'Sharon', NULL, 'sharon', 'US', 1, 41.2331100000, -80.4934000000), (1126230, 1001441, 'Sharon', NULL, 'sharon', 'US', 1, 42.5025200000, -88.7289900000), (1126231, 1001422, 'Sharon Hill', NULL, 'sharon-hill', 'US', 1, 39.9065000000, -75.2715700000), (1126232, 1001406, 'Sharon Springs', NULL, 'sharon-springs', 'US', 1, 38.8977900000, -101.7521200000), (1126233, 1001444, 'Sharp County', NULL, 'sharp-county', 'US', 1, 36.1611600000, -91.4798600000), (1126234, 1001436, 'Sharpes', NULL, 'sharpes', 'US', 1, 28.4322300000, -80.7600500000), (1126235, 1001447, 'Sharpsburg', NULL, 'sharpsburg', 'US', 1, 35.8671000000, -77.8291500000), (1126236, 1001422, 'Sharpsburg', NULL, 'sharpsburg', 'US', 1, 40.4945100000, -79.9264400000), (1126237, 1001422, 'Sharpsville', NULL, 'sharpsville', 'US', 1, 41.2592200000, -80.4720100000), (1126238, 1001416, 'Shasta', NULL, 'shasta', 'US', 1, 40.5993200000, -122.4919600000), (1126239, 1001416, 'Shasta County', NULL, 'shasta-county', 'US', 1, 40.7637700000, -122.0405200000), (1126240, 1001416, 'Shasta Lake', NULL, 'shasta-lake', 'US', 1, 40.6804300000, -122.3708400000), (1126241, 1001421, 'Shattuck', NULL, 'shattuck', 'US', 1, 36.2761400000, -99.8827600000), (1126242, 1001407, 'Shavano Park', NULL, 'shavano-park', 'US', 1, 29.5849500000, -98.5525200000), (1126243, 1001422, 'Shavertown', NULL, 'shavertown', 'US', 1, 41.3198000000, -75.9379800000), (1126244, 1001437, 'Shaw', NULL, 'shaw', 'US', 1, 38.9120600000, -77.0213700000), (1126245, 1001430, 'Shaw', NULL, 'shaw', 'US', 1, 33.6021100000, -90.7745800000), (1126246, 1001450, 'Shaw Heights', NULL, 'shaw-heights', 'US', 1, 39.8525000000, -105.0430600000), (1126247, 1001441, 'Shawano', NULL, 'shawano', 'US', 1, 44.7822100000, -88.6089900000), (1126248, 1001441, 'Shawano County', NULL, 'shawano-county', 'US', 1, 44.7891500000, -88.7654400000), (1126249, 1001406, 'Shawnee', NULL, 'shawnee', 'US', 1, 39.0416700000, -94.7202400000), (1126250, 1001421, 'Shawnee', NULL, 'shawnee', 'US', 1, 35.3272900000, -96.9253000000), (1126251, 1001406, 'Shawnee County', NULL, 'shawnee-county', 'US', 1, 39.0415100000, -95.7565300000), (1126252, 1001427, 'Shawnee Land', NULL, 'shawnee-land', 'US', 1, 39.1914900000, -78.3455600000), (1126253, 1001425, 'Shawneetown', NULL, 'shawneetown', 'US', 1, 37.7131000000, -88.1867000000), (1126254, 1001427, 'Shawsville', NULL, 'shawsville', 'US', 1, 37.1684700000, -80.2553200000), (1126255, 1001441, 'Sheboygan', NULL, 'sheboygan', 'US', 1, 43.7508300000, -87.7145300000), (1126256, 1001441, 'Sheboygan County', NULL, 'sheboygan-county', 'US', 1, 43.7562200000, -87.7999900000), (1126257, 1001441, 'Sheboygan Falls', NULL, 'sheboygan-falls', 'US', 1, 43.7319700000, -87.8221300000), (1126258, 1001452, 'Sheepshead Bay', NULL, 'sheepshead-bay', 'US', 1, 40.5912200000, -73.9445800000), (1126259, 1001456, 'Sheffield', NULL, 'sheffield', 'US', 1, 34.7650900000, -87.6986400000), (1126260, 1001459, 'Sheffield', NULL, 'sheffield', 'US', 1, 42.8933000000, -93.2152000000), (1126261, 1001422, 'Sheffield', NULL, 'sheffield', 'US', 1, 41.7039500000, -79.0356000000), (1126262, 1001433, 'Sheffield', NULL, 'sheffield', 'US', 1, 42.1103700000, -73.3551100000), (1126263, 1001451, 'Shelbina', NULL, 'shelbina', 'US', 1, 39.6939300000, -92.0429500000), (1126264, 1001440, 'Shelburn', NULL, 'shelburn', 'US', 1, 39.1783700000, -87.3936300000), (1126265, 1001433, 'Shelburne', NULL, 'shelburne', 'US', 1, 42.5898100000, -72.6884200000), (1126266, 1001433, 'Shelburne Falls', NULL, 'shelburne-falls', 'US', 1, 42.6042500000, -72.7392600000), (1126267, 1001456, 'Shelby', NULL, 'shelby', 'US', 1, 33.1104000000, -86.5841500000), (1126268, 1001447, 'Shelby', NULL, 'shelby', 'US', 1, 35.2923500000, -81.5356500000), (1126269, 1001430, 'Shelby', NULL, 'shelby', 'US', 1, 33.9509400000, -90.7678800000), (1126270, 1001426, 'Shelby', NULL, 'shelby', 'US', 1, 43.6086200000, -86.3639600000), (1126271, 1001446, 'Shelby', NULL, 'shelby', 'US', 1, 48.5052600000, -111.8569700000), (1126272, 1001456, 'Shelby County', NULL, 'shelby-county', 'US', 1, 33.2642800000, -86.6606500000), (1126273, 1001425, 'Shelby County', NULL, 'shelby-county', 'US', 1, 39.3911600000, -88.8055400000), (1126274, 1001440, 'Shelby County', NULL, 'shelby-county', 'US', 1, 39.5236900000, -85.7917000000), (1126275, 1001419, 'Shelby County', NULL, 'shelby-county', 'US', 1, 38.2154400000, -85.1947700000), (1126276, 1001451, 'Shelby County', NULL, 'shelby-county', 'US', 1, 39.7977800000, -92.0766200000), (1126277, 1001454, 'Shelby County', NULL, 'shelby-county', 'US', 1, 35.1840000000, -89.8956000000), (1126278, 1001407, 'Shelby County', NULL, 'shelby-county', 'US', 1, 31.7924100000, -94.1450200000), (1126279, 1001459, 'Shelby County', NULL, 'shelby-county', 'US', 1, 41.6850900000, -95.3102100000), (1126280, 1001440, 'Shelbyville', NULL, 'shelbyville', 'US', 1, 39.5214400000, -85.7769200000), (1126281, 1001425, 'Shelbyville', NULL, 'shelbyville', 'US', 1, 39.4064300000, -88.7900700000), (1126282, 1001419, 'Shelbyville', NULL, 'shelbyville', 'US', 1, 38.2120100000, -85.2235700000), (1126283, 1001451, 'Shelbyville', NULL, 'shelbyville', 'US', 1, 39.8058700000, -92.0415600000), (1126284, 1001454, 'Shelbyville', NULL, 'shelbyville', 'US', 1, 35.4834100000, -86.4602700000), (1126285, 1001407, 'Sheldon', NULL, 'sheldon', 'US', 1, 29.8680000000, -95.1282600000), (1126286, 1001459, 'Sheldon', NULL, 'sheldon', 'US', 1, 43.1810900000, -95.8561300000), (1126287, 1001425, 'Sheldon', NULL, 'sheldon', 'US', 1, 40.7692000000, -87.5639200000), (1126288, 1001418, 'Sheldon', NULL, 'sheldon', 'US', 1, 46.5858000000, -97.4912000000), (1126289, 1001451, 'Shell Knob', NULL, 'shell-knob', 'US', 1, 36.6322900000, -93.6343600000), (1126290, 1001441, 'Shell Lake', NULL, 'shell-lake', 'US', 1, 45.7393900000, -91.9254500000), (1126291, 1001443, 'Shell Point', NULL, 'shell-point', 'US', 1, 32.3835300000, -80.7359400000), (1126292, 1001459, 'Shell Rock', NULL, 'shell-rock', 'US', 1, 42.7102600000, -92.5829700000), (1126293, 1001418, 'Shell Valley', NULL, 'shell-valley', 'US', 1, 48.7980600000, -99.8648600000), (1126294, 1001460, 'Shelley', NULL, 'shelley', 'US', 1, 43.3813000000, -112.1233100000), (1126295, 1001452, 'Shelter Island', NULL, 'shelter-island', 'US', 1, 41.0681500000, -72.3386900000), (1126296, 1001452, 'Shelter Island Heights', NULL, 'shelter-island-heights', 'US', 1, 41.0839900000, -72.3559200000), (1126297, 1001435, 'Shelton', NULL, 'shelton', 'US', 1, 41.3164900000, -73.0931600000), (1126298, 1001408, 'Shelton', NULL, 'shelton', 'US', 1, 40.7791800000, -98.7309100000), (1126299, 1001462, 'Shelton', NULL, 'shelton', 'US', 1, 47.2150900000, -123.1007100000), (1126300, 1001457, 'Shenandoah', NULL, 'shenandoah', 'US', 1, 30.4013000000, -91.0009400000), (1126301, 1001407, 'Shenandoah', NULL, 'shenandoah', 'US', 1, 30.1802200000, -95.4557700000), (1126302, 1001459, 'Shenandoah', NULL, 'shenandoah', 'US', 1, 40.7655500000, -95.3722100000), (1126303, 1001427, 'Shenandoah', NULL, 'shenandoah', 'US', 1, 38.4851200000, -78.6250200000), (1126304, 1001422, 'Shenandoah', NULL, 'shenandoah', 'US', 1, 40.8203700000, -76.2007700000), (1126305, 1001427, 'Shenandoah County', NULL, 'shenandoah-county', 'US', 1, 38.8583900000, -78.5706000000), (1126306, 1001427, 'Shenandoah Farms', NULL, 'shenandoah-farms', 'US', 1, 38.9817800000, -78.0755500000), (1126307, 1001422, 'Shenandoah Heights', NULL, 'shenandoah-heights', 'US', 1, 40.8275900000, -76.2068800000), (1126308, 1001452, 'Shenorock', NULL, 'shenorock', 'US', 1, 41.3317600000, -73.7381900000), (1126309, 1001407, 'Shepherd', NULL, 'shepherd', 'US', 1, 30.4979800000, -94.9966000000), (1126310, 1001426, 'Shepherd', NULL, 'shepherd', 'US', 1, 43.5244700000, -84.6947300000), (1126311, 1001429, 'Shepherdstown', NULL, 'shepherdstown', 'US', 1, 39.4301000000, -77.8041600000), (1126312, 1001419, 'Shepherdsville', NULL, 'shepherdsville', 'US', 1, 37.9884000000, -85.7157900000), (1126313, 1001433, 'Sherborn', NULL, 'sherborn', 'US', 1, 42.2389900000, -71.3697800000), (1126314, 1001420, 'Sherburn', NULL, 'sherburn', 'US', 1, 43.6521800000, -94.7269200000), (1126315, 1001452, 'Sherburne', NULL, 'sherburne', 'US', 1, 42.6781300000, -75.4985100000), (1126316, 1001420, 'Sherburne County', NULL, 'sherburne-county', 'US', 1, 45.4439500000, -93.7745900000), (1126317, 1001444, 'Sheridan', NULL, 'sheridan', 'US', 1, 34.3070400000, -92.4012700000), (1126318, 1001440, 'Sheridan', NULL, 'sheridan', 'US', 1, 40.1350400000, -86.2205500000), (1126319, 1001425, 'Sheridan', NULL, 'sheridan', 'US', 1, 41.5300300000, -88.6798000000), (1126320, 1001450, 'Sheridan', NULL, 'sheridan', 'US', 1, 39.6469300000, -105.0252600000), (1126321, 1001416, 'Sheridan', NULL, 'sheridan', 'US', 1, 38.9796200000, -121.3755100000), (1126322, 1001415, 'Sheridan', NULL, 'sheridan', 'US', 1, 45.0992800000, -123.3948300000), (1126323, 1001442, 'Sheridan', NULL, 'sheridan', 'US', 1, 44.7971900000, -106.9561800000), (1126324, 1001406, 'Sheridan County', NULL, 'sheridan-county', 'US', 1, 39.3503600000, -100.4418300000), (1126325, 1001446, 'Sheridan County', NULL, 'sheridan-county', 'US', 1, 48.7212000000, -104.5046800000), (1126326, 1001418, 'Sheridan County', NULL, 'sheridan-county', 'US', 1, 47.5754100000, -100.3456600000), (1126327, 1001408, 'Sheridan County', NULL, 'sheridan-county', 'US', 1, 42.5047700000, -102.4089600000), (1126328, 1001442, 'Sheridan County', NULL, 'sheridan-county', 'US', 1, 44.7900400000, -106.8794800000), (1126329, 1001425, 'Sherman', NULL, 'sherman', 'US', 1, 39.8936600000, -89.6048200000), (1126330, 1001407, 'Sherman', NULL, 'sherman', 'US', 1, 33.6356600000, -96.6088800000), (1126331, 1001435, 'Sherman', NULL, 'sherman', 'US', 1, 41.5792600000, -73.4956800000), (1126332, 1001408, 'Sherman County', NULL, 'sherman-county', 'US', 1, 41.2205900000, -98.9762100000), (1126333, 1001406, 'Sherman County', NULL, 'sherman-county', 'US', 1, 39.3514300000, -101.7199800000), (1126334, 1001407, 'Sherman County', NULL, 'sherman-county', 'US', 1, 36.2777100000, -101.8934800000), (1126335, 1001415, 'Sherman County', NULL, 'sherman-county', 'US', 1, 45.4052100000, -120.6893200000), (1126336, 1001416, 'Sherman Oaks', NULL, 'sherman-oaks', 'US', 1, 34.1511200000, -118.4492500000), (1126337, 1001450, 'Sherrelwood', NULL, 'sherrelwood', 'US', 1, 39.8377600000, -105.0013700000), (1126338, 1001452, 'Sherrill', NULL, 'sherrill', 'US', 1, 43.0736800000, -75.5982400000), (1126339, 1001447, 'Sherrills Ford', NULL, 'sherrills-ford', 'US', 1, 35.6204100000, -80.9864700000), (1126340, 1001444, 'Sherwood', NULL, 'sherwood', 'US', 1, 34.8150900000, -92.2243200000), (1126341, 1001441, 'Sherwood', NULL, 'sherwood', 'US', 1, 44.1736000000, -88.2598300000), (1126342, 1001415, 'Sherwood', NULL, 'sherwood', 'US', 1, 45.3565100000, -122.8401000000), (1126343, 1001435, 'Sherwood Manor', NULL, 'sherwood-manor', 'US', 1, 42.0134300000, -72.5642500000), (1126344, 1001407, 'Sherwood Shores', NULL, 'sherwood-shores', 'US', 1, 33.8523200000, -96.8177800000), (1126345, 1001426, 'Shiawassee County', NULL, 'shiawassee-county', 'US', 1, 42.9537300000, -84.1467300000), (1126346, 1001426, 'Shields', NULL, 'shields', 'US', 1, 43.4153000000, -84.0563700000), (1126347, 1001422, 'Shillington', NULL, 'shillington', 'US', 1, 40.3078700000, -75.9654900000), (1126348, 1001425, 'Shiloh', NULL, 'shiloh', 'US', 1, 38.5614400000, -89.8973200000), (1126349, 1001422, 'Shiloh', NULL, 'shiloh', 'US', 1, 39.9781500000, -76.7971900000), (1126350, 1001407, 'Shiner', NULL, 'shiner', 'US', 1, 29.4291300000, -97.1705400000), (1126351, 1001416, 'Shingle Springs', NULL, 'shingle-springs', 'US', 1, 38.6657400000, -120.9260500000), (1126352, 1001422, 'Shinglehouse', NULL, 'shinglehouse', 'US', 1, 41.9636800000, -78.1908400000), (1126353, 1001416, 'Shingletown', NULL, 'shingletown', 'US', 1, 40.4923800000, -121.8891600000), (1126354, 1001452, 'Shinnecock Hills', NULL, 'shinnecock-hills', 'US', 1, 40.8909300000, -72.4637000000), (1126355, 1001429, 'Shinnston', NULL, 'shinnston', 'US', 1, 39.3956400000, -80.3000900000), (1126356, 1001417, 'Ship Bottom', NULL, 'ship-bottom', 'US', 1, 39.6429000000, -74.1804200000), (1126357, 1001422, 'Shippensburg', NULL, 'shippensburg', 'US', 1, 40.0506500000, -77.5202600000), (1126358, 1001423, 'Shiprock', NULL, 'shiprock', 'US', 1, 36.7855500000, -108.6870300000), (1126359, 1001422, 'Shiremanstown', NULL, 'shiremanstown', 'US', 1, 40.2234200000, -76.9535900000), (1126360, 1001433, 'Shirley', NULL, 'shirley', 'US', 1, 42.5437000000, -71.6495100000), (1126361, 1001452, 'Shirley', NULL, 'shirley', 'US', 1, 40.8014900000, -72.8676000000), (1126362, 1001419, 'Shively', NULL, 'shively', 'US', 1, 38.2000700000, -85.8227400000), (1126363, 1001456, 'Shoal Creek', NULL, 'shoal-creek', 'US', 1, 33.4307600000, -86.6109200000), (1126364, 1001440, 'Shoals', NULL, 'shoals', 'US', 1, 38.6664400000, -86.7911100000), (1126365, 1001422, 'Shoemakersville', NULL, 'shoemakersville', 'US', 1, 40.5009300000, -75.9699300000), (1126366, 1001452, 'Shokan', NULL, 'shokan', 'US', 1, 41.9734300000, -74.2120900000), (1126367, 1001407, 'Shoreacres', NULL, 'shoreacres', 'US', 1, 29.6202300000, -95.0099300000), (1126368, 1001462, 'Shoreline', NULL, 'shoreline', 'US', 1, 47.7556500000, -122.3415200000), (1126369, 1001420, 'Shoreview', NULL, 'shoreview', 'US', 1, 45.0791300000, -93.1471700000), (1126370, 1001425, 'Shorewood', NULL, 'shorewood', 'US', 1, 41.5200300000, -88.2017300000), (1126371, 1001420, 'Shorewood', NULL, 'shorewood', 'US', 1, 44.9008000000, -93.5891200000), (1126372, 1001441, 'Shorewood', NULL, 'shorewood', 'US', 1, 43.0891800000, -87.8875800000), (1126373, 1001440, 'Shorewood Forest', NULL, 'shorewood-forest', 'US', 1, 41.4631500000, -87.1447200000), (1126374, 1001441, 'Shorewood Hills', NULL, 'shorewood-hills', 'US', 1, 43.0775000000, -89.4456800000), (1126375, 1001426, 'Shorewood-Tower Hills-Harbert', NULL, 'shorewood-tower-hills-harbert', 'US', 1, 41.8816900000, -86.6140900000), (1126376, 1001417, 'Short Hills', NULL, 'short-hills', 'US', 1, 40.7478800000, -74.3254300000), (1126377, 1001427, 'Short Pump', NULL, 'short-pump', 'US', 1, 37.6504200000, -77.6124900000), (1126378, 1001452, 'Shortsville', NULL, 'shortsville', 'US', 1, 42.9559000000, -77.2208100000), (1126379, 1001460, 'Shoshone', NULL, 'shoshone', 'US', 1, 42.9360200000, -114.4058800000), (1126380, 1001460, 'Shoshone County', NULL, 'shoshone-county', 'US', 1, 47.3516700000, -115.8910300000), (1126381, 1001434, 'Show Low', NULL, 'show-low', 'US', 1, 34.2542100000, -110.0298300000), (1126382, 1001457, 'Shreveport', NULL, 'shreveport', 'US', 1, 32.5251500000, -93.7501800000), (1126383, 1001451, 'Shrewsbury', NULL, 'shrewsbury', 'US', 1, 38.5903300000, -90.3367800000), (1126384, 1001422, 'Shrewsbury', NULL, 'shrewsbury', 'US', 1, 39.7687100000, -76.6796900000), (1126385, 1001433, 'Shrewsbury', NULL, 'shrewsbury', 'US', 1, 42.2959300000, -71.7128500000), (1126386, 1001417, 'Shrewsbury', NULL, 'shrewsbury', 'US', 1, 40.3295500000, -74.0615300000), (1126387, 1001452, 'Shrub Oak', NULL, 'shrub-oak', 'US', 1, 41.3275900000, -73.8195800000), (1126388, 1001441, 'Shullsburg', NULL, 'shullsburg', 'US', 1, 42.5733400000, -90.2309600000), (1126389, 1001433, 'Shutesbury', NULL, 'shutesbury', 'US', 1, 42.4564800000, -72.4098100000), (1126390, 1001457, 'Sibley', NULL, 'sibley', 'US', 1, 32.5393200000, -93.2962800000), (1126391, 1001459, 'Sibley', NULL, 'sibley', 'US', 1, 43.3991400000, -95.7519600000), (1126392, 1001420, 'Sibley County', NULL, 'sibley-county', 'US', 1, 44.5794800000, -94.2321600000), (1126393, 1001417, 'Sicklerville', NULL, 'sicklerville', 'US', 1, 39.7173400000, -74.9693300000), (1126394, 1001459, 'Sidney', NULL, 'sidney', 'US', 1, 40.7483300000, -95.6475000000), (1126395, 1001425, 'Sidney', NULL, 'sidney', 'US', 1, 40.0250300000, -88.0733700000), (1126396, 1001453, 'Sidney', NULL, 'sidney', 'US', 1, 44.4131200000, -69.7289300000), (1126397, 1001452, 'Sidney', NULL, 'sidney', 'US', 1, 42.3148000000, -75.3915700000), (1126398, 1001408, 'Sidney', NULL, 'sidney', 'US', 1, 41.1427600000, -102.9779800000), (1126399, 1001446, 'Sidney', NULL, 'sidney', 'US', 1, 47.7166800000, -104.1563300000), (1126400, 1001407, 'Sienna Plantation', NULL, 'sienna-plantation', 'US', 1, 29.4860700000, -95.5080000000), (1126401, 1001407, 'Sierra Blanca', NULL, 'sierra-blanca', 'US', 1, 31.1745700000, -105.3571800000), (1126402, 1001416, 'Sierra County', NULL, 'sierra-county', 'US', 1, 39.5804000000, -120.5160000000), (1126403, 1001423, 'Sierra County', NULL, 'sierra-county', 'US', 1, 33.1304700000, -107.1925000000), (1126404, 1001416, 'Sierra Madre', NULL, 'sierra-madre', 'US', 1, 34.1616700000, -118.0528500000), (1126405, 1001422, 'Sierra View', NULL, 'sierra-view', 'US', 1, 41.0120700000, -75.4590000000), (1126406, 1001434, 'Sierra Vista', NULL, 'sierra-vista', 'US', 1, 31.5545400000, -110.3036900000), (1126407, 1001434, 'Sierra Vista Southeast', NULL, 'sierra-vista-southeast', 'US', 1, 31.4538500000, -110.2163700000), (1126408, 1001407, 'Siesta Acres', NULL, 'siesta-acres', 'US', 1, 28.7579900000, -100.4901900000), (1126409, 1001436, 'Siesta Key', NULL, 'siesta-key', 'US', 1, 27.2678500000, -82.5452600000), (1126410, 1001407, 'Siesta Shores', NULL, 'siesta-shores', 'US', 1, 26.8581000000, -99.2536500000), (1126411, 1001416, 'Signal Hill', NULL, 'signal-hill', 'US', 1, 33.8044600000, -118.1678500000), (1126412, 1001454, 'Signal Mountain', NULL, 'signal-mountain', 'US', 1, 35.1225700000, -85.3438500000), (1126413, 1001459, 'Sigourney', NULL, 'sigourney', 'US', 1, 41.3333400000, -92.2046300000), (1126414, 1001451, 'Sikeston', NULL, 'sikeston', 'US', 1, 36.8767200000, -89.5878600000), (1126415, 1001447, 'Siler City', NULL, 'siler-city', 'US', 1, 35.7234700000, -79.4622400000), (1126416, 1001415, 'Siletz', NULL, 'siletz', 'US', 1, 44.7217800000, -123.9201100000), (1126417, 1001444, 'Siloam Springs', NULL, 'siloam-springs', 'US', 1, 36.1881400000, -94.5405000000), (1126418, 1001407, 'Silsbee', NULL, 'silsbee', 'US', 1, 30.3491000000, -94.1779600000), (1126419, 1001450, 'Silt', NULL, 'silt', 'US', 1, 39.5485900000, -107.6561700000), (1126420, 1001420, 'Silver Bay', NULL, 'silver-bay', 'US', 1, 47.2943600000, -91.2573900000), (1126421, 1001446, 'Silver Bow County', NULL, 'silver-bow-county', 'US', 1, 45.9023600000, -112.6567200000), (1126422, 1001423, 'Silver City', NULL, 'silver-city', 'US', 1, 32.7700700000, -108.2803300000), (1126423, 1001452, 'Silver Creek', NULL, 'silver-creek', 'US', 1, 42.5442300000, -79.1667100000), (1126424, 1001462, 'Silver Firs', NULL, 'silver-firs', 'US', 1, 47.8660200000, -122.1551000000), (1126425, 1001419, 'Silver Grove', NULL, 'silver-grove', 'US', 1, 39.0345100000, -84.3902200000), (1126426, 1001401, 'Silver Hill', NULL, 'silver-hill', 'US', 1, 38.8417800000, -76.9458100000), (1126427, 1001436, 'Silver Lake', NULL, 'silver-lake', 'US', 1, 28.8419300000, -81.7984100000), (1126428, 1001406, 'Silver Lake', NULL, 'silver-lake', 'US', 1, 39.1041700000, -95.8586000000), (1126429, 1001447, 'Silver Lake', NULL, 'silver-lake', 'US', 1, 34.1487800000, -77.9136000000), (1126430, 1001441, 'Silver Lake', NULL, 'silver-lake', 'US', 1, 44.0552600000, -89.2262300000), (1126431, 1001416, 'Silver Lake', NULL, 'silver-lake', 'US', 1, 34.0866800000, -118.2702300000), (1126432, 1001416, 'Silver Lakes', NULL, 'silver-lakes', 'US', 1, 34.7455800000, -117.3409800000), (1126433, 1001417, 'Silver Ridge', NULL, 'silver-ridge', 'US', 1, 39.9592800000, -74.2184800000), (1126434, 1001401, 'Silver Spring', NULL, 'silver-spring', 'US', 1, 38.9906700000, -77.0260900000), (1126435, 1001458, 'Silver Springs', NULL, 'silver-springs', 'US', 1, 39.4154700000, -119.2246100000), (1126436, 1001436, 'Silver Springs', NULL, 'silver-springs', 'US', 1, 29.2166400000, -82.0575900000), (1126437, 1001436, 'Silver Springs Shores', NULL, 'silver-springs-shores', 'US', 1, 29.1044200000, -82.0206400000), (1126438, 1001414, 'Silver Summit', NULL, 'silver-summit', 'US', 1, 40.7414400000, -111.4877500000), (1126439, 1001462, 'Silverdale', NULL, 'silverdale', 'US', 1, 47.6445400000, -122.6948700000), (1126440, 1001450, 'Silverthorne', NULL, 'silverthorne', 'US', 1, 39.6321400000, -106.0742800000), (1126441, 1001450, 'Silverton', NULL, 'silverton', 'US', 1, 37.8119400000, -107.6645100000), (1126442, 1001415, 'Silverton', NULL, 'silverton', 'US', 1, 45.0051200000, -122.7831500000), (1126443, 1001407, 'Silverton', NULL, 'silverton', 'US', 1, 34.4742300000, -101.3046100000), (1126444, 1001425, 'Silvis', NULL, 'silvis', 'US', 1, 41.5122600000, -90.4151300000), (1126445, 1001416, 'Simi Valley', NULL, 'simi-valley', 'US', 1, 34.2694500000, -118.7814800000), (1126446, 1001457, 'Simmesport', NULL, 'simmesport', 'US', 1, 30.9835200000, -91.8001200000), (1126447, 1001440, 'Simonton Lake', NULL, 'simonton-lake', 'US', 1, 41.7542200000, -85.9750000000), (1126448, 1001422, 'Simpson', NULL, 'simpson', 'US', 1, 41.5917500000, -75.4851800000), (1126449, 1001419, 'Simpson County', NULL, 'simpson-county', 'US', 1, 36.7419400000, -86.5823200000), (1126450, 1001430, 'Simpson County', NULL, 'simpson-county', 'US', 1, 31.9131700000, -89.9194900000), (1126451, 1001419, 'Simpsonville', NULL, 'simpsonville', 'US', 1, 38.2225700000, -85.3552300000), (1126452, 1001443, 'Simpsonville', NULL, 'simpsonville', 'US', 1, 34.7370600000, -82.2542800000), (1126453, 1001435, 'Simsbury Center', NULL, 'simsbury-center', 'US', 1, 41.8808800000, -72.8111600000), (1126454, 1001417, 'Singac', NULL, 'singac', 'US', 1, 40.8867700000, -74.2409800000), (1126455, 1001422, 'Sinking Spring', NULL, 'sinking-spring', 'US', 1, 40.3273100000, -76.0110500000), (1126456, 1001407, 'Sinton', NULL, 'sinton', 'US', 1, 28.0366800000, -97.5091600000), (1126457, 1001459, 'Sioux Center', NULL, 'sioux-center', 'US', 1, 43.0797100000, -96.1755800000), (1126458, 1001459, 'Sioux City', NULL, 'sioux-city', 'US', 1, 42.4999900000, -96.4003100000), (1126459, 1001459, 'Sioux County', NULL, 'sioux-county', 'US', 1, 43.0826200000, -96.1778800000), (1126460, 1001418, 'Sioux County', NULL, 'sioux-county', 'US', 1, 46.1126500000, -101.0403400000), (1126461, 1001408, 'Sioux County', NULL, 'sioux-county', 'US', 1, 42.4877100000, -103.7588800000), (1126462, 1001445, 'Sioux Falls', NULL, 'sioux-falls', 'US', 1, 43.5499700000, -96.7003300000), (1126463, 1001441, 'Siren', NULL, 'siren', 'US', 1, 45.7857800000, -92.3810300000), (1126464, 1001462, 'Sisco Heights', NULL, 'sisco-heights', 'US', 1, 48.1153800000, -122.0970800000), (1126465, 1001416, 'Siskiyou County', NULL, 'siskiyou-county', 'US', 1, 41.5926500000, -122.5403700000), (1126466, 1001445, 'Sisseton', NULL, 'sisseton', 'US', 1, 45.6646800000, -97.0498000000), (1126467, 1001429, 'Sissonville', NULL, 'sissonville', 'US', 1, 38.5281500000, -81.6309600000), (1126468, 1001415, 'Sisters', NULL, 'sisters', 'US', 1, 44.2909500000, -121.5492100000), (1126469, 1001429, 'Sistersville', NULL, 'sistersville', 'US', 1, 39.5642400000, -80.9959400000), (1126470, 1001400, 'Sitka', NULL, 'sitka', 'US', 1, 57.0531500000, -135.3308800000), (1126471, 1001400, 'Sitka City and Borough', NULL, 'sitka-city-and-borough', 'US', 1, 57.0825500000, -135.2691700000), (1126472, 1001434, 'Six Shooter Canyon', NULL, 'six-shooter-canyon', 'US', 1, 33.3667800000, -110.7746000000), (1126473, 1001417, 'Sixmile Run', NULL, 'sixmile-run', 'US', 1, 40.4576100000, -74.5115400000), (1126474, 1001462, 'Skagit County', NULL, 'skagit-county', 'US', 1, 48.4821500000, -121.8022700000), (1126475, 1001400, 'Skagway Municipality', NULL, 'skagway-municipality', 'US', 1, 59.4685200000, -135.3059600000), (1126476, 1001462, 'Skamania County', NULL, 'skamania-county', 'US', 1, 46.0227600000, -121.9151000000), (1126477, 1001452, 'Skaneateles', NULL, 'skaneateles', 'US', 1, 42.9470100000, -76.4291000000), (1126478, 1001421, 'Skiatook', NULL, 'skiatook', 'US', 1, 36.3684200000, -96.0013800000), (1126479, 1001455, 'Skidaway Island', NULL, 'skidaway-island', 'US', 1, 31.9349400000, -81.0470500000), (1126480, 1001426, 'Skidway Lake', NULL, 'skidway-lake', 'US', 1, 44.1833500000, -84.0352700000), (1126481, 1001422, 'Skippack', NULL, 'skippack', 'US', 1, 40.2228800000, -75.3987900000), (1126482, 1001447, 'Skippers Corner', NULL, 'skippers-corner', 'US', 1, 34.3460000000, -77.9024900000), (1126483, 1001425, 'Skokie', NULL, 'skokie', 'US', 1, 42.0333600000, -87.7333900000), (1126484, 1001453, 'Skowhegan', NULL, 'skowhegan', 'US', 1, 44.7650600000, -69.7192200000), (1126485, 1001436, 'Sky Lake', NULL, 'sky-lake', 'US', 1, 28.4572300000, -81.3914600000), (1126486, 1001416, 'Sky Valley', NULL, 'sky-valley', 'US', 1, 33.8900100000, -116.3525100000), (1126487, 1001422, 'Skyline View', NULL, 'skyline-view', 'US', 1, 40.3392600000, -76.7255300000), (1126488, 1001423, 'Skyline-Ganipa', NULL, 'skyline-ganipa', 'US', 1, 35.0327900000, -107.6139600000), (1126489, 1001451, 'Slater', NULL, 'slater', 'US', 1, 39.2180800000, -93.0690900000), (1126490, 1001459, 'Slater', NULL, 'slater', 'US', 1, 41.8777600000, -93.6785500000), (1126491, 1001443, 'Slater-Marietta', NULL, 'slater-marietta', 'US', 1, 35.0347200000, -82.4926500000), (1126492, 1001422, 'Slatington', NULL, 'slatington', 'US', 1, 40.7484300000, -75.6118500000), (1126493, 1001407, 'Slaton', NULL, 'slaton', 'US', 1, 33.4373100000, -101.6434900000), (1126494, 1001421, 'Slaughterville', NULL, 'slaughterville', 'US', 1, 35.0872900000, -97.3350300000), (1126495, 1001420, 'Slayton', NULL, 'slayton', 'US', 1, 43.9877400000, -95.7558500000), (1126496, 1001420, 'Sleepy Eye', NULL, 'sleepy-eye', 'US', 1, 44.2971800000, -94.7241500000), (1126497, 1001425, 'Sleepy Hollow', NULL, 'sleepy-hollow', 'US', 1, 42.0941900000, -88.3025800000), (1126498, 1001452, 'Sleepy Hollow', NULL, 'sleepy-hollow', 'US', 1, 41.0856500000, -73.8584700000), (1126499, 1001416, 'Sleepy Hollow', NULL, 'sleepy-hollow', 'US', 1, 38.0104800000, -122.5844200000), (1126500, 1001442, 'Sleepy Hollow', NULL, 'sleepy-hollow', 'US', 1, 44.2410900000, -105.4222200000), (1126501, 1001457, 'Slidell', NULL, 'slidell', 'US', 1, 30.2751900000, -89.7811700000), (1126502, 1001441, 'Slinger', NULL, 'slinger', 'US', 1, 43.3336100000, -88.2862100000), (1126503, 1001422, 'Slippery Rock', NULL, 'slippery-rock', 'US', 1, 41.0639500000, -80.0564500000), (1126504, 1001452, 'Sloan', NULL, 'sloan', 'US', 1, 42.8933900000, -78.7939200000), (1126505, 1001452, 'Sloatsburg', NULL, 'sloatsburg', 'US', 1, 41.1545400000, -74.1929200000), (1126506, 1001456, 'Slocomb', NULL, 'slocomb', 'US', 1, 31.1082300000, -85.5943800000), (1126507, 1001418, 'Slope County', NULL, 'slope-county', 'US', 1, 46.4472200000, -103.4599000000), (1126508, 1001444, 'Smackover', NULL, 'smackover', 'US', 1, 33.3648500000, -92.7248800000), (1126509, 1001422, 'Smethport', NULL, 'smethport', 'US', 1, 41.8111700000, -78.4447400000), (1126510, 1001458, 'Smith', NULL, 'smith', 'US', 1, 38.8004700000, -119.3273800000), (1126511, 1001406, 'Smith Center', NULL, 'smith-center', 'US', 1, 39.7791800000, -98.7850700000), (1126512, 1001406, 'Smith County', NULL, 'smith-county', 'US', 1, 39.7851600000, -98.7854700000), (1126513, 1001430, 'Smith County', NULL, 'smith-county', 'US', 1, 32.0176900000, -89.5066800000), (1126514, 1001454, 'Smith County', NULL, 'smith-county', 'US', 1, 36.2505300000, -85.9567100000), (1126515, 1001407, 'Smith County', NULL, 'smith-county', 'US', 1, 32.3750400000, -95.2691800000), (1126516, 1001433, 'Smith Mills', NULL, 'smith-mills', 'US', 1, 41.6389900000, -70.9911500000), (1126517, 1001458, 'Smith Valley', NULL, 'smith-valley', 'US', 1, 38.7842100000, -119.3442500000), (1126518, 1001447, 'Smithfield', NULL, 'smithfield', 'US', 1, 35.5084900000, -78.3394500000), (1126519, 1001427, 'Smithfield', NULL, 'smithfield', 'US', 1, 36.9823700000, -76.6310700000), (1126520, 1001461, 'Smithfield', NULL, 'smithfield', 'US', 1, 41.9220400000, -71.5495100000), (1126521, 1001414, 'Smithfield', NULL, 'smithfield', 'US', 1, 41.8382600000, -111.8327200000), (1126522, 1001419, 'Smithland', NULL, 'smithland', 'US', 1, 37.1389400000, -88.4033700000), (1126523, 1001456, 'Smiths Station', NULL, 'smiths-station', 'US', 1, 32.5401400000, -85.0985500000), (1126524, 1001401, 'Smithsburg', NULL, 'smithsburg', 'US', 1, 39.6548200000, -77.5727700000), (1126525, 1001425, 'Smithton', NULL, 'smithton', 'US', 1, 38.4086600000, -89.9920500000), (1126526, 1001452, 'Smithtown', NULL, 'smithtown', 'US', 1, 40.8559300000, -73.2006700000), (1126527, 1001417, 'Smithville', NULL, 'smithville', 'US', 1, 39.4940100000, -74.4570900000), (1126528, 1001451, 'Smithville', NULL, 'smithville', 'US', 1, 39.3869400000, -94.5810700000), (1126529, 1001407, 'Smithville', NULL, 'smithville', 'US', 1, 30.0085500000, -97.1594300000), (1126530, 1001454, 'Smithville', NULL, 'smithville', 'US', 1, 35.9606200000, -85.8141500000), (1126531, 1001440, 'Smithville-Sanders', NULL, 'smithville-sanders', 'US', 1, 39.0596900000, -86.5107700000), (1126532, 1001456, 'Smoke Rise', NULL, 'smoke-rise', 'US', 1, 33.8917700000, -86.8202700000), (1126533, 1001462, 'Smokey Point', NULL, 'smokey-point', 'US', 1, 48.1523200000, -122.1826400000), (1126534, 1001399, 'Smyrna', NULL, 'smyrna', 'US', 1, 39.2998300000, -75.6046500000), (1126535, 1001455, 'Smyrna', NULL, 'smyrna', 'US', 1, 33.8839900000, -84.5143800000), (1126536, 1001454, 'Smyrna', NULL, 'smyrna', 'US', 1, 35.9828400000, -86.5186000000), (1126537, 1001427, 'Smyth County', NULL, 'smyth-county', 'US', 1, 36.8438800000, -81.5370200000), (1126538, 1001436, 'Sneads', NULL, 'sneads', 'US', 1, 30.7080100000, -84.9255200000), (1126539, 1001447, 'Sneads Ferry', NULL, 'sneads-ferry', 'US', 1, 34.5526700000, -77.3971800000), (1126540, 1001454, 'Sneedville', NULL, 'sneedville', 'US', 1, 36.5298100000, -83.2174000000), (1126541, 1001455, 'Snellville', NULL, 'snellville', 'US', 1, 33.8573300000, -84.0199100000), (1126542, 1001462, 'Snohomish', NULL, 'snohomish', 'US', 1, 47.9128800000, -122.0981800000), (1126543, 1001462, 'Snohomish County', NULL, 'snohomish-county', 'US', 1, 48.0460200000, -121.7221800000), (1126544, 1001462, 'Snoqualmie', NULL, 'snoqualmie', 'US', 1, 47.5287100000, -121.8253900000), (1126545, 1001401, 'Snow Hill', NULL, 'snow-hill', 'US', 1, 38.1770600000, -75.3927000000), (1126546, 1001447, 'Snow Hill', NULL, 'snow-hill', 'US', 1, 35.4515500000, -77.6810900000), (1126547, 1001434, 'Snowflake', NULL, 'snowflake', 'US', 1, 34.5133700000, -110.0784500000), (1126548, 1001450, 'Snowmass Village', NULL, 'snowmass-village', 'US', 1, 39.2130400000, -106.9378200000), (1126549, 1001421, 'Snyder', NULL, 'snyder', 'US', 1, 34.6589600000, -98.9517400000), (1126550, 1001407, 'Snyder', NULL, 'snyder', 'US', 1, 32.7178900000, -100.9176200000), (1126551, 1001422, 'Snyder County', NULL, 'snyder-county', 'US', 1, 40.7698400000, -77.0701900000), (1126552, 1001414, 'Snyderville', NULL, 'snyderville', 'US', 1, 40.6943900000, -111.5438100000), (1126553, 1001462, 'Soap Lake', NULL, 'soap-lake', 'US', 1, 47.3893100000, -119.4905900000), (1126554, 1001443, 'Socastee', NULL, 'socastee', 'US', 1, 33.6835000000, -78.9983700000), (1126555, 1001455, 'Social Circle', NULL, 'social-circle', 'US', 1, 33.6562300000, -83.7182300000), (1126556, 1001417, 'Society Hill', NULL, 'society-hill', 'US', 1, 40.5339900000, -74.4579300000), (1126557, 1001423, 'Socorro', NULL, 'socorro', 'US', 1, 34.0584000000, -106.8914200000), (1126558, 1001407, 'Socorro', NULL, 'socorro', 'US', 1, 31.6545600000, -106.3033100000), (1126559, 1001423, 'Socorro County', NULL, 'socorro-county', 'US', 1, 34.0072400000, -106.9303300000), (1126560, 1001407, 'Socorro Mission Number 1 Colonia', NULL, 'socorro-mission-number-1-colonia', 'US', 1, 31.6362200000, -106.2905400000), (1126561, 1001416, 'Soda Bay', NULL, 'soda-bay', 'US', 1, 39.0010100000, -122.7891600000), (1126562, 1001460, 'Soda Springs', NULL, 'soda-springs', 'US', 1, 42.6543700000, -111.6046700000), (1126563, 1001454, 'Soddy-Daisy', NULL, 'soddy-daisy', 'US', 1, 35.2359000000, -85.1907900000), (1126564, 1001452, 'Sodus', NULL, 'sodus', 'US', 1, 43.2378400000, -77.0613600000), (1126565, 1001416, 'Solana Beach', NULL, 'solana-beach', 'US', 1, 32.9911500000, -117.2711500000), (1126566, 1001416, 'Solano County', NULL, 'solano-county', 'US', 1, 38.2669200000, -121.9400100000), (1126567, 1001400, 'Soldotna', NULL, 'soldotna', 'US', 1, 60.4877800000, -151.0583300000), (1126568, 1001416, 'Soledad', NULL, 'soledad', 'US', 1, 36.4246900000, -121.3263200000), (1126569, 1001406, 'Solomon', NULL, 'solomon', 'US', 1, 38.9194400000, -97.3711400000), (1126570, 1001401, 'Solomons', NULL, 'solomons', 'US', 1, 38.3184600000, -76.4541200000), (1126571, 1001459, 'Solon', NULL, 'solon', 'US', 1, 41.8072300000, -91.4940600000), (1126572, 1001416, 'Solvang', NULL, 'solvang', 'US', 1, 34.5958200000, -120.1376500000), (1126573, 1001452, 'Solvay', NULL, 'solvay', 'US', 1, 43.0581200000, -76.2074300000), (1126574, 1001417, 'Somerdale', NULL, 'somerdale', 'US', 1, 39.8440000000, -75.0226700000), (1126575, 1001435, 'Somers', NULL, 'somers', 'US', 1, 41.9853700000, -72.4462000000), (1126576, 1001441, 'Somers', NULL, 'somers', 'US', 1, 42.6403000000, -87.9103600000), (1126577, 1001446, 'Somers', NULL, 'somers', 'US', 1, 48.0802300000, -114.2215100000), (1126578, 1001417, 'Somers Point', NULL, 'somers-point', 'US', 1, 39.3176200000, -74.5946000000), (1126579, 1001401, 'Somerset', NULL, 'somerset', 'US', 1, 38.9659400000, -77.0960900000), (1126580, 1001419, 'Somerset', NULL, 'somerset', 'US', 1, 37.0920200000, -84.6041100000), (1126581, 1001407, 'Somerset', NULL, 'somerset', 'US', 1, 29.2263500000, -98.6578000000), (1126582, 1001433, 'Somerset', NULL, 'somerset', 'US', 1, 41.7695500000, -71.1286600000), (1126583, 1001417, 'Somerset', NULL, 'somerset', 'US', 1, 40.4976000000, -74.4884900000), (1126584, 1001422, 'Somerset', NULL, 'somerset', 'US', 1, 40.0084100000, -79.0780800000), (1126585, 1001441, 'Somerset', NULL, 'somerset', 'US', 1, 45.1244100000, -92.6735400000), (1126586, 1001401, 'Somerset County', NULL, 'somerset-county', 'US', 1, 38.0800700000, -75.8534700000), (1126587, 1001453, 'Somerset County', NULL, 'somerset-county', 'US', 1, 45.5138500000, -69.9588200000), (1126588, 1001417, 'Somerset County', NULL, 'somerset-county', 'US', 1, 40.5635100000, -74.6163100000), (1126589, 1001422, 'Somerset County', NULL, 'somerset-county', 'US', 1, 39.9724400000, -79.0282700000), (1126590, 1001404, 'Somersworth', NULL, 'somersworth', 'US', 1, 43.2617500000, -70.8653400000), (1126591, 1001434, 'Somerton', NULL, 'somerton', 'US', 1, 32.5964400000, -114.7096800000), (1126592, 1001407, 'Somervell County', NULL, 'somervell-county', 'US', 1, 32.2222900000, -97.7743400000), (1126593, 1001454, 'Somerville', NULL, 'somerville', 'US', 1, 35.2437000000, -89.3500700000), (1126594, 1001407, 'Somerville', NULL, 'somerville', 'US', 1, 30.3460400000, -96.5283000000), (1126595, 1001433, 'Somerville', NULL, 'somerville', 'US', 1, 42.3876000000, -71.0995000000), (1126596, 1001417, 'Somerville', NULL, 'somerville', 'US', 1, 40.5742700000, -74.6098800000), (1126597, 1001425, 'Somonauk', NULL, 'somonauk', 'US', 1, 41.6336400000, -88.6811900000), (1126598, 1001416, 'Sonoma', NULL, 'sonoma', 'US', 1, 38.2918600000, -122.4580400000), (1126599, 1001416, 'Sonoma County', NULL, 'sonoma-county', 'US', 1, 38.5252900000, -122.9225400000), (1126600, 1001416, 'Sonora', NULL, 'sonora', 'US', 1, 37.9840900000, -120.3821400000), (1126601, 1001407, 'Sonora', NULL, 'sonora', 'US', 1, 30.5668500000, -100.6434300000), (1126602, 1001455, 'Soperton', NULL, 'soperton', 'US', 1, 32.3771200000, -82.5923600000), (1126603, 1001429, 'Sophia', NULL, 'sophia', 'US', 1, 37.7076100000, -81.2506600000), (1126604, 1001416, 'Soquel', NULL, 'soquel', 'US', 1, 36.9880100000, -121.9566300000), (1126605, 1001457, 'Sorrento', NULL, 'sorrento', 'US', 1, 30.1843600000, -90.8592600000), (1126606, 1001416, 'Sorrento Valley', NULL, 'sorrento-valley', 'US', 1, 32.8999100000, -117.1945100000), (1126607, 1001422, 'Souderton', NULL, 'souderton', 'US', 1, 40.3117700000, -75.3251800000); INSERT INTO `[[dbprefix]]t_city` VALUES (1126608, 1001416, 'Soulsbyville', NULL, 'soulsbyville', 'US', 1, 37.9846500000, -120.2638000000), (1126609, 1001452, 'Sound Beach', NULL, 'sound-beach', 'US', 1, 40.9562100000, -72.9678800000), (1126610, 1001407, 'Sour Lake', NULL, 'sour-lake', 'US', 1, 30.1402100000, -94.4110200000), (1126611, 1001407, 'South Alamo', NULL, 'south-alamo', 'US', 1, 26.1570200000, -98.1086200000), (1126612, 1001417, 'South Amboy', NULL, 'south-amboy', 'US', 1, 40.4778800000, -74.2907000000), (1126613, 1001433, 'South Amherst', NULL, 'south-amherst', 'US', 1, 42.3403700000, -72.5050900000), (1126614, 1001436, 'South Apopka', NULL, 'south-apopka', 'US', 1, 28.6619400000, -81.5095200000), (1126615, 1001433, 'South Ashburnham', NULL, 'south-ashburnham', 'US', 1, 42.6103700000, -71.9389700000), (1126616, 1001409, 'South Barre', NULL, 'south-barre', 'US', 1, 44.1770100000, -72.5056600000), (1126617, 1001425, 'South Barrington', NULL, 'south-barrington', 'US', 1, 42.0914200000, -88.1217400000), (1126618, 1001436, 'South Bay', NULL, 'south-bay', 'US', 1, 26.6639600000, -80.7161700000), (1126619, 1001436, 'South Beach', NULL, 'south-beach', 'US', 1, 27.5911500000, -80.3442200000), (1126620, 1001452, 'South Beach', NULL, 'south-beach', 'US', 1, 40.5832900000, -74.0760900000), (1126621, 1001401, 'South Bel Air', NULL, 'south-bel-air', 'US', 1, 39.5331600000, -76.3374600000), (1126622, 1001417, 'South Belmar', NULL, 'south-belmar', 'US', 1, 40.1709500000, -74.0273600000), (1126623, 1001425, 'South Beloit', NULL, 'south-beloit', 'US', 1, 42.4930700000, -89.0367800000), (1126624, 1001440, 'South Bend', NULL, 'south-bend', 'US', 1, 41.6833800000, -86.2500100000), (1126625, 1001462, 'South Bend', NULL, 'south-bend', 'US', 1, 46.6631500000, -123.8046100000), (1126626, 1001453, 'South Berwick', NULL, 'south-berwick', 'US', 1, 43.2345300000, -70.8095000000), (1126627, 1001452, 'South Blooming Grove', NULL, 'south-blooming-grove', 'US', 1, 41.3733700000, -74.1784300000), (1126628, 1001427, 'South Boston', NULL, 'south-boston', 'US', 1, 36.6987500000, -78.9014000000), (1126629, 1001433, 'South Boston', NULL, 'south-boston', 'US', 1, 42.3334300000, -71.0494900000), (1126630, 1001417, 'South Bound Brook', NULL, 'south-bound-brook', 'US', 1, 40.5534400000, -74.5315400000), (1126631, 1001436, 'South Bradenton', NULL, 'south-bradenton', 'US', 1, 27.4631000000, -82.5817600000), (1126632, 1001436, 'South Brooksville', NULL, 'south-brooksville', 'US', 1, 28.5358200000, -82.3840300000), (1126633, 1001446, 'South Browning', NULL, 'south-browning', 'US', 1, 48.5460800000, -113.0142500000), (1126634, 1001409, 'South Burlington', NULL, 'south-burlington', 'US', 1, 44.4669900000, -73.1709600000), (1126635, 1001454, 'South Carthage', NULL, 'south-carthage', 'US', 1, 36.2420000000, -85.9519300000), (1126636, 1001429, 'South Charleston', NULL, 'south-charleston', 'US', 1, 38.3684300000, -81.6995700000), (1126637, 1001425, 'South Chicago', NULL, 'south-chicago', 'US', 1, 41.7397700000, -87.5542500000), (1126638, 1001425, 'South Chicago Heights', NULL, 'south-chicago-heights', 'US', 1, 41.4808700000, -87.6378200000), (1126639, 1001454, 'South Cleveland', NULL, 'south-cleveland', 'US', 1, 35.1411900000, -84.8721700000), (1126640, 1001422, 'South Coatesville', NULL, 'south-coatesville', 'US', 1, 39.9742700000, -75.8199500000), (1126641, 1001443, 'South Congaree', NULL, 'south-congaree', 'US', 1, 33.9109900000, -81.1356500000), (1126642, 1001422, 'South Connellsville', NULL, 'south-connellsville', 'US', 1, 39.9967400000, -79.5858700000), (1126643, 1001452, 'South Corning', NULL, 'south-corning', 'US', 1, 42.1217400000, -77.0371900000), (1126644, 1001435, 'South Coventry', NULL, 'south-coventry', 'US', 1, 41.7701000000, -72.3050800000), (1126645, 1001436, 'South Daytona', NULL, 'south-daytona', 'US', 1, 29.1658200000, -81.0045000000), (1126646, 1001433, 'South Deerfield', NULL, 'south-deerfield', 'US', 1, 42.4773100000, -72.6078700000), (1126647, 1001433, 'South Dennis', NULL, 'south-dennis', 'US', 1, 41.6895600000, -70.1564100000), (1126648, 1001416, 'South Dos Palos', NULL, 'south-dos-palos', 'US', 1, 36.9643900000, -120.6532400000), (1126649, 1001433, 'South Duxbury', NULL, 'south-duxbury', 'US', 1, 42.0231600000, -70.6828100000), (1126650, 1001416, 'South El Monte', NULL, 'south-el-monte', 'US', 1, 34.0519500000, -118.0467300000), (1126651, 1001425, 'South Elgin', NULL, 'south-elgin', 'US', 1, 41.9941900000, -88.2923000000), (1126652, 1001453, 'South Eliot', NULL, 'south-eliot', 'US', 1, 43.1081400000, -70.7775500000), (1126653, 1001452, 'South Fallsburg', NULL, 'south-fallsburg', 'US', 1, 41.7206500000, -74.6343300000), (1126654, 1001452, 'South Farmingdale', NULL, 'south-farmingdale', 'US', 1, 40.7206600000, -73.4401200000), (1126655, 1001452, 'South Floral Park', NULL, 'south-floral-park', 'US', 1, 40.7142700000, -73.7001300000), (1126656, 1001454, 'South Fulton', NULL, 'south-fulton', 'US', 1, 36.5008900000, -88.8753400000), (1126657, 1001447, 'South Gastonia', NULL, 'south-gastonia', 'US', 1, 35.2193000000, -81.2056300000), (1126658, 1001401, 'South Gate', NULL, 'south-gate', 'US', 1, 39.1290000000, -76.6258000000), (1126659, 1001416, 'South Gate', NULL, 'south-gate', 'US', 1, 33.9547400000, -118.2120200000), (1126660, 1001436, 'South Gate Ridge', NULL, 'south-gate-ridge', 'US', 1, 27.2864400000, -82.4967600000), (1126661, 1001452, 'South Glens Falls', NULL, 'south-glens-falls', 'US', 1, 43.2992400000, -73.6351200000), (1126662, 1001442, 'South Greeley', NULL, 'south-greeley', 'US', 1, 41.0969300000, -104.8063600000), (1126663, 1001422, 'South Greensburg', NULL, 'south-greensburg', 'US', 1, 40.2784000000, -79.5447600000), (1126664, 1001426, 'South Gull Lake', NULL, 'south-gull-lake', 'US', 1, 42.3875400000, -85.3966700000), (1126665, 1001433, 'South Hadley', NULL, 'south-hadley', 'US', 1, 42.2584200000, -72.5745300000), (1126666, 1001440, 'South Haven', NULL, 'south-haven', 'US', 1, 41.5419800000, -87.1372600000), (1126667, 1001426, 'South Haven', NULL, 'south-haven', 'US', 1, 42.4030900000, -86.2736400000), (1126668, 1001452, 'South Hempstead', NULL, 'south-hempstead', 'US', 1, 40.6809400000, -73.6154100000), (1126669, 1001447, 'South Henderson', NULL, 'south-henderson', 'US', 1, 36.3082000000, -78.4066600000), (1126670, 1001436, 'South Highpoint', NULL, 'south-highpoint', 'US', 1, 27.9169700000, -82.7128800000), (1126671, 1001427, 'South Hill', NULL, 'south-hill', 'US', 1, 36.7265300000, -78.1288900000), (1126672, 1001452, 'South Hill', NULL, 'south-hill', 'US', 1, 42.4292400000, -76.4949400000), (1126673, 1001462, 'South Hill', NULL, 'south-hill', 'US', 1, 47.1412100000, -122.2701200000), (1126674, 1001425, 'South Holland', NULL, 'south-holland', 'US', 1, 41.6008700000, -87.6069900000), (1126675, 1001404, 'South Hooksett', NULL, 'south-hooksett', 'US', 1, 43.0264700000, -71.4353400000), (1126676, 1001407, 'South Houston', NULL, 'south-houston', 'US', 1, 29.6630100000, -95.2354900000), (1126677, 1001452, 'South Huntington', NULL, 'south-huntington', 'US', 1, 40.8237100000, -73.3987300000), (1126678, 1001406, 'South Hutchinson', NULL, 'south-hutchinson', 'US', 1, 38.0280700000, -97.9403300000), (1126679, 1001425, 'South Jacksonville', NULL, 'south-jacksonville', 'US', 1, 39.7086600000, -90.2281800000), (1126680, 1001414, 'South Jordan', NULL, 'south-jordan', 'US', 1, 40.5621700000, -111.9296600000), (1126681, 1001414, 'South Jordan Heights', NULL, 'south-jordan-heights', 'US', 1, 40.5638400000, -111.9493800000), (1126682, 1001401, 'South Kensington', NULL, 'south-kensington', 'US', 1, 39.0190000000, -77.0799800000), (1126683, 1001461, 'South Kingstown', NULL, 'south-kingstown', 'US', 1, 41.4471800000, -71.5249400000), (1126684, 1001416, 'South Lake Tahoe', NULL, 'south-lake-tahoe', 'US', 1, 38.9332400000, -119.9843500000), (1126685, 1001433, 'South Lancaster', NULL, 'south-lancaster', 'US', 1, 42.4445400000, -71.6870100000), (1126686, 1001401, 'South Laurel', NULL, 'south-laurel', 'US', 1, 39.0698300000, -76.8502500000), (1126687, 1001425, 'South Lawndale', NULL, 'south-lawndale', 'US', 1, 41.8436400000, -87.7125500000), (1126688, 1001415, 'South Lebanon', NULL, 'south-lebanon', 'US', 1, 44.5062300000, -122.9031400000), (1126689, 1001452, 'South Lockport', NULL, 'south-lockport', 'US', 1, 43.1500600000, -78.6967000000), (1126690, 1001426, 'South Lyon', NULL, 'south-lyon', 'US', 1, 42.4605900000, -83.6516100000), (1126691, 1001436, 'South Miami', NULL, 'south-miami', 'US', 1, 25.7076000000, -80.2933800000), (1126692, 1001436, 'South Miami Heights', NULL, 'south-miami-heights', 'US', 1, 25.5976100000, -80.3806100000), (1126693, 1001441, 'South Milwaukee', NULL, 'south-milwaukee', 'US', 1, 42.9105700000, -87.8606400000), (1126694, 1001426, 'South Monroe', NULL, 'south-monroe', 'US', 1, 41.8958800000, -83.4177100000), (1126695, 1001452, 'South Nyack', NULL, 'south-nyack', 'US', 1, 41.0831500000, -73.9201400000), (1126696, 1001414, 'South Ogden', NULL, 'south-ogden', 'US', 1, 41.1918900000, -111.9713300000), (1126697, 1001417, 'South Old Bridge', NULL, 'south-old-bridge', 'US', 1, 40.4081600000, -74.3543200000), (1126698, 1001417, 'South Orange', NULL, 'south-orange', 'US', 1, 40.7489900000, -74.2612600000), (1126699, 1001416, 'South Oroville', NULL, 'south-oroville', 'US', 1, 39.4965500000, -121.5521900000), (1126700, 1001407, 'South Padre Island', NULL, 'south-padre-island', 'US', 1, 26.1036900000, -97.1646900000), (1126701, 1001436, 'South Palm Beach', NULL, 'south-palm-beach', 'US', 1, 26.5889600000, -80.0386500000), (1126702, 1001453, 'South Paris', NULL, 'south-paris', 'US', 1, 44.2236800000, -70.5133900000), (1126703, 1001442, 'South Park', NULL, 'south-park', 'US', 1, 43.4221500000, -110.7932600000), (1126704, 1001422, 'South Park Township', NULL, 'south-park-township', 'US', 1, 40.2986400000, -79.9940500000), (1126705, 1001436, 'South Pasadena', NULL, 'south-pasadena', 'US', 1, 27.7550300000, -82.7376000000), (1126706, 1001416, 'South Pasadena', NULL, 'south-pasadena', 'US', 1, 34.1161200000, -118.1503500000), (1126707, 1001436, 'South Patrick Shores', NULL, 'south-patrick-shores', 'US', 1, 28.2022300000, -80.6095000000), (1126708, 1001433, 'South Peabody', NULL, 'south-peabody', 'US', 1, 42.5098200000, -70.9494900000), (1126709, 1001425, 'South Pekin', NULL, 'south-pekin', 'US', 1, 40.4944800000, -89.6517700000), (1126710, 1001454, 'South Pittsburg', NULL, 'south-pittsburg', 'US', 1, 35.0123000000, -85.7044100000), (1126711, 1001417, 'South Plainfield', NULL, 'south-plainfield', 'US', 1, 40.5792700000, -74.4115400000), (1126712, 1001407, 'South Point', NULL, 'south-point', 'US', 1, 25.8686900000, -97.3835900000), (1126713, 1001453, 'South Portland', NULL, 'south-portland', 'US', 1, 43.6414700000, -70.2408800000), (1126714, 1001453, 'South Portland Gardens', NULL, 'south-portland-gardens', 'US', 1, 43.6389700000, -70.3153300000), (1126715, 1001422, 'South Pottstown', NULL, 'south-pottstown', 'US', 1, 40.2395400000, -75.6510200000), (1126716, 1001427, 'South Riding', NULL, 'south-riding', 'US', 1, 38.9209400000, -77.5038800000), (1126717, 1001417, 'South River', NULL, 'south-river', 'US', 1, 40.4464900000, -74.3859800000), (1126718, 1001426, 'South Rockwood', NULL, 'south-rockwood', 'US', 1, 42.0639300000, -83.2610400000), (1126719, 1001447, 'South Rosemary', NULL, 'south-rosemary', 'US', 1, 36.4515400000, -77.6972000000), (1126720, 1001425, 'South Roxana', NULL, 'south-roxana', 'US', 1, 38.8294900000, -90.0628800000), (1126721, 1001420, 'South Saint Paul', NULL, 'south-saint-paul', 'US', 1, 44.8927400000, -93.0349400000), (1126722, 1001414, 'South Salt Lake', NULL, 'south-salt-lake', 'US', 1, 40.7188400000, -111.8882700000), (1126723, 1001416, 'South San Francisco', NULL, 'south-san-francisco', 'US', 1, 37.6546600000, -122.4077500000), (1126724, 1001416, 'South San Gabriel', NULL, 'south-san-gabriel', 'US', 1, 34.0491500000, -118.0946200000), (1126725, 1001416, 'South San Jose Hills', NULL, 'south-san-jose-hills', 'US', 1, 34.0127900000, -117.9047800000), (1126726, 1001453, 'South Sanford', NULL, 'south-sanford', 'US', 1, 43.4111900000, -70.7425600000), (1126727, 1001436, 'South Sarasota', NULL, 'south-sarasota', 'US', 1, 27.2861600000, -82.5328800000), (1126728, 1001419, 'South Shore', NULL, 'south-shore', 'US', 1, 38.7209100000, -82.9582300000), (1126729, 1001425, 'South Shore', NULL, 'south-shore', 'US', 1, 41.7619800000, -87.5778300000), (1126730, 1001408, 'South Sioux City', NULL, 'south-sioux-city', 'US', 1, 42.4738800000, -96.4136400000), (1126731, 1001427, 'South Suffolk', NULL, 'south-suffolk', 'US', 1, 36.7170900000, -76.5902300000), (1126732, 1001443, 'South Sumter', NULL, 'south-sumter', 'US', 1, 33.9057100000, -80.3461900000), (1126733, 1001416, 'South Taft', NULL, 'south-taft', 'US', 1, 35.1346900000, -119.4562300000), (1126734, 1001422, 'South Temple', NULL, 'south-temple', 'US', 1, 40.4000000000, -75.9000000000), (1126735, 1001453, 'South Thomaston', NULL, 'south-thomaston', 'US', 1, 44.0514700000, -69.1278200000), (1126736, 1001417, 'South Toms River', NULL, 'south-toms-river', 'US', 1, 39.9420600000, -74.2043100000), (1126737, 1001434, 'South Tucson', NULL, 'south-tucson', 'US', 1, 32.1995200000, -110.9684200000), (1126738, 1001422, 'South Uniontown', NULL, 'south-uniontown', 'US', 1, 39.8928500000, -79.7469900000), (1126739, 1001457, 'South Vacherie', NULL, 'south-vacherie', 'US', 1, 29.9274300000, -90.6998100000), (1126740, 1001423, 'South Valley', NULL, 'south-valley', 'US', 1, 35.0100500000, -106.6780800000), (1126741, 1001452, 'South Valley Stream', NULL, 'south-valley-stream', 'US', 1, 40.6559400000, -73.7176300000), (1126742, 1001436, 'South Venice', NULL, 'south-venice', 'US', 1, 27.0531100000, -82.4242600000), (1126743, 1001417, 'South Vineland', NULL, 'south-vineland', 'US', 1, 39.4459500000, -75.0287900000), (1126744, 1001422, 'South Waverly', NULL, 'south-waverly', 'US', 1, 41.9975700000, -76.5371700000), (1126745, 1001414, 'South Weber', NULL, 'south-weber', 'US', 1, 41.1324400000, -111.9302200000), (1126746, 1001462, 'South Wenatchee', NULL, 'south-wenatchee', 'US', 1, 47.3901200000, -120.2895800000), (1126747, 1001440, 'South Whitley', NULL, 'south-whitley', 'US', 1, 41.0847700000, -85.6280400000), (1126748, 1001416, 'South Whittier', NULL, 'south-whittier', 'US', 1, 33.9501500000, -118.0391700000), (1126749, 1001414, 'South Willard', NULL, 'south-willard', 'US', 1, 41.3632700000, -112.0357800000), (1126750, 1001422, 'South Williamsport', NULL, 'south-williamsport', 'US', 1, 41.2320200000, -76.9991300000), (1126751, 1001435, 'South Windham', NULL, 'south-windham', 'US', 1, 41.6795400000, -72.1703600000), (1126752, 1001453, 'South Windham', NULL, 'south-windham', 'US', 1, 43.7361900000, -70.4236600000), (1126753, 1001435, 'South Windsor', NULL, 'south-windsor', 'US', 1, 41.8237100000, -72.6212000000), (1126754, 1001435, 'South Woodstock', NULL, 'south-woodstock', 'US', 1, 41.9389900000, -71.9595200000), (1126755, 1001433, 'South Yarmouth', NULL, 'south-yarmouth', 'US', 1, 41.6667800000, -70.1847400000), (1126756, 1001416, 'South Yuba City', NULL, 'south-yuba-city', 'US', 1, 39.1165600000, -121.6391300000), (1126757, 1001433, 'Southampton', NULL, 'southampton', 'US', 1, 42.2292600000, -72.7300900000), (1126758, 1001452, 'Southampton', NULL, 'southampton', 'US', 1, 40.8842700000, -72.3895300000), (1126759, 1001427, 'Southampton County', NULL, 'southampton-county', 'US', 1, 36.7204000000, -77.1060900000), (1126760, 1001430, 'Southaven', NULL, 'southaven', 'US', 1, 34.9889800000, -90.0125900000), (1126761, 1001433, 'Southborough', NULL, 'southborough', 'US', 1, 42.3056500000, -71.5245100000), (1126762, 1001433, 'Southbridge', NULL, 'southbridge', 'US', 1, 42.0751000000, -72.0334100000), (1126763, 1001435, 'Southbury', NULL, 'southbury', 'US', 1, 41.4814800000, -73.2131700000), (1126764, 1001436, 'Southchase', NULL, 'southchase', 'US', 1, 28.3930600000, -81.3834000000), (1126765, 1001436, 'Southeast Arcadia', NULL, 'southeast-arcadia', 'US', 1, 27.1862900000, -81.8521000000), (1126766, 1001400, 'Southeast Fairbanks Census Area', NULL, 'southeast-fairbanks-census-area', 'US', 1, 63.7505600000, -143.2505600000), (1126767, 1001427, 'Southern Gateway', NULL, 'southern-gateway', 'US', 1, 38.3450700000, -77.5035200000), (1126768, 1001447, 'Southern Pines', NULL, 'southern-pines', 'US', 1, 35.1740500000, -79.3922500000), (1126769, 1001443, 'Southern Shops', NULL, 'southern-shops', 'US', 1, 34.9859500000, -81.9945500000), (1126770, 1001447, 'Southern Shores', NULL, 'southern-shores', 'US', 1, 36.1390500000, -75.7315700000), (1126771, 1001425, 'Southern View', NULL, 'southern-view', 'US', 1, 39.7572700000, -89.6537100000), (1126772, 1001426, 'Southfield', NULL, 'southfield', 'US', 1, 42.4733700000, -83.2218700000), (1126773, 1001436, 'Southgate', NULL, 'southgate', 'US', 1, 27.3081000000, -82.5098200000), (1126774, 1001419, 'Southgate', NULL, 'southgate', 'US', 1, 39.0720000000, -84.4727200000), (1126775, 1001426, 'Southgate', NULL, 'southgate', 'US', 1, 42.2139300000, -83.1938100000), (1126776, 1001450, 'Southglenn', NULL, 'southglenn', 'US', 1, 39.5872100000, -104.9527600000), (1126777, 1001407, 'Southlake', NULL, 'southlake', 'US', 1, 32.9412400000, -97.1341800000), (1126778, 1001407, 'Southmayd', NULL, 'southmayd', 'US', 1, 33.6303800000, -96.7691600000), (1126779, 1001447, 'Southmont', NULL, 'southmont', 'US', 1, 35.6679200000, -80.2670000000), (1126780, 1001422, 'Southmont', NULL, 'southmont', 'US', 1, 40.3106300000, -78.9386400000), (1126781, 1001452, 'Southold', NULL, 'southold', 'US', 1, 41.0648200000, -72.4262000000), (1126782, 1001440, 'Southport', NULL, 'southport', 'US', 1, 39.6650500000, -86.1277600000), (1126783, 1001447, 'Southport', NULL, 'southport', 'US', 1, 33.9215600000, -78.0202700000), (1126784, 1001435, 'Southport', NULL, 'southport', 'US', 1, 41.1364900000, -73.2834500000), (1126785, 1001452, 'Southport', NULL, 'southport', 'US', 1, 42.0548000000, -76.8191200000), (1126786, 1001456, 'Southside', NULL, 'southside', 'US', 1, 33.9245400000, -86.0224700000), (1126787, 1001444, 'Southside', NULL, 'southside', 'US', 1, 35.6984100000, -91.6234700000), (1126788, 1001407, 'Southside Place', NULL, 'southside-place', 'US', 1, 29.7060600000, -95.4368800000), (1126789, 1001422, 'Southwest Greensburg', NULL, 'southwest-greensburg', 'US', 1, 40.2911800000, -79.5469800000), (1126790, 1001436, 'Southwest Ranches', NULL, 'southwest-ranches', 'US', 1, 26.0587000000, -80.3372700000), (1126791, 1001433, 'Southwick', NULL, 'southwick', 'US', 1, 42.0548200000, -72.7703700000), (1126792, 1001435, 'Southwood Acres', NULL, 'southwood-acres', 'US', 1, 41.9626000000, -72.5714800000), (1126793, 1001462, 'Southworth', NULL, 'southworth', 'US', 1, 47.5120400000, -122.5018000000), (1126794, 1001452, 'Spackenkill', NULL, 'spackenkill', 'US', 1, 41.6559300000, -73.9134700000), (1126795, 1001455, 'Spalding County', NULL, 'spalding-county', 'US', 1, 33.2608700000, -84.2841600000), (1126796, 1001462, 'Spanaway', NULL, 'spanaway', 'US', 1, 47.1039900000, -122.4345700000), (1126797, 1001422, 'Spangler', NULL, 'spangler', 'US', 1, 40.6428500000, -78.7728000000), (1126798, 1001414, 'Spanish Fork', NULL, 'spanish-fork', 'US', 1, 40.1149600000, -111.6549200000), (1126799, 1001456, 'Spanish Fort', NULL, 'spanish-fort', 'US', 1, 30.6749100000, -87.9152700000), (1126800, 1001451, 'Spanish Lake', NULL, 'spanish-lake', 'US', 1, 38.7878300000, -90.2159400000), (1126801, 1001458, 'Spanish Springs', NULL, 'spanish-springs', 'US', 1, 39.6490800000, -119.7074100000), (1126802, 1001452, 'Sparkill', NULL, 'sparkill', 'US', 1, 41.0312100000, -73.9270800000), (1126803, 1001455, 'Sparks', NULL, 'sparks', 'US', 1, 31.1668600000, -83.4373800000), (1126804, 1001407, 'Sparks', NULL, 'sparks', 'US', 1, 31.6726100000, -106.2397000000), (1126805, 1001458, 'Sparks', NULL, 'sparks', 'US', 1, 39.5349100000, -119.7526900000), (1126806, 1001425, 'Sparta', NULL, 'sparta', 'US', 1, 38.1231100000, -89.7017700000), (1126807, 1001455, 'Sparta', NULL, 'sparta', 'US', 1, 33.2757000000, -82.9762600000), (1126808, 1001447, 'Sparta', NULL, 'sparta', 'US', 1, 36.5054100000, -81.1209200000), (1126809, 1001451, 'Sparta', NULL, 'sparta', 'US', 1, 37.0011600000, -93.0815700000), (1126810, 1001454, 'Sparta', NULL, 'sparta', 'US', 1, 35.9259000000, -85.4641400000), (1126811, 1001426, 'Sparta', NULL, 'sparta', 'US', 1, 43.1608600000, -85.7100400000), (1126812, 1001417, 'Sparta', NULL, 'sparta', 'US', 1, 41.0334300000, -74.6384900000), (1126813, 1001441, 'Sparta', NULL, 'sparta', 'US', 1, 43.9441300000, -90.8129100000), (1126814, 1001443, 'Spartanburg', NULL, 'spartanburg', 'US', 1, 34.9495700000, -81.9320500000), (1126815, 1001443, 'Spartanburg County', NULL, 'spartanburg-county', 'US', 1, 34.9312600000, -81.9906800000), (1126816, 1001445, 'Spearfish', NULL, 'spearfish', 'US', 1, 44.4908200000, -103.8593700000), (1126817, 1001407, 'Spearman', NULL, 'spearman', 'US', 1, 36.1983700000, -101.1923800000), (1126818, 1001440, 'Speedway', NULL, 'speedway', 'US', 1, 39.8022700000, -86.2672100000), (1126819, 1001422, 'Speers', NULL, 'speers', 'US', 1, 40.1245200000, -79.8797700000), (1126820, 1001440, 'Spencer', NULL, 'spencer', 'US', 1, 39.2867100000, -86.7625100000), (1126821, 1001447, 'Spencer', NULL, 'spencer', 'US', 1, 35.6923600000, -80.4347800000), (1126822, 1001421, 'Spencer', NULL, 'spencer', 'US', 1, 35.5228400000, -97.3772600000), (1126823, 1001454, 'Spencer', NULL, 'spencer', 'US', 1, 35.7472900000, -85.4666400000), (1126824, 1001429, 'Spencer', NULL, 'spencer', 'US', 1, 38.8020300000, -81.3509500000), (1126825, 1001459, 'Spencer', NULL, 'spencer', 'US', 1, 43.1413600000, -95.1444400000), (1126826, 1001433, 'Spencer', NULL, 'spencer', 'US', 1, 42.2439800000, -71.9923000000), (1126827, 1001441, 'Spencer', NULL, 'spencer', 'US', 1, 44.7577400000, -90.2968000000), (1126828, 1001440, 'Spencer County', NULL, 'spencer-county', 'US', 1, 38.0140600000, -87.0077100000), (1126829, 1001419, 'Spencer County', NULL, 'spencer-county', 'US', 1, 38.0325100000, -85.3278500000), (1126830, 1001452, 'Spencerport', NULL, 'spencerport', 'US', 1, 43.1864500000, -77.8039000000), (1126831, 1001401, 'Spencerville', NULL, 'spencerville', 'US', 1, 39.1142700000, -76.9783100000), (1126832, 1001423, 'Spencerville', NULL, 'spencerville', 'US', 1, 36.8200000000, -108.0581300000), (1126833, 1001421, 'Sperry', NULL, 'sperry', 'US', 1, 36.2973100000, -95.9913900000), (1126834, 1001420, 'Spicer', NULL, 'spicer', 'US', 1, 45.2330200000, -94.9400100000), (1126835, 1001447, 'Spindale', NULL, 'spindale', 'US', 1, 35.3601200000, -81.9292700000), (1126836, 1001445, 'Spink County', NULL, 'spink-county', 'US', 1, 44.9380200000, -98.3461900000), (1126837, 1001422, 'Spinnerstown', NULL, 'spinnerstown', 'US', 1, 40.4389900000, -75.4371200000), (1126838, 1001459, 'Spirit Lake', NULL, 'spirit-lake', 'US', 1, 43.4221800000, -95.1022200000), (1126839, 1001460, 'Spirit Lake', NULL, 'spirit-lake', 'US', 1, 47.9662900000, -116.8685300000), (1126840, 1001421, 'Spiro', NULL, 'spiro', 'US', 1, 35.2412100000, -94.6199400000), (1126841, 1001407, 'Splendora', NULL, 'splendora', 'US', 1, 30.2329900000, -95.1610400000), (1126842, 1001462, 'Spokane', NULL, 'spokane', 'US', 1, 47.6596600000, -117.4290800000), (1126843, 1001462, 'Spokane County', NULL, 'spokane-county', 'US', 1, 47.6206400000, -117.4040100000), (1126844, 1001462, 'Spokane Valley', NULL, 'spokane-valley', 'US', 1, 47.6732300000, -117.2393700000), (1126845, 1001441, 'Spooner', NULL, 'spooner', 'US', 1, 45.8224500000, -91.8893400000), (1126846, 1001417, 'Spotswood', NULL, 'spotswood', 'US', 1, 40.3917700000, -74.3984800000), (1126847, 1001427, 'Spotsylvania County', NULL, 'spotsylvania-county', 'US', 1, 38.1850200000, -77.6559700000), (1126848, 1001427, 'Spotsylvania Courthouse', NULL, 'spotsylvania-courthouse', 'US', 1, 38.1979100000, -77.5877700000), (1126849, 1001407, 'Spring', NULL, 'spring', 'US', 1, 30.0799400000, -95.4171600000), (1126850, 1001426, 'Spring Arbor', NULL, 'spring-arbor', 'US', 1, 42.2050400000, -84.5527400000), (1126851, 1001454, 'Spring City', NULL, 'spring-city', 'US', 1, 35.6920100000, -84.8607800000), (1126852, 1001422, 'Spring City', NULL, 'spring-city', 'US', 1, 40.1767700000, -75.5476900000), (1126853, 1001414, 'Spring City', NULL, 'spring-city', 'US', 1, 39.4824600000, -111.4960200000), (1126854, 1001458, 'Spring Creek', NULL, 'spring-creek', 'US', 1, 40.7265900000, -115.5859000000), (1126855, 1001414, 'Spring Glen', NULL, 'spring-glen', 'US', 1, 39.6594100000, -110.8534900000), (1126856, 1001441, 'Spring Green', NULL, 'spring-green', 'US', 1, 43.1752700000, -90.0679000000), (1126857, 1001422, 'Spring Grove', NULL, 'spring-grove', 'US', 1, 39.8745400000, -76.8658100000), (1126858, 1001425, 'Spring Grove', NULL, 'spring-grove', 'US', 1, 42.4436300000, -88.2364800000), (1126859, 1001420, 'Spring Grove', NULL, 'spring-grove', 'US', 1, 43.5610800000, -91.6359800000), (1126860, 1001436, 'Spring Hill', NULL, 'spring-hill', 'US', 1, 28.4768800000, -82.5254600000), (1126861, 1001406, 'Spring Hill', NULL, 'spring-hill', 'US', 1, 38.7430600000, -94.8255200000), (1126862, 1001454, 'Spring Hill', NULL, 'spring-hill', 'US', 1, 35.7511800000, -86.9300000000), (1126863, 1001447, 'Spring Hope', NULL, 'spring-hope', 'US', 1, 35.9451500000, -78.1119300000), (1126864, 1001422, 'Spring House', NULL, 'spring-house', 'US', 1, 40.1853900000, -75.2276800000), (1126865, 1001447, 'Spring Lake', NULL, 'spring-lake', 'US', 1, 35.1679400000, -78.9728100000), (1126866, 1001426, 'Spring Lake', NULL, 'spring-lake', 'US', 1, 43.0769600000, -86.1970000000), (1126867, 1001417, 'Spring Lake', NULL, 'spring-lake', 'US', 1, 40.1534500000, -74.0281900000), (1126868, 1001417, 'Spring Lake Heights', NULL, 'spring-lake-heights', 'US', 1, 40.1503900000, -74.0309700000), (1126869, 1001420, 'Spring Lake Park', NULL, 'spring-lake-park', 'US', 1, 45.1077400000, -93.2380000000), (1126870, 1001422, 'Spring Mount', NULL, 'spring-mount', 'US', 1, 40.2756600000, -75.4565700000), (1126871, 1001420, 'Spring Park', NULL, 'spring-park', 'US', 1, 44.9352400000, -93.6321800000), (1126872, 1001401, 'Spring Ridge', NULL, 'spring-ridge', 'US', 1, 39.4014900000, -77.3524800000), (1126873, 1001422, 'Spring Ridge', NULL, 'spring-ridge', 'US', 1, 40.3528700000, -75.9899400000), (1126874, 1001407, 'Spring Valley', NULL, 'spring-valley', 'US', 1, 29.7896700000, -95.5035500000), (1126875, 1001425, 'Spring Valley', NULL, 'spring-valley', 'US', 1, 41.3275400000, -89.1998100000), (1126876, 1001420, 'Spring Valley', NULL, 'spring-valley', 'US', 1, 43.6869100000, -92.3890600000), (1126877, 1001452, 'Spring Valley', NULL, 'spring-valley', 'US', 1, 41.1131500000, -74.0437500000), (1126878, 1001434, 'Spring Valley', NULL, 'spring-valley', 'US', 1, 34.3450300000, -112.1590500000), (1126879, 1001441, 'Spring Valley', NULL, 'spring-valley', 'US', 1, 44.8452400000, -92.2388000000), (1126880, 1001416, 'Spring Valley', NULL, 'spring-valley', 'US', 1, 32.7447700000, -116.9989200000), (1126881, 1001458, 'Spring Valley', NULL, 'spring-valley', 'US', 1, 36.1080300000, -115.2450000000), (1126882, 1001416, 'Spring Valley Lake', NULL, 'spring-valley-lake', 'US', 1, 34.4936400000, -117.2683200000), (1126883, 1001444, 'Springdale', NULL, 'springdale', 'US', 1, 36.1867400000, -94.1288100000), (1126884, 1001401, 'Springdale', NULL, 'springdale', 'US', 1, 38.9376100000, -76.8388600000), (1126885, 1001417, 'Springdale', NULL, 'springdale', 'US', 1, 39.9026100000, -74.9662800000), (1126886, 1001443, 'Springdale', NULL, 'springdale', 'US', 1, 33.9593200000, -81.1089800000), (1126887, 1001422, 'Springdale', NULL, 'springdale', 'US', 1, 40.5409000000, -79.7839400000), (1126888, 1001434, 'Springerville', NULL, 'springerville', 'US', 1, 34.1335500000, -109.2883400000), (1126889, 1001436, 'Springfield', NULL, 'springfield', 'US', 1, 30.1532600000, -85.6113200000), (1126890, 1001425, 'Springfield', NULL, 'springfield', 'US', 1, 39.8017200000, -89.6437100000), (1126891, 1001455, 'Springfield', NULL, 'springfield', 'US', 1, 32.3724100000, -81.3115000000), (1126892, 1001419, 'Springfield', NULL, 'springfield', 'US', 1, 37.6853400000, -85.2221800000), (1126893, 1001451, 'Springfield', NULL, 'springfield', 'US', 1, 37.2153300000, -93.2982400000), (1126894, 1001422, 'Springfield', NULL, 'springfield', 'US', 1, 39.9306700000, -75.3201900000), (1126895, 1001454, 'Springfield', NULL, 'springfield', 'US', 1, 36.5092100000, -86.8850000000), (1126896, 1001427, 'Springfield', NULL, 'springfield', 'US', 1, 38.7892800000, -77.1872000000), (1126897, 1001433, 'Springfield', NULL, 'springfield', 'US', 1, 42.1014800000, -72.5898100000), (1126898, 1001426, 'Springfield', NULL, 'springfield', 'US', 1, 42.3264300000, -85.2391600000), (1126899, 1001408, 'Springfield', NULL, 'springfield', 'US', 1, 41.0819400000, -96.1344600000), (1126900, 1001417, 'Springfield', NULL, 'springfield', 'US', 1, 40.7049100000, -74.3172300000), (1126901, 1001404, 'Springfield', NULL, 'springfield', 'US', 1, 43.4950700000, -72.0334200000), (1126902, 1001420, 'Springfield', NULL, 'springfield', 'US', 1, 44.2388500000, -94.9758200000), (1126903, 1001452, 'Springfield', NULL, 'springfield', 'US', 1, 42.8361800000, -74.8534800000), (1126904, 1001409, 'Springfield', NULL, 'springfield', 'US', 1, 43.2984100000, -72.4823100000), (1126905, 1001445, 'Springfield', NULL, 'springfield', 'US', 1, 42.8541700000, -97.8972900000), (1126906, 1001450, 'Springfield', NULL, 'springfield', 'US', 1, 37.4083500000, -102.6143600000), (1126907, 1001415, 'Springfield', NULL, 'springfield', 'US', 1, 44.0462400000, -123.0220300000), (1126908, 1001452, 'Springfield Gardens', NULL, 'springfield-gardens', 'US', 1, 40.6631200000, -73.7622100000), (1126909, 1001457, 'Springhill', NULL, 'springhill', 'US', 1, 33.0059700000, -93.4668400000), (1126910, 1001452, 'Springs', NULL, 'springs', 'US', 1, 41.0162100000, -72.1592400000), (1126911, 1001407, 'Springtown', NULL, 'springtown', 'US', 1, 32.9659600000, -97.6836400000), (1126912, 1001453, 'Springvale', NULL, 'springvale', 'US', 1, 43.4667500000, -70.7936700000), (1126913, 1001408, 'Springview', NULL, 'springview', 'US', 1, 42.8244400000, -99.7490100000), (1126914, 1001456, 'Springville', NULL, 'springville', 'US', 1, 33.7750500000, -86.4719100000), (1126915, 1001459, 'Springville', NULL, 'springville', 'US', 1, 42.0594500000, -91.4426700000), (1126916, 1001427, 'Springville', NULL, 'springville', 'US', 1, 37.1965100000, -81.4028800000), (1126917, 1001452, 'Springville', NULL, 'springville', 'US', 1, 42.5084000000, -78.6672500000), (1126918, 1001414, 'Springville', NULL, 'springville', 'US', 1, 40.1652300000, -111.6107500000), (1126919, 1001447, 'Spruce Pine', NULL, 'spruce-pine', 'US', 1, 35.9154000000, -82.0645600000), (1126920, 1001422, 'Spry', NULL, 'spry', 'US', 1, 39.9184300000, -76.6849700000), (1126921, 1001407, 'Spur', NULL, 'spur', 'US', 1, 33.4764800000, -100.8556900000), (1126922, 1001454, 'Spurgeon', NULL, 'spurgeon', 'US', 1, 36.4395500000, -82.4557000000), (1126923, 1001452, 'Spuyten Duyvil', NULL, 'spuyten-duyvil', 'US', 1, 40.8812100000, -73.9173600000), (1126924, 1001416, 'Squaw Valley', NULL, 'squaw-valley', 'US', 1, 36.7402300000, -119.2467900000), (1126925, 1001409, 'St Johnsbury', NULL, 'st-johnsbury', 'US', 1, 44.4252600000, -72.0151200000), (1126926, 1001436, 'St. Johns', NULL, 'st-johns', 'US', 1, 30.0815000000, -81.5477400000), (1126927, 1001452, 'St. Lawrence County', NULL, 'st-lawrence-county', 'US', 1, 44.5006200000, -75.1163100000), (1126928, 1001451, 'St. Louis', NULL, 'st-louis', 'US', 1, 38.6272700000, -90.1978900000), (1126929, 1001455, 'St. Marys', NULL, 'st-marys', 'US', 1, 30.7305100000, -81.5464900000), (1126930, 1001436, 'St. Petersburg', NULL, 'st-petersburg', 'US', 1, 27.7708600000, -82.6792700000), (1126931, 1001420, 'Stacy', NULL, 'stacy', 'US', 1, 45.3980200000, -92.9874400000), (1126932, 1001407, 'Stafford', NULL, 'stafford', 'US', 1, 29.6160700000, -95.5577200000), (1126933, 1001427, 'Stafford', NULL, 'stafford', 'US', 1, 38.4220700000, -77.4083200000), (1126934, 1001435, 'Stafford', NULL, 'stafford', 'US', 1, 41.9848200000, -72.2889700000), (1126935, 1001415, 'Stafford', NULL, 'stafford', 'US', 1, 45.3573400000, -122.7225900000), (1126936, 1001406, 'Stafford County', NULL, 'stafford-county', 'US', 1, 38.0310000000, -98.7174400000), (1126937, 1001427, 'Stafford County', NULL, 'stafford-county', 'US', 1, 38.4207000000, -77.4574300000), (1126938, 1001435, 'Stafford Springs', NULL, 'stafford-springs', 'US', 1, 41.9542600000, -72.3023000000), (1126939, 1001458, 'Stagecoach', NULL, 'stagecoach', 'US', 1, 39.3738000000, -119.3740600000), (1126940, 1001447, 'Stallings', NULL, 'stallings', 'US', 1, 35.0907000000, -80.6861800000), (1126941, 1001416, 'Stallion Springs', NULL, 'stallion-springs', 'US', 1, 35.0888600000, -118.6425900000), (1126942, 1001426, 'Stambaugh, Iron River', NULL, 'stambaugh-iron-river', 'US', 1, 46.0810700000, -88.6270800000), (1126943, 1001407, 'Stamford', NULL, 'stamford', 'US', 1, 32.9453900000, -99.8028700000), (1126944, 1001435, 'Stamford', NULL, 'stamford', 'US', 1, 41.0534300000, -73.5387300000), (1126945, 1001452, 'Stamford', NULL, 'stamford', 'US', 1, 42.4073000000, -74.6143200000), (1126946, 1001444, 'Stamps', NULL, 'stamps', 'US', 1, 33.3654000000, -93.4951800000), (1126947, 1001429, 'Stanaford', NULL, 'stanaford', 'US', 1, 37.8159500000, -81.1523200000), (1126948, 1001427, 'Stanardsville', NULL, 'stanardsville', 'US', 1, 38.2973500000, -78.4400100000), (1126949, 1001451, 'Stanberry', NULL, 'stanberry', 'US', 1, 40.2177700000, -94.5382900000), (1126950, 1001426, 'Standish', NULL, 'standish', 'US', 1, 43.9830800000, -83.9588800000), (1126951, 1001447, 'Stanfield', NULL, 'stanfield', 'US', 1, 35.2334800000, -80.4270100000), (1126952, 1001415, 'Stanfield', NULL, 'stanfield', 'US', 1, 45.7804100000, -119.2172400000), (1126953, 1001419, 'Stanford', NULL, 'stanford', 'US', 1, 37.5311900000, -84.6618900000), (1126954, 1001416, 'Stanford', NULL, 'stanford', 'US', 1, 37.4241100000, -122.1660800000), (1126955, 1001446, 'Stanford', NULL, 'stanford', 'US', 1, 47.1535800000, -110.2182600000), (1126956, 1001417, 'Stanhope', NULL, 'stanhope', 'US', 1, 40.9028800000, -74.7090500000), (1126957, 1001416, 'Stanislaus County', NULL, 'stanislaus-county', 'US', 1, 37.5591400000, -120.9976900000), (1126958, 1001447, 'Stanley', NULL, 'stanley', 'US', 1, 35.3590300000, -81.0970200000), (1126959, 1001427, 'Stanley', NULL, 'stanley', 'US', 1, 38.5754000000, -78.5025100000), (1126960, 1001441, 'Stanley', NULL, 'stanley', 'US', 1, 44.9599700000, -90.9370800000), (1126961, 1001418, 'Stanley', NULL, 'stanley', 'US', 1, 48.3172400000, -102.3904500000), (1126962, 1001445, 'Stanley County', NULL, 'stanley-county', 'US', 1, 44.4123200000, -100.7359400000), (1126963, 1001427, 'Stanleytown', NULL, 'stanleytown', 'US', 1, 36.7443000000, -79.9628200000), (1126964, 1001447, 'Stanly County', NULL, 'stanly-county', 'US', 1, 35.3119900000, -80.2509200000), (1126965, 1001414, 'Stansbury park', NULL, 'stansbury-park', 'US', 1, 40.6377200000, -112.2960600000), (1126966, 1001419, 'Stanton', NULL, 'stanton', 'US', 1, 37.8456400000, -83.8582500000), (1126967, 1001426, 'Stanton', NULL, 'stanton', 'US', 1, 43.2925300000, -85.0814100000), (1126968, 1001408, 'Stanton', NULL, 'stanton', 'US', 1, 41.9502800000, -97.2239300000), (1126969, 1001416, 'Stanton', NULL, 'stanton', 'US', 1, 33.8025200000, -117.9931200000), (1126970, 1001418, 'Stanton', NULL, 'stanton', 'US', 1, 47.3211100000, -101.3815500000), (1126971, 1001407, 'Stanton', NULL, 'stanton', 'US', 1, 32.1292900000, -101.7884600000), (1126972, 1001408, 'Stanton County', NULL, 'stanton-county', 'US', 1, 41.9169200000, -97.1939200000), (1126973, 1001406, 'Stanton County', NULL, 'stanton-county', 'US', 1, 37.5630600000, -101.7841800000), (1126974, 1001462, 'Stanwood', NULL, 'stanwood', 'US', 1, 48.2412100000, -122.3707100000), (1126975, 1001420, 'Staples', NULL, 'staples', 'US', 1, 46.3555200000, -94.7922400000), (1126976, 1001452, 'Stapleton', NULL, 'stapleton', 'US', 1, 40.6264900000, -74.0776400000), (1126977, 1001408, 'Stapleton', NULL, 'stapleton', 'US', 1, 41.4802800000, -100.5129200000), (1126978, 1001460, 'Star', NULL, 'star', 'US', 1, 43.6921100000, -116.4934600000), (1126979, 1001444, 'Star City', NULL, 'star-city', 'US', 1, 33.9428800000, -91.8434700000), (1126980, 1001429, 'Star City', NULL, 'star-city', 'US', 1, 39.6584100000, -79.9864500000), (1126981, 1001434, 'Star Valley', NULL, 'star-valley', 'US', 1, 34.2550400000, -111.2584700000), (1126982, 1001442, 'Star Valley Ranch', NULL, 'star-valley-ranch', 'US', 1, 42.9713900000, -110.9555600000), (1126983, 1001420, 'Starbuck', NULL, 'starbuck', 'US', 1, 45.6144000000, -95.5311500000), (1126984, 1001425, 'Stark County', NULL, 'stark-county', 'US', 1, 41.0933600000, -89.7974900000), (1126985, 1001418, 'Stark County', NULL, 'stark-county', 'US', 1, 46.8106800000, -102.6551300000), (1126986, 1001436, 'Starke', NULL, 'starke', 'US', 1, 29.9441300000, -82.1098300000), (1126987, 1001440, 'Starke County', NULL, 'starke-county', 'US', 1, 41.2809300000, -86.6476500000), (1126988, 1001409, 'Starksboro', NULL, 'starksboro', 'US', 1, 44.2272800000, -73.0573400000), (1126989, 1001430, 'Starkville', NULL, 'starkville', 'US', 1, 33.4504900000, -88.8196100000), (1126990, 1001407, 'Starr County', NULL, 'starr-county', 'US', 1, 26.5621500000, -98.7384000000), (1126991, 1001459, 'State Center', NULL, 'state-center', 'US', 1, 42.0166500000, -93.1635400000), (1126992, 1001422, 'State College', NULL, 'state-college', 'US', 1, 40.7933900000, -77.8600000000), (1126993, 1001422, 'State Line', NULL, 'state-line', 'US', 1, 39.7248200000, -77.7244400000), (1126994, 1001443, 'Stateburg', NULL, 'stateburg', 'US', 1, 33.9576500000, -80.5348100000), (1126995, 1001452, 'Staten Island', NULL, 'staten-island', 'US', 1, 40.5623300000, -74.1398600000), (1126996, 1001455, 'Statenville', NULL, 'statenville', 'US', 1, 30.7032700000, -83.0276400000), (1126997, 1001455, 'Statesboro', NULL, 'statesboro', 'US', 1, 32.4487900000, -81.7831700000), (1126998, 1001447, 'Statesville', NULL, 'statesville', 'US', 1, 35.7826400000, -80.8873000000), (1126999, 1001455, 'Statham', NULL, 'statham', 'US', 1, 33.9651100000, -83.5965500000), (1127000, 1001425, 'Staunton', NULL, 'staunton', 'US', 1, 39.0122700000, -89.7912100000), (1127001, 1001427, 'Staunton', NULL, 'staunton', 'US', 1, 38.1499100000, -79.0732000000), (1127002, 1001415, 'Stayton', NULL, 'stayton', 'US', 1, 44.8006800000, -122.7945300000), (1127003, 1001450, 'Steamboat Springs', NULL, 'steamboat-springs', 'US', 1, 40.4849800000, -106.8317200000), (1127004, 1001419, 'Stearns', NULL, 'stearns', 'US', 1, 36.6989700000, -84.4774400000), (1127005, 1001420, 'Stearns County', NULL, 'stearns-county', 'US', 1, 45.5521500000, -94.6130200000), (1127006, 1001447, 'Stedman', NULL, 'stedman', 'US', 1, 35.0135000000, -78.6939100000), (1127007, 1001456, 'Steele', NULL, 'steele', 'US', 1, 33.9398200000, -86.2016400000), (1127008, 1001451, 'Steele', NULL, 'steele', 'US', 1, 36.0839600000, -89.8292500000), (1127009, 1001418, 'Steele', NULL, 'steele', 'US', 1, 46.8547100000, -99.9159400000), (1127010, 1001420, 'Steele County', NULL, 'steele-county', 'US', 1, 44.0223400000, -93.2260400000), (1127011, 1001418, 'Steele County', NULL, 'steele-county', 'US', 1, 47.4561500000, -97.7246700000), (1127012, 1001425, 'Steeleville', NULL, 'steeleville', 'US', 1, 38.0072700000, -89.6584300000), (1127013, 1001422, 'Steelton', NULL, 'steelton', 'US', 1, 40.2353700000, -76.8413600000), (1127014, 1001451, 'Steelville', NULL, 'steelville', 'US', 1, 37.9681000000, -91.3548700000), (1127015, 1001453, 'Steep Falls', NULL, 'steep-falls', 'US', 1, 43.7939700000, -70.6525600000), (1127016, 1001425, 'Steger', NULL, 'steger', 'US', 1, 41.4700300000, -87.6364300000), (1127017, 1001462, 'Steilacoom', NULL, 'steilacoom', 'US', 1, 47.1698200000, -122.6026300000), (1127018, 1001436, 'Steinhatchee', NULL, 'steinhatchee', 'US', 1, 29.6710600000, -83.3876400000), (1127019, 1001452, 'Steinway', NULL, 'steinway', 'US', 1, 40.7745500000, -73.9037500000), (1127020, 1001427, 'Stephens City', NULL, 'stephens-city', 'US', 1, 39.0834400000, -78.2180600000), (1127021, 1001455, 'Stephens County', NULL, 'stephens-county', 'US', 1, 34.5539400000, -83.2934300000), (1127022, 1001421, 'Stephens County', NULL, 'stephens-county', 'US', 1, 34.4855900000, -97.8514800000), (1127023, 1001407, 'Stephens County', NULL, 'stephens-county', 'US', 1, 32.7358600000, -98.8361700000), (1127024, 1001425, 'Stephenson County', NULL, 'stephenson-county', 'US', 1, 42.3517500000, -89.6623500000), (1127025, 1001407, 'Stephenville', NULL, 'stephenville', 'US', 1, 32.2207000000, -98.2022600000), (1127026, 1001406, 'Sterling', NULL, 'sterling', 'US', 1, 38.2100100000, -98.2070100000), (1127027, 1001427, 'Sterling', NULL, 'sterling', 'US', 1, 39.0062200000, -77.4286000000), (1127028, 1001433, 'Sterling', NULL, 'sterling', 'US', 1, 42.4375900000, -71.7606300000), (1127029, 1001425, 'Sterling', NULL, 'sterling', 'US', 1, 41.7886400000, -89.6962200000), (1127030, 1001450, 'Sterling', NULL, 'sterling', 'US', 1, 40.6255400000, -103.2077100000), (1127031, 1001400, 'Sterling', NULL, 'sterling', 'US', 1, 60.5372200000, -150.7647200000), (1127032, 1001407, 'Sterling City', NULL, 'sterling-city', 'US', 1, 31.8362500000, -100.9848300000), (1127033, 1001407, 'Sterling County', NULL, 'sterling-county', 'US', 1, 31.8278800000, -101.0500100000), (1127034, 1001426, 'Sterling Heights', NULL, 'sterling-heights', 'US', 1, 42.5803100000, -83.0302000000), (1127035, 1001457, 'Sterlington', NULL, 'sterlington', 'US', 1, 32.6962500000, -92.0859700000), (1127036, 1001453, 'Stetson', NULL, 'stetson', 'US', 1, 44.8917300000, -69.1428200000), (1127037, 1001453, 'Steuben', NULL, 'steuben', 'US', 1, 44.5109800000, -67.9666200000), (1127038, 1001440, 'Steuben County', NULL, 'steuben-county', 'US', 1, 41.6438700000, -85.0007700000), (1127039, 1001452, 'Steuben County', NULL, 'steuben-county', 'US', 1, 42.2678100000, -77.3838000000), (1127040, 1001420, 'Stevens County', NULL, 'stevens-county', 'US', 1, 45.5861300000, -96.0003000000), (1127041, 1001406, 'Stevens County', NULL, 'stevens-county', 'US', 1, 37.1923200000, -101.3120500000), (1127042, 1001462, 'Stevens County', NULL, 'stevens-county', 'US', 1, 48.3990600000, -117.8551400000), (1127043, 1001441, 'Stevens Point', NULL, 'stevens-point', 'US', 1, 44.5235800000, -89.5745600000), (1127044, 1001456, 'Stevenson', NULL, 'stevenson', 'US', 1, 34.8686900000, -85.8394200000), (1127045, 1001462, 'Stevenson', NULL, 'stevenson', 'US', 1, 45.6956700000, -121.8845200000), (1127046, 1001416, 'Stevenson Ranch', NULL, 'stevenson-ranch', 'US', 1, 34.3904800000, -118.5737200000), (1127047, 1001401, 'Stevensville', NULL, 'stevensville', 'US', 1, 38.9806700000, -76.3144000000), (1127048, 1001426, 'Stevensville', NULL, 'stevensville', 'US', 1, 42.0144900000, -86.5194700000), (1127049, 1001446, 'Stevensville', NULL, 'stevensville', 'US', 1, 46.5099200000, -114.0931600000), (1127050, 1001455, 'Stewart County', NULL, 'stewart-county', 'US', 1, 32.0784600000, -84.8352000000), (1127051, 1001454, 'Stewart County', NULL, 'stewart-county', 'US', 1, 36.5011000000, -87.8384600000), (1127052, 1001452, 'Stewart Manor', NULL, 'stewart-manor', 'US', 1, 40.7192700000, -73.6884600000), (1127053, 1001422, 'Stewartstown', NULL, 'stewartstown', 'US', 1, 39.7537100000, -76.5913600000), (1127054, 1001456, 'Stewartville', NULL, 'stewartville', 'US', 1, 33.0792900000, -86.2444200000), (1127055, 1001420, 'Stewartville', NULL, 'stewartville', 'US', 1, 43.8555200000, -92.4885100000), (1127056, 1001425, 'Stickney', NULL, 'stickney', 'US', 1, 41.8214200000, -87.7828300000), (1127057, 1001421, 'Stigler', NULL, 'stigler', 'US', 1, 35.2537100000, -95.1230200000), (1127058, 1001422, 'Stiles', NULL, 'stiles', 'US', 1, 40.6653700000, -75.5082400000), (1127059, 1001425, 'Stillman Valley', NULL, 'stillman-valley', 'US', 1, 42.1072500000, -89.1792700000), (1127060, 1001421, 'Stillwater', NULL, 'stillwater', 'US', 1, 36.1156100000, -97.0583700000), (1127061, 1001420, 'Stillwater', NULL, 'stillwater', 'US', 1, 45.0563600000, -92.8060400000), (1127062, 1001452, 'Stillwater', NULL, 'stillwater', 'US', 1, 42.9384100000, -73.6531700000), (1127063, 1001446, 'Stillwater County', NULL, 'stillwater-county', 'US', 1, 45.6694400000, -109.3947700000), (1127064, 1001421, 'Stilwell', NULL, 'stilwell', 'US', 1, 35.8145300000, -94.6285600000), (1127065, 1001407, 'Stinnett', NULL, 'stinnett', 'US', 1, 35.8269800000, -101.4429400000), (1127066, 1001436, 'Stock Island', NULL, 'stock-island', 'US', 1, 24.5670900000, -81.7384200000), (1127067, 1001455, 'Stockbridge', NULL, 'stockbridge', 'US', 1, 33.5442800000, -84.2338100000), (1127068, 1001433, 'Stockbridge', NULL, 'stockbridge', 'US', 1, 42.2875900000, -73.3203900000), (1127069, 1001426, 'Stockbridge', NULL, 'stockbridge', 'US', 1, 42.4511500000, -84.1805100000), (1127070, 1001407, 'Stockdale', NULL, 'stockdale', 'US', 1, 29.2369100000, -97.9600000000), (1127071, 1001406, 'Stockton', NULL, 'stockton', 'US', 1, 39.4380700000, -99.2651000000), (1127072, 1001451, 'Stockton', NULL, 'stockton', 'US', 1, 37.6989300000, -93.7960400000), (1127073, 1001425, 'Stockton', NULL, 'stockton', 'US', 1, 42.3497400000, -90.0067900000), (1127074, 1001416, 'Stockton', NULL, 'stockton', 'US', 1, 37.9577000000, -121.2907800000), (1127075, 1001453, 'Stockton Springs', NULL, 'stockton-springs', 'US', 1, 44.4895200000, -68.8569800000), (1127076, 1001408, 'Stockville', NULL, 'stockville', 'US', 1, 40.5327900000, -100.3834800000), (1127077, 1001451, 'Stoddard County', NULL, 'stoddard-county', 'US', 1, 36.8556200000, -89.9443100000), (1127078, 1001447, 'Stokes County', NULL, 'stokes-county', 'US', 1, 36.4019000000, -80.2396100000), (1127079, 1001447, 'Stokesdale', NULL, 'stokesdale', 'US', 1, 36.2370800000, -79.9794800000), (1127080, 1001444, 'Stone County', NULL, 'stone-county', 'US', 1, 35.8598700000, -92.1566800000), (1127081, 1001451, 'Stone County', NULL, 'stone-county', 'US', 1, 36.7469400000, -93.4560000000), (1127082, 1001430, 'Stone County', NULL, 'stone-county', 'US', 1, 30.7899500000, -89.1177100000), (1127083, 1001455, 'Stone Mountain', NULL, 'stone-mountain', 'US', 1, 33.8081600000, -84.1702000000), (1127084, 1001425, 'Stone Park', NULL, 'stone-park', 'US', 1, 41.9055900000, -87.8836700000), (1127085, 1001452, 'Stone Ridge', NULL, 'stone-ridge', 'US', 1, 41.8531500000, -74.1390300000), (1127086, 1001422, 'Stoneboro', NULL, 'stoneboro', 'US', 1, 41.3392200000, -80.1050600000), (1127087, 1001455, 'Stonecrest', NULL, 'stonecrest', 'US', 1, 33.7084900000, -84.1348500000), (1127088, 1001450, 'Stonegate', NULL, 'stonegate', 'US', 1, 39.5308200000, -104.8038600000), (1127089, 1001433, 'Stoneham', NULL, 'stoneham', 'US', 1, 42.4801000000, -71.0995000000), (1127090, 1001447, 'Stoneville', NULL, 'stoneville', 'US', 1, 36.4665300000, -79.9069800000), (1127091, 1001457, 'Stonewall', NULL, 'stonewall', 'US', 1, 32.2818300000, -93.8240700000), (1127092, 1001430, 'Stonewall', NULL, 'stonewall', 'US', 1, 32.1318100000, -88.7933800000), (1127093, 1001407, 'Stonewall County', NULL, 'stonewall-county', 'US', 1, 33.1791200000, -100.2533100000), (1127094, 1001429, 'Stonewood', NULL, 'stonewood', 'US', 1, 39.2509200000, -80.3123100000), (1127095, 1001453, 'Stonington', NULL, 'stonington', 'US', 1, 44.1561900000, -68.6666900000), (1127096, 1001452, 'Stony Brook', NULL, 'stony-brook', 'US', 1, 40.9256500000, -73.1409400000), (1127097, 1001422, 'Stony Creek Mills', NULL, 'stony-creek-mills', 'US', 1, 40.3456500000, -75.8699300000), (1127098, 1001447, 'Stony Point', NULL, 'stony-point', 'US', 1, 35.8634700000, -81.0473000000), (1127099, 1001426, 'Stony Point', NULL, 'stony-point', 'US', 1, 41.9414300000, -83.2649300000), (1127100, 1001452, 'Stony Point', NULL, 'stony-point', 'US', 1, 41.2295400000, -73.9870800000), (1127101, 1001422, 'Stonybrook', NULL, 'stonybrook', 'US', 1, 39.9870400000, -76.6441300000), (1127102, 1001458, 'Storey County', NULL, 'storey-county', 'US', 1, 39.4465300000, -119.5291700000), (1127103, 1001459, 'Storm Lake', NULL, 'storm-lake', 'US', 1, 42.6410900000, -95.2097200000), (1127104, 1001422, 'Stormstown', NULL, 'stormstown', 'US', 1, 40.7933900000, -78.0166700000), (1127105, 1001435, 'Storrs', NULL, 'storrs', 'US', 1, 41.8084300000, -72.2495200000), (1127106, 1001459, 'Story City', NULL, 'story-city', 'US', 1, 42.1872100000, -93.5957700000), (1127107, 1001459, 'Story County', NULL, 'story-county', 'US', 1, 42.0362400000, -93.4650400000), (1127108, 1001452, 'Stottville', NULL, 'stottville', 'US', 1, 42.2862000000, -73.7387300000), (1127109, 1001433, 'Stoughton', NULL, 'stoughton', 'US', 1, 42.1251000000, -71.1022700000), (1127110, 1001441, 'Stoughton', NULL, 'stoughton', 'US', 1, 42.9169500000, -89.2178900000), (1127111, 1001451, 'Stover', NULL, 'stover', 'US', 1, 38.4408600000, -92.9918700000), (1127112, 1001433, 'Stow', NULL, 'stow', 'US', 1, 42.4370400000, -71.5056200000), (1127113, 1001422, 'Stowe', NULL, 'stowe', 'US', 1, 40.2526000000, -75.6774100000), (1127114, 1001409, 'Stowe', NULL, 'stowe', 'US', 1, 44.4653300000, -72.6845600000), (1127115, 1001407, 'Stowell', NULL, 'stowell', 'US', 1, 29.7899400000, -94.3832400000), (1127116, 1001451, 'Strafford', NULL, 'strafford', 'US', 1, 37.2683800000, -93.1171300000), (1127117, 1001404, 'Strafford', NULL, 'strafford', 'US', 1, 43.3270300000, -71.1842300000), (1127118, 1001404, 'Strafford County', NULL, 'strafford-county', 'US', 1, 43.2974300000, -71.0294000000), (1127119, 1001422, 'Strasburg', NULL, 'strasburg', 'US', 1, 39.9831600000, -76.1841200000), (1127120, 1001427, 'Strasburg', NULL, 'strasburg', 'US', 1, 38.9887200000, -78.3586200000), (1127121, 1001450, 'Strasburg', NULL, 'strasburg', 'US', 1, 39.7383200000, -104.3232900000), (1127122, 1001417, 'Stratford', NULL, 'stratford', 'US', 1, 39.8267800000, -75.0154500000), (1127123, 1001421, 'Stratford', NULL, 'stratford', 'US', 1, 34.7967500000, -96.9594600000), (1127124, 1001435, 'Stratford', NULL, 'stratford', 'US', 1, 41.1845400000, -73.1331700000), (1127125, 1001404, 'Stratford', NULL, 'stratford', 'US', 1, 44.6550500000, -71.5556400000), (1127126, 1001441, 'Stratford', NULL, 'stratford', 'US', 1, 44.8010800000, -90.0793000000), (1127127, 1001416, 'Stratford', NULL, 'stratford', 'US', 1, 36.1894000000, -119.8231900000), (1127128, 1001407, 'Stratford', NULL, 'stratford', 'US', 1, 36.3361400000, -102.0721200000), (1127129, 1001404, 'Stratham Station', NULL, 'stratham-station', 'US', 1, 43.0528700000, -70.8953300000), (1127130, 1001417, 'Strathmore', NULL, 'strathmore', 'US', 1, 40.3959400000, -74.2134800000), (1127131, 1001416, 'Strathmore', NULL, 'strathmore', 'US', 1, 36.1455100000, -119.0606600000); INSERT INTO `[[dbprefix]]t_city` VALUES (1127132, 1001450, 'Stratmoor', NULL, 'stratmoor', 'US', 1, 38.7738800000, -104.7797000000), (1127133, 1001416, 'Strawberry', NULL, 'strawberry', 'US', 1, 37.8968700000, -122.5088600000), (1127134, 1001459, 'Strawberry Point', NULL, 'strawberry-point', 'US', 1, 42.6836000000, -91.5340300000), (1127135, 1001425, 'Streamwood', NULL, 'streamwood', 'US', 1, 42.0255800000, -88.1784100000), (1127136, 1001425, 'Streator', NULL, 'streator', 'US', 1, 41.1208700000, -88.8353500000), (1127137, 1001408, 'Stromsburg', NULL, 'stromsburg', 'US', 1, 41.1141800000, -97.5989400000), (1127138, 1001453, 'Strong', NULL, 'strong', 'US', 1, 44.8075600000, -70.2209000000), (1127139, 1001421, 'Stroud', NULL, 'stroud', 'US', 1, 35.7486800000, -96.6580700000), (1127140, 1001422, 'Stroudsburg', NULL, 'stroudsburg', 'US', 1, 40.9867600000, -75.1946200000), (1127141, 1001441, 'Strum', NULL, 'strum', 'US', 1, 44.5496900000, -91.3926600000), (1127142, 1001436, 'Stuart', NULL, 'stuart', 'US', 1, 27.1975500000, -80.2528300000), (1127143, 1001459, 'Stuart', NULL, 'stuart', 'US', 1, 41.5033200000, -94.3185700000), (1127144, 1001427, 'Stuart', NULL, 'stuart', 'US', 1, 36.6409700000, -80.2656100000), (1127145, 1001427, 'Stuarts Draft', NULL, 'stuarts-draft', 'US', 1, 38.0301400000, -79.0336400000), (1127146, 1001416, 'Studio City', NULL, 'studio-city', 'US', 1, 34.1486200000, -118.3964700000), (1127147, 1001433, 'Sturbridge', NULL, 'sturbridge', 'US', 1, 42.1084300000, -72.0786900000), (1127148, 1001422, 'Sturgeon', NULL, 'sturgeon', 'US', 1, 40.3847900000, -80.2108900000), (1127149, 1001441, 'Sturgeon Bay', NULL, 'sturgeon-bay', 'US', 1, 44.8341600000, -87.3770400000), (1127150, 1001419, 'Sturgis', NULL, 'sturgis', 'US', 1, 37.5467100000, -87.9839100000), (1127151, 1001426, 'Sturgis', NULL, 'sturgis', 'US', 1, 41.7992200000, -85.4191500000), (1127152, 1001445, 'Sturgis', NULL, 'sturgis', 'US', 1, 44.4097100000, -103.5090800000), (1127153, 1001441, 'Sturtevant', NULL, 'sturtevant', 'US', 1, 42.6980700000, -87.8945200000), (1127154, 1001418, 'Stutsman County', NULL, 'stutsman-county', 'US', 1, 46.9792500000, -98.9588300000), (1127155, 1001444, 'Stuttgart', NULL, 'stuttgart', 'US', 1, 34.5003700000, -91.5526300000), (1127156, 1001441, 'Suamico', NULL, 'suamico', 'US', 1, 44.6319400000, -88.0392700000), (1127157, 1001406, 'Sublette', NULL, 'sublette', 'US', 1, 37.4816900000, -100.8437700000), (1127158, 1001442, 'Sublette County', NULL, 'sublette-county', 'US', 1, 42.7669100000, -109.9147100000), (1127159, 1001415, 'Sublimity', NULL, 'sublimity', 'US', 1, 44.8295700000, -122.7945300000), (1127160, 1001417, 'Succasunna', NULL, 'succasunna', 'US', 1, 40.8684300000, -74.6404400000), (1127161, 1001433, 'Sudbury', NULL, 'sudbury', 'US', 1, 42.3834300000, -71.4161700000), (1127162, 1001462, 'Sudden Valley', NULL, 'sudden-valley', 'US', 1, 48.7228900000, -122.3465500000), (1127163, 1001427, 'Sudley', NULL, 'sudley', 'US', 1, 38.7928900000, -77.4974900000), (1127164, 1001452, 'Suffern', NULL, 'suffern', 'US', 1, 41.1148200000, -74.1495900000), (1127165, 1001435, 'Suffield Depot', NULL, 'suffield-depot', 'US', 1, 41.9812100000, -72.6498100000), (1127166, 1001427, 'Suffolk', NULL, 'suffolk', 'US', 1, 36.7283600000, -76.5849600000), (1127167, 1001433, 'Suffolk County', NULL, 'suffolk-county', 'US', 1, 42.3555000000, -71.0657500000), (1127168, 1001452, 'Suffolk County', NULL, 'suffolk-county', 'US', 1, 40.9404600000, -72.6852400000), (1127169, 1001460, 'Sugar City', NULL, 'sugar-city', 'US', 1, 43.8729700000, -111.7483000000), (1127170, 1001451, 'Sugar Creek', NULL, 'sugar-creek', 'US', 1, 39.1097300000, -94.4446700000), (1127171, 1001425, 'Sugar Grove', NULL, 'sugar-grove', 'US', 1, 41.7614200000, -88.4436900000), (1127172, 1001455, 'Sugar Hill', NULL, 'sugar-hill', 'US', 1, 34.1064900000, -84.0335200000), (1127173, 1001407, 'Sugar Land', NULL, 'sugar-land', 'US', 1, 29.6196800000, -95.6349500000), (1127174, 1001422, 'Sugarcreek', NULL, 'sugarcreek', 'US', 1, 41.4214500000, -79.8811700000), (1127175, 1001427, 'Sugarland Run', NULL, 'sugarland-run', 'US', 1, 39.0376100000, -77.3752600000), (1127176, 1001436, 'Sugarmill Woods', NULL, 'sugarmill-woods', 'US', 1, 28.7322100000, -82.5062100000), (1127177, 1001416, 'Suisun', NULL, 'suisun', 'US', 1, 38.2382500000, -122.0402400000), (1127178, 1001401, 'Suitland', NULL, 'suitland', 'US', 1, 38.8487200000, -76.9238600000), (1127179, 1001401, 'Suitland-Silver Hill', NULL, 'suitland-silver-hill', 'US', 1, 38.8468500000, -76.9259100000), (1127180, 1001456, 'Sulligent', NULL, 'sulligent', 'US', 1, 33.9017700000, -88.1344800000), (1127181, 1001425, 'Sullivan', NULL, 'sullivan', 'US', 1, 39.5994800000, -88.6078400000), (1127182, 1001440, 'Sullivan', NULL, 'sullivan', 'US', 1, 39.0953200000, -87.4058500000), (1127183, 1001451, 'Sullivan', NULL, 'sullivan', 'US', 1, 38.2081000000, -91.1604200000), (1127184, 1001453, 'Sullivan', NULL, 'sullivan', 'US', 1, 44.5203600000, -68.1966800000), (1127185, 1001407, 'Sullivan City', NULL, 'sullivan-city', 'US', 1, 26.2775700000, -98.5636300000), (1127186, 1001440, 'Sullivan County', NULL, 'sullivan-county', 'US', 1, 39.0888300000, -87.4146900000), (1127187, 1001454, 'Sullivan County', NULL, 'sullivan-county', 'US', 1, 36.5129200000, -82.3041400000), (1127188, 1001451, 'Sullivan County', NULL, 'sullivan-county', 'US', 1, 40.2106400000, -93.1115200000), (1127189, 1001404, 'Sullivan County', NULL, 'sullivan-county', 'US', 1, 43.3612200000, -72.2224000000), (1127190, 1001452, 'Sullivan County', NULL, 'sullivan-county', 'US', 1, 41.7164200000, -74.7681400000), (1127191, 1001422, 'Sullivan County', NULL, 'sullivan-county', 'US', 1, 41.4461600000, -76.5121400000), (1127192, 1001443, 'Sullivans Island', NULL, 'sullivans-island', 'US', 1, 32.7632300000, -79.8367500000), (1127193, 1001445, 'Sully County', NULL, 'sully-county', 'US', 1, 44.7155800000, -100.1322000000), (1127194, 1001457, 'Sulphur', NULL, 'sulphur', 'US', 1, 30.2365900000, -93.3773800000), (1127195, 1001421, 'Sulphur', NULL, 'sulphur', 'US', 1, 34.5078700000, -96.9683500000), (1127196, 1001444, 'Sulphur Springs', NULL, 'sulphur-springs', 'US', 1, 34.1806500000, -92.1234800000), (1127197, 1001407, 'Sulphur Springs', NULL, 'sulphur-springs', 'US', 1, 33.1384500000, -95.6010700000), (1127198, 1001462, 'Sultan', NULL, 'sultan', 'US', 1, 47.8626000000, -121.8165100000), (1127199, 1001462, 'Sumas', NULL, 'sumas', 'US', 1, 49.0001200000, -122.2648800000), (1127200, 1001456, 'Sumiton', NULL, 'sumiton', 'US', 1, 33.7556600000, -87.0500000000), (1127201, 1001456, 'Summerdale', NULL, 'summerdale', 'US', 1, 30.4877000000, -87.6997100000), (1127202, 1001447, 'Summerfield', NULL, 'summerfield', 'US', 1, 36.2087500000, -79.9047600000), (1127203, 1001401, 'Summerfield', NULL, 'summerfield', 'US', 1, 38.9045400000, -76.8683000000), (1127204, 1001416, 'Summerland', NULL, 'summerland', 'US', 1, 34.4213800000, -119.5965200000), (1127205, 1001458, 'Summerlin South', NULL, 'summerlin-south', 'US', 1, 36.1170800000, -115.3300100000), (1127206, 1001429, 'Summers County', NULL, 'summers-county', 'US', 1, 37.6558700000, -80.8585700000), (1127207, 1001445, 'Summerset', NULL, 'summerset', 'US', 1, 44.1899800000, -103.3438400000), (1127208, 1001429, 'Summersville', NULL, 'summersville', 'US', 1, 38.2812200000, -80.8526000000), (1127209, 1001455, 'Summerville', NULL, 'summerville', 'US', 1, 34.4806400000, -85.3477300000), (1127210, 1001443, 'Summerville', NULL, 'summerville', 'US', 1, 33.0185000000, -80.1756500000), (1127211, 1001430, 'Summit', NULL, 'summit', 'US', 1, 31.2837900000, -90.4684300000), (1127212, 1001425, 'Summit', NULL, 'summit', 'US', 1, 41.7880900000, -87.8103300000), (1127213, 1001417, 'Summit', NULL, 'summit', 'US', 1, 40.7156200000, -74.3646800000), (1127214, 1001434, 'Summit', NULL, 'summit', 'US', 1, 32.0670200000, -110.9514800000), (1127215, 1001462, 'Summit', NULL, 'summit', 'US', 1, 47.1617700000, -122.3570700000), (1127216, 1001450, 'Summit County', NULL, 'summit-county', 'US', 1, 39.6341700000, -106.1163800000), (1127217, 1001414, 'Summit County', NULL, 'summit-county', 'US', 1, 40.8681500000, -110.9556700000), (1127218, 1001422, 'Summit Hill', NULL, 'summit-hill', 'US', 1, 40.8248100000, -75.8710300000), (1127219, 1001414, 'Summit Park', NULL, 'summit-park', 'US', 1, 40.7457800000, -111.6115900000), (1127220, 1001462, 'Summit View', NULL, 'summit-view', 'US', 1, 47.1363200000, -122.3520200000), (1127221, 1001425, 'Sumner', NULL, 'sumner', 'US', 1, 38.7169900000, -87.8614200000), (1127222, 1001459, 'Sumner', NULL, 'sumner', 'US', 1, 42.8474800000, -92.0915600000), (1127223, 1001462, 'Sumner', NULL, 'sumner', 'US', 1, 47.2031600000, -122.2404000000), (1127224, 1001406, 'Sumner County', NULL, 'sumner-county', 'US', 1, 37.2372800000, -97.4765500000), (1127225, 1001454, 'Sumner County', NULL, 'sumner-county', 'US', 1, 36.4694100000, -86.4603600000), (1127226, 1001430, 'Sumrall', NULL, 'sumrall', 'US', 1, 31.4173900000, -89.5422900000), (1127227, 1001443, 'Sumter', NULL, 'sumter', 'US', 1, 33.9204400000, -80.3414700000), (1127228, 1001456, 'Sumter County', NULL, 'sumter-county', 'US', 1, 32.5910100000, -88.1987900000), (1127229, 1001436, 'Sumter County', NULL, 'sumter-county', 'US', 1, 28.7048200000, -82.0810000000), (1127230, 1001455, 'Sumter County', NULL, 'sumter-county', 'US', 1, 32.0399700000, -84.1970400000), (1127231, 1001443, 'Sumter County', NULL, 'sumter-county', 'US', 1, 33.9161700000, -80.3823200000), (1127232, 1001434, 'Sun City', NULL, 'sun-city', 'US', 1, 33.5975400000, -112.2718200000), (1127233, 1001416, 'Sun City', NULL, 'sun-city', 'US', 1, 33.7091900000, -117.1972600000), (1127234, 1001436, 'Sun City Center', NULL, 'sun-city-center', 'US', 1, 27.7180900000, -82.3517600000), (1127235, 1001434, 'Sun City West', NULL, 'sun-city-west', 'US', 1, 33.6619800000, -112.3412700000), (1127236, 1001434, 'Sun Lakes', NULL, 'sun-lakes', 'US', 1, 33.2111600000, -111.8754200000), (1127237, 1001441, 'Sun Prairie', NULL, 'sun-prairie', 'US', 1, 43.1836000000, -89.2137300000), (1127238, 1001446, 'Sun Prairie', NULL, 'sun-prairie', 'US', 1, 47.5369000000, -111.4813600000), (1127239, 1001422, 'Sun Valley', NULL, 'sun-valley', 'US', 1, 40.9820300000, -75.4660200000), (1127240, 1001434, 'Sun Valley', NULL, 'sun-valley', 'US', 1, 34.2542000000, -111.2612500000), (1127241, 1001460, 'Sun Valley', NULL, 'sun-valley', 'US', 1, 43.6971300000, -114.3517200000), (1127242, 1001458, 'Sun Valley', NULL, 'sun-valley', 'US', 1, 39.5963000000, -119.7760200000), (1127243, 1001416, 'Sun Village', NULL, 'sun-village', 'US', 1, 34.5595200000, -117.9567600000), (1127244, 1001404, 'Sunapee', NULL, 'sunapee', 'US', 1, 43.3875700000, -72.0878600000), (1127245, 1001422, 'Sunbury', NULL, 'sunbury', 'US', 1, 40.8625900000, -76.7944100000), (1127246, 1001436, 'Suncoast Estates', NULL, 'suncoast-estates', 'US', 1, 26.7117400000, -81.8689700000), (1127247, 1001404, 'Suncook', NULL, 'suncook', 'US', 1, 43.1306400000, -71.4531200000), (1127248, 1001442, 'Sundance', NULL, 'sundance', 'US', 1, 44.4063700000, -104.3757800000), (1127249, 1001433, 'Sunderland', NULL, 'sunderland', 'US', 1, 42.2445400000, -71.7717400000), (1127250, 1001407, 'Sundown', NULL, 'sundown', 'US', 1, 33.4562100000, -102.4893600000), (1127251, 1001430, 'Sunflower', NULL, 'sunflower', 'US', 1, 33.5429000000, -90.5370300000), (1127252, 1001430, 'Sunflower County', NULL, 'sunflower-county', 'US', 1, 33.6023100000, -90.5886200000), (1127253, 1001416, 'Sunland', NULL, 'sunland', 'US', 1, 34.2669500000, -118.3023000000), (1127254, 1001423, 'Sunland Park', NULL, 'sunland-park', 'US', 1, 31.7965000000, -106.5799900000), (1127255, 1001440, 'Sunman', NULL, 'sunman', 'US', 1, 39.2370000000, -85.0946800000), (1127256, 1001436, 'Sunny Isles Beach', NULL, 'sunny-isles-beach', 'US', 1, 25.9506500000, -80.1228200000), (1127257, 1001455, 'Sunnyside', NULL, 'sunnyside', 'US', 1, 31.2393800000, -82.3420700000), (1127258, 1001452, 'Sunnyside', NULL, 'sunnyside', 'US', 1, 40.7398200000, -73.9354200000), (1127259, 1001416, 'Sunnyside', NULL, 'sunnyside', 'US', 1, 36.7491200000, -119.6993100000), (1127260, 1001462, 'Sunnyside', NULL, 'sunnyside', 'US', 1, 46.3237400000, -120.0086500000), (1127261, 1001416, 'Sunnyside-Tahoe City', NULL, 'sunnyside-tahoe-city', 'US', 1, 39.1502300000, -120.1612000000), (1127262, 1001416, 'Sunnyslope', NULL, 'sunnyslope', 'US', 1, 34.0119600000, -117.4333800000), (1127263, 1001462, 'Sunnyslope', NULL, 'sunnyslope', 'US', 1, 47.4729000000, -120.3367400000), (1127264, 1001407, 'Sunnyvale', NULL, 'sunnyvale', 'US', 1, 32.7965200000, -96.5608200000), (1127265, 1001416, 'Sunnyvale', NULL, 'sunnyvale', 'US', 1, 37.3688300000, -122.0363500000), (1127266, 1001407, 'Sunray', NULL, 'sunray', 'US', 1, 36.0167000000, -101.8246200000), (1127267, 1001436, 'Sunrise', NULL, 'sunrise', 'US', 1, 26.1339700000, -80.1131000000), (1127268, 1001422, 'Sunrise Lake', NULL, 'sunrise-lake', 'US', 1, 41.3098100000, -74.9665600000), (1127269, 1001458, 'Sunrise Manor', NULL, 'sunrise-manor', 'US', 1, 36.2110800000, -115.0730600000), (1127270, 1001415, 'Sunriver', NULL, 'sunriver', 'US', 1, 43.8840100000, -121.4386400000), (1127271, 1001436, 'Sunset', NULL, 'sunset', 'US', 1, 25.7059400000, -80.3522800000), (1127272, 1001457, 'Sunset', NULL, 'sunset', 'US', 1, 30.4113100000, -92.0684500000), (1127273, 1001414, 'Sunset', NULL, 'sunset', 'US', 1, 41.1363300000, -112.0310500000), (1127274, 1001447, 'Sunset Beach', NULL, 'sunset-beach', 'US', 1, 33.8807300000, -78.5122300000), (1127275, 1001451, 'Sunset Hills', NULL, 'sunset-hills', 'US', 1, 38.5389400000, -90.4073400000), (1127276, 1001452, 'Sunset Park', NULL, 'sunset-park', 'US', 1, 40.6454800000, -74.0124100000), (1127277, 1001436, 'Sunshine Ranches', NULL, 'sunshine-ranches', 'US', 1, 26.0459200000, -80.3289400000), (1127278, 1001408, 'Superior', NULL, 'superior', 'US', 1, 40.0208500000, -98.0700400000), (1127279, 1001441, 'Superior', NULL, 'superior', 'US', 1, 46.7207700000, -92.1040800000), (1127280, 1001434, 'Superior', NULL, 'superior', 'US', 1, 33.2939500000, -111.0962300000), (1127281, 1001450, 'Superior', NULL, 'superior', 'US', 1, 39.9527600000, -105.1686000000), (1127282, 1001446, 'Superior', NULL, 'superior', 'US', 1, 47.1915900000, -114.8918000000), (1127283, 1001457, 'Supreme', NULL, 'supreme', 'US', 1, 29.8593700000, -90.9812100000), (1127284, 1001462, 'Suquamish', NULL, 'suquamish', 'US', 1, 47.7312100000, -122.5523600000), (1127285, 1001447, 'Surf City', NULL, 'surf-city', 'US', 1, 34.4271100000, -77.5460800000), (1127286, 1001417, 'Surf City', NULL, 'surf-city', 'US', 1, 39.6620600000, -74.1651400000), (1127287, 1001436, 'Surfside', NULL, 'surfside', 'US', 1, 25.8784300000, -80.1256000000), (1127288, 1001443, 'Surfside Beach', NULL, 'surfside-beach', 'US', 1, 33.6060000000, -78.9730900000), (1127289, 1001454, 'Surgoinsville', NULL, 'surgoinsville', 'US', 1, 36.4709300000, -82.8518300000), (1127290, 1001434, 'Surprise', NULL, 'surprise', 'US', 1, 33.6305900000, -112.3332200000), (1127291, 1001418, 'Surrey', NULL, 'surrey', 'US', 1, 48.2364000000, -101.1334900000), (1127292, 1001427, 'Surry', NULL, 'surry', 'US', 1, 37.1379300000, -76.8352400000), (1127293, 1001453, 'Surry', NULL, 'surry', 'US', 1, 44.4959100000, -68.5016900000), (1127294, 1001447, 'Surry County', NULL, 'surry-county', 'US', 1, 36.4146800000, -80.6874900000), (1127295, 1001427, 'Surry County', NULL, 'surry-county', 'US', 1, 37.1169100000, -76.8883100000), (1127296, 1001416, 'Susanville', NULL, 'susanville', 'US', 1, 40.4162800000, -120.6530100000), (1127297, 1001422, 'Susquehanna', NULL, 'susquehanna', 'US', 1, 41.9434100000, -75.5996300000), (1127298, 1001422, 'Susquehanna County', NULL, 'susquehanna-county', 'US', 1, 41.8213300000, -75.8006800000), (1127299, 1001422, 'Susquehanna Trails', NULL, 'susquehanna-trails', 'US', 1, 39.7587200000, -76.3680200000), (1127300, 1001427, 'Sussex', NULL, 'sussex', 'US', 1, 36.9151500000, -77.2791400000), (1127301, 1001417, 'Sussex', NULL, 'sussex', 'US', 1, 41.2098200000, -74.6076600000), (1127302, 1001441, 'Sussex', NULL, 'sussex', 'US', 1, 43.1339000000, -88.2220400000), (1127303, 1001399, 'Sussex County', NULL, 'sussex-county', 'US', 1, 38.6833000000, -75.3395400000), (1127304, 1001427, 'Sussex County', NULL, 'sussex-county', 'US', 1, 36.9217500000, -77.2617900000), (1127305, 1001417, 'Sussex County', NULL, 'sussex-county', 'US', 1, 41.1394600000, -74.6902300000), (1127306, 1001408, 'Sutherland', NULL, 'sutherland', 'US', 1, 41.1569400000, -101.1262700000), (1127307, 1001415, 'Sutherlin', NULL, 'sutherlin', 'US', 1, 43.3901200000, -123.3125800000), (1127308, 1001416, 'Sutter', NULL, 'sutter', 'US', 1, 39.1598900000, -121.7527500000), (1127309, 1001416, 'Sutter County', NULL, 'sutter-county', 'US', 1, 39.0345200000, -121.6948400000), (1127310, 1001416, 'Sutter Creek', NULL, 'sutter-creek', 'US', 1, 38.3929700000, -120.8024400000), (1127311, 1001429, 'Sutton', NULL, 'sutton', 'US', 1, 38.6645400000, -80.7098200000), (1127312, 1001433, 'Sutton', NULL, 'sutton', 'US', 1, 42.1501000000, -71.7628500000), (1127313, 1001404, 'Sutton', NULL, 'sutton', 'US', 1, 43.3342400000, -71.9514700000), (1127314, 1001408, 'Sutton', NULL, 'sutton', 'US', 1, 40.6055700000, -97.8592100000), (1127315, 1001407, 'Sutton County', NULL, 'sutton-county', 'US', 1, 30.4982900000, -100.5381900000), (1127316, 1001400, 'Sutton-Alpine', NULL, 'sutton-alpine', 'US', 1, 61.7778900000, -148.7645000000), (1127317, 1001455, 'Suwanee', NULL, 'suwanee', 'US', 1, 34.0514900000, -84.0713000000), (1127318, 1001436, 'Suwannee County', NULL, 'suwannee-county', 'US', 1, 30.1956100000, -82.9914900000), (1127319, 1001447, 'Swain County', NULL, 'swain-county', 'US', 1, 35.4867300000, -83.4927400000), (1127320, 1001455, 'Swainsboro', NULL, 'swainsboro', 'US', 1, 32.5973900000, -82.3337400000), (1127321, 1001433, 'Swampscott', NULL, 'swampscott', 'US', 1, 42.4709300000, -70.9175500000), (1127322, 1001447, 'Swannanoa', NULL, 'swannanoa', 'US', 1, 35.5978900000, -82.3998400000), (1127323, 1001447, 'Swanquarter', NULL, 'swanquarter', 'US', 1, 35.4062800000, -76.3290900000), (1127324, 1001447, 'Swansboro', NULL, 'swansboro', 'US', 1, 34.6876600000, -77.1191200000), (1127325, 1001425, 'Swansea', NULL, 'swansea', 'US', 1, 38.5339400000, -89.9889900000), (1127326, 1001433, 'Swansea', NULL, 'swansea', 'US', 1, 41.7481600000, -71.1897700000), (1127327, 1001409, 'Swanton', NULL, 'swanton', 'US', 1, 44.9181000000, -73.1243000000), (1127328, 1001453, 'Swanville', NULL, 'swanville', 'US', 1, 44.5211900000, -68.9978100000), (1127329, 1001404, 'Swanzey', NULL, 'swanzey', 'US', 1, 42.8698000000, -72.2817500000), (1127330, 1001422, 'Swarthmore', NULL, 'swarthmore', 'US', 1, 39.9020600000, -75.3499100000), (1127331, 1001457, 'Swartz', NULL, 'swartz', 'US', 1, 32.5687500000, -91.9851300000), (1127332, 1001426, 'Swartz Creek', NULL, 'swartz-creek', 'US', 1, 42.9572500000, -83.8305100000), (1127333, 1001422, 'Swartzville', NULL, 'swartzville', 'US', 1, 40.2331500000, -76.0782800000), (1127334, 1001417, 'Swedesboro', NULL, 'swedesboro', 'US', 1, 39.7476100000, -75.3104700000), (1127335, 1001407, 'Sweeny', NULL, 'sweeny', 'US', 1, 29.0388600000, -95.6985600000), (1127336, 1001446, 'Sweet Grass County', NULL, 'sweet-grass-county', 'US', 1, 45.8137300000, -109.9410500000), (1127337, 1001415, 'Sweet Home', NULL, 'sweet-home', 'US', 1, 44.3976200000, -122.7362000000), (1127338, 1001451, 'Sweet Springs', NULL, 'sweet-springs', 'US', 1, 38.9636300000, -93.4149300000), (1127339, 1001440, 'Sweetser', NULL, 'sweetser', 'US', 1, 40.5719800000, -85.7691500000), (1127340, 1001436, 'Sweetwater', NULL, 'sweetwater', 'US', 1, 25.7634300000, -80.3731100000), (1127341, 1001454, 'Sweetwater', NULL, 'sweetwater', 'US', 1, 35.6014600000, -84.4610400000), (1127342, 1001407, 'Sweetwater', NULL, 'sweetwater', 'US', 1, 32.4709500000, -100.4059400000), (1127343, 1001442, 'Sweetwater County', NULL, 'sweetwater-county', 'US', 1, 41.6595000000, -108.8794200000), (1127344, 1001447, 'Swepsonville', NULL, 'swepsonville', 'US', 1, 36.0212500000, -79.3614100000), (1127345, 1001420, 'Swift County', NULL, 'swift-county', 'US', 1, 45.2827100000, -95.6814300000), (1127346, 1001434, 'Swift Trail Junction', NULL, 'swift-trail-junction', 'US', 1, 32.7297900000, -109.7139700000), (1127347, 1001407, 'Swisher County', NULL, 'swisher-county', 'US', 1, 34.5303900000, -101.7350300000), (1127348, 1001422, 'Swissvale', NULL, 'swissvale', 'US', 1, 40.4236800000, -79.8828300000), (1127349, 1001440, 'Switzerland County', NULL, 'switzerland-county', 'US', 1, 38.8261600000, -85.0370000000), (1127350, 1001422, 'Swoyersville', NULL, 'swoyersville', 'US', 1, 41.2917500000, -75.8746400000), (1127351, 1001425, 'Sycamore', NULL, 'sycamore', 'US', 1, 41.9889200000, -88.6867500000), (1127352, 1001401, 'Sykesville', NULL, 'sykesville', 'US', 1, 39.3737100000, -76.9677600000), (1127353, 1001422, 'Sykesville', NULL, 'sykesville', 'US', 1, 41.0503400000, -78.8222500000), (1127354, 1001456, 'Sylacauga', NULL, 'sylacauga', 'US', 1, 33.1731700000, -86.2516400000), (1127355, 1001447, 'Sylva', NULL, 'sylva', 'US', 1, 35.3737100000, -83.2259800000), (1127356, 1001452, 'Sylvan Beach', NULL, 'sylvan-beach', 'US', 1, 42.4647900000, -77.1083000000), (1127357, 1001426, 'Sylvan Lake', NULL, 'sylvan-lake', 'US', 1, 42.6114200000, -83.3285500000), (1127358, 1001456, 'Sylvan Springs', NULL, 'sylvan-springs', 'US', 1, 33.5156600000, -87.0149900000), (1127359, 1001456, 'Sylvania', NULL, 'sylvania', 'US', 1, 34.5623100000, -85.8124700000), (1127360, 1001455, 'Sylvania', NULL, 'sylvania', 'US', 1, 32.7504400000, -81.6367800000), (1127361, 1001455, 'Sylvester', NULL, 'sylvester', 'US', 1, 31.5309200000, -83.8369300000), (1127362, 1001452, 'Syosset', NULL, 'syosset', 'US', 1, 40.8262100000, -73.5020700000), (1127363, 1001440, 'Syracuse', NULL, 'syracuse', 'US', 1, 41.4278300000, -85.7524900000), (1127364, 1001408, 'Syracuse', NULL, 'syracuse', 'US', 1, 40.6572200000, -96.1864000000), (1127365, 1001452, 'Syracuse', NULL, 'syracuse', 'US', 1, 43.0481200000, -76.1474200000), (1127366, 1001406, 'Syracuse', NULL, 'syracuse', 'US', 1, 37.9807100000, -101.7543000000), (1127367, 1001414, 'Syracuse', NULL, 'syracuse', 'US', 1, 41.0893900000, -112.0646700000), (1127368, 1001447, 'Tabor City', NULL, 'tabor-city', 'US', 1, 34.1487800000, -78.8766900000), (1127369, 1001462, 'Tacoma', NULL, 'tacoma', 'US', 1, 47.2528800000, -122.4442900000), (1127370, 1001422, 'Tacony', NULL, 'tacony', 'US', 1, 40.0312200000, -75.0443400000), (1127371, 1001436, 'Taft', NULL, 'taft', 'US', 1, 28.4297300000, -81.3650700000), (1127372, 1001407, 'Taft', NULL, 'taft', 'US', 1, 27.9789100000, -97.3986000000), (1127373, 1001416, 'Taft', NULL, 'taft', 'US', 1, 35.1424700000, -119.4565100000), (1127374, 1001416, 'Taft Heights', NULL, 'taft-heights', 'US', 1, 35.1346900000, -119.4726200000), (1127375, 1001416, 'Taft Mosswood', NULL, 'taft-mosswood', 'US', 1, 37.9138500000, -121.2831600000), (1127376, 1001407, 'Taft Southwest (historical)', NULL, 'taft-southwest-historical', 'US', 1, 27.9739100000, -97.4030500000), (1127377, 1001421, 'Tahlequah', NULL, 'tahlequah', 'US', 1, 35.9153700000, -94.9699600000), (1127378, 1001416, 'Tahoe Vista', NULL, 'tahoe-vista', 'US', 1, 39.2399100000, -120.0510200000), (1127379, 1001407, 'Tahoka', NULL, 'tahoka', 'US', 1, 33.1667600000, -101.7937700000), (1127380, 1001416, 'Tahoma', NULL, 'tahoma', 'US', 1, 39.0674100000, -120.1282400000), (1127381, 1001441, 'Tainter Lake', NULL, 'tainter-lake', 'US', 1, 44.9891300000, -91.8476700000), (1127382, 1001401, 'Takoma Park', NULL, 'takoma-park', 'US', 1, 38.9778900000, -77.0074800000), (1127383, 1001455, 'Talbot County', NULL, 'talbot-county', 'US', 1, 32.6994900000, -84.5330100000), (1127384, 1001401, 'Talbot County', NULL, 'talbot-county', 'US', 1, 38.7491000000, -76.1786200000), (1127385, 1001455, 'Talbotton', NULL, 'talbotton', 'US', 1, 32.6776400000, -84.5393700000), (1127386, 1001415, 'Talent', NULL, 'talent', 'US', 1, 42.2456800000, -122.7886500000), (1127387, 1001455, 'Taliaferro County', NULL, 'taliaferro-county', 'US', 1, 33.5660900000, -82.8787600000), (1127388, 1001421, 'Talihina', NULL, 'talihina', 'US', 1, 34.7514900000, -95.0480200000), (1127389, 1001456, 'Talladega', NULL, 'talladega', 'US', 1, 33.4359400000, -86.1058000000), (1127390, 1001456, 'Talladega County', NULL, 'talladega-county', 'US', 1, 33.3800600000, -86.1659100000), (1127391, 1001436, 'Tallahassee', NULL, 'tallahassee', 'US', 1, 30.4382600000, -84.2807300000), (1127392, 1001430, 'Tallahatchie County', NULL, 'tallahatchie-county', 'US', 1, 33.9504700000, -90.1732600000), (1127393, 1001455, 'Tallapoosa', NULL, 'tallapoosa', 'US', 1, 33.7445500000, -85.2880100000), (1127394, 1001456, 'Tallapoosa County', NULL, 'tallapoosa-county', 'US', 1, 32.8624000000, -85.7975000000), (1127395, 1001456, 'Tallassee', NULL, 'tallassee', 'US', 1, 32.5359700000, -85.8932900000), (1127396, 1001457, 'Tallulah', NULL, 'tallulah', 'US', 1, 32.4084800000, -91.1867800000), (1127397, 1001416, 'Talmage', NULL, 'talmage', 'US', 1, 39.1332300000, -123.1677800000), (1127398, 1001421, 'Taloga', NULL, 'taloga', 'US', 1, 36.0386500000, -98.9637100000), (1127399, 1001407, 'Talty', NULL, 'talty', 'US', 1, 32.6831900000, -96.3855400000), (1127400, 1001459, 'Tama', NULL, 'tama', 'US', 1, 41.9666600000, -92.5768600000), (1127401, 1001459, 'Tama County', NULL, 'tama-county', 'US', 1, 42.0798100000, -92.5325400000), (1127402, 1001416, 'Tamalpais Valley', NULL, 'tamalpais-valley', 'US', 1, 37.8796500000, -122.5458100000), (1127403, 1001416, 'Tamalpais-Homestead Valley', NULL, 'tamalpais-homestead-valley', 'US', 1, 37.8783400000, -122.5362500000), (1127404, 1001422, 'Tamaqua', NULL, 'tamaqua', 'US', 1, 40.7973100000, -75.9693700000), (1127405, 1001436, 'Tamarac', NULL, 'tamarac', 'US', 1, 26.2128600000, -80.2497700000), (1127406, 1001436, 'Tamiami', NULL, 'tamiami', 'US', 1, 25.7587100000, -80.3983900000), (1127407, 1001436, 'Tampa', NULL, 'tampa', 'US', 1, 27.9475200000, -82.4584300000), (1127408, 1001404, 'Tamworth', NULL, 'tamworth', 'US', 1, 43.8598000000, -71.2631300000), (1127409, 1001400, 'Tanaina', NULL, 'tanaina', 'US', 1, 61.6269400000, -149.4280600000), (1127410, 1001451, 'Taney County', NULL, 'taney-county', 'US', 1, 36.6547300000, -93.0411100000), (1127411, 1001401, 'Taneytown', NULL, 'taneytown', 'US', 1, 39.6578800000, -77.1744300000), (1127412, 1001436, 'Tangelo Park', NULL, 'tangelo-park', 'US', 1, 28.4558400000, -81.4459000000), (1127413, 1001415, 'Tangent', NULL, 'tangent', 'US', 1, 44.5412300000, -123.1081500000), (1127414, 1001436, 'Tangerine', NULL, 'tangerine', 'US', 1, 28.7649900000, -81.6306300000), (1127415, 1001457, 'Tangipahoa Parish', NULL, 'tangipahoa-parish', 'US', 1, 30.6266500000, -90.4056800000), (1127416, 1001462, 'Tanglewilde', NULL, 'tanglewilde', 'US', 1, 47.0515000000, -122.7824100000), (1127417, 1001462, 'Tanglewilde-Thompson Place', NULL, 'tanglewilde-thompson-place', 'US', 1, 47.0511600000, -122.7808100000), (1127418, 1001462, 'Tanner', NULL, 'tanner', 'US', 1, 47.4753800000, -121.7462200000), (1127419, 1001422, 'Tannersville', NULL, 'tannersville', 'US', 1, 41.0400900000, -75.3057400000), (1127420, 1001434, 'Tanque Verde', NULL, 'tanque-verde', 'US', 1, 32.2517400000, -110.7373100000), (1127421, 1001451, 'Taos', NULL, 'taos', 'US', 1, 38.5064300000, -92.0710100000), (1127422, 1001423, 'Taos', NULL, 'taos', 'US', 1, 36.4072500000, -105.5730700000), (1127423, 1001423, 'Taos County', NULL, 'taos-county', 'US', 1, 36.5783000000, -105.6309700000), (1127424, 1001423, 'Taos Pueblo', NULL, 'taos-pueblo', 'US', 1, 36.4386400000, -105.5444500000), (1127425, 1001427, 'Tappahannock', NULL, 'tappahannock', 'US', 1, 37.9254100000, -76.8591300000), (1127426, 1001452, 'Tappan', NULL, 'tappan', 'US', 1, 41.0220400000, -73.9473600000), (1127427, 1001416, 'Tara Hills', NULL, 'tara-hills', 'US', 1, 37.9935300000, -122.3163600000), (1127428, 1001447, 'Tarboro', NULL, 'tarboro', 'US', 1, 35.8968200000, -77.5358000000), (1127429, 1001422, 'Tarentum', NULL, 'tarentum', 'US', 1, 40.6014600000, -79.7597700000), (1127430, 1001435, 'Tariffville', NULL, 'tariffville', 'US', 1, 41.9087100000, -72.7601000000), (1127431, 1001451, 'Tarkio', NULL, 'tarkio', 'US', 1, 40.4402800000, -95.3777600000), (1127432, 1001416, 'Tarpey Village', NULL, 'tarpey-village', 'US', 1, 36.7930100000, -119.7009700000), (1127433, 1001436, 'Tarpon Springs', NULL, 'tarpon-springs', 'US', 1, 28.1461200000, -82.7567700000), (1127434, 1001456, 'Tarrant', NULL, 'tarrant', 'US', 1, 33.5834400000, -86.7727700000), (1127435, 1001407, 'Tarrant County', NULL, 'tarrant-county', 'US', 1, 32.7715600000, -97.2912400000), (1127436, 1001452, 'Tarrytown', NULL, 'tarrytown', 'US', 1, 41.0762100000, -73.8587500000), (1127437, 1001422, 'Tatamy', NULL, 'tatamy', 'US', 1, 40.7409300000, -75.2571200000), (1127438, 1001430, 'Tate County', NULL, 'tate-county', 'US', 1, 34.6503200000, -89.9447800000), (1127439, 1001455, 'Tattnall County', NULL, 'tattnall-county', 'US', 1, 32.0457500000, -82.0581800000), (1127440, 1001407, 'Tatum', NULL, 'tatum', 'US', 1, 32.3159900000, -94.5165900000), (1127441, 1001433, 'Taunton', NULL, 'taunton', 'US', 1, 41.9001000000, -71.0897700000), (1127442, 1001436, 'Tavares', NULL, 'tavares', 'US', 1, 28.8041600000, -81.7256300000), (1127443, 1001436, 'Tavernier', NULL, 'tavernier', 'US', 1, 25.0115200000, -80.5150600000), (1127444, 1001426, 'Tawas City', NULL, 'tawas-city', 'US', 1, 44.2694600000, -83.5147000000), (1127445, 1001456, 'Taylor', NULL, 'taylor', 'US', 1, 31.1649000000, -85.4682700000), (1127446, 1001407, 'Taylor', NULL, 'taylor', 'US', 1, 30.5707600000, -97.4094400000), (1127447, 1001426, 'Taylor', NULL, 'taylor', 'US', 1, 42.2408700000, -83.2696500000), (1127448, 1001408, 'Taylor', NULL, 'taylor', 'US', 1, 41.7702800000, -99.3787200000), (1127449, 1001422, 'Taylor', NULL, 'taylor', 'US', 1, 41.3948000000, -75.7065800000), (1127450, 1001434, 'Taylor', NULL, 'taylor', 'US', 1, 34.4650400000, -110.0912300000), (1127451, 1001436, 'Taylor County', NULL, 'taylor-county', 'US', 1, 30.0195700000, -83.6189700000), (1127452, 1001455, 'Taylor County', NULL, 'taylor-county', 'US', 1, 32.5554600000, -84.2504600000), (1127453, 1001419, 'Taylor County', NULL, 'taylor-county', 'US', 1, 37.3664600000, -85.3278400000), (1127454, 1001407, 'Taylor County', NULL, 'taylor-county', 'US', 1, 32.3014700000, -99.8901200000), (1127455, 1001429, 'Taylor County', NULL, 'taylor-county', 'US', 1, 39.3359900000, -80.0461800000), (1127456, 1001459, 'Taylor County', NULL, 'taylor-county', 'US', 1, 40.7374300000, -94.6964100000), (1127457, 1001441, 'Taylor County', NULL, 'taylor-county', 'US', 1, 45.2115300000, -90.5012500000), (1127458, 1001436, 'Taylor Creek', NULL, 'taylor-creek', 'US', 1, 27.2167100000, -80.7895000000), (1127459, 1001407, 'Taylor Lake Village', NULL, 'taylor-lake-village', 'US', 1, 29.5752300000, -95.0502100000), (1127460, 1001419, 'Taylor Mill', NULL, 'taylor-mill', 'US', 1, 38.9975600000, -84.4963300000), (1127461, 1001443, 'Taylors', NULL, 'taylors', 'US', 1, 34.9203900000, -82.2962300000), (1127462, 1001420, 'Taylors Falls', NULL, 'taylors-falls', 'US', 1, 45.4019100000, -92.6524300000), (1127463, 1001419, 'Taylorsville', NULL, 'taylorsville', 'US', 1, 38.0317300000, -85.3424500000), (1127464, 1001430, 'Taylorsville', NULL, 'taylorsville', 'US', 1, 31.8296000000, -89.4281200000), (1127465, 1001447, 'Taylorsville', NULL, 'taylorsville', 'US', 1, 35.9218000000, -81.1764700000), (1127466, 1001414, 'Taylorsville', NULL, 'taylorsville', 'US', 1, 40.6677200000, -111.9388300000), (1127467, 1001425, 'Taylorville', NULL, 'taylorville', 'US', 1, 39.5489400000, -89.2945300000), (1127468, 1001454, 'Tazewell', NULL, 'tazewell', 'US', 1, 36.4542500000, -83.5693500000), (1127469, 1001427, 'Tazewell', NULL, 'tazewell', 'US', 1, 37.1148400000, -81.5195500000), (1127470, 1001427, 'Tazewell County', NULL, 'tazewell-county', 'US', 1, 37.1249700000, -81.5606600000), (1127471, 1001425, 'Tazewell County', NULL, 'tazewell-county', 'US', 1, 40.5075200000, -89.5134200000), (1127472, 1001430, 'Tchula', NULL, 'tchula', 'US', 1, 33.1829000000, -90.2228600000), (1127473, 1001445, 'Tea', NULL, 'tea', 'US', 1, 43.4463700000, -96.8358800000), (1127474, 1001407, 'Teague', NULL, 'teague', 'US', 1, 31.6271100000, -96.2838600000), (1127475, 1001417, 'Teaneck', NULL, 'teaneck', 'US', 1, 40.8976000000, -74.0159700000), (1127476, 1001433, 'Teaticket', NULL, 'teaticket', 'US', 1, 41.5645500000, -70.5958600000), (1127477, 1001429, 'Teays Valley', NULL, 'teays-valley', 'US', 1, 38.4500900000, -81.9293000000), (1127478, 1001421, 'Tecumseh', NULL, 'tecumseh', 'US', 1, 35.2578500000, -96.9366900000), (1127479, 1001426, 'Tecumseh', NULL, 'tecumseh', 'US', 1, 42.0039300000, -83.9449400000), (1127480, 1001408, 'Tecumseh', NULL, 'tecumseh', 'US', 1, 40.3666700000, -96.1961200000), (1127481, 1001436, 'Tedder', NULL, 'tedder', 'US', 1, 26.2842500000, -80.1222700000), (1127482, 1001443, 'Tega Cay', NULL, 'tega-cay', 'US', 1, 35.0243100000, -81.0278500000), (1127483, 1001416, 'Tehachapi', NULL, 'tehachapi', 'US', 1, 35.1321900000, -118.4489700000), (1127484, 1001416, 'Tehama County', NULL, 'tehama-county', 'US', 1, 40.1257400000, -122.2338800000), (1127485, 1001408, 'Tekamah', NULL, 'tekamah', 'US', 1, 41.7783200000, -96.2211300000), (1127486, 1001455, 'Telfair County', NULL, 'telfair-county', 'US', 1, 31.9298000000, -82.9389900000), (1127487, 1001422, 'Telford', NULL, 'telford', 'US', 1, 40.3220500000, -75.3279500000), (1127488, 1001440, 'Tell City', NULL, 'tell-city', 'US', 1, 37.9514400000, -86.7677700000), (1127489, 1001450, 'Teller County', NULL, 'teller-county', 'US', 1, 38.8821700000, -105.1618300000), (1127490, 1001454, 'Tellico Village', NULL, 'tellico-village', 'US', 1, 35.6832100000, -84.2551800000), (1127491, 1001450, 'Telluride', NULL, 'telluride', 'US', 1, 37.9374900000, -107.8122900000), (1127492, 1001416, 'Temecula', NULL, 'temecula', 'US', 1, 33.4936400000, -117.1483600000), (1127493, 1001416, 'Temelec', NULL, 'temelec', 'US', 1, 38.2665800000, -122.4927600000), (1127494, 1001434, 'Tempe', NULL, 'tempe', 'US', 1, 33.4147700000, -111.9093100000), (1127495, 1001434, 'Tempe Junction', NULL, 'tempe-junction', 'US', 1, 33.4142100000, -111.9434800000), (1127496, 1001426, 'Temperance', NULL, 'temperance', 'US', 1, 41.7792100000, -83.5688200000), (1127497, 1001455, 'Temple', NULL, 'temple', 'US', 1, 33.7370500000, -85.0324400000), (1127498, 1001407, 'Temple', NULL, 'temple', 'US', 1, 31.0982300000, -97.3427800000), (1127499, 1001404, 'Temple', NULL, 'temple', 'US', 1, 42.8181400000, -71.8514700000), (1127500, 1001422, 'Temple', NULL, 'temple', 'US', 1, 40.4087000000, -75.9216000000), (1127501, 1001416, 'Temple City', NULL, 'temple-city', 'US', 1, 34.1072300000, -118.0578500000), (1127502, 1001401, 'Temple Hills', NULL, 'temple-hills', 'US', 1, 38.8140000000, -76.9455300000), (1127503, 1001436, 'Temple Terrace', NULL, 'temple-terrace', 'US', 1, 28.0353000000, -82.3892600000), (1127504, 1001433, 'Templeton', NULL, 'templeton', 'US', 1, 42.5556400000, -72.0675800000), (1127505, 1001416, 'Templeton', NULL, 'templeton', 'US', 1, 35.5496900000, -120.7060000000), (1127506, 1001417, 'Ten Mile Run', NULL, 'ten-mile-run', 'US', 1, 40.4130100000, -74.6022300000), (1127507, 1001417, 'Tenafly', NULL, 'tenafly', 'US', 1, 40.9253800000, -73.9629200000), (1127508, 1001407, 'Tenaha', NULL, 'tenaha', 'US', 1, 31.9437800000, -94.2440900000), (1127509, 1001462, 'Tenino', NULL, 'tenino', 'US', 1, 46.8567700000, -122.8529100000), (1127510, 1001454, 'Tennessee Ridge', NULL, 'tennessee-ridge', 'US', 1, 36.3120000000, -87.7733600000), (1127511, 1001455, 'Tennille', NULL, 'tennille', 'US', 1, 32.9359900000, -82.8115300000), (1127512, 1001457, 'Tensas Parish', NULL, 'tensas-parish', 'US', 1, 32.0016600000, -91.3400700000), (1127513, 1001436, 'Tequesta', NULL, 'tequesta', 'US', 1, 26.9681100000, -80.1286500000), (1127514, 1001429, 'Terra Alta', NULL, 'terra-alta', 'US', 1, 39.4456500000, -79.5464400000), (1127515, 1001416, 'Terra Bella', NULL, 'terra-bella', 'US', 1, 35.9624500000, -119.0442700000), (1127516, 1001436, 'Terra Mar', NULL, 'terra-mar', 'US', 1, 26.2161900000, -80.0953200000), (1127517, 1001452, 'Terrace Heights', NULL, 'terrace-heights', 'US', 1, 40.7214900000, -73.7693000000), (1127518, 1001462, 'Terrace Heights', NULL, 'terrace-heights', 'US', 1, 46.6062400000, -120.4397900000), (1127519, 1001435, 'Terramuggus', NULL, 'terramuggus', 'US', 1, 41.6351000000, -72.4703600000), (1127520, 1001440, 'Terre Haute', NULL, 'terre-haute', 'US', 1, 39.4667000000, -87.4139100000), (1127521, 1001451, 'Terre Haute', NULL, 'terre-haute', 'US', 1, 40.4394600000, -93.2341000000), (1127522, 1001422, 'Terre Hill', NULL, 'terre-hill', 'US', 1, 40.1573200000, -76.0505000000), (1127523, 1001451, 'Terre du Lac', NULL, 'terre-du-lac', 'US', 1, 37.9117200000, -90.6254100000), (1127524, 1001415, 'Terrebonne', NULL, 'terrebonne', 'US', 1, 44.3529000000, -121.1778100000), (1127525, 1001457, 'Terrebonne Parish', NULL, 'terrebonne-parish', 'US', 1, 29.3374400000, -90.8376400000), (1127526, 1001407, 'Terrell', NULL, 'terrell', 'US', 1, 32.7359600000, -96.2752600000), (1127527, 1001455, 'Terrell County', NULL, 'terrell-county', 'US', 1, 31.7768800000, -84.4369200000), (1127528, 1001407, 'Terrell County', NULL, 'terrell-county', 'US', 1, 30.2249600000, -102.0764900000), (1127529, 1001407, 'Terrell Hills', NULL, 'terrell-hills', 'US', 1, 29.4749500000, -98.4508500000), (1127530, 1001430, 'Terry', NULL, 'terry', 'US', 1, 32.0962600000, -90.2942600000), (1127531, 1001446, 'Terry', NULL, 'terry', 'US', 1, 46.7930600000, -105.3122100000), (1127532, 1001407, 'Terry County', NULL, 'terry-county', 'US', 1, 33.1738100000, -102.3352000000), (1127533, 1001457, 'Terrytown', NULL, 'terrytown', 'US', 1, 29.9102100000, -90.0325700000), (1127534, 1001408, 'Terrytown', NULL, 'terrytown', 'US', 1, 41.8474700000, -103.6616100000), (1127535, 1001435, 'Terryville', NULL, 'terryville', 'US', 1, 41.6781500000, -73.0109400000), (1127536, 1001452, 'Terryville', NULL, 'terryville', 'US', 1, 40.9089900000, -73.0651100000), (1127537, 1001460, 'Teton County', NULL, 'teton-county', 'US', 1, 43.7594600000, -111.2077000000), (1127538, 1001446, 'Teton County', NULL, 'teton-county', 'US', 1, 47.8372900000, -112.2408000000), (1127539, 1001442, 'Teton County', NULL, 'teton-county', 'US', 1, 43.9347600000, -110.5897400000), (1127540, 1001425, 'Teutopolis', NULL, 'teutopolis', 'US', 1, 39.1331000000, -88.4719900000), (1127541, 1001416, 'Teviston', NULL, 'teviston', 'US', 1, 35.9289400000, -119.2783100000), (1127542, 1001433, 'Tewksbury', NULL, 'tewksbury', 'US', 1, 42.6106500000, -71.2342200000), (1127543, 1001421, 'Texanna', NULL, 'texanna', 'US', 1, 35.3473200000, -95.4369200000), (1127544, 1001444, 'Texarkana', NULL, 'texarkana', 'US', 1, 33.4417900000, -94.0376900000), (1127545, 1001407, 'Texarkana', NULL, 'texarkana', 'US', 1, 33.4251300000, -94.0476900000), (1127546, 1001407, 'Texas City', NULL, 'texas-city', 'US', 1, 29.3838500000, -94.9027000000), (1127547, 1001451, 'Texas County', NULL, 'texas-county', 'US', 1, 37.3173100000, -91.9650500000), (1127548, 1001421, 'Texas County', NULL, 'texas-county', 'US', 1, 36.7479100000, -101.4900100000), (1127549, 1001423, 'Texico', NULL, 'texico', 'US', 1, 34.3886900000, -103.0513400000), (1127550, 1001434, 'Thatcher', NULL, 'thatcher', 'US', 1, 32.8492300000, -109.7592500000), (1127551, 1001451, 'Thayer', NULL, 'thayer', 'US', 1, 36.5245100000, -91.5382000000), (1127552, 1001408, 'Thayer County', NULL, 'thayer-county', 'US', 1, 40.1762900000, -97.5949200000), (1127553, 1001436, 'The Acreage', NULL, 'the-acreage', 'US', 1, 26.7940400000, -80.2674900000), (1127554, 1001452, 'The Bronx', NULL, 'the-bronx', 'US', 1, 40.8498500000, -73.8664100000), (1127555, 1001407, 'The Colony', NULL, 'the-colony', 'US', 1, 33.0890100000, -96.8863900000), (1127556, 1001436, 'The Crossings', NULL, 'the-crossings', 'US', 1, 25.6706600000, -80.4011700000), (1127557, 1001415, 'The Dalles', NULL, 'the-dalles', 'US', 1, 45.5945600000, -121.1786800000), (1127558, 1001425, 'The Galena Territory', NULL, 'the-galena-territory', 'US', 1, 42.3934300000, -90.3258200000), (1127559, 1001436, 'The Hammocks', NULL, 'the-hammocks', 'US', 1, 25.6714900000, -80.4445000000), (1127560, 1001422, 'The Hideout', NULL, 'the-hideout', 'US', 1, 41.4273600000, -75.3525500000), (1127561, 1001407, 'The Hills', NULL, 'the-hills', 'US', 1, 30.3479800000, -97.9850100000), (1127562, 1001436, 'The Meadows', NULL, 'the-meadows', 'US', 1, 27.3617100000, -82.4689800000), (1127563, 1001450, 'The Pinery', NULL, 'the-pinery', 'US', 1, 39.4552700000, -104.7344200000), (1127564, 1001421, 'The Village', NULL, 'the-village', 'US', 1, 35.5608900000, -97.5514300000), (1127565, 1001436, 'The Villages', NULL, 'the-villages', 'US', 1, 28.9340800000, -81.9599400000), (1127566, 1001407, 'The Woodlands', NULL, 'the-woodlands', 'US', 1, 30.1579900000, -95.4893800000), (1127567, 1001408, 'Thedford', NULL, 'thedford', 'US', 1, 41.9783300000, -100.5762500000), (1127568, 1001456, 'Theodore', NULL, 'theodore', 'US', 1, 30.5476900000, -88.1752800000), (1127569, 1001441, 'Theresa', NULL, 'theresa', 'US', 1, 43.5172200000, -88.4512100000), (1127570, 1001416, 'Thermal', NULL, 'thermal', 'US', 1, 33.6403000000, -116.1394500000), (1127571, 1001416, 'Thermalito', NULL, 'thermalito', 'US', 1, 39.5112800000, -121.5869200000), (1127572, 1001442, 'Thermopolis', NULL, 'thermopolis', 'US', 1, 43.6460700000, -108.2120400000), (1127573, 1001457, 'Thibodaux', NULL, 'thibodaux', 'US', 1, 29.7957600000, -90.8228700000), (1127574, 1001420, 'Thief River Falls', NULL, 'thief-river-falls', 'US', 1, 48.1191400000, -96.1811500000), (1127575, 1001452, 'Thiells', NULL, 'thiells', 'US', 1, 41.2106500000, -74.0176400000), (1127576, 1001441, 'Thiensville', NULL, 'thiensville', 'US', 1, 43.2375100000, -87.9787000000), (1127577, 1001425, 'Third Lake', NULL, 'third-lake', 'US', 1, 42.3739100000, -88.0109100000), (1127578, 1001421, 'Thomas', NULL, 'thomas', 'US', 1, 35.7442200000, -98.7475800000), (1127579, 1001455, 'Thomas County', NULL, 'thomas-county', 'US', 1, 30.8636800000, -83.9193100000), (1127580, 1001406, 'Thomas County', NULL, 'thomas-county', 'US', 1, 39.3509700000, -101.0555300000), (1127581, 1001408, 'Thomas County', NULL, 'thomas-county', 'US', 1, 41.9135100000, -100.5558500000), (1127582, 1001425, 'Thomasboro', NULL, 'thomasboro', 'US', 1, 40.2417000000, -88.1842100000), (1127583, 1001455, 'Thomaston', NULL, 'thomaston', 'US', 1, 32.8881900000, -84.3265900000), (1127584, 1001435, 'Thomaston', NULL, 'thomaston', 'US', 1, 41.6739900000, -73.0731600000), (1127585, 1001453, 'Thomaston', NULL, 'thomaston', 'US', 1, 44.0789700000, -69.1817100000), (1127586, 1001452, 'Thomaston', NULL, 'thomaston', 'US', 1, 40.7862100000, -73.7137400000), (1127587, 1001456, 'Thomasville', NULL, 'thomasville', 'US', 1, 31.9134900000, -87.7358400000), (1127588, 1001455, 'Thomasville', NULL, 'thomasville', 'US', 1, 30.8365800000, -83.9787800000), (1127589, 1001447, 'Thomasville', NULL, 'thomasville', 'US', 1, 35.8826400000, -80.0819900000), (1127590, 1001435, 'Thompson', NULL, 'thompson', 'US', 1, 41.9587100000, -71.8625700000), (1127591, 1001418, 'Thompson', NULL, 'thompson', 'US', 1, 47.7735900000, -97.1098000000), (1127592, 1001446, 'Thompson Falls', NULL, 'thompson-falls', 'US', 1, 47.5948900000, -115.3383400000), (1127593, 1001454, 'Thompson''s Station', NULL, 'thompson-s-station', 'US', 1, 35.8020100000, -86.9113900000), (1127594, 1001435, 'Thompsonville', NULL, 'thompsonville', 'US', 1, 41.9970400000, -72.5989800000), (1127595, 1001422, 'Thompsonville', NULL, 'thompsonville', 'US', 1, 40.2909000000, -80.1081100000), (1127596, 1001455, 'Thomson', NULL, 'thomson', 'US', 1, 33.4706900000, -82.5045700000), (1127597, 1001436, 'Thonotosassa', NULL, 'thonotosassa', 'US', 1, 28.0614100000, -82.3023100000), (1127598, 1001423, 'Thoreau', NULL, 'thoreau', 'US', 1, 35.4025300000, -108.2234000000), (1127599, 1001422, 'Thorndale', NULL, 'thorndale', 'US', 1, 39.9928800000, -75.7452200000), (1127600, 1001407, 'Thorndale', NULL, 'thorndale', 'US', 1, 30.6138100000, -97.2055500000), (1127601, 1001425, 'Thornton', NULL, 'thornton', 'US', 1, 41.5680900000, -87.6081000000), (1127602, 1001404, 'Thornton', NULL, 'thornton', 'US', 1, 43.8928500000, -71.6759100000), (1127603, 1001450, 'Thornton', NULL, 'thornton', 'US', 1, 39.8680400000, -104.9719200000), (1127604, 1001416, 'Thornton', NULL, 'thornton', 'US', 1, 38.2260300000, -121.4246700000), (1127605, 1001440, 'Thorntown', NULL, 'thorntown', 'US', 1, 40.1294800000, -86.6066700000), (1127606, 1001452, 'Thornwood', NULL, 'thornwood', 'US', 1, 41.1234300000, -73.7790200000), (1127607, 1001441, 'Thorp', NULL, 'thorp', 'US', 1, 44.9610800000, -90.7998600000), (1127608, 1001456, 'Thorsby', NULL, 'thorsby', 'US', 1, 32.9156800000, -86.7158200000), (1127609, 1001416, 'Thousand Oaks', NULL, 'thousand-oaks', 'US', 1, 34.1705600000, -118.8375900000), (1127610, 1001416, 'Thousand Palms', NULL, 'thousand-palms', 'US', 1, 33.8200200000, -116.3902900000), (1127611, 1001446, 'Three Forks', NULL, 'three-forks', 'US', 1, 45.8924300000, -111.5521900000), (1127612, 1001436, 'Three Lakes', NULL, 'three-lakes', 'US', 1, 25.6420500000, -80.3983900000), (1127613, 1001462, 'Three Lakes', NULL, 'three-lakes', 'US', 1, 47.9448200000, -122.0115200000), (1127614, 1001436, 'Three Oaks', NULL, 'three-oaks', 'US', 1, 26.4700800000, -81.7939700000), (1127615, 1001426, 'Three Oaks', NULL, 'three-oaks', 'US', 1, 41.7986500000, -86.6105800000), (1127616, 1001434, 'Three Points', NULL, 'three-points', 'US', 1, 32.0767500000, -111.3137100000), (1127617, 1001407, 'Three Rivers', NULL, 'three-rivers', 'US', 1, 28.4602700000, -98.1825100000), (1127618, 1001426, 'Three Rivers', NULL, 'three-rivers', 'US', 1, 41.9439400000, -85.6324900000), (1127619, 1001433, 'Three Rivers', NULL, 'three-rivers', 'US', 1, 42.1812000000, -72.3606400000), (1127620, 1001416, 'Three Rivers', NULL, 'three-rivers', 'US', 1, 36.4388400000, -118.9045400000), (1127621, 1001415, 'Three Rivers', NULL, 'three-rivers', 'US', 1, 43.8201200000, -121.4691900000), (1127622, 1001454, 'Three Way', NULL, 'three-way', 'US', 1, 35.7759000000, -88.8595000000), (1127623, 1001407, 'Throckmorton', NULL, 'throckmorton', 'US', 1, 33.1787200000, -99.1775800000), (1127624, 1001407, 'Throckmorton County', NULL, 'throckmorton-county', 'US', 1, 33.1774900000, -99.2123700000), (1127625, 1001452, 'Throgs Neck', NULL, 'throgs-neck', 'US', 1, 40.8226000000, -73.8195800000), (1127626, 1001422, 'Throop', NULL, 'throop', 'US', 1, 41.4514700000, -75.6118500000), (1127627, 1001455, 'Thunderbolt', NULL, 'thunderbolt', 'US', 1, 32.0335400000, -81.0498300000), (1127628, 1001447, 'Thurmond', NULL, 'thurmond', 'US', 1, 36.3665200000, -80.9284100000), (1127629, 1001401, 'Thurmont', NULL, 'thurmont', 'US', 1, 39.6237100000, -77.4108200000), (1127630, 1001408, 'Thurston County', NULL, 'thurston-county', 'US', 1, 42.1581900000, -96.5441000000), (1127631, 1001462, 'Thurston County', NULL, 'thurston-county', 'US', 1, 46.9295000000, -122.8320800000), (1127632, 1001416, 'Tiburon', NULL, 'tiburon', 'US', 1, 37.8735400000, -122.4566400000), (1127633, 1001436, 'Tice', NULL, 'tice', 'US', 1, 26.6747900000, -81.8150800000), (1127634, 1001441, 'Tichigan', NULL, 'tichigan', 'US', 1, 42.8289000000, -88.1975900000), (1127635, 1001452, 'Ticonderoga', NULL, 'ticonderoga', 'US', 1, 43.8486700000, -73.4234500000), (1127636, 1001423, 'Tierra Amarilla', NULL, 'tierra-amarilla', 'US', 1, 36.7002900000, -106.5497600000), (1127637, 1001416, 'Tierra Buena', NULL, 'tierra-buena', 'US', 1, 39.1487800000, -121.6669100000), (1127638, 1001436, 'Tierra Verde', NULL, 'tierra-verde', 'US', 1, 27.6919700000, -82.7234300000), (1127639, 1001462, 'Tieton', NULL, 'tieton', 'US', 1, 46.7020700000, -120.7553500000), (1127640, 1001459, 'Tiffin', NULL, 'tiffin', 'US', 1, 41.7058500000, -91.6629500000), (1127641, 1001455, 'Tift County', NULL, 'tift-county', 'US', 1, 31.4574400000, -83.5265900000), (1127642, 1001455, 'Tifton', NULL, 'tifton', 'US', 1, 31.4504600000, -83.5085000000), (1127643, 1001415, 'Tigard', NULL, 'tigard', 'US', 1, 45.4312300000, -122.7714900000), (1127644, 1001436, 'Tiger Point', NULL, 'tiger-point', 'US', 1, 30.3785300000, -87.0555200000), (1127645, 1001443, 'Tigerville', NULL, 'tigerville', 'US', 1, 35.0684500000, -82.3684500000), (1127646, 1001407, 'Tiki Island', NULL, 'tiki-island', 'US', 1, 29.2970900000, -94.9170900000), (1127647, 1001407, 'Tilden', NULL, 'tilden', 'US', 1, 28.4619400000, -98.5491800000), (1127648, 1001415, 'Tillamook', NULL, 'tillamook', 'US', 1, 45.4564000000, -123.8455300000), (1127649, 1001415, 'Tillamook County', NULL, 'tillamook-county', 'US', 1, 45.4564500000, -123.7587700000), (1127650, 1001421, 'Tillman County', NULL, 'tillman-county', 'US', 1, 34.3728500000, -98.9242400000), (1127651, 1001456, 'Tillmans Corner', NULL, 'tillmans-corner', 'US', 1, 30.5901900000, -88.1708400000), (1127652, 1001452, 'Tillson', NULL, 'tillson', 'US', 1, 41.8289800000, -74.0684800000), (1127653, 1001425, 'Tilton', NULL, 'tilton', 'US', 1, 40.0953100000, -87.6475200000), (1127654, 1001404, 'Tilton', NULL, 'tilton', 'US', 1, 43.4423000000, -71.5889600000), (1127655, 1001404, 'Tilton-Northfield', NULL, 'tilton-northfield', 'US', 1, 43.4430000000, -71.5936400000), (1127656, 1001445, 'Timber Lake', NULL, 'timber-lake', 'US', 1, 45.4291500000, -101.0740300000), (1127657, 1001436, 'Timber Pines', NULL, 'timber-pines', 'US', 1, 28.4702800000, -82.6031600000), (1127658, 1001427, 'Timberlake', NULL, 'timberlake', 'US', 1, 37.3207000000, -79.2575300000), (1127659, 1001457, 'Timberlane', NULL, 'timberlane', 'US', 1, 29.8774300000, -90.0320200000), (1127660, 1001427, 'Timberville', NULL, 'timberville', 'US', 1, 38.6390100000, -78.7739100000), (1127661, 1001407, 'Timberwood Park', NULL, 'timberwood-park', 'US', 1, 29.7057800000, -98.4783500000), (1127662, 1001443, 'Timmonsville', NULL, 'timmonsville', 'US', 1, 34.1348800000, -79.9397900000), (1127663, 1001401, 'Timonium', NULL, 'timonium', 'US', 1, 39.4370500000, -76.6196900000), (1127664, 1001407, 'Timpson', NULL, 'timpson', 'US', 1, 31.9037800000, -94.3952000000), (1127665, 1001422, 'Tinicum', NULL, 'tinicum', 'US', 1, 40.4484400000, -75.1076700000), (1127666, 1001425, 'Tinley Park', NULL, 'tinley-park', 'US', 1, 41.5733700000, -87.7844900000), (1127667, 1001417, 'Tinton Falls', NULL, 'tinton-falls', 'US', 1, 40.3042800000, -74.1004200000), (1127668, 1001418, 'Tioga', NULL, 'tioga', 'US', 1, 48.3972400000, -102.9382400000), (1127669, 1001452, 'Tioga County', NULL, 'tioga-county', 'US', 1, 42.1703000000, -76.3063200000), (1127670, 1001422, 'Tioga County', NULL, 'tioga-county', 'US', 1, 41.7721600000, -77.2542600000), (1127671, 1001422, 'Tionesta', NULL, 'tionesta', 'US', 1, 41.4953400000, -79.4558800000); INSERT INTO `[[dbprefix]]t_city` VALUES (1127672, 1001430, 'Tippah County', NULL, 'tippah-county', 'US', 1, 34.7684000000, -88.9089000000), (1127673, 1001440, 'Tippecanoe County', NULL, 'tippecanoe-county', 'US', 1, 40.3886200000, -86.8941000000), (1127674, 1001451, 'Tipton', NULL, 'tipton', 'US', 1, 38.6555800000, -92.7799200000), (1127675, 1001459, 'Tipton', NULL, 'tipton', 'US', 1, 41.7697400000, -91.1279300000), (1127676, 1001440, 'Tipton', NULL, 'tipton', 'US', 1, 40.2822600000, -86.0411000000), (1127677, 1001422, 'Tipton', NULL, 'tipton', 'US', 1, 40.6359000000, -78.2958500000), (1127678, 1001416, 'Tipton', NULL, 'tipton', 'US', 1, 36.0594000000, -119.3120600000), (1127679, 1001454, 'Tipton County', NULL, 'tipton-county', 'US', 1, 35.4968700000, -89.7592400000), (1127680, 1001440, 'Tipton County', NULL, 'tipton-county', 'US', 1, 40.3113500000, -86.0518600000), (1127681, 1001454, 'Tiptonville', NULL, 'tiptonville', 'US', 1, 36.3784000000, -89.4720200000), (1127682, 1001421, 'Tishomingo', NULL, 'tishomingo', 'US', 1, 34.2362100000, -96.6786100000), (1127683, 1001430, 'Tishomingo County', NULL, 'tishomingo-county', 'US', 1, 34.7404300000, -88.2393200000), (1127684, 1001407, 'Titus County', NULL, 'titus-county', 'US', 1, 33.2166000000, -94.9656700000), (1127685, 1001436, 'Titusville', NULL, 'titusville', 'US', 1, 28.6122200000, -80.8075500000), (1127686, 1001422, 'Titusville', NULL, 'titusville', 'US', 1, 41.6270000000, -79.6736600000), (1127687, 1001461, 'Tiverton', NULL, 'tiverton', 'US', 1, 41.6259400000, -71.2133800000), (1127688, 1001452, 'Tivoli', NULL, 'tivoli', 'US', 1, 42.0584200000, -73.9093000000), (1127689, 1001447, 'Toast', NULL, 'toast', 'US', 1, 36.5004100000, -80.6264500000), (1127690, 1001447, 'Tobaccoville', NULL, 'tobaccoville', 'US', 1, 36.2381900000, -80.3714400000), (1127691, 1001455, 'Toccoa', NULL, 'toccoa', 'US', 1, 34.5773200000, -83.3323900000), (1127692, 1001419, 'Todd County', NULL, 'todd-county', 'US', 1, 36.8355600000, -87.1791500000), (1127693, 1001420, 'Todd County', NULL, 'todd-county', 'US', 1, 46.0706200000, -94.8976000000), (1127694, 1001445, 'Todd County', NULL, 'todd-county', 'US', 1, 43.1933700000, -100.7184100000), (1127695, 1001450, 'Todd Creek', NULL, 'todd-creek', 'US', 1, 39.9780400000, -104.8733100000), (1127696, 1001422, 'Toftrees', NULL, 'toftrees', 'US', 1, 40.8260400000, -77.8811000000), (1127697, 1001400, 'Tok', NULL, 'tok', 'US', 1, 63.3366700000, -142.9855600000), (1127698, 1001425, 'Toledo', NULL, 'toledo', 'US', 1, 39.2736500000, -88.2436500000), (1127699, 1001459, 'Toledo', NULL, 'toledo', 'US', 1, 41.9955500000, -92.5768600000), (1127700, 1001415, 'Toledo', NULL, 'toledo', 'US', 1, 44.6215100000, -123.9384500000), (1127701, 1001435, 'Tolland', NULL, 'tolland', 'US', 1, 41.8714900000, -72.3686900000), (1127702, 1001435, 'Tolland County', NULL, 'tolland-county', 'US', 1, 41.8550100000, -72.3364900000), (1127703, 1001434, 'Tolleson', NULL, 'tolleson', 'US', 1, 33.4500400000, -112.2593200000), (1127704, 1001425, 'Tolono', NULL, 'tolono', 'US', 1, 39.9861400000, -88.2589400000), (1127705, 1001425, 'Toluca', NULL, 'toluca', 'US', 1, 41.0022600000, -89.1334200000), (1127706, 1001407, 'Tom Bean', NULL, 'tom-bean', 'US', 1, 33.5201100000, -96.4838700000), (1127707, 1001407, 'Tom Green County', NULL, 'tom-green-county', 'US', 1, 31.4044000000, -100.4620700000), (1127708, 1001441, 'Tomah', NULL, 'tomah', 'US', 1, 43.9785800000, -90.5040200000), (1127709, 1001441, 'Tomahawk', NULL, 'tomahawk', 'US', 1, 45.4710800000, -89.7298600000), (1127710, 1001407, 'Tomball', NULL, 'tomball', 'US', 1, 30.0971600000, -95.6160500000), (1127711, 1001434, 'Tombstone', NULL, 'tombstone', 'US', 1, 31.7128700000, -110.0675800000), (1127712, 1001423, 'Tome', NULL, 'tome', 'US', 1, 34.7408900000, -106.7283600000), (1127713, 1001452, 'Tompkins County', NULL, 'tompkins-county', 'US', 1, 42.4520200000, -76.4736600000), (1127714, 1001419, 'Tompkinsville', NULL, 'tompkinsville', 'US', 1, 36.7022800000, -85.6916400000), (1127715, 1001452, 'Tompkinsville', NULL, 'tompkinsville', 'US', 1, 40.6381200000, -74.0779500000), (1127716, 1001417, 'Toms River', NULL, 'toms-river', 'US', 1, 39.9537300000, -74.1979200000), (1127717, 1001462, 'Tonasket', NULL, 'tonasket', 'US', 1, 48.7051500000, -119.4395000000), (1127718, 1001452, 'Tonawanda', NULL, 'tonawanda', 'US', 1, 43.0203300000, -78.8803100000), (1127719, 1001406, 'Tonganoxie', NULL, 'tonganoxie', 'US', 1, 39.1097200000, -95.0877500000), (1127720, 1001420, 'Tonka Bay', NULL, 'tonka-bay', 'US', 1, 44.9085700000, -93.5930100000), (1127721, 1001421, 'Tonkawa', NULL, 'tonkawa', 'US', 1, 36.6783700000, -97.3100400000), (1127722, 1001458, 'Tonopah', NULL, 'tonopah', 'US', 1, 38.0671600000, -117.2300800000), (1127723, 1001444, 'Tontitown', NULL, 'tontitown', 'US', 1, 36.1778600000, -94.2335400000), (1127724, 1001434, 'Tonto Basin', NULL, 'tonto-basin', 'US', 1, 33.8317100000, -111.2945700000), (1127725, 1001414, 'Tooele', NULL, 'tooele', 'US', 1, 40.5307800000, -112.2982800000), (1127726, 1001414, 'Tooele County', NULL, 'tooele-county', 'US', 1, 40.4487500000, -113.1310600000), (1127727, 1001407, 'Tool', NULL, 'tool', 'US', 1, 32.2679200000, -96.1702500000), (1127728, 1001446, 'Toole County', NULL, 'toole-county', 'US', 1, 48.6553000000, -111.6957000000), (1127729, 1001455, 'Toombs County', NULL, 'toombs-county', 'US', 1, 32.1217200000, -82.3312900000), (1127730, 1001416, 'Topanga', NULL, 'topanga', 'US', 1, 34.0936200000, -118.6014700000), (1127731, 1001458, 'Topaz Ranch Estates', NULL, 'topaz-ranch-estates', 'US', 1, 38.7356500000, -119.5007900000), (1127732, 1001406, 'Topeka', NULL, 'topeka', 'US', 1, 39.0483300000, -95.6780400000), (1127733, 1001440, 'Topeka', NULL, 'topeka', 'US', 1, 41.5392200000, -85.5397100000), (1127734, 1001462, 'Toppenish', NULL, 'toppenish', 'US', 1, 46.3773500000, -120.3086700000), (1127735, 1001433, 'Topsfield', NULL, 'topsfield', 'US', 1, 42.6375900000, -70.9495000000), (1127736, 1001453, 'Topsham', NULL, 'topsham', 'US', 1, 43.9275800000, -69.9758800000), (1127737, 1001422, 'Topton', NULL, 'topton', 'US', 1, 40.5034300000, -75.7013000000), (1127738, 1001414, 'Toquerville', NULL, 'toquerville', 'US', 1, 37.2533200000, -113.2846700000), (1127739, 1001429, 'Tornado', NULL, 'tornado', 'US', 1, 38.3428700000, -81.8443000000), (1127740, 1001407, 'Tornillo', NULL, 'tornillo', 'US', 1, 31.4454000000, -106.0883100000), (1127741, 1001416, 'Toro Canyon', NULL, 'toro-canyon', 'US', 1, 34.4200000000, -119.5670700000), (1127742, 1001416, 'Torrance', NULL, 'torrance', 'US', 1, 33.8358500000, -118.3406300000), (1127743, 1001423, 'Torrance County', NULL, 'torrance-county', 'US', 1, 34.6404700000, -105.8507800000), (1127744, 1001435, 'Torrington', NULL, 'torrington', 'US', 1, 41.8006500000, -73.1212200000), (1127745, 1001442, 'Torrington', NULL, 'torrington', 'US', 1, 42.0624600000, -104.1843900000), (1127746, 1001434, 'Tortolita', NULL, 'tortolita', 'US', 1, 32.4103500000, -111.0173200000), (1127747, 1001417, 'Totowa', NULL, 'totowa', 'US', 1, 40.9051000000, -74.2098700000), (1127748, 1001422, 'Toughkenamon', NULL, 'toughkenamon', 'US', 1, 39.8315000000, -75.7574400000), (1127749, 1001425, 'Toulon', NULL, 'toulon', 'US', 1, 41.0936500000, -89.8648300000), (1127750, 1001422, 'Towamensing Trails', NULL, 'towamensing-trails', 'US', 1, 41.0078700000, -75.5846300000), (1127751, 1001406, 'Towanda', NULL, 'towanda', 'US', 1, 37.7975200000, -96.9997600000), (1127752, 1001422, 'Towanda', NULL, 'towanda', 'US', 1, 41.7675800000, -76.4427200000), (1127753, 1001450, 'Towaoc', NULL, 'towaoc', 'US', 1, 37.2044400000, -108.7295400000), (1127754, 1001422, 'Tower City', NULL, 'tower-city', 'US', 1, 40.5892500000, -76.5524600000), (1127755, 1001425, 'Tower Lake', NULL, 'tower-lake', 'US', 1, 42.2319700000, -88.1520200000), (1127756, 1001436, 'Town ''n'' Country', NULL, 'town-n-country', 'US', 1, 28.0105700000, -82.5773200000), (1127757, 1001456, 'Town Creek', NULL, 'town-creek', 'US', 1, 34.6812000000, -87.4061300000), (1127758, 1001452, 'Town Line', NULL, 'town-line', 'US', 1, 42.8906100000, -78.5778000000), (1127759, 1001451, 'Town and Country', NULL, 'town-and-country', 'US', 1, 38.6122800000, -90.4634500000), (1127760, 1001462, 'Town and Country', NULL, 'town-and-country', 'US', 1, 47.7273900000, -117.4216100000), (1127761, 1001418, 'Towner', NULL, 'towner', 'US', 1, 48.3458300000, -100.4054100000), (1127762, 1001418, 'Towner County', NULL, 'towner-county', 'US', 1, 48.6855400000, -99.2458000000), (1127763, 1001455, 'Towns County', NULL, 'towns-county', 'US', 1, 34.9166500000, -83.7372800000), (1127764, 1001399, 'Townsend', NULL, 'townsend', 'US', 1, 39.3951100000, -75.6916000000), (1127765, 1001433, 'Townsend', NULL, 'townsend', 'US', 1, 42.6667600000, -71.7050700000), (1127766, 1001446, 'Townsend', NULL, 'townsend', 'US', 1, 46.3191000000, -111.5208000000), (1127767, 1001409, 'Townshend', NULL, 'townshend', 'US', 1, 43.0473000000, -72.6675900000), (1127768, 1001401, 'Towson', NULL, 'towson', 'US', 1, 39.4015000000, -76.6019100000), (1127769, 1001416, 'Trabuco Canyon', NULL, 'trabuco-canyon', 'US', 1, 33.6625200000, -117.5903300000), (1127770, 1001420, 'Tracy', NULL, 'tracy', 'US', 1, 44.2332900000, -95.6191800000), (1127771, 1001416, 'Tracy', NULL, 'tracy', 'US', 1, 37.7398700000, -121.4261800000), (1127772, 1001454, 'Tracy City', NULL, 'tracy-city', 'US', 1, 35.2603600000, -85.7360800000), (1127773, 1001462, 'Tracyton', NULL, 'tracyton', 'US', 1, 47.6089800000, -122.6551400000), (1127774, 1001459, 'Traer', NULL, 'traer', 'US', 1, 42.1936000000, -92.4654700000), (1127775, 1001440, 'Trafalgar', NULL, 'trafalgar', 'US', 1, 39.4161600000, -86.1508200000), (1127776, 1001422, 'Trafford', NULL, 'trafford', 'US', 1, 40.3856200000, -79.7589300000), (1127777, 1001440, 'Trail Creek', NULL, 'trail-creek', 'US', 1, 41.6983700000, -86.8592000000), (1127778, 1001418, 'Traill County', NULL, 'traill-county', 'US', 1, 47.4541800000, -97.1615800000), (1127779, 1001422, 'Trainer', NULL, 'trainer', 'US', 1, 39.8276100000, -75.4143600000), (1127780, 1001447, 'Transylvania County', NULL, 'transylvania-county', 'US', 1, 35.2021500000, -82.7983000000), (1127781, 1001401, 'Trappe', NULL, 'trappe', 'US', 1, 38.6584500000, -76.0580000000), (1127782, 1001422, 'Trappe', NULL, 'trappe', 'US', 1, 40.1989900000, -75.4762900000), (1127783, 1001443, 'Travelers Rest', NULL, 'travelers-rest', 'US', 1, 34.9676200000, -82.4434500000), (1127784, 1001426, 'Traverse City', NULL, 'traverse-city', 'US', 1, 44.7630600000, -85.6206300000), (1127785, 1001420, 'Traverse County', NULL, 'traverse-county', 'US', 1, 45.7721800000, -96.4716400000), (1127786, 1001401, 'Travilah', NULL, 'travilah', 'US', 1, 39.0690000000, -77.2630400000), (1127787, 1001407, 'Travis County', NULL, 'travis-county', 'US', 1, 30.3346900000, -97.7819500000), (1127788, 1001407, 'Travis Ranch', NULL, 'travis-ranch', 'US', 1, 32.8035600000, -96.4734700000), (1127789, 1001446, 'Treasure County', NULL, 'treasure-county', 'US', 1, 46.2114700000, -107.2717000000), (1127790, 1001436, 'Treasure Island', NULL, 'treasure-island', 'US', 1, 27.7691900000, -82.7689900000), (1127791, 1001422, 'Treasure Lake', NULL, 'treasure-lake', 'US', 1, 41.1733900000, -78.7158600000), (1127792, 1001406, 'Trego County', NULL, 'trego-county', 'US', 1, 38.9143200000, -99.8727400000), (1127793, 1001425, 'Tremont', NULL, 'tremont', 'US', 1, 40.5275400000, -89.4926000000), (1127794, 1001453, 'Tremont', NULL, 'tremont', 'US', 1, 44.2536900000, -68.3514100000), (1127795, 1001452, 'Tremont', NULL, 'tremont', 'US', 1, 40.8495400000, -73.9056900000), (1127796, 1001422, 'Tremont', NULL, 'tremont', 'US', 1, 40.6284200000, -76.3871800000), (1127797, 1001414, 'Tremonton', NULL, 'tremonton', 'US', 1, 41.7118700000, -112.1655100000), (1127798, 1001441, 'Trempealeau', NULL, 'trempealeau', 'US', 1, 44.0055200000, -91.4420900000), (1127799, 1001441, 'Trempealeau County', NULL, 'trempealeau-county', 'US', 1, 44.3039500000, -91.3584600000), (1127800, 1001447, 'Trent Woods', NULL, 'trent-woods', 'US', 1, 35.0821000000, -77.0863400000), (1127801, 1001436, 'Trenton', NULL, 'trenton', 'US', 1, 29.6132900000, -82.8176200000), (1127802, 1001455, 'Trenton', NULL, 'trenton', 'US', 1, 34.8720200000, -85.5091300000), (1127803, 1001425, 'Trenton', NULL, 'trenton', 'US', 1, 38.6056000000, -89.6820400000), (1127804, 1001447, 'Trenton', NULL, 'trenton', 'US', 1, 35.0671000000, -77.3527400000), (1127805, 1001454, 'Trenton', NULL, 'trenton', 'US', 1, 35.9806200000, -88.9414500000), (1127806, 1001426, 'Trenton', NULL, 'trenton', 'US', 1, 42.1394900000, -83.1782600000), (1127807, 1001453, 'Trenton', NULL, 'trenton', 'US', 1, 44.4389700000, -68.3700200000), (1127808, 1001417, 'Trenton', NULL, 'trenton', 'US', 1, 40.2170500000, -74.7429400000), (1127809, 1001451, 'Trenton', NULL, 'trenton', 'US', 1, 40.0789000000, -93.6166100000), (1127810, 1001408, 'Trenton', NULL, 'trenton', 'US', 1, 40.1755500000, -101.0129400000), (1127811, 1001462, 'Trentwood', NULL, 'trentwood', 'US', 1, 47.6965600000, -117.2107600000), (1127812, 1001455, 'Treutlen County', NULL, 'treutlen-county', 'US', 1, 32.4038800000, -82.5672800000), (1127813, 1001422, 'Trevorton', NULL, 'trevorton', 'US', 1, 40.7812000000, -76.6730200000), (1127814, 1001422, 'Trevose', NULL, 'trevose', 'US', 1, 40.1392800000, -74.9810000000), (1127815, 1001422, 'Trexlertown', NULL, 'trexlertown', 'US', 1, 40.5481500000, -75.6057400000), (1127816, 1001415, 'Tri-City', NULL, 'tri-city', 'US', 1, 42.9845600000, -123.3117300000), (1127817, 1001440, 'Tri-Lakes', NULL, 'tri-lakes', 'US', 1, 41.2458800000, -85.4419200000), (1127818, 1001427, 'Triangle', NULL, 'triangle', 'US', 1, 38.5467900000, -77.3366500000), (1127819, 1001452, 'Tribes Hill', NULL, 'tribes-hill', 'US', 1, 42.9553500000, -74.2851300000), (1127820, 1001406, 'Tribune', NULL, 'tribune', 'US', 1, 38.4697400000, -101.7526700000), (1127821, 1001419, 'Trigg County', NULL, 'trigg-county', 'US', 1, 36.8063200000, -87.8733700000), (1127822, 1001419, 'Trimble County', NULL, 'trimble-county', 'US', 1, 38.6130300000, -85.3375700000), (1127823, 1001450, 'Trinidad', NULL, 'trinidad', 'US', 1, 37.1694600000, -104.5005400000), (1127824, 1001436, 'Trinity', NULL, 'trinity', 'US', 1, 28.1808500000, -82.6817700000), (1127825, 1001456, 'Trinity', NULL, 'trinity', 'US', 1, 34.6067600000, -87.0883500000), (1127826, 1001447, 'Trinity', NULL, 'trinity', 'US', 1, 35.8945800000, -79.9908700000), (1127827, 1001407, 'Trinity', NULL, 'trinity', 'US', 1, 30.9451900000, -95.3755000000), (1127828, 1001407, 'Trinity County', NULL, 'trinity-county', 'US', 1, 31.0888200000, -95.1355100000), (1127829, 1001416, 'Trinity County', NULL, 'trinity-county', 'US', 1, 40.6506900000, -123.1126300000), (1127830, 1001455, 'Trion', NULL, 'trion', 'US', 1, 34.5439700000, -85.3105100000), (1127831, 1001459, 'Tripoli', NULL, 'tripoli', 'US', 1, 42.8080400000, -92.2582300000), (1127832, 1001445, 'Tripp County', NULL, 'tripp-county', 'US', 1, 43.3458700000, -99.8840000000), (1127833, 1001422, 'Trooper', NULL, 'trooper', 'US', 1, 40.1498300000, -75.4018500000), (1127834, 1001407, 'Trophy Club', NULL, 'trophy-club', 'US', 1, 32.9979000000, -97.1836200000), (1127835, 1001407, 'Troup', NULL, 'troup', 'US', 1, 32.1446000000, -95.1205000000), (1127836, 1001455, 'Troup County', NULL, 'troup-county', 'US', 1, 33.0335100000, -85.0283400000), (1127837, 1001454, 'Trousdale County', NULL, 'trousdale-county', 'US', 1, 36.3920400000, -86.1567500000), (1127838, 1001415, 'Troutdale', NULL, 'troutdale', 'US', 1, 45.5392900000, -122.3873100000), (1127839, 1001447, 'Troutman', NULL, 'troutman', 'US', 1, 35.7006900000, -80.8881300000), (1127840, 1001426, 'Trowbridge Park', NULL, 'trowbridge-park', 'US', 1, 46.5566000000, -87.4373600000), (1127841, 1001456, 'Troy', NULL, 'troy', 'US', 1, 31.8087700000, -85.9699500000), (1127842, 1001406, 'Troy', NULL, 'troy', 'US', 1, 39.7830500000, -95.0899700000), (1127843, 1001425, 'Troy', NULL, 'troy', 'US', 1, 38.7292100000, -89.8831500000), (1127844, 1001451, 'Troy', NULL, 'troy', 'US', 1, 38.9794900000, -90.9807000000), (1127845, 1001447, 'Troy', NULL, 'troy', 'US', 1, 35.3584700000, -79.8944900000), (1127846, 1001407, 'Troy', NULL, 'troy', 'US', 1, 31.2068400000, -97.3027800000), (1127847, 1001454, 'Troy', NULL, 'troy', 'US', 1, 36.3386800000, -89.1639600000), (1127848, 1001426, 'Troy', NULL, 'troy', 'US', 1, 42.6055900000, -83.1499300000), (1127849, 1001453, 'Troy', NULL, 'troy', 'US', 1, 44.6647900000, -69.2408800000), (1127850, 1001404, 'Troy', NULL, 'troy', 'US', 1, 42.8239700000, -72.1811900000), (1127851, 1001452, 'Troy', NULL, 'troy', 'US', 1, 42.7284100000, -73.6917900000), (1127852, 1001422, 'Troy', NULL, 'troy', 'US', 1, 41.7859100000, -76.7880100000), (1127853, 1001416, 'Truckee', NULL, 'truckee', 'US', 1, 39.3279600000, -120.1832500000), (1127854, 1001422, 'Trucksville', NULL, 'trucksville', 'US', 1, 41.3039700000, -75.9321400000), (1127855, 1001420, 'Truman', NULL, 'truman', 'US', 1, 43.8277300000, -94.4371900000), (1127856, 1001444, 'Trumann', NULL, 'trumann', 'US', 1, 35.6736900000, -90.5073300000), (1127857, 1001452, 'Trumansburg', NULL, 'trumansburg', 'US', 1, 42.5422900000, -76.6660600000), (1127858, 1001435, 'Trumbull', NULL, 'trumbull', 'US', 1, 41.2428700000, -73.2006700000), (1127859, 1001433, 'Truro', NULL, 'truro', 'US', 1, 41.9934400000, -70.0497500000), (1127860, 1001456, 'Trussville', NULL, 'trussville', 'US', 1, 33.6198300000, -86.6088800000), (1127861, 1001423, 'Truth or Consequences', NULL, 'truth-or-consequences', 'US', 1, 33.1284000000, -107.2528100000), (1127862, 1001447, 'Tryon', NULL, 'tryon', 'US', 1, 35.3398600000, -81.3220300000), (1127863, 1001408, 'Tryon', NULL, 'tryon', 'US', 1, 41.5527700000, -100.9576500000), (1127864, 1001434, 'Tsaile', NULL, 'tsaile', 'US', 1, 36.3033000000, -109.2156600000), (1127865, 1001415, 'Tualatin', NULL, 'tualatin', 'US', 1, 45.3840100000, -122.7639900000), (1127866, 1001434, 'Tuba City', NULL, 'tuba-city', 'US', 1, 36.1349900000, -111.2398600000), (1127867, 1001434, 'Tubac', NULL, 'tubac', 'US', 1, 31.6125900000, -111.0459200000), (1127868, 1001427, 'Tuckahoe', NULL, 'tuckahoe', 'US', 1, 37.5901500000, -77.5563800000), (1127869, 1001452, 'Tuckahoe', NULL, 'tuckahoe', 'US', 1, 40.9503800000, -73.8273600000), (1127870, 1001455, 'Tucker', NULL, 'tucker', 'US', 1, 33.8545500000, -84.2171400000), (1127871, 1001429, 'Tucker County', NULL, 'tucker-county', 'US', 1, 39.1136000000, -79.5649700000), (1127872, 1001444, 'Tuckerman', NULL, 'tuckerman', 'US', 1, 35.7306300000, -91.1984600000), (1127873, 1001417, 'Tuckerton', NULL, 'tuckerton', 'US', 1, 39.6031700000, -74.3401500000), (1127874, 1001434, 'Tucson', NULL, 'tucson', 'US', 1, 32.2217400000, -110.9264800000), (1127875, 1001434, 'Tucson Estates', NULL, 'tucson-estates', 'US', 1, 32.1875800000, -111.0909300000), (1127876, 1001423, 'Tucumcari', NULL, 'tucumcari', 'US', 1, 35.1719100000, -103.7268600000), (1127877, 1001404, 'Tuftonboro', NULL, 'tuftonboro', 'US', 1, 43.6964700000, -71.2220100000), (1127878, 1001416, 'Tujunga', NULL, 'tujunga', 'US', 1, 34.2522300000, -118.2884100000), (1127879, 1001462, 'Tukwila', NULL, 'tukwila', 'US', 1, 47.4739900000, -122.2609600000), (1127880, 1001462, 'Tulalip', NULL, 'tulalip', 'US', 1, 48.0684300000, -122.2918100000), (1127881, 1001462, 'Tulalip Bay', NULL, 'tulalip-bay', 'US', 1, 48.0373200000, -122.3101400000), (1127882, 1001416, 'Tulare', NULL, 'tulare', 'US', 1, 36.2077300000, -119.3473400000), (1127883, 1001416, 'Tulare County', NULL, 'tulare-county', 'US', 1, 36.2201600000, -118.8004700000), (1127884, 1001423, 'Tularosa', NULL, 'tularosa', 'US', 1, 33.0739700000, -106.0186000000), (1127885, 1001407, 'Tulia', NULL, 'tulia', 'US', 1, 34.5358900000, -101.7585200000), (1127886, 1001454, 'Tullahoma', NULL, 'tullahoma', 'US', 1, 35.3620200000, -86.2094300000), (1127887, 1001422, 'Tullytown', NULL, 'tullytown', 'US', 1, 40.1392800000, -74.8146100000), (1127888, 1001421, 'Tulsa', NULL, 'tulsa', 'US', 1, 36.1539800000, -95.9927700000), (1127889, 1001421, 'Tulsa County', NULL, 'tulsa-county', 'US', 1, 36.1210800000, -95.9414800000), (1127890, 1001462, 'Tumwater', NULL, 'tumwater', 'US', 1, 47.0073200000, -122.9093100000), (1127891, 1001430, 'Tunica', NULL, 'tunica', 'US', 1, 34.6845500000, -90.3828800000), (1127892, 1001430, 'Tunica County', NULL, 'tunica-county', 'US', 1, 34.6519400000, -90.3755100000), (1127893, 1001430, 'Tunica Resorts', NULL, 'tunica-resorts', 'US', 1, 34.8361300000, -90.3472300000), (1127894, 1001422, 'Tunkhannock', NULL, 'tunkhannock', 'US', 1, 41.5386900000, -75.9465900000), (1127895, 1001416, 'Tuolumne City', NULL, 'tuolumne-city', 'US', 1, 37.9627000000, -120.2413000000), (1127896, 1001416, 'Tuolumne County', NULL, 'tuolumne-county', 'US', 1, 38.0276000000, -119.9547500000), (1127897, 1001430, 'Tupelo', NULL, 'tupelo', 'US', 1, 34.2580700000, -88.7046400000), (1127898, 1001452, 'Tupper Lake', NULL, 'tupper-lake', 'US', 1, 44.2239500000, -74.4640600000), (1127899, 1001421, 'Turley', NULL, 'turley', 'US', 1, 36.2420400000, -95.9758300000), (1127900, 1001416, 'Turlock', NULL, 'turlock', 'US', 1, 37.4946600000, -120.8465900000), (1127901, 1001453, 'Turner', NULL, 'turner', 'US', 1, 44.2564600000, -70.2561700000), (1127902, 1001415, 'Turner', NULL, 'turner', 'US', 1, 44.8431800000, -122.9528700000), (1127903, 1001455, 'Turner County', NULL, 'turner-county', 'US', 1, 31.7163800000, -83.6240900000), (1127904, 1001445, 'Turner County', NULL, 'turner-county', 'US', 1, 43.3108700000, -97.1486600000), (1127905, 1001433, 'Turners Falls', NULL, 'turners-falls', 'US', 1, 42.6042500000, -72.5564800000), (1127906, 1001417, 'Turnersville', NULL, 'turnersville', 'US', 1, 39.7731700000, -75.0512800000), (1127907, 1001422, 'Turtle Creek', NULL, 'turtle-creek', 'US', 1, 40.4059000000, -79.8250500000), (1127908, 1001441, 'Turtle Lake', NULL, 'turtle-lake', 'US', 1, 45.3944000000, -92.1424100000), (1127909, 1001456, 'Tuscaloosa', NULL, 'tuscaloosa', 'US', 1, 33.2098400000, -87.5691700000), (1127910, 1001456, 'Tuscaloosa County', NULL, 'tuscaloosa-county', 'US', 1, 33.2895500000, -87.5250300000), (1127911, 1001425, 'Tuscola', NULL, 'tuscola', 'US', 1, 39.7992000000, -88.2831000000), (1127912, 1001426, 'Tuscola County', NULL, 'tuscola-county', 'US', 1, 43.4913400000, -83.4398700000), (1127913, 1001454, 'Tusculum', NULL, 'tusculum', 'US', 1, 36.1751000000, -82.7587600000), (1127914, 1001456, 'Tuscumbia', NULL, 'tuscumbia', 'US', 1, 34.7312000000, -87.7025300000), (1127915, 1001451, 'Tuscumbia', NULL, 'tuscumbia', 'US', 1, 38.2330900000, -92.4585200000), (1127916, 1001456, 'Tuskegee', NULL, 'tuskegee', 'US', 1, 32.4241500000, -85.6909600000), (1127917, 1001416, 'Tustin', NULL, 'tustin', 'US', 1, 33.7458500000, -117.8261700000), (1127918, 1001421, 'Tuttle', NULL, 'tuttle', 'US', 1, 35.2908900000, -97.8122700000), (1127919, 1001430, 'Tutwiler', NULL, 'tutwiler', 'US', 1, 34.0148300000, -90.4317600000), (1127920, 1001416, 'Twain Harte', NULL, 'twain-harte', 'US', 1, 38.0396500000, -120.2326900000), (1127921, 1001416, 'Twentynine Palms', NULL, 'twentynine-palms', 'US', 1, 34.1355600000, -116.0541700000), (1127922, 1001455, 'Twiggs County', NULL, 'twiggs-county', 'US', 1, 32.6672000000, -83.4270800000), (1127923, 1001455, 'Twin City', NULL, 'twin-city', 'US', 1, 32.5829400000, -82.1551200000), (1127924, 1001460, 'Twin Falls', NULL, 'twin-falls', 'US', 1, 42.5629700000, -114.4608700000), (1127925, 1001460, 'Twin Falls County', NULL, 'twin-falls-county', 'US', 1, 42.3559800000, -114.6671600000), (1127926, 1001425, 'Twin Grove', NULL, 'twin-grove', 'US', 1, 40.4933700000, -89.0798000000), (1127927, 1001426, 'Twin Lake', NULL, 'twin-lake', 'US', 1, 43.3627900000, -86.1647800000), (1127928, 1001436, 'Twin Lakes', NULL, 'twin-lakes', 'US', 1, 26.1809200000, -80.1600500000), (1127929, 1001441, 'Twin Lakes', NULL, 'twin-lakes', 'US', 1, 42.5311300000, -88.2481500000), (1127930, 1001416, 'Twin Lakes', NULL, 'twin-lakes', 'US', 1, 36.9674500000, -121.9980200000), (1127931, 1001450, 'Twin Lakes', NULL, 'twin-lakes', 'US', 1, 39.8249900000, -105.0047000000), (1127932, 1001423, 'Twin Lakes', NULL, 'twin-lakes', 'US', 1, 35.7091900000, -108.7748100000), (1127933, 1001427, 'Twin Lakes', NULL, 'twin-lakes', 'US', 1, 38.2492700000, -78.4437800000), (1127934, 1001417, 'Twin Rivers', NULL, 'twin-rivers', 'US', 1, 40.2640000000, -74.4912600000), (1127935, 1001420, 'Two Harbors', NULL, 'two-harbors', 'US', 1, 47.0227100000, -91.6707300000), (1127936, 1001441, 'Two Rivers', NULL, 'two-rivers', 'US', 1, 44.1538800000, -87.5692500000), (1127937, 1001455, 'Tybee Island', NULL, 'tybee-island', 'US', 1, 32.0002200000, -80.8456700000), (1127938, 1001407, 'Tye', NULL, 'tye', 'US', 1, 32.4576200000, -99.8714800000), (1127939, 1001460, 'Tyhee', NULL, 'tyhee', 'US', 1, 42.9515800000, -112.4663700000), (1127940, 1001407, 'Tyler', NULL, 'tyler', 'US', 1, 32.3512600000, -95.3010600000), (1127941, 1001420, 'Tyler', NULL, 'tyler', 'US', 1, 44.2783000000, -96.1347500000), (1127942, 1001407, 'Tyler County', NULL, 'tyler-county', 'US', 1, 30.7712300000, -94.3765900000), (1127943, 1001429, 'Tyler County', NULL, 'tyler-county', 'US', 1, 39.4652800000, -80.8848300000), (1127944, 1001430, 'Tylertown', NULL, 'tylertown', 'US', 1, 31.1160100000, -90.1420300000), (1127945, 1001445, 'Tyndall', NULL, 'tyndall', 'US', 1, 42.9933300000, -97.8628500000), (1127946, 1001436, 'Tyndall Air Force Base', NULL, 'tyndall-air-force-base', 'US', 1, 30.0853500000, -85.6073100000), (1127947, 1001433, 'Tyngsboro', NULL, 'tyngsboro', 'US', 1, 42.6767600000, -71.4245100000), (1127948, 1001447, 'Tyro', NULL, 'tyro', 'US', 1, 35.8090300000, -80.3728300000), (1127949, 1001455, 'Tyrone', NULL, 'tyrone', 'US', 1, 33.4712300000, -84.5971500000), (1127950, 1001422, 'Tyrone', NULL, 'tyrone', 'US', 1, 40.6706200000, -78.2386200000), (1127951, 1001447, 'Tyrrell County', NULL, 'tyrrell-county', 'US', 1, 35.8701800000, -76.1700500000), (1127952, 1001427, 'Tysons Corner', NULL, 'tysons-corner', 'US', 1, 38.9187200000, -77.2310900000), (1127953, 1001460, 'Ucon', NULL, 'ucon', 'US', 1, 43.5963000000, -111.9638600000), (1127954, 1001407, 'Uhland', NULL, 'uhland', 'US', 1, 29.9577200000, -97.7861100000), (1127955, 1001442, 'Uinta County', NULL, 'uinta-county', 'US', 1, 41.2875600000, -110.5475900000), (1127956, 1001414, 'Uintah', NULL, 'uintah', 'US', 1, 41.1441100000, -111.9232700000), (1127957, 1001414, 'Uintah County', NULL, 'uintah-county', 'US', 1, 40.1249500000, -109.5183900000), (1127958, 1001416, 'Ukiah', NULL, 'ukiah', 'US', 1, 39.1501700000, -123.2077800000), (1127959, 1001452, 'Ulster County', NULL, 'ulster-county', 'US', 1, 41.8881500000, -74.2585700000), (1127960, 1001406, 'Ulysses', NULL, 'ulysses', 'US', 1, 37.5814100000, -101.3551700000), (1127961, 1001436, 'Umatilla', NULL, 'umatilla', 'US', 1, 28.9294300000, -81.6656300000), (1127962, 1001415, 'Umatilla', NULL, 'umatilla', 'US', 1, 45.9173500000, -119.3425200000), (1127963, 1001415, 'Umatilla County', NULL, 'umatilla-county', 'US', 1, 45.5919000000, -118.7368300000), (1127964, 1001455, 'Unadilla', NULL, 'unadilla', 'US', 1, 32.2615500000, -83.7365700000), (1127965, 1001452, 'Unadilla', NULL, 'unadilla', 'US', 1, 42.3253600000, -75.3124000000), (1127966, 1001400, 'Unalaska', NULL, 'unalaska', 'US', 1, 53.8741300000, -166.5340800000), (1127967, 1001435, 'Uncasville', NULL, 'uncasville', 'US', 1, 41.4345400000, -72.1098000000), (1127968, 1001456, 'Underwood-Petersville', NULL, 'underwood-petersville', 'US', 1, 34.8769500000, -87.6971700000), (1127969, 1001454, 'Unicoi', NULL, 'unicoi', 'US', 1, 36.1953900000, -82.3495800000), (1127970, 1001454, 'Unicoi County', NULL, 'unicoi-county', 'US', 1, 36.1108200000, -82.4322400000), (1127971, 1001419, 'Union', NULL, 'union', 'US', 1, 38.9459000000, -84.6805000000), (1127972, 1001430, 'Union', NULL, 'union', 'US', 1, 32.5715300000, -89.1214500000), (1127973, 1001451, 'Union', NULL, 'union', 'US', 1, 38.4500500000, -91.0084800000), (1127974, 1001443, 'Union', NULL, 'union', 'US', 1, 34.7154100000, -81.6237100000), (1127975, 1001453, 'Union', NULL, 'union', 'US', 1, 44.2114700000, -69.2742100000), (1127976, 1001429, 'Union', NULL, 'union', 'US', 1, 37.5915100000, -80.5436800000), (1127977, 1001417, 'Union', NULL, 'union', 'US', 1, 40.6976000000, -74.2632000000), (1127978, 1001415, 'Union', NULL, 'union', 'US', 1, 45.2084700000, -117.8652100000), (1127979, 1001417, 'Union Beach', NULL, 'union-beach', 'US', 1, 40.4465000000, -74.1782000000), (1127980, 1001455, 'Union City', NULL, 'union-city', 'US', 1, 33.5870600000, -84.5424300000), (1127981, 1001421, 'Union City', NULL, 'union-city', 'US', 1, 35.3917200000, -97.9414400000), (1127982, 1001454, 'Union City', NULL, 'union-city', 'US', 1, 36.4242300000, -89.0570100000), (1127983, 1001440, 'Union City', NULL, 'union-city', 'US', 1, 40.2019900000, -84.8091300000), (1127984, 1001426, 'Union City', NULL, 'union-city', 'US', 1, 42.0667100000, -85.1360900000), (1127985, 1001417, 'Union City', NULL, 'union-city', 'US', 1, 40.7795500000, -74.0237500000), (1127986, 1001422, 'Union City', NULL, 'union-city', 'US', 1, 41.8995000000, -79.8453300000), (1127987, 1001416, 'Union City', NULL, 'union-city', 'US', 1, 37.5957700000, -122.0191300000), (1127988, 1001444, 'Union County', NULL, 'union-county', 'US', 1, 33.1713600000, -92.5972900000), (1127989, 1001436, 'Union County', NULL, 'union-county', 'US', 1, 30.0438400000, -82.3714400000), (1127990, 1001455, 'Union County', NULL, 'union-county', 'US', 1, 34.8340100000, -83.9907600000), (1127991, 1001425, 'Union County', NULL, 'union-county', 'US', 1, 37.4712300000, -89.2550900000), (1127992, 1001440, 'Union County', NULL, 'union-county', 'US', 1, 39.6255500000, -84.9251400000), (1127993, 1001419, 'Union County', NULL, 'union-county', 'US', 1, 37.6584500000, -87.9453800000), (1127994, 1001430, 'Union County', NULL, 'union-county', 'US', 1, 34.4904700000, -89.0038600000), (1127995, 1001447, 'Union County', NULL, 'union-county', 'US', 1, 34.9883700000, -80.5307300000), (1127996, 1001443, 'Union County', NULL, 'union-county', 'US', 1, 34.6892800000, -81.6194200000), (1127997, 1001454, 'Union County', NULL, 'union-county', 'US', 1, 36.2878700000, -83.8375100000), (1127998, 1001459, 'Union County', NULL, 'union-county', 'US', 1, 41.0277300000, -94.2423800000), (1127999, 1001417, 'Union County', NULL, 'union-county', 'US', 1, 40.6598000000, -74.3085900000), (1128000, 1001422, 'Union County', NULL, 'union-county', 'US', 1, 40.9629700000, -77.0622500000), (1128001, 1001445, 'Union County', NULL, 'union-county', 'US', 1, 42.8324900000, -96.6560900000), (1128002, 1001423, 'Union County', NULL, 'union-county', 'US', 1, 36.4817600000, -103.4709900000), (1128003, 1001415, 'Union County', NULL, 'union-county', 'US', 1, 45.3103500000, -118.0090000000), (1128004, 1001462, 'Union Gap', NULL, 'union-gap', 'US', 1, 46.5573500000, -120.4750600000), (1128005, 1001441, 'Union Grove', NULL, 'union-grove', 'US', 1, 42.6880700000, -88.0514700000), (1128006, 1001427, 'Union Hall', NULL, 'union-hall', 'US', 1, 37.0187500000, -79.6864200000), (1128007, 1001462, 'Union Hill-Novelty Hill', NULL, 'union-hill-novelty-hill', 'US', 1, 47.6788700000, -122.0283300000), (1128008, 1001457, 'Union Parish', NULL, 'union-parish', 'US', 1, 32.8319000000, -92.3748200000), (1128009, 1001436, 'Union Park', NULL, 'union-park', 'US', 1, 28.5680600000, -81.2861800000), (1128010, 1001455, 'Union Point', NULL, 'union-point', 'US', 1, 33.6156800000, -83.0746000000), (1128011, 1001456, 'Union Springs', NULL, 'union-springs', 'US', 1, 32.1443200000, -85.7149500000), (1128012, 1001452, 'Union Springs', NULL, 'union-springs', 'US', 1, 42.8397900000, -76.6932800000), (1128013, 1001452, 'Uniondale', NULL, 'uniondale', 'US', 1, 40.7003800000, -73.5929100000), (1128014, 1001452, 'Unionport', NULL, 'unionport', 'US', 1, 40.8273200000, -73.8501300000), (1128015, 1001456, 'Uniontown', NULL, 'uniontown', 'US', 1, 32.4495800000, -87.5141700000), (1128016, 1001422, 'Uniontown', NULL, 'uniontown', 'US', 1, 39.9000800000, -79.7164300000), (1128017, 1001455, 'Unionville', NULL, 'unionville', 'US', 1, 31.4349100000, -83.5096100000), (1128018, 1001447, 'Unionville', NULL, 'unionville', 'US', 1, 35.0873700000, -80.5089600000), (1128019, 1001454, 'Unionville', NULL, 'unionville', 'US', 1, 35.6217400000, -86.5925000000), (1128020, 1001451, 'Unionville', NULL, 'unionville', 'US', 1, 40.4769600000, -93.0032600000), (1128021, 1001404, 'Unity', NULL, 'unity', 'US', 1, 43.2939600000, -72.2603700000), (1128022, 1001407, 'Universal City', NULL, 'universal-city', 'US', 1, 29.5480100000, -98.2911200000), (1128023, 1001416, 'Universal City', NULL, 'universal-city', 'US', 1, 34.1389000000, -118.3534100000), (1128024, 1001430, 'University', NULL, 'university', 'US', 1, 34.3659400000, -89.5253600000), (1128025, 1001436, 'University', NULL, 'university', 'US', 1, 28.0738900000, -82.4390200000), (1128026, 1001427, 'University Center', NULL, 'university-center', 'US', 1, 39.0570500000, -77.4441500000), (1128027, 1001451, 'University City', NULL, 'university-city', 'US', 1, 38.6558800000, -90.3092800000), (1128028, 1001452, 'University Gardens', NULL, 'university-gardens', 'US', 1, 40.7773200000, -73.7226300000), (1128029, 1001459, 'University Heights', NULL, 'university-heights', 'US', 1, 41.6550200000, -91.5568400000), (1128030, 1001452, 'University Heights', NULL, 'university-heights', 'US', 1, 40.8601000000, -73.9093000000), (1128031, 1001436, 'University Park', NULL, 'university-park', 'US', 1, 25.7464900000, -80.3675500000), (1128032, 1001401, 'University Park', NULL, 'university-park', 'US', 1, 38.9703900000, -76.9419200000), (1128033, 1001407, 'University Park', NULL, 'university-park', 'US', 1, 32.8501300000, -96.8002800000), (1128034, 1001423, 'University Park', NULL, 'university-park', 'US', 1, 32.2834300000, -106.7533400000), (1128035, 1001425, 'University Park', NULL, 'university-park', 'US', 1, 41.4429800000, -87.6836000000), (1128036, 1001462, 'University Place', NULL, 'university-place', 'US', 1, 47.2356500000, -122.5504000000), (1128037, 1001422, 'Upland', NULL, 'upland', 'US', 1, 39.8526100000, -75.3826900000), (1128038, 1001440, 'Upland', NULL, 'upland', 'US', 1, 40.4756000000, -85.4944200000), (1128039, 1001416, 'Upland', NULL, 'upland', 'US', 1, 34.0975100000, -117.6483900000), (1128040, 1001425, 'Upper Alton', NULL, 'upper-alton', 'US', 1, 38.9114400000, -90.1506600000), (1128041, 1001450, 'Upper Bear Creek', NULL, 'upper-bear-creek', 'US', 1, 39.6238500000, -105.4178000000), (1128042, 1001452, 'Upper Brookville', NULL, 'upper-brookville', 'US', 1, 40.8387100000, -73.5651300000), (1128043, 1001423, 'Upper Fruitland', NULL, 'upper-fruitland', 'US', 1, 36.7158400000, -108.3142400000), (1128044, 1001436, 'Upper Grand Lagoon', NULL, 'upper-grand-lagoon', 'US', 1, 30.1632600000, -85.7407600000), (1128045, 1001416, 'Upper Lake', NULL, 'upper-lake', 'US', 1, 39.1646100000, -122.9105500000), (1128046, 1001401, 'Upper Marlboro', NULL, 'upper-marlboro', 'US', 1, 38.8159500000, -76.7496900000), (1128047, 1001417, 'Upper Montclair', NULL, 'upper-montclair', 'US', 1, 40.8462100000, -74.2012600000), (1128048, 1001452, 'Upper Nyack', NULL, 'upper-nyack', 'US', 1, 41.1070400000, -73.9201400000), (1128049, 1001417, 'Upper Pohatcong', NULL, 'upper-pohatcong', 'US', 1, 40.6774700000, -75.1558000000), (1128050, 1001417, 'Upper Saddle River', NULL, 'upper-saddle-river', 'US', 1, 41.0584300000, -74.0984800000), (1128051, 1001422, 'Upper Saint Clair', NULL, 'upper-saint-clair', 'US', 1, 40.3359000000, -80.0833900000), (1128052, 1001407, 'Upshur County', NULL, 'upshur-county', 'US', 1, 32.7362800000, -94.9414800000), (1128053, 1001429, 'Upshur County', NULL, 'upshur-county', 'US', 1, 38.8978300000, -80.2334200000), (1128054, 1001455, 'Upson County', NULL, 'upson-county', 'US', 1, 32.8812700000, -84.2993400000), (1128055, 1001433, 'Upton', NULL, 'upton', 'US', 1, 42.1745400000, -71.6022900000), (1128056, 1001442, 'Upton', NULL, 'upton', 'US', 1, 44.0997000000, -104.6280200000), (1128057, 1001407, 'Upton County', NULL, 'upton-county', 'US', 1, 31.3687300000, -102.0430400000), (1128058, 1001425, 'Uptown', NULL, 'uptown', 'US', 1, 41.9659000000, -87.6526200000), (1128059, 1001457, 'Urania', NULL, 'urania', 'US', 1, 31.8637800000, -92.2959700000), (1128060, 1001401, 'Urbana', NULL, 'urbana', 'US', 1, 39.3259400000, -77.3513700000), (1128061, 1001459, 'Urbana', NULL, 'urbana', 'US', 1, 42.2241600000, -91.8743400000), (1128062, 1001425, 'Urbana', NULL, 'urbana', 'US', 1, 40.1105900000, -88.2072700000), (1128063, 1001459, 'Urbandale', NULL, 'urbandale', 'US', 1, 41.6266600000, -93.7121700000), (1128064, 1001414, 'Utah County', NULL, 'utah-county', 'US', 1, 40.1199500000, -111.6703100000), (1128065, 1001443, 'Utica', NULL, 'utica', 'US', 1, 34.6781600000, -82.9315400000), (1128066, 1001426, 'Utica', NULL, 'utica', 'US', 1, 42.6261400000, -83.0335400000), (1128067, 1001452, 'Utica', NULL, 'utica', 'US', 1, 43.1009000000, -75.2326600000), (1128068, 1001407, 'Uvalde', NULL, 'uvalde', 'US', 1, 29.2096800000, -99.7861700000), (1128069, 1001407, 'Uvalde County', NULL, 'uvalde-county', 'US', 1, 29.3573400000, -99.7622100000), (1128070, 1001407, 'Uvalde Estates', NULL, 'uvalde-estates', 'US', 1, 29.1652400000, -99.8322800000), (1128071, 1001433, 'Uxbridge', NULL, 'uxbridge', 'US', 1, 42.0773200000, -71.6295100000), (1128072, 1001416, 'Vacaville', NULL, 'vacaville', 'US', 1, 38.3565800000, -121.9877400000), (1128073, 1001420, 'Vadnais Heights', NULL, 'vadnais-heights', 'US', 1, 45.0574700000, -93.0738300000), (1128074, 1001423, 'Vado', NULL, 'vado', 'US', 1, 32.1117600000, -106.6625000000), (1128075, 1001434, 'Vail', NULL, 'vail', 'US', 1, 32.0478600000, -110.7120300000), (1128076, 1001450, 'Vail', NULL, 'vail', 'US', 1, 39.6402600000, -106.3742000000), (1128077, 1001452, 'Vails Gate', NULL, 'vails-gate', 'US', 1, 41.4542600000, -74.0576400000), (1128078, 1001416, 'Val Verde', NULL, 'val-verde', 'US', 1, 34.4450000000, -118.6575900000), (1128079, 1001407, 'Val Verde County', NULL, 'val-verde-county', 'US', 1, 29.8929600000, -101.1517200000), (1128080, 1001407, 'Val Verde Park', NULL, 'val-verde-park', 'US', 1, 29.3749500000, -100.8317600000), (1128081, 1001452, 'Valatie', NULL, 'valatie', 'US', 1, 42.4134200000, -73.6731700000), (1128082, 1001447, 'Valdese', NULL, 'valdese', 'US', 1, 35.7406900000, -81.5631500000), (1128083, 1001400, 'Valdez', NULL, 'valdez', 'US', 1, 61.1308300000, -146.3483300000), (1128084, 1001400, 'Valdez-Cordova Census Area', NULL, 'valdez-cordova-census-area', 'US', 1, 61.5005600000, -144.5005600000), (1128085, 1001455, 'Valdosta', NULL, 'valdosta', 'US', 1, 30.8333400000, -83.2803200000), (1128086, 1001415, 'Vale', NULL, 'vale', 'US', 1, 43.9821100000, -117.2382300000), (1128087, 1001416, 'Valencia', NULL, 'valencia', 'US', 1, 34.4436100000, -118.6095300000), (1128088, 1001423, 'Valencia', NULL, 'valencia', 'US', 1, 34.7995000000, -106.7003000000), (1128089, 1001423, 'Valencia County', NULL, 'valencia-county', 'US', 1, 34.7154500000, -106.8091100000), (1128090, 1001434, 'Valencia West', NULL, 'valencia-west', 'US', 1, 32.1323800000, -111.1141400000), (1128091, 1001408, 'Valentine', NULL, 'valentine', 'US', 1, 42.8727800000, -100.5509700000), (1128092, 1001452, 'Valhalla', NULL, 'valhalla', 'US', 1, 41.0748200000, -73.7751300000), (1128093, 1001416, 'Valinda', NULL, 'valinda', 'US', 1, 34.0452900000, -117.9436700000), (1128094, 1001416, 'Valle Vista', NULL, 'valle-vista', 'US', 1, 33.7478000000, -116.8933600000), (1128095, 1001434, 'Valle Vista', NULL, 'valle-vista', 'US', 1, 35.4108800000, -113.8627100000), (1128096, 1001416, 'Vallejo', NULL, 'vallejo', 'US', 1, 38.1040900000, -122.2566400000), (1128097, 1001456, 'Valley', NULL, 'valley', 'US', 1, 32.8187400000, -85.1793900000), (1128098, 1001408, 'Valley', NULL, 'valley', 'US', 1, 41.3127800000, -96.3461400000), (1128099, 1001406, 'Valley Center', NULL, 'valley-center', 'US', 1, 37.8347300000, -97.3733800000), (1128100, 1001416, 'Valley Center', NULL, 'valley-center', 'US', 1, 33.2183700000, -117.0342000000), (1128101, 1001418, 'Valley City', NULL, 'valley-city', 'US', 1, 46.9233100000, -98.0031500000), (1128102, 1001452, 'Valley Cottage', NULL, 'valley-cottage', 'US', 1, 41.1181500000, -73.9554200000), (1128103, 1001408, 'Valley County', NULL, 'valley-county', 'US', 1, 41.5673100000, -98.9819000000), (1128104, 1001460, 'Valley County', NULL, 'valley-county', 'US', 1, 44.7667000000, -115.5661300000), (1128105, 1001446, 'Valley County', NULL, 'valley-county', 'US', 1, 48.3653100000, -106.6675200000), (1128106, 1001406, 'Valley Falls', NULL, 'valley-falls', 'US', 1, 39.3433300000, -95.4602500000), (1128107, 1001443, 'Valley Falls', NULL, 'valley-falls', 'US', 1, 35.0159500000, -81.9748300000), (1128108, 1001461, 'Valley Falls', NULL, 'valley-falls', 'US', 1, 41.9067700000, -71.3906100000), (1128109, 1001416, 'Valley Glen', NULL, 'valley-glen', 'US', 1, 34.1899100000, -118.4495300000), (1128110, 1001456, 'Valley Grande', NULL, 'valley-grande', 'US', 1, 32.5090200000, -86.9874900000), (1128111, 1001422, 'Valley Green', NULL, 'valley-green', 'US', 1, 40.1573100000, -76.7927500000), (1128112, 1001447, 'Valley Hill', NULL, 'valley-hill', 'US', 1, 35.2984500000, -82.4831800000), (1128113, 1001407, 'Valley Mills', NULL, 'valley-mills', 'US', 1, 31.6593300000, -97.4722400000), (1128114, 1001451, 'Valley Park', NULL, 'valley-park', 'US', 1, 38.5492200000, -90.4926200000), (1128115, 1001416, 'Valley Springs', NULL, 'valley-springs', 'US', 1, 38.1915900000, -120.8291000000), (1128116, 1001419, 'Valley Station', NULL, 'valley-station', 'US', 1, 38.1111800000, -85.8702400000), (1128117, 1001452, 'Valley Stream', NULL, 'valley-stream', 'US', 1, 40.6642700000, -73.7084600000), (1128118, 1001422, 'Valley View', NULL, 'valley-view', 'US', 1, 39.9501000000, -76.7010800000), (1128119, 1001425, 'Valmeyer', NULL, 'valmeyer', 'US', 1, 38.3056100000, -90.2765100000), (1128120, 1001436, 'Valparaiso', NULL, 'valparaiso', 'US', 1, 30.5085300000, -86.5027300000), (1128121, 1001440, 'Valparaiso', NULL, 'valparaiso', 'US', 1, 41.4730900000, -87.0611400000), (1128122, 1001436, 'Valrico', NULL, 'valrico', 'US', 1, 27.9378900000, -82.2364400000), (1128123, 1001436, 'Vamo', NULL, 'vamo', 'US', 1, 27.2220000000, -82.4978700000), (1128124, 1001407, 'Van', NULL, 'van', 'US', 1, 32.5248600000, -95.6371800000), (1128125, 1001407, 'Van Alstyne', NULL, 'van-alstyne', 'US', 1, 33.4215000000, -96.5772100000), (1128126, 1001444, 'Van Buren', NULL, 'van-buren', 'US', 1, 35.4367600000, -94.3482700000), (1128127, 1001451, 'Van Buren', NULL, 'van-buren', 'US', 1, 36.9956100000, -91.0145700000), (1128128, 1001453, 'Van Buren', NULL, 'van-buren', 'US', 1, 47.1572700000, -67.9353000000), (1128129, 1001444, 'Van Buren County', NULL, 'van-buren-county', 'US', 1, 35.5806500000, -92.5157000000), (1128130, 1001454, 'Van Buren County', NULL, 'van-buren-county', 'US', 1, 35.6959800000, -85.4526100000), (1128131, 1001459, 'Van Buren County', NULL, 'van-buren-county', 'US', 1, 40.7532300000, -91.9499900000), (1128132, 1001426, 'Van Buren County', NULL, 'van-buren-county', 'US', 1, 42.2851100000, -86.3064200000), (1128133, 1001407, 'Van Horn', NULL, 'van-horn', 'US', 1, 31.0402900000, -104.8307300000), (1128134, 1001419, 'Van Lear', NULL, 'van-lear', 'US', 1, 37.7712100000, -82.7579400000), (1128135, 1001459, 'Van Meter', NULL, 'van-meter', 'US', 1, 41.5319300000, -93.9541200000), (1128136, 1001452, 'Van Nest', NULL, 'van-nest', 'US', 1, 40.8484300000, -73.8637500000), (1128137, 1001416, 'Van Nuys', NULL, 'van-nuys', 'US', 1, 34.1866700000, -118.4489700000), (1128138, 1001407, 'Van Vleck', NULL, 'van-vleck', 'US', 1, 29.0177500000, -95.8894000000), (1128139, 1001407, 'Van Zandt County', NULL, 'van-zandt-county', 'US', 1, 32.5637200000, -95.8365100000), (1128140, 1001456, 'Vance', NULL, 'vance', 'US', 1, 33.1742800000, -87.2336100000), (1128141, 1001447, 'Vance County', NULL, 'vance-county', 'US', 1, 36.3647600000, -78.4083300000), (1128142, 1001419, 'Vanceburg', NULL, 'vanceburg', 'US', 1, 38.5992400000, -83.3188000000), (1128143, 1001430, 'Vancleave', NULL, 'vancleave', 'US', 1, 30.5404700000, -88.6875200000), (1128144, 1001462, 'Vancouver', NULL, 'vancouver', 'US', 1, 45.6387300000, -122.6614900000), (1128145, 1001425, 'Vandalia', NULL, 'vandalia', 'US', 1, 38.9606000000, -89.0936800000), (1128146, 1001451, 'Vandalia', NULL, 'vandalia', 'US', 1, 39.3108700000, -91.4884900000), (1128147, 1001416, 'Vandenberg Air Force Base', NULL, 'vandenberg-air-force-base', 'US', 1, 34.7483000000, -120.5181700000), (1128148, 1001416, 'Vandenberg Village', NULL, 'vandenberg-village', 'US', 1, 34.7083200000, -120.4676600000), (1128149, 1001447, 'Vander', NULL, 'vander', 'US', 1, 35.0321100000, -78.7947400000), (1128150, 1001440, 'Vanderburgh County', NULL, 'vanderburgh-county', 'US', 1, 38.0251400000, -87.5857800000), (1128151, 1001426, 'Vandercook Lake', NULL, 'vandercook-lake', 'US', 1, 42.1933700000, -84.3910700000), (1128152, 1001422, 'Vandergrift', NULL, 'vandergrift', 'US', 1, 40.6028400000, -79.5647700000), (1128153, 1001456, 'Vandiver', NULL, 'vandiver', 'US', 1, 33.4706600000, -86.5133200000), (1128154, 1001430, 'Vardaman', NULL, 'vardaman', 'US', 1, 33.8756700000, -89.1772900000), (1128155, 1001455, 'Varnell', NULL, 'varnell', 'US', 1, 34.9011900000, -84.9738300000), (1128156, 1001443, 'Varnville', NULL, 'varnville', 'US', 1, 32.8504400000, -81.0792700000), (1128157, 1001462, 'Vashon', NULL, 'vashon', 'US', 1, 47.4473200000, -122.4598500000), (1128158, 1001453, 'Vassalboro', NULL, 'vassalboro', 'US', 1, 44.4592300000, -69.6775500000), (1128159, 1001426, 'Vassar', NULL, 'vassar', 'US', 1, 43.3719700000, -83.5832900000), (1128160, 1001453, 'Veazie', NULL, 'veazie', 'US', 1, 44.8386800000, -68.7053100000), (1128161, 1001440, 'Veedersburg', NULL, 'veedersburg', 'US', 1, 40.1130900000, -87.2625100000), (1128162, 1001407, 'Vega', NULL, 'vega', 'US', 1, 35.2428300000, -102.4282600000), (1128163, 1001451, 'Velda Village', NULL, 'velda-village', 'US', 1, 38.6900500000, -90.2942800000), (1128164, 1001451, 'Velda Village Hills', NULL, 'velda-village-hills', 'US', 1, 38.6906100000, -90.2873400000), (1128165, 1001418, 'Velva', NULL, 'velva', 'US', 1, 48.0561200000, -100.9293200000), (1128166, 1001422, 'Venango County', NULL, 'venango-county', 'US', 1, 41.4009700000, -79.7579500000), (1128167, 1001462, 'Venersborg', NULL, 'venersborg', 'US', 1, 45.7737300000, -122.4245400000), (1128168, 1001415, 'Veneta', NULL, 'veneta', 'US', 1, 44.0487300000, -123.3509300000), (1128169, 1001425, 'Venetian Village', NULL, 'venetian-village', 'US', 1, 42.3986300000, -88.0525800000), (1128170, 1001436, 'Venice', NULL, 'venice', 'US', 1, 27.0997800000, -82.4542600000), (1128171, 1001425, 'Venice', NULL, 'venice', 'US', 1, 38.6722700000, -90.1698300000), (1128172, 1001416, 'Venice', NULL, 'venice', 'US', 1, 33.9908400000, -118.4600800000), (1128173, 1001436, 'Venice Gardens', NULL, 'venice-gardens', 'US', 1, 27.0731100000, -82.4076000000), (1128174, 1001417, 'Ventnor City', NULL, 'ventnor-city', 'US', 1, 39.3403900000, -74.4773700000), (1128175, 1001416, 'Ventura', NULL, 'ventura', 'US', 1, 34.2783400000, -119.2931700000), (1128176, 1001416, 'Ventura County', NULL, 'ventura-county', 'US', 1, 34.3575300000, -119.1260300000), (1128177, 1001407, 'Venus', NULL, 'venus', 'US', 1, 32.4334700000, -97.1025100000), (1128178, 1001462, 'Veradale', NULL, 'veradale', 'US', 1, 47.6499500000, -117.2073800000), (1128179, 1001434, 'Verde Village', NULL, 'verde-village', 'US', 1, 34.7105000000, -112.0115200000), (1128180, 1001458, 'Verdi', NULL, 'verdi', 'US', 1, 39.5182400000, -119.9888100000), (1128181, 1001421, 'Verdigris', NULL, 'verdigris', 'US', 1, 36.2348200000, -95.6910900000), (1128182, 1001409, 'Vergennes', NULL, 'vergennes', 'US', 1, 44.1672800000, -73.2540100000), (1128183, 1001425, 'Vermilion County', NULL, 'vermilion-county', 'US', 1, 40.1834200000, -87.7328300000), (1128184, 1001457, 'Vermilion Parish', NULL, 'vermilion-parish', 'US', 1, 29.8093900000, -92.3042800000), (1128185, 1001445, 'Vermillion', NULL, 'vermillion', 'US', 1, 42.7794400000, -96.9292100000), (1128186, 1001440, 'Vermillion County', NULL, 'vermillion-county', 'US', 1, 39.8538000000, -87.4639700000), (1128187, 1001414, 'Vernal', NULL, 'vernal', 'US', 1, 40.4555200000, -109.5287500000), (1128188, 1001456, 'Vernon', NULL, 'vernon', 'US', 1, 33.7570500000, -88.1089200000), (1128189, 1001407, 'Vernon', NULL, 'vernon', 'US', 1, 34.1553600000, -99.2662800000), (1128190, 1001452, 'Vernon', NULL, 'vernon', 'US', 1, 43.0795100000, -75.5393400000), (1128191, 1001417, 'Vernon Center', NULL, 'vernon-center', 'US', 1, 41.1887900000, -74.5040500000), (1128192, 1001451, 'Vernon County', NULL, 'vernon-county', 'US', 1, 37.8505800000, -94.3424400000), (1128193, 1001441, 'Vernon County', NULL, 'vernon-county', 'US', 1, 43.5938600000, -90.8343800000), (1128194, 1001425, 'Vernon Hills', NULL, 'vernon-hills', 'US', 1, 42.2194700000, -87.9795200000), (1128195, 1001457, 'Vernon Parish', NULL, 'vernon-parish', 'US', 1, 31.1082900000, -93.1841500000), (1128196, 1001417, 'Vernon Valley', NULL, 'vernon-valley', 'US', 1, 41.2367600000, -74.4871000000), (1128197, 1001415, 'Vernonia', NULL, 'vernonia', 'US', 1, 45.8587200000, -123.1928900000), (1128198, 1001436, 'Vero Beach', NULL, 'vero-beach', 'US', 1, 27.6386400000, -80.3972700000), (1128199, 1001436, 'Vero Beach South', NULL, 'vero-beach-south', 'US', 1, 27.6163800000, -80.4130800000), (1128200, 1001419, 'Verona', NULL, 'verona', 'US', 1, 38.8184000000, -84.6607800000), (1128201, 1001430, 'Verona', NULL, 'verona', 'US', 1, 34.1942700000, -88.7197700000), (1128202, 1001427, 'Verona', NULL, 'verona', 'US', 1, 38.2020800000, -79.0083600000), (1128203, 1001417, 'Verona', NULL, 'verona', 'US', 1, 40.8298200000, -74.2401500000), (1128204, 1001422, 'Verona', NULL, 'verona', 'US', 1, 40.5064600000, -79.8431000000), (1128205, 1001441, 'Verona', NULL, 'verona', 'US', 1, 42.9908300000, -89.5331800000), (1128206, 1001436, 'Verona Walk', NULL, 'verona-walk', 'US', 1, 26.0841200000, -81.6798500000), (1128207, 1001452, 'Verplanck', NULL, 'verplanck', 'US', 1, 41.2528700000, -73.9598600000), (1128208, 1001440, 'Versailles', NULL, 'versailles', 'US', 1, 39.0720000000, -85.2519000000), (1128209, 1001419, 'Versailles', NULL, 'versailles', 'US', 1, 38.0525800000, -84.7299500000), (1128210, 1001451, 'Versailles', NULL, 'versailles', 'US', 1, 38.4314100000, -92.8410300000), (1128211, 1001422, 'Versailles', NULL, 'versailles', 'US', 1, 40.3156300000, -79.8311600000), (1128212, 1001456, 'Vestavia Hills', NULL, 'vestavia-hills', 'US', 1, 33.4487200000, -86.7877700000), (1128213, 1001440, 'Vevay', NULL, 'vevay', 'US', 1, 38.7478400000, -85.0671700000), (1128214, 1001421, 'Vian', NULL, 'vian', 'US', 1, 35.4984300000, -94.9696700000), (1128215, 1001430, 'Vicksburg', NULL, 'vicksburg', 'US', 1, 32.3526500000, -90.8778800000); INSERT INTO `[[dbprefix]]t_city` VALUES (1128216, 1001426, 'Vicksburg', NULL, 'vicksburg', 'US', 1, 42.1200500000, -85.5327800000), (1128217, 1001452, 'Victor', NULL, 'victor', 'US', 1, 42.9825600000, -77.4088800000), (1128218, 1001460, 'Victor', NULL, 'victor', 'US', 1, 43.6027000000, -111.1113300000), (1128219, 1001406, 'Victoria', NULL, 'victoria', 'US', 1, 38.8527900000, -99.1476000000), (1128220, 1001407, 'Victoria', NULL, 'victoria', 'US', 1, 28.8052700000, -97.0036000000), (1128221, 1001427, 'Victoria', NULL, 'victoria', 'US', 1, 36.9948700000, -78.2272200000), (1128222, 1001420, 'Victoria', NULL, 'victoria', 'US', 1, 44.8585700000, -93.6616300000), (1128223, 1001407, 'Victoria County', NULL, 'victoria-county', 'US', 1, 28.7963500000, -96.9715300000), (1128224, 1001416, 'Victorville', NULL, 'victorville', 'US', 1, 34.5361100000, -117.2911600000), (1128225, 1001417, 'Victory Gardens', NULL, 'victory-gardens', 'US', 1, 40.8759300000, -74.5423800000), (1128226, 1001417, 'Victory Lakes', NULL, 'victory-lakes', 'US', 1, 39.6331700000, -74.9660000000), (1128227, 1001455, 'Vidalia', NULL, 'vidalia', 'US', 1, 32.2176900000, -82.4134600000), (1128228, 1001457, 'Vidalia', NULL, 'vidalia', 'US', 1, 31.5654400000, -91.4259500000), (1128229, 1001407, 'Vidor', NULL, 'vidor', 'US', 1, 30.1316000000, -94.0154500000), (1128230, 1001455, 'Vienna', NULL, 'vienna', 'US', 1, 32.0915600000, -83.7954500000), (1128231, 1001425, 'Vienna', NULL, 'vienna', 'US', 1, 37.4153300000, -88.8978400000), (1128232, 1001451, 'Vienna', NULL, 'vienna', 'US', 1, 38.1867100000, -91.9471100000), (1128233, 1001429, 'Vienna', NULL, 'vienna', 'US', 1, 39.3270200000, -81.5484600000), (1128234, 1001427, 'Vienna', NULL, 'vienna', 'US', 1, 38.9012200000, -77.2652600000), (1128235, 1001457, 'Vienna Bend', NULL, 'vienna-bend', 'US', 1, 31.7323900000, -93.0410000000), (1128236, 1001436, 'Viera East', NULL, 'viera-east', 'US', 1, 28.2623400000, -80.7144900000), (1128237, 1001436, 'Viera West', NULL, 'viera-west', 'US', 1, 28.2450400000, -80.7338000000), (1128238, 1001416, 'View Park-Windsor Hills', NULL, 'view-park-windsor-hills', 'US', 1, 33.9955100000, -118.3483500000), (1128239, 1001440, 'Vigo County', NULL, 'vigo-county', 'US', 1, 39.4306400000, -87.3899600000), (1128240, 1001441, 'Vilas County', NULL, 'vilas-county', 'US', 1, 46.0528900000, -89.5147700000), (1128241, 1001425, 'Villa Grove', NULL, 'villa-grove', 'US', 1, 39.8628100000, -88.1622700000), (1128242, 1001419, 'Villa Hills', NULL, 'villa-hills', 'US', 1, 39.0633900000, -84.5930000000), (1128243, 1001425, 'Villa Park', NULL, 'villa-park', 'US', 1, 41.8897500000, -87.9889500000), (1128244, 1001416, 'Villa Park', NULL, 'villa-park', 'US', 1, 33.8144600000, -117.8131100000), (1128245, 1001455, 'Villa Rica', NULL, 'villa-rica', 'US', 1, 33.7320500000, -84.9191100000), (1128246, 1001451, 'Villa Ridge', NULL, 'villa-ridge', 'US', 1, 38.4725500000, -90.8868000000), (1128247, 1001452, 'Village Green', NULL, 'village-green', 'US', 1, 43.1334000000, -76.3129900000), (1128248, 1001422, 'Village Green-Green Ridge', NULL, 'village-green-green-ridge', 'US', 1, 39.8636300000, -75.4254800000), (1128249, 1001411, 'Village Park', NULL, 'village-park', 'US', 1, 21.3980600000, -158.0302800000), (1128250, 1001457, 'Village Saint George', NULL, 'village-saint-george', 'US', 1, 30.3621400000, -91.0673300000), (1128251, 1001422, 'Village Shires', NULL, 'village-shires', 'US', 1, 40.2031600000, -74.9704500000), (1128252, 1001425, 'Village of Campton Hills', NULL, 'village-of-campton-hills', 'US', 1, 41.9366000000, -88.3975000000), (1128253, 1001434, 'Village of Oak Creek (Big Park)', NULL, 'village-of-oak-creek-big-park', 'US', 1, 34.7809000000, -111.7622700000), (1128254, 1001452, 'Village of the Branch', NULL, 'village-of-the-branch', 'US', 1, 40.8562100000, -73.1873300000), (1128255, 1001436, 'Villages of Oriole', NULL, 'villages-of-oriole', 'US', 1, 26.4623000000, -80.1528200000), (1128256, 1001436, 'Villano Beach', NULL, 'villano-beach', 'US', 1, 29.9385800000, -81.3020200000), (1128257, 1001436, 'Villas', NULL, 'villas', 'US', 1, 26.5503500000, -81.8687000000), (1128258, 1001417, 'Villas', NULL, 'villas', 'US', 1, 39.0287200000, -74.9385100000), (1128259, 1001457, 'Ville Platte', NULL, 'ville-platte', 'US', 1, 30.6879700000, -92.2715200000), (1128260, 1001459, 'Villisca', NULL, 'villisca', 'US', 1, 40.9297100000, -94.9760900000), (1128261, 1001444, 'Vilonia', NULL, 'vilonia', 'US', 1, 35.0839800000, -92.2079300000), (1128262, 1001453, 'Vinalhaven', NULL, 'vinalhaven', 'US', 1, 44.0481400000, -68.8317000000), (1128263, 1001440, 'Vincennes', NULL, 'vincennes', 'US', 1, 38.6772700000, -87.5286300000), (1128264, 1001456, 'Vincent', NULL, 'vincent', 'US', 1, 33.3845500000, -86.4119200000), (1128265, 1001416, 'Vincent', NULL, 'vincent', 'US', 1, 34.5005500000, -118.1164600000), (1128266, 1001417, 'Vincentown', NULL, 'vincentown', 'US', 1, 39.9340000000, -74.7484900000), (1128267, 1001422, 'Vinco', NULL, 'vinco', 'US', 1, 40.4050700000, -78.8555800000), (1128268, 1001419, 'Vine Grove', NULL, 'vine-grove', 'US', 1, 37.8100700000, -85.9813500000), (1128269, 1001416, 'Vine Hill', NULL, 'vine-hill', 'US', 1, 38.0085300000, -122.0960800000), (1128270, 1001417, 'Vineland', NULL, 'vineland', 'US', 1, 39.4862300000, -75.0257300000), (1128271, 1001420, 'Vineland', NULL, 'vineland', 'US', 1, 46.1635700000, -93.7574700000), (1128272, 1001414, 'Vineyard', NULL, 'vineyard', 'US', 1, 40.2970400000, -111.7467000000), (1128273, 1001416, 'Vineyard', NULL, 'vineyard', 'US', 1, 38.4644900000, -121.3469200000), (1128274, 1001433, 'Vineyard Haven', NULL, 'vineyard-haven', 'US', 1, 41.4542800000, -70.6036400000), (1128275, 1001436, 'Vineyards', NULL, 'vineyards', 'US', 1, 26.2237300000, -81.7279800000), (1128276, 1001455, 'Vinings', NULL, 'vinings', 'US', 1, 33.8648300000, -84.4643700000), (1128277, 1001421, 'Vinita', NULL, 'vinita', 'US', 1, 36.6386900000, -95.1541300000), (1128278, 1001451, 'Vinita Park', NULL, 'vinita-park', 'US', 1, 38.6900500000, -90.3426200000), (1128279, 1001457, 'Vinton', NULL, 'vinton', 'US', 1, 30.1907600000, -93.5812700000), (1128280, 1001459, 'Vinton', NULL, 'vinton', 'US', 1, 42.1686100000, -92.0235100000), (1128281, 1001427, 'Vinton', NULL, 'vinton', 'US', 1, 37.2809700000, -79.8969800000), (1128282, 1001407, 'Vinton', NULL, 'vinton', 'US', 1, 31.9512100000, -106.6024900000), (1128283, 1001452, 'Viola', NULL, 'viola', 'US', 1, 41.1364800000, -74.0823600000), (1128284, 1001457, 'Violet', NULL, 'violet', 'US', 1, 29.8957600000, -89.8978400000), (1128285, 1001425, 'Virden', NULL, 'virden', 'US', 1, 39.5008900000, -89.7678700000), (1128286, 1001425, 'Virginia', NULL, 'virginia', 'US', 1, 39.9511600000, -90.2123400000), (1128287, 1001420, 'Virginia', NULL, 'virginia', 'US', 1, 47.5232600000, -92.5365700000), (1128288, 1001427, 'Virginia Beach', NULL, 'virginia-beach', 'US', 1, 36.8529300000, -75.9779900000), (1128289, 1001446, 'Virginia City', NULL, 'virginia-city', 'US', 1, 45.2938100000, -111.9460900000), (1128290, 1001458, 'Virginia City', NULL, 'virginia-city', 'US', 1, 39.3096300000, -119.6496200000), (1128291, 1001436, 'Virginia Gardens', NULL, 'virginia-gardens', 'US', 1, 25.8103800000, -80.3022700000), (1128292, 1001441, 'Viroqua', NULL, 'viroqua', 'US', 1, 43.5569200000, -90.8887400000), (1128293, 1001416, 'Visalia', NULL, 'visalia', 'US', 1, 36.3302300000, -119.2920600000), (1128294, 1001416, 'Visitacion Valley', NULL, 'visitacion-valley', 'US', 1, 37.7171500000, -122.4043300000), (1128295, 1001416, 'Vista', NULL, 'vista', 'US', 1, 33.2000400000, -117.2425400000), (1128296, 1001417, 'Vista Center', NULL, 'vista-center', 'US', 1, 40.1592800000, -74.3179200000), (1128297, 1001416, 'Vista Santa Rosa', NULL, 'vista-santa-rosa', 'US', 1, 33.6278000000, -116.2180600000), (1128298, 1001457, 'Vivian', NULL, 'vivian', 'US', 1, 32.8715300000, -93.9874000000), (1128299, 1001411, 'Volcano', NULL, 'volcano', 'US', 1, 19.4427600000, -155.2339800000), (1128300, 1001445, 'Volga', NULL, 'volga', 'US', 1, 44.3235800000, -96.9264500000), (1128301, 1001452, 'Volney', NULL, 'volney', 'US', 1, 43.3428500000, -76.3577100000), (1128302, 1001425, 'Volo', NULL, 'volo', 'US', 1, 42.3261300000, -88.1678600000), (1128303, 1001436, 'Volusia County', NULL, 'volusia-county', 'US', 1, 29.0634500000, -81.1485700000), (1128304, 1001407, 'Von Ormy', NULL, 'von-ormy', 'US', 1, 29.2891300000, -98.6444600000), (1128305, 1001454, 'Vonore', NULL, 'vonore', 'US', 1, 35.5900800000, -84.2418600000), (1128306, 1001417, 'Voorhees', NULL, 'voorhees', 'US', 1, 40.4812200000, -74.4832100000), (1128307, 1001452, 'Voorheesville', NULL, 'voorheesville', 'US', 1, 42.6539700000, -73.9287400000), (1128308, 1001406, 'WaKeeney', NULL, 'wakeeney', 'US', 1, 39.0250100000, -99.8795700000), (1128309, 1001440, 'Wabash', NULL, 'wabash', 'US', 1, 40.7978200000, -85.8205400000), (1128310, 1001425, 'Wabash County', NULL, 'wabash-county', 'US', 1, 38.4460700000, -87.8442500000), (1128311, 1001440, 'Wabash County', NULL, 'wabash-county', 'US', 1, 40.8456900000, -85.7940100000), (1128312, 1001420, 'Wabasha', NULL, 'wabasha', 'US', 1, 44.3838600000, -92.0329400000), (1128313, 1001420, 'Wabasha County', NULL, 'wabasha-county', 'US', 1, 44.2842800000, -92.2302700000), (1128314, 1001436, 'Wabasso Beach', NULL, 'wabasso-beach', 'US', 1, 27.7647500000, -80.3989400000), (1128315, 1001406, 'Wabaunsee County', NULL, 'wabaunsee-county', 'US', 1, 38.9532800000, -96.2049900000), (1128316, 1001407, 'Waco', NULL, 'waco', 'US', 1, 31.5493300000, -97.1466700000), (1128317, 1001420, 'Waconia', NULL, 'waconia', 'US', 1, 44.8508000000, -93.7869100000), (1128318, 1001426, 'Wacousta', NULL, 'wacousta', 'US', 1, 42.8278100000, -84.7008200000), (1128319, 1001430, 'Wade', NULL, 'wade', 'US', 1, 30.6424200000, -88.5697400000), (1128320, 1001443, 'Wade Hampton', NULL, 'wade-hampton', 'US', 1, 34.9037300000, -82.3331700000), (1128321, 1001420, 'Wadena', NULL, 'wadena', 'US', 1, 46.4424600000, -95.1361400000), (1128322, 1001420, 'Wadena County', NULL, 'wadena-county', 'US', 1, 46.5857600000, -94.9694100000), (1128323, 1001447, 'Wadesboro', NULL, 'wadesboro', 'US', 1, 34.9682100000, -80.0767300000), (1128324, 1001452, 'Wading River', NULL, 'wading-river', 'US', 1, 40.9503800000, -72.8426000000), (1128325, 1001455, 'Wadley', NULL, 'wadley', 'US', 1, 32.8668200000, -82.4040200000), (1128326, 1001425, 'Wadsworth', NULL, 'wadsworth', 'US', 1, 42.4286300000, -87.9239700000), (1128327, 1001457, 'Waggaman', NULL, 'waggaman', 'US', 1, 29.9185400000, -90.2109100000), (1128328, 1001445, 'Wagner', NULL, 'wagner', 'US', 1, 43.0797200000, -98.2931300000), (1128329, 1001421, 'Wagoner', NULL, 'wagoner', 'US', 1, 35.9595400000, -95.3694100000), (1128330, 1001421, 'Wagoner County', NULL, 'wagoner-county', 'US', 1, 35.9611000000, -95.5211800000), (1128331, 1001411, 'Wahiawā', NULL, 'wahiawa', 'US', 1, 21.5027900000, -158.0246400000), (1128332, 1001462, 'Wahkiakum County', NULL, 'wahkiakum-county', 'US', 1, 46.2912500000, -123.4331600000), (1128333, 1001436, 'Wahneta', NULL, 'wahneta', 'US', 1, 27.9528000000, -81.7270200000), (1128334, 1001408, 'Wahoo', NULL, 'wahoo', 'US', 1, 41.2113900000, -96.6203000000), (1128335, 1001418, 'Wahpeton', NULL, 'wahpeton', 'US', 1, 46.2652400000, -96.6059100000), (1128336, 1001411, 'Waialua', NULL, 'waialua', 'US', 1, 21.5768800000, -158.1315400000), (1128337, 1001411, 'Waianae', NULL, 'waianae', 'US', 1, 21.4378500000, -158.1855500000), (1128338, 1001411, 'Waihee-Waiehu', NULL, 'waihee-waiehu', 'US', 1, 20.9302200000, -156.5045800000), (1128339, 1001411, 'Waikapū', NULL, 'waikapu', 'US', 1, 20.8580600000, -156.5069400000), (1128340, 1001411, 'Waikoloa', NULL, 'waikoloa', 'US', 1, 19.9394200000, -155.7893100000), (1128341, 1001411, 'Wailea', NULL, 'wailea', 'US', 1, 20.6897300000, -156.4419000000), (1128342, 1001411, 'Wailua', NULL, 'wailua', 'US', 1, 22.0527100000, -159.3378100000), (1128343, 1001411, 'Wailua Homesteads', NULL, 'wailua-homesteads', 'US', 1, 22.0724400000, -159.3767700000), (1128344, 1001411, 'Wailuku', NULL, 'wailuku', 'US', 1, 20.8913300000, -156.5060400000), (1128345, 1001411, 'Waimalu', NULL, 'waimalu', 'US', 1, 21.4047200000, -157.9433300000), (1128346, 1001411, 'Waimanalo', NULL, 'waimanalo', 'US', 1, 21.3461400000, -157.7238000000), (1128347, 1001411, 'Waimea', NULL, 'waimea', 'US', 1, 20.0232300000, -155.6728800000), (1128348, 1001411, 'Waimānalo Beach', NULL, 'waimanalo-beach', 'US', 1, 21.3340700000, -157.7000300000), (1128349, 1001411, 'Wainaku', NULL, 'wainaku', 'US', 1, 19.7447200000, -155.0950000000), (1128350, 1001411, 'Waipahu', NULL, 'waipahu', 'US', 1, 21.3866700000, -158.0091700000), (1128351, 1001411, 'Waipio', NULL, 'waipio', 'US', 1, 21.4182300000, -157.9990600000), (1128352, 1001411, 'Waipi‘o Acres', NULL, 'waipi-o-acres', 'US', 1, 21.4648500000, -158.0133100000), (1128353, 1001420, 'Waite Park', NULL, 'waite-park', 'US', 1, 45.5571900000, -94.2241600000), (1128354, 1001462, 'Waitsburg', NULL, 'waitsburg', 'US', 1, 46.2704200000, -118.1532900000), (1128355, 1001440, 'Wakarusa', NULL, 'wakarusa', 'US', 1, 41.5361600000, -86.0208300000), (1128356, 1001447, 'Wake County', NULL, 'wake-county', 'US', 1, 35.7901200000, -78.6502200000), (1128357, 1001447, 'Wake Forest', NULL, 'wake-forest', 'US', 1, 35.9798700000, -78.5097200000), (1128358, 1001407, 'Wake Village', NULL, 'wake-village', 'US', 1, 33.4267900000, -94.1063000000), (1128359, 1001433, 'Wakefield', NULL, 'wakefield', 'US', 1, 42.5064800000, -71.0728300000), (1128360, 1001426, 'Wakefield', NULL, 'wakefield', 'US', 1, 46.4752300000, -89.9398900000), (1128361, 1001404, 'Wakefield', NULL, 'wakefield', 'US', 1, 43.5681300000, -71.0300700000), (1128362, 1001408, 'Wakefield', NULL, 'wakefield', 'US', 1, 42.2691700000, -96.8650400000), (1128363, 1001452, 'Wakefield', NULL, 'wakefield', 'US', 1, 40.8978800000, -73.8523600000), (1128364, 1001461, 'Wakefield-Peacedale', NULL, 'wakefield-peacedale', 'US', 1, 41.4460600000, -71.5004000000), (1128365, 1001436, 'Wakulla County', NULL, 'wakulla-county', 'US', 1, 30.1477700000, -84.3756100000), (1128366, 1001459, 'Walcott', NULL, 'walcott', 'US', 1, 41.5847500000, -90.7720900000), (1128367, 1001454, 'Walden', NULL, 'walden', 'US', 1, 35.1647900000, -85.3013500000), (1128368, 1001452, 'Walden', NULL, 'walden', 'US', 1, 41.5612000000, -74.1884800000), (1128369, 1001450, 'Walden', NULL, 'walden', 'US', 1, 40.7316400000, -106.2836400000), (1128370, 1001444, 'Waldo', NULL, 'waldo', 'US', 1, 33.3515100000, -93.2957300000), (1128371, 1001436, 'Waldo', NULL, 'waldo', 'US', 1, 29.7896900000, -82.1673200000), (1128372, 1001453, 'Waldo County', NULL, 'waldo-county', 'US', 1, 44.4852500000, -69.1218800000), (1128373, 1001453, 'Waldoboro', NULL, 'waldoboro', 'US', 1, 44.0953600000, -69.3756000000), (1128374, 1001416, 'Waldon', NULL, 'waldon', 'US', 1, 37.9263100000, -122.0555200000), (1128375, 1001401, 'Waldorf', NULL, 'waldorf', 'US', 1, 38.6245600000, -76.9391400000), (1128376, 1001415, 'Waldport', NULL, 'waldport', 'US', 1, 44.4267900000, -124.0687300000), (1128377, 1001444, 'Waldron', NULL, 'waldron', 'US', 1, 34.8984300000, -94.0907600000), (1128378, 1001417, 'Waldwick', NULL, 'waldwick', 'US', 1, 41.0106500000, -74.1179200000), (1128379, 1001433, 'Wales', NULL, 'wales', 'US', 1, 42.0695400000, -72.2223000000), (1128380, 1001441, 'Wales', NULL, 'wales', 'US', 1, 43.0044500000, -88.3767600000), (1128381, 1001459, 'Walford', NULL, 'walford', 'US', 1, 41.8783400000, -91.8346200000), (1128382, 1001443, 'Walhalla', NULL, 'walhalla', 'US', 1, 34.7648200000, -83.0640400000), (1128383, 1001457, 'Walker', NULL, 'walker', 'US', 1, 30.4879700000, -90.8614900000), (1128384, 1001426, 'Walker', NULL, 'walker', 'US', 1, 43.0014100000, -85.7680900000), (1128385, 1001420, 'Walker', NULL, 'walker', 'US', 1, 47.1013500000, -94.5872200000), (1128386, 1001456, 'Walker County', NULL, 'walker-county', 'US', 1, 33.8033300000, -87.2973600000), (1128387, 1001455, 'Walker County', NULL, 'walker-county', 'US', 1, 34.7356600000, -85.3009800000), (1128388, 1001407, 'Walker County', NULL, 'walker-county', 'US', 1, 30.7390500000, -95.5722800000), (1128389, 1001401, 'Walker Mill', NULL, 'walker-mill', 'US', 1, 38.8753900000, -76.8883100000), (1128390, 1001401, 'Walkersville', NULL, 'walkersville', 'US', 1, 39.4862100000, -77.3519300000), (1128391, 1001440, 'Walkerton', NULL, 'walkerton', 'US', 1, 41.4667100000, -86.4830700000), (1128392, 1001447, 'Walkertown', NULL, 'walkertown', 'US', 1, 36.1754100000, -80.1531000000), (1128393, 1001462, 'Walla Walla', NULL, 'walla-walla', 'US', 1, 46.0645800000, -118.3430200000), (1128394, 1001462, 'Walla Walla County', NULL, 'walla-walla-county', 'US', 1, 46.2298000000, -118.4784500000), (1128395, 1001462, 'Walla Walla East', NULL, 'walla-walla-east', 'US', 1, 46.0518400000, -118.3040300000), (1128396, 1001436, 'Wallace', NULL, 'wallace', 'US', 1, 30.6774100000, -87.1799700000), (1128397, 1001447, 'Wallace', NULL, 'wallace', 'US', 1, 34.7357200000, -77.9952600000), (1128398, 1001460, 'Wallace', NULL, 'wallace', 'US', 1, 47.4740900000, -115.9279400000), (1128399, 1001406, 'Wallace County', NULL, 'wallace-county', 'US', 1, 38.9166600000, -101.7635700000), (1128400, 1001447, 'Wallburg', NULL, 'wallburg', 'US', 1, 36.0101400000, -80.1392100000), (1128401, 1001426, 'Walled Lake', NULL, 'walled-lake', 'US', 1, 42.5378100000, -83.4810500000), (1128402, 1001422, 'Wallenpaupack Lake Estates', NULL, 'wallenpaupack-lake-estates', 'US', 1, 41.3989800000, -75.2740200000), (1128403, 1001407, 'Waller', NULL, 'waller', 'US', 1, 30.0566100000, -95.9269000000), (1128404, 1001462, 'Waller', NULL, 'waller', 'US', 1, 47.2006600000, -122.3692900000), (1128405, 1001407, 'Waller County', NULL, 'waller-county', 'US', 1, 30.0108100000, -95.9876500000), (1128406, 1001435, 'Wallingford', NULL, 'wallingford', 'US', 1, 41.4570400000, -72.8231600000), (1128407, 1001435, 'Wallingford Center', NULL, 'wallingford-center', 'US', 1, 41.4498700000, -72.8189200000), (1128408, 1001417, 'Wallington', NULL, 'wallington', 'US', 1, 40.8531600000, -74.1137500000), (1128409, 1001407, 'Wallis', NULL, 'wallis', 'US', 1, 29.6313500000, -96.0652400000), (1128410, 1001452, 'Wallkill', NULL, 'wallkill', 'US', 1, 41.6056500000, -74.1840400000), (1128411, 1001415, 'Wallowa County', NULL, 'wallowa-county', 'US', 1, 45.5798300000, -117.1810700000), (1128412, 1001430, 'Walls', NULL, 'walls', 'US', 1, 34.9582400000, -90.1525600000), (1128413, 1001425, 'Walnut', NULL, 'walnut', 'US', 1, 41.5567000000, -89.5934300000), (1128414, 1001416, 'Walnut', NULL, 'walnut', 'US', 1, 34.0202900000, -117.8653400000), (1128415, 1001447, 'Walnut Cove', NULL, 'walnut-cove', 'US', 1, 36.2954100000, -80.1417100000), (1128416, 1001416, 'Walnut Creek', NULL, 'walnut-creek', 'US', 1, 37.9063100000, -122.0649600000), (1128417, 1001455, 'Walnut Grove', NULL, 'walnut-grove', 'US', 1, 33.7426100000, -83.8524000000), (1128418, 1001430, 'Walnut Grove', NULL, 'walnut-grove', 'US', 1, 32.5904200000, -89.4584000000), (1128419, 1001416, 'Walnut Grove', NULL, 'walnut-grove', 'US', 1, 38.2421400000, -121.5116200000), (1128420, 1001462, 'Walnut Grove', NULL, 'walnut-grove', 'US', 1, 45.6678900000, -122.5989900000), (1128421, 1001454, 'Walnut Hill', NULL, 'walnut-hill', 'US', 1, 36.5698300000, -82.2568000000), (1128422, 1001416, 'Walnut Park', NULL, 'walnut-park', 'US', 1, 33.9680700000, -118.2250700000), (1128423, 1001444, 'Walnut Ridge', NULL, 'walnut-ridge', 'US', 1, 36.0684000000, -90.9559500000), (1128424, 1001422, 'Walnutport', NULL, 'walnutport', 'US', 1, 40.7542600000, -75.5988000000), (1128425, 1001433, 'Walpole', NULL, 'walpole', 'US', 1, 42.1417700000, -71.2495000000), (1128426, 1001450, 'Walsenburg', NULL, 'walsenburg', 'US', 1, 37.6241800000, -104.7802600000), (1128427, 1001418, 'Walsh County', NULL, 'walsh-county', 'US', 1, 48.3694600000, -97.7213700000), (1128428, 1001443, 'Walterboro', NULL, 'walterboro', 'US', 1, 32.9051700000, -80.6667700000), (1128429, 1001421, 'Walters', NULL, 'walters', 'US', 1, 34.3598100000, -98.3078300000), (1128430, 1001430, 'Walthall', NULL, 'walthall', 'US', 1, 33.6073400000, -89.2772900000), (1128431, 1001430, 'Walthall County', NULL, 'walthall-county', 'US', 1, 31.1484200000, -90.1061400000), (1128432, 1001433, 'Waltham', NULL, 'waltham', 'US', 1, 42.3764900000, -71.2356100000), (1128433, 1001455, 'Walthourville', NULL, 'walthourville', 'US', 1, 31.7741000000, -81.6326100000), (1128434, 1001419, 'Walton', NULL, 'walton', 'US', 1, 38.8756200000, -84.6102200000), (1128435, 1001440, 'Walton', NULL, 'walton', 'US', 1, 40.6608700000, -86.2419400000), (1128436, 1001452, 'Walton', NULL, 'walton', 'US', 1, 42.1695300000, -75.1293400000), (1128437, 1001436, 'Walton County', NULL, 'walton-county', 'US', 1, 30.6184700000, -86.1715200000), (1128438, 1001455, 'Walton County', NULL, 'walton-county', 'US', 1, 33.7815600000, -83.7338500000), (1128439, 1001452, 'Walton Park', NULL, 'walton-park', 'US', 1, 41.3098200000, -74.2290400000), (1128440, 1001441, 'Walworth', NULL, 'walworth', 'US', 1, 42.5311300000, -88.5995500000), (1128441, 1001445, 'Walworth County', NULL, 'walworth-county', 'US', 1, 45.4299500000, -100.0315600000), (1128442, 1001441, 'Walworth County', NULL, 'walworth-county', 'US', 1, 42.6684800000, -88.5419200000), (1128443, 1001425, 'Wamac', NULL, 'wamac', 'US', 1, 38.5089400000, -89.1406300000), (1128444, 1001406, 'Wamego', NULL, 'wamego', 'US', 1, 39.2019400000, -96.3050000000), (1128445, 1001452, 'Wampsville', NULL, 'wampsville', 'US', 1, 43.0753500000, -75.7068500000), (1128446, 1001452, 'Wanakah', NULL, 'wanakah', 'US', 1, 42.7461700000, -78.9030900000), (1128447, 1001417, 'Wanamassa', NULL, 'wanamassa', 'US', 1, 40.2317800000, -74.0254200000), (1128448, 1001420, 'Wanamingo', NULL, 'wanamingo', 'US', 1, 44.3044100000, -92.7904700000), (1128449, 1001417, 'Wanaque', NULL, 'wanaque', 'US', 1, 41.0381500000, -74.2940400000), (1128450, 1001440, 'Wanatah', NULL, 'wanatah', 'US', 1, 41.4306000000, -86.8983600000), (1128451, 1001447, 'Wanchese', NULL, 'wanchese', 'US', 1, 35.8426700000, -75.6385100000), (1128452, 1001452, 'Wantagh', NULL, 'wantagh', 'US', 1, 40.6837100000, -73.5101300000), (1128453, 1001462, 'Wapato', NULL, 'wapato', 'US', 1, 46.4476300000, -120.4203400000), (1128454, 1001459, 'Wapello', NULL, 'wapello', 'US', 1, 41.1814200000, -91.1854300000), (1128455, 1001459, 'Wapello County', NULL, 'wapello-county', 'US', 1, 41.0305800000, -92.4094500000), (1128456, 1001452, 'Wappingers Falls', NULL, 'wappingers-falls', 'US', 1, 41.5964800000, -73.9109700000), (1128457, 1001444, 'Ward', NULL, 'ward', 'US', 1, 35.0303600000, -91.9504200000), (1128458, 1001407, 'Ward County', NULL, 'ward-county', 'US', 1, 31.5094700000, -103.1024300000), (1128459, 1001418, 'Ward County', NULL, 'ward-county', 'US', 1, 48.2217500000, -101.5418300000), (1128460, 1001462, 'Warden', NULL, 'warden', 'US', 1, 46.9676400000, -119.0397300000), (1128461, 1001451, 'Wardsville', NULL, 'wardsville', 'US', 1, 38.4889200000, -92.1743500000), (1128462, 1001433, 'Ware', NULL, 'ware', 'US', 1, 42.2598100000, -72.2398000000), (1128463, 1001455, 'Ware County', NULL, 'ware-county', 'US', 1, 31.0536300000, -82.4236800000), (1128464, 1001443, 'Ware Shoals', NULL, 'ware-shoals', 'US', 1, 34.3984500000, -82.2467900000), (1128465, 1001433, 'Wareham Center', NULL, 'wareham-center', 'US', 1, 41.7667700000, -70.7261500000), (1128466, 1001417, 'Waretown', NULL, 'waretown', 'US', 1, 39.7915100000, -74.1951400000), (1128467, 1001462, 'Warm Beach', NULL, 'warm-beach', 'US', 1, 48.1706500000, -122.3646000000), (1128468, 1001436, 'Warm Mineral Springs', NULL, 'warm-mineral-springs', 'US', 1, 27.0597800000, -82.2600900000), (1128469, 1001427, 'Warm Springs', NULL, 'warm-springs', 'US', 1, 38.0462400000, -79.7906100000), (1128470, 1001446, 'Warm Springs', NULL, 'warm-springs', 'US', 1, 46.1813100000, -112.7847600000), (1128471, 1001415, 'Warm Springs', NULL, 'warm-springs', 'US', 1, 44.7634500000, -121.2661600000), (1128472, 1001422, 'Warminster Heights', NULL, 'warminster-heights', 'US', 1, 40.1870500000, -75.0815600000), (1128473, 1001421, 'Warner', NULL, 'warner', 'US', 1, 35.4942600000, -95.3055200000), (1128474, 1001455, 'Warner Robins', NULL, 'warner-robins', 'US', 1, 32.6157400000, -83.6266400000), (1128475, 1001421, 'Warr Acres', NULL, 'warr-acres', 'US', 1, 35.5225600000, -97.6189300000), (1128476, 1001444, 'Warren', NULL, 'warren', 'US', 1, 33.6126100000, -92.0645800000), (1128477, 1001440, 'Warren', NULL, 'warren', 'US', 1, 40.6828200000, -85.4272000000), (1128478, 1001433, 'Warren', NULL, 'warren', 'US', 1, 42.2125900000, -72.1911900000), (1128479, 1001425, 'Warren', NULL, 'warren', 'US', 1, 42.4964000000, -89.9895700000), (1128480, 1001453, 'Warren', NULL, 'warren', 'US', 1, 44.1203600000, -69.2400500000), (1128481, 1001426, 'Warren', NULL, 'warren', 'US', 1, 42.4904400000, -83.0130400000), (1128482, 1001420, 'Warren', NULL, 'warren', 'US', 1, 48.1966400000, -96.7728400000), (1128483, 1001422, 'Warren', NULL, 'warren', 'US', 1, 41.8439500000, -79.1450400000), (1128484, 1001461, 'Warren', NULL, 'warren', 'US', 1, 41.7303800000, -71.2825500000), (1128485, 1001415, 'Warren', NULL, 'warren', 'US', 1, 45.8190000000, -122.8489900000), (1128486, 1001455, 'Warren County', NULL, 'warren-county', 'US', 1, 33.4089600000, -82.6767600000), (1128487, 1001419, 'Warren County', NULL, 'warren-county', 'US', 1, 36.9935800000, -86.4238000000), (1128488, 1001451, 'Warren County', NULL, 'warren-county', 'US', 1, 38.7646200000, -91.1606900000), (1128489, 1001430, 'Warren County', NULL, 'warren-county', 'US', 1, 32.3572300000, -90.8520100000), (1128490, 1001447, 'Warren County', NULL, 'warren-county', 'US', 1, 36.3965900000, -78.1069000000), (1128491, 1001454, 'Warren County', NULL, 'warren-county', 'US', 1, 35.6786800000, -85.7785000000), (1128492, 1001427, 'Warren County', NULL, 'warren-county', 'US', 1, 38.9087800000, -78.2074600000), (1128493, 1001459, 'Warren County', NULL, 'warren-county', 'US', 1, 41.3343700000, -93.5613600000), (1128494, 1001425, 'Warren County', NULL, 'warren-county', 'US', 1, 40.8488300000, -90.6150300000), (1128495, 1001440, 'Warren County', NULL, 'warren-county', 'US', 1, 40.3469000000, -87.3533100000), (1128496, 1001417, 'Warren County', NULL, 'warren-county', 'US', 1, 40.8572500000, -74.9970200000), (1128497, 1001452, 'Warren County', NULL, 'warren-county', 'US', 1, 43.5609800000, -73.8460100000), (1128498, 1001422, 'Warren County', NULL, 'warren-county', 'US', 1, 41.8145700000, -79.2741400000), (1128499, 1001440, 'Warren Park', NULL, 'warren-park', 'US', 1, 39.7819900000, -86.0502600000), (1128500, 1001417, 'Warren Township', NULL, 'warren-township', 'US', 1, 40.6082200000, -74.5180300000), (1128501, 1001425, 'Warrensburg', NULL, 'warrensburg', 'US', 1, 39.9328200000, -89.0620300000), (1128502, 1001451, 'Warrensburg', NULL, 'warrensburg', 'US', 1, 38.7627900000, -93.7360500000), (1128503, 1001452, 'Warrensburg', NULL, 'warrensburg', 'US', 1, 43.4967400000, -73.7762300000), (1128504, 1001455, 'Warrenton', NULL, 'warrenton', 'US', 1, 33.4070800000, -82.6620800000), (1128505, 1001451, 'Warrenton', NULL, 'warrenton', 'US', 1, 38.8114400000, -91.1415400000), (1128506, 1001447, 'Warrenton', NULL, 'warrenton', 'US', 1, 36.3984800000, -78.1552700000), (1128507, 1001427, 'Warrenton', NULL, 'warrenton', 'US', 1, 38.7134500000, -77.7952700000), (1128508, 1001415, 'Warrenton', NULL, 'warrenton', 'US', 1, 46.1651000000, -123.9237600000), (1128509, 1001443, 'Warrenville', NULL, 'warrenville', 'US', 1, 33.5509700000, -81.8040000000), (1128510, 1001425, 'Warrenville', NULL, 'warrenville', 'US', 1, 41.8178100000, -88.1734000000), (1128511, 1001440, 'Warrick County', NULL, 'warrick-county', 'US', 1, 38.0921700000, -87.2720500000), (1128512, 1001436, 'Warrington', NULL, 'warrington', 'US', 1, 30.3840900000, -87.2749700000), (1128513, 1001456, 'Warrior', NULL, 'warrior', 'US', 1, 33.8142700000, -86.8094400000), (1128514, 1001420, 'Warroad', NULL, 'warroad', 'US', 1, 48.9052700000, -95.3144000000), (1128515, 1001419, 'Warsaw', NULL, 'warsaw', 'US', 1, 38.7834000000, -84.9016200000), (1128516, 1001447, 'Warsaw', NULL, 'warsaw', 'US', 1, 34.9993300000, -78.0911000000), (1128517, 1001451, 'Warsaw', NULL, 'warsaw', 'US', 1, 38.2430800000, -93.3818700000), (1128518, 1001427, 'Warsaw', NULL, 'warsaw', 'US', 1, 37.9587400000, -76.7580100000), (1128519, 1001425, 'Warsaw', NULL, 'warsaw', 'US', 1, 40.3592100000, -91.4346000000), (1128520, 1001440, 'Warsaw', NULL, 'warsaw', 'US', 1, 41.2381000000, -85.8530500000), (1128521, 1001452, 'Warsaw', NULL, 'warsaw', 'US', 1, 42.7400600000, -78.1327900000), (1128522, 1001451, 'Warson Woods', NULL, 'warson-woods', 'US', 1, 38.6072700000, -90.3834500000), (1128523, 1001454, 'Wartburg', NULL, 'wartburg', 'US', 1, 36.1048000000, -84.5971600000), (1128524, 1001452, 'Warwick', NULL, 'warwick', 'US', 1, 41.2564800000, -74.3598800000), (1128525, 1001461, 'Warwick', NULL, 'warwick', 'US', 1, 41.7001000000, -71.4161700000), (1128526, 1001414, 'Wasatch County', NULL, 'wasatch-county', 'US', 1, 40.3303500000, -111.1684700000), (1128527, 1001425, 'Wasco', NULL, 'wasco', 'US', 1, 41.9380800000, -88.4045200000), (1128528, 1001416, 'Wasco', NULL, 'wasco', 'US', 1, 35.5941200000, -119.3409500000), (1128529, 1001415, 'Wasco County', NULL, 'wasco-county', 'US', 1, 45.1600500000, -121.1681500000), (1128530, 1001420, 'Waseca', NULL, 'waseca', 'US', 1, 44.0777400000, -93.5074400000), (1128531, 1001420, 'Waseca County', NULL, 'waseca-county', 'US', 1, 44.0221200000, -93.5872800000), (1128532, 1001442, 'Washakie County', NULL, 'washakie-county', 'US', 1, 43.9050000000, -107.6828600000), (1128533, 1001425, 'Washburn', NULL, 'washburn', 'US', 1, 40.9192000000, -89.2912000000), (1128534, 1001441, 'Washburn', NULL, 'washburn', 'US', 1, 46.6732700000, -90.8949100000), (1128535, 1001418, 'Washburn', NULL, 'washburn', 'US', 1, 47.2891600000, -101.0290300000), (1128536, 1001441, 'Washburn County', NULL, 'washburn-county', 'US', 1, 45.8991800000, -91.7912300000), (1128537, 1001406, 'Washington', NULL, 'washington', 'US', 1, 39.8180600000, -97.0508600000), (1128538, 1001440, 'Washington', NULL, 'washington', 'US', 1, 38.6592200000, -87.1727900000), (1128539, 1001455, 'Washington', NULL, 'washington', 'US', 1, 33.7367900000, -82.7393100000), (1128540, 1001451, 'Washington', NULL, 'washington', 'US', 1, 38.5581100000, -91.0120900000), (1128541, 1001447, 'Washington', NULL, 'washington', 'US', 1, 35.5465500000, -77.0521700000), (1128542, 1001459, 'Washington', NULL, 'washington', 'US', 1, 41.2991800000, -91.6929400000), (1128543, 1001427, 'Washington', NULL, 'washington', 'US', 1, 38.7134500000, -78.1594400000), (1128544, 1001429, 'Washington', NULL, 'washington', 'US', 1, 39.2611900000, -81.6718000000), (1128545, 1001435, 'Washington', NULL, 'washington', 'US', 1, 41.6314800000, -73.3106700000), (1128546, 1001425, 'Washington', NULL, 'washington', 'US', 1, 40.7036500000, -89.4073100000), (1128547, 1001453, 'Washington', NULL, 'washington', 'US', 1, 44.2736900000, -69.3672700000), (1128548, 1001417, 'Washington', NULL, 'washington', 'US', 1, 40.7584300000, -74.9793400000), (1128549, 1001422, 'Washington', NULL, 'washington', 'US', 1, 40.1739600000, -80.2461700000), (1128550, 1001409, 'Washington', NULL, 'washington', 'US', 1, 44.1056200000, -72.4326000000), (1128551, 1001414, 'Washington', NULL, 'washington', 'US', 1, 37.1305400000, -113.5082900000), (1128552, 1001456, 'Washington County', NULL, 'washington-county', 'US', 1, 31.4076000000, -88.2078800000), (1128553, 1001444, 'Washington County', NULL, 'washington-county', 'US', 1, 35.9790700000, -94.2155800000), (1128554, 1001436, 'Washington County', NULL, 'washington-county', 'US', 1, 30.6105900000, -85.6653300000), (1128555, 1001455, 'Washington County', NULL, 'washington-county', 'US', 1, 32.9695400000, -82.7959000000), (1128556, 1001425, 'Washington County', NULL, 'washington-county', 'US', 1, 38.3521700000, -89.4104500000), (1128557, 1001440, 'Washington County', NULL, 'washington-county', 'US', 1, 38.5999800000, -86.1053100000), (1128558, 1001406, 'Washington County', NULL, 'washington-county', 'US', 1, 39.7842000000, -97.0875400000), (1128559, 1001419, 'Washington County', NULL, 'washington-county', 'US', 1, 37.7533800000, -85.1747500000), (1128560, 1001401, 'Washington County', NULL, 'washington-county', 'US', 1, 39.6036700000, -77.8139800000), (1128561, 1001451, 'Washington County', NULL, 'washington-county', 'US', 1, 37.9616800000, -90.8774200000), (1128562, 1001430, 'Washington County', NULL, 'washington-county', 'US', 1, 33.2837000000, -90.9474500000), (1128563, 1001447, 'Washington County', NULL, 'washington-county', 'US', 1, 35.8388700000, -76.5686800000), (1128564, 1001421, 'Washington County', NULL, 'washington-county', 'US', 1, 36.7152400000, -95.9043700000), (1128565, 1001454, 'Washington County', NULL, 'washington-county', 'US', 1, 36.2933000000, -82.4974300000), (1128566, 1001407, 'Washington County', NULL, 'washington-county', 'US', 1, 30.2145300000, -96.4034400000), (1128567, 1001427, 'Washington County', NULL, 'washington-county', 'US', 1, 36.7244800000, -81.9596600000), (1128568, 1001459, 'Washington County', NULL, 'washington-county', 'US', 1, 41.3355900000, -91.7178700000), (1128569, 1001453, 'Washington County', NULL, 'washington-county', 'US', 1, 44.9694600000, -67.6090600000), (1128570, 1001420, 'Washington County', NULL, 'washington-county', 'US', 1, 45.0387300000, -92.8839600000), (1128571, 1001408, 'Washington County', NULL, 'washington-county', 'US', 1, 41.5310400000, -96.2220300000), (1128572, 1001452, 'Washington County', NULL, 'washington-county', 'US', 1, 43.3137000000, -73.4307600000), (1128573, 1001422, 'Washington County', NULL, 'washington-county', 'US', 1, 40.1894000000, -80.2482400000), (1128574, 1001461, 'Washington County', NULL, 'washington-county', 'US', 1, 41.3964900000, -71.6196600000), (1128575, 1001409, 'Washington County', NULL, 'washington-county', 'US', 1, 44.2734200000, -72.6149000000), (1128576, 1001441, 'Washington County', NULL, 'washington-county', 'US', 1, 43.3684700000, -88.2307800000), (1128577, 1001450, 'Washington County', NULL, 'washington-county', 'US', 1, 39.9710600000, -103.2012500000), (1128578, 1001414, 'Washington County', NULL, 'washington-county', 'US', 1, 37.2803600000, -113.5049400000), (1128579, 1001460, 'Washington County', NULL, 'washington-county', 'US', 1, 44.4524300000, -116.7847700000), (1128580, 1001415, 'Washington County', NULL, 'washington-county', 'US', 1, 45.5600700000, -123.0984900000), (1128581, 1001452, 'Washington Heights', NULL, 'washington-heights', 'US', 1, 40.8501000000, -73.9354100000), (1128582, 1001452, 'Washington Mills', NULL, 'washington-mills', 'US', 1, 43.0500700000, -75.2729400000), (1128583, 1001457, 'Washington Parish', NULL, 'washington-parish', 'US', 1, 30.8533400000, -90.0405200000), (1128584, 1001436, 'Washington Park', NULL, 'washington-park', 'US', 1, 26.1325900000, -80.1811600000), (1128585, 1001425, 'Washington Park', NULL, 'washington-park', 'US', 1, 38.6350500000, -90.0928900000), (1128586, 1001414, 'Washington Terrace', NULL, 'washington-terrace', 'US', 1, 41.1727200000, -111.9766100000), (1128587, 1001437, 'Washington, D.C.', NULL, 'washington-d-c', 'US', 1, 38.8951100000, -77.0363700000), (1128588, 1001452, 'Washingtonville', NULL, 'washingtonville', 'US', 1, 41.4278700000, -74.1659800000), (1128589, 1001421, 'Washita County', NULL, 'washita-county', 'US', 1, 35.2903800000, -98.9922300000), (1128590, 1001458, 'Washoe County', NULL, 'washoe-county', 'US', 1, 40.6654200000, -119.6643000000), (1128591, 1001462, 'Washougal', NULL, 'washougal', 'US', 1, 45.5826200000, -122.3534200000), (1128592, 1001426, 'Washtenaw County', NULL, 'washtenaw-county', 'US', 1, 42.2532300000, -83.8387700000), (1128593, 1001400, 'Wasilla', NULL, 'wasilla', 'US', 1, 61.5809000000, -149.4415000000), (1128594, 1001407, 'Waskom', NULL, 'waskom', 'US', 1, 32.4787600000, -94.0596300000), (1128595, 1001407, 'Watauga', NULL, 'watauga', 'US', 1, 32.8579100000, -97.2547400000), (1128596, 1001447, 'Watauga County', NULL, 'watauga-county', 'US', 1, 36.2311000000, -81.6963700000), (1128597, 1001452, 'Watchtower', NULL, 'watchtower', 'US', 1, 41.6377600000, -74.2602700000), (1128598, 1001417, 'Watchung', NULL, 'watchung', 'US', 1, 40.6378800000, -74.4509900000), (1128599, 1001452, 'Water Mill', NULL, 'water-mill', 'US', 1, 40.9195900000, -72.3427400000), (1128600, 1001430, 'Water Valley', NULL, 'water-valley', 'US', 1, 34.1515000000, -89.6314700000), (1128601, 1001453, 'Waterboro', NULL, 'waterboro', 'US', 1, 43.5356400000, -70.7150600000), (1128602, 1001435, 'Waterbury', NULL, 'waterbury', 'US', 1, 41.5581500000, -73.0515000000), (1128603, 1001409, 'Waterbury', NULL, 'waterbury', 'US', 1, 44.3378300000, -72.7562300000), (1128604, 1001423, 'Waterflow', NULL, 'waterflow', 'US', 1, 36.7597200000, -108.4817500000), (1128605, 1001426, 'Waterford', NULL, 'waterford', 'US', 1, 42.6930300000, -83.4118100000), (1128606, 1001452, 'Waterford', NULL, 'waterford', 'US', 1, 42.7925800000, -73.6812300000), (1128607, 1001422, 'Waterford', NULL, 'waterford', 'US', 1, 41.9428300000, -79.9845000000), (1128608, 1001441, 'Waterford', NULL, 'waterford', 'US', 1, 42.7630700000, -88.2142600000), (1128609, 1001416, 'Waterford', NULL, 'waterford', 'US', 1, 37.6413200000, -120.7604800000), (1128610, 1001435, 'Waterford', NULL, 'waterford', 'US', 1, 41.3417000000, -72.1359700000), (1128611, 1001425, 'Waterloo', NULL, 'waterloo', 'US', 1, 38.3358900000, -90.1498300000), (1128612, 1001459, 'Waterloo', NULL, 'waterloo', 'US', 1, 42.4927600000, -92.3429600000), (1128613, 1001440, 'Waterloo', NULL, 'waterloo', 'US', 1, 41.4319900000, -85.0199700000), (1128614, 1001408, 'Waterloo', NULL, 'waterloo', 'US', 1, 41.2869400000, -96.2855800000), (1128615, 1001452, 'Waterloo', NULL, 'waterloo', 'US', 1, 42.9047900000, -76.8627400000), (1128616, 1001441, 'Waterloo', NULL, 'waterloo', 'US', 1, 43.1838800000, -88.9884400000), (1128617, 1001425, 'Waterman', NULL, 'waterman', 'US', 1, 41.7717000000, -88.7736900000), (1128618, 1001436, 'Watertown', NULL, 'watertown', 'US', 1, 30.1924500000, -82.6145700000), (1128619, 1001454, 'Watertown', NULL, 'watertown', 'US', 1, 36.1003400000, -86.1319300000), (1128620, 1001435, 'Watertown', NULL, 'watertown', 'US', 1, 41.6062100000, -73.1181700000), (1128621, 1001433, 'Watertown', NULL, 'watertown', 'US', 1, 42.3709300000, -71.1828300000), (1128622, 1001420, 'Watertown', NULL, 'watertown', 'US', 1, 44.9635700000, -93.8471900000), (1128623, 1001452, 'Watertown', NULL, 'watertown', 'US', 1, 43.9747800000, -75.9107600000), (1128624, 1001441, 'Watertown', NULL, 'watertown', 'US', 1, 43.1947200000, -88.7289900000), (1128625, 1001445, 'Watertown', NULL, 'watertown', 'US', 1, 44.8994100000, -97.1150700000), (1128626, 1001453, 'Waterville', NULL, 'waterville', 'US', 1, 44.5520100000, -69.6317100000), (1128627, 1001420, 'Waterville', NULL, 'waterville', 'US', 1, 44.2188500000, -93.5680000000), (1128628, 1001452, 'Waterville', NULL, 'waterville', 'US', 1, 42.9311800000, -75.3798900000), (1128629, 1001462, 'Waterville', NULL, 'waterville', 'US', 1, 47.6470800000, -120.0711800000), (1128630, 1001452, 'Watervliet', NULL, 'watervliet', 'US', 1, 42.7300800000, -73.7012300000), (1128631, 1001426, 'Watervliet', NULL, 'watervliet', 'US', 1, 42.1867100000, -86.2605800000), (1128632, 1001418, 'Watford City', NULL, 'watford-city', 'US', 1, 47.8022400000, -103.2832500000), (1128633, 1001406, 'Wathena', NULL, 'wathena', 'US', 1, 39.7591600000, -94.9496900000), (1128634, 1001452, 'Watkins Glen', NULL, 'watkins-glen', 'US', 1, 42.3806300000, -76.8732900000), (1128635, 1001455, 'Watkinsville', NULL, 'watkinsville', 'US', 1, 33.8629000000, -83.4087700000), (1128636, 1001421, 'Watonga', NULL, 'watonga', 'US', 1, 35.8447700000, -98.4131300000), (1128637, 1001420, 'Watonwan County', NULL, 'watonwan-county', 'US', 1, 43.9784300000, -94.6140600000), (1128638, 1001425, 'Watseka', NULL, 'watseka', 'US', 1, 40.7761500000, -87.7364200000), (1128639, 1001457, 'Watson', NULL, 'watson', 'US', 1, 30.5757400000, -90.9531600000), (1128640, 1001422, 'Watsontown', NULL, 'watsontown', 'US', 1, 41.0845300000, -76.8638500000), (1128641, 1001416, 'Watsonville', NULL, 'watsonville', 'US', 1, 36.9102300000, -121.7568900000), (1128642, 1001419, 'Watterson Park', NULL, 'watterson-park', 'US', 1, 38.1922900000, -85.6832900000), (1128643, 1001443, 'Watts Mills', NULL, 'watts-mills', 'US', 1, 34.5164100000, -81.9858000000), (1128644, 1001427, 'Wattsville', NULL, 'wattsville', 'US', 1, 37.9340100000, -75.4996500000), (1128645, 1001436, 'Wauchula', NULL, 'wauchula', 'US', 1, 27.5472600000, -81.8114700000), (1128646, 1001425, 'Wauconda', NULL, 'wauconda', 'US', 1, 42.2589100000, -88.1392500000), (1128647, 1001459, 'Waukee', NULL, 'waukee', 'US', 1, 41.6116600000, -93.8852300000), (1128648, 1001425, 'Waukegan', NULL, 'waukegan', 'US', 1, 42.3636300000, -87.8447900000), (1128649, 1001441, 'Waukesha', NULL, 'waukesha', 'US', 1, 43.0116800000, -88.2314800000), (1128650, 1001441, 'Waukesha County', NULL, 'waukesha-county', 'US', 1, 43.0181900000, -88.3045300000), (1128651, 1001421, 'Waukomis', NULL, 'waukomis', 'US', 1, 36.2803100000, -97.8981100000), (1128652, 1001459, 'Waukon', NULL, 'waukon', 'US', 1, 43.2694200000, -91.4757000000), (1128653, 1001462, 'Wauna', NULL, 'wauna', 'US', 1, 47.3789900000, -122.6426300000), (1128654, 1001441, 'Waunakee', NULL, 'waunakee', 'US', 1, 43.1919400000, -89.4556700000), (1128655, 1001441, 'Waupaca', NULL, 'waupaca', 'US', 1, 44.3580300000, -89.0859500000), (1128656, 1001441, 'Waupaca County', NULL, 'waupaca-county', 'US', 1, 44.4704300000, -88.9648200000), (1128657, 1001441, 'Waupun', NULL, 'waupun', 'US', 1, 43.6333200000, -88.7295500000), (1128658, 1001435, 'Wauregan', NULL, 'wauregan', 'US', 1, 41.7442700000, -71.9092400000), (1128659, 1001421, 'Waurika', NULL, 'waurika', 'US', 1, 34.1670400000, -97.9975400000), (1128660, 1001441, 'Wausau', NULL, 'wausau', 'US', 1, 44.9591400000, -89.6301200000), (1128661, 1001441, 'Waushara County', NULL, 'waushara-county', 'US', 1, 44.1131200000, -89.2428800000), (1128662, 1001441, 'Wautoma', NULL, 'wautoma', 'US', 1, 44.0747000000, -89.2879000000), (1128663, 1001441, 'Wauwatosa', NULL, 'wauwatosa', 'US', 1, 43.0494600000, -88.0075900000), (1128664, 1001430, 'Waveland', NULL, 'waveland', 'US', 1, 30.2868600000, -89.3761600000), (1128665, 1001425, 'Waverly', NULL, 'waverly', 'US', 1, 39.5917200000, -89.9528800000), (1128666, 1001454, 'Waverly', NULL, 'waverly', 'US', 1, 36.0839500000, -87.7947500000), (1128667, 1001427, 'Waverly', NULL, 'waverly', 'US', 1, 37.0359800000, -77.0952400000), (1128668, 1001459, 'Waverly', NULL, 'waverly', 'US', 1, 42.7258100000, -92.4754600000), (1128669, 1001426, 'Waverly', NULL, 'waverly', 'US', 1, 42.7392000000, -84.6208100000), (1128670, 1001420, 'Waverly', NULL, 'waverly', 'US', 1, 45.0666300000, -93.9663600000), (1128671, 1001408, 'Waverly', NULL, 'waverly', 'US', 1, 40.9175000000, -96.5283400000), (1128672, 1001452, 'Waverly', NULL, 'waverly', 'US', 1, 42.0103500000, -76.5271700000), (1128673, 1001452, 'Wawarsing', NULL, 'wawarsing', 'US', 1, 41.7589800000, -74.3573800000), (1128674, 1001407, 'Waxahachie', NULL, 'waxahachie', 'US', 1, 32.3865300000, -96.8483300000), (1128675, 1001447, 'Waxhaw', NULL, 'waxhaw', 'US', 1, 34.9245900000, -80.7434000000), (1128676, 1001455, 'Waycross', NULL, 'waycross', 'US', 1, 31.2136800000, -82.3557000000), (1128677, 1001452, 'Wayland', NULL, 'wayland', 'US', 1, 42.5678400000, -77.5897100000), (1128678, 1001433, 'Wayland', NULL, 'wayland', 'US', 1, 42.3626000000, -71.3614500000), (1128679, 1001426, 'Wayland', NULL, 'wayland', 'US', 1, 42.6739200000, -85.6447400000), (1128680, 1001422, 'Waymart', NULL, 'waymart', 'US', 1, 41.5803600000, -75.4082400000), (1128681, 1001429, 'Wayne', NULL, 'wayne', 'US', 1, 38.2214700000, -82.4423700000), (1128682, 1001425, 'Wayne', NULL, 'wayne', 'US', 1, 41.9508600000, -88.2423000000), (1128683, 1001426, 'Wayne', NULL, 'wayne', 'US', 1, 42.2814300000, -83.3863200000), (1128684, 1001453, 'Wayne', NULL, 'wayne', 'US', 1, 44.3486800000, -70.0661600000), (1128685, 1001417, 'Wayne', NULL, 'wayne', 'US', 1, 40.9253800000, -74.2765400000), (1128686, 1001408, 'Wayne', NULL, 'wayne', 'US', 1, 42.2305600000, -97.0178200000), (1128687, 1001422, 'Wayne', NULL, 'wayne', 'US', 1, 40.0440000000, -75.3876900000), (1128688, 1001425, 'Wayne City', NULL, 'wayne-city', 'US', 1, 38.3453300000, -88.5878300000), (1128689, 1001455, 'Wayne County', NULL, 'wayne-county', 'US', 1, 31.5514300000, -81.9167600000), (1128690, 1001425, 'Wayne County', NULL, 'wayne-county', 'US', 1, 38.4295600000, -88.4256100000), (1128691, 1001440, 'Wayne County', NULL, 'wayne-county', 'US', 1, 39.8644200000, -85.0098800000), (1128692, 1001419, 'Wayne County', NULL, 'wayne-county', 'US', 1, 36.8012700000, -84.8286300000), (1128693, 1001451, 'Wayne County', NULL, 'wayne-county', 'US', 1, 37.1126400000, -90.4614300000), (1128694, 1001430, 'Wayne County', NULL, 'wayne-county', 'US', 1, 31.6407800000, -88.6958000000), (1128695, 1001447, 'Wayne County', NULL, 'wayne-county', 'US', 1, 35.3637800000, -78.0041500000), (1128696, 1001454, 'Wayne County', NULL, 'wayne-county', 'US', 1, 35.2399200000, -87.7880100000), (1128697, 1001429, 'Wayne County', NULL, 'wayne-county', 'US', 1, 38.1459500000, -82.4269500000), (1128698, 1001459, 'Wayne County', NULL, 'wayne-county', 'US', 1, 40.7394700000, -93.3273600000), (1128699, 1001426, 'Wayne County', NULL, 'wayne-county', 'US', 1, 42.2847800000, -83.2611300000), (1128700, 1001408, 'Wayne County', NULL, 'wayne-county', 'US', 1, 42.2092900000, -97.1192600000), (1128701, 1001452, 'Wayne County', NULL, 'wayne-county', 'US', 1, 43.0658800000, -76.9784500000), (1128702, 1001422, 'Wayne County', NULL, 'wayne-county', 'US', 1, 41.6487300000, -75.3032600000), (1128703, 1001414, 'Wayne County', NULL, 'wayne-county', 'US', 1, 38.3243600000, -110.9036700000), (1128704, 1001422, 'Wayne Heights', NULL, 'wayne-heights', 'US', 1, 39.7437100000, -77.5538800000), (1128705, 1001455, 'Waynesboro', NULL, 'waynesboro', 'US', 1, 33.0898700000, -82.0156700000), (1128706, 1001430, 'Waynesboro', NULL, 'waynesboro', 'US', 1, 31.6748800000, -88.6461500000), (1128707, 1001422, 'Waynesboro', NULL, 'waynesboro', 'US', 1, 39.7559300000, -77.5777700000), (1128708, 1001454, 'Waynesboro', NULL, 'waynesboro', 'US', 1, 35.3195200000, -87.7622500000), (1128709, 1001427, 'Waynesboro', NULL, 'waynesboro', 'US', 1, 38.0684700000, -78.8894700000), (1128710, 1001422, 'Waynesburg', NULL, 'waynesburg', 'US', 1, 39.8964600000, -80.1792300000), (1128711, 1001447, 'Waynesville', NULL, 'waynesville', 'US', 1, 35.4887100000, -82.9887500000), (1128712, 1001451, 'Waynesville', NULL, 'waynesville', 'US', 1, 37.8286500000, -92.2007200000), (1128713, 1001420, 'Wayzata', NULL, 'wayzata', 'US', 1, 44.9741300000, -93.5066200000), (1128714, 1001454, 'Weakley County', NULL, 'weakley-county', 'US', 1, 36.2983000000, -88.7177400000), (1128715, 1001404, 'Weare', NULL, 'weare', 'US', 1, 43.0948000000, -71.7306300000), (1128716, 1001451, 'Weatherby Lake', NULL, 'weatherby-lake', 'US', 1, 39.2377800000, -94.6960700000), (1128717, 1001421, 'Weatherford', NULL, 'weatherford', 'US', 1, 35.5261600000, -98.7075700000), (1128718, 1001407, 'Weatherford', NULL, 'weatherford', 'US', 1, 32.7593000000, -97.7972500000), (1128719, 1001422, 'Weatherly', NULL, 'weatherly', 'US', 1, 40.9417500000, -75.8296400000), (1128720, 1001435, 'Weatogue', NULL, 'weatogue', 'US', 1, 41.8437100000, -72.8284300000), (1128721, 1001456, 'Weaver', NULL, 'weaver', 'US', 1, 33.7520500000, -85.8113500000), (1128722, 1001447, 'Weaverville', NULL, 'weaverville', 'US', 1, 35.6970500000, -82.5606900000), (1128723, 1001416, 'Weaverville', NULL, 'weaverville', 'US', 1, 40.7309800000, -122.9419700000), (1128724, 1001456, 'Webb', NULL, 'webb', 'US', 1, 31.2604500000, -85.2732700000), (1128725, 1001451, 'Webb City', NULL, 'webb-city', 'US', 1, 37.1464500000, -94.4630000000), (1128726, 1001407, 'Webb County', NULL, 'webb-county', 'US', 1, 27.7610600000, -99.3315700000), (1128727, 1001426, 'Webberville', NULL, 'webberville', 'US', 1, 42.6669800000, -84.1741300000), (1128728, 1001427, 'Weber City', NULL, 'weber-city', 'US', 1, 37.7551400000, -78.2838900000), (1128729, 1001414, 'Weber County', NULL, 'weber-county', 'US', 1, 41.2698800000, -111.9132700000), (1128730, 1001407, 'Webster', NULL, 'webster', 'US', 1, 29.5377300000, -95.1182600000), (1128731, 1001433, 'Webster', NULL, 'webster', 'US', 1, 42.0501000000, -71.8800700000), (1128732, 1001404, 'Webster', NULL, 'webster', 'US', 1, 43.3289700000, -71.7178600000), (1128733, 1001452, 'Webster', NULL, 'webster', 'US', 1, 43.2122900000, -77.4299900000), (1128734, 1001445, 'Webster', NULL, 'webster', 'US', 1, 45.3321800000, -97.5200900000), (1128735, 1001459, 'Webster City', NULL, 'webster-city', 'US', 1, 42.4694200000, -93.8160500000), (1128736, 1001455, 'Webster County', NULL, 'webster-county', 'US', 1, 32.0466500000, -84.5510500000), (1128737, 1001419, 'Webster County', NULL, 'webster-county', 'US', 1, 37.5184200000, -87.6831600000), (1128738, 1001451, 'Webster County', NULL, 'webster-county', 'US', 1, 37.2809100000, -92.8758800000), (1128739, 1001430, 'Webster County', NULL, 'webster-county', 'US', 1, 33.6130700000, -89.2848200000), (1128740, 1001429, 'Webster County', NULL, 'webster-county', 'US', 1, 38.4947400000, -80.4218700000), (1128741, 1001459, 'Webster County', NULL, 'webster-county', 'US', 1, 42.4279700000, -94.1817900000), (1128742, 1001408, 'Webster County', NULL, 'webster-county', 'US', 1, 40.1764300000, -98.4999500000), (1128743, 1001451, 'Webster Groves', NULL, 'webster-groves', 'US', 1, 38.5925500000, -90.3573400000), (1128744, 1001457, 'Webster Parish', NULL, 'webster-parish', 'US', 1, 32.7134500000, -93.3349800000), (1128745, 1001429, 'Webster Springs', NULL, 'webster-springs', 'US', 1, 38.4792700000, -80.4134200000), (1128746, 1001447, 'Weddington', NULL, 'weddington', 'US', 1, 35.0223700000, -80.7609000000), (1128747, 1001436, 'Wedgefield', NULL, 'wedgefield', 'US', 1, 28.4877800000, -81.0772900000), (1128748, 1001443, 'Wedgefield', NULL, 'wedgefield', 'US', 1, 33.8926600000, -80.5181400000), (1128749, 1001443, 'Wedgewood', NULL, 'wedgewood', 'US', 1, 33.8837700000, -80.5125800000), (1128750, 1001456, 'Wedowee', NULL, 'wedowee', 'US', 1, 33.3090000000, -85.4846700000), (1128751, 1001416, 'Weed', NULL, 'weed', 'US', 1, 41.4226500000, -122.3861300000), (1128752, 1001416, 'Weedpatch', NULL, 'weedpatch', 'US', 1, 35.2380200000, -118.9151000000), (1128753, 1001452, 'Weedsport', NULL, 'weedsport', 'US', 1, 43.0486800000, -76.5627200000), (1128754, 1001417, 'Weehawken', NULL, 'weehawken', 'US', 1, 40.7695500000, -74.0204200000), (1128755, 1001436, 'Weeki Wachee Gardens', NULL, 'weeki-wachee-gardens', 'US', 1, 28.5336100000, -82.6295400000); INSERT INTO `[[dbprefix]]t_city` VALUES (1128756, 1001408, 'Weeping Water', NULL, 'weeping-water', 'US', 1, 40.8700000000, -96.1405700000), (1128757, 1001422, 'Weigelstown', NULL, 'weigelstown', 'US', 1, 39.9837100000, -76.8224700000), (1128758, 1001407, 'Weimar', NULL, 'weimar', 'US', 1, 29.7030100000, -96.7805300000), (1128759, 1001429, 'Weirton', NULL, 'weirton', 'US', 1, 40.4189600000, -80.5895200000), (1128760, 1001429, 'Weirton Heights', NULL, 'weirton-heights', 'US', 1, 40.4084000000, -80.5392400000), (1128761, 1001460, 'Weiser', NULL, 'weiser', 'US', 1, 44.2510000000, -116.9693300000), (1128762, 1001422, 'Weissport East', NULL, 'weissport-east', 'US', 1, 40.8369700000, -75.6864300000), (1128763, 1001436, 'Wekiwa Springs', NULL, 'wekiwa-springs', 'US', 1, 28.6986100000, -81.4256300000), (1128764, 1001450, 'Welby', NULL, 'welby', 'US', 1, 39.8366500000, -104.9591500000), (1128765, 1001429, 'Welch', NULL, 'welch', 'US', 1, 37.4328900000, -81.5845500000), (1128766, 1001447, 'Welcome', NULL, 'welcome', 'US', 1, 35.9029200000, -80.2569900000), (1128767, 1001443, 'Welcome', NULL, 'welcome', 'US', 1, 34.8265100000, -82.4390100000), (1128768, 1001450, 'Weld County', NULL, 'weld-county', 'US', 1, 40.5548400000, -104.3925300000), (1128769, 1001447, 'Weldon', NULL, 'weldon', 'US', 1, 36.4271000000, -77.5955300000), (1128770, 1001416, 'Weldon', NULL, 'weldon', 'US', 1, 35.6657900000, -118.2903600000), (1128771, 1001451, 'Weldon Spring', NULL, 'weldon-spring', 'US', 1, 38.7133900000, -90.6892900000), (1128772, 1001436, 'Wellborn', NULL, 'wellborn', 'US', 1, 30.2310600000, -82.8195700000), (1128773, 1001433, 'Wellesley', NULL, 'wellesley', 'US', 1, 42.2964900000, -71.2925600000), (1128774, 1001433, 'Wellfleet', NULL, 'wellfleet', 'US', 1, 41.9376100000, -70.0328000000), (1128775, 1001443, 'Wellford', NULL, 'wellford', 'US', 1, 34.9509500000, -82.1059400000), (1128776, 1001436, 'Wellington', NULL, 'wellington', 'US', 1, 26.6586800000, -80.2414400000), (1128777, 1001406, 'Wellington', NULL, 'wellington', 'US', 1, 37.2653000000, -97.3717100000), (1128778, 1001450, 'Wellington', NULL, 'wellington', 'US', 1, 40.7038700000, -105.0085900000), (1128779, 1001414, 'Wellington', NULL, 'wellington', 'US', 1, 39.5424700000, -110.7354300000), (1128780, 1001407, 'Wellington', NULL, 'wellington', 'US', 1, 34.8561700000, -100.2137300000), (1128781, 1001459, 'Wellman', NULL, 'wellman', 'US', 1, 41.4641800000, -91.8382300000), (1128782, 1001420, 'Wells', NULL, 'wells', 'US', 1, 43.7460700000, -93.7288400000), (1128783, 1001458, 'Wells', NULL, 'wells', 'US', 1, 41.1115900000, -114.9644900000), (1128784, 1001453, 'Wells Beach Station', NULL, 'wells-beach-station', 'US', 1, 43.3239700000, -70.5914400000), (1128785, 1001407, 'Wells Branch', NULL, 'wells-branch', 'US', 1, 30.4460400000, -97.6794500000), (1128786, 1001440, 'Wells County', NULL, 'wells-county', 'US', 1, 40.7291900000, -85.2212200000), (1128787, 1001418, 'Wells County', NULL, 'wells-county', 'US', 1, 47.5875300000, -99.6609500000), (1128788, 1001422, 'Wellsboro', NULL, 'wellsboro', 'US', 1, 41.7486800000, -77.3005300000), (1128789, 1001429, 'Wellsburg', NULL, 'wellsburg', 'US', 1, 40.2720100000, -80.6095200000), (1128790, 1001451, 'Wellston', NULL, 'wellston', 'US', 1, 38.6728300000, -90.2992800000), (1128791, 1001406, 'Wellsville', NULL, 'wellsville', 'US', 1, 38.7183400000, -95.0816400000), (1128792, 1001451, 'Wellsville', NULL, 'wellsville', 'US', 1, 39.0719800000, -91.5701600000), (1128793, 1001452, 'Wellsville', NULL, 'wellsville', 'US', 1, 42.1220100000, -77.9480600000), (1128794, 1001414, 'Wellsville', NULL, 'wellsville', 'US', 1, 41.6385400000, -111.9338300000), (1128795, 1001434, 'Wellton', NULL, 'wellton', 'US', 1, 32.6728300000, -114.1468800000), (1128796, 1001457, 'Welsh', NULL, 'welsh', 'US', 1, 30.2360400000, -92.8226500000), (1128797, 1001462, 'Wenatchee', NULL, 'wenatchee', 'US', 1, 47.4234600000, -120.3103500000), (1128798, 1001447, 'Wendell', NULL, 'wendell', 'US', 1, 35.7809900000, -78.3697200000), (1128799, 1001433, 'Wendell', NULL, 'wendell', 'US', 1, 42.5481400000, -72.3967500000), (1128800, 1001460, 'Wendell', NULL, 'wendell', 'US', 1, 42.7757400000, -114.7042200000), (1128801, 1001414, 'Wendover', NULL, 'wendover', 'US', 1, 40.7371500000, -114.0375100000), (1128802, 1001433, 'Wenham', NULL, 'wenham', 'US', 1, 42.6042600000, -70.8911600000), (1128803, 1001417, 'Wenonah', NULL, 'wenonah', 'US', 1, 39.7945600000, -75.1487900000), (1128804, 1001447, 'Wentworth', NULL, 'wentworth', 'US', 1, 36.4001400000, -79.7744800000), (1128805, 1001451, 'Wentzville', NULL, 'wentzville', 'US', 1, 38.8114400000, -90.8529100000), (1128806, 1001422, 'Wernersville', NULL, 'wernersville', 'US', 1, 40.3300900000, -76.0805000000), (1128807, 1001422, 'Wescosville', NULL, 'wescosville', 'US', 1, 40.5667600000, -75.5529600000), (1128808, 1001407, 'Weslaco', NULL, 'weslaco', 'US', 1, 26.1595200000, -97.9908400000), (1128809, 1001436, 'Wesley Chapel', NULL, 'wesley-chapel', 'US', 1, 28.2397300000, -82.3278700000), (1128810, 1001447, 'Wesley Chapel', NULL, 'wesley-chapel', 'US', 1, 35.0070900000, -80.6745100000), (1128811, 1001452, 'Wesley Hills', NULL, 'wesley-hills', 'US', 1, 41.1592600000, -74.0698600000), (1128812, 1001422, 'Wesleyville', NULL, 'wesleyville', 'US', 1, 42.1403300000, -80.0150600000), (1128813, 1001445, 'Wessington Springs', NULL, 'wessington-springs', 'US', 1, 44.0791600000, -98.5695400000), (1128814, 1001430, 'Wesson', NULL, 'wesson', 'US', 1, 31.7012800000, -90.3975900000), (1128815, 1001407, 'West', NULL, 'west', 'US', 1, 31.8023800000, -97.0916700000), (1128816, 1001452, 'West Albany', NULL, 'west-albany', 'US', 1, 42.6831300000, -73.7784500000), (1128817, 1001441, 'West Allis', NULL, 'west-allis', 'US', 1, 43.0166800000, -88.0070300000), (1128818, 1001416, 'West Athens', NULL, 'west-athens', 'US', 1, 33.9233500000, -118.3034100000), (1128819, 1001452, 'West Babylon', NULL, 'west-babylon', 'US', 1, 40.7181600000, -73.3542900000), (1128820, 1001441, 'West Baraboo', NULL, 'west-baraboo', 'US', 1, 43.4744300000, -89.7704000000), (1128821, 1001433, 'West Barnstable', NULL, 'west-barnstable', 'US', 1, 41.7056600000, -70.3744700000), (1128822, 1001457, 'West Baton Rouge Parish', NULL, 'west-baton-rouge-parish', 'US', 1, 30.4634100000, -91.3127500000), (1128823, 1001452, 'West Bay Shore', NULL, 'west-bay-shore', 'US', 1, 40.7087100000, -73.2812300000), (1128824, 1001417, 'West Belmar', NULL, 'west-belmar', 'US', 1, 40.1692800000, -74.0354200000), (1128825, 1001441, 'West Bend', NULL, 'west-bend', 'US', 1, 43.4252800000, -88.1834300000), (1128826, 1001416, 'West Bishop', NULL, 'west-bishop', 'US', 1, 37.3610400000, -118.4551100000), (1128827, 1001456, 'West Blocton', NULL, 'west-blocton', 'US', 1, 33.1181700000, -87.1250000000), (1128828, 1001426, 'West Bloomfield Township', NULL, 'west-bloomfield-township', 'US', 1, 42.5689100000, -83.3835600000), (1128829, 1001414, 'West Bountiful', NULL, 'west-bountiful', 'US', 1, 40.8938300000, -111.9018800000), (1128830, 1001433, 'West Boylston', NULL, 'west-boylston', 'US', 1, 42.3667600000, -71.7856300000), (1128831, 1001436, 'West Bradenton', NULL, 'west-bradenton', 'US', 1, 27.5025400000, -82.6139900000), (1128832, 1001459, 'West Branch', NULL, 'west-branch', 'US', 1, 41.6714100000, -91.3465500000), (1128833, 1001426, 'West Branch', NULL, 'west-branch', 'US', 1, 44.2764100000, -84.2386100000), (1128834, 1001409, 'West Brattleboro', NULL, 'west-brattleboro', 'US', 1, 42.8559200000, -72.6031500000), (1128835, 1001433, 'West Bridgewater', NULL, 'west-bridgewater', 'US', 1, 42.0189900000, -71.0078200000), (1128836, 1001433, 'West Brookfield', NULL, 'west-brookfield', 'US', 1, 42.2353700000, -72.1411900000), (1128837, 1001419, 'West Buechel', NULL, 'west-buechel', 'US', 1, 38.1970100000, -85.6632900000), (1128838, 1001459, 'West Burlington', NULL, 'west-burlington', 'US', 1, 40.8250400000, -91.1565400000), (1128839, 1001447, 'West Canton', NULL, 'west-canton', 'US', 1, 35.5378800000, -82.8581900000), (1128840, 1001417, 'West Cape May', NULL, 'west-cape-may', 'US', 1, 38.9387200000, -74.9418400000), (1128841, 1001457, 'West Carroll Parish', NULL, 'west-carroll-parish', 'US', 1, 32.7885600000, -91.4567400000), (1128842, 1001416, 'West Carson', NULL, 'west-carson', 'US', 1, 33.8216800000, -118.2925700000), (1128843, 1001452, 'West Carthage', NULL, 'west-carthage', 'US', 1, 43.9742300000, -75.6151900000), (1128844, 1001433, 'West Chatham', NULL, 'west-chatham', 'US', 1, 41.6812200000, -69.9911300000), (1128845, 1001422, 'West Chester', NULL, 'west-chester', 'US', 1, 39.9609700000, -75.6080400000), (1128846, 1001425, 'West Chicago', NULL, 'west-chicago', 'US', 1, 41.8847500000, -88.2039600000), (1128847, 1001462, 'West Clarkston-Highland', NULL, 'west-clarkston-highland', 'US', 1, 46.4028700000, -117.0639500000), (1128848, 1001443, 'West Columbia', NULL, 'west-columbia', 'US', 1, 33.9934900000, -81.0739800000), (1128849, 1001407, 'West Columbia', NULL, 'west-columbia', 'US', 1, 29.1438600000, -95.6452200000), (1128850, 1001433, 'West Concord', NULL, 'west-concord', 'US', 1, 42.4584300000, -71.3953400000), (1128851, 1001422, 'West Conshohocken', NULL, 'west-conshohocken', 'US', 1, 40.0698300000, -75.3163000000), (1128852, 1001420, 'West Coon Rapids', NULL, 'west-coon-rapids', 'US', 1, 45.1596900000, -93.3496700000), (1128853, 1001416, 'West Covina', NULL, 'west-covina', 'US', 1, 34.0686200000, -117.9389500000), (1128854, 1001444, 'West Crossett', NULL, 'west-crossett', 'US', 1, 33.1409600000, -91.9940200000), (1128855, 1001436, 'West DeLand', NULL, 'west-deland', 'US', 1, 29.0158200000, -81.3331200000), (1128856, 1001433, 'West Dennis', NULL, 'west-dennis', 'US', 1, 41.6645600000, -70.1728000000), (1128857, 1001459, 'West Des Moines', NULL, 'west-des-moines', 'US', 1, 41.5772100000, -93.7113300000), (1128858, 1001425, 'West Dundee', NULL, 'west-dundee', 'US', 1, 42.0980800000, -88.2828600000), (1128859, 1001422, 'West Easton', NULL, 'west-easton', 'US', 1, 40.6787100000, -75.2368400000), (1128860, 1001401, 'West Elkridge', NULL, 'west-elkridge', 'US', 1, 39.2070500000, -76.7269200000), (1128861, 1001452, 'West Elmira', NULL, 'west-elmira', 'US', 1, 42.0781300000, -76.8452400000), (1128862, 1001425, 'West Elsdon', NULL, 'west-elsdon', 'US', 1, 41.7939200000, -87.7245000000), (1128863, 1001452, 'West End', NULL, 'west-end', 'US', 1, 42.4686900000, -75.0937800000), (1128864, 1001456, 'West End-Cobb Town', NULL, 'west-end-cobb-town', 'US', 1, 33.6525000000, -85.8742000000), (1128865, 1001425, 'West Englewood', NULL, 'west-englewood', 'US', 1, 41.7780900000, -87.6667200000), (1128866, 1001422, 'West Fairview', NULL, 'west-fairview', 'US', 1, 40.2750900000, -76.9155300000), (1128867, 1001427, 'West Falls Church', NULL, 'west-falls-church', 'US', 1, 38.8909400000, -77.1844300000), (1128868, 1001433, 'West Falmouth', NULL, 'west-falmouth', 'US', 1, 41.6042700000, -70.6344700000), (1128869, 1001418, 'West Fargo', NULL, 'west-fargo', 'US', 1, 46.8749700000, -96.9003600000), (1128870, 1001457, 'West Feliciana Parish', NULL, 'west-feliciana-parish', 'US', 1, 30.8797700000, -91.4200300000), (1128871, 1001457, 'West Ferriday', NULL, 'west-ferriday', 'US', 1, 31.6404400000, -91.5731800000), (1128872, 1001444, 'West Fork', NULL, 'west-fork', 'US', 1, 35.9242500000, -94.1885400000), (1128873, 1001425, 'West Frankfort', NULL, 'west-frankfort', 'US', 1, 37.8978300000, -88.9314600000), (1128874, 1001417, 'West Freehold', NULL, 'west-freehold', 'US', 1, 40.2420600000, -74.3012600000), (1128875, 1001425, 'West Garfield Park', NULL, 'west-garfield-park', 'US', 1, 41.8805900000, -87.7292200000), (1128876, 1001436, 'West Gate', NULL, 'west-gate', 'US', 1, 26.7025700000, -80.0981000000), (1128877, 1001427, 'West Gate', NULL, 'west-gate', 'US', 1, 38.7828900000, -77.4974900000), (1128878, 1001446, 'West Glendive', NULL, 'west-glendive', 'US', 1, 47.1108500000, -104.7496800000), (1128879, 1001452, 'West Glens Falls', NULL, 'west-glens-falls', 'US', 1, 43.3000700000, -73.6840100000), (1128880, 1001461, 'West Greenwich', NULL, 'west-greenwich', 'US', 1, 41.6370000000, -71.6600400000), (1128881, 1001422, 'West Grove', NULL, 'west-grove', 'US', 1, 39.8220500000, -75.8274400000), (1128882, 1001430, 'West Gulfport', NULL, 'west-gulfport', 'US', 1, 30.4040900000, -89.0942000000), (1128883, 1001422, 'West Hamburg', NULL, 'west-hamburg', 'US', 1, 40.5475900000, -76.0021600000), (1128884, 1001423, 'West Hammond', NULL, 'west-hammond', 'US', 1, 36.6807100000, -108.0492100000), (1128885, 1001435, 'West Hartford', NULL, 'west-hartford', 'US', 1, 41.7620400000, -72.7420400000), (1128886, 1001430, 'West Hattiesburg', NULL, 'west-hattiesburg', 'US', 1, 31.3190600000, -89.3750600000), (1128887, 1001435, 'West Haven', NULL, 'west-haven', 'US', 1, 41.2706500000, -72.9470500000), (1128888, 1001414, 'West Haven', NULL, 'west-haven', 'US', 1, 41.2030000000, -112.0510500000), (1128889, 1001415, 'West Haven', NULL, 'west-haven', 'US', 1, 45.5176200000, -122.7695400000), (1128890, 1001415, 'West Haven-Sylvan', NULL, 'west-haven-sylvan', 'US', 1, 45.5161300000, -122.7680900000), (1128891, 1001452, 'West Haverstraw', NULL, 'west-haverstraw', 'US', 1, 41.2095400000, -73.9854200000), (1128892, 1001422, 'West Hazleton', NULL, 'west-hazleton', 'US', 1, 40.9587000000, -75.9960400000), (1128893, 1001444, 'West Helena', NULL, 'west-helena', 'US', 1, 34.5506600000, -90.6417700000), (1128894, 1001452, 'West Hempstead', NULL, 'west-hempstead', 'US', 1, 40.7048200000, -73.6501300000), (1128895, 1001452, 'West Hills', NULL, 'west-hills', 'US', 1, 40.8162100000, -73.4323400000), (1128896, 1001422, 'West Hills', NULL, 'west-hills', 'US', 1, 40.8242300000, -79.5431000000), (1128897, 1001416, 'West Hills', NULL, 'west-hills', 'US', 1, 34.1973100000, -118.6439800000), (1128898, 1001436, 'West Hollywood', NULL, 'west-hollywood', 'US', 1, 26.0206500000, -80.1839400000), (1128899, 1001416, 'West Hollywood', NULL, 'west-hollywood', 'US', 1, 34.0900100000, -118.3617400000), (1128900, 1001422, 'West Homestead', NULL, 'west-homestead', 'US', 1, 40.3939600000, -79.9119900000), (1128901, 1001452, 'West Hurley', NULL, 'west-hurley', 'US', 1, 41.9973100000, -74.1048600000), (1128902, 1001426, 'West Ishpeming', NULL, 'west-ishpeming', 'US', 1, 46.4835500000, -87.7009700000), (1128903, 1001452, 'West Islip', NULL, 'west-islip', 'US', 1, 40.7062100000, -73.3062300000), (1128904, 1001447, 'West Jefferson', NULL, 'west-jefferson', 'US', 1, 36.4037400000, -81.4928800000), (1128905, 1001414, 'West Jordan', NULL, 'west-jordan', 'US', 1, 40.6096700000, -111.9391000000), (1128906, 1001453, 'West Kennebunk', NULL, 'west-kennebunk', 'US', 1, 43.4087000000, -70.5814400000), (1128907, 1001422, 'West Kittanning', NULL, 'west-kittanning', 'US', 1, 40.8103400000, -79.5294900000), (1128908, 1001440, 'West Lafayette', NULL, 'west-lafayette', 'US', 1, 40.4258700000, -86.9080700000), (1128909, 1001407, 'West Lake Hills', NULL, 'west-lake-hills', 'US', 1, 30.2979800000, -97.8019500000), (1128910, 1001462, 'West Lake Sammamish', NULL, 'west-lake-sammamish', 'US', 1, 47.5776000000, -122.1012300000), (1128911, 1001462, 'West Lake Stevens', NULL, 'west-lake-stevens', 'US', 1, 47.9934300000, -122.1018000000), (1128912, 1001401, 'West Laurel', NULL, 'west-laurel', 'US', 1, 39.1012200000, -76.8997000000), (1128913, 1001425, 'West Lawn', NULL, 'west-lawn', 'US', 1, 41.7728100000, -87.7222700000), (1128914, 1001422, 'West Lawn', NULL, 'west-lawn', 'US', 1, 40.3298100000, -75.9943800000), (1128915, 1001422, 'West Leechburg', NULL, 'west-leechburg', 'US', 1, 40.6222900000, -79.6128200000), (1128916, 1001419, 'West Liberty', NULL, 'west-liberty', 'US', 1, 37.9214800000, -83.2596200000), (1128917, 1001459, 'West Liberty', NULL, 'west-liberty', 'US', 1, 41.5700200000, -91.2637700000), (1128918, 1001429, 'West Liberty', NULL, 'west-liberty', 'US', 1, 40.1697900000, -80.5936900000), (1128919, 1001415, 'West Linn', NULL, 'west-linn', 'US', 1, 45.3656800000, -122.6123100000), (1128920, 1001436, 'West Little River', NULL, 'west-little-river', 'US', 1, 25.8570400000, -80.2369900000), (1128921, 1001407, 'West Livingston', NULL, 'west-livingston', 'US', 1, 30.6982500000, -95.0018800000), (1128922, 1001417, 'West Long Branch', NULL, 'west-long-branch', 'US', 1, 40.2903900000, -74.0176400000), (1128923, 1001462, 'West Longview', NULL, 'west-longview', 'US', 1, 46.1678900000, -122.9990000000), (1128924, 1001427, 'West Lynchburg', NULL, 'west-lynchburg', 'US', 1, 37.4032000000, -79.1780800000), (1128925, 1001447, 'West Marion', NULL, 'west-marion', 'US', 1, 35.6579000000, -82.0253900000), (1128926, 1001422, 'West Mayfield', NULL, 'west-mayfield', 'US', 1, 40.7800600000, -80.3384000000), (1128927, 1001436, 'West Melbourne', NULL, 'west-melbourne', 'US', 1, 28.0716800000, -80.6533900000), (1128928, 1001444, 'West Memphis', NULL, 'west-memphis', 'US', 1, 35.1464800000, -90.1845400000), (1128929, 1001416, 'West Menlo Park', NULL, 'west-menlo-park', 'US', 1, 37.4335500000, -122.2030200000), (1128930, 1001436, 'West Miami', NULL, 'west-miami', 'US', 1, 25.7634300000, -80.2961600000), (1128931, 1001422, 'West Mifflin', NULL, 'west-mifflin', 'US', 1, 40.3634000000, -79.8664400000), (1128932, 1001417, 'West Milford', NULL, 'west-milford', 'US', 1, 41.1312100000, -74.3673700000), (1128933, 1001441, 'West Milwaukee', NULL, 'west-milwaukee', 'US', 1, 43.0125100000, -87.9725900000), (1128934, 1001416, 'West Modesto', NULL, 'west-modesto', 'US', 1, 37.6175400000, -121.0391400000), (1128935, 1001457, 'West Monroe', NULL, 'west-monroe', 'US', 1, 32.5184800000, -92.1476400000), (1128936, 1001426, 'West Monroe', NULL, 'west-monroe', 'US', 1, 41.9139300000, -83.4316000000), (1128937, 1001414, 'West Mountain', NULL, 'west-mountain', 'US', 1, 40.0607900000, -111.7882700000), (1128938, 1001417, 'West New York', NULL, 'west-new-york', 'US', 1, 40.7878800000, -74.0143100000), (1128939, 1001433, 'West Newbury', NULL, 'west-newbury', 'US', 1, 42.8014800000, -70.9897800000), (1128940, 1001422, 'West Newton', NULL, 'west-newton', 'US', 1, 40.2097900000, -79.7669900000), (1128941, 1001422, 'West Norriton', NULL, 'west-norriton', 'US', 1, 40.1295500000, -75.3785200000), (1128942, 1001452, 'West Nyack', NULL, 'west-nyack', 'US', 1, 41.0964900000, -73.9729200000), (1128943, 1001401, 'West Ocean City', NULL, 'west-ocean-city', 'US', 1, 38.3315000000, -75.1068500000), (1128944, 1001407, 'West Odessa', NULL, 'west-odessa', 'US', 1, 31.8423500000, -102.4987600000), (1128945, 1001407, 'West Orange', NULL, 'west-orange', 'US', 1, 30.0821500000, -93.7582200000), (1128946, 1001417, 'West Orange', NULL, 'west-orange', 'US', 1, 40.7987100000, -74.2390400000), (1128947, 1001436, 'West Palm Beach', NULL, 'west-palm-beach', 'US', 1, 26.7153400000, -80.0533700000), (1128948, 1001453, 'West Paris', NULL, 'west-paris', 'US', 1, 44.3242300000, -70.5739500000), (1128949, 1001436, 'West Park', NULL, 'west-park', 'US', 1, 25.9845400000, -80.1989400000), (1128950, 1001416, 'West Park', NULL, 'west-park', 'US', 1, 36.7102300000, -119.8512600000), (1128951, 1001462, 'West Pasco', NULL, 'west-pasco', 'US', 1, 46.2454100000, -119.1827900000), (1128952, 1001436, 'West Pensacola', NULL, 'west-pensacola', 'US', 1, 30.4265900000, -87.2796900000), (1128953, 1001425, 'West Peoria', NULL, 'west-peoria', 'US', 1, 40.6925400000, -89.6278800000), (1128954, 1001436, 'West Perrine', NULL, 'west-perrine', 'US', 1, 25.6059400000, -80.3628300000), (1128955, 1001422, 'West Pittston', NULL, 'west-pittston', 'US', 1, 41.3275800000, -75.7929700000), (1128956, 1001451, 'West Plains', NULL, 'west-plains', 'US', 1, 36.7281200000, -91.8523700000), (1128957, 1001450, 'West Pleasant View', NULL, 'west-pleasant-view', 'US', 1, 39.7325600000, -105.1785200000), (1128958, 1001455, 'West Point', NULL, 'west-point', 'US', 1, 32.8779100000, -85.1832700000), (1128959, 1001430, 'West Point', NULL, 'west-point', 'US', 1, 33.6076200000, -88.6503300000), (1128960, 1001427, 'West Point', NULL, 'west-point', 'US', 1, 37.5315300000, -76.7963500000), (1128961, 1001408, 'West Point', NULL, 'west-point', 'US', 1, 41.8416700000, -96.7086400000), (1128962, 1001452, 'West Point', NULL, 'west-point', 'US', 1, 41.3914800000, -73.9559700000), (1128963, 1001414, 'West Point', NULL, 'west-point', 'US', 1, 41.1182800000, -112.0841100000), (1128964, 1001416, 'West Puente Valley', NULL, 'west-puente-valley', 'US', 1, 34.0516800000, -117.9684000000), (1128965, 1001447, 'West Raleigh', NULL, 'west-raleigh', 'US', 1, 35.7868200000, -78.6638900000), (1128966, 1001416, 'West Rancho Dominguez', NULL, 'west-rancho-dominguez', 'US', 1, 33.8939000000, -118.2706300000), (1128967, 1001422, 'West Reading', NULL, 'west-reading', 'US', 1, 40.3337000000, -75.9474300000), (1128968, 1001462, 'West Richland', NULL, 'west-richland', 'US', 1, 46.3043000000, -119.3614100000), (1128969, 1001425, 'West Ridge', NULL, 'west-ridge', 'US', 1, 41.9997500000, -87.6928400000), (1128970, 1001409, 'West Rutland', NULL, 'west-rutland', 'US', 1, 43.5931200000, -73.0451100000), (1128971, 1001416, 'West Sacramento', NULL, 'west-sacramento', 'US', 1, 38.5804600000, -121.5302300000), (1128972, 1001420, 'West Saint Paul', NULL, 'west-saint-paul', 'US', 1, 44.9160800000, -93.1016100000), (1128973, 1001441, 'West Salem', NULL, 'west-salem', 'US', 1, 43.8991300000, -91.0812500000), (1128974, 1001436, 'West Samoset', NULL, 'west-samoset', 'US', 1, 27.4694800000, -82.5567600000), (1128975, 1001452, 'West Sand Lake', NULL, 'west-sand-lake', 'US', 1, 42.6434100000, -73.6087300000), (1128976, 1001452, 'West Sayville', NULL, 'west-sayville', 'US', 1, 40.7278800000, -73.0976100000), (1128977, 1001453, 'West Scarborough', NULL, 'west-scarborough', 'US', 1, 43.5703600000, -70.3878300000), (1128978, 1001434, 'West Sedona', NULL, 'west-sedona', 'US', 1, 34.8672400000, -111.8054300000), (1128979, 1001452, 'West Seneca', NULL, 'west-seneca', 'US', 1, 42.8500600000, -78.7997500000), (1128980, 1001407, 'West Sharyland', NULL, 'west-sharyland', 'US', 1, 26.2725700000, -98.3286300000), (1128981, 1001462, 'West Side Highway', NULL, 'west-side-highway', 'US', 1, 46.1839900000, -122.9171500000), (1128982, 1001435, 'West Simsbury', NULL, 'west-simsbury', 'US', 1, 41.8731500000, -72.8581500000), (1128983, 1001415, 'West Slope', NULL, 'west-slope', 'US', 1, 45.4987300000, -122.7645400000), (1128984, 1001427, 'West Springfield', NULL, 'west-springfield', 'US', 1, 38.7726100000, -77.2210900000), (1128985, 1001433, 'West Springfield', NULL, 'west-springfield', 'US', 1, 42.1070400000, -72.6203700000), (1128986, 1001433, 'West Stockbridge', NULL, 'west-stockbridge', 'US', 1, 42.3459200000, -73.3662200000), (1128987, 1001404, 'West Swanzey', NULL, 'west-swanzey', 'US', 1, 42.8700800000, -72.3217500000), (1128988, 1001407, 'West Tawakoni', NULL, 'west-tawakoni', 'US', 1, 32.8937300000, -96.0294100000), (1128989, 1001440, 'West Terre Haute', NULL, 'west-terre-haute', 'US', 1, 39.4650400000, -87.4500200000), (1128990, 1001433, 'West Tisbury', NULL, 'west-tisbury', 'US', 1, 41.3812200000, -70.6744700000), (1128991, 1001435, 'West Torrington', NULL, 'west-torrington', 'US', 1, 41.8184300000, -73.1437200000), (1128992, 1001425, 'West Town', NULL, 'west-town', 'US', 1, 41.8938100000, -87.6749300000), (1128993, 1001459, 'West Union', NULL, 'west-union', 'US', 1, 42.9627600000, -91.8082200000), (1128994, 1001429, 'West Union', NULL, 'west-union', 'US', 1, 39.2964700000, -80.7770500000), (1128995, 1001407, 'West University Place', NULL, 'west-university-place', 'US', 1, 29.7180100000, -95.4338300000), (1128996, 1001462, 'West Valley', NULL, 'west-valley', 'US', 1, 46.5920700000, -120.6050700000), (1128997, 1001414, 'West Valley City', NULL, 'west-valley-city', 'US', 1, 40.6916100000, -112.0010500000), (1128998, 1001436, 'West Vero Corridor', NULL, 'west-vero-corridor', 'US', 1, 27.6377500000, -80.4857600000), (1128999, 1001422, 'West View', NULL, 'west-view', 'US', 1, 40.5222900000, -80.0342200000), (1129000, 1001433, 'West Wareham', NULL, 'west-wareham', 'US', 1, 41.7898300000, -70.7603100000), (1129001, 1001455, 'West Warrenton', NULL, 'west-warrenton', 'US', 1, 33.4121700000, -82.6751700000), (1129002, 1001461, 'West Warwick', NULL, 'west-warwick', 'US', 1, 41.6968900000, -71.5219400000), (1129003, 1001462, 'West Wenatchee', NULL, 'west-wenatchee', 'US', 1, 47.4437400000, -120.3534100000), (1129004, 1001458, 'West Wendover', NULL, 'west-wendover', 'US', 1, 40.7391000000, -114.0733500000), (1129005, 1001416, 'West Whittier-Los Nietos', NULL, 'west-whittier-los-nietos', 'US', 1, 33.9760000000, -118.0690900000), (1129006, 1001422, 'West Wyoming', NULL, 'west-wyoming', 'US', 1, 41.3198000000, -75.8460300000), (1129007, 1001422, 'West Wyomissing', NULL, 'west-wyomissing', 'US', 1, 40.3245400000, -75.9907700000), (1129008, 1001433, 'West Yarmouth', NULL, 'west-yarmouth', 'US', 1, 41.6501100000, -70.2411300000), (1129009, 1001446, 'West Yellowstone', NULL, 'west-yellowstone', 'US', 1, 44.6621500000, -111.1041100000), (1129010, 1001422, 'West York', NULL, 'west-york', 'US', 1, 39.9526000000, -76.7513600000), (1129011, 1001436, 'West and East Lealman', NULL, 'west-and-east-lealman', 'US', 1, 27.8199300000, -82.6894400000), (1129012, 1001433, 'Westborough', NULL, 'westborough', 'US', 1, 42.2695400000, -71.6161800000), (1129013, 1001453, 'Westbrook', NULL, 'westbrook', 'US', 1, 43.6770300000, -70.3711600000), (1129014, 1001435, 'Westbrook Center', NULL, 'westbrook-center', 'US', 1, 41.2799700000, -72.4425400000), (1129015, 1001452, 'Westbury', NULL, 'westbury', 'US', 1, 40.7556600000, -73.5876300000), (1129016, 1001441, 'Westby', NULL, 'westby', 'US', 1, 43.6569200000, -90.8543000000), (1129017, 1001436, 'Westchase', NULL, 'westchase', 'US', 1, 28.0550200000, -82.6098200000), (1129018, 1001436, 'Westchester', NULL, 'westchester', 'US', 1, 25.7548200000, -80.3272700000), (1129019, 1001425, 'Westchester', NULL, 'westchester', 'US', 1, 41.8505900000, -87.8820000000), (1129020, 1001452, 'Westchester County', NULL, 'westchester-county', 'US', 1, 41.1514800000, -73.7533900000), (1129021, 1001450, 'Westcliffe', NULL, 'westcliffe', 'US', 1, 38.1347200000, -105.4658400000), (1129022, 1001452, 'Westerleigh', NULL, 'westerleigh', 'US', 1, 40.6212100000, -74.1318100000), (1129023, 1001461, 'Westerly', NULL, 'westerly', 'US', 1, 41.3776000000, -71.8272900000), (1129024, 1001407, 'Western Lake', NULL, 'western-lake', 'US', 1, 32.6233800000, -97.8115500000), (1129025, 1001425, 'Western Springs', NULL, 'western-springs', 'US', 1, 41.8097500000, -87.9006200000), (1129026, 1001401, 'Westernport', NULL, 'westernport', 'US', 1, 39.4853700000, -79.0447500000), (1129027, 1001440, 'Westfield', NULL, 'westfield', 'US', 1, 40.0428200000, -86.1274900000), (1129028, 1001433, 'Westfield', NULL, 'westfield', 'US', 1, 42.1250900000, -72.7495400000), (1129029, 1001417, 'Westfield', NULL, 'westfield', 'US', 1, 40.6589900000, -74.3473700000), (1129030, 1001452, 'Westfield', NULL, 'westfield', 'US', 1, 42.3222800000, -79.5781000000), (1129031, 1001422, 'Westfield', NULL, 'westfield', 'US', 1, 41.9192400000, -77.5388700000), (1129032, 1001441, 'Westfield', NULL, 'westfield', 'US', 1, 43.8835900000, -89.4934600000), (1129033, 1001433, 'Westford', NULL, 'westford', 'US', 1, 42.5792600000, -71.4378400000), (1129034, 1001433, 'Westhampton', NULL, 'westhampton', 'US', 1, 42.3028700000, -72.7745400000), (1129035, 1001452, 'Westhampton', NULL, 'westhampton', 'US', 1, 40.8245400000, -72.6662100000), (1129036, 1001452, 'Westhampton Beach', NULL, 'westhampton-beach', 'US', 1, 40.8031600000, -72.6145400000), (1129037, 1001416, 'Westhaven-Moonstone', NULL, 'westhaven-moonstone', 'US', 1, 41.0448900000, -124.1023900000), (1129038, 1001457, 'Westlake', NULL, 'westlake', 'US', 1, 30.2421500000, -93.2507100000), (1129039, 1001407, 'Westlake', NULL, 'westlake', 'US', 1, 32.9912400000, -97.1950100000), (1129040, 1001416, 'Westlake Village', NULL, 'westlake-village', 'US', 1, 34.1458400000, -118.8056500000), (1129041, 1001426, 'Westland', NULL, 'westland', 'US', 1, 42.3242000000, -83.4002100000), (1129042, 1001452, 'Westmere', NULL, 'westmere', 'US', 1, 42.6911900000, -73.8687300000), (1129043, 1001401, 'Westminster', NULL, 'westminster', 'US', 1, 39.5753800000, -76.9958100000), (1129044, 1001457, 'Westminster', NULL, 'westminster', 'US', 1, 30.4138000000, -91.0876000000), (1129045, 1001443, 'Westminster', NULL, 'westminster', 'US', 1, 34.6648200000, -83.0965400000), (1129046, 1001433, 'Westminster', NULL, 'westminster', 'US', 1, 42.5459200000, -71.9106300000), (1129047, 1001450, 'Westminster', NULL, 'westminster', 'US', 1, 39.8366500000, -105.0372000000), (1129048, 1001416, 'Westminster', NULL, 'westminster', 'US', 1, 33.7591800000, -118.0067300000), (1129049, 1001425, 'Westmont', NULL, 'westmont', 'US', 1, 41.7958600000, -87.9756200000), (1129050, 1001422, 'Westmont', NULL, 'westmont', 'US', 1, 40.3156300000, -78.9516900000), (1129051, 1001416, 'Westmont', NULL, 'westmont', 'US', 1, 33.9414000000, -118.3023000000), (1129052, 1001406, 'Westmoreland', NULL, 'westmoreland', 'US', 1, 39.3938900000, -96.4136100000), (1129053, 1001454, 'Westmoreland', NULL, 'westmoreland', 'US', 1, 36.5619900000, -86.2480400000), (1129054, 1001404, 'Westmoreland', NULL, 'westmoreland', 'US', 1, 42.9620300000, -72.4423100000), (1129055, 1001427, 'Westmoreland County', NULL, 'westmoreland-county', 'US', 1, 38.1128200000, -76.7999100000), (1129056, 1001422, 'Westmoreland County', NULL, 'westmoreland-county', 'US', 1, 40.3107300000, -79.4669600000), (1129057, 1001416, 'Westmorland', NULL, 'westmorland', 'US', 1, 33.0372700000, -115.6213800000), (1129058, 1001436, 'Weston', NULL, 'weston', 'US', 1, 26.1003700000, -80.3997700000), (1129059, 1001451, 'Weston', NULL, 'weston', 'US', 1, 39.4111100000, -94.9016300000), (1129060, 1001429, 'Weston', NULL, 'weston', 'US', 1, 39.0384300000, -80.4673100000), (1129061, 1001433, 'Weston', NULL, 'weston', 'US', 1, 42.3667600000, -71.3031100000), (1129062, 1001417, 'Weston', NULL, 'weston', 'US', 1, 40.5351000000, -74.5907100000), (1129063, 1001441, 'Weston', NULL, 'weston', 'US', 1, 44.8908000000, -89.5476200000), (1129064, 1001442, 'Weston County', NULL, 'weston-county', 'US', 1, 43.8404900000, -104.5678300000), (1129065, 1001407, 'Weston Lakes', NULL, 'weston-lakes', 'US', 1, 29.6832400000, -95.9357100000), (1129066, 1001452, 'Weston Mills', NULL, 'weston-mills', 'US', 1, 42.0759000000, -78.3725200000), (1129067, 1001456, 'Westover', NULL, 'westover', 'US', 1, 33.3495500000, -86.5358200000), (1129068, 1001429, 'Westover', NULL, 'westover', 'US', 1, 39.6345300000, -79.9697900000), (1129069, 1001401, 'Westphalia', NULL, 'westphalia', 'US', 1, 38.8453900000, -76.8110800000), (1129070, 1001440, 'Westport', NULL, 'westport', 'US', 1, 39.1758900000, -85.5730300000), (1129071, 1001447, 'Westport', NULL, 'westport', 'US', 1, 35.5012500000, -80.9786900000), (1129072, 1001435, 'Westport', NULL, 'westport', 'US', 1, 41.1414900000, -73.3579000000), (1129073, 1001462, 'Westport', NULL, 'westport', 'US', 1, 46.8900900000, -124.1040600000), (1129074, 1001452, 'Westvale', NULL, 'westvale', 'US', 1, 43.0475700000, -76.2204800000), (1129075, 1001436, 'Westview', NULL, 'westview', 'US', 1, 25.8820400000, -80.2419900000), (1129076, 1001417, 'Westville', NULL, 'westville', 'US', 1, 39.8678900000, -75.1315600000), (1129077, 1001421, 'Westville', NULL, 'westville', 'US', 1, 35.9925800000, -94.5680000000), (1129078, 1001425, 'Westville', NULL, 'westville', 'US', 1, 40.0422600000, -87.6386300000), (1129079, 1001440, 'Westville', NULL, 'westville', 'US', 1, 41.5414300000, -86.9005800000), (1129080, 1001407, 'Westway', NULL, 'westway', 'US', 1, 31.9587100000, -106.5780500000), (1129081, 1001457, 'Westwego', NULL, 'westwego', 'US', 1, 29.9060400000, -90.1423000000), (1129082, 1001406, 'Westwood', NULL, 'westwood', 'US', 1, 39.0405600000, -94.6169000000), (1129083, 1001419, 'Westwood', NULL, 'westwood', 'US', 1, 38.4831400000, -82.6698800000), (1129084, 1001426, 'Westwood', NULL, 'westwood', 'US', 1, 42.3028200000, -85.6336200000), (1129085, 1001433, 'Westwood', NULL, 'westwood', 'US', 1, 42.2139900000, -71.2245000000), (1129086, 1001417, 'Westwood', NULL, 'westwood', 'US', 1, 40.9912100000, -74.0326400000), (1129087, 1001416, 'Westwood', NULL, 'westwood', 'US', 1, 34.0561200000, -118.4306300000), (1129088, 1001436, 'Westwood Lake', NULL, 'westwood-lake', 'US', 1, 25.7292700000, -80.3728300000), (1129089, 1001407, 'Westworth', NULL, 'westworth', 'US', 1, 32.7573500000, -97.4108500000), (1129090, 1001435, 'Wethersfield', NULL, 'wethersfield', 'US', 1, 41.7142700000, -72.6525900000), (1129091, 1001421, 'Wetumka', NULL, 'wetumka', 'US', 1, 35.2375900000, -96.2416700000), (1129092, 1001456, 'Wetumpka', NULL, 'wetumpka', 'US', 1, 32.5437400000, -86.2119100000), (1129093, 1001429, 'Wetzel County', NULL, 'wetzel-county', 'US', 1, 39.6052600000, -80.6391000000), (1129094, 1001436, 'Wewahitchka', NULL, 'wewahitchka', 'US', 1, 30.1127000000, -85.2004700000), (1129095, 1001433, 'Weweantic', NULL, 'weweantic', 'US', 1, 41.7353800000, -70.7319800000), (1129096, 1001421, 'Wewoka', NULL, 'wewoka', 'US', 1, 35.1586900000, -96.4933500000), (1129097, 1001426, 'Wexford County', NULL, 'wexford-county', 'US', 1, 44.3383500000, -85.5784200000), (1129098, 1001441, 'Weyauwega', NULL, 'weyauwega', 'US', 1, 44.3213700000, -88.9337200000), (1129099, 1001427, 'Weyers Cave', NULL, 'weyers-cave', 'US', 1, 38.2884600000, -78.9130800000), (1129100, 1001433, 'Weymouth', NULL, 'weymouth', 'US', 1, 42.2209300000, -70.9397700000), (1129101, 1001422, 'Wharton', NULL, 'wharton', 'US', 1, 39.9267800000, -75.1571200000), (1129102, 1001407, 'Wharton', NULL, 'wharton', 'US', 1, 29.3116400000, -96.1027400000), (1129103, 1001417, 'Wharton', NULL, 'wharton', 'US', 1, 40.8931500000, -74.5818300000), (1129104, 1001407, 'Wharton County', NULL, 'wharton-county', 'US', 1, 29.2778600000, -96.2221000000), (1129105, 1001462, 'Whatcom County', NULL, 'whatcom-county', 'US', 1, 48.8297500000, -121.8728300000), (1129106, 1001433, 'Whately', NULL, 'whately', 'US', 1, 42.4398100000, -72.6348100000), (1129107, 1001450, 'Wheat Ridge', NULL, 'wheat-ridge', 'US', 1, 39.7661000000, -105.0772100000), (1129108, 1001416, 'Wheatland', NULL, 'wheatland', 'US', 1, 39.0098900000, -121.4230100000), (1129109, 1001442, 'Wheatland', NULL, 'wheatland', 'US', 1, 42.0540700000, -104.9529500000), (1129110, 1001446, 'Wheatland County', NULL, 'wheatland-county', 'US', 1, 46.4663400000, -109.8444000000), (1129111, 1001452, 'Wheatley Heights', NULL, 'wheatley-heights', 'US', 1, 40.7637100000, -73.3698400000), (1129112, 1001401, 'Wheaton', NULL, 'wheaton', 'US', 1, 39.0398300000, -77.0552600000), (1129113, 1001425, 'Wheaton', NULL, 'wheaton', 'US', 1, 41.8661400000, -88.1070100000), (1129114, 1001420, 'Wheaton', NULL, 'wheaton', 'US', 1, 45.8044100000, -96.4992300000), (1129115, 1001407, 'Wheeler', NULL, 'wheeler', 'US', 1, 35.4453300000, -100.2709600000), (1129116, 1001455, 'Wheeler County', NULL, 'wheeler-county', 'US', 1, 32.1170700000, -82.7245900000), (1129117, 1001408, 'Wheeler County', NULL, 'wheeler-county', 'US', 1, 41.9147700000, -98.5281900000), (1129118, 1001407, 'Wheeler County', NULL, 'wheeler-county', 'US', 1, 35.4012800000, -100.2696500000), (1129119, 1001415, 'Wheeler County', NULL, 'wheeler-county', 'US', 1, 44.7260600000, -120.0274600000), (1129120, 1001425, 'Wheeling', NULL, 'wheeling', 'US', 1, 42.1391900000, -87.9289600000), (1129121, 1001429, 'Wheeling', NULL, 'wheeling', 'US', 1, 40.0639600000, -80.7209100000), (1129122, 1001434, 'Whetstone', NULL, 'whetstone', 'US', 1, 31.9573100000, -110.3420200000), (1129123, 1001436, 'Whiskey Creek', NULL, 'whiskey-creek', 'US', 1, 26.5725800000, -81.8900900000), (1129124, 1001447, 'Whispering Pines', NULL, 'whispering-pines', 'US', 1, 35.2557100000, -79.3722500000), (1129125, 1001422, 'Whitaker', NULL, 'whitaker', 'US', 1, 40.3984000000, -79.8897700000), (1129126, 1001420, 'White Bear Lake', NULL, 'white-bear-lake', 'US', 1, 45.0846900000, -93.0099400000), (1129127, 1001454, 'White Bluff', NULL, 'white-bluff', 'US', 1, 36.1075600000, -87.2208400000), (1129128, 1001457, 'White Castle', NULL, 'white-castle', 'US', 1, 30.1699200000, -91.1470500000), (1129129, 1001462, 'White Center', NULL, 'white-center', 'US', 1, 47.5173200000, -122.3548500000), (1129130, 1001436, 'White City', NULL, 'white-city', 'US', 1, 27.3739300000, -80.3339400000), (1129131, 1001415, 'White City', NULL, 'white-city', 'US', 1, 42.4373500000, -122.8589300000), (1129132, 1001414, 'White City', NULL, 'white-city', 'US', 1, 40.5657800000, -111.8643800000), (1129133, 1001426, 'White Cloud', NULL, 'white-cloud', 'US', 1, 43.5503000000, -85.7720000000), (1129134, 1001444, 'White County', NULL, 'white-county', 'US', 1, 35.2562700000, -91.7455500000), (1129135, 1001455, 'White County', NULL, 'white-county', 'US', 1, 34.6463600000, -83.7471100000), (1129136, 1001425, 'White County', NULL, 'white-county', 'US', 1, 38.0874800000, -88.1795700000), (1129137, 1001454, 'White County', NULL, 'white-county', 'US', 1, 35.9263500000, -85.4551800000), (1129138, 1001440, 'White County', NULL, 'white-county', 'US', 1, 40.7497700000, -86.8654700000), (1129139, 1001444, 'White Hall', NULL, 'white-hall', 'US', 1, 34.2739900000, -92.0909800000), (1129140, 1001425, 'White Hall', NULL, 'white-hall', 'US', 1, 39.4369900000, -90.4031800000), (1129141, 1001422, 'White Haven', NULL, 'white-haven', 'US', 1, 41.0606400000, -75.7740800000), (1129142, 1001417, 'White Horse', NULL, 'white-horse', 'US', 1, 40.1906700000, -74.7023800000), (1129143, 1001454, 'White House', NULL, 'white-house', 'US', 1, 36.4703200000, -86.6513800000), (1129144, 1001433, 'White Island Shores', NULL, 'white-island-shores', 'US', 1, 41.8001000000, -70.6347500000), (1129145, 1001401, 'White Marsh', NULL, 'white-marsh', 'US', 1, 39.3837200000, -76.4321800000), (1129146, 1001417, 'White Meadow Lake', NULL, 'white-meadow-lake', 'US', 1, 40.9237100000, -74.5107100000), (1129147, 1001434, 'White Mountain Lake', NULL, 'white-mountain-lake', 'US', 1, 34.3486500000, -109.9978900000), (1129148, 1001401, 'White Oak', NULL, 'white-oak', 'US', 1, 39.0398300000, -76.9930300000), (1129149, 1001407, 'White Oak', NULL, 'white-oak', 'US', 1, 32.5279200000, -94.8613300000), (1129150, 1001422, 'White Oak', NULL, 'white-oak', 'US', 1, 40.3375700000, -79.8092100000), (1129151, 1001426, 'White Pigeon', NULL, 'white-pigeon', 'US', 1, 41.7981100000, -85.6433200000), (1129152, 1001454, 'White Pine', NULL, 'white-pine', 'US', 1, 36.1075900000, -83.2868300000), (1129153, 1001458, 'White Pine County', NULL, 'white-pine-county', 'US', 1, 39.4421600000, -114.9015900000), (1129154, 1001447, 'White Plains', NULL, 'white-plains', 'US', 1, 36.4456900000, -80.6334000000), (1129155, 1001452, 'White Plains', NULL, 'white-plains', 'US', 1, 41.0339900000, -73.7629100000), (1129156, 1001445, 'White River', NULL, 'white-river', 'US', 1, 43.5680500000, -100.7454200000), (1129157, 1001409, 'White River Junction', NULL, 'white-river-junction', 'US', 1, 43.6489600000, -72.3192600000), (1129158, 1001423, 'White Rock', NULL, 'white-rock', 'US', 1, 35.8275300000, -106.2039100000), (1129159, 1001462, 'White Salmon', NULL, 'white-salmon', 'US', 1, 45.7276200000, -121.4864600000), (1129160, 1001423, 'White Sands', NULL, 'white-sands', 'US', 1, 32.3809300000, -106.4794400000), (1129161, 1001407, 'White Settlement', NULL, 'white-settlement', 'US', 1, 32.7595700000, -97.4583500000), (1129162, 1001429, 'White Sulphur Springs', NULL, 'white-sulphur-springs', 'US', 1, 37.7965100000, -80.2975700000), (1129163, 1001446, 'White Sulphur Springs', NULL, 'white-sulphur-springs', 'US', 1, 46.5482800000, -110.9021600000), (1129164, 1001453, 'Whitefield', NULL, 'whitefield', 'US', 1, 44.1700700000, -69.6253200000), (1129165, 1001404, 'Whitefield', NULL, 'whitefield', 'US', 1, 44.3731200000, -71.6100800000), (1129166, 1001446, 'Whitefish', NULL, 'whitefish', 'US', 1, 48.4110800000, -114.3376300000), (1129167, 1001441, 'Whitefish Bay', NULL, 'whitefish-bay', 'US', 1, 43.1133400000, -87.9000900000), (1129168, 1001426, 'Whitehall', NULL, 'whitehall', 'US', 1, 43.4100100000, -86.3486800000), (1129169, 1001452, 'Whitehall', NULL, 'whitehall', 'US', 1, 43.5556200000, -73.4037200000), (1129170, 1001422, 'Whitehall', NULL, 'whitehall', 'US', 1, 40.3611800000, -79.9908900000), (1129171, 1001441, 'Whitehall', NULL, 'whitehall', 'US', 1, 44.3674600000, -91.3165500000), (1129172, 1001446, 'Whitehall', NULL, 'whitehall', 'US', 1, 45.8707600000, -112.0974900000), (1129173, 1001422, 'Whitehall Township', NULL, 'whitehall-township', 'US', 1, 40.6667600000, -75.4999100000), (1129174, 1001407, 'Whitehouse', NULL, 'whitehouse', 'US', 1, 32.2268200000, -95.2255000000), (1129175, 1001417, 'Whitehouse Station', NULL, 'whitehouse-station', 'US', 1, 40.6153800000, -74.7704400000), (1129176, 1001440, 'Whiteland', NULL, 'whiteland', 'US', 1, 39.5500500000, -86.0797100000), (1129177, 1001451, 'Whiteman Air Force Base', NULL, 'whiteman-air-force-base', 'US', 1, 38.7301800000, -93.5589500000), (1129178, 1001455, 'Whitemarsh Island', NULL, 'whitemarsh-island', 'US', 1, 32.0288200000, -81.0167800000), (1129179, 1001434, 'Whiteriver', NULL, 'whiteriver', 'US', 1, 33.8369900000, -109.9642700000), (1129180, 1001456, 'Whitesboro', NULL, 'whitesboro', 'US', 1, 34.1634300000, -86.0694200000), (1129181, 1001417, 'Whitesboro', NULL, 'whitesboro', 'US', 1, 39.0390000000, -74.8568400000), (1129182, 1001407, 'Whitesboro', NULL, 'whitesboro', 'US', 1, 33.6562200000, -96.9069500000), (1129183, 1001452, 'Whitesboro', NULL, 'whitesboro', 'US', 1, 43.1220100000, -75.2915600000), (1129184, 1001417, 'Whitesboro-Burleigh', NULL, 'whitesboro-burleigh', 'US', 1, 39.0430500000, -74.8653800000), (1129185, 1001419, 'Whitesburg', NULL, 'whitesburg', 'US', 1, 37.1184300000, -82.8268300000), (1129186, 1001425, 'Whiteside County', NULL, 'whiteside-county', 'US', 1, 41.7562600000, -89.9140900000), (1129187, 1001452, 'Whitestone', NULL, 'whitestone', 'US', 1, 40.7945500000, -73.8184700000), (1129188, 1001440, 'Whitestown', NULL, 'whitestown', 'US', 1, 39.9972600000, -86.3458300000), (1129189, 1001447, 'Whiteville', NULL, 'whiteville', 'US', 1, 34.3387800000, -78.7030700000), (1129190, 1001454, 'Whiteville', NULL, 'whiteville', 'US', 1, 35.3264700000, -89.1495100000), (1129191, 1001441, 'Whitewater', NULL, 'whitewater', 'US', 1, 42.8336200000, -88.7323300000), (1129192, 1001407, 'Whitewright', NULL, 'whitewright', 'US', 1, 33.5128900000, -96.3924800000), (1129193, 1001436, 'Whitfield', NULL, 'whitfield', 'US', 1, 27.4117100000, -82.5659300000), (1129194, 1001422, 'Whitfield', NULL, 'whitfield', 'US', 1, 40.3359300000, -76.0060500000), (1129195, 1001455, 'Whitfield County', NULL, 'whitfield-county', 'US', 1, 34.8056100000, -84.9672200000), (1129196, 1001440, 'Whiting', NULL, 'whiting', 'US', 1, 41.6797600000, -87.4944900000), (1129197, 1001441, 'Whiting', NULL, 'whiting', 'US', 1, 44.4935800000, -89.5587300000), (1129198, 1001433, 'Whitinsville', NULL, 'whitinsville', 'US', 1, 42.1112100000, -71.6661800000), (1129199, 1001419, 'Whitley City', NULL, 'whitley-city', 'US', 1, 36.7234100000, -84.4704900000), (1129200, 1001419, 'Whitley County', NULL, 'whitley-county', 'US', 1, 36.7580700000, -84.1451800000), (1129201, 1001440, 'Whitley County', NULL, 'whitley-county', 'US', 1, 41.1393800000, -85.5051200000), (1129202, 1001422, 'Whitman', NULL, 'whitman', 'US', 1, 39.9167800000, -75.1554600000), (1129203, 1001433, 'Whitman', NULL, 'whitman', 'US', 1, 42.0806600000, -70.9356000000), (1129204, 1001462, 'Whitman County', NULL, 'whitman-county', 'US', 1, 46.9011700000, -117.5229900000), (1129205, 1001443, 'Whitmire', NULL, 'whitmire', 'US', 1, 34.5029100000, -81.6114900000), (1129206, 1001426, 'Whitmore Lake', NULL, 'whitmore-lake', 'US', 1, 42.4397000000, -83.7453000000), (1129207, 1001411, 'Whitmore Village', NULL, 'whitmore-village', 'US', 1, 21.5142900000, -158.0246400000), (1129208, 1001407, 'Whitney', NULL, 'whitney', 'US', 1, 31.9518200000, -97.3214000000), (1129209, 1001458, 'Whitney', NULL, 'whitney', 'US', 1, 36.0983100000, -115.0363000000), (1129210, 1001416, 'Whittier', NULL, 'whittier', 'US', 1, 33.9791800000, -118.0328400000), (1129211, 1001417, 'Whittingham', NULL, 'whittingham', 'US', 1, 40.3298200000, -74.4451100000), (1129212, 1001454, 'Whitwell', NULL, 'whitwell', 'US', 1, 35.2014600000, -85.5191300000), (1129213, 1001446, 'Wibaux', NULL, 'wibaux', 'US', 1, 46.9850100000, -104.1882700000), (1129214, 1001446, 'Wibaux County', NULL, 'wibaux-county', 'US', 1, 46.9653500000, -104.2489700000), (1129215, 1001406, 'Wichita', NULL, 'wichita', 'US', 1, 37.6922400000, -97.3375400000), (1129216, 1001407, 'Wichita County', NULL, 'wichita-county', 'US', 1, 33.9879800000, -98.7036100000), (1129217, 1001406, 'Wichita County', NULL, 'wichita-county', 'US', 1, 38.4820800000, -101.3473600000), (1129218, 1001407, 'Wichita Falls', NULL, 'wichita-falls', 'US', 1, 33.9137100000, -98.4933900000), (1129219, 1001434, 'Wickenburg', NULL, 'wickenburg', 'US', 1, 33.9686400000, -112.7296200000), (1129220, 1001422, 'Wickerham Manor-Fisher', NULL, 'wickerham-manor-fisher', 'US', 1, 40.1774900000, -79.9068400000), (1129221, 1001419, 'Wickliffe', NULL, 'wickliffe', 'US', 1, 36.9647800000, -89.0892300000), (1129222, 1001401, 'Wicomico County', NULL, 'wicomico-county', 'US', 1, 38.3694200000, -75.6315100000), (1129223, 1001430, 'Wiggins', NULL, 'wiggins', 'US', 1, 30.8582400000, -89.1353300000), (1129224, 1001407, 'Wilbarger County', NULL, 'wilbarger-county', 'US', 1, 34.0807200000, -99.2410800000), (1129225, 1001408, 'Wilber', NULL, 'wilber', 'US', 1, 40.4813900000, -96.9605800000), (1129226, 1001433, 'Wilbraham', NULL, 'wilbraham', 'US', 1, 42.1237100000, -72.4314700000), (1129227, 1001421, 'Wilburton', NULL, 'wilburton', 'US', 1, 34.9187100000, -95.3091400000), (1129228, 1001456, 'Wilcox County', NULL, 'wilcox-county', 'US', 1, 31.9892400000, -87.3082000000), (1129229, 1001455, 'Wilcox County', NULL, 'wilcox-county', 'US', 1, 31.9729000000, -83.4323600000), (1129230, 1001407, 'Wild Peach Village', NULL, 'wild-peach-village', 'US', 1, 29.0835800000, -95.6338400000), (1129231, 1001419, 'Wilder', NULL, 'wilder', 'US', 1, 39.0564500000, -84.4868900000), (1129232, 1001409, 'Wilder', NULL, 'wilder', 'US', 1, 43.6728500000, -72.3087000000), (1129233, 1001460, 'Wilder', NULL, 'wilder', 'US', 1, 43.6765500000, -116.9118200000), (1129234, 1001462, 'Wilderness Rim', NULL, 'wilderness-rim', 'US', 1, 47.4469700000, -121.7685700000), (1129235, 1001416, 'Wildomar', NULL, 'wildomar', 'US', 1, 33.5989100000, -117.2800400000), (1129236, 1001436, 'Wildwood', NULL, 'wildwood', 'US', 1, 28.8654200000, -82.0405800000), (1129237, 1001451, 'Wildwood', NULL, 'wildwood', 'US', 1, 38.5828300000, -90.6629000000), (1129238, 1001417, 'Wildwood', NULL, 'wildwood', 'US', 1, 38.9917800000, -74.8148900000), (1129239, 1001454, 'Wildwood', NULL, 'wildwood', 'US', 1, 35.8037000000, -83.8712900000), (1129240, 1001407, 'Wildwood', NULL, 'wildwood', 'US', 1, 30.5240900000, -94.4415800000), (1129241, 1001417, 'Wildwood Crest', NULL, 'wildwood-crest', 'US', 1, 38.9748400000, -74.8335000000), (1129242, 1001454, 'Wildwood Lake', NULL, 'wildwood-lake', 'US', 1, 35.0920200000, -84.8543900000), (1129243, 1001429, 'Wiley Ford', NULL, 'wiley-ford', 'US', 1, 39.6145300000, -78.7750200000), (1129244, 1001455, 'Wilkes County', NULL, 'wilkes-county', 'US', 1, 33.7819500000, -82.7432300000), (1129245, 1001447, 'Wilkes County', NULL, 'wilkes-county', 'US', 1, 36.2062100000, -81.1629200000), (1129246, 1001422, 'Wilkes-Barre', NULL, 'wilkes-barre', 'US', 1, 41.2459100000, -75.8813100000), (1129247, 1001447, 'Wilkesboro', NULL, 'wilkesboro', 'US', 1, 36.1459600000, -81.1606400000), (1129248, 1001420, 'Wilkin County', NULL, 'wilkin-county', 'US', 1, 46.3570800000, -96.4683500000), (1129249, 1001422, 'Wilkinsburg', NULL, 'wilkinsburg', 'US', 1, 40.4417400000, -79.8819900000), (1129250, 1001455, 'Wilkinson County', NULL, 'wilkinson-county', 'US', 1, 32.8024100000, -83.1712500000), (1129251, 1001430, 'Wilkinson County', NULL, 'wilkinson-county', 'US', 1, 31.1610700000, -91.3109200000), (1129252, 1001443, 'Wilkinson Heights', NULL, 'wilkinson-heights', 'US', 1, 33.5021000000, -80.8331500000), (1129253, 1001425, 'Will County', NULL, 'will-county', 'US', 1, 41.4450300000, -87.9786600000), (1129254, 1001455, 'Willacoochee', NULL, 'willacoochee', 'US', 1, 31.3407600000, -83.0459800000), (1129255, 1001407, 'Willacy County', NULL, 'willacy-county', 'US', 1, 26.4770100000, -97.5918200000), (1129256, 1001415, 'Willamina', NULL, 'willamina', 'US', 1, 45.0787300000, -123.4859400000), (1129257, 1001451, 'Willard', NULL, 'willard', 'US', 1, 37.3050500000, -93.4285300000), (1129258, 1001414, 'Willard', NULL, 'willard', 'US', 1, 41.4091100000, -112.0360600000), (1129259, 1001434, 'Willcox', NULL, 'willcox', 'US', 1, 32.2528500000, -109.8320100000), (1129260, 1001434, 'Williams', NULL, 'williams', 'US', 1, 35.2494600000, -112.1910000000), (1129261, 1001416, 'Williams', NULL, 'williams', 'US', 1, 39.1546100000, -122.1494200000), (1129262, 1001415, 'Williams', NULL, 'williams', 'US', 1, 42.2187300000, -123.2739400000), (1129263, 1001441, 'Williams Bay', NULL, 'williams-bay', 'US', 1, 42.5780700000, -88.5409300000), (1129264, 1001418, 'Williams County', NULL, 'williams-county', 'US', 1, 48.3436800000, -103.4802100000), (1129265, 1001436, 'Williamsburg', NULL, 'williamsburg', 'US', 1, 28.4144500000, -81.4428500000), (1129266, 1001419, 'Williamsburg', NULL, 'williamsburg', 'US', 1, 36.7434200000, -84.1596600000), (1129267, 1001459, 'Williamsburg', NULL, 'williamsburg', 'US', 1, 41.6611200000, -92.0090700000), (1129268, 1001427, 'Williamsburg', NULL, 'williamsburg', 'US', 1, 37.2707000000, -76.7074600000), (1129269, 1001433, 'Williamsburg', NULL, 'williamsburg', 'US', 1, 42.3931400000, -72.7300900000), (1129270, 1001452, 'Williamsburg', NULL, 'williamsburg', 'US', 1, 40.7142700000, -73.9534700000), (1129271, 1001422, 'Williamsburg', NULL, 'williamsburg', 'US', 1, 40.4620200000, -78.1997300000), (1129272, 1001443, 'Williamsburg County', NULL, 'williamsburg-county', 'US', 1, 33.6199300000, -79.7277100000), (1129273, 1001429, 'Williamson', NULL, 'williamson', 'US', 1, 37.6742700000, -82.2773600000), (1129274, 1001452, 'Williamson', NULL, 'williamson', 'US', 1, 43.2239500000, -77.1860900000), (1129275, 1001434, 'Williamson', NULL, 'williamson', 'US', 1, 34.6900200000, -112.5410100000), (1129276, 1001425, 'Williamson County', NULL, 'williamson-county', 'US', 1, 37.7302500000, -88.9299400000), (1129277, 1001454, 'Williamson County', NULL, 'williamson-county', 'US', 1, 35.8937800000, -86.8986000000), (1129278, 1001407, 'Williamson County', NULL, 'williamson-county', 'US', 1, 30.6480400000, -97.6007600000), (1129279, 1001401, 'Williamsport', NULL, 'williamsport', 'US', 1, 39.6006500000, -77.8205500000); INSERT INTO `[[dbprefix]]t_city` VALUES (1129280, 1001440, 'Williamsport', NULL, 'williamsport', 'US', 1, 40.2883700000, -87.2939000000), (1129281, 1001422, 'Williamsport', NULL, 'williamsport', 'US', 1, 41.2411900000, -77.0010800000), (1129282, 1001447, 'Williamston', NULL, 'williamston', 'US', 1, 35.8546000000, -77.0555100000), (1129283, 1001443, 'Williamston', NULL, 'williamston', 'US', 1, 34.6184500000, -82.4779100000), (1129284, 1001426, 'Williamston', NULL, 'williamston', 'US', 1, 42.6889200000, -84.2830200000), (1129285, 1001419, 'Williamstown', NULL, 'williamstown', 'US', 1, 38.6381200000, -84.5605000000), (1129286, 1001417, 'Williamstown', NULL, 'williamstown', 'US', 1, 39.6862300000, -74.9951700000), (1129287, 1001429, 'Williamstown', NULL, 'williamstown', 'US', 1, 39.4006300000, -81.4481800000), (1129288, 1001433, 'Williamstown', NULL, 'williamstown', 'US', 1, 42.7120200000, -73.2037200000), (1129289, 1001409, 'Williamstown', NULL, 'williamstown', 'US', 1, 44.1217300000, -72.5414900000), (1129290, 1001422, 'Williamstown', NULL, 'williamstown', 'US', 1, 40.5800900000, -76.6177400000), (1129291, 1001425, 'Williamsville', NULL, 'williamsville', 'US', 1, 39.9542200000, -89.5487100000), (1129292, 1001452, 'Williamsville', NULL, 'williamsville', 'US', 1, 42.9639500000, -78.7378100000), (1129293, 1001435, 'Willimantic', NULL, 'willimantic', 'US', 1, 41.7106500000, -72.2081300000), (1129294, 1001417, 'Willingboro', NULL, 'willingboro', 'US', 1, 40.0278900000, -74.8690500000), (1129295, 1001407, 'Willis', NULL, 'willis', 'US', 1, 30.4249300000, -95.4799400000), (1129296, 1001436, 'Williston', NULL, 'williston', 'US', 1, 29.3874700000, -82.4467700000), (1129297, 1001443, 'Williston', NULL, 'williston', 'US', 1, 33.4026500000, -81.4201100000), (1129298, 1001409, 'Williston', NULL, 'williston', 'US', 1, 44.4375500000, -73.0681800000), (1129299, 1001418, 'Williston', NULL, 'williston', 'US', 1, 48.1469700000, -103.6179700000), (1129300, 1001436, 'Williston Highlands', NULL, 'williston-highlands', 'US', 1, 29.3405200000, -82.5415000000), (1129301, 1001452, 'Williston Park', NULL, 'williston-park', 'US', 1, 40.7564900000, -73.6448500000), (1129302, 1001416, 'Willits', NULL, 'willits', 'US', 1, 39.4096100000, -123.3555700000), (1129303, 1001420, 'Willmar', NULL, 'willmar', 'US', 1, 45.1219100000, -95.0433400000), (1129304, 1001400, 'Willow', NULL, 'willow', 'US', 1, 61.7472200000, -150.0375000000), (1129305, 1001416, 'Willow Creek', NULL, 'willow-creek', 'US', 1, 40.9395800000, -123.6314400000), (1129306, 1001422, 'Willow Grove', NULL, 'willow-grove', 'US', 1, 40.1440000000, -75.1157300000), (1129307, 1001436, 'Willow Oak', NULL, 'willow-oak', 'US', 1, 27.9161400000, -82.0178600000), (1129308, 1001407, 'Willow Park', NULL, 'willow-park', 'US', 1, 32.7626300000, -97.6505800000), (1129309, 1001451, 'Willow Springs', NULL, 'willow-springs', 'US', 1, 36.9922800000, -91.9698700000), (1129310, 1001425, 'Willow Springs', NULL, 'willow-springs', 'US', 1, 41.7408700000, -87.8603300000), (1129311, 1001422, 'Willow Street', NULL, 'willow-street', 'US', 1, 39.9792700000, -76.2763500000), (1129312, 1001434, 'Willow Valley', NULL, 'willow-valley', 'US', 1, 34.9119500000, -114.6066300000), (1129313, 1001425, 'Willowbrook', NULL, 'willowbrook', 'US', 1, 41.7697500000, -87.9358900000), (1129314, 1001452, 'Willowbrook', NULL, 'willowbrook', 'US', 1, 40.6031600000, -74.1384800000), (1129315, 1001416, 'Willowbrook', NULL, 'willowbrook', 'US', 1, 33.9169600000, -118.2550700000), (1129316, 1001416, 'Willows', NULL, 'willows', 'US', 1, 39.5243300000, -122.1935900000), (1129317, 1001407, 'Wills Point', NULL, 'wills-point', 'US', 1, 32.7093000000, -96.0083000000), (1129318, 1001407, 'Wilmer', NULL, 'wilmer', 'US', 1, 32.5890200000, -96.6852700000), (1129319, 1001422, 'Wilmerding', NULL, 'wilmerding', 'US', 1, 40.3909000000, -79.8100500000), (1129320, 1001425, 'Wilmette', NULL, 'wilmette', 'US', 1, 42.0722500000, -87.7228400000), (1129321, 1001399, 'Wilmington', NULL, 'wilmington', 'US', 1, 39.7459500000, -75.5465900000), (1129322, 1001447, 'Wilmington', NULL, 'wilmington', 'US', 1, 34.2257300000, -77.9447100000), (1129323, 1001425, 'Wilmington', NULL, 'wilmington', 'US', 1, 41.3078100000, -88.1467200000), (1129324, 1001433, 'Wilmington', NULL, 'wilmington', 'US', 1, 42.5464800000, -71.1736700000), (1129325, 1001455, 'Wilmington Island', NULL, 'wilmington-island', 'US', 1, 32.0035500000, -80.9737200000), (1129326, 1001399, 'Wilmington Manor', NULL, 'wilmington-manor', 'US', 1, 39.6867800000, -75.5843700000), (1129327, 1001419, 'Wilmore', NULL, 'wilmore', 'US', 1, 37.8620200000, -84.6616100000), (1129328, 1001404, 'Wilmot', NULL, 'wilmot', 'US', 1, 43.4517400000, -71.9136900000), (1129329, 1001447, 'Wilson', NULL, 'wilson', 'US', 1, 35.7212700000, -77.9155400000), (1129330, 1001421, 'Wilson', NULL, 'wilson', 'US', 1, 34.1620400000, -97.4258600000), (1129331, 1001452, 'Wilson', NULL, 'wilson', 'US', 1, 43.3097800000, -78.8261500000), (1129332, 1001422, 'Wilson', NULL, 'wilson', 'US', 1, 40.6839900000, -75.2418400000), (1129333, 1001442, 'Wilson', NULL, 'wilson', 'US', 1, 43.5007600000, -110.8752100000), (1129334, 1001406, 'Wilson County', NULL, 'wilson-county', 'US', 1, 37.5592400000, -95.7433900000), (1129335, 1001447, 'Wilson County', NULL, 'wilson-county', 'US', 1, 35.7050300000, -77.9186200000), (1129336, 1001454, 'Wilson County', NULL, 'wilson-county', 'US', 1, 36.1548600000, -86.2976300000), (1129337, 1001407, 'Wilson County', NULL, 'wilson-county', 'US', 1, 29.1740100000, -98.0865700000), (1129338, 1001401, 'Wilson-Conococheague', NULL, 'wilson-conococheague', 'US', 1, 39.6535100000, -77.8315700000), (1129339, 1001447, 'Wilsons Mills', NULL, 'wilsons-mills', 'US', 1, 35.5840500000, -78.3558300000), (1129340, 1001456, 'Wilsonville', NULL, 'wilsonville', 'US', 1, 33.2342800000, -86.4835900000), (1129341, 1001415, 'Wilsonville', NULL, 'wilsonville', 'US', 1, 45.2998400000, -122.7737100000), (1129342, 1001435, 'Wilton', NULL, 'wilton', 'US', 1, 41.1953700000, -73.4379000000), (1129343, 1001459, 'Wilton', NULL, 'wilton', 'US', 1, 41.5889200000, -91.0168200000), (1129344, 1001453, 'Wilton', NULL, 'wilton', 'US', 1, 44.5928400000, -70.2281200000), (1129345, 1001404, 'Wilton', NULL, 'wilton', 'US', 1, 42.8434200000, -71.7350700000), (1129346, 1001416, 'Wilton', NULL, 'wilton', 'US', 1, 38.4118600000, -121.2721700000), (1129347, 1001436, 'Wilton Manors', NULL, 'wilton-manors', 'US', 1, 26.1603600000, -80.1389300000), (1129348, 1001436, 'Wimauma', NULL, 'wimauma', 'US', 1, 27.7125300000, -82.2989800000), (1129349, 1001407, 'Wimberley', NULL, 'wimberley', 'US', 1, 29.9974400000, -98.0986200000), (1129350, 1001440, 'Winamac', NULL, 'winamac', 'US', 1, 41.0514300000, -86.6030600000), (1129351, 1001433, 'Winchendon', NULL, 'winchendon', 'US', 1, 42.6862000000, -72.0439700000), (1129352, 1001425, 'Winchester', NULL, 'winchester', 'US', 1, 39.6297700000, -90.4562400000), (1129353, 1001419, 'Winchester', NULL, 'winchester', 'US', 1, 37.9900800000, -84.1796500000), (1129354, 1001451, 'Winchester', NULL, 'winchester', 'US', 1, 38.5903300000, -90.5279000000), (1129355, 1001454, 'Winchester', NULL, 'winchester', 'US', 1, 35.1859200000, -86.1122100000), (1129356, 1001427, 'Winchester', NULL, 'winchester', 'US', 1, 39.1856600000, -78.1633300000), (1129357, 1001440, 'Winchester', NULL, 'winchester', 'US', 1, 40.1719900000, -84.9813500000), (1129358, 1001433, 'Winchester', NULL, 'winchester', 'US', 1, 42.4523200000, -71.1370000000), (1129359, 1001404, 'Winchester', NULL, 'winchester', 'US', 1, 42.7734200000, -72.3831400000), (1129360, 1001416, 'Winchester', NULL, 'winchester', 'US', 1, 33.7069700000, -117.0844700000), (1129361, 1001458, 'Winchester', NULL, 'winchester', 'US', 1, 36.1299700000, -115.1188900000), (1129362, 1001435, 'Winchester Center', NULL, 'winchester-center', 'US', 1, 41.9001000000, -73.1348300000), (1129363, 1001422, 'Wind Gap', NULL, 'wind-gap', 'US', 1, 40.8481500000, -75.2915700000), (1129364, 1001441, 'Wind Lake', NULL, 'wind-lake', 'US', 1, 42.8294600000, -88.1587000000), (1129365, 1001441, 'Wind Point', NULL, 'wind-point', 'US', 1, 42.7844600000, -87.7661900000), (1129366, 1001422, 'Windber', NULL, 'windber', 'US', 1, 40.2398000000, -78.8350200000), (1129367, 1001407, 'Windcrest', NULL, 'windcrest', 'US', 1, 29.5155100000, -98.3802900000), (1129368, 1001407, 'Windemere', NULL, 'windemere', 'US', 1, 30.4590900000, -97.6491700000), (1129369, 1001455, 'Winder', NULL, 'winder', 'US', 1, 33.9926100000, -83.7201700000), (1129370, 1001436, 'Windermere', NULL, 'windermere', 'US', 1, 28.4955600000, -81.5348000000), (1129371, 1001435, 'Windham', NULL, 'windham', 'US', 1, 41.6998200000, -72.1570200000), (1129372, 1001404, 'Windham', NULL, 'windham', 'US', 1, 42.8006400000, -71.3042300000), (1129373, 1001435, 'Windham County', NULL, 'windham-county', 'US', 1, 41.8300300000, -71.9874900000), (1129374, 1001409, 'Windham County', NULL, 'windham-county', 'US', 1, 42.9905900000, -72.7138400000), (1129375, 1001420, 'Windom', NULL, 'windom', 'US', 1, 43.8663500000, -95.1169400000), (1129376, 1001434, 'Window Rock', NULL, 'window-rock', 'US', 1, 35.6805700000, -109.0525900000), (1129377, 1001425, 'Windsor', NULL, 'windsor', 'US', 1, 39.4408700000, -88.5947800000), (1129378, 1001447, 'Windsor', NULL, 'windsor', 'US', 1, 35.9984900000, -76.9460600000), (1129379, 1001451, 'Windsor', NULL, 'windsor', 'US', 1, 38.5322400000, -93.5221500000), (1129380, 1001422, 'Windsor', NULL, 'windsor', 'US', 1, 39.9162100000, -76.5844100000), (1129381, 1001427, 'Windsor', NULL, 'windsor', 'US', 1, 36.8084800000, -76.7441200000), (1129382, 1001435, 'Windsor', NULL, 'windsor', 'US', 1, 41.8526000000, -72.6437000000), (1129383, 1001453, 'Windsor', NULL, 'windsor', 'US', 1, 44.3106300000, -69.5806000000), (1129384, 1001409, 'Windsor', NULL, 'windsor', 'US', 1, 43.4803500000, -72.3848100000), (1129385, 1001441, 'Windsor', NULL, 'windsor', 'US', 1, 43.2183300000, -89.3415100000), (1129386, 1001416, 'Windsor', NULL, 'windsor', 'US', 1, 38.5471300000, -122.8163800000), (1129387, 1001450, 'Windsor', NULL, 'windsor', 'US', 1, 40.4774800000, -104.9013600000), (1129388, 1001409, 'Windsor County', NULL, 'windsor-county', 'US', 1, 43.5800000000, -72.5862400000), (1129389, 1001459, 'Windsor Heights', NULL, 'windsor-heights', 'US', 1, 41.5977700000, -93.7082800000), (1129390, 1001435, 'Windsor Locks', NULL, 'windsor-locks', 'US', 1, 41.9292600000, -72.6273100000), (1129391, 1001419, 'Windy Hills', NULL, 'windy-hills', 'US', 1, 38.2739600000, -85.6344100000), (1129392, 1001456, 'Winfield', NULL, 'winfield', 'US', 1, 33.9289900000, -87.8172500000), (1129393, 1001406, 'Winfield', NULL, 'winfield', 'US', 1, 37.2397500000, -96.9955900000), (1129394, 1001451, 'Winfield', NULL, 'winfield', 'US', 1, 38.9972700000, -90.7384600000), (1129395, 1001459, 'Winfield', NULL, 'winfield', 'US', 1, 41.1230800000, -91.4412700000), (1129396, 1001429, 'Winfield', NULL, 'winfield', 'US', 1, 38.5331400000, -81.8934700000), (1129397, 1001425, 'Winfield', NULL, 'winfield', 'US', 1, 41.8617000000, -88.1609000000), (1129398, 1001440, 'Winfield', NULL, 'winfield', 'US', 1, 41.4053100000, -87.2753100000), (1129399, 1001417, 'Winfield', NULL, 'winfield', 'US', 1, 40.6426000000, -74.2854300000), (1129400, 1001447, 'Wingate', NULL, 'wingate', 'US', 1, 34.9843200000, -80.4492300000), (1129401, 1001407, 'Wink', NULL, 'wink', 'US', 1, 31.7512400000, -103.1598900000), (1129402, 1001407, 'Winkler County', NULL, 'winkler-county', 'US', 1, 31.8500500000, -103.0481700000), (1129403, 1001462, 'Winlock', NULL, 'winlock', 'US', 1, 46.4912200000, -122.9379000000), (1129404, 1001457, 'Winn Parish', NULL, 'winn-parish', 'US', 1, 31.9442500000, -92.6367700000), (1129405, 1001425, 'Winnebago', NULL, 'winnebago', 'US', 1, 42.2661300000, -89.2412200000), (1129406, 1001420, 'Winnebago', NULL, 'winnebago', 'US', 1, 43.7677300000, -94.1657900000), (1129407, 1001459, 'Winnebago County', NULL, 'winnebago-county', 'US', 1, 43.3775700000, -93.7342000000), (1129408, 1001425, 'Winnebago County', NULL, 'winnebago-county', 'US', 1, 42.3362600000, -89.1608500000), (1129409, 1001441, 'Winnebago County', NULL, 'winnebago-county', 'US', 1, 44.0688800000, -88.6446600000), (1129410, 1001441, 'Winneconne', NULL, 'winneconne', 'US', 1, 44.1108200000, -88.7126100000), (1129411, 1001458, 'Winnemucca', NULL, 'winnemucca', 'US', 1, 40.9729600000, -117.7356800000), (1129412, 1001445, 'Winner', NULL, 'winner', 'US', 1, 43.3766700000, -99.8590100000), (1129413, 1001459, 'Winneshiek County', NULL, 'winneshiek-county', 'US', 1, 43.2906700000, -91.8437100000), (1129414, 1001425, 'Winnetka', NULL, 'winnetka', 'US', 1, 42.1080800000, -87.7359000000), (1129415, 1001446, 'Winnett', NULL, 'winnett', 'US', 1, 47.0027600000, -108.3520700000), (1129416, 1001457, 'Winnfield', NULL, 'winnfield', 'US', 1, 31.9255800000, -92.6413100000), (1129417, 1001407, 'Winnie', NULL, 'winnie', 'US', 1, 29.8202200000, -94.3840800000), (1129418, 1001457, 'Winnsboro', NULL, 'winnsboro', 'US', 1, 32.1632100000, -91.7206800000), (1129419, 1001443, 'Winnsboro', NULL, 'winnsboro', 'US', 1, 34.3807000000, -81.0864800000), (1129420, 1001407, 'Winnsboro', NULL, 'winnsboro', 'US', 1, 32.9573400000, -95.2902200000), (1129421, 1001443, 'Winnsboro Mills', NULL, 'winnsboro-mills', 'US', 1, 34.3618100000, -81.0853700000), (1129422, 1001430, 'Winona', NULL, 'winona', 'US', 1, 33.4820700000, -89.7281400000), (1129423, 1001451, 'Winona', NULL, 'winona', 'US', 1, 37.0097700000, -91.3234700000), (1129424, 1001420, 'Winona', NULL, 'winona', 'US', 1, 44.0499600000, -91.6393200000), (1129425, 1001420, 'Winona County', NULL, 'winona-county', 'US', 1, 43.9868500000, -91.7791300000), (1129426, 1001440, 'Winona Lake', NULL, 'winona-lake', 'US', 1, 41.2272700000, -85.8219300000), (1129427, 1001409, 'Winooski', NULL, 'winooski', 'US', 1, 44.4914400000, -73.1856800000), (1129428, 1001453, 'Winslow', NULL, 'winslow', 'US', 1, 44.5470100000, -69.6211600000), (1129429, 1001434, 'Winslow', NULL, 'winslow', 'US', 1, 35.0241900000, -110.6973600000), (1129430, 1001435, 'Winsted', NULL, 'winsted', 'US', 1, 41.9212100000, -73.0601100000), (1129431, 1001420, 'Winsted', NULL, 'winsted', 'US', 1, 44.9638500000, -94.0474700000), (1129432, 1001436, 'Winston', NULL, 'winston', 'US', 1, 28.0316900000, -82.0148100000), (1129433, 1001415, 'Winston', NULL, 'winston', 'US', 1, 43.1223400000, -123.4125700000), (1129434, 1001456, 'Winston County', NULL, 'winston-county', 'US', 1, 34.1492300000, -87.3736800000), (1129435, 1001430, 'Winston County', NULL, 'winston-county', 'US', 1, 33.0884900000, -89.0344300000), (1129436, 1001447, 'Winston-Salem', NULL, 'winston-salem', 'US', 1, 36.0998600000, -80.2442200000), (1129437, 1001436, 'Winter Beach', NULL, 'winter-beach', 'US', 1, 27.7192000000, -80.4206100000), (1129438, 1001436, 'Winter Garden', NULL, 'winter-garden', 'US', 1, 28.5652800000, -81.5861800000), (1129439, 1001416, 'Winter Gardens', NULL, 'winter-gardens', 'US', 1, 32.8311600000, -116.9333600000), (1129440, 1001436, 'Winter Haven', NULL, 'winter-haven', 'US', 1, 28.0222400000, -81.7328600000), (1129441, 1001436, 'Winter Park', NULL, 'winter-park', 'US', 1, 28.6000000000, -81.3392400000), (1129442, 1001436, 'Winter Springs', NULL, 'winter-springs', 'US', 1, 28.6988900000, -81.3081200000), (1129443, 1001453, 'Winterport', NULL, 'winterport', 'US', 1, 44.6378500000, -68.8450400000), (1129444, 1001407, 'Winters', NULL, 'winters', 'US', 1, 31.9565300000, -99.9623100000), (1129445, 1001416, 'Winters', NULL, 'winters', 'US', 1, 38.5249100000, -121.9708000000), (1129446, 1001459, 'Winterset', NULL, 'winterset', 'US', 1, 41.3308200000, -94.0138400000), (1129447, 1001455, 'Winterville', NULL, 'winterville', 'US', 1, 33.9670600000, -83.2782100000), (1129448, 1001447, 'Winterville', NULL, 'winterville', 'US', 1, 35.5290500000, -77.4010800000), (1129449, 1001453, 'Winthrop', NULL, 'winthrop', 'US', 1, 44.3050700000, -69.9770000000), (1129450, 1001433, 'Winthrop', NULL, 'winthrop', 'US', 1, 42.3751000000, -70.9828300000), (1129451, 1001420, 'Winthrop', NULL, 'winthrop', 'US', 1, 44.5430200000, -94.3663700000), (1129452, 1001425, 'Winthrop Harbor', NULL, 'winthrop-harbor', 'US', 1, 42.4789100000, -87.8236800000), (1129453, 1001447, 'Winton', NULL, 'winton', 'US', 1, 36.3957100000, -76.9319000000), (1129454, 1001416, 'Winton', NULL, 'winton', 'US', 1, 37.3893800000, -120.6132500000), (1129455, 1001429, 'Wirt County', NULL, 'wirt-county', 'US', 1, 39.0224200000, -81.3786200000), (1129456, 1001453, 'Wiscasset', NULL, 'wiscasset', 'US', 1, 44.0028600000, -69.6656000000), (1129457, 1001441, 'Wisconsin Dells', NULL, 'wisconsin-dells', 'US', 1, 43.6274800000, -89.7709600000), (1129458, 1001441, 'Wisconsin Rapids', NULL, 'wisconsin-rapids', 'US', 1, 44.3835800000, -89.8173500000), (1129459, 1001427, 'Wise', NULL, 'wise', 'US', 1, 36.9759300000, -82.5757100000), (1129460, 1001407, 'Wise County', NULL, 'wise-county', 'US', 1, 33.2159000000, -97.6544500000), (1129461, 1001427, 'Wise County', NULL, 'wise-county', 'US', 1, 36.9752200000, -82.6212400000), (1129462, 1001408, 'Wisner', NULL, 'wisner', 'US', 1, 41.9872200000, -96.9142100000), (1129463, 1001421, 'Wister', NULL, 'wister', 'US', 1, 34.9673200000, -94.7246700000), (1129464, 1001441, 'Wittenberg', NULL, 'wittenberg', 'US', 1, 44.8272000000, -89.1695600000), (1129465, 1001426, 'Wixom', NULL, 'wixom', 'US', 1, 42.5247600000, -83.5363300000), (1129466, 1001433, 'Woburn', NULL, 'woburn', 'US', 1, 42.4792600000, -71.1522800000), (1129467, 1001416, 'Wofford Heights', NULL, 'wofford-heights', 'US', 1, 35.7069000000, -118.4562000000), (1129468, 1001435, 'Wolcott', NULL, 'wolcott', 'US', 1, 41.6023200000, -72.9867700000), (1129469, 1001452, 'Wolcott', NULL, 'wolcott', 'US', 1, 43.2206200000, -76.8149600000), (1129470, 1001440, 'Wolcottville', NULL, 'wolcottville', 'US', 1, 41.5258800000, -85.3666500000), (1129471, 1001414, 'Wolf Creek', NULL, 'wolf-creek', 'US', 1, 41.3332700000, -111.8271600000), (1129472, 1001426, 'Wolf Lake', NULL, 'wolf-lake', 'US', 1, 43.2547400000, -86.1097800000), (1129473, 1001446, 'Wolf Point', NULL, 'wolf-point', 'US', 1, 48.0905700000, -105.6405600000), (1129474, 1001427, 'Wolf Trap', NULL, 'wolf-trap', 'US', 1, 38.9398300000, -77.2860900000), (1129475, 1001422, 'Wolfdale', NULL, 'wolfdale', 'US', 1, 40.1928500000, -80.2878400000), (1129476, 1001407, 'Wolfe City', NULL, 'wolfe-city', 'US', 1, 33.3706700000, -96.0688600000), (1129477, 1001419, 'Wolfe County', NULL, 'wolfe-county', 'US', 1, 37.7393200000, -83.4931800000), (1129478, 1001404, 'Wolfeboro', NULL, 'wolfeboro', 'US', 1, 43.5839700000, -71.2072900000), (1129479, 1001407, 'Wolfforth', NULL, 'wolfforth', 'US', 1, 33.5059200000, -102.0090600000), (1129480, 1001462, 'Wollochet', NULL, 'wollochet', 'US', 1, 47.2687100000, -122.5840200000), (1129481, 1001426, 'Wolverine Lake', NULL, 'wolverine-lake', 'US', 1, 42.5567000000, -83.4738300000), (1129482, 1001422, 'Womelsdorf', NULL, 'womelsdorf', 'US', 1, 40.3617600000, -76.1841100000), (1129483, 1001425, 'Wonder Lake', NULL, 'wonder-lake', 'US', 1, 42.3853000000, -88.3473100000), (1129484, 1001407, 'Wood County', NULL, 'wood-county', 'US', 1, 32.7864100000, -95.3820600000), (1129485, 1001429, 'Wood County', NULL, 'wood-county', 'US', 1, 39.2111300000, -81.5149700000), (1129486, 1001441, 'Wood County', NULL, 'wood-county', 'US', 1, 44.4553200000, -90.0415800000), (1129487, 1001425, 'Wood Dale', NULL, 'wood-dale', 'US', 1, 41.9633600000, -87.9789600000), (1129488, 1001425, 'Wood River', NULL, 'wood-river', 'US', 1, 38.8611600000, -90.0976100000), (1129489, 1001408, 'Wood River', NULL, 'wood-river', 'US', 1, 40.8205700000, -98.6000700000), (1129490, 1001415, 'Wood Village', NULL, 'wood-village', 'US', 1, 45.5342900000, -122.4187000000), (1129491, 1001417, 'Wood-Lynne', NULL, 'wood-lynne', 'US', 1, 39.9173400000, -75.0962900000), (1129492, 1001417, 'Wood-Ridge', NULL, 'wood-ridge', 'US', 1, 40.8456600000, -74.0879200000), (1129493, 1001416, 'Woodacre', NULL, 'woodacre', 'US', 1, 38.0127000000, -122.6452600000), (1129494, 1001455, 'Woodbine', NULL, 'woodbine', 'US', 1, 30.9639600000, -81.7241600000), (1129495, 1001417, 'Woodbine', NULL, 'woodbine', 'US', 1, 39.2417800000, -74.8151700000), (1129496, 1001459, 'Woodbine', NULL, 'woodbine', 'US', 1, 41.7383200000, -95.7027800000), (1129497, 1001422, 'Woodbourne', NULL, 'woodbourne', 'US', 1, 40.1923300000, -74.8887800000), (1129498, 1001407, 'Woodbranch', NULL, 'woodbranch', 'US', 1, 30.1810500000, -95.1888200000), (1129499, 1001435, 'Woodbridge', NULL, 'woodbridge', 'US', 1, 41.3526000000, -73.0084400000), (1129500, 1001427, 'Woodbridge', NULL, 'woodbridge', 'US', 1, 38.6581700000, -77.2497000000), (1129501, 1001417, 'Woodbridge', NULL, 'woodbridge', 'US', 1, 40.5576000000, -74.2845900000), (1129502, 1001416, 'Woodbridge', NULL, 'woodbridge', 'US', 1, 38.1540800000, -121.3013400000), (1129503, 1001440, 'Woodburn', NULL, 'woodburn', 'US', 1, 41.1253300000, -84.8533000000), (1129504, 1001415, 'Woodburn', NULL, 'woodburn', 'US', 1, 45.1437300000, -122.8553700000), (1129505, 1001427, 'Woodburn', NULL, 'woodburn', 'US', 1, 38.8474500000, -77.2360500000), (1129506, 1001417, 'Woodbury', NULL, 'woodbury', 'US', 1, 39.8381700000, -75.1526800000), (1129507, 1001454, 'Woodbury', NULL, 'woodbury', 'US', 1, 35.8275700000, -86.0716600000), (1129508, 1001435, 'Woodbury', NULL, 'woodbury', 'US', 1, 41.5445400000, -73.2090000000), (1129509, 1001420, 'Woodbury', NULL, 'woodbury', 'US', 1, 44.9238600000, -92.9593800000), (1129510, 1001452, 'Woodbury', NULL, 'woodbury', 'US', 1, 41.3645400000, -74.1059800000), (1129511, 1001435, 'Woodbury Center', NULL, 'woodbury-center', 'US', 1, 41.5445300000, -73.2047600000), (1129512, 1001459, 'Woodbury County', NULL, 'woodbury-county', 'US', 1, 42.3897200000, -96.0447700000), (1129513, 1001417, 'Woodbury Heights', NULL, 'woodbury-heights', 'US', 1, 39.8170600000, -75.1551800000), (1129514, 1001417, 'Woodcliff Lake', NULL, 'woodcliff-lake', 'US', 1, 41.0234300000, -74.0665300000), (1129515, 1001407, 'Woodcreek', NULL, 'woodcreek', 'US', 1, 30.0282700000, -98.1111200000), (1129516, 1001416, 'Woodcrest', NULL, 'woodcrest', 'US', 1, 33.8822400000, -117.3572700000), (1129517, 1001443, 'Woodfield', NULL, 'woodfield', 'US', 1, 34.0593200000, -80.9309200000), (1129518, 1001447, 'Woodfin', NULL, 'woodfin', 'US', 1, 35.6334400000, -82.5820700000), (1129519, 1001419, 'Woodford County', NULL, 'woodford-county', 'US', 1, 38.0423900000, -84.7435900000), (1129520, 1001425, 'Woodford County', NULL, 'woodford-county', 'US', 1, 40.7882300000, -89.2111400000), (1129521, 1001426, 'Woodhaven', NULL, 'woodhaven', 'US', 1, 42.1389300000, -83.2416000000), (1129522, 1001452, 'Woodhaven', NULL, 'woodhaven', 'US', 1, 40.6892700000, -73.8579100000), (1129523, 1001462, 'Woodinville', NULL, 'woodinville', 'US', 1, 47.7542700000, -122.1634600000), (1129524, 1001416, 'Woodlake', NULL, 'woodlake', 'US', 1, 36.4135600000, -119.0987200000), (1129525, 1001427, 'Woodlake', NULL, 'woodlake', 'US', 1, 37.4210600000, -77.6793100000), (1129526, 1001416, 'Woodland', NULL, 'woodland', 'US', 1, 38.6785200000, -121.7733000000), (1129527, 1001462, 'Woodland', NULL, 'woodland', 'US', 1, 45.9045600000, -122.7439900000), (1129528, 1001426, 'Woodland Beach', NULL, 'woodland-beach', 'US', 1, 41.9400500000, -83.3132600000), (1129529, 1001422, 'Woodland Heights', NULL, 'woodland-heights', 'US', 1, 41.4097800000, -79.7117200000), (1129530, 1001416, 'Woodland Hills', NULL, 'woodland-hills', 'US', 1, 34.1683400000, -118.6059200000), (1129531, 1001414, 'Woodland Hills', NULL, 'woodland-hills', 'US', 1, 40.0153200000, -111.6486800000), (1129532, 1001417, 'Woodland Park', NULL, 'woodland-park', 'US', 1, 40.8898200000, -74.1948700000), (1129533, 1001450, 'Woodland Park', NULL, 'woodland-park', 'US', 1, 38.9938800000, -105.0569300000), (1129534, 1001401, 'Woodlawn', NULL, 'woodlawn', 'US', 1, 39.3228800000, -76.7280300000), (1129535, 1001427, 'Woodlawn', NULL, 'woodlawn', 'US', 1, 36.7223500000, -80.8228500000), (1129536, 1001425, 'Woodlawn', NULL, 'woodlawn', 'US', 1, 41.7794800000, -87.5994900000), (1129537, 1001452, 'Woodlawn', NULL, 'woodlawn', 'US', 1, 40.8981600000, -73.8673600000), (1129538, 1001436, 'Woodlawn Beach', NULL, 'woodlawn-beach', 'US', 1, 30.3882500000, -86.9908000000), (1129539, 1001422, 'Woodlyn', NULL, 'woodlyn', 'US', 1, 39.8723300000, -75.3371300000), (1129540, 1001457, 'Woodmere', NULL, 'woodmere', 'US', 1, 29.8579800000, -90.0803500000), (1129541, 1001452, 'Woodmere', NULL, 'woodmere', 'US', 1, 40.6320500000, -73.7126300000), (1129542, 1001435, 'Woodmont', NULL, 'woodmont', 'US', 1, 41.2281500000, -72.9914900000), (1129543, 1001450, 'Woodmoor', NULL, 'woodmoor', 'US', 1, 39.1013800000, -104.8474800000), (1129544, 1001401, 'Woodmore', NULL, 'woodmore', 'US', 1, 38.9212200000, -76.8030300000), (1129545, 1001425, 'Woodridge', NULL, 'woodridge', 'US', 1, 41.7469700000, -88.0503400000), (1129546, 1001452, 'Woodrow', NULL, 'woodrow', 'US', 1, 40.5434400000, -74.1976400000), (1129547, 1001443, 'Woodruff', NULL, 'woodruff', 'US', 1, 34.7395700000, -82.0370500000), (1129548, 1001444, 'Woodruff County', NULL, 'woodruff-county', 'US', 1, 35.1863300000, -91.2430700000), (1129549, 1001421, 'Woods County', NULL, 'woods-county', 'US', 1, 36.7669400000, -98.8651200000), (1129550, 1001462, 'Woods Creek', NULL, 'woods-creek', 'US', 1, 47.8787100000, -121.8984600000), (1129551, 1001414, 'Woods Cross', NULL, 'woods-cross', 'US', 1, 40.8716100000, -111.8921600000), (1129552, 1001401, 'Woodsboro', NULL, 'woodsboro', 'US', 1, 39.5331600000, -77.3147100000), (1129553, 1001407, 'Woodsboro', NULL, 'woodsboro', 'US', 1, 28.2383400000, -97.3199900000), (1129554, 1001452, 'Woodside', NULL, 'woodside', 'US', 1, 40.7453800000, -73.9054100000), (1129555, 1001422, 'Woodside', NULL, 'woodside', 'US', 1, 40.2217800000, -74.8754400000), (1129556, 1001416, 'Woodside', NULL, 'woodside', 'US', 1, 37.4299400000, -122.2538600000), (1129557, 1001399, 'Woodside East', NULL, 'woodside-east', 'US', 1, 39.0675600000, -75.5374800000), (1129558, 1001406, 'Woodson County', NULL, 'woodson-county', 'US', 1, 37.8866700000, -95.7401700000), (1129559, 1001451, 'Woodson Terrace', NULL, 'woodson-terrace', 'US', 1, 38.7250500000, -90.3584500000), (1129560, 1001456, 'Woodstock', NULL, 'woodstock', 'US', 1, 33.2067800000, -87.1500000000), (1129561, 1001455, 'Woodstock', NULL, 'woodstock', 'US', 1, 34.1014900000, -84.5193800000), (1129562, 1001427, 'Woodstock', NULL, 'woodstock', 'US', 1, 38.8817800000, -78.5058400000), (1129563, 1001425, 'Woodstock', NULL, 'woodstock', 'US', 1, 42.3147400000, -88.4487000000), (1129564, 1001404, 'Woodstock', NULL, 'woodstock', 'US', 1, 43.9775700000, -71.6850800000), (1129565, 1001452, 'Woodstock', NULL, 'woodstock', 'US', 1, 42.0409200000, -74.1182000000), (1129566, 1001409, 'Woodstock', NULL, 'woodstock', 'US', 1, 43.6242400000, -72.5184300000), (1129567, 1001453, 'Woodstock', NULL, 'woodstock', 'US', 1, 44.3749400000, -70.6084900000), (1129568, 1001417, 'Woodstown', NULL, 'woodstown', 'US', 1, 39.6515000000, -75.3282500000), (1129569, 1001404, 'Woodsville', NULL, 'woodsville', 'US', 1, 44.1522900000, -72.0373100000), (1129570, 1001436, 'Woodville', NULL, 'woodville', 'US', 1, 30.3140900000, -84.2474000000), (1129571, 1001430, 'Woodville', NULL, 'woodville', 'US', 1, 31.1046200000, -91.2995600000), (1129572, 1001407, 'Woodville', NULL, 'woodville', 'US', 1, 30.7752000000, -94.4154800000), (1129573, 1001441, 'Woodville', NULL, 'woodville', 'US', 1, 44.9530200000, -92.2913000000), (1129574, 1001416, 'Woodville', NULL, 'woodville', 'US', 1, 36.0935600000, -119.1990000000), (1129575, 1001421, 'Woodward', NULL, 'woodward', 'US', 1, 36.4336500000, -99.3903900000), (1129576, 1001459, 'Woodward', NULL, 'woodward', 'US', 1, 41.8569300000, -93.9219000000), (1129577, 1001421, 'Woodward County', NULL, 'woodward-county', 'US', 1, 36.4226700000, -99.2649700000), (1129578, 1001407, 'Woodway', NULL, 'woodway', 'US', 1, 31.5060000000, -97.2050100000), (1129579, 1001462, 'Woodway', NULL, 'woodway', 'US', 1, 47.7962100000, -122.3829100000), (1129580, 1001457, 'Woodworth', NULL, 'woodworth', 'US', 1, 31.1465800000, -92.4973600000), (1129581, 1001453, 'Woolwich', NULL, 'woolwich', 'US', 1, 43.9186900000, -69.8011600000), (1129582, 1001461, 'Woonsocket', NULL, 'woonsocket', 'US', 1, 42.0028800000, -71.5147800000), (1129583, 1001445, 'Woonsocket', NULL, 'woonsocket', 'US', 1, 44.0536000000, -98.2756400000), (1129584, 1001433, 'Worcester', NULL, 'worcester', 'US', 1, 42.2625900000, -71.8022900000), (1129585, 1001452, 'Worcester', NULL, 'worcester', 'US', 1, 42.5914600000, -74.7504300000), (1129586, 1001401, 'Worcester County', NULL, 'worcester-county', 'US', 1, 38.2165000000, -75.2966700000), (1129587, 1001433, 'Worcester County', NULL, 'worcester-county', 'US', 1, 42.3514000000, -71.9077400000), (1129588, 1001425, 'Worden', NULL, 'worden', 'US', 1, 38.9314400000, -89.8389900000), (1129589, 1001442, 'Worland', NULL, 'worland', 'US', 1, 44.0169000000, -107.9553700000), (1129590, 1001422, 'Wormleysburg', NULL, 'wormleysburg', 'US', 1, 40.2628700000, -76.9138600000), (1129591, 1001425, 'Worth', NULL, 'worth', 'US', 1, 41.6897500000, -87.7972800000), (1129592, 1001455, 'Worth County', NULL, 'worth-county', 'US', 1, 31.5515100000, -83.8508800000), (1129593, 1001459, 'Worth County', NULL, 'worth-county', 'US', 1, 43.3774000000, -93.2608500000), (1129594, 1001451, 'Worth County', NULL, 'worth-county', 'US', 1, 40.4791400000, -94.4221000000), (1129595, 1001407, 'Wortham', NULL, 'wortham', 'US', 1, 31.7879400000, -96.4624800000), (1129596, 1001440, 'Worthington', NULL, 'worthington', 'US', 1, 39.1250400000, -86.9794500000), (1129597, 1001419, 'Worthington', NULL, 'worthington', 'US', 1, 38.5484100000, -82.7243300000), (1129598, 1001420, 'Worthington', NULL, 'worthington', 'US', 1, 43.6199600000, -95.5964000000), (1129599, 1001419, 'Worthington Hills', NULL, 'worthington-hills', 'US', 1, 38.3089600000, -85.5269000000), (1129600, 1001422, 'Woxall', NULL, 'woxall', 'US', 1, 40.3106600000, -75.4487900000), (1129601, 1001400, 'Wrangell', NULL, 'wrangell', 'US', 1, 56.4708300000, -132.3766700000), (1129602, 1001450, 'Wray', NULL, 'wray', 'US', 1, 40.0758200000, -102.2232500000), (1129603, 1001455, 'Wrens', NULL, 'wrens', 'US', 1, 33.2076500000, -82.3917900000), (1129604, 1001433, 'Wrentham', NULL, 'wrentham', 'US', 1, 42.0667700000, -71.3281100000), (1129605, 1001436, 'Wright', NULL, 'wright', 'US', 1, 30.4557500000, -86.6382900000), (1129606, 1001442, 'Wright', NULL, 'wright', 'US', 1, 43.7512400000, -105.4920100000), (1129607, 1001451, 'Wright City', NULL, 'wright-city', 'US', 1, 38.8275500000, -91.0201400000), (1129608, 1001451, 'Wright County', NULL, 'wright-county', 'US', 1, 37.2701400000, -92.4687000000), (1129609, 1001459, 'Wright County', NULL, 'wright-county', 'US', 1, 42.7331200000, -93.7351500000), (1129610, 1001420, 'Wright County', NULL, 'wright-county', 'US', 1, 45.1739300000, -93.9630500000), (1129611, 1001447, 'Wrightsboro', NULL, 'wrightsboro', 'US', 1, 34.2885000000, -77.9211000000), (1129612, 1001441, 'Wrightstown', NULL, 'wrightstown', 'US', 1, 44.3258200000, -88.1628800000), (1129613, 1001444, 'Wrightsville', NULL, 'wrightsville', 'US', 1, 34.6023200000, -92.2168100000), (1129614, 1001455, 'Wrightsville', NULL, 'wrightsville', 'US', 1, 32.7293300000, -82.7198600000), (1129615, 1001422, 'Wrightsville', NULL, 'wrightsville', 'US', 1, 40.0256500000, -76.5299700000), (1129616, 1001447, 'Wrightsville Beach', NULL, 'wrightsville-beach', 'US', 1, 34.2085000000, -77.7963700000), (1129617, 1001416, 'Wrightwood', NULL, 'wrightwood', 'US', 1, 34.3608300000, -117.6333900000), (1129618, 1001419, 'Wurtland', NULL, 'wurtland', 'US', 1, 38.5503600000, -82.7779400000), (1129619, 1001452, 'Wurtsboro', NULL, 'wurtsboro', 'US', 1, 41.5767600000, -74.4871000000), (1129620, 1001452, 'Wyandanch', NULL, 'wyandanch', 'US', 1, 40.7539900000, -73.3604000000), (1129621, 1001426, 'Wyandotte', NULL, 'wyandotte', 'US', 1, 42.2142100000, -83.1499200000), (1129622, 1001406, 'Wyandotte County', NULL, 'wyandotte-county', 'US', 1, 39.1146500000, -94.7644800000), (1129623, 1001417, 'Wyckoff', NULL, 'wyckoff', 'US', 1, 41.0095400000, -74.1729200000), (1129624, 1001452, 'Wykagyl', NULL, 'wykagyl', 'US', 1, 40.9414900000, -73.7990200000), (1129625, 1001407, 'Wyldwood', NULL, 'wyldwood', 'US', 1, 30.1293800000, -97.4727700000), (1129626, 1001407, 'Wylie', NULL, 'wylie', 'US', 1, 33.0151200000, -96.5388800000), (1129627, 1001408, 'Wymore', NULL, 'wymore', 'US', 1, 40.1222200000, -96.6625200000), (1129628, 1001452, 'Wynantskill', NULL, 'wynantskill', 'US', 1, 42.6967500000, -73.6442800000), (1129629, 1001422, 'Wyncote', NULL, 'wyncote', 'US', 1, 40.0945500000, -75.1487900000), (1129630, 1001427, 'Wyndham', NULL, 'wyndham', 'US', 1, 37.6984800000, -77.6124900000), (1129631, 1001422, 'Wyndmoor', NULL, 'wyndmoor', 'US', 1, 40.0812200000, -75.1893400000), (1129632, 1001444, 'Wynne', NULL, 'wynne', 'US', 1, 35.2245300000, -90.7867800000), (1129633, 1001421, 'Wynnewood', NULL, 'wynnewood', 'US', 1, 34.6434200000, -97.1644700000), (1129634, 1001399, 'Wyoming', NULL, 'wyoming', 'US', 1, 39.1181700000, -75.5588100000), (1129635, 1001425, 'Wyoming', NULL, 'wyoming', 'US', 1, 41.0617000000, -89.7731600000), (1129636, 1001426, 'Wyoming', NULL, 'wyoming', 'US', 1, 42.9133600000, -85.7053100000), (1129637, 1001420, 'Wyoming', NULL, 'wyoming', 'US', 1, 45.3363600000, -92.9971600000), (1129638, 1001422, 'Wyoming', NULL, 'wyoming', 'US', 1, 41.3117500000, -75.8374200000), (1129639, 1001429, 'Wyoming County', NULL, 'wyoming-county', 'US', 1, 37.6096100000, -81.5491800000), (1129640, 1001452, 'Wyoming County', NULL, 'wyoming-county', 'US', 1, 42.7023800000, -78.2244400000), (1129641, 1001422, 'Wyoming County', NULL, 'wyoming-county', 'US', 1, 41.5183300000, -76.0165500000), (1129642, 1001422, 'Wyomissing', NULL, 'wyomissing', 'US', 1, 40.3295400000, -75.9652100000), (1129643, 1001422, 'Wyomissing Hills', NULL, 'wyomissing-hills', 'US', 1, 40.3375900000, -75.9796600000), (1129644, 1001427, 'Wythe County', NULL, 'wythe-county', 'US', 1, 36.9171300000, -81.0785900000), (1129645, 1001427, 'Wytheville', NULL, 'wytheville', 'US', 1, 36.9484500000, -81.0848100000), (1129646, 1001400, 'Y', NULL, 'y', 'US', 1, 62.1612900000, -149.8507500000), (1129647, 1001462, 'Yacolt', NULL, 'yacolt', 'US', 1, 45.8659500000, -122.4062100000), (1129648, 1001447, 'Yadkin County', NULL, 'yadkin-county', 'US', 1, 36.1605400000, -80.6653400000), (1129649, 1001447, 'Yadkinville', NULL, 'yadkinville', 'US', 1, 36.1345800000, -80.6595100000), (1129650, 1001462, 'Yakima', NULL, 'yakima', 'US', 1, 46.6020700000, -120.5059000000), (1129651, 1001462, 'Yakima County', NULL, 'yakima-county', 'US', 1, 46.4568500000, -120.7387000000), (1129652, 1001400, 'Yakutat City and Borough', NULL, 'yakutat-city-and-borough', 'US', 1, 59.6666700000, -139.1333300000), (1129653, 1001436, 'Yalaha', NULL, 'yalaha', 'US', 1, 28.7386000000, -81.8086900000), (1129654, 1001421, 'Yale', NULL, 'yale', 'US', 1, 36.1142300000, -96.6991900000), (1129655, 1001426, 'Yale', NULL, 'yale', 'US', 1, 43.1300300000, -82.7982600000), (1129656, 1001430, 'Yalobusha County', NULL, 'yalobusha-county', 'US', 1, 34.0282100000, -89.7076300000), (1129657, 1001415, 'Yamhill', NULL, 'yamhill', 'US', 1, 45.3415000000, -123.1873300000), (1129658, 1001415, 'Yamhill County', NULL, 'yamhill-county', 'US', 1, 45.2326000000, -123.3081500000), (1129659, 1001447, 'Yancey County', NULL, 'yancey-county', 'US', 1, 35.8988800000, -82.3075500000), (1129660, 1001447, 'Yanceyville', NULL, 'yanceyville', 'US', 1, 36.4040300000, -79.3361300000), (1129661, 1001445, 'Yankton', NULL, 'yankton', 'US', 1, 42.8711100000, -97.3972800000), (1129662, 1001445, 'Yankton County', NULL, 'yankton-county', 'US', 1, 43.0089700000, -97.3947500000), (1129663, 1001452, 'Yaphank', NULL, 'yaphank', 'US', 1, 40.8367700000, -72.9170500000), (1129664, 1001422, 'Yardley', NULL, 'yardley', 'US', 1, 40.2456600000, -74.8460000000), (1129665, 1001417, 'Yardville', NULL, 'yardville', 'US', 1, 40.1812200000, -74.6643200000), (1129666, 1001453, 'Yarmouth', NULL, 'yarmouth', 'US', 1, 43.8006400000, -70.1867200000), (1129667, 1001433, 'Yarmouth', NULL, 'yarmouth', 'US', 1, 41.7056700000, -70.2286300000), (1129668, 1001433, 'Yarmouth Port', NULL, 'yarmouth-port', 'US', 1, 41.7020500000, -70.2494700000), (1129669, 1001462, 'Yarrow Point', NULL, 'yarrow-point', 'US', 1, 47.6462100000, -122.2173500000), (1129670, 1001406, 'Yates Center', NULL, 'yates-center', 'US', 1, 37.8811500000, -95.7333200000), (1129671, 1001452, 'Yates County', NULL, 'yates-county', 'US', 1, 42.6334400000, -77.1054600000), (1129672, 1001434, 'Yavapai County', NULL, 'yavapai-county', 'US', 1, 34.5998800000, -112.5538700000), (1129673, 1001430, 'Yazoo City', NULL, 'yazoo-city', 'US', 1, 32.8551300000, -90.4056500000), (1129674, 1001430, 'Yazoo County', NULL, 'yazoo-county', 'US', 1, 32.7803100000, -90.3964200000), (1129675, 1001422, 'Yeadon', NULL, 'yeadon', 'US', 1, 39.9390000000, -75.2554600000), (1129676, 1001422, 'Yeagertown', NULL, 'yeagertown', 'US', 1, 40.6431300000, -77.5805500000), (1129677, 1001444, 'Yell County', NULL, 'yell-county', 'US', 1, 35.0026000000, -93.4112500000), (1129678, 1001420, 'Yellow Medicine County', NULL, 'yellow-medicine-county', 'US', 1, 44.7162500000, -95.8683600000), (1129679, 1001446, 'Yellowstone County', NULL, 'yellowstone-county', 'US', 1, 45.9372500000, -108.2743500000), (1129680, 1001444, 'Yellville', NULL, 'yellville', 'US', 1, 36.2261800000, -92.6848900000), (1129681, 1001462, 'Yelm', NULL, 'yelm', 'US', 1, 46.9420400000, -122.6059600000), (1129682, 1001458, 'Yerington', NULL, 'yerington', 'US', 1, 38.9857500000, -119.1629300000), (1129683, 1001407, 'Yoakum', NULL, 'yoakum', 'US', 1, 29.2877500000, -97.1519300000), (1129684, 1001407, 'Yoakum County', NULL, 'yoakum-county', 'US', 1, 33.1729700000, -102.8278000000), (1129685, 1001422, 'Yoe', NULL, 'yoe', 'US', 1, 39.9089900000, -76.6369100000), (1129686, 1001416, 'Yolo County', NULL, 'yolo-county', 'US', 1, 38.6866500000, -121.9016200000), (1129687, 1001415, 'Yoncalla', NULL, 'yoncalla', 'US', 1, 43.5984500000, -123.2834200000), (1129688, 1001452, 'Yonkers', NULL, 'yonkers', 'US', 1, 40.9312100000, -73.8987500000), (1129689, 1001416, 'Yorba Linda', NULL, 'yorba-linda', 'US', 1, 33.8886300000, -117.8131100000), (1129690, 1001456, 'York', NULL, 'york', 'US', 1, 32.4862500000, -88.2964200000), (1129691, 1001443, 'York', NULL, 'york', 'US', 1, 34.9943000000, -81.2420200000), (1129692, 1001422, 'York', NULL, 'york', 'US', 1, 39.9626000000, -76.7277400000), (1129693, 1001408, 'York', NULL, 'york', 'US', 1, 40.8680700000, -97.5920000000), (1129694, 1001453, 'York Beach', NULL, 'york-beach', 'US', 1, 43.1714800000, -70.6089400000), (1129695, 1001443, 'York County', NULL, 'york-county', 'US', 1, 34.9747500000, -81.1844200000), (1129696, 1001427, 'York County', NULL, 'york-county', 'US', 1, 37.2254100000, -76.5204600000), (1129697, 1001453, 'York County', NULL, 'york-county', 'US', 1, 43.4292300000, -70.6701500000), (1129698, 1001408, 'York County', NULL, 'york-county', 'US', 1, 40.8727500000, -97.5971100000), (1129699, 1001422, 'York County', NULL, 'york-county', 'US', 1, 39.9199600000, -76.7265100000), (1129700, 1001453, 'York Harbor', NULL, 'york-harbor', 'US', 1, 43.1367600000, -70.6456100000), (1129701, 1001417, 'Yorketown', NULL, 'yorketown', 'US', 1, 40.3078900000, -74.3376500000), (1129702, 1001422, 'Yorklyn', NULL, 'yorklyn', 'US', 1, 39.9923200000, -76.6463500000), (1129703, 1001427, 'Yorkshire', NULL, 'yorkshire', 'US', 1, 38.7931700000, -77.4477700000), (1129704, 1001452, 'Yorkshire', NULL, 'yorkshire', 'US', 1, 42.5300600000, -78.4728000000), (1129705, 1001427, 'Yorktown', NULL, 'yorktown', 'US', 1, 37.2387600000, -76.5096700000), (1129706, 1001407, 'Yorktown', NULL, 'yorktown', 'US', 1, 28.9810900000, -97.5027700000), (1129707, 1001440, 'Yorktown', NULL, 'yorktown', 'US', 1, 40.1736500000, -85.4941400000), (1129708, 1001452, 'Yorktown Heights', NULL, 'yorktown-heights', 'US', 1, 41.2709300000, -73.7776300000), (1129709, 1001425, 'Yorkville', NULL, 'yorkville', 'US', 1, 41.6411400000, -88.4472900000), (1129710, 1001452, 'Yorkville', NULL, 'yorkville', 'US', 1, 43.1128500000, -75.2710000000), (1129711, 1001416, 'Yosemite Lakes', NULL, 'yosemite-lakes', 'US', 1, 37.1910600000, -119.7726500000), (1129712, 1001416, 'Yosemite Valley', NULL, 'yosemite-valley', 'US', 1, 37.7407500000, -119.5778800000), (1129713, 1001420, 'Young America (historical)', NULL, 'young-america-historical', 'US', 1, 44.7827400000, -93.9135800000), (1129714, 1001407, 'Young County', NULL, 'young-county', 'US', 1, 33.1767000000, -98.6877700000), (1129715, 1001455, 'Young Harris', NULL, 'young-harris', 'US', 1, 34.9331500000, -83.8471200000), (1129716, 1001436, 'Youngstown', NULL, 'youngstown', 'US', 1, 30.3643600000, -85.4382600000), (1129717, 1001452, 'Youngstown', NULL, 'youngstown', 'US', 1, 43.2472800000, -79.0500500000), (1129718, 1001457, 'Youngsville', NULL, 'youngsville', 'US', 1, 30.0996500000, -91.9901200000), (1129719, 1001447, 'Youngsville', NULL, 'youngsville', 'US', 1, 36.0248700000, -78.4744400000), (1129720, 1001422, 'Youngsville', NULL, 'youngsville', 'US', 1, 41.8522800000, -79.3186600000), (1129721, 1001434, 'Youngtown', NULL, 'youngtown', 'US', 1, 33.5939300000, -112.3029400000), (1129722, 1001422, 'Youngwood', NULL, 'youngwood', 'US', 1, 40.2403500000, -79.5767100000), (1129723, 1001416, 'Yountville', NULL, 'yountville', 'US', 1, 38.4015800000, -122.3608100000), (1129724, 1001426, 'Ypsilanti', NULL, 'ypsilanti', 'US', 1, 42.2411500000, -83.6129900000), (1129725, 1001416, 'Yreka', NULL, 'yreka', 'US', 1, 41.7354200000, -122.6344700000), (1129726, 1001416, 'Yuba City', NULL, 'yuba-city', 'US', 1, 39.1404500000, -121.6169100000), (1129727, 1001416, 'Yuba County', NULL, 'yuba-county', 'US', 1, 39.2690200000, -121.3512600000), (1129728, 1001416, 'Yucaipa', NULL, 'yucaipa', 'US', 1, 34.0336300000, -117.0430900000), (1129729, 1001416, 'Yucca Valley', NULL, 'yucca-valley', 'US', 1, 34.1141700000, -116.4322400000), (1129730, 1001421, 'Yukon', NULL, 'yukon', 'US', 1, 35.5067200000, -97.7625400000), (1129731, 1001400, 'Yukon-Koyukuk Census Area', NULL, 'yukon-koyukuk-census-area', 'US', 1, 65.7000000000, -152.7166700000), (1129732, 1001436, 'Yulee', NULL, 'yulee', 'US', 1, 30.6319000000, -81.6064900000), (1129733, 1001434, 'Yuma', NULL, 'yuma', 'US', 1, 32.7253200000, -114.6244000000), (1129734, 1001450, 'Yuma', NULL, 'yuma', 'US', 1, 40.1222100000, -102.7252100000), (1129735, 1001434, 'Yuma County', NULL, 'yuma-county', 'US', 1, 32.7694000000, -113.9055600000), (1129736, 1001450, 'Yuma County', NULL, 'yuma-county', 'US', 1, 40.0029000000, -102.4242300000), (1129737, 1001408, 'Yutan', NULL, 'yutan', 'US', 1, 41.2450000000, -96.3972500000), (1129738, 1001457, 'Zachary', NULL, 'zachary', 'US', 1, 30.6485200000, -91.1565000000), (1129739, 1001407, 'Zapata', NULL, 'zapata', 'US', 1, 26.9072600000, -99.2714300000), (1129740, 1001407, 'Zapata County', NULL, 'zapata-county', 'US', 1, 27.0007800000, -99.1686100000), (1129741, 1001407, 'Zavala County', NULL, 'zavala-county', 'US', 1, 28.8662100000, -99.7606000000), (1129742, 1001455, 'Zebulon', NULL, 'zebulon', 'US', 1, 33.1023500000, -84.3427000000), (1129743, 1001447, 'Zebulon', NULL, 'zebulon', 'US', 1, 35.8243200000, -78.3147200000), (1129744, 1001426, 'Zeeland', NULL, 'zeeland', 'US', 1, 42.8125200000, -86.0186500000), (1129745, 1001425, 'Zeigler', NULL, 'zeigler', 'US', 1, 37.8994900000, -89.0520200000), (1129746, 1001422, 'Zelienople', NULL, 'zelienople', 'US', 1, 40.7945100000, -80.1367300000), (1129747, 1001436, 'Zellwood', NULL, 'zellwood', 'US', 1, 28.7311100000, -81.6011800000), (1129748, 1001452, 'Zena', NULL, 'zena', 'US', 1, 42.0167600000, -74.0762500000), (1129749, 1001436, 'Zephyrhills', NULL, 'zephyrhills', 'US', 1, 28.2336200000, -82.1811900000), (1129750, 1001436, 'Zephyrhills North', NULL, 'zephyrhills-north', 'US', 1, 28.2517200000, -82.1655700000), (1129751, 1001436, 'Zephyrhills South', NULL, 'zephyrhills-south', 'US', 1, 28.2149200000, -82.1887300000), (1129752, 1001436, 'Zephyrhills West', NULL, 'zephyrhills-west', 'US', 1, 28.2308100000, -82.2055600000), (1129753, 1001445, 'Ziebach County', NULL, 'ziebach-county', 'US', 1, 44.9804100000, -101.6658600000), (1129754, 1001462, 'Zillah', NULL, 'zillah', 'US', 1, 46.4020700000, -120.2620000000), (1129755, 1001426, 'Zilwaukee', NULL, 'zilwaukee', 'US', 1, 43.4764100000, -83.9205300000), (1129756, 1001420, 'Zimmerman', NULL, 'zimmerman', 'US', 1, 45.4433000000, -93.5899600000), (1129757, 1001425, 'Zion', NULL, 'zion', 'US', 1, 42.4461300000, -87.8328500000), (1129758, 1001422, 'Zion', NULL, 'zion', 'US', 1, 40.9142300000, -77.6847200000), (1129759, 1001440, 'Zionsville', NULL, 'zionsville', 'US', 1, 39.9508700000, -86.2619400000), (1129760, 1001436, 'Zolfo Springs', NULL, 'zolfo-springs', 'US', 1, 27.4933700000, -81.7959200000), (1129761, 1001420, 'Zumbrota', NULL, 'zumbrota', 'US', 1, 44.2941300000, -92.6690800000), (1129762, 1001423, 'Zuni Pueblo', NULL, 'zuni-pueblo', 'US', 1, 35.0725300000, -108.8506400000), (1129763, 1001457, 'Zwolle', NULL, 'zwolle', 'US', 1, 31.6315600000, -93.6440700000), (1129764, 1001411, '‘Aiea', NULL, 'aiea', 'US', 1, 21.3822200000, -157.9336100000), (1129765, 1001411, '‘Ele‘ele', NULL, 'ele-ele', 'US', 1, 21.9073800000, -159.5832200000), (1129766, 1001411, '‘Ewa Beach', NULL, 'ewa-beach', 'US', 1, 21.3155600000, -158.0072200000), (1129767, 1001411, '‘Ewa Gentry', NULL, 'ewa-gentry', 'US', 1, 21.3399900000, -158.0303900000), (1129768, 1001411, '‘Ewa Villages', NULL, 'ewa-villages', 'US', 1, 21.3412700000, -158.0397000000), (1129769, 1001411, '‘Āhuimanu', NULL, 'ahuimanu', 'US', 1, 21.4447200000, -157.8377800000), (1129770, 1001411, '‘Ōma‘o', NULL, 'oma-o', 'US', 1, 21.9258100000, -159.4881800000), (1141096, 1004851, 'Ada', NULL, 'ada', 'US', 1, 40.7695000000, -83.8227100000), (1141097, 1004851, 'Adams County', NULL, 'adams-county', 'US', 1, 38.8455100000, -83.4721500000), (1141098, 1004851, 'Akron', NULL, 'akron', 'US', 1, 41.0814400000, -81.5190100000), (1141099, 1004851, 'Allen County', NULL, 'allen-county', 'US', 1, 40.7715200000, -84.1057800000), (1141100, 1004851, 'Alliance', NULL, 'alliance', 'US', 1, 40.9153400000, -81.1059300000), (1141101, 1004851, 'Amberley', NULL, 'amberley', 'US', 1, 39.2047800000, -84.4280000000), (1141102, 1004851, 'Amelia', NULL, 'amelia', 'US', 1, 39.0284000000, -84.2177100000), (1141103, 1004851, 'Amherst', NULL, 'amherst', 'US', 1, 41.3978200000, -82.2223800000), (1141104, 1004851, 'Andover', NULL, 'andover', 'US', 1, 41.6067200000, -80.5723000000), (1141105, 1004851, 'Anna', NULL, 'anna', 'US', 1, 40.3944900000, -84.1727200000), (1141106, 1004851, 'Ansonia', NULL, 'ansonia', 'US', 1, 40.2144900000, -84.6369000000), (1141107, 1004851, 'Antwerp', NULL, 'antwerp', 'US', 1, 41.1814400000, -84.7405100000), (1141108, 1004851, 'Apple Creek', NULL, 'apple-creek', 'US', 1, 40.7517200000, -81.8393000000), (1141109, 1004851, 'Apple Valley', NULL, 'apple-valley', 'US', 1, 40.4389000000, -82.3539100000), (1141110, 1004851, 'Arcanum', NULL, 'arcanum', 'US', 1, 39.9900500000, -84.5532900000), (1141111, 1004851, 'Archbold', NULL, 'archbold', 'US', 1, 41.5214400000, -84.3071700000), (1141112, 1004851, 'Arlington', NULL, 'arlington', 'US', 1, 40.8936600000, -83.6502100000), (1141113, 1004851, 'Ashland', NULL, 'ashland', 'US', 1, 40.8686700000, -82.3182200000), (1141114, 1004851, 'Ashland County', NULL, 'ashland-county', 'US', 1, 40.8460200000, -82.2706900000), (1141115, 1004851, 'Ashley', NULL, 'ashley', 'US', 1, 40.4089500000, -82.9554600000), (1141116, 1004851, 'Ashtabula', NULL, 'ashtabula', 'US', 1, 41.8650500000, -80.7898100000), (1141117, 1004851, 'Ashtabula County', NULL, 'ashtabula-county', 'US', 1, 41.8963800000, -80.7590100000), (1141118, 1004851, 'Ashville', NULL, 'ashville', 'US', 1, 39.7156200000, -82.9529600000), (1141119, 1004851, 'Athens', NULL, 'athens', 'US', 1, 39.3292400000, -82.1012600000), (1141120, 1004851, 'Athens County', NULL, 'athens-county', 'US', 1, 39.3338600000, -82.0451300000), (1141121, 1004851, 'Auglaize County', NULL, 'auglaize-county', 'US', 1, 40.5609100000, -84.2217400000), (1141122, 1004851, 'Aurora', NULL, 'aurora', 'US', 1, 41.3175500000, -81.3453900000), (1141123, 1004851, 'Austintown', NULL, 'austintown', 'US', 1, 41.1017200000, -80.7645200000), (1141124, 1004851, 'Avon', NULL, 'avon', 'US', 1, 41.4517100000, -82.0354200000), (1141125, 1004851, 'Avon Center', NULL, 'avon-center', 'US', 1, 41.4597600000, -82.0195900000), (1141126, 1004851, 'Avon Lake', NULL, 'avon-lake', 'US', 1, 41.5053200000, -82.0282000000), (1141127, 1004851, 'Bainbridge', NULL, 'bainbridge', 'US', 1, 41.3864400000, -81.3395500000), (1141128, 1004851, 'Ballville', NULL, 'ballville', 'US', 1, 41.3278300000, -83.1321400000), (1141129, 1004851, 'Baltimore', NULL, 'baltimore', 'US', 1, 39.8453400000, -82.6007200000), (1141130, 1004851, 'Barberton', NULL, 'barberton', 'US', 1, 41.0128300000, -81.6051200000), (1141131, 1004851, 'Barnesville', NULL, 'barnesville', 'US', 1, 39.9881300000, -81.1765000000), (1141132, 1004851, 'Batavia', NULL, 'batavia', 'US', 1, 39.0770100000, -84.1768800000), (1141133, 1004851, 'Bay Village', NULL, 'bay-village', 'US', 1, 41.4847700000, -81.9220800000), (1141134, 1004851, 'Beach City', NULL, 'beach-city', 'US', 1, 40.6531200000, -81.5809600000), (1141135, 1004851, 'Beachwood', NULL, 'beachwood', 'US', 1, 41.4645000000, -81.5087300000), (1141136, 1004851, 'Beavercreek', NULL, 'beavercreek', 'US', 1, 39.7092300000, -84.0632700000), (1141137, 1004851, 'Beckett Ridge', NULL, 'beckett-ridge', 'US', 1, 39.3470000000, -84.4352200000), (1141138, 1004851, 'Bedford', NULL, 'bedford', 'US', 1, 41.3931100000, -81.5365100000), (1141139, 1004851, 'Bedford Heights', NULL, 'bedford-heights', 'US', 1, 41.4170000000, -81.5273400000), (1141140, 1004851, 'Beechwood Trails', NULL, 'beechwood-trails', 'US', 1, 40.0236700000, -82.6507200000), (1141141, 1004851, 'Bellaire', NULL, 'bellaire', 'US', 1, 40.0161800000, -80.7423100000), (1141142, 1004851, 'Bellbrook', NULL, 'bellbrook', 'US', 1, 39.6356200000, -84.0707700000), (1141143, 1004851, 'Bellefontaine', NULL, 'bellefontaine', 'US', 1, 40.3611600000, -83.7596600000), (1141144, 1004851, 'Bellevue', NULL, 'bellevue', 'US', 1, 41.2736600000, -82.8415800000), (1141145, 1004851, 'Bellville', NULL, 'bellville', 'US', 1, 40.6200600000, -82.5107200000), (1141146, 1004851, 'Belmont County', NULL, 'belmont-county', 'US', 1, 40.0158000000, -80.9885400000), (1141147, 1004851, 'Belpre', NULL, 'belpre', 'US', 1, 39.2739600000, -81.5729000000), (1141148, 1004851, 'Berea', NULL, 'berea', 'US', 1, 41.3661600000, -81.8543000000), (1141149, 1004851, 'Bethel', NULL, 'bethel', 'US', 1, 38.9636800000, -84.0807700000); INSERT INTO `[[dbprefix]]t_city` VALUES (1141150, 1004851, 'Bethesda', NULL, 'bethesda', 'US', 1, 40.0161800000, -81.0726000000), (1141151, 1004851, 'Beverly', NULL, 'beverly', 'US', 1, 39.5478500000, -81.6395700000), (1141152, 1004851, 'Bexley', NULL, 'bexley', 'US', 1, 39.9689500000, -82.9376800000), (1141153, 1004851, 'Blacklick Estates', NULL, 'blacklick-estates', 'US', 1, 39.9050600000, -82.8643400000), (1141154, 1004851, 'Blanchester', NULL, 'blanchester', 'US', 1, 39.2931200000, -83.9888200000), (1141155, 1004851, 'Blue Ash', NULL, 'blue-ash', 'US', 1, 39.2320000000, -84.3782700000), (1141156, 1004851, 'Bluffton', NULL, 'bluffton', 'US', 1, 40.8953300000, -83.8888300000), (1141157, 1004851, 'Boardman', NULL, 'boardman', 'US', 1, 41.0242300000, -80.6628500000), (1141158, 1004851, 'Bolindale', NULL, 'bolindale', 'US', 1, 41.2072800000, -80.7775800000), (1141159, 1004851, 'Boston Heights', NULL, 'boston-heights', 'US', 1, 41.2647800000, -81.5131700000), (1141160, 1004851, 'Botkins', NULL, 'botkins', 'US', 1, 40.4678300000, -84.1805000000), (1141161, 1004851, 'Bowling Green', NULL, 'bowling-green', 'US', 1, 41.3747700000, -83.6513200000), (1141162, 1004851, 'Bradford', NULL, 'bradford', 'US', 1, 40.1322700000, -84.4307800000), (1141163, 1004851, 'Bradner', NULL, 'bradner', 'US', 1, 41.3242200000, -83.4385400000), (1141164, 1004851, 'Bratenahl', NULL, 'bratenahl', 'US', 1, 41.5425500000, -81.6262400000), (1141165, 1004851, 'Brecksville', NULL, 'brecksville', 'US', 1, 41.3197800000, -81.6267900000), (1141166, 1004851, 'Bremen', NULL, 'bremen', 'US', 1, 39.7017300000, -82.4268200000), (1141167, 1004851, 'Brewster', NULL, 'brewster', 'US', 1, 40.7070000000, -81.5981800000), (1141168, 1004851, 'Bridgeport', NULL, 'bridgeport', 'US', 1, 40.0697900000, -80.7400800000), (1141169, 1004851, 'Bridgetown', NULL, 'bridgetown', 'US', 1, 39.1531100000, -84.6371700000), (1141170, 1004851, 'Brilliant', NULL, 'brilliant', 'US', 1, 40.2647900000, -80.6261900000), (1141171, 1004851, 'Brimfield', NULL, 'brimfield', 'US', 1, 41.1000600000, -81.3465000000), (1141172, 1004851, 'Broadview Heights', NULL, 'broadview-heights', 'US', 1, 41.3139400000, -81.6851300000), (1141173, 1004851, 'Brook Park', NULL, 'brook-park', 'US', 1, 41.3983800000, -81.8045800000), (1141174, 1004851, 'Brookfield Center', NULL, 'brookfield-center', 'US', 1, 41.2406100000, -80.5578500000), (1141175, 1004851, 'Brooklyn', NULL, 'brooklyn', 'US', 1, 41.4397700000, -81.7354100000), (1141176, 1004851, 'Brooklyn Heights', NULL, 'brooklyn-heights', 'US', 1, 41.4253300000, -81.6881800000), (1141177, 1004851, 'Brookville', NULL, 'brookville', 'US', 1, 39.8367200000, -84.4113400000), (1141178, 1004851, 'Brown County', NULL, 'brown-county', 'US', 1, 38.9340500000, -83.8674300000), (1141179, 1004851, 'Brunswick', NULL, 'brunswick', 'US', 1, 41.2381100000, -81.8418000000), (1141180, 1004851, 'Bryan', NULL, 'bryan', 'US', 1, 41.4747700000, -84.5524500000), (1141181, 1004851, 'Buckeye Lake', NULL, 'buckeye-lake', 'US', 1, 39.9336800000, -82.4723800000), (1141182, 1004851, 'Bucyrus', NULL, 'bucyrus', 'US', 1, 40.8083900000, -82.9754600000), (1141183, 1004851, 'Burlington', NULL, 'burlington', 'US', 1, 38.4073000000, -82.5357100000), (1141184, 1004851, 'Burton', NULL, 'burton', 'US', 1, 41.4706100000, -81.1451000000), (1141185, 1004851, 'Butler County', NULL, 'butler-county', 'US', 1, 39.4386500000, -84.5756600000), (1141186, 1004851, 'Byesville', NULL, 'byesville', 'US', 1, 39.9697900000, -81.5365100000), (1141187, 1004851, 'Cadiz', NULL, 'cadiz', 'US', 1, 40.2728500000, -80.9967600000), (1141188, 1004851, 'Calcutta', NULL, 'calcutta', 'US', 1, 40.6734000000, -80.5764600000), (1141189, 1004851, 'Caldwell', NULL, 'caldwell', 'US', 1, 39.7478500000, -81.5165100000), (1141190, 1004851, 'Cambridge', NULL, 'cambridge', 'US', 1, 40.0311800000, -81.5884600000), (1141191, 1004851, 'Camden', NULL, 'camden', 'US', 1, 39.6289400000, -84.6485600000), (1141192, 1004851, 'Campbell', NULL, 'campbell', 'US', 1, 41.0783900000, -80.5992400000), (1141193, 1004851, 'Canal Fulton', NULL, 'canal-fulton', 'US', 1, 40.8897800000, -81.5976200000), (1141194, 1004851, 'Canal Winchester', NULL, 'canal-winchester', 'US', 1, 39.8428400000, -82.8046200000), (1141195, 1004851, 'Canfield', NULL, 'canfield', 'US', 1, 41.0250600000, -80.7609100000), (1141196, 1004851, 'Canton', NULL, 'canton', 'US', 1, 40.7989500000, -81.3784500000), (1141197, 1004851, 'Cardington', NULL, 'cardington', 'US', 1, 40.5006200000, -82.8935100000), (1141198, 1004851, 'Carey', NULL, 'carey', 'US', 1, 40.9525600000, -83.3824200000), (1141199, 1004851, 'Carlisle', NULL, 'carlisle', 'US', 1, 39.5820000000, -84.3202200000), (1141200, 1004851, 'Carroll County', NULL, 'carroll-county', 'US', 1, 40.5795900000, -81.0897200000), (1141201, 1004851, 'Carrollton', NULL, 'carrollton', 'US', 1, 40.5728400000, -81.0856500000), (1141202, 1004851, 'Cedarville', NULL, 'cedarville', 'US', 1, 39.7442300000, -83.8085400000), (1141203, 1004851, 'Celina', NULL, 'celina', 'US', 1, 40.5489400000, -84.5702300000), (1141204, 1004851, 'Centerburg', NULL, 'centerburg', 'US', 1, 40.3045100000, -82.6962800000), (1141205, 1004851, 'Centerville', NULL, 'centerville', 'US', 1, 39.6283900000, -84.1593800000), (1141206, 1004851, 'Chagrin Falls', NULL, 'chagrin-falls', 'US', 1, 41.4361600000, -81.3865000000), (1141207, 1004851, 'Champaign County', NULL, 'champaign-county', 'US', 1, 40.1376700000, -83.7695000000), (1141208, 1004851, 'Champion Heights', NULL, 'champion-heights', 'US', 1, 41.2899900000, -80.8459500000), (1141209, 1004851, 'Chardon', NULL, 'chardon', 'US', 1, 41.6142200000, -81.1489900000), (1141210, 1004851, 'Chauncey', NULL, 'chauncey', 'US', 1, 39.3978500000, -82.1293100000), (1141211, 1004851, 'Cherry Grove', NULL, 'cherry-grove', 'US', 1, 39.0725600000, -84.3218800000), (1141212, 1004851, 'Chesterland', NULL, 'chesterland', 'US', 1, 41.5222700000, -81.3378900000), (1141213, 1004851, 'Cheviot', NULL, 'cheviot', 'US', 1, 39.1570000000, -84.6132800000), (1141214, 1004851, 'Chillicothe', NULL, 'chillicothe', 'US', 1, 39.3331200000, -82.9824000000), (1141215, 1004851, 'Choctaw Lake', NULL, 'choctaw-lake', 'US', 1, 39.9600600000, -83.4849200000), (1141216, 1004851, 'Churchill', NULL, 'churchill', 'US', 1, 41.1620000000, -80.6648000000), (1141217, 1004851, 'Cincinnati', NULL, 'cincinnati', 'US', 1, 39.1271100000, -84.5143900000), (1141218, 1004851, 'Circleville', NULL, 'circleville', 'US', 1, 39.6006200000, -82.9460100000), (1141219, 1004851, 'Clark County', NULL, 'clark-county', 'US', 1, 39.9167800000, -83.7839000000), (1141220, 1004851, 'Clark-Fulton', NULL, 'clark-fulton', 'US', 1, 41.4640200000, -81.7097900000), (1141221, 1004851, 'Clayton', NULL, 'clayton', 'US', 1, 39.8631100000, -84.3605000000), (1141222, 1004851, 'Clermont County', NULL, 'clermont-county', 'US', 1, 39.0474300000, -84.1519200000), (1141223, 1004851, 'Cleveland', NULL, 'cleveland', 'US', 1, 41.4995000000, -81.6954100000), (1141224, 1004851, 'Cleveland Heights', NULL, 'cleveland-heights', 'US', 1, 41.5200500000, -81.5562400000), (1141225, 1004851, 'Cleves', NULL, 'cleves', 'US', 1, 39.1617200000, -84.7491200000), (1141226, 1004851, 'Clinton', NULL, 'clinton', 'US', 1, 40.9267200000, -81.6304000000), (1141227, 1004851, 'Clinton County', NULL, 'clinton-county', 'US', 1, 39.4149800000, -83.8083800000), (1141228, 1004851, 'Clyde', NULL, 'clyde', 'US', 1, 41.3042200000, -82.9751900000), (1141229, 1004851, 'Coal Grove', NULL, 'coal-grove', 'US', 1, 38.5034100000, -82.6471100000), (1141230, 1004851, 'Coldwater', NULL, 'coldwater', 'US', 1, 40.4797700000, -84.6282900000), (1141231, 1004851, 'Collinwood', NULL, 'collinwood', 'US', 1, 41.5583800000, -81.5692900000), (1141232, 1004851, 'Columbiana', NULL, 'columbiana', 'US', 1, 40.8883900000, -80.6939600000), (1141233, 1004851, 'Columbiana County', NULL, 'columbiana-county', 'US', 1, 40.7684300000, -80.7771900000), (1141234, 1004851, 'Columbus', NULL, 'columbus', 'US', 1, 39.9611800000, -82.9987900000), (1141235, 1004851, 'Columbus Grove', NULL, 'columbus-grove', 'US', 1, 40.9195000000, -84.0568900000), (1141236, 1004851, 'Commercial Point', NULL, 'commercial-point', 'US', 1, 39.7684000000, -83.0571300000), (1141237, 1004851, 'Conneaut', NULL, 'conneaut', 'US', 1, 41.9475600000, -80.5542400000), (1141238, 1004851, 'Continental', NULL, 'continental', 'US', 1, 41.1003300000, -84.2663400000), (1141239, 1004851, 'Convoy', NULL, 'convoy', 'US', 1, 40.9167200000, -84.7027400000), (1141240, 1004851, 'Copley', NULL, 'copley', 'US', 1, 41.0989400000, -81.6445700000), (1141241, 1004851, 'Cortland', NULL, 'cortland', 'US', 1, 41.3303300000, -80.7253600000), (1141242, 1004851, 'Coshocton', NULL, 'coshocton', 'US', 1, 40.2720200000, -81.8595800000), (1141243, 1004851, 'Coshocton County', NULL, 'coshocton-county', 'US', 1, 40.3016400000, -81.9200100000), (1141244, 1004851, 'Covedale', NULL, 'covedale', 'US', 1, 39.1211700000, -84.6063300000), (1141245, 1004851, 'Covington', NULL, 'covington', 'US', 1, 40.1172700000, -84.3538400000), (1141246, 1004851, 'Craig Beach', NULL, 'craig-beach', 'US', 1, 41.1170000000, -80.9834200000), (1141247, 1004851, 'Crawford County', NULL, 'crawford-county', 'US', 1, 40.8507700000, -82.9197800000), (1141248, 1004851, 'Crestline', NULL, 'crestline', 'US', 1, 40.7875600000, -82.7365700000), (1141249, 1004851, 'Creston', NULL, 'creston', 'US', 1, 40.9870000000, -81.8937500000), (1141250, 1004851, 'Cridersville', NULL, 'cridersville', 'US', 1, 40.6542200000, -84.1507800000), (1141251, 1004851, 'Crooksville', NULL, 'crooksville', 'US', 1, 39.7689600000, -82.0920900000), (1141252, 1004851, 'Crystal Lakes', NULL, 'crystal-lakes', 'US', 1, 39.8892300000, -84.0266000000), (1141253, 1004851, 'Curtice', NULL, 'curtice', 'US', 1, 41.6183800000, -83.3677100000), (1141254, 1004851, 'Cuyahoga County', NULL, 'cuyahoga-county', 'US', 1, 41.4787500000, -81.6778600000), (1141255, 1004851, 'Cuyahoga Falls', NULL, 'cuyahoga-falls', 'US', 1, 41.1339400000, -81.4845600000), (1141256, 1004851, 'Dalton', NULL, 'dalton', 'US', 1, 40.7989400000, -81.6954100000), (1141257, 1004851, 'Danville', NULL, 'danville', 'US', 1, 40.4475600000, -82.2601600000), (1141258, 1004851, 'Darke County', NULL, 'darke-county', 'US', 1, 40.1332300000, -84.6193100000), (1141259, 1004851, 'Day Heights', NULL, 'day-heights', 'US', 1, 39.1739500000, -84.2263300000), (1141260, 1004851, 'Dayton', NULL, 'dayton', 'US', 1, 39.7589500000, -84.1916100000), (1141261, 1004851, 'De Graff', NULL, 'de-graff', 'US', 1, 40.3120000000, -83.9157700000), (1141262, 1004851, 'Deer Park', NULL, 'deer-park', 'US', 1, 39.2053400000, -84.3946600000), (1141263, 1004851, 'Defiance', NULL, 'defiance', 'US', 1, 41.2844900000, -84.3557800000), (1141264, 1004851, 'Defiance County', NULL, 'defiance-county', 'US', 1, 41.3239200000, -84.4905000000), (1141265, 1004851, 'Delaware', NULL, 'delaware', 'US', 1, 40.2986700000, -83.0679700000), (1141266, 1004851, 'Delaware County', NULL, 'delaware-county', 'US', 1, 40.2783900000, -83.0048900000), (1141267, 1004851, 'Delhi Hills', NULL, 'delhi-hills', 'US', 1, 39.0928400000, -84.6127200000), (1141268, 1004851, 'Delphos', NULL, 'delphos', 'US', 1, 40.8433800000, -84.3416200000), (1141269, 1004851, 'Delta', NULL, 'delta', 'US', 1, 41.5736600000, -84.0052200000), (1141270, 1004851, 'Dennison', NULL, 'dennison', 'US', 1, 40.3934000000, -81.3337200000), (1141271, 1004851, 'Dent', NULL, 'dent', 'US', 1, 39.1858900000, -84.6513400000), (1141272, 1004851, 'Deshler', NULL, 'deshler', 'US', 1, 41.2075500000, -83.8991100000), (1141273, 1004851, 'Detroit-Shoreway', NULL, 'detroit-shoreway', 'US', 1, 41.4777200000, -81.7299100000), (1141274, 1004851, 'Devola', NULL, 'devola', 'US', 1, 39.4736900000, -81.4790100000), (1141275, 1004851, 'Dillonvale', NULL, 'dillonvale', 'US', 1, 39.2181100000, -84.4021600000), (1141276, 1004851, 'Dover', NULL, 'dover', 'US', 1, 40.5206200000, -81.4740100000), (1141277, 1004851, 'Doylestown', NULL, 'doylestown', 'US', 1, 40.9700500000, -81.6965200000), (1141278, 1004851, 'Dresden', NULL, 'dresden', 'US', 1, 40.1214600000, -82.0106900000), (1141279, 1004851, 'Drexel', NULL, 'drexel', 'US', 1, 39.7464500000, -84.2866100000), (1141280, 1004851, 'Dry Ridge', NULL, 'dry-ridge', 'US', 1, 39.2592200000, -84.6191100000), (1141281, 1004851, 'Dry Run', NULL, 'dry-run', 'US', 1, 39.1042300000, -84.3304900000), (1141282, 1004851, 'Dublin', NULL, 'dublin', 'US', 1, 40.0992300000, -83.1140800000), (1141283, 1004851, 'Dunlap', NULL, 'dunlap', 'US', 1, 39.2922800000, -84.6180000000), (1141284, 1004851, 'East Canton', NULL, 'east-canton', 'US', 1, 40.7872800000, -81.2826100000), (1141285, 1004851, 'East Cleveland', NULL, 'east-cleveland', 'US', 1, 41.5331100000, -81.5790100000), (1141286, 1004851, 'East Liverpool', NULL, 'east-liverpool', 'US', 1, 40.6186800000, -80.5772900000), (1141287, 1004851, 'East Palestine', NULL, 'east-palestine', 'US', 1, 40.8339500000, -80.5403500000), (1141288, 1004851, 'Eastlake', NULL, 'eastlake', 'US', 1, 41.6539400000, -81.4503900000), (1141289, 1004851, 'Eaton', NULL, 'eaton', 'US', 1, 39.7439400000, -84.6366200000), (1141290, 1004851, 'Eaton Estates', NULL, 'eaton-estates', 'US', 1, 41.3089400000, -82.0057000000), (1141291, 1004851, 'Edgerton', NULL, 'edgerton', 'US', 1, 41.4486600000, -84.7480100000), (1141292, 1004851, 'Edgewood', NULL, 'edgewood', 'US', 1, 41.8728300000, -80.7728600000), (1141293, 1004851, 'Elida', NULL, 'elida', 'US', 1, 40.7886600000, -84.2038400000), (1141294, 1004851, 'Elmore', NULL, 'elmore', 'US', 1, 41.4761600000, -83.2957600000), (1141295, 1004851, 'Elmwood Place', NULL, 'elmwood-place', 'US', 1, 39.1872800000, -84.4880000000), (1141296, 1004851, 'Elyria', NULL, 'elyria', 'US', 1, 41.3683800000, -82.1076500000), (1141297, 1004851, 'Englewood', NULL, 'englewood', 'US', 1, 39.8775600000, -84.3021700000), (1141298, 1004851, 'Enon', NULL, 'enon', 'US', 1, 39.8781200000, -83.9368800000), (1141299, 1004851, 'Erie County', NULL, 'erie-county', 'US', 1, 41.4320900000, -82.6995800000), (1141300, 1004851, 'Etna', NULL, 'etna', 'US', 1, 39.9572900000, -82.6818300000), (1141301, 1004851, 'Euclid', NULL, 'euclid', 'US', 1, 41.5931000000, -81.5267900000), (1141302, 1004851, 'Evendale', NULL, 'evendale', 'US', 1, 39.2561700000, -84.4180000000), (1141303, 1004851, 'Fairborn', NULL, 'fairborn', 'US', 1, 39.8208900000, -84.0193800000), (1141304, 1004851, 'Fairfax', NULL, 'fairfax', 'US', 1, 39.1453400000, -84.3932700000), (1141305, 1004851, 'Fairfield', NULL, 'fairfield', 'US', 1, 39.3458900000, -84.5605000000), (1141306, 1004851, 'Fairfield Beach', NULL, 'fairfield-beach', 'US', 1, 39.9159000000, -82.4751600000), (1141307, 1004851, 'Fairfield County', NULL, 'fairfield-county', 'US', 1, 39.7516000000, -82.6305900000), (1141308, 1004851, 'Fairlawn', NULL, 'fairlawn', 'US', 1, 41.1278300000, -81.6098400000), (1141309, 1004851, 'Fairport Harbor', NULL, 'fairport-harbor', 'US', 1, 41.7500400000, -81.2739900000), (1141310, 1004851, 'Fairview Park', NULL, 'fairview-park', 'US', 1, 41.4414400000, -81.8643000000), (1141311, 1004851, 'Farmersville', NULL, 'farmersville', 'US', 1, 39.6795000000, -84.4291100000), (1141312, 1004851, 'Fayette', NULL, 'fayette', 'US', 1, 41.6733800000, -84.3268900000), (1141313, 1004851, 'Fayette County', NULL, 'fayette-county', 'US', 1, 39.5598800000, -83.4561000000), (1141314, 1004851, 'Findlay', NULL, 'findlay', 'US', 1, 41.0442200000, -83.6499300000), (1141315, 1004851, 'Finneytown', NULL, 'finneytown', 'US', 1, 39.2003400000, -84.5205000000), (1141316, 1004851, 'Five Points', NULL, 'five-points', 'US', 1, 39.5686700000, -84.1929900000), (1141317, 1004851, 'Forest', NULL, 'forest', 'US', 1, 40.8017200000, -83.5104800000), (1141318, 1004851, 'Forest Park', NULL, 'forest-park', 'US', 1, 39.2903400000, -84.5041100000), (1141319, 1004851, 'Forestville', NULL, 'forestville', 'US', 1, 39.0750600000, -84.3449400000), (1141320, 1004851, 'Fort Loramie', NULL, 'fort-loramie', 'US', 1, 40.3514400000, -84.3738400000), (1141321, 1004851, 'Fort McKinley', NULL, 'fort-mckinley', 'US', 1, 39.7975600000, -84.2535500000), (1141322, 1004851, 'Fort Recovery', NULL, 'fort-recovery', 'US', 1, 40.4128200000, -84.7763500000), (1141323, 1004851, 'Fort Shawnee', NULL, 'fort-shawnee', 'US', 1, 40.6867200000, -84.1377300000), (1141324, 1004851, 'Fostoria', NULL, 'fostoria', 'US', 1, 41.1570000000, -83.4168700000), (1141325, 1004851, 'Frankfort', NULL, 'frankfort', 'US', 1, 39.4014500000, -83.1807400000), (1141326, 1004851, 'Franklin', NULL, 'franklin', 'US', 1, 39.5589500000, -84.3041100000), (1141327, 1004851, 'Franklin County', NULL, 'franklin-county', 'US', 1, 39.9695200000, -83.0093500000), (1141328, 1004851, 'Franklin Furnace', NULL, 'franklin-furnace', 'US', 1, 38.6450800000, -82.8487800000), (1141329, 1004851, 'Frazeysburg', NULL, 'frazeysburg', 'US', 1, 40.1172900000, -82.1193100000), (1141330, 1004851, 'Fredericktown', NULL, 'fredericktown', 'US', 1, 40.4811700000, -82.5407200000), (1141331, 1004851, 'Fremont', NULL, 'fremont', 'US', 1, 41.3503300000, -83.1218600000), (1141332, 1004851, 'Fruit Hill', NULL, 'fruit-hill', 'US', 1, 39.0756200000, -84.3643800000), (1141333, 1004851, 'Fulton County', NULL, 'fulton-county', 'US', 1, 41.6018000000, -84.1300700000), (1141334, 1004851, 'Gahanna', NULL, 'gahanna', 'US', 1, 40.0192300000, -82.8793400000), (1141335, 1004851, 'Galion', NULL, 'galion', 'US', 1, 40.7336700000, -82.7899000000), (1141336, 1004851, 'Gallia County', NULL, 'gallia-county', 'US', 1, 38.8246700000, -82.3169100000), (1141337, 1004851, 'Gallipolis', NULL, 'gallipolis', 'US', 1, 38.8098000000, -82.2023700000), (1141338, 1004851, 'Gambier', NULL, 'gambier', 'US', 1, 40.3756200000, -82.3971000000), (1141339, 1004851, 'Garfield Heights', NULL, 'garfield-heights', 'US', 1, 41.4170000000, -81.6059600000), (1141340, 1004851, 'Garrettsville', NULL, 'garrettsville', 'US', 1, 41.2842200000, -81.0964900000), (1141341, 1004851, 'Gates Mills', NULL, 'gates-mills', 'US', 1, 41.5175500000, -81.4034500000), (1141342, 1004851, 'Geauga County', NULL, 'geauga-county', 'US', 1, 41.4995400000, -81.1786500000), (1141343, 1004851, 'Geneva', NULL, 'geneva', 'US', 1, 41.8050500000, -80.9481500000), (1141344, 1004851, 'Geneva-on-the-Lake', NULL, 'geneva-on-the-lake', 'US', 1, 41.8595000000, -80.9539800000), (1141345, 1004851, 'Genoa', NULL, 'genoa', 'US', 1, 41.5181100000, -83.3590900000), (1141346, 1004851, 'Georgetown', NULL, 'georgetown', 'US', 1, 38.8645100000, -83.9040900000), (1141347, 1004851, 'Germantown', NULL, 'germantown', 'US', 1, 39.6261700000, -84.3693900000), (1141348, 1004851, 'Gibsonburg', NULL, 'gibsonburg', 'US', 1, 41.3845000000, -83.3204800000), (1141349, 1004851, 'Girard', NULL, 'girard', 'US', 1, 41.1539500000, -80.7014700000), (1141350, 1004851, 'Glandorf', NULL, 'glandorf', 'US', 1, 41.0289400000, -84.0791100000), (1141351, 1004851, 'Glendale', NULL, 'glendale', 'US', 1, 39.2706100000, -84.4593900000), (1141352, 1004851, 'Glenmoor', NULL, 'glenmoor', 'US', 1, 40.6661700000, -80.6231300000), (1141353, 1004851, 'Glenville', NULL, 'glenville', 'US', 1, 41.5333800000, -81.6173500000), (1141354, 1004851, 'Glouster', NULL, 'glouster', 'US', 1, 39.5031300000, -82.0845900000), (1141355, 1004851, 'Gnadenhutten', NULL, 'gnadenhutten', 'US', 1, 40.3584000000, -81.4342800000), (1141356, 1004851, 'Golf Manor', NULL, 'golf-manor', 'US', 1, 39.1872800000, -84.4463300000), (1141357, 1004851, 'Goshen', NULL, 'goshen', 'US', 1, 39.2333900000, -84.1613200000), (1141358, 1004851, 'Grafton', NULL, 'grafton', 'US', 1, 41.2725500000, -82.0545900000), (1141359, 1004851, 'Grandview', NULL, 'grandview', 'US', 1, 39.1942200000, -84.7243900000), (1141360, 1004851, 'Grandview Heights', NULL, 'grandview-heights', 'US', 1, 39.9797900000, -83.0407400000), (1141361, 1004851, 'Granville', NULL, 'granville', 'US', 1, 40.0681200000, -82.5196000000), (1141362, 1004851, 'Granville South', NULL, 'granville-south', 'US', 1, 40.0520700000, -82.5416600000), (1141363, 1004851, 'Green', NULL, 'green', 'US', 1, 40.9458900000, -81.4831700000), (1141364, 1004851, 'Green Meadows', NULL, 'green-meadows', 'US', 1, 39.8689500000, -83.9443800000), (1141365, 1004851, 'Green Springs', NULL, 'green-springs', 'US', 1, 41.2561600000, -83.0515800000), (1141366, 1004851, 'Greene County', NULL, 'greene-county', 'US', 1, 39.6914800000, -83.8898900000), (1141367, 1004851, 'Greenfield', NULL, 'greenfield', 'US', 1, 39.3520100000, -83.3826900000), (1141368, 1004851, 'Greenhills', NULL, 'greenhills', 'US', 1, 39.2681100000, -84.5230000000), (1141369, 1004851, 'Greensburg', NULL, 'greensburg', 'US', 1, 40.9317200000, -81.4648400000), (1141370, 1004851, 'Greentown', NULL, 'greentown', 'US', 1, 40.9275600000, -81.4026100000), (1141371, 1004851, 'Greenville', NULL, 'greenville', 'US', 1, 40.1028300000, -84.6330100000), (1141372, 1004851, 'Greenwich', NULL, 'greenwich', 'US', 1, 41.0300500000, -82.5157300000), (1141373, 1004851, 'Groesbeck', NULL, 'groesbeck', 'US', 1, 39.2231100000, -84.5868900000), (1141374, 1004851, 'Grove City', NULL, 'grove-city', 'US', 1, 39.8814500000, -83.0929600000), (1141375, 1004851, 'Groveport', NULL, 'groveport', 'US', 1, 39.8784000000, -82.8837900000), (1141376, 1004851, 'Guernsey County', NULL, 'guernsey-county', 'US', 1, 40.0520500000, -81.4942600000), (1141377, 1004851, 'Hamilton', NULL, 'hamilton', 'US', 1, 39.3995000000, -84.5613400000), (1141378, 1004851, 'Hamilton County', NULL, 'hamilton-county', 'US', 1, 39.1955300000, -84.5427700000), (1141379, 1004851, 'Hancock County', NULL, 'hancock-county', 'US', 1, 41.0019400000, -83.6665400000), (1141380, 1004851, 'Hanover', NULL, 'hanover', 'US', 1, 40.0797900000, -82.2609800000), (1141381, 1004851, 'Harbor Hills', NULL, 'harbor-hills', 'US', 1, 39.9367300000, -82.4351500000), (1141382, 1004851, 'Hardin County', NULL, 'hardin-county', 'US', 1, 40.6615100000, -83.6594400000), (1141383, 1004851, 'Harrison', NULL, 'harrison', 'US', 1, 39.2620000000, -84.8199500000), (1141384, 1004851, 'Harrison County', NULL, 'harrison-county', 'US', 1, 40.2938400000, -81.0911400000), (1141385, 1004851, 'Hartville', NULL, 'hartville', 'US', 1, 40.9636700000, -81.3312200000), (1141386, 1004851, 'Haskins', NULL, 'haskins', 'US', 1, 41.4647700000, -83.7060500000), (1141387, 1004851, 'Heath', NULL, 'heath', 'US', 1, 40.0228400000, -82.4446000000), (1141388, 1004851, 'Hebron', NULL, 'hebron', 'US', 1, 39.9617300000, -82.4912700000), (1141389, 1004851, 'Henry County', NULL, 'henry-county', 'US', 1, 41.3338900000, -84.0682300000), (1141390, 1004851, 'Hicksville', NULL, 'hicksville', 'US', 1, 41.2931100000, -84.7619000000), (1141391, 1004851, 'Highland County', NULL, 'highland-county', 'US', 1, 39.1847400000, -83.6009700000), (1141392, 1004851, 'Highland Heights', NULL, 'highland-heights', 'US', 1, 41.5520000000, -81.4784500000), (1141393, 1004851, 'Highpoint', NULL, 'highpoint', 'US', 1, 39.2883900000, -84.3502200000), (1141394, 1004851, 'Hilliard', NULL, 'hilliard', 'US', 1, 40.0334000000, -83.1582500000), (1141395, 1004851, 'Hillsboro', NULL, 'hillsboro', 'US', 1, 39.2022900000, -83.6115900000), (1141396, 1004851, 'Hiram', NULL, 'hiram', 'US', 1, 41.3125600000, -81.1437100000), (1141397, 1004851, 'Hocking County', NULL, 'hocking-county', 'US', 1, 39.4970200000, -82.4792500000), (1141398, 1004851, 'Holgate', NULL, 'holgate', 'US', 1, 41.2489400000, -84.1330000000), (1141399, 1004851, 'Holiday Valley', NULL, 'holiday-valley', 'US', 1, 39.8561700000, -83.9685400000), (1141400, 1004851, 'Holland', NULL, 'holland', 'US', 1, 41.6217200000, -83.7116000000), (1141401, 1004851, 'Holmes County', NULL, 'holmes-county', 'US', 1, 40.5612000000, -81.9293600000), (1141402, 1004851, 'Hough', NULL, 'hough', 'US', 1, 41.5120000000, -81.6365200000), (1141403, 1004851, 'Howland Center', NULL, 'howland-center', 'US', 1, 41.2511700000, -80.7453600000), (1141404, 1004851, 'Hubbard', NULL, 'hubbard', 'US', 1, 41.1564500000, -80.5692400000), (1141405, 1004851, 'Huber Heights', NULL, 'huber-heights', 'US', 1, 39.8439500000, -84.1246600000), (1141406, 1004851, 'Huber Ridge', NULL, 'huber-ridge', 'US', 1, 40.0886700000, -82.9165700000), (1141407, 1004851, 'Hudson', NULL, 'hudson', 'US', 1, 41.2400600000, -81.4406700000), (1141408, 1004851, 'Hunter', NULL, 'hunter', 'US', 1, 39.4928400000, -84.2896600000), (1141409, 1004851, 'Huron', NULL, 'huron', 'US', 1, 41.3950500000, -82.5551700000), (1141410, 1004851, 'Huron County', NULL, 'huron-county', 'US', 1, 41.1461500000, -82.5984100000), (1141411, 1004851, 'Independence', NULL, 'independence', 'US', 1, 41.3686600000, -81.6379000000), (1141412, 1004851, 'Ironton', NULL, 'ironton', 'US', 1, 38.5367500000, -82.6829400000), (1141413, 1004851, 'Jackson', NULL, 'jackson', 'US', 1, 39.0520200000, -82.6365500000), (1141414, 1004851, 'Jackson Center', NULL, 'jackson-center', 'US', 1, 40.4394900000, -84.0402200000), (1141415, 1004851, 'Jackson County', NULL, 'jackson-county', 'US', 1, 39.0196700000, -82.6183800000), (1141416, 1004851, 'Jamestown', NULL, 'jamestown', 'US', 1, 39.6581200000, -83.7349200000), (1141417, 1004851, 'Jefferson', NULL, 'jefferson', 'US', 1, 41.7386700000, -80.7698100000), (1141418, 1004851, 'Jefferson County', NULL, 'jefferson-county', 'US', 1, 40.3850200000, -80.7609700000), (1141419, 1004851, 'Jeffersonville', NULL, 'jeffersonville', 'US', 1, 39.6536700000, -83.5638100000), (1141420, 1004851, 'Johnstown', NULL, 'johnstown', 'US', 1, 40.1536700000, -82.6851700000), (1141421, 1004851, 'Kalida', NULL, 'kalida', 'US', 1, 40.9828300000, -84.1993900000), (1141422, 1004851, 'Kent', NULL, 'kent', 'US', 1, 41.1536700000, -81.3578900000), (1141423, 1004851, 'Kenton', NULL, 'kenton', 'US', 1, 40.6470000000, -83.6096500000), (1141424, 1004851, 'Kenwood', NULL, 'kenwood', 'US', 1, 39.2106100000, -84.3671600000), (1141425, 1004851, 'Kettering', NULL, 'kettering', 'US', 1, 39.6895000000, -84.1688300000), (1141426, 1004851, 'Kings Mills', NULL, 'kings-mills', 'US', 1, 39.3556100000, -84.2485500000), (1141427, 1004851, 'Kingston', NULL, 'kingston', 'US', 1, 39.4739500000, -82.9107300000), (1141428, 1004851, 'Kirtland', NULL, 'kirtland', 'US', 1, 41.6289400000, -81.3615000000), (1141429, 1004851, 'Knox County', NULL, 'knox-county', 'US', 1, 40.3987700000, -82.4215300000), (1141430, 1004851, 'La Croft', NULL, 'la-croft', 'US', 1, 40.6459000000, -80.5978500000), (1141431, 1004851, 'Lagrange', NULL, 'lagrange', 'US', 1, 41.2372800000, -82.1198700000), (1141432, 1004851, 'Lake County', NULL, 'lake-county', 'US', 1, 41.7139300000, -81.2452700000), (1141433, 1004851, 'Lake Darby', NULL, 'lake-darby', 'US', 1, 39.9572800000, -83.2288000000), (1141434, 1004851, 'Lake Lakengren', NULL, 'lake-lakengren', 'US', 1, 39.6884300000, -84.6934700000), (1141435, 1004851, 'Lake Mohawk', NULL, 'lake-mohawk', 'US', 1, 40.6667300000, -81.1992700000), (1141436, 1004851, 'Lakemore', NULL, 'lakemore', 'US', 1, 41.0208900000, -81.4359500000), (1141437, 1004851, 'Lakeview', NULL, 'lakeview', 'US', 1, 40.4847700000, -83.9230000000), (1141438, 1004851, 'Lakewood', NULL, 'lakewood', 'US', 1, 41.4819900000, -81.7981900000), (1141439, 1004851, 'Lancaster', NULL, 'lancaster', 'US', 1, 39.7136800000, -82.5993300000), (1141440, 1004851, 'Landen', NULL, 'landen', 'US', 1, 39.3120000000, -84.2829900000), (1141441, 1004851, 'Lawrence County', NULL, 'lawrence-county', 'US', 1, 38.5984700000, -82.5367500000), (1141442, 1004851, 'Leavittsburg', NULL, 'leavittsburg', 'US', 1, 41.2478300000, -80.8770300000), (1141443, 1004851, 'Lebanon', NULL, 'lebanon', 'US', 1, 39.4353400000, -84.2029900000), (1141444, 1004851, 'Leesburg', NULL, 'leesburg', 'US', 1, 39.3450600000, -83.5529700000), (1141445, 1004851, 'Leetonia', NULL, 'leetonia', 'US', 1, 40.8772800000, -80.7553600000), (1141446, 1004851, 'Leipsic', NULL, 'leipsic', 'US', 1, 41.0983800000, -83.9846700000), (1141447, 1004851, 'Lewis Center', NULL, 'lewis-center', 'US', 1, 40.1984000000, -83.0101800000), (1141448, 1004851, 'Lewisburg', NULL, 'lewisburg', 'US', 1, 39.8461600000, -84.5396700000), (1141449, 1004851, 'Lexington', NULL, 'lexington', 'US', 1, 40.6786700000, -82.5823900000), (1141450, 1004851, 'Liberty Center', NULL, 'liberty-center', 'US', 1, 41.4433800000, -84.0088300000), (1141451, 1004851, 'Licking County', NULL, 'licking-county', 'US', 1, 40.0916100000, -82.4831500000), (1141452, 1004851, 'Lima', NULL, 'lima', 'US', 1, 40.7425500000, -84.1052300000), (1141453, 1004851, 'Lincoln Heights', NULL, 'lincoln-heights', 'US', 1, 39.2389500000, -84.4555000000), (1141454, 1004851, 'Lincoln Village', NULL, 'lincoln-village', 'US', 1, 39.9547900000, -83.1307400000), (1141455, 1004851, 'Lisbon', NULL, 'lisbon', 'US', 1, 39.8608900000, -83.6352000000), (1141456, 1004851, 'Lithopolis', NULL, 'lithopolis', 'US', 1, 39.8028400000, -82.8062800000), (1141457, 1004851, 'Lockland', NULL, 'lockland', 'US', 1, 39.2292200000, -84.4577200000), (1141458, 1004851, 'Lodi', NULL, 'lodi', 'US', 1, 41.0333900000, -82.0120900000), (1141459, 1004851, 'Logan', NULL, 'logan', 'US', 1, 39.5400700000, -82.4071000000), (1141460, 1004851, 'Logan County', NULL, 'logan-county', 'US', 1, 40.3884500000, -83.7658700000), (1141461, 1004851, 'Logan Elm Village', NULL, 'logan-elm-village', 'US', 1, 39.5697800000, -82.9518500000), (1141462, 1004851, 'London', NULL, 'london', 'US', 1, 39.8864500000, -83.4482500000), (1141463, 1004851, 'Lorain', NULL, 'lorain', 'US', 1, 41.4528200000, -82.1823700000), (1141464, 1004851, 'Lorain County', NULL, 'lorain-county', 'US', 1, 41.4525200000, -82.1514700000), (1141465, 1004851, 'Lordstown', NULL, 'lordstown', 'US', 1, 41.1656100000, -80.8575800000), (1141466, 1004851, 'Loudonville', NULL, 'loudonville', 'US', 1, 40.6353400000, -82.2332100000), (1141467, 1004851, 'Louisville', NULL, 'louisville', 'US', 1, 40.8372800000, -81.2595500000), (1141468, 1004851, 'Loveland', NULL, 'loveland', 'US', 1, 39.2689500000, -84.2638300000), (1141469, 1004851, 'Loveland Park', NULL, 'loveland-park', 'US', 1, 39.2997800000, -84.2632700000), (1141470, 1004851, 'Lowellville', NULL, 'lowellville', 'US', 1, 41.0353400000, -80.5364600000), (1141471, 1004851, 'Lucas County', NULL, 'lucas-county', 'US', 1, 41.6841900000, -83.4682600000), (1141472, 1004851, 'Lucasville', NULL, 'lucasville', 'US', 1, 38.8795200000, -82.9968400000), (1141473, 1004851, 'Luckey', NULL, 'luckey', 'US', 1, 41.4506100000, -83.4874300000), (1141474, 1004851, 'Lynchburg', NULL, 'lynchburg', 'US', 1, 39.2417300000, -83.7913100000), (1141475, 1004851, 'Lyndhurst', NULL, 'lyndhurst', 'US', 1, 41.5200500000, -81.4887300000), (1141476, 1004851, 'Macedonia', NULL, 'macedonia', 'US', 1, 41.3136700000, -81.5084500000), (1141477, 1004851, 'Mack', NULL, 'mack', 'US', 1, 39.1581100000, -84.6496700000), (1141478, 1004851, 'Madeira', NULL, 'madeira', 'US', 1, 39.1908900000, -84.3635500000), (1141479, 1004851, 'Madison', NULL, 'madison', 'US', 1, 41.7711600000, -81.0498200000), (1141480, 1004851, 'Madison County', NULL, 'madison-county', 'US', 1, 39.8940300000, -83.4002000000), (1141481, 1004851, 'Mahoning County', NULL, 'mahoning-county', 'US', 1, 41.0146400000, -80.7762900000), (1141482, 1004851, 'Malvern', NULL, 'malvern', 'US', 1, 40.6917300000, -81.1812100000), (1141483, 1004851, 'Manchester', NULL, 'manchester', 'US', 1, 38.6881300000, -83.6093600000), (1141484, 1004851, 'Mansfield', NULL, 'mansfield', 'US', 1, 40.7583900000, -82.5154500000), (1141485, 1004851, 'Mantua', NULL, 'mantua', 'US', 1, 41.2839400000, -81.2239900000), (1141486, 1004851, 'Maple Heights', NULL, 'maple-heights', 'US', 1, 41.4153300000, -81.5659600000), (1141487, 1004851, 'Mariemont', NULL, 'mariemont', 'US', 1, 39.1450600000, -84.3743800000), (1141488, 1004851, 'Marietta', NULL, 'marietta', 'US', 1, 39.4153500000, -81.4548400000), (1141489, 1004851, 'Marion', NULL, 'marion', 'US', 1, 40.5886700000, -83.1285200000), (1141490, 1004851, 'Marion County', NULL, 'marion-county', 'US', 1, 40.5871900000, -83.1608700000), (1141491, 1004851, 'Martins Ferry', NULL, 'martins-ferry', 'US', 1, 40.0959100000, -80.7245300000), (1141492, 1004851, 'Marysville', NULL, 'marysville', 'US', 1, 40.2364500000, -83.3671400000), (1141493, 1004851, 'Mason', NULL, 'mason', 'US', 1, 39.3600600000, -84.3099400000), (1141494, 1004851, 'Massillon', NULL, 'massillon', 'US', 1, 40.7967200000, -81.5215100000), (1141495, 1004851, 'Masury', NULL, 'masury', 'US', 1, 41.2111700000, -80.5378500000), (1141496, 1004851, 'Maumee', NULL, 'maumee', 'US', 1, 41.5628300000, -83.6538200000), (1141497, 1004851, 'Mayfield', NULL, 'mayfield', 'US', 1, 41.5520000000, -81.4392800000), (1141498, 1004851, 'Mayfield Heights', NULL, 'mayfield-heights', 'US', 1, 41.5192200000, -81.4579000000), (1141499, 1004851, 'McArthur', NULL, 'mcarthur', 'US', 1, 39.2464600000, -82.4784900000), (1141500, 1004851, 'McComb', NULL, 'mccomb', 'US', 1, 41.1075500000, -83.7927100000), (1141501, 1004851, 'McConnelsville', NULL, 'mcconnelsville', 'US', 1, 39.6486800000, -81.8531900000), (1141502, 1004851, 'McDonald', NULL, 'mcdonald', 'US', 1, 41.1636700000, -80.7242400000), (1141503, 1004851, 'McKinley Heights', NULL, 'mckinley-heights', 'US', 1, 41.1836700000, -80.7173000000), (1141504, 1004851, 'Mechanicsburg', NULL, 'mechanicsburg', 'US', 1, 40.0720000000, -83.5563100000), (1141505, 1004851, 'Medina', NULL, 'medina', 'US', 1, 41.1383900000, -81.8637500000), (1141506, 1004851, 'Medina County', NULL, 'medina-county', 'US', 1, 41.1175900000, -81.8997100000), (1141507, 1004851, 'Meigs County', NULL, 'meigs-county', 'US', 1, 39.0822400000, -82.0229000000), (1141508, 1004851, 'Mentor', NULL, 'mentor', 'US', 1, 41.6661600000, -81.3395500000), (1141509, 1004851, 'Mentor-on-the-Lake', NULL, 'mentor-on-the-lake', 'US', 1, 41.7050400000, -81.3603900000), (1141510, 1004851, 'Mercer County', NULL, 'mercer-county', 'US', 1, 40.5400100000, -84.6293600000), (1141511, 1004851, 'Miami County', NULL, 'miami-county', 'US', 1, 40.0534500000, -84.2288500000), (1141512, 1004851, 'Miami Heights', NULL, 'miami-heights', 'US', 1, 39.1650600000, -84.7205000000), (1141513, 1004851, 'Miamisburg', NULL, 'miamisburg', 'US', 1, 39.6428400000, -84.2866100000), (1141514, 1004851, 'Miamitown', NULL, 'miamitown', 'US', 1, 39.2158900000, -84.7041100000), (1141515, 1004851, 'Middleburg Heights', NULL, 'middleburg-heights', 'US', 1, 41.3614400000, -81.8129100000), (1141516, 1004851, 'Middlefield', NULL, 'middlefield', 'US', 1, 41.4620000000, -81.0737100000), (1141517, 1004851, 'Middleport', NULL, 'middleport', 'US', 1, 39.0017500000, -82.0487500000), (1141518, 1004851, 'Middletown', NULL, 'middletown', 'US', 1, 39.5150600000, -84.3982800000), (1141519, 1004851, 'Milan', NULL, 'milan', 'US', 1, 41.2975500000, -82.6054500000), (1141520, 1004851, 'Milford', NULL, 'milford', 'US', 1, 39.1753400000, -84.2943800000), (1141521, 1004851, 'Millbury', NULL, 'millbury', 'US', 1, 41.5661600000, -83.4246500000), (1141522, 1004851, 'Millersburg', NULL, 'millersburg', 'US', 1, 40.5545100000, -81.9179200000), (1141523, 1004851, 'Millersport', NULL, 'millersport', 'US', 1, 39.9000600000, -82.5340500000), (1141524, 1004851, 'Mineral Ridge', NULL, 'mineral-ridge', 'US', 1, 41.1400600000, -80.7689700000), (1141525, 1004851, 'Minerva', NULL, 'minerva', 'US', 1, 40.7297800000, -81.1053800000), (1141526, 1004851, 'Minerva Park', NULL, 'minerva-park', 'US', 1, 40.0764500000, -82.9437900000), (1141527, 1004851, 'Mingo Junction', NULL, 'mingo-junction', 'US', 1, 40.3217400000, -80.6098000000), (1141528, 1004851, 'Minster', NULL, 'minster', 'US', 1, 40.3931000000, -84.3760600000), (1141529, 1004851, 'Mogadore', NULL, 'mogadore', 'US', 1, 41.0464500000, -81.3978900000), (1141530, 1004851, 'Monfort Heights', NULL, 'monfort-heights', 'US', 1, 39.1883900000, -84.5952200000), (1141531, 1004851, 'Monroe', NULL, 'monroe', 'US', 1, 39.4403400000, -84.3621600000), (1141532, 1004851, 'Monroe County', NULL, 'monroe-county', 'US', 1, 39.7273500000, -81.0829200000), (1141533, 1004851, 'Monroeville', NULL, 'monroeville', 'US', 1, 41.2442200000, -82.6962900000), (1141534, 1004851, 'Montgomery', NULL, 'montgomery', 'US', 1, 39.2281100000, -84.3541100000), (1141535, 1004851, 'Montgomery County', NULL, 'montgomery-county', 'US', 1, 39.7545900000, -84.2906800000), (1141536, 1004851, 'Montpelier', NULL, 'montpelier', 'US', 1, 41.5845000000, -84.6055100000), (1141537, 1004851, 'Montrose-Ghent', NULL, 'montrose-ghent', 'US', 1, 41.1538000000, -81.6437800000), (1141538, 1004851, 'Moraine', NULL, 'moraine', 'US', 1, 39.7061700000, -84.2193800000), (1141539, 1004851, 'Moreland Hills', NULL, 'moreland-hills', 'US', 1, 41.4478300000, -81.4276200000), (1141540, 1004851, 'Morgan County', NULL, 'morgan-county', 'US', 1, 39.6203700000, -81.8526600000), (1141541, 1004851, 'Morgandale', NULL, 'morgandale', 'US', 1, 41.2656100000, -80.7828600000), (1141542, 1004851, 'Morrow', NULL, 'morrow', 'US', 1, 39.3545000000, -84.1271600000), (1141543, 1004851, 'Morrow County', NULL, 'morrow-county', 'US', 1, 40.5240900000, -82.7940700000), (1141544, 1004851, 'Mount Carmel', NULL, 'mount-carmel', 'US', 1, 39.1058900000, -84.3041000000), (1141545, 1004851, 'Mount Gilead', NULL, 'mount-gilead', 'US', 1, 40.5492300000, -82.8274000000), (1141546, 1004851, 'Mount Healthy', NULL, 'mount-healthy', 'US', 1, 39.2336700000, -84.5457800000), (1141547, 1004851, 'Mount Healthy Heights', NULL, 'mount-healthy-heights', 'US', 1, 39.2703300000, -84.5680000000), (1141548, 1004851, 'Mount Orab', NULL, 'mount-orab', 'US', 1, 39.0275700000, -83.9196500000), (1141549, 1004851, 'Mount Repose', NULL, 'mount-repose', 'US', 1, 39.2006200000, -84.2243800000), (1141550, 1004851, 'Mount Sterling', NULL, 'mount-sterling', 'US', 1, 39.7195100000, -83.2651900000), (1141551, 1004851, 'Mount Vernon', NULL, 'mount-vernon', 'US', 1, 40.3934000000, -82.4857200000), (1141552, 1004851, 'Mulberry', NULL, 'mulberry', 'US', 1, 39.1933900000, -84.2421600000), (1141553, 1004851, 'Munroe Falls', NULL, 'munroe-falls', 'US', 1, 41.1445000000, -81.4398300000), (1141554, 1004851, 'Muskingum County', NULL, 'muskingum-county', 'US', 1, 39.9654200000, -81.9443800000), (1141555, 1004851, 'Napoleon', NULL, 'napoleon', 'US', 1, 41.3922700000, -84.1252200000), (1141556, 1004851, 'Navarre', NULL, 'navarre', 'US', 1, 40.7245000000, -81.5220700000), (1141557, 1004851, 'Nelsonville', NULL, 'nelsonville', 'US', 1, 39.4586800000, -82.2318200000), (1141558, 1004851, 'New Albany', NULL, 'new-albany', 'US', 1, 40.0811700000, -82.8087900000), (1141559, 1004851, 'New Boston', NULL, 'new-boston', 'US', 1, 38.7523000000, -82.9368400000), (1141560, 1004851, 'New Bremen', NULL, 'new-bremen', 'US', 1, 40.4369900000, -84.3796700000), (1141561, 1004851, 'New Burlington', NULL, 'new-burlington', 'US', 1, 39.2595000000, -84.5571700000), (1141562, 1004851, 'New California', NULL, 'new-california', 'US', 1, 40.1561700000, -83.2365800000), (1141563, 1004851, 'New Carlisle', NULL, 'new-carlisle', 'US', 1, 39.9361700000, -84.0254900000), (1141564, 1004851, 'New Concord', NULL, 'new-concord', 'US', 1, 39.9936800000, -81.7340200000), (1141565, 1004851, 'New Franklin', NULL, 'new-franklin', 'US', 1, 40.9417200000, -81.5415100000), (1141566, 1004851, 'New Lebanon', NULL, 'new-lebanon', 'US', 1, 39.7453300000, -84.3849500000), (1141567, 1004851, 'New Lexington', NULL, 'new-lexington', 'US', 1, 39.7139600000, -82.2084800000), (1141568, 1004851, 'New London', NULL, 'new-london', 'US', 1, 41.0850500000, -82.3998900000), (1141569, 1004851, 'New Matamoras', NULL, 'new-matamoras', 'US', 1, 39.5245200000, -81.0670500000), (1141570, 1004851, 'New Miami', NULL, 'new-miami', 'US', 1, 39.4347800000, -84.5368900000), (1141571, 1004851, 'New Middletown', NULL, 'new-middletown', 'US', 1, 40.9611700000, -80.5575700000), (1141572, 1004851, 'New Paris', NULL, 'new-paris', 'US', 1, 39.8569900000, -84.7932900000), (1141573, 1004851, 'New Philadelphia', NULL, 'new-philadelphia', 'US', 1, 40.4897900000, -81.4456700000), (1141574, 1004851, 'New Richmond', NULL, 'new-richmond', 'US', 1, 38.9486800000, -84.2799400000), (1141575, 1004851, 'New Vienna', NULL, 'new-vienna', 'US', 1, 39.3236700000, -83.6910300000), (1141576, 1004851, 'New Waterford', NULL, 'new-waterford', 'US', 1, 40.8450600000, -80.6145200000), (1141577, 1004851, 'Newark', NULL, 'newark', 'US', 1, 40.0581200000, -82.4012600000), (1141578, 1004851, 'Newburgh Heights', NULL, 'newburgh-heights', 'US', 1, 41.4500500000, -81.6634600000), (1141579, 1004851, 'Newcomerstown', NULL, 'newcomerstown', 'US', 1, 40.2722900000, -81.6059500000), (1141580, 1004851, 'Newport', NULL, 'newport', 'US', 1, 39.3909100000, -81.2267800000), (1141581, 1004851, 'Newton Falls', NULL, 'newton-falls', 'US', 1, 41.1883900000, -80.9781500000), (1141582, 1004851, 'Newtown', NULL, 'newtown', 'US', 1, 39.1245000000, -84.3616100000), (1141583, 1004851, 'Niles', NULL, 'niles', 'US', 1, 41.1828400000, -80.7653600000), (1141584, 1004851, 'Noble County', NULL, 'noble-county', 'US', 1, 39.7659600000, -81.4555600000), (1141585, 1004851, 'North Baltimore', NULL, 'north-baltimore', 'US', 1, 41.1828300000, -83.6782700000), (1141586, 1004851, 'North Canton', NULL, 'north-canton', 'US', 1, 40.8758900000, -81.4023400000), (1141587, 1004851, 'North College Hill', NULL, 'north-college-hill', 'US', 1, 39.2183900000, -84.5507800000), (1141588, 1004851, 'North Fork Village', NULL, 'north-fork-village', 'US', 1, 39.3359000000, -83.0290700000), (1141589, 1004851, 'North Kingsville', NULL, 'north-kingsville', 'US', 1, 41.9058900000, -80.6903600000), (1141590, 1004851, 'North Lewisburg', NULL, 'north-lewisburg', 'US', 1, 40.2231100000, -83.5574300000), (1141591, 1004851, 'North Madison', NULL, 'north-madison', 'US', 1, 41.8020000000, -81.0489900000), (1141592, 1004851, 'North Olmsted', NULL, 'north-olmsted', 'US', 1, 41.4156000000, -81.9234700000), (1141593, 1004851, 'North Randall', NULL, 'north-randall', 'US', 1, 41.4347800000, -81.5256800000), (1141594, 1004851, 'North Ridgeville', NULL, 'north-ridgeville', 'US', 1, 41.3894900000, -82.0190300000), (1141595, 1004851, 'North Royalton', NULL, 'north-royalton', 'US', 1, 41.3136600000, -81.7245700000), (1141596, 1004851, 'North Zanesville', NULL, 'north-zanesville', 'US', 1, 39.9786800000, -82.0034700000), (1141597, 1004851, 'Northbrook', NULL, 'northbrook', 'US', 1, 39.2464500000, -84.5835600000), (1141598, 1004851, 'Northfield', NULL, 'northfield', 'US', 1, 41.3450500000, -81.5284500000), (1141599, 1004851, 'Northgate', NULL, 'northgate', 'US', 1, 39.2528300000, -84.5924500000), (1141600, 1004851, 'Northridge', NULL, 'northridge', 'US', 1, 39.8075600000, -84.1968900000), (1141601, 1004851, 'Northwood', NULL, 'northwood', 'US', 1, 40.4728300000, -83.7324300000), (1141602, 1004851, 'Norton', NULL, 'norton', 'US', 1, 41.0292200000, -81.6381800000), (1141603, 1004851, 'Norwalk', NULL, 'norwalk', 'US', 1, 41.2425500000, -82.6157300000), (1141604, 1004851, 'Norwood', NULL, 'norwood', 'US', 1, 39.1556100000, -84.4596600000), (1141605, 1004851, 'Oak Harbor', NULL, 'oak-harbor', 'US', 1, 41.5067200000, -83.1465900000), (1141606, 1004851, 'Oak Hill', NULL, 'oak-hill', 'US', 1, 38.8939600000, -82.5734900000), (1141607, 1004851, 'Oakwood', NULL, 'oakwood', 'US', 1, 39.7253400000, -84.1741100000), (1141608, 1004851, 'Oberlin', NULL, 'oberlin', 'US', 1, 41.2939400000, -82.2173800000), (1141609, 1004851, 'Obetz', NULL, 'obetz', 'US', 1, 39.8789500000, -82.9507400000), (1141610, 1004851, 'Olmsted Falls', NULL, 'olmsted-falls', 'US', 1, 41.3750500000, -81.9081900000), (1141611, 1004851, 'Ontario', NULL, 'ontario', 'US', 1, 40.7595000000, -82.5901700000), (1141612, 1004851, 'Orange', NULL, 'orange', 'US', 1, 41.4497800000, -81.4806700000), (1141613, 1004851, 'Oregon', NULL, 'oregon', 'US', 1, 41.6436600000, -83.4868800000), (1141614, 1004851, 'Orrville', NULL, 'orrville', 'US', 1, 40.8436700000, -81.7640200000), (1141615, 1004851, 'Orwell', NULL, 'orwell', 'US', 1, 41.5350600000, -80.8681400000), (1141616, 1004851, 'Ottawa', NULL, 'ottawa', 'US', 1, 41.0192200000, -84.0471700000), (1141617, 1004851, 'Ottawa County', NULL, 'ottawa-county', 'US', 1, 41.4967500000, -82.9412800000), (1141618, 1004851, 'Ottawa Hills', NULL, 'ottawa-hills', 'US', 1, 41.6642200000, -83.6432700000), (1141619, 1004851, 'Oxford', NULL, 'oxford', 'US', 1, 39.5070000000, -84.7452300000), (1141620, 1004851, 'Painesville', NULL, 'painesville', 'US', 1, 41.7244900000, -81.2456600000), (1141621, 1004851, 'Pandora', NULL, 'pandora', 'US', 1, 40.9481100000, -83.9610500000), (1141622, 1004851, 'Park Layne', NULL, 'park-layne', 'US', 1, 39.8864500000, -84.0396600000), (1141623, 1004851, 'Parma', NULL, 'parma', 'US', 1, 41.4047700000, -81.7229100000), (1141624, 1004851, 'Parma Heights', NULL, 'parma-heights', 'US', 1, 41.3900500000, -81.7595800000), (1141625, 1004851, 'Pataskala', NULL, 'pataskala', 'US', 1, 39.9956200000, -82.6743300000), (1141626, 1004851, 'Paulding', NULL, 'paulding', 'US', 1, 41.1381100000, -84.5805100000), (1141627, 1004851, 'Paulding County', NULL, 'paulding-county', 'US', 1, 41.1166200000, -84.5802000000), (1141628, 1004851, 'Payne', NULL, 'payne', 'US', 1, 41.0775500000, -84.7271800000), (1141629, 1004851, 'Peebles', NULL, 'peebles', 'US', 1, 38.9489600000, -83.4057500000), (1141630, 1004851, 'Pemberville', NULL, 'pemberville', 'US', 1, 41.4108900000, -83.4610400000), (1141631, 1004851, 'Pepper Pike', NULL, 'pepper-pike', 'US', 1, 41.4783900000, -81.4637300000), (1141632, 1004851, 'Perry', NULL, 'perry', 'US', 1, 41.7603300000, -81.1409300000), (1141633, 1004851, 'Perry County', NULL, 'perry-county', 'US', 1, 39.7371500000, -82.2361400000), (1141634, 1004851, 'Perry Heights', NULL, 'perry-heights', 'US', 1, 40.7953400000, -81.4734500000), (1141635, 1004851, 'Perrysburg', NULL, 'perrysburg', 'US', 1, 41.5570000000, -83.6271600000), (1141636, 1004851, 'Pickaway County', NULL, 'pickaway-county', 'US', 1, 39.6419400000, -83.0243900000), (1141637, 1004851, 'Pickerington', NULL, 'pickerington', 'US', 1, 39.8842300000, -82.7535000000), (1141638, 1004851, 'Pike County', NULL, 'pike-county', 'US', 1, 39.0773700000, -83.0668500000), (1141639, 1004851, 'Piketon', NULL, 'piketon', 'US', 1, 39.0681300000, -83.0143400000), (1141640, 1004851, 'Pioneer', NULL, 'pioneer', 'US', 1, 41.6800500000, -84.5530100000), (1141641, 1004851, 'Piqua', NULL, 'piqua', 'US', 1, 40.1447700000, -84.2424400000), (1141642, 1004851, 'Plain City', NULL, 'plain-city', 'US', 1, 40.1075600000, -83.2674200000), (1141643, 1004851, 'Pleasant Grove', NULL, 'pleasant-grove', 'US', 1, 39.9520100000, -81.9590200000), (1141644, 1004851, 'Pleasant Hill', NULL, 'pleasant-hill', 'US', 1, 40.0517200000, -84.3443900000), (1141645, 1004851, 'Pleasant Run', NULL, 'pleasant-run', 'US', 1, 39.2997800000, -84.5635600000), (1141646, 1004851, 'Pleasant Run Farm', NULL, 'pleasant-run-farm', 'US', 1, 39.3031100000, -84.5480000000), (1141647, 1004851, 'Plymouth', NULL, 'plymouth', 'US', 1, 40.9956100000, -82.6671200000), (1141648, 1004851, 'Poland', NULL, 'poland', 'US', 1, 41.0242300000, -80.6148000000), (1141649, 1004851, 'Pomeroy', NULL, 'pomeroy', 'US', 1, 39.0275800000, -82.0337500000), (1141650, 1004851, 'Port Clinton', NULL, 'port-clinton', 'US', 1, 41.5120000000, -82.9376900000), (1141651, 1004851, 'Portage County', NULL, 'portage-county', 'US', 1, 41.1676800000, -81.1974000000), (1141652, 1004851, 'Portage Lakes', NULL, 'portage-lakes', 'US', 1, 41.0072800000, -81.5270600000), (1141653, 1004851, 'Portsmouth', NULL, 'portsmouth', 'US', 1, 38.7317400000, -82.9976700000), (1141654, 1004851, 'Powell', NULL, 'powell', 'US', 1, 40.1578400000, -83.0751900000), (1141655, 1004851, 'Powhatan Point', NULL, 'powhatan-point', 'US', 1, 39.8600800000, -80.8153700000), (1141656, 1004851, 'Preble County', NULL, 'preble-county', 'US', 1, 39.7415700000, -84.6480200000), (1141657, 1004851, 'Prospect', NULL, 'prospect', 'US', 1, 40.4503400000, -83.1885300000), (1141658, 1004851, 'Putnam County', NULL, 'putnam-county', 'US', 1, 41.0220800000, -84.1317300000), (1141659, 1004851, 'Ravenna', NULL, 'ravenna', 'US', 1, 41.1575600000, -81.2420500000), (1141660, 1004851, 'Reading', NULL, 'reading', 'US', 1, 39.2236700000, -84.4421600000), (1141661, 1004851, 'Reminderville', NULL, 'reminderville', 'US', 1, 41.3458900000, -81.3951100000), (1141662, 1004851, 'Reno', NULL, 'reno', 'US', 1, 39.3728500000, -81.3956700000), (1141663, 1004851, 'Reynoldsburg', NULL, 'reynoldsburg', 'US', 1, 39.9547900000, -82.8121200000), (1141664, 1004851, 'Richfield', NULL, 'richfield', 'US', 1, 41.2397800000, -81.6381800000), (1141665, 1004851, 'Richland County', NULL, 'richland-county', 'US', 1, 40.7746800000, -82.5364800000), (1141666, 1004851, 'Richmond Heights', NULL, 'richmond-heights', 'US', 1, 41.5528300000, -81.5101200000), (1141667, 1004851, 'Richville', NULL, 'richville', 'US', 1, 40.7511700000, -81.4779000000), (1141668, 1004851, 'Richwood', NULL, 'richwood', 'US', 1, 40.4264500000, -83.2968600000), (1141669, 1004851, 'Ripley', NULL, 'ripley', 'US', 1, 38.7456300000, -83.8449200000), (1141670, 1004851, 'Rittman', NULL, 'rittman', 'US', 1, 40.9781100000, -81.7820800000), (1141671, 1004851, 'Riverside', NULL, 'riverside', 'US', 1, 39.7797800000, -84.1241000000), (1141672, 1004851, 'Roaming Shores', NULL, 'roaming-shores', 'US', 1, 41.6431100000, -80.8234200000), (1141673, 1004851, 'Rockford', NULL, 'rockford', 'US', 1, 40.6878300000, -84.6466300000), (1141674, 1004851, 'Rocky River', NULL, 'rocky-river', 'US', 1, 41.4756000000, -81.8393000000), (1141675, 1004851, 'Rosemount', NULL, 'rosemount', 'US', 1, 38.7861900000, -82.9790600000), (1141676, 1004851, 'Roseville', NULL, 'roseville', 'US', 1, 39.8072900000, -82.0712500000), (1141677, 1004851, 'Ross', NULL, 'ross', 'US', 1, 39.3122800000, -84.6505000000), (1141678, 1004851, 'Ross County', NULL, 'ross-county', 'US', 1, 39.3376300000, -83.0570300000), (1141679, 1004851, 'Rossford', NULL, 'rossford', 'US', 1, 41.6097700000, -83.5643800000), (1141680, 1004851, 'Rossmoyne', NULL, 'rossmoyne', 'US', 1, 39.2136700000, -84.3868800000), (1141681, 1004851, 'Russells Point', NULL, 'russells-point', 'US', 1, 40.4711600000, -83.8927200000), (1141682, 1004851, 'Sabina', NULL, 'sabina', 'US', 1, 39.4886700000, -83.6368700000), (1141683, 1004851, 'Saint Bernard', NULL, 'saint-bernard', 'US', 1, 39.1670000000, -84.4985500000), (1141684, 1004851, 'Saint Clairsville', NULL, 'saint-clairsville', 'US', 1, 40.0806300000, -80.9000900000), (1141685, 1004851, 'Saint Henry', NULL, 'saint-henry', 'US', 1, 40.4175500000, -84.6396800000), (1141686, 1004851, 'Saint Marys', NULL, 'saint-marys', 'US', 1, 40.5422700000, -84.3894000000), (1141687, 1004851, 'Saint Paris', NULL, 'saint-paris', 'US', 1, 40.1283900000, -83.9596600000), (1141688, 1004851, 'Salem', NULL, 'salem', 'US', 1, 40.9008900000, -80.8567500000), (1141689, 1004851, 'Salem Heights', NULL, 'salem-heights', 'US', 1, 39.0717300000, -84.3782700000), (1141690, 1004851, 'Salineville', NULL, 'salineville', 'US', 1, 40.6225600000, -80.8378600000), (1141691, 1004851, 'Sandusky', NULL, 'sandusky', 'US', 1, 41.4489400000, -82.7079600000); INSERT INTO `[[dbprefix]]t_city` VALUES (1141692, 1004851, 'Sandusky County', NULL, 'sandusky-county', 'US', 1, 41.3574200000, -83.1439100000), (1141693, 1004851, 'Sawyerwood', NULL, 'sawyerwood', 'US', 1, 41.0378300000, -81.4409500000), (1141694, 1004851, 'Scioto County', NULL, 'scioto-county', 'US', 1, 38.8039600000, -82.9928300000), (1141695, 1004851, 'Sciotodale', NULL, 'sciotodale', 'US', 1, 38.7548000000, -82.8687800000), (1141696, 1004851, 'Sebring', NULL, 'sebring', 'US', 1, 40.9228400000, -81.0189800000), (1141697, 1004851, 'Seneca County', NULL, 'seneca-county', 'US', 1, 41.1238800000, -83.1277100000), (1141698, 1004851, 'Seven Hills', NULL, 'seven-hills', 'US', 1, 41.3953300000, -81.6762400000), (1141699, 1004851, 'Seville', NULL, 'seville', 'US', 1, 41.0100600000, -81.8623600000), (1141700, 1004851, 'Shadyside', NULL, 'shadyside', 'US', 1, 39.9709100000, -80.7506400000), (1141701, 1004851, 'Shaker Heights', NULL, 'shaker-heights', 'US', 1, 41.4739400000, -81.5370700000), (1141702, 1004851, 'Sharonville', NULL, 'sharonville', 'US', 1, 39.2681100000, -84.4132700000), (1141703, 1004851, 'Shawnee Hills', NULL, 'shawnee-hills', 'US', 1, 39.6528400000, -83.7868700000), (1141704, 1004851, 'Sheffield', NULL, 'sheffield', 'US', 1, 41.4211500000, -82.0962600000), (1141705, 1004851, 'Sheffield Lake', NULL, 'sheffield-lake', 'US', 1, 41.4875400000, -82.1015400000), (1141706, 1004851, 'Shelby', NULL, 'shelby', 'US', 1, 40.8814500000, -82.6618400000), (1141707, 1004851, 'Shelby County', NULL, 'shelby-county', 'US', 1, 40.3315300000, -84.2047300000), (1141708, 1004851, 'Sherwood', NULL, 'sherwood', 'US', 1, 39.0847800000, -84.3607700000), (1141709, 1004851, 'Shiloh', NULL, 'shiloh', 'US', 1, 39.8186700000, -84.2285500000), (1141710, 1004851, 'Shreve', NULL, 'shreve', 'US', 1, 40.6814500000, -82.0218100000), (1141711, 1004851, 'Sidney', NULL, 'sidney', 'US', 1, 40.2842200000, -84.1555000000), (1141712, 1004851, 'Silver Lake', NULL, 'silver-lake', 'US', 1, 41.1589500000, -81.4542800000), (1141713, 1004851, 'Silverton', NULL, 'silverton', 'US', 1, 39.1928400000, -84.4005000000), (1141714, 1004851, 'Sixteen Mile Stand', NULL, 'sixteen-mile-stand', 'US', 1, 39.2728400000, -84.3274400000), (1141715, 1004851, 'Skyline Acres', NULL, 'skyline-acres', 'US', 1, 39.2286700000, -84.5668900000), (1141716, 1004851, 'Smithville', NULL, 'smithville', 'US', 1, 40.8622800000, -81.8618000000), (1141717, 1004851, 'Solon', NULL, 'solon', 'US', 1, 41.3897800000, -81.4412300000), (1141718, 1004851, 'Somerset', NULL, 'somerset', 'US', 1, 39.8070100000, -82.2970900000), (1141719, 1004851, 'South Amherst', NULL, 'south-amherst', 'US', 1, 41.3558800000, -82.2537700000), (1141720, 1004851, 'South Bloomfield', NULL, 'south-bloomfield', 'US', 1, 39.7184000000, -82.9868500000), (1141721, 1004851, 'South Canal', NULL, 'south-canal', 'US', 1, 41.1772800000, -80.9867600000), (1141722, 1004851, 'South Charleston', NULL, 'south-charleston', 'US', 1, 39.8253400000, -83.6343700000), (1141723, 1004851, 'South Euclid', NULL, 'south-euclid', 'US', 1, 41.5231100000, -81.5184600000), (1141724, 1004851, 'South Lebanon', NULL, 'south-lebanon', 'US', 1, 39.3708900000, -84.2132700000), (1141725, 1004851, 'South Point', NULL, 'south-point', 'US', 1, 38.4178600000, -82.5862700000), (1141726, 1004851, 'South Russell', NULL, 'south-russell', 'US', 1, 41.4314400000, -81.3653900000), (1141727, 1004851, 'South Zanesville', NULL, 'south-zanesville', 'US', 1, 39.8992300000, -82.0062500000), (1141728, 1004851, 'Spencerville', NULL, 'spencerville', 'US', 1, 40.7089400000, -84.3535600000), (1141729, 1004851, 'Springboro', NULL, 'springboro', 'US', 1, 39.5522800000, -84.2332700000), (1141730, 1004851, 'Springdale', NULL, 'springdale', 'US', 1, 39.2870000000, -84.4852200000), (1141731, 1004851, 'Springfield', NULL, 'springfield', 'US', 1, 39.9242300000, -83.8088200000), (1141732, 1004851, 'Stark County', NULL, 'stark-county', 'US', 1, 40.8138900000, -81.3656400000), (1141733, 1004851, 'Steubenville', NULL, 'steubenville', 'US', 1, 40.3697900000, -80.6339600000), (1141734, 1004851, 'Stony Prairie', NULL, 'stony-prairie', 'US', 1, 41.3514400000, -83.1552000000), (1141735, 1004851, 'Stow', NULL, 'stow', 'US', 1, 41.1595000000, -81.4403900000), (1141736, 1004851, 'Strasburg', NULL, 'strasburg', 'US', 1, 40.5947800000, -81.5267900000), (1141737, 1004851, 'Streetsboro', NULL, 'streetsboro', 'US', 1, 41.2392200000, -81.3459400000), (1141738, 1004851, 'Strongsville', NULL, 'strongsville', 'US', 1, 41.3145000000, -81.8356900000), (1141739, 1004851, 'Struthers', NULL, 'struthers', 'US', 1, 41.0525600000, -80.6078500000), (1141740, 1004851, 'Stryker', NULL, 'stryker', 'US', 1, 41.5036600000, -84.4141200000), (1141741, 1004851, 'Sugarcreek', NULL, 'sugarcreek', 'US', 1, 40.5031200000, -81.6409600000), (1141742, 1004851, 'Sugarcreek Police Dept', NULL, 'sugarcreek-police-dept', 'US', 1, 40.5025300000, -81.6417600000), (1141743, 1004851, 'Summerside', NULL, 'summerside', 'US', 1, 39.1047800000, -84.2882700000), (1141744, 1004851, 'Summit County', NULL, 'summit-county', 'US', 1, 41.1259800000, -81.5321700000), (1141745, 1004851, 'Sunbury', NULL, 'sunbury', 'US', 1, 40.2425600000, -82.8590700000), (1141746, 1004851, 'Swanton', NULL, 'swanton', 'US', 1, 41.5886600000, -83.8910500000), (1141747, 1004851, 'Sylvania', NULL, 'sylvania', 'US', 1, 41.7189400000, -83.7129900000), (1141748, 1004851, 'Tallmadge', NULL, 'tallmadge', 'US', 1, 41.1014500000, -81.4417800000), (1141749, 1004851, 'Terrace Park', NULL, 'terrace-park', 'US', 1, 39.1592300000, -84.3071600000), (1141750, 1004851, 'The Plains', NULL, 'the-plains', 'US', 1, 39.3689600000, -82.1323700000), (1141751, 1004851, 'The Village of Indian Hill', NULL, 'the-village-of-indian-hill', 'US', 1, 39.1794900000, -84.3351700000), (1141752, 1004851, 'Thornport', NULL, 'thornport', 'US', 1, 39.9131200000, -82.4109900000), (1141753, 1004851, 'Tiffin', NULL, 'tiffin', 'US', 1, 41.1145000000, -83.1779700000), (1141754, 1004851, 'Tiltonsville', NULL, 'tiltonsville', 'US', 1, 40.1667400000, -80.6998000000), (1141755, 1004851, 'Tipp City', NULL, 'tipp-city', 'US', 1, 39.9583900000, -84.1721600000), (1141756, 1004851, 'Toledo', NULL, 'toledo', 'US', 1, 41.6639400000, -83.5552100000), (1141757, 1004851, 'Toronto', NULL, 'toronto', 'US', 1, 40.4642300000, -80.6009100000), (1141758, 1004851, 'Trenton', NULL, 'trenton', 'US', 1, 39.4808900000, -84.4577200000), (1141759, 1004851, 'Trotwood', NULL, 'trotwood', 'US', 1, 39.7972800000, -84.3113300000), (1141760, 1004851, 'Troy', NULL, 'troy', 'US', 1, 40.0395000000, -84.2032800000), (1141761, 1004851, 'Trumbull County', NULL, 'trumbull-county', 'US', 1, 41.3171700000, -80.7611600000), (1141762, 1004851, 'Turpin Hills', NULL, 'turpin-hills', 'US', 1, 39.1100600000, -84.3799400000), (1141763, 1004851, 'Tuscarawas', NULL, 'tuscarawas', 'US', 1, 40.3947900000, -81.4070600000), (1141764, 1004851, 'Tuscarawas County', NULL, 'tuscarawas-county', 'US', 1, 40.4409600000, -81.4737700000), (1141765, 1004851, 'Twinsburg', NULL, 'twinsburg', 'US', 1, 41.3125600000, -81.4401100000), (1141766, 1004851, 'Uhrichsville', NULL, 'uhrichsville', 'US', 1, 40.3931200000, -81.3465000000), (1141767, 1004851, 'Union', NULL, 'union', 'US', 1, 39.8978300000, -84.3063300000), (1141768, 1004851, 'Union City', NULL, 'union-city', 'US', 1, 40.1993800000, -84.8035300000), (1141769, 1004851, 'Union County', NULL, 'union-county', 'US', 1, 40.2994000000, -83.3715800000), (1141770, 1004851, 'Uniontown', NULL, 'uniontown', 'US', 1, 40.9750600000, -81.4081700000), (1141771, 1004851, 'University Heights', NULL, 'university-heights', 'US', 1, 41.4978300000, -81.5373500000), (1141772, 1004851, 'Upper Arlington', NULL, 'upper-arlington', 'US', 1, 39.9945100000, -83.0624100000), (1141773, 1004851, 'Upper Sandusky', NULL, 'upper-sandusky', 'US', 1, 40.8272800000, -83.2813100000), (1141774, 1004851, 'Urbana', NULL, 'urbana', 'US', 1, 40.1083900000, -83.7524300000), (1141775, 1004851, 'Urbancrest', NULL, 'urbancrest', 'US', 1, 39.8975600000, -83.0868500000), (1141776, 1004851, 'Utica', NULL, 'utica', 'US', 1, 40.2342300000, -82.4512700000), (1141777, 1004851, 'Valley View', NULL, 'valley-view', 'US', 1, 41.3878300000, -81.6045700000), (1141778, 1004851, 'Van Wert', NULL, 'van-wert', 'US', 1, 40.8694900000, -84.5841200000), (1141779, 1004851, 'Van Wert County', NULL, 'van-wert-county', 'US', 1, 40.8554000000, -84.5861000000), (1141780, 1004851, 'Vandalia', NULL, 'vandalia', 'US', 1, 39.8906100000, -84.1988300000), (1141781, 1004851, 'Vermilion', NULL, 'vermilion', 'US', 1, 41.4219900000, -82.3646100000), (1141782, 1004851, 'Vermilion-on-the-Lake', NULL, 'vermilion-on-the-lake', 'US', 1, 41.4283800000, -82.3237700000), (1141783, 1004851, 'Versailles', NULL, 'versailles', 'US', 1, 40.2225500000, -84.4844000000), (1141784, 1004851, 'Vinton County', NULL, 'vinton-county', 'US', 1, 39.2509900000, -82.4853500000), (1141785, 1004851, 'Wadsworth', NULL, 'wadsworth', 'US', 1, 41.0256100000, -81.7298500000), (1141786, 1004851, 'Wakeman', NULL, 'wakeman', 'US', 1, 41.2545000000, -82.3996100000), (1141787, 1004851, 'Walbridge', NULL, 'walbridge', 'US', 1, 41.5878300000, -83.4932700000), (1141788, 1004851, 'Walton Hills', NULL, 'walton-hills', 'US', 1, 41.3656100000, -81.5612300000), (1141789, 1004851, 'Wapakoneta', NULL, 'wapakoneta', 'US', 1, 40.5678300000, -84.1935600000), (1141790, 1004851, 'Warren', NULL, 'warren', 'US', 1, 41.2375600000, -80.8184200000), (1141791, 1004851, 'Warren County', NULL, 'warren-county', 'US', 1, 39.4275800000, -84.1667600000), (1141792, 1004851, 'Warrensville Heights', NULL, 'warrensville-heights', 'US', 1, 41.4350500000, -81.5362300000), (1141793, 1004851, 'Washington County', NULL, 'washington-county', 'US', 1, 39.4553200000, -81.4952500000), (1141794, 1004851, 'Washington Court House', NULL, 'washington-court-house', 'US', 1, 39.5364500000, -83.4390800000), (1141795, 1004851, 'Waterville', NULL, 'waterville', 'US', 1, 41.5008900000, -83.7182700000), (1141796, 1004851, 'Wauseon', NULL, 'wauseon', 'US', 1, 41.5492200000, -84.1416100000), (1141797, 1004851, 'Waverly', NULL, 'waverly', 'US', 1, 39.1267300000, -82.9854600000), (1141798, 1004851, 'Wayne County', NULL, 'wayne-county', 'US', 1, 40.8288700000, -81.8880300000), (1141799, 1004851, 'Waynesville', NULL, 'waynesville', 'US', 1, 39.5297800000, -84.0866000000), (1141800, 1004851, 'Wellington', NULL, 'wellington', 'US', 1, 41.1689400000, -82.2179400000), (1141801, 1004851, 'Wellston', NULL, 'wellston', 'US', 1, 39.1234100000, -82.5329400000), (1141802, 1004851, 'Wellsville', NULL, 'wellsville', 'US', 1, 40.6028400000, -80.6489600000), (1141803, 1004851, 'West Alexandria', NULL, 'west-alexandria', 'US', 1, 39.7445000000, -84.5321700000), (1141804, 1004851, 'West Carrollton City', NULL, 'west-carrollton-city', 'US', 1, 39.6722800000, -84.2521600000), (1141805, 1004851, 'West Hill', NULL, 'west-hill', 'US', 1, 41.2328300000, -80.5192400000), (1141806, 1004851, 'West Jefferson', NULL, 'west-jefferson', 'US', 1, 39.9447800000, -83.2688000000), (1141807, 1004851, 'West Lafayette', NULL, 'west-lafayette', 'US', 1, 40.2753500000, -81.7509600000), (1141808, 1004851, 'West Liberty', NULL, 'west-liberty', 'US', 1, 40.2522800000, -83.7557700000), (1141809, 1004851, 'West Milton', NULL, 'west-milton', 'US', 1, 39.9625500000, -84.3280000000), (1141810, 1004851, 'West Portsmouth', NULL, 'west-portsmouth', 'US', 1, 38.7584100000, -83.0290600000), (1141811, 1004851, 'West Salem', NULL, 'west-salem', 'US', 1, 40.9714400000, -82.1098700000), (1141812, 1004851, 'West Union', NULL, 'west-union', 'US', 1, 38.7945200000, -83.5451900000), (1141813, 1004851, 'West Unity', NULL, 'west-unity', 'US', 1, 41.5861600000, -84.4349500000), (1141814, 1004851, 'Westerville', NULL, 'westerville', 'US', 1, 40.1261700000, -82.9290700000), (1141815, 1004851, 'Westfield Center', NULL, 'westfield-center', 'US', 1, 41.0264400000, -81.9332000000), (1141816, 1004851, 'Westlake', NULL, 'westlake', 'US', 1, 41.4553200000, -81.9179200000), (1141817, 1004851, 'Weston', NULL, 'weston', 'US', 1, 41.3447700000, -83.7971600000), (1141818, 1004851, 'Wetherington', NULL, 'wetherington', 'US', 1, 39.3636700000, -84.3774400000), (1141819, 1004851, 'Wheelersburg', NULL, 'wheelersburg', 'US', 1, 38.7303500000, -82.8554500000), (1141820, 1004851, 'White Oak', NULL, 'white-oak', 'US', 1, 39.2131100000, -84.5993900000), (1141821, 1004851, 'Whitehall', NULL, 'whitehall', 'US', 1, 39.9667300000, -82.8854600000), (1141822, 1004851, 'Whitehouse', NULL, 'whitehouse', 'US', 1, 41.5189400000, -83.8038300000), (1141823, 1004851, 'Wickliffe', NULL, 'wickliffe', 'US', 1, 41.6053300000, -81.4534500000), (1141824, 1004851, 'Wilberforce', NULL, 'wilberforce', 'US', 1, 39.7161700000, -83.8777100000), (1141825, 1004851, 'Willard', NULL, 'willard', 'US', 1, 41.0531100000, -82.7262900000), (1141826, 1004851, 'Williams County', NULL, 'williams-county', 'US', 1, 41.5602900000, -84.5881400000), (1141827, 1004851, 'Williamsburg', NULL, 'williamsburg', 'US', 1, 39.0542300000, -84.0529900000), (1141828, 1004851, 'Williamsport', NULL, 'williamsport', 'US', 1, 39.5859000000, -83.1204600000), (1141829, 1004851, 'Willoughby', NULL, 'willoughby', 'US', 1, 41.6397700000, -81.4065000000), (1141830, 1004851, 'Willoughby Hills', NULL, 'willoughby-hills', 'US', 1, 41.5983800000, -81.4184500000), (1141831, 1004851, 'Willowick', NULL, 'willowick', 'US', 1, 41.6331000000, -81.4687300000), (1141832, 1004851, 'Wilmington', NULL, 'wilmington', 'US', 1, 39.4453400000, -83.8285400000), (1141833, 1004851, 'Winchester', NULL, 'winchester', 'US', 1, 38.9417400000, -83.6507500000), (1141834, 1004851, 'Windham', NULL, 'windham', 'US', 1, 41.2350600000, -81.0492600000), (1141835, 1004851, 'Wintersville', NULL, 'wintersville', 'US', 1, 40.3753500000, -80.7036900000), (1141836, 1004851, 'Withamsville', NULL, 'withamsville', 'US', 1, 39.0622800000, -84.2882700000), (1141837, 1004851, 'Wolfhurst', NULL, 'wolfhurst', 'US', 1, 40.0692400000, -80.7837000000), (1141838, 1004851, 'Wood County', NULL, 'wood-county', 'US', 1, 41.3616900000, -83.6229900000), (1141839, 1004851, 'Woodlawn', NULL, 'woodlawn', 'US', 1, 39.2520000000, -84.4702200000), (1141840, 1004851, 'Woodsfield', NULL, 'woodsfield', 'US', 1, 39.7625700000, -81.1153800000), (1141841, 1004851, 'Woodville', NULL, 'woodville', 'US', 1, 41.4514400000, -83.3657600000), (1141842, 1004851, 'Wooster', NULL, 'wooster', 'US', 1, 40.8051700000, -81.9364600000), (1141843, 1004851, 'Worthington', NULL, 'worthington', 'US', 1, 40.0931200000, -83.0179600000), (1141844, 1004851, 'Wright-Patterson AFB', NULL, 'wright-patterson-afb', 'US', 1, 39.8111300000, -84.0573100000), (1141845, 1004851, 'Wyandot County', NULL, 'wyandot-county', 'US', 1, 40.8423700000, -83.3043700000), (1141846, 1004851, 'Wyoming', NULL, 'wyoming', 'US', 1, 39.2311700000, -84.4657800000), (1141847, 1004851, 'Xenia', NULL, 'xenia', 'US', 1, 39.6847800000, -83.9296500000), (1141848, 1004851, 'Yellow Springs', NULL, 'yellow-springs', 'US', 1, 39.8064500000, -83.8868700000), (1141849, 1004851, 'Yorkville', NULL, 'yorkville', 'US', 1, 40.1545200000, -80.7103600000), (1141850, 1004851, 'Youngstown', NULL, 'youngstown', 'US', 1, 41.0997800000, -80.6495200000), (1141851, 1004851, 'Zanesville', NULL, 'zanesville', 'US', 1, 39.9403500000, -82.0131900000), (1142982, 1001449, 'Adjuntas', NULL, 'adjuntas', 'US', 1, 18.1627777800, -66.7222222200), (1142983, 1001449, 'Aguada', NULL, 'aguada', 'US', 1, 18.3794444400, -67.1883333300), (1142984, 1001449, 'Aguadilla', NULL, 'aguadilla', 'US', 1, 18.4274500000, -67.1540700000), (1142985, 1001449, 'Aguas Buenas', NULL, 'aguas-buenas', 'US', 1, 18.2569440000, -66.1030560000), (1142986, 1001449, 'Aguas Claras', NULL, 'aguas-claras', 'US', 1, 18.2441700000, -65.6627800000), (1142987, 1001449, 'Aguilita', NULL, 'aguilita', 'US', 1, 18.0233333300, -66.5347222200), (1142988, 1001449, 'Aibonito', NULL, 'aibonito', 'US', 1, 18.1400000000, -66.2661110000), (1142989, 1001449, 'Animas', NULL, 'animas', 'US', 1, 18.4455555600, -66.6350000000), (1142990, 1001449, 'Antón Ruiz', NULL, 'anton-ruiz', 'US', 1, 18.1852777800, -65.8086111100), (1142991, 1001449, 'Arecibo', NULL, 'arecibo', 'US', 1, 18.4705555600, -66.7208333300), (1142992, 1001449, 'Arroyo', NULL, 'arroyo', 'US', 1, 17.9658330000, -66.0613890000), (1142993, 1001449, 'Añasco', NULL, 'anasco', 'US', 1, 18.3161111100, -67.1397222200), (1142994, 1001449, 'Bairoa', NULL, 'bairoa', 'US', 1, 18.2591666700, -66.0405555600), (1142995, 1001449, 'Bajadero', NULL, 'bajadero', 'US', 1, 18.4266666700, -66.6833333300), (1142996, 1001449, 'Bajandas', NULL, 'bajandas', 'US', 1, 18.1627800000, -65.7816700000), (1142997, 1001449, 'Barahona', NULL, 'barahona', 'US', 1, 18.3513888900, -66.4455555600), (1142998, 1001449, 'Barceloneta', NULL, 'barceloneta', 'US', 1, 18.4563300000, -66.5412800000), (1142999, 1001449, 'Barranquitas', NULL, 'barranquitas', 'US', 1, 18.2035700000, -66.3121100000), (1143000, 1001449, 'Bartolo', NULL, 'bartolo', 'US', 1, 18.3613888900, -65.8386111100), (1143001, 1001449, 'Bayamon', NULL, 'bayamon', 'US', 1, 18.1777777800, -66.1133333300), (1143002, 1001449, 'Benitez', NULL, 'benitez', 'US', 1, 18.2736111100, -65.8791666700), (1143003, 1001449, 'Betances', NULL, 'betances', 'US', 1, 18.0286111100, -67.1350000000), (1143004, 1001449, 'Boqueron', NULL, 'boqueron', 'US', 1, 18.2075000000, -65.8486111100), (1143005, 1001449, 'Boquerón, Cabo Rojo', NULL, 'boqueron-cabo-rojo', 'US', 1, 18.0269100000, -67.1690700000), (1143006, 1001449, 'Brenas', NULL, 'brenas', 'US', 1, 18.4672222200, -66.3411111100), (1143007, 1001449, 'Buena Vista', NULL, 'buena-vista', 'US', 1, 17.9963888900, -66.0519444400), (1143008, 1001449, 'Bufalo', NULL, 'bufalo', 'US', 1, 18.4183333300, -66.5733333300), (1143009, 1001449, 'Caban', NULL, 'caban', 'US', 1, 18.4433333300, -67.1361111100), (1143010, 1001449, 'Cabo Rojo', NULL, 'cabo-rojo', 'US', 1, 18.0866666700, -67.1458333300), (1143011, 1001449, 'Cabo Rojo Municipio', NULL, 'cabo-rojo-municipio', 'US', 1, 18.0563500000, -67.1468500000), (1143012, 1001449, 'Cacao', NULL, 'cacao', 'US', 1, 18.4402800000, -66.9386100000), (1143013, 1001449, 'Caguas', NULL, 'caguas', 'US', 1, 18.2333333300, -66.0333333300), (1143014, 1001449, 'Campanilla', NULL, 'campanilla', 'US', 1, 18.4213888900, -66.2369444400), (1143015, 1001449, 'Campo Rico', NULL, 'campo-rico', 'US', 1, 18.3372222200, -65.8980555600), (1143016, 1001449, 'Camuy', NULL, 'camuy', 'US', 1, 18.4838890000, -66.8450000000), (1143017, 1001449, 'Candelaria', NULL, 'candelaria', 'US', 1, 18.4041666700, -66.2088888900), (1143018, 1001449, 'Candelaria Arenas', NULL, 'candelaria-arenas', 'US', 1, 18.4172222200, -66.2175000000), (1143019, 1001449, 'Candelero Arriba', NULL, 'candelero-arriba', 'US', 1, 18.1056000000, -65.8342000000), (1143020, 1001449, 'Canóvanas', NULL, 'canovanas', 'US', 1, 18.3791670000, -65.9013890000), (1143021, 1001449, 'Capitanejo', NULL, 'capitanejo', 'US', 1, 18.0145400000, -66.5337200000), (1143022, 1001449, 'Carolina', NULL, 'carolina', 'US', 1, 18.3888888900, -65.9666666700), (1143023, 1001449, 'Carrizales', NULL, 'carrizales', 'US', 1, 18.4819444400, -66.7900000000), (1143024, 1001449, 'Cataño', NULL, 'catano', 'US', 1, 18.4413400000, -66.1182200000), (1143025, 1001449, 'Cayey', NULL, 'cayey', 'US', 1, 18.1150000000, -66.1613900000), (1143026, 1001449, 'Cayuco', NULL, 'cayuco', 'US', 1, 18.2919400000, -66.7352800000), (1143027, 1001449, 'Ceiba', NULL, 'ceiba', 'US', 1, 18.4463888900, -66.3508333300), (1143028, 1001449, 'Ceiba Municipio', NULL, 'ceiba-municipio', 'US', 1, 18.2605100000, -65.6718300000), (1143029, 1001449, 'Celada', NULL, 'celada', 'US', 1, 18.2716666700, -65.9661111100), (1143030, 1001449, 'Central Aguirre', NULL, 'central-aguirre', 'US', 1, 17.9547200000, -66.2261100000), (1143031, 1001449, 'Ciales', NULL, 'ciales', 'US', 1, 18.3361110000, -66.4688890000), (1143032, 1001449, 'Ciales Municipio', NULL, 'ciales-municipio', 'US', 1, 18.2916200000, -66.5162800000), (1143033, 1001449, 'Cidra', NULL, 'cidra', 'US', 1, 18.1758333300, -66.1613888900), (1143034, 1001449, 'Coamo', NULL, 'coamo', 'US', 1, 18.0800000000, -66.3580555600), (1143035, 1001449, 'Coco', NULL, 'coco', 'US', 1, 18.0072222200, -66.2594444400), (1143036, 1001449, 'Comerío', NULL, 'comerio', 'US', 1, 18.2180100000, -66.2260000000), (1143037, 1001449, 'Comerío Municipio', NULL, 'comerio-municipio', 'US', 1, 18.2271800000, -66.2218300000), (1143038, 1001449, 'Comunas', NULL, 'comunas', 'US', 1, 18.0872222200, -65.8438888900), (1143039, 1001449, 'Coquí', NULL, 'coqui', 'US', 1, 17.9741666700, -66.2272222200), (1143040, 1001449, 'Corazón', NULL, 'corazon', 'US', 1, 17.9927777800, -66.0850000000), (1143041, 1001449, 'Corcovado', NULL, 'corcovado', 'US', 1, 18.4586111100, -66.7763888900), (1143042, 1001449, 'Corozal', NULL, 'corozal', 'US', 1, 18.3416666700, -66.3169444400), (1143043, 1001449, 'Corozal Municipio', NULL, 'corozal-municipio', 'US', 1, 18.3091200000, -66.3260000000), (1143044, 1001449, 'Coto Laurel', NULL, 'coto-laurel', 'US', 1, 18.0496900000, -66.5512800000), (1143045, 1001449, 'Coto Norte', NULL, 'coto-norte', 'US', 1, 18.4307800000, -66.4398900000), (1143046, 1001449, 'Culebra', NULL, 'culebra', 'US', 1, 18.3166666700, -65.2902777800), (1143047, 1001449, 'Culebra barrio-pueblo', NULL, 'culebra-barrio-pueblo', 'US', 1, 18.3064695000, -65.3025800000), (1143048, 1001449, 'Daguao', NULL, 'daguao', 'US', 1, 18.2263888900, -65.6833333300), (1143049, 1001449, 'Dorado', NULL, 'dorado', 'US', 1, 18.4588890000, -66.2677780000), (1143050, 1001449, 'Dorado Municipio', NULL, 'dorado-municipio', 'US', 1, 18.4396700000, -66.2829500000), (1143051, 1001449, 'El Mangó', NULL, 'el-mango', 'US', 1, 18.2341666700, -65.8797222200), (1143052, 1001449, 'El Negro', NULL, 'el-negro', 'US', 1, 18.0375000000, -65.8513888900), (1143053, 1001449, 'El Ojo', NULL, 'el-ojo', 'US', 1, 18.0038888900, -66.3916666700), (1143054, 1001449, 'Emajagua', NULL, 'emajagua', 'US', 1, 18.0005555600, -65.8827777800), (1143055, 1001449, 'Esperanza', NULL, 'esperanza', 'US', 1, 18.0972222200, -65.4708333300), (1143056, 1001449, 'Espino', NULL, 'espino', 'US', 1, 18.2763888900, -67.1194444400), (1143057, 1001449, 'Estancias de Florida', NULL, 'estancias-de-florida', 'US', 1, 18.3666666700, -66.5697222200), (1143058, 1001449, 'Fajardo', NULL, 'fajardo', 'US', 1, 18.3257900000, -65.6523800000), (1143059, 1001449, 'Fajardo Municipio', NULL, 'fajardo-municipio', 'US', 1, 18.3105100000, -65.6760000000), (1143060, 1001449, 'Florida', NULL, 'florida', 'US', 1, 18.3649530000, -66.5661610000), (1143061, 1001449, 'Franquez', NULL, 'franquez', 'US', 1, 18.3402777800, -66.4277777800), (1143062, 1001449, 'Fuig', NULL, 'fuig', 'US', 1, 17.9877777800, -66.9161111100), (1143063, 1001449, 'G. L. Garcia', NULL, 'g-l-garcia', 'US', 1, 18.1275000000, -66.1041666700), (1143064, 1001449, 'Galateo', NULL, 'galateo', 'US', 1, 18.3625000000, -66.2588888900), (1143065, 1001449, 'Garrochales', NULL, 'garrochales', 'US', 1, 18.4536111100, -66.5663888900), (1143066, 1001449, 'Guayabal', NULL, 'guayabal', 'US', 1, 18.0813888900, -66.5013888900), (1143067, 1001449, 'Guayama', NULL, 'guayama', 'US', 1, 17.9936111100, -66.1308333300), (1143068, 1001449, 'Guayama Municipio', NULL, 'guayama-municipio', 'US', 1, 18.0166300000, -66.1307200000), (1143069, 1001449, 'Guayanilla', NULL, 'guayanilla', 'US', 1, 18.0191666700, -66.7919444400), (1143070, 1001449, 'Guaynabo', NULL, 'guaynabo', 'US', 1, 18.3666666700, -66.1000000000), (1143071, 1001449, 'Gurabo', NULL, 'gurabo', 'US', 1, 18.2544000000, -65.9729400000), (1143072, 1001449, 'Gurabo Municipio', NULL, 'gurabo-municipio', 'US', 1, 18.2716200000, -65.9718300000), (1143073, 1001449, 'Guánica', NULL, 'guanica', 'US', 1, 17.9716666700, -66.9080555600), (1143074, 1001449, 'Guánica Municipio', NULL, 'guanica-municipio', 'US', 1, 17.9883000000, -66.9121200000), (1143075, 1001449, 'H. Rivera Colon', NULL, 'h-rivera-colon', 'US', 1, 18.3477777800, -66.2738888900), (1143076, 1001449, 'Hatillo', NULL, 'hatillo', 'US', 1, 18.4863300000, -66.8254500000), (1143077, 1001449, 'Hatillo Municipio', NULL, 'hatillo-municipio', 'US', 1, 18.4077300000, -66.7932300000), (1143078, 1001449, 'Hato Arriba', NULL, 'hato-arriba', 'US', 1, 18.3558333300, -67.0341666700), (1143079, 1001449, 'Hato Candal', NULL, 'hato-candal', 'US', 1, 18.3744444400, -65.7872222200), (1143080, 1001449, 'Hormigueros', NULL, 'hormigueros', 'US', 1, 18.1396800000, -67.1274000000), (1143081, 1001449, 'Hormigueros Municipio', NULL, 'hormigueros-municipio', 'US', 1, 18.1416200000, -67.1162900000), (1143082, 1001449, 'Humacao', NULL, 'humacao', 'US', 1, 18.1497220000, -65.8275000000), (1143083, 1001449, 'Imbery', NULL, 'imbery', 'US', 1, 18.4369444400, -66.5525000000), (1143084, 1001449, 'Indios', NULL, 'indios', 'US', 1, 17.9941666700, -66.8194444400), (1143085, 1001449, 'Ingenio', NULL, 'ingenio', 'US', 1, 18.4422222200, -66.2261111100), (1143086, 1001449, 'Isabel Segunda', NULL, 'isabel-segunda', 'US', 1, 18.1491666700, -65.4427777800), (1143087, 1001449, 'Isabela', NULL, 'isabela', 'US', 1, 18.5130555600, -67.0700000000), (1143088, 1001449, 'Jagual', NULL, 'jagual', 'US', 1, 18.1616666700, -65.9955555600), (1143089, 1001449, 'Jauca', NULL, 'jauca', 'US', 1, 17.9691666700, -66.3658333300), (1143090, 1001449, 'Jayuya', NULL, 'jayuya', 'US', 1, 18.2186110000, -66.5916670000), (1143091, 1001449, 'Jobos', NULL, 'jobos', 'US', 1, 17.9552777800, -66.1655555600), (1143092, 1001449, 'Juana Díaz', NULL, 'juana-diaz', 'US', 1, 18.0524600000, -66.5065600000), (1143093, 1001449, 'Juana Díaz Municipio', NULL, 'juana-diaz-municipio', 'US', 1, 18.0480200000, -66.4926700000), (1143094, 1001449, 'Juncal', NULL, 'juncal', 'US', 1, 18.3138888900, -66.9191666700), (1143095, 1001449, 'Juncos', NULL, 'juncos', 'US', 1, 18.2275000000, -65.9211110000), (1143096, 1001449, 'La Alianza', NULL, 'la-alianza', 'US', 1, 18.3975000000, -66.6025000000), (1143097, 1001449, 'La Dolores', NULL, 'la-dolores', 'US', 1, 18.3755555600, -65.8558333300), (1143098, 1001449, 'La Fermina', NULL, 'la-fermina', 'US', 1, 18.1741700000, -65.8513900000), (1143099, 1001449, 'La Luisa', NULL, 'la-luisa', 'US', 1, 18.4488888900, -66.5100000000), (1143100, 1001449, 'La Parguera', NULL, 'la-parguera', 'US', 1, 17.9749700000, -67.0465700000), (1143101, 1001449, 'La Playa', NULL, 'la-playa', 'US', 1, 18.2875000000, -67.1869444400), (1143102, 1001449, 'La Plena', NULL, 'la-plena', 'US', 1, 18.0466300000, -66.2046100000), (1143103, 1001449, 'Lajas', NULL, 'lajas', 'US', 1, 18.0519388900, -67.0597194400), (1143104, 1001449, 'Lajas Municipio', NULL, 'lajas-municipio', 'US', 1, 18.0133000000, -67.0399000000), (1143105, 1001449, 'Lamboglia', NULL, 'lamboglia', 'US', 1, 17.9813600000, -65.9857200000), (1143106, 1001449, 'Lares', NULL, 'lares', 'US', 1, 18.2946700000, -66.8771200000), (1143107, 1001449, 'Las Marias', NULL, 'las-marias', 'US', 1, 18.2933333300, -67.1463888900), (1143108, 1001449, 'Las Marías Municipio', NULL, 'las-marias-municipio', 'US', 1, 18.2508700000, -66.9924000000), (1143109, 1001449, 'Las Ochenta', NULL, 'las-ochenta', 'US', 1, 17.9846900000, -66.3179500000), (1143110, 1001449, 'Las Ollas', NULL, 'las-ollas', 'US', 1, 18.0330555600, -66.4244444400), (1143111, 1001449, 'Las Piedras', NULL, 'las-piedras', 'US', 1, 18.1830100000, -65.8662700000), (1143112, 1001449, 'Las Piedras Municipio', NULL, 'las-piedras-municipio', 'US', 1, 18.1882900000, -65.8704400000), (1143113, 1001449, 'Levittown', NULL, 'levittown', 'US', 1, 18.4486111100, -66.1802777800), (1143114, 1001449, 'Liborio Negron Torres', NULL, 'liborio-negron-torres', 'US', 1, 18.0430555600, -66.9425000000), (1143115, 1001449, 'Lluveras', NULL, 'lluveras', 'US', 1, 18.0383333300, -66.9047222200), (1143116, 1001449, 'Lomas', NULL, 'lomas', 'US', 1, 18.2686111100, -65.9088888900), (1143117, 1001449, 'Los Llanos', NULL, 'los-llanos', 'US', 1, 18.0552777800, -66.4058333300), (1143118, 1001449, 'Loíza', NULL, 'loiza', 'US', 1, 18.4313400000, -65.8801600000), (1143119, 1001449, 'Luis Lloréns Torres', NULL, 'luis-llorens-torres', 'US', 1, 18.0569100000, -66.5268400000), (1143120, 1001449, 'Luis M. Cintron', NULL, 'luis-m-cintron', 'US', 1, 18.2997222200, -65.6386111100), (1143121, 1001449, 'Luquillo', NULL, 'luquillo', 'US', 1, 18.3725000000, -65.7166666700), (1143122, 1001449, 'Luquillo Municipio', NULL, 'luquillo-municipio', 'US', 1, 18.3396700000, -65.7246100000), (1143123, 1001449, 'Luyando', NULL, 'luyando', 'US', 1, 18.3644444400, -67.1575000000), (1143124, 1001449, 'Magas Arriba', NULL, 'magas-arriba', 'US', 1, 18.0175000000, -66.7691666700), (1143125, 1001449, 'Manatí', NULL, 'manati', 'US', 1, 18.4325000000, -66.4844444400), (1143126, 1001449, 'Maria Antonia', NULL, 'maria-antonia', 'US', 1, 17.9783333300, -66.8894444400), (1143127, 1001449, 'Mariano Colón', NULL, 'mariano-colon', 'US', 1, 18.0233333300, -66.3325000000), (1143128, 1001449, 'Maricao', NULL, 'maricao', 'US', 1, 18.1808330000, -66.9800000000), (1143129, 1001449, 'Maricao Municipio', NULL, 'maricao-municipio', 'US', 1, 18.1730100000, -66.9454600000), (1143130, 1001449, 'Martorell', NULL, 'martorell', 'US', 1, 18.0747200000, -65.8986100000), (1143131, 1001449, 'Marueño', NULL, 'marueno', 'US', 1, 18.0577200000, -66.6560300000), (1143132, 1001449, 'Maunabo', NULL, 'maunabo', 'US', 1, 18.0071900000, -65.8993300000), (1143133, 1001449, 'Maunabo Municipio', NULL, 'maunabo-municipio', 'US', 1, 18.0169100000, -65.9273800000), (1143134, 1001449, 'Mayagüez', NULL, 'mayaguez', 'US', 1, 18.2011111100, -67.1397222200), (1143135, 1001449, 'Miranda', NULL, 'miranda', 'US', 1, 18.3866666700, -66.3838888900), (1143136, 1001449, 'Moca', NULL, 'moca', 'US', 1, 18.3946700000, -67.1132400000), (1143137, 1001449, 'Moca Municipio', NULL, 'moca-municipio', 'US', 1, 18.3855000000, -67.0843500000), (1143138, 1001449, 'Monserrate', NULL, 'monserrate', 'US', 1, 18.4369400000, -66.3563900000), (1143139, 1001449, 'Monte Grande', NULL, 'monte-grande', 'US', 1, 18.0875000000, -67.1075000000), (1143140, 1001449, 'Mora', NULL, 'mora', 'US', 1, 18.4630555600, -67.0327777800), (1143141, 1001449, 'Morovis', NULL, 'morovis', 'US', 1, 18.3333333300, -66.4166666700), (1143142, 1001449, 'Mucarabones', NULL, 'mucarabones', 'US', 1, 18.3908333300, -66.2161111100), (1143143, 1001449, 'Naguabo', NULL, 'naguabo', 'US', 1, 18.2194444400, -65.7366666700), (1143144, 1001449, 'Naguabo Municipio', NULL, 'naguabo-municipio', 'US', 1, 18.2313500000, -65.7598800000), (1143145, 1001449, 'Naranjito', NULL, 'naranjito', 'US', 1, 18.3008330000, -66.2450000000), (1143146, 1001449, 'Naranjito Municipio', NULL, 'naranjito-municipio', 'US', 1, 18.2896800000, -66.2551700000), (1143147, 1001449, 'Olimpo', NULL, 'olimpo', 'US', 1, 18.0019444400, -66.1083333300), (1143148, 1001449, 'Orocovis', NULL, 'orocovis', 'US', 1, 18.2269440000, -66.3911110000), (1143149, 1001449, 'Orocovis Municipio', NULL, 'orocovis-municipio', 'US', 1, 18.2188500000, -66.4371200000), (1143150, 1001449, 'Pajonal', NULL, 'pajonal', 'US', 1, 18.3822222200, -66.5558333300), (1143151, 1001449, 'Palmarejo', NULL, 'palmarejo', 'US', 1, 18.0402777800, -67.0769444400), (1143152, 1001449, 'Palmas', NULL, 'palmas', 'US', 1, 17.9872222200, -66.0255555600), (1143153, 1001449, 'Palmer', NULL, 'palmer', 'US', 1, 18.3705555600, -65.7741666700), (1143154, 1001449, 'Palo Seco', NULL, 'palo-seco', 'US', 1, 18.0074700000, -65.9368300000), (1143155, 1001449, 'Palomas', NULL, 'palomas', 'US', 1, 18.0136111100, -66.8733333300), (1143156, 1001449, 'Parcelas La Milagrosa', NULL, 'parcelas-la-milagrosa', 'US', 1, 18.1708333300, -66.1883333300), (1143157, 1001449, 'Parcelas Nuevas', NULL, 'parcelas-nuevas', 'US', 1, 18.1402777800, -66.1725000000), (1143158, 1001449, 'Parcelas Peñuelas', NULL, 'parcelas-penuelas', 'US', 1, 17.9988888900, -66.3413888900), (1143159, 1001449, 'Pastos', NULL, 'pastos', 'US', 1, 18.1177777800, -66.2588888900), (1143160, 1001449, 'Patillas', NULL, 'patillas', 'US', 1, 18.0063500000, -66.0157200000), (1143161, 1001449, 'Patillas Municipio', NULL, 'patillas-municipio', 'US', 1, 18.0416300000, -66.0176600000), (1143162, 1001449, 'Peña Pobre', NULL, 'pena-pobre', 'US', 1, 18.2155555600, -65.8222222200), (1143163, 1001449, 'Peñuelas', NULL, 'penuelas', 'US', 1, 18.0593750000, -66.7225440000), (1143164, 1001449, 'Piedra Gorda', NULL, 'piedra-gorda', 'US', 1, 18.4341666700, -66.8877777800), (1143165, 1001449, 'Playa Fortuna', NULL, 'playa-fortuna', 'US', 1, 18.3797222200, -65.7452777800), (1143166, 1001449, 'Playita', NULL, 'playita', 'US', 1, 17.9605555600, -66.2897222200), (1143167, 1001449, 'Playita Cortada', NULL, 'playita-cortada', 'US', 1, 17.9850000000, -66.4391666700), (1143168, 1001449, 'Pole Ojea', NULL, 'pole-ojea', 'US', 1, 17.9750000000, -67.1852777800), (1143169, 1001449, 'Ponce', NULL, 'ponce', 'US', 1, 18.0000000000, -66.6166666700), (1143170, 1001449, 'Potala Pastillo', NULL, 'potala-pastillo', 'US', 1, 17.9913888900, -66.4966666700), (1143171, 1001449, 'Pueblito del Rio', NULL, 'pueblito-del-rio', 'US', 1, 18.2280555600, -65.8630555600), (1143172, 1001449, 'Puerto Real', NULL, 'puerto-real', 'US', 1, 18.0750000000, -67.1872222200), (1143173, 1001449, 'Punta Santiago', NULL, 'punta-santiago', 'US', 1, 18.1663888900, -65.7483333300), (1143174, 1001449, 'Pájaros', NULL, 'pajaros', 'US', 1, 18.3759206000, -66.1862550000), (1143175, 1001449, 'Quebrada', NULL, 'quebrada', 'US', 1, 18.3566666700, -66.8322222200), (1143176, 1001449, 'Quebradillas', NULL, 'quebradillas', 'US', 1, 18.4738888900, -66.9386111100), (1143177, 1001449, 'Quebradillas Municipio', NULL, 'quebradillas-municipio', 'US', 1, 18.4396700000, -66.9246200000), (1143178, 1001449, 'Rafael Capo', NULL, 'rafael-capo', 'US', 1, 18.4072222200, -66.7822222200), (1143179, 1001449, 'Rafael Gonzalez', NULL, 'rafael-gonzalez', 'US', 1, 18.4275000000, -66.7869444400), (1143180, 1001449, 'Rafael Hernandez', NULL, 'rafael-hernandez', 'US', 1, 18.4713888900, -67.0791666700), (1143181, 1001449, 'Ramos', NULL, 'ramos', 'US', 1, 18.3397222200, -65.7127777800), (1143182, 1001449, 'Rincón', NULL, 'rincon', 'US', 1, 18.3402300000, -67.2499000000), (1143183, 1001449, 'Rincón Municipio', NULL, 'rincon-municipio', 'US', 1, 18.3396700000, -67.2371300000), (1143184, 1001449, 'Rio Lajas', NULL, 'rio-lajas', 'US', 1, 18.3971915000, -66.2645390000), (1143185, 1001449, 'Rosa Sanchez', NULL, 'rosa-sanchez', 'US', 1, 18.0616666700, -65.9136111100), (1143186, 1001449, 'Río Blanco', NULL, 'rio-blanco', 'US', 1, 18.2183333300, -65.7886111100), (1143187, 1001449, 'Río Cañas Abajo', NULL, 'rio-canas-abajo', 'US', 1, 18.0383333300, -66.4677777800), (1143188, 1001449, 'Río Grande', NULL, 'rio-grande', 'US', 1, 18.3802300000, -65.8312700000), (1143189, 1001449, 'Río Grande Municipio', NULL, 'rio-grande-municipio', 'US', 1, 18.3416200000, -65.8176600000), (1143190, 1001449, 'Río Piedras', NULL, 'rio-piedras', 'US', 1, 18.3997222200, -66.0500000000), (1143191, 1001449, 'Sabana', NULL, 'sabana', 'US', 1, 18.4608333300, -66.3586111100), (1143192, 1001449, 'Sabana Eneas', NULL, 'sabana-eneas', 'US', 1, 18.0861111100, -67.0811111100), (1143193, 1001449, 'Sabana Grande', NULL, 'sabana-grande', 'US', 1, 18.0797222200, -66.9608333300), (1143194, 1001449, 'Sabana Grande Municipio', NULL, 'sabana-grande-municipio', 'US', 1, 18.0938500000, -66.9496200000), (1143195, 1001449, 'Sabana Hoyos', NULL, 'sabana-hoyos', 'US', 1, 18.4338888900, -66.6138888900), (1143196, 1001449, 'Sabana Seca', NULL, 'sabana-seca', 'US', 1, 18.4269444400, -66.1847222200), (1143197, 1001449, 'Salinas', NULL, 'salinas', 'US', 1, 18.0174600000, -66.2537800000), (1143198, 1001449, 'San Antonio', NULL, 'san-antonio', 'US', 1, 18.4516666700, -66.9497222200), (1143199, 1001449, 'San Germán Municipio', NULL, 'san-german-municipio', 'US', 1, 18.1146800000, -67.0357300000), (1143200, 1001449, 'San Isidro', NULL, 'san-isidro', 'US', 1, 18.3922222200, -65.8855555600), (1143201, 1001449, 'San José', NULL, 'san-jose', 'US', 1, 18.3983333300, -66.2558333300), (1143202, 1001449, 'San Juan', NULL, 'san-juan', 'US', 1, 18.4500000000, -66.0666666700), (1143203, 1001449, 'San Lorenzo', NULL, 'san-lorenzo', 'US', 1, 18.1898890000, -65.9686940000), (1143204, 1001449, 'San Sebastián', NULL, 'san-sebastian', 'US', 1, 18.3372222200, -66.9905555600), (1143205, 1001449, 'Santa Barbara', NULL, 'santa-barbara', 'US', 1, 18.3936111100, -65.9188888900), (1143206, 1001449, 'Santa Clara', NULL, 'santa-clara', 'US', 1, 18.2186111100, -66.1288888900), (1143207, 1001449, 'Santa Isabel', NULL, 'santa-isabel', 'US', 1, 17.9661110000, -66.4050000000), (1143208, 1001449, 'Santa Isabel Municipio', NULL, 'santa-isabel-municipio', 'US', 1, 17.9966300000, -66.3871100000), (1143209, 1001449, 'Santo Domingo', NULL, 'santo-domingo', 'US', 1, 18.0633333300, -66.7525000000), (1143210, 1001449, 'Santurce', NULL, 'santurce', 'US', 1, 18.4408333300, -66.0472222200), (1143211, 1001449, 'Stella', NULL, 'stella', 'US', 1, 18.3219444400, -67.2469444400), (1143212, 1001449, 'Sumidero', NULL, 'sumidero', 'US', 1, 18.2186111100, -66.1288888900), (1143213, 1001449, 'Suárez', NULL, 'suarez', 'US', 1, 18.4302777800, -65.8536111100), (1143214, 1001449, 'Tallaboa', NULL, 'tallaboa', 'US', 1, 17.9950000000, -66.7163888900), (1143215, 1001449, 'Tallaboa Alta', NULL, 'tallaboa-alta', 'US', 1, 18.0511111100, -66.7002777800), (1143216, 1001449, 'Tiburones', NULL, 'tiburones', 'US', 1, 18.4316666700, -66.5808333300), (1143217, 1001449, 'Tierras Nuevas Poniente', NULL, 'tierras-nuevas-poniente', 'US', 1, 18.4618900000, -66.4885000000), (1143218, 1001449, 'Toa Alta', NULL, 'toa-alta', 'US', 1, 18.3882800000, -66.2482200000), (1143219, 1001449, 'Toa Alta Municipio', NULL, 'toa-alta-municipio', 'US', 1, 18.3660600000, -66.2537800000), (1143220, 1001449, 'Toa Baja', NULL, 'toa-baja', 'US', 1, 18.4438890000, -66.2597220000), (1143221, 1001449, 'Trujillo Alto', NULL, 'trujillo-alto', 'US', 1, 18.3627780000, -66.0175000000), (1143222, 1001449, 'Trujillo Alto Municipio', NULL, 'trujillo-alto-municipio', 'US', 1, 18.3416200000, -66.0051700000), (1143223, 1001449, 'Utuado', NULL, 'utuado', 'US', 1, 18.2730100000, -66.6996200000), (1143224, 1001449, 'Utuado barrio-pueblo', NULL, 'utuado-barrio-pueblo', 'US', 1, 18.2658000000, -66.7064000000), (1143225, 1001449, 'Vega Alta', NULL, 'vega-alta', 'US', 1, 18.4121700000, -66.3312800000), (1143226, 1001449, 'Vega Alta Municipio', NULL, 'vega-alta-municipio', 'US', 1, 18.4105000000, -66.3329500000), (1143227, 1001449, 'Vega Baja', NULL, 'vega-baja', 'US', 1, 18.4461111100, -66.3875000000), (1143228, 1001449, 'Vieques', NULL, 'vieques', 'US', 1, 18.4250000000, -65.8330555600), (1143229, 1001449, 'Vieques Municipality', NULL, 'vieques-municipality', 'US', 1, 18.1291300000, -65.4371000000), (1143230, 1001449, 'Villalba', NULL, 'villalba', 'US', 1, 18.1272220000, -66.4922220000), (1143231, 1001449, 'Villalba Municipio', NULL, 'villalba-municipio', 'US', 1, 18.1291300000, -66.4773900000), (1143232, 1001449, 'Vázquez', NULL, 'vazquez', 'US', 1, 18.0658333300, -66.2386111100), (1143233, 1001449, 'Yabucoa', NULL, 'yabucoa', 'US', 1, 18.0505200000, -65.8793300000), (1143234, 1001449, 'Yabucoa Municipio', NULL, 'yabucoa-municipio', 'US', 1, 18.0730200000, -65.8871100000), (1143235, 1001449, 'Yauco', NULL, 'yauco', 'US', 1, 18.0369444400, -66.8502777800), (1143236, 1001449, 'Yaurel', NULL, 'yaurel', 'US', 1, 18.0269444400, -66.0572222200); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_city_area` -- CREATE TABLE `[[dbprefix]]t_city_area` ( `pk_i_id` int(10) unsigned NOT NULL, `fk_i_city_id` int(10) unsigned NOT NULL, `s_name` varchar(255) NOT NULL, PRIMARY KEY (`pk_i_id`), KEY `fk_i_city_id` (`fk_i_city_id`), KEY `idx_s_name` (`s_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_city_stats` -- CREATE TABLE `[[dbprefix]]t_city_stats` ( `fk_i_city_id` int(10) unsigned NOT NULL, `i_num_items` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`fk_i_city_id`), KEY `idx_num_items` (`i_num_items`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_country` -- CREATE TABLE `[[dbprefix]]t_country` ( `pk_c_code` char(2) NOT NULL, `s_name` varchar(80) NOT NULL, `s_name_native` varchar(80) DEFAULT NULL, `s_phone_code` varchar(10) DEFAULT NULL, `s_currency` varchar(10) DEFAULT NULL, `s_slug` varchar(80) NOT NULL DEFAULT '', PRIMARY KEY (`pk_c_code`), KEY `idx_s_slug` (`s_slug`), KEY `idx_s_name` (`s_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `[[dbprefix]]t_country` -- INSERT INTO `[[dbprefix]]t_country` VALUES ('US', 'United States', 'United States', '1', 'USD', 'united-states'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_country_stats` -- CREATE TABLE `[[dbprefix]]t_country_stats` ( `fk_c_country_code` char(2) NOT NULL, `i_num_items` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`fk_c_country_code`), KEY `idx_num_items` (`i_num_items`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_cron` -- CREATE TABLE `[[dbprefix]]t_cron` ( `e_type` enum('INSTANT','HOURLY','DAILY','WEEKLY','CUSTOM') NOT NULL, `d_last_exec` datetime NOT NULL, `d_next_exec` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `[[dbprefix]]t_cron` -- INSERT INTO `[[dbprefix]]t_cron` VALUES ('HOURLY', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), ('DAILY', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), ('WEEKLY', '0000-00-00 00:00:00', '0000-00-00 00:00:00'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_currency` -- CREATE TABLE `[[dbprefix]]t_currency` ( `pk_c_code` char(3) NOT NULL, `s_name` varchar(40) NOT NULL, `s_description` varchar(80) DEFAULT NULL, `b_enabled` tinyint(1) NOT NULL DEFAULT '1', PRIMARY KEY (`pk_c_code`), UNIQUE KEY `s_name` (`s_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `[[dbprefix]]t_currency` -- INSERT INTO `[[dbprefix]]t_currency` VALUES ('EUR', 'European Union Euro', '€', 1), ('GBP', 'United Kingdom Pound', '£', 1), ('USD', 'United States Dollar', '$', 1); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_item` -- CREATE TABLE `[[dbprefix]]t_item` ( `pk_i_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `fk_i_user_id` int(10) unsigned DEFAULT NULL, `fk_i_category_id` int(10) unsigned NOT NULL, `dt_pub_date` datetime NOT NULL, `dt_mod_date` datetime DEFAULT NULL, `f_price` float DEFAULT NULL, `i_price` bigint(20) DEFAULT NULL, `fk_c_currency_code` char(3) DEFAULT NULL, `s_contact_name` varchar(100) DEFAULT NULL, `s_contact_email` varchar(140) NOT NULL, `s_contact_phone` varchar(100) DEFAULT NULL, `s_contact_other` varchar(100) DEFAULT NULL, `s_ip` varchar(64) NOT NULL DEFAULT '', `b_premium` tinyint(1) NOT NULL DEFAULT '0', `b_enabled` tinyint(1) NOT NULL DEFAULT '1', `b_active` tinyint(1) NOT NULL DEFAULT '0', `b_spam` tinyint(1) NOT NULL DEFAULT '0', `s_secret` varchar(40) DEFAULT NULL, `b_show_email` tinyint(1) DEFAULT NULL, `b_show_phone` tinyint(1) DEFAULT '1', `i_renewed` int(3) DEFAULT '0', `dt_expiration` datetime NOT NULL DEFAULT '9999-12-31 23:59:59', PRIMARY KEY (`pk_i_id`), KEY `fk_i_user_id` (`fk_i_user_id`), KEY `idx_b_premium` (`b_premium`), KEY `idx_s_contact_email` (`s_contact_email`(10)), KEY `fk_i_category_id` (`fk_i_category_id`), KEY `fk_c_currency_code` (`fk_c_currency_code`), KEY `idx_pub_date` (`dt_pub_date`), KEY `idx_price` (`i_price`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; -- -- Dumping data for table `[[dbprefix]]t_item` -- INSERT INTO `[[dbprefix]]t_item` VALUES (1, NULL, 9, '[[regtime]]', NULL, NULL, NULL, NULL, 'Example author', 'osclass@example.com', '', '', '[[clientip]]', 0, 1, 1, 0, '[[s_secret]]', 0, 0, 0, '9999-12-31 23:59:59'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_item_comment` -- CREATE TABLE `[[dbprefix]]t_item_comment` ( `pk_i_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `fk_i_item_id` int(10) unsigned NOT NULL, `dt_pub_date` datetime NOT NULL, `s_title` varchar(200) NOT NULL, `s_author_name` varchar(100) NOT NULL, `s_author_email` varchar(100) NOT NULL, `s_body` text NOT NULL, `i_rating` int(3) DEFAULT NULL, `b_enabled` tinyint(1) NOT NULL DEFAULT '1', `b_active` tinyint(1) NOT NULL DEFAULT '0', `b_spam` tinyint(1) NOT NULL DEFAULT '0', `fk_i_user_id` int(10) unsigned DEFAULT NULL, PRIMARY KEY (`pk_i_id`), KEY `fk_i_item_id` (`fk_i_item_id`), KEY `fk_i_user_id` (`fk_i_user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_item_description` -- CREATE TABLE `[[dbprefix]]t_item_description` ( `fk_i_item_id` int(10) unsigned NOT NULL, `fk_c_locale_code` char(5) NOT NULL, `s_title` varchar(100) NOT NULL, `s_description` mediumtext NOT NULL, PRIMARY KEY (`fk_i_item_id`,`fk_c_locale_code`), FULLTEXT KEY `s_description` (`s_description`,`s_title`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `[[dbprefix]]t_item_description` -- INSERT INTO `[[dbprefix]]t_item_description` VALUES (1, 'en_US', 'Example Ad', 'Description of the example ad. Insert here some usefull description of your ad.'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_item_location` -- CREATE TABLE `[[dbprefix]]t_item_location` ( `fk_i_item_id` int(10) unsigned NOT NULL, `fk_c_country_code` char(2) DEFAULT NULL, `s_country` varchar(40) DEFAULT NULL, `s_country_native` varchar(80) DEFAULT NULL, `s_address` varchar(100) DEFAULT NULL, `s_zip` varchar(15) DEFAULT NULL, `fk_i_region_id` int(10) unsigned DEFAULT NULL, `s_region` varchar(100) DEFAULT NULL, `s_region_native` varchar(60) DEFAULT NULL, `fk_i_city_id` int(10) unsigned DEFAULT NULL, `s_city` varchar(100) DEFAULT NULL, `s_city_native` varchar(60) DEFAULT NULL, `fk_i_city_area_id` int(10) unsigned DEFAULT NULL, `s_city_area` varchar(200) DEFAULT NULL, `d_coord_lat` decimal(20,10) DEFAULT NULL, `d_coord_long` decimal(20,10) DEFAULT NULL, PRIMARY KEY (`fk_i_item_id`), KEY `fk_c_country_code` (`fk_c_country_code`), KEY `fk_i_region_id` (`fk_i_region_id`), KEY `fk_i_city_id` (`fk_i_city_id`), KEY `fk_i_city_area_id` (`fk_i_city_area_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `[[dbprefix]]t_item_location` -- INSERT INTO `[[dbprefix]]t_item_location` VALUES (1, NULL, 'Example country', '', '', NULL, NULL, 'Example region', NULL, NULL, 'Example city', NULL, NULL, '', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_item_meta` -- CREATE TABLE `[[dbprefix]]t_item_meta` ( `fk_i_item_id` int(10) unsigned NOT NULL, `fk_i_field_id` int(10) unsigned NOT NULL, `s_value` text, `s_multi` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`fk_i_item_id`,`fk_i_field_id`,`s_multi`), KEY `s_value` (`s_value`(255)), KEY `fk_i_field_id` (`fk_i_field_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_item_resource` -- CREATE TABLE `[[dbprefix]]t_item_resource` ( `pk_i_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `fk_i_item_id` int(10) unsigned NOT NULL, `s_name` varchar(60) DEFAULT NULL, `s_extension` varchar(10) DEFAULT NULL, `s_content_type` varchar(40) DEFAULT NULL, `s_path` varchar(250) DEFAULT NULL, PRIMARY KEY (`pk_i_id`), KEY `fk_i_item_id` (`fk_i_item_id`), KEY `idx_s_content_type` (`pk_i_id`,`s_content_type`(10)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_item_stats` -- CREATE TABLE `[[dbprefix]]t_item_stats` ( `fk_i_item_id` int(10) unsigned NOT NULL, `i_num_views` int(10) unsigned NOT NULL DEFAULT '0', `i_num_spam` int(10) unsigned NOT NULL DEFAULT '0', `i_num_repeated` int(10) unsigned NOT NULL DEFAULT '0', `i_num_bad_classified` int(10) unsigned NOT NULL DEFAULT '0', `i_num_offensive` int(10) unsigned NOT NULL DEFAULT '0', `i_num_expired` int(10) unsigned NOT NULL DEFAULT '0', `i_num_premium_views` int(10) unsigned NOT NULL DEFAULT '0', `dt_date` date NOT NULL, PRIMARY KEY (`fk_i_item_id`,`dt_date`), KEY `dt_date_fk_i_item_id` (`dt_date`,`fk_i_item_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `[[dbprefix]]t_item_stats` -- INSERT INTO `[[dbprefix]]t_item_stats` VALUES (1, 0, 0, 0, 0, 0, 0, 0, '[[regdate]]'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_keywords` -- CREATE TABLE `[[dbprefix]]t_keywords` ( `s_md5` varchar(32) NOT NULL, `fk_c_locale_code` char(5) NOT NULL, `s_original_text` varchar(255) NOT NULL, `s_anchor_text` varchar(255) NOT NULL, `s_normalized_text` varchar(255) NOT NULL, `fk_i_category_id` int(10) unsigned DEFAULT NULL, `fk_i_city_id` int(10) unsigned DEFAULT NULL, PRIMARY KEY (`s_md5`,`fk_c_locale_code`), KEY `fk_i_category_id` (`fk_i_category_id`), KEY `fk_i_city_id` (`fk_i_city_id`), KEY `fk_c_locale_code` (`fk_c_locale_code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_latest_searches` -- CREATE TABLE `[[dbprefix]]t_latest_searches` ( `d_date` datetime NOT NULL, `s_search` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_locale` -- CREATE TABLE `[[dbprefix]]t_locale` ( `pk_c_code` char(5) NOT NULL, `s_name` varchar(100) NOT NULL, `s_short_name` varchar(40) NOT NULL, `s_description` varchar(100) NOT NULL, `s_version` varchar(20) NOT NULL, `s_author_name` varchar(100) NOT NULL, `s_author_url` varchar(100) NOT NULL, `s_currency_format` varchar(50) NOT NULL, `s_dec_point` varchar(2) DEFAULT '.', `s_thousands_sep` varchar(2) DEFAULT '', `i_num_dec` tinyint(4) DEFAULT '2', `s_date_format` varchar(20) NOT NULL, `s_stop_words` text, `b_enabled` tinyint(1) NOT NULL DEFAULT '1', `b_enabled_bo` tinyint(1) NOT NULL DEFAULT '1', `b_locations_native` tinyint(1) DEFAULT '0', PRIMARY KEY (`pk_c_code`), UNIQUE KEY `s_short_name` (`s_short_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `[[dbprefix]]t_locale` -- INSERT INTO `[[dbprefix]]t_locale` VALUES ('en_US', 'English (US)', 'English', 'American english translation', '4.2.2', 'OsclassPoint', 'https://osclass-classifieds.com/', '{NUMBER} {CURRENCY}', '.', '', 2, 'm/d/Y', 'i,a,about,an,are,as,at,be,by,com,for,from,how,in,is,it,of,on,or,that,the,this,to,was,what,when,where,who,will,with,the', 1, 1, 0); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_locations_tmp` -- CREATE TABLE `[[dbprefix]]t_locations_tmp` ( `id_location` varchar(10) NOT NULL, `e_type` enum('COUNTRY','REGION','CITY') NOT NULL, PRIMARY KEY (`id_location`,`e_type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_log` -- CREATE TABLE `[[dbprefix]]t_log` ( `dt_date` datetime NOT NULL, `s_section` varchar(50) NOT NULL, `s_action` varchar(50) NOT NULL, `fk_i_id` int(10) unsigned NOT NULL, `s_data` varchar(250) NOT NULL, `s_ip` varchar(50) NOT NULL, `s_who` varchar(50) NOT NULL, `fk_i_who_id` int(10) unsigned NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `[[dbprefix]]t_log` -- -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_meta_categories` -- CREATE TABLE `[[dbprefix]]t_meta_categories` ( `fk_i_category_id` int(10) unsigned NOT NULL, `fk_i_field_id` int(10) unsigned NOT NULL, PRIMARY KEY (`fk_i_category_id`,`fk_i_field_id`), KEY `fk_i_field_id` (`fk_i_field_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_meta_fields` -- CREATE TABLE `[[dbprefix]]t_meta_fields` ( `pk_i_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `s_name` varchar(255) NOT NULL, `s_slug` varchar(255) NOT NULL, `e_type` enum('TEXT','TEXTAREA','DROPDOWN','RADIO','CHECKBOX','URL','DATE','DATEINTERVAL') NOT NULL DEFAULT 'TEXT', `s_options` varchar(2048) DEFAULT NULL, `b_required` tinyint(1) NOT NULL DEFAULT '0', `b_searchable` tinyint(1) NOT NULL DEFAULT '0', `i_order` int(3) NOT NULL DEFAULT '0', PRIMARY KEY (`pk_i_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_pages` -- CREATE TABLE `[[dbprefix]]t_pages` ( `pk_i_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `s_internal_name` varchar(50) DEFAULT NULL, `b_indelible` tinyint(1) NOT NULL DEFAULT '0', `b_link` tinyint(1) NOT NULL DEFAULT '1', `b_index` tinyint(1) NOT NULL DEFAULT '1', `dt_pub_date` datetime NOT NULL, `dt_mod_date` datetime DEFAULT NULL, `i_order` int(3) NOT NULL DEFAULT '0', `s_meta` text, PRIMARY KEY (`pk_i_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=24 ; -- -- Dumping data for table `[[dbprefix]]t_pages` -- INSERT INTO `[[dbprefix]]t_pages` VALUES (1, 'email_item_inquiry', 1, 1, 1, '[[regtime]]', NULL, 0, NULL), (2, 'email_user_validation', 1, 1, 1, '[[regtime]]', NULL, 0, NULL), (3, 'email_user_registration', 1, 1, 1, '[[regtime]]', NULL, 0, NULL), (4, 'email_send_friend', 1, 1, 1, '[[regtime]]', NULL, 0, NULL), (5, 'alert_email_hourly', 1, 1, 1, '[[regtime]]', NULL, 0, NULL), (6, 'alert_email_daily', 1, 1, 1, '[[regtime]]', NULL, 0, NULL), (7, 'alert_email_weekly', 1, 1, 1, '[[regtime]]', NULL, 0, NULL), (8, 'alert_email_instant', 1, 1, 1, '[[regtime]]', NULL, 0, NULL), (9, 'email_new_comment_admin', 1, 1, 1, '[[regtime]]', NULL, 0, NULL), (10, 'email_new_item_non_register_user', 1, 1, 1, '[[regtime]]', NULL, 0, NULL), (11, 'email_item_validation', 1, 1, 1, '[[regtime]]', NULL, 0, NULL), (12, 'email_admin_new_item', 1, 1, 1, '[[regtime]]', NULL, 0, NULL), (13, 'email_user_forgot_password', 1, 1, 1, '[[regtime]]', NULL, 0, NULL), (14, 'email_new_email', 1, 1, 1, '[[regtime]]', NULL, 0, NULL), (15, 'email_alert_validation', 1, 1, 1, '[[regtime]]', NULL, 0, NULL), (16, 'email_comment_validated', 1, 1, 1, '[[regtime]]', NULL, 0, NULL), (17, 'email_item_validation_non_register_user', 1, 1, 1, '[[regtime]]', NULL, 0, NULL), (18, 'email_admin_new_user', 1, 1, 1, '[[regtime]]', NULL, 0, NULL), (19, 'email_contact_user', 1, 1, 1, '[[regtime]]', NULL, 0, NULL), (20, 'email_new_comment_user', 1, 1, 1, '[[regtime]]', NULL, 0, NULL), (21, 'email_new_admin', 1, 1, 1, '[[regtime]]', NULL, 0, NULL), (22, 'email_warn_expiration', 1, 1, 1, '[[regtime]]', NULL, 0, NULL), (23, 'example_page', 0, 0, 1, '[[regtime]]', '[[regtime]]', 1, '""'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_pages_description` -- CREATE TABLE `[[dbprefix]]t_pages_description` ( `fk_i_pages_id` int(10) unsigned NOT NULL, `fk_c_locale_code` char(5) NOT NULL, `s_title` varchar(255) NOT NULL, `s_text` text, PRIMARY KEY (`fk_i_pages_id`,`fk_c_locale_code`), KEY `fk_c_locale_code` (`fk_c_locale_code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `[[dbprefix]]t_pages_description` -- INSERT INTO `[[dbprefix]]t_pages_description` VALUES (1, 'en_US', '{WEB_TITLE} - Someone has a question about your listing', '<p>Hi {CONTACT_NAME}!</p><p>{USER_NAME} ({USER_EMAIL}, {USER_PHONE}) left you a message about your listing <a href="{ITEM_URL}">{ITEM_TITLE}</a>:</p><p>{COMMENT}</p><p>Regards,</p><p>{WEB_LINK}</p>'), (2, 'en_US', 'Please validate your {WEB_TITLE} account', '<p>Hi {USER_NAME},</p><p>Please validate your registration by clicking on the following link: {VALIDATION_LINK}</p><p>Thank you!</p><p>Regards,</p><p>{WEB_LINK}</p>'), (3, 'en_US', '{WEB_TITLE} - Registration successful!', '<p>Hi {USER_NAME},</p><p>You''ve successfully registered for {WEB_LINK}.</p><p>Thank you!</p><p>Regards,</p><p>{WEB_LINK}</p>'), (4, 'en_US', 'Look at what I discovered on {WEB_TITLE}', '<p>Hi {FRIEND_NAME},</p><p>Your friend {USER_NAME} wants to share this listing with you <a href="{ITEM_URL}">{ITEM_TITLE}</a>.</p><p>Message:</p><p>{COMMENT}</p><p>Regards,</p><p>{WEB_TITLE}</p>'), (5, 'en_US', '{WEB_TITLE} - New listings in the last hour', '<p>Hi {USER_NAME},</p><p>New listings have been published in the last hour. Take a look at them:</p><p>{ADS}</p><p>-------------</p><p>To unsubscribe from this alert, click on: {UNSUB_LINK}</p><p>{WEB_LINK}</p>'), (6, 'en_US', '{WEB_TITLE} - New listings in the last day', '<p>Hi {USER_NAME},</p><p>New listings have been published in the last day. Take a look at them:</p><p>{ADS}</p><p>-------------</p><p>To unsubscribe from this alert, click on: {UNSUB_LINK}</p><p>{WEB_LINK}</p>'), (7, 'en_US', '{WEB_TITLE} - New listings in the last week', '<p>Hi {USER_NAME},</p><p>New listings have been published in the last week. Take a look at them:</p><p>{ADS}</p><p>-------------</p><p>To unsubscribe from this alert, click on: {UNSUB_LINK}</p><p>{WEB_LINK}</p>'), (8, 'en_US', '{WEB_TITLE} - New listings', '<p>Hi {USER_NAME},</p><p>A new listing has been published, check it out!</p><p>{ADS}</p><p>-------------</p><p>To unsubscribe from this alert, click on: {UNSUB_LINK}</p><p>{WEB_LINK}</p>'), (9, 'en_US', '{WEB_TITLE} - New comment', '<p>Someone commented on the listing <a href="{ITEM_URL}">{ITEM_TITLE}</a>.</p><p>Commenter: {COMMENT_AUTHOR}<br />Commenter''s email: {COMMENT_EMAIL}<br />Title: {COMMENT_TITLE}<br />Comment: {COMMENT_TEXT}</p>'), (10, 'en_US', '{WEB_TITLE} - Edit options for the listing {ITEM_TITLE}', '<p>Hi {USER_NAME},</p><p>You''re not registered at {WEB_LINK}, but you can still edit or delete the listing <a href="{ITEM_URL}">{ITEM_TITLE}</a> for a short period of time.</p><p>You can edit your listing by following this link: {EDIT_LINK}</p><p>You can delete your listing by following this link: {DELETE_LINK}</p><p>If you register as a user, you will have full access to editing options.</p><p>Regards,</p><p>{WEB_LINK}</p>'), (11, 'en_US', '{WEB_TITLE} - Validate your listing', '<p>Hi {USER_NAME},</p><p>You''re receiving this e-mail because a listing has been published at {WEB_LINK}. Please validate this listing by clicking on the following link: {VALIDATION_LINK}. If you didn''t publish this listing, please ignore this email.</p><p>Listing details:</p><p>Contact name: {USER_NAME}<br />Contact e-mail: {USER_EMAIL}</p><p>{ITEM_DESCRIPTION}</p><p>Url: {ITEM_URL}</p><p>Regards,</p><p>{WEB_LINK}</p>'), (12, 'en_US', '{WEB_TITLE} - A new listing has been published', '<p>Dear {WEB_TITLE} admin,</p><p>You''re receiving this email because a listing has been published at {WEB_LINK}.</p><p>Listing details:</p><p>Contact name: {USER_NAME}<br />Contact email: {USER_EMAIL}</p><p>{ITEM_DESCRIPTION}</p><p>Url: {ITEM_URL}</p><p>You can edit this listing by clicking on the following link: {EDIT_LINK}</p><p>Regards,</p><p>{WEB_LINK}</p>'), (13, 'en_US', '{WEB_TITLE} - Recover your password', '<p>Hi {USER_NAME},</p><p>We''ve sent you this e-mail because you''ve requested a password reminder. Follow this link to recover it: {PASSWORD_LINK}</p><p>The link will be deactivated in 24 hours.</p><p>If you didn''t request a password reminder, please ignore this message. This request was made from IP {IP_ADDRESS} on {DATE_TIME}</p><p>Regards,</p><p>{WEB_LINK}</p>'), (14, 'en_US', '{WEB_TITLE} - You requested an email change', '<p>Hi {USER_NAME}</p><p>You''re receiving this e-mail because you requested an e-mail change. Please confirm this new e-mail address by clicking on the following validation link: {VALIDATION_LINK}</p><p>Regards,</p><p>{WEB_LINK}</p>'), (15, 'en_US', '{WEB_TITLE} - Please validate your alert', '<p>Hi {USER_NAME},</p><p>Please validate your alert registration by clicking on the following link: {VALIDATION_LINK}</p><p>Thank you!</p><p>Regards,</p><p>{WEB_LINK}</p>'), (16, 'en_US', '{WEB_TITLE} - Your comment has been approved', '<p>Hi {COMMENT_AUTHOR},</p><p>Your comment on <a href="{ITEM_URL}">{ITEM_TITLE}</a> has been approved.</p><p>Regards,</p><p>{WEB_LINK}</p>'), (17, 'en_US', '{WEB_TITLE} - Validate your listing', '<p>Hi {USER_NAME},</p><p>You''re receiving this e-mail because you’ve published a listing at {WEB_LINK}. Please validate this listing by clicking on the following link: {VALIDATION_LINK}. If you didn''t publish this listing, please ignore this e-mail.</p><p>Listing details:</p><p>Contact name: {USER_NAME}<br />Contact e-mail: {USER_EMAIL}</p><p>{ITEM_DESCRIPTION}</p><p>Url: {ITEM_URL}</p><p>Even if you''re not registered at {WEB_LINK}, you can still edit or delete your listing:</p><p>You can edit your listing by following this link: {EDIT_LINK}</p><p>You can delete your listing by following this link: {DELETE_LINK}</p><p>Regards,</p><p>{WEB_LINK}</p>'), (18, 'en_US', '{WEB_TITLE} - A new user has registered', '<p>Dear {WEB_TITLE} admin,</p><p>You''re receiving this email because a new user has been created at {WEB_LINK}.</p><p>User details:</p><p>Name: {USER_NAME}<br />E-mail: {USER_EMAIL}</p><p>Regards,</p><p>{WEB_LINK}</p>'), (19, 'en_US', '{WEB_TITLE} - Someone has a question for you', '<p>Hi {CONTACT_NAME}!</p><p>{USER_NAME} ({USER_EMAIL}, {USER_PHONE}) left you a message:</p><p>{COMMENT}</p><p>Regards,</p><p>{WEB_LINK}</p>'), (20, 'en_US', '{WEB_TITLE} - Someone has commented on your listing', '<p>There''s a new comment on the listing: <a href="{ITEM_URL}">{ITEM_TITLE}</a>.</p><p>Author: {COMMENT_AUTHOR}<br />Author''s email: {COMMENT_EMAIL}<br />Title: {COMMENT_TITLE}<br />Comment: {COMMENT_TEXT}</p><p>{WEB_LINK}</p>'), (21, 'en_US', '{WEB_TITLE} - Success creating admin account!', '<p>Hi {ADMIN_NAME},</p><p>The admin of {WEB_LINK} has created an account for you,</p><ul><li>Username: {USERNAME}</li><li>Password: {PASSWORD}</li></ul><p>You can access the admin panel here {WEB_ADMIN_LINK}.</p><p>Thank you!</p><p>Regards,</p>'), (22, 'en_US', '{WEB_TITLE} - Your ad is about to expire', '<p>Hi {USER_NAME},</p><p>Your listing <a href="{ITEM_URL}">{ITEM_TITLE}</a> is about to expire at {WEB_LINK}.'), (23, 'en_US', 'Example page title', 'This is an example page description. This is a good place to put your Terms of Service or any other help information.'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_plugin_category` -- CREATE TABLE `[[dbprefix]]t_plugin_category` ( `s_plugin_name` varchar(40) NOT NULL, `fk_i_category_id` int(10) unsigned NOT NULL, KEY `fk_i_category_id` (`fk_i_category_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_preference` -- CREATE TABLE `[[dbprefix]]t_preference` ( `s_section` varchar(128) NOT NULL, `s_name` varchar(128) NOT NULL, `s_value` longtext NOT NULL, `e_type` enum('STRING','INTEGER','BOOLEAN') NOT NULL, UNIQUE KEY `s_section` (`s_section`,`s_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `[[dbprefix]]t_preference` -- INSERT INTO `[[dbprefix]]t_preference` VALUES ('osclass', 'active_plugins', '', 'STRING'), ('osclass', 'admindash_columns_hidden', '', 'STRING'), ('osclass', 'admindash_widgets_collapsed', '', 'STRING'), ('osclass', 'admindash_widgets_hidden', '', 'STRING'), ('osclass', 'admin_color_scheme', '', 'STRING'), ('osclass', 'admin_language', 'en_US', 'STRING'), ('osclass', 'admin_theme', 'omega', 'STRING'), ('osclass', 'admin_toolbar_front', '0', 'BOOLEAN'), ('osclass', 'akismetKey', '', 'STRING'), ('osclass', 'allowedExt', 'png,gif,jpg,jpeg', 'STRING'), ('osclass', 'allow_report_osclass', '0', 'BOOLEAN'), ('osclass', 'auto_cron', '1', 'BOOLEAN'), ('osclass', 'auto_update', 'disabled', 'STRING'), ('osclass', 'best_fit_image', '1', 'BOOLEAN'), ('osclass', 'breadcrumbs_hide', '', 'STRING'), ('osclass', 'breadcrumbs_hide_custom', '', 'STRING'), ('osclass', 'breadcrumbs_item_category', '1', 'BOOLEAN'), ('osclass', 'breadcrumbs_item_city', '0', 'BOOLEAN'), ('osclass', 'breadcrumbs_item_country', '0', 'BOOLEAN'), ('osclass', 'breadcrumbs_item_page_title', '1', 'BOOLEAN'), ('osclass', 'breadcrumbs_item_parent_categories', '0', 'BOOLEAN'), ('osclass', 'breadcrumbs_item_region', '0', 'BOOLEAN'), ('osclass', 'can_deactivate_items', '0', 'BOOLEAN'), ('osclass', 'comments_per_page', '10', 'INTEGER'), ('osclass', 'contactEmail', '[[admin_email]]', 'STRING'), ('osclass', 'contact_attachment', '0', 'BOOLEAN'), ('osclass', 'csrf_name', '[[csrf_name]]', 'STRING'), ('osclass', 'css_banned_pages', '', 'STRING'), ('osclass', 'css_banned_words', 'font,awesome', 'STRING'), ('osclass', 'css_merge', '0', 'BOOLEAN'), ('osclass', 'css_minify', '0', 'BOOLEAN'), ('osclass', 'currency', 'USD', 'STRING'), ('osclass', 'custom_css', '', 'STRING'), ('osclass', 'custom_html', '', 'STRING'), ('osclass', 'dateFormat', 'Y/m/d', 'STRING'), ('osclass', 'defaultOrderField@search', 'dt_pub_date', 'STRING'), ('osclass', 'defaultOrderType@search', '1', 'BOOLEAN'), ('osclass', 'defaultResultsPerPage@search', '12', 'INTEGER'), ('osclass', 'defaultShowAs@search', 'list', 'STRING'), ('osclass', 'description_character_length', '5000', 'INTEGER'), ('osclass', 'dimNormal', '640x480', 'STRING'), ('osclass', 'dimPreview', '480x340', 'STRING'), ('osclass', 'dimProfileImg', '180x180', 'STRING'), ('osclass', 'dimThumbnail', '240x200', 'STRING'), ('osclass', 'enabled_comments', '1', 'BOOLEAN'), ('osclass', 'enabled_recaptcha_items', '0', 'BOOLEAN'), ('osclass', 'enabled_renewal_items', '0', 'BOOLEAN'), ('osclass', 'enabled_tinymce_items', '0', 'BOOLEAN'), ('osclass', 'enabled_tinymce_users', '0', 'BOOLEAN'), ('osclass', 'enabled_users', '1', 'BOOLEAN'), ('osclass', 'enabled_user_registration', '1', 'BOOLEAN'), ('osclass', 'enabled_user_validation', '1', 'BOOLEAN'), ('osclass', 'enableField#f_price@items', '1', 'BOOLEAN'), ('osclass', 'enableField#images@items', '1', 'BOOLEAN'), ('osclass', 'enable_comment_rating', '0', 'BOOLEAN'), ('osclass', 'enable_profile_img', '1', 'BOOLEAN'), ('osclass', 'force_aspect_image', '0', 'BOOLEAN'), ('osclass', 'installed_plugins', '', 'STRING'), ('osclass', 'items_wait_time', '0', 'INTEGER'), ('osclass', 'item_attachment', '0', 'BOOLEAN'), ('osclass', 'item_post_redirect', '', 'STRING'), ('osclass', 'jquery_version', '1', 'STRING'), ('osclass', 'js_banned_pages', '', 'STRING'), ('osclass', 'js_banned_words', 'tiny', 'STRING'), ('osclass', 'js_merge', '0', 'BOOLEAN'), ('osclass', 'js_minify', '0', 'BOOLEAN'), ('osclass', 'keep_original_image', '1', 'BOOLEAN'), ('osclass', 'language', 'en_US', 'STRING'), ('osclass', 'last_version_check', '', 'STRING'), ('osclass', 'logged_user_item_validation', '1', 'BOOLEAN'), ('osclass', 'mailserver_auth', '', 'BOOLEAN'), ('osclass', 'mailserver_host', 'localhost', 'STRING'), ('osclass', 'mailserver_mail_from', '', 'STRING'), ('osclass', 'mailserver_name_from', '', 'STRING'), ('osclass', 'mailserver_password', '', 'STRING'), ('osclass', 'mailserver_pop', '', 'BOOLEAN'), ('osclass', 'mailserver_port', '', 'INTEGER'), ('osclass', 'mailserver_ssl', '', 'STRING'), ('osclass', 'mailserver_type', 'custom', 'STRING'), ('osclass', 'mailserver_username', '', 'STRING'), ('osclass', 'market_products_version', '', 'STRING'), ('osclass', 'maxLatestItems@home', '12', 'INTEGER'), ('osclass', 'maxResultsPerPage@search', '50', 'INTEGER'), ('osclass', 'maxSizeKb', '4096', 'INTEGER'), ('osclass', 'moderate_comments', '0', 'INTEGER'), ('osclass', 'moderate_items', '-1', 'INTEGER'), ('osclass', 'mod_rewrite_loaded', '0', 'BOOLEAN'), ('osclass', 'notify_contact_friends', '1', 'BOOLEAN'), ('osclass', 'notify_contact_item', '1', 'BOOLEAN'), ('osclass', 'notify_new_comment', '1', 'BOOLEAN'), ('osclass', 'notify_new_comment_user', '0', 'BOOLEAN'), ('osclass', 'notify_new_item', '1', 'BOOLEAN'), ('osclass', 'notify_new_user', '1', 'BOOLEAN'), ('osclass', 'numImages@items', '4', 'INTEGER'), ('osclass', 'num_rss_items', '50', 'INTEGER'), ('osclass', 'osclasspoint_api_key', '', 'STRING'), ('osclass', 'osclass_installed', '1', 'BOOLEAN'), ('osclass', 'pageDesc', '', 'STRING'), ('osclass', 'pageTitle', '[[site_name]]', 'STRING'), ('osclass', 'ping_search_engines', '0', 'BOOLEAN'), ('osclass', 'purge_latest_searches', '1000', 'STRING'), ('osclass', 'recaptchaPrivKey', '', 'STRING'), ('osclass', 'recaptchaPubKey', '', 'STRING'), ('osclass', 'recaptcha_version', '2', 'STRING'), ('osclass', 'regenerate_image_data', '', 'STRING'), ('osclass', 'reg_user_can_contact', '0', 'BOOLEAN'), ('osclass', 'reg_user_can_see_phone', '0', 'BOOLEAN'), ('osclass', 'reg_user_post', '0', 'BOOLEAN'), ('osclass', 'reg_user_post_comments', '0', 'BOOLEAN'), ('osclass', 'renewal_limit', '0', 'INTEGER'), ('osclass', 'renewal_update_pub_date', '0', 'BOOLEAN'), ('osclass', 'rewriteEnabled', '0', 'BOOLEAN'), ('osclass', 'rewrite_cat_url', '{CATEGORIES}', 'STRING'), ('osclass', 'rewrite_contact', 'contact', 'STRING'), ('osclass', 'rewrite_feed', 'feed', 'STRING'), ('osclass', 'rewrite_item_activate', 'item/activate', 'STRING'), ('osclass', 'rewrite_item_contact', 'item/contact', 'STRING'), ('osclass', 'rewrite_item_deactivate', 'item/deactivate', 'STRING'), ('osclass', 'rewrite_item_delete', 'item/delete', 'STRING'), ('osclass', 'rewrite_item_edit', 'item/edit', 'STRING'), ('osclass', 'rewrite_item_mark', 'item/mark', 'STRING'), ('osclass', 'rewrite_item_new', 'item/new', 'STRING'), ('osclass', 'rewrite_item_renew', 'item/renew', 'STRING'), ('osclass', 'rewrite_item_resource_delete', 'resource/delete', 'STRING'), ('osclass', 'rewrite_item_send_friend', 'item/send-friend', 'STRING'), ('osclass', 'rewrite_item_url', '{CATEGORIES}/{ITEM_TITLE}_i{ITEM_ID}', 'STRING'), ('osclass', 'rewrite_language', 'language', 'STRING'), ('osclass', 'rewrite_page_url', '{PAGE_SLUG}-p{PAGE_ID}', 'STRING'), ('osclass', 'rewrite_rules', '', 'STRING'), ('osclass', 'rewrite_search_category', 'category', 'STRING'), ('osclass', 'rewrite_search_city', 'city', 'STRING'), ('osclass', 'rewrite_search_city_area', 'cityarea', 'STRING'), ('osclass', 'rewrite_search_country', 'country', 'STRING'), ('osclass', 'rewrite_search_pattern', 'pattern', 'STRING'), ('osclass', 'rewrite_search_region', 'region', 'STRING'), ('osclass', 'rewrite_search_url', 'search', 'STRING'), ('osclass', 'rewrite_search_user', 'user', 'STRING'), ('osclass', 'rewrite_user_activate', 'user/activate', 'STRING'), ('osclass', 'rewrite_user_activate_alert', 'alert/confirm', 'STRING'), ('osclass', 'rewrite_user_alerts', 'user/alerts', 'STRING'), ('osclass', 'rewrite_user_change_email', 'email/change', 'STRING'), ('osclass', 'rewrite_user_change_email_confirm', 'email/confirm', 'STRING'), ('osclass', 'rewrite_user_change_password', 'password/change', 'STRING'), ('osclass', 'rewrite_user_change_username', 'username/change', 'STRING'), ('osclass', 'rewrite_user_dashboard', 'user/dashboard', 'STRING'), ('osclass', 'rewrite_user_forgot', 'user/forgot', 'STRING'), ('osclass', 'rewrite_user_items', 'user/items', 'STRING'), ('osclass', 'rewrite_user_login', 'user/login', 'STRING'), ('osclass', 'rewrite_user_logout', 'user/logout', 'STRING'), ('osclass', 'rewrite_user_profile', 'user/profile', 'STRING'), ('osclass', 'rewrite_user_recover', 'user/recover', 'STRING'), ('osclass', 'rewrite_user_register', 'user/register', 'STRING'), ('osclass', 'save_latest_searches', '0', 'BOOLEAN'), ('osclass', 'search_pattern_method', '', 'STRING'), ('osclass', 'selectable_parent_categories', '0', 'BOOLEAN'), ('osclass', 'seo_url_search_prefix', '', 'STRING'), ('osclass', 'structured_data', '0', 'BOOLEAN'), ('osclass', 'subdomain_host', '', 'STRING'), ('osclass', 'subdomain_type', '', 'STRING'), ('osclass', 'theme', 'sigma', 'STRING'), ('osclass', 'timeFormat', 'H:i', 'STRING'), ('osclass', 'timezone', 'Europe/Madrid', 'STRING'), ('osclass', 'title_character_length', '100', 'INTEGER'), ('osclass', 'update_core_json', '', 'STRING'), ('osclass', 'username_blacklist', 'admin,user', 'STRING'), ('osclass', 'use_imagick', '0', 'BOOLEAN'), ('osclass', 'version', '440', 'INTEGER'), ('osclass', 'warn_expiration', '0', 'INTEGER'), ('osclass', 'watermark_image', '', 'STRING'), ('osclass', 'watermark_place', 'centre', 'STRING'), ('osclass', 'watermark_text', '', 'STRING'), ('osclass', 'watermark_text_color', '', 'STRING'), ('osclass', 'weekStart', '0', 'STRING'), ('osclass', 'widget_data_api', '', 'STRING'), ('osclass', 'widget_data_blog', '', 'STRING'), ('osclass', 'widget_data_product', '', 'STRING'), ('osclass', 'widget_data_update', '', 'STRING'), ('sigma', 'defaultLocationShowAs', 'dropdown', 'STRING'), ('sigma', 'defaultShowAs@all', 'list', 'STRING'), ('sigma', 'donation', '0', 'STRING'), ('sigma', 'footer_link', '1', 'STRING'), ('sigma', 'keyword_placeholder', 'ie. PHP Programmer', 'STRING'), ('sigma', 'logo', 'sigma_logo.png', 'STRING'), ('sigma', 'rtl', '0', 'STRING'), ('sigma', 'version', '132', 'STRING'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_region` -- CREATE TABLE `[[dbprefix]]t_region` ( `pk_i_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `fk_c_country_code` char(2) NOT NULL, `s_name` varchar(60) NOT NULL, `s_name_native` varchar(60) DEFAULT NULL, `s_slug` varchar(60) NOT NULL DEFAULT '', `b_active` tinyint(1) NOT NULL DEFAULT '1', PRIMARY KEY (`pk_i_id`), KEY `fk_c_country_code` (`fk_c_country_code`), KEY `idx_s_name` (`s_name`), KEY `idx_s_slug` (`s_slug`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1004852 ; -- -- Dumping data for table `[[dbprefix]]t_region` -- INSERT INTO `[[dbprefix]]t_region` VALUES (1001398, 'US', 'Howland Island', NULL, 'howland-island', 1), (1001399, 'US', 'Delaware', NULL, 'delaware', 1), (1001400, 'US', 'Alaska', NULL, 'alaska', 1), (1001401, 'US', 'Maryland', NULL, 'maryland', 1), (1001402, 'US', 'Baker Island', NULL, 'baker-island', 1), (1001403, 'US', 'Kingman Reef', NULL, 'kingman-reef', 1), (1001404, 'US', 'New Hampshire', NULL, 'new-hampshire', 1), (1001405, 'US', 'Wake Island', NULL, 'wake-island', 1), (1001406, 'US', 'Kansas', NULL, 'kansas', 1), (1001407, 'US', 'Texas', NULL, 'texas', 1), (1001408, 'US', 'Nebraska', NULL, 'nebraska', 1), (1001409, 'US', 'Vermont', NULL, 'vermont', 1), (1001410, 'US', 'Jarvis Island', NULL, 'jarvis-island', 1), (1001411, 'US', 'Hawaii', NULL, 'hawaii', 1), (1001412, 'US', 'Guam', NULL, 'guam', 1), (1001413, 'US', 'United States Virgin Islands', NULL, 'united-states-virgin-islands', 1), (1001414, 'US', 'Utah', NULL, 'utah', 1), (1001415, 'US', 'Oregon', NULL, 'oregon', 1), (1001416, 'US', 'California', NULL, 'california', 1), (1001417, 'US', 'New Jersey', NULL, 'new-jersey', 1), (1001418, 'US', 'North Dakota', NULL, 'north-dakota', 1), (1001419, 'US', 'Kentucky', NULL, 'kentucky', 1), (1001420, 'US', 'Minnesota', NULL, 'minnesota', 1), (1001421, 'US', 'Oklahoma', NULL, 'oklahoma', 1), (1001422, 'US', 'Pennsylvania', NULL, 'pennsylvania', 1), (1001423, 'US', 'New Mexico', NULL, 'new-mexico', 1), (1001424, 'US', 'American Samoa', NULL, 'american-samoa', 1), (1001425, 'US', 'Illinois', NULL, 'illinois', 1), (1001426, 'US', 'Michigan', NULL, 'michigan', 1), (1001427, 'US', 'Virginia', NULL, 'virginia', 1), (1001428, 'US', 'Johnston Atoll', NULL, 'johnston-atoll', 1), (1001429, 'US', 'West Virginia', NULL, 'west-virginia', 1), (1001430, 'US', 'Mississippi', NULL, 'mississippi', 1), (1001431, 'US', 'Northern Mariana Islands', NULL, 'northern-mariana-islands', 1), (1001432, 'US', 'United States Minor Outlying Islands', NULL, 'united-states-minor-outlying-islands', 1), (1001433, 'US', 'Massachusetts', NULL, 'massachusetts', 1), (1001434, 'US', 'Arizona', NULL, 'arizona', 1), (1001435, 'US', 'Connecticut', NULL, 'connecticut', 1), (1001436, 'US', 'Florida', NULL, 'florida', 1), (1001437, 'US', 'District of Columbia', NULL, 'district-of-columbia', 1), (1001438, 'US', 'Midway Atoll', NULL, 'midway-atoll', 1), (1001439, 'US', 'Navassa Island', NULL, 'navassa-island', 1), (1001440, 'US', 'Indiana', NULL, 'indiana', 1), (1001441, 'US', 'Wisconsin', NULL, 'wisconsin', 1), (1001442, 'US', 'Wyoming', NULL, 'wyoming', 1), (1001443, 'US', 'South Carolina', NULL, 'south-carolina', 1), (1001444, 'US', 'Arkansas', NULL, 'arkansas', 1), (1001445, 'US', 'South Dakota', NULL, 'south-dakota', 1), (1001446, 'US', 'Montana', NULL, 'montana', 1), (1001447, 'US', 'North Carolina', NULL, 'north-carolina', 1), (1001448, 'US', 'Palmyra Atoll', NULL, 'palmyra-atoll', 1), (1001449, 'US', 'Puerto Rico', NULL, 'puerto-rico', 1), (1001450, 'US', 'Colorado', NULL, 'colorado', 1), (1001451, 'US', 'Missouri', NULL, 'missouri', 1), (1001452, 'US', 'New York', NULL, 'new-york', 1), (1001453, 'US', 'Maine', NULL, 'maine', 1), (1001454, 'US', 'Tennessee', NULL, 'tennessee', 1), (1001455, 'US', 'Georgia', NULL, 'georgia', 1), (1001456, 'US', 'Alabama', NULL, 'alabama', 1), (1001457, 'US', 'Louisiana', NULL, 'louisiana', 1), (1001458, 'US', 'Nevada', NULL, 'nevada', 1), (1001459, 'US', 'Iowa', NULL, 'iowa', 1), (1001460, 'US', 'Idaho', NULL, 'idaho', 1), (1001461, 'US', 'Rhode Island', NULL, 'rhode-island', 1), (1001462, 'US', 'Washington', NULL, 'washington', 1), (1004851, 'US', 'Ohio', NULL, 'ohio', 1); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_region_stats` -- CREATE TABLE `[[dbprefix]]t_region_stats` ( `fk_i_region_id` int(10) unsigned NOT NULL, `i_num_items` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`fk_i_region_id`), KEY `idx_num_items` (`i_num_items`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_user` -- CREATE TABLE `[[dbprefix]]t_user` ( `pk_i_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `dt_reg_date` datetime NOT NULL, `dt_mod_date` datetime DEFAULT NULL, `s_name` varchar(100) NOT NULL, `s_username` varchar(100) NOT NULL, `s_password` char(60) NOT NULL, `s_secret` varchar(40) DEFAULT NULL, `s_email` varchar(100) NOT NULL, `s_website` varchar(100) DEFAULT NULL, `s_phone_land` varchar(45) DEFAULT NULL, `s_phone_mobile` varchar(45) DEFAULT NULL, `b_enabled` tinyint(1) NOT NULL DEFAULT '1', `b_active` tinyint(1) NOT NULL DEFAULT '0', `s_pass_code` varchar(100) DEFAULT NULL, `s_pass_date` datetime DEFAULT NULL, `s_pass_ip` varchar(15) DEFAULT NULL, `fk_c_country_code` char(2) DEFAULT NULL, `s_country` varchar(40) DEFAULT NULL, `s_country_native` varchar(80) DEFAULT NULL, `s_address` varchar(100) DEFAULT NULL, `s_zip` varchar(15) DEFAULT NULL, `fk_i_region_id` int(10) unsigned DEFAULT NULL, `s_region` varchar(100) DEFAULT NULL, `s_region_native` varchar(60) DEFAULT NULL, `fk_i_city_id` int(10) unsigned DEFAULT NULL, `s_city` varchar(100) DEFAULT NULL, `s_city_native` varchar(60) DEFAULT NULL, `fk_i_city_area_id` int(10) unsigned DEFAULT NULL, `s_city_area` varchar(200) DEFAULT NULL, `d_coord_lat` decimal(20,10) DEFAULT NULL, `d_coord_long` decimal(20,10) DEFAULT NULL, `b_company` tinyint(1) NOT NULL DEFAULT '0', `i_items` int(10) unsigned DEFAULT '0', `i_comments` int(10) unsigned DEFAULT '0', `dt_access_date` datetime DEFAULT NULL, `s_access_ip` varchar(15) NOT NULL DEFAULT '', `i_login_fails` int(3) DEFAULT '0', `dt_login_fail_date` datetime DEFAULT NULL, `s_profile_img` varchar(100) DEFAULT NULL, PRIMARY KEY (`pk_i_id`), UNIQUE KEY `s_email` (`s_email`), KEY `idx_s_name` (`s_name`(6)), KEY `idx_s_username` (`s_username`), KEY `fk_c_country_code` (`fk_c_country_code`), KEY `fk_i_region_id` (`fk_i_region_id`), KEY `fk_i_city_id` (`fk_i_city_id`), KEY `fk_i_city_area_id` (`fk_i_city_area_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_user_description` -- CREATE TABLE `[[dbprefix]]t_user_description` ( `fk_i_user_id` int(10) unsigned NOT NULL, `fk_c_locale_code` char(5) NOT NULL, `s_info` text, PRIMARY KEY (`fk_i_user_id`,`fk_c_locale_code`), KEY `fk_c_locale_code` (`fk_c_locale_code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_user_email_tmp` -- CREATE TABLE `[[dbprefix]]t_user_email_tmp` ( `fk_i_user_id` int(10) unsigned NOT NULL, `s_new_email` varchar(100) NOT NULL, `dt_date` datetime NOT NULL, PRIMARY KEY (`fk_i_user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]t_widget` -- CREATE TABLE `[[dbprefix]]t_widget` ( `pk_i_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `s_description` varchar(40) NOT NULL, `s_location` varchar(40) NOT NULL, `e_kind` enum('TEXT','HTML') NOT NULL, `s_content` mediumtext NOT NULL, PRIMARY KEY (`pk_i_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Constraints for dumped tables -- -- -- Constraints for table `[[dbprefix]]t_category` -- ALTER TABLE `[[dbprefix]]t_category` ADD CONSTRAINT `[[dbprefix]]t_category_ibfk_1` FOREIGN KEY (`fk_i_parent_id`) REFERENCES `[[dbprefix]]t_category` (`pk_i_id`); -- -- Constraints for table `[[dbprefix]]t_category_description` -- ALTER TABLE `[[dbprefix]]t_category_description` ADD CONSTRAINT `[[dbprefix]]t_category_description_ibfk_1` FOREIGN KEY (`fk_i_category_id`) REFERENCES `[[dbprefix]]t_category` (`pk_i_id`), ADD CONSTRAINT `[[dbprefix]]t_category_description_ibfk_2` FOREIGN KEY (`fk_c_locale_code`) REFERENCES `[[dbprefix]]t_locale` (`pk_c_code`); -- -- Constraints for table `[[dbprefix]]t_category_stats` -- ALTER TABLE `[[dbprefix]]t_category_stats` ADD CONSTRAINT `[[dbprefix]]t_category_stats_ibfk_1` FOREIGN KEY (`fk_i_category_id`) REFERENCES `[[dbprefix]]t_category` (`pk_i_id`); -- -- Constraints for table `[[dbprefix]]t_city` -- ALTER TABLE `[[dbprefix]]t_city` ADD CONSTRAINT `[[dbprefix]]t_city_ibfk_1` FOREIGN KEY (`fk_i_region_id`) REFERENCES `[[dbprefix]]t_region` (`pk_i_id`), ADD CONSTRAINT `[[dbprefix]]t_city_ibfk_2` FOREIGN KEY (`fk_c_country_code`) REFERENCES `[[dbprefix]]t_country` (`pk_c_code`); -- -- Constraints for table `[[dbprefix]]t_city_area` -- ALTER TABLE `[[dbprefix]]t_city_area` ADD CONSTRAINT `[[dbprefix]]t_city_area_ibfk_1` FOREIGN KEY (`fk_i_city_id`) REFERENCES `[[dbprefix]]t_city` (`pk_i_id`); -- -- Constraints for table `[[dbprefix]]t_city_stats` -- ALTER TABLE `[[dbprefix]]t_city_stats` ADD CONSTRAINT `[[dbprefix]]t_city_stats_ibfk_1` FOREIGN KEY (`fk_i_city_id`) REFERENCES `[[dbprefix]]t_city` (`pk_i_id`); -- -- Constraints for table `[[dbprefix]]t_country_stats` -- ALTER TABLE `[[dbprefix]]t_country_stats` ADD CONSTRAINT `[[dbprefix]]t_country_stats_ibfk_1` FOREIGN KEY (`fk_c_country_code`) REFERENCES `[[dbprefix]]t_country` (`pk_c_code`); -- -- Constraints for table `[[dbprefix]]t_item` -- ALTER TABLE `[[dbprefix]]t_item` ADD CONSTRAINT `[[dbprefix]]t_item_ibfk_1` FOREIGN KEY (`fk_i_user_id`) REFERENCES `[[dbprefix]]t_user` (`pk_i_id`), ADD CONSTRAINT `[[dbprefix]]t_item_ibfk_2` FOREIGN KEY (`fk_i_category_id`) REFERENCES `[[dbprefix]]t_category` (`pk_i_id`), ADD CONSTRAINT `[[dbprefix]]t_item_ibfk_3` FOREIGN KEY (`fk_c_currency_code`) REFERENCES `[[dbprefix]]t_currency` (`pk_c_code`); -- -- Constraints for table `[[dbprefix]]t_item_comment` -- ALTER TABLE `[[dbprefix]]t_item_comment` ADD CONSTRAINT `[[dbprefix]]t_item_comment_ibfk_1` FOREIGN KEY (`fk_i_item_id`) REFERENCES `[[dbprefix]]t_item` (`pk_i_id`), ADD CONSTRAINT `[[dbprefix]]t_item_comment_ibfk_2` FOREIGN KEY (`fk_i_user_id`) REFERENCES `[[dbprefix]]t_user` (`pk_i_id`); -- -- Constraints for table `[[dbprefix]]t_item_location` -- ALTER TABLE `[[dbprefix]]t_item_location` ADD CONSTRAINT `[[dbprefix]]t_item_location_ibfk_1` FOREIGN KEY (`fk_i_item_id`) REFERENCES `[[dbprefix]]t_item` (`pk_i_id`), ADD CONSTRAINT `[[dbprefix]]t_item_location_ibfk_2` FOREIGN KEY (`fk_c_country_code`) REFERENCES `[[dbprefix]]t_country` (`pk_c_code`), ADD CONSTRAINT `[[dbprefix]]t_item_location_ibfk_3` FOREIGN KEY (`fk_i_region_id`) REFERENCES `[[dbprefix]]t_region` (`pk_i_id`), ADD CONSTRAINT `[[dbprefix]]t_item_location_ibfk_4` FOREIGN KEY (`fk_i_city_id`) REFERENCES `[[dbprefix]]t_city` (`pk_i_id`), ADD CONSTRAINT `[[dbprefix]]t_item_location_ibfk_5` FOREIGN KEY (`fk_i_city_area_id`) REFERENCES `[[dbprefix]]t_city_area` (`pk_i_id`); -- -- Constraints for table `[[dbprefix]]t_item_meta` -- ALTER TABLE `[[dbprefix]]t_item_meta` ADD CONSTRAINT `[[dbprefix]]t_item_meta_ibfk_1` FOREIGN KEY (`fk_i_item_id`) REFERENCES `[[dbprefix]]t_item` (`pk_i_id`), ADD CONSTRAINT `[[dbprefix]]t_item_meta_ibfk_2` FOREIGN KEY (`fk_i_field_id`) REFERENCES `[[dbprefix]]t_meta_fields` (`pk_i_id`); -- -- Constraints for table `[[dbprefix]]t_item_resource` -- ALTER TABLE `[[dbprefix]]t_item_resource` ADD CONSTRAINT `[[dbprefix]]t_item_resource_ibfk_1` FOREIGN KEY (`fk_i_item_id`) REFERENCES `[[dbprefix]]t_item` (`pk_i_id`); -- -- Constraints for table `[[dbprefix]]t_item_stats` -- ALTER TABLE `[[dbprefix]]t_item_stats` ADD CONSTRAINT `[[dbprefix]]t_item_stats_ibfk_1` FOREIGN KEY (`fk_i_item_id`) REFERENCES `[[dbprefix]]t_item` (`pk_i_id`); -- -- Constraints for table `[[dbprefix]]t_keywords` -- ALTER TABLE `[[dbprefix]]t_keywords` ADD CONSTRAINT `[[dbprefix]]t_keywords_ibfk_1` FOREIGN KEY (`fk_i_category_id`) REFERENCES `[[dbprefix]]t_category` (`pk_i_id`), ADD CONSTRAINT `[[dbprefix]]t_keywords_ibfk_2` FOREIGN KEY (`fk_i_city_id`) REFERENCES `[[dbprefix]]t_city` (`pk_i_id`), ADD CONSTRAINT `[[dbprefix]]t_keywords_ibfk_3` FOREIGN KEY (`fk_c_locale_code`) REFERENCES `[[dbprefix]]t_locale` (`pk_c_code`); -- -- Constraints for table `[[dbprefix]]t_meta_categories` -- ALTER TABLE `[[dbprefix]]t_meta_categories` ADD CONSTRAINT `[[dbprefix]]t_meta_categories_ibfk_1` FOREIGN KEY (`fk_i_category_id`) REFERENCES `[[dbprefix]]t_category` (`pk_i_id`), ADD CONSTRAINT `[[dbprefix]]t_meta_categories_ibfk_2` FOREIGN KEY (`fk_i_field_id`) REFERENCES `[[dbprefix]]t_meta_fields` (`pk_i_id`); -- -- Constraints for table `[[dbprefix]]t_pages_description` -- ALTER TABLE `[[dbprefix]]t_pages_description` ADD CONSTRAINT `[[dbprefix]]t_pages_description_ibfk_1` FOREIGN KEY (`fk_i_pages_id`) REFERENCES `[[dbprefix]]t_pages` (`pk_i_id`), ADD CONSTRAINT `[[dbprefix]]t_pages_description_ibfk_2` FOREIGN KEY (`fk_c_locale_code`) REFERENCES `[[dbprefix]]t_locale` (`pk_c_code`); -- -- Constraints for table `[[dbprefix]]t_plugin_category` -- ALTER TABLE `[[dbprefix]]t_plugin_category` ADD CONSTRAINT `[[dbprefix]]t_plugin_category_ibfk_1` FOREIGN KEY (`fk_i_category_id`) REFERENCES `[[dbprefix]]t_category` (`pk_i_id`); -- -- Constraints for table `[[dbprefix]]t_region` -- ALTER TABLE `[[dbprefix]]t_region` ADD CONSTRAINT `[[dbprefix]]t_region_ibfk_1` FOREIGN KEY (`fk_c_country_code`) REFERENCES `[[dbprefix]]t_country` (`pk_c_code`); -- -- Constraints for table `[[dbprefix]]t_region_stats` -- ALTER TABLE `[[dbprefix]]t_region_stats` ADD CONSTRAINT `[[dbprefix]]t_region_stats_ibfk_1` FOREIGN KEY (`fk_i_region_id`) REFERENCES `[[dbprefix]]t_region` (`pk_i_id`); -- -- Constraints for table `[[dbprefix]]t_user` -- ALTER TABLE `[[dbprefix]]t_user` ADD CONSTRAINT `[[dbprefix]]t_user_ibfk_1` FOREIGN KEY (`fk_c_country_code`) REFERENCES `[[dbprefix]]t_country` (`pk_c_code`), ADD CONSTRAINT `[[dbprefix]]t_user_ibfk_2` FOREIGN KEY (`fk_i_region_id`) REFERENCES `[[dbprefix]]t_region` (`pk_i_id`), ADD CONSTRAINT `[[dbprefix]]t_user_ibfk_3` FOREIGN KEY (`fk_i_city_id`) REFERENCES `[[dbprefix]]t_city` (`pk_i_id`), ADD CONSTRAINT `[[dbprefix]]t_user_ibfk_4` FOREIGN KEY (`fk_i_city_area_id`) REFERENCES `[[dbprefix]]t_city_area` (`pk_i_id`); -- -- Constraints for table `[[dbprefix]]t_user_description` -- ALTER TABLE `[[dbprefix]]t_user_description` ADD CONSTRAINT `[[dbprefix]]t_user_description_ibfk_1` FOREIGN KEY (`fk_i_user_id`) REFERENCES `[[dbprefix]]t_user` (`pk_i_id`), ADD CONSTRAINT `[[dbprefix]]t_user_description_ibfk_2` FOREIGN KEY (`fk_c_locale_code`) REFERENCES `[[dbprefix]]t_locale` (`pk_c_code`); -- -- Constraints for table `[[dbprefix]]t_user_email_tmp` -- ALTER TABLE `[[dbprefix]]t_user_email_tmp` ADD CONSTRAINT `[[dbprefix]]t_user_email_tmp_ibfk_1` FOREIGN KEY (`fk_i_user_id`) REFERENCES `[[dbprefix]]t_user` (`pk_i_id`); /*!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 */;