line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# ABSTRACT: City Directive for Validation Class Field Definitions |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
package Validation::Class::Directive::City; |
4
|
|
|
|
|
|
|
|
5
|
108
|
|
|
108
|
|
290386
|
use utf8; |
|
108
|
|
|
|
|
724
|
|
|
108
|
|
|
|
|
740
|
|
6
|
108
|
|
|
108
|
|
3222
|
use strict; |
|
108
|
|
|
|
|
220
|
|
|
108
|
|
|
|
|
2294
|
|
7
|
108
|
|
|
108
|
|
546
|
use warnings; |
|
108
|
|
|
|
|
193
|
|
|
108
|
|
|
|
|
3025
|
|
8
|
|
|
|
|
|
|
|
9
|
108
|
|
|
108
|
|
522
|
use base 'Validation::Class::Directive'; |
|
108
|
|
|
|
|
199
|
|
|
108
|
|
|
|
|
8821
|
|
10
|
|
|
|
|
|
|
|
11
|
108
|
|
|
108
|
|
570
|
use Validation::Class::Util; |
|
108
|
|
|
|
|
202
|
|
|
108
|
|
|
|
|
725
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
our $VERSION = '7.900057'; # VERSION |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
has 'mixin' => 1; |
17
|
|
|
|
|
|
|
has 'field' => 1; |
18
|
|
|
|
|
|
|
has 'multi' => 0; |
19
|
|
|
|
|
|
|
has 'message' => '%s is not a valid US city'; |
20
|
|
|
|
|
|
|
has 'regexp' => sub {sprintf'^(%s)$',join'|',map{quotemeta}@{shift->cities}}; |
21
|
|
|
|
|
|
|
has 'cities' => sub {[ # u.s. cities and places |
22
|
|
|
|
|
|
|
'Aaronsburg', |
23
|
|
|
|
|
|
|
'Abbeville', |
24
|
|
|
|
|
|
|
'Abbotsford', |
25
|
|
|
|
|
|
|
'Abbott', |
26
|
|
|
|
|
|
|
'Abbottstown', |
27
|
|
|
|
|
|
|
'Abbyville', |
28
|
|
|
|
|
|
|
'Abercrombie', |
29
|
|
|
|
|
|
|
'Aberdeen', |
30
|
|
|
|
|
|
|
'Aberdeen Gardens', |
31
|
|
|
|
|
|
|
'Aberdeen Proving Ground', |
32
|
|
|
|
|
|
|
'Abernathy', |
33
|
|
|
|
|
|
|
'Abie', |
34
|
|
|
|
|
|
|
'Abilene', |
35
|
|
|
|
|
|
|
'Abingdon', |
36
|
|
|
|
|
|
|
'Abington', |
37
|
|
|
|
|
|
|
'Abita Springs', |
38
|
|
|
|
|
|
|
'Abram-Perezville', |
39
|
|
|
|
|
|
|
'Absarokee', |
40
|
|
|
|
|
|
|
'Absecon', |
41
|
|
|
|
|
|
|
'Accident', |
42
|
|
|
|
|
|
|
'Accokeek', |
43
|
|
|
|
|
|
|
'Accomac', |
44
|
|
|
|
|
|
|
'Accord', |
45
|
|
|
|
|
|
|
'Aceitunas', |
46
|
|
|
|
|
|
|
'Acequia', |
47
|
|
|
|
|
|
|
'Achille', |
48
|
|
|
|
|
|
|
'Ackerly', |
49
|
|
|
|
|
|
|
'Ackerman', |
50
|
|
|
|
|
|
|
'Ackley', |
51
|
|
|
|
|
|
|
'Ackworth', |
52
|
|
|
|
|
|
|
'Acme', |
53
|
|
|
|
|
|
|
'Acomita Lake', |
54
|
|
|
|
|
|
|
'Acres Green', |
55
|
|
|
|
|
|
|
'Acton', |
56
|
|
|
|
|
|
|
'Acushnet Center', |
57
|
|
|
|
|
|
|
'Acworth', |
58
|
|
|
|
|
|
|
'Ada', |
59
|
|
|
|
|
|
|
'Adair', |
60
|
|
|
|
|
|
|
'Adair Village', |
61
|
|
|
|
|
|
|
'Adairsville', |
62
|
|
|
|
|
|
|
'Adairville', |
63
|
|
|
|
|
|
|
'Adak', |
64
|
|
|
|
|
|
|
'Adams', |
65
|
|
|
|
|
|
|
'Adams Center', |
66
|
|
|
|
|
|
|
'Adamsburg', |
67
|
|
|
|
|
|
|
'Adamstown', |
68
|
|
|
|
|
|
|
'Adamsville', |
69
|
|
|
|
|
|
|
'Addieville', |
70
|
|
|
|
|
|
|
'Addington', |
71
|
|
|
|
|
|
|
'Addis', |
72
|
|
|
|
|
|
|
'Addison', |
73
|
|
|
|
|
|
|
'Addison (Webster Springs)', |
74
|
|
|
|
|
|
|
'Addyston', |
75
|
|
|
|
|
|
|
'Adel', |
76
|
|
|
|
|
|
|
'Adelanto', |
77
|
|
|
|
|
|
|
'Adeline', |
78
|
|
|
|
|
|
|
'Adell', |
79
|
|
|
|
|
|
|
'Adelphi', |
80
|
|
|
|
|
|
|
'Adena', |
81
|
|
|
|
|
|
|
'Adjuntas', |
82
|
|
|
|
|
|
|
'Admire', |
83
|
|
|
|
|
|
|
'Adona', |
84
|
|
|
|
|
|
|
'Adrian', |
85
|
|
|
|
|
|
|
'Advance', |
86
|
|
|
|
|
|
|
'Adwolf', |
87
|
|
|
|
|
|
|
'Affton', |
88
|
|
|
|
|
|
|
'Afton', |
89
|
|
|
|
|
|
|
'Agar', |
90
|
|
|
|
|
|
|
'Agawam', |
91
|
|
|
|
|
|
|
'Agency', |
92
|
|
|
|
|
|
|
'Agenda', |
93
|
|
|
|
|
|
|
'Agoura Hills', |
94
|
|
|
|
|
|
|
'Agra', |
95
|
|
|
|
|
|
|
'Agua Dulce', |
96
|
|
|
|
|
|
|
'Agua Fria', |
97
|
|
|
|
|
|
|
'Aguada', |
98
|
|
|
|
|
|
|
'Aguadilla', |
99
|
|
|
|
|
|
|
'Aguas Buenas', |
100
|
|
|
|
|
|
|
'Aguas Claras', |
101
|
|
|
|
|
|
|
'Aguilar', |
102
|
|
|
|
|
|
|
'Aguilita', |
103
|
|
|
|
|
|
|
'Ahmeek', |
104
|
|
|
|
|
|
|
'Ahoskie', |
105
|
|
|
|
|
|
|
'Ahtanum', |
106
|
|
|
|
|
|
|
'Ahuimanu', |
107
|
|
|
|
|
|
|
'Aibonito', |
108
|
|
|
|
|
|
|
'Aiea', |
109
|
|
|
|
|
|
|
'Aiken', |
110
|
|
|
|
|
|
|
'Ailey', |
111
|
|
|
|
|
|
|
'Ainaloa', |
112
|
|
|
|
|
|
|
'Ainsworth', |
113
|
|
|
|
|
|
|
'Air Force Academy', |
114
|
|
|
|
|
|
|
'Airmont', |
115
|
|
|
|
|
|
|
'Airport Drive', |
116
|
|
|
|
|
|
|
'Airport Road', |
117
|
|
|
|
|
|
|
'Airport Road Addition', |
118
|
|
|
|
|
|
|
'Airway Heights', |
119
|
|
|
|
|
|
|
'Aitkin', |
120
|
|
|
|
|
|
|
'Ajo', |
121
|
|
|
|
|
|
|
'Ak-Chin Village', |
122
|
|
|
|
|
|
|
'Akaska', |
123
|
|
|
|
|
|
|
'Akeley', |
124
|
|
|
|
|
|
|
'Akhiok', |
125
|
|
|
|
|
|
|
'Akiachak', |
126
|
|
|
|
|
|
|
'Akiak', |
127
|
|
|
|
|
|
|
'Akins', |
128
|
|
|
|
|
|
|
'Akron', |
129
|
|
|
|
|
|
|
'Akutan', |
130
|
|
|
|
|
|
|
'Alabaster', |
131
|
|
|
|
|
|
|
'Alachua', |
132
|
|
|
|
|
|
|
'Alakanuk', |
133
|
|
|
|
|
|
|
'Alamance', |
134
|
|
|
|
|
|
|
'Alameda', |
135
|
|
|
|
|
|
|
'Alamo', |
136
|
|
|
|
|
|
|
'Alamo Heights', |
137
|
|
|
|
|
|
|
'Alamogordo', |
138
|
|
|
|
|
|
|
'Alamosa', |
139
|
|
|
|
|
|
|
'Alamosa East', |
140
|
|
|
|
|
|
|
'Alanson', |
141
|
|
|
|
|
|
|
'Alapaha', |
142
|
|
|
|
|
|
|
'Alatna', |
143
|
|
|
|
|
|
|
'Alba', |
144
|
|
|
|
|
|
|
'Albany', |
145
|
|
|
|
|
|
|
'Albee', |
146
|
|
|
|
|
|
|
'Albemarle', |
147
|
|
|
|
|
|
|
'Albers', |
148
|
|
|
|
|
|
|
'Albert', |
149
|
|
|
|
|
|
|
'Albert City', |
150
|
|
|
|
|
|
|
'Albert Lea', |
151
|
|
|
|
|
|
|
'Alberta', |
152
|
|
|
|
|
|
|
'Alberton', |
153
|
|
|
|
|
|
|
'Albertson', |
154
|
|
|
|
|
|
|
'Albertville', |
155
|
|
|
|
|
|
|
'Albia', |
156
|
|
|
|
|
|
|
'Albin', |
157
|
|
|
|
|
|
|
'Albion', |
158
|
|
|
|
|
|
|
'Albright', |
159
|
|
|
|
|
|
|
'Albuquerque', |
160
|
|
|
|
|
|
|
'Alburg', |
161
|
|
|
|
|
|
|
'Alburnett', |
162
|
|
|
|
|
|
|
'Alburtis', |
163
|
|
|
|
|
|
|
'Alcalde', |
164
|
|
|
|
|
|
|
'Alcan Border', |
165
|
|
|
|
|
|
|
'Alcester', |
166
|
|
|
|
|
|
|
'Alcoa', |
167
|
|
|
|
|
|
|
'Alcova', |
168
|
|
|
|
|
|
|
'Alda', |
169
|
|
|
|
|
|
|
'Aldan', |
170
|
|
|
|
|
|
|
'Alden', |
171
|
|
|
|
|
|
|
'Alder', |
172
|
|
|
|
|
|
|
'Alderson', |
173
|
|
|
|
|
|
|
'Alderwood Manor', |
174
|
|
|
|
|
|
|
'Aldine', |
175
|
|
|
|
|
|
|
'Aldora', |
176
|
|
|
|
|
|
|
'Aldrich', |
177
|
|
|
|
|
|
|
'Aledo', |
178
|
|
|
|
|
|
|
'Aleknagik', |
179
|
|
|
|
|
|
|
'Aleneva', |
180
|
|
|
|
|
|
|
'Alex', |
181
|
|
|
|
|
|
|
'Alexander', |
182
|
|
|
|
|
|
|
'Alexander City', |
183
|
|
|
|
|
|
|
'Alexandria', |
184
|
|
|
|
|
|
|
'Alexandria Bay', |
185
|
|
|
|
|
|
|
'Alexis', |
186
|
|
|
|
|
|
|
'Alford', |
187
|
|
|
|
|
|
|
'Alfordsville', |
188
|
|
|
|
|
|
|
'Alfred', |
189
|
|
|
|
|
|
|
'Alfred-South La Paloma', |
190
|
|
|
|
|
|
|
'Alger', |
191
|
|
|
|
|
|
|
'Algodones', |
192
|
|
|
|
|
|
|
'Algoma', |
193
|
|
|
|
|
|
|
'Algona', |
194
|
|
|
|
|
|
|
'Algonac', |
195
|
|
|
|
|
|
|
'Algonquin', |
196
|
|
|
|
|
|
|
'Algood', |
197
|
|
|
|
|
|
|
'Alhambra', |
198
|
|
|
|
|
|
|
'Alice', |
199
|
|
|
|
|
|
|
'Alice Acres', |
200
|
|
|
|
|
|
|
'Aliceville', |
201
|
|
|
|
|
|
|
'Alicia', |
202
|
|
|
|
|
|
|
'Aline', |
203
|
|
|
|
|
|
|
'Aliquippa', |
204
|
|
|
|
|
|
|
'Aliso Viejo', |
205
|
|
|
|
|
|
|
'Allakaket', |
206
|
|
|
|
|
|
|
'Allamuchy-Panther Valley', |
207
|
|
|
|
|
|
|
'Allardt', |
208
|
|
|
|
|
|
|
'Allegan', |
209
|
|
|
|
|
|
|
'Allegany', |
210
|
|
|
|
|
|
|
'Alleman', |
211
|
|
|
|
|
|
|
'Allen', |
212
|
|
|
|
|
|
|
'Allen Park', |
213
|
|
|
|
|
|
|
'Allendale', |
214
|
|
|
|
|
|
|
'Allenhurst', |
215
|
|
|
|
|
|
|
'Allenport', |
216
|
|
|
|
|
|
|
'Allenspark', |
217
|
|
|
|
|
|
|
'Allensville', |
218
|
|
|
|
|
|
|
'Allentown', |
219
|
|
|
|
|
|
|
'Allenville', |
220
|
|
|
|
|
|
|
'Allenwood', |
221
|
|
|
|
|
|
|
'Allerton', |
222
|
|
|
|
|
|
|
'Allgood', |
223
|
|
|
|
|
|
|
'Alliance', |
224
|
|
|
|
|
|
|
'Alligator', |
225
|
|
|
|
|
|
|
'Allison', |
226
|
|
|
|
|
|
|
'Allouez', |
227
|
|
|
|
|
|
|
'Alloway', |
228
|
|
|
|
|
|
|
'Allport', |
229
|
|
|
|
|
|
|
'Allyn-Grapeview', |
230
|
|
|
|
|
|
|
'Alma', |
231
|
|
|
|
|
|
|
'Alma Center', |
232
|
|
|
|
|
|
|
'Almanor', |
233
|
|
|
|
|
|
|
'Almedia', |
234
|
|
|
|
|
|
|
'Almena', |
235
|
|
|
|
|
|
|
'Almira', |
236
|
|
|
|
|
|
|
'Almond', |
237
|
|
|
|
|
|
|
'Almont', |
238
|
|
|
|
|
|
|
'Almyra', |
239
|
|
|
|
|
|
|
'Aloha', |
240
|
|
|
|
|
|
|
'Alondra Park', |
241
|
|
|
|
|
|
|
'Alorton', |
242
|
|
|
|
|
|
|
'Alpaugh', |
243
|
|
|
|
|
|
|
'Alpena', |
244
|
|
|
|
|
|
|
'Alpha', |
245
|
|
|
|
|
|
|
'Alpharetta', |
246
|
|
|
|
|
|
|
'Alpine', |
247
|
|
|
|
|
|
|
'Alpine Northeast', |
248
|
|
|
|
|
|
|
'Alpine Northwest', |
249
|
|
|
|
|
|
|
'Alpine Village', |
250
|
|
|
|
|
|
|
'Alsen', |
251
|
|
|
|
|
|
|
'Alsey', |
252
|
|
|
|
|
|
|
'Alsip', |
253
|
|
|
|
|
|
|
'Alston', |
254
|
|
|
|
|
|
|
'Alta', |
255
|
|
|
|
|
|
|
'Alta Sierra', |
256
|
|
|
|
|
|
|
'Alta Vista', |
257
|
|
|
|
|
|
|
'Altadena', |
258
|
|
|
|
|
|
|
'Altamahaw-Ossipee', |
259
|
|
|
|
|
|
|
'Altamont', |
260
|
|
|
|
|
|
|
'Altamonte Springs', |
261
|
|
|
|
|
|
|
'Altavista', |
262
|
|
|
|
|
|
|
'Altenburg', |
263
|
|
|
|
|
|
|
'Altha', |
264
|
|
|
|
|
|
|
'Altheimer', |
265
|
|
|
|
|
|
|
'Altmar', |
266
|
|
|
|
|
|
|
'Alto', |
267
|
|
|
|
|
|
|
'Alto Bonito', |
268
|
|
|
|
|
|
|
'Alto Pass', |
269
|
|
|
|
|
|
|
'Alton', |
270
|
|
|
|
|
|
|
'Alton North', |
271
|
|
|
|
|
|
|
'Altona', |
272
|
|
|
|
|
|
|
'Altoona', |
273
|
|
|
|
|
|
|
'Altura', |
274
|
|
|
|
|
|
|
'Alturas', |
275
|
|
|
|
|
|
|
'Altus', |
276
|
|
|
|
|
|
|
'Alum Creek', |
277
|
|
|
|
|
|
|
'Alum Rock', |
278
|
|
|
|
|
|
|
'Alva', |
279
|
|
|
|
|
|
|
'Alvarado', |
280
|
|
|
|
|
|
|
'Alvin', |
281
|
|
|
|
|
|
|
'Alvo', |
282
|
|
|
|
|
|
|
'Alvord', |
283
|
|
|
|
|
|
|
'Alvordton', |
284
|
|
|
|
|
|
|
'Ama', |
285
|
|
|
|
|
|
|
'Amado', |
286
|
|
|
|
|
|
|
'Amador City', |
287
|
|
|
|
|
|
|
'Amagansett', |
288
|
|
|
|
|
|
|
'Amagon', |
289
|
|
|
|
|
|
|
'Amalga', |
290
|
|
|
|
|
|
|
'Amanda', |
291
|
|
|
|
|
|
|
'Amarillo', |
292
|
|
|
|
|
|
|
'Amazonia', |
293
|
|
|
|
|
|
|
'Amber', |
294
|
|
|
|
|
|
|
'Amberley', |
295
|
|
|
|
|
|
|
'Ambia', |
296
|
|
|
|
|
|
|
'Ambler', |
297
|
|
|
|
|
|
|
'Amboy', |
298
|
|
|
|
|
|
|
'Ambridge', |
299
|
|
|
|
|
|
|
'Ambrose', |
300
|
|
|
|
|
|
|
'Amelia', |
301
|
|
|
|
|
|
|
'Amenia', |
302
|
|
|
|
|
|
|
'American Canyon', |
303
|
|
|
|
|
|
|
'American Falls', |
304
|
|
|
|
|
|
|
'American Fork', |
305
|
|
|
|
|
|
|
'Americus', |
306
|
|
|
|
|
|
|
'Amery', |
307
|
|
|
|
|
|
|
'Ames', |
308
|
|
|
|
|
|
|
'Ames Lake', |
309
|
|
|
|
|
|
|
'Amesbury', |
310
|
|
|
|
|
|
|
'Amesti', |
311
|
|
|
|
|
|
|
'Amesville', |
312
|
|
|
|
|
|
|
'Amherst', |
313
|
|
|
|
|
|
|
'Amherst Center', |
314
|
|
|
|
|
|
|
'Amherst Junction', |
315
|
|
|
|
|
|
|
'Amherstdale-Robinette', |
316
|
|
|
|
|
|
|
'Amidon', |
317
|
|
|
|
|
|
|
'Amite City', |
318
|
|
|
|
|
|
|
'Amity', |
319
|
|
|
|
|
|
|
'Amity Gardens', |
320
|
|
|
|
|
|
|
'Amityville', |
321
|
|
|
|
|
|
|
'Ammon', |
322
|
|
|
|
|
|
|
'Amo', |
323
|
|
|
|
|
|
|
'Amoret', |
324
|
|
|
|
|
|
|
'Amorita', |
325
|
|
|
|
|
|
|
'Amory', |
326
|
|
|
|
|
|
|
'Amsterdam', |
327
|
|
|
|
|
|
|
'Amsterdam-Churchill', |
328
|
|
|
|
|
|
|
'Anacoco', |
329
|
|
|
|
|
|
|
'Anaconda', |
330
|
|
|
|
|
|
|
'Anacortes', |
331
|
|
|
|
|
|
|
'Anadarko', |
332
|
|
|
|
|
|
|
'Anaheim', |
333
|
|
|
|
|
|
|
'Anahola', |
334
|
|
|
|
|
|
|
'Anahuac', |
335
|
|
|
|
|
|
|
'Anaktuvuk Pass', |
336
|
|
|
|
|
|
|
'Anamoose', |
337
|
|
|
|
|
|
|
'Anamosa', |
338
|
|
|
|
|
|
|
'Anawalt', |
339
|
|
|
|
|
|
|
'Anchor', |
340
|
|
|
|
|
|
|
'Anchor Point', |
341
|
|
|
|
|
|
|
'Anchorage', |
342
|
|
|
|
|
|
|
'Ancient Oaks', |
343
|
|
|
|
|
|
|
'Andale', |
344
|
|
|
|
|
|
|
'Andalusia', |
345
|
|
|
|
|
|
|
'Anderson', |
346
|
|
|
|
|
|
|
'Anderson Mill', |
347
|
|
|
|
|
|
|
'Andersonville', |
348
|
|
|
|
|
|
|
'Andes', |
349
|
|
|
|
|
|
|
'Andover', |
350
|
|
|
|
|
|
|
'Andrew', |
351
|
|
|
|
|
|
|
'Andrews', |
352
|
|
|
|
|
|
|
'Andrews AFB', |
353
|
|
|
|
|
|
|
'Aneta', |
354
|
|
|
|
|
|
|
'Aneth', |
355
|
|
|
|
|
|
|
'Angel Fire', |
356
|
|
|
|
|
|
|
'Angelica', |
357
|
|
|
|
|
|
|
'Angels City', |
358
|
|
|
|
|
|
|
'Angie', |
359
|
|
|
|
|
|
|
'Angier', |
360
|
|
|
|
|
|
|
'Angleton', |
361
|
|
|
|
|
|
|
'Angola', |
362
|
|
|
|
|
|
|
'Angola on the Lake', |
363
|
|
|
|
|
|
|
'Angoon', |
364
|
|
|
|
|
|
|
'Anguilla', |
365
|
|
|
|
|
|
|
'Angus', |
366
|
|
|
|
|
|
|
'Angwin', |
367
|
|
|
|
|
|
|
'Aniak', |
368
|
|
|
|
|
|
|
'Animas', |
369
|
|
|
|
|
|
|
'Anita', |
370
|
|
|
|
|
|
|
'Aniwa', |
371
|
|
|
|
|
|
|
'Ankeny', |
372
|
|
|
|
|
|
|
'Anmoore', |
373
|
|
|
|
|
|
|
'Ann Arbor', |
374
|
|
|
|
|
|
|
'Anna', |
375
|
|
|
|
|
|
|
'Anna Maria', |
376
|
|
|
|
|
|
|
'Annabella', |
377
|
|
|
|
|
|
|
'Annada', |
378
|
|
|
|
|
|
|
'Annandale', |
379
|
|
|
|
|
|
|
'Annapolis', |
380
|
|
|
|
|
|
|
'Annawan', |
381
|
|
|
|
|
|
|
'Annetta', |
382
|
|
|
|
|
|
|
'Annetta North', |
383
|
|
|
|
|
|
|
'Annetta South', |
384
|
|
|
|
|
|
|
'Anniston', |
385
|
|
|
|
|
|
|
'Annona', |
386
|
|
|
|
|
|
|
'Annville', |
387
|
|
|
|
|
|
|
'Anoka', |
388
|
|
|
|
|
|
|
'Anselmo', |
389
|
|
|
|
|
|
|
'Ansley', |
390
|
|
|
|
|
|
|
'Anson', |
391
|
|
|
|
|
|
|
'Ansonia', |
392
|
|
|
|
|
|
|
'Ansonville', |
393
|
|
|
|
|
|
|
'Ansted', |
394
|
|
|
|
|
|
|
'Antelope', |
395
|
|
|
|
|
|
|
'Antelope Hills', |
396
|
|
|
|
|
|
|
'Antelope Valley-Crestview', |
397
|
|
|
|
|
|
|
'Anthon', |
398
|
|
|
|
|
|
|
'Anthony', |
399
|
|
|
|
|
|
|
'Anthonyville', |
400
|
|
|
|
|
|
|
'Antigo', |
401
|
|
|
|
|
|
|
'Antimony', |
402
|
|
|
|
|
|
|
'Antioch', |
403
|
|
|
|
|
|
|
'Antler', |
404
|
|
|
|
|
|
|
'Antlers', |
405
|
|
|
|
|
|
|
'Antoine', |
406
|
|
|
|
|
|
|
'Anton', |
407
|
|
|
|
|
|
|
'Antonito', |
408
|
|
|
|
|
|
|
'Antreville', |
409
|
|
|
|
|
|
|
'Antrim', |
410
|
|
|
|
|
|
|
'Antwerp', |
411
|
|
|
|
|
|
|
'Antón RuÃz', |
412
|
|
|
|
|
|
|
'Anvik', |
413
|
|
|
|
|
|
|
'Apache', |
414
|
|
|
|
|
|
|
'Apache Junction', |
415
|
|
|
|
|
|
|
'Apalachicola', |
416
|
|
|
|
|
|
|
'Apalachin', |
417
|
|
|
|
|
|
|
'Apex', |
418
|
|
|
|
|
|
|
'Aplington', |
419
|
|
|
|
|
|
|
'Apollo', |
420
|
|
|
|
|
|
|
'Apollo Beach', |
421
|
|
|
|
|
|
|
'Apopka', |
422
|
|
|
|
|
|
|
'Appalachia', |
423
|
|
|
|
|
|
|
'Apple Creek', |
424
|
|
|
|
|
|
|
'Apple River', |
425
|
|
|
|
|
|
|
'Apple Valley', |
426
|
|
|
|
|
|
|
'Appleby', |
427
|
|
|
|
|
|
|
'Applegate', |
428
|
|
|
|
|
|
|
'Appleton', |
429
|
|
|
|
|
|
|
'Appleton City', |
430
|
|
|
|
|
|
|
'Applewold', |
431
|
|
|
|
|
|
|
'Applewood', |
432
|
|
|
|
|
|
|
'Appomattox', |
433
|
|
|
|
|
|
|
'Aptos', |
434
|
|
|
|
|
|
|
'Aptos Hills-Larkin Valley', |
435
|
|
|
|
|
|
|
'Aquebogue', |
436
|
|
|
|
|
|
|
'Aquia Harbour', |
437
|
|
|
|
|
|
|
'Aquilla', |
438
|
|
|
|
|
|
|
'Arab', |
439
|
|
|
|
|
|
|
'Arabi', |
440
|
|
|
|
|
|
|
'Aragon', |
441
|
|
|
|
|
|
|
'Aransas Pass', |
442
|
|
|
|
|
|
|
'Arapaho', |
443
|
|
|
|
|
|
|
'Arapahoe', |
444
|
|
|
|
|
|
|
'Arbela', |
445
|
|
|
|
|
|
|
'Arboles', |
446
|
|
|
|
|
|
|
'Arbon Valley', |
447
|
|
|
|
|
|
|
'Arbuckle', |
448
|
|
|
|
|
|
|
'Arbutus', |
449
|
|
|
|
|
|
|
'Arbyrd', |
450
|
|
|
|
|
|
|
'Arcade', |
451
|
|
|
|
|
|
|
'Arcadia', |
452
|
|
|
|
|
|
|
'Arcadia Lakes', |
453
|
|
|
|
|
|
|
'Arcanum', |
454
|
|
|
|
|
|
|
'Arcata', |
455
|
|
|
|
|
|
|
'Archbald', |
456
|
|
|
|
|
|
|
'Archbold', |
457
|
|
|
|
|
|
|
'Archdale', |
458
|
|
|
|
|
|
|
'Archer', |
459
|
|
|
|
|
|
|
'Archer City', |
460
|
|
|
|
|
|
|
'Archie', |
461
|
|
|
|
|
|
|
'Arco', |
462
|
|
|
|
|
|
|
'Arcola', |
463
|
|
|
|
|
|
|
'Arctic Village', |
464
|
|
|
|
|
|
|
'Arden', |
465
|
|
|
|
|
|
|
'Arden Hills', |
466
|
|
|
|
|
|
|
'Arden-Arcade', |
467
|
|
|
|
|
|
|
'Arden-on-the-Severn', |
468
|
|
|
|
|
|
|
'Ardencroft', |
469
|
|
|
|
|
|
|
'Ardentown', |
470
|
|
|
|
|
|
|
'Ardmore', |
471
|
|
|
|
|
|
|
'Ardoch', |
472
|
|
|
|
|
|
|
'Ardsley', |
473
|
|
|
|
|
|
|
'Arecibo', |
474
|
|
|
|
|
|
|
'Aredale', |
475
|
|
|
|
|
|
|
'Arena', |
476
|
|
|
|
|
|
|
'Arendtsville', |
477
|
|
|
|
|
|
|
'Arenzville', |
478
|
|
|
|
|
|
|
'Argenta', |
479
|
|
|
|
|
|
|
'Argentine', |
480
|
|
|
|
|
|
|
'Argo', |
481
|
|
|
|
|
|
|
'Argonia', |
482
|
|
|
|
|
|
|
'Argos', |
483
|
|
|
|
|
|
|
'Argusville', |
484
|
|
|
|
|
|
|
'Argyle', |
485
|
|
|
|
|
|
|
'Arial', |
486
|
|
|
|
|
|
|
'Arimo', |
487
|
|
|
|
|
|
|
'Arion', |
488
|
|
|
|
|
|
|
'Arispe', |
489
|
|
|
|
|
|
|
'Aristes', |
490
|
|
|
|
|
|
|
'Aristocrat Ranchettes', |
491
|
|
|
|
|
|
|
'Ariton', |
492
|
|
|
|
|
|
|
'Arizona City', |
493
|
|
|
|
|
|
|
'Arizona Village', |
494
|
|
|
|
|
|
|
'Arkadelphia', |
495
|
|
|
|
|
|
|
'Arkansas City', |
496
|
|
|
|
|
|
|
'Arkoe', |
497
|
|
|
|
|
|
|
'Arkoma', |
498
|
|
|
|
|
|
|
'Arkport', |
499
|
|
|
|
|
|
|
'Arlee', |
500
|
|
|
|
|
|
|
'Arley', |
501
|
|
|
|
|
|
|
'Arlington', |
502
|
|
|
|
|
|
|
'Arlington Heights', |
503
|
|
|
|
|
|
|
'Arma', |
504
|
|
|
|
|
|
|
'Armada', |
505
|
|
|
|
|
|
|
'Armagh', |
506
|
|
|
|
|
|
|
'Armington', |
507
|
|
|
|
|
|
|
'Armona', |
508
|
|
|
|
|
|
|
'Armonk', |
509
|
|
|
|
|
|
|
'Armour', |
510
|
|
|
|
|
|
|
'Armstrong', |
511
|
|
|
|
|
|
|
'Arnaudville', |
512
|
|
|
|
|
|
|
'Arnegard', |
513
|
|
|
|
|
|
|
'Arnett', |
514
|
|
|
|
|
|
|
'Arnold', |
515
|
|
|
|
|
|
|
'Arnolds Park', |
516
|
|
|
|
|
|
|
'Arnoldsville', |
517
|
|
|
|
|
|
|
'Aroma Park', |
518
|
|
|
|
|
|
|
'Aromas', |
519
|
|
|
|
|
|
|
'Arona', |
520
|
|
|
|
|
|
|
'Arp', |
521
|
|
|
|
|
|
|
'Arpin', |
522
|
|
|
|
|
|
|
'Arriba', |
523
|
|
|
|
|
|
|
'Arrow Point', |
524
|
|
|
|
|
|
|
'Arrow Rock', |
525
|
|
|
|
|
|
|
'Arrowhead Springs', |
526
|
|
|
|
|
|
|
'Arrowsmith', |
527
|
|
|
|
|
|
|
'Arroyo', |
528
|
|
|
|
|
|
|
'Arroyo Alto', |
529
|
|
|
|
|
|
|
'Arroyo Colorado Estates', |
530
|
|
|
|
|
|
|
'Arroyo Gardens-La Tina Ranch', |
531
|
|
|
|
|
|
|
'Arroyo Grande', |
532
|
|
|
|
|
|
|
'Artas', |
533
|
|
|
|
|
|
|
'Artesia', |
534
|
|
|
|
|
|
|
'Artesian', |
535
|
|
|
|
|
|
|
'Arthur', |
536
|
|
|
|
|
|
|
'Artondale', |
537
|
|
|
|
|
|
|
'Arvada', |
538
|
|
|
|
|
|
|
'Arvin', |
539
|
|
|
|
|
|
|
'Asbury', |
540
|
|
|
|
|
|
|
'Asbury Lake', |
541
|
|
|
|
|
|
|
'Asbury Park', |
542
|
|
|
|
|
|
|
'Ash Flat', |
543
|
|
|
|
|
|
|
'Ash Fork', |
544
|
|
|
|
|
|
|
'Ash Grove', |
545
|
|
|
|
|
|
|
'Asharoken', |
546
|
|
|
|
|
|
|
'Ashaway', |
547
|
|
|
|
|
|
|
'Ashburn', |
548
|
|
|
|
|
|
|
'Ashby', |
549
|
|
|
|
|
|
|
'Ashdown', |
550
|
|
|
|
|
|
|
'Asheboro', |
551
|
|
|
|
|
|
|
'Asher', |
552
|
|
|
|
|
|
|
'Asherton', |
553
|
|
|
|
|
|
|
'Asheville', |
554
|
|
|
|
|
|
|
'Ashford', |
555
|
|
|
|
|
|
|
'Ashkum', |
556
|
|
|
|
|
|
|
'Ashland', |
557
|
|
|
|
|
|
|
'Ashland City', |
558
|
|
|
|
|
|
|
'Ashland Heights', |
559
|
|
|
|
|
|
|
'Ashley', |
560
|
|
|
|
|
|
|
'Ashley Heights', |
561
|
|
|
|
|
|
|
'Ashmore', |
562
|
|
|
|
|
|
|
'Ashtabula', |
563
|
|
|
|
|
|
|
'Ashton', |
564
|
|
|
|
|
|
|
'Ashton-Sandy Spring', |
565
|
|
|
|
|
|
|
'Ashville', |
566
|
|
|
|
|
|
|
'Ashwaubenon', |
567
|
|
|
|
|
|
|
'Askewville', |
568
|
|
|
|
|
|
|
'Askov', |
569
|
|
|
|
|
|
|
'Asotin', |
570
|
|
|
|
|
|
|
'Aspen', |
571
|
|
|
|
|
|
|
'Aspen Hill', |
572
|
|
|
|
|
|
|
'Aspen Park', |
573
|
|
|
|
|
|
|
'Aspermont', |
574
|
|
|
|
|
|
|
'Aspinwall', |
575
|
|
|
|
|
|
|
'Assaria', |
576
|
|
|
|
|
|
|
'Assumption', |
577
|
|
|
|
|
|
|
'Astatula', |
578
|
|
|
|
|
|
|
'Astor', |
579
|
|
|
|
|
|
|
'Astoria', |
580
|
|
|
|
|
|
|
'Atalissa', |
581
|
|
|
|
|
|
|
'Atascadero', |
582
|
|
|
|
|
|
|
'Atascocita', |
583
|
|
|
|
|
|
|
'Atchison', |
584
|
|
|
|
|
|
|
'Atglen', |
585
|
|
|
|
|
|
|
'Athalia', |
586
|
|
|
|
|
|
|
'Athelstan', |
587
|
|
|
|
|
|
|
'Athena', |
588
|
|
|
|
|
|
|
'Athens', |
589
|
|
|
|
|
|
|
'Atherton', |
590
|
|
|
|
|
|
|
'Athol', |
591
|
|
|
|
|
|
|
'Atka', |
592
|
|
|
|
|
|
|
'Atkins', |
593
|
|
|
|
|
|
|
'Atkinson', |
594
|
|
|
|
|
|
|
'Atlanta', |
595
|
|
|
|
|
|
|
'Atlantic', |
596
|
|
|
|
|
|
|
'Atlantic Beach', |
597
|
|
|
|
|
|
|
'Atlantic City', |
598
|
|
|
|
|
|
|
'Atlantic Highlands', |
599
|
|
|
|
|
|
|
'Atlantis', |
600
|
|
|
|
|
|
|
'Atmautluak', |
601
|
|
|
|
|
|
|
'Atmore', |
602
|
|
|
|
|
|
|
'Atoka', |
603
|
|
|
|
|
|
|
'Atomic City', |
604
|
|
|
|
|
|
|
'Atqasuk', |
605
|
|
|
|
|
|
|
'Attalla', |
606
|
|
|
|
|
|
|
'Attapulgus', |
607
|
|
|
|
|
|
|
'Attica', |
608
|
|
|
|
|
|
|
'Attleboro', |
609
|
|
|
|
|
|
|
'Attu Station', |
610
|
|
|
|
|
|
|
'Atwater', |
611
|
|
|
|
|
|
|
'Atwood', |
612
|
|
|
|
|
|
|
'Au Gres', |
613
|
|
|
|
|
|
|
'Au Sable', |
614
|
|
|
|
|
|
|
'Au Sable Forks', |
615
|
|
|
|
|
|
|
'Auberry', |
616
|
|
|
|
|
|
|
'Aubrey', |
617
|
|
|
|
|
|
|
'Auburn', |
618
|
|
|
|
|
|
|
'Auburn Hills', |
619
|
|
|
|
|
|
|
'Auburndale', |
620
|
|
|
|
|
|
|
'Auburntown', |
621
|
|
|
|
|
|
|
'Audubon', |
622
|
|
|
|
|
|
|
'Audubon Park', |
623
|
|
|
|
|
|
|
'August', |
624
|
|
|
|
|
|
|
'Augusta', |
625
|
|
|
|
|
|
|
'Aulander', |
626
|
|
|
|
|
|
|
'Aullville', |
627
|
|
|
|
|
|
|
'Ault', |
628
|
|
|
|
|
|
|
'Ault Field', |
629
|
|
|
|
|
|
|
'Aumsville', |
630
|
|
|
|
|
|
|
'Aurelia', |
631
|
|
|
|
|
|
|
'Aurora', |
632
|
|
|
|
|
|
|
'Aurora Center', |
633
|
|
|
|
|
|
|
'Austell', |
634
|
|
|
|
|
|
|
'Austin', |
635
|
|
|
|
|
|
|
'Austintown', |
636
|
|
|
|
|
|
|
'Austwell', |
637
|
|
|
|
|
|
|
'Autaugaville', |
638
|
|
|
|
|
|
|
'Autryville', |
639
|
|
|
|
|
|
|
'Auxvasse', |
640
|
|
|
|
|
|
|
'Ava', |
641
|
|
|
|
|
|
|
'Avalon', |
642
|
|
|
|
|
|
|
'Avant', |
643
|
|
|
|
|
|
|
'Avard', |
644
|
|
|
|
|
|
|
'Avenal', |
645
|
|
|
|
|
|
|
'Avenel', |
646
|
|
|
|
|
|
|
'Aventura', |
647
|
|
|
|
|
|
|
'Avera', |
648
|
|
|
|
|
|
|
'Averill Park', |
649
|
|
|
|
|
|
|
'Avery', |
650
|
|
|
|
|
|
|
'Avery Creek', |
651
|
|
|
|
|
|
|
'Avilla', |
652
|
|
|
|
|
|
|
'Avinger', |
653
|
|
|
|
|
|
|
'Avis', |
654
|
|
|
|
|
|
|
'Aviston', |
655
|
|
|
|
|
|
|
'Avoca', |
656
|
|
|
|
|
|
|
'Avocado Heights', |
657
|
|
|
|
|
|
|
'Avon', |
658
|
|
|
|
|
|
|
'Avon Lake', |
659
|
|
|
|
|
|
|
'Avon Park', |
660
|
|
|
|
|
|
|
'Avon-by-the-Sea', |
661
|
|
|
|
|
|
|
'Avondale', |
662
|
|
|
|
|
|
|
'Avondale Estates', |
663
|
|
|
|
|
|
|
'Avonia', |
664
|
|
|
|
|
|
|
'Avonmore', |
665
|
|
|
|
|
|
|
'Avra Valley', |
666
|
|
|
|
|
|
|
'Awendaw', |
667
|
|
|
|
|
|
|
'Axtell', |
668
|
|
|
|
|
|
|
'Ayden', |
669
|
|
|
|
|
|
|
'Ayer', |
670
|
|
|
|
|
|
|
'Aynor', |
671
|
|
|
|
|
|
|
'Ayr', |
672
|
|
|
|
|
|
|
'Ayrshire', |
673
|
|
|
|
|
|
|
'Azalea Park', |
674
|
|
|
|
|
|
|
'Azle', |
675
|
|
|
|
|
|
|
'Aztec', |
676
|
|
|
|
|
|
|
'Azure', |
677
|
|
|
|
|
|
|
'Azusa', |
678
|
|
|
|
|
|
|
'Añasco', |
679
|
|
|
|
|
|
|
'Babbie', |
680
|
|
|
|
|
|
|
'Babbitt', |
681
|
|
|
|
|
|
|
'Babson Park', |
682
|
|
|
|
|
|
|
'Babylon', |
683
|
|
|
|
|
|
|
'Back Mountain', |
684
|
|
|
|
|
|
|
'Backus', |
685
|
|
|
|
|
|
|
'Bacliff', |
686
|
|
|
|
|
|
|
'Baconton', |
687
|
|
|
|
|
|
|
'Bad Axe', |
688
|
|
|
|
|
|
|
'Baden', |
689
|
|
|
|
|
|
|
'Badger', |
690
|
|
|
|
|
|
|
'Badin', |
691
|
|
|
|
|
|
|
'Bagdad', |
692
|
|
|
|
|
|
|
'Baggs', |
693
|
|
|
|
|
|
|
'Bagley', |
694
|
|
|
|
|
|
|
'Bagnell', |
695
|
|
|
|
|
|
|
'Baidland', |
696
|
|
|
|
|
|
|
'Bailey', |
697
|
|
|
|
|
|
|
'Bailey Lakes', |
698
|
|
|
|
|
|
|
'Bailey\'s Crossroads', |
699
|
|
|
|
|
|
|
'Bailey\'s Prairie', |
700
|
|
|
|
|
|
|
'Baileyton', |
701
|
|
|
|
|
|
|
'Bainbridge', |
702
|
|
|
|
|
|
|
'Bainbridge Island', |
703
|
|
|
|
|
|
|
'Bainville', |
704
|
|
|
|
|
|
|
'Baird', |
705
|
|
|
|
|
|
|
'Bairdstown', |
706
|
|
|
|
|
|
|
'Bairoa', |
707
|
|
|
|
|
|
|
'Bairoil', |
708
|
|
|
|
|
|
|
'Baiting Hollow', |
709
|
|
|
|
|
|
|
'Bajadero', |
710
|
|
|
|
|
|
|
'Bajandas', |
711
|
|
|
|
|
|
|
'Baker', |
712
|
|
|
|
|
|
|
'Baker City', |
713
|
|
|
|
|
|
|
'Bakersfield', |
714
|
|
|
|
|
|
|
'Bakersville', |
715
|
|
|
|
|
|
|
'Bal Harbour', |
716
|
|
|
|
|
|
|
'Balaton', |
717
|
|
|
|
|
|
|
'Balch Springs', |
718
|
|
|
|
|
|
|
'Balcones Heights', |
719
|
|
|
|
|
|
|
'Bald Head Island', |
720
|
|
|
|
|
|
|
'Bald Knob', |
721
|
|
|
|
|
|
|
'Baldwin', |
722
|
|
|
|
|
|
|
'Baldwin City', |
723
|
|
|
|
|
|
|
'Baldwin Harbor', |
724
|
|
|
|
|
|
|
'Baldwin Park', |
725
|
|
|
|
|
|
|
'Baldwinsville', |
726
|
|
|
|
|
|
|
'Baldwinville', |
727
|
|
|
|
|
|
|
'Baldwyn', |
728
|
|
|
|
|
|
|
'Balfour', |
729
|
|
|
|
|
|
|
'Ball', |
730
|
|
|
|
|
|
|
'Ball Ground', |
731
|
|
|
|
|
|
|
'Ballantine', |
732
|
|
|
|
|
|
|
'Ballard', |
733
|
|
|
|
|
|
|
'Ballenger Creek', |
734
|
|
|
|
|
|
|
'Ballinger', |
735
|
|
|
|
|
|
|
'Ballou', |
736
|
|
|
|
|
|
|
'Ballston Spa', |
737
|
|
|
|
|
|
|
'Balltown', |
738
|
|
|
|
|
|
|
'Ballville', |
739
|
|
|
|
|
|
|
'Ballwin', |
740
|
|
|
|
|
|
|
'Bally', |
741
|
|
|
|
|
|
|
'Balmorhea', |
742
|
|
|
|
|
|
|
'Balmville', |
743
|
|
|
|
|
|
|
'Balsam Lake', |
744
|
|
|
|
|
|
|
'Balta', |
745
|
|
|
|
|
|
|
'Baltic', |
746
|
|
|
|
|
|
|
'Baltimore', |
747
|
|
|
|
|
|
|
'Bamberg', |
748
|
|
|
|
|
|
|
'Bancroft', |
749
|
|
|
|
|
|
|
'Bandera', |
750
|
|
|
|
|
|
|
'Bandon', |
751
|
|
|
|
|
|
|
'Baneberry', |
752
|
|
|
|
|
|
|
'Bangor', |
753
|
|
|
|
|
|
|
'Bangor Trident Base', |
754
|
|
|
|
|
|
|
'Bangs', |
755
|
|
|
|
|
|
|
'Banks', |
756
|
|
|
|
|
|
|
'Banks Lake South', |
757
|
|
|
|
|
|
|
'Bankston', |
758
|
|
|
|
|
|
|
'Banner', |
759
|
|
|
|
|
|
|
'Banner Elk', |
760
|
|
|
|
|
|
|
'Banner Hill', |
761
|
|
|
|
|
|
|
'Banning', |
762
|
|
|
|
|
|
|
'Bannockburn', |
763
|
|
|
|
|
|
|
'Bantam', |
764
|
|
|
|
|
|
|
'Bantry', |
765
|
|
|
|
|
|
|
'Bar Harbor', |
766
|
|
|
|
|
|
|
'Bar Nunn', |
767
|
|
|
|
|
|
|
'Baraboo', |
768
|
|
|
|
|
|
|
'Barada', |
769
|
|
|
|
|
|
|
'Baraga', |
770
|
|
|
|
|
|
|
'Barahona', |
771
|
|
|
|
|
|
|
'Barataria', |
772
|
|
|
|
|
|
|
'Barbers Point Housing', |
773
|
|
|
|
|
|
|
'Barberton', |
774
|
|
|
|
|
|
|
'Barbourmeade', |
775
|
|
|
|
|
|
|
'Barboursville', |
776
|
|
|
|
|
|
|
'Barbourville', |
777
|
|
|
|
|
|
|
'Barceloneta', |
778
|
|
|
|
|
|
|
'Barclay', |
779
|
|
|
|
|
|
|
'Barclay-Kingston', |
780
|
|
|
|
|
|
|
'Bardolph', |
781
|
|
|
|
|
|
|
'Bardonia', |
782
|
|
|
|
|
|
|
'Bardstown', |
783
|
|
|
|
|
|
|
'Bardwell', |
784
|
|
|
|
|
|
|
'Bargersville', |
785
|
|
|
|
|
|
|
'Baring', |
786
|
|
|
|
|
|
|
'Barker', |
787
|
|
|
|
|
|
|
'Barker Heights', |
788
|
|
|
|
|
|
|
'Barker Ten Mile', |
789
|
|
|
|
|
|
|
'Barkeyville', |
790
|
|
|
|
|
|
|
'Barling', |
791
|
|
|
|
|
|
|
'Barlow', |
792
|
|
|
|
|
|
|
'Barnard', |
793
|
|
|
|
|
|
|
'Barnegat', |
794
|
|
|
|
|
|
|
'Barnegat Light', |
795
|
|
|
|
|
|
|
'Barnes', |
796
|
|
|
|
|
|
|
'Barnes City', |
797
|
|
|
|
|
|
|
'Barnes Lake-Millers Lake', |
798
|
|
|
|
|
|
|
'Barneston', |
799
|
|
|
|
|
|
|
'Barnesville', |
800
|
|
|
|
|
|
|
'Barnett', |
801
|
|
|
|
|
|
|
'Barneveld', |
802
|
|
|
|
|
|
|
'Barney', |
803
|
|
|
|
|
|
|
'Barnhart', |
804
|
|
|
|
|
|
|
'Barnhill', |
805
|
|
|
|
|
|
|
'Barnsdall', |
806
|
|
|
|
|
|
|
'Barnstable Town', |
807
|
|
|
|
|
|
|
'Barnum', |
808
|
|
|
|
|
|
|
'Barnum Island', |
809
|
|
|
|
|
|
|
'Barnwell', |
810
|
|
|
|
|
|
|
'Baroda', |
811
|
|
|
|
|
|
|
'Barrackville', |
812
|
|
|
|
|
|
|
'Barranquitas', |
813
|
|
|
|
|
|
|
'Barre', |
814
|
|
|
|
|
|
|
'Barrett', |
815
|
|
|
|
|
|
|
'Barrington', |
816
|
|
|
|
|
|
|
'Barrington Hills', |
817
|
|
|
|
|
|
|
'Barron', |
818
|
|
|
|
|
|
|
'Barrow', |
819
|
|
|
|
|
|
|
'Barry', |
820
|
|
|
|
|
|
|
'Barryton', |
821
|
|
|
|
|
|
|
'Barstow', |
822
|
|
|
|
|
|
|
'Bartelso', |
823
|
|
|
|
|
|
|
'Bartlesville', |
824
|
|
|
|
|
|
|
'Bartlett', |
825
|
|
|
|
|
|
|
'Bartley', |
826
|
|
|
|
|
|
|
'Bartolo', |
827
|
|
|
|
|
|
|
'Barton', |
828
|
|
|
|
|
|
|
'Barton Creek', |
829
|
|
|
|
|
|
|
'Barton Hills', |
830
|
|
|
|
|
|
|
'Bartonville', |
831
|
|
|
|
|
|
|
'Bartow', |
832
|
|
|
|
|
|
|
'Barview', |
833
|
|
|
|
|
|
|
'Barwick', |
834
|
|
|
|
|
|
|
'Basalt', |
835
|
|
|
|
|
|
|
'Basco', |
836
|
|
|
|
|
|
|
'Bascom', |
837
|
|
|
|
|
|
|
'Basehor', |
838
|
|
|
|
|
|
|
'Basile', |
839
|
|
|
|
|
|
|
'Basin', |
840
|
|
|
|
|
|
|
'Basin City', |
841
|
|
|
|
|
|
|
'Baskin', |
842
|
|
|
|
|
|
|
'Bass Lake', |
843
|
|
|
|
|
|
|
'Bassett', |
844
|
|
|
|
|
|
|
'Bassfield', |
845
|
|
|
|
|
|
|
'Bastrop', |
846
|
|
|
|
|
|
|
'Basye-Bryce Mountain', |
847
|
|
|
|
|
|
|
'Batavia', |
848
|
|
|
|
|
|
|
'Batchtown', |
849
|
|
|
|
|
|
|
'Bates City', |
850
|
|
|
|
|
|
|
'Batesburg-Leesville', |
851
|
|
|
|
|
|
|
'Batesland', |
852
|
|
|
|
|
|
|
'Batesville', |
853
|
|
|
|
|
|
|
'Bath', |
854
|
|
|
|
|
|
|
'Bath (Berkeley Springs)', |
855
|
|
|
|
|
|
|
'Bathgate', |
856
|
|
|
|
|
|
|
'Baton Rouge', |
857
|
|
|
|
|
|
|
'Battle Creek', |
858
|
|
|
|
|
|
|
'Battle Ground', |
859
|
|
|
|
|
|
|
'Battle Lake', |
860
|
|
|
|
|
|
|
'Battle Mountain', |
861
|
|
|
|
|
|
|
'Battlefield', |
862
|
|
|
|
|
|
|
'Battlement Mesa', |
863
|
|
|
|
|
|
|
'Baudette', |
864
|
|
|
|
|
|
|
'Bausell and Ellis', |
865
|
|
|
|
|
|
|
'Bauxite', |
866
|
|
|
|
|
|
|
'Baxley', |
867
|
|
|
|
|
|
|
'Baxter', |
868
|
|
|
|
|
|
|
'Baxter Estates', |
869
|
|
|
|
|
|
|
'Baxter Springs', |
870
|
|
|
|
|
|
|
'Bay', |
871
|
|
|
|
|
|
|
'Bay Center', |
872
|
|
|
|
|
|
|
'Bay City', |
873
|
|
|
|
|
|
|
'Bay Harbor Islands', |
874
|
|
|
|
|
|
|
'Bay Head', |
875
|
|
|
|
|
|
|
'Bay Hill', |
876
|
|
|
|
|
|
|
'Bay Lake', |
877
|
|
|
|
|
|
|
'Bay Minette', |
878
|
|
|
|
|
|
|
'Bay Park', |
879
|
|
|
|
|
|
|
'Bay Pines', |
880
|
|
|
|
|
|
|
'Bay Point', |
881
|
|
|
|
|
|
|
'Bay Shore', |
882
|
|
|
|
|
|
|
'Bay Springs', |
883
|
|
|
|
|
|
|
'Bay St. Louis', |
884
|
|
|
|
|
|
|
'Bay View', |
885
|
|
|
|
|
|
|
'Bay View Gardens', |
886
|
|
|
|
|
|
|
'Bay Village', |
887
|
|
|
|
|
|
|
'Bayamón', |
888
|
|
|
|
|
|
|
'Bayard', |
889
|
|
|
|
|
|
|
'Bayboro', |
890
|
|
|
|
|
|
|
'Bayfield', |
891
|
|
|
|
|
|
|
'Baylis', |
892
|
|
|
|
|
|
|
'Bayonet Point', |
893
|
|
|
|
|
|
|
'Bayonne', |
894
|
|
|
|
|
|
|
'Bayou Cane', |
895
|
|
|
|
|
|
|
'Bayou Gauche', |
896
|
|
|
|
|
|
|
'Bayou La Batre', |
897
|
|
|
|
|
|
|
'Bayou Vista', |
898
|
|
|
|
|
|
|
'Bayport', |
899
|
|
|
|
|
|
|
'Bayshore', |
900
|
|
|
|
|
|
|
'Bayshore Gardens', |
901
|
|
|
|
|
|
|
'Bayside', |
902
|
|
|
|
|
|
|
'Baytown', |
903
|
|
|
|
|
|
|
'Bayview', |
904
|
|
|
|
|
|
|
'Bayview-Montalvin', |
905
|
|
|
|
|
|
|
'Bayville', |
906
|
|
|
|
|
|
|
'Baywood', |
907
|
|
|
|
|
|
|
'Baywood-Los Osos', |
908
|
|
|
|
|
|
|
'Bazile Mills', |
909
|
|
|
|
|
|
|
'Bazine', |
910
|
|
|
|
|
|
|
'Beach', |
911
|
|
|
|
|
|
|
'Beach City', |
912
|
|
|
|
|
|
|
'Beach Haven', |
913
|
|
|
|
|
|
|
'Beach Haven West', |
914
|
|
|
|
|
|
|
'Beach Park', |
915
|
|
|
|
|
|
|
'Beachwood', |
916
|
|
|
|
|
|
|
'Beacon', |
917
|
|
|
|
|
|
|
'Beacon Square', |
918
|
|
|
|
|
|
|
'Beaconsfield', |
919
|
|
|
|
|
|
|
'Beal City', |
920
|
|
|
|
|
|
|
'Beale AFB', |
921
|
|
|
|
|
|
|
'Beallsville', |
922
|
|
|
|
|
|
|
'Beaman', |
923
|
|
|
|
|
|
|
'Bear', |
924
|
|
|
|
|
|
|
'Bear Creek', |
925
|
|
|
|
|
|
|
'Bear Creek Village', |
926
|
|
|
|
|
|
|
'Bear Lake', |
927
|
|
|
|
|
|
|
'Bear River City', |
928
|
|
|
|
|
|
|
'Bear Valley', |
929
|
|
|
|
|
|
|
'Bear Valley Springs', |
930
|
|
|
|
|
|
|
'Bearcreek', |
931
|
|
|
|
|
|
|
'Bearden', |
932
|
|
|
|
|
|
|
'Beardsley', |
933
|
|
|
|
|
|
|
'Beardstown', |
934
|
|
|
|
|
|
|
'Beargrass', |
935
|
|
|
|
|
|
|
'Beasley', |
936
|
|
|
|
|
|
|
'Beatrice', |
937
|
|
|
|
|
|
|
'Beattie', |
938
|
|
|
|
|
|
|
'Beatty', |
939
|
|
|
|
|
|
|
'Beattyville', |
940
|
|
|
|
|
|
|
'Beatyestown', |
941
|
|
|
|
|
|
|
'Beaufort', |
942
|
|
|
|
|
|
|
'Beaumont', |
943
|
|
|
|
|
|
|
'Beauregard', |
944
|
|
|
|
|
|
|
'Beaux Arts Village', |
945
|
|
|
|
|
|
|
'Beaver', |
946
|
|
|
|
|
|
|
'Beaver Bay', |
947
|
|
|
|
|
|
|
'Beaver City', |
948
|
|
|
|
|
|
|
'Beaver Creek', |
949
|
|
|
|
|
|
|
'Beaver Crossing', |
950
|
|
|
|
|
|
|
'Beaver Dam', |
951
|
|
|
|
|
|
|
'Beaver Falls', |
952
|
|
|
|
|
|
|
'Beaver Meadows', |
953
|
|
|
|
|
|
|
'Beaver Springs', |
954
|
|
|
|
|
|
|
'Beavercreek', |
955
|
|
|
|
|
|
|
'Beaverdale-Lloydell', |
956
|
|
|
|
|
|
|
'Beaverdam', |
957
|
|
|
|
|
|
|
'Beaverdam Lake-Salisbury Mills', |
958
|
|
|
|
|
|
|
'Beaverton', |
959
|
|
|
|
|
|
|
'Beavertown', |
960
|
|
|
|
|
|
|
'Beaverville', |
961
|
|
|
|
|
|
|
'Bechtelsville', |
962
|
|
|
|
|
|
|
'Beckemeyer', |
963
|
|
|
|
|
|
|
'Becker', |
964
|
|
|
|
|
|
|
'Beckett', |
965
|
|
|
|
|
|
|
'Beckett Ridge', |
966
|
|
|
|
|
|
|
'Beckley', |
967
|
|
|
|
|
|
|
'Beckville', |
968
|
|
|
|
|
|
|
'Beckwourth', |
969
|
|
|
|
|
|
|
'Beclabito', |
970
|
|
|
|
|
|
|
'Bedford', |
971
|
|
|
|
|
|
|
'Bedford Heights', |
972
|
|
|
|
|
|
|
'Bedford Park', |
973
|
|
|
|
|
|
|
'Bee', |
974
|
|
|
|
|
|
|
'Bee Cave', |
975
|
|
|
|
|
|
|
'Bee Ridge', |
976
|
|
|
|
|
|
|
'Beebe', |
977
|
|
|
|
|
|
|
'Beech Bottom', |
978
|
|
|
|
|
|
|
'Beech Creek', |
979
|
|
|
|
|
|
|
'Beech Grove', |
980
|
|
|
|
|
|
|
'Beech Mountain', |
981
|
|
|
|
|
|
|
'Beecher', |
982
|
|
|
|
|
|
|
'Beecher City', |
983
|
|
|
|
|
|
|
'Beechwood', |
984
|
|
|
|
|
|
|
'Beechwood Trails', |
985
|
|
|
|
|
|
|
'Beechwood Village', |
986
|
|
|
|
|
|
|
'Beedeville', |
987
|
|
|
|
|
|
|
'Beemer', |
988
|
|
|
|
|
|
|
'Beersheba Springs', |
989
|
|
|
|
|
|
|
'Beeville', |
990
|
|
|
|
|
|
|
'Beggs', |
991
|
|
|
|
|
|
|
'Bejou', |
992
|
|
|
|
|
|
|
'Bel Air', |
993
|
|
|
|
|
|
|
'Bel Air North', |
994
|
|
|
|
|
|
|
'Bel Air South', |
995
|
|
|
|
|
|
|
'Bel Aire', |
996
|
|
|
|
|
|
|
'Bel-Nor', |
997
|
|
|
|
|
|
|
'Bel-Ridge', |
998
|
|
|
|
|
|
|
'Belcher', |
999
|
|
|
|
|
|
|
'Belchertown', |
1000
|
|
|
|
|
|
|
'Belcourt', |
1001
|
|
|
|
|
|
|
'Belden', |
1002
|
|
|
|
|
|
|
'Belding', |
1003
|
|
|
|
|
|
|
'Belen', |
1004
|
|
|
|
|
|
|
'Belfast', |
1005
|
|
|
|
|
|
|
'Belfield', |
1006
|
|
|
|
|
|
|
'Belfonte', |
1007
|
|
|
|
|
|
|
'Belford', |
1008
|
|
|
|
|
|
|
'Belfry', |
1009
|
|
|
|
|
|
|
'Belgium', |
1010
|
|
|
|
|
|
|
'Belgrade', |
1011
|
|
|
|
|
|
|
'Belhaven', |
1012
|
|
|
|
|
|
|
'Belington', |
1013
|
|
|
|
|
|
|
'Belk', |
1014
|
|
|
|
|
|
|
'Belknap', |
1015
|
|
|
|
|
|
|
'Bell', |
1016
|
|
|
|
|
|
|
'Bell Acres', |
1017
|
|
|
|
|
|
|
'Bell Buckle', |
1018
|
|
|
|
|
|
|
'Bell Center', |
1019
|
|
|
|
|
|
|
'Bell City', |
1020
|
|
|
|
|
|
|
'Bell Gardens', |
1021
|
|
|
|
|
|
|
'Bell Hill', |
1022
|
|
|
|
|
|
|
'Bella Villa', |
1023
|
|
|
|
|
|
|
'Bella Vista', |
1024
|
|
|
|
|
|
|
'Bellair-Meadowbrook Terrace', |
1025
|
|
|
|
|
|
|
'Bellaire', |
1026
|
|
|
|
|
|
|
'Bellbrook', |
1027
|
|
|
|
|
|
|
'Belle', |
1028
|
|
|
|
|
|
|
'Belle Center', |
1029
|
|
|
|
|
|
|
'Belle Chasse', |
1030
|
|
|
|
|
|
|
'Belle Fourche', |
1031
|
|
|
|
|
|
|
'Belle Glade', |
1032
|
|
|
|
|
|
|
'Belle Glade Camp', |
1033
|
|
|
|
|
|
|
'Belle Haven', |
1034
|
|
|
|
|
|
|
'Belle Isle', |
1035
|
|
|
|
|
|
|
'Belle Meade', |
1036
|
|
|
|
|
|
|
'Belle Plaine', |
1037
|
|
|
|
|
|
|
'Belle Prairie City', |
1038
|
|
|
|
|
|
|
'Belle Rive', |
1039
|
|
|
|
|
|
|
'Belle Rose', |
1040
|
|
|
|
|
|
|
'Belle Terre', |
1041
|
|
|
|
|
|
|
'Belle Valley', |
1042
|
|
|
|
|
|
|
'Belle Vernon', |
1043
|
|
|
|
|
|
|
'Belleair', |
1044
|
|
|
|
|
|
|
'Belleair Beach', |
1045
|
|
|
|
|
|
|
'Belleair Bluffs', |
1046
|
|
|
|
|
|
|
'Belleair Shore', |
1047
|
|
|
|
|
|
|
'Bellechester', |
1048
|
|
|
|
|
|
|
'Bellefontaine', |
1049
|
|
|
|
|
|
|
'Bellefontaine Neighbors', |
1050
|
|
|
|
|
|
|
'Bellefonte', |
1051
|
|
|
|
|
|
|
'Bellemeade', |
1052
|
|
|
|
|
|
|
'Bellerive', |
1053
|
|
|
|
|
|
|
'Bellerose', |
1054
|
|
|
|
|
|
|
'Bellerose Terrace', |
1055
|
|
|
|
|
|
|
'Belleview', |
1056
|
|
|
|
|
|
|
'Belleville', |
1057
|
|
|
|
|
|
|
'Bellevue', |
1058
|
|
|
|
|
|
|
'Bellevue Town', |
1059
|
|
|
|
|
|
|
'Bellewood', |
1060
|
|
|
|
|
|
|
'Bellflower', |
1061
|
|
|
|
|
|
|
'Bellingham', |
1062
|
|
|
|
|
|
|
'Bellmawr', |
1063
|
|
|
|
|
|
|
'Bellmead', |
1064
|
|
|
|
|
|
|
'Bellmont', |
1065
|
|
|
|
|
|
|
'Bellmore', |
1066
|
|
|
|
|
|
|
'Bellows Falls', |
1067
|
|
|
|
|
|
|
'Bellport', |
1068
|
|
|
|
|
|
|
'Bells', |
1069
|
|
|
|
|
|
|
'Bellview', |
1070
|
|
|
|
|
|
|
'Bellville', |
1071
|
|
|
|
|
|
|
'Bellwood', |
1072
|
|
|
|
|
|
|
'Belmar', |
1073
|
|
|
|
|
|
|
'Belmond', |
1074
|
|
|
|
|
|
|
'Belmont', |
1075
|
|
|
|
|
|
|
'Belmore', |
1076
|
|
|
|
|
|
|
'Beloit', |
1077
|
|
|
|
|
|
|
'Belpre', |
1078
|
|
|
|
|
|
|
'Belt', |
1079
|
|
|
|
|
|
|
'Belton', |
1080
|
|
|
|
|
|
|
'Beltrami', |
1081
|
|
|
|
|
|
|
'Beltsville', |
1082
|
|
|
|
|
|
|
'Beluga', |
1083
|
|
|
|
|
|
|
'Belvedere', |
1084
|
|
|
|
|
|
|
'Belvedere Park', |
1085
|
|
|
|
|
|
|
'Belvidere', |
1086
|
|
|
|
|
|
|
'Belview', |
1087
|
|
|
|
|
|
|
'Belville', |
1088
|
|
|
|
|
|
|
'Belvue', |
1089
|
|
|
|
|
|
|
'Belwood', |
1090
|
|
|
|
|
|
|
'Belzoni', |
1091
|
|
|
|
|
|
|
'Bement', |
1092
|
|
|
|
|
|
|
'Bemidji', |
1093
|
|
|
|
|
|
|
'Bemus Point', |
1094
|
|
|
|
|
|
|
'Ben Avon', |
1095
|
|
|
|
|
|
|
'Ben Avon Heights', |
1096
|
|
|
|
|
|
|
'Ben Lomond', |
1097
|
|
|
|
|
|
|
'Bena', |
1098
|
|
|
|
|
|
|
'Benavides', |
1099
|
|
|
|
|
|
|
'Benbrook', |
1100
|
|
|
|
|
|
|
'Bend', |
1101
|
|
|
|
|
|
|
'Bendersville', |
1102
|
|
|
|
|
|
|
'Bendersville Station-Aspers', |
1103
|
|
|
|
|
|
|
'Benedict', |
1104
|
|
|
|
|
|
|
'Benham', |
1105
|
|
|
|
|
|
|
'Benicia', |
1106
|
|
|
|
|
|
|
'Benjamin', |
1107
|
|
|
|
|
|
|
'Benkelman', |
1108
|
|
|
|
|
|
|
'Benld', |
1109
|
|
|
|
|
|
|
'Bennet', |
1110
|
|
|
|
|
|
|
'Bennett', |
1111
|
|
|
|
|
|
|
'Bennettsville', |
1112
|
|
|
|
|
|
|
'Bennington', |
1113
|
|
|
|
|
|
|
'Bennsville', |
1114
|
|
|
|
|
|
|
'Benoit', |
1115
|
|
|
|
|
|
|
'Bensenville', |
1116
|
|
|
|
|
|
|
'Bensley', |
1117
|
|
|
|
|
|
|
'Benson', |
1118
|
|
|
|
|
|
|
'Bent Creek', |
1119
|
|
|
|
|
|
|
'Bentley', |
1120
|
|
|
|
|
|
|
'Bentleyville', |
1121
|
|
|
|
|
|
|
'Benton', |
1122
|
|
|
|
|
|
|
'Benton City', |
1123
|
|
|
|
|
|
|
'Benton Harbor', |
1124
|
|
|
|
|
|
|
'Benton Heights', |
1125
|
|
|
|
|
|
|
'Benton Ridge', |
1126
|
|
|
|
|
|
|
'Bentonia', |
1127
|
|
|
|
|
|
|
'Bentonville', |
1128
|
|
|
|
|
|
|
'Benwood', |
1129
|
|
|
|
|
|
|
'Benzonia', |
1130
|
|
|
|
|
|
|
'BenÃtez', |
1131
|
|
|
|
|
|
|
'Berea', |
1132
|
|
|
|
|
|
|
'Beresford', |
1133
|
|
|
|
|
|
|
'Bergen', |
1134
|
|
|
|
|
|
|
'Bergenfield', |
1135
|
|
|
|
|
|
|
'Berger', |
1136
|
|
|
|
|
|
|
'Bergholz', |
1137
|
|
|
|
|
|
|
'Bergman', |
1138
|
|
|
|
|
|
|
'Berkeley', |
1139
|
|
|
|
|
|
|
'Berkeley Heights', |
1140
|
|
|
|
|
|
|
'Berkeley Lake', |
1141
|
|
|
|
|
|
|
'Berkey', |
1142
|
|
|
|
|
|
|
'Berkley', |
1143
|
|
|
|
|
|
|
'Berlin', |
1144
|
|
|
|
|
|
|
'Berlin Heights', |
1145
|
|
|
|
|
|
|
'Bermuda Dunes', |
1146
|
|
|
|
|
|
|
'Bermuda Run', |
1147
|
|
|
|
|
|
|
'Bern', |
1148
|
|
|
|
|
|
|
'Bernalillo', |
1149
|
|
|
|
|
|
|
'Bernard', |
1150
|
|
|
|
|
|
|
'Bernardsville', |
1151
|
|
|
|
|
|
|
'Berne', |
1152
|
|
|
|
|
|
|
'Bernice', |
1153
|
|
|
|
|
|
|
'Bernie', |
1154
|
|
|
|
|
|
|
'Bernville', |
1155
|
|
|
|
|
|
|
'Berrien Springs', |
1156
|
|
|
|
|
|
|
'Berry', |
1157
|
|
|
|
|
|
|
'Berry Hill', |
1158
|
|
|
|
|
|
|
'Berrysburg', |
1159
|
|
|
|
|
|
|
'Berryville', |
1160
|
|
|
|
|
|
|
'Bertha', |
1161
|
|
|
|
|
|
|
'Berthold', |
1162
|
|
|
|
|
|
|
'Berthoud', |
1163
|
|
|
|
|
|
|
'Bertram', |
1164
|
|
|
|
|
|
|
'Bertrand', |
1165
|
|
|
|
|
|
|
'Bertsch-Oceanview', |
1166
|
|
|
|
|
|
|
'Berwick', |
1167
|
|
|
|
|
|
|
'Berwyn', |
1168
|
|
|
|
|
|
|
'Berwyn Heights', |
1169
|
|
|
|
|
|
|
'Bessemer', |
1170
|
|
|
|
|
|
|
'Bessemer Bend', |
1171
|
|
|
|
|
|
|
'Bessemer City', |
1172
|
|
|
|
|
|
|
'Bessie', |
1173
|
|
|
|
|
|
|
'Betances', |
1174
|
|
|
|
|
|
|
'Bethalto', |
1175
|
|
|
|
|
|
|
'Bethania', |
1176
|
|
|
|
|
|
|
'Bethany', |
1177
|
|
|
|
|
|
|
'Bethany Beach', |
1178
|
|
|
|
|
|
|
'Bethel', |
1179
|
|
|
|
|
|
|
'Bethel Acres', |
1180
|
|
|
|
|
|
|
'Bethel Heights', |
1181
|
|
|
|
|
|
|
'Bethel Island', |
1182
|
|
|
|
|
|
|
'Bethel Park', |
1183
|
|
|
|
|
|
|
'Bethel Springs', |
1184
|
|
|
|
|
|
|
'Bethesda', |
1185
|
|
|
|
|
|
|
'Bethlehem', |
1186
|
|
|
|
|
|
|
'Bethlehem Village', |
1187
|
|
|
|
|
|
|
'Bethpage', |
1188
|
|
|
|
|
|
|
'Bethune', |
1189
|
|
|
|
|
|
|
'Bettendorf', |
1190
|
|
|
|
|
|
|
'Betterton', |
1191
|
|
|
|
|
|
|
'Bettles', |
1192
|
|
|
|
|
|
|
'Bettsville', |
1193
|
|
|
|
|
|
|
'Between', |
1194
|
|
|
|
|
|
|
'Beulah', |
1195
|
|
|
|
|
|
|
'Beulah Valley', |
1196
|
|
|
|
|
|
|
'Beulaville', |
1197
|
|
|
|
|
|
|
'Beurys Lake', |
1198
|
|
|
|
|
|
|
'Beverly', |
1199
|
|
|
|
|
|
|
'Beverly Beach', |
1200
|
|
|
|
|
|
|
'Beverly Hills', |
1201
|
|
|
|
|
|
|
'Beverly Shores', |
1202
|
|
|
|
|
|
|
'Bevier', |
1203
|
|
|
|
|
|
|
'Bevil Oaks', |
1204
|
|
|
|
|
|
|
'Bevington', |
1205
|
|
|
|
|
|
|
'Bexley', |
1206
|
|
|
|
|
|
|
'Bibb City', |
1207
|
|
|
|
|
|
|
'Bickleton', |
1208
|
|
|
|
|
|
|
'Bicknell', |
1209
|
|
|
|
|
|
|
'Biddeford', |
1210
|
|
|
|
|
|
|
'Biehle', |
1211
|
|
|
|
|
|
|
'Bienville', |
1212
|
|
|
|
|
|
|
'Big Arm', |
1213
|
|
|
|
|
|
|
'Big Bay', |
1214
|
|
|
|
|
|
|
'Big Bear City', |
1215
|
|
|
|
|
|
|
'Big Bear Lake', |
1216
|
|
|
|
|
|
|
'Big Beaver', |
1217
|
|
|
|
|
|
|
'Big Bend', |
1218
|
|
|
|
|
|
|
'Big Cabin', |
1219
|
|
|
|
|
|
|
'Big Coppitt Key', |
1220
|
|
|
|
|
|
|
'Big Creek', |
1221
|
|
|
|
|
|
|
'Big Delta', |
1222
|
|
|
|
|
|
|
'Big Falls', |
1223
|
|
|
|
|
|
|
'Big Flat', |
1224
|
|
|
|
|
|
|
'Big Flats', |
1225
|
|
|
|
|
|
|
'Big Flats Airport', |
1226
|
|
|
|
|
|
|
'Big Horn', |
1227
|
|
|
|
|
|
|
'Big Lake', |
1228
|
|
|
|
|
|
|
'Big Park', |
1229
|
|
|
|
|
|
|
'Big Pine', |
1230
|
|
|
|
|
|
|
'Big Pine Key', |
1231
|
|
|
|
|
|
|
'Big Piney', |
1232
|
|
|
|
|
|
|
'Big Point', |
1233
|
|
|
|
|
|
|
'Big Rapids', |
1234
|
|
|
|
|
|
|
'Big River', |
1235
|
|
|
|
|
|
|
'Big Run', |
1236
|
|
|
|
|
|
|
'Big Sandy', |
1237
|
|
|
|
|
|
|
'Big Sky', |
1238
|
|
|
|
|
|
|
'Big Spring', |
1239
|
|
|
|
|
|
|
'Big Springs', |
1240
|
|
|
|
|
|
|
'Big Stone City', |
1241
|
|
|
|
|
|
|
'Big Stone Gap', |
1242
|
|
|
|
|
|
|
'Big Timber', |
1243
|
|
|
|
|
|
|
'Big Water', |
1244
|
|
|
|
|
|
|
'Big Wells', |
1245
|
|
|
|
|
|
|
'Bigelow', |
1246
|
|
|
|
|
|
|
'Bigfoot', |
1247
|
|
|
|
|
|
|
'Bigfork', |
1248
|
|
|
|
|
|
|
'Biggers', |
1249
|
|
|
|
|
|
|
'Biggs', |
1250
|
|
|
|
|
|
|
'Biggs Junction', |
1251
|
|
|
|
|
|
|
'Biggsville', |
1252
|
|
|
|
|
|
|
'Biglerville', |
1253
|
|
|
|
|
|
|
'Billings', |
1254
|
|
|
|
|
|
|
'Billingsley', |
1255
|
|
|
|
|
|
|
'Billington Heights', |
1256
|
|
|
|
|
|
|
'Biloxi', |
1257
|
|
|
|
|
|
|
'Biltmore Forest', |
1258
|
|
|
|
|
|
|
'Binford', |
1259
|
|
|
|
|
|
|
'Bingen', |
1260
|
|
|
|
|
|
|
'Binger', |
1261
|
|
|
|
|
|
|
'Bingham', |
1262
|
|
|
|
|
|
|
'Bingham Farms', |
1263
|
|
|
|
|
|
|
'Bingham Lake', |
1264
|
|
|
|
|
|
|
'Binghamton', |
1265
|
|
|
|
|
|
|
'Biola', |
1266
|
|
|
|
|
|
|
'Birch Bay', |
1267
|
|
|
|
|
|
|
'Birch Creek', |
1268
|
|
|
|
|
|
|
'Birch Run', |
1269
|
|
|
|
|
|
|
'Birch Tree', |
1270
|
|
|
|
|
|
|
'Birchwood', |
1271
|
|
|
|
|
|
|
'Birchwood Village', |
1272
|
|
|
|
|
|
|
'Bird City', |
1273
|
|
|
|
|
|
|
'Bird Island', |
1274
|
|
|
|
|
|
|
'Birds', |
1275
|
|
|
|
|
|
|
'Birdsboro', |
1276
|
|
|
|
|
|
|
'Birdseye', |
1277
|
|
|
|
|
|
|
'Birdsong', |
1278
|
|
|
|
|
|
|
'Birmingham', |
1279
|
|
|
|
|
|
|
'Birnamwood', |
1280
|
|
|
|
|
|
|
'Birney', |
1281
|
|
|
|
|
|
|
'Biron', |
1282
|
|
|
|
|
|
|
'Bisbee', |
1283
|
|
|
|
|
|
|
'Biscay', |
1284
|
|
|
|
|
|
|
'Biscayne Park', |
1285
|
|
|
|
|
|
|
'Biscoe', |
1286
|
|
|
|
|
|
|
'Bishop', |
1287
|
|
|
|
|
|
|
'Bishop Hill', |
1288
|
|
|
|
|
|
|
'Bishop Hills', |
1289
|
|
|
|
|
|
|
'Bishopville', |
1290
|
|
|
|
|
|
|
'Bismarck', |
1291
|
|
|
|
|
|
|
'Bison', |
1292
|
|
|
|
|
|
|
'Bithlo', |
1293
|
|
|
|
|
|
|
'Bitter Springs', |
1294
|
|
|
|
|
|
|
'Biwabik', |
1295
|
|
|
|
|
|
|
'Bixby', |
1296
|
|
|
|
|
|
|
'Black', |
1297
|
|
|
|
|
|
|
'Black Canyon City', |
1298
|
|
|
|
|
|
|
'Black Creek', |
1299
|
|
|
|
|
|
|
'Black Diamond', |
1300
|
|
|
|
|
|
|
'Black Eagle', |
1301
|
|
|
|
|
|
|
'Black Earth', |
1302
|
|
|
|
|
|
|
'Black Forest', |
1303
|
|
|
|
|
|
|
'Black Hawk', |
1304
|
|
|
|
|
|
|
'Black Jack', |
1305
|
|
|
|
|
|
|
'Black Lick', |
1306
|
|
|
|
|
|
|
'Black Mountain', |
1307
|
|
|
|
|
|
|
'Black Oak', |
1308
|
|
|
|
|
|
|
'Black Point-Green Point', |
1309
|
|
|
|
|
|
|
'Black River', |
1310
|
|
|
|
|
|
|
'Black River Falls', |
1311
|
|
|
|
|
|
|
'Black Rock', |
1312
|
|
|
|
|
|
|
'Black Springs', |
1313
|
|
|
|
|
|
|
'Blackburn', |
1314
|
|
|
|
|
|
|
'Blackduck', |
1315
|
|
|
|
|
|
|
'Blackey', |
1316
|
|
|
|
|
|
|
'Blackfoot', |
1317
|
|
|
|
|
|
|
'Blackhawk', |
1318
|
|
|
|
|
|
|
'Blackhawk-Camino Tassajara', |
1319
|
|
|
|
|
|
|
'Blacklick Estates', |
1320
|
|
|
|
|
|
|
'Blacksburg', |
1321
|
|
|
|
|
|
|
'Blackshear', |
1322
|
|
|
|
|
|
|
'Blackstone', |
1323
|
|
|
|
|
|
|
'Blacksville', |
1324
|
|
|
|
|
|
|
'Blackville', |
1325
|
|
|
|
|
|
|
'Blackwater', |
1326
|
|
|
|
|
|
|
'Blackwell', |
1327
|
|
|
|
|
|
|
'Blackwood', |
1328
|
|
|
|
|
|
|
'Bladen', |
1329
|
|
|
|
|
|
|
'Bladenboro', |
1330
|
|
|
|
|
|
|
'Bladensburg', |
1331
|
|
|
|
|
|
|
'Blades', |
1332
|
|
|
|
|
|
|
'Blain', |
1333
|
|
|
|
|
|
|
'Blaine', |
1334
|
|
|
|
|
|
|
'Blair', |
1335
|
|
|
|
|
|
|
'Blairsburg', |
1336
|
|
|
|
|
|
|
'Blairsden', |
1337
|
|
|
|
|
|
|
'Blairstown', |
1338
|
|
|
|
|
|
|
'Blairsville', |
1339
|
|
|
|
|
|
|
'Blakely', |
1340
|
|
|
|
|
|
|
'Blakesburg', |
1341
|
|
|
|
|
|
|
'Blakeslee', |
1342
|
|
|
|
|
|
|
'Blanca', |
1343
|
|
|
|
|
|
|
'Blanchard', |
1344
|
|
|
|
|
|
|
'Blanchardville', |
1345
|
|
|
|
|
|
|
'Blanchester', |
1346
|
|
|
|
|
|
|
'Blanco', |
1347
|
|
|
|
|
|
|
'Bland', |
1348
|
|
|
|
|
|
|
'Blanding', |
1349
|
|
|
|
|
|
|
'Blandinsville', |
1350
|
|
|
|
|
|
|
'Blandville', |
1351
|
|
|
|
|
|
|
'Blanket', |
1352
|
|
|
|
|
|
|
'Blasdell', |
1353
|
|
|
|
|
|
|
'Blauvelt', |
1354
|
|
|
|
|
|
|
'Blawnox', |
1355
|
|
|
|
|
|
|
'Blencoe', |
1356
|
|
|
|
|
|
|
'Blenheim', |
1357
|
|
|
|
|
|
|
'Blennerhassett', |
1358
|
|
|
|
|
|
|
'Blessing', |
1359
|
|
|
|
|
|
|
'Blevins', |
1360
|
|
|
|
|
|
|
'Bliss', |
1361
|
|
|
|
|
|
|
'Bliss Corner', |
1362
|
|
|
|
|
|
|
'Blissfield', |
1363
|
|
|
|
|
|
|
'Blockton', |
1364
|
|
|
|
|
|
|
'Blodgett', |
1365
|
|
|
|
|
|
|
'Blomkest', |
1366
|
|
|
|
|
|
|
'Bloomburg', |
1367
|
|
|
|
|
|
|
'Bloomdale', |
1368
|
|
|
|
|
|
|
'Bloomer', |
1369
|
|
|
|
|
|
|
'Bloomfield', |
1370
|
|
|
|
|
|
|
'Bloomfield Hills', |
1371
|
|
|
|
|
|
|
'Bloomfield Township', |
1372
|
|
|
|
|
|
|
'Blooming Grove', |
1373
|
|
|
|
|
|
|
'Blooming Prairie', |
1374
|
|
|
|
|
|
|
'Blooming Valley', |
1375
|
|
|
|
|
|
|
'Bloomingburg', |
1376
|
|
|
|
|
|
|
'Bloomingdale', |
1377
|
|
|
|
|
|
|
'Bloomington', |
1378
|
|
|
|
|
|
|
'Bloomsburg', |
1379
|
|
|
|
|
|
|
'Bloomsbury', |
1380
|
|
|
|
|
|
|
'Bloomsdale', |
1381
|
|
|
|
|
|
|
'Bloomville', |
1382
|
|
|
|
|
|
|
'Blossburg', |
1383
|
|
|
|
|
|
|
'Blossom', |
1384
|
|
|
|
|
|
|
'Blountstown', |
1385
|
|
|
|
|
|
|
'Blountsville', |
1386
|
|
|
|
|
|
|
'Blountville', |
1387
|
|
|
|
|
|
|
'Blowing Rock', |
1388
|
|
|
|
|
|
|
'Bloxom', |
1389
|
|
|
|
|
|
|
'Blue Ash', |
1390
|
|
|
|
|
|
|
'Blue Bell', |
1391
|
|
|
|
|
|
|
'Blue Berry Hill', |
1392
|
|
|
|
|
|
|
'Blue Diamond', |
1393
|
|
|
|
|
|
|
'Blue Earth', |
1394
|
|
|
|
|
|
|
'Blue Eye', |
1395
|
|
|
|
|
|
|
'Blue Grass', |
1396
|
|
|
|
|
|
|
'Blue Hill', |
1397
|
|
|
|
|
|
|
'Blue Hills', |
1398
|
|
|
|
|
|
|
'Blue Island', |
1399
|
|
|
|
|
|
|
'Blue Lake', |
1400
|
|
|
|
|
|
|
'Blue Mound', |
1401
|
|
|
|
|
|
|
'Blue Mounds', |
1402
|
|
|
|
|
|
|
'Blue Mountain', |
1403
|
|
|
|
|
|
|
'Blue Point', |
1404
|
|
|
|
|
|
|
'Blue Rapids', |
1405
|
|
|
|
|
|
|
'Blue Ridge', |
1406
|
|
|
|
|
|
|
'Blue Ridge Manor', |
1407
|
|
|
|
|
|
|
'Blue River', |
1408
|
|
|
|
|
|
|
'Blue Springs', |
1409
|
|
|
|
|
|
|
'Bluefield', |
1410
|
|
|
|
|
|
|
'Bluejacket', |
1411
|
|
|
|
|
|
|
'Bluetown-Iglesia Antigua', |
1412
|
|
|
|
|
|
|
'Bluewater', |
1413
|
|
|
|
|
|
|
'Bluff', |
1414
|
|
|
|
|
|
|
'Bluff City', |
1415
|
|
|
|
|
|
|
'Bluffdale', |
1416
|
|
|
|
|
|
|
'Bluffs', |
1417
|
|
|
|
|
|
|
'Bluffton', |
1418
|
|
|
|
|
|
|
'Bluford', |
1419
|
|
|
|
|
|
|
'Blum', |
1420
|
|
|
|
|
|
|
'Blunt', |
1421
|
|
|
|
|
|
|
'Blyn', |
1422
|
|
|
|
|
|
|
'Blythe', |
1423
|
|
|
|
|
|
|
'Blythedale', |
1424
|
|
|
|
|
|
|
'Blytheville', |
1425
|
|
|
|
|
|
|
'Blythewood', |
1426
|
|
|
|
|
|
|
'Boalsburg', |
1427
|
|
|
|
|
|
|
'Boardman', |
1428
|
|
|
|
|
|
|
'Boaz', |
1429
|
|
|
|
|
|
|
'Boca Del Mar', |
1430
|
|
|
|
|
|
|
'Boca Pointe', |
1431
|
|
|
|
|
|
|
'Boca Raton', |
1432
|
|
|
|
|
|
|
'Bock', |
1433
|
|
|
|
|
|
|
'Bodcaw', |
1434
|
|
|
|
|
|
|
'Bode', |
1435
|
|
|
|
|
|
|
'Bodega Bay', |
1436
|
|
|
|
|
|
|
'Bodfish', |
1437
|
|
|
|
|
|
|
'Boerne', |
1438
|
|
|
|
|
|
|
'Bogalusa', |
1439
|
|
|
|
|
|
|
'Bogard', |
1440
|
|
|
|
|
|
|
'Bogart', |
1441
|
|
|
|
|
|
|
'Bogata', |
1442
|
|
|
|
|
|
|
'Boger City', |
1443
|
|
|
|
|
|
|
'Bogota', |
1444
|
|
|
|
|
|
|
'Bogue', |
1445
|
|
|
|
|
|
|
'Bogue Chitto', |
1446
|
|
|
|
|
|
|
'Bohemia', |
1447
|
|
|
|
|
|
|
'Bohners Lake', |
1448
|
|
|
|
|
|
|
'Boiling Spring Lakes', |
1449
|
|
|
|
|
|
|
'Boiling Springs', |
1450
|
|
|
|
|
|
|
'Boise City', |
1451
|
|
|
|
|
|
|
'Bokchito', |
1452
|
|
|
|
|
|
|
'Bokeelia', |
1453
|
|
|
|
|
|
|
'Bokoshe', |
1454
|
|
|
|
|
|
|
'Bolckow', |
1455
|
|
|
|
|
|
|
'Boles Acres', |
1456
|
|
|
|
|
|
|
'Boley', |
1457
|
|
|
|
|
|
|
'Boligee', |
1458
|
|
|
|
|
|
|
'Bolinas', |
1459
|
|
|
|
|
|
|
'Bolindale', |
1460
|
|
|
|
|
|
|
'Boling-Iago', |
1461
|
|
|
|
|
|
|
'Bolingbrook', |
1462
|
|
|
|
|
|
|
'Bolivar', |
1463
|
|
|
|
|
|
|
'Bolivar Peninsula', |
1464
|
|
|
|
|
|
|
'Bolivia', |
1465
|
|
|
|
|
|
|
'Bolton', |
1466
|
|
|
|
|
|
|
'Bombay Beach', |
1467
|
|
|
|
|
|
|
'Bon Air', |
1468
|
|
|
|
|
|
|
'Bonadelle Ranchos-Madera Ranchos', |
1469
|
|
|
|
|
|
|
'Bonanza', |
1470
|
|
|
|
|
|
|
'Bonaparte', |
1471
|
|
|
|
|
|
|
'Bondsville', |
1472
|
|
|
|
|
|
|
'Bonduel', |
1473
|
|
|
|
|
|
|
'Bondurant', |
1474
|
|
|
|
|
|
|
'Bondville', |
1475
|
|
|
|
|
|
|
'Bone Gap', |
1476
|
|
|
|
|
|
|
'Boneau', |
1477
|
|
|
|
|
|
|
'Bonesteel', |
1478
|
|
|
|
|
|
|
'Bonfield', |
1479
|
|
|
|
|
|
|
'Bonham', |
1480
|
|
|
|
|
|
|
'Bonifay', |
1481
|
|
|
|
|
|
|
'Bonita', |
1482
|
|
|
|
|
|
|
'Bonita Springs', |
1483
|
|
|
|
|
|
|
'Bonne Terre', |
1484
|
|
|
|
|
|
|
'Bonneau', |
1485
|
|
|
|
|
|
|
'Bonneauville', |
1486
|
|
|
|
|
|
|
'Bonner Springs', |
1487
|
|
|
|
|
|
|
'Bonner-West Riverside', |
1488
|
|
|
|
|
|
|
'Bonners Ferry', |
1489
|
|
|
|
|
|
|
'Bonnetsville', |
1490
|
|
|
|
|
|
|
'Bonney', |
1491
|
|
|
|
|
|
|
'Bonney Lake', |
1492
|
|
|
|
|
|
|
'Bonnie', |
1493
|
|
|
|
|
|
|
'Bonnie Lock-Woodsetter North', |
1494
|
|
|
|
|
|
|
'Bonnieville', |
1495
|
|
|
|
|
|
|
'Bono', |
1496
|
|
|
|
|
|
|
'Bonsall', |
1497
|
|
|
|
|
|
|
'Booker', |
1498
|
|
|
|
|
|
|
'Boone', |
1499
|
|
|
|
|
|
|
'Boones Mill', |
1500
|
|
|
|
|
|
|
'Booneville', |
1501
|
|
|
|
|
|
|
'Boonsboro', |
1502
|
|
|
|
|
|
|
'Boonton', |
1503
|
|
|
|
|
|
|
'Boonville', |
1504
|
|
|
|
|
|
|
'Boothbay Harbor', |
1505
|
|
|
|
|
|
|
'Boothville-Venice', |
1506
|
|
|
|
|
|
|
'Boothwyn', |
1507
|
|
|
|
|
|
|
'Bootjack', |
1508
|
|
|
|
|
|
|
'Boqueron', |
1509
|
|
|
|
|
|
|
'Boquerón', |
1510
|
|
|
|
|
|
|
'Borden', |
1511
|
|
|
|
|
|
|
'Bordentown', |
1512
|
|
|
|
|
|
|
'Borger', |
1513
|
|
|
|
|
|
|
'Boron', |
1514
|
|
|
|
|
|
|
'Boronda', |
1515
|
|
|
|
|
|
|
'Borrego Springs', |
1516
|
|
|
|
|
|
|
'Borup', |
1517
|
|
|
|
|
|
|
'Boscobel', |
1518
|
|
|
|
|
|
|
'Bosque Farms', |
1519
|
|
|
|
|
|
|
'Bossier City', |
1520
|
|
|
|
|
|
|
'Bostic', |
1521
|
|
|
|
|
|
|
'Boston', |
1522
|
|
|
|
|
|
|
'Boston Heights', |
1523
|
|
|
|
|
|
|
'Bostonia', |
1524
|
|
|
|
|
|
|
'Bostwick', |
1525
|
|
|
|
|
|
|
'Boswell', |
1526
|
|
|
|
|
|
|
'Bosworth', |
1527
|
|
|
|
|
|
|
'Bothell', |
1528
|
|
|
|
|
|
|
'Botines', |
1529
|
|
|
|
|
|
|
'Botkins', |
1530
|
|
|
|
|
|
|
'Bottineau', |
1531
|
|
|
|
|
|
|
'Boulder', |
1532
|
|
|
|
|
|
|
'Boulder City', |
1533
|
|
|
|
|
|
|
'Boulder Creek', |
1534
|
|
|
|
|
|
|
'Boulder Flats', |
1535
|
|
|
|
|
|
|
'Boulder Hill', |
1536
|
|
|
|
|
|
|
'Boulevard Gardens', |
1537
|
|
|
|
|
|
|
'Bound Brook', |
1538
|
|
|
|
|
|
|
'Bountiful', |
1539
|
|
|
|
|
|
|
'Bourbon', |
1540
|
|
|
|
|
|
|
'Bourbonnais', |
1541
|
|
|
|
|
|
|
'Bourne', |
1542
|
|
|
|
|
|
|
'Bouse', |
1543
|
|
|
|
|
|
|
'Bouton', |
1544
|
|
|
|
|
|
|
'Boutte', |
1545
|
|
|
|
|
|
|
'Bovey', |
1546
|
|
|
|
|
|
|
'Bovill', |
1547
|
|
|
|
|
|
|
'Bovina', |
1548
|
|
|
|
|
|
|
'Bow Mar', |
1549
|
|
|
|
|
|
|
'Bowbells', |
1550
|
|
|
|
|
|
|
'Bowdle', |
1551
|
|
|
|
|
|
|
'Bowdon', |
1552
|
|
|
|
|
|
|
'Bowen', |
1553
|
|
|
|
|
|
|
'Bowers', |
1554
|
|
|
|
|
|
|
'Bowerston', |
1555
|
|
|
|
|
|
|
'Bowersville', |
1556
|
|
|
|
|
|
|
'Bowie', |
1557
|
|
|
|
|
|
|
'Bowlegs', |
1558
|
|
|
|
|
|
|
'Bowler', |
1559
|
|
|
|
|
|
|
'Bowles', |
1560
|
|
|
|
|
|
|
'Bowleys Quarters', |
1561
|
|
|
|
|
|
|
'Bowling Green', |
1562
|
|
|
|
|
|
|
'Bowlus', |
1563
|
|
|
|
|
|
|
'Bowman', |
1564
|
|
|
|
|
|
|
'Bowmanstown', |
1565
|
|
|
|
|
|
|
'Bowmore', |
1566
|
|
|
|
|
|
|
'Box Canyon-Amistad', |
1567
|
|
|
|
|
|
|
'Box Elder', |
1568
|
|
|
|
|
|
|
'Boxford', |
1569
|
|
|
|
|
|
|
'Boxholm', |
1570
|
|
|
|
|
|
|
'Boy River', |
1571
|
|
|
|
|
|
|
'Boyce', |
1572
|
|
|
|
|
|
|
'Boyceville', |
1573
|
|
|
|
|
|
|
'Boyd', |
1574
|
|
|
|
|
|
|
'Boyden', |
1575
|
|
|
|
|
|
|
'Boydton', |
1576
|
|
|
|
|
|
|
'Boyertown', |
1577
|
|
|
|
|
|
|
'Boyes Hot Springs', |
1578
|
|
|
|
|
|
|
'Boyette', |
1579
|
|
|
|
|
|
|
'Boykins', |
1580
|
|
|
|
|
|
|
'Boyle', |
1581
|
|
|
|
|
|
|
'Boyne City', |
1582
|
|
|
|
|
|
|
'Boyne Falls', |
1583
|
|
|
|
|
|
|
'Boynton', |
1584
|
|
|
|
|
|
|
'Boynton Beach', |
1585
|
|
|
|
|
|
|
'Boys Town', |
1586
|
|
|
|
|
|
|
'Bozeman', |
1587
|
|
|
|
|
|
|
'Braceville', |
1588
|
|
|
|
|
|
|
'Brackenridge', |
1589
|
|
|
|
|
|
|
'Brackettville', |
1590
|
|
|
|
|
|
|
'Bradbury', |
1591
|
|
|
|
|
|
|
'Braddock', |
1592
|
|
|
|
|
|
|
'Braddock Heights', |
1593
|
|
|
|
|
|
|
'Braddock Hills', |
1594
|
|
|
|
|
|
|
'Braddyville', |
1595
|
|
|
|
|
|
|
'Braden', |
1596
|
|
|
|
|
|
|
'Bradenton', |
1597
|
|
|
|
|
|
|
'Bradenton Beach', |
1598
|
|
|
|
|
|
|
'Bradford', |
1599
|
|
|
|
|
|
|
'Bradfordsville', |
1600
|
|
|
|
|
|
|
'Bradfordwoods', |
1601
|
|
|
|
|
|
|
'Bradgate', |
1602
|
|
|
|
|
|
|
'Bradley', |
1603
|
|
|
|
|
|
|
'Bradley Beach', |
1604
|
|
|
|
|
|
|
'Bradner', |
1605
|
|
|
|
|
|
|
'Bradshaw', |
1606
|
|
|
|
|
|
|
'Brady', |
1607
|
|
|
|
|
|
|
'Brady Lake', |
1608
|
|
|
|
|
|
|
'Bragg City', |
1609
|
|
|
|
|
|
|
'Braggs', |
1610
|
|
|
|
|
|
|
'Braham', |
1611
|
|
|
|
|
|
|
'Braidwood', |
1612
|
|
|
|
|
|
|
'Brainard', |
1613
|
|
|
|
|
|
|
'Brainerd', |
1614
|
|
|
|
|
|
|
'Braintree', |
1615
|
|
|
|
|
|
|
'Braman', |
1616
|
|
|
|
|
|
|
'Bramwell', |
1617
|
|
|
|
|
|
|
'Branch', |
1618
|
|
|
|
|
|
|
'Branchdale', |
1619
|
|
|
|
|
|
|
'Branchville', |
1620
|
|
|
|
|
|
|
'Brandenburg', |
1621
|
|
|
|
|
|
|
'Brandon', |
1622
|
|
|
|
|
|
|
'Brandonville', |
1623
|
|
|
|
|
|
|
'Brandsville', |
1624
|
|
|
|
|
|
|
'Brandt', |
1625
|
|
|
|
|
|
|
'Brandywine', |
1626
|
|
|
|
|
|
|
'Branford', |
1627
|
|
|
|
|
|
|
'Branford Center', |
1628
|
|
|
|
|
|
|
'Branson', |
1629
|
|
|
|
|
|
|
'Branson West', |
1630
|
|
|
|
|
|
|
'Brantley', |
1631
|
|
|
|
|
|
|
'Braselton', |
1632
|
|
|
|
|
|
|
'Brashear', |
1633
|
|
|
|
|
|
|
'Brasher Falls-Winthrop', |
1634
|
|
|
|
|
|
|
'Brass Castle', |
1635
|
|
|
|
|
|
|
'Braswell', |
1636
|
|
|
|
|
|
|
'Bratenahl', |
1637
|
|
|
|
|
|
|
'Brattleboro', |
1638
|
|
|
|
|
|
|
'Brawley', |
1639
|
|
|
|
|
|
|
'Braxton', |
1640
|
|
|
|
|
|
|
'Bray', |
1641
|
|
|
|
|
|
|
'Braymer', |
1642
|
|
|
|
|
|
|
'Brayton', |
1643
|
|
|
|
|
|
|
'Brazil', |
1644
|
|
|
|
|
|
|
'Brazoria', |
1645
|
|
|
|
|
|
|
'Brea', |
1646
|
|
|
|
|
|
|
'Breaux Bridge', |
1647
|
|
|
|
|
|
|
'Breckenridge', |
1648
|
|
|
|
|
|
|
'Breckenridge Hills', |
1649
|
|
|
|
|
|
|
'Breckinridge Center', |
1650
|
|
|
|
|
|
|
'Brecksville', |
1651
|
|
|
|
|
|
|
'Breda', |
1652
|
|
|
|
|
|
|
'Breedsville', |
1653
|
|
|
|
|
|
|
'Breese', |
1654
|
|
|
|
|
|
|
'Breezy Point', |
1655
|
|
|
|
|
|
|
'Bremen', |
1656
|
|
|
|
|
|
|
'Bremerton', |
1657
|
|
|
|
|
|
|
'Bremond', |
1658
|
|
|
|
|
|
|
'Brenham', |
1659
|
|
|
|
|
|
|
'Brent', |
1660
|
|
|
|
|
|
|
'Brentford', |
1661
|
|
|
|
|
|
|
'Brentwood', |
1662
|
|
|
|
|
|
|
'Bressler-Enhaut-Oberlin', |
1663
|
|
|
|
|
|
|
'Bret Harte', |
1664
|
|
|
|
|
|
|
'Brevard', |
1665
|
|
|
|
|
|
|
'Brevig Mission', |
1666
|
|
|
|
|
|
|
'Brewer', |
1667
|
|
|
|
|
|
|
'Brewerton', |
1668
|
|
|
|
|
|
|
'Brewster', |
1669
|
|
|
|
|
|
|
'Brewster Hill', |
1670
|
|
|
|
|
|
|
'Brewton', |
1671
|
|
|
|
|
|
|
'Breñas', |
1672
|
|
|
|
|
|
|
'Brian Head', |
1673
|
|
|
|
|
|
|
'Briar', |
1674
|
|
|
|
|
|
|
'Briar Creek', |
1675
|
|
|
|
|
|
|
'Briarcliff', |
1676
|
|
|
|
|
|
|
'Briarcliff Manor', |
1677
|
|
|
|
|
|
|
'Briarcliffe Acres', |
1678
|
|
|
|
|
|
|
'Briaroaks', |
1679
|
|
|
|
|
|
|
'Briarwood', |
1680
|
|
|
|
|
|
|
'Brice', |
1681
|
|
|
|
|
|
|
'Brice Prairie', |
1682
|
|
|
|
|
|
|
'Bricelyn', |
1683
|
|
|
|
|
|
|
'Brices Creek', |
1684
|
|
|
|
|
|
|
'Brickerville', |
1685
|
|
|
|
|
|
|
'Bridge City', |
1686
|
|
|
|
|
|
|
'Bridgehampton', |
1687
|
|
|
|
|
|
|
'Bridgeport', |
1688
|
|
|
|
|
|
|
'Bridger', |
1689
|
|
|
|
|
|
|
'Bridgeton', |
1690
|
|
|
|
|
|
|
'Bridgetown North', |
1691
|
|
|
|
|
|
|
'Bridgeview', |
1692
|
|
|
|
|
|
|
'Bridgeville', |
1693
|
|
|
|
|
|
|
'Bridgewater', |
1694
|
|
|
|
|
|
|
'Bridgman', |
1695
|
|
|
|
|
|
|
'Bridgton', |
1696
|
|
|
|
|
|
|
'Brielle', |
1697
|
|
|
|
|
|
|
'Brier', |
1698
|
|
|
|
|
|
|
'Brigantine', |
1699
|
|
|
|
|
|
|
'Briggs', |
1700
|
|
|
|
|
|
|
'Brigham City', |
1701
|
|
|
|
|
|
|
'Bright', |
1702
|
|
|
|
|
|
|
'Brighton', |
1703
|
|
|
|
|
|
|
'Brightwaters', |
1704
|
|
|
|
|
|
|
'Brilliant', |
1705
|
|
|
|
|
|
|
'Brillion', |
1706
|
|
|
|
|
|
|
'Brimfield', |
1707
|
|
|
|
|
|
|
'Brimhall Nizhoni', |
1708
|
|
|
|
|
|
|
'Brimson', |
1709
|
|
|
|
|
|
|
'Brinckerhoff', |
1710
|
|
|
|
|
|
|
'Brinkley', |
1711
|
|
|
|
|
|
|
'Brinnon', |
1712
|
|
|
|
|
|
|
'Brinsmade', |
1713
|
|
|
|
|
|
|
'Brinson', |
1714
|
|
|
|
|
|
|
'Briny Breezes', |
1715
|
|
|
|
|
|
|
'Brisbane', |
1716
|
|
|
|
|
|
|
'Brisbin', |
1717
|
|
|
|
|
|
|
'Bristol', |
1718
|
|
|
|
|
|
|
'Bristow', |
1719
|
|
|
|
|
|
|
'Britt', |
1720
|
|
|
|
|
|
|
'Brittany Farms-Highlands', |
1721
|
|
|
|
|
|
|
'Britton', |
1722
|
|
|
|
|
|
|
'Broad Brook', |
1723
|
|
|
|
|
|
|
'Broad Fields', |
1724
|
|
|
|
|
|
|
'Broad Top City', |
1725
|
|
|
|
|
|
|
'Broadalbin', |
1726
|
|
|
|
|
|
|
'Broaddus', |
1727
|
|
|
|
|
|
|
'Broadland', |
1728
|
|
|
|
|
|
|
'Broadlands', |
1729
|
|
|
|
|
|
|
'Broadmoor', |
1730
|
|
|
|
|
|
|
'Broadus', |
1731
|
|
|
|
|
|
|
'Broadview', |
1732
|
|
|
|
|
|
|
'Broadview Heights', |
1733
|
|
|
|
|
|
|
'Broadview Park', |
1734
|
|
|
|
|
|
|
'Broadview-Pompano Park', |
1735
|
|
|
|
|
|
|
'Broadwater', |
1736
|
|
|
|
|
|
|
'Broadway', |
1737
|
|
|
|
|
|
|
'Broadwell', |
1738
|
|
|
|
|
|
|
'Brock', |
1739
|
|
|
|
|
|
|
'Brocket', |
1740
|
|
|
|
|
|
|
'Brockport', |
1741
|
|
|
|
|
|
|
'Brockton', |
1742
|
|
|
|
|
|
|
'Brockway', |
1743
|
|
|
|
|
|
|
'Brocton', |
1744
|
|
|
|
|
|
|
'Brodhead', |
1745
|
|
|
|
|
|
|
'Brodheadsville', |
1746
|
|
|
|
|
|
|
'Brodnax', |
1747
|
|
|
|
|
|
|
'Broeck Pointe', |
1748
|
|
|
|
|
|
|
'Brogden', |
1749
|
|
|
|
|
|
|
'Brokaw', |
1750
|
|
|
|
|
|
|
'Broken Arrow', |
1751
|
|
|
|
|
|
|
'Broken Bow', |
1752
|
|
|
|
|
|
|
'Bromide', |
1753
|
|
|
|
|
|
|
'Bromley', |
1754
|
|
|
|
|
|
|
'Bronaugh', |
1755
|
|
|
|
|
|
|
'Bronson', |
1756
|
|
|
|
|
|
|
'Bronte', |
1757
|
|
|
|
|
|
|
'Bronwood', |
1758
|
|
|
|
|
|
|
'Bronxville', |
1759
|
|
|
|
|
|
|
'Brook', |
1760
|
|
|
|
|
|
|
'Brook Park', |
1761
|
|
|
|
|
|
|
'Brookdale', |
1762
|
|
|
|
|
|
|
'Brooker', |
1763
|
|
|
|
|
|
|
'Brookeville', |
1764
|
|
|
|
|
|
|
'Brookfield', |
1765
|
|
|
|
|
|
|
'Brookfield Center', |
1766
|
|
|
|
|
|
|
'Brookford', |
1767
|
|
|
|
|
|
|
'Brookhaven', |
1768
|
|
|
|
|
|
|
'Brookhurst', |
1769
|
|
|
|
|
|
|
'Brookings', |
1770
|
|
|
|
|
|
|
'Brookland', |
1771
|
|
|
|
|
|
|
'Brooklawn', |
1772
|
|
|
|
|
|
|
'Brooklet', |
1773
|
|
|
|
|
|
|
'Brookline', |
1774
|
|
|
|
|
|
|
'Brooklyn', |
1775
|
|
|
|
|
|
|
'Brooklyn Center', |
1776
|
|
|
|
|
|
|
'Brooklyn Heights', |
1777
|
|
|
|
|
|
|
'Brooklyn Park', |
1778
|
|
|
|
|
|
|
'Brookmont', |
1779
|
|
|
|
|
|
|
'Brookneal', |
1780
|
|
|
|
|
|
|
'Brookport', |
1781
|
|
|
|
|
|
|
'Brookridge', |
1782
|
|
|
|
|
|
|
'Brooks', |
1783
|
|
|
|
|
|
|
'Brooksburg', |
1784
|
|
|
|
|
|
|
'Brookshire', |
1785
|
|
|
|
|
|
|
'Brookside', |
1786
|
|
|
|
|
|
|
'Brookside Village', |
1787
|
|
|
|
|
|
|
'Brookston', |
1788
|
|
|
|
|
|
|
'Brooksville', |
1789
|
|
|
|
|
|
|
'Brookview', |
1790
|
|
|
|
|
|
|
'Brookville', |
1791
|
|
|
|
|
|
|
'Brookwood', |
1792
|
|
|
|
|
|
|
'Broomall', |
1793
|
|
|
|
|
|
|
'Broomfield', |
1794
|
|
|
|
|
|
|
'Brooten', |
1795
|
|
|
|
|
|
|
'Broughton', |
1796
|
|
|
|
|
|
|
'Broussard', |
1797
|
|
|
|
|
|
|
'Broward Estates', |
1798
|
|
|
|
|
|
|
'Browerville', |
1799
|
|
|
|
|
|
|
'Brown City', |
1800
|
|
|
|
|
|
|
'Brown Deer', |
1801
|
|
|
|
|
|
|
'Browndell', |
1802
|
|
|
|
|
|
|
'Brownell', |
1803
|
|
|
|
|
|
|
'Brownfield', |
1804
|
|
|
|
|
|
|
'Brownfields', |
1805
|
|
|
|
|
|
|
'Browning', |
1806
|
|
|
|
|
|
|
'Brownington', |
1807
|
|
|
|
|
|
|
'Brownlee Park', |
1808
|
|
|
|
|
|
|
'Browns', |
1809
|
|
|
|
|
|
|
'Browns Lake', |
1810
|
|
|
|
|
|
|
'Browns Mills', |
1811
|
|
|
|
|
|
|
'Browns Valley', |
1812
|
|
|
|
|
|
|
'Brownsboro', |
1813
|
|
|
|
|
|
|
'Brownsboro Farm', |
1814
|
|
|
|
|
|
|
'Brownsboro Village', |
1815
|
|
|
|
|
|
|
'Brownsburg', |
1816
|
|
|
|
|
|
|
'Brownsdale', |
1817
|
|
|
|
|
|
|
'Brownstown', |
1818
|
|
|
|
|
|
|
'Brownsville', |
1819
|
|
|
|
|
|
|
'Brownsville-Bawcomville', |
1820
|
|
|
|
|
|
|
'Brownton', |
1821
|
|
|
|
|
|
|
'Browntown', |
1822
|
|
|
|
|
|
|
'Brownville', |
1823
|
|
|
|
|
|
|
'Brownwood', |
1824
|
|
|
|
|
|
|
'Broxton', |
1825
|
|
|
|
|
|
|
'Bruce', |
1826
|
|
|
|
|
|
|
'Bruceton', |
1827
|
|
|
|
|
|
|
'Bruceton Mills', |
1828
|
|
|
|
|
|
|
'Bruceville', |
1829
|
|
|
|
|
|
|
'Bruceville-Eddy', |
1830
|
|
|
|
|
|
|
'Bruin', |
1831
|
|
|
|
|
|
|
'Brule', |
1832
|
|
|
|
|
|
|
'Brumley', |
1833
|
|
|
|
|
|
|
'Brundage', |
1834
|
|
|
|
|
|
|
'Brundidge', |
1835
|
|
|
|
|
|
|
'Bruni', |
1836
|
|
|
|
|
|
|
'Bruning', |
1837
|
|
|
|
|
|
|
'Bruno', |
1838
|
|
|
|
|
|
|
'Brunson', |
1839
|
|
|
|
|
|
|
'Brunsville', |
1840
|
|
|
|
|
|
|
'Brunswick', |
1841
|
|
|
|
|
|
|
'Brunswick Station', |
1842
|
|
|
|
|
|
|
'Brush', |
1843
|
|
|
|
|
|
|
'Brush Creek', |
1844
|
|
|
|
|
|
|
'Brush Prairie', |
1845
|
|
|
|
|
|
|
'Brushton', |
1846
|
|
|
|
|
|
|
'Brushy', |
1847
|
|
|
|
|
|
|
'Brushy Creek', |
1848
|
|
|
|
|
|
|
'Brusly', |
1849
|
|
|
|
|
|
|
'Brussels', |
1850
|
|
|
|
|
|
|
'Bryan', |
1851
|
|
|
|
|
|
|
'Bryans Road', |
1852
|
|
|
|
|
|
|
'Bryant', |
1853
|
|
|
|
|
|
|
'Bryceland', |
1854
|
|
|
|
|
|
|
'Bryn Athyn', |
1855
|
|
|
|
|
|
|
'Bryn Mawr', |
1856
|
|
|
|
|
|
|
'Bryn Mawr-Skyway', |
1857
|
|
|
|
|
|
|
'Bryson', |
1858
|
|
|
|
|
|
|
'Bryson City', |
1859
|
|
|
|
|
|
|
'Buchanan', |
1860
|
|
|
|
|
|
|
'Buchanan Dam', |
1861
|
|
|
|
|
|
|
'Buchtel', |
1862
|
|
|
|
|
|
|
'Buck Grove', |
1863
|
|
|
|
|
|
|
'Buck Run', |
1864
|
|
|
|
|
|
|
'Buckeye', |
1865
|
|
|
|
|
|
|
'Buckeye Lake', |
1866
|
|
|
|
|
|
|
'Buckhannon', |
1867
|
|
|
|
|
|
|
'Buckhead', |
1868
|
|
|
|
|
|
|
'Buckhead Ridge', |
1869
|
|
|
|
|
|
|
'Buckholts', |
1870
|
|
|
|
|
|
|
'Buckhorn', |
1871
|
|
|
|
|
|
|
'Buckingham', |
1872
|
|
|
|
|
|
|
'Buckland', |
1873
|
|
|
|
|
|
|
'Buckley', |
1874
|
|
|
|
|
|
|
'Bucklin', |
1875
|
|
|
|
|
|
|
'Buckman', |
1876
|
|
|
|
|
|
|
'Buckner', |
1877
|
|
|
|
|
|
|
'Bucks Lake', |
1878
|
|
|
|
|
|
|
'Bucksport', |
1879
|
|
|
|
|
|
|
'Bucoda', |
1880
|
|
|
|
|
|
|
'Bucyrus', |
1881
|
|
|
|
|
|
|
'Buda', |
1882
|
|
|
|
|
|
|
'Budd Lake', |
1883
|
|
|
|
|
|
|
'Bude', |
1884
|
|
|
|
|
|
|
'Buechel', |
1885
|
|
|
|
|
|
|
'Buellton', |
1886
|
|
|
|
|
|
|
'Buena', |
1887
|
|
|
|
|
|
|
'Buena Park', |
1888
|
|
|
|
|
|
|
'Buena Vista', |
1889
|
|
|
|
|
|
|
'Buffalo', |
1890
|
|
|
|
|
|
|
'Buffalo Center', |
1891
|
|
|
|
|
|
|
'Buffalo City', |
1892
|
|
|
|
|
|
|
'Buffalo Gap', |
1893
|
|
|
|
|
|
|
'Buffalo Grove', |
1894
|
|
|
|
|
|
|
'Buffalo Lake', |
1895
|
|
|
|
|
|
|
'Buffalo Soapstone', |
1896
|
|
|
|
|
|
|
'Buffalo Springs', |
1897
|
|
|
|
|
|
|
'Buford', |
1898
|
|
|
|
|
|
|
'Buhl', |
1899
|
|
|
|
|
|
|
'Buhler', |
1900
|
|
|
|
|
|
|
'Buies Creek', |
1901
|
|
|
|
|
|
|
'Bull Creek', |
1902
|
|
|
|
|
|
|
'Bull Hollow', |
1903
|
|
|
|
|
|
|
'Bull Run', |
1904
|
|
|
|
|
|
|
'Bull Shoals', |
1905
|
|
|
|
|
|
|
'Bull Valley', |
1906
|
|
|
|
|
|
|
'Bullard', |
1907
|
|
|
|
|
|
|
'Bullhead', |
1908
|
|
|
|
|
|
|
'Bullhead City', |
1909
|
|
|
|
|
|
|
'Bulls Gap', |
1910
|
|
|
|
|
|
|
'Bulpitt', |
1911
|
|
|
|
|
|
|
'Bulverde', |
1912
|
|
|
|
|
|
|
'Buna', |
1913
|
|
|
|
|
|
|
'Bunceton', |
1914
|
|
|
|
|
|
|
'Bunche Park', |
1915
|
|
|
|
|
|
|
'Buncombe', |
1916
|
|
|
|
|
|
|
'Bunker', |
1917
|
|
|
|
|
|
|
'Bunker Hill', |
1918
|
|
|
|
|
|
|
'Bunker Hill Village', |
1919
|
|
|
|
|
|
|
'Bunkerville', |
1920
|
|
|
|
|
|
|
'Bunkie', |
1921
|
|
|
|
|
|
|
'Bunn', |
1922
|
|
|
|
|
|
|
'Bunnell', |
1923
|
|
|
|
|
|
|
'Buras-Triumph', |
1924
|
|
|
|
|
|
|
'Burbank', |
1925
|
|
|
|
|
|
|
'Burchard', |
1926
|
|
|
|
|
|
|
'Burden', |
1927
|
|
|
|
|
|
|
'Burdett', |
1928
|
|
|
|
|
|
|
'Burdette', |
1929
|
|
|
|
|
|
|
'Bureau Junction', |
1930
|
|
|
|
|
|
|
'Burgaw', |
1931
|
|
|
|
|
|
|
'Burgess', |
1932
|
|
|
|
|
|
|
'Burgettstown', |
1933
|
|
|
|
|
|
|
'Burgin', |
1934
|
|
|
|
|
|
|
'Burgoon', |
1935
|
|
|
|
|
|
|
'Burien', |
1936
|
|
|
|
|
|
|
'Burkburnett', |
1937
|
|
|
|
|
|
|
'Burke', |
1938
|
|
|
|
|
|
|
'Burkesville', |
1939
|
|
|
|
|
|
|
'Burket', |
1940
|
|
|
|
|
|
|
'Burkettsville', |
1941
|
|
|
|
|
|
|
'Burkeville', |
1942
|
|
|
|
|
|
|
'Burkittsville', |
1943
|
|
|
|
|
|
|
'Burleson', |
1944
|
|
|
|
|
|
|
'Burley', |
1945
|
|
|
|
|
|
|
'Burlingame', |
1946
|
|
|
|
|
|
|
'Burlington', |
1947
|
|
|
|
|
|
|
'Burlington Junction', |
1948
|
|
|
|
|
|
|
'Burlison', |
1949
|
|
|
|
|
|
|
'Burnet', |
1950
|
|
|
|
|
|
|
'Burnettown', |
1951
|
|
|
|
|
|
|
'Burnettsville', |
1952
|
|
|
|
|
|
|
'Burney', |
1953
|
|
|
|
|
|
|
'Burnham', |
1954
|
|
|
|
|
|
|
'Burns', |
1955
|
|
|
|
|
|
|
'Burns Flat', |
1956
|
|
|
|
|
|
|
'Burns Harbor', |
1957
|
|
|
|
|
|
|
'Burnside', |
1958
|
|
|
|
|
|
|
'Burnsville', |
1959
|
|
|
|
|
|
|
'Burnt Prairie', |
1960
|
|
|
|
|
|
|
'Burnt Store Marina', |
1961
|
|
|
|
|
|
|
'Burr', |
1962
|
|
|
|
|
|
|
'Burr Oak', |
1963
|
|
|
|
|
|
|
'Burr Ridge', |
1964
|
|
|
|
|
|
|
'Burrton', |
1965
|
|
|
|
|
|
|
'Burt', |
1966
|
|
|
|
|
|
|
'Burton', |
1967
|
|
|
|
|
|
|
'Burtonsville', |
1968
|
|
|
|
|
|
|
'Burtrum', |
1969
|
|
|
|
|
|
|
'Burwell', |
1970
|
|
|
|
|
|
|
'Busby', |
1971
|
|
|
|
|
|
|
'Bush', |
1972
|
|
|
|
|
|
|
'Bushnell', |
1973
|
|
|
|
|
|
|
'Bushong', |
1974
|
|
|
|
|
|
|
'Bushton', |
1975
|
|
|
|
|
|
|
'Bushyhead', |
1976
|
|
|
|
|
|
|
'Bussey', |
1977
|
|
|
|
|
|
|
'Butler', |
1978
|
|
|
|
|
|
|
'Butler Beach', |
1979
|
|
|
|
|
|
|
'Butlerville', |
1980
|
|
|
|
|
|
|
'Butner', |
1981
|
|
|
|
|
|
|
'Butte', |
1982
|
|
|
|
|
|
|
'Butte City', |
1983
|
|
|
|
|
|
|
'Butte Falls', |
1984
|
|
|
|
|
|
|
'Butterfield', |
1985
|
|
|
|
|
|
|
'Butternut', |
1986
|
|
|
|
|
|
|
'Butters', |
1987
|
|
|
|
|
|
|
'Butteville', |
1988
|
|
|
|
|
|
|
'Buttonwillow', |
1989
|
|
|
|
|
|
|
'Buxton', |
1990
|
|
|
|
|
|
|
'Buzzards Bay', |
1991
|
|
|
|
|
|
|
'Byars', |
1992
|
|
|
|
|
|
|
'Byers', |
1993
|
|
|
|
|
|
|
'Byesville', |
1994
|
|
|
|
|
|
|
'Byhalia', |
1995
|
|
|
|
|
|
|
'Byng', |
1996
|
|
|
|
|
|
|
'Bynum', |
1997
|
|
|
|
|
|
|
'Byram', |
1998
|
|
|
|
|
|
|
'Byrdstown', |
1999
|
|
|
|
|
|
|
'Byrnes Mill', |
2000
|
|
|
|
|
|
|
'Byromville', |
2001
|
|
|
|
|
|
|
'Byron', |
2002
|
|
|
|
|
|
|
'Byron Center', |
2003
|
|
|
|
|
|
|
'Bystrom', |
2004
|
|
|
|
|
|
|
'Búfalo', |
2005
|
|
|
|
|
|
|
'C-Road', |
2006
|
|
|
|
|
|
|
'Cabazon', |
2007
|
|
|
|
|
|
|
'Cabery', |
2008
|
|
|
|
|
|
|
'Cabin John', |
2009
|
|
|
|
|
|
|
'Cabo Rojo', |
2010
|
|
|
|
|
|
|
'Cabool', |
2011
|
|
|
|
|
|
|
'Cabot', |
2012
|
|
|
|
|
|
|
'Cabán', |
2013
|
|
|
|
|
|
|
'Cacao', |
2014
|
|
|
|
|
|
|
'Cache', |
2015
|
|
|
|
|
|
|
'Cactus', |
2016
|
|
|
|
|
|
|
'Caddo', |
2017
|
|
|
|
|
|
|
'Caddo Mills', |
2018
|
|
|
|
|
|
|
'Caddo Valley', |
2019
|
|
|
|
|
|
|
'Cadillac', |
2020
|
|
|
|
|
|
|
'Cadiz', |
2021
|
|
|
|
|
|
|
'Cadott', |
2022
|
|
|
|
|
|
|
'Cadwell', |
2023
|
|
|
|
|
|
|
'Caguas', |
2024
|
|
|
|
|
|
|
'Cahaba Heights', |
2025
|
|
|
|
|
|
|
'Cahokia', |
2026
|
|
|
|
|
|
|
'Cainsville', |
2027
|
|
|
|
|
|
|
'Cairo', |
2028
|
|
|
|
|
|
|
'Cajah\'s Mountain', |
2029
|
|
|
|
|
|
|
'Cal-Nev-Ari', |
2030
|
|
|
|
|
|
|
'Calabasas', |
2031
|
|
|
|
|
|
|
'Calabash', |
2032
|
|
|
|
|
|
|
'Calais', |
2033
|
|
|
|
|
|
|
'Calamus', |
2034
|
|
|
|
|
|
|
'Calcium', |
2035
|
|
|
|
|
|
|
'Calcutta', |
2036
|
|
|
|
|
|
|
'Caldwell', |
2037
|
|
|
|
|
|
|
'Cale', |
2038
|
|
|
|
|
|
|
'Caledonia', |
2039
|
|
|
|
|
|
|
'Calera', |
2040
|
|
|
|
|
|
|
'Calexico', |
2041
|
|
|
|
|
|
|
'Calhan', |
2042
|
|
|
|
|
|
|
'Calhoun', |
2043
|
|
|
|
|
|
|
'Calhoun City', |
2044
|
|
|
|
|
|
|
'Calhoun Falls', |
2045
|
|
|
|
|
|
|
'Calico Rock', |
2046
|
|
|
|
|
|
|
'Caliente', |
2047
|
|
|
|
|
|
|
'Califon', |
2048
|
|
|
|
|
|
|
'California', |
2049
|
|
|
|
|
|
|
'California City', |
2050
|
|
|
|
|
|
|
'Calimesa', |
2051
|
|
|
|
|
|
|
'Calio', |
2052
|
|
|
|
|
|
|
'Calion', |
2053
|
|
|
|
|
|
|
'Calipatria', |
2054
|
|
|
|
|
|
|
'Calistoga', |
2055
|
|
|
|
|
|
|
'Callahan', |
2056
|
|
|
|
|
|
|
'Callao', |
2057
|
|
|
|
|
|
|
'Callaway', |
2058
|
|
|
|
|
|
|
'Callender', |
2059
|
|
|
|
|
|
|
'Callensburg', |
2060
|
|
|
|
|
|
|
'Callery', |
2061
|
|
|
|
|
|
|
'Callicoon', |
2062
|
|
|
|
|
|
|
'Callimont', |
2063
|
|
|
|
|
|
|
'Callisburg', |
2064
|
|
|
|
|
|
|
'Calmar', |
2065
|
|
|
|
|
|
|
'Calpet', |
2066
|
|
|
|
|
|
|
'Calumet', |
2067
|
|
|
|
|
|
|
'Calumet City', |
2068
|
|
|
|
|
|
|
'Calumet Park', |
2069
|
|
|
|
|
|
|
'Calumet-Norvelt', |
2070
|
|
|
|
|
|
|
'Calvert', |
2071
|
|
|
|
|
|
|
'Calvert Beach-Long Beach', |
2072
|
|
|
|
|
|
|
'Calvert City', |
2073
|
|
|
|
|
|
|
'Calverton', |
2074
|
|
|
|
|
|
|
'Calverton Park', |
2075
|
|
|
|
|
|
|
'Calvin', |
2076
|
|
|
|
|
|
|
'Calwa', |
2077
|
|
|
|
|
|
|
'Calypso', |
2078
|
|
|
|
|
|
|
'Camak', |
2079
|
|
|
|
|
|
|
'Camanche', |
2080
|
|
|
|
|
|
|
'Camano', |
2081
|
|
|
|
|
|
|
'Camargo', |
2082
|
|
|
|
|
|
|
'Camarillo', |
2083
|
|
|
|
|
|
|
'Camas', |
2084
|
|
|
|
|
|
|
'Cambria', |
2085
|
|
|
|
|
|
|
'Cambrian Park', |
2086
|
|
|
|
|
|
|
'Cambridge', |
2087
|
|
|
|
|
|
|
'Cambridge City', |
2088
|
|
|
|
|
|
|
'Cambridge Springs', |
2089
|
|
|
|
|
|
|
'Camden', |
2090
|
|
|
|
|
|
|
'Camden Point', |
2091
|
|
|
|
|
|
|
'Camden-on-Gauley', |
2092
|
|
|
|
|
|
|
'Camdenton', |
2093
|
|
|
|
|
|
|
'Cameron', |
2094
|
|
|
|
|
|
|
'Cameron Park', |
2095
|
|
|
|
|
|
|
'Camilla', |
2096
|
|
|
|
|
|
|
'Camillus', |
2097
|
|
|
|
|
|
|
'Cammack Village', |
2098
|
|
|
|
|
|
|
'Camp Crook', |
2099
|
|
|
|
|
|
|
'Camp Douglas', |
2100
|
|
|
|
|
|
|
'Camp Hill', |
2101
|
|
|
|
|
|
|
'Camp Lake', |
2102
|
|
|
|
|
|
|
'Camp Pendleton North', |
2103
|
|
|
|
|
|
|
'Camp Pendleton South', |
2104
|
|
|
|
|
|
|
'Camp Point', |
2105
|
|
|
|
|
|
|
'Camp Springs', |
2106
|
|
|
|
|
|
|
'Camp Swift', |
2107
|
|
|
|
|
|
|
'Camp Three', |
2108
|
|
|
|
|
|
|
'Camp Verde', |
2109
|
|
|
|
|
|
|
'Camp Wood', |
2110
|
|
|
|
|
|
|
'Campanilla', |
2111
|
|
|
|
|
|
|
'Campbell', |
2112
|
|
|
|
|
|
|
'Campbell Hill', |
2113
|
|
|
|
|
|
|
'Campbell Station', |
2114
|
|
|
|
|
|
|
'Campbellsburg', |
2115
|
|
|
|
|
|
|
'Campbellsport', |
2116
|
|
|
|
|
|
|
'Campbellsville', |
2117
|
|
|
|
|
|
|
'Campbellton', |
2118
|
|
|
|
|
|
|
'Campbelltown', |
2119
|
|
|
|
|
|
|
'Campion', |
2120
|
|
|
|
|
|
|
'Campo', |
2121
|
|
|
|
|
|
|
'Campo Rico', |
2122
|
|
|
|
|
|
|
'Campobello', |
2123
|
|
|
|
|
|
|
'Campti', |
2124
|
|
|
|
|
|
|
'Campton', |
2125
|
|
|
|
|
|
|
'Campus', |
2126
|
|
|
|
|
|
|
'Camuy', |
2127
|
|
|
|
|
|
|
'Cana', |
2128
|
|
|
|
|
|
|
'Canaan', |
2129
|
|
|
|
|
|
|
'Canada Creek Ranch', |
2130
|
|
|
|
|
|
|
'Canada de los Alamos', |
2131
|
|
|
|
|
|
|
'Canadian', |
2132
|
|
|
|
|
|
|
'Canadian Lakes', |
2133
|
|
|
|
|
|
|
'Canadohta Lake', |
2134
|
|
|
|
|
|
|
'Canajoharie', |
2135
|
|
|
|
|
|
|
'Canal Fulton', |
2136
|
|
|
|
|
|
|
'Canal Point', |
2137
|
|
|
|
|
|
|
'Canal Winchester', |
2138
|
|
|
|
|
|
|
'Canalou', |
2139
|
|
|
|
|
|
|
'Canandaigua', |
2140
|
|
|
|
|
|
|
'Canaseraga', |
2141
|
|
|
|
|
|
|
'Canastota', |
2142
|
|
|
|
|
|
|
'Canby', |
2143
|
|
|
|
|
|
|
'Candelaria', |
2144
|
|
|
|
|
|
|
'Candelaria Arenas', |
2145
|
|
|
|
|
|
|
'Candelero Arriba', |
2146
|
|
|
|
|
|
|
'Candler-McAfee', |
2147
|
|
|
|
|
|
|
'Cando', |
2148
|
|
|
|
|
|
|
'Candor', |
2149
|
|
|
|
|
|
|
'Cane Savannah', |
2150
|
|
|
|
|
|
|
'Caney', |
2151
|
|
|
|
|
|
|
'Caney City', |
2152
|
|
|
|
|
|
|
'Caneyville', |
2153
|
|
|
|
|
|
|
'Canfield', |
2154
|
|
|
|
|
|
|
'Canisteo', |
2155
|
|
|
|
|
|
|
'Canistota', |
2156
|
|
|
|
|
|
|
'Cankton', |
2157
|
|
|
|
|
|
|
'Cannelburg', |
2158
|
|
|
|
|
|
|
'Cannelton', |
2159
|
|
|
|
|
|
|
'Cannon AFB', |
2160
|
|
|
|
|
|
|
'Cannon Ball', |
2161
|
|
|
|
|
|
|
'Cannon Beach', |
2162
|
|
|
|
|
|
|
'Cannon Falls', |
2163
|
|
|
|
|
|
|
'Cannonville', |
2164
|
|
|
|
|
|
|
'Canon', |
2165
|
|
|
|
|
|
|
'Canon City', |
2166
|
|
|
|
|
|
|
'Canonsburg', |
2167
|
|
|
|
|
|
|
'Canova', |
2168
|
|
|
|
|
|
|
'Canton', |
2169
|
|
|
|
|
|
|
'Canton City', |
2170
|
|
|
|
|
|
|
'Canton Valley', |
2171
|
|
|
|
|
|
|
'Cantrall', |
2172
|
|
|
|
|
|
|
'Cantril', |
2173
|
|
|
|
|
|
|
'Cantu Addition', |
2174
|
|
|
|
|
|
|
'Cantua Creek', |
2175
|
|
|
|
|
|
|
'Cantwell', |
2176
|
|
|
|
|
|
|
'Canute', |
2177
|
|
|
|
|
|
|
'Canutillo', |
2178
|
|
|
|
|
|
|
'Canyon', |
2179
|
|
|
|
|
|
|
'Canyon City', |
2180
|
|
|
|
|
|
|
'Canyon Day', |
2181
|
|
|
|
|
|
|
'Canyon Lake', |
2182
|
|
|
|
|
|
|
'Canyon Rim', |
2183
|
|
|
|
|
|
|
'Canyondam', |
2184
|
|
|
|
|
|
|
'Canyonville', |
2185
|
|
|
|
|
|
|
'Canóvanas', |
2186
|
|
|
|
|
|
|
'Capac', |
2187
|
|
|
|
|
|
|
'Cape Canaveral', |
2188
|
|
|
|
|
|
|
'Cape Carteret', |
2189
|
|
|
|
|
|
|
'Cape Charles', |
2190
|
|
|
|
|
|
|
'Cape Coral', |
2191
|
|
|
|
|
|
|
'Cape Girardeau', |
2192
|
|
|
|
|
|
|
'Cape May', |
2193
|
|
|
|
|
|
|
'Cape May Court House', |
2194
|
|
|
|
|
|
|
'Cape May Point', |
2195
|
|
|
|
|
|
|
'Cape Meares', |
2196
|
|
|
|
|
|
|
'Cape Neddick', |
2197
|
|
|
|
|
|
|
'Cape St. Claire', |
2198
|
|
|
|
|
|
|
'Cape Vincent', |
2199
|
|
|
|
|
|
|
'Capitan', |
2200
|
|
|
|
|
|
|
'Capitanejo', |
2201
|
|
|
|
|
|
|
'Capitol Heights', |
2202
|
|
|
|
|
|
|
'Capitola', |
2203
|
|
|
|
|
|
|
'Capon Bridge', |
2204
|
|
|
|
|
|
|
'Capron', |
2205
|
|
|
|
|
|
|
'Captain Cook', |
2206
|
|
|
|
|
|
|
'Captiva', |
2207
|
|
|
|
|
|
|
'Caraway', |
2208
|
|
|
|
|
|
|
'Carbon', |
2209
|
|
|
|
|
|
|
'Carbon Cliff', |
2210
|
|
|
|
|
|
|
'Carbon Hill', |
2211
|
|
|
|
|
|
|
'Carbonado', |
2212
|
|
|
|
|
|
|
'Carbondale', |
2213
|
|
|
|
|
|
|
'Cardiff', |
2214
|
|
|
|
|
|
|
'Cardin', |
2215
|
|
|
|
|
|
|
'Cardington', |
2216
|
|
|
|
|
|
|
'Cardwell', |
2217
|
|
|
|
|
|
|
'Carefree', |
2218
|
|
|
|
|
|
|
'Carencro', |
2219
|
|
|
|
|
|
|
'Carey', |
2220
|
|
|
|
|
|
|
'Caribou', |
2221
|
|
|
|
|
|
|
'Carl', |
2222
|
|
|
|
|
|
|
'Carl Junction', |
2223
|
|
|
|
|
|
|
'Carl\'s Corner', |
2224
|
|
|
|
|
|
|
'Carle Place', |
2225
|
|
|
|
|
|
|
'Carleton', |
2226
|
|
|
|
|
|
|
'Carlile', |
2227
|
|
|
|
|
|
|
'Carlin', |
2228
|
|
|
|
|
|
|
'Carlinville', |
2229
|
|
|
|
|
|
|
'Carlisle', |
2230
|
|
|
|
|
|
|
'Carlock', |
2231
|
|
|
|
|
|
|
'Carlos', |
2232
|
|
|
|
|
|
|
'Carlsbad', |
2233
|
|
|
|
|
|
|
'Carlsbad North', |
2234
|
|
|
|
|
|
|
'Carlsborg', |
2235
|
|
|
|
|
|
|
'Carlstadt', |
2236
|
|
|
|
|
|
|
'Carlton', |
2237
|
|
|
|
|
|
|
'Carlyle', |
2238
|
|
|
|
|
|
|
'Carlyss', |
2239
|
|
|
|
|
|
|
'Carmel', |
2240
|
|
|
|
|
|
|
'Carmel Hamlet', |
2241
|
|
|
|
|
|
|
'Carmel Valley Village', |
2242
|
|
|
|
|
|
|
'Carmel-by-the-Sea', |
2243
|
|
|
|
|
|
|
'Carmen', |
2244
|
|
|
|
|
|
|
'Carmi', |
2245
|
|
|
|
|
|
|
'Carmichael', |
2246
|
|
|
|
|
|
|
'Carmichaels', |
2247
|
|
|
|
|
|
|
'Carmine', |
2248
|
|
|
|
|
|
|
'Carmody Hills-Pepper Mill Village', |
2249
|
|
|
|
|
|
|
'Carnation', |
2250
|
|
|
|
|
|
|
'Carnegie', |
2251
|
|
|
|
|
|
|
'Carnesville', |
2252
|
|
|
|
|
|
|
'Carney', |
2253
|
|
|
|
|
|
|
'Carneys Point', |
2254
|
|
|
|
|
|
|
'Carnot-Moon', |
2255
|
|
|
|
|
|
|
'Carnuel', |
2256
|
|
|
|
|
|
|
'Caro', |
2257
|
|
|
|
|
|
|
'Carol City', |
2258
|
|
|
|
|
|
|
'Carol Stream', |
2259
|
|
|
|
|
|
|
'Carolina', |
2260
|
|
|
|
|
|
|
'Carolina Beach', |
2261
|
|
|
|
|
|
|
'Carolina Shores', |
2262
|
|
|
|
|
|
|
'Carpendale', |
2263
|
|
|
|
|
|
|
'Carpenter', |
2264
|
|
|
|
|
|
|
'Carpentersville', |
2265
|
|
|
|
|
|
|
'Carpinteria', |
2266
|
|
|
|
|
|
|
'Carpio', |
2267
|
|
|
|
|
|
|
'Carrabelle', |
2268
|
|
|
|
|
|
|
'Carrboro', |
2269
|
|
|
|
|
|
|
'Carriage Club', |
2270
|
|
|
|
|
|
|
'Carrick', |
2271
|
|
|
|
|
|
|
'Carrier', |
2272
|
|
|
|
|
|
|
'Carrier Mills', |
2273
|
|
|
|
|
|
|
'Carrington', |
2274
|
|
|
|
|
|
|
'Carrizales', |
2275
|
|
|
|
|
|
|
'Carrizo Hill', |
2276
|
|
|
|
|
|
|
'Carrizo Springs', |
2277
|
|
|
|
|
|
|
'Carrizozo', |
2278
|
|
|
|
|
|
|
'Carroll', |
2279
|
|
|
|
|
|
|
'Carroll Valley', |
2280
|
|
|
|
|
|
|
'Carrollton', |
2281
|
|
|
|
|
|
|
'Carrolltown', |
2282
|
|
|
|
|
|
|
'Carrsville', |
2283
|
|
|
|
|
|
|
'Carson', |
2284
|
|
|
|
|
|
|
'Carson City', |
2285
|
|
|
|
|
|
|
'Carson River Valley', |
2286
|
|
|
|
|
|
|
'Carsonville', |
2287
|
|
|
|
|
|
|
'Cartago', |
2288
|
|
|
|
|
|
|
'Carter', |
2289
|
|
|
|
|
|
|
'Carter Lake', |
2290
|
|
|
|
|
|
|
'Carteret', |
2291
|
|
|
|
|
|
|
'Cartersville', |
2292
|
|
|
|
|
|
|
'Carterville', |
2293
|
|
|
|
|
|
|
'Carthage', |
2294
|
|
|
|
|
|
|
'Caruthers', |
2295
|
|
|
|
|
|
|
'Caruthersville', |
2296
|
|
|
|
|
|
|
'Carver', |
2297
|
|
|
|
|
|
|
'Carver Ranches', |
2298
|
|
|
|
|
|
|
'Cary', |
2299
|
|
|
|
|
|
|
'Carytown', |
2300
|
|
|
|
|
|
|
'Caryville', |
2301
|
|
|
|
|
|
|
'Casa', |
2302
|
|
|
|
|
|
|
'Casa Colorada', |
2303
|
|
|
|
|
|
|
'Casa Conejo', |
2304
|
|
|
|
|
|
|
'Casa Grande', |
2305
|
|
|
|
|
|
|
'Casa de Oro-Mount Helix', |
2306
|
|
|
|
|
|
|
'Casar', |
2307
|
|
|
|
|
|
|
'Casas Adobes', |
2308
|
|
|
|
|
|
|
'Cascade', |
2309
|
|
|
|
|
|
|
'Cascade Locks', |
2310
|
|
|
|
|
|
|
'Cascade Valley', |
2311
|
|
|
|
|
|
|
'Cascade-Chipita Park', |
2312
|
|
|
|
|
|
|
'Cascade-Fairwood', |
2313
|
|
|
|
|
|
|
'Casco', |
2314
|
|
|
|
|
|
|
'Caseville', |
2315
|
|
|
|
|
|
|
'Casey', |
2316
|
|
|
|
|
|
|
'Caseyville', |
2317
|
|
|
|
|
|
|
'Cash', |
2318
|
|
|
|
|
|
|
'Cashiers', |
2319
|
|
|
|
|
|
|
'Cashion', |
2320
|
|
|
|
|
|
|
'Cashmere', |
2321
|
|
|
|
|
|
|
'Cashton', |
2322
|
|
|
|
|
|
|
'Cashtown-McKnightstown', |
2323
|
|
|
|
|
|
|
'Casnovia', |
2324
|
|
|
|
|
|
|
'Casper', |
2325
|
|
|
|
|
|
|
'Casper Mountain', |
2326
|
|
|
|
|
|
|
'Caspian', |
2327
|
|
|
|
|
|
|
'Cass City', |
2328
|
|
|
|
|
|
|
'Cass Lake', |
2329
|
|
|
|
|
|
|
'Cassadaga', |
2330
|
|
|
|
|
|
|
'Cassandra', |
2331
|
|
|
|
|
|
|
'Casselberry', |
2332
|
|
|
|
|
|
|
'Casselman', |
2333
|
|
|
|
|
|
|
'Casselton', |
2334
|
|
|
|
|
|
|
'Cassoday', |
2335
|
|
|
|
|
|
|
'Cassopolis', |
2336
|
|
|
|
|
|
|
'Casstown', |
2337
|
|
|
|
|
|
|
'Cassville', |
2338
|
|
|
|
|
|
|
'Castalia', |
2339
|
|
|
|
|
|
|
'Castana', |
2340
|
|
|
|
|
|
|
'Castanea', |
2341
|
|
|
|
|
|
|
'Castile', |
2342
|
|
|
|
|
|
|
'Castine', |
2343
|
|
|
|
|
|
|
'Castle', |
2344
|
|
|
|
|
|
|
'Castle Dale', |
2345
|
|
|
|
|
|
|
'Castle Hayne', |
2346
|
|
|
|
|
|
|
'Castle Hills', |
2347
|
|
|
|
|
|
|
'Castle Pines', |
2348
|
|
|
|
|
|
|
'Castle Point', |
2349
|
|
|
|
|
|
|
'Castle Rock', |
2350
|
|
|
|
|
|
|
'Castle Shannon', |
2351
|
|
|
|
|
|
|
'Castle Valley', |
2352
|
|
|
|
|
|
|
'Castleberry', |
2353
|
|
|
|
|
|
|
'Castleford', |
2354
|
|
|
|
|
|
|
'Castleton-on-Hudson', |
2355
|
|
|
|
|
|
|
'Castlewood', |
2356
|
|
|
|
|
|
|
'Castor', |
2357
|
|
|
|
|
|
|
'Castorland', |
2358
|
|
|
|
|
|
|
'Castro Valley', |
2359
|
|
|
|
|
|
|
'Castroville', |
2360
|
|
|
|
|
|
|
'Caswell Beach', |
2361
|
|
|
|
|
|
|
'Catalina', |
2362
|
|
|
|
|
|
|
'Catalina Foothills', |
2363
|
|
|
|
|
|
|
'Catarina', |
2364
|
|
|
|
|
|
|
'Catasauqua', |
2365
|
|
|
|
|
|
|
'Catawba', |
2366
|
|
|
|
|
|
|
'Catawissa', |
2367
|
|
|
|
|
|
|
'Cataño', |
2368
|
|
|
|
|
|
|
'Cathan', |
2369
|
|
|
|
|
|
|
'Cathay', |
2370
|
|
|
|
|
|
|
'Cathcart', |
2371
|
|
|
|
|
|
|
'Cathedral City', |
2372
|
|
|
|
|
|
|
'Cathlamet', |
2373
|
|
|
|
|
|
|
'Catlettsburg', |
2374
|
|
|
|
|
|
|
'Catlin', |
2375
|
|
|
|
|
|
|
'Cato', |
2376
|
|
|
|
|
|
|
'Catonsville', |
2377
|
|
|
|
|
|
|
'Catoosa', |
2378
|
|
|
|
|
|
|
'Catron', |
2379
|
|
|
|
|
|
|
'Catskill', |
2380
|
|
|
|
|
|
|
'Cattaraugus', |
2381
|
|
|
|
|
|
|
'Caulksville', |
2382
|
|
|
|
|
|
|
'Causey', |
2383
|
|
|
|
|
|
|
'Cavalier', |
2384
|
|
|
|
|
|
|
'Cave', |
2385
|
|
|
|
|
|
|
'Cave City', |
2386
|
|
|
|
|
|
|
'Cave Creek', |
2387
|
|
|
|
|
|
|
'Cave Junction', |
2388
|
|
|
|
|
|
|
'Cave Spring', |
2389
|
|
|
|
|
|
|
'Cave Springs', |
2390
|
|
|
|
|
|
|
'Cave-In-Rock', |
2391
|
|
|
|
|
|
|
'Cavetown', |
2392
|
|
|
|
|
|
|
'Cavour', |
2393
|
|
|
|
|
|
|
'Cawker City', |
2394
|
|
|
|
|
|
|
'Cayce', |
2395
|
|
|
|
|
|
|
'Cayey', |
2396
|
|
|
|
|
|
|
'Cayuco', |
2397
|
|
|
|
|
|
|
'Cayucos', |
2398
|
|
|
|
|
|
|
'Cayuga', |
2399
|
|
|
|
|
|
|
'Cayuga Heights', |
2400
|
|
|
|
|
|
|
'Cayuse', |
2401
|
|
|
|
|
|
|
'Cazenovia', |
2402
|
|
|
|
|
|
|
'Cecil', |
2403
|
|
|
|
|
|
|
'Cecil-Bishop', |
2404
|
|
|
|
|
|
|
'Cecilia', |
2405
|
|
|
|
|
|
|
'Cecilton', |
2406
|
|
|
|
|
|
|
'Cedar', |
2407
|
|
|
|
|
|
|
'Cedar Bluff', |
2408
|
|
|
|
|
|
|
'Cedar Bluffs', |
2409
|
|
|
|
|
|
|
'Cedar City', |
2410
|
|
|
|
|
|
|
'Cedar Creek', |
2411
|
|
|
|
|
|
|
'Cedar Crest', |
2412
|
|
|
|
|
|
|
'Cedar Falls', |
2413
|
|
|
|
|
|
|
'Cedar Fort', |
2414
|
|
|
|
|
|
|
'Cedar Glen Lakes', |
2415
|
|
|
|
|
|
|
'Cedar Glen West', |
2416
|
|
|
|
|
|
|
'Cedar Grove', |
2417
|
|
|
|
|
|
|
'Cedar Hill', |
2418
|
|
|
|
|
|
|
'Cedar Hill Lakes', |
2419
|
|
|
|
|
|
|
'Cedar Hills', |
2420
|
|
|
|
|
|
|
'Cedar Key', |
2421
|
|
|
|
|
|
|
'Cedar Lake', |
2422
|
|
|
|
|
|
|
'Cedar Mill', |
2423
|
|
|
|
|
|
|
'Cedar Mills', |
2424
|
|
|
|
|
|
|
'Cedar Park', |
2425
|
|
|
|
|
|
|
'Cedar Point', |
2426
|
|
|
|
|
|
|
'Cedar Rapids', |
2427
|
|
|
|
|
|
|
'Cedar Rock', |
2428
|
|
|
|
|
|
|
'Cedar Springs', |
2429
|
|
|
|
|
|
|
'Cedar Vale', |
2430
|
|
|
|
|
|
|
'Cedar Valley', |
2431
|
|
|
|
|
|
|
'Cedarburg', |
2432
|
|
|
|
|
|
|
'Cedaredge', |
2433
|
|
|
|
|
|
|
'Cedarhurst', |
2434
|
|
|
|
|
|
|
'Cedartown', |
2435
|
|
|
|
|
|
|
'Cedarville', |
2436
|
|
|
|
|
|
|
'Ceiba', |
2437
|
|
|
|
|
|
|
'Celada', |
2438
|
|
|
|
|
|
|
'Celebration', |
2439
|
|
|
|
|
|
|
'Celeste', |
2440
|
|
|
|
|
|
|
'Celina', |
2441
|
|
|
|
|
|
|
'Celoron', |
2442
|
|
|
|
|
|
|
'Cement', |
2443
|
|
|
|
|
|
|
'Cement City', |
2444
|
|
|
|
|
|
|
'Centennial', |
2445
|
|
|
|
|
|
|
'Center', |
2446
|
|
|
|
|
|
|
'Center City', |
2447
|
|
|
|
|
|
|
'Center Hill', |
2448
|
|
|
|
|
|
|
'Center Junction', |
2449
|
|
|
|
|
|
|
'Center Line', |
2450
|
|
|
|
|
|
|
'Center Moriches', |
2451
|
|
|
|
|
|
|
'Center Point', |
2452
|
|
|
|
|
|
|
'Centerburg', |
2453
|
|
|
|
|
|
|
'Centereach', |
2454
|
|
|
|
|
|
|
'Centerfield', |
2455
|
|
|
|
|
|
|
'Centerport', |
2456
|
|
|
|
|
|
|
'Centerton', |
2457
|
|
|
|
|
|
|
'Centertown', |
2458
|
|
|
|
|
|
|
'Centerview', |
2459
|
|
|
|
|
|
|
'Centerville', |
2460
|
|
|
|
|
|
|
'Centrahoma', |
2461
|
|
|
|
|
|
|
'Central', |
2462
|
|
|
|
|
|
|
'Central Aguirre', |
2463
|
|
|
|
|
|
|
'Central City', |
2464
|
|
|
|
|
|
|
'Central Falls', |
2465
|
|
|
|
|
|
|
'Central Gardens', |
2466
|
|
|
|
|
|
|
'Central Heights-Midland City', |
2467
|
|
|
|
|
|
|
'Central High', |
2468
|
|
|
|
|
|
|
'Central Islip', |
2469
|
|
|
|
|
|
|
'Central Lake', |
2470
|
|
|
|
|
|
|
'Central Manchester', |
2471
|
|
|
|
|
|
|
'Central Pacolet', |
2472
|
|
|
|
|
|
|
'Central Park', |
2473
|
|
|
|
|
|
|
'Central Point', |
2474
|
|
|
|
|
|
|
'Central Somers', |
2475
|
|
|
|
|
|
|
'Central Square', |
2476
|
|
|
|
|
|
|
'Central Valley', |
2477
|
|
|
|
|
|
|
'Central Waterford', |
2478
|
|
|
|
|
|
|
'Centralhatchee', |
2479
|
|
|
|
|
|
|
'Centralia', |
2480
|
|
|
|
|
|
|
'Centre', |
2481
|
|
|
|
|
|
|
'Centre Hall', |
2482
|
|
|
|
|
|
|
'Centre Island', |
2483
|
|
|
|
|
|
|
'Centreville', |
2484
|
|
|
|
|
|
|
'Centuria', |
2485
|
|
|
|
|
|
|
'Century', |
2486
|
|
|
|
|
|
|
'Century Village', |
2487
|
|
|
|
|
|
|
'Ceredo', |
2488
|
|
|
|
|
|
|
'Ceres', |
2489
|
|
|
|
|
|
|
'Ceresco', |
2490
|
|
|
|
|
|
|
'Cerritos', |
2491
|
|
|
|
|
|
|
'Cerro Gordo', |
2492
|
|
|
|
|
|
|
'Cesar Chavez', |
2493
|
|
|
|
|
|
|
'Ceylon', |
2494
|
|
|
|
|
|
|
'Chackbay', |
2495
|
|
|
|
|
|
|
'Chadbourn', |
2496
|
|
|
|
|
|
|
'Chadron', |
2497
|
|
|
|
|
|
|
'Chadwick', |
2498
|
|
|
|
|
|
|
'Chaffee', |
2499
|
|
|
|
|
|
|
'Chagrin Falls', |
2500
|
|
|
|
|
|
|
'Chain O\' Lakes-King', |
2501
|
|
|
|
|
|
|
'Chain of Rocks', |
2502
|
|
|
|
|
|
|
'Chain-O-Lakes', |
2503
|
|
|
|
|
|
|
'Chalco', |
2504
|
|
|
|
|
|
|
'Chalfant', |
2505
|
|
|
|
|
|
|
'Chalfont', |
2506
|
|
|
|
|
|
|
'Chalkville', |
2507
|
|
|
|
|
|
|
'Chalkyitsik', |
2508
|
|
|
|
|
|
|
'Challenge-Brownsville', |
2509
|
|
|
|
|
|
|
'Challis', |
2510
|
|
|
|
|
|
|
'Chalmers', |
2511
|
|
|
|
|
|
|
'Chalmette', |
2512
|
|
|
|
|
|
|
'Chama', |
2513
|
|
|
|
|
|
|
'Chamberlain', |
2514
|
|
|
|
|
|
|
'Chamberlayne', |
2515
|
|
|
|
|
|
|
'Chambers', |
2516
|
|
|
|
|
|
|
'Chambers Estates', |
2517
|
|
|
|
|
|
|
'Chambersburg', |
2518
|
|
|
|
|
|
|
'Chamblee', |
2519
|
|
|
|
|
|
|
'Chamisal', |
2520
|
|
|
|
|
|
|
'Chamois', |
2521
|
|
|
|
|
|
|
'Champ', |
2522
|
|
|
|
|
|
|
'Champaign', |
2523
|
|
|
|
|
|
|
'Champion Heights', |
2524
|
|
|
|
|
|
|
'Champlain', |
2525
|
|
|
|
|
|
|
'Champlin', |
2526
|
|
|
|
|
|
|
'Chance', |
2527
|
|
|
|
|
|
|
'Chancellor', |
2528
|
|
|
|
|
|
|
'Chandler', |
2529
|
|
|
|
|
|
|
'Chandlerville', |
2530
|
|
|
|
|
|
|
'Chanhassen', |
2531
|
|
|
|
|
|
|
'Channahon', |
2532
|
|
|
|
|
|
|
'Channel Islands Beach', |
2533
|
|
|
|
|
|
|
'Channel Lake', |
2534
|
|
|
|
|
|
|
'Channelview', |
2535
|
|
|
|
|
|
|
'Channing', |
2536
|
|
|
|
|
|
|
'Chantilly', |
2537
|
|
|
|
|
|
|
'Chanute', |
2538
|
|
|
|
|
|
|
'Chaparral', |
2539
|
|
|
|
|
|
|
'Chapel Hill', |
2540
|
|
|
|
|
|
|
'Chapin', |
2541
|
|
|
|
|
|
|
'Chapman', |
2542
|
|
|
|
|
|
|
'Chapmanville', |
2543
|
|
|
|
|
|
|
'Chappaqua', |
2544
|
|
|
|
|
|
|
'Chappell', |
2545
|
|
|
|
|
|
|
'Chardon', |
2546
|
|
|
|
|
|
|
'Charenton', |
2547
|
|
|
|
|
|
|
'Chariton', |
2548
|
|
|
|
|
|
|
'Charlack', |
2549
|
|
|
|
|
|
|
'Charleroi', |
2550
|
|
|
|
|
|
|
'Charles City', |
2551
|
|
|
|
|
|
|
'Charles Town', |
2552
|
|
|
|
|
|
|
'Charleston', |
2553
|
|
|
|
|
|
|
'Charleston Park', |
2554
|
|
|
|
|
|
|
'Charlestown', |
2555
|
|
|
|
|
|
|
'Charlevoix', |
2556
|
|
|
|
|
|
|
'Charlo', |
2557
|
|
|
|
|
|
|
'Charlotte', |
2558
|
|
|
|
|
|
|
'Charlotte Court House', |
2559
|
|
|
|
|
|
|
'Charlotte Hall', |
2560
|
|
|
|
|
|
|
'Charlotte Harbor', |
2561
|
|
|
|
|
|
|
'Charlotte Park', |
2562
|
|
|
|
|
|
|
'Charlottesville', |
2563
|
|
|
|
|
|
|
'Charter Oak', |
2564
|
|
|
|
|
|
|
'Chase', |
2565
|
|
|
|
|
|
|
'Chase City', |
2566
|
|
|
|
|
|
|
'Chaseburg', |
2567
|
|
|
|
|
|
|
'Chaska', |
2568
|
|
|
|
|
|
|
'Chataignier', |
2569
|
|
|
|
|
|
|
'Chateaugay', |
2570
|
|
|
|
|
|
|
'Chatfield', |
2571
|
|
|
|
|
|
|
'Chatham', |
2572
|
|
|
|
|
|
|
'Chatmoss', |
2573
|
|
|
|
|
|
|
'Chatom', |
2574
|
|
|
|
|
|
|
'Chatsworth', |
2575
|
|
|
|
|
|
|
'Chattahoochee', |
2576
|
|
|
|
|
|
|
'Chattanooga', |
2577
|
|
|
|
|
|
|
'Chattanooga Valley', |
2578
|
|
|
|
|
|
|
'Chattaroy', |
2579
|
|
|
|
|
|
|
'Chaumont', |
2580
|
|
|
|
|
|
|
'Chauncey', |
2581
|
|
|
|
|
|
|
'Chautauqua', |
2582
|
|
|
|
|
|
|
'Chauvin', |
2583
|
|
|
|
|
|
|
'Cheat Lake', |
2584
|
|
|
|
|
|
|
'Chebanse', |
2585
|
|
|
|
|
|
|
'Cheboygan', |
2586
|
|
|
|
|
|
|
'Checotah', |
2587
|
|
|
|
|
|
|
'Cheektowaga', |
2588
|
|
|
|
|
|
|
'Chefornak', |
2589
|
|
|
|
|
|
|
'Chehalis', |
2590
|
|
|
|
|
|
|
'Chehalis Village', |
2591
|
|
|
|
|
|
|
'Chelan', |
2592
|
|
|
|
|
|
|
'Chelsea', |
2593
|
|
|
|
|
|
|
'Chenega', |
2594
|
|
|
|
|
|
|
'Chenequa', |
2595
|
|
|
|
|
|
|
'Cheney', |
2596
|
|
|
|
|
|
|
'Cheneyville', |
2597
|
|
|
|
|
|
|
'Chenoa', |
2598
|
|
|
|
|
|
|
'Chenoweth', |
2599
|
|
|
|
|
|
|
'Cheraw', |
2600
|
|
|
|
|
|
|
'Cheriton', |
2601
|
|
|
|
|
|
|
'Cherokee', |
2602
|
|
|
|
|
|
|
'Cherokee Village', |
2603
|
|
|
|
|
|
|
'Cherry', |
2604
|
|
|
|
|
|
|
'Cherry Creek', |
2605
|
|
|
|
|
|
|
'Cherry Fork', |
2606
|
|
|
|
|
|
|
'Cherry Grove', |
2607
|
|
|
|
|
|
|
'Cherry Hill Mall', |
2608
|
|
|
|
|
|
|
'Cherry Hills Village', |
2609
|
|
|
|
|
|
|
'Cherry Tree', |
2610
|
|
|
|
|
|
|
'Cherry Valley', |
2611
|
|
|
|
|
|
|
'Cherryland', |
2612
|
|
|
|
|
|
|
'Cherryvale', |
2613
|
|
|
|
|
|
|
'Cherryville', |
2614
|
|
|
|
|
|
|
'Cherrywood Village', |
2615
|
|
|
|
|
|
|
'Chesaning', |
2616
|
|
|
|
|
|
|
'Chesapeake', |
2617
|
|
|
|
|
|
|
'Chesapeake Beach', |
2618
|
|
|
|
|
|
|
'Chesapeake City', |
2619
|
|
|
|
|
|
|
'Chesapeake Ranch Estates-Drum Point', |
2620
|
|
|
|
|
|
|
'Cheshire', |
2621
|
|
|
|
|
|
|
'Cheshire Village', |
2622
|
|
|
|
|
|
|
'Chesilhurst', |
2623
|
|
|
|
|
|
|
'Chesnee', |
2624
|
|
|
|
|
|
|
'Chest Springs', |
2625
|
|
|
|
|
|
|
'Chester', |
2626
|
|
|
|
|
|
|
'Chester Center', |
2627
|
|
|
|
|
|
|
'Chester Heights', |
2628
|
|
|
|
|
|
|
'Chester Hill', |
2629
|
|
|
|
|
|
|
'Chester Township', |
2630
|
|
|
|
|
|
|
'Chester-Chester Depot', |
2631
|
|
|
|
|
|
|
'Chesterbrook', |
2632
|
|
|
|
|
|
|
'Chesterfield', |
2633
|
|
|
|
|
|
|
'Chesterfield Court House', |
2634
|
|
|
|
|
|
|
'Chesterhill', |
2635
|
|
|
|
|
|
|
'Chesterland', |
2636
|
|
|
|
|
|
|
'Chesterton', |
2637
|
|
|
|
|
|
|
'Chestertown', |
2638
|
|
|
|
|
|
|
'Chesterville', |
2639
|
|
|
|
|
|
|
'Chestnut Ridge', |
2640
|
|
|
|
|
|
|
'Cheswick', |
2641
|
|
|
|
|
|
|
'Cheswold', |
2642
|
|
|
|
|
|
|
'Chetek', |
2643
|
|
|
|
|
|
|
'Chetopa', |
2644
|
|
|
|
|
|
|
'Chevak', |
2645
|
|
|
|
|
|
|
'Cheval', |
2646
|
|
|
|
|
|
|
'Cheverly', |
2647
|
|
|
|
|
|
|
'Cheviot', |
2648
|
|
|
|
|
|
|
'Chevy Chase', |
2649
|
|
|
|
|
|
|
'Chevy Chase Heights', |
2650
|
|
|
|
|
|
|
'Chevy Chase Section Five', |
2651
|
|
|
|
|
|
|
'Chevy Chase Section Three', |
2652
|
|
|
|
|
|
|
'Chevy Chase View', |
2653
|
|
|
|
|
|
|
'Chevy Chase Village', |
2654
|
|
|
|
|
|
|
'Chewelah', |
2655
|
|
|
|
|
|
|
'Chewey', |
2656
|
|
|
|
|
|
|
'Chewsville', |
2657
|
|
|
|
|
|
|
'Cheyenne', |
2658
|
|
|
|
|
|
|
'Cheyenne Wells', |
2659
|
|
|
|
|
|
|
'Chicago', |
2660
|
|
|
|
|
|
|
'Chicago Heights', |
2661
|
|
|
|
|
|
|
'Chicago Ridge', |
2662
|
|
|
|
|
|
|
'Chickaloon', |
2663
|
|
|
|
|
|
|
'Chickamauga', |
2664
|
|
|
|
|
|
|
'Chickamaw Beach', |
2665
|
|
|
|
|
|
|
'Chickasaw', |
2666
|
|
|
|
|
|
|
'Chickasha', |
2667
|
|
|
|
|
|
|
'Chicken', |
2668
|
|
|
|
|
|
|
'Chico', |
2669
|
|
|
|
|
|
|
'Chicopee', |
2670
|
|
|
|
|
|
|
'Chicora', |
2671
|
|
|
|
|
|
|
'Chidester', |
2672
|
|
|
|
|
|
|
'Chief Lake', |
2673
|
|
|
|
|
|
|
'Chiefland', |
2674
|
|
|
|
|
|
|
'Chignik', |
2675
|
|
|
|
|
|
|
'Chignik Lagoon', |
2676
|
|
|
|
|
|
|
'Chignik Lake', |
2677
|
|
|
|
|
|
|
'Chilchinbito', |
2678
|
|
|
|
|
|
|
'Chilcoot-Vinton', |
2679
|
|
|
|
|
|
|
'Childersburg', |
2680
|
|
|
|
|
|
|
'Childress', |
2681
|
|
|
|
|
|
|
'Chilhowee', |
2682
|
|
|
|
|
|
|
'Chilhowie', |
2683
|
|
|
|
|
|
|
'Chilili', |
2684
|
|
|
|
|
|
|
'Chillicothe', |
2685
|
|
|
|
|
|
|
'Chillum', |
2686
|
|
|
|
|
|
|
'Chilo', |
2687
|
|
|
|
|
|
|
'Chiloquin', |
2688
|
|
|
|
|
|
|
'Chilton', |
2689
|
|
|
|
|
|
|
'Chimayo', |
2690
|
|
|
|
|
|
|
'Chimney Rock', |
2691
|
|
|
|
|
|
|
'China', |
2692
|
|
|
|
|
|
|
'China Grove', |
2693
|
|
|
|
|
|
|
'China Lake Acres', |
2694
|
|
|
|
|
|
|
'Chincoteague', |
2695
|
|
|
|
|
|
|
'Chinese Camp', |
2696
|
|
|
|
|
|
|
'Chiniak', |
2697
|
|
|
|
|
|
|
'Chinle', |
2698
|
|
|
|
|
|
|
'Chino', |
2699
|
|
|
|
|
|
|
'Chino Hills', |
2700
|
|
|
|
|
|
|
'Chino Valley', |
2701
|
|
|
|
|
|
|
'Chinook', |
2702
|
|
|
|
|
|
|
'Chipley', |
2703
|
|
|
|
|
|
|
'Chippewa Falls', |
2704
|
|
|
|
|
|
|
'Chippewa Lake', |
2705
|
|
|
|
|
|
|
'Chireno', |
2706
|
|
|
|
|
|
|
'Chisago City', |
2707
|
|
|
|
|
|
|
'Chisana', |
2708
|
|
|
|
|
|
|
'Chisholm', |
2709
|
|
|
|
|
|
|
'Chistochina', |
2710
|
|
|
|
|
|
|
'Chitina', |
2711
|
|
|
|
|
|
|
'Chittenango', |
2712
|
|
|
|
|
|
|
'Chocowinity', |
2713
|
|
|
|
|
|
|
'Choctaw', |
2714
|
|
|
|
|
|
|
'Choctaw Lake', |
2715
|
|
|
|
|
|
|
'Chokio', |
2716
|
|
|
|
|
|
|
'Chokoloskee', |
2717
|
|
|
|
|
|
|
'Choteau', |
2718
|
|
|
|
|
|
|
'Choudrant', |
2719
|
|
|
|
|
|
|
'Chouteau', |
2720
|
|
|
|
|
|
|
'Chowchilla', |
2721
|
|
|
|
|
|
|
'Chrisman', |
2722
|
|
|
|
|
|
|
'Chrisney', |
2723
|
|
|
|
|
|
|
'Christiana', |
2724
|
|
|
|
|
|
|
'Christiansburg', |
2725
|
|
|
|
|
|
|
'Christie', |
2726
|
|
|
|
|
|
|
'Christine', |
2727
|
|
|
|
|
|
|
'Christmas', |
2728
|
|
|
|
|
|
|
'Christopher', |
2729
|
|
|
|
|
|
|
'Christoval', |
2730
|
|
|
|
|
|
|
'Chualar', |
2731
|
|
|
|
|
|
|
'Chuathbaluk', |
2732
|
|
|
|
|
|
|
'Chubbuck', |
2733
|
|
|
|
|
|
|
'Chugcreek', |
2734
|
|
|
|
|
|
|
'Chugwater', |
2735
|
|
|
|
|
|
|
'Chuichu', |
2736
|
|
|
|
|
|
|
'Chula', |
2737
|
|
|
|
|
|
|
'Chula Vista', |
2738
|
|
|
|
|
|
|
'Chula Vista-Orason', |
2739
|
|
|
|
|
|
|
'Chula Vista-River Spur', |
2740
|
|
|
|
|
|
|
'Chuluota', |
2741
|
|
|
|
|
|
|
'Chunky', |
2742
|
|
|
|
|
|
|
'Chupadero', |
2743
|
|
|
|
|
|
|
'Church Creek', |
2744
|
|
|
|
|
|
|
'Church Hill', |
2745
|
|
|
|
|
|
|
'Church Point', |
2746
|
|
|
|
|
|
|
'Church Rock', |
2747
|
|
|
|
|
|
|
'Churchill', |
2748
|
|
|
|
|
|
|
'Churchs Ferry', |
2749
|
|
|
|
|
|
|
'Churchville', |
2750
|
|
|
|
|
|
|
'Churdan', |
2751
|
|
|
|
|
|
|
'Churubusco', |
2752
|
|
|
|
|
|
|
'Ciales', |
2753
|
|
|
|
|
|
|
'Cibecue', |
2754
|
|
|
|
|
|
|
'Cibola', |
2755
|
|
|
|
|
|
|
'Cibolo', |
2756
|
|
|
|
|
|
|
'Cicero', |
2757
|
|
|
|
|
|
|
'Cidra', |
2758
|
|
|
|
|
|
|
'Cienegas Terrace', |
2759
|
|
|
|
|
|
|
'Cimarron', |
2760
|
|
|
|
|
|
|
'Cimarron City', |
2761
|
|
|
|
|
|
|
'Cimarron Hills', |
2762
|
|
|
|
|
|
|
'Cincinnati', |
2763
|
|
|
|
|
|
|
'Cinco Bayou', |
2764
|
|
|
|
|
|
|
'Cinco Ranch', |
2765
|
|
|
|
|
|
|
'Circle', |
2766
|
|
|
|
|
|
|
'Circle D-KC Estates', |
2767
|
|
|
|
|
|
|
'Circle Pines', |
2768
|
|
|
|
|
|
|
'Circleville', |
2769
|
|
|
|
|
|
|
'Cisco', |
2770
|
|
|
|
|
|
|
'Cisne', |
2771
|
|
|
|
|
|
|
'Cissna Park', |
2772
|
|
|
|
|
|
|
'Citronelle', |
2773
|
|
|
|
|
|
|
'Citrus', |
2774
|
|
|
|
|
|
|
'Citrus City', |
2775
|
|
|
|
|
|
|
'Citrus Heights', |
2776
|
|
|
|
|
|
|
'Citrus Hills', |
2777
|
|
|
|
|
|
|
'Citrus Park', |
2778
|
|
|
|
|
|
|
'Citrus Ridge', |
2779
|
|
|
|
|
|
|
'Citrus Springs', |
2780
|
|
|
|
|
|
|
'City View', |
2781
|
|
|
|
|
|
|
'City of The Dalles', |
2782
|
|
|
|
|
|
|
'Clackamas', |
2783
|
|
|
|
|
|
|
'Claflin', |
2784
|
|
|
|
|
|
|
'Claiborne', |
2785
|
|
|
|
|
|
|
'Claire City', |
2786
|
|
|
|
|
|
|
'Clairton', |
2787
|
|
|
|
|
|
|
'Clam Gulch', |
2788
|
|
|
|
|
|
|
'Clancy', |
2789
|
|
|
|
|
|
|
'Clanton', |
2790
|
|
|
|
|
|
|
'Clara City', |
2791
|
|
|
|
|
|
|
'Clare', |
2792
|
|
|
|
|
|
|
'Claremont', |
2793
|
|
|
|
|
|
|
'Claremore', |
2794
|
|
|
|
|
|
|
'Clarence', |
2795
|
|
|
|
|
|
|
'Clarence Center', |
2796
|
|
|
|
|
|
|
'Clarendon', |
2797
|
|
|
|
|
|
|
'Clarendon Hills', |
2798
|
|
|
|
|
|
|
'Clarinda', |
2799
|
|
|
|
|
|
|
'Clarington', |
2800
|
|
|
|
|
|
|
'Clarion', |
2801
|
|
|
|
|
|
|
'Clarissa', |
2802
|
|
|
|
|
|
|
'Clark', |
2803
|
|
|
|
|
|
|
'Clark Fork', |
2804
|
|
|
|
|
|
|
'Clark Mills', |
2805
|
|
|
|
|
|
|
'Clark\'s Point', |
2806
|
|
|
|
|
|
|
'Clarkdale', |
2807
|
|
|
|
|
|
|
'Clarkesville', |
2808
|
|
|
|
|
|
|
'Clarkfield', |
2809
|
|
|
|
|
|
|
'Clarks', |
2810
|
|
|
|
|
|
|
'Clarks Green', |
2811
|
|
|
|
|
|
|
'Clarks Grove', |
2812
|
|
|
|
|
|
|
'Clarks Hill', |
2813
|
|
|
|
|
|
|
'Clarks Summit', |
2814
|
|
|
|
|
|
|
'Clarksburg', |
2815
|
|
|
|
|
|
|
'Clarksdale', |
2816
|
|
|
|
|
|
|
'Clarkson', |
2817
|
|
|
|
|
|
|
'Clarkson Valley', |
2818
|
|
|
|
|
|
|
'Clarkston', |
2819
|
|
|
|
|
|
|
'Clarkston Heights-Vineland', |
2820
|
|
|
|
|
|
|
'Clarksville', |
2821
|
|
|
|
|
|
|
'Clarksville City', |
2822
|
|
|
|
|
|
|
'Clarkton', |
2823
|
|
|
|
|
|
|
'Claryville', |
2824
|
|
|
|
|
|
|
'Clatonia', |
2825
|
|
|
|
|
|
|
'Clatskanie', |
2826
|
|
|
|
|
|
|
'Claude', |
2827
|
|
|
|
|
|
|
'Claverack-Red Mills', |
2828
|
|
|
|
|
|
|
'Clawson', |
2829
|
|
|
|
|
|
|
'Claxton', |
2830
|
|
|
|
|
|
|
'Clay', |
2831
|
|
|
|
|
|
|
'Clay Center', |
2832
|
|
|
|
|
|
|
'Clay City', |
2833
|
|
|
|
|
|
|
'Claycomo', |
2834
|
|
|
|
|
|
|
'Clayhatchee', |
2835
|
|
|
|
|
|
|
'Claymont', |
2836
|
|
|
|
|
|
|
'Claypool', |
2837
|
|
|
|
|
|
|
'Claypool Hill', |
2838
|
|
|
|
|
|
|
'Claysburg', |
2839
|
|
|
|
|
|
|
'Claysville', |
2840
|
|
|
|
|
|
|
'Clayton', |
2841
|
|
|
|
|
|
|
'Clayville', |
2842
|
|
|
|
|
|
|
'Cle Elum', |
2843
|
|
|
|
|
|
|
'Clear Lake', |
2844
|
|
|
|
|
|
|
'Clear Lake Shores', |
2845
|
|
|
|
|
|
|
'Clear Spring', |
2846
|
|
|
|
|
|
|
'Clearbrook', |
2847
|
|
|
|
|
|
|
'Clearbrook Park', |
2848
|
|
|
|
|
|
|
'Clearfield', |
2849
|
|
|
|
|
|
|
'Clearlake', |
2850
|
|
|
|
|
|
|
'Clearlake Oaks', |
2851
|
|
|
|
|
|
|
'Clearmont', |
2852
|
|
|
|
|
|
|
'Clearview', |
2853
|
|
|
|
|
|
|
'Clearview Acres', |
2854
|
|
|
|
|
|
|
'Clearwater', |
2855
|
|
|
|
|
|
|
'Cleburne', |
2856
|
|
|
|
|
|
|
'Cleghorn', |
2857
|
|
|
|
|
|
|
'Clementon', |
2858
|
|
|
|
|
|
|
'Clements', |
2859
|
|
|
|
|
|
|
'Clemmons', |
2860
|
|
|
|
|
|
|
'Clemons', |
2861
|
|
|
|
|
|
|
'Clemson', |
2862
|
|
|
|
|
|
|
'Clendenin', |
2863
|
|
|
|
|
|
|
'Cleo Springs', |
2864
|
|
|
|
|
|
|
'Cleona', |
2865
|
|
|
|
|
|
|
'Cleora', |
2866
|
|
|
|
|
|
|
'Clermont', |
2867
|
|
|
|
|
|
|
'Cleveland', |
2868
|
|
|
|
|
|
|
'Cleveland Heights', |
2869
|
|
|
|
|
|
|
'Clever', |
2870
|
|
|
|
|
|
|
'Cleves', |
2871
|
|
|
|
|
|
|
'Clewiston', |
2872
|
|
|
|
|
|
|
'Cliff Village', |
2873
|
|
|
|
|
|
|
'Clifford', |
2874
|
|
|
|
|
|
|
'Cliffside Park', |
2875
|
|
|
|
|
|
|
'Cliffwood Beach', |
2876
|
|
|
|
|
|
|
'Clifton', |
2877
|
|
|
|
|
|
|
'Clifton Forge', |
2878
|
|
|
|
|
|
|
'Clifton Heights', |
2879
|
|
|
|
|
|
|
'Clifton Hill', |
2880
|
|
|
|
|
|
|
'Clifton Springs', |
2881
|
|
|
|
|
|
|
'Climax', |
2882
|
|
|
|
|
|
|
'Climax Springs', |
2883
|
|
|
|
|
|
|
'Clinchco', |
2884
|
|
|
|
|
|
|
'Clinchport', |
2885
|
|
|
|
|
|
|
'Clint', |
2886
|
|
|
|
|
|
|
'Clinton', |
2887
|
|
|
|
|
|
|
'Clintondale', |
2888
|
|
|
|
|
|
|
'Clintonville', |
2889
|
|
|
|
|
|
|
'Clintwood', |
2890
|
|
|
|
|
|
|
'Clio', |
2891
|
|
|
|
|
|
|
'Clitherall', |
2892
|
|
|
|
|
|
|
'Clive', |
2893
|
|
|
|
|
|
|
'Clontarf', |
2894
|
|
|
|
|
|
|
'Cloquet', |
2895
|
|
|
|
|
|
|
'Closter', |
2896
|
|
|
|
|
|
|
'Cloud Creek', |
2897
|
|
|
|
|
|
|
'Cloud Lake', |
2898
|
|
|
|
|
|
|
'Cloudcroft', |
2899
|
|
|
|
|
|
|
'Clover', |
2900
|
|
|
|
|
|
|
'Clover Hill', |
2901
|
|
|
|
|
|
|
'Cloverdale', |
2902
|
|
|
|
|
|
|
'Cloverleaf', |
2903
|
|
|
|
|
|
|
'Cloverly', |
2904
|
|
|
|
|
|
|
'Cloverport', |
2905
|
|
|
|
|
|
|
'Clovis', |
2906
|
|
|
|
|
|
|
'Clute', |
2907
|
|
|
|
|
|
|
'Clutier', |
2908
|
|
|
|
|
|
|
'Clyde', |
2909
|
|
|
|
|
|
|
'Clyde Hill', |
2910
|
|
|
|
|
|
|
'Clyde Park', |
2911
|
|
|
|
|
|
|
'Clyman', |
2912
|
|
|
|
|
|
|
'Clymer', |
2913
|
|
|
|
|
|
|
'Coachella', |
2914
|
|
|
|
|
|
|
'Coahoma', |
2915
|
|
|
|
|
|
|
'Coal Center', |
2916
|
|
|
|
|
|
|
'Coal City', |
2917
|
|
|
|
|
|
|
'Coal Creek', |
2918
|
|
|
|
|
|
|
'Coal Fork', |
2919
|
|
|
|
|
|
|
'Coal Grove', |
2920
|
|
|
|
|
|
|
'Coal Hill', |
2921
|
|
|
|
|
|
|
'Coal Run Village', |
2922
|
|
|
|
|
|
|
'Coal Valley', |
2923
|
|
|
|
|
|
|
'Coaldale', |
2924
|
|
|
|
|
|
|
'Coalgate', |
2925
|
|
|
|
|
|
|
'Coaling', |
2926
|
|
|
|
|
|
|
'Coalinga', |
2927
|
|
|
|
|
|
|
'Coalmont', |
2928
|
|
|
|
|
|
|
'Coalport', |
2929
|
|
|
|
|
|
|
'Coalton', |
2930
|
|
|
|
|
|
|
'Coalville', |
2931
|
|
|
|
|
|
|
'Coamo', |
2932
|
|
|
|
|
|
|
'Coates', |
2933
|
|
|
|
|
|
|
'Coatesville', |
2934
|
|
|
|
|
|
|
'Coats', |
2935
|
|
|
|
|
|
|
'Coatsburg', |
2936
|
|
|
|
|
|
|
'Cobalt', |
2937
|
|
|
|
|
|
|
'Cobb', |
2938
|
|
|
|
|
|
|
'Cobbtown', |
2939
|
|
|
|
|
|
|
'Cobden', |
2940
|
|
|
|
|
|
|
'Cobleskill', |
2941
|
|
|
|
|
|
|
'Coburg', |
2942
|
|
|
|
|
|
|
'Coburn', |
2943
|
|
|
|
|
|
|
'Cochiti', |
2944
|
|
|
|
|
|
|
'Cochituate', |
2945
|
|
|
|
|
|
|
'Cochran', |
2946
|
|
|
|
|
|
|
'Cochrane', |
2947
|
|
|
|
|
|
|
'Cochranton', |
2948
|
|
|
|
|
|
|
'Cockeysville', |
2949
|
|
|
|
|
|
|
'Cockrell Hill', |
2950
|
|
|
|
|
|
|
'Coco', |
2951
|
|
|
|
|
|
|
'Cocoa', |
2952
|
|
|
|
|
|
|
'Cocoa Beach', |
2953
|
|
|
|
|
|
|
'Cocoa West', |
2954
|
|
|
|
|
|
|
'Coconut Creek', |
2955
|
|
|
|
|
|
|
'Cody', |
2956
|
|
|
|
|
|
|
'Coeburn', |
2957
|
|
|
|
|
|
|
'Coeur d\'Alene', |
2958
|
|
|
|
|
|
|
'Coeymans', |
2959
|
|
|
|
|
|
|
'Coffee City', |
2960
|
|
|
|
|
|
|
'Coffee Springs', |
2961
|
|
|
|
|
|
|
'Coffeen', |
2962
|
|
|
|
|
|
|
'Coffeeville', |
2963
|
|
|
|
|
|
|
'Coffey', |
2964
|
|
|
|
|
|
|
'Coffeyville', |
2965
|
|
|
|
|
|
|
'Coffman Cove', |
2966
|
|
|
|
|
|
|
'Cofield', |
2967
|
|
|
|
|
|
|
'Coggon', |
2968
|
|
|
|
|
|
|
'Cogswell', |
2969
|
|
|
|
|
|
|
'Cohasset', |
2970
|
|
|
|
|
|
|
'Cohassett Beach', |
2971
|
|
|
|
|
|
|
'Cohocton', |
2972
|
|
|
|
|
|
|
'Cohoe', |
2973
|
|
|
|
|
|
|
'Cohoes', |
2974
|
|
|
|
|
|
|
'Cohutta', |
2975
|
|
|
|
|
|
|
'Coin', |
2976
|
|
|
|
|
|
|
'Cokato', |
2977
|
|
|
|
|
|
|
'Cokeburg', |
2978
|
|
|
|
|
|
|
'Cokedale', |
2979
|
|
|
|
|
|
|
'Coker', |
2980
|
|
|
|
|
|
|
'Cokesbury', |
2981
|
|
|
|
|
|
|
'Cokeville', |
2982
|
|
|
|
|
|
|
'Colbert', |
2983
|
|
|
|
|
|
|
'Colby', |
2984
|
|
|
|
|
|
|
'Colchester', |
2985
|
|
|
|
|
|
|
'Colcord', |
2986
|
|
|
|
|
|
|
'Cold Bay', |
2987
|
|
|
|
|
|
|
'Cold Brook', |
2988
|
|
|
|
|
|
|
'Cold Spring', |
2989
|
|
|
|
|
|
|
'Cold Spring Harbor', |
2990
|
|
|
|
|
|
|
'Cold Springs', |
2991
|
|
|
|
|
|
|
'Coldfoot', |
2992
|
|
|
|
|
|
|
'Coldspring', |
2993
|
|
|
|
|
|
|
'Coldstream', |
2994
|
|
|
|
|
|
|
'Coldwater', |
2995
|
|
|
|
|
|
|
'Cole', |
2996
|
|
|
|
|
|
|
'Cole Camp', |
2997
|
|
|
|
|
|
|
'Coleharbor', |
2998
|
|
|
|
|
|
|
'Coleman', |
2999
|
|
|
|
|
|
|
'Colerain', |
3000
|
|
|
|
|
|
|
'Coleraine', |
3001
|
|
|
|
|
|
|
'Coleridge', |
3002
|
|
|
|
|
|
|
'Colesburg', |
3003
|
|
|
|
|
|
|
'Colesville', |
3004
|
|
|
|
|
|
|
'Coleta', |
3005
|
|
|
|
|
|
|
'Colfax', |
3006
|
|
|
|
|
|
|
'Collbran', |
3007
|
|
|
|
|
|
|
'College', |
3008
|
|
|
|
|
|
|
'College City', |
3009
|
|
|
|
|
|
|
'College Corner', |
3010
|
|
|
|
|
|
|
'College Park', |
3011
|
|
|
|
|
|
|
'College Place', |
3012
|
|
|
|
|
|
|
'College Springs', |
3013
|
|
|
|
|
|
|
'College Station', |
3014
|
|
|
|
|
|
|
'Collegedale', |
3015
|
|
|
|
|
|
|
'Collegeville', |
3016
|
|
|
|
|
|
|
'Colleyville', |
3017
|
|
|
|
|
|
|
'Collier Manor-Cresthaven', |
3018
|
|
|
|
|
|
|
'Collierville', |
3019
|
|
|
|
|
|
|
'Collingdale', |
3020
|
|
|
|
|
|
|
'Collings Lakes', |
3021
|
|
|
|
|
|
|
'Collingswood', |
3022
|
|
|
|
|
|
|
'Collins', |
3023
|
|
|
|
|
|
|
'Collinston', |
3024
|
|
|
|
|
|
|
'Collinsville', |
3025
|
|
|
|
|
|
|
'Collinwood', |
3026
|
|
|
|
|
|
|
'Collyer', |
3027
|
|
|
|
|
|
|
'Colma', |
3028
|
|
|
|
|
|
|
'Colman', |
3029
|
|
|
|
|
|
|
'Colmar Manor', |
3030
|
|
|
|
|
|
|
'Colmesneil', |
3031
|
|
|
|
|
|
|
'Colo', |
3032
|
|
|
|
|
|
|
'Cologne', |
3033
|
|
|
|
|
|
|
'Coloma', |
3034
|
|
|
|
|
|
|
'Colome', |
3035
|
|
|
|
|
|
|
'Colon', |
3036
|
|
|
|
|
|
|
'Colona', |
3037
|
|
|
|
|
|
|
'Colonia', |
3038
|
|
|
|
|
|
|
'Colonial Beach', |
3039
|
|
|
|
|
|
|
'Colonial Heights', |
3040
|
|
|
|
|
|
|
'Colonial Park', |
3041
|
|
|
|
|
|
|
'Colonial Pine Hills', |
3042
|
|
|
|
|
|
|
'Colonie', |
3043
|
|
|
|
|
|
|
'Colony', |
3044
|
|
|
|
|
|
|
'Colorado City', |
3045
|
|
|
|
|
|
|
'Colorado Springs', |
3046
|
|
|
|
|
|
|
'Colp', |
3047
|
|
|
|
|
|
|
'Colquitt', |
3048
|
|
|
|
|
|
|
'Colstrip', |
3049
|
|
|
|
|
|
|
'Colt', |
3050
|
|
|
|
|
|
|
'Colton', |
3051
|
|
|
|
|
|
|
'Columbia', |
3052
|
|
|
|
|
|
|
'Columbia City', |
3053
|
|
|
|
|
|
|
'Columbia Falls', |
3054
|
|
|
|
|
|
|
'Columbia Heights', |
3055
|
|
|
|
|
|
|
'Columbiana', |
3056
|
|
|
|
|
|
|
'Columbiaville', |
3057
|
|
|
|
|
|
|
'Columbine', |
3058
|
|
|
|
|
|
|
'Columbine Valley', |
3059
|
|
|
|
|
|
|
'Columbus', |
3060
|
|
|
|
|
|
|
'Columbus AFB', |
3061
|
|
|
|
|
|
|
'Columbus City', |
3062
|
|
|
|
|
|
|
'Columbus Grove', |
3063
|
|
|
|
|
|
|
'Columbus Junction', |
3064
|
|
|
|
|
|
|
'Colusa', |
3065
|
|
|
|
|
|
|
'Colver', |
3066
|
|
|
|
|
|
|
'Colville', |
3067
|
|
|
|
|
|
|
'Colwell', |
3068
|
|
|
|
|
|
|
'Colwich', |
3069
|
|
|
|
|
|
|
'Colwyn', |
3070
|
|
|
|
|
|
|
'Comanche', |
3071
|
|
|
|
|
|
|
'Combee Settlement', |
3072
|
|
|
|
|
|
|
'Combes', |
3073
|
|
|
|
|
|
|
'Combine', |
3074
|
|
|
|
|
|
|
'Combined Locks', |
3075
|
|
|
|
|
|
|
'Comer', |
3076
|
|
|
|
|
|
|
'ComerÃo', |
3077
|
|
|
|
|
|
|
'Comfort', |
3078
|
|
|
|
|
|
|
'Comfrey', |
3079
|
|
|
|
|
|
|
'Commack', |
3080
|
|
|
|
|
|
|
'Commerce', |
3081
|
|
|
|
|
|
|
'Commerce City', |
3082
|
|
|
|
|
|
|
'Commercial Point', |
3083
|
|
|
|
|
|
|
'Commodore', |
3084
|
|
|
|
|
|
|
'Como', |
3085
|
|
|
|
|
|
|
'Compton', |
3086
|
|
|
|
|
|
|
'Comstock', |
3087
|
|
|
|
|
|
|
'Comstock Northwest', |
3088
|
|
|
|
|
|
|
'Comstock Park', |
3089
|
|
|
|
|
|
|
'Comunas', |
3090
|
|
|
|
|
|
|
'Concepcion', |
3091
|
|
|
|
|
|
|
'Conception Junction', |
3092
|
|
|
|
|
|
|
'Conconully', |
3093
|
|
|
|
|
|
|
'Concord', |
3094
|
|
|
|
|
|
|
'Concordia', |
3095
|
|
|
|
|
|
|
'Concow', |
3096
|
|
|
|
|
|
|
'Concrete', |
3097
|
|
|
|
|
|
|
'Conde', |
3098
|
|
|
|
|
|
|
'Condon', |
3099
|
|
|
|
|
|
|
'Conehatta', |
3100
|
|
|
|
|
|
|
'Conesville', |
3101
|
|
|
|
|
|
|
'Conetoe', |
3102
|
|
|
|
|
|
|
'Coney Island', |
3103
|
|
|
|
|
|
|
'Confluence', |
3104
|
|
|
|
|
|
|
'Conger', |
3105
|
|
|
|
|
|
|
'Congers', |
3106
|
|
|
|
|
|
|
'Congerville', |
3107
|
|
|
|
|
|
|
'Congress', |
3108
|
|
|
|
|
|
|
'Conley', |
3109
|
|
|
|
|
|
|
'Conneaut', |
3110
|
|
|
|
|
|
|
'Conneaut Lake', |
3111
|
|
|
|
|
|
|
'Conneaut Lakeshore', |
3112
|
|
|
|
|
|
|
'Conneautville', |
3113
|
|
|
|
|
|
|
'Connell', |
3114
|
|
|
|
|
|
|
'Connellsville', |
3115
|
|
|
|
|
|
|
'Connelly Springs', |
3116
|
|
|
|
|
|
|
'Connersville', |
3117
|
|
|
|
|
|
|
'Conning Towers-Nautilus Park', |
3118
|
|
|
|
|
|
|
'Connoquenessing', |
3119
|
|
|
|
|
|
|
'Conover', |
3120
|
|
|
|
|
|
|
'Conrad', |
3121
|
|
|
|
|
|
|
'Conrath', |
3122
|
|
|
|
|
|
|
'Conroe', |
3123
|
|
|
|
|
|
|
'Conshohocken', |
3124
|
|
|
|
|
|
|
'Constableville', |
3125
|
|
|
|
|
|
|
'Constantia', |
3126
|
|
|
|
|
|
|
'Constantine', |
3127
|
|
|
|
|
|
|
'Continental', |
3128
|
|
|
|
|
|
|
'Contoocook', |
3129
|
|
|
|
|
|
|
'Converse', |
3130
|
|
|
|
|
|
|
'Convoy', |
3131
|
|
|
|
|
|
|
'Conway', |
3132
|
|
|
|
|
|
|
'Conway Springs', |
3133
|
|
|
|
|
|
|
'Conyers', |
3134
|
|
|
|
|
|
|
'Conyngham', |
3135
|
|
|
|
|
|
|
'Cook', |
3136
|
|
|
|
|
|
|
'Cooke City-Silver Gate', |
3137
|
|
|
|
|
|
|
'Cookeville', |
3138
|
|
|
|
|
|
|
'Cooksville', |
3139
|
|
|
|
|
|
|
'Cool', |
3140
|
|
|
|
|
|
|
'Cool Valley', |
3141
|
|
|
|
|
|
|
'Cooleemee', |
3142
|
|
|
|
|
|
|
'Coolidge', |
3143
|
|
|
|
|
|
|
'Coolville', |
3144
|
|
|
|
|
|
|
'Coon Rapids', |
3145
|
|
|
|
|
|
|
'Coon Valley', |
3146
|
|
|
|
|
|
|
'Cooper', |
3147
|
|
|
|
|
|
|
'Cooper City', |
3148
|
|
|
|
|
|
|
'Cooper Landing', |
3149
|
|
|
|
|
|
|
'Coopersburg', |
3150
|
|
|
|
|
|
|
'Cooperstown', |
3151
|
|
|
|
|
|
|
'Coopersville', |
3152
|
|
|
|
|
|
|
'Cooperton', |
3153
|
|
|
|
|
|
|
'Coopertown', |
3154
|
|
|
|
|
|
|
'Coos Bay', |
3155
|
|
|
|
|
|
|
'Coosada', |
3156
|
|
|
|
|
|
|
'Cooter', |
3157
|
|
|
|
|
|
|
'Copake Lake', |
3158
|
|
|
|
|
|
|
'Copalis Beach', |
3159
|
|
|
|
|
|
|
'Copan', |
3160
|
|
|
|
|
|
|
'Cope', |
3161
|
|
|
|
|
|
|
'Copeland', |
3162
|
|
|
|
|
|
|
'Copemish', |
3163
|
|
|
|
|
|
|
'Copenhagen', |
3164
|
|
|
|
|
|
|
'Copiague', |
3165
|
|
|
|
|
|
|
'Coplay', |
3166
|
|
|
|
|
|
|
'Coppell', |
3167
|
|
|
|
|
|
|
'Copper Canyon', |
3168
|
|
|
|
|
|
|
'Copper Center', |
3169
|
|
|
|
|
|
|
'Copper City', |
3170
|
|
|
|
|
|
|
'Copperas Cove', |
3171
|
|
|
|
|
|
|
'Copperhill', |
3172
|
|
|
|
|
|
|
'Copperopolis', |
3173
|
|
|
|
|
|
|
'Copperville', |
3174
|
|
|
|
|
|
|
'Coppock', |
3175
|
|
|
|
|
|
|
'Coquille', |
3176
|
|
|
|
|
|
|
'CoquÃ', |
3177
|
|
|
|
|
|
|
'Cora', |
3178
|
|
|
|
|
|
|
'Coral Gables', |
3179
|
|
|
|
|
|
|
'Coral Hills', |
3180
|
|
|
|
|
|
|
'Coral Springs', |
3181
|
|
|
|
|
|
|
'Coral Terrace', |
3182
|
|
|
|
|
|
|
'Coralville', |
3183
|
|
|
|
|
|
|
'Coram', |
3184
|
|
|
|
|
|
|
'Coraopolis', |
3185
|
|
|
|
|
|
|
'Corazón', |
3186
|
|
|
|
|
|
|
'Corbin', |
3187
|
|
|
|
|
|
|
'Corbin City', |
3188
|
|
|
|
|
|
|
'Corcoran', |
3189
|
|
|
|
|
|
|
'Corcovado', |
3190
|
|
|
|
|
|
|
'Cordaville', |
3191
|
|
|
|
|
|
|
'Cordele', |
3192
|
|
|
|
|
|
|
'Corder', |
3193
|
|
|
|
|
|
|
'Cordes Lakes', |
3194
|
|
|
|
|
|
|
'Cordova', |
3195
|
|
|
|
|
|
|
'Corfu', |
3196
|
|
|
|
|
|
|
'Corinne', |
3197
|
|
|
|
|
|
|
'Corinth', |
3198
|
|
|
|
|
|
|
'Corn', |
3199
|
|
|
|
|
|
|
'Cornelia', |
3200
|
|
|
|
|
|
|
'Cornelius', |
3201
|
|
|
|
|
|
|
'Cornell', |
3202
|
|
|
|
|
|
|
'Cornersville', |
3203
|
|
|
|
|
|
|
'Corning', |
3204
|
|
|
|
|
|
|
'Cornish', |
3205
|
|
|
|
|
|
|
'Cornlea', |
3206
|
|
|
|
|
|
|
'Cornville', |
3207
|
|
|
|
|
|
|
'Cornwall', |
3208
|
|
|
|
|
|
|
'Cornwall on Hudson', |
3209
|
|
|
|
|
|
|
'Cornwells Heights-Eddington', |
3210
|
|
|
|
|
|
|
'Corona', |
3211
|
|
|
|
|
|
|
'Corona de Tucson', |
3212
|
|
|
|
|
|
|
'Coronaca', |
3213
|
|
|
|
|
|
|
'Coronado', |
3214
|
|
|
|
|
|
|
'Corozal', |
3215
|
|
|
|
|
|
|
'Corporation of Ranson', |
3216
|
|
|
|
|
|
|
'Corpus Christi', |
3217
|
|
|
|
|
|
|
'Corral City', |
3218
|
|
|
|
|
|
|
'Corrales', |
3219
|
|
|
|
|
|
|
'Corralitos', |
3220
|
|
|
|
|
|
|
'Correctionville', |
3221
|
|
|
|
|
|
|
'Correll', |
3222
|
|
|
|
|
|
|
'Corrigan', |
3223
|
|
|
|
|
|
|
'Corry', |
3224
|
|
|
|
|
|
|
'Corsica', |
3225
|
|
|
|
|
|
|
'Corsicana', |
3226
|
|
|
|
|
|
|
'Corte Madera', |
3227
|
|
|
|
|
|
|
'Cortez', |
3228
|
|
|
|
|
|
|
'Cortland', |
3229
|
|
|
|
|
|
|
'Cortland West', |
3230
|
|
|
|
|
|
|
'Corunna', |
3231
|
|
|
|
|
|
|
'Corvallis', |
3232
|
|
|
|
|
|
|
'Corwin', |
3233
|
|
|
|
|
|
|
'Corwith', |
3234
|
|
|
|
|
|
|
'Corydon', |
3235
|
|
|
|
|
|
|
'Cosby', |
3236
|
|
|
|
|
|
|
'Coshocton', |
3237
|
|
|
|
|
|
|
'Cosmopolis', |
3238
|
|
|
|
|
|
|
'Cosmos', |
3239
|
|
|
|
|
|
|
'Costa Mesa', |
3240
|
|
|
|
|
|
|
'Cotati', |
3241
|
|
|
|
|
|
|
'Cotesfield', |
3242
|
|
|
|
|
|
|
'Coto Laurel', |
3243
|
|
|
|
|
|
|
'Coto Norte', |
3244
|
|
|
|
|
|
|
'Coto de Caza', |
3245
|
|
|
|
|
|
|
'Cottage City', |
3246
|
|
|
|
|
|
|
'Cottage Grove', |
3247
|
|
|
|
|
|
|
'Cottage Lake', |
3248
|
|
|
|
|
|
|
'Cottageville', |
3249
|
|
|
|
|
|
|
'Cotter', |
3250
|
|
|
|
|
|
|
'Cottleville', |
3251
|
|
|
|
|
|
|
'Cotton Plant', |
3252
|
|
|
|
|
|
|
'Cotton Valley', |
3253
|
|
|
|
|
|
|
'Cottondale', |
3254
|
|
|
|
|
|
|
'Cottonport', |
3255
|
|
|
|
|
|
|
'Cottonwood', |
3256
|
|
|
|
|
|
|
'Cottonwood Falls', |
3257
|
|
|
|
|
|
|
'Cottonwood Heights', |
3258
|
|
|
|
|
|
|
'Cottonwood Shores', |
3259
|
|
|
|
|
|
|
'Cottonwood West', |
3260
|
|
|
|
|
|
|
'Cottonwood-Verde Village', |
3261
|
|
|
|
|
|
|
'Cotulla', |
3262
|
|
|
|
|
|
|
'Couderay', |
3263
|
|
|
|
|
|
|
'Coudersport', |
3264
|
|
|
|
|
|
|
'Coulee City', |
3265
|
|
|
|
|
|
|
'Coulee Dam', |
3266
|
|
|
|
|
|
|
'Coulter', |
3267
|
|
|
|
|
|
|
'Coulterville', |
3268
|
|
|
|
|
|
|
'Council', |
3269
|
|
|
|
|
|
|
'Council Bluffs', |
3270
|
|
|
|
|
|
|
'Council Grove', |
3271
|
|
|
|
|
|
|
'Council Hill', |
3272
|
|
|
|
|
|
|
'Country Club', |
3273
|
|
|
|
|
|
|
'Country Club Estates', |
3274
|
|
|
|
|
|
|
'Country Club Heights', |
3275
|
|
|
|
|
|
|
'Country Club Hills', |
3276
|
|
|
|
|
|
|
'Country Estates', |
3277
|
|
|
|
|
|
|
'Country Homes', |
3278
|
|
|
|
|
|
|
'Country Knolls', |
3279
|
|
|
|
|
|
|
'Country Lake Estates', |
3280
|
|
|
|
|
|
|
'Country Life Acres', |
3281
|
|
|
|
|
|
|
'Country Walk', |
3282
|
|
|
|
|
|
|
'Countryside', |
3283
|
|
|
|
|
|
|
'County Line', |
3284
|
|
|
|
|
|
|
'Coupeville', |
3285
|
|
|
|
|
|
|
'Courtdale', |
3286
|
|
|
|
|
|
|
'Courtenay', |
3287
|
|
|
|
|
|
|
'Courtland', |
3288
|
|
|
|
|
|
|
'Coushatta', |
3289
|
|
|
|
|
|
|
'Cove', |
3290
|
|
|
|
|
|
|
'Cove City', |
3291
|
|
|
|
|
|
|
'Cove Neck', |
3292
|
|
|
|
|
|
|
'Covedale', |
3293
|
|
|
|
|
|
|
'Covelo', |
3294
|
|
|
|
|
|
|
'Covenant Life', |
3295
|
|
|
|
|
|
|
'Coventry Lake', |
3296
|
|
|
|
|
|
|
'Covina', |
3297
|
|
|
|
|
|
|
'Covington', |
3298
|
|
|
|
|
|
|
'Cowan', |
3299
|
|
|
|
|
|
|
'Coward', |
3300
|
|
|
|
|
|
|
'Cowarts', |
3301
|
|
|
|
|
|
|
'Cowden', |
3302
|
|
|
|
|
|
|
'Cowen', |
3303
|
|
|
|
|
|
|
'Coweta', |
3304
|
|
|
|
|
|
|
'Cowgill', |
3305
|
|
|
|
|
|
|
'Cowles', |
3306
|
|
|
|
|
|
|
'Cowley', |
3307
|
|
|
|
|
|
|
'Cowlington', |
3308
|
|
|
|
|
|
|
'Cowpens', |
3309
|
|
|
|
|
|
|
'Coxsackie', |
3310
|
|
|
|
|
|
|
'Coy', |
3311
|
|
|
|
|
|
|
'Coyanosa', |
3312
|
|
|
|
|
|
|
'Coyle', |
3313
|
|
|
|
|
|
|
'Coyne Center', |
3314
|
|
|
|
|
|
|
'Coyote Acres', |
3315
|
|
|
|
|
|
|
'Coyville', |
3316
|
|
|
|
|
|
|
'Cozad', |
3317
|
|
|
|
|
|
|
'Crab Orchard', |
3318
|
|
|
|
|
|
|
'Crabtree', |
3319
|
|
|
|
|
|
|
'Crafton', |
3320
|
|
|
|
|
|
|
'Cragsmoor', |
3321
|
|
|
|
|
|
|
'Craig', |
3322
|
|
|
|
|
|
|
'Craig Beach', |
3323
|
|
|
|
|
|
|
'Craigmont', |
3324
|
|
|
|
|
|
|
'Craigsville', |
3325
|
|
|
|
|
|
|
'Crainville', |
3326
|
|
|
|
|
|
|
'Cramerton', |
3327
|
|
|
|
|
|
|
'Cranbury', |
3328
|
|
|
|
|
|
|
'Crandall', |
3329
|
|
|
|
|
|
|
'Crandon', |
3330
|
|
|
|
|
|
|
'Crandon Lakes', |
3331
|
|
|
|
|
|
|
'Crane', |
3332
|
|
|
|
|
|
|
'Cranesville', |
3333
|
|
|
|
|
|
|
'Cranfills Gap', |
3334
|
|
|
|
|
|
|
'Cranford', |
3335
|
|
|
|
|
|
|
'Cranston', |
3336
|
|
|
|
|
|
|
'Crary', |
3337
|
|
|
|
|
|
|
'Crawford', |
3338
|
|
|
|
|
|
|
'Crawfordsville', |
3339
|
|
|
|
|
|
|
'Crawfordville', |
3340
|
|
|
|
|
|
|
'Creal Springs', |
3341
|
|
|
|
|
|
|
'Creede', |
3342
|
|
|
|
|
|
|
'Creedmoor', |
3343
|
|
|
|
|
|
|
'Creekside', |
3344
|
|
|
|
|
|
|
'Creighton', |
3345
|
|
|
|
|
|
|
'Crenshaw', |
3346
|
|
|
|
|
|
|
'Creola', |
3347
|
|
|
|
|
|
|
'Cresaptown-Bel Air', |
3348
|
|
|
|
|
|
|
'Cresbard', |
3349
|
|
|
|
|
|
|
'Crescent', |
3350
|
|
|
|
|
|
|
'Crescent Beach', |
3351
|
|
|
|
|
|
|
'Crescent City', |
3352
|
|
|
|
|
|
|
'Crescent City North', |
3353
|
|
|
|
|
|
|
'Crescent Mills', |
3354
|
|
|
|
|
|
|
'Crescent Springs', |
3355
|
|
|
|
|
|
|
'Cresco', |
3356
|
|
|
|
|
|
|
'Cresskill', |
3357
|
|
|
|
|
|
|
'Cresson', |
3358
|
|
|
|
|
|
|
'Cressona', |
3359
|
|
|
|
|
|
|
'Crest', |
3360
|
|
|
|
|
|
|
'Crest Hill', |
3361
|
|
|
|
|
|
|
'Crested Butte', |
3362
|
|
|
|
|
|
|
'Crestline', |
3363
|
|
|
|
|
|
|
'Creston', |
3364
|
|
|
|
|
|
|
'Crestone', |
3365
|
|
|
|
|
|
|
'Crestview', |
3366
|
|
|
|
|
|
|
'Crestview Hills', |
3367
|
|
|
|
|
|
|
'Crestwood', |
3368
|
|
|
|
|
|
|
'Crestwood Village', |
3369
|
|
|
|
|
|
|
'Creswell', |
3370
|
|
|
|
|
|
|
'Crete', |
3371
|
|
|
|
|
|
|
'Creve Coeur', |
3372
|
|
|
|
|
|
|
'Crewe', |
3373
|
|
|
|
|
|
|
'Cricket', |
3374
|
|
|
|
|
|
|
'Cridersville', |
3375
|
|
|
|
|
|
|
'Crimora', |
3376
|
|
|
|
|
|
|
'Cripple Creek', |
3377
|
|
|
|
|
|
|
'Crisfield', |
3378
|
|
|
|
|
|
|
'Crittenden', |
3379
|
|
|
|
|
|
|
'Crivitz', |
3380
|
|
|
|
|
|
|
'Crocker', |
3381
|
|
|
|
|
|
|
'Crockett', |
3382
|
|
|
|
|
|
|
'Crofton', |
3383
|
|
|
|
|
|
|
'Croghan', |
3384
|
|
|
|
|
|
|
'Cromberg', |
3385
|
|
|
|
|
|
|
'Crompond', |
3386
|
|
|
|
|
|
|
'Cromwell', |
3387
|
|
|
|
|
|
|
'Crook', |
3388
|
|
|
|
|
|
|
'Crooked Creek', |
3389
|
|
|
|
|
|
|
'Crooked Lake Park', |
3390
|
|
|
|
|
|
|
'Crooks', |
3391
|
|
|
|
|
|
|
'Crookston', |
3392
|
|
|
|
|
|
|
'Crooksville', |
3393
|
|
|
|
|
|
|
'Crosby', |
3394
|
|
|
|
|
|
|
'Crosbyton', |
3395
|
|
|
|
|
|
|
'Cross City', |
3396
|
|
|
|
|
|
|
'Cross Hill', |
3397
|
|
|
|
|
|
|
'Cross Lanes', |
3398
|
|
|
|
|
|
|
'Cross Mountain', |
3399
|
|
|
|
|
|
|
'Cross Plains', |
3400
|
|
|
|
|
|
|
'Cross Roads', |
3401
|
|
|
|
|
|
|
'Cross Timber', |
3402
|
|
|
|
|
|
|
'Cross Timbers', |
3403
|
|
|
|
|
|
|
'Crossett', |
3404
|
|
|
|
|
|
|
'Crossgate', |
3405
|
|
|
|
|
|
|
'Crosslake', |
3406
|
|
|
|
|
|
|
'Crossnore', |
3407
|
|
|
|
|
|
|
'Crossville', |
3408
|
|
|
|
|
|
|
'Croswell', |
3409
|
|
|
|
|
|
|
'Crothersville', |
3410
|
|
|
|
|
|
|
'Croton-on-Hudson', |
3411
|
|
|
|
|
|
|
'Crouch', |
3412
|
|
|
|
|
|
|
'Crow Agency', |
3413
|
|
|
|
|
|
|
'Crowder', |
3414
|
|
|
|
|
|
|
'Crowell', |
3415
|
|
|
|
|
|
|
'Crowheart', |
3416
|
|
|
|
|
|
|
'Crowley', |
3417
|
|
|
|
|
|
|
'Crown City', |
3418
|
|
|
|
|
|
|
'Crown Heights', |
3419
|
|
|
|
|
|
|
'Crown Point', |
3420
|
|
|
|
|
|
|
'Crownpoint', |
3421
|
|
|
|
|
|
|
'Crownsville', |
3422
|
|
|
|
|
|
|
'Crows Nest', |
3423
|
|
|
|
|
|
|
'Croydon', |
3424
|
|
|
|
|
|
|
'Crozet', |
3425
|
|
|
|
|
|
|
'Cruger', |
3426
|
|
|
|
|
|
|
'Crugers', |
3427
|
|
|
|
|
|
|
'Crump', |
3428
|
|
|
|
|
|
|
'Crystal', |
3429
|
|
|
|
|
|
|
'Crystal City', |
3430
|
|
|
|
|
|
|
'Crystal Falls', |
3431
|
|
|
|
|
|
|
'Crystal Lake', |
3432
|
|
|
|
|
|
|
'Crystal Lake Park', |
3433
|
|
|
|
|
|
|
'Crystal Lakes', |
3434
|
|
|
|
|
|
|
'Crystal Lawns', |
3435
|
|
|
|
|
|
|
'Crystal River', |
3436
|
|
|
|
|
|
|
'Crystal Springs', |
3437
|
|
|
|
|
|
|
'Cuartelez', |
3438
|
|
|
|
|
|
|
'Cuba', |
3439
|
|
|
|
|
|
|
'Cuba City', |
3440
|
|
|
|
|
|
|
'Cube Cove', |
3441
|
|
|
|
|
|
|
'Cudahy', |
3442
|
|
|
|
|
|
|
'Cudjoe Key', |
3443
|
|
|
|
|
|
|
'Cuero', |
3444
|
|
|
|
|
|
|
'Cuevitas', |
3445
|
|
|
|
|
|
|
'Culbertson', |
3446
|
|
|
|
|
|
|
'Culdesac', |
3447
|
|
|
|
|
|
|
'Culebra', |
3448
|
|
|
|
|
|
|
'Cullen', |
3449
|
|
|
|
|
|
|
'Cullison', |
3450
|
|
|
|
|
|
|
'Cullman', |
3451
|
|
|
|
|
|
|
'Culloden', |
3452
|
|
|
|
|
|
|
'Cullom', |
3453
|
|
|
|
|
|
|
'Cullowhee', |
3454
|
|
|
|
|
|
|
'Culpeper', |
3455
|
|
|
|
|
|
|
'Culver', |
3456
|
|
|
|
|
|
|
'Culver City', |
3457
|
|
|
|
|
|
|
'Cumberland', |
3458
|
|
|
|
|
|
|
'Cumberland Center', |
3459
|
|
|
|
|
|
|
'Cumberland City', |
3460
|
|
|
|
|
|
|
'Cumberland Gap', |
3461
|
|
|
|
|
|
|
'Cumberland Head', |
3462
|
|
|
|
|
|
|
'Cumberland Hill', |
3463
|
|
|
|
|
|
|
'Cumby', |
3464
|
|
|
|
|
|
|
'Cumings', |
3465
|
|
|
|
|
|
|
'Cumming', |
3466
|
|
|
|
|
|
|
'Cundiyo', |
3467
|
|
|
|
|
|
|
'Cuney', |
3468
|
|
|
|
|
|
|
'Cunningham', |
3469
|
|
|
|
|
|
|
'Cupertino', |
3470
|
|
|
|
|
|
|
'Curlew', |
3471
|
|
|
|
|
|
|
'Currie', |
3472
|
|
|
|
|
|
|
'Curryville', |
3473
|
|
|
|
|
|
|
'Curtis', |
3474
|
|
|
|
|
|
|
'Curtiss', |
3475
|
|
|
|
|
|
|
'Curtisville', |
3476
|
|
|
|
|
|
|
'Curwensville', |
3477
|
|
|
|
|
|
|
'Cushing', |
3478
|
|
|
|
|
|
|
'Cushman', |
3479
|
|
|
|
|
|
|
'Cusick', |
3480
|
|
|
|
|
|
|
'Cusseta', |
3481
|
|
|
|
|
|
|
'Custar', |
3482
|
|
|
|
|
|
|
'Custer', |
3483
|
|
|
|
|
|
|
'Custer City', |
3484
|
|
|
|
|
|
|
'Cut Bank', |
3485
|
|
|
|
|
|
|
'Cut Off', |
3486
|
|
|
|
|
|
|
'Cut and Shoot', |
3487
|
|
|
|
|
|
|
'Cutchogue', |
3488
|
|
|
|
|
|
|
'Cuthbert', |
3489
|
|
|
|
|
|
|
'Cutler', |
3490
|
|
|
|
|
|
|
'Cutler Ridge', |
3491
|
|
|
|
|
|
|
'Cutlerville', |
3492
|
|
|
|
|
|
|
'Cutten', |
3493
|
|
|
|
|
|
|
'Cuyahoga Falls', |
3494
|
|
|
|
|
|
|
'Cuyahoga Heights', |
3495
|
|
|
|
|
|
|
'Cuyamungue', |
3496
|
|
|
|
|
|
|
'Cuyuna', |
3497
|
|
|
|
|
|
|
'Cygnet', |
3498
|
|
|
|
|
|
|
'Cylinder', |
3499
|
|
|
|
|
|
|
'Cynthiana', |
3500
|
|
|
|
|
|
|
'Cypress', |
3501
|
|
|
|
|
|
|
'Cypress Gardens', |
3502
|
|
|
|
|
|
|
'Cypress Lake', |
3503
|
|
|
|
|
|
|
'Cypress Lakes', |
3504
|
|
|
|
|
|
|
'Cypress Quarters', |
3505
|
|
|
|
|
|
|
'Cyril', |
3506
|
|
|
|
|
|
|
'Cyrus', |
3507
|
|
|
|
|
|
|
'D\'Iberville', |
3508
|
|
|
|
|
|
|
'D\'Lo', |
3509
|
|
|
|
|
|
|
'Dacoma', |
3510
|
|
|
|
|
|
|
'Dacono', |
3511
|
|
|
|
|
|
|
'Dacula', |
3512
|
|
|
|
|
|
|
'Dade City', |
3513
|
|
|
|
|
|
|
'Dade City North', |
3514
|
|
|
|
|
|
|
'Dadeville', |
3515
|
|
|
|
|
|
|
'Daggett', |
3516
|
|
|
|
|
|
|
'Dagsboro', |
3517
|
|
|
|
|
|
|
'Daguao', |
3518
|
|
|
|
|
|
|
'Dahlgren', |
3519
|
|
|
|
|
|
|
'Dahlonega', |
3520
|
|
|
|
|
|
|
'Daingerfield', |
3521
|
|
|
|
|
|
|
'Daisetta', |
3522
|
|
|
|
|
|
|
'Daisy', |
3523
|
|
|
|
|
|
|
'Daisytown', |
3524
|
|
|
|
|
|
|
'Dakota', |
3525
|
|
|
|
|
|
|
'Dakota City', |
3526
|
|
|
|
|
|
|
'Dale', |
3527
|
|
|
|
|
|
|
'Dale City', |
3528
|
|
|
|
|
|
|
'Daleville', |
3529
|
|
|
|
|
|
|
'Dalhart', |
3530
|
|
|
|
|
|
|
'Dallas', |
3531
|
|
|
|
|
|
|
'Dallas Center', |
3532
|
|
|
|
|
|
|
'Dallas City', |
3533
|
|
|
|
|
|
|
'Dallastown', |
3534
|
|
|
|
|
|
|
'Dallesport', |
3535
|
|
|
|
|
|
|
'Dalton', |
3536
|
|
|
|
|
|
|
'Dalton City', |
3537
|
|
|
|
|
|
|
'Dalton Gardens', |
3538
|
|
|
|
|
|
|
'Dalworthington Gardens', |
3539
|
|
|
|
|
|
|
'Daly City', |
3540
|
|
|
|
|
|
|
'Dalzell', |
3541
|
|
|
|
|
|
|
'Damar', |
3542
|
|
|
|
|
|
|
'Damariscotta-Newcastle', |
3543
|
|
|
|
|
|
|
'Damascus', |
3544
|
|
|
|
|
|
|
'Dames Quarter', |
3545
|
|
|
|
|
|
|
'Damiansville', |
3546
|
|
|
|
|
|
|
'Damon', |
3547
|
|
|
|
|
|
|
'Dana', |
3548
|
|
|
|
|
|
|
'Dana Point', |
3549
|
|
|
|
|
|
|
'Danbury', |
3550
|
|
|
|
|
|
|
'Dandridge', |
3551
|
|
|
|
|
|
|
'Dane', |
3552
|
|
|
|
|
|
|
'Danforth', |
3553
|
|
|
|
|
|
|
'Dania Beach', |
3554
|
|
|
|
|
|
|
'Daniel', |
3555
|
|
|
|
|
|
|
'Daniels', |
3556
|
|
|
|
|
|
|
'Danielson', |
3557
|
|
|
|
|
|
|
'Danielsville', |
3558
|
|
|
|
|
|
|
'Dannebrog', |
3559
|
|
|
|
|
|
|
'Dannemora', |
3560
|
|
|
|
|
|
|
'Dansville', |
3561
|
|
|
|
|
|
|
'Dante', |
3562
|
|
|
|
|
|
|
'Danube', |
3563
|
|
|
|
|
|
|
'Danvers', |
3564
|
|
|
|
|
|
|
'Danville', |
3565
|
|
|
|
|
|
|
'Daphne', |
3566
|
|
|
|
|
|
|
'Darby', |
3567
|
|
|
|
|
|
|
'Darby Township', |
3568
|
|
|
|
|
|
|
'Darbyville', |
3569
|
|
|
|
|
|
|
'Dardanelle', |
3570
|
|
|
|
|
|
|
'Dardenne Prairie', |
3571
|
|
|
|
|
|
|
'Darfur', |
3572
|
|
|
|
|
|
|
'Darien', |
3573
|
|
|
|
|
|
|
'Darlington', |
3574
|
|
|
|
|
|
|
'Darmstadt', |
3575
|
|
|
|
|
|
|
'Darnestown', |
3576
|
|
|
|
|
|
|
'Darrington', |
3577
|
|
|
|
|
|
|
'Darrouzett', |
3578
|
|
|
|
|
|
|
'Darwin', |
3579
|
|
|
|
|
|
|
'Dasher', |
3580
|
|
|
|
|
|
|
'Dassel', |
3581
|
|
|
|
|
|
|
'Datto', |
3582
|
|
|
|
|
|
|
'Dauphin', |
3583
|
|
|
|
|
|
|
'Dauphin Island', |
3584
|
|
|
|
|
|
|
'Davenport', |
3585
|
|
|
|
|
|
|
'Davey', |
3586
|
|
|
|
|
|
|
'David City', |
3587
|
|
|
|
|
|
|
'Davidson', |
3588
|
|
|
|
|
|
|
'Davidsville', |
3589
|
|
|
|
|
|
|
'Davie', |
3590
|
|
|
|
|
|
|
'Davis', |
3591
|
|
|
|
|
|
|
'Davis City', |
3592
|
|
|
|
|
|
|
'Davis Junction', |
3593
|
|
|
|
|
|
|
'Davisboro', |
3594
|
|
|
|
|
|
|
'Davison', |
3595
|
|
|
|
|
|
|
'Daviston', |
3596
|
|
|
|
|
|
|
'Davy', |
3597
|
|
|
|
|
|
|
'Dawson', |
3598
|
|
|
|
|
|
|
'Dawson Springs', |
3599
|
|
|
|
|
|
|
'Dawsonville', |
3600
|
|
|
|
|
|
|
'Day Heights', |
3601
|
|
|
|
|
|
|
'Day Valley', |
3602
|
|
|
|
|
|
|
'Daykin', |
3603
|
|
|
|
|
|
|
'Dayton', |
3604
|
|
|
|
|
|
|
'Dayton Lakes', |
3605
|
|
|
|
|
|
|
'Daytona Beach', |
3606
|
|
|
|
|
|
|
'Daytona Beach Shores', |
3607
|
|
|
|
|
|
|
'Dayville', |
3608
|
|
|
|
|
|
|
'Dazey', |
3609
|
|
|
|
|
|
|
'De Bary', |
3610
|
|
|
|
|
|
|
'De Beque', |
3611
|
|
|
|
|
|
|
'De Borgia', |
3612
|
|
|
|
|
|
|
'De Funiak Springs', |
3613
|
|
|
|
|
|
|
'De Graff', |
3614
|
|
|
|
|
|
|
'De Kalb', |
3615
|
|
|
|
|
|
|
'De Land', |
3616
|
|
|
|
|
|
|
'De Land Southwest', |
3617
|
|
|
|
|
|
|
'De Leon', |
3618
|
|
|
|
|
|
|
'De Leon Springs', |
3619
|
|
|
|
|
|
|
'De Motte', |
3620
|
|
|
|
|
|
|
'De Pere', |
3621
|
|
|
|
|
|
|
'De Pue', |
3622
|
|
|
|
|
|
|
'De Queen', |
3623
|
|
|
|
|
|
|
'De Ridder', |
3624
|
|
|
|
|
|
|
'De Smet', |
3625
|
|
|
|
|
|
|
'De Soto', |
3626
|
|
|
|
|
|
|
'De Tour Village', |
3627
|
|
|
|
|
|
|
'De Valls Bluff', |
3628
|
|
|
|
|
|
|
'De Witt', |
3629
|
|
|
|
|
|
|
'DeForest', |
3630
|
|
|
|
|
|
|
'DeKalb', |
3631
|
|
|
|
|
|
|
'DeQuincy', |
3632
|
|
|
|
|
|
|
'DeRuyter', |
3633
|
|
|
|
|
|
|
'DeSoto', |
3634
|
|
|
|
|
|
|
'Deadwood', |
3635
|
|
|
|
|
|
|
'Deal', |
3636
|
|
|
|
|
|
|
'Deal Island', |
3637
|
|
|
|
|
|
|
'Deale', |
3638
|
|
|
|
|
|
|
'Dean', |
3639
|
|
|
|
|
|
|
'Dearborn', |
3640
|
|
|
|
|
|
|
'Dearborn Heights', |
3641
|
|
|
|
|
|
|
'Dearing', |
3642
|
|
|
|
|
|
|
'Deary', |
3643
|
|
|
|
|
|
|
'Deatsville', |
3644
|
|
|
|
|
|
|
'Deaver', |
3645
|
|
|
|
|
|
|
'Decatur', |
3646
|
|
|
|
|
|
|
'Decatur City', |
3647
|
|
|
|
|
|
|
'Decaturville', |
3648
|
|
|
|
|
|
|
'Decherd', |
3649
|
|
|
|
|
|
|
'Decker', |
3650
|
|
|
|
|
|
|
'Deckerville', |
3651
|
|
|
|
|
|
|
'Declo', |
3652
|
|
|
|
|
|
|
'Decorah', |
3653
|
|
|
|
|
|
|
'Dedham', |
3654
|
|
|
|
|
|
|
'Deemston', |
3655
|
|
|
|
|
|
|
'Deenwood', |
3656
|
|
|
|
|
|
|
'Deep River', |
3657
|
|
|
|
|
|
|
'Deep River Center', |
3658
|
|
|
|
|
|
|
'Deephaven', |
3659
|
|
|
|
|
|
|
'Deepstep', |
3660
|
|
|
|
|
|
|
'Deepwater', |
3661
|
|
|
|
|
|
|
'Deer Creek', |
3662
|
|
|
|
|
|
|
'Deer Grove', |
3663
|
|
|
|
|
|
|
'Deer Lake', |
3664
|
|
|
|
|
|
|
'Deer Lodge', |
3665
|
|
|
|
|
|
|
'Deer Park', |
3666
|
|
|
|
|
|
|
'Deer River', |
3667
|
|
|
|
|
|
|
'Deer Trail', |
3668
|
|
|
|
|
|
|
'Deerfield', |
3669
|
|
|
|
|
|
|
'Deerfield Beach', |
3670
|
|
|
|
|
|
|
'Deering', |
3671
|
|
|
|
|
|
|
'Deersville', |
3672
|
|
|
|
|
|
|
'Deerwood', |
3673
|
|
|
|
|
|
|
'Deferiet', |
3674
|
|
|
|
|
|
|
'Defiance', |
3675
|
|
|
|
|
|
|
'Del Aire', |
3676
|
|
|
|
|
|
|
'Del City', |
3677
|
|
|
|
|
|
|
'Del Mar', |
3678
|
|
|
|
|
|
|
'Del Mar Heights', |
3679
|
|
|
|
|
|
|
'Del Monte Forest', |
3680
|
|
|
|
|
|
|
'Del Norte', |
3681
|
|
|
|
|
|
|
'Del Rey', |
3682
|
|
|
|
|
|
|
'Del Rey Oaks', |
3683
|
|
|
|
|
|
|
'Del Rio', |
3684
|
|
|
|
|
|
|
'Del Sol-Loma Linda', |
3685
|
|
|
|
|
|
|
'Delafield', |
3686
|
|
|
|
|
|
|
'Delano', |
3687
|
|
|
|
|
|
|
'Delanson', |
3688
|
|
|
|
|
|
|
'Delaplaine', |
3689
|
|
|
|
|
|
|
'Delavan', |
3690
|
|
|
|
|
|
|
'Delavan Lake', |
3691
|
|
|
|
|
|
|
'Delaware', |
3692
|
|
|
|
|
|
|
'Delaware City', |
3693
|
|
|
|
|
|
|
'Delaware Water Gap', |
3694
|
|
|
|
|
|
|
'Delbarton', |
3695
|
|
|
|
|
|
|
'Delcambre', |
3696
|
|
|
|
|
|
|
'Delevan', |
3697
|
|
|
|
|
|
|
'Delhi', |
3698
|
|
|
|
|
|
|
'Delia', |
3699
|
|
|
|
|
|
|
'Delight', |
3700
|
|
|
|
|
|
|
'Dell', |
3701
|
|
|
|
|
|
|
'Dell City', |
3702
|
|
|
|
|
|
|
'Dell Rapids', |
3703
|
|
|
|
|
|
|
'Delleker', |
3704
|
|
|
|
|
|
|
'Dellroy', |
3705
|
|
|
|
|
|
|
'Dellwood', |
3706
|
|
|
|
|
|
|
'Delmar', |
3707
|
|
|
|
|
|
|
'Delmont', |
3708
|
|
|
|
|
|
|
'Deloit', |
3709
|
|
|
|
|
|
|
'Delphi', |
3710
|
|
|
|
|
|
|
'Delphos', |
3711
|
|
|
|
|
|
|
'Delray Beach', |
3712
|
|
|
|
|
|
|
'Delta', |
3713
|
|
|
|
|
|
|
'Delta Junction', |
3714
|
|
|
|
|
|
|
'Deltana', |
3715
|
|
|
|
|
|
|
'Deltona', |
3716
|
|
|
|
|
|
|
'Delway', |
3717
|
|
|
|
|
|
|
'Demarest', |
3718
|
|
|
|
|
|
|
'Deming', |
3719
|
|
|
|
|
|
|
'Demopolis', |
3720
|
|
|
|
|
|
|
'Demorest', |
3721
|
|
|
|
|
|
|
'Denair', |
3722
|
|
|
|
|
|
|
'Dendron', |
3723
|
|
|
|
|
|
|
'Denham', |
3724
|
|
|
|
|
|
|
'Denham Springs', |
3725
|
|
|
|
|
|
|
'Denison', |
3726
|
|
|
|
|
|
|
'Denmark', |
3727
|
|
|
|
|
|
|
'Dennehotso', |
3728
|
|
|
|
|
|
|
'Denning', |
3729
|
|
|
|
|
|
|
'Dennis', |
3730
|
|
|
|
|
|
|
'Dennis Acres', |
3731
|
|
|
|
|
|
|
'Dennis Port', |
3732
|
|
|
|
|
|
|
'Dennison', |
3733
|
|
|
|
|
|
|
'Dent', |
3734
|
|
|
|
|
|
|
'Denton', |
3735
|
|
|
|
|
|
|
'Dentsville', |
3736
|
|
|
|
|
|
|
'Denver', |
3737
|
|
|
|
|
|
|
'Denver City', |
3738
|
|
|
|
|
|
|
'Depauville', |
3739
|
|
|
|
|
|
|
'Depew', |
3740
|
|
|
|
|
|
|
'Depoe Bay', |
3741
|
|
|
|
|
|
|
'Deport', |
3742
|
|
|
|
|
|
|
'Deposit', |
3743
|
|
|
|
|
|
|
'Derby', |
3744
|
|
|
|
|
|
|
'Derby Acres', |
3745
|
|
|
|
|
|
|
'Derby Center', |
3746
|
|
|
|
|
|
|
'Derby Line', |
3747
|
|
|
|
|
|
|
'Dering Harbor', |
3748
|
|
|
|
|
|
|
'Derma', |
3749
|
|
|
|
|
|
|
'Dermott', |
3750
|
|
|
|
|
|
|
'Derry', |
3751
|
|
|
|
|
|
|
'Des Allemands', |
3752
|
|
|
|
|
|
|
'Des Arc', |
3753
|
|
|
|
|
|
|
'Des Lacs', |
3754
|
|
|
|
|
|
|
'Des Moines', |
3755
|
|
|
|
|
|
|
'Des Peres', |
3756
|
|
|
|
|
|
|
'Des Plaines', |
3757
|
|
|
|
|
|
|
'Deschutes River Woods', |
3758
|
|
|
|
|
|
|
'Desert Aire', |
3759
|
|
|
|
|
|
|
'Desert Hills', |
3760
|
|
|
|
|
|
|
'Desert Hot Springs', |
3761
|
|
|
|
|
|
|
'Desert Shores', |
3762
|
|
|
|
|
|
|
'Desert View Highlands', |
3763
|
|
|
|
|
|
|
'Deshler', |
3764
|
|
|
|
|
|
|
'Desloge', |
3765
|
|
|
|
|
|
|
'Desoto Lakes', |
3766
|
|
|
|
|
|
|
'Despard', |
3767
|
|
|
|
|
|
|
'Destin', |
3768
|
|
|
|
|
|
|
'Destrehan', |
3769
|
|
|
|
|
|
|
'Detroit', |
3770
|
|
|
|
|
|
|
'Detroit Beach', |
3771
|
|
|
|
|
|
|
'Detroit Lakes', |
3772
|
|
|
|
|
|
|
'Devers', |
3773
|
|
|
|
|
|
|
'Deville', |
3774
|
|
|
|
|
|
|
'Devils Lake', |
3775
|
|
|
|
|
|
|
'Devine', |
3776
|
|
|
|
|
|
|
'Devol', |
3777
|
|
|
|
|
|
|
'Devola', |
3778
|
|
|
|
|
|
|
'Devon-Berwyn', |
3779
|
|
|
|
|
|
|
'Dewar', |
3780
|
|
|
|
|
|
|
'Deweese', |
3781
|
|
|
|
|
|
|
'Dewey', |
3782
|
|
|
|
|
|
|
'Dewey Beach', |
3783
|
|
|
|
|
|
|
'Dewey-Humboldt', |
3784
|
|
|
|
|
|
|
'Deweyville', |
3785
|
|
|
|
|
|
|
'Dexter', |
3786
|
|
|
|
|
|
|
'Dexter City', |
3787
|
|
|
|
|
|
|
'Diablo', |
3788
|
|
|
|
|
|
|
'Diagonal', |
3789
|
|
|
|
|
|
|
'Diamond', |
3790
|
|
|
|
|
|
|
'Diamond Bar', |
3791
|
|
|
|
|
|
|
'Diamond Beach', |
3792
|
|
|
|
|
|
|
'Diamond City', |
3793
|
|
|
|
|
|
|
'Diamond Ridge', |
3794
|
|
|
|
|
|
|
'Diamond Springs', |
3795
|
|
|
|
|
|
|
'Diamondhead', |
3796
|
|
|
|
|
|
|
'Diamondville', |
3797
|
|
|
|
|
|
|
'Diaz', |
3798
|
|
|
|
|
|
|
'Dibble', |
3799
|
|
|
|
|
|
|
'Diboll', |
3800
|
|
|
|
|
|
|
'Dickens', |
3801
|
|
|
|
|
|
|
'Dickey', |
3802
|
|
|
|
|
|
|
'Dickeyville', |
3803
|
|
|
|
|
|
|
'Dickinson', |
3804
|
|
|
|
|
|
|
'Dickson', |
3805
|
|
|
|
|
|
|
'Dickson City', |
3806
|
|
|
|
|
|
|
'Dicksonville', |
3807
|
|
|
|
|
|
|
'Diehlstadt', |
3808
|
|
|
|
|
|
|
'Dierks', |
3809
|
|
|
|
|
|
|
'Dieterich', |
3810
|
|
|
|
|
|
|
'Dietrich', |
3811
|
|
|
|
|
|
|
'Diggins', |
3812
|
|
|
|
|
|
|
'Dighton', |
3813
|
|
|
|
|
|
|
'Dike', |
3814
|
|
|
|
|
|
|
'Dilkon', |
3815
|
|
|
|
|
|
|
'Dill City', |
3816
|
|
|
|
|
|
|
'Dillard', |
3817
|
|
|
|
|
|
|
'Diller', |
3818
|
|
|
|
|
|
|
'Dilley', |
3819
|
|
|
|
|
|
|
'Dillingham', |
3820
|
|
|
|
|
|
|
'Dillon', |
3821
|
|
|
|
|
|
|
'Dillon Beach', |
3822
|
|
|
|
|
|
|
'Dillonvale', |
3823
|
|
|
|
|
|
|
'Dillsboro', |
3824
|
|
|
|
|
|
|
'Dillsburg', |
3825
|
|
|
|
|
|
|
'Dillwyn', |
3826
|
|
|
|
|
|
|
'Dilworth', |
3827
|
|
|
|
|
|
|
'Dimmitt', |
3828
|
|
|
|
|
|
|
'Dimock', |
3829
|
|
|
|
|
|
|
'Dimondale', |
3830
|
|
|
|
|
|
|
'Dinosaur', |
3831
|
|
|
|
|
|
|
'Dinuba', |
3832
|
|
|
|
|
|
|
'Diomede', |
3833
|
|
|
|
|
|
|
'Discovery Bay', |
3834
|
|
|
|
|
|
|
'Discovery-Spring Garden', |
3835
|
|
|
|
|
|
|
'Dishman', |
3836
|
|
|
|
|
|
|
'Disney', |
3837
|
|
|
|
|
|
|
'District Heights', |
3838
|
|
|
|
|
|
|
'Divernon', |
3839
|
|
|
|
|
|
|
'Dix', |
3840
|
|
|
|
|
|
|
'Dix Hills', |
3841
|
|
|
|
|
|
|
'Dixfield', |
3842
|
|
|
|
|
|
|
'Dixie', |
3843
|
|
|
|
|
|
|
'Dixie Inn', |
3844
|
|
|
|
|
|
|
'Dixmoor', |
3845
|
|
|
|
|
|
|
'Dixon', |
3846
|
|
|
|
|
|
|
'Dixon Lane-Meadow Creek', |
3847
|
|
|
|
|
|
|
'Dobbins Heights', |
3848
|
|
|
|
|
|
|
'Dobbs Ferry', |
3849
|
|
|
|
|
|
|
'Dobson', |
3850
|
|
|
|
|
|
|
'Dock Junction', |
3851
|
|
|
|
|
|
|
'Doctor Phillips', |
3852
|
|
|
|
|
|
|
'Dodd City', |
3853
|
|
|
|
|
|
|
'Doddsville', |
3854
|
|
|
|
|
|
|
'Dodge', |
3855
|
|
|
|
|
|
|
'Dodge Center', |
3856
|
|
|
|
|
|
|
'Dodge City', |
3857
|
|
|
|
|
|
|
'Dodgeville', |
3858
|
|
|
|
|
|
|
'Dodson', |
3859
|
|
|
|
|
|
|
'Doerun', |
3860
|
|
|
|
|
|
|
'Doffing', |
3861
|
|
|
|
|
|
|
'Dolan Springs', |
3862
|
|
|
|
|
|
|
'Doland', |
3863
|
|
|
|
|
|
|
'Dolgeville', |
3864
|
|
|
|
|
|
|
'Dollar Corner', |
3865
|
|
|
|
|
|
|
'Dollar Point', |
3866
|
|
|
|
|
|
|
'Dolliver', |
3867
|
|
|
|
|
|
|
'Dolores', |
3868
|
|
|
|
|
|
|
'Dolton', |
3869
|
|
|
|
|
|
|
'Domino', |
3870
|
|
|
|
|
|
|
'Dona Ana', |
3871
|
|
|
|
|
|
|
'Donahue', |
3872
|
|
|
|
|
|
|
'Donald', |
3873
|
|
|
|
|
|
|
'Donalds', |
3874
|
|
|
|
|
|
|
'Donaldson', |
3875
|
|
|
|
|
|
|
'Donaldsonville', |
3876
|
|
|
|
|
|
|
'Donalsonville', |
3877
|
|
|
|
|
|
|
'Donegal', |
3878
|
|
|
|
|
|
|
'Dongola', |
3879
|
|
|
|
|
|
|
'Doniphan', |
3880
|
|
|
|
|
|
|
'Donna', |
3881
|
|
|
|
|
|
|
'Donnellson', |
3882
|
|
|
|
|
|
|
'Donnelly', |
3883
|
|
|
|
|
|
|
'Donnelsville', |
3884
|
|
|
|
|
|
|
'Donnybrook', |
3885
|
|
|
|
|
|
|
'Donora', |
3886
|
|
|
|
|
|
|
'Donovan', |
3887
|
|
|
|
|
|
|
'Dooling', |
3888
|
|
|
|
|
|
|
'Doolittle', |
3889
|
|
|
|
|
|
|
'Dooms', |
3890
|
|
|
|
|
|
|
'Doon', |
3891
|
|
|
|
|
|
|
'Dora', |
3892
|
|
|
|
|
|
|
'Dorado', |
3893
|
|
|
|
|
|
|
'Doral', |
3894
|
|
|
|
|
|
|
'Doran', |
3895
|
|
|
|
|
|
|
'Doraville', |
3896
|
|
|
|
|
|
|
'Dorchester', |
3897
|
|
|
|
|
|
|
'Dormont', |
3898
|
|
|
|
|
|
|
'Dorrance', |
3899
|
|
|
|
|
|
|
'Dorrington', |
3900
|
|
|
|
|
|
|
'Dorris', |
3901
|
|
|
|
|
|
|
'Dortches', |
3902
|
|
|
|
|
|
|
'Dos Palos', |
3903
|
|
|
|
|
|
|
'Dot Lake', |
3904
|
|
|
|
|
|
|
'Dot Lake Village', |
3905
|
|
|
|
|
|
|
'Dothan', |
3906
|
|
|
|
|
|
|
'Dotyville', |
3907
|
|
|
|
|
|
|
'Double Oak', |
3908
|
|
|
|
|
|
|
'Double Springs', |
3909
|
|
|
|
|
|
|
'Douds', |
3910
|
|
|
|
|
|
|
'Dougherty', |
3911
|
|
|
|
|
|
|
'Douglas', |
3912
|
|
|
|
|
|
|
'Douglass', |
3913
|
|
|
|
|
|
|
'Douglass Hills', |
3914
|
|
|
|
|
|
|
'Douglassville', |
3915
|
|
|
|
|
|
|
'Douglasville', |
3916
|
|
|
|
|
|
|
'Dousman', |
3917
|
|
|
|
|
|
|
'Dove Creek', |
3918
|
|
|
|
|
|
|
'Dover', |
3919
|
|
|
|
|
|
|
'Dover Base Housing', |
3920
|
|
|
|
|
|
|
'Dover Beaches North', |
3921
|
|
|
|
|
|
|
'Dover Beaches South', |
3922
|
|
|
|
|
|
|
'Dover Plains', |
3923
|
|
|
|
|
|
|
'Dover-Foxcroft', |
3924
|
|
|
|
|
|
|
'Dovray', |
3925
|
|
|
|
|
|
|
'Dow City', |
3926
|
|
|
|
|
|
|
'Dowagiac', |
3927
|
|
|
|
|
|
|
'Dowell', |
3928
|
|
|
|
|
|
|
'Dowelltown', |
3929
|
|
|
|
|
|
|
'Downers Grove', |
3930
|
|
|
|
|
|
|
'Downey', |
3931
|
|
|
|
|
|
|
'Downieville-Lawson-Dumont', |
3932
|
|
|
|
|
|
|
'Downing', |
3933
|
|
|
|
|
|
|
'Downingtown', |
3934
|
|
|
|
|
|
|
'Downs', |
3935
|
|
|
|
|
|
|
'Downsville', |
3936
|
|
|
|
|
|
|
'Dows', |
3937
|
|
|
|
|
|
|
'Doyle', |
3938
|
|
|
|
|
|
|
'Doylestown', |
3939
|
|
|
|
|
|
|
'Doyline', |
3940
|
|
|
|
|
|
|
'Dozier', |
3941
|
|
|
|
|
|
|
'Drain', |
3942
|
|
|
|
|
|
|
'Drake', |
3943
|
|
|
|
|
|
|
'Drakes Branch', |
3944
|
|
|
|
|
|
|
'Drakesboro', |
3945
|
|
|
|
|
|
|
'Drakesville', |
3946
|
|
|
|
|
|
|
'Draper', |
3947
|
|
|
|
|
|
|
'Dravosburg', |
3948
|
|
|
|
|
|
|
'Drayton', |
3949
|
|
|
|
|
|
|
'Dresden', |
3950
|
|
|
|
|
|
|
'Dresser', |
3951
|
|
|
|
|
|
|
'Drew', |
3952
|
|
|
|
|
|
|
'Drexel', |
3953
|
|
|
|
|
|
|
'Drexel Heights', |
3954
|
|
|
|
|
|
|
'Drexel Hill', |
3955
|
|
|
|
|
|
|
'Drexel-Alvernon', |
3956
|
|
|
|
|
|
|
'Driftwood', |
3957
|
|
|
|
|
|
|
'Driggs', |
3958
|
|
|
|
|
|
|
'Dripping Springs', |
3959
|
|
|
|
|
|
|
'Driscoll', |
3960
|
|
|
|
|
|
|
'Druid Hills', |
3961
|
|
|
|
|
|
|
'Drummond', |
3962
|
|
|
|
|
|
|
'Drumright', |
3963
|
|
|
|
|
|
|
'Dry Creek', |
3964
|
|
|
|
|
|
|
'Dry Prong', |
3965
|
|
|
|
|
|
|
'Dry Ridge', |
3966
|
|
|
|
|
|
|
'Dry Run', |
3967
|
|
|
|
|
|
|
'Dryden', |
3968
|
|
|
|
|
|
|
'Du Bois', |
3969
|
|
|
|
|
|
|
'Du Pont', |
3970
|
|
|
|
|
|
|
'Du Quoin', |
3971
|
|
|
|
|
|
|
'DuBois', |
3972
|
|
|
|
|
|
|
'DuPont', |
3973
|
|
|
|
|
|
|
'Duane Lake', |
3974
|
|
|
|
|
|
|
'Duanesburg', |
3975
|
|
|
|
|
|
|
'Duarte', |
3976
|
|
|
|
|
|
|
'Dubach', |
3977
|
|
|
|
|
|
|
'Dubberly', |
3978
|
|
|
|
|
|
|
'Dublin', |
3979
|
|
|
|
|
|
|
'Dubois', |
3980
|
|
|
|
|
|
|
'Duboistown', |
3981
|
|
|
|
|
|
|
'Dubuque', |
3982
|
|
|
|
|
|
|
'Duchesne', |
3983
|
|
|
|
|
|
|
'Duchess Landing', |
3984
|
|
|
|
|
|
|
'Duck Hill', |
3985
|
|
|
|
|
|
|
'Duck Key', |
3986
|
|
|
|
|
|
|
'Ducktown', |
3987
|
|
|
|
|
|
|
'Ducor', |
3988
|
|
|
|
|
|
|
'Dudley', |
3989
|
|
|
|
|
|
|
'Dudleyville', |
3990
|
|
|
|
|
|
|
'Due West', |
3991
|
|
|
|
|
|
|
'Duenweg', |
3992
|
|
|
|
|
|
|
'Duffield', |
3993
|
|
|
|
|
|
|
'Dufur', |
3994
|
|
|
|
|
|
|
'Dugger', |
3995
|
|
|
|
|
|
|
'Dugway', |
3996
|
|
|
|
|
|
|
'Dulac', |
3997
|
|
|
|
|
|
|
'Dulce', |
3998
|
|
|
|
|
|
|
'Duluth', |
3999
|
|
|
|
|
|
|
'Dumas', |
4000
|
|
|
|
|
|
|
'Dumbarton', |
4001
|
|
|
|
|
|
|
'Dumfries', |
4002
|
|
|
|
|
|
|
'Dumont', |
4003
|
|
|
|
|
|
|
'Dunbar', |
4004
|
|
|
|
|
|
|
'Duncan', |
4005
|
|
|
|
|
|
|
'Duncannon', |
4006
|
|
|
|
|
|
|
'Duncansville', |
4007
|
|
|
|
|
|
|
'Duncanville', |
4008
|
|
|
|
|
|
|
'Duncombe', |
4009
|
|
|
|
|
|
|
'Dundalk', |
4010
|
|
|
|
|
|
|
'Dundarrach', |
4011
|
|
|
|
|
|
|
'Dundas', |
4012
|
|
|
|
|
|
|
'Dundee', |
4013
|
|
|
|
|
|
|
'Dune Acres', |
4014
|
|
|
|
|
|
|
'Dunean', |
4015
|
|
|
|
|
|
|
'Dunedin', |
4016
|
|
|
|
|
|
|
'Dunellen', |
4017
|
|
|
|
|
|
|
'Dunes City', |
4018
|
|
|
|
|
|
|
'Dunes Road', |
4019
|
|
|
|
|
|
|
'Dunfermline', |
4020
|
|
|
|
|
|
|
'Dungannon', |
4021
|
|
|
|
|
|
|
'Dunkerton', |
4022
|
|
|
|
|
|
|
'Dunkirk', |
4023
|
|
|
|
|
|
|
'Dunlap', |
4024
|
|
|
|
|
|
|
'Dunlevy', |
4025
|
|
|
|
|
|
|
'Dunmore', |
4026
|
|
|
|
|
|
|
'Dunn', |
4027
|
|
|
|
|
|
|
'Dunn Center', |
4028
|
|
|
|
|
|
|
'Dunn Loring', |
4029
|
|
|
|
|
|
|
'Dunnell', |
4030
|
|
|
|
|
|
|
'Dunnellon', |
4031
|
|
|
|
|
|
|
'Dunning', |
4032
|
|
|
|
|
|
|
'Dunnstown', |
4033
|
|
|
|
|
|
|
'Dunreith', |
4034
|
|
|
|
|
|
|
'Dunseith', |
4035
|
|
|
|
|
|
|
'Dunsmuir', |
4036
|
|
|
|
|
|
|
'Dunwoody', |
4037
|
|
|
|
|
|
|
'Dupo', |
4038
|
|
|
|
|
|
|
'Dupont', |
4039
|
|
|
|
|
|
|
'Dupree', |
4040
|
|
|
|
|
|
|
'Duque', |
4041
|
|
|
|
|
|
|
'Duquesne', |
4042
|
|
|
|
|
|
|
'Durand', |
4043
|
|
|
|
|
|
|
'Durango', |
4044
|
|
|
|
|
|
|
'Durant', |
4045
|
|
|
|
|
|
|
'Durbin', |
4046
|
|
|
|
|
|
|
'Durham', |
4047
|
|
|
|
|
|
|
'Duryea', |
4048
|
|
|
|
|
|
|
'Dushore', |
4049
|
|
|
|
|
|
|
'Duson', |
4050
|
|
|
|
|
|
|
'Dustin', |
4051
|
|
|
|
|
|
|
'Dustin Acres', |
4052
|
|
|
|
|
|
|
'Dutchtown', |
4053
|
|
|
|
|
|
|
'Dutton', |
4054
|
|
|
|
|
|
|
'Duvall', |
4055
|
|
|
|
|
|
|
'Duxbury', |
4056
|
|
|
|
|
|
|
'Dwight', |
4057
|
|
|
|
|
|
|
'Dwight Mission', |
4058
|
|
|
|
|
|
|
'Dycusburg', |
4059
|
|
|
|
|
|
|
'Dyer', |
4060
|
|
|
|
|
|
|
'Dyersburg', |
4061
|
|
|
|
|
|
|
'Dyersville', |
4062
|
|
|
|
|
|
|
'Dyess', |
4063
|
|
|
|
|
|
|
'Dysart', |
4064
|
|
|
|
|
|
|
'Eads', |
4065
|
|
|
|
|
|
|
'Eagan', |
4066
|
|
|
|
|
|
|
'Eagar', |
4067
|
|
|
|
|
|
|
'Eagarville', |
4068
|
|
|
|
|
|
|
'Eagle', |
4069
|
|
|
|
|
|
|
'Eagle Bend', |
4070
|
|
|
|
|
|
|
'Eagle Butte', |
4071
|
|
|
|
|
|
|
'Eagle Grove', |
4072
|
|
|
|
|
|
|
'Eagle Harbor', |
4073
|
|
|
|
|
|
|
'Eagle Lake', |
4074
|
|
|
|
|
|
|
'Eagle Mountain', |
4075
|
|
|
|
|
|
|
'Eagle Nest', |
4076
|
|
|
|
|
|
|
'Eagle Pass', |
4077
|
|
|
|
|
|
|
'Eagle Point', |
4078
|
|
|
|
|
|
|
'Eagle River', |
4079
|
|
|
|
|
|
|
'Eagle Village', |
4080
|
|
|
|
|
|
|
'Eagle-Vail', |
4081
|
|
|
|
|
|
|
'Eagles Mere', |
4082
|
|
|
|
|
|
|
'Eagleton Village', |
4083
|
|
|
|
|
|
|
'Eagleville', |
4084
|
|
|
|
|
|
|
'Eakly', |
4085
|
|
|
|
|
|
|
'Earl', |
4086
|
|
|
|
|
|
|
'Earl Park', |
4087
|
|
|
|
|
|
|
'Earle', |
4088
|
|
|
|
|
|
|
'Earlham', |
4089
|
|
|
|
|
|
|
'Earlimart', |
4090
|
|
|
|
|
|
|
'Earling', |
4091
|
|
|
|
|
|
|
'Earlington', |
4092
|
|
|
|
|
|
|
'Earlsboro', |
4093
|
|
|
|
|
|
|
'Earlton', |
4094
|
|
|
|
|
|
|
'Earlville', |
4095
|
|
|
|
|
|
|
'Early', |
4096
|
|
|
|
|
|
|
'Earth', |
4097
|
|
|
|
|
|
|
'Easley', |
4098
|
|
|
|
|
|
|
'East Alton', |
4099
|
|
|
|
|
|
|
'East Arcadia', |
4100
|
|
|
|
|
|
|
'East Atlantic Beach', |
4101
|
|
|
|
|
|
|
'East Aurora', |
4102
|
|
|
|
|
|
|
'East Bangor', |
4103
|
|
|
|
|
|
|
'East Bank', |
4104
|
|
|
|
|
|
|
'East Bend', |
4105
|
|
|
|
|
|
|
'East Berlin', |
4106
|
|
|
|
|
|
|
'East Bernard', |
4107
|
|
|
|
|
|
|
'East Bernstadt', |
4108
|
|
|
|
|
|
|
'East Berwick', |
4109
|
|
|
|
|
|
|
'East Bethel', |
4110
|
|
|
|
|
|
|
'East Blythe', |
4111
|
|
|
|
|
|
|
'East Brady', |
4112
|
|
|
|
|
|
|
'East Brainerd', |
4113
|
|
|
|
|
|
|
'East Brewton', |
4114
|
|
|
|
|
|
|
'East Bronson', |
4115
|
|
|
|
|
|
|
'East Brookfield', |
4116
|
|
|
|
|
|
|
'East Brooklyn', |
4117
|
|
|
|
|
|
|
'East Brunswick', |
4118
|
|
|
|
|
|
|
'East Butler', |
4119
|
|
|
|
|
|
|
'East Camden', |
4120
|
|
|
|
|
|
|
'East Canton', |
4121
|
|
|
|
|
|
|
'East Cape Girardeau', |
4122
|
|
|
|
|
|
|
'East Carbon', |
4123
|
|
|
|
|
|
|
'East Carondelet', |
4124
|
|
|
|
|
|
|
'East Cathlamet', |
4125
|
|
|
|
|
|
|
'East Chicago', |
4126
|
|
|
|
|
|
|
'East Cleveland', |
4127
|
|
|
|
|
|
|
'East Compton', |
4128
|
|
|
|
|
|
|
'East Conemaugh', |
4129
|
|
|
|
|
|
|
'East Dennis', |
4130
|
|
|
|
|
|
|
'East Douglas', |
4131
|
|
|
|
|
|
|
'East Dublin', |
4132
|
|
|
|
|
|
|
'East Dubuque', |
4133
|
|
|
|
|
|
|
'East Duke', |
4134
|
|
|
|
|
|
|
'East Dunbar', |
4135
|
|
|
|
|
|
|
'East Dundee', |
4136
|
|
|
|
|
|
|
'East Dunseith', |
4137
|
|
|
|
|
|
|
'East Ellijay', |
4138
|
|
|
|
|
|
|
'East End', |
4139
|
|
|
|
|
|
|
'East Falmouth', |
4140
|
|
|
|
|
|
|
'East Farmingdale', |
4141
|
|
|
|
|
|
|
'East Flat Rock', |
4142
|
|
|
|
|
|
|
'East Foothills', |
4143
|
|
|
|
|
|
|
'East Fork', |
4144
|
|
|
|
|
|
|
'East Freehold', |
4145
|
|
|
|
|
|
|
'East Gaffney', |
4146
|
|
|
|
|
|
|
'East Galesburg', |
4147
|
|
|
|
|
|
|
'East Garden City', |
4148
|
|
|
|
|
|
|
'East Germantown', |
4149
|
|
|
|
|
|
|
'East Gillespie', |
4150
|
|
|
|
|
|
|
'East Glacier Park Village', |
4151
|
|
|
|
|
|
|
'East Glenville', |
4152
|
|
|
|
|
|
|
'East Grand Forks', |
4153
|
|
|
|
|
|
|
'East Grand Rapids', |
4154
|
|
|
|
|
|
|
'East Greenbush', |
4155
|
|
|
|
|
|
|
'East Greenville', |
4156
|
|
|
|
|
|
|
'East Griffin', |
4157
|
|
|
|
|
|
|
'East Gull Lake', |
4158
|
|
|
|
|
|
|
'East Hampton', |
4159
|
|
|
|
|
|
|
'East Hampton North', |
4160
|
|
|
|
|
|
|
'East Hartford', |
4161
|
|
|
|
|
|
|
'East Harwich', |
4162
|
|
|
|
|
|
|
'East Haven', |
4163
|
|
|
|
|
|
|
'East Hazel Crest', |
4164
|
|
|
|
|
|
|
'East Helena', |
4165
|
|
|
|
|
|
|
'East Hemet', |
4166
|
|
|
|
|
|
|
'East Highland Park', |
4167
|
|
|
|
|
|
|
'East Hill-Meridian', |
4168
|
|
|
|
|
|
|
'East Hills', |
4169
|
|
|
|
|
|
|
'East Hodge', |
4170
|
|
|
|
|
|
|
'East Hope', |
4171
|
|
|
|
|
|
|
'East Islip', |
4172
|
|
|
|
|
|
|
'East Ithaca', |
4173
|
|
|
|
|
|
|
'East Jordan', |
4174
|
|
|
|
|
|
|
'East Kingston', |
4175
|
|
|
|
|
|
|
'East La Mirada', |
4176
|
|
|
|
|
|
|
'East Lake', |
4177
|
|
|
|
|
|
|
'East Lake-Orient Park', |
4178
|
|
|
|
|
|
|
'East Lansdowne', |
4179
|
|
|
|
|
|
|
'East Lansing', |
4180
|
|
|
|
|
|
|
'East Laurinburg', |
4181
|
|
|
|
|
|
|
'East Liverpool', |
4182
|
|
|
|
|
|
|
'East Los Angeles', |
4183
|
|
|
|
|
|
|
'East Lynne', |
4184
|
|
|
|
|
|
|
'East Marion', |
4185
|
|
|
|
|
|
|
'East Massapequa', |
4186
|
|
|
|
|
|
|
'East McKeesport', |
4187
|
|
|
|
|
|
|
'East Meadow', |
4188
|
|
|
|
|
|
|
'East Merrimack', |
4189
|
|
|
|
|
|
|
'East Millcreek', |
4190
|
|
|
|
|
|
|
'East Millinocket', |
4191
|
|
|
|
|
|
|
'East Missoula', |
4192
|
|
|
|
|
|
|
'East Moline', |
4193
|
|
|
|
|
|
|
'East Moriches', |
4194
|
|
|
|
|
|
|
'East Mountain', |
4195
|
|
|
|
|
|
|
'East Nassau', |
4196
|
|
|
|
|
|
|
'East New Market', |
4197
|
|
|
|
|
|
|
'East Newark', |
4198
|
|
|
|
|
|
|
'East Newnan', |
4199
|
|
|
|
|
|
|
'East Norriton', |
4200
|
|
|
|
|
|
|
'East Northport', |
4201
|
|
|
|
|
|
|
'East Norwich', |
4202
|
|
|
|
|
|
|
'East Oakdale', |
4203
|
|
|
|
|
|
|
'East Orange', |
4204
|
|
|
|
|
|
|
'East Orosi', |
4205
|
|
|
|
|
|
|
'East Palatka', |
4206
|
|
|
|
|
|
|
'East Palestine', |
4207
|
|
|
|
|
|
|
'East Palo Alto', |
4208
|
|
|
|
|
|
|
'East Pasadena', |
4209
|
|
|
|
|
|
|
'East Patchogue', |
4210
|
|
|
|
|
|
|
'East Peoria', |
4211
|
|
|
|
|
|
|
'East Pepperell', |
4212
|
|
|
|
|
|
|
'East Perrine', |
4213
|
|
|
|
|
|
|
'East Peru', |
4214
|
|
|
|
|
|
|
'East Petersburg', |
4215
|
|
|
|
|
|
|
'East Pittsburgh', |
4216
|
|
|
|
|
|
|
'East Pleasant View', |
4217
|
|
|
|
|
|
|
'East Point', |
4218
|
|
|
|
|
|
|
'East Port Orchard', |
4219
|
|
|
|
|
|
|
'East Porterville', |
4220
|
|
|
|
|
|
|
'East Prairie', |
4221
|
|
|
|
|
|
|
'East Prospect', |
4222
|
|
|
|
|
|
|
'East Providence', |
4223
|
|
|
|
|
|
|
'East Quincy', |
4224
|
|
|
|
|
|
|
'East Quogue', |
4225
|
|
|
|
|
|
|
'East Randolph', |
4226
|
|
|
|
|
|
|
'East Renton Highlands', |
4227
|
|
|
|
|
|
|
'East Richmond Heights', |
4228
|
|
|
|
|
|
|
'East Ridge', |
4229
|
|
|
|
|
|
|
'East Riverdale', |
4230
|
|
|
|
|
|
|
'East Rochester', |
4231
|
|
|
|
|
|
|
'East Rockaway', |
4232
|
|
|
|
|
|
|
'East Rockingham', |
4233
|
|
|
|
|
|
|
'East Rutherford', |
4234
|
|
|
|
|
|
|
'East Sahuarita', |
4235
|
|
|
|
|
|
|
'East San Gabriel', |
4236
|
|
|
|
|
|
|
'East Sandwich', |
4237
|
|
|
|
|
|
|
'East Shore', |
4238
|
|
|
|
|
|
|
'East Shoreham', |
4239
|
|
|
|
|
|
|
'East Side', |
4240
|
|
|
|
|
|
|
'East Sonora', |
4241
|
|
|
|
|
|
|
'East Sparta', |
4242
|
|
|
|
|
|
|
'East Spencer', |
4243
|
|
|
|
|
|
|
'East St. Louis', |
4244
|
|
|
|
|
|
|
'East Stroudsburg', |
4245
|
|
|
|
|
|
|
'East Sumter', |
4246
|
|
|
|
|
|
|
'East Syracuse', |
4247
|
|
|
|
|
|
|
'East Tawakoni', |
4248
|
|
|
|
|
|
|
'East Tawas', |
4249
|
|
|
|
|
|
|
'East Thermopolis', |
4250
|
|
|
|
|
|
|
'East Troy', |
4251
|
|
|
|
|
|
|
'East Uniontown', |
4252
|
|
|
|
|
|
|
'East Vandergrift', |
4253
|
|
|
|
|
|
|
'East Washington', |
4254
|
|
|
|
|
|
|
'East Wenatchee', |
4255
|
|
|
|
|
|
|
'East Wenatchee Bench', |
4256
|
|
|
|
|
|
|
'East Williston', |
4257
|
|
|
|
|
|
|
'East York', |
4258
|
|
|
|
|
|
|
'Eastborough', |
4259
|
|
|
|
|
|
|
'Eastchester', |
4260
|
|
|
|
|
|
|
'Eastgate', |
4261
|
|
|
|
|
|
|
'Easthampton', |
4262
|
|
|
|
|
|
|
'Eastlake', |
4263
|
|
|
|
|
|
|
'Eastland', |
4264
|
|
|
|
|
|
|
'Eastlawn Gardens', |
4265
|
|
|
|
|
|
|
'Eastman', |
4266
|
|
|
|
|
|
|
'Easton', |
4267
|
|
|
|
|
|
|
'Eastover', |
4268
|
|
|
|
|
|
|
'Eastpoint', |
4269
|
|
|
|
|
|
|
'Eastpointe', |
4270
|
|
|
|
|
|
|
'Eastport', |
4271
|
|
|
|
|
|
|
'Eastvale', |
4272
|
|
|
|
|
|
|
'Eastview', |
4273
|
|
|
|
|
|
|
'Eastville', |
4274
|
|
|
|
|
|
|
'Eastwood', |
4275
|
|
|
|
|
|
|
'Eaton', |
4276
|
|
|
|
|
|
|
'Eaton Estates', |
4277
|
|
|
|
|
|
|
'Eaton Rapids', |
4278
|
|
|
|
|
|
|
'Eatons Neck', |
4279
|
|
|
|
|
|
|
'Eatonton', |
4280
|
|
|
|
|
|
|
'Eatontown', |
4281
|
|
|
|
|
|
|
'Eatonville', |
4282
|
|
|
|
|
|
|
'Eau Claire', |
4283
|
|
|
|
|
|
|
'Ebensburg', |
4284
|
|
|
|
|
|
|
'Ebro', |
4285
|
|
|
|
|
|
|
'Echelon', |
4286
|
|
|
|
|
|
|
'Echo', |
4287
|
|
|
|
|
|
|
'Echo Lake', |
4288
|
|
|
|
|
|
|
'Eckley', |
4289
|
|
|
|
|
|
|
'Eclectic', |
4290
|
|
|
|
|
|
|
'Economy', |
4291
|
|
|
|
|
|
|
'Ecorse', |
4292
|
|
|
|
|
|
|
'Ecru', |
4293
|
|
|
|
|
|
|
'Ector', |
4294
|
|
|
|
|
|
|
'Edcouch', |
4295
|
|
|
|
|
|
|
'Eddystone', |
4296
|
|
|
|
|
|
|
'Eddyville', |
4297
|
|
|
|
|
|
|
'Eden', |
4298
|
|
|
|
|
|
|
'Eden Isle', |
4299
|
|
|
|
|
|
|
'Eden Prairie', |
4300
|
|
|
|
|
|
|
'Eden Roc', |
4301
|
|
|
|
|
|
|
'Eden Valley', |
4302
|
|
|
|
|
|
|
'Edenton', |
4303
|
|
|
|
|
|
|
'Edgar', |
4304
|
|
|
|
|
|
|
'Edgar Springs', |
4305
|
|
|
|
|
|
|
'Edgard', |
4306
|
|
|
|
|
|
|
'Edge Hill', |
4307
|
|
|
|
|
|
|
'Edgecliff Village', |
4308
|
|
|
|
|
|
|
'Edgefield', |
4309
|
|
|
|
|
|
|
'Edgeley', |
4310
|
|
|
|
|
|
|
'Edgemere', |
4311
|
|
|
|
|
|
|
'Edgemont', |
4312
|
|
|
|
|
|
|
'Edgemont Park', |
4313
|
|
|
|
|
|
|
'Edgemoor', |
4314
|
|
|
|
|
|
|
'Edgerton', |
4315
|
|
|
|
|
|
|
'Edgewater', |
4316
|
|
|
|
|
|
|
'Edgewater-Paisano', |
4317
|
|
|
|
|
|
|
'Edgewood', |
4318
|
|
|
|
|
|
|
'Edgeworth', |
4319
|
|
|
|
|
|
|
'Edina', |
4320
|
|
|
|
|
|
|
'Edinboro', |
4321
|
|
|
|
|
|
|
'Edinburg', |
4322
|
|
|
|
|
|
|
'Edinburgh', |
4323
|
|
|
|
|
|
|
'Edison', |
4324
|
|
|
|
|
|
|
'Edisto', |
4325
|
|
|
|
|
|
|
'Edisto Beach', |
4326
|
|
|
|
|
|
|
'Edmond', |
4327
|
|
|
|
|
|
|
'Edmonds', |
4328
|
|
|
|
|
|
|
'Edmondson', |
4329
|
|
|
|
|
|
|
'Edmonson', |
4330
|
|
|
|
|
|
|
'Edmonston', |
4331
|
|
|
|
|
|
|
'Edmonton', |
4332
|
|
|
|
|
|
|
'Edmore', |
4333
|
|
|
|
|
|
|
'Edmundson', |
4334
|
|
|
|
|
|
|
'Edna', |
4335
|
|
|
|
|
|
|
'Edna Bay', |
4336
|
|
|
|
|
|
|
'Edom', |
4337
|
|
|
|
|
|
|
'Edon', |
4338
|
|
|
|
|
|
|
'Edroy', |
4339
|
|
|
|
|
|
|
'Edwards', |
4340
|
|
|
|
|
|
|
'Edwards AFB', |
4341
|
|
|
|
|
|
|
'Edwardsburg', |
4342
|
|
|
|
|
|
|
'Edwardsport', |
4343
|
|
|
|
|
|
|
'Edwardsville', |
4344
|
|
|
|
|
|
|
'Eek', |
4345
|
|
|
|
|
|
|
'Effie', |
4346
|
|
|
|
|
|
|
'Effingham', |
4347
|
|
|
|
|
|
|
'Egan', |
4348
|
|
|
|
|
|
|
'Egegik', |
4349
|
|
|
|
|
|
|
'Egeland', |
4350
|
|
|
|
|
|
|
'Egg Harbor', |
4351
|
|
|
|
|
|
|
'Egg Harbor City', |
4352
|
|
|
|
|
|
|
'Eglin AFB', |
4353
|
|
|
|
|
|
|
'Egypt', |
4354
|
|
|
|
|
|
|
'Egypt Lake-Leto', |
4355
|
|
|
|
|
|
|
'Ehrenberg', |
4356
|
|
|
|
|
|
|
'Ehrenfeld', |
4357
|
|
|
|
|
|
|
'Ehrhardt', |
4358
|
|
|
|
|
|
|
'Eidson Road', |
4359
|
|
|
|
|
|
|
'Eielson AFB', |
4360
|
|
|
|
|
|
|
'Eitzen', |
4361
|
|
|
|
|
|
|
'Ekalaka', |
4362
|
|
|
|
|
|
|
'Ekron', |
4363
|
|
|
|
|
|
|
'Ekwok', |
4364
|
|
|
|
|
|
|
'El Cajon', |
4365
|
|
|
|
|
|
|
'El Camino Angosto', |
4366
|
|
|
|
|
|
|
'El Campo', |
4367
|
|
|
|
|
|
|
'El Cenizo', |
4368
|
|
|
|
|
|
|
'El Centro', |
4369
|
|
|
|
|
|
|
'El Cerrito', |
4370
|
|
|
|
|
|
|
'El Cerro-Monterey Park', |
4371
|
|
|
|
|
|
|
'El Dara', |
4372
|
|
|
|
|
|
|
'El Dorado', |
4373
|
|
|
|
|
|
|
'El Dorado Hills', |
4374
|
|
|
|
|
|
|
'El Dorado Springs', |
4375
|
|
|
|
|
|
|
'El Granada', |
4376
|
|
|
|
|
|
|
'El Indio', |
4377
|
|
|
|
|
|
|
'El Jebel', |
4378
|
|
|
|
|
|
|
'El Lago', |
4379
|
|
|
|
|
|
|
'El Mangó', |
4380
|
|
|
|
|
|
|
'El Mirage', |
4381
|
|
|
|
|
|
|
'El Monte', |
4382
|
|
|
|
|
|
|
'El Negro', |
4383
|
|
|
|
|
|
|
'El Ojo', |
4384
|
|
|
|
|
|
|
'El Paso', |
4385
|
|
|
|
|
|
|
'El Paso de Robles (Paso Robles)', |
4386
|
|
|
|
|
|
|
'El Portal', |
4387
|
|
|
|
|
|
|
'El Rancho', |
4388
|
|
|
|
|
|
|
'El Refugio', |
4389
|
|
|
|
|
|
|
'El Reno', |
4390
|
|
|
|
|
|
|
'El Rio', |
4391
|
|
|
|
|
|
|
'El Segundo', |
4392
|
|
|
|
|
|
|
'El Sobrante', |
4393
|
|
|
|
|
|
|
'El Valle de Arroyo Seco', |
4394
|
|
|
|
|
|
|
'El Verano', |
4395
|
|
|
|
|
|
|
'Elaine', |
4396
|
|
|
|
|
|
|
'Eland', |
4397
|
|
|
|
|
|
|
'Elba', |
4398
|
|
|
|
|
|
|
'Elbe', |
4399
|
|
|
|
|
|
|
'Elberfeld', |
4400
|
|
|
|
|
|
|
'Elberon', |
4401
|
|
|
|
|
|
|
'Elbert', |
4402
|
|
|
|
|
|
|
'Elberta', |
4403
|
|
|
|
|
|
|
'Elberton', |
4404
|
|
|
|
|
|
|
'Elbing', |
4405
|
|
|
|
|
|
|
'Elbow Lake', |
4406
|
|
|
|
|
|
|
'Elbridge', |
4407
|
|
|
|
|
|
|
'Elburn', |
4408
|
|
|
|
|
|
|
'Elco', |
4409
|
|
|
|
|
|
|
'Elderon', |
4410
|
|
|
|
|
|
|
'Eldersburg', |
4411
|
|
|
|
|
|
|
'Elderton', |
4412
|
|
|
|
|
|
|
'Eldon', |
4413
|
|
|
|
|
|
|
'Eldora', |
4414
|
|
|
|
|
|
|
'Eldorado', |
4415
|
|
|
|
|
|
|
'Eldorado Springs', |
4416
|
|
|
|
|
|
|
'Eldorado at Santa Fe', |
4417
|
|
|
|
|
|
|
'Eldred', |
4418
|
|
|
|
|
|
|
'Eldridge', |
4419
|
|
|
|
|
|
|
'Eleanor', |
4420
|
|
|
|
|
|
|
'Electra', |
4421
|
|
|
|
|
|
|
'Electric City', |
4422
|
|
|
|
|
|
|
'Eleele', |
4423
|
|
|
|
|
|
|
'Elephant Butte', |
4424
|
|
|
|
|
|
|
'Eleva', |
4425
|
|
|
|
|
|
|
'Elfers', |
4426
|
|
|
|
|
|
|
'Elfin Cove', |
4427
|
|
|
|
|
|
|
'Elgin', |
4428
|
|
|
|
|
|
|
'Elida', |
4429
|
|
|
|
|
|
|
'Elim', |
4430
|
|
|
|
|
|
|
'Elizabeth', |
4431
|
|
|
|
|
|
|
'Elizabeth City', |
4432
|
|
|
|
|
|
|
'Elizabethton', |
4433
|
|
|
|
|
|
|
'Elizabethtown', |
4434
|
|
|
|
|
|
|
'Elizabethville', |
4435
|
|
|
|
|
|
|
'Elk City', |
4436
|
|
|
|
|
|
|
'Elk Creek', |
4437
|
|
|
|
|
|
|
'Elk Falls', |
4438
|
|
|
|
|
|
|
'Elk Garden', |
4439
|
|
|
|
|
|
|
'Elk Grove', |
4440
|
|
|
|
|
|
|
'Elk Grove Village', |
4441
|
|
|
|
|
|
|
'Elk Horn', |
4442
|
|
|
|
|
|
|
'Elk Mound', |
4443
|
|
|
|
|
|
|
'Elk Mountain', |
4444
|
|
|
|
|
|
|
'Elk Park', |
4445
|
|
|
|
|
|
|
'Elk Plain', |
4446
|
|
|
|
|
|
|
'Elk Point', |
4447
|
|
|
|
|
|
|
'Elk Rapids', |
4448
|
|
|
|
|
|
|
'Elk Ridge', |
4449
|
|
|
|
|
|
|
'Elk River', |
4450
|
|
|
|
|
|
|
'Elk Run Heights', |
4451
|
|
|
|
|
|
|
'Elkader', |
4452
|
|
|
|
|
|
|
'Elkhart', |
4453
|
|
|
|
|
|
|
'Elkhart Lake', |
4454
|
|
|
|
|
|
|
'Elkhorn', |
4455
|
|
|
|
|
|
|
'Elkhorn City', |
4456
|
|
|
|
|
|
|
'Elkin', |
4457
|
|
|
|
|
|
|
'Elkins', |
4458
|
|
|
|
|
|
|
'Elkland', |
4459
|
|
|
|
|
|
|
'Elkmont', |
4460
|
|
|
|
|
|
|
'Elko', |
4461
|
|
|
|
|
|
|
'Elkport', |
4462
|
|
|
|
|
|
|
'Elkridge', |
4463
|
|
|
|
|
|
|
'Elkton', |
4464
|
|
|
|
|
|
|
'Elkview', |
4465
|
|
|
|
|
|
|
'Elkville', |
4466
|
|
|
|
|
|
|
'Ellaville', |
4467
|
|
|
|
|
|
|
'Ellenboro', |
4468
|
|
|
|
|
|
|
'Ellendale', |
4469
|
|
|
|
|
|
|
'Ellensburg', |
4470
|
|
|
|
|
|
|
'Ellenton', |
4471
|
|
|
|
|
|
|
'Ellenville', |
4472
|
|
|
|
|
|
|
'Ellerbe', |
4473
|
|
|
|
|
|
|
'Ellettsville', |
4474
|
|
|
|
|
|
|
'Ellicott City', |
4475
|
|
|
|
|
|
|
'Ellicottville', |
4476
|
|
|
|
|
|
|
'Ellijay', |
4477
|
|
|
|
|
|
|
'Ellington', |
4478
|
|
|
|
|
|
|
'Ellinwood', |
4479
|
|
|
|
|
|
|
'Elliott', |
4480
|
|
|
|
|
|
|
'Ellis', |
4481
|
|
|
|
|
|
|
'Ellis Grove', |
4482
|
|
|
|
|
|
|
'Ellisburg', |
4483
|
|
|
|
|
|
|
'Elliston', |
4484
|
|
|
|
|
|
|
'Elliston-Lafayette', |
4485
|
|
|
|
|
|
|
'Ellisville', |
4486
|
|
|
|
|
|
|
'Elloree', |
4487
|
|
|
|
|
|
|
'Ellport', |
4488
|
|
|
|
|
|
|
'Ellsinore', |
4489
|
|
|
|
|
|
|
'Ellston', |
4490
|
|
|
|
|
|
|
'Ellsworth', |
4491
|
|
|
|
|
|
|
'Ellsworth AFB', |
4492
|
|
|
|
|
|
|
'Ellwood City', |
4493
|
|
|
|
|
|
|
'Elm City', |
4494
|
|
|
|
|
|
|
'Elm Creek', |
4495
|
|
|
|
|
|
|
'Elm Grove', |
4496
|
|
|
|
|
|
|
'Elm Springs', |
4497
|
|
|
|
|
|
|
'Elma', |
4498
|
|
|
|
|
|
|
'Elma Center', |
4499
|
|
|
|
|
|
|
'Elmdale', |
4500
|
|
|
|
|
|
|
'Elmendorf', |
4501
|
|
|
|
|
|
|
'Elmer', |
4502
|
|
|
|
|
|
|
'Elmer City', |
4503
|
|
|
|
|
|
|
'Elmhurst', |
4504
|
|
|
|
|
|
|
'Elmira', |
4505
|
|
|
|
|
|
|
'Elmira Heights', |
4506
|
|
|
|
|
|
|
'Elmo', |
4507
|
|
|
|
|
|
|
'Elmont', |
4508
|
|
|
|
|
|
|
'Elmore', |
4509
|
|
|
|
|
|
|
'Elmore City', |
4510
|
|
|
|
|
|
|
'Elmsford', |
4511
|
|
|
|
|
|
|
'Elmwood', |
4512
|
|
|
|
|
|
|
'Elmwood Park', |
4513
|
|
|
|
|
|
|
'Elmwood Place', |
4514
|
|
|
|
|
|
|
'Elnora', |
4515
|
|
|
|
|
|
|
'Elon College', |
4516
|
|
|
|
|
|
|
'Eloy', |
4517
|
|
|
|
|
|
|
'Elrod', |
4518
|
|
|
|
|
|
|
'Elrosa', |
4519
|
|
|
|
|
|
|
'Elroy', |
4520
|
|
|
|
|
|
|
'Elsa', |
4521
|
|
|
|
|
|
|
'Elsah', |
4522
|
|
|
|
|
|
|
'Elsberry', |
4523
|
|
|
|
|
|
|
'Elsie', |
4524
|
|
|
|
|
|
|
'Elsinore', |
4525
|
|
|
|
|
|
|
'Elsmere', |
4526
|
|
|
|
|
|
|
'Elsmore', |
4527
|
|
|
|
|
|
|
'Elton', |
4528
|
|
|
|
|
|
|
'Elvaston', |
4529
|
|
|
|
|
|
|
'Elverson', |
4530
|
|
|
|
|
|
|
'Elwood', |
4531
|
|
|
|
|
|
|
'Elwood-Magnolia', |
4532
|
|
|
|
|
|
|
'Ely', |
4533
|
|
|
|
|
|
|
'Elyria', |
4534
|
|
|
|
|
|
|
'Elysburg', |
4535
|
|
|
|
|
|
|
'Elysian', |
4536
|
|
|
|
|
|
|
'Emajagua', |
4537
|
|
|
|
|
|
|
'Embarrass', |
4538
|
|
|
|
|
|
|
'Emden', |
4539
|
|
|
|
|
|
|
'Emelle', |
4540
|
|
|
|
|
|
|
'Emerado', |
4541
|
|
|
|
|
|
|
'Emerald Beach', |
4542
|
|
|
|
|
|
|
'Emerald Isle', |
4543
|
|
|
|
|
|
|
'Emerald Lake Hills', |
4544
|
|
|
|
|
|
|
'Emerson', |
4545
|
|
|
|
|
|
|
'Emery', |
4546
|
|
|
|
|
|
|
'Emeryville', |
4547
|
|
|
|
|
|
|
'Emhouse', |
4548
|
|
|
|
|
|
|
'Emigsville', |
4549
|
|
|
|
|
|
|
'Emily', |
4550
|
|
|
|
|
|
|
'Eminence', |
4551
|
|
|
|
|
|
|
'Emington', |
4552
|
|
|
|
|
|
|
'Emlenton', |
4553
|
|
|
|
|
|
|
'Emma', |
4554
|
|
|
|
|
|
|
'Emmaus', |
4555
|
|
|
|
|
|
|
'Emmet', |
4556
|
|
|
|
|
|
|
'Emmetsburg', |
4557
|
|
|
|
|
|
|
'Emmett', |
4558
|
|
|
|
|
|
|
'Emmitsburg', |
4559
|
|
|
|
|
|
|
'Emmonak', |
4560
|
|
|
|
|
|
|
'Emmons', |
4561
|
|
|
|
|
|
|
'Emory', |
4562
|
|
|
|
|
|
|
'Emory-Meadow View', |
4563
|
|
|
|
|
|
|
'Empire', |
4564
|
|
|
|
|
|
|
'Empire City', |
4565
|
|
|
|
|
|
|
'Emporia', |
4566
|
|
|
|
|
|
|
'Emporium', |
4567
|
|
|
|
|
|
|
'Emsworth', |
4568
|
|
|
|
|
|
|
'Encantada-Ranchito El Calaboz', |
4569
|
|
|
|
|
|
|
'Enchanted Oaks', |
4570
|
|
|
|
|
|
|
'Encinal', |
4571
|
|
|
|
|
|
|
'Encinitas', |
4572
|
|
|
|
|
|
|
'Encino', |
4573
|
|
|
|
|
|
|
'Endeavor', |
4574
|
|
|
|
|
|
|
'Enderlin', |
4575
|
|
|
|
|
|
|
'Endicott', |
4576
|
|
|
|
|
|
|
'Endwell', |
4577
|
|
|
|
|
|
|
'Energy', |
4578
|
|
|
|
|
|
|
'Enfield', |
4579
|
|
|
|
|
|
|
'England', |
4580
|
|
|
|
|
|
|
'Englewood', |
4581
|
|
|
|
|
|
|
'Englewood Cliffs', |
4582
|
|
|
|
|
|
|
'English', |
4583
|
|
|
|
|
|
|
'Englishtown', |
4584
|
|
|
|
|
|
|
'Enid', |
4585
|
|
|
|
|
|
|
'Enigma', |
4586
|
|
|
|
|
|
|
'Ennis', |
4587
|
|
|
|
|
|
|
'Enoch', |
4588
|
|
|
|
|
|
|
'Enochville', |
4589
|
|
|
|
|
|
|
'Enola', |
4590
|
|
|
|
|
|
|
'Enon', |
4591
|
|
|
|
|
|
|
'Enon Valley', |
4592
|
|
|
|
|
|
|
'Enosburg Falls', |
4593
|
|
|
|
|
|
|
'Ensign', |
4594
|
|
|
|
|
|
|
'Ensley', |
4595
|
|
|
|
|
|
|
'Enterprise', |
4596
|
|
|
|
|
|
|
'Entiat', |
4597
|
|
|
|
|
|
|
'Enumclaw', |
4598
|
|
|
|
|
|
|
'Enville', |
4599
|
|
|
|
|
|
|
'Eola', |
4600
|
|
|
|
|
|
|
'Eolia', |
4601
|
|
|
|
|
|
|
'Epes', |
4602
|
|
|
|
|
|
|
'Ephesus', |
4603
|
|
|
|
|
|
|
'Ephraim', |
4604
|
|
|
|
|
|
|
'Ephrata', |
4605
|
|
|
|
|
|
|
'Epping', |
4606
|
|
|
|
|
|
|
'Epps', |
4607
|
|
|
|
|
|
|
'Epworth', |
4608
|
|
|
|
|
|
|
'Equality', |
4609
|
|
|
|
|
|
|
'Erath', |
4610
|
|
|
|
|
|
|
'Erda', |
4611
|
|
|
|
|
|
|
'Erhard', |
4612
|
|
|
|
|
|
|
'Erick', |
4613
|
|
|
|
|
|
|
'Ericson', |
4614
|
|
|
|
|
|
|
'Erie', |
4615
|
|
|
|
|
|
|
'Erin', |
4616
|
|
|
|
|
|
|
'Erin Springs', |
4617
|
|
|
|
|
|
|
'Erlands Point-Kitsap Lake', |
4618
|
|
|
|
|
|
|
'Erlanger', |
4619
|
|
|
|
|
|
|
'Erlton-Ellisburg', |
4620
|
|
|
|
|
|
|
'Erma', |
4621
|
|
|
|
|
|
|
'Ernest', |
4622
|
|
|
|
|
|
|
'Eros', |
4623
|
|
|
|
|
|
|
'Erskine', |
4624
|
|
|
|
|
|
|
'Erwin', |
4625
|
|
|
|
|
|
|
'Esbon', |
4626
|
|
|
|
|
|
|
'Escalante', |
4627
|
|
|
|
|
|
|
'Escalon', |
4628
|
|
|
|
|
|
|
'Escanaba', |
4629
|
|
|
|
|
|
|
'Escatawpa', |
4630
|
|
|
|
|
|
|
'Eschbach', |
4631
|
|
|
|
|
|
|
'Escobares', |
4632
|
|
|
|
|
|
|
'Escondido', |
4633
|
|
|
|
|
|
|
'Eskridge', |
4634
|
|
|
|
|
|
|
'Esmond', |
4635
|
|
|
|
|
|
|
'Espanola', |
4636
|
|
|
|
|
|
|
'Esparto', |
4637
|
|
|
|
|
|
|
'Esperance', |
4638
|
|
|
|
|
|
|
'Esperanza', |
4639
|
|
|
|
|
|
|
'Espino', |
4640
|
|
|
|
|
|
|
'Espy', |
4641
|
|
|
|
|
|
|
'Essex', |
4642
|
|
|
|
|
|
|
'Essex Fells', |
4643
|
|
|
|
|
|
|
'Essex Junction', |
4644
|
|
|
|
|
|
|
'Essex Village', |
4645
|
|
|
|
|
|
|
'Essexville', |
4646
|
|
|
|
|
|
|
'Estacada', |
4647
|
|
|
|
|
|
|
'Estancia', |
4648
|
|
|
|
|
|
|
'Estates of Fort Lauderdale', |
4649
|
|
|
|
|
|
|
'Estell Manor', |
4650
|
|
|
|
|
|
|
'Estelle', |
4651
|
|
|
|
|
|
|
'Estelline', |
4652
|
|
|
|
|
|
|
'Ester', |
4653
|
|
|
|
|
|
|
'Esterbrook', |
4654
|
|
|
|
|
|
|
'Estero', |
4655
|
|
|
|
|
|
|
'Estes Park', |
4656
|
|
|
|
|
|
|
'Estherville', |
4657
|
|
|
|
|
|
|
'Estherwood', |
4658
|
|
|
|
|
|
|
'Estill', |
4659
|
|
|
|
|
|
|
'Estill Springs', |
4660
|
|
|
|
|
|
|
'Esto', |
4661
|
|
|
|
|
|
|
'Estral Beach', |
4662
|
|
|
|
|
|
|
'Ethan', |
4663
|
|
|
|
|
|
|
'Ethel', |
4664
|
|
|
|
|
|
|
'Ethelsville', |
4665
|
|
|
|
|
|
|
'Ethete', |
4666
|
|
|
|
|
|
|
'Ethridge', |
4667
|
|
|
|
|
|
|
'Etna', |
4668
|
|
|
|
|
|
|
'Etna Green', |
4669
|
|
|
|
|
|
|
'Eton', |
4670
|
|
|
|
|
|
|
'Etowah', |
4671
|
|
|
|
|
|
|
'Ettrick', |
4672
|
|
|
|
|
|
|
'Eubank', |
4673
|
|
|
|
|
|
|
'Euclid', |
4674
|
|
|
|
|
|
|
'Eudora', |
4675
|
|
|
|
|
|
|
'Eufaula', |
4676
|
|
|
|
|
|
|
'Eugene', |
4677
|
|
|
|
|
|
|
'Euharlee', |
4678
|
|
|
|
|
|
|
'Euless', |
4679
|
|
|
|
|
|
|
'Eunice', |
4680
|
|
|
|
|
|
|
'Eunola', |
4681
|
|
|
|
|
|
|
'Eupora', |
4682
|
|
|
|
|
|
|
'Eureka', |
4683
|
|
|
|
|
|
|
'Eureka Mill', |
4684
|
|
|
|
|
|
|
'Eureka Springs', |
4685
|
|
|
|
|
|
|
'Eustace', |
4686
|
|
|
|
|
|
|
'Eustis', |
4687
|
|
|
|
|
|
|
'Eutaw', |
4688
|
|
|
|
|
|
|
'Eutawville', |
4689
|
|
|
|
|
|
|
'Eva', |
4690
|
|
|
|
|
|
|
'Evadale', |
4691
|
|
|
|
|
|
|
'Evan', |
4692
|
|
|
|
|
|
|
'Evans', |
4693
|
|
|
|
|
|
|
'Evans City', |
4694
|
|
|
|
|
|
|
'Evans Mills', |
4695
|
|
|
|
|
|
|
'Evansburg', |
4696
|
|
|
|
|
|
|
'Evansdale', |
4697
|
|
|
|
|
|
|
'Evanston', |
4698
|
|
|
|
|
|
|
'Evansville', |
4699
|
|
|
|
|
|
|
'Evant', |
4700
|
|
|
|
|
|
|
'Evaro', |
4701
|
|
|
|
|
|
|
'Evart', |
4702
|
|
|
|
|
|
|
'Evarts', |
4703
|
|
|
|
|
|
|
'Eveleth', |
4704
|
|
|
|
|
|
|
'Evendale', |
4705
|
|
|
|
|
|
|
'Evening Shade', |
4706
|
|
|
|
|
|
|
'Everest', |
4707
|
|
|
|
|
|
|
'Everett', |
4708
|
|
|
|
|
|
|
'Everetts', |
4709
|
|
|
|
|
|
|
'Everglades', |
4710
|
|
|
|
|
|
|
'Evergreen', |
4711
|
|
|
|
|
|
|
'Evergreen Park', |
4712
|
|
|
|
|
|
|
'Everly', |
4713
|
|
|
|
|
|
|
'Everman', |
4714
|
|
|
|
|
|
|
'Everson', |
4715
|
|
|
|
|
|
|
'Everton', |
4716
|
|
|
|
|
|
|
'Ewa Beach', |
4717
|
|
|
|
|
|
|
'Ewa Gentry', |
4718
|
|
|
|
|
|
|
'Ewa Villages', |
4719
|
|
|
|
|
|
|
'Ewing', |
4720
|
|
|
|
|
|
|
'Excel', |
4721
|
|
|
|
|
|
|
'Excelsior', |
4722
|
|
|
|
|
|
|
'Excelsior Estates', |
4723
|
|
|
|
|
|
|
'Excelsior Springs', |
4724
|
|
|
|
|
|
|
'Excursion Inlet', |
4725
|
|
|
|
|
|
|
'Exeland', |
4726
|
|
|
|
|
|
|
'Exeter', |
4727
|
|
|
|
|
|
|
'Exira', |
4728
|
|
|
|
|
|
|
'Exline', |
4729
|
|
|
|
|
|
|
'Exmore', |
4730
|
|
|
|
|
|
|
'Experiment', |
4731
|
|
|
|
|
|
|
'Export', |
4732
|
|
|
|
|
|
|
'Exton', |
4733
|
|
|
|
|
|
|
'Eyers Grove', |
4734
|
|
|
|
|
|
|
'Eyota', |
4735
|
|
|
|
|
|
|
'Fabens', |
4736
|
|
|
|
|
|
|
'Fabius', |
4737
|
|
|
|
|
|
|
'Factoryville', |
4738
|
|
|
|
|
|
|
'Fair Bluff', |
4739
|
|
|
|
|
|
|
'Fair Grove', |
4740
|
|
|
|
|
|
|
'Fair Haven', |
4741
|
|
|
|
|
|
|
'Fair Lawn', |
4742
|
|
|
|
|
|
|
'Fair Oaks', |
4743
|
|
|
|
|
|
|
'Fair Oaks Ranch', |
4744
|
|
|
|
|
|
|
'Fair Plain', |
4745
|
|
|
|
|
|
|
'Fair Play', |
4746
|
|
|
|
|
|
|
'Fairbank', |
4747
|
|
|
|
|
|
|
'Fairbanks', |
4748
|
|
|
|
|
|
|
'Fairbanks Ranch', |
4749
|
|
|
|
|
|
|
'Fairborn', |
4750
|
|
|
|
|
|
|
'Fairburn', |
4751
|
|
|
|
|
|
|
'Fairbury', |
4752
|
|
|
|
|
|
|
'Fairchance', |
4753
|
|
|
|
|
|
|
'Fairchild', |
4754
|
|
|
|
|
|
|
'Fairchild AFB', |
4755
|
|
|
|
|
|
|
'Fairchilds', |
4756
|
|
|
|
|
|
|
'Fairdale', |
4757
|
|
|
|
|
|
|
'Fairfax', |
4758
|
|
|
|
|
|
|
'Fairfield', |
4759
|
|
|
|
|
|
|
'Fairfield Bay', |
4760
|
|
|
|
|
|
|
'Fairfield Beach', |
4761
|
|
|
|
|
|
|
'Fairfield Glade', |
4762
|
|
|
|
|
|
|
'Fairfield Harbour', |
4763
|
|
|
|
|
|
|
'Fairgrove', |
4764
|
|
|
|
|
|
|
'Fairhope', |
4765
|
|
|
|
|
|
|
'Fairland', |
4766
|
|
|
|
|
|
|
'Fairlawn', |
4767
|
|
|
|
|
|
|
'Fairlea', |
4768
|
|
|
|
|
|
|
'Fairless Hills', |
4769
|
|
|
|
|
|
|
'Fairmeade', |
4770
|
|
|
|
|
|
|
'Fairmont', |
4771
|
|
|
|
|
|
|
'Fairmont City', |
4772
|
|
|
|
|
|
|
'Fairmount', |
4773
|
|
|
|
|
|
|
'Fairmount Heights', |
4774
|
|
|
|
|
|
|
'Fairplains', |
4775
|
|
|
|
|
|
|
'Fairplay', |
4776
|
|
|
|
|
|
|
'Fairport', |
4777
|
|
|
|
|
|
|
'Fairport Harbor', |
4778
|
|
|
|
|
|
|
'Fairton', |
4779
|
|
|
|
|
|
|
'Fairview', |
4780
|
|
|
|
|
|
|
'Fairview Beach', |
4781
|
|
|
|
|
|
|
'Fairview Heights', |
4782
|
|
|
|
|
|
|
'Fairview Lanes', |
4783
|
|
|
|
|
|
|
'Fairview Park', |
4784
|
|
|
|
|
|
|
'Fairview Shores', |
4785
|
|
|
|
|
|
|
'Fairview-Ferndale', |
4786
|
|
|
|
|
|
|
'Fairwater', |
4787
|
|
|
|
|
|
|
'Fairway', |
4788
|
|
|
|
|
|
|
'Fairwood', |
4789
|
|
|
|
|
|
|
'Faison', |
4790
|
|
|
|
|
|
|
'Faith', |
4791
|
|
|
|
|
|
|
'Fajardo', |
4792
|
|
|
|
|
|
|
'Falcon', |
4793
|
|
|
|
|
|
|
'Falcon Heights', |
4794
|
|
|
|
|
|
|
'Falcon Lake Estates', |
4795
|
|
|
|
|
|
|
'Falcon Mesa', |
4796
|
|
|
|
|
|
|
'Falcon Village', |
4797
|
|
|
|
|
|
|
'Falconer', |
4798
|
|
|
|
|
|
|
'Falfurrias', |
4799
|
|
|
|
|
|
|
'Falkland', |
4800
|
|
|
|
|
|
|
'Falkner', |
4801
|
|
|
|
|
|
|
'Falkville', |
4802
|
|
|
|
|
|
|
'Fall Branch', |
4803
|
|
|
|
|
|
|
'Fall City', |
4804
|
|
|
|
|
|
|
'Fall Creek', |
4805
|
|
|
|
|
|
|
'Fall River', |
4806
|
|
|
|
|
|
|
'Fall River Mills', |
4807
|
|
|
|
|
|
|
'Fallbrook', |
4808
|
|
|
|
|
|
|
'Falling Spring', |
4809
|
|
|
|
|
|
|
'Fallis', |
4810
|
|
|
|
|
|
|
'Fallon', |
4811
|
|
|
|
|
|
|
'Fallon Station', |
4812
|
|
|
|
|
|
|
'Falls Church', |
4813
|
|
|
|
|
|
|
'Falls City', |
4814
|
|
|
|
|
|
|
'Falls Creek', |
4815
|
|
|
|
|
|
|
'Fallston', |
4816
|
|
|
|
|
|
|
'Falman-County Acres', |
4817
|
|
|
|
|
|
|
'Falmouth', |
4818
|
|
|
|
|
|
|
'Falmouth Foreside', |
4819
|
|
|
|
|
|
|
'False Pass', |
4820
|
|
|
|
|
|
|
'Fancy Gap', |
4821
|
|
|
|
|
|
|
'Fanning Springs', |
4822
|
|
|
|
|
|
|
'Fanshawe', |
4823
|
|
|
|
|
|
|
'Fanwood', |
4824
|
|
|
|
|
|
|
'Far Hills', |
4825
|
|
|
|
|
|
|
'Farber', |
4826
|
|
|
|
|
|
|
'Fargo', |
4827
|
|
|
|
|
|
|
'Faribault', |
4828
|
|
|
|
|
|
|
'Farina', |
4829
|
|
|
|
|
|
|
'Farley', |
4830
|
|
|
|
|
|
|
'Farm Loop', |
4831
|
|
|
|
|
|
|
'Farmer', |
4832
|
|
|
|
|
|
|
'Farmer City', |
4833
|
|
|
|
|
|
|
'Farmers Branch', |
4834
|
|
|
|
|
|
|
'Farmersburg', |
4835
|
|
|
|
|
|
|
'Farmersville', |
4836
|
|
|
|
|
|
|
'Farmerville', |
4837
|
|
|
|
|
|
|
'Farmingdale', |
4838
|
|
|
|
|
|
|
'Farmington', |
4839
|
|
|
|
|
|
|
'Farmington Hills', |
4840
|
|
|
|
|
|
|
'Farmingville', |
4841
|
|
|
|
|
|
|
'Farmland', |
4842
|
|
|
|
|
|
|
'Farmville', |
4843
|
|
|
|
|
|
|
'Farnam', |
4844
|
|
|
|
|
|
|
'Farnham', |
4845
|
|
|
|
|
|
|
'Farnhamville', |
4846
|
|
|
|
|
|
|
'Farr West', |
4847
|
|
|
|
|
|
|
'Farragut', |
4848
|
|
|
|
|
|
|
'Farrell', |
4849
|
|
|
|
|
|
|
'Farson', |
4850
|
|
|
|
|
|
|
'Farwell', |
4851
|
|
|
|
|
|
|
'Fate', |
4852
|
|
|
|
|
|
|
'Faulkton', |
4853
|
|
|
|
|
|
|
'Faunsdale', |
4854
|
|
|
|
|
|
|
'Fawn Grove', |
4855
|
|
|
|
|
|
|
'Faxon', |
4856
|
|
|
|
|
|
|
'Fayette', |
4857
|
|
|
|
|
|
|
'Fayette City', |
4858
|
|
|
|
|
|
|
'Fayetteville', |
4859
|
|
|
|
|
|
|
'Faysville', |
4860
|
|
|
|
|
|
|
'Fearrington', |
4861
|
|
|
|
|
|
|
'Feasterville-Trevose', |
4862
|
|
|
|
|
|
|
'Feather Sound', |
4863
|
|
|
|
|
|
|
'Federal Dam', |
4864
|
|
|
|
|
|
|
'Federal Heights', |
4865
|
|
|
|
|
|
|
'Federal Way', |
4866
|
|
|
|
|
|
|
'Federalsburg', |
4867
|
|
|
|
|
|
|
'Felicity', |
4868
|
|
|
|
|
|
|
'Felida', |
4869
|
|
|
|
|
|
|
'Fellows', |
4870
|
|
|
|
|
|
|
'Fellsmere', |
4871
|
|
|
|
|
|
|
'Felsenthal', |
4872
|
|
|
|
|
|
|
'Felton', |
4873
|
|
|
|
|
|
|
'Fennimore', |
4874
|
|
|
|
|
|
|
'Fennville', |
4875
|
|
|
|
|
|
|
'Fenton', |
4876
|
|
|
|
|
|
|
'Fenwick', |
4877
|
|
|
|
|
|
|
'Fenwick Island', |
4878
|
|
|
|
|
|
|
'Fenwood', |
4879
|
|
|
|
|
|
|
'Ferdinand', |
4880
|
|
|
|
|
|
|
'Fergus Falls', |
4881
|
|
|
|
|
|
|
'Ferguson', |
4882
|
|
|
|
|
|
|
'Fern Acres', |
4883
|
|
|
|
|
|
|
'Fern Creek', |
4884
|
|
|
|
|
|
|
'Fern Forest', |
4885
|
|
|
|
|
|
|
'Fern Park', |
4886
|
|
|
|
|
|
|
'Fernan Lake Village', |
4887
|
|
|
|
|
|
|
'Fernandina Beach', |
4888
|
|
|
|
|
|
|
'Ferndale', |
4889
|
|
|
|
|
|
|
'Fernley', |
4890
|
|
|
|
|
|
|
'Fernville', |
4891
|
|
|
|
|
|
|
'Fernway', |
4892
|
|
|
|
|
|
|
'Ferrelview', |
4893
|
|
|
|
|
|
|
'Ferriday', |
4894
|
|
|
|
|
|
|
'Ferris', |
4895
|
|
|
|
|
|
|
'Ferron', |
4896
|
|
|
|
|
|
|
'Ferrum', |
4897
|
|
|
|
|
|
|
'Ferry', |
4898
|
|
|
|
|
|
|
'Ferry Pass', |
4899
|
|
|
|
|
|
|
'Ferrysburg', |
4900
|
|
|
|
|
|
|
'Ferryville', |
4901
|
|
|
|
|
|
|
'Fertile', |
4902
|
|
|
|
|
|
|
'Fessenden', |
4903
|
|
|
|
|
|
|
'Festus', |
4904
|
|
|
|
|
|
|
'Fetters Hot Springs-Agua Caliente', |
4905
|
|
|
|
|
|
|
'Fidelity', |
4906
|
|
|
|
|
|
|
'Fieldale', |
4907
|
|
|
|
|
|
|
'Fielding', |
4908
|
|
|
|
|
|
|
'Fieldon', |
4909
|
|
|
|
|
|
|
'Fieldsboro', |
4910
|
|
|
|
|
|
|
'Fife', |
4911
|
|
|
|
|
|
|
'Fife Lake', |
4912
|
|
|
|
|
|
|
'Fifth Street', |
4913
|
|
|
|
|
|
|
'Fifty Lakes', |
4914
|
|
|
|
|
|
|
'Fifty-Six', |
4915
|
|
|
|
|
|
|
'Filer', |
4916
|
|
|
|
|
|
|
'Filley', |
4917
|
|
|
|
|
|
|
'Fillmore', |
4918
|
|
|
|
|
|
|
'Fincastle', |
4919
|
|
|
|
|
|
|
'Findlay', |
4920
|
|
|
|
|
|
|
'Fingal', |
4921
|
|
|
|
|
|
|
'Finger', |
4922
|
|
|
|
|
|
|
'Finlayson', |
4923
|
|
|
|
|
|
|
'Finley', |
4924
|
|
|
|
|
|
|
'Finley Point', |
4925
|
|
|
|
|
|
|
'Finleyville', |
4926
|
|
|
|
|
|
|
'Finneytown', |
4927
|
|
|
|
|
|
|
'Fircrest', |
4928
|
|
|
|
|
|
|
'Fire Island', |
4929
|
|
|
|
|
|
|
'Firebaugh', |
4930
|
|
|
|
|
|
|
'Firestone', |
4931
|
|
|
|
|
|
|
'First Mesa', |
4932
|
|
|
|
|
|
|
'Firth', |
4933
|
|
|
|
|
|
|
'Firthcliffe', |
4934
|
|
|
|
|
|
|
'Fish Hawk', |
4935
|
|
|
|
|
|
|
'Fisher', |
4936
|
|
|
|
|
|
|
'Fisher Island', |
4937
|
|
|
|
|
|
|
'Fishers', |
4938
|
|
|
|
|
|
|
'Fishers Island', |
4939
|
|
|
|
|
|
|
'Fishersville', |
4940
|
|
|
|
|
|
|
'Fishhook', |
4941
|
|
|
|
|
|
|
'Fishkill', |
4942
|
|
|
|
|
|
|
'Fisk', |
4943
|
|
|
|
|
|
|
'Fiskdale', |
4944
|
|
|
|
|
|
|
'Fitchburg', |
4945
|
|
|
|
|
|
|
'Fithian', |
4946
|
|
|
|
|
|
|
'Fitzgerald', |
4947
|
|
|
|
|
|
|
'Fitzhugh', |
4948
|
|
|
|
|
|
|
'Five Corners', |
4949
|
|
|
|
|
|
|
'Five Forks', |
4950
|
|
|
|
|
|
|
'Five Points', |
4951
|
|
|
|
|
|
|
'Flagler', |
4952
|
|
|
|
|
|
|
'Flagler Beach', |
4953
|
|
|
|
|
|
|
'Flagstaff', |
4954
|
|
|
|
|
|
|
'Flanagan', |
4955
|
|
|
|
|
|
|
'Flanders', |
4956
|
|
|
|
|
|
|
'Flandreau', |
4957
|
|
|
|
|
|
|
'Flasher', |
4958
|
|
|
|
|
|
|
'Flat', |
4959
|
|
|
|
|
|
|
'Flat Rock', |
4960
|
|
|
|
|
|
|
'Flatonia', |
4961
|
|
|
|
|
|
|
'Flatwoods', |
4962
|
|
|
|
|
|
|
'Flaxton', |
4963
|
|
|
|
|
|
|
'Flaxville', |
4964
|
|
|
|
|
|
|
'Fleetwood', |
4965
|
|
|
|
|
|
|
'Fleischmanns', |
4966
|
|
|
|
|
|
|
'Fleming', |
4967
|
|
|
|
|
|
|
'Fleming-Neon', |
4968
|
|
|
|
|
|
|
'Flemingsburg', |
4969
|
|
|
|
|
|
|
'Flemington', |
4970
|
|
|
|
|
|
|
'Flensburg', |
4971
|
|
|
|
|
|
|
'Fletcher', |
4972
|
|
|
|
|
|
|
'Flint', |
4973
|
|
|
|
|
|
|
'Flint Creek', |
4974
|
|
|
|
|
|
|
'Flint Hill', |
4975
|
|
|
|
|
|
|
'Flippin', |
4976
|
|
|
|
|
|
|
'Flomaton', |
4977
|
|
|
|
|
|
|
'Floodwood', |
4978
|
|
|
|
|
|
|
'Flora', |
4979
|
|
|
|
|
|
|
'Flora Vista', |
4980
|
|
|
|
|
|
|
'Floral City', |
4981
|
|
|
|
|
|
|
'Floral Park', |
4982
|
|
|
|
|
|
|
'Florala', |
4983
|
|
|
|
|
|
|
'Flordell Hills', |
4984
|
|
|
|
|
|
|
'Florence', |
4985
|
|
|
|
|
|
|
'Florence-Graham', |
4986
|
|
|
|
|
|
|
'Florence-Roebling', |
4987
|
|
|
|
|
|
|
'Floresville', |
4988
|
|
|
|
|
|
|
'Florham Park', |
4989
|
|
|
|
|
|
|
'Florida', |
4990
|
|
|
|
|
|
|
'Florida City', |
4991
|
|
|
|
|
|
|
'Florida Ridge', |
4992
|
|
|
|
|
|
|
'Florien', |
4993
|
|
|
|
|
|
|
'Florin', |
4994
|
|
|
|
|
|
|
'Floris', |
4995
|
|
|
|
|
|
|
'Florissant', |
4996
|
|
|
|
|
|
|
'Flossmoor', |
4997
|
|
|
|
|
|
|
'Flourtown', |
4998
|
|
|
|
|
|
|
'Flovilla', |
4999
|
|
|
|
|
|
|
'Flowella', |
5000
|
|
|
|
|
|
|
'Flower Hill', |
5001
|
|
|
|
|
|
|
'Flower Mound', |
5002
|
|
|
|
|
|
|
'Flowery Branch', |
5003
|
|
|
|
|
|
|
'Flowing Wells', |
5004
|
|
|
|
|
|
|
'Flowood', |
5005
|
|
|
|
|
|
|
'Floyd', |
5006
|
|
|
|
|
|
|
'Floydada', |
5007
|
|
|
|
|
|
|
'Flushing', |
5008
|
|
|
|
|
|
|
'Flute Springs', |
5009
|
|
|
|
|
|
|
'Flying Hills', |
5010
|
|
|
|
|
|
|
'Folcroft', |
5011
|
|
|
|
|
|
|
'Foley', |
5012
|
|
|
|
|
|
|
'Folkston', |
5013
|
|
|
|
|
|
|
'Follansbee', |
5014
|
|
|
|
|
|
|
'Follett', |
5015
|
|
|
|
|
|
|
'Folly Beach', |
5016
|
|
|
|
|
|
|
'Folsom', |
5017
|
|
|
|
|
|
|
'Fond du Lac', |
5018
|
|
|
|
|
|
|
'Fonda', |
5019
|
|
|
|
|
|
|
'Fontana', |
5020
|
|
|
|
|
|
|
'Fontana-on-Geneva Lake', |
5021
|
|
|
|
|
|
|
'Fontanelle', |
5022
|
|
|
|
|
|
|
'Fontenelle', |
5023
|
|
|
|
|
|
|
'Foosland', |
5024
|
|
|
|
|
|
|
'Foothill Farms', |
5025
|
|
|
|
|
|
|
'Foothill Ranch', |
5026
|
|
|
|
|
|
|
'Footville', |
5027
|
|
|
|
|
|
|
'Forada', |
5028
|
|
|
|
|
|
|
'Foraker', |
5029
|
|
|
|
|
|
|
'Forbes', |
5030
|
|
|
|
|
|
|
'Ford', |
5031
|
|
|
|
|
|
|
'Ford City', |
5032
|
|
|
|
|
|
|
'Ford Cliff', |
5033
|
|
|
|
|
|
|
'Ford Heights', |
5034
|
|
|
|
|
|
|
'Fordland', |
5035
|
|
|
|
|
|
|
'Fordoche', |
5036
|
|
|
|
|
|
|
'Fords', |
5037
|
|
|
|
|
|
|
'Fords Prairie', |
5038
|
|
|
|
|
|
|
'Fordsville', |
5039
|
|
|
|
|
|
|
'Fordville', |
5040
|
|
|
|
|
|
|
'Fordyce', |
5041
|
|
|
|
|
|
|
'Foreman', |
5042
|
|
|
|
|
|
|
'Forest', |
5043
|
|
|
|
|
|
|
'Forest Acres', |
5044
|
|
|
|
|
|
|
'Forest City', |
5045
|
|
|
|
|
|
|
'Forest Glen', |
5046
|
|
|
|
|
|
|
'Forest Grove', |
5047
|
|
|
|
|
|
|
'Forest Heights', |
5048
|
|
|
|
|
|
|
'Forest Hill', |
5049
|
|
|
|
|
|
|
'Forest Hills', |
5050
|
|
|
|
|
|
|
'Forest Home', |
5051
|
|
|
|
|
|
|
'Forest Lake', |
5052
|
|
|
|
|
|
|
'Forest Meadows', |
5053
|
|
|
|
|
|
|
'Forest Oaks', |
5054
|
|
|
|
|
|
|
'Forest Park', |
5055
|
|
|
|
|
|
|
'Forest River', |
5056
|
|
|
|
|
|
|
'Forest View', |
5057
|
|
|
|
|
|
|
'Forestbrook', |
5058
|
|
|
|
|
|
|
'Forestdale', |
5059
|
|
|
|
|
|
|
'Foresthill', |
5060
|
|
|
|
|
|
|
'Foreston', |
5061
|
|
|
|
|
|
|
'Forestville', |
5062
|
|
|
|
|
|
|
'Forgan', |
5063
|
|
|
|
|
|
|
'Foristell', |
5064
|
|
|
|
|
|
|
'Forked River', |
5065
|
|
|
|
|
|
|
'Forkland', |
5066
|
|
|
|
|
|
|
'Forks', |
5067
|
|
|
|
|
|
|
'Forksville', |
5068
|
|
|
|
|
|
|
'Forman', |
5069
|
|
|
|
|
|
|
'Formoso', |
5070
|
|
|
|
|
|
|
'Forney', |
5071
|
|
|
|
|
|
|
'Forrest', |
5072
|
|
|
|
|
|
|
'Forrest City', |
5073
|
|
|
|
|
|
|
'Forreston', |
5074
|
|
|
|
|
|
|
'Forrestville', |
5075
|
|
|
|
|
|
|
'Forsan', |
5076
|
|
|
|
|
|
|
'Forsyth', |
5077
|
|
|
|
|
|
|
'Fort Ann', |
5078
|
|
|
|
|
|
|
'Fort Ashby', |
5079
|
|
|
|
|
|
|
'Fort Atkinson', |
5080
|
|
|
|
|
|
|
'Fort Belknap Agency', |
5081
|
|
|
|
|
|
|
'Fort Belvoir', |
5082
|
|
|
|
|
|
|
'Fort Benning South', |
5083
|
|
|
|
|
|
|
'Fort Benton', |
5084
|
|
|
|
|
|
|
'Fort Bliss', |
5085
|
|
|
|
|
|
|
'Fort Bragg', |
5086
|
|
|
|
|
|
|
'Fort Branch', |
5087
|
|
|
|
|
|
|
'Fort Bridger', |
5088
|
|
|
|
|
|
|
'Fort Calhoun', |
5089
|
|
|
|
|
|
|
'Fort Campbell North', |
5090
|
|
|
|
|
|
|
'Fort Carson', |
5091
|
|
|
|
|
|
|
'Fort Chiswell', |
5092
|
|
|
|
|
|
|
'Fort Cobb', |
5093
|
|
|
|
|
|
|
'Fort Coffee', |
5094
|
|
|
|
|
|
|
'Fort Collins', |
5095
|
|
|
|
|
|
|
'Fort Davis', |
5096
|
|
|
|
|
|
|
'Fort Defiance', |
5097
|
|
|
|
|
|
|
'Fort Deposit', |
5098
|
|
|
|
|
|
|
'Fort Devens', |
5099
|
|
|
|
|
|
|
'Fort Dix', |
5100
|
|
|
|
|
|
|
'Fort Dodge', |
5101
|
|
|
|
|
|
|
'Fort Drum', |
5102
|
|
|
|
|
|
|
'Fort Duchesne', |
5103
|
|
|
|
|
|
|
'Fort Edward', |
5104
|
|
|
|
|
|
|
'Fort Fairfield', |
5105
|
|
|
|
|
|
|
'Fort Gaines', |
5106
|
|
|
|
|
|
|
'Fort Garland', |
5107
|
|
|
|
|
|
|
'Fort Gay', |
5108
|
|
|
|
|
|
|
'Fort Gibson', |
5109
|
|
|
|
|
|
|
'Fort Greely', |
5110
|
|
|
|
|
|
|
'Fort Hall', |
5111
|
|
|
|
|
|
|
'Fort Hancock', |
5112
|
|
|
|
|
|
|
'Fort Hood', |
5113
|
|
|
|
|
|
|
'Fort Hunt', |
5114
|
|
|
|
|
|
|
'Fort Indiantown Gap', |
5115
|
|
|
|
|
|
|
'Fort Jennings', |
5116
|
|
|
|
|
|
|
'Fort Johnson', |
5117
|
|
|
|
|
|
|
'Fort Jones', |
5118
|
|
|
|
|
|
|
'Fort Kent', |
5119
|
|
|
|
|
|
|
'Fort Knox', |
5120
|
|
|
|
|
|
|
'Fort Laramie', |
5121
|
|
|
|
|
|
|
'Fort Lauderdale', |
5122
|
|
|
|
|
|
|
'Fort Lawn', |
5123
|
|
|
|
|
|
|
'Fort Lee', |
5124
|
|
|
|
|
|
|
'Fort Leonard Wood', |
5125
|
|
|
|
|
|
|
'Fort Lewis', |
5126
|
|
|
|
|
|
|
'Fort Loramie', |
5127
|
|
|
|
|
|
|
'Fort Lupton', |
5128
|
|
|
|
|
|
|
'Fort Madison', |
5129
|
|
|
|
|
|
|
'Fort McKinley', |
5130
|
|
|
|
|
|
|
'Fort Meade', |
5131
|
|
|
|
|
|
|
'Fort Mill', |
5132
|
|
|
|
|
|
|
'Fort Mitchell', |
5133
|
|
|
|
|
|
|
'Fort Montgomery', |
5134
|
|
|
|
|
|
|
'Fort Morgan', |
5135
|
|
|
|
|
|
|
'Fort Myers', |
5136
|
|
|
|
|
|
|
'Fort Myers Beach', |
5137
|
|
|
|
|
|
|
'Fort Myers Shores', |
5138
|
|
|
|
|
|
|
'Fort Oglethorpe', |
5139
|
|
|
|
|
|
|
'Fort Payne', |
5140
|
|
|
|
|
|
|
'Fort Peck', |
5141
|
|
|
|
|
|
|
'Fort Pierce', |
5142
|
|
|
|
|
|
|
'Fort Pierce North', |
5143
|
|
|
|
|
|
|
'Fort Pierce South', |
5144
|
|
|
|
|
|
|
'Fort Pierre', |
5145
|
|
|
|
|
|
|
'Fort Plain', |
5146
|
|
|
|
|
|
|
'Fort Polk North', |
5147
|
|
|
|
|
|
|
'Fort Polk South', |
5148
|
|
|
|
|
|
|
'Fort Ransom', |
5149
|
|
|
|
|
|
|
'Fort Recovery', |
5150
|
|
|
|
|
|
|
'Fort Riley North', |
5151
|
|
|
|
|
|
|
'Fort Riley-Camp Whiteside', |
5152
|
|
|
|
|
|
|
'Fort Ripley', |
5153
|
|
|
|
|
|
|
'Fort Ritchie', |
5154
|
|
|
|
|
|
|
'Fort Rucker', |
5155
|
|
|
|
|
|
|
'Fort Salonga', |
5156
|
|
|
|
|
|
|
'Fort Scott', |
5157
|
|
|
|
|
|
|
'Fort Shaw', |
5158
|
|
|
|
|
|
|
'Fort Shawnee', |
5159
|
|
|
|
|
|
|
'Fort Smith', |
5160
|
|
|
|
|
|
|
'Fort Stewart', |
5161
|
|
|
|
|
|
|
'Fort Stockton', |
5162
|
|
|
|
|
|
|
'Fort Sumner', |
5163
|
|
|
|
|
|
|
'Fort Supply', |
5164
|
|
|
|
|
|
|
'Fort Thomas', |
5165
|
|
|
|
|
|
|
'Fort Thompson', |
5166
|
|
|
|
|
|
|
'Fort Totten', |
5167
|
|
|
|
|
|
|
'Fort Towson', |
5168
|
|
|
|
|
|
|
'Fort Valley', |
5169
|
|
|
|
|
|
|
'Fort Walton Beach', |
5170
|
|
|
|
|
|
|
'Fort Washakie', |
5171
|
|
|
|
|
|
|
'Fort Washington', |
5172
|
|
|
|
|
|
|
'Fort Wayne', |
5173
|
|
|
|
|
|
|
'Fort White', |
5174
|
|
|
|
|
|
|
'Fort Worth', |
5175
|
|
|
|
|
|
|
'Fort Wright', |
5176
|
|
|
|
|
|
|
'Fort Yates', |
5177
|
|
|
|
|
|
|
'Fort Yukon', |
5178
|
|
|
|
|
|
|
'Fortescue', |
5179
|
|
|
|
|
|
|
'Fortine', |
5180
|
|
|
|
|
|
|
'Fortuna', |
5181
|
|
|
|
|
|
|
'Fortuna Foothills', |
5182
|
|
|
|
|
|
|
'Fortville', |
5183
|
|
|
|
|
|
|
'Forty Fort', |
5184
|
|
|
|
|
|
|
'Foss', |
5185
|
|
|
|
|
|
|
'Fossil', |
5186
|
|
|
|
|
|
|
'Fosston', |
5187
|
|
|
|
|
|
|
'Foster', |
5188
|
|
|
|
|
|
|
'Foster City', |
5189
|
|
|
|
|
|
|
'Fostoria', |
5190
|
|
|
|
|
|
|
'Fouke', |
5191
|
|
|
|
|
|
|
'Foundryville', |
5192
|
|
|
|
|
|
|
'Fountain', |
5193
|
|
|
|
|
|
|
'Fountain City', |
5194
|
|
|
|
|
|
|
'Fountain Green', |
5195
|
|
|
|
|
|
|
'Fountain Hill', |
5196
|
|
|
|
|
|
|
'Fountain Hills', |
5197
|
|
|
|
|
|
|
'Fountain Inn', |
5198
|
|
|
|
|
|
|
'Fountain Lake', |
5199
|
|
|
|
|
|
|
'Fountain N\' Lakes', |
5200
|
|
|
|
|
|
|
'Fountain Run', |
5201
|
|
|
|
|
|
|
'Fountain Springs', |
5202
|
|
|
|
|
|
|
'Fountain Valley', |
5203
|
|
|
|
|
|
|
'Fountainbleau', |
5204
|
|
|
|
|
|
|
'Fountainhead-Orchard Hills', |
5205
|
|
|
|
|
|
|
'Four Bears Village', |
5206
|
|
|
|
|
|
|
'Four Corners', |
5207
|
|
|
|
|
|
|
'Four Mile Road', |
5208
|
|
|
|
|
|
|
'Four Oaks', |
5209
|
|
|
|
|
|
|
'Fourche', |
5210
|
|
|
|
|
|
|
'Fowler', |
5211
|
|
|
|
|
|
|
'Fowlerton', |
5212
|
|
|
|
|
|
|
'Fowlerville', |
5213
|
|
|
|
|
|
|
'Fox', |
5214
|
|
|
|
|
|
|
'Fox Chapel', |
5215
|
|
|
|
|
|
|
'Fox Chase', |
5216
|
|
|
|
|
|
|
'Fox Farm-College', |
5217
|
|
|
|
|
|
|
'Fox Island', |
5218
|
|
|
|
|
|
|
'Fox Lake', |
5219
|
|
|
|
|
|
|
'Fox Lake Hills', |
5220
|
|
|
|
|
|
|
'Fox Point', |
5221
|
|
|
|
|
|
|
'Fox River', |
5222
|
|
|
|
|
|
|
'Fox River Grove', |
5223
|
|
|
|
|
|
|
'Fox River Valley Gardens', |
5224
|
|
|
|
|
|
|
'Fox Run', |
5225
|
|
|
|
|
|
|
'Foxborough', |
5226
|
|
|
|
|
|
|
'Foxburg', |
5227
|
|
|
|
|
|
|
'Foxfield', |
5228
|
|
|
|
|
|
|
'Foxfire', |
5229
|
|
|
|
|
|
|
'Foxhome', |
5230
|
|
|
|
|
|
|
'Foyil', |
5231
|
|
|
|
|
|
|
'Frackville', |
5232
|
|
|
|
|
|
|
'Framingham', |
5233
|
|
|
|
|
|
|
'Francesville', |
5234
|
|
|
|
|
|
|
'Francis', |
5235
|
|
|
|
|
|
|
'Francis Creek', |
5236
|
|
|
|
|
|
|
'Francisco', |
5237
|
|
|
|
|
|
|
'Franconia', |
5238
|
|
|
|
|
|
|
'Frankenmuth', |
5239
|
|
|
|
|
|
|
'Frankford', |
5240
|
|
|
|
|
|
|
'Frankfort', |
5241
|
|
|
|
|
|
|
'Frankfort Springs', |
5242
|
|
|
|
|
|
|
'Frankfort Square', |
5243
|
|
|
|
|
|
|
'Franklin', |
5244
|
|
|
|
|
|
|
'Franklin Furnace', |
5245
|
|
|
|
|
|
|
'Franklin Grove', |
5246
|
|
|
|
|
|
|
'Franklin Lakes', |
5247
|
|
|
|
|
|
|
'Franklin Park', |
5248
|
|
|
|
|
|
|
'Franklin Springs', |
5249
|
|
|
|
|
|
|
'Franklin Square', |
5250
|
|
|
|
|
|
|
'Franklinton', |
5251
|
|
|
|
|
|
|
'Franklintown', |
5252
|
|
|
|
|
|
|
'Franklinville', |
5253
|
|
|
|
|
|
|
'Frankston', |
5254
|
|
|
|
|
|
|
'Franksville', |
5255
|
|
|
|
|
|
|
'Frankton', |
5256
|
|
|
|
|
|
|
'Franktown', |
5257
|
|
|
|
|
|
|
'Frannie', |
5258
|
|
|
|
|
|
|
'Fraser', |
5259
|
|
|
|
|
|
|
'Frazee', |
5260
|
|
|
|
|
|
|
'Frazer', |
5261
|
|
|
|
|
|
|
'Frazeysburg', |
5262
|
|
|
|
|
|
|
'Frazier Park', |
5263
|
|
|
|
|
|
|
'Frederic', |
5264
|
|
|
|
|
|
|
'Frederica', |
5265
|
|
|
|
|
|
|
'Frederick', |
5266
|
|
|
|
|
|
|
'Fredericksburg', |
5267
|
|
|
|
|
|
|
'Frederickson', |
5268
|
|
|
|
|
|
|
'Fredericktown', |
5269
|
|
|
|
|
|
|
'Fredericktown-Millsboro', |
5270
|
|
|
|
|
|
|
'Frederika', |
5271
|
|
|
|
|
|
|
'Fredonia', |
5272
|
|
|
|
|
|
|
'Fredonia (Biscoe)', |
5273
|
|
|
|
|
|
|
'Free Soil', |
5274
|
|
|
|
|
|
|
'Freeborn', |
5275
|
|
|
|
|
|
|
'Freeburg', |
5276
|
|
|
|
|
|
|
'Freedom', |
5277
|
|
|
|
|
|
|
'Freehold', |
5278
|
|
|
|
|
|
|
'Freeland', |
5279
|
|
|
|
|
|
|
'Freeman', |
5280
|
|
|
|
|
|
|
'Freeman Spur', |
5281
|
|
|
|
|
|
|
'Freemansburg', |
5282
|
|
|
|
|
|
|
'Freeport', |
5283
|
|
|
|
|
|
|
'Freer', |
5284
|
|
|
|
|
|
|
'Freeville', |
5285
|
|
|
|
|
|
|
'Freistatt', |
5286
|
|
|
|
|
|
|
'Fremd Village-Padgett Island', |
5287
|
|
|
|
|
|
|
'Fremont', |
5288
|
|
|
|
|
|
|
'Fremont Hills', |
5289
|
|
|
|
|
|
|
'French Camp', |
5290
|
|
|
|
|
|
|
'French Gulch', |
5291
|
|
|
|
|
|
|
'French Island', |
5292
|
|
|
|
|
|
|
'French Lick', |
5293
|
|
|
|
|
|
|
'French Settlement', |
5294
|
|
|
|
|
|
|
'Frenchburg', |
5295
|
|
|
|
|
|
|
'Frenchtown', |
5296
|
|
|
|
|
|
|
'Frenchtown-Rumbly', |
5297
|
|
|
|
|
|
|
'Fresno', |
5298
|
|
|
|
|
|
|
'Frewsburg', |
5299
|
|
|
|
|
|
|
'Friant', |
5300
|
|
|
|
|
|
|
'Friars Point', |
5301
|
|
|
|
|
|
|
'Friday Harbor', |
5302
|
|
|
|
|
|
|
'Fridley', |
5303
|
|
|
|
|
|
|
'Friedens', |
5304
|
|
|
|
|
|
|
'Friedensburg', |
5305
|
|
|
|
|
|
|
'Friend', |
5306
|
|
|
|
|
|
|
'Friendly', |
5307
|
|
|
|
|
|
|
'Friendship', |
5308
|
|
|
|
|
|
|
'Friendship Village', |
5309
|
|
|
|
|
|
|
'Friendsville', |
5310
|
|
|
|
|
|
|
'Friendswood', |
5311
|
|
|
|
|
|
|
'Fries', |
5312
|
|
|
|
|
|
|
'Friesland', |
5313
|
|
|
|
|
|
|
'Friona', |
5314
|
|
|
|
|
|
|
'Frisco', |
5315
|
|
|
|
|
|
|
'Frisco City', |
5316
|
|
|
|
|
|
|
'Fritch', |
5317
|
|
|
|
|
|
|
'Fritz Creek', |
5318
|
|
|
|
|
|
|
'Frohna', |
5319
|
|
|
|
|
|
|
'Froid', |
5320
|
|
|
|
|
|
|
'Fromberg', |
5321
|
|
|
|
|
|
|
'Front Royal', |
5322
|
|
|
|
|
|
|
'Frontenac', |
5323
|
|
|
|
|
|
|
'Frontier', |
5324
|
|
|
|
|
|
|
'Fronton', |
5325
|
|
|
|
|
|
|
'Frost', |
5326
|
|
|
|
|
|
|
'Frostburg', |
5327
|
|
|
|
|
|
|
'Frostproof', |
5328
|
|
|
|
|
|
|
'Fruit Cove', |
5329
|
|
|
|
|
|
|
'Fruit Heights', |
5330
|
|
|
|
|
|
|
'Fruit Hill', |
5331
|
|
|
|
|
|
|
'Fruita', |
5332
|
|
|
|
|
|
|
'Fruitdale', |
5333
|
|
|
|
|
|
|
'Fruithurst', |
5334
|
|
|
|
|
|
|
'Fruitland', |
5335
|
|
|
|
|
|
|
'Fruitland Park', |
5336
|
|
|
|
|
|
|
'Fruitport', |
5337
|
|
|
|
|
|
|
'Fruitvale', |
5338
|
|
|
|
|
|
|
'Fruitville', |
5339
|
|
|
|
|
|
|
'Fryeburg', |
5340
|
|
|
|
|
|
|
'Fránquez', |
5341
|
|
|
|
|
|
|
'Fuig', |
5342
|
|
|
|
|
|
|
'Fulda', |
5343
|
|
|
|
|
|
|
'Fullerton', |
5344
|
|
|
|
|
|
|
'Fulshear', |
5345
|
|
|
|
|
|
|
'Fulton', |
5346
|
|
|
|
|
|
|
'Fultondale', |
5347
|
|
|
|
|
|
|
'Fultonham', |
5348
|
|
|
|
|
|
|
'Fultonville', |
5349
|
|
|
|
|
|
|
'Fults', |
5350
|
|
|
|
|
|
|
'Funk', |
5351
|
|
|
|
|
|
|
'Funkley', |
5352
|
|
|
|
|
|
|
'Funkstown', |
5353
|
|
|
|
|
|
|
'Funny River', |
5354
|
|
|
|
|
|
|
'Funston', |
5355
|
|
|
|
|
|
|
'Fuquay-Varina', |
5356
|
|
|
|
|
|
|
'Furman', |
5357
|
|
|
|
|
|
|
'Furnace Creek', |
5358
|
|
|
|
|
|
|
'Fussels Corner', |
5359
|
|
|
|
|
|
|
'Fyffe', |
5360
|
|
|
|
|
|
|
'G. L. GarcÃa', |
5361
|
|
|
|
|
|
|
'Gaastra', |
5362
|
|
|
|
|
|
|
'Gabbs', |
5363
|
|
|
|
|
|
|
'Gackle', |
5364
|
|
|
|
|
|
|
'Gadsden', |
5365
|
|
|
|
|
|
|
'Gaffney', |
5366
|
|
|
|
|
|
|
'Gage', |
5367
|
|
|
|
|
|
|
'Gages Lake', |
5368
|
|
|
|
|
|
|
'Gagetown', |
5369
|
|
|
|
|
|
|
'Gahanna', |
5370
|
|
|
|
|
|
|
'Gaines', |
5371
|
|
|
|
|
|
|
'Gainesboro', |
5372
|
|
|
|
|
|
|
'Gainesville', |
5373
|
|
|
|
|
|
|
'Gaithersburg', |
5374
|
|
|
|
|
|
|
'Gakona', |
5375
|
|
|
|
|
|
|
'Galateo', |
5376
|
|
|
|
|
|
|
'Galatia', |
5377
|
|
|
|
|
|
|
'Galax', |
5378
|
|
|
|
|
|
|
'Galena', |
5379
|
|
|
|
|
|
|
'Galena Park', |
5380
|
|
|
|
|
|
|
'Galesburg', |
5381
|
|
|
|
|
|
|
'Galestown', |
5382
|
|
|
|
|
|
|
'Galesville', |
5383
|
|
|
|
|
|
|
'Galeton', |
5384
|
|
|
|
|
|
|
'Galeville', |
5385
|
|
|
|
|
|
|
'Galien', |
5386
|
|
|
|
|
|
|
'Galion', |
5387
|
|
|
|
|
|
|
'Galisteo', |
5388
|
|
|
|
|
|
|
'Gallatin', |
5389
|
|
|
|
|
|
|
'Gallaway', |
5390
|
|
|
|
|
|
|
'Galliano', |
5391
|
|
|
|
|
|
|
'Gallipolis', |
5392
|
|
|
|
|
|
|
'Gallitzin', |
5393
|
|
|
|
|
|
|
'Gallup', |
5394
|
|
|
|
|
|
|
'Galt', |
5395
|
|
|
|
|
|
|
'Galva', |
5396
|
|
|
|
|
|
|
'Galveston', |
5397
|
|
|
|
|
|
|
'Galway', |
5398
|
|
|
|
|
|
|
'Gamaliel', |
5399
|
|
|
|
|
|
|
'Gambell', |
5400
|
|
|
|
|
|
|
'Gambier', |
5401
|
|
|
|
|
|
|
'Game Creek', |
5402
|
|
|
|
|
|
|
'Gamewell', |
5403
|
|
|
|
|
|
|
'Ganado', |
5404
|
|
|
|
|
|
|
'Gandy', |
5405
|
|
|
|
|
|
|
'Gang Mills', |
5406
|
|
|
|
|
|
|
'Gann', |
5407
|
|
|
|
|
|
|
'Gans', |
5408
|
|
|
|
|
|
|
'Gantt', |
5409
|
|
|
|
|
|
|
'Gantts Quarry', |
5410
|
|
|
|
|
|
|
'Gap', |
5411
|
|
|
|
|
|
|
'Garber', |
5412
|
|
|
|
|
|
|
'Garceno', |
5413
|
|
|
|
|
|
|
'Garden', |
5414
|
|
|
|
|
|
|
'Garden Acres', |
5415
|
|
|
|
|
|
|
'Garden City', |
5416
|
|
|
|
|
|
|
'Garden City Park', |
5417
|
|
|
|
|
|
|
'Garden City South', |
5418
|
|
|
|
|
|
|
'Garden Grove', |
5419
|
|
|
|
|
|
|
'Garden Home-Whitford', |
5420
|
|
|
|
|
|
|
'Garden Plain', |
5421
|
|
|
|
|
|
|
'Garden Ridge', |
5422
|
|
|
|
|
|
|
'Garden View', |
5423
|
|
|
|
|
|
|
'Gardena', |
5424
|
|
|
|
|
|
|
'Gardendale', |
5425
|
|
|
|
|
|
|
'Gardere', |
5426
|
|
|
|
|
|
|
'Gardiner', |
5427
|
|
|
|
|
|
|
'Gardner', |
5428
|
|
|
|
|
|
|
'Gardnertown', |
5429
|
|
|
|
|
|
|
'Gardnerville', |
5430
|
|
|
|
|
|
|
'Gardnerville Ranchos', |
5431
|
|
|
|
|
|
|
'Garfield', |
5432
|
|
|
|
|
|
|
'Garfield Heights', |
5433
|
|
|
|
|
|
|
'Garibaldi', |
5434
|
|
|
|
|
|
|
'Garland', |
5435
|
|
|
|
|
|
|
'Garnavillo', |
5436
|
|
|
|
|
|
|
'Garner', |
5437
|
|
|
|
|
|
|
'Garnett', |
5438
|
|
|
|
|
|
|
'Garretson', |
5439
|
|
|
|
|
|
|
'Garrett', |
5440
|
|
|
|
|
|
|
'Garrett Park', |
5441
|
|
|
|
|
|
|
'Garrettsville', |
5442
|
|
|
|
|
|
|
'Garrison', |
5443
|
|
|
|
|
|
|
'Garrochales', |
5444
|
|
|
|
|
|
|
'Garvin', |
5445
|
|
|
|
|
|
|
'Garwin', |
5446
|
|
|
|
|
|
|
'Garwood', |
5447
|
|
|
|
|
|
|
'Gary', |
5448
|
|
|
|
|
|
|
'Gary City', |
5449
|
|
|
|
|
|
|
'Garysburg', |
5450
|
|
|
|
|
|
|
'Garyville', |
5451
|
|
|
|
|
|
|
'Gas', |
5452
|
|
|
|
|
|
|
'Gas City', |
5453
|
|
|
|
|
|
|
'Gasconade', |
5454
|
|
|
|
|
|
|
'Gascoyne', |
5455
|
|
|
|
|
|
|
'Gasport', |
5456
|
|
|
|
|
|
|
'Gassaway', |
5457
|
|
|
|
|
|
|
'Gassville', |
5458
|
|
|
|
|
|
|
'Gaston', |
5459
|
|
|
|
|
|
|
'Gastonia', |
5460
|
|
|
|
|
|
|
'Gastonville', |
5461
|
|
|
|
|
|
|
'Gate', |
5462
|
|
|
|
|
|
|
'Gate City', |
5463
|
|
|
|
|
|
|
'Gates', |
5464
|
|
|
|
|
|
|
'Gates Mills', |
5465
|
|
|
|
|
|
|
'Gates-North Gates', |
5466
|
|
|
|
|
|
|
'Gatesville', |
5467
|
|
|
|
|
|
|
'Gateway', |
5468
|
|
|
|
|
|
|
'Gatlinburg', |
5469
|
|
|
|
|
|
|
'Gattman', |
5470
|
|
|
|
|
|
|
'Gauley Bridge', |
5471
|
|
|
|
|
|
|
'Gautier', |
5472
|
|
|
|
|
|
|
'Gay', |
5473
|
|
|
|
|
|
|
'Gayle Mill', |
5474
|
|
|
|
|
|
|
'Gaylesville', |
5475
|
|
|
|
|
|
|
'Gaylord', |
5476
|
|
|
|
|
|
|
'Gays', |
5477
|
|
|
|
|
|
|
'Gays Mills', |
5478
|
|
|
|
|
|
|
'Gayville', |
5479
|
|
|
|
|
|
|
'Gazelle', |
5480
|
|
|
|
|
|
|
'Gearhart', |
5481
|
|
|
|
|
|
|
'Geary', |
5482
|
|
|
|
|
|
|
'Geddes', |
5483
|
|
|
|
|
|
|
'Geiger', |
5484
|
|
|
|
|
|
|
'Geistown', |
5485
|
|
|
|
|
|
|
'Gem', |
5486
|
|
|
|
|
|
|
'Gem Lake', |
5487
|
|
|
|
|
|
|
'Gene Autry', |
5488
|
|
|
|
|
|
|
'Genesee', |
5489
|
|
|
|
|
|
|
'Geneseo', |
5490
|
|
|
|
|
|
|
'Geneva', |
5491
|
|
|
|
|
|
|
'Geneva-on-the-Lake', |
5492
|
|
|
|
|
|
|
'Genoa', |
5493
|
|
|
|
|
|
|
'Genoa City', |
5494
|
|
|
|
|
|
|
'Genola', |
5495
|
|
|
|
|
|
|
'Gentry', |
5496
|
|
|
|
|
|
|
'Gentryville', |
5497
|
|
|
|
|
|
|
'George', |
5498
|
|
|
|
|
|
|
'George West', |
5499
|
|
|
|
|
|
|
'Georgetown', |
5500
|
|
|
|
|
|
|
'Georgiana', |
5501
|
|
|
|
|
|
|
'Gerald', |
5502
|
|
|
|
|
|
|
'Geraldine', |
5503
|
|
|
|
|
|
|
'Gerber-Las Flores', |
5504
|
|
|
|
|
|
|
'Gering', |
5505
|
|
|
|
|
|
|
'Gerlach-Empire', |
5506
|
|
|
|
|
|
|
'German Valley', |
5507
|
|
|
|
|
|
|
'Germantown', |
5508
|
|
|
|
|
|
|
'Germantown Hills', |
5509
|
|
|
|
|
|
|
'Geronimo', |
5510
|
|
|
|
|
|
|
'Gerster', |
5511
|
|
|
|
|
|
|
'Gerty', |
5512
|
|
|
|
|
|
|
'Gervais', |
5513
|
|
|
|
|
|
|
'Gettysburg', |
5514
|
|
|
|
|
|
|
'Geuda Springs', |
5515
|
|
|
|
|
|
|
'Ghent', |
5516
|
|
|
|
|
|
|
'Gholson', |
5517
|
|
|
|
|
|
|
'Gibbon', |
5518
|
|
|
|
|
|
|
'Gibbs', |
5519
|
|
|
|
|
|
|
'Gibbsboro', |
5520
|
|
|
|
|
|
|
'Gibbstown', |
5521
|
|
|
|
|
|
|
'Gibraltar', |
5522
|
|
|
|
|
|
|
'Gibsland', |
5523
|
|
|
|
|
|
|
'Gibson', |
5524
|
|
|
|
|
|
|
'Gibsonburg', |
5525
|
|
|
|
|
|
|
'Gibsonia', |
5526
|
|
|
|
|
|
|
'Gibsonton', |
5527
|
|
|
|
|
|
|
'Gibsonville', |
5528
|
|
|
|
|
|
|
'Giddings', |
5529
|
|
|
|
|
|
|
'Gideon', |
5530
|
|
|
|
|
|
|
'Gifford', |
5531
|
|
|
|
|
|
|
'Gig Harbor', |
5532
|
|
|
|
|
|
|
'Gila Bend', |
5533
|
|
|
|
|
|
|
'Gilbert', |
5534
|
|
|
|
|
|
|
'Gilbert Creek', |
5535
|
|
|
|
|
|
|
'Gilberton', |
5536
|
|
|
|
|
|
|
'Gilbertown', |
5537
|
|
|
|
|
|
|
'Gilberts', |
5538
|
|
|
|
|
|
|
'Gilbertsville', |
5539
|
|
|
|
|
|
|
'Gilbertville', |
5540
|
|
|
|
|
|
|
'Gilboa', |
5541
|
|
|
|
|
|
|
'Gilby', |
5542
|
|
|
|
|
|
|
'Gilcrest', |
5543
|
|
|
|
|
|
|
'Gildford', |
5544
|
|
|
|
|
|
|
'Gilead', |
5545
|
|
|
|
|
|
|
'Gilgo-Oak Beach-Captree', |
5546
|
|
|
|
|
|
|
'Gillespie', |
5547
|
|
|
|
|
|
|
'Gillett', |
5548
|
|
|
|
|
|
|
'Gillett Grove', |
5549
|
|
|
|
|
|
|
'Gillette', |
5550
|
|
|
|
|
|
|
'Gillham', |
5551
|
|
|
|
|
|
|
'Gilliam', |
5552
|
|
|
|
|
|
|
'Gillsville', |
5553
|
|
|
|
|
|
|
'Gilman', |
5554
|
|
|
|
|
|
|
'Gilman City', |
5555
|
|
|
|
|
|
|
'Gilmer', |
5556
|
|
|
|
|
|
|
'Gilmore', |
5557
|
|
|
|
|
|
|
'Gilmore City', |
5558
|
|
|
|
|
|
|
'Gilroy', |
5559
|
|
|
|
|
|
|
'Gilt Edge', |
5560
|
|
|
|
|
|
|
'Giltner', |
5561
|
|
|
|
|
|
|
'Girard', |
5562
|
|
|
|
|
|
|
'Girardville', |
5563
|
|
|
|
|
|
|
'Girdletree', |
5564
|
|
|
|
|
|
|
'Gisela', |
5565
|
|
|
|
|
|
|
'Glacier', |
5566
|
|
|
|
|
|
|
'Glacier View', |
5567
|
|
|
|
|
|
|
'Gladbrook', |
5568
|
|
|
|
|
|
|
'Glade', |
5569
|
|
|
|
|
|
|
'Glade Spring', |
5570
|
|
|
|
|
|
|
'Gladeview', |
5571
|
|
|
|
|
|
|
'Gladewater', |
5572
|
|
|
|
|
|
|
'Gladstone', |
5573
|
|
|
|
|
|
|
'Gladwin', |
5574
|
|
|
|
|
|
|
'Glandorf', |
5575
|
|
|
|
|
|
|
'Glasco', |
5576
|
|
|
|
|
|
|
'Glasford', |
5577
|
|
|
|
|
|
|
'Glasgow', |
5578
|
|
|
|
|
|
|
'Glasgow Village', |
5579
|
|
|
|
|
|
|
'Glassboro', |
5580
|
|
|
|
|
|
|
'Glassport', |
5581
|
|
|
|
|
|
|
'Glastonbury Center', |
5582
|
|
|
|
|
|
|
'Gleason', |
5583
|
|
|
|
|
|
|
'Gleed', |
5584
|
|
|
|
|
|
|
'Glen', |
5585
|
|
|
|
|
|
|
'Glen Allen', |
5586
|
|
|
|
|
|
|
'Glen Alpine', |
5587
|
|
|
|
|
|
|
'Glen Avon', |
5588
|
|
|
|
|
|
|
'Glen Burnie', |
5589
|
|
|
|
|
|
|
'Glen Campbell', |
5590
|
|
|
|
|
|
|
'Glen Carbon', |
5591
|
|
|
|
|
|
|
'Glen Cove', |
5592
|
|
|
|
|
|
|
'Glen Dale', |
5593
|
|
|
|
|
|
|
'Glen Echo', |
5594
|
|
|
|
|
|
|
'Glen Echo Park', |
5595
|
|
|
|
|
|
|
'Glen Elder', |
5596
|
|
|
|
|
|
|
'Glen Ellen', |
5597
|
|
|
|
|
|
|
'Glen Ellyn', |
5598
|
|
|
|
|
|
|
'Glen Flora', |
5599
|
|
|
|
|
|
|
'Glen Gardner', |
5600
|
|
|
|
|
|
|
'Glen Head', |
5601
|
|
|
|
|
|
|
'Glen Hope', |
5602
|
|
|
|
|
|
|
'Glen Lyn', |
5603
|
|
|
|
|
|
|
'Glen Lyon', |
5604
|
|
|
|
|
|
|
'Glen Park', |
5605
|
|
|
|
|
|
|
'Glen Raven', |
5606
|
|
|
|
|
|
|
'Glen Ridge', |
5607
|
|
|
|
|
|
|
'Glen Rock', |
5608
|
|
|
|
|
|
|
'Glen Rose', |
5609
|
|
|
|
|
|
|
'Glen St. Mary', |
5610
|
|
|
|
|
|
|
'Glen Ullin', |
5611
|
|
|
|
|
|
|
'Glenaire', |
5612
|
|
|
|
|
|
|
'Glenarden', |
5613
|
|
|
|
|
|
|
'Glenbeulah', |
5614
|
|
|
|
|
|
|
'Glenburn', |
5615
|
|
|
|
|
|
|
'Glencoe', |
5616
|
|
|
|
|
|
|
'Glendale', |
5617
|
|
|
|
|
|
|
'Glendale Heights', |
5618
|
|
|
|
|
|
|
'Glendive', |
5619
|
|
|
|
|
|
|
'Glendo', |
5620
|
|
|
|
|
|
|
'Glendon', |
5621
|
|
|
|
|
|
|
'Glendora', |
5622
|
|
|
|
|
|
|
'Gleneagle', |
5623
|
|
|
|
|
|
|
'Glenfield', |
5624
|
|
|
|
|
|
|
'Glenford', |
5625
|
|
|
|
|
|
|
'Glenham', |
5626
|
|
|
|
|
|
|
'Glenmont', |
5627
|
|
|
|
|
|
|
'Glenmoor', |
5628
|
|
|
|
|
|
|
'Glenmora', |
5629
|
|
|
|
|
|
|
'Glenn Dale', |
5630
|
|
|
|
|
|
|
'Glenn Heights', |
5631
|
|
|
|
|
|
|
'Glennallen', |
5632
|
|
|
|
|
|
|
'Glenns Ferry', |
5633
|
|
|
|
|
|
|
'Glennville', |
5634
|
|
|
|
|
|
|
'Glenolden', |
5635
|
|
|
|
|
|
|
'Glenpool', |
5636
|
|
|
|
|
|
|
'Glenrock', |
5637
|
|
|
|
|
|
|
'Glens Falls', |
5638
|
|
|
|
|
|
|
'Glens Falls North', |
5639
|
|
|
|
|
|
|
'Glenside', |
5640
|
|
|
|
|
|
|
'Glenvar Heights', |
5641
|
|
|
|
|
|
|
'Glenview', |
5642
|
|
|
|
|
|
|
'Glenview Hills', |
5643
|
|
|
|
|
|
|
'Glenview Manor', |
5644
|
|
|
|
|
|
|
'Glenvil', |
5645
|
|
|
|
|
|
|
'Glenville', |
5646
|
|
|
|
|
|
|
'Glenwillow', |
5647
|
|
|
|
|
|
|
'Glenwood', |
5648
|
|
|
|
|
|
|
'Glenwood City', |
5649
|
|
|
|
|
|
|
'Glenwood Landing', |
5650
|
|
|
|
|
|
|
'Glenwood Springs', |
5651
|
|
|
|
|
|
|
'Glidden', |
5652
|
|
|
|
|
|
|
'Glide', |
5653
|
|
|
|
|
|
|
'Globe', |
5654
|
|
|
|
|
|
|
'Gloria Glens Park', |
5655
|
|
|
|
|
|
|
'Glorieta', |
5656
|
|
|
|
|
|
|
'Gloster', |
5657
|
|
|
|
|
|
|
'Gloucester', |
5658
|
|
|
|
|
|
|
'Gloucester City', |
5659
|
|
|
|
|
|
|
'Gloucester Courthouse', |
5660
|
|
|
|
|
|
|
'Gloucester Point', |
5661
|
|
|
|
|
|
|
'Glouster', |
5662
|
|
|
|
|
|
|
'Gloversville', |
5663
|
|
|
|
|
|
|
'Gloverville', |
5664
|
|
|
|
|
|
|
'Glyndon', |
5665
|
|
|
|
|
|
|
'Gnadenhutten', |
5666
|
|
|
|
|
|
|
'Gobles', |
5667
|
|
|
|
|
|
|
'Goddard', |
5668
|
|
|
|
|
|
|
'Godfrey', |
5669
|
|
|
|
|
|
|
'Godfrey Road', |
5670
|
|
|
|
|
|
|
'Godley', |
5671
|
|
|
|
|
|
|
'Godwin', |
5672
|
|
|
|
|
|
|
'Goehner', |
5673
|
|
|
|
|
|
|
'Goessel', |
5674
|
|
|
|
|
|
|
'Goff', |
5675
|
|
|
|
|
|
|
'Golconda', |
5676
|
|
|
|
|
|
|
'Gold Bar', |
5677
|
|
|
|
|
|
|
'Gold Beach', |
5678
|
|
|
|
|
|
|
'Gold Camp', |
5679
|
|
|
|
|
|
|
'Gold Hill', |
5680
|
|
|
|
|
|
|
'Gold River', |
5681
|
|
|
|
|
|
|
'Golden', |
5682
|
|
|
|
|
|
|
'Golden Beach', |
5683
|
|
|
|
|
|
|
'Golden City', |
5684
|
|
|
|
|
|
|
'Golden Gate', |
5685
|
|
|
|
|
|
|
'Golden Glades', |
5686
|
|
|
|
|
|
|
'Golden Grove', |
5687
|
|
|
|
|
|
|
'Golden Heights', |
5688
|
|
|
|
|
|
|
'Golden Hills', |
5689
|
|
|
|
|
|
|
'Golden Lakes', |
5690
|
|
|
|
|
|
|
'Golden Meadow', |
5691
|
|
|
|
|
|
|
'Golden Triangle', |
5692
|
|
|
|
|
|
|
'Golden Valley', |
5693
|
|
|
|
|
|
|
'Golden\'s Bridge', |
5694
|
|
|
|
|
|
|
'Goldendale', |
5695
|
|
|
|
|
|
|
'Goldenrod', |
5696
|
|
|
|
|
|
|
'Goldfield', |
5697
|
|
|
|
|
|
|
'Goldonna', |
5698
|
|
|
|
|
|
|
'Goldsboro', |
5699
|
|
|
|
|
|
|
'Goldsby', |
5700
|
|
|
|
|
|
|
'Goldsmith', |
5701
|
|
|
|
|
|
|
'Goldston', |
5702
|
|
|
|
|
|
|
'Goldthwaite', |
5703
|
|
|
|
|
|
|
'Goldville', |
5704
|
|
|
|
|
|
|
'Goleta', |
5705
|
|
|
|
|
|
|
'Golf', |
5706
|
|
|
|
|
|
|
'Golf Manor', |
5707
|
|
|
|
|
|
|
'Goliad', |
5708
|
|
|
|
|
|
|
'Golinda', |
5709
|
|
|
|
|
|
|
'Golovin', |
5710
|
|
|
|
|
|
|
'Goltry', |
5711
|
|
|
|
|
|
|
'Golva', |
5712
|
|
|
|
|
|
|
'Gonvick', |
5713
|
|
|
|
|
|
|
'Gonzales', |
5714
|
|
|
|
|
|
|
'Gonzalez', |
5715
|
|
|
|
|
|
|
'Good Hope', |
5716
|
|
|
|
|
|
|
'Good Thunder', |
5717
|
|
|
|
|
|
|
'Goodell', |
5718
|
|
|
|
|
|
|
'Goodfield', |
5719
|
|
|
|
|
|
|
'Goodhue', |
5720
|
|
|
|
|
|
|
'Gooding', |
5721
|
|
|
|
|
|
|
'Goodings Grove', |
5722
|
|
|
|
|
|
|
'Goodland', |
5723
|
|
|
|
|
|
|
'Goodlettsville', |
5724
|
|
|
|
|
|
|
'Goodlow', |
5725
|
|
|
|
|
|
|
'Goodman', |
5726
|
|
|
|
|
|
|
'Goodnews Bay', |
5727
|
|
|
|
|
|
|
'Goodrich', |
5728
|
|
|
|
|
|
|
'Goodridge', |
5729
|
|
|
|
|
|
|
'Goodsprings', |
5730
|
|
|
|
|
|
|
'Goodview', |
5731
|
|
|
|
|
|
|
'Goodwater', |
5732
|
|
|
|
|
|
|
'Goodwell', |
5733
|
|
|
|
|
|
|
'Goodwin', |
5734
|
|
|
|
|
|
|
'Goodyear', |
5735
|
|
|
|
|
|
|
'Goose Creek', |
5736
|
|
|
|
|
|
|
'Goose Lake', |
5737
|
|
|
|
|
|
|
'Gopher Flats', |
5738
|
|
|
|
|
|
|
'Gordo', |
5739
|
|
|
|
|
|
|
'Gordon', |
5740
|
|
|
|
|
|
|
'Gordon Heights', |
5741
|
|
|
|
|
|
|
'Gordonsville', |
5742
|
|
|
|
|
|
|
'Gordonville', |
5743
|
|
|
|
|
|
|
'Gore', |
5744
|
|
|
|
|
|
|
'Goree', |
5745
|
|
|
|
|
|
|
'Goreville', |
5746
|
|
|
|
|
|
|
'Gorham', |
5747
|
|
|
|
|
|
|
'Gorman', |
5748
|
|
|
|
|
|
|
'Goshen', |
5749
|
|
|
|
|
|
|
'Gosnell', |
5750
|
|
|
|
|
|
|
'Gosport', |
5751
|
|
|
|
|
|
|
'Gotebo', |
5752
|
|
|
|
|
|
|
'Gotha', |
5753
|
|
|
|
|
|
|
'Gothenburg', |
5754
|
|
|
|
|
|
|
'Gould', |
5755
|
|
|
|
|
|
|
'Goulding', |
5756
|
|
|
|
|
|
|
'Goulds', |
5757
|
|
|
|
|
|
|
'Gouverneur', |
5758
|
|
|
|
|
|
|
'Govan', |
5759
|
|
|
|
|
|
|
'Gove City', |
5760
|
|
|
|
|
|
|
'Gowanda', |
5761
|
|
|
|
|
|
|
'Gower', |
5762
|
|
|
|
|
|
|
'Gowrie', |
5763
|
|
|
|
|
|
|
'Grabill', |
5764
|
|
|
|
|
|
|
'Grace', |
5765
|
|
|
|
|
|
|
'Grace City', |
5766
|
|
|
|
|
|
|
'Gracemont', |
5767
|
|
|
|
|
|
|
'Graceville', |
5768
|
|
|
|
|
|
|
'Grady', |
5769
|
|
|
|
|
|
|
'Graeagle', |
5770
|
|
|
|
|
|
|
'Graettinger', |
5771
|
|
|
|
|
|
|
'Graf', |
5772
|
|
|
|
|
|
|
'Graford', |
5773
|
|
|
|
|
|
|
'Grafton', |
5774
|
|
|
|
|
|
|
'Graham', |
5775
|
|
|
|
|
|
|
'Grain Valley', |
5776
|
|
|
|
|
|
|
'Grainfield', |
5777
|
|
|
|
|
|
|
'Grainola', |
5778
|
|
|
|
|
|
|
'Grambling', |
5779
|
|
|
|
|
|
|
'Gramercy', |
5780
|
|
|
|
|
|
|
'Grampian', |
5781
|
|
|
|
|
|
|
'Granada', |
5782
|
|
|
|
|
|
|
'Granbury', |
5783
|
|
|
|
|
|
|
'Granby', |
5784
|
|
|
|
|
|
|
'Grand Acres', |
5785
|
|
|
|
|
|
|
'Grand Bay', |
5786
|
|
|
|
|
|
|
'Grand Beach', |
5787
|
|
|
|
|
|
|
'Grand Blanc', |
5788
|
|
|
|
|
|
|
'Grand Cane', |
5789
|
|
|
|
|
|
|
'Grand Canyon Village', |
5790
|
|
|
|
|
|
|
'Grand Coteau', |
5791
|
|
|
|
|
|
|
'Grand Coulee', |
5792
|
|
|
|
|
|
|
'Grand Encampment', |
5793
|
|
|
|
|
|
|
'Grand Falls Plaza', |
5794
|
|
|
|
|
|
|
'Grand Forks', |
5795
|
|
|
|
|
|
|
'Grand Forks AFB', |
5796
|
|
|
|
|
|
|
'Grand Haven', |
5797
|
|
|
|
|
|
|
'Grand Island', |
5798
|
|
|
|
|
|
|
'Grand Isle', |
5799
|
|
|
|
|
|
|
'Grand Junction', |
5800
|
|
|
|
|
|
|
'Grand Lake', |
5801
|
|
|
|
|
|
|
'Grand Lake Towne', |
5802
|
|
|
|
|
|
|
'Grand Ledge', |
5803
|
|
|
|
|
|
|
'Grand Marais', |
5804
|
|
|
|
|
|
|
'Grand Meadow', |
5805
|
|
|
|
|
|
|
'Grand Mound', |
5806
|
|
|
|
|
|
|
'Grand Pass', |
5807
|
|
|
|
|
|
|
'Grand Prairie', |
5808
|
|
|
|
|
|
|
'Grand Rapids', |
5809
|
|
|
|
|
|
|
'Grand Ridge', |
5810
|
|
|
|
|
|
|
'Grand River', |
5811
|
|
|
|
|
|
|
'Grand Rivers', |
5812
|
|
|
|
|
|
|
'Grand Ronde', |
5813
|
|
|
|
|
|
|
'Grand Saline', |
5814
|
|
|
|
|
|
|
'Grand Terrace', |
5815
|
|
|
|
|
|
|
'Grand Tower', |
5816
|
|
|
|
|
|
|
'Grand View', |
5817
|
|
|
|
|
|
|
'Grand View Estates', |
5818
|
|
|
|
|
|
|
'Grand View-on-Hudson', |
5819
|
|
|
|
|
|
|
'Grandfalls', |
5820
|
|
|
|
|
|
|
'Grandfather', |
5821
|
|
|
|
|
|
|
'Grandfield', |
5822
|
|
|
|
|
|
|
'Grandin', |
5823
|
|
|
|
|
|
|
'Grandview', |
5824
|
|
|
|
|
|
|
'Grandview Heights', |
5825
|
|
|
|
|
|
|
'Grandview Plaza', |
5826
|
|
|
|
|
|
|
'Grandville', |
5827
|
|
|
|
|
|
|
'Grandwood Park', |
5828
|
|
|
|
|
|
|
'Granger', |
5829
|
|
|
|
|
|
|
'Grangeville', |
5830
|
|
|
|
|
|
|
'Granite', |
5831
|
|
|
|
|
|
|
'Granite Bay', |
5832
|
|
|
|
|
|
|
'Granite City', |
5833
|
|
|
|
|
|
|
'Granite Falls', |
5834
|
|
|
|
|
|
|
'Granite Hills', |
5835
|
|
|
|
|
|
|
'Granite Quarry', |
5836
|
|
|
|
|
|
|
'Granite Shoals', |
5837
|
|
|
|
|
|
|
'Graniteville-East Barre', |
5838
|
|
|
|
|
|
|
'Granjeno', |
5839
|
|
|
|
|
|
|
'Grannis', |
5840
|
|
|
|
|
|
|
'Grano', |
5841
|
|
|
|
|
|
|
'Grant', |
5842
|
|
|
|
|
|
|
'Grant City', |
5843
|
|
|
|
|
|
|
'Grant Park', |
5844
|
|
|
|
|
|
|
'Grant Town', |
5845
|
|
|
|
|
|
|
'Grantfork', |
5846
|
|
|
|
|
|
|
'Grantley', |
5847
|
|
|
|
|
|
|
'Granton', |
5848
|
|
|
|
|
|
|
'Grants', |
5849
|
|
|
|
|
|
|
'Grants Pass', |
5850
|
|
|
|
|
|
|
'Grantsburg', |
5851
|
|
|
|
|
|
|
'Grantsville', |
5852
|
|
|
|
|
|
|
'Grantville', |
5853
|
|
|
|
|
|
|
'Grantwood Village', |
5854
|
|
|
|
|
|
|
'Granville', |
5855
|
|
|
|
|
|
|
'Granville South', |
5856
|
|
|
|
|
|
|
'Grape Creek', |
5857
|
|
|
|
|
|
|
'Grapeland', |
5858
|
|
|
|
|
|
|
'Grapeville', |
5859
|
|
|
|
|
|
|
'Grapevine', |
5860
|
|
|
|
|
|
|
'Grasonville', |
5861
|
|
|
|
|
|
|
'Grass Lake', |
5862
|
|
|
|
|
|
|
'Grass Range', |
5863
|
|
|
|
|
|
|
'Grass Valley', |
5864
|
|
|
|
|
|
|
'Grasston', |
5865
|
|
|
|
|
|
|
'Gratiot', |
5866
|
|
|
|
|
|
|
'Gratis', |
5867
|
|
|
|
|
|
|
'Graton', |
5868
|
|
|
|
|
|
|
'Gratz', |
5869
|
|
|
|
|
|
|
'Gravel Ridge', |
5870
|
|
|
|
|
|
|
'Gravette', |
5871
|
|
|
|
|
|
|
'Gravity', |
5872
|
|
|
|
|
|
|
'Gravois Mills', |
5873
|
|
|
|
|
|
|
'Gray', |
5874
|
|
|
|
|
|
|
'Gray Court', |
5875
|
|
|
|
|
|
|
'Gray Summit', |
5876
|
|
|
|
|
|
|
'Grayland', |
5877
|
|
|
|
|
|
|
'Grayling', |
5878
|
|
|
|
|
|
|
'Graymoor-Devondale', |
5879
|
|
|
|
|
|
|
'Grays Prairie', |
5880
|
|
|
|
|
|
|
'Grayslake', |
5881
|
|
|
|
|
|
|
'Grayson', |
5882
|
|
|
|
|
|
|
'Grayson Valley', |
5883
|
|
|
|
|
|
|
'Graysville', |
5884
|
|
|
|
|
|
|
'Grayville', |
5885
|
|
|
|
|
|
|
'Greasewood', |
5886
|
|
|
|
|
|
|
'Greasy', |
5887
|
|
|
|
|
|
|
'Great Barrington', |
5888
|
|
|
|
|
|
|
'Great Bend', |
5889
|
|
|
|
|
|
|
'Great Falls', |
5890
|
|
|
|
|
|
|
'Great Meadows-Vienna', |
5891
|
|
|
|
|
|
|
'Great Neck', |
5892
|
|
|
|
|
|
|
'Great Neck Estates', |
5893
|
|
|
|
|
|
|
'Great Neck Gardens', |
5894
|
|
|
|
|
|
|
'Great Neck Plaza', |
5895
|
|
|
|
|
|
|
'Great River', |
5896
|
|
|
|
|
|
|
'Greater Carrollwood', |
5897
|
|
|
|
|
|
|
'Greater Galesburg', |
5898
|
|
|
|
|
|
|
'Greater Landover', |
5899
|
|
|
|
|
|
|
'Greater Northdale', |
5900
|
|
|
|
|
|
|
'Greater Sun Center', |
5901
|
|
|
|
|
|
|
'Greater Upper Marlboro', |
5902
|
|
|
|
|
|
|
'Greatwood', |
5903
|
|
|
|
|
|
|
'Greece', |
5904
|
|
|
|
|
|
|
'Greeley', |
5905
|
|
|
|
|
|
|
'Greeley Center', |
5906
|
|
|
|
|
|
|
'Greeleyville', |
5907
|
|
|
|
|
|
|
'Green', |
5908
|
|
|
|
|
|
|
'Green Acres', |
5909
|
|
|
|
|
|
|
'Green Bay', |
5910
|
|
|
|
|
|
|
'Green Camp', |
5911
|
|
|
|
|
|
|
'Green City', |
5912
|
|
|
|
|
|
|
'Green Cove Springs', |
5913
|
|
|
|
|
|
|
'Green Forest', |
5914
|
|
|
|
|
|
|
'Green Grass', |
5915
|
|
|
|
|
|
|
'Green Harbor-Cedar Crest', |
5916
|
|
|
|
|
|
|
'Green Haven', |
5917
|
|
|
|
|
|
|
'Green Hill', |
5918
|
|
|
|
|
|
|
'Green Hills', |
5919
|
|
|
|
|
|
|
'Green Island', |
5920
|
|
|
|
|
|
|
'Green Isle', |
5921
|
|
|
|
|
|
|
'Green Lake', |
5922
|
|
|
|
|
|
|
'Green Lane', |
5923
|
|
|
|
|
|
|
'Green Level', |
5924
|
|
|
|
|
|
|
'Green Meadow', |
5925
|
|
|
|
|
|
|
'Green Meadows', |
5926
|
|
|
|
|
|
|
'Green Mountain Falls', |
5927
|
|
|
|
|
|
|
'Green Oaks', |
5928
|
|
|
|
|
|
|
'Green Park', |
5929
|
|
|
|
|
|
|
'Green Ridge', |
5930
|
|
|
|
|
|
|
'Green River', |
5931
|
|
|
|
|
|
|
'Green Spring', |
5932
|
|
|
|
|
|
|
'Green Springs', |
5933
|
|
|
|
|
|
|
'Green Tree', |
5934
|
|
|
|
|
|
|
'Green Valley', |
5935
|
|
|
|
|
|
|
'Green Valley Farms', |
5936
|
|
|
|
|
|
|
'Greenacres', |
5937
|
|
|
|
|
|
|
'Greenback', |
5938
|
|
|
|
|
|
|
'Greenbelt', |
5939
|
|
|
|
|
|
|
'Greenbrier', |
5940
|
|
|
|
|
|
|
'Greenbush', |
5941
|
|
|
|
|
|
|
'Greencastle', |
5942
|
|
|
|
|
|
|
'Greendale', |
5943
|
|
|
|
|
|
|
'Greene', |
5944
|
|
|
|
|
|
|
'Greenevers', |
5945
|
|
|
|
|
|
|
'Greeneville', |
5946
|
|
|
|
|
|
|
'Greenfield', |
5947
|
|
|
|
|
|
|
'Greenhills', |
5948
|
|
|
|
|
|
|
'Greenhorn', |
5949
|
|
|
|
|
|
|
'Greenland', |
5950
|
|
|
|
|
|
|
'Greenlawn', |
5951
|
|
|
|
|
|
|
'Greenleaf', |
5952
|
|
|
|
|
|
|
'Greenport', |
5953
|
|
|
|
|
|
|
'Greenport West', |
5954
|
|
|
|
|
|
|
'Greens Fork', |
5955
|
|
|
|
|
|
|
'Greensboro', |
5956
|
|
|
|
|
|
|
'Greensburg', |
5957
|
|
|
|
|
|
|
'Greentop', |
5958
|
|
|
|
|
|
|
'Greentown', |
5959
|
|
|
|
|
|
|
'Greentree', |
5960
|
|
|
|
|
|
|
'Greenup', |
5961
|
|
|
|
|
|
|
'Greenvale', |
5962
|
|
|
|
|
|
|
'Greenview', |
5963
|
|
|
|
|
|
|
'Greenville', |
5964
|
|
|
|
|
|
|
'Greenwald', |
5965
|
|
|
|
|
|
|
'Greenwater', |
5966
|
|
|
|
|
|
|
'Greenway', |
5967
|
|
|
|
|
|
|
'Greenwich', |
5968
|
|
|
|
|
|
|
'Greenwood', |
5969
|
|
|
|
|
|
|
'Greenwood Lake', |
5970
|
|
|
|
|
|
|
'Greenwood Village', |
5971
|
|
|
|
|
|
|
'Greer', |
5972
|
|
|
|
|
|
|
'Greers Ferry', |
5973
|
|
|
|
|
|
|
'Gregory', |
5974
|
|
|
|
|
|
|
'Greilickville', |
5975
|
|
|
|
|
|
|
'Grenada', |
5976
|
|
|
|
|
|
|
'Grenola', |
5977
|
|
|
|
|
|
|
'Grenora', |
5978
|
|
|
|
|
|
|
'Grenville', |
5979
|
|
|
|
|
|
|
'Gresham', |
5980
|
|
|
|
|
|
|
'Gresham Park', |
5981
|
|
|
|
|
|
|
'Gretna', |
5982
|
|
|
|
|
|
|
'Grey Eagle', |
5983
|
|
|
|
|
|
|
'Grey Forest', |
5984
|
|
|
|
|
|
|
'Greybull', |
5985
|
|
|
|
|
|
|
'Greycliff', |
5986
|
|
|
|
|
|
|
'Gridley', |
5987
|
|
|
|
|
|
|
'Grier City-Park Crest', |
5988
|
|
|
|
|
|
|
'Griffin', |
5989
|
|
|
|
|
|
|
'Griffith', |
5990
|
|
|
|
|
|
|
'Griffithville', |
5991
|
|
|
|
|
|
|
'Grifton', |
5992
|
|
|
|
|
|
|
'Griggsville', |
5993
|
|
|
|
|
|
|
'Grimes', |
5994
|
|
|
|
|
|
|
'Grimesland', |
5995
|
|
|
|
|
|
|
'Grindstone-Rowes Run', |
5996
|
|
|
|
|
|
|
'Grinnell', |
5997
|
|
|
|
|
|
|
'Grissom AFB', |
5998
|
|
|
|
|
|
|
'Griswold', |
5999
|
|
|
|
|
|
|
'Groesbeck', |
6000
|
|
|
|
|
|
|
'Groom', |
6001
|
|
|
|
|
|
|
'Gross', |
6002
|
|
|
|
|
|
|
'Grosse Ile', |
6003
|
|
|
|
|
|
|
'Grosse Pointe', |
6004
|
|
|
|
|
|
|
'Grosse Pointe Farms', |
6005
|
|
|
|
|
|
|
'Grosse Pointe Park', |
6006
|
|
|
|
|
|
|
'Grosse Pointe Shores', |
6007
|
|
|
|
|
|
|
'Grosse Pointe Woods', |
6008
|
|
|
|
|
|
|
'Grosse Tete', |
6009
|
|
|
|
|
|
|
'Groton', |
6010
|
|
|
|
|
|
|
'Groton Long Point', |
6011
|
|
|
|
|
|
|
'Grottoes', |
6012
|
|
|
|
|
|
|
'Grove', |
6013
|
|
|
|
|
|
|
'Grove City', |
6014
|
|
|
|
|
|
|
'Grove Hill', |
6015
|
|
|
|
|
|
|
'Groveland', |
6016
|
|
|
|
|
|
|
'Groveland-Big Oak Flat', |
6017
|
|
|
|
|
|
|
'Groveport', |
6018
|
|
|
|
|
|
|
'Grover', |
6019
|
|
|
|
|
|
|
'Grover Beach', |
6020
|
|
|
|
|
|
|
'Grover Hill', |
6021
|
|
|
|
|
|
|
'Groves', |
6022
|
|
|
|
|
|
|
'Groveton', |
6023
|
|
|
|
|
|
|
'Grovetown', |
6024
|
|
|
|
|
|
|
'Grubbs', |
6025
|
|
|
|
|
|
|
'Gruetli-Laager', |
6026
|
|
|
|
|
|
|
'Grundy', |
6027
|
|
|
|
|
|
|
'Grundy Center', |
6028
|
|
|
|
|
|
|
'Gruver', |
6029
|
|
|
|
|
|
|
'Grygla', |
6030
|
|
|
|
|
|
|
'Gu-Win', |
6031
|
|
|
|
|
|
|
'Guadalupe', |
6032
|
|
|
|
|
|
|
'Guayabal', |
6033
|
|
|
|
|
|
|
'Guayama', |
6034
|
|
|
|
|
|
|
'Guayanilla', |
6035
|
|
|
|
|
|
|
'Guaynabo', |
6036
|
|
|
|
|
|
|
'Guerneville', |
6037
|
|
|
|
|
|
|
'Guernsey', |
6038
|
|
|
|
|
|
|
'Guerra', |
6039
|
|
|
|
|
|
|
'Gueydan', |
6040
|
|
|
|
|
|
|
'Guide Rock', |
6041
|
|
|
|
|
|
|
'Guilford', |
6042
|
|
|
|
|
|
|
'Guilford Center', |
6043
|
|
|
|
|
|
|
'Guin', |
6044
|
|
|
|
|
|
|
'Guion', |
6045
|
|
|
|
|
|
|
'Gulf Breeze', |
6046
|
|
|
|
|
|
|
'Gulf Gate Estates', |
6047
|
|
|
|
|
|
|
'Gulf Hills', |
6048
|
|
|
|
|
|
|
'Gulf Park Estates', |
6049
|
|
|
|
|
|
|
'Gulf Port', |
6050
|
|
|
|
|
|
|
'Gulf Shores', |
6051
|
|
|
|
|
|
|
'Gulf Stream', |
6052
|
|
|
|
|
|
|
'Gulfport', |
6053
|
|
|
|
|
|
|
'Gulivoire Park', |
6054
|
|
|
|
|
|
|
'Gulkana', |
6055
|
|
|
|
|
|
|
'Gully', |
6056
|
|
|
|
|
|
|
'Gum Springs', |
6057
|
|
|
|
|
|
|
'Gumbranch', |
6058
|
|
|
|
|
|
|
'Gumlog', |
6059
|
|
|
|
|
|
|
'Gun Barrel City', |
6060
|
|
|
|
|
|
|
'Gun Club Estates', |
6061
|
|
|
|
|
|
|
'Gunbarrel', |
6062
|
|
|
|
|
|
|
'Gunn City', |
6063
|
|
|
|
|
|
|
'Gunnison', |
6064
|
|
|
|
|
|
|
'Gunter', |
6065
|
|
|
|
|
|
|
'Guntersville', |
6066
|
|
|
|
|
|
|
'Guntown', |
6067
|
|
|
|
|
|
|
'Gurabo', |
6068
|
|
|
|
|
|
|
'Gurdon', |
6069
|
|
|
|
|
|
|
'Gurley', |
6070
|
|
|
|
|
|
|
'Gurnee', |
6071
|
|
|
|
|
|
|
'Gustavus', |
6072
|
|
|
|
|
|
|
'Gustine', |
6073
|
|
|
|
|
|
|
'Guthrie', |
6074
|
|
|
|
|
|
|
'Guthrie Center', |
6075
|
|
|
|
|
|
|
'Guttenberg', |
6076
|
|
|
|
|
|
|
'Guy', |
6077
|
|
|
|
|
|
|
'Guymon', |
6078
|
|
|
|
|
|
|
'Guys', |
6079
|
|
|
|
|
|
|
'Guys Mills', |
6080
|
|
|
|
|
|
|
'Guyton', |
6081
|
|
|
|
|
|
|
'Guánica', |
6082
|
|
|
|
|
|
|
'Gwinn', |
6083
|
|
|
|
|
|
|
'Gwinner', |
6084
|
|
|
|
|
|
|
'Gypsum', |
6085
|
|
|
|
|
|
|
'H. Rivera Colón', |
6086
|
|
|
|
|
|
|
'Hacienda Heights', |
6087
|
|
|
|
|
|
|
'Hackberry', |
6088
|
|
|
|
|
|
|
'Hackensack', |
6089
|
|
|
|
|
|
|
'Hackett', |
6090
|
|
|
|
|
|
|
'Hackettstown', |
6091
|
|
|
|
|
|
|
'Hackleburg', |
6092
|
|
|
|
|
|
|
'Hadar', |
6093
|
|
|
|
|
|
|
'Haddam', |
6094
|
|
|
|
|
|
|
'Haddon Heights', |
6095
|
|
|
|
|
|
|
'Haddonfield', |
6096
|
|
|
|
|
|
|
'Hadley', |
6097
|
|
|
|
|
|
|
'Hagaman', |
6098
|
|
|
|
|
|
|
'Hagan', |
6099
|
|
|
|
|
|
|
'Hagerman', |
6100
|
|
|
|
|
|
|
'Hagerstown', |
6101
|
|
|
|
|
|
|
'Hague', |
6102
|
|
|
|
|
|
|
'Hahira', |
6103
|
|
|
|
|
|
|
'Hahnville', |
6104
|
|
|
|
|
|
|
'Haigler', |
6105
|
|
|
|
|
|
|
'Haiku-Pauwela', |
6106
|
|
|
|
|
|
|
'Hailey', |
6107
|
|
|
|
|
|
|
'Haileyville', |
6108
|
|
|
|
|
|
|
'Haines', |
6109
|
|
|
|
|
|
|
'Haines City', |
6110
|
|
|
|
|
|
|
'Hainesville', |
6111
|
|
|
|
|
|
|
'Halaula', |
6112
|
|
|
|
|
|
|
'Halawa', |
6113
|
|
|
|
|
|
|
'Halbur', |
6114
|
|
|
|
|
|
|
'Halchita', |
6115
|
|
|
|
|
|
|
'Hale', |
6116
|
|
|
|
|
|
|
'Hale Center', |
6117
|
|
|
|
|
|
|
'Haleburg', |
6118
|
|
|
|
|
|
|
'Haledon', |
6119
|
|
|
|
|
|
|
'Haleiwa', |
6120
|
|
|
|
|
|
|
'Hales Corners', |
6121
|
|
|
|
|
|
|
'Halesite', |
6122
|
|
|
|
|
|
|
'Haleyville', |
6123
|
|
|
|
|
|
|
'Half Moon', |
6124
|
|
|
|
|
|
|
'Half Moon Bay', |
6125
|
|
|
|
|
|
|
'Halfway', |
6126
|
|
|
|
|
|
|
'Halfway House', |
6127
|
|
|
|
|
|
|
'Halibut Cove', |
6128
|
|
|
|
|
|
|
'Halifax', |
6129
|
|
|
|
|
|
|
'Haliimaile', |
6130
|
|
|
|
|
|
|
'Hall Park', |
6131
|
|
|
|
|
|
|
'Hall Summit', |
6132
|
|
|
|
|
|
|
'Hallam', |
6133
|
|
|
|
|
|
|
'Hallandale', |
6134
|
|
|
|
|
|
|
'Hallett', |
6135
|
|
|
|
|
|
|
'Hallettsville', |
6136
|
|
|
|
|
|
|
'Halliday', |
6137
|
|
|
|
|
|
|
'Hallock', |
6138
|
|
|
|
|
|
|
'Hallowell', |
6139
|
|
|
|
|
|
|
'Halls', |
6140
|
|
|
|
|
|
|
'Halls Crossing', |
6141
|
|
|
|
|
|
|
'Hallsburg', |
6142
|
|
|
|
|
|
|
'Hallstead', |
6143
|
|
|
|
|
|
|
'Hallsville', |
6144
|
|
|
|
|
|
|
'Halltown', |
6145
|
|
|
|
|
|
|
'Hallwood', |
6146
|
|
|
|
|
|
|
'Halma', |
6147
|
|
|
|
|
|
|
'Halsey', |
6148
|
|
|
|
|
|
|
'Halstad', |
6149
|
|
|
|
|
|
|
'Halstead', |
6150
|
|
|
|
|
|
|
'Haltom City', |
6151
|
|
|
|
|
|
|
'Ham Lake', |
6152
|
|
|
|
|
|
|
'Hamberg', |
6153
|
|
|
|
|
|
|
'Hambleton', |
6154
|
|
|
|
|
|
|
'Hamburg', |
6155
|
|
|
|
|
|
|
'Hamden', |
6156
|
|
|
|
|
|
|
'Hamel', |
6157
|
|
|
|
|
|
|
'Hamer', |
6158
|
|
|
|
|
|
|
'Hamersville', |
6159
|
|
|
|
|
|
|
'Hamill', |
6160
|
|
|
|
|
|
|
'Hamilton', |
6161
|
|
|
|
|
|
|
'Hamilton Branch', |
6162
|
|
|
|
|
|
|
'Hamilton City', |
6163
|
|
|
|
|
|
|
'Hamler', |
6164
|
|
|
|
|
|
|
'Hamlet', |
6165
|
|
|
|
|
|
|
'Hamlin', |
6166
|
|
|
|
|
|
|
'Hammon', |
6167
|
|
|
|
|
|
|
'Hammond', |
6168
|
|
|
|
|
|
|
'Hammondsport', |
6169
|
|
|
|
|
|
|
'Hammondville', |
6170
|
|
|
|
|
|
|
'Hammonton', |
6171
|
|
|
|
|
|
|
'Hampden', |
6172
|
|
|
|
|
|
|
'Hampden Sydney', |
6173
|
|
|
|
|
|
|
'Hampshire', |
6174
|
|
|
|
|
|
|
'Hampstead', |
6175
|
|
|
|
|
|
|
'Hampton', |
6176
|
|
|
|
|
|
|
'Hampton Bays', |
6177
|
|
|
|
|
|
|
'Hampton Manor', |
6178
|
|
|
|
|
|
|
'Hampton Township', |
6179
|
|
|
|
|
|
|
'Hamptons at Boca Raton', |
6180
|
|
|
|
|
|
|
'Hamtramck', |
6181
|
|
|
|
|
|
|
'Hana', |
6182
|
|
|
|
|
|
|
'Hanaford', |
6183
|
|
|
|
|
|
|
'Hanahan', |
6184
|
|
|
|
|
|
|
'Hanalei', |
6185
|
|
|
|
|
|
|
'Hanamaulu', |
6186
|
|
|
|
|
|
|
'Hanapepe', |
6187
|
|
|
|
|
|
|
'Hanceville', |
6188
|
|
|
|
|
|
|
'Hancock', |
6189
|
|
|
|
|
|
|
'Handley', |
6190
|
|
|
|
|
|
|
'Hanford', |
6191
|
|
|
|
|
|
|
'Hanging Rock', |
6192
|
|
|
|
|
|
|
'Hankinson', |
6193
|
|
|
|
|
|
|
'Hanley Falls', |
6194
|
|
|
|
|
|
|
'Hanley Hills', |
6195
|
|
|
|
|
|
|
'Hanlontown', |
6196
|
|
|
|
|
|
|
'Hanna', |
6197
|
|
|
|
|
|
|
'Hanna City', |
6198
|
|
|
|
|
|
|
'Hannaford', |
6199
|
|
|
|
|
|
|
'Hannah', |
6200
|
|
|
|
|
|
|
'Hannahs Mill', |
6201
|
|
|
|
|
|
|
'Hannibal', |
6202
|
|
|
|
|
|
|
'Hanover', |
6203
|
|
|
|
|
|
|
'Hanover Park', |
6204
|
|
|
|
|
|
|
'Hanoverton', |
6205
|
|
|
|
|
|
|
'Hansboro', |
6206
|
|
|
|
|
|
|
'Hansell', |
6207
|
|
|
|
|
|
|
'Hansen', |
6208
|
|
|
|
|
|
|
'Hanska', |
6209
|
|
|
|
|
|
|
'Hanson', |
6210
|
|
|
|
|
|
|
'Hanston', |
6211
|
|
|
|
|
|
|
'Hapeville', |
6212
|
|
|
|
|
|
|
'Happy', |
6213
|
|
|
|
|
|
|
'Happy Valley', |
6214
|
|
|
|
|
|
|
'Harahan', |
6215
|
|
|
|
|
|
|
'Haralson', |
6216
|
|
|
|
|
|
|
'Harbeck-Fruitdale', |
6217
|
|
|
|
|
|
|
'Harbine', |
6218
|
|
|
|
|
|
|
'Harbison Canyon', |
6219
|
|
|
|
|
|
|
'Harbor', |
6220
|
|
|
|
|
|
|
'Harbor Beach', |
6221
|
|
|
|
|
|
|
'Harbor Bluffs', |
6222
|
|
|
|
|
|
|
'Harbor Hills', |
6223
|
|
|
|
|
|
|
'Harbor Isle', |
6224
|
|
|
|
|
|
|
'Harbor Springs', |
6225
|
|
|
|
|
|
|
'Harbor View', |
6226
|
|
|
|
|
|
|
'Harbour Heights', |
6227
|
|
|
|
|
|
|
'Harcourt', |
6228
|
|
|
|
|
|
|
'Hardeeville', |
6229
|
|
|
|
|
|
|
'Hardesty', |
6230
|
|
|
|
|
|
|
'Hardin', |
6231
|
|
|
|
|
|
|
'Harding', |
6232
|
|
|
|
|
|
|
'Harding-Birch Lakes', |
6233
|
|
|
|
|
|
|
'Hardinsburg', |
6234
|
|
|
|
|
|
|
'Hardtner', |
6235
|
|
|
|
|
|
|
'Hardwick', |
6236
|
|
|
|
|
|
|
'Hardy', |
6237
|
|
|
|
|
|
|
'Harker Heights', |
6238
|
|
|
|
|
|
|
'Harkers Island', |
6239
|
|
|
|
|
|
|
'Harlan', |
6240
|
|
|
|
|
|
|
'Harlem', |
6241
|
|
|
|
|
|
|
'Harlem Heights', |
6242
|
|
|
|
|
|
|
'Harleysville', |
6243
|
|
|
|
|
|
|
'Harleyville', |
6244
|
|
|
|
|
|
|
'Harlingen', |
6245
|
|
|
|
|
|
|
'Harlowton', |
6246
|
|
|
|
|
|
|
'Harman', |
6247
|
|
|
|
|
|
|
'Harmon', |
6248
|
|
|
|
|
|
|
'Harmonsburg', |
6249
|
|
|
|
|
|
|
'Harmony', |
6250
|
|
|
|
|
|
|
'Harmony Township', |
6251
|
|
|
|
|
|
|
'Harper', |
6252
|
|
|
|
|
|
|
'Harper Woods', |
6253
|
|
|
|
|
|
|
'Harpers Ferry', |
6254
|
|
|
|
|
|
|
'Harpersville', |
6255
|
|
|
|
|
|
|
'Harpster', |
6256
|
|
|
|
|
|
|
'Harrah', |
6257
|
|
|
|
|
|
|
'Harrell', |
6258
|
|
|
|
|
|
|
'Harrells', |
6259
|
|
|
|
|
|
|
'Harrellsville', |
6260
|
|
|
|
|
|
|
'Harrietta', |
6261
|
|
|
|
|
|
|
'Harriman', |
6262
|
|
|
|
|
|
|
'Harrington', |
6263
|
|
|
|
|
|
|
'Harrington Park', |
6264
|
|
|
|
|
|
|
'Harris', |
6265
|
|
|
|
|
|
|
'Harris Hill', |
6266
|
|
|
|
|
|
|
'Harrisburg', |
6267
|
|
|
|
|
|
|
'Harrison', |
6268
|
|
|
|
|
|
|
'Harrison City', |
6269
|
|
|
|
|
|
|
'Harrison Township', |
6270
|
|
|
|
|
|
|
'Harrisonburg', |
6271
|
|
|
|
|
|
|
'Harrisonville', |
6272
|
|
|
|
|
|
|
'Harristown', |
6273
|
|
|
|
|
|
|
'Harrisville', |
6274
|
|
|
|
|
|
|
'Harrod', |
6275
|
|
|
|
|
|
|
'Harrodsburg', |
6276
|
|
|
|
|
|
|
'Harrogate-Shawanee', |
6277
|
|
|
|
|
|
|
'Harrold', |
6278
|
|
|
|
|
|
|
'Hart', |
6279
|
|
|
|
|
|
|
'Hartford', |
6280
|
|
|
|
|
|
|
'Hartford City', |
6281
|
|
|
|
|
|
|
'Hartington', |
6282
|
|
|
|
|
|
|
'Hartland', |
6283
|
|
|
|
|
|
|
'Hartleton', |
6284
|
|
|
|
|
|
|
'Hartley', |
6285
|
|
|
|
|
|
|
'Hartline', |
6286
|
|
|
|
|
|
|
'Hartly', |
6287
|
|
|
|
|
|
|
'Hartman', |
6288
|
|
|
|
|
|
|
'Hartrandt', |
6289
|
|
|
|
|
|
|
'Harts', |
6290
|
|
|
|
|
|
|
'Hartsburg', |
6291
|
|
|
|
|
|
|
'Hartsdale', |
6292
|
|
|
|
|
|
|
'Hartselle', |
6293
|
|
|
|
|
|
|
'Hartshorne', |
6294
|
|
|
|
|
|
|
'Hartstown', |
6295
|
|
|
|
|
|
|
'Hartsville', |
6296
|
|
|
|
|
|
|
'Hartville', |
6297
|
|
|
|
|
|
|
'Hartwell', |
6298
|
|
|
|
|
|
|
'Hartwick', |
6299
|
|
|
|
|
|
|
'Harvard', |
6300
|
|
|
|
|
|
|
'Harvel', |
6301
|
|
|
|
|
|
|
'Harvest', |
6302
|
|
|
|
|
|
|
'Harvey', |
6303
|
|
|
|
|
|
|
'Harvey Cedars', |
6304
|
|
|
|
|
|
|
'Harveys Lake', |
6305
|
|
|
|
|
|
|
'Harveysburg', |
6306
|
|
|
|
|
|
|
'Harveyville', |
6307
|
|
|
|
|
|
|
'Harwich Center', |
6308
|
|
|
|
|
|
|
'Harwich Port', |
6309
|
|
|
|
|
|
|
'Harwood', |
6310
|
|
|
|
|
|
|
'Harwood Heights', |
6311
|
|
|
|
|
|
|
'Hasbrouck Heights', |
6312
|
|
|
|
|
|
|
'Haskell', |
6313
|
|
|
|
|
|
|
'Haskins', |
6314
|
|
|
|
|
|
|
'Haslet', |
6315
|
|
|
|
|
|
|
'Haslett', |
6316
|
|
|
|
|
|
|
'Hassell', |
6317
|
|
|
|
|
|
|
'Hasson Heights', |
6318
|
|
|
|
|
|
|
'Hastings', |
6319
|
|
|
|
|
|
|
'Hastings-on-Hudson', |
6320
|
|
|
|
|
|
|
'Haswell', |
6321
|
|
|
|
|
|
|
'Hatboro', |
6322
|
|
|
|
|
|
|
'Hatch', |
6323
|
|
|
|
|
|
|
'Hatfield', |
6324
|
|
|
|
|
|
|
'Hatillo', |
6325
|
|
|
|
|
|
|
'Hatley', |
6326
|
|
|
|
|
|
|
'Hato Arriba', |
6327
|
|
|
|
|
|
|
'Hato Candal', |
6328
|
|
|
|
|
|
|
'Hattiesburg', |
6329
|
|
|
|
|
|
|
'Hatton', |
6330
|
|
|
|
|
|
|
'Haubstadt', |
6331
|
|
|
|
|
|
|
'Haugen', |
6332
|
|
|
|
|
|
|
'Haughton', |
6333
|
|
|
|
|
|
|
'Hauppauge', |
6334
|
|
|
|
|
|
|
'Hauser', |
6335
|
|
|
|
|
|
|
'Hauula', |
6336
|
|
|
|
|
|
|
'Havana', |
6337
|
|
|
|
|
|
|
'Havelock', |
6338
|
|
|
|
|
|
|
'Haven', |
6339
|
|
|
|
|
|
|
'Havensville', |
6340
|
|
|
|
|
|
|
'Haverhill', |
6341
|
|
|
|
|
|
|
'Haverstraw', |
6342
|
|
|
|
|
|
|
'Haviland', |
6343
|
|
|
|
|
|
|
'Havre', |
6344
|
|
|
|
|
|
|
'Havre North', |
6345
|
|
|
|
|
|
|
'Havre de Grace', |
6346
|
|
|
|
|
|
|
'Haw River', |
6347
|
|
|
|
|
|
|
'Hawaiian Acres', |
6348
|
|
|
|
|
|
|
'Hawaiian Beaches', |
6349
|
|
|
|
|
|
|
'Hawaiian Gardens', |
6350
|
|
|
|
|
|
|
'Hawaiian Ocean View', |
6351
|
|
|
|
|
|
|
'Hawaiian Paradise Park', |
6352
|
|
|
|
|
|
|
'Hawarden', |
6353
|
|
|
|
|
|
|
'Hawesville', |
6354
|
|
|
|
|
|
|
'Hawi', |
6355
|
|
|
|
|
|
|
'Hawk Cove', |
6356
|
|
|
|
|
|
|
'Hawk Point', |
6357
|
|
|
|
|
|
|
'Hawk Springs', |
6358
|
|
|
|
|
|
|
'Hawkeye', |
6359
|
|
|
|
|
|
|
'Hawkins', |
6360
|
|
|
|
|
|
|
'Hawkinsville', |
6361
|
|
|
|
|
|
|
'Hawley', |
6362
|
|
|
|
|
|
|
'Haworth', |
6363
|
|
|
|
|
|
|
'Hawthorn', |
6364
|
|
|
|
|
|
|
'Hawthorn Woods', |
6365
|
|
|
|
|
|
|
'Hawthorne', |
6366
|
|
|
|
|
|
|
'Haxtun', |
6367
|
|
|
|
|
|
|
'Hay Springs', |
6368
|
|
|
|
|
|
|
'Hayden', |
6369
|
|
|
|
|
|
|
'Hayden Lake', |
6370
|
|
|
|
|
|
|
'Hayes Center', |
6371
|
|
|
|
|
|
|
'Hayesville', |
6372
|
|
|
|
|
|
|
'Hayfield', |
6373
|
|
|
|
|
|
|
'Hayfork', |
6374
|
|
|
|
|
|
|
'Haymarket', |
6375
|
|
|
|
|
|
|
'Haynes', |
6376
|
|
|
|
|
|
|
'Haynesville', |
6377
|
|
|
|
|
|
|
'Hayneville', |
6378
|
|
|
|
|
|
|
'Hays', |
6379
|
|
|
|
|
|
|
'Haysi', |
6380
|
|
|
|
|
|
|
'Haysville', |
6381
|
|
|
|
|
|
|
'Hayti', |
6382
|
|
|
|
|
|
|
'Hayti Heights', |
6383
|
|
|
|
|
|
|
'Hayward', |
6384
|
|
|
|
|
|
|
'Haywood City', |
6385
|
|
|
|
|
|
|
'Hazard', |
6386
|
|
|
|
|
|
|
'Hazardville', |
6387
|
|
|
|
|
|
|
'Hazel', |
6388
|
|
|
|
|
|
|
'Hazel Crest', |
6389
|
|
|
|
|
|
|
'Hazel Dell North', |
6390
|
|
|
|
|
|
|
'Hazel Dell South', |
6391
|
|
|
|
|
|
|
'Hazel Green', |
6392
|
|
|
|
|
|
|
'Hazel Park', |
6393
|
|
|
|
|
|
|
'Hazel Run', |
6394
|
|
|
|
|
|
|
'Hazelton', |
6395
|
|
|
|
|
|
|
'Hazelwood', |
6396
|
|
|
|
|
|
|
'Hazen', |
6397
|
|
|
|
|
|
|
'Hazlehurst', |
6398
|
|
|
|
|
|
|
'Hazleton', |
6399
|
|
|
|
|
|
|
'Head of the Harbor', |
6400
|
|
|
|
|
|
|
'Headland', |
6401
|
|
|
|
|
|
|
'Headrick', |
6402
|
|
|
|
|
|
|
'Healdsburg', |
6403
|
|
|
|
|
|
|
'Healdton', |
6404
|
|
|
|
|
|
|
'Healy', |
6405
|
|
|
|
|
|
|
'Healy Lake', |
6406
|
|
|
|
|
|
|
'Hearne', |
6407
|
|
|
|
|
|
|
'Heart Butte', |
6408
|
|
|
|
|
|
|
'Heartwell', |
6409
|
|
|
|
|
|
|
'Heath', |
6410
|
|
|
|
|
|
|
'Heath Springs', |
6411
|
|
|
|
|
|
|
'Heathcote', |
6412
|
|
|
|
|
|
|
'Heathrow', |
6413
|
|
|
|
|
|
|
'Heavener', |
6414
|
|
|
|
|
|
|
'Hebbronville', |
6415
|
|
|
|
|
|
|
'Heber', |
6416
|
|
|
|
|
|
|
'Heber Springs', |
6417
|
|
|
|
|
|
|
'Heber-Overgaard', |
6418
|
|
|
|
|
|
|
'Hebo', |
6419
|
|
|
|
|
|
|
'Hebron', |
6420
|
|
|
|
|
|
|
'Hebron Estates', |
6421
|
|
|
|
|
|
|
'Hecker', |
6422
|
|
|
|
|
|
|
'Heckscherville', |
6423
|
|
|
|
|
|
|
'Hecla', |
6424
|
|
|
|
|
|
|
'Hector', |
6425
|
|
|
|
|
|
|
'Hedgesville', |
6426
|
|
|
|
|
|
|
'Hedley', |
6427
|
|
|
|
|
|
|
'Hedrick', |
6428
|
|
|
|
|
|
|
'Hedwig Village', |
6429
|
|
|
|
|
|
|
'Heeia', |
6430
|
|
|
|
|
|
|
'Heflin', |
6431
|
|
|
|
|
|
|
'Heidelberg', |
6432
|
|
|
|
|
|
|
'Heilwood', |
6433
|
|
|
|
|
|
|
'Helen', |
6434
|
|
|
|
|
|
|
'Helena', |
6435
|
|
|
|
|
|
|
'Helena Valley Northeast', |
6436
|
|
|
|
|
|
|
'Helena Valley Northwest', |
6437
|
|
|
|
|
|
|
'Helena Valley Southeast', |
6438
|
|
|
|
|
|
|
'Helena Valley West Central', |
6439
|
|
|
|
|
|
|
'Helena West Side', |
6440
|
|
|
|
|
|
|
'Helenville', |
6441
|
|
|
|
|
|
|
'Helenwood', |
6442
|
|
|
|
|
|
|
'Helix', |
6443
|
|
|
|
|
|
|
'Hellertown', |
6444
|
|
|
|
|
|
|
'Helmetta', |
6445
|
|
|
|
|
|
|
'Helotes', |
6446
|
|
|
|
|
|
|
'Helper', |
6447
|
|
|
|
|
|
|
'Hemby Bridge', |
6448
|
|
|
|
|
|
|
'Hemet', |
6449
|
|
|
|
|
|
|
'Hemingford', |
6450
|
|
|
|
|
|
|
'Hemingway', |
6451
|
|
|
|
|
|
|
'Hemlock', |
6452
|
|
|
|
|
|
|
'Hemphill', |
6453
|
|
|
|
|
|
|
'Hempstead', |
6454
|
|
|
|
|
|
|
'Henagar', |
6455
|
|
|
|
|
|
|
'Henderson', |
6456
|
|
|
|
|
|
|
'Hendersonville', |
6457
|
|
|
|
|
|
|
'Hendley', |
6458
|
|
|
|
|
|
|
'Hendricks', |
6459
|
|
|
|
|
|
|
'Hendrix', |
6460
|
|
|
|
|
|
|
'Hendron', |
6461
|
|
|
|
|
|
|
'Hendrum', |
6462
|
|
|
|
|
|
|
'Henefer', |
6463
|
|
|
|
|
|
|
'Henlopen Acres', |
6464
|
|
|
|
|
|
|
'Hennepin', |
6465
|
|
|
|
|
|
|
'Hennessey', |
6466
|
|
|
|
|
|
|
'Henniker', |
6467
|
|
|
|
|
|
|
'Henning', |
6468
|
|
|
|
|
|
|
'Henrietta', |
6469
|
|
|
|
|
|
|
'Henriette', |
6470
|
|
|
|
|
|
|
'Henrieville', |
6471
|
|
|
|
|
|
|
'Henry', |
6472
|
|
|
|
|
|
|
'Henryetta', |
6473
|
|
|
|
|
|
|
'Henryville', |
6474
|
|
|
|
|
|
|
'Hensley', |
6475
|
|
|
|
|
|
|
'Hepburn', |
6476
|
|
|
|
|
|
|
'Hephzibah', |
6477
|
|
|
|
|
|
|
'Hepler', |
6478
|
|
|
|
|
|
|
'Heppner', |
6479
|
|
|
|
|
|
|
'Herald Harbor', |
6480
|
|
|
|
|
|
|
'Herculaneum', |
6481
|
|
|
|
|
|
|
'Hercules', |
6482
|
|
|
|
|
|
|
'Hereford', |
6483
|
|
|
|
|
|
|
'Herington', |
6484
|
|
|
|
|
|
|
'Heritage Hills', |
6485
|
|
|
|
|
|
|
'Heritage Village', |
6486
|
|
|
|
|
|
|
'Herkimer', |
6487
|
|
|
|
|
|
|
'Herman', |
6488
|
|
|
|
|
|
|
'Hermann', |
6489
|
|
|
|
|
|
|
'Hermantown', |
6490
|
|
|
|
|
|
|
'Herminie', |
6491
|
|
|
|
|
|
|
'Hermiston', |
6492
|
|
|
|
|
|
|
'Hermitage', |
6493
|
|
|
|
|
|
|
'Hermleigh', |
6494
|
|
|
|
|
|
|
'Hermon', |
6495
|
|
|
|
|
|
|
'Hermosa', |
6496
|
|
|
|
|
|
|
'Hermosa Beach', |
6497
|
|
|
|
|
|
|
'Hernando', |
6498
|
|
|
|
|
|
|
'Hernando Beach', |
6499
|
|
|
|
|
|
|
'Herndon', |
6500
|
|
|
|
|
|
|
'Heron', |
6501
|
|
|
|
|
|
|
'Heron Lake', |
6502
|
|
|
|
|
|
|
'Herreid', |
6503
|
|
|
|
|
|
|
'Herrick', |
6504
|
|
|
|
|
|
|
'Herricks', |
6505
|
|
|
|
|
|
|
'Herriman', |
6506
|
|
|
|
|
|
|
'Herrin', |
6507
|
|
|
|
|
|
|
'Herrings', |
6508
|
|
|
|
|
|
|
'Herron', |
6509
|
|
|
|
|
|
|
'Herscher', |
6510
|
|
|
|
|
|
|
'Hersey', |
6511
|
|
|
|
|
|
|
'Hershey', |
6512
|
|
|
|
|
|
|
'Hertford', |
6513
|
|
|
|
|
|
|
'Hesperia', |
6514
|
|
|
|
|
|
|
'Hessmer', |
6515
|
|
|
|
|
|
|
'Hesston', |
6516
|
|
|
|
|
|
|
'Hetland', |
6517
|
|
|
|
|
|
|
'Hettick', |
6518
|
|
|
|
|
|
|
'Hettinger', |
6519
|
|
|
|
|
|
|
'Heuvelton', |
6520
|
|
|
|
|
|
|
'Hewitt', |
6521
|
|
|
|
|
|
|
'Hewlett', |
6522
|
|
|
|
|
|
|
'Hewlett Bay Park', |
6523
|
|
|
|
|
|
|
'Hewlett Harbor', |
6524
|
|
|
|
|
|
|
'Hewlett Neck', |
6525
|
|
|
|
|
|
|
'Heyburn', |
6526
|
|
|
|
|
|
|
'Heyworth', |
6527
|
|
|
|
|
|
|
'Hi-Nella', |
6528
|
|
|
|
|
|
|
'Hialeah', |
6529
|
|
|
|
|
|
|
'Hialeah Gardens', |
6530
|
|
|
|
|
|
|
'Hiawassee', |
6531
|
|
|
|
|
|
|
'Hiawatha', |
6532
|
|
|
|
|
|
|
'Hibbing', |
6533
|
|
|
|
|
|
|
'Hickam Housing', |
6534
|
|
|
|
|
|
|
'Hickman', |
6535
|
|
|
|
|
|
|
'Hickory', |
6536
|
|
|
|
|
|
|
'Hickory Creek', |
6537
|
|
|
|
|
|
|
'Hickory Flat', |
6538
|
|
|
|
|
|
|
'Hickory Grove', |
6539
|
|
|
|
|
|
|
'Hickory Hill', |
6540
|
|
|
|
|
|
|
'Hickory Hills', |
6541
|
|
|
|
|
|
|
'Hickory Ridge', |
6542
|
|
|
|
|
|
|
'Hickory Valley', |
6543
|
|
|
|
|
|
|
'Hickory Withe', |
6544
|
|
|
|
|
|
|
'Hicksville', |
6545
|
|
|
|
|
|
|
'Hico', |
6546
|
|
|
|
|
|
|
'Hidalgo', |
6547
|
|
|
|
|
|
|
'Hidden Hills', |
6548
|
|
|
|
|
|
|
'Hidden Meadows', |
6549
|
|
|
|
|
|
|
'Hidden Valley', |
6550
|
|
|
|
|
|
|
'Hidden Valley Lake', |
6551
|
|
|
|
|
|
|
'Higbee', |
6552
|
|
|
|
|
|
|
'Higden', |
6553
|
|
|
|
|
|
|
'Higganum', |
6554
|
|
|
|
|
|
|
'Higgins', |
6555
|
|
|
|
|
|
|
'Higginson', |
6556
|
|
|
|
|
|
|
'Higginsport', |
6557
|
|
|
|
|
|
|
'Higginsville', |
6558
|
|
|
|
|
|
|
'Higgston', |
6559
|
|
|
|
|
|
|
'High Bridge', |
6560
|
|
|
|
|
|
|
'High Falls', |
6561
|
|
|
|
|
|
|
'High Hill', |
6562
|
|
|
|
|
|
|
'High Point', |
6563
|
|
|
|
|
|
|
'High Ridge', |
6564
|
|
|
|
|
|
|
'High Shoals', |
6565
|
|
|
|
|
|
|
'High Springs', |
6566
|
|
|
|
|
|
|
'Highfield-Cascade', |
6567
|
|
|
|
|
|
|
'Highfill', |
6568
|
|
|
|
|
|
|
'Highgrove', |
6569
|
|
|
|
|
|
|
'Highland', |
6570
|
|
|
|
|
|
|
'Highland Acres', |
6571
|
|
|
|
|
|
|
'Highland Beach', |
6572
|
|
|
|
|
|
|
'Highland City', |
6573
|
|
|
|
|
|
|
'Highland Falls', |
6574
|
|
|
|
|
|
|
'Highland Haven', |
6575
|
|
|
|
|
|
|
'Highland Heights', |
6576
|
|
|
|
|
|
|
'Highland Hills', |
6577
|
|
|
|
|
|
|
'Highland Lake', |
6578
|
|
|
|
|
|
|
'Highland Mills', |
6579
|
|
|
|
|
|
|
'Highland Park', |
6580
|
|
|
|
|
|
|
'Highland Springs', |
6581
|
|
|
|
|
|
|
'Highland Village', |
6582
|
|
|
|
|
|
|
'Highlands', |
6583
|
|
|
|
|
|
|
'Highlands Ranch', |
6584
|
|
|
|
|
|
|
'Highlands-Baywood Park', |
6585
|
|
|
|
|
|
|
'Highlandville', |
6586
|
|
|
|
|
|
|
'Highmore', |
6587
|
|
|
|
|
|
|
'Highspire', |
6588
|
|
|
|
|
|
|
'Hightstown', |
6589
|
|
|
|
|
|
|
'Hightsville', |
6590
|
|
|
|
|
|
|
'Highview', |
6591
|
|
|
|
|
|
|
'Highwood', |
6592
|
|
|
|
|
|
|
'Hiland Park', |
6593
|
|
|
|
|
|
|
'Hilbert', |
6594
|
|
|
|
|
|
|
'Hilda', |
6595
|
|
|
|
|
|
|
'Hildale', |
6596
|
|
|
|
|
|
|
'Hildebran', |
6597
|
|
|
|
|
|
|
'Hildreth', |
6598
|
|
|
|
|
|
|
'Hill \'n Dale', |
6599
|
|
|
|
|
|
|
'Hill City', |
6600
|
|
|
|
|
|
|
'Hill Country Village', |
6601
|
|
|
|
|
|
|
'Hill View Heights', |
6602
|
|
|
|
|
|
|
'Hillandale', |
6603
|
|
|
|
|
|
|
'Hillburn', |
6604
|
|
|
|
|
|
|
'Hillcrest', |
6605
|
|
|
|
|
|
|
'Hillcrest Heights', |
6606
|
|
|
|
|
|
|
'Hiller', |
6607
|
|
|
|
|
|
|
'Hilliard', |
6608
|
|
|
|
|
|
|
'Hillman', |
6609
|
|
|
|
|
|
|
'Hillrose', |
6610
|
|
|
|
|
|
|
'Hills', |
6611
|
|
|
|
|
|
|
'Hills and Dales', |
6612
|
|
|
|
|
|
|
'Hillsboro', |
6613
|
|
|
|
|
|
|
'Hillsboro Beach', |
6614
|
|
|
|
|
|
|
'Hillsboro Pines', |
6615
|
|
|
|
|
|
|
'Hillsboro Ranches', |
6616
|
|
|
|
|
|
|
'Hillsborough', |
6617
|
|
|
|
|
|
|
'Hillsdale', |
6618
|
|
|
|
|
|
|
'Hillside', |
6619
|
|
|
|
|
|
|
'Hillside Lake', |
6620
|
|
|
|
|
|
|
'Hillsmere Shores', |
6621
|
|
|
|
|
|
|
'Hillsview', |
6622
|
|
|
|
|
|
|
'Hillsville', |
6623
|
|
|
|
|
|
|
'Hilltop', |
6624
|
|
|
|
|
|
|
'Hillview', |
6625
|
|
|
|
|
|
|
'Hilmar-Irwin', |
6626
|
|
|
|
|
|
|
'Hilo', |
6627
|
|
|
|
|
|
|
'Hilshire Village', |
6628
|
|
|
|
|
|
|
'Hilton', |
6629
|
|
|
|
|
|
|
'Hilton Head Island', |
6630
|
|
|
|
|
|
|
'Hiltonia', |
6631
|
|
|
|
|
|
|
'Hinckley', |
6632
|
|
|
|
|
|
|
'Hindman', |
6633
|
|
|
|
|
|
|
'Hindsboro', |
6634
|
|
|
|
|
|
|
'Hindsville', |
6635
|
|
|
|
|
|
|
'Hines', |
6636
|
|
|
|
|
|
|
'Hinesville', |
6637
|
|
|
|
|
|
|
'Hingham', |
6638
|
|
|
|
|
|
|
'Hinsdale', |
6639
|
|
|
|
|
|
|
'Hinton', |
6640
|
|
|
|
|
|
|
'Hiram', |
6641
|
|
|
|
|
|
|
'Hiseville', |
6642
|
|
|
|
|
|
|
'Hitchcock', |
6643
|
|
|
|
|
|
|
'Hitchita', |
6644
|
|
|
|
|
|
|
'Hitterdal', |
6645
|
|
|
|
|
|
|
'Hixton', |
6646
|
|
|
|
|
|
|
'Ho-Ho-Kus', |
6647
|
|
|
|
|
|
|
'Hoback', |
6648
|
|
|
|
|
|
|
'Hobart', |
6649
|
|
|
|
|
|
|
'Hobart Bay', |
6650
|
|
|
|
|
|
|
'Hobbs', |
6651
|
|
|
|
|
|
|
'Hobe Sound', |
6652
|
|
|
|
|
|
|
'Hoberg', |
6653
|
|
|
|
|
|
|
'Hobgood', |
6654
|
|
|
|
|
|
|
'Hoboken', |
6655
|
|
|
|
|
|
|
'Hobson', |
6656
|
|
|
|
|
|
|
'Hobson City', |
6657
|
|
|
|
|
|
|
'Hockessin', |
6658
|
|
|
|
|
|
|
'Hockinson', |
6659
|
|
|
|
|
|
|
'Hodge', |
6660
|
|
|
|
|
|
|
'Hodgenville', |
6661
|
|
|
|
|
|
|
'Hodges', |
6662
|
|
|
|
|
|
|
'Hodgkins', |
6663
|
|
|
|
|
|
|
'Hoffman', |
6664
|
|
|
|
|
|
|
'Hoffman Estates', |
6665
|
|
|
|
|
|
|
'Hogansville', |
6666
|
|
|
|
|
|
|
'Hohenwald', |
6667
|
|
|
|
|
|
|
'Hoisington', |
6668
|
|
|
|
|
|
|
'Hokah', |
6669
|
|
|
|
|
|
|
'Hokendauqua', |
6670
|
|
|
|
|
|
|
'Hokes Bluff', |
6671
|
|
|
|
|
|
|
'Holbrook', |
6672
|
|
|
|
|
|
|
'Holcomb', |
6673
|
|
|
|
|
|
|
'Holden', |
6674
|
|
|
|
|
|
|
'Holden Beach', |
6675
|
|
|
|
|
|
|
'Holden Heights', |
6676
|
|
|
|
|
|
|
'Holdenville', |
6677
|
|
|
|
|
|
|
'Holdingford', |
6678
|
|
|
|
|
|
|
'Holdrege', |
6679
|
|
|
|
|
|
|
'Holgate', |
6680
|
|
|
|
|
|
|
'Holiday', |
6681
|
|
|
|
|
|
|
'Holiday City', |
6682
|
|
|
|
|
|
|
'Holiday City South', |
6683
|
|
|
|
|
|
|
'Holiday City-Berkeley', |
6684
|
|
|
|
|
|
|
'Holiday Heights', |
6685
|
|
|
|
|
|
|
'Holiday Hills', |
6686
|
|
|
|
|
|
|
'Holiday Lakes', |
6687
|
|
|
|
|
|
|
'Holiday Valley', |
6688
|
|
|
|
|
|
|
'Holladay', |
6689
|
|
|
|
|
|
|
'Holland', |
6690
|
|
|
|
|
|
|
'Holland Patent', |
6691
|
|
|
|
|
|
|
'Hollandale', |
6692
|
|
|
|
|
|
|
'Hollansburg', |
6693
|
|
|
|
|
|
|
'Hollenberg', |
6694
|
|
|
|
|
|
|
'Holley', |
6695
|
|
|
|
|
|
|
'Holliday', |
6696
|
|
|
|
|
|
|
'Hollidaysburg', |
6697
|
|
|
|
|
|
|
'Hollins', |
6698
|
|
|
|
|
|
|
'Hollis', |
6699
|
|
|
|
|
|
|
'Hollister', |
6700
|
|
|
|
|
|
|
'Holloman AFB', |
6701
|
|
|
|
|
|
|
'Hollow Creek', |
6702
|
|
|
|
|
|
|
'Hollow Rock', |
6703
|
|
|
|
|
|
|
'Holloway', |
6704
|
|
|
|
|
|
|
'Hollowayville', |
6705
|
|
|
|
|
|
|
'Holly', |
6706
|
|
|
|
|
|
|
'Holly Grove', |
6707
|
|
|
|
|
|
|
'Holly Hill', |
6708
|
|
|
|
|
|
|
'Holly Pond', |
6709
|
|
|
|
|
|
|
'Holly Ridge', |
6710
|
|
|
|
|
|
|
'Holly Springs', |
6711
|
|
|
|
|
|
|
'Hollyvilla', |
6712
|
|
|
|
|
|
|
'Hollywood', |
6713
|
|
|
|
|
|
|
'Hollywood Park', |
6714
|
|
|
|
|
|
|
'Holmen', |
6715
|
|
|
|
|
|
|
'Holmes Beach', |
6716
|
|
|
|
|
|
|
'Holmesville', |
6717
|
|
|
|
|
|
|
'Holstein', |
6718
|
|
|
|
|
|
|
'Holt', |
6719
|
|
|
|
|
|
|
'Holton', |
6720
|
|
|
|
|
|
|
'Holts Summit', |
6721
|
|
|
|
|
|
|
'Holtsville', |
6722
|
|
|
|
|
|
|
'Holtville', |
6723
|
|
|
|
|
|
|
'Holualoa', |
6724
|
|
|
|
|
|
|
'Holy Cross', |
6725
|
|
|
|
|
|
|
'Holyoke', |
6726
|
|
|
|
|
|
|
'Holyrood', |
6727
|
|
|
|
|
|
|
'Homa Hills', |
6728
|
|
|
|
|
|
|
'Home Garden', |
6729
|
|
|
|
|
|
|
'Home Gardens', |
6730
|
|
|
|
|
|
|
'Homeacre-Lyndora', |
6731
|
|
|
|
|
|
|
'Homecroft', |
6732
|
|
|
|
|
|
|
'Homedale', |
6733
|
|
|
|
|
|
|
'Homeland', |
6734
|
|
|
|
|
|
|
'Homeland Park', |
6735
|
|
|
|
|
|
|
'Homer', |
6736
|
|
|
|
|
|
|
'Homer City', |
6737
|
|
|
|
|
|
|
'Homerville', |
6738
|
|
|
|
|
|
|
'Homestead', |
6739
|
|
|
|
|
|
|
'Homestead Base', |
6740
|
|
|
|
|
|
|
'Homestead Meadows North', |
6741
|
|
|
|
|
|
|
'Homestead Meadows South', |
6742
|
|
|
|
|
|
|
'Homestown', |
6743
|
|
|
|
|
|
|
'Hometown', |
6744
|
|
|
|
|
|
|
'Homewood', |
6745
|
|
|
|
|
|
|
'Homewood Canyon-Valley Wells', |
6746
|
|
|
|
|
|
|
'Hominy', |
6747
|
|
|
|
|
|
|
'Homosassa', |
6748
|
|
|
|
|
|
|
'Homosassa Springs', |
6749
|
|
|
|
|
|
|
'Honaker', |
6750
|
|
|
|
|
|
|
'Honalo', |
6751
|
|
|
|
|
|
|
'Honaunau-Napoopoo', |
6752
|
|
|
|
|
|
|
'Hondo', |
6753
|
|
|
|
|
|
|
'Honea Path', |
6754
|
|
|
|
|
|
|
'Honeoye Falls', |
6755
|
|
|
|
|
|
|
'Honesdale', |
6756
|
|
|
|
|
|
|
'Honey Brook', |
6757
|
|
|
|
|
|
|
'Honey Grove', |
6758
|
|
|
|
|
|
|
'Honeyville', |
6759
|
|
|
|
|
|
|
'Honokaa', |
6760
|
|
|
|
|
|
|
'Honolulu', |
6761
|
|
|
|
|
|
|
'Honomu', |
6762
|
|
|
|
|
|
|
'Honor', |
6763
|
|
|
|
|
|
|
'Hood River', |
6764
|
|
|
|
|
|
|
'Hooker', |
6765
|
|
|
|
|
|
|
'Hookerton', |
6766
|
|
|
|
|
|
|
'Hooks', |
6767
|
|
|
|
|
|
|
'Hooksett', |
6768
|
|
|
|
|
|
|
'Hookstown', |
6769
|
|
|
|
|
|
|
'Hoonah', |
6770
|
|
|
|
|
|
|
'Hooper', |
6771
|
|
|
|
|
|
|
'Hooper Bay', |
6772
|
|
|
|
|
|
|
'Hoopeston', |
6773
|
|
|
|
|
|
|
'Hoople', |
6774
|
|
|
|
|
|
|
'Hooppole', |
6775
|
|
|
|
|
|
|
'Hoosick Falls', |
6776
|
|
|
|
|
|
|
'Hoot Owl', |
6777
|
|
|
|
|
|
|
'Hoover', |
6778
|
|
|
|
|
|
|
'Hooverson Heights', |
6779
|
|
|
|
|
|
|
'Hooversville', |
6780
|
|
|
|
|
|
|
'Hop Bottom', |
6781
|
|
|
|
|
|
|
'Hopatcong', |
6782
|
|
|
|
|
|
|
'Hope', |
6783
|
|
|
|
|
|
|
'Hope Mills', |
6784
|
|
|
|
|
|
|
'Hope Valley', |
6785
|
|
|
|
|
|
|
'Hopedale', |
6786
|
|
|
|
|
|
|
'Hopewell', |
6787
|
|
|
|
|
|
|
'Hopewell Junction', |
6788
|
|
|
|
|
|
|
'Hopkins', |
6789
|
|
|
|
|
|
|
'Hopkins Park', |
6790
|
|
|
|
|
|
|
'Hopkinsville', |
6791
|
|
|
|
|
|
|
'Hopkinton', |
6792
|
|
|
|
|
|
|
'Hopwood', |
6793
|
|
|
|
|
|
|
'Hoquiam', |
6794
|
|
|
|
|
|
|
'Horace', |
6795
|
|
|
|
|
|
|
'Horatio', |
6796
|
|
|
|
|
|
|
'Hordville', |
6797
|
|
|
|
|
|
|
'Horicon', |
6798
|
|
|
|
|
|
|
'Horine', |
6799
|
|
|
|
|
|
|
'Horizon City', |
6800
|
|
|
|
|
|
|
'Hormigueros', |
6801
|
|
|
|
|
|
|
'Horn Hill', |
6802
|
|
|
|
|
|
|
'Horn Lake', |
6803
|
|
|
|
|
|
|
'Hornbeak', |
6804
|
|
|
|
|
|
|
'Hornbeck', |
6805
|
|
|
|
|
|
|
'Hornbrook', |
6806
|
|
|
|
|
|
|
'Hornell', |
6807
|
|
|
|
|
|
|
'Hornersville', |
6808
|
|
|
|
|
|
|
'Hornick', |
6809
|
|
|
|
|
|
|
'Hornsby', |
6810
|
|
|
|
|
|
|
'Horntown', |
6811
|
|
|
|
|
|
|
'Horse Cave', |
6812
|
|
|
|
|
|
|
'Horse Pasture', |
6813
|
|
|
|
|
|
|
'Horseheads', |
6814
|
|
|
|
|
|
|
'Horseheads North', |
6815
|
|
|
|
|
|
|
'Horseshoe Bay', |
6816
|
|
|
|
|
|
|
'Horseshoe Beach', |
6817
|
|
|
|
|
|
|
'Horseshoe Bend', |
6818
|
|
|
|
|
|
|
'Horseshoe Lake', |
6819
|
|
|
|
|
|
|
'Horsham', |
6820
|
|
|
|
|
|
|
'Horton', |
6821
|
|
|
|
|
|
|
'Hortonville', |
6822
|
|
|
|
|
|
|
'Hoschton', |
6823
|
|
|
|
|
|
|
'Hoskins', |
6824
|
|
|
|
|
|
|
'Hosmer', |
6825
|
|
|
|
|
|
|
'Hospers', |
6826
|
|
|
|
|
|
|
'Hosston', |
6827
|
|
|
|
|
|
|
'Hot Springs', |
6828
|
|
|
|
|
|
|
'Hot Springs Village', |
6829
|
|
|
|
|
|
|
'Hot Sulphur Springs', |
6830
|
|
|
|
|
|
|
'Hotchkiss', |
6831
|
|
|
|
|
|
|
'Hotevilla-Bacavi', |
6832
|
|
|
|
|
|
|
'Houck', |
6833
|
|
|
|
|
|
|
'Houghton', |
6834
|
|
|
|
|
|
|
'Houghton Lake', |
6835
|
|
|
|
|
|
|
'Houlton', |
6836
|
|
|
|
|
|
|
'Houma', |
6837
|
|
|
|
|
|
|
'Housatonic', |
6838
|
|
|
|
|
|
|
'House', |
6839
|
|
|
|
|
|
|
'Houserville', |
6840
|
|
|
|
|
|
|
'Houston', |
6841
|
|
|
|
|
|
|
'Houston Acres', |
6842
|
|
|
|
|
|
|
'Houston Lake', |
6843
|
|
|
|
|
|
|
'Houstonia', |
6844
|
|
|
|
|
|
|
'Houtzdale', |
6845
|
|
|
|
|
|
|
'Hove Mobile Park', |
6846
|
|
|
|
|
|
|
'Hoven', |
6847
|
|
|
|
|
|
|
'Howard', |
6848
|
|
|
|
|
|
|
'Howard City', |
6849
|
|
|
|
|
|
|
'Howard Lake', |
6850
|
|
|
|
|
|
|
'Howards Grove', |
6851
|
|
|
|
|
|
|
'Howardville', |
6852
|
|
|
|
|
|
|
'Howardwick', |
6853
|
|
|
|
|
|
|
'Howe', |
6854
|
|
|
|
|
|
|
'Howell', |
6855
|
|
|
|
|
|
|
'Howells', |
6856
|
|
|
|
|
|
|
'Howey-in-the-Hills', |
6857
|
|
|
|
|
|
|
'Howland', |
6858
|
|
|
|
|
|
|
'Howland Center', |
6859
|
|
|
|
|
|
|
'Hoxie', |
6860
|
|
|
|
|
|
|
'Hoyleton', |
6861
|
|
|
|
|
|
|
'Hoyt', |
6862
|
|
|
|
|
|
|
'Hoyt Lakes', |
6863
|
|
|
|
|
|
|
'Hoytville', |
6864
|
|
|
|
|
|
|
'Huachuca City', |
6865
|
|
|
|
|
|
|
'Hubbard', |
6866
|
|
|
|
|
|
|
'Hubbard Lake', |
6867
|
|
|
|
|
|
|
'Hubbardston', |
6868
|
|
|
|
|
|
|
'Hubbell', |
6869
|
|
|
|
|
|
|
'Huber Heights', |
6870
|
|
|
|
|
|
|
'Huber Ridge', |
6871
|
|
|
|
|
|
|
'Hudson', |
6872
|
|
|
|
|
|
|
'Hudson Bend', |
6873
|
|
|
|
|
|
|
'Hudson Falls', |
6874
|
|
|
|
|
|
|
'Hudson Oaks', |
6875
|
|
|
|
|
|
|
'Hudsonville', |
6876
|
|
|
|
|
|
|
'Huerfano', |
6877
|
|
|
|
|
|
|
'Huetter', |
6878
|
|
|
|
|
|
|
'Huey', |
6879
|
|
|
|
|
|
|
'Hueytown', |
6880
|
|
|
|
|
|
|
'Hughes', |
6881
|
|
|
|
|
|
|
'Hughes Springs', |
6882
|
|
|
|
|
|
|
'Hughestown', |
6883
|
|
|
|
|
|
|
'Hughesville', |
6884
|
|
|
|
|
|
|
'Hughson', |
6885
|
|
|
|
|
|
|
'Hugo', |
6886
|
|
|
|
|
|
|
'Hugoton', |
6887
|
|
|
|
|
|
|
'Huguley', |
6888
|
|
|
|
|
|
|
'Hulbert', |
6889
|
|
|
|
|
|
|
'Hulett', |
6890
|
|
|
|
|
|
|
'Hull', |
6891
|
|
|
|
|
|
|
'Hulmeville', |
6892
|
|
|
|
|
|
|
'Humacao', |
6893
|
|
|
|
|
|
|
'Humansville', |
6894
|
|
|
|
|
|
|
'Humble', |
6895
|
|
|
|
|
|
|
'Humboldt', |
6896
|
|
|
|
|
|
|
'Humboldt Hill', |
6897
|
|
|
|
|
|
|
'Hume', |
6898
|
|
|
|
|
|
|
'Humeston', |
6899
|
|
|
|
|
|
|
'Hummels Wharf', |
6900
|
|
|
|
|
|
|
'Hummelstown', |
6901
|
|
|
|
|
|
|
'Humnoke', |
6902
|
|
|
|
|
|
|
'Humphrey', |
6903
|
|
|
|
|
|
|
'Humphreys', |
6904
|
|
|
|
|
|
|
'Humptulips', |
6905
|
|
|
|
|
|
|
'Hundred', |
6906
|
|
|
|
|
|
|
'Hungerford', |
6907
|
|
|
|
|
|
|
'Hungry Horse', |
6908
|
|
|
|
|
|
|
'Hunker', |
6909
|
|
|
|
|
|
|
'Hunnewell', |
6910
|
|
|
|
|
|
|
'Hunter', |
6911
|
|
|
|
|
|
|
'Hunters Creek', |
6912
|
|
|
|
|
|
|
'Hunters Creek Village', |
6913
|
|
|
|
|
|
|
'Hunters Hollow', |
6914
|
|
|
|
|
|
|
'Huntersville', |
6915
|
|
|
|
|
|
|
'Huntertown', |
6916
|
|
|
|
|
|
|
'Hunting Valley', |
6917
|
|
|
|
|
|
|
'Huntingburg', |
6918
|
|
|
|
|
|
|
'Huntingdon', |
6919
|
|
|
|
|
|
|
'Huntington', |
6920
|
|
|
|
|
|
|
'Huntington Bay', |
6921
|
|
|
|
|
|
|
'Huntington Beach', |
6922
|
|
|
|
|
|
|
'Huntington Park', |
6923
|
|
|
|
|
|
|
'Huntington Station', |
6924
|
|
|
|
|
|
|
'Huntington Woods', |
6925
|
|
|
|
|
|
|
'Huntingtown', |
6926
|
|
|
|
|
|
|
'Huntland', |
6927
|
|
|
|
|
|
|
'Huntleigh', |
6928
|
|
|
|
|
|
|
'Huntley', |
6929
|
|
|
|
|
|
|
'Hunts Point', |
6930
|
|
|
|
|
|
|
'Huntsville', |
6931
|
|
|
|
|
|
|
'Hurdland', |
6932
|
|
|
|
|
|
|
'Hurdsfield', |
6933
|
|
|
|
|
|
|
'Hurley', |
6934
|
|
|
|
|
|
|
'Hurlock', |
6935
|
|
|
|
|
|
|
'Huron', |
6936
|
|
|
|
|
|
|
'Hurricane', |
6937
|
|
|
|
|
|
|
'Hurst', |
6938
|
|
|
|
|
|
|
'Hurstbourne', |
6939
|
|
|
|
|
|
|
'Hurstbourne Acres', |
6940
|
|
|
|
|
|
|
'Hurt', |
6941
|
|
|
|
|
|
|
'Hurtsboro', |
6942
|
|
|
|
|
|
|
'Huslia', |
6943
|
|
|
|
|
|
|
'Hustisford', |
6944
|
|
|
|
|
|
|
'Hustler', |
6945
|
|
|
|
|
|
|
'Hustonville', |
6946
|
|
|
|
|
|
|
'Hutchins', |
6947
|
|
|
|
|
|
|
'Hutchinson', |
6948
|
|
|
|
|
|
|
'Hutchinson Island South', |
6949
|
|
|
|
|
|
|
'Hutsonville', |
6950
|
|
|
|
|
|
|
'Huttig', |
6951
|
|
|
|
|
|
|
'Hutto', |
6952
|
|
|
|
|
|
|
'Huttonsville', |
6953
|
|
|
|
|
|
|
'Huxley', |
6954
|
|
|
|
|
|
|
'Hyannis', |
6955
|
|
|
|
|
|
|
'Hyattsville', |
6956
|
|
|
|
|
|
|
'Hyattville', |
6957
|
|
|
|
|
|
|
'Hybla Valley', |
6958
|
|
|
|
|
|
|
'Hydaburg', |
6959
|
|
|
|
|
|
|
'Hyde', |
6960
|
|
|
|
|
|
|
'Hyde Park', |
6961
|
|
|
|
|
|
|
'Hyden', |
6962
|
|
|
|
|
|
|
'Hyder', |
6963
|
|
|
|
|
|
|
'Hydesville', |
6964
|
|
|
|
|
|
|
'Hydetown', |
6965
|
|
|
|
|
|
|
'Hydro', |
6966
|
|
|
|
|
|
|
'Hymera', |
6967
|
|
|
|
|
|
|
'Hyndman', |
6968
|
|
|
|
|
|
|
'Hypoluxo', |
6969
|
|
|
|
|
|
|
'Hyrum', |
6970
|
|
|
|
|
|
|
'Hysham', |
6971
|
|
|
|
|
|
|
'Hytop', |
6972
|
|
|
|
|
|
|
'Iaeger', |
6973
|
|
|
|
|
|
|
'Iatan', |
6974
|
|
|
|
|
|
|
'Iberia', |
6975
|
|
|
|
|
|
|
'Icard', |
6976
|
|
|
|
|
|
|
'Ida', |
6977
|
|
|
|
|
|
|
'Ida Grove', |
6978
|
|
|
|
|
|
|
'Idabel', |
6979
|
|
|
|
|
|
|
'Idaho City', |
6980
|
|
|
|
|
|
|
'Idaho Falls', |
6981
|
|
|
|
|
|
|
'Idaho Springs', |
6982
|
|
|
|
|
|
|
'Idalou', |
6983
|
|
|
|
|
|
|
'Idanha', |
6984
|
|
|
|
|
|
|
'Ideal', |
6985
|
|
|
|
|
|
|
'Ider', |
6986
|
|
|
|
|
|
|
'Idyllwild-Pine Cove', |
6987
|
|
|
|
|
|
|
'Idylwood', |
6988
|
|
|
|
|
|
|
'Igiugig', |
6989
|
|
|
|
|
|
|
'Ignacio', |
6990
|
|
|
|
|
|
|
'Ihlen', |
6991
|
|
|
|
|
|
|
'Ila', |
6992
|
|
|
|
|
|
|
'Iliamna', |
6993
|
|
|
|
|
|
|
'Iliff', |
6994
|
|
|
|
|
|
|
'Ilion', |
6995
|
|
|
|
|
|
|
'Illiopolis', |
6996
|
|
|
|
|
|
|
'Ilwaco', |
6997
|
|
|
|
|
|
|
'Imbler', |
6998
|
|
|
|
|
|
|
'Imboden', |
6999
|
|
|
|
|
|
|
'Imbéry', |
7000
|
|
|
|
|
|
|
'Imlay City', |
7001
|
|
|
|
|
|
|
'Immokalee', |
7002
|
|
|
|
|
|
|
'Imogene', |
7003
|
|
|
|
|
|
|
'Impact', |
7004
|
|
|
|
|
|
|
'Imperial', |
7005
|
|
|
|
|
|
|
'Imperial Beach', |
7006
|
|
|
|
|
|
|
'Imperial-Enlow', |
7007
|
|
|
|
|
|
|
'Ina', |
7008
|
|
|
|
|
|
|
'Inchelium', |
7009
|
|
|
|
|
|
|
'Incline Village-Crystal Bay', |
7010
|
|
|
|
|
|
|
'Independence', |
7011
|
|
|
|
|
|
|
'Index', |
7012
|
|
|
|
|
|
|
'India Hook', |
7013
|
|
|
|
|
|
|
'Indiahoma', |
7014
|
|
|
|
|
|
|
'Indialantic', |
7015
|
|
|
|
|
|
|
'Indian Beach', |
7016
|
|
|
|
|
|
|
'Indian Creek', |
7017
|
|
|
|
|
|
|
'Indian Falls', |
7018
|
|
|
|
|
|
|
'Indian Harbour Beach', |
7019
|
|
|
|
|
|
|
'Indian Head', |
7020
|
|
|
|
|
|
|
'Indian Head Park', |
7021
|
|
|
|
|
|
|
'Indian Heights', |
7022
|
|
|
|
|
|
|
'Indian Hills', |
7023
|
|
|
|
|
|
|
'Indian Lake', |
7024
|
|
|
|
|
|
|
'Indian Point', |
7025
|
|
|
|
|
|
|
'Indian River', |
7026
|
|
|
|
|
|
|
'Indian River Estates', |
7027
|
|
|
|
|
|
|
'Indian River Shores', |
7028
|
|
|
|
|
|
|
'Indian Rocks Beach', |
7029
|
|
|
|
|
|
|
'Indian Shores', |
7030
|
|
|
|
|
|
|
'Indian Springs', |
7031
|
|
|
|
|
|
|
'Indian Springs Village', |
7032
|
|
|
|
|
|
|
'Indian Trail', |
7033
|
|
|
|
|
|
|
'Indian Village', |
7034
|
|
|
|
|
|
|
'Indian Wells', |
7035
|
|
|
|
|
|
|
'Indiana', |
7036
|
|
|
|
|
|
|
'Indianapolis', |
7037
|
|
|
|
|
|
|
'Indianola', |
7038
|
|
|
|
|
|
|
'Indiantown', |
7039
|
|
|
|
|
|
|
'Indio', |
7040
|
|
|
|
|
|
|
'Indios', |
7041
|
|
|
|
|
|
|
'Industry', |
7042
|
|
|
|
|
|
|
'Inez', |
7043
|
|
|
|
|
|
|
'Ingalls', |
7044
|
|
|
|
|
|
|
'Ingalls Park', |
7045
|
|
|
|
|
|
|
'Ingenio', |
7046
|
|
|
|
|
|
|
'Ingleside', |
7047
|
|
|
|
|
|
|
'Ingleside on the Bay', |
7048
|
|
|
|
|
|
|
'Inglewood', |
7049
|
|
|
|
|
|
|
'Inglewood-Finn Hill', |
7050
|
|
|
|
|
|
|
'Inglis', |
7051
|
|
|
|
|
|
|
'Ingold', |
7052
|
|
|
|
|
|
|
'Ingram', |
7053
|
|
|
|
|
|
|
'Inkom', |
7054
|
|
|
|
|
|
|
'Inkster', |
7055
|
|
|
|
|
|
|
'Inman', |
7056
|
|
|
|
|
|
|
'Inman Mills', |
7057
|
|
|
|
|
|
|
'Inniswold', |
7058
|
|
|
|
|
|
|
'Innsbrook', |
7059
|
|
|
|
|
|
|
'Inola', |
7060
|
|
|
|
|
|
|
'Interior', |
7061
|
|
|
|
|
|
|
'Interlachen', |
7062
|
|
|
|
|
|
|
'Interlaken', |
7063
|
|
|
|
|
|
|
'International Falls', |
7064
|
|
|
|
|
|
|
'Inver Grove Heights', |
7065
|
|
|
|
|
|
|
'Inverness', |
7066
|
|
|
|
|
|
|
'Inverness Highlands North', |
7067
|
|
|
|
|
|
|
'Inverness Highlands South', |
7068
|
|
|
|
|
|
|
'Inwood', |
7069
|
|
|
|
|
|
|
'Inyokern', |
7070
|
|
|
|
|
|
|
'Iola', |
7071
|
|
|
|
|
|
|
'Iona', |
7072
|
|
|
|
|
|
|
'Ione', |
7073
|
|
|
|
|
|
|
'Ionia', |
7074
|
|
|
|
|
|
|
'Iota', |
7075
|
|
|
|
|
|
|
'Iowa', |
7076
|
|
|
|
|
|
|
'Iowa City', |
7077
|
|
|
|
|
|
|
'Iowa Colony', |
7078
|
|
|
|
|
|
|
'Iowa Falls', |
7079
|
|
|
|
|
|
|
'Iowa Park', |
7080
|
|
|
|
|
|
|
'Ipava', |
7081
|
|
|
|
|
|
|
'Ipswich', |
7082
|
|
|
|
|
|
|
'Iraan', |
7083
|
|
|
|
|
|
|
'Iredell', |
7084
|
|
|
|
|
|
|
'Irena', |
7085
|
|
|
|
|
|
|
'Irene', |
7086
|
|
|
|
|
|
|
'Ireton', |
7087
|
|
|
|
|
|
|
'Irmo', |
7088
|
|
|
|
|
|
|
'Iron City', |
7089
|
|
|
|
|
|
|
'Iron Gate', |
7090
|
|
|
|
|
|
|
'Iron Horse', |
7091
|
|
|
|
|
|
|
'Iron Junction', |
7092
|
|
|
|
|
|
|
'Iron Mountain', |
7093
|
|
|
|
|
|
|
'Iron Mountain Lake', |
7094
|
|
|
|
|
|
|
'Iron Post', |
7095
|
|
|
|
|
|
|
'Iron Ridge', |
7096
|
|
|
|
|
|
|
'Iron River', |
7097
|
|
|
|
|
|
|
'Irondale', |
7098
|
|
|
|
|
|
|
'Irondequoit', |
7099
|
|
|
|
|
|
|
'Ironton', |
7100
|
|
|
|
|
|
|
'Ironwood', |
7101
|
|
|
|
|
|
|
'Iroquois', |
7102
|
|
|
|
|
|
|
'Iroquois Point', |
7103
|
|
|
|
|
|
|
'Irrigon', |
7104
|
|
|
|
|
|
|
'Irvine', |
7105
|
|
|
|
|
|
|
'Irving', |
7106
|
|
|
|
|
|
|
'Irvington', |
7107
|
|
|
|
|
|
|
'Irvona', |
7108
|
|
|
|
|
|
|
'Irwin', |
7109
|
|
|
|
|
|
|
'Irwindale', |
7110
|
|
|
|
|
|
|
'Irwinton', |
7111
|
|
|
|
|
|
|
'Isabel', |
7112
|
|
|
|
|
|
|
'Isabela', |
7113
|
|
|
|
|
|
|
'Isanti', |
7114
|
|
|
|
|
|
|
'Iselin', |
7115
|
|
|
|
|
|
|
'Ishpeming', |
7116
|
|
|
|
|
|
|
'Isla Vista', |
7117
|
|
|
|
|
|
|
'Islamorada, Village of Islands', |
7118
|
|
|
|
|
|
|
'Island', |
7119
|
|
|
|
|
|
|
'Island City', |
7120
|
|
|
|
|
|
|
'Island Heights', |
7121
|
|
|
|
|
|
|
'Island Lake', |
7122
|
|
|
|
|
|
|
'Island Park', |
7123
|
|
|
|
|
|
|
'Island Pond', |
7124
|
|
|
|
|
|
|
'Islandia', |
7125
|
|
|
|
|
|
|
'Isle', |
7126
|
|
|
|
|
|
|
'Isle of Hope', |
7127
|
|
|
|
|
|
|
'Isle of Palms', |
7128
|
|
|
|
|
|
|
'Isleta Village Proper', |
7129
|
|
|
|
|
|
|
'Isleton', |
7130
|
|
|
|
|
|
|
'Islip', |
7131
|
|
|
|
|
|
|
'Islip Terrace', |
7132
|
|
|
|
|
|
|
'Ismay', |
7133
|
|
|
|
|
|
|
'Isola', |
7134
|
|
|
|
|
|
|
'Issaquah', |
7135
|
|
|
|
|
|
|
'Istachatta', |
7136
|
|
|
|
|
|
|
'Italy', |
7137
|
|
|
|
|
|
|
'Itasca', |
7138
|
|
|
|
|
|
|
'Ithaca', |
7139
|
|
|
|
|
|
|
'Itta Bena', |
7140
|
|
|
|
|
|
|
'Iuka', |
7141
|
|
|
|
|
|
|
'Iva', |
7142
|
|
|
|
|
|
|
'Ivanhoe', |
7143
|
|
|
|
|
|
|
'Ivanhoe Estates', |
7144
|
|
|
|
|
|
|
'Ivanof Bay', |
7145
|
|
|
|
|
|
|
'Ives Estates', |
7146
|
|
|
|
|
|
|
'Ivesdale', |
7147
|
|
|
|
|
|
|
'Ivey', |
7148
|
|
|
|
|
|
|
'Ivins', |
7149
|
|
|
|
|
|
|
'Ivor', |
7150
|
|
|
|
|
|
|
'Ivyland', |
7151
|
|
|
|
|
|
|
'Ixonia', |
7152
|
|
|
|
|
|
|
'JAARS', |
7153
|
|
|
|
|
|
|
'Jacinto City', |
7154
|
|
|
|
|
|
|
'Jacksboro', |
7155
|
|
|
|
|
|
|
'Jackson', |
7156
|
|
|
|
|
|
|
'Jackson Center', |
7157
|
|
|
|
|
|
|
'Jackson Junction', |
7158
|
|
|
|
|
|
|
'Jacksonburg', |
7159
|
|
|
|
|
|
|
'Jacksonport', |
7160
|
|
|
|
|
|
|
'Jacksons\' Gap', |
7161
|
|
|
|
|
|
|
'Jacksonville', |
7162
|
|
|
|
|
|
|
'Jacksonville Beach', |
7163
|
|
|
|
|
|
|
'Jacob City', |
7164
|
|
|
|
|
|
|
'Jacobus', |
7165
|
|
|
|
|
|
|
'Jaconita', |
7166
|
|
|
|
|
|
|
'Jaffrey', |
7167
|
|
|
|
|
|
|
'Jagual', |
7168
|
|
|
|
|
|
|
'Jakin', |
7169
|
|
|
|
|
|
|
'Jal', |
7170
|
|
|
|
|
|
|
'Jamaica', |
7171
|
|
|
|
|
|
|
'Jamaica Beach', |
7172
|
|
|
|
|
|
|
'James City', |
7173
|
|
|
|
|
|
|
'James Town', |
7174
|
|
|
|
|
|
|
'Jamesburg', |
7175
|
|
|
|
|
|
|
'Jameson', |
7176
|
|
|
|
|
|
|
'Jamesport', |
7177
|
|
|
|
|
|
|
'Jamestown', |
7178
|
|
|
|
|
|
|
'Jamestown West', |
7179
|
|
|
|
|
|
|
'Jamesville', |
7180
|
|
|
|
|
|
|
'Jamison City', |
7181
|
|
|
|
|
|
|
'Jamul', |
7182
|
|
|
|
|
|
|
'Jan Phyl Village', |
7183
|
|
|
|
|
|
|
'Jane Lew', |
7184
|
|
|
|
|
|
|
'Janesville', |
7185
|
|
|
|
|
|
|
'Jansen', |
7186
|
|
|
|
|
|
|
'Jarales', |
7187
|
|
|
|
|
|
|
'Jarratt', |
7188
|
|
|
|
|
|
|
'Jarrettsville', |
7189
|
|
|
|
|
|
|
'Jasmine Estates', |
7190
|
|
|
|
|
|
|
'Jasonville', |
7191
|
|
|
|
|
|
|
'Jasper', |
7192
|
|
|
|
|
|
|
'Jauca', |
7193
|
|
|
|
|
|
|
'Java', |
7194
|
|
|
|
|
|
|
'Jay', |
7195
|
|
|
|
|
|
|
'Jayton', |
7196
|
|
|
|
|
|
|
'Jayuya', |
7197
|
|
|
|
|
|
|
'Jean Lafitte', |
7198
|
|
|
|
|
|
|
'Jeanerette', |
7199
|
|
|
|
|
|
|
'Jeannette', |
7200
|
|
|
|
|
|
|
'Jeddito', |
7201
|
|
|
|
|
|
|
'Jeddo', |
7202
|
|
|
|
|
|
|
'Jeffers', |
7203
|
|
|
|
|
|
|
'Jefferson', |
7204
|
|
|
|
|
|
|
'Jefferson City', |
7205
|
|
|
|
|
|
|
'Jefferson Heights', |
7206
|
|
|
|
|
|
|
'Jefferson Hills', |
7207
|
|
|
|
|
|
|
'Jefferson Valley-Yorktown', |
7208
|
|
|
|
|
|
|
'Jeffersontown', |
7209
|
|
|
|
|
|
|
'Jeffersonville', |
7210
|
|
|
|
|
|
|
'Jeffrey City', |
7211
|
|
|
|
|
|
|
'Jeisyville', |
7212
|
|
|
|
|
|
|
'Jellico', |
7213
|
|
|
|
|
|
|
'Jemez Pueblo', |
7214
|
|
|
|
|
|
|
'Jemez Springs', |
7215
|
|
|
|
|
|
|
'Jemison', |
7216
|
|
|
|
|
|
|
'Jena', |
7217
|
|
|
|
|
|
|
'Jenera', |
7218
|
|
|
|
|
|
|
'Jenison', |
7219
|
|
|
|
|
|
|
'Jenkins', |
7220
|
|
|
|
|
|
|
'Jenkinsburg', |
7221
|
|
|
|
|
|
|
'Jenkintown', |
7222
|
|
|
|
|
|
|
'Jenks', |
7223
|
|
|
|
|
|
|
'Jennerstown', |
7224
|
|
|
|
|
|
|
'Jennette', |
7225
|
|
|
|
|
|
|
'Jennings', |
7226
|
|
|
|
|
|
|
'Jennings Lodge', |
7227
|
|
|
|
|
|
|
'Jensen Beach', |
7228
|
|
|
|
|
|
|
'Jericho', |
7229
|
|
|
|
|
|
|
'Jerico Springs', |
7230
|
|
|
|
|
|
|
'Jermyn', |
7231
|
|
|
|
|
|
|
'Jerome', |
7232
|
|
|
|
|
|
|
'Jeromesville', |
7233
|
|
|
|
|
|
|
'Jerry City', |
7234
|
|
|
|
|
|
|
'Jersey', |
7235
|
|
|
|
|
|
|
'Jersey City', |
7236
|
|
|
|
|
|
|
'Jersey Shore', |
7237
|
|
|
|
|
|
|
'Jersey Village', |
7238
|
|
|
|
|
|
|
'Jerseytown', |
7239
|
|
|
|
|
|
|
'Jerseyville', |
7240
|
|
|
|
|
|
|
'Jerusalem', |
7241
|
|
|
|
|
|
|
'Jessup', |
7242
|
|
|
|
|
|
|
'Jesup', |
7243
|
|
|
|
|
|
|
'Jet', |
7244
|
|
|
|
|
|
|
'Jetmore', |
7245
|
|
|
|
|
|
|
'Jette', |
7246
|
|
|
|
|
|
|
'Jewell', |
7247
|
|
|
|
|
|
|
'Jewell Junction', |
7248
|
|
|
|
|
|
|
'Jewett', |
7249
|
|
|
|
|
|
|
'Jewett City', |
7250
|
|
|
|
|
|
|
'Jim Thorpe', |
7251
|
|
|
|
|
|
|
'Joanna', |
7252
|
|
|
|
|
|
|
'Joaquin', |
7253
|
|
|
|
|
|
|
'Jobos', |
7254
|
|
|
|
|
|
|
'Johannesburg', |
7255
|
|
|
|
|
|
|
'John Day', |
7256
|
|
|
|
|
|
|
'John Sam Lake', |
7257
|
|
|
|
|
|
|
'Johnsburg', |
7258
|
|
|
|
|
|
|
'Johnson', |
7259
|
|
|
|
|
|
|
'Johnson City', |
7260
|
|
|
|
|
|
|
'Johnson Creek', |
7261
|
|
|
|
|
|
|
'Johnson Lane', |
7262
|
|
|
|
|
|
|
'Johnsonburg', |
7263
|
|
|
|
|
|
|
'Johnsonville', |
7264
|
|
|
|
|
|
|
'Johnston', |
7265
|
|
|
|
|
|
|
'Johnston City', |
7266
|
|
|
|
|
|
|
'Johnstown', |
7267
|
|
|
|
|
|
|
'Johnsville', |
7268
|
|
|
|
|
|
|
'Joice', |
7269
|
|
|
|
|
|
|
'Joiner', |
7270
|
|
|
|
|
|
|
'Joliet', |
7271
|
|
|
|
|
|
|
'Jolivue', |
7272
|
|
|
|
|
|
|
'Jolley', |
7273
|
|
|
|
|
|
|
'Jolly', |
7274
|
|
|
|
|
|
|
'Jollyville', |
7275
|
|
|
|
|
|
|
'Jones', |
7276
|
|
|
|
|
|
|
'Jones Creek', |
7277
|
|
|
|
|
|
|
'Jonesboro', |
7278
|
|
|
|
|
|
|
'Jonesborough', |
7279
|
|
|
|
|
|
|
'Jonesburg', |
7280
|
|
|
|
|
|
|
'Jonestown', |
7281
|
|
|
|
|
|
|
'Jonesville', |
7282
|
|
|
|
|
|
|
'Joplin', |
7283
|
|
|
|
|
|
|
'Joppa', |
7284
|
|
|
|
|
|
|
'Joppatowne', |
7285
|
|
|
|
|
|
|
'Jordan', |
7286
|
|
|
|
|
|
|
'Jordan Road-Canyon Creek', |
7287
|
|
|
|
|
|
|
'Jordan Valley', |
7288
|
|
|
|
|
|
|
'Joseph', |
7289
|
|
|
|
|
|
|
'Josephine', |
7290
|
|
|
|
|
|
|
'Josephville', |
7291
|
|
|
|
|
|
|
'Joshua', |
7292
|
|
|
|
|
|
|
'Joshua Tree', |
7293
|
|
|
|
|
|
|
'Jourdanton', |
7294
|
|
|
|
|
|
|
'Joy', |
7295
|
|
|
|
|
|
|
'Juana DÃaz', |
7296
|
|
|
|
|
|
|
'Jud', |
7297
|
|
|
|
|
|
|
'Judith Gap', |
7298
|
|
|
|
|
|
|
'Judson', |
7299
|
|
|
|
|
|
|
'Judsonia', |
7300
|
|
|
|
|
|
|
'Julesburg', |
7301
|
|
|
|
|
|
|
'Juliaetta', |
7302
|
|
|
|
|
|
|
'Julian', |
7303
|
|
|
|
|
|
|
'Jumpertown', |
7304
|
|
|
|
|
|
|
'Juncal', |
7305
|
|
|
|
|
|
|
'Juncos', |
7306
|
|
|
|
|
|
|
'Junction', |
7307
|
|
|
|
|
|
|
'Junction City', |
7308
|
|
|
|
|
|
|
'June Park', |
7309
|
|
|
|
|
|
|
'Juneau', |
7310
|
|
|
|
|
|
|
'Juneau city and', |
7311
|
|
|
|
|
|
|
'Juniata', |
7312
|
|
|
|
|
|
|
'Juniata Terrace', |
7313
|
|
|
|
|
|
|
'Junior', |
7314
|
|
|
|
|
|
|
'Juno Beach', |
7315
|
|
|
|
|
|
|
'Juno Ridge', |
7316
|
|
|
|
|
|
|
'Jupiter', |
7317
|
|
|
|
|
|
|
'Jupiter Inlet Colony', |
7318
|
|
|
|
|
|
|
'Jupiter Island', |
7319
|
|
|
|
|
|
|
'Justice', |
7320
|
|
|
|
|
|
|
'Justin', |
7321
|
|
|
|
|
|
|
'K-Bar Ranch', |
7322
|
|
|
|
|
|
|
'K. I. Sawyer AFB', |
7323
|
|
|
|
|
|
|
'Kaaawa', |
7324
|
|
|
|
|
|
|
'Kaanapali', |
7325
|
|
|
|
|
|
|
'Kachemak', |
7326
|
|
|
|
|
|
|
'Kachina Village', |
7327
|
|
|
|
|
|
|
'Kadoka', |
7328
|
|
|
|
|
|
|
'Kahaluu', |
7329
|
|
|
|
|
|
|
'Kahaluu-Keauhou', |
7330
|
|
|
|
|
|
|
'Kahlotus', |
7331
|
|
|
|
|
|
|
'Kahoka', |
7332
|
|
|
|
|
|
|
'Kahuku', |
7333
|
|
|
|
|
|
|
'Kahului', |
7334
|
|
|
|
|
|
|
'Kaibab', |
7335
|
|
|
|
|
|
|
'Kaibito', |
7336
|
|
|
|
|
|
|
'Kailua', |
7337
|
|
|
|
|
|
|
'Kake', |
7338
|
|
|
|
|
|
|
'Kaktovik', |
7339
|
|
|
|
|
|
|
'Kalaheo', |
7340
|
|
|
|
|
|
|
'Kalama', |
7341
|
|
|
|
|
|
|
'Kalamazoo', |
7342
|
|
|
|
|
|
|
'Kalaoa', |
7343
|
|
|
|
|
|
|
'Kaleva', |
7344
|
|
|
|
|
|
|
'Kalida', |
7345
|
|
|
|
|
|
|
'Kalifornsky', |
7346
|
|
|
|
|
|
|
'Kalihiwai', |
7347
|
|
|
|
|
|
|
'Kalispell', |
7348
|
|
|
|
|
|
|
'Kalkaska', |
7349
|
|
|
|
|
|
|
'Kalona', |
7350
|
|
|
|
|
|
|
'Kaltag', |
7351
|
|
|
|
|
|
|
'Kamas', |
7352
|
|
|
|
|
|
|
'Kamiah', |
7353
|
|
|
|
|
|
|
'Kampsville', |
7354
|
|
|
|
|
|
|
'Kamrar', |
7355
|
|
|
|
|
|
|
'Kanab', |
7356
|
|
|
|
|
|
|
'Kanarraville', |
7357
|
|
|
|
|
|
|
'Kanawha', |
7358
|
|
|
|
|
|
|
'Kandiyohi', |
7359
|
|
|
|
|
|
|
'Kane', |
7360
|
|
|
|
|
|
|
'Kaneohe', |
7361
|
|
|
|
|
|
|
'Kaneohe Station', |
7362
|
|
|
|
|
|
|
'Kangley', |
7363
|
|
|
|
|
|
|
'Kankakee', |
7364
|
|
|
|
|
|
|
'Kannapolis', |
7365
|
|
|
|
|
|
|
'Kanopolis', |
7366
|
|
|
|
|
|
|
'Kanorado', |
7367
|
|
|
|
|
|
|
'Kanosh', |
7368
|
|
|
|
|
|
|
'Kansas', |
7369
|
|
|
|
|
|
|
'Kansas City', |
7370
|
|
|
|
|
|
|
'Kapaa', |
7371
|
|
|
|
|
|
|
'Kapaau', |
7372
|
|
|
|
|
|
|
'Kapalua', |
7373
|
|
|
|
|
|
|
'Kaplan', |
7374
|
|
|
|
|
|
|
'Kappa', |
7375
|
|
|
|
|
|
|
'Karlsruhe', |
7376
|
|
|
|
|
|
|
'Karlstad', |
7377
|
|
|
|
|
|
|
'Karluk', |
7378
|
|
|
|
|
|
|
'Karnak', |
7379
|
|
|
|
|
|
|
'Karnes City', |
7380
|
|
|
|
|
|
|
'Karns City', |
7381
|
|
|
|
|
|
|
'Kasaan', |
7382
|
|
|
|
|
|
|
'Kaser', |
7383
|
|
|
|
|
|
|
'Kasigluk', |
7384
|
|
|
|
|
|
|
'Kasilof', |
7385
|
|
|
|
|
|
|
'Kaskaskia', |
7386
|
|
|
|
|
|
|
'Kasota', |
7387
|
|
|
|
|
|
|
'Kasson', |
7388
|
|
|
|
|
|
|
'Kathleen', |
7389
|
|
|
|
|
|
|
'Kathryn', |
7390
|
|
|
|
|
|
|
'Katy', |
7391
|
|
|
|
|
|
|
'Kaufman', |
7392
|
|
|
|
|
|
|
'Kaukauna', |
7393
|
|
|
|
|
|
|
'Kaumakani', |
7394
|
|
|
|
|
|
|
'Kaunakakai', |
7395
|
|
|
|
|
|
|
'Kaw City', |
7396
|
|
|
|
|
|
|
'Kawela Bay', |
7397
|
|
|
|
|
|
|
'Kaycee', |
7398
|
|
|
|
|
|
|
'Kayenta', |
7399
|
|
|
|
|
|
|
'Kaylor', |
7400
|
|
|
|
|
|
|
'Kaysville', |
7401
|
|
|
|
|
|
|
'Keaau', |
7402
|
|
|
|
|
|
|
'Keachi', |
7403
|
|
|
|
|
|
|
'Kealakekua', |
7404
|
|
|
|
|
|
|
'Keams Canyon', |
7405
|
|
|
|
|
|
|
'Keansburg', |
7406
|
|
|
|
|
|
|
'Kearney', |
7407
|
|
|
|
|
|
|
'Kearns', |
7408
|
|
|
|
|
|
|
'Kearny', |
7409
|
|
|
|
|
|
|
'Kechi', |
7410
|
|
|
|
|
|
|
'Keddie', |
7411
|
|
|
|
|
|
|
'Keedysville', |
7412
|
|
|
|
|
|
|
'Keego Harbor', |
7413
|
|
|
|
|
|
|
'Keeler', |
7414
|
|
|
|
|
|
|
'Keene', |
7415
|
|
|
|
|
|
|
'Keeneland', |
7416
|
|
|
|
|
|
|
'Keener', |
7417
|
|
|
|
|
|
|
'Keenes', |
7418
|
|
|
|
|
|
|
'Keenesburg', |
7419
|
|
|
|
|
|
|
'Keensburg', |
7420
|
|
|
|
|
|
|
'Keeseville', |
7421
|
|
|
|
|
|
|
'Keewatin', |
7422
|
|
|
|
|
|
|
'Keiser', |
7423
|
|
|
|
|
|
|
'Keithsburg', |
7424
|
|
|
|
|
|
|
'Keizer', |
7425
|
|
|
|
|
|
|
'Kekaha', |
7426
|
|
|
|
|
|
|
'Kekoskee', |
7427
|
|
|
|
|
|
|
'Kelford', |
7428
|
|
|
|
|
|
|
'Kell', |
7429
|
|
|
|
|
|
|
'Keller', |
7430
|
|
|
|
|
|
|
'Kellerton', |
7431
|
|
|
|
|
|
|
'Kelley', |
7432
|
|
|
|
|
|
|
'Kelleys Island', |
7433
|
|
|
|
|
|
|
'Kelliher', |
7434
|
|
|
|
|
|
|
'Kellnersville', |
7435
|
|
|
|
|
|
|
'Kellogg', |
7436
|
|
|
|
|
|
|
'Kelly', |
7437
|
|
|
|
|
|
|
'Kellyville', |
7438
|
|
|
|
|
|
|
'Kelseyville', |
7439
|
|
|
|
|
|
|
'Kelso', |
7440
|
|
|
|
|
|
|
'Kemah', |
7441
|
|
|
|
|
|
|
'Kemmerer', |
7442
|
|
|
|
|
|
|
'Kemp', |
7443
|
|
|
|
|
|
|
'Kemp Mill', |
7444
|
|
|
|
|
|
|
'Kempner', |
7445
|
|
|
|
|
|
|
'Kempton', |
7446
|
|
|
|
|
|
|
'Ken Caryl', |
7447
|
|
|
|
|
|
|
'Kenai', |
7448
|
|
|
|
|
|
|
'Kenansville', |
7449
|
|
|
|
|
|
|
'Kenbridge', |
7450
|
|
|
|
|
|
|
'Kendale Lakes', |
7451
|
|
|
|
|
|
|
'Kendall', |
7452
|
|
|
|
|
|
|
'Kendall Green', |
7453
|
|
|
|
|
|
|
'Kendall Park', |
7454
|
|
|
|
|
|
|
'Kendall West', |
7455
|
|
|
|
|
|
|
'Kendallville', |
7456
|
|
|
|
|
|
|
'Kendleton', |
7457
|
|
|
|
|
|
|
'Kendrick', |
7458
|
|
|
|
|
|
|
'Kenedy', |
7459
|
|
|
|
|
|
|
'Kenefic', |
7460
|
|
|
|
|
|
|
'Kenefick', |
7461
|
|
|
|
|
|
|
'Kenesaw', |
7462
|
|
|
|
|
|
|
'Kenhorst', |
7463
|
|
|
|
|
|
|
'Kenilworth', |
7464
|
|
|
|
|
|
|
'Kenly', |
7465
|
|
|
|
|
|
|
'Kenmare', |
7466
|
|
|
|
|
|
|
'Kenmore', |
7467
|
|
|
|
|
|
|
'Kennan', |
7468
|
|
|
|
|
|
|
'Kennard', |
7469
|
|
|
|
|
|
|
'Kennebec', |
7470
|
|
|
|
|
|
|
'Kennebunk', |
7471
|
|
|
|
|
|
|
'Kennebunkport', |
7472
|
|
|
|
|
|
|
'Kennedale', |
7473
|
|
|
|
|
|
|
'Kennedy', |
7474
|
|
|
|
|
|
|
'Kennedy Township', |
7475
|
|
|
|
|
|
|
'Kenner', |
7476
|
|
|
|
|
|
|
'Kennesaw', |
7477
|
|
|
|
|
|
|
'Kenneth', |
7478
|
|
|
|
|
|
|
'Kenneth City', |
7479
|
|
|
|
|
|
|
'Kennett', |
7480
|
|
|
|
|
|
|
'Kennett Square', |
7481
|
|
|
|
|
|
|
'Kennewick', |
7482
|
|
|
|
|
|
|
'Kenney', |
7483
|
|
|
|
|
|
|
'Kenny Lake', |
7484
|
|
|
|
|
|
|
'Kenosha', |
7485
|
|
|
|
|
|
|
'Kenova', |
7486
|
|
|
|
|
|
|
'Kensal', |
7487
|
|
|
|
|
|
|
'Kensett', |
7488
|
|
|
|
|
|
|
'Kensington', |
7489
|
|
|
|
|
|
|
'Kensington Park', |
7490
|
|
|
|
|
|
|
'Kent', |
7491
|
|
|
|
|
|
|
'Kent Acres', |
7492
|
|
|
|
|
|
|
'Kent City', |
7493
|
|
|
|
|
|
|
'Kent Narrows', |
7494
|
|
|
|
|
|
|
'Kentfield', |
7495
|
|
|
|
|
|
|
'Kentland', |
7496
|
|
|
|
|
|
|
'Kenton', |
7497
|
|
|
|
|
|
|
'Kenton Vale', |
7498
|
|
|
|
|
|
|
'Kentwood', |
7499
|
|
|
|
|
|
|
'Kenwood', |
7500
|
|
|
|
|
|
|
'Kenyon', |
7501
|
|
|
|
|
|
|
'Keo', |
7502
|
|
|
|
|
|
|
'Keokee', |
7503
|
|
|
|
|
|
|
'Keokuk', |
7504
|
|
|
|
|
|
|
'Keomah Village', |
7505
|
|
|
|
|
|
|
'Keosauqua', |
7506
|
|
|
|
|
|
|
'Keota', |
7507
|
|
|
|
|
|
|
'Kerens', |
7508
|
|
|
|
|
|
|
'Kerhonkson', |
7509
|
|
|
|
|
|
|
'Kerkhoven', |
7510
|
|
|
|
|
|
|
'Kerman', |
7511
|
|
|
|
|
|
|
'Kermit', |
7512
|
|
|
|
|
|
|
'Kernersville', |
7513
|
|
|
|
|
|
|
'Kernville', |
7514
|
|
|
|
|
|
|
'Kerr', |
7515
|
|
|
|
|
|
|
'Kerrick', |
7516
|
|
|
|
|
|
|
'Kerrville', |
7517
|
|
|
|
|
|
|
'Kersey', |
7518
|
|
|
|
|
|
|
'Kershaw', |
7519
|
|
|
|
|
|
|
'Keshena', |
7520
|
|
|
|
|
|
|
'Keswick', |
7521
|
|
|
|
|
|
|
'Ketchikan', |
7522
|
|
|
|
|
|
|
'Ketchum', |
7523
|
|
|
|
|
|
|
'Kettering', |
7524
|
|
|
|
|
|
|
'Kettle Falls', |
7525
|
|
|
|
|
|
|
'Kettle River', |
7526
|
|
|
|
|
|
|
'Kettleman City', |
7527
|
|
|
|
|
|
|
'Kettlersville', |
7528
|
|
|
|
|
|
|
'Kevil', |
7529
|
|
|
|
|
|
|
'Kevin', |
7530
|
|
|
|
|
|
|
'Kewanee', |
7531
|
|
|
|
|
|
|
'Kewanna', |
7532
|
|
|
|
|
|
|
'Kewaskum', |
7533
|
|
|
|
|
|
|
'Kewaunee', |
7534
|
|
|
|
|
|
|
'Key Biscayne', |
7535
|
|
|
|
|
|
|
'Key Colony Beach', |
7536
|
|
|
|
|
|
|
'Key Largo', |
7537
|
|
|
|
|
|
|
'Key West', |
7538
|
|
|
|
|
|
|
'Keyes', |
7539
|
|
|
|
|
|
|
'Keyesport', |
7540
|
|
|
|
|
|
|
'Keyport', |
7541
|
|
|
|
|
|
|
'Keys', |
7542
|
|
|
|
|
|
|
'Keyser', |
7543
|
|
|
|
|
|
|
'Keystone', |
7544
|
|
|
|
|
|
|
'Keystone Heights', |
7545
|
|
|
|
|
|
|
'Keysville', |
7546
|
|
|
|
|
|
|
'Keytesville', |
7547
|
|
|
|
|
|
|
'Kiana', |
7548
|
|
|
|
|
|
|
'Kiawah Island', |
7549
|
|
|
|
|
|
|
'Kibler', |
7550
|
|
|
|
|
|
|
'Kicking Horse', |
7551
|
|
|
|
|
|
|
'Kidder', |
7552
|
|
|
|
|
|
|
'Kief', |
7553
|
|
|
|
|
|
|
'Kiefer', |
7554
|
|
|
|
|
|
|
'Kiel', |
7555
|
|
|
|
|
|
|
'Kiester', |
7556
|
|
|
|
|
|
|
'Kihei', |
7557
|
|
|
|
|
|
|
'Kilauea', |
7558
|
|
|
|
|
|
|
'Kilbourne', |
7559
|
|
|
|
|
|
|
'Kildare', |
7560
|
|
|
|
|
|
|
'Kildeer', |
7561
|
|
|
|
|
|
|
'Kilgore', |
7562
|
|
|
|
|
|
|
'Kilkenny', |
7563
|
|
|
|
|
|
|
'Kill Devil Hills', |
7564
|
|
|
|
|
|
|
'Killbuck', |
7565
|
|
|
|
|
|
|
'Killdeer', |
7566
|
|
|
|
|
|
|
'Killeen', |
7567
|
|
|
|
|
|
|
'Killen', |
7568
|
|
|
|
|
|
|
'Killian', |
7569
|
|
|
|
|
|
|
'Killona', |
7570
|
|
|
|
|
|
|
'Kilmarnock', |
7571
|
|
|
|
|
|
|
'Kilmichael', |
7572
|
|
|
|
|
|
|
'Kiln', |
7573
|
|
|
|
|
|
|
'Kim', |
7574
|
|
|
|
|
|
|
'Kimball', |
7575
|
|
|
|
|
|
|
'Kimballton', |
7576
|
|
|
|
|
|
|
'Kimberling City', |
7577
|
|
|
|
|
|
|
'Kimberly', |
7578
|
|
|
|
|
|
|
'Kimbolton', |
7579
|
|
|
|
|
|
|
'Kimmswick', |
7580
|
|
|
|
|
|
|
'Kinbrae', |
7581
|
|
|
|
|
|
|
'Kincaid', |
7582
|
|
|
|
|
|
|
'Kinde', |
7583
|
|
|
|
|
|
|
'Kinder', |
7584
|
|
|
|
|
|
|
'Kinderhook', |
7585
|
|
|
|
|
|
|
'Kindred', |
7586
|
|
|
|
|
|
|
'King', |
7587
|
|
|
|
|
|
|
'King City', |
7588
|
|
|
|
|
|
|
'King Cove', |
7589
|
|
|
|
|
|
|
'King Salmon', |
7590
|
|
|
|
|
|
|
'King of Prussia', |
7591
|
|
|
|
|
|
|
'Kingdom City', |
7592
|
|
|
|
|
|
|
'Kingfisher', |
7593
|
|
|
|
|
|
|
'Kingman', |
7594
|
|
|
|
|
|
|
'Kings Bay Base', |
7595
|
|
|
|
|
|
|
'Kings Beach', |
7596
|
|
|
|
|
|
|
'Kings Grant', |
7597
|
|
|
|
|
|
|
'Kings Mountain', |
7598
|
|
|
|
|
|
|
'Kings Park', |
7599
|
|
|
|
|
|
|
'Kings Point', |
7600
|
|
|
|
|
|
|
'Kingsburg', |
7601
|
|
|
|
|
|
|
'Kingsbury', |
7602
|
|
|
|
|
|
|
'Kingsford', |
7603
|
|
|
|
|
|
|
'Kingsford Heights', |
7604
|
|
|
|
|
|
|
'Kingsgate', |
7605
|
|
|
|
|
|
|
'Kingsland', |
7606
|
|
|
|
|
|
|
'Kingsley', |
7607
|
|
|
|
|
|
|
'Kingsport', |
7608
|
|
|
|
|
|
|
'Kingston', |
7609
|
|
|
|
|
|
|
'Kingston Mines', |
7610
|
|
|
|
|
|
|
'Kingston Springs', |
7611
|
|
|
|
|
|
|
'Kingstown', |
7612
|
|
|
|
|
|
|
'Kingstree', |
7613
|
|
|
|
|
|
|
'Kingsville', |
7614
|
|
|
|
|
|
|
'Kingwood', |
7615
|
|
|
|
|
|
|
'Kinloch', |
7616
|
|
|
|
|
|
|
'Kinmundy', |
7617
|
|
|
|
|
|
|
'Kinnelon', |
7618
|
|
|
|
|
|
|
'Kinney', |
7619
|
|
|
|
|
|
|
'Kinross', |
7620
|
|
|
|
|
|
|
'Kinsey', |
7621
|
|
|
|
|
|
|
'Kinsley', |
7622
|
|
|
|
|
|
|
'Kinsman', |
7623
|
|
|
|
|
|
|
'Kinston', |
7624
|
|
|
|
|
|
|
'Kinta', |
7625
|
|
|
|
|
|
|
'Kiowa', |
7626
|
|
|
|
|
|
|
'Kipnuk', |
7627
|
|
|
|
|
|
|
'Kipton', |
7628
|
|
|
|
|
|
|
'Kirby', |
7629
|
|
|
|
|
|
|
'Kirbyville', |
7630
|
|
|
|
|
|
|
'Kirkersville', |
7631
|
|
|
|
|
|
|
'Kirkland', |
7632
|
|
|
|
|
|
|
'Kirklin', |
7633
|
|
|
|
|
|
|
'Kirkman', |
7634
|
|
|
|
|
|
|
'Kirkpatrick', |
7635
|
|
|
|
|
|
|
'Kirksville', |
7636
|
|
|
|
|
|
|
'Kirkville', |
7637
|
|
|
|
|
|
|
'Kirkwood', |
7638
|
|
|
|
|
|
|
'Kiron', |
7639
|
|
|
|
|
|
|
'Kirtland', |
7640
|
|
|
|
|
|
|
'Kirtland Hills', |
7641
|
|
|
|
|
|
|
'Kirvin', |
7642
|
|
|
|
|
|
|
'Kirwin', |
7643
|
|
|
|
|
|
|
'Kiryas Joel', |
7644
|
|
|
|
|
|
|
'Kismet', |
7645
|
|
|
|
|
|
|
'Kissimmee', |
7646
|
|
|
|
|
|
|
'Kistler', |
7647
|
|
|
|
|
|
|
'Kit Carson', |
7648
|
|
|
|
|
|
|
'Kite', |
7649
|
|
|
|
|
|
|
'Kittanning', |
7650
|
|
|
|
|
|
|
'Kittery', |
7651
|
|
|
|
|
|
|
'Kittery Point', |
7652
|
|
|
|
|
|
|
'Kittitas', |
7653
|
|
|
|
|
|
|
'Kittredge', |
7654
|
|
|
|
|
|
|
'Kittrell', |
7655
|
|
|
|
|
|
|
'Kitty Hawk', |
7656
|
|
|
|
|
|
|
'Kitzmiller', |
7657
|
|
|
|
|
|
|
'Kivalina', |
7658
|
|
|
|
|
|
|
'Klamath', |
7659
|
|
|
|
|
|
|
'Klamath Falls', |
7660
|
|
|
|
|
|
|
'Klawock', |
7661
|
|
|
|
|
|
|
'Klein', |
7662
|
|
|
|
|
|
|
'Klemme', |
7663
|
|
|
|
|
|
|
'Klickitat', |
7664
|
|
|
|
|
|
|
'Kline', |
7665
|
|
|
|
|
|
|
'Klingerstown', |
7666
|
|
|
|
|
|
|
'Klukwan', |
7667
|
|
|
|
|
|
|
'Knapp', |
7668
|
|
|
|
|
|
|
'Knierim', |
7669
|
|
|
|
|
|
|
'Knife River', |
7670
|
|
|
|
|
|
|
'Knightdale', |
7671
|
|
|
|
|
|
|
'Knightsen', |
7672
|
|
|
|
|
|
|
'Knightstown', |
7673
|
|
|
|
|
|
|
'Knightsville', |
7674
|
|
|
|
|
|
|
'Knik River', |
7675
|
|
|
|
|
|
|
'Knik-Fairview', |
7676
|
|
|
|
|
|
|
'Knippa', |
7677
|
|
|
|
|
|
|
'Knob Noster', |
7678
|
|
|
|
|
|
|
'Knobel', |
7679
|
|
|
|
|
|
|
'Knollwood', |
7680
|
|
|
|
|
|
|
'Knowles', |
7681
|
|
|
|
|
|
|
'Knox', |
7682
|
|
|
|
|
|
|
'Knox City', |
7683
|
|
|
|
|
|
|
'Knoxville', |
7684
|
|
|
|
|
|
|
'Kobuk', |
7685
|
|
|
|
|
|
|
'Kodiak', |
7686
|
|
|
|
|
|
|
'Kodiak Station', |
7687
|
|
|
|
|
|
|
'Kohler', |
7688
|
|
|
|
|
|
|
'Kokhanok', |
7689
|
|
|
|
|
|
|
'Kokomo', |
7690
|
|
|
|
|
|
|
'Koliganek', |
7691
|
|
|
|
|
|
|
'Koloa', |
7692
|
|
|
|
|
|
|
'Konawa', |
7693
|
|
|
|
|
|
|
'Kongiganak', |
7694
|
|
|
|
|
|
|
'Koontz Lake', |
7695
|
|
|
|
|
|
|
'Koosharem', |
7696
|
|
|
|
|
|
|
'Kooskia', |
7697
|
|
|
|
|
|
|
'Kootenai', |
7698
|
|
|
|
|
|
|
'Koppel', |
7699
|
|
|
|
|
|
|
'Kosciusko', |
7700
|
|
|
|
|
|
|
'Koshkonong', |
7701
|
|
|
|
|
|
|
'Kosse', |
7702
|
|
|
|
|
|
|
'Kossuth', |
7703
|
|
|
|
|
|
|
'Kotlik', |
7704
|
|
|
|
|
|
|
'Kotzebue', |
7705
|
|
|
|
|
|
|
'Kountze', |
7706
|
|
|
|
|
|
|
'Kouts', |
7707
|
|
|
|
|
|
|
'Koyuk', |
7708
|
|
|
|
|
|
|
'Koyukuk', |
7709
|
|
|
|
|
|
|
'Kramer', |
7710
|
|
|
|
|
|
|
'Kranzburg', |
7711
|
|
|
|
|
|
|
'Kratzerville', |
7712
|
|
|
|
|
|
|
'Kreamer', |
7713
|
|
|
|
|
|
|
'Krebs', |
7714
|
|
|
|
|
|
|
'Kremlin', |
7715
|
|
|
|
|
|
|
'Kremmling', |
7716
|
|
|
|
|
|
|
'Kress', |
7717
|
|
|
|
|
|
|
'Krotz Springs', |
7718
|
|
|
|
|
|
|
'Krugerville', |
7719
|
|
|
|
|
|
|
'Krum', |
7720
|
|
|
|
|
|
|
'Krupp', |
7721
|
|
|
|
|
|
|
'Kualapuu', |
7722
|
|
|
|
|
|
|
'Kukuihaele', |
7723
|
|
|
|
|
|
|
'Kulm', |
7724
|
|
|
|
|
|
|
'Kulpmont', |
7725
|
|
|
|
|
|
|
'Kulpsville', |
7726
|
|
|
|
|
|
|
'Kuna', |
7727
|
|
|
|
|
|
|
'Kupreanof', |
7728
|
|
|
|
|
|
|
'Kure Beach', |
7729
|
|
|
|
|
|
|
'Kurtistown', |
7730
|
|
|
|
|
|
|
'Kuttawa', |
7731
|
|
|
|
|
|
|
'Kutztown', |
7732
|
|
|
|
|
|
|
'Kwethluk', |
7733
|
|
|
|
|
|
|
'Kwigillingok', |
7734
|
|
|
|
|
|
|
'Kykotsmovi Village', |
7735
|
|
|
|
|
|
|
'Kyle', |
7736
|
|
|
|
|
|
|
'L\'Anse', |
7737
|
|
|
|
|
|
|
'La Alianza', |
7738
|
|
|
|
|
|
|
'La Barge', |
7739
|
|
|
|
|
|
|
'La Belle', |
7740
|
|
|
|
|
|
|
'La Blanca', |
7741
|
|
|
|
|
|
|
'La Bolt', |
7742
|
|
|
|
|
|
|
'La Canada Flintridge', |
7743
|
|
|
|
|
|
|
'La Casita-Garciasville', |
7744
|
|
|
|
|
|
|
'La Center', |
7745
|
|
|
|
|
|
|
'La Cienega', |
7746
|
|
|
|
|
|
|
'La Conner', |
7747
|
|
|
|
|
|
|
'La Crescent', |
7748
|
|
|
|
|
|
|
'La Crescenta-Montrose', |
7749
|
|
|
|
|
|
|
'La Croft', |
7750
|
|
|
|
|
|
|
'La Crosse', |
7751
|
|
|
|
|
|
|
'La Cygne', |
7752
|
|
|
|
|
|
|
'La Dolores', |
7753
|
|
|
|
|
|
|
'La Due', |
7754
|
|
|
|
|
|
|
'La Farge', |
7755
|
|
|
|
|
|
|
'La Fargeville', |
7756
|
|
|
|
|
|
|
'La Fayette', |
7757
|
|
|
|
|
|
|
'La Feria', |
7758
|
|
|
|
|
|
|
'La Feria North', |
7759
|
|
|
|
|
|
|
'La Fermina', |
7760
|
|
|
|
|
|
|
'La Follette', |
7761
|
|
|
|
|
|
|
'La Fontaine', |
7762
|
|
|
|
|
|
|
'La Grande', |
7763
|
|
|
|
|
|
|
'La Grange', |
7764
|
|
|
|
|
|
|
'La Grange Park', |
7765
|
|
|
|
|
|
|
'La Grulla', |
7766
|
|
|
|
|
|
|
'La Habra', |
7767
|
|
|
|
|
|
|
'La Habra Heights', |
7768
|
|
|
|
|
|
|
'La Harpe', |
7769
|
|
|
|
|
|
|
'La Homa', |
7770
|
|
|
|
|
|
|
'La Jara', |
7771
|
|
|
|
|
|
|
'La Joya', |
7772
|
|
|
|
|
|
|
'La Junta', |
7773
|
|
|
|
|
|
|
'La Luisa', |
7774
|
|
|
|
|
|
|
'La Luz', |
7775
|
|
|
|
|
|
|
'La Marque', |
7776
|
|
|
|
|
|
|
'La Mesa', |
7777
|
|
|
|
|
|
|
'La Mirada', |
7778
|
|
|
|
|
|
|
'La Moille', |
7779
|
|
|
|
|
|
|
'La Monte', |
7780
|
|
|
|
|
|
|
'La Motte', |
7781
|
|
|
|
|
|
|
'La Palma', |
7782
|
|
|
|
|
|
|
'La Paloma', |
7783
|
|
|
|
|
|
|
'La Paloma-Lost Creek', |
7784
|
|
|
|
|
|
|
'La Parguera', |
7785
|
|
|
|
|
|
|
'La Paz', |
7786
|
|
|
|
|
|
|
'La Pine', |
7787
|
|
|
|
|
|
|
'La Plant', |
7788
|
|
|
|
|
|
|
'La Plata', |
7789
|
|
|
|
|
|
|
'La Playa', |
7790
|
|
|
|
|
|
|
'La Plena', |
7791
|
|
|
|
|
|
|
'La Porte', |
7792
|
|
|
|
|
|
|
'La Porte City', |
7793
|
|
|
|
|
|
|
'La Prairie', |
7794
|
|
|
|
|
|
|
'La Presa', |
7795
|
|
|
|
|
|
|
'La Pryor', |
7796
|
|
|
|
|
|
|
'La Puebla', |
7797
|
|
|
|
|
|
|
'La Puente', |
7798
|
|
|
|
|
|
|
'La Puerta', |
7799
|
|
|
|
|
|
|
'La Quinta', |
7800
|
|
|
|
|
|
|
'La Riviera', |
7801
|
|
|
|
|
|
|
'La Rose', |
7802
|
|
|
|
|
|
|
'La Rosita', |
7803
|
|
|
|
|
|
|
'La Rue', |
7804
|
|
|
|
|
|
|
'La Russell', |
7805
|
|
|
|
|
|
|
'La Sal', |
7806
|
|
|
|
|
|
|
'La Salle', |
7807
|
|
|
|
|
|
|
'La Tour', |
7808
|
|
|
|
|
|
|
'La Vale', |
7809
|
|
|
|
|
|
|
'La Valle', |
7810
|
|
|
|
|
|
|
'La Vergne', |
7811
|
|
|
|
|
|
|
'La Verkin', |
7812
|
|
|
|
|
|
|
'La Verne', |
7813
|
|
|
|
|
|
|
'La Vernia', |
7814
|
|
|
|
|
|
|
'La Veta', |
7815
|
|
|
|
|
|
|
'La Victoria', |
7816
|
|
|
|
|
|
|
'La Villa', |
7817
|
|
|
|
|
|
|
'La Vista', |
7818
|
|
|
|
|
|
|
'La Ward', |
7819
|
|
|
|
|
|
|
'LaCoste', |
7820
|
|
|
|
|
|
|
'LaFayette', |
7821
|
|
|
|
|
|
|
'LaGrange', |
7822
|
|
|
|
|
|
|
'LaMoure', |
7823
|
|
|
|
|
|
|
'Labadieville', |
7824
|
|
|
|
|
|
|
'Labelle', |
7825
|
|
|
|
|
|
|
'Labette', |
7826
|
|
|
|
|
|
|
'Labish Village', |
7827
|
|
|
|
|
|
|
'Lac La Belle', |
7828
|
|
|
|
|
|
|
'Lac du Flambeau', |
7829
|
|
|
|
|
|
|
'Lacey', |
7830
|
|
|
|
|
|
|
'Laceyville', |
7831
|
|
|
|
|
|
|
'Lackawanna', |
7832
|
|
|
|
|
|
|
'Lackland AFB', |
7833
|
|
|
|
|
|
|
'Laclede', |
7834
|
|
|
|
|
|
|
'Lacombe', |
7835
|
|
|
|
|
|
|
'Lacon', |
7836
|
|
|
|
|
|
|
'Lacona', |
7837
|
|
|
|
|
|
|
'Laconia', |
7838
|
|
|
|
|
|
|
'Lacoochee', |
7839
|
|
|
|
|
|
|
'Lacy-Lakeview', |
7840
|
|
|
|
|
|
|
'Ladd', |
7841
|
|
|
|
|
|
|
'Laddonia', |
7842
|
|
|
|
|
|
|
'Ladera Heights', |
7843
|
|
|
|
|
|
|
'Ladoga', |
7844
|
|
|
|
|
|
|
'Ladonia', |
7845
|
|
|
|
|
|
|
'Ladora', |
7846
|
|
|
|
|
|
|
'Ladson', |
7847
|
|
|
|
|
|
|
'Ladue', |
7848
|
|
|
|
|
|
|
'Lady Lake', |
7849
|
|
|
|
|
|
|
'Ladysmith', |
7850
|
|
|
|
|
|
|
'Lafayette', |
7851
|
|
|
|
|
|
|
'Lafe', |
7852
|
|
|
|
|
|
|
'Lafitte', |
7853
|
|
|
|
|
|
|
'Laflin', |
7854
|
|
|
|
|
|
|
'Lago', |
7855
|
|
|
|
|
|
|
'Lago Vista', |
7856
|
|
|
|
|
|
|
'Lagrange', |
7857
|
|
|
|
|
|
|
'Lagro', |
7858
|
|
|
|
|
|
|
'Laguna', |
7859
|
|
|
|
|
|
|
'Laguna Beach', |
7860
|
|
|
|
|
|
|
'Laguna Heights', |
7861
|
|
|
|
|
|
|
'Laguna Hills', |
7862
|
|
|
|
|
|
|
'Laguna Niguel', |
7863
|
|
|
|
|
|
|
'Laguna Seca', |
7864
|
|
|
|
|
|
|
'Laguna Vista', |
7865
|
|
|
|
|
|
|
'Laguna West-Lakeside', |
7866
|
|
|
|
|
|
|
'Laguna Woods', |
7867
|
|
|
|
|
|
|
'Lagunitas-Forest Knolls', |
7868
|
|
|
|
|
|
|
'Lahaina', |
7869
|
|
|
|
|
|
|
'Lahoma', |
7870
|
|
|
|
|
|
|
'Laie', |
7871
|
|
|
|
|
|
|
'Laingsburg', |
7872
|
|
|
|
|
|
|
'Lajas', |
7873
|
|
|
|
|
|
|
'Lake', |
7874
|
|
|
|
|
|
|
'Lake Alfred', |
7875
|
|
|
|
|
|
|
'Lake Almanor Country Club', |
7876
|
|
|
|
|
|
|
'Lake Almanor Peninsula', |
7877
|
|
|
|
|
|
|
'Lake Almanor West', |
7878
|
|
|
|
|
|
|
'Lake Aluma', |
7879
|
|
|
|
|
|
|
'Lake Andes', |
7880
|
|
|
|
|
|
|
'Lake Angelus', |
7881
|
|
|
|
|
|
|
'Lake Ann', |
7882
|
|
|
|
|
|
|
'Lake Annette', |
7883
|
|
|
|
|
|
|
'Lake Arbor', |
7884
|
|
|
|
|
|
|
'Lake Arrowhead', |
7885
|
|
|
|
|
|
|
'Lake Arthur', |
7886
|
|
|
|
|
|
|
'Lake Barcroft', |
7887
|
|
|
|
|
|
|
'Lake Barrington', |
7888
|
|
|
|
|
|
|
'Lake Belvedere Estates', |
7889
|
|
|
|
|
|
|
'Lake Benton', |
7890
|
|
|
|
|
|
|
'Lake Bluff', |
7891
|
|
|
|
|
|
|
'Lake Bosworth', |
7892
|
|
|
|
|
|
|
'Lake Bridgeport', |
7893
|
|
|
|
|
|
|
'Lake Bronson', |
7894
|
|
|
|
|
|
|
'Lake Brownwood', |
7895
|
|
|
|
|
|
|
'Lake Buena Vista', |
7896
|
|
|
|
|
|
|
'Lake Butler', |
7897
|
|
|
|
|
|
|
'Lake Butter', |
7898
|
|
|
|
|
|
|
'Lake Carmel', |
7899
|
|
|
|
|
|
|
'Lake Catherine', |
7900
|
|
|
|
|
|
|
'Lake Cavanaugh', |
7901
|
|
|
|
|
|
|
'Lake Charles', |
7902
|
|
|
|
|
|
|
'Lake City', |
7903
|
|
|
|
|
|
|
'Lake Clarke Shores', |
7904
|
|
|
|
|
|
|
'Lake Crystal', |
7905
|
|
|
|
|
|
|
'Lake Dalecarlia', |
7906
|
|
|
|
|
|
|
'Lake Dallas', |
7907
|
|
|
|
|
|
|
'Lake Darby', |
7908
|
|
|
|
|
|
|
'Lake Davis', |
7909
|
|
|
|
|
|
|
'Lake Delton', |
7910
|
|
|
|
|
|
|
'Lake Elmo', |
7911
|
|
|
|
|
|
|
'Lake Elsinore', |
7912
|
|
|
|
|
|
|
'Lake Erie Beach', |
7913
|
|
|
|
|
|
|
'Lake Fenton', |
7914
|
|
|
|
|
|
|
'Lake Forest', |
7915
|
|
|
|
|
|
|
'Lake Forest Park', |
7916
|
|
|
|
|
|
|
'Lake Geneva', |
7917
|
|
|
|
|
|
|
'Lake George', |
7918
|
|
|
|
|
|
|
'Lake Goodwin', |
7919
|
|
|
|
|
|
|
'Lake Grove', |
7920
|
|
|
|
|
|
|
'Lake Hamilton', |
7921
|
|
|
|
|
|
|
'Lake Harbor', |
7922
|
|
|
|
|
|
|
'Lake Hart', |
7923
|
|
|
|
|
|
|
'Lake Havasu City', |
7924
|
|
|
|
|
|
|
'Lake Helen', |
7925
|
|
|
|
|
|
|
'Lake Henry', |
7926
|
|
|
|
|
|
|
'Lake Heritage', |
7927
|
|
|
|
|
|
|
'Lake Isabella', |
7928
|
|
|
|
|
|
|
'Lake Jackson', |
7929
|
|
|
|
|
|
|
'Lake Junaluska', |
7930
|
|
|
|
|
|
|
'Lake Kathryn', |
7931
|
|
|
|
|
|
|
'Lake Katrine', |
7932
|
|
|
|
|
|
|
'Lake Ketchum', |
7933
|
|
|
|
|
|
|
'Lake Kiowa', |
7934
|
|
|
|
|
|
|
'Lake Koshkonong', |
7935
|
|
|
|
|
|
|
'Lake Lac La Belle', |
7936
|
|
|
|
|
|
|
'Lake Lafayette', |
7937
|
|
|
|
|
|
|
'Lake Lillian', |
7938
|
|
|
|
|
|
|
'Lake Linden', |
7939
|
|
|
|
|
|
|
'Lake Lindsey', |
7940
|
|
|
|
|
|
|
'Lake Lorraine', |
7941
|
|
|
|
|
|
|
'Lake Los Angeles', |
7942
|
|
|
|
|
|
|
'Lake Lotawana', |
7943
|
|
|
|
|
|
|
'Lake Louise', |
7944
|
|
|
|
|
|
|
'Lake Lucerne', |
7945
|
|
|
|
|
|
|
'Lake Lure', |
7946
|
|
|
|
|
|
|
'Lake Luzerne-Hadley', |
7947
|
|
|
|
|
|
|
'Lake Mack-Forest Hills', |
7948
|
|
|
|
|
|
|
'Lake Magdalene', |
7949
|
|
|
|
|
|
|
'Lake Marcel-Stillwater', |
7950
|
|
|
|
|
|
|
'Lake Mary', |
7951
|
|
|
|
|
|
|
'Lake McMurray', |
7952
|
|
|
|
|
|
|
'Lake Meade', |
7953
|
|
|
|
|
|
|
'Lake Michigan Beach', |
7954
|
|
|
|
|
|
|
'Lake Mills', |
7955
|
|
|
|
|
|
|
'Lake Minchumina', |
7956
|
|
|
|
|
|
|
'Lake Mohawk', |
7957
|
|
|
|
|
|
|
'Lake Mohegan', |
7958
|
|
|
|
|
|
|
'Lake Montezuma', |
7959
|
|
|
|
|
|
|
'Lake Monticello', |
7960
|
|
|
|
|
|
|
'Lake Morton-Berrydale', |
7961
|
|
|
|
|
|
|
'Lake Murray of Richland', |
7962
|
|
|
|
|
|
|
'Lake Mykee Town', |
7963
|
|
|
|
|
|
|
'Lake Nacimiento', |
7964
|
|
|
|
|
|
|
'Lake Nebagamon', |
7965
|
|
|
|
|
|
|
'Lake Norden', |
7966
|
|
|
|
|
|
|
'Lake Norman of Catawba', |
7967
|
|
|
|
|
|
|
'Lake Odessa', |
7968
|
|
|
|
|
|
|
'Lake Orion', |
7969
|
|
|
|
|
|
|
'Lake Oswego', |
7970
|
|
|
|
|
|
|
'Lake Ozark', |
7971
|
|
|
|
|
|
|
'Lake Panasoffkee', |
7972
|
|
|
|
|
|
|
'Lake Park', |
7973
|
|
|
|
|
|
|
'Lake Placid', |
7974
|
|
|
|
|
|
|
'Lake Pocotopaug', |
7975
|
|
|
|
|
|
|
'Lake Preston', |
7976
|
|
|
|
|
|
|
'Lake Providence', |
7977
|
|
|
|
|
|
|
'Lake Purdy', |
7978
|
|
|
|
|
|
|
'Lake Quivira', |
7979
|
|
|
|
|
|
|
'Lake Ridge', |
7980
|
|
|
|
|
|
|
'Lake Ripley', |
7981
|
|
|
|
|
|
|
'Lake Roesiger', |
7982
|
|
|
|
|
|
|
'Lake Ronkonkoma', |
7983
|
|
|
|
|
|
|
'Lake San Marcos', |
7984
|
|
|
|
|
|
|
'Lake Santeetlah', |
7985
|
|
|
|
|
|
|
'Lake Sarasota', |
7986
|
|
|
|
|
|
|
'Lake Secession', |
7987
|
|
|
|
|
|
|
'Lake Shangrila', |
7988
|
|
|
|
|
|
|
'Lake Shore', |
7989
|
|
|
|
|
|
|
'Lake St. Croix Beach', |
7990
|
|
|
|
|
|
|
'Lake St. Louis', |
7991
|
|
|
|
|
|
|
'Lake Station', |
7992
|
|
|
|
|
|
|
'Lake Stevens', |
7993
|
|
|
|
|
|
|
'Lake Success', |
7994
|
|
|
|
|
|
|
'Lake Summerset', |
7995
|
|
|
|
|
|
|
'Lake Sumner', |
7996
|
|
|
|
|
|
|
'Lake Tanglewood', |
7997
|
|
|
|
|
|
|
'Lake Tansi', |
7998
|
|
|
|
|
|
|
'Lake Tapawingo', |
7999
|
|
|
|
|
|
|
'Lake Telemark', |
8000
|
|
|
|
|
|
|
'Lake View', |
8001
|
|
|
|
|
|
|
'Lake Villa', |
8002
|
|
|
|
|
|
|
'Lake Village', |
8003
|
|
|
|
|
|
|
'Lake Waccamaw', |
8004
|
|
|
|
|
|
|
'Lake Wales', |
8005
|
|
|
|
|
|
|
'Lake Waukomis', |
8006
|
|
|
|
|
|
|
'Lake Wazeecha', |
8007
|
|
|
|
|
|
|
'Lake Wildwood', |
8008
|
|
|
|
|
|
|
'Lake Wilson', |
8009
|
|
|
|
|
|
|
'Lake Winnebago', |
8010
|
|
|
|
|
|
|
'Lake Wisconsin', |
8011
|
|
|
|
|
|
|
'Lake Wissota', |
8012
|
|
|
|
|
|
|
'Lake Worth', |
8013
|
|
|
|
|
|
|
'Lake Worth Corridor', |
8014
|
|
|
|
|
|
|
'Lake Wylie', |
8015
|
|
|
|
|
|
|
'Lake Wynonah', |
8016
|
|
|
|
|
|
|
'Lake Zurich', |
8017
|
|
|
|
|
|
|
'Lake in the Hills', |
8018
|
|
|
|
|
|
|
'Lake of the Pines', |
8019
|
|
|
|
|
|
|
'Lake of the Woods', |
8020
|
|
|
|
|
|
|
'Lakefield', |
8021
|
|
|
|
|
|
|
'Lakehead-Lakeshore', |
8022
|
|
|
|
|
|
|
'Lakehills', |
8023
|
|
|
|
|
|
|
'Lakehurst', |
8024
|
|
|
|
|
|
|
'Lakeland', |
8025
|
|
|
|
|
|
|
'Lakeland Highlands', |
8026
|
|
|
|
|
|
|
'Lakeland North', |
8027
|
|
|
|
|
|
|
'Lakeland Shores', |
8028
|
|
|
|
|
|
|
'Lakeland South', |
8029
|
|
|
|
|
|
|
'Lakeland Village', |
8030
|
|
|
|
|
|
|
'Lakeline', |
8031
|
|
|
|
|
|
|
'Lakemoor', |
8032
|
|
|
|
|
|
|
'Lakemore', |
8033
|
|
|
|
|
|
|
'Lakeport', |
8034
|
|
|
|
|
|
|
'Lakes', |
8035
|
|
|
|
|
|
|
'Lakes by the Bay', |
8036
|
|
|
|
|
|
|
'Lakes of the Four Seasons', |
8037
|
|
|
|
|
|
|
'Lakeshire', |
8038
|
|
|
|
|
|
|
'Lakeshore Gardens-Hidden Acres', |
8039
|
|
|
|
|
|
|
'Lakeside', |
8040
|
|
|
|
|
|
|
'Lakeside City', |
8041
|
|
|
|
|
|
|
'Lakeside Green', |
8042
|
|
|
|
|
|
|
'Lakeside Park', |
8043
|
|
|
|
|
|
|
'Lakesite', |
8044
|
|
|
|
|
|
|
'Laketown', |
8045
|
|
|
|
|
|
|
'Lakeview', |
8046
|
|
|
|
|
|
|
'Lakeview Estates', |
8047
|
|
|
|
|
|
|
'Lakeview Heights', |
8048
|
|
|
|
|
|
|
'Lakeview North', |
8049
|
|
|
|
|
|
|
'Lakeville', |
8050
|
|
|
|
|
|
|
'Lakeway', |
8051
|
|
|
|
|
|
|
'Lakewood', |
8052
|
|
|
|
|
|
|
'Lakewood Club', |
8053
|
|
|
|
|
|
|
'Lakewood Park', |
8054
|
|
|
|
|
|
|
'Lakewood Shores', |
8055
|
|
|
|
|
|
|
'Lakewood Village', |
8056
|
|
|
|
|
|
|
'Lakin', |
8057
|
|
|
|
|
|
|
'Lakota', |
8058
|
|
|
|
|
|
|
'Lamar', |
8059
|
|
|
|
|
|
|
'Lamar Heights', |
8060
|
|
|
|
|
|
|
'Lambert', |
8061
|
|
|
|
|
|
|
'Lamberton', |
8062
|
|
|
|
|
|
|
'Lambertville', |
8063
|
|
|
|
|
|
|
'Lamboglia', |
8064
|
|
|
|
|
|
|
'Lambs Grove', |
8065
|
|
|
|
|
|
|
'Lame Deer', |
8066
|
|
|
|
|
|
|
'Lamesa', |
8067
|
|
|
|
|
|
|
'Lamoni', |
8068
|
|
|
|
|
|
|
'Lamont', |
8069
|
|
|
|
|
|
|
'Lampasas', |
8070
|
|
|
|
|
|
|
'Lamy', |
8071
|
|
|
|
|
|
|
'Lanagan', |
8072
|
|
|
|
|
|
|
'Lanai City', |
8073
|
|
|
|
|
|
|
'Lanare', |
8074
|
|
|
|
|
|
|
'Lanark', |
8075
|
|
|
|
|
|
|
'Lancaster', |
8076
|
|
|
|
|
|
|
'Lancaster Mill', |
8077
|
|
|
|
|
|
|
'Lance Creek', |
8078
|
|
|
|
|
|
|
'Land O\' Lakes', |
8079
|
|
|
|
|
|
|
'Landa', |
8080
|
|
|
|
|
|
|
'Landen', |
8081
|
|
|
|
|
|
|
'Lander', |
8082
|
|
|
|
|
|
|
'Landfall', |
8083
|
|
|
|
|
|
|
'Landingville', |
8084
|
|
|
|
|
|
|
'Landis', |
8085
|
|
|
|
|
|
|
'Landisburg', |
8086
|
|
|
|
|
|
|
'Landover Hills', |
8087
|
|
|
|
|
|
|
'Landrum', |
8088
|
|
|
|
|
|
|
'Lane', |
8089
|
|
|
|
|
|
|
'Lanesboro', |
8090
|
|
|
|
|
|
|
'Lanesville', |
8091
|
|
|
|
|
|
|
'Lanett', |
8092
|
|
|
|
|
|
|
'Langdon', |
8093
|
|
|
|
|
|
|
'Langdon Place', |
8094
|
|
|
|
|
|
|
'Langford', |
8095
|
|
|
|
|
|
|
'Langhorne', |
8096
|
|
|
|
|
|
|
'Langhorne Manor', |
8097
|
|
|
|
|
|
|
'Langley', |
8098
|
|
|
|
|
|
|
'Langley Park', |
8099
|
|
|
|
|
|
|
'Langston', |
8100
|
|
|
|
|
|
|
'Lanham-Seabrook', |
8101
|
|
|
|
|
|
|
'Lankin', |
8102
|
|
|
|
|
|
|
'Lannon', |
8103
|
|
|
|
|
|
|
'Lansdale', |
8104
|
|
|
|
|
|
|
'Lansdowne', |
8105
|
|
|
|
|
|
|
'Lansdowne-Baltimore Highlands', |
8106
|
|
|
|
|
|
|
'Lansford', |
8107
|
|
|
|
|
|
|
'Lansing', |
8108
|
|
|
|
|
|
|
'Lantana', |
8109
|
|
|
|
|
|
|
'Lapeer', |
8110
|
|
|
|
|
|
|
'Lapel', |
8111
|
|
|
|
|
|
|
'Laplace', |
8112
|
|
|
|
|
|
|
'Laporte', |
8113
|
|
|
|
|
|
|
'Lapwai', |
8114
|
|
|
|
|
|
|
'Laramie', |
8115
|
|
|
|
|
|
|
'Larchmont', |
8116
|
|
|
|
|
|
|
'Larchwood', |
8117
|
|
|
|
|
|
|
'Laredo', |
8118
|
|
|
|
|
|
|
'Laredo Ranchettes', |
8119
|
|
|
|
|
|
|
'Lares', |
8120
|
|
|
|
|
|
|
'Larga Vista', |
8121
|
|
|
|
|
|
|
'Largo', |
8122
|
|
|
|
|
|
|
'Larimore', |
8123
|
|
|
|
|
|
|
'Larkfield-Wikiup', |
8124
|
|
|
|
|
|
|
'Larkspur', |
8125
|
|
|
|
|
|
|
'Larksville', |
8126
|
|
|
|
|
|
|
'Larned', |
8127
|
|
|
|
|
|
|
'Larose', |
8128
|
|
|
|
|
|
|
'Larrabee', |
8129
|
|
|
|
|
|
|
'Larsen Bay', |
8130
|
|
|
|
|
|
|
'Larson', |
8131
|
|
|
|
|
|
|
'Larwill', |
8132
|
|
|
|
|
|
|
'Las Animas', |
8133
|
|
|
|
|
|
|
'Las Colonias', |
8134
|
|
|
|
|
|
|
'Las Cruces', |
8135
|
|
|
|
|
|
|
'Las Flores', |
8136
|
|
|
|
|
|
|
'Las Lomas', |
8137
|
|
|
|
|
|
|
'Las Lomitas', |
8138
|
|
|
|
|
|
|
'Las MarÃas', |
8139
|
|
|
|
|
|
|
'Las Ochenta', |
8140
|
|
|
|
|
|
|
'Las Ollas', |
8141
|
|
|
|
|
|
|
'Las Palmas-Juarez', |
8142
|
|
|
|
|
|
|
'Las Piedras', |
8143
|
|
|
|
|
|
|
'Las Quintas Fronterizas', |
8144
|
|
|
|
|
|
|
'Las Vegas', |
8145
|
|
|
|
|
|
|
'Lasana', |
8146
|
|
|
|
|
|
|
'Lasara', |
8147
|
|
|
|
|
|
|
'Lasker', |
8148
|
|
|
|
|
|
|
'Lastrup', |
8149
|
|
|
|
|
|
|
'Latah', |
8150
|
|
|
|
|
|
|
'Latexo', |
8151
|
|
|
|
|
|
|
'Latham', |
8152
|
|
|
|
|
|
|
'Lathrop', |
8153
|
|
|
|
|
|
|
'Lathrup Village', |
8154
|
|
|
|
|
|
|
'Latimer', |
8155
|
|
|
|
|
|
|
'Laton', |
8156
|
|
|
|
|
|
|
'Latonia Lakes', |
8157
|
|
|
|
|
|
|
'Latrobe', |
8158
|
|
|
|
|
|
|
'Latta', |
8159
|
|
|
|
|
|
|
'Lattimore', |
8160
|
|
|
|
|
|
|
'Lattingtown', |
8161
|
|
|
|
|
|
|
'Latty', |
8162
|
|
|
|
|
|
|
'Lauderdale', |
8163
|
|
|
|
|
|
|
'Lauderdale Lakes', |
8164
|
|
|
|
|
|
|
'Lauderdale-by-the-Sea', |
8165
|
|
|
|
|
|
|
'Lauderhill', |
8166
|
|
|
|
|
|
|
'Laughlin', |
8167
|
|
|
|
|
|
|
'Laughlin AFB', |
8168
|
|
|
|
|
|
|
'Laupahoehoe', |
8169
|
|
|
|
|
|
|
'Laura', |
8170
|
|
|
|
|
|
|
'Laurel', |
8171
|
|
|
|
|
|
|
'Laurel Bay', |
8172
|
|
|
|
|
|
|
'Laurel Hill', |
8173
|
|
|
|
|
|
|
'Laurel Hollow', |
8174
|
|
|
|
|
|
|
'Laurel Lake', |
8175
|
|
|
|
|
|
|
'Laurel Mountain', |
8176
|
|
|
|
|
|
|
'Laurel Park', |
8177
|
|
|
|
|
|
|
'Laurel Run', |
8178
|
|
|
|
|
|
|
'Laurel Springs', |
8179
|
|
|
|
|
|
|
'Laureldale', |
8180
|
|
|
|
|
|
|
'Laureles', |
8181
|
|
|
|
|
|
|
'Laurelville', |
8182
|
|
|
|
|
|
|
'Laurence Harbor', |
8183
|
|
|
|
|
|
|
'Laurens', |
8184
|
|
|
|
|
|
|
'Laurie', |
8185
|
|
|
|
|
|
|
'Laurinburg', |
8186
|
|
|
|
|
|
|
'Laurium', |
8187
|
|
|
|
|
|
|
'Lava Hot Springs', |
8188
|
|
|
|
|
|
|
'Lavaca', |
8189
|
|
|
|
|
|
|
'Lavallette', |
8190
|
|
|
|
|
|
|
'Lavelle-Locustdale', |
8191
|
|
|
|
|
|
|
'Laverne', |
8192
|
|
|
|
|
|
|
'Lavina', |
8193
|
|
|
|
|
|
|
'Lavon', |
8194
|
|
|
|
|
|
|
'Lavonia', |
8195
|
|
|
|
|
|
|
'Lawai', |
8196
|
|
|
|
|
|
|
'Lawler', |
8197
|
|
|
|
|
|
|
'Lawn', |
8198
|
|
|
|
|
|
|
'Lawndale', |
8199
|
|
|
|
|
|
|
'Lawnside', |
8200
|
|
|
|
|
|
|
'Lawnton', |
8201
|
|
|
|
|
|
|
'Lawrence', |
8202
|
|
|
|
|
|
|
'Lawrence Creek', |
8203
|
|
|
|
|
|
|
'Lawrence Park', |
8204
|
|
|
|
|
|
|
'Lawrenceburg', |
8205
|
|
|
|
|
|
|
'Lawrenceville', |
8206
|
|
|
|
|
|
|
'Lawson', |
8207
|
|
|
|
|
|
|
'Lawson Heights', |
8208
|
|
|
|
|
|
|
'Lawtey', |
8209
|
|
|
|
|
|
|
'Lawton', |
8210
|
|
|
|
|
|
|
'Laymantown', |
8211
|
|
|
|
|
|
|
'Layton', |
8212
|
|
|
|
|
|
|
'Laytonsville', |
8213
|
|
|
|
|
|
|
'Laytonville', |
8214
|
|
|
|
|
|
|
'Lazy Lake', |
8215
|
|
|
|
|
|
|
'Lazy Mountain', |
8216
|
|
|
|
|
|
|
'Le Center', |
8217
|
|
|
|
|
|
|
'Le Claire', |
8218
|
|
|
|
|
|
|
'Le Flore', |
8219
|
|
|
|
|
|
|
'Le Grand', |
8220
|
|
|
|
|
|
|
'Le Mars', |
8221
|
|
|
|
|
|
|
'Le Raysville', |
8222
|
|
|
|
|
|
|
'Le Roy', |
8223
|
|
|
|
|
|
|
'Le Sueur', |
8224
|
|
|
|
|
|
|
'Lea Hill', |
8225
|
|
|
|
|
|
|
'Leach', |
8226
|
|
|
|
|
|
|
'Leachville', |
8227
|
|
|
|
|
|
|
'Leacock-Leola-Bareville', |
8228
|
|
|
|
|
|
|
'Lead', |
8229
|
|
|
|
|
|
|
'Lead Hill', |
8230
|
|
|
|
|
|
|
'Leadington', |
8231
|
|
|
|
|
|
|
'Leadore', |
8232
|
|
|
|
|
|
|
'Leadville', |
8233
|
|
|
|
|
|
|
'Leadville North', |
8234
|
|
|
|
|
|
|
'Leadwood', |
8235
|
|
|
|
|
|
|
'Leaf River', |
8236
|
|
|
|
|
|
|
'League City', |
8237
|
|
|
|
|
|
|
'Leakesville', |
8238
|
|
|
|
|
|
|
'Leakey', |
8239
|
|
|
|
|
|
|
'Leal', |
8240
|
|
|
|
|
|
|
'Leamington', |
8241
|
|
|
|
|
|
|
'Leander', |
8242
|
|
|
|
|
|
|
'Leando', |
8243
|
|
|
|
|
|
|
'Learned', |
8244
|
|
|
|
|
|
|
'Leary', |
8245
|
|
|
|
|
|
|
'Leasburg', |
8246
|
|
|
|
|
|
|
'Leavenworth', |
8247
|
|
|
|
|
|
|
'Leavittsburg', |
8248
|
|
|
|
|
|
|
'Leawood', |
8249
|
|
|
|
|
|
|
'Lebam', |
8250
|
|
|
|
|
|
|
'Lebanon', |
8251
|
|
|
|
|
|
|
'Lebanon Junction', |
8252
|
|
|
|
|
|
|
'Lebanon South', |
8253
|
|
|
|
|
|
|
'Lebec', |
8254
|
|
|
|
|
|
|
'Lebo', |
8255
|
|
|
|
|
|
|
'Lecanto', |
8256
|
|
|
|
|
|
|
'Lechee', |
8257
|
|
|
|
|
|
|
'Lecompte', |
8258
|
|
|
|
|
|
|
'Lecompton', |
8259
|
|
|
|
|
|
|
'Ledbetter', |
8260
|
|
|
|
|
|
|
'Ledyard', |
8261
|
|
|
|
|
|
|
'Lee', |
8262
|
|
|
|
|
|
|
'Lee\'s Summit', |
8263
|
|
|
|
|
|
|
'Leechburg', |
8264
|
|
|
|
|
|
|
'Leedey', |
8265
|
|
|
|
|
|
|
'Leeds', |
8266
|
|
|
|
|
|
|
'Leesburg', |
8267
|
|
|
|
|
|
|
'Leesport', |
8268
|
|
|
|
|
|
|
'Leesville', |
8269
|
|
|
|
|
|
|
'Leeton', |
8270
|
|
|
|
|
|
|
'Leetonia', |
8271
|
|
|
|
|
|
|
'Leetsdale', |
8272
|
|
|
|
|
|
|
'Lefors', |
8273
|
|
|
|
|
|
|
'Legend Lake', |
8274
|
|
|
|
|
|
|
'Leggett', |
8275
|
|
|
|
|
|
|
'Lehi', |
8276
|
|
|
|
|
|
|
'Lehigh', |
8277
|
|
|
|
|
|
|
'Lehigh Acres', |
8278
|
|
|
|
|
|
|
'Lehighton', |
8279
|
|
|
|
|
|
|
'Lehr', |
8280
|
|
|
|
|
|
|
'Leicester', |
8281
|
|
|
|
|
|
|
'Leigh', |
8282
|
|
|
|
|
|
|
'Leighton', |
8283
|
|
|
|
|
|
|
'Leilani Estates', |
8284
|
|
|
|
|
|
|
'Leipsic', |
8285
|
|
|
|
|
|
|
'Leisure City', |
8286
|
|
|
|
|
|
|
'Leisure Knoll', |
8287
|
|
|
|
|
|
|
'Leisure Village', |
8288
|
|
|
|
|
|
|
'Leisure Village East', |
8289
|
|
|
|
|
|
|
'Leisure Village West-Pine Lake Park', |
8290
|
|
|
|
|
|
|
'Leisuretowne', |
8291
|
|
|
|
|
|
|
'Leisureville', |
8292
|
|
|
|
|
|
|
'Leitchfield', |
8293
|
|
|
|
|
|
|
'Leitersburg', |
8294
|
|
|
|
|
|
|
'Leith', |
8295
|
|
|
|
|
|
|
'Leith-Hatfield', |
8296
|
|
|
|
|
|
|
'Leland', |
8297
|
|
|
|
|
|
|
'Leland Grove', |
8298
|
|
|
|
|
|
|
'Lely', |
8299
|
|
|
|
|
|
|
'Lely Resort', |
8300
|
|
|
|
|
|
|
'Lemay', |
8301
|
|
|
|
|
|
|
'Lemmon', |
8302
|
|
|
|
|
|
|
'Lemmon Valley-Golden Valley', |
8303
|
|
|
|
|
|
|
'Lemon Cove', |
8304
|
|
|
|
|
|
|
'Lemon Grove', |
8305
|
|
|
|
|
|
|
'Lemont', |
8306
|
|
|
|
|
|
|
'Lemoore', |
8307
|
|
|
|
|
|
|
'Lemoore Station', |
8308
|
|
|
|
|
|
|
'Lemoyne', |
8309
|
|
|
|
|
|
|
'Lena', |
8310
|
|
|
|
|
|
|
'Lenapah', |
8311
|
|
|
|
|
|
|
'Lenape Heights', |
8312
|
|
|
|
|
|
|
'Lenexa', |
8313
|
|
|
|
|
|
|
'Lengby', |
8314
|
|
|
|
|
|
|
'Lenhartsville', |
8315
|
|
|
|
|
|
|
'Lennon', |
8316
|
|
|
|
|
|
|
'Lennox', |
8317
|
|
|
|
|
|
|
'Lenoir', |
8318
|
|
|
|
|
|
|
'Lenoir City', |
8319
|
|
|
|
|
|
|
'Lenora', |
8320
|
|
|
|
|
|
|
'Lenox', |
8321
|
|
|
|
|
|
|
'Lenwood', |
8322
|
|
|
|
|
|
|
'Lenzburg', |
8323
|
|
|
|
|
|
|
'Leo-Cedarville', |
8324
|
|
|
|
|
|
|
'Leola', |
8325
|
|
|
|
|
|
|
'Leominster', |
8326
|
|
|
|
|
|
|
'Leon', |
8327
|
|
|
|
|
|
|
'Leon Valley', |
8328
|
|
|
|
|
|
|
'Leona', |
8329
|
|
|
|
|
|
|
'Leonard', |
8330
|
|
|
|
|
|
|
'Leonardo', |
8331
|
|
|
|
|
|
|
'Leonardtown', |
8332
|
|
|
|
|
|
|
'Leonardville', |
8333
|
|
|
|
|
|
|
'Leonia', |
8334
|
|
|
|
|
|
|
'Leonidas', |
8335
|
|
|
|
|
|
|
'Leonore', |
8336
|
|
|
|
|
|
|
'Leonville', |
8337
|
|
|
|
|
|
|
'Leota', |
8338
|
|
|
|
|
|
|
'Leoti', |
8339
|
|
|
|
|
|
|
'Lepanto', |
8340
|
|
|
|
|
|
|
'Lerna', |
8341
|
|
|
|
|
|
|
'Leroy', |
8342
|
|
|
|
|
|
|
'Leshara', |
8343
|
|
|
|
|
|
|
'Leslie', |
8344
|
|
|
|
|
|
|
'Lesslie', |
8345
|
|
|
|
|
|
|
'Lester', |
8346
|
|
|
|
|
|
|
'Lester Prairie', |
8347
|
|
|
|
|
|
|
'Lesterville', |
8348
|
|
|
|
|
|
|
'Letcher', |
8349
|
|
|
|
|
|
|
'Letona', |
8350
|
|
|
|
|
|
|
'Letts', |
8351
|
|
|
|
|
|
|
'Leupp', |
8352
|
|
|
|
|
|
|
'Levan', |
8353
|
|
|
|
|
|
|
'Levasy', |
8354
|
|
|
|
|
|
|
'Level Park-Oak Park', |
8355
|
|
|
|
|
|
|
'Level Plains', |
8356
|
|
|
|
|
|
|
'Levelland', |
8357
|
|
|
|
|
|
|
'Levelock', |
8358
|
|
|
|
|
|
|
'Levittown', |
8359
|
|
|
|
|
|
|
'Lewellen', |
8360
|
|
|
|
|
|
|
'Lewes', |
8361
|
|
|
|
|
|
|
'Lewis', |
8362
|
|
|
|
|
|
|
'Lewis Run', |
8363
|
|
|
|
|
|
|
'Lewis and Clark Village', |
8364
|
|
|
|
|
|
|
'Lewisberry', |
8365
|
|
|
|
|
|
|
'Lewisburg', |
8366
|
|
|
|
|
|
|
'Lewisport', |
8367
|
|
|
|
|
|
|
'Lewiston', |
8368
|
|
|
|
|
|
|
'Lewiston Woodville', |
8369
|
|
|
|
|
|
|
'Lewistown', |
8370
|
|
|
|
|
|
|
'Lewistown Heights', |
8371
|
|
|
|
|
|
|
'Lewisville', |
8372
|
|
|
|
|
|
|
'Lexa', |
8373
|
|
|
|
|
|
|
'Lexington', |
8374
|
|
|
|
|
|
|
'Lexington Hills', |
8375
|
|
|
|
|
|
|
'Lexington Park', |
8376
|
|
|
|
|
|
|
'Libby', |
8377
|
|
|
|
|
|
|
'Liberal', |
8378
|
|
|
|
|
|
|
'Liberty', |
8379
|
|
|
|
|
|
|
'Liberty Center', |
8380
|
|
|
|
|
|
|
'Liberty City', |
8381
|
|
|
|
|
|
|
'Liberty Hill', |
8382
|
|
|
|
|
|
|
'Liberty Lake', |
8383
|
|
|
|
|
|
|
'Libertyville', |
8384
|
|
|
|
|
|
|
'Liborio Negrón Torres', |
8385
|
|
|
|
|
|
|
'Licking', |
8386
|
|
|
|
|
|
|
'Lidderdale', |
8387
|
|
|
|
|
|
|
'Lidgerwood', |
8388
|
|
|
|
|
|
|
'Lido Beach', |
8389
|
|
|
|
|
|
|
'Liebenthal', |
8390
|
|
|
|
|
|
|
'Light Oak', |
8391
|
|
|
|
|
|
|
'Lighthouse Point', |
8392
|
|
|
|
|
|
|
'Lightstreet', |
8393
|
|
|
|
|
|
|
'Lignite', |
8394
|
|
|
|
|
|
|
'Ligonier', |
8395
|
|
|
|
|
|
|
'Lihue', |
8396
|
|
|
|
|
|
|
'Lilbourn', |
8397
|
|
|
|
|
|
|
'Lilburn', |
8398
|
|
|
|
|
|
|
'Lilesville', |
8399
|
|
|
|
|
|
|
'Lillie', |
8400
|
|
|
|
|
|
|
'Lillington', |
8401
|
|
|
|
|
|
|
'Lilly', |
8402
|
|
|
|
|
|
|
'Lily', |
8403
|
|
|
|
|
|
|
'Lily Lake', |
8404
|
|
|
|
|
|
|
'Lilydale', |
8405
|
|
|
|
|
|
|
'Lima', |
8406
|
|
|
|
|
|
|
'Limaville', |
8407
|
|
|
|
|
|
|
'Lime Lake-Machias', |
8408
|
|
|
|
|
|
|
'Lime Ridge', |
8409
|
|
|
|
|
|
|
'Lime Springs', |
8410
|
|
|
|
|
|
|
'Lime Village', |
8411
|
|
|
|
|
|
|
'Limestone', |
8412
|
|
|
|
|
|
|
'Limestone Creek', |
8413
|
|
|
|
|
|
|
'Limon', |
8414
|
|
|
|
|
|
|
'Lincoln', |
8415
|
|
|
|
|
|
|
'Lincoln Beach', |
8416
|
|
|
|
|
|
|
'Lincoln Center', |
8417
|
|
|
|
|
|
|
'Lincoln City', |
8418
|
|
|
|
|
|
|
'Lincoln Heights', |
8419
|
|
|
|
|
|
|
'Lincoln Park', |
8420
|
|
|
|
|
|
|
'Lincoln Village', |
8421
|
|
|
|
|
|
|
'Lincolndale', |
8422
|
|
|
|
|
|
|
'Lincolnia', |
8423
|
|
|
|
|
|
|
'Lincolnshire', |
8424
|
|
|
|
|
|
|
'Lincolnton', |
8425
|
|
|
|
|
|
|
'Lincolnville', |
8426
|
|
|
|
|
|
|
'Lincolnwood', |
8427
|
|
|
|
|
|
|
'Lincroft', |
8428
|
|
|
|
|
|
|
'Lind', |
8429
|
|
|
|
|
|
|
'Linda', |
8430
|
|
|
|
|
|
|
'Lindale', |
8431
|
|
|
|
|
|
|
'Linden', |
8432
|
|
|
|
|
|
|
'Lindenhurst', |
8433
|
|
|
|
|
|
|
'Lindenwold', |
8434
|
|
|
|
|
|
|
'Lindon', |
8435
|
|
|
|
|
|
|
'Lindsay', |
8436
|
|
|
|
|
|
|
'Lindsborg', |
8437
|
|
|
|
|
|
|
'Lindsey', |
8438
|
|
|
|
|
|
|
'Lindstrom', |
8439
|
|
|
|
|
|
|
'Linesville', |
8440
|
|
|
|
|
|
|
'Lineville', |
8441
|
|
|
|
|
|
|
'Linganore-Bartonsville', |
8442
|
|
|
|
|
|
|
'Lingle', |
8443
|
|
|
|
|
|
|
'Linglestown', |
8444
|
|
|
|
|
|
|
'Linn', |
8445
|
|
|
|
|
|
|
'Linn Creek', |
8446
|
|
|
|
|
|
|
'Linn Grove', |
8447
|
|
|
|
|
|
|
'Linn Valley', |
8448
|
|
|
|
|
|
|
'Linndale', |
8449
|
|
|
|
|
|
|
'Linneus', |
8450
|
|
|
|
|
|
|
'Linntown', |
8451
|
|
|
|
|
|
|
'Lino Lakes', |
8452
|
|
|
|
|
|
|
'Linthicum', |
8453
|
|
|
|
|
|
|
'Linton', |
8454
|
|
|
|
|
|
|
'Linton Hall', |
8455
|
|
|
|
|
|
|
'Linwood', |
8456
|
|
|
|
|
|
|
'Lionville-Marchwood', |
8457
|
|
|
|
|
|
|
'Lipan', |
8458
|
|
|
|
|
|
|
'Lipscomb', |
8459
|
|
|
|
|
|
|
'Lisbon', |
8460
|
|
|
|
|
|
|
'Lisbon Falls', |
8461
|
|
|
|
|
|
|
'Liscomb', |
8462
|
|
|
|
|
|
|
'Lisle', |
8463
|
|
|
|
|
|
|
'Lisman', |
8464
|
|
|
|
|
|
|
'Lismore', |
8465
|
|
|
|
|
|
|
'Litchfield', |
8466
|
|
|
|
|
|
|
'Litchfield Park', |
8467
|
|
|
|
|
|
|
'Litchville', |
8468
|
|
|
|
|
|
|
'Lithia Springs', |
8469
|
|
|
|
|
|
|
'Lithium', |
8470
|
|
|
|
|
|
|
'Lithonia', |
8471
|
|
|
|
|
|
|
'Lithopolis', |
8472
|
|
|
|
|
|
|
'Lititz', |
8473
|
|
|
|
|
|
|
'Little America', |
8474
|
|
|
|
|
|
|
'Little Canada', |
8475
|
|
|
|
|
|
|
'Little Chute', |
8476
|
|
|
|
|
|
|
'Little Cottonwood Creek Valley', |
8477
|
|
|
|
|
|
|
'Little Creek', |
8478
|
|
|
|
|
|
|
'Little Eagle', |
8479
|
|
|
|
|
|
|
'Little Elm', |
8480
|
|
|
|
|
|
|
'Little Falls', |
8481
|
|
|
|
|
|
|
'Little Falls-South Windham', |
8482
|
|
|
|
|
|
|
'Little Ferry', |
8483
|
|
|
|
|
|
|
'Little Flock', |
8484
|
|
|
|
|
|
|
'Little Grass Valley', |
8485
|
|
|
|
|
|
|
'Little Meadows', |
8486
|
|
|
|
|
|
|
'Little Mountain', |
8487
|
|
|
|
|
|
|
'Little River', |
8488
|
|
|
|
|
|
|
'Little River-Academy', |
8489
|
|
|
|
|
|
|
'Little Rock', |
8490
|
|
|
|
|
|
|
'Little Round Lake', |
8491
|
|
|
|
|
|
|
'Little Silver', |
8492
|
|
|
|
|
|
|
'Little Sioux', |
8493
|
|
|
|
|
|
|
'Little Valley', |
8494
|
|
|
|
|
|
|
'Little York', |
8495
|
|
|
|
|
|
|
'Littlefield', |
8496
|
|
|
|
|
|
|
'Littlefork', |
8497
|
|
|
|
|
|
|
'Littleport', |
8498
|
|
|
|
|
|
|
'Littlerock', |
8499
|
|
|
|
|
|
|
'Littlestown', |
8500
|
|
|
|
|
|
|
'Littleton', |
8501
|
|
|
|
|
|
|
'Littleton Common', |
8502
|
|
|
|
|
|
|
'Littletown', |
8503
|
|
|
|
|
|
|
'Littleville', |
8504
|
|
|
|
|
|
|
'Live Oak', |
8505
|
|
|
|
|
|
|
'Livengood', |
8506
|
|
|
|
|
|
|
'Livermore', |
8507
|
|
|
|
|
|
|
'Livermore Falls', |
8508
|
|
|
|
|
|
|
'Liverpool', |
8509
|
|
|
|
|
|
|
'Livingston', |
8510
|
|
|
|
|
|
|
'Livingston Manor', |
8511
|
|
|
|
|
|
|
'Livonia', |
8512
|
|
|
|
|
|
|
'Lizton', |
8513
|
|
|
|
|
|
|
'Llano', |
8514
|
|
|
|
|
|
|
'Llano Grande', |
8515
|
|
|
|
|
|
|
'Lloyd Harbor', |
8516
|
|
|
|
|
|
|
'Lluveras', |
8517
|
|
|
|
|
|
|
'Loa', |
8518
|
|
|
|
|
|
|
'Loachapoka', |
8519
|
|
|
|
|
|
|
'Loami', |
8520
|
|
|
|
|
|
|
'Lobelville', |
8521
|
|
|
|
|
|
|
'Loch Arbour', |
8522
|
|
|
|
|
|
|
'Loch Lomond', |
8523
|
|
|
|
|
|
|
'Loch Lynn Heights', |
8524
|
|
|
|
|
|
|
'Lochbuie', |
8525
|
|
|
|
|
|
|
'Lochearn', |
8526
|
|
|
|
|
|
|
'Lochmoor Waterway Estates', |
8527
|
|
|
|
|
|
|
'Lochsloy', |
8528
|
|
|
|
|
|
|
'Lock Haven', |
8529
|
|
|
|
|
|
|
'Lock Springs', |
8530
|
|
|
|
|
|
|
'Lockbourne', |
8531
|
|
|
|
|
|
|
'Lockeford', |
8532
|
|
|
|
|
|
|
'Lockesburg', |
8533
|
|
|
|
|
|
|
'Lockhart', |
8534
|
|
|
|
|
|
|
'Lockington', |
8535
|
|
|
|
|
|
|
'Lockland', |
8536
|
|
|
|
|
|
|
'Lockney', |
8537
|
|
|
|
|
|
|
'Lockport', |
8538
|
|
|
|
|
|
|
'Lockridge', |
8539
|
|
|
|
|
|
|
'Lockwood', |
8540
|
|
|
|
|
|
|
'Loco', |
8541
|
|
|
|
|
|
|
'Locust', |
8542
|
|
|
|
|
|
|
'Locust Fork', |
8543
|
|
|
|
|
|
|
'Locust Grove', |
8544
|
|
|
|
|
|
|
'Locust Valley', |
8545
|
|
|
|
|
|
|
'Locustdale', |
8546
|
|
|
|
|
|
|
'Loda', |
8547
|
|
|
|
|
|
|
'Lodge', |
8548
|
|
|
|
|
|
|
'Lodge Grass', |
8549
|
|
|
|
|
|
|
'Lodge Pole', |
8550
|
|
|
|
|
|
|
'Lodgepole', |
8551
|
|
|
|
|
|
|
'Lodi', |
8552
|
|
|
|
|
|
|
'Log Cabin', |
8553
|
|
|
|
|
|
|
'Log Lane Village', |
8554
|
|
|
|
|
|
|
'Logan', |
8555
|
|
|
|
|
|
|
'Logan Elm Village', |
8556
|
|
|
|
|
|
|
'Logansport', |
8557
|
|
|
|
|
|
|
'Loganton', |
8558
|
|
|
|
|
|
|
'Loganville', |
8559
|
|
|
|
|
|
|
'Loghill Village', |
8560
|
|
|
|
|
|
|
'Lohman', |
8561
|
|
|
|
|
|
|
'Lohrville', |
8562
|
|
|
|
|
|
|
'Lolita', |
8563
|
|
|
|
|
|
|
'Lolo', |
8564
|
|
|
|
|
|
|
'Loma', |
8565
|
|
|
|
|
|
|
'Loma Linda', |
8566
|
|
|
|
|
|
|
'Loma Linda East', |
8567
|
|
|
|
|
|
|
'Loma Rica', |
8568
|
|
|
|
|
|
|
'Lomas', |
8569
|
|
|
|
|
|
|
'Lomax', |
8570
|
|
|
|
|
|
|
'Lombard', |
8571
|
|
|
|
|
|
|
'Lometa', |
8572
|
|
|
|
|
|
|
'Lomira', |
8573
|
|
|
|
|
|
|
'Lomita', |
8574
|
|
|
|
|
|
|
'Lompoc', |
8575
|
|
|
|
|
|
|
'Lonaconing', |
8576
|
|
|
|
|
|
|
'London', |
8577
|
|
|
|
|
|
|
'London Mills', |
8578
|
|
|
|
|
|
|
'Londonderry', |
8579
|
|
|
|
|
|
|
'Londontowne', |
8580
|
|
|
|
|
|
|
'Lone Elm', |
8581
|
|
|
|
|
|
|
'Lone Grove', |
8582
|
|
|
|
|
|
|
'Lone Jack', |
8583
|
|
|
|
|
|
|
'Lone Oak', |
8584
|
|
|
|
|
|
|
'Lone Pine', |
8585
|
|
|
|
|
|
|
'Lone Rock', |
8586
|
|
|
|
|
|
|
'Lone Star', |
8587
|
|
|
|
|
|
|
'Lone Tree', |
8588
|
|
|
|
|
|
|
'Lone Wolf', |
8589
|
|
|
|
|
|
|
'Lonepine', |
8590
|
|
|
|
|
|
|
'Lonerock', |
8591
|
|
|
|
|
|
|
'Lonetree', |
8592
|
|
|
|
|
|
|
'Long', |
8593
|
|
|
|
|
|
|
'Long Beach', |
8594
|
|
|
|
|
|
|
'Long Branch', |
8595
|
|
|
|
|
|
|
'Long Creek', |
8596
|
|
|
|
|
|
|
'Long Grove', |
8597
|
|
|
|
|
|
|
'Long Hill', |
8598
|
|
|
|
|
|
|
'Long Island', |
8599
|
|
|
|
|
|
|
'Long Lake', |
8600
|
|
|
|
|
|
|
'Long Neck', |
8601
|
|
|
|
|
|
|
'Long Pine', |
8602
|
|
|
|
|
|
|
'Long Point', |
8603
|
|
|
|
|
|
|
'Long Prairie', |
8604
|
|
|
|
|
|
|
'Long Valley', |
8605
|
|
|
|
|
|
|
'Long View', |
8606
|
|
|
|
|
|
|
'Longboat Key', |
8607
|
|
|
|
|
|
|
'Longdale', |
8608
|
|
|
|
|
|
|
'Longford', |
8609
|
|
|
|
|
|
|
'Longmeadow', |
8610
|
|
|
|
|
|
|
'Longmont', |
8611
|
|
|
|
|
|
|
'Longport', |
8612
|
|
|
|
|
|
|
'Longstreet', |
8613
|
|
|
|
|
|
|
'Longton', |
8614
|
|
|
|
|
|
|
'Longtown', |
8615
|
|
|
|
|
|
|
'Longview', |
8616
|
|
|
|
|
|
|
'Longview Heights', |
8617
|
|
|
|
|
|
|
'Longville', |
8618
|
|
|
|
|
|
|
'Longwood', |
8619
|
|
|
|
|
|
|
'Lonoke', |
8620
|
|
|
|
|
|
|
'Lonsdale', |
8621
|
|
|
|
|
|
|
'Loogootee', |
8622
|
|
|
|
|
|
|
'Lookeba', |
8623
|
|
|
|
|
|
|
'Lookout Mountain', |
8624
|
|
|
|
|
|
|
'Loomis', |
8625
|
|
|
|
|
|
|
'Lopeno', |
8626
|
|
|
|
|
|
|
'Lopezville', |
8627
|
|
|
|
|
|
|
'Lorain', |
8628
|
|
|
|
|
|
|
'Loraine', |
8629
|
|
|
|
|
|
|
'Lorane', |
8630
|
|
|
|
|
|
|
'Lordsburg', |
8631
|
|
|
|
|
|
|
'Lordstown', |
8632
|
|
|
|
|
|
|
'Lore City', |
8633
|
|
|
|
|
|
|
'Loreauville', |
8634
|
|
|
|
|
|
|
'Lorena', |
8635
|
|
|
|
|
|
|
'Lorenz Park', |
8636
|
|
|
|
|
|
|
'Lorenzo', |
8637
|
|
|
|
|
|
|
'Loretto', |
8638
|
|
|
|
|
|
|
'Lorimor', |
8639
|
|
|
|
|
|
|
'Loring AFB', |
8640
|
|
|
|
|
|
|
'Loris', |
8641
|
|
|
|
|
|
|
'Lorraine', |
8642
|
|
|
|
|
|
|
'Lorton', |
8643
|
|
|
|
|
|
|
'Los Alamitos', |
8644
|
|
|
|
|
|
|
'Los Alamos', |
8645
|
|
|
|
|
|
|
'Los Altos', |
8646
|
|
|
|
|
|
|
'Los Altos Hills', |
8647
|
|
|
|
|
|
|
'Los Alvarez', |
8648
|
|
|
|
|
|
|
'Los Angeles', |
8649
|
|
|
|
|
|
|
'Los Angeles Subdivision', |
8650
|
|
|
|
|
|
|
'Los Banos', |
8651
|
|
|
|
|
|
|
'Los Cerrillos', |
8652
|
|
|
|
|
|
|
'Los Chaves', |
8653
|
|
|
|
|
|
|
'Los Ebanos', |
8654
|
|
|
|
|
|
|
'Los Fresnos', |
8655
|
|
|
|
|
|
|
'Los Gatos', |
8656
|
|
|
|
|
|
|
'Los Indios', |
8657
|
|
|
|
|
|
|
'Los Llanos', |
8658
|
|
|
|
|
|
|
'Los Lunas', |
8659
|
|
|
|
|
|
|
'Los Molinos', |
8660
|
|
|
|
|
|
|
'Los Ranchos de Albuquerque', |
8661
|
|
|
|
|
|
|
'Los Trujillos-Gabaldon', |
8662
|
|
|
|
|
|
|
'Los Villareales', |
8663
|
|
|
|
|
|
|
'Los Ybanez', |
8664
|
|
|
|
|
|
|
'Losantville', |
8665
|
|
|
|
|
|
|
'Lost City', |
8666
|
|
|
|
|
|
|
'Lost Creek', |
8667
|
|
|
|
|
|
|
'Lost Hills', |
8668
|
|
|
|
|
|
|
'Lost Lake Woods', |
8669
|
|
|
|
|
|
|
'Lost Nation', |
8670
|
|
|
|
|
|
|
'Lost River', |
8671
|
|
|
|
|
|
|
'Lost Springs', |
8672
|
|
|
|
|
|
|
'Lostant', |
8673
|
|
|
|
|
|
|
'Lostine', |
8674
|
|
|
|
|
|
|
'Lotsee', |
8675
|
|
|
|
|
|
|
'Lott', |
8676
|
|
|
|
|
|
|
'Louann', |
8677
|
|
|
|
|
|
|
'Loudon', |
8678
|
|
|
|
|
|
|
'Loudonville', |
8679
|
|
|
|
|
|
|
'Loughman', |
8680
|
|
|
|
|
|
|
'Louin', |
8681
|
|
|
|
|
|
|
'Louisa', |
8682
|
|
|
|
|
|
|
'Louisburg', |
8683
|
|
|
|
|
|
|
'Louise', |
8684
|
|
|
|
|
|
|
'Louisiana', |
8685
|
|
|
|
|
|
|
'Louisville', |
8686
|
|
|
|
|
|
|
'Loup City', |
8687
|
|
|
|
|
|
|
'Louviers', |
8688
|
|
|
|
|
|
|
'Love Valley', |
8689
|
|
|
|
|
|
|
'Lovejoy', |
8690
|
|
|
|
|
|
|
'Lovelady', |
8691
|
|
|
|
|
|
|
'Loveland', |
8692
|
|
|
|
|
|
|
'Loveland Park', |
8693
|
|
|
|
|
|
|
'Lovell', |
8694
|
|
|
|
|
|
|
'Lovelock', |
8695
|
|
|
|
|
|
|
'Loves Park', |
8696
|
|
|
|
|
|
|
'Lovettsville', |
8697
|
|
|
|
|
|
|
'Lovilia', |
8698
|
|
|
|
|
|
|
'Loving', |
8699
|
|
|
|
|
|
|
'Lovington', |
8700
|
|
|
|
|
|
|
'Low Moor', |
8701
|
|
|
|
|
|
|
'Lowden', |
8702
|
|
|
|
|
|
|
'Lowell', |
8703
|
|
|
|
|
|
|
'Lowell Point', |
8704
|
|
|
|
|
|
|
'Lowellville', |
8705
|
|
|
|
|
|
|
'Lower Allen', |
8706
|
|
|
|
|
|
|
'Lower Brule', |
8707
|
|
|
|
|
|
|
'Lower Burrell', |
8708
|
|
|
|
|
|
|
'Lower Grand Lagoon', |
8709
|
|
|
|
|
|
|
'Lower Kalskag', |
8710
|
|
|
|
|
|
|
'Lower Lake', |
8711
|
|
|
|
|
|
|
'Lower Salem', |
8712
|
|
|
|
|
|
|
'Lowesville', |
8713
|
|
|
|
|
|
|
'Lowndesboro', |
8714
|
|
|
|
|
|
|
'Lowndesville', |
8715
|
|
|
|
|
|
|
'Lowry', |
8716
|
|
|
|
|
|
|
'Lowry City', |
8717
|
|
|
|
|
|
|
'Lowry Crossing', |
8718
|
|
|
|
|
|
|
'Lowrys', |
8719
|
|
|
|
|
|
|
'Lowville', |
8720
|
|
|
|
|
|
|
'Loxley', |
8721
|
|
|
|
|
|
|
'Loyal', |
8722
|
|
|
|
|
|
|
'Loyall', |
8723
|
|
|
|
|
|
|
'Loyalton', |
8724
|
|
|
|
|
|
|
'Loyola', |
8725
|
|
|
|
|
|
|
'Lozano', |
8726
|
|
|
|
|
|
|
'LoÃza', |
8727
|
|
|
|
|
|
|
'Lu Verne', |
8728
|
|
|
|
|
|
|
'Luana', |
8729
|
|
|
|
|
|
|
'Lubbock', |
8730
|
|
|
|
|
|
|
'Lubeck', |
8731
|
|
|
|
|
|
|
'Lublin', |
8732
|
|
|
|
|
|
|
'Lucama', |
8733
|
|
|
|
|
|
|
'Lucan', |
8734
|
|
|
|
|
|
|
'Lucas', |
8735
|
|
|
|
|
|
|
'Lucas Valley-Marinwood', |
8736
|
|
|
|
|
|
|
'Lucasville', |
8737
|
|
|
|
|
|
|
'Lucedale', |
8738
|
|
|
|
|
|
|
'Lucerne', |
8739
|
|
|
|
|
|
|
'Lucerne Mines', |
8740
|
|
|
|
|
|
|
'Luck', |
8741
|
|
|
|
|
|
|
'Luckey', |
8742
|
|
|
|
|
|
|
'Lucky', |
8743
|
|
|
|
|
|
|
'Ludden', |
8744
|
|
|
|
|
|
|
'Ludington', |
8745
|
|
|
|
|
|
|
'Ludlow', |
8746
|
|
|
|
|
|
|
'Ludlow Falls', |
8747
|
|
|
|
|
|
|
'Ludowici', |
8748
|
|
|
|
|
|
|
'Lueders', |
8749
|
|
|
|
|
|
|
'Lufkin', |
8750
|
|
|
|
|
|
|
'Lugoff', |
8751
|
|
|
|
|
|
|
'Luis Lloréns Torres', |
8752
|
|
|
|
|
|
|
'Luis M. Cintrón', |
8753
|
|
|
|
|
|
|
'Lukachukai', |
8754
|
|
|
|
|
|
|
'Luke', |
8755
|
|
|
|
|
|
|
'Lula', |
8756
|
|
|
|
|
|
|
'Luling', |
8757
|
|
|
|
|
|
|
'Lumber Bridge', |
8758
|
|
|
|
|
|
|
'Lumber City', |
8759
|
|
|
|
|
|
|
'Lumberport', |
8760
|
|
|
|
|
|
|
'Lumberton', |
8761
|
|
|
|
|
|
|
'Lumpkin', |
8762
|
|
|
|
|
|
|
'Luna Pier', |
8763
|
|
|
|
|
|
|
'Lunenburg', |
8764
|
|
|
|
|
|
|
'Lupus', |
8765
|
|
|
|
|
|
|
'Luquillo', |
8766
|
|
|
|
|
|
|
'Luray', |
8767
|
|
|
|
|
|
|
'Lusby', |
8768
|
|
|
|
|
|
|
'Lushton', |
8769
|
|
|
|
|
|
|
'Lusk', |
8770
|
|
|
|
|
|
|
'Lutak', |
8771
|
|
|
|
|
|
|
'Lutcher', |
8772
|
|
|
|
|
|
|
'Luther', |
8773
|
|
|
|
|
|
|
'Luthersville', |
8774
|
|
|
|
|
|
|
'Lutherville-Timonium', |
8775
|
|
|
|
|
|
|
'Luttrell', |
8776
|
|
|
|
|
|
|
'Lutz', |
8777
|
|
|
|
|
|
|
'Luverne', |
8778
|
|
|
|
|
|
|
'Luxemburg', |
8779
|
|
|
|
|
|
|
'Luxora', |
8780
|
|
|
|
|
|
|
'Luyando', |
8781
|
|
|
|
|
|
|
'Luzerne', |
8782
|
|
|
|
|
|
|
'Lydia', |
8783
|
|
|
|
|
|
|
'Lyerly', |
8784
|
|
|
|
|
|
|
'Lyford', |
8785
|
|
|
|
|
|
|
'Lyford South', |
8786
|
|
|
|
|
|
|
'Lykens', |
8787
|
|
|
|
|
|
|
'Lyle', |
8788
|
|
|
|
|
|
|
'Lyman', |
8789
|
|
|
|
|
|
|
'Lynbrook', |
8790
|
|
|
|
|
|
|
'Lynch', |
8791
|
|
|
|
|
|
|
'Lynchburg', |
8792
|
|
|
|
|
|
|
'Lyncourt', |
8793
|
|
|
|
|
|
|
'Lynd', |
8794
|
|
|
|
|
|
|
'Lynden', |
8795
|
|
|
|
|
|
|
'Lyndhurst', |
8796
|
|
|
|
|
|
|
'Lyndon', |
8797
|
|
|
|
|
|
|
'Lyndon Station', |
8798
|
|
|
|
|
|
|
'Lyndonville', |
8799
|
|
|
|
|
|
|
'Lynn', |
8800
|
|
|
|
|
|
|
'Lynn Haven', |
8801
|
|
|
|
|
|
|
'Lynndyl', |
8802
|
|
|
|
|
|
|
'Lynnfield', |
8803
|
|
|
|
|
|
|
'Lynnview', |
8804
|
|
|
|
|
|
|
'Lynnville', |
8805
|
|
|
|
|
|
|
'Lynnwood', |
8806
|
|
|
|
|
|
|
'Lynnwood-Pricedale', |
8807
|
|
|
|
|
|
|
'Lynwood', |
8808
|
|
|
|
|
|
|
'Lynxville', |
8809
|
|
|
|
|
|
|
'Lyon', |
8810
|
|
|
|
|
|
|
'Lyon Mountain', |
8811
|
|
|
|
|
|
|
'Lyons', |
8812
|
|
|
|
|
|
|
'Lyons Falls', |
8813
|
|
|
|
|
|
|
'Lyons Switch', |
8814
|
|
|
|
|
|
|
'Lytle', |
8815
|
|
|
|
|
|
|
'Lytton', |
8816
|
|
|
|
|
|
|
'Maalaea', |
8817
|
|
|
|
|
|
|
'Mabank', |
8818
|
|
|
|
|
|
|
'Mabel', |
8819
|
|
|
|
|
|
|
'Maben', |
8820
|
|
|
|
|
|
|
'Mableton', |
8821
|
|
|
|
|
|
|
'Mabscott', |
8822
|
|
|
|
|
|
|
'Mabton', |
8823
|
|
|
|
|
|
|
'MacArthur', |
8824
|
|
|
|
|
|
|
'Macclenny', |
8825
|
|
|
|
|
|
|
'Macclesfield', |
8826
|
|
|
|
|
|
|
'Macdoel', |
8827
|
|
|
|
|
|
|
'Macedon', |
8828
|
|
|
|
|
|
|
'Macedonia', |
8829
|
|
|
|
|
|
|
'Machesney Park', |
8830
|
|
|
|
|
|
|
'Machias', |
8831
|
|
|
|
|
|
|
'Mack North', |
8832
|
|
|
|
|
|
|
'Mack South', |
8833
|
|
|
|
|
|
|
'Mackay', |
8834
|
|
|
|
|
|
|
'Mackenzie', |
8835
|
|
|
|
|
|
|
'Mackey', |
8836
|
|
|
|
|
|
|
'Mackinac Island', |
8837
|
|
|
|
|
|
|
'Mackinaw', |
8838
|
|
|
|
|
|
|
'Mackinaw City', |
8839
|
|
|
|
|
|
|
'Macks Creek', |
8840
|
|
|
|
|
|
|
'Macksburg', |
8841
|
|
|
|
|
|
|
'Macksville', |
8842
|
|
|
|
|
|
|
'Mackville', |
8843
|
|
|
|
|
|
|
'Macomb', |
8844
|
|
|
|
|
|
|
'Macon', |
8845
|
|
|
|
|
|
|
'Macungie', |
8846
|
|
|
|
|
|
|
'Macy', |
8847
|
|
|
|
|
|
|
'Madawaska', |
8848
|
|
|
|
|
|
|
'Maddock', |
8849
|
|
|
|
|
|
|
'Madeira', |
8850
|
|
|
|
|
|
|
'Madeira Beach', |
8851
|
|
|
|
|
|
|
'Madelia', |
8852
|
|
|
|
|
|
|
'Madera', |
8853
|
|
|
|
|
|
|
'Madera Acres', |
8854
|
|
|
|
|
|
|
'Madill', |
8855
|
|
|
|
|
|
|
'Madison', |
8856
|
|
|
|
|
|
|
'Madison Center', |
8857
|
|
|
|
|
|
|
'Madison Heights', |
8858
|
|
|
|
|
|
|
'Madison Lake', |
8859
|
|
|
|
|
|
|
'Madison Park', |
8860
|
|
|
|
|
|
|
'Madisonburg', |
8861
|
|
|
|
|
|
|
'Madisonville', |
8862
|
|
|
|
|
|
|
'Madras', |
8863
|
|
|
|
|
|
|
'Madrid', |
8864
|
|
|
|
|
|
|
'Maeser', |
8865
|
|
|
|
|
|
|
'Maeystown', |
8866
|
|
|
|
|
|
|
'Magalia', |
8867
|
|
|
|
|
|
|
'Magas Arriba', |
8868
|
|
|
|
|
|
|
'Magazine', |
8869
|
|
|
|
|
|
|
'Magdalena', |
8870
|
|
|
|
|
|
|
'Magee', |
8871
|
|
|
|
|
|
|
'Maggie Valley', |
8872
|
|
|
|
|
|
|
'Magna', |
8873
|
|
|
|
|
|
|
'Magness', |
8874
|
|
|
|
|
|
|
'Magnet', |
8875
|
|
|
|
|
|
|
'Magnetic Springs', |
8876
|
|
|
|
|
|
|
'Magnolia', |
8877
|
|
|
|
|
|
|
'Mahaffey', |
8878
|
|
|
|
|
|
|
'Mahanoy City', |
8879
|
|
|
|
|
|
|
'Mahaska', |
8880
|
|
|
|
|
|
|
'Mahnomen', |
8881
|
|
|
|
|
|
|
'Mahomet', |
8882
|
|
|
|
|
|
|
'Mahopac', |
8883
|
|
|
|
|
|
|
'Mahtomedi', |
8884
|
|
|
|
|
|
|
'Maiden', |
8885
|
|
|
|
|
|
|
'Maiden Rock', |
8886
|
|
|
|
|
|
|
'Maili', |
8887
|
|
|
|
|
|
|
'Maineville', |
8888
|
|
|
|
|
|
|
'Mainville', |
8889
|
|
|
|
|
|
|
'Maitland', |
8890
|
|
|
|
|
|
|
'Maize', |
8891
|
|
|
|
|
|
|
'Makaha', |
8892
|
|
|
|
|
|
|
'Makaha Valley', |
8893
|
|
|
|
|
|
|
'Makakilo City', |
8894
|
|
|
|
|
|
|
'Makanda', |
8895
|
|
|
|
|
|
|
'Makawao', |
8896
|
|
|
|
|
|
|
'Makoti', |
8897
|
|
|
|
|
|
|
'Malabar', |
8898
|
|
|
|
|
|
|
'Malad City', |
8899
|
|
|
|
|
|
|
'Malakoff', |
8900
|
|
|
|
|
|
|
'Malcolm', |
8901
|
|
|
|
|
|
|
'Malcom', |
8902
|
|
|
|
|
|
|
'Malden', |
8903
|
|
|
|
|
|
|
'Malibu', |
8904
|
|
|
|
|
|
|
'Malin', |
8905
|
|
|
|
|
|
|
'Malinta', |
8906
|
|
|
|
|
|
|
'Mallard', |
8907
|
|
|
|
|
|
|
'Mallory', |
8908
|
|
|
|
|
|
|
'Malmo', |
8909
|
|
|
|
|
|
|
'Malmstrom AFB', |
8910
|
|
|
|
|
|
|
'Malone', |
8911
|
|
|
|
|
|
|
'Malone-Porter', |
8912
|
|
|
|
|
|
|
'Maloy', |
8913
|
|
|
|
|
|
|
'Malta', |
8914
|
|
|
|
|
|
|
'Malta Bend', |
8915
|
|
|
|
|
|
|
'Maltby', |
8916
|
|
|
|
|
|
|
'Malvern', |
8917
|
|
|
|
|
|
|
'Malverne', |
8918
|
|
|
|
|
|
|
'Malverne Park Oaks', |
8919
|
|
|
|
|
|
|
'Mamaroneck', |
8920
|
|
|
|
|
|
|
'Mammoth', |
8921
|
|
|
|
|
|
|
'Mammoth Lakes', |
8922
|
|
|
|
|
|
|
'Mammoth Spring', |
8923
|
|
|
|
|
|
|
'Mamou', |
8924
|
|
|
|
|
|
|
'Man', |
8925
|
|
|
|
|
|
|
'Manahawkin', |
8926
|
|
|
|
|
|
|
'Manalapan', |
8927
|
|
|
|
|
|
|
'Manasota Key', |
8928
|
|
|
|
|
|
|
'Manasquan', |
8929
|
|
|
|
|
|
|
'Manassa', |
8930
|
|
|
|
|
|
|
'Manassas', |
8931
|
|
|
|
|
|
|
'Manassas Park', |
8932
|
|
|
|
|
|
|
'Manattee Road', |
8933
|
|
|
|
|
|
|
'ManatÃ', |
8934
|
|
|
|
|
|
|
'Manawa', |
8935
|
|
|
|
|
|
|
'Mancelona', |
8936
|
|
|
|
|
|
|
'Manchester', |
8937
|
|
|
|
|
|
|
'Manchester Center', |
8938
|
|
|
|
|
|
|
'Mancos', |
8939
|
|
|
|
|
|
|
'Mandan', |
8940
|
|
|
|
|
|
|
'Mandaree', |
8941
|
|
|
|
|
|
|
'Manderson', |
8942
|
|
|
|
|
|
|
'Manderson-White Horse Creek', |
8943
|
|
|
|
|
|
|
'Mandeville', |
8944
|
|
|
|
|
|
|
'Mangham', |
8945
|
|
|
|
|
|
|
'Mango', |
8946
|
|
|
|
|
|
|
'Mangonia Park', |
8947
|
|
|
|
|
|
|
'Mangum', |
8948
|
|
|
|
|
|
|
'Manhasset', |
8949
|
|
|
|
|
|
|
'Manhasset Hills', |
8950
|
|
|
|
|
|
|
'Manhattan', |
8951
|
|
|
|
|
|
|
'Manhattan Beach', |
8952
|
|
|
|
|
|
|
'Manheim', |
8953
|
|
|
|
|
|
|
'Manila', |
8954
|
|
|
|
|
|
|
'Manilla', |
8955
|
|
|
|
|
|
|
'Manistee', |
8956
|
|
|
|
|
|
|
'Manistique', |
8957
|
|
|
|
|
|
|
'Manito', |
8958
|
|
|
|
|
|
|
'Manitou', |
8959
|
|
|
|
|
|
|
'Manitou Beach-Devils Lake', |
8960
|
|
|
|
|
|
|
'Manitou Springs', |
8961
|
|
|
|
|
|
|
'Manitowoc', |
8962
|
|
|
|
|
|
|
'Mankato', |
8963
|
|
|
|
|
|
|
'Manley', |
8964
|
|
|
|
|
|
|
'Manley Hot Springs', |
8965
|
|
|
|
|
|
|
'Manlius', |
8966
|
|
|
|
|
|
|
'Manly', |
8967
|
|
|
|
|
|
|
'Mannford', |
8968
|
|
|
|
|
|
|
'Manning', |
8969
|
|
|
|
|
|
|
'Mannington', |
8970
|
|
|
|
|
|
|
'Manns Choice', |
8971
|
|
|
|
|
|
|
'Mannsville', |
8972
|
|
|
|
|
|
|
'Manokotak', |
8973
|
|
|
|
|
|
|
'Manor', |
8974
|
|
|
|
|
|
|
'Manor Creek', |
8975
|
|
|
|
|
|
|
'Manorhaven', |
8976
|
|
|
|
|
|
|
'Manorville', |
8977
|
|
|
|
|
|
|
'Mansfield', |
8978
|
|
|
|
|
|
|
'Mansfield Center', |
8979
|
|
|
|
|
|
|
'Manson', |
8980
|
|
|
|
|
|
|
'Mansura', |
8981
|
|
|
|
|
|
|
'Mantachie', |
8982
|
|
|
|
|
|
|
'Mantador', |
8983
|
|
|
|
|
|
|
'Manteca', |
8984
|
|
|
|
|
|
|
'Mantee', |
8985
|
|
|
|
|
|
|
'Manteno', |
8986
|
|
|
|
|
|
|
'Manteo', |
8987
|
|
|
|
|
|
|
'Manter', |
8988
|
|
|
|
|
|
|
'Manti', |
8989
|
|
|
|
|
|
|
'Mantoloking', |
8990
|
|
|
|
|
|
|
'Manton', |
8991
|
|
|
|
|
|
|
'Mantorville', |
8992
|
|
|
|
|
|
|
'Mantua', |
8993
|
|
|
|
|
|
|
'Manvel', |
8994
|
|
|
|
|
|
|
'Manville', |
8995
|
|
|
|
|
|
|
'Many', |
8996
|
|
|
|
|
|
|
'Many Farms', |
8997
|
|
|
|
|
|
|
'Manzanita', |
8998
|
|
|
|
|
|
|
'Manzano', |
8999
|
|
|
|
|
|
|
'Manzanola', |
9000
|
|
|
|
|
|
|
'Maple Bluff', |
9001
|
|
|
|
|
|
|
'Maple Falls', |
9002
|
|
|
|
|
|
|
'Maple Glen', |
9003
|
|
|
|
|
|
|
'Maple Grove', |
9004
|
|
|
|
|
|
|
'Maple Heights', |
9005
|
|
|
|
|
|
|
'Maple Heights-Lake Desire', |
9006
|
|
|
|
|
|
|
'Maple Hill', |
9007
|
|
|
|
|
|
|
'Maple Lake', |
9008
|
|
|
|
|
|
|
'Maple Park', |
9009
|
|
|
|
|
|
|
'Maple Plain', |
9010
|
|
|
|
|
|
|
'Maple Rapids', |
9011
|
|
|
|
|
|
|
'Maple Ridge', |
9012
|
|
|
|
|
|
|
'Maple Valley', |
9013
|
|
|
|
|
|
|
'Maplesville', |
9014
|
|
|
|
|
|
|
'Mapleton', |
9015
|
|
|
|
|
|
|
'Mapleview', |
9016
|
|
|
|
|
|
|
'Maplewood', |
9017
|
|
|
|
|
|
|
'Maplewood Park', |
9018
|
|
|
|
|
|
|
'Maquoketa', |
9019
|
|
|
|
|
|
|
'Maquon', |
9020
|
|
|
|
|
|
|
'Mar-Mac', |
9021
|
|
|
|
|
|
|
'Maramec', |
9022
|
|
|
|
|
|
|
'Marana', |
9023
|
|
|
|
|
|
|
'Marathon', |
9024
|
|
|
|
|
|
|
'Marathon City', |
9025
|
|
|
|
|
|
|
'Marble', |
9026
|
|
|
|
|
|
|
'Marble City', |
9027
|
|
|
|
|
|
|
'Marble City Community', |
9028
|
|
|
|
|
|
|
'Marble Cliff', |
9029
|
|
|
|
|
|
|
'Marble Falls', |
9030
|
|
|
|
|
|
|
'Marble Hill', |
9031
|
|
|
|
|
|
|
'Marble Rock', |
9032
|
|
|
|
|
|
|
'Marblehead', |
9033
|
|
|
|
|
|
|
'Marblemount', |
9034
|
|
|
|
|
|
|
'Marbleton', |
9035
|
|
|
|
|
|
|
'Marceline', |
9036
|
|
|
|
|
|
|
'Marcellus', |
9037
|
|
|
|
|
|
|
'March AFB', |
9038
|
|
|
|
|
|
|
'Marco Island', |
9039
|
|
|
|
|
|
|
'Marcus', |
9040
|
|
|
|
|
|
|
'Marcus Hook', |
9041
|
|
|
|
|
|
|
'Mardela Springs', |
9042
|
|
|
|
|
|
|
'Marengo', |
9043
|
|
|
|
|
|
|
'Marfa', |
9044
|
|
|
|
|
|
|
'Margaret', |
9045
|
|
|
|
|
|
|
'Margaretville', |
9046
|
|
|
|
|
|
|
'Margate', |
9047
|
|
|
|
|
|
|
'Margate City', |
9048
|
|
|
|
|
|
|
'Marianna', |
9049
|
|
|
|
|
|
|
'Mariano Colón', |
9050
|
|
|
|
|
|
|
'Mariaville Lake', |
9051
|
|
|
|
|
|
|
'Maribel', |
9052
|
|
|
|
|
|
|
'Maricao', |
9053
|
|
|
|
|
|
|
'Maricopa', |
9054
|
|
|
|
|
|
|
'Marie', |
9055
|
|
|
|
|
|
|
'Mariemont', |
9056
|
|
|
|
|
|
|
'Marietta', |
9057
|
|
|
|
|
|
|
'Marietta-Alderwood', |
9058
|
|
|
|
|
|
|
'Marina', |
9059
|
|
|
|
|
|
|
'Marina del Rey', |
9060
|
|
|
|
|
|
|
'Marine', |
9061
|
|
|
|
|
|
|
'Marine City', |
9062
|
|
|
|
|
|
|
'Marine on St. Croix', |
9063
|
|
|
|
|
|
|
'Marineland', |
9064
|
|
|
|
|
|
|
'Marinette', |
9065
|
|
|
|
|
|
|
'Maringouin', |
9066
|
|
|
|
|
|
|
'Marion', |
9067
|
|
|
|
|
|
|
'Marion Center', |
9068
|
|
|
|
|
|
|
'Marion Heights', |
9069
|
|
|
|
|
|
|
'Marionville', |
9070
|
|
|
|
|
|
|
'Mariposa', |
9071
|
|
|
|
|
|
|
'Marissa', |
9072
|
|
|
|
|
|
|
'Mark', |
9073
|
|
|
|
|
|
|
'Marked Tree', |
9074
|
|
|
|
|
|
|
'Markesan', |
9075
|
|
|
|
|
|
|
'Markham', |
9076
|
|
|
|
|
|
|
'Markle', |
9077
|
|
|
|
|
|
|
'Markleeville', |
9078
|
|
|
|
|
|
|
'Marklesburg', |
9079
|
|
|
|
|
|
|
'Markleville', |
9080
|
|
|
|
|
|
|
'Markleysburg', |
9081
|
|
|
|
|
|
|
'Marks', |
9082
|
|
|
|
|
|
|
'Marksville', |
9083
|
|
|
|
|
|
|
'Marland', |
9084
|
|
|
|
|
|
|
'Marlboro', |
9085
|
|
|
|
|
|
|
'Marlborough', |
9086
|
|
|
|
|
|
|
'Marlette', |
9087
|
|
|
|
|
|
|
'Marlin', |
9088
|
|
|
|
|
|
|
'Marlinton', |
9089
|
|
|
|
|
|
|
'Marlow', |
9090
|
|
|
|
|
|
|
'Marlow Heights', |
9091
|
|
|
|
|
|
|
'Marlton', |
9092
|
|
|
|
|
|
|
'Marmaduke', |
9093
|
|
|
|
|
|
|
'Marmarth', |
9094
|
|
|
|
|
|
|
'Marmet', |
9095
|
|
|
|
|
|
|
'Marne', |
9096
|
|
|
|
|
|
|
'Maroa', |
9097
|
|
|
|
|
|
|
'Marquand', |
9098
|
|
|
|
|
|
|
'Marquette', |
9099
|
|
|
|
|
|
|
'Marquette Heights', |
9100
|
|
|
|
|
|
|
'Marquez', |
9101
|
|
|
|
|
|
|
'Marrero', |
9102
|
|
|
|
|
|
|
'Marriott-Slaterville', |
9103
|
|
|
|
|
|
|
'Marrowstone', |
9104
|
|
|
|
|
|
|
'Mars', |
9105
|
|
|
|
|
|
|
'Mars Hill', |
9106
|
|
|
|
|
|
|
'Mars Hill-Blaine', |
9107
|
|
|
|
|
|
|
'Marseilles', |
9108
|
|
|
|
|
|
|
'Marshall', |
9109
|
|
|
|
|
|
|
'Marshall Creek', |
9110
|
|
|
|
|
|
|
'Marshallton', |
9111
|
|
|
|
|
|
|
'Marshalltown', |
9112
|
|
|
|
|
|
|
'Marshallville', |
9113
|
|
|
|
|
|
|
'Marshfield', |
9114
|
|
|
|
|
|
|
'Marshfield Hills', |
9115
|
|
|
|
|
|
|
'Marshville', |
9116
|
|
|
|
|
|
|
'Marsing', |
9117
|
|
|
|
|
|
|
'Marston', |
9118
|
|
|
|
|
|
|
'Mart', |
9119
|
|
|
|
|
|
|
'Martelle', |
9120
|
|
|
|
|
|
|
'Martensdale', |
9121
|
|
|
|
|
|
|
'Martha', |
9122
|
|
|
|
|
|
|
'Martha Lake', |
9123
|
|
|
|
|
|
|
'Marthasville', |
9124
|
|
|
|
|
|
|
'Martin', |
9125
|
|
|
|
|
|
|
'Martin City', |
9126
|
|
|
|
|
|
|
'Martin\'s Additions', |
9127
|
|
|
|
|
|
|
'Martindale', |
9128
|
|
|
|
|
|
|
'Martinez', |
9129
|
|
|
|
|
|
|
'Martins Ferry', |
9130
|
|
|
|
|
|
|
'Martinsburg', |
9131
|
|
|
|
|
|
|
'Martinsville', |
9132
|
|
|
|
|
|
|
'Martinton', |
9133
|
|
|
|
|
|
|
'Martorell', |
9134
|
|
|
|
|
|
|
'Marty', |
9135
|
|
|
|
|
|
|
'Marueño', |
9136
|
|
|
|
|
|
|
'Marvell', |
9137
|
|
|
|
|
|
|
'Marvin', |
9138
|
|
|
|
|
|
|
'Mary Esther', |
9139
|
|
|
|
|
|
|
'Marydel', |
9140
|
|
|
|
|
|
|
'Maryetta', |
9141
|
|
|
|
|
|
|
'Maryhill', |
9142
|
|
|
|
|
|
|
'Maryhill Estates', |
9143
|
|
|
|
|
|
|
'Maryland City', |
9144
|
|
|
|
|
|
|
'Maryland Heights', |
9145
|
|
|
|
|
|
|
'Marysvale', |
9146
|
|
|
|
|
|
|
'Marysville', |
9147
|
|
|
|
|
|
|
'Maryville', |
9148
|
|
|
|
|
|
|
'MarÃa Antonia', |
9149
|
|
|
|
|
|
|
'Masaryktown', |
9150
|
|
|
|
|
|
|
'Mascot', |
9151
|
|
|
|
|
|
|
'Mascotte', |
9152
|
|
|
|
|
|
|
'Mascoutah', |
9153
|
|
|
|
|
|
|
'Mashpee Neck', |
9154
|
|
|
|
|
|
|
'Maskell', |
9155
|
|
|
|
|
|
|
'Mason', |
9156
|
|
|
|
|
|
|
'Mason City', |
9157
|
|
|
|
|
|
|
'Masonboro', |
9158
|
|
|
|
|
|
|
'Masontown', |
9159
|
|
|
|
|
|
|
'Masonville', |
9160
|
|
|
|
|
|
|
'Massac', |
9161
|
|
|
|
|
|
|
'Massanutten', |
9162
|
|
|
|
|
|
|
'Massapequa', |
9163
|
|
|
|
|
|
|
'Massapequa Park', |
9164
|
|
|
|
|
|
|
'Massena', |
9165
|
|
|
|
|
|
|
'Massillon', |
9166
|
|
|
|
|
|
|
'Mastic', |
9167
|
|
|
|
|
|
|
'Mastic Beach', |
9168
|
|
|
|
|
|
|
'Masury', |
9169
|
|
|
|
|
|
|
'Matador', |
9170
|
|
|
|
|
|
|
'Matamoras', |
9171
|
|
|
|
|
|
|
'Matawan', |
9172
|
|
|
|
|
|
|
'Matewan', |
9173
|
|
|
|
|
|
|
'Matfield Green', |
9174
|
|
|
|
|
|
|
'Matherville', |
9175
|
|
|
|
|
|
|
'Mathews', |
9176
|
|
|
|
|
|
|
'Mathis', |
9177
|
|
|
|
|
|
|
'Mathiston', |
9178
|
|
|
|
|
|
|
'Matinecock', |
9179
|
|
|
|
|
|
|
'Matlacha', |
9180
|
|
|
|
|
|
|
'Matlacha Isles-Matlacha Shores', |
9181
|
|
|
|
|
|
|
'Matlock', |
9182
|
|
|
|
|
|
|
'Matoaca', |
9183
|
|
|
|
|
|
|
'Matoaka', |
9184
|
|
|
|
|
|
|
'Mattapoisett Center', |
9185
|
|
|
|
|
|
|
'Mattawa', |
9186
|
|
|
|
|
|
|
'Mattawan', |
9187
|
|
|
|
|
|
|
'Matteson', |
9188
|
|
|
|
|
|
|
'Matthews', |
9189
|
|
|
|
|
|
|
'Mattituck', |
9190
|
|
|
|
|
|
|
'Mattoon', |
9191
|
|
|
|
|
|
|
'Mattydale', |
9192
|
|
|
|
|
|
|
'Mauckport', |
9193
|
|
|
|
|
|
|
'Maud', |
9194
|
|
|
|
|
|
|
'Maugansville', |
9195
|
|
|
|
|
|
|
'Mauldin', |
9196
|
|
|
|
|
|
|
'Maumee', |
9197
|
|
|
|
|
|
|
'Maumelle', |
9198
|
|
|
|
|
|
|
'Maunabo', |
9199
|
|
|
|
|
|
|
'Maunaloa', |
9200
|
|
|
|
|
|
|
'Maunawili', |
9201
|
|
|
|
|
|
|
'Maunie', |
9202
|
|
|
|
|
|
|
'Maupin', |
9203
|
|
|
|
|
|
|
'Maurice', |
9204
|
|
|
|
|
|
|
'Mauriceville', |
9205
|
|
|
|
|
|
|
'Maury City', |
9206
|
|
|
|
|
|
|
'Mauston', |
9207
|
|
|
|
|
|
|
'Max', |
9208
|
|
|
|
|
|
|
'Max Meadows', |
9209
|
|
|
|
|
|
|
'Maxbass', |
9210
|
|
|
|
|
|
|
'Maxeys', |
9211
|
|
|
|
|
|
|
'Maxton', |
9212
|
|
|
|
|
|
|
'Maxwell', |
9213
|
|
|
|
|
|
|
'May', |
9214
|
|
|
|
|
|
|
'May Creek', |
9215
|
|
|
|
|
|
|
'Mayagüez', |
9216
|
|
|
|
|
|
|
'Maybee', |
9217
|
|
|
|
|
|
|
'Maybrook', |
9218
|
|
|
|
|
|
|
'Mayer', |
9219
|
|
|
|
|
|
|
'Mayersville', |
9220
|
|
|
|
|
|
|
'Mayesville', |
9221
|
|
|
|
|
|
|
'Mayetta', |
9222
|
|
|
|
|
|
|
'Mayfield', |
9223
|
|
|
|
|
|
|
'Mayfield Heights', |
9224
|
|
|
|
|
|
|
'Mayflower', |
9225
|
|
|
|
|
|
|
'Mayflower Village', |
9226
|
|
|
|
|
|
|
'Maynard', |
9227
|
|
|
|
|
|
|
'Maynardville', |
9228
|
|
|
|
|
|
|
'Mayo', |
9229
|
|
|
|
|
|
|
'Mayodan', |
9230
|
|
|
|
|
|
|
'Maypearl', |
9231
|
|
|
|
|
|
|
'Mays Chapel', |
9232
|
|
|
|
|
|
|
'Mays Landing', |
9233
|
|
|
|
|
|
|
'Maysville', |
9234
|
|
|
|
|
|
|
'Maytown', |
9235
|
|
|
|
|
|
|
'Mayview', |
9236
|
|
|
|
|
|
|
'Mayville', |
9237
|
|
|
|
|
|
|
'Maywood', |
9238
|
|
|
|
|
|
|
'Maywood Park', |
9239
|
|
|
|
|
|
|
'Maza', |
9240
|
|
|
|
|
|
|
'Mazeppa', |
9241
|
|
|
|
|
|
|
'Mazie', |
9242
|
|
|
|
|
|
|
'Mazomanie', |
9243
|
|
|
|
|
|
|
'Mazon', |
9244
|
|
|
|
|
|
|
'Mc Nutt', |
9245
|
|
|
|
|
|
|
'McAdenville', |
9246
|
|
|
|
|
|
|
'McAdoo', |
9247
|
|
|
|
|
|
|
'McAlester', |
9248
|
|
|
|
|
|
|
'McAlisterville', |
9249
|
|
|
|
|
|
|
'McAllen', |
9250
|
|
|
|
|
|
|
'McAlmont', |
9251
|
|
|
|
|
|
|
'McArthur', |
9252
|
|
|
|
|
|
|
'McBain', |
9253
|
|
|
|
|
|
|
'McBaine', |
9254
|
|
|
|
|
|
|
'McBee', |
9255
|
|
|
|
|
|
|
'McBride', |
9256
|
|
|
|
|
|
|
'McCall', |
9257
|
|
|
|
|
|
|
'McCallsburg', |
9258
|
|
|
|
|
|
|
'McCamey', |
9259
|
|
|
|
|
|
|
'McCammon', |
9260
|
|
|
|
|
|
|
'McCandless Township', |
9261
|
|
|
|
|
|
|
'McCarthy', |
9262
|
|
|
|
|
|
|
'McCaskill', |
9263
|
|
|
|
|
|
|
'McCausland', |
9264
|
|
|
|
|
|
|
'McCaysville', |
9265
|
|
|
|
|
|
|
'McChesneytown-Loyalhanna', |
9266
|
|
|
|
|
|
|
'McChord AFB', |
9267
|
|
|
|
|
|
|
'McCleary', |
9268
|
|
|
|
|
|
|
'McClelland', |
9269
|
|
|
|
|
|
|
'McClellanville', |
9270
|
|
|
|
|
|
|
'McCloud', |
9271
|
|
|
|
|
|
|
'McClure', |
9272
|
|
|
|
|
|
|
'McClusky', |
9273
|
|
|
|
|
|
|
'McColl', |
9274
|
|
|
|
|
|
|
'McComb', |
9275
|
|
|
|
|
|
|
'McConnells', |
9276
|
|
|
|
|
|
|
'McConnellsburg', |
9277
|
|
|
|
|
|
|
'McConnelsville', |
9278
|
|
|
|
|
|
|
'McCook', |
9279
|
|
|
|
|
|
|
'McCool', |
9280
|
|
|
|
|
|
|
'McCool Junction', |
9281
|
|
|
|
|
|
|
'McCord', |
9282
|
|
|
|
|
|
|
'McCord Bend', |
9283
|
|
|
|
|
|
|
'McCordsville', |
9284
|
|
|
|
|
|
|
'McCormick', |
9285
|
|
|
|
|
|
|
'McCracken', |
9286
|
|
|
|
|
|
|
'McCrory', |
9287
|
|
|
|
|
|
|
'McCullom Lake', |
9288
|
|
|
|
|
|
|
'McCune', |
9289
|
|
|
|
|
|
|
'McCurtain', |
9290
|
|
|
|
|
|
|
'McDermitt', |
9291
|
|
|
|
|
|
|
'McDonald', |
9292
|
|
|
|
|
|
|
'McDonald Chapel', |
9293
|
|
|
|
|
|
|
'McDonough', |
9294
|
|
|
|
|
|
|
'McDougal', |
9295
|
|
|
|
|
|
|
'McEwen', |
9296
|
|
|
|
|
|
|
'McEwensville', |
9297
|
|
|
|
|
|
|
'McFall', |
9298
|
|
|
|
|
|
|
'McFarlan', |
9299
|
|
|
|
|
|
|
'McFarland', |
9300
|
|
|
|
|
|
|
'McGehee', |
9301
|
|
|
|
|
|
|
'McGill', |
9302
|
|
|
|
|
|
|
'McGovern', |
9303
|
|
|
|
|
|
|
'McGrath', |
9304
|
|
|
|
|
|
|
'McGraw', |
9305
|
|
|
|
|
|
|
'McGregor', |
9306
|
|
|
|
|
|
|
'McGrew', |
9307
|
|
|
|
|
|
|
'McGuffey', |
9308
|
|
|
|
|
|
|
'McGuire AFB', |
9309
|
|
|
|
|
|
|
'McHenry', |
9310
|
|
|
|
|
|
|
'McIntire', |
9311
|
|
|
|
|
|
|
'McIntosh', |
9312
|
|
|
|
|
|
|
'McIntyre', |
9313
|
|
|
|
|
|
|
'McKean', |
9314
|
|
|
|
|
|
|
'McKeansburg', |
9315
|
|
|
|
|
|
|
'McKee', |
9316
|
|
|
|
|
|
|
'McKees Rocks', |
9317
|
|
|
|
|
|
|
'McKeesport', |
9318
|
|
|
|
|
|
|
'McKenney', |
9319
|
|
|
|
|
|
|
'McKenzie', |
9320
|
|
|
|
|
|
|
'McKey', |
9321
|
|
|
|
|
|
|
'McKinley', |
9322
|
|
|
|
|
|
|
'McKinley Park', |
9323
|
|
|
|
|
|
|
'McKinleyville', |
9324
|
|
|
|
|
|
|
'McKinney', |
9325
|
|
|
|
|
|
|
'McKinnon', |
9326
|
|
|
|
|
|
|
'McKittrick', |
9327
|
|
|
|
|
|
|
'McLain', |
9328
|
|
|
|
|
|
|
'McLaughlin', |
9329
|
|
|
|
|
|
|
'McLean', |
9330
|
|
|
|
|
|
|
'McLeansboro', |
9331
|
|
|
|
|
|
|
'McLeansville', |
9332
|
|
|
|
|
|
|
'McLemoresville', |
9333
|
|
|
|
|
|
|
'McLendon-Chisholm', |
9334
|
|
|
|
|
|
|
'McLoud', |
9335
|
|
|
|
|
|
|
'McLouth', |
9336
|
|
|
|
|
|
|
'McMechen', |
9337
|
|
|
|
|
|
|
'McMinnville', |
9338
|
|
|
|
|
|
|
'McMullen', |
9339
|
|
|
|
|
|
|
'McMurray', |
9340
|
|
|
|
|
|
|
'McNab', |
9341
|
|
|
|
|
|
|
'McNabb', |
9342
|
|
|
|
|
|
|
'McNary', |
9343
|
|
|
|
|
|
|
'McNeil', |
9344
|
|
|
|
|
|
|
'McPherson', |
9345
|
|
|
|
|
|
|
'McQueeney', |
9346
|
|
|
|
|
|
|
'McRae', |
9347
|
|
|
|
|
|
|
'McRoberts', |
9348
|
|
|
|
|
|
|
'McSherrystown', |
9349
|
|
|
|
|
|
|
'McVeytown', |
9350
|
|
|
|
|
|
|
'McVille', |
9351
|
|
|
|
|
|
|
'Mead', |
9352
|
|
|
|
|
|
|
'Meade', |
9353
|
|
|
|
|
|
|
'Meadow', |
9354
|
|
|
|
|
|
|
'Meadow Acres', |
9355
|
|
|
|
|
|
|
'Meadow Bridge', |
9356
|
|
|
|
|
|
|
'Meadow Glade', |
9357
|
|
|
|
|
|
|
'Meadow Grove', |
9358
|
|
|
|
|
|
|
'Meadow Lake', |
9359
|
|
|
|
|
|
|
'Meadow Lakes', |
9360
|
|
|
|
|
|
|
'Meadow Lark Lake', |
9361
|
|
|
|
|
|
|
'Meadow Vale', |
9362
|
|
|
|
|
|
|
'Meadow Valley', |
9363
|
|
|
|
|
|
|
'Meadow Vista', |
9364
|
|
|
|
|
|
|
'Meadow Woods', |
9365
|
|
|
|
|
|
|
'Meadowbrook', |
9366
|
|
|
|
|
|
|
'Meadowbrook Farm', |
9367
|
|
|
|
|
|
|
'Meadowlakes', |
9368
|
|
|
|
|
|
|
'Meadowlands', |
9369
|
|
|
|
|
|
|
'Meadowood', |
9370
|
|
|
|
|
|
|
'Meadows Place', |
9371
|
|
|
|
|
|
|
'Meadowview Estates', |
9372
|
|
|
|
|
|
|
'Meadville', |
9373
|
|
|
|
|
|
|
'Meansville', |
9374
|
|
|
|
|
|
|
'Mebane', |
9375
|
|
|
|
|
|
|
'Mecca', |
9376
|
|
|
|
|
|
|
'Mechanic Falls', |
9377
|
|
|
|
|
|
|
'Mechanicsburg', |
9378
|
|
|
|
|
|
|
'Mechanicstown', |
9379
|
|
|
|
|
|
|
'Mechanicsville', |
9380
|
|
|
|
|
|
|
'Mechanicville', |
9381
|
|
|
|
|
|
|
'Mecosta', |
9382
|
|
|
|
|
|
|
'Medaryville', |
9383
|
|
|
|
|
|
|
'Medfield', |
9384
|
|
|
|
|
|
|
'Medford', |
9385
|
|
|
|
|
|
|
'Medford Lakes', |
9386
|
|
|
|
|
|
|
'Media', |
9387
|
|
|
|
|
|
|
'Mediapolis', |
9388
|
|
|
|
|
|
|
'Medical Lake', |
9389
|
|
|
|
|
|
|
'Medicine Bow', |
9390
|
|
|
|
|
|
|
'Medicine Lake', |
9391
|
|
|
|
|
|
|
'Medicine Lodge', |
9392
|
|
|
|
|
|
|
'Medicine Park', |
9393
|
|
|
|
|
|
|
'Medina', |
9394
|
|
|
|
|
|
|
'Medley', |
9395
|
|
|
|
|
|
|
'Medon', |
9396
|
|
|
|
|
|
|
'Medora', |
9397
|
|
|
|
|
|
|
'Medulla', |
9398
|
|
|
|
|
|
|
'Medusa', |
9399
|
|
|
|
|
|
|
'Meeker', |
9400
|
|
|
|
|
|
|
'Meeteetse', |
9401
|
|
|
|
|
|
|
'Megargel', |
9402
|
|
|
|
|
|
|
'Meggett', |
9403
|
|
|
|
|
|
|
'Mehama', |
9404
|
|
|
|
|
|
|
'Mehlville', |
9405
|
|
|
|
|
|
|
'Meigs', |
9406
|
|
|
|
|
|
|
'Meiners Oaks', |
9407
|
|
|
|
|
|
|
'Meire Grove', |
9408
|
|
|
|
|
|
|
'Mekoryuk', |
9409
|
|
|
|
|
|
|
'Melba', |
9410
|
|
|
|
|
|
|
'Melbeta', |
9411
|
|
|
|
|
|
|
'Melbourne', |
9412
|
|
|
|
|
|
|
'Melbourne Beach', |
9413
|
|
|
|
|
|
|
'Melbourne Village', |
9414
|
|
|
|
|
|
|
'Melcher-Dallas', |
9415
|
|
|
|
|
|
|
'Melfa', |
9416
|
|
|
|
|
|
|
'Melissa', |
9417
|
|
|
|
|
|
|
'Mellen', |
9418
|
|
|
|
|
|
|
'Mellette', |
9419
|
|
|
|
|
|
|
'Mellott', |
9420
|
|
|
|
|
|
|
'Melody Hill', |
9421
|
|
|
|
|
|
|
'Melrose', |
9422
|
|
|
|
|
|
|
'Melrose Park', |
9423
|
|
|
|
|
|
|
'Melstone', |
9424
|
|
|
|
|
|
|
'Melvern', |
9425
|
|
|
|
|
|
|
'Melville', |
9426
|
|
|
|
|
|
|
'Melvin', |
9427
|
|
|
|
|
|
|
'Melvina', |
9428
|
|
|
|
|
|
|
'Melvindale', |
9429
|
|
|
|
|
|
|
'Memphis', |
9430
|
|
|
|
|
|
|
'Mena', |
9431
|
|
|
|
|
|
|
'Menahga', |
9432
|
|
|
|
|
|
|
'Menan', |
9433
|
|
|
|
|
|
|
'Menands', |
9434
|
|
|
|
|
|
|
'Menard', |
9435
|
|
|
|
|
|
|
'Menasha', |
9436
|
|
|
|
|
|
|
'Mendeltna', |
9437
|
|
|
|
|
|
|
'Mendenhall', |
9438
|
|
|
|
|
|
|
'Mendham', |
9439
|
|
|
|
|
|
|
'Mendocino', |
9440
|
|
|
|
|
|
|
'Mendon', |
9441
|
|
|
|
|
|
|
'Mendota', |
9442
|
|
|
|
|
|
|
'Mendota Heights', |
9443
|
|
|
|
|
|
|
'Menifee', |
9444
|
|
|
|
|
|
|
'Menlo', |
9445
|
|
|
|
|
|
|
'Menlo Park', |
9446
|
|
|
|
|
|
|
'Menno', |
9447
|
|
|
|
|
|
|
'Meno', |
9448
|
|
|
|
|
|
|
'Menominee', |
9449
|
|
|
|
|
|
|
'Menomonee Falls', |
9450
|
|
|
|
|
|
|
'Menomonie', |
9451
|
|
|
|
|
|
|
'Mentasta Lake', |
9452
|
|
|
|
|
|
|
'Mentone', |
9453
|
|
|
|
|
|
|
'Mentor', |
9454
|
|
|
|
|
|
|
'Mentor-on-the-Lake', |
9455
|
|
|
|
|
|
|
'Mequon', |
9456
|
|
|
|
|
|
|
'Mer Rouge', |
9457
|
|
|
|
|
|
|
'Meraux', |
9458
|
|
|
|
|
|
|
'Merced', |
9459
|
|
|
|
|
|
|
'Mercedes', |
9460
|
|
|
|
|
|
|
'Mercer', |
9461
|
|
|
|
|
|
|
'Mercer Island', |
9462
|
|
|
|
|
|
|
'Mercersburg', |
9463
|
|
|
|
|
|
|
'Mercerville-Hamilton Square', |
9464
|
|
|
|
|
|
|
'Merchantville', |
9465
|
|
|
|
|
|
|
'Meredith', |
9466
|
|
|
|
|
|
|
'Meredosia', |
9467
|
|
|
|
|
|
|
'Meriden', |
9468
|
|
|
|
|
|
|
'Meridian', |
9469
|
|
|
|
|
|
|
'Meridian Hills', |
9470
|
|
|
|
|
|
|
'Meridian Station', |
9471
|
|
|
|
|
|
|
'Meridianville', |
9472
|
|
|
|
|
|
|
'Merigold', |
9473
|
|
|
|
|
|
|
'Merino', |
9474
|
|
|
|
|
|
|
'Merkel', |
9475
|
|
|
|
|
|
|
'Mermentau', |
9476
|
|
|
|
|
|
|
'Merna', |
9477
|
|
|
|
|
|
|
'Merom', |
9478
|
|
|
|
|
|
|
'Merriam', |
9479
|
|
|
|
|
|
|
'Merriam Woods', |
9480
|
|
|
|
|
|
|
'Merrick', |
9481
|
|
|
|
|
|
|
'Merrifield', |
9482
|
|
|
|
|
|
|
'Merrill', |
9483
|
|
|
|
|
|
|
'Merrillan', |
9484
|
|
|
|
|
|
|
'Merrillville', |
9485
|
|
|
|
|
|
|
'Merrimac', |
9486
|
|
|
|
|
|
|
'Merriman', |
9487
|
|
|
|
|
|
|
'Merrionette Park', |
9488
|
|
|
|
|
|
|
'Merritt Island', |
9489
|
|
|
|
|
|
|
'Merrydale', |
9490
|
|
|
|
|
|
|
'Merryville', |
9491
|
|
|
|
|
|
|
'Mertens', |
9492
|
|
|
|
|
|
|
'Merton', |
9493
|
|
|
|
|
|
|
'Mertzon', |
9494
|
|
|
|
|
|
|
'Merwin', |
9495
|
|
|
|
|
|
|
'Mesa', |
9496
|
|
|
|
|
|
|
'Mesa Vista', |
9497
|
|
|
|
|
|
|
'Mescalero', |
9498
|
|
|
|
|
|
|
'Meservey', |
9499
|
|
|
|
|
|
|
'Meshoppen', |
9500
|
|
|
|
|
|
|
'Mesic', |
9501
|
|
|
|
|
|
|
'Mesick', |
9502
|
|
|
|
|
|
|
'Mesilla', |
9503
|
|
|
|
|
|
|
'Mesita', |
9504
|
|
|
|
|
|
|
'Mesquite', |
9505
|
|
|
|
|
|
|
'Mesquite Creek', |
9506
|
|
|
|
|
|
|
'Meta', |
9507
|
|
|
|
|
|
|
'Metairie', |
9508
|
|
|
|
|
|
|
'Metaline', |
9509
|
|
|
|
|
|
|
'Metaline Falls', |
9510
|
|
|
|
|
|
|
'Metamora', |
9511
|
|
|
|
|
|
|
'Metcalf', |
9512
|
|
|
|
|
|
|
'Metcalfe', |
9513
|
|
|
|
|
|
|
'Methuen', |
9514
|
|
|
|
|
|
|
'Metlakatla', |
9515
|
|
|
|
|
|
|
'Metolius', |
9516
|
|
|
|
|
|
|
'Metropolis', |
9517
|
|
|
|
|
|
|
'Mettawa', |
9518
|
|
|
|
|
|
|
'Metter', |
9519
|
|
|
|
|
|
|
'Mettler', |
9520
|
|
|
|
|
|
|
'Metuchen', |
9521
|
|
|
|
|
|
|
'Metz', |
9522
|
|
|
|
|
|
|
'Metzger', |
9523
|
|
|
|
|
|
|
'Mexia', |
9524
|
|
|
|
|
|
|
'Mexican Hat', |
9525
|
|
|
|
|
|
|
'Mexico', |
9526
|
|
|
|
|
|
|
'Mexico Beach', |
9527
|
|
|
|
|
|
|
'Meyers Chuck', |
9528
|
|
|
|
|
|
|
'Meyers Lake', |
9529
|
|
|
|
|
|
|
'Meyersdale', |
9530
|
|
|
|
|
|
|
'Mi-Wuk Village', |
9531
|
|
|
|
|
|
|
'Miami', |
9532
|
|
|
|
|
|
|
'Miami Beach', |
9533
|
|
|
|
|
|
|
'Miami Gardens', |
9534
|
|
|
|
|
|
|
'Miami Lakes', |
9535
|
|
|
|
|
|
|
'Miami Shores', |
9536
|
|
|
|
|
|
|
'Miami Springs', |
9537
|
|
|
|
|
|
|
'Miamisburg', |
9538
|
|
|
|
|
|
|
'Micanopy', |
9539
|
|
|
|
|
|
|
'Micco', |
9540
|
|
|
|
|
|
|
'Michiana', |
9541
|
|
|
|
|
|
|
'Michiana Shores', |
9542
|
|
|
|
|
|
|
'Michie', |
9543
|
|
|
|
|
|
|
'Michigamme', |
9544
|
|
|
|
|
|
|
'Michigan Center', |
9545
|
|
|
|
|
|
|
'Michigan City', |
9546
|
|
|
|
|
|
|
'Michigantown', |
9547
|
|
|
|
|
|
|
'Micro', |
9548
|
|
|
|
|
|
|
'Middle Island', |
9549
|
|
|
|
|
|
|
'Middle Point', |
9550
|
|
|
|
|
|
|
'Middle River', |
9551
|
|
|
|
|
|
|
'Middle Valley', |
9552
|
|
|
|
|
|
|
'Middle Village', |
9553
|
|
|
|
|
|
|
'Middleborough Center', |
9554
|
|
|
|
|
|
|
'Middlebourne', |
9555
|
|
|
|
|
|
|
'Middleburg', |
9556
|
|
|
|
|
|
|
'Middleburg Heights', |
9557
|
|
|
|
|
|
|
'Middleburgh', |
9558
|
|
|
|
|
|
|
'Middlebury', |
9559
|
|
|
|
|
|
|
'Middlefield', |
9560
|
|
|
|
|
|
|
'Middleport', |
9561
|
|
|
|
|
|
|
'Middlesborough', |
9562
|
|
|
|
|
|
|
'Middlesex', |
9563
|
|
|
|
|
|
|
'Middleton', |
9564
|
|
|
|
|
|
|
'Middletown', |
9565
|
|
|
|
|
|
|
'Middleville', |
9566
|
|
|
|
|
|
|
'Midfield', |
9567
|
|
|
|
|
|
|
'Midland', |
9568
|
|
|
|
|
|
|
'Midland City', |
9569
|
|
|
|
|
|
|
'Midland Park', |
9570
|
|
|
|
|
|
|
'Midlothian', |
9571
|
|
|
|
|
|
|
'Midtown', |
9572
|
|
|
|
|
|
|
'Midvale', |
9573
|
|
|
|
|
|
|
'Midville', |
9574
|
|
|
|
|
|
|
'Midway', |
9575
|
|
|
|
|
|
|
'Midway North', |
9576
|
|
|
|
|
|
|
'Midway South', |
9577
|
|
|
|
|
|
|
'Midway-Hardwick', |
9578
|
|
|
|
|
|
|
'Midwest', |
9579
|
|
|
|
|
|
|
'Midwest City', |
9580
|
|
|
|
|
|
|
'Miesville', |
9581
|
|
|
|
|
|
|
'Mifflin', |
9582
|
|
|
|
|
|
|
'Mifflinburg', |
9583
|
|
|
|
|
|
|
'Mifflintown', |
9584
|
|
|
|
|
|
|
'Mifflinville', |
9585
|
|
|
|
|
|
|
'Mignon', |
9586
|
|
|
|
|
|
|
'Mila Doce', |
9587
|
|
|
|
|
|
|
'Milaca', |
9588
|
|
|
|
|
|
|
'Milam', |
9589
|
|
|
|
|
|
|
'Milan', |
9590
|
|
|
|
|
|
|
'Milano', |
9591
|
|
|
|
|
|
|
'Milbank', |
9592
|
|
|
|
|
|
|
'Milburn', |
9593
|
|
|
|
|
|
|
'Mildred', |
9594
|
|
|
|
|
|
|
'Miles', |
9595
|
|
|
|
|
|
|
'Miles City', |
9596
|
|
|
|
|
|
|
'Milesburg', |
9597
|
|
|
|
|
|
|
'Milford', |
9598
|
|
|
|
|
|
|
'Milford Center', |
9599
|
|
|
|
|
|
|
'Milford Mill', |
9600
|
|
|
|
|
|
|
'Mililani Town', |
9601
|
|
|
|
|
|
|
'Mill City', |
9602
|
|
|
|
|
|
|
'Mill Creek', |
9603
|
|
|
|
|
|
|
'Mill Hall', |
9604
|
|
|
|
|
|
|
'Mill Neck', |
9605
|
|
|
|
|
|
|
'Mill Plain', |
9606
|
|
|
|
|
|
|
'Mill Shoals', |
9607
|
|
|
|
|
|
|
'Mill Spring', |
9608
|
|
|
|
|
|
|
'Mill Valley', |
9609
|
|
|
|
|
|
|
'Mill Village', |
9610
|
|
|
|
|
|
|
'Milladore', |
9611
|
|
|
|
|
|
|
'Millard', |
9612
|
|
|
|
|
|
|
'Millbourne', |
9613
|
|
|
|
|
|
|
'Millbrae', |
9614
|
|
|
|
|
|
|
'Millbrook', |
9615
|
|
|
|
|
|
|
'Millburn', |
9616
|
|
|
|
|
|
|
'Millbury', |
9617
|
|
|
|
|
|
|
'Millcreek', |
9618
|
|
|
|
|
|
|
'Milledgeville', |
9619
|
|
|
|
|
|
|
'Millen', |
9620
|
|
|
|
|
|
|
'Miller', |
9621
|
|
|
|
|
|
|
'Miller City', |
9622
|
|
|
|
|
|
|
'Miller Landing', |
9623
|
|
|
|
|
|
|
'Miller Place', |
9624
|
|
|
|
|
|
|
'Miller\'s Cove', |
9625
|
|
|
|
|
|
|
'Millers Creek', |
9626
|
|
|
|
|
|
|
'Millers Falls', |
9627
|
|
|
|
|
|
|
'Millersburg', |
9628
|
|
|
|
|
|
|
'Millersport', |
9629
|
|
|
|
|
|
|
'Millerstown', |
9630
|
|
|
|
|
|
|
'Millersville', |
9631
|
|
|
|
|
|
|
'Millerton', |
9632
|
|
|
|
|
|
|
'Millerville', |
9633
|
|
|
|
|
|
|
'Millheim', |
9634
|
|
|
|
|
|
|
'Millhousen', |
9635
|
|
|
|
|
|
|
'Millican', |
9636
|
|
|
|
|
|
|
'Milligan', |
9637
|
|
|
|
|
|
|
'Milliken', |
9638
|
|
|
|
|
|
|
'Millington', |
9639
|
|
|
|
|
|
|
'Millinocket', |
9640
|
|
|
|
|
|
|
'Millis-Clicquot', |
9641
|
|
|
|
|
|
|
'Millport', |
9642
|
|
|
|
|
|
|
'Millry', |
9643
|
|
|
|
|
|
|
'Mills', |
9644
|
|
|
|
|
|
|
'Millsap', |
9645
|
|
|
|
|
|
|
'Millsboro', |
9646
|
|
|
|
|
|
|
'Millstadt', |
9647
|
|
|
|
|
|
|
'Millstone', |
9648
|
|
|
|
|
|
|
'Milltown', |
9649
|
|
|
|
|
|
|
'Millvale', |
9650
|
|
|
|
|
|
|
'Millville', |
9651
|
|
|
|
|
|
|
'Millwood', |
9652
|
|
|
|
|
|
|
'Milner', |
9653
|
|
|
|
|
|
|
'Milnor', |
9654
|
|
|
|
|
|
|
'Milo', |
9655
|
|
|
|
|
|
|
'Milpitas', |
9656
|
|
|
|
|
|
|
'Milroy', |
9657
|
|
|
|
|
|
|
'Milton', |
9658
|
|
|
|
|
|
|
'Milton Center', |
9659
|
|
|
|
|
|
|
'Milton-Freewater', |
9660
|
|
|
|
|
|
|
'Miltona', |
9661
|
|
|
|
|
|
|
'Miltonsburg', |
9662
|
|
|
|
|
|
|
'Miltonvale', |
9663
|
|
|
|
|
|
|
'Milwaukee', |
9664
|
|
|
|
|
|
|
'Milwaukie', |
9665
|
|
|
|
|
|
|
'Mims', |
9666
|
|
|
|
|
|
|
'Minatare', |
9667
|
|
|
|
|
|
|
'Minburn', |
9668
|
|
|
|
|
|
|
'Minco', |
9669
|
|
|
|
|
|
|
'Minden', |
9670
|
|
|
|
|
|
|
'Minden City', |
9671
|
|
|
|
|
|
|
'Mindenmines', |
9672
|
|
|
|
|
|
|
'Mineola', |
9673
|
|
|
|
|
|
|
'Miner', |
9674
|
|
|
|
|
|
|
'Mineral', |
9675
|
|
|
|
|
|
|
'Mineral City', |
9676
|
|
|
|
|
|
|
'Mineral Hills', |
9677
|
|
|
|
|
|
|
'Mineral Point', |
9678
|
|
|
|
|
|
|
'Mineral Ridge', |
9679
|
|
|
|
|
|
|
'Mineral Springs', |
9680
|
|
|
|
|
|
|
'Mineral Wells', |
9681
|
|
|
|
|
|
|
'Mineralwells', |
9682
|
|
|
|
|
|
|
'Minersville', |
9683
|
|
|
|
|
|
|
'Minerva', |
9684
|
|
|
|
|
|
|
'Minerva Park', |
9685
|
|
|
|
|
|
|
'Minetto', |
9686
|
|
|
|
|
|
|
'Mineville-Witherbee', |
9687
|
|
|
|
|
|
|
'Mingo', |
9688
|
|
|
|
|
|
|
'Mingo Junction', |
9689
|
|
|
|
|
|
|
'Mingus', |
9690
|
|
|
|
|
|
|
'Minidoka', |
9691
|
|
|
|
|
|
|
'Minier', |
9692
|
|
|
|
|
|
|
'Minneapolis', |
9693
|
|
|
|
|
|
|
'Minnehaha', |
9694
|
|
|
|
|
|
|
'Minneiska', |
9695
|
|
|
|
|
|
|
'Minneola', |
9696
|
|
|
|
|
|
|
'Minneota', |
9697
|
|
|
|
|
|
|
'Minnesota City', |
9698
|
|
|
|
|
|
|
'Minnesota Lake', |
9699
|
|
|
|
|
|
|
'Minnesott Beach', |
9700
|
|
|
|
|
|
|
'Minnetonka', |
9701
|
|
|
|
|
|
|
'Minnetonka Beach', |
9702
|
|
|
|
|
|
|
'Minnetrista', |
9703
|
|
|
|
|
|
|
'Minnewaukan', |
9704
|
|
|
|
|
|
|
'Minoa', |
9705
|
|
|
|
|
|
|
'Minong', |
9706
|
|
|
|
|
|
|
'Minonk', |
9707
|
|
|
|
|
|
|
'Minooka', |
9708
|
|
|
|
|
|
|
'Minor', |
9709
|
|
|
|
|
|
|
'Minor Hill', |
9710
|
|
|
|
|
|
|
'Minor Lane Heights', |
9711
|
|
|
|
|
|
|
'Minot', |
9712
|
|
|
|
|
|
|
'Minot AFB', |
9713
|
|
|
|
|
|
|
'Minster', |
9714
|
|
|
|
|
|
|
'Mint Hill', |
9715
|
|
|
|
|
|
|
'Minto', |
9716
|
|
|
|
|
|
|
'Minturn', |
9717
|
|
|
|
|
|
|
'Mio', |
9718
|
|
|
|
|
|
|
'Mira Loma', |
9719
|
|
|
|
|
|
|
'Mira Monte', |
9720
|
|
|
|
|
|
|
'Miramar', |
9721
|
|
|
|
|
|
|
'Miramar Beach', |
9722
|
|
|
|
|
|
|
'Miramiguoa Park', |
9723
|
|
|
|
|
|
|
'Miranda', |
9724
|
|
|
|
|
|
|
'Mirando City', |
9725
|
|
|
|
|
|
|
'Mirrormont', |
9726
|
|
|
|
|
|
|
'Mishawaka', |
9727
|
|
|
|
|
|
|
'Mishicot', |
9728
|
|
|
|
|
|
|
'Mission', |
9729
|
|
|
|
|
|
|
'Mission Bay', |
9730
|
|
|
|
|
|
|
'Mission Bend', |
9731
|
|
|
|
|
|
|
'Mission Canyon', |
9732
|
|
|
|
|
|
|
'Mission Hill', |
9733
|
|
|
|
|
|
|
'Mission Hills', |
9734
|
|
|
|
|
|
|
'Mission Viejo', |
9735
|
|
|
|
|
|
|
'Mission Woods', |
9736
|
|
|
|
|
|
|
'Missoula', |
9737
|
|
|
|
|
|
|
'Missouri City', |
9738
|
|
|
|
|
|
|
'Missouri Valley', |
9739
|
|
|
|
|
|
|
'Mitchell', |
9740
|
|
|
|
|
|
|
'Mitchell Heights', |
9741
|
|
|
|
|
|
|
'Mitchellville', |
9742
|
|
|
|
|
|
|
'Mize', |
9743
|
|
|
|
|
|
|
'Mizpah', |
9744
|
|
|
|
|
|
|
'Moab', |
9745
|
|
|
|
|
|
|
'Moapa Town', |
9746
|
|
|
|
|
|
|
'Moapa Valley', |
9747
|
|
|
|
|
|
|
'Mobeetie', |
9748
|
|
|
|
|
|
|
'Moberly', |
9749
|
|
|
|
|
|
|
'Mobile', |
9750
|
|
|
|
|
|
|
'Mobile City', |
9751
|
|
|
|
|
|
|
'Mobridge', |
9752
|
|
|
|
|
|
|
'Moca', |
9753
|
|
|
|
|
|
|
'Mockingbird Valley', |
9754
|
|
|
|
|
|
|
'Mocksville', |
9755
|
|
|
|
|
|
|
'Moclips', |
9756
|
|
|
|
|
|
|
'Modale', |
9757
|
|
|
|
|
|
|
'Modena', |
9758
|
|
|
|
|
|
|
'Modesto', |
9759
|
|
|
|
|
|
|
'Modoc', |
9760
|
|
|
|
|
|
|
'Moenkopi', |
9761
|
|
|
|
|
|
|
'Moffat', |
9762
|
|
|
|
|
|
|
'Moffett', |
9763
|
|
|
|
|
|
|
'Mogadore', |
9764
|
|
|
|
|
|
|
'Mohall', |
9765
|
|
|
|
|
|
|
'Mohave Valley', |
9766
|
|
|
|
|
|
|
'Mohawk', |
9767
|
|
|
|
|
|
|
'Mohawk Vista', |
9768
|
|
|
|
|
|
|
'Mohnton', |
9769
|
|
|
|
|
|
|
'Mojave', |
9770
|
|
|
|
|
|
|
'Mojave Ranch Estates', |
9771
|
|
|
|
|
|
|
'Mokane', |
9772
|
|
|
|
|
|
|
'Mokelumne Hill', |
9773
|
|
|
|
|
|
|
'Mokena', |
9774
|
|
|
|
|
|
|
'Mokuleia', |
9775
|
|
|
|
|
|
|
'Molalla', |
9776
|
|
|
|
|
|
|
'Molena', |
9777
|
|
|
|
|
|
|
'Moline', |
9778
|
|
|
|
|
|
|
'Moline Acres', |
9779
|
|
|
|
|
|
|
'Molino', |
9780
|
|
|
|
|
|
|
'Momence', |
9781
|
|
|
|
|
|
|
'Momeyer', |
9782
|
|
|
|
|
|
|
'Mona', |
9783
|
|
|
|
|
|
|
'Monaca', |
9784
|
|
|
|
|
|
|
'Monahans', |
9785
|
|
|
|
|
|
|
'Monango', |
9786
|
|
|
|
|
|
|
'Monarch Mill', |
9787
|
|
|
|
|
|
|
'Moncks Corner', |
9788
|
|
|
|
|
|
|
'Mondamin', |
9789
|
|
|
|
|
|
|
'Mondovi', |
9790
|
|
|
|
|
|
|
'Monee', |
9791
|
|
|
|
|
|
|
'Monessen', |
9792
|
|
|
|
|
|
|
'Monett', |
9793
|
|
|
|
|
|
|
'Monetta', |
9794
|
|
|
|
|
|
|
'Monette', |
9795
|
|
|
|
|
|
|
'Monfort Heights East', |
9796
|
|
|
|
|
|
|
'Monfort Heights South', |
9797
|
|
|
|
|
|
|
'Monmouth', |
9798
|
|
|
|
|
|
|
'Monmouth Beach', |
9799
|
|
|
|
|
|
|
'Monmouth Junction', |
9800
|
|
|
|
|
|
|
'Mono Vista', |
9801
|
|
|
|
|
|
|
'Monomoscoy Island', |
9802
|
|
|
|
|
|
|
'Monon', |
9803
|
|
|
|
|
|
|
'Monona', |
9804
|
|
|
|
|
|
|
'Monongah', |
9805
|
|
|
|
|
|
|
'Monongahela', |
9806
|
|
|
|
|
|
|
'Monowi', |
9807
|
|
|
|
|
|
|
'Monroe', |
9808
|
|
|
|
|
|
|
'Monroe City', |
9809
|
|
|
|
|
|
|
'Monroeville', |
9810
|
|
|
|
|
|
|
'Monrovia', |
9811
|
|
|
|
|
|
|
'Monserrate', |
9812
|
|
|
|
|
|
|
'Monsey', |
9813
|
|
|
|
|
|
|
'Monson Center', |
9814
|
|
|
|
|
|
|
'Mont Alto', |
9815
|
|
|
|
|
|
|
'Mont Belvieu', |
9816
|
|
|
|
|
|
|
'Montague', |
9817
|
|
|
|
|
|
|
'Montana City', |
9818
|
|
|
|
|
|
|
'Montara', |
9819
|
|
|
|
|
|
|
'Montauk', |
9820
|
|
|
|
|
|
|
'Montcalm', |
9821
|
|
|
|
|
|
|
'Montclair', |
9822
|
|
|
|
|
|
|
'Monte Alto', |
9823
|
|
|
|
|
|
|
'Monte Grande', |
9824
|
|
|
|
|
|
|
'Monte Rio', |
9825
|
|
|
|
|
|
|
'Monte Sereno', |
9826
|
|
|
|
|
|
|
'Monte Vista', |
9827
|
|
|
|
|
|
|
'Monteagle', |
9828
|
|
|
|
|
|
|
'Montebello', |
9829
|
|
|
|
|
|
|
'Montecito', |
9830
|
|
|
|
|
|
|
'Montegut', |
9831
|
|
|
|
|
|
|
'Montello', |
9832
|
|
|
|
|
|
|
'Monterey', |
9833
|
|
|
|
|
|
|
'Monterey Park', |
9834
|
|
|
|
|
|
|
'Montesano', |
9835
|
|
|
|
|
|
|
'Montevallo', |
9836
|
|
|
|
|
|
|
'Montevideo', |
9837
|
|
|
|
|
|
|
'Montezuma', |
9838
|
|
|
|
|
|
|
'Montezuma Creek', |
9839
|
|
|
|
|
|
|
'Montfort', |
9840
|
|
|
|
|
|
|
'Montgomery', |
9841
|
|
|
|
|
|
|
'Montgomery City', |
9842
|
|
|
|
|
|
|
'Montgomery Creek', |
9843
|
|
|
|
|
|
|
'Montgomery Village', |
9844
|
|
|
|
|
|
|
'Montgomeryville', |
9845
|
|
|
|
|
|
|
'Monticello', |
9846
|
|
|
|
|
|
|
'Montour', |
9847
|
|
|
|
|
|
|
'Montour Falls', |
9848
|
|
|
|
|
|
|
'Montoursville', |
9849
|
|
|
|
|
|
|
'Montpelier', |
9850
|
|
|
|
|
|
|
'Montreal', |
9851
|
|
|
|
|
|
|
'Montreat', |
9852
|
|
|
|
|
|
|
'Montrose', |
9853
|
|
|
|
|
|
|
'Montrose-Ghent', |
9854
|
|
|
|
|
|
|
'Montross', |
9855
|
|
|
|
|
|
|
'Montvale', |
9856
|
|
|
|
|
|
|
'Montverde', |
9857
|
|
|
|
|
|
|
'Montz', |
9858
|
|
|
|
|
|
|
'Monument', |
9859
|
|
|
|
|
|
|
'Monument Beach', |
9860
|
|
|
|
|
|
|
'Moodus', |
9861
|
|
|
|
|
|
|
'Moody', |
9862
|
|
|
|
|
|
|
'Moody AFB', |
9863
|
|
|
|
|
|
|
'Mooers', |
9864
|
|
|
|
|
|
|
'Moonachie', |
9865
|
|
|
|
|
|
|
'Moorcroft', |
9866
|
|
|
|
|
|
|
'Moore', |
9867
|
|
|
|
|
|
|
'Moore Haven', |
9868
|
|
|
|
|
|
|
'Moore Station', |
9869
|
|
|
|
|
|
|
'Moorefield', |
9870
|
|
|
|
|
|
|
'Mooreland', |
9871
|
|
|
|
|
|
|
'Moores Hill', |
9872
|
|
|
|
|
|
|
'Moores Mill', |
9873
|
|
|
|
|
|
|
'Mooresboro', |
9874
|
|
|
|
|
|
|
'Moorestown-Lenola', |
9875
|
|
|
|
|
|
|
'Mooresville', |
9876
|
|
|
|
|
|
|
'Mooreton', |
9877
|
|
|
|
|
|
|
'Moorhead', |
9878
|
|
|
|
|
|
|
'Mooringsport', |
9879
|
|
|
|
|
|
|
'Moorland', |
9880
|
|
|
|
|
|
|
'Moorpark', |
9881
|
|
|
|
|
|
|
'Moose Creek', |
9882
|
|
|
|
|
|
|
'Moose Lake', |
9883
|
|
|
|
|
|
|
'Moose Pass', |
9884
|
|
|
|
|
|
|
'Moose Wilson Road', |
9885
|
|
|
|
|
|
|
'Moosic', |
9886
|
|
|
|
|
|
|
'Moosup', |
9887
|
|
|
|
|
|
|
'Mora', |
9888
|
|
|
|
|
|
|
'Morada', |
9889
|
|
|
|
|
|
|
'Moraga', |
9890
|
|
|
|
|
|
|
'Moraine', |
9891
|
|
|
|
|
|
|
'Morales-Sanchez', |
9892
|
|
|
|
|
|
|
'Moran', |
9893
|
|
|
|
|
|
|
'Moravia', |
9894
|
|
|
|
|
|
|
'Moravian Falls', |
9895
|
|
|
|
|
|
|
'Moreauville', |
9896
|
|
|
|
|
|
|
'Morehead', |
9897
|
|
|
|
|
|
|
'Morehead City', |
9898
|
|
|
|
|
|
|
'Morehouse', |
9899
|
|
|
|
|
|
|
'Moreland', |
9900
|
|
|
|
|
|
|
'Moreland Hills', |
9901
|
|
|
|
|
|
|
'Morenci', |
9902
|
|
|
|
|
|
|
'Moreno Valley', |
9903
|
|
|
|
|
|
|
'Morgan', |
9904
|
|
|
|
|
|
|
'Morgan City', |
9905
|
|
|
|
|
|
|
'Morgan Farm Area', |
9906
|
|
|
|
|
|
|
'Morgan Hill', |
9907
|
|
|
|
|
|
|
'Morgan\'s Point', |
9908
|
|
|
|
|
|
|
'Morgan\'s Point Resort', |
9909
|
|
|
|
|
|
|
'Morganfield', |
9910
|
|
|
|
|
|
|
'Morganton', |
9911
|
|
|
|
|
|
|
'Morgantown', |
9912
|
|
|
|
|
|
|
'Morganville', |
9913
|
|
|
|
|
|
|
'Morganza', |
9914
|
|
|
|
|
|
|
'Moriarty', |
9915
|
|
|
|
|
|
|
'Moriches', |
9916
|
|
|
|
|
|
|
'Morland', |
9917
|
|
|
|
|
|
|
'Morley', |
9918
|
|
|
|
|
|
|
'Morning Glory', |
9919
|
|
|
|
|
|
|
'Morning Sun', |
9920
|
|
|
|
|
|
|
'Morningside', |
9921
|
|
|
|
|
|
|
'Moro', |
9922
|
|
|
|
|
|
|
'Morocco', |
9923
|
|
|
|
|
|
|
'Morongo Valley', |
9924
|
|
|
|
|
|
|
'Moroni', |
9925
|
|
|
|
|
|
|
'Morovis', |
9926
|
|
|
|
|
|
|
'Morral', |
9927
|
|
|
|
|
|
|
'Morrice', |
9928
|
|
|
|
|
|
|
'Morrill', |
9929
|
|
|
|
|
|
|
'Morrilton', |
9930
|
|
|
|
|
|
|
'Morris', |
9931
|
|
|
|
|
|
|
'Morris Plains', |
9932
|
|
|
|
|
|
|
'Morrison', |
9933
|
|
|
|
|
|
|
'Morrison Bluff', |
9934
|
|
|
|
|
|
|
'Morrisonville', |
9935
|
|
|
|
|
|
|
'Morristown', |
9936
|
|
|
|
|
|
|
'Morrisville', |
9937
|
|
|
|
|
|
|
'Morro Bay', |
9938
|
|
|
|
|
|
|
'Morrow', |
9939
|
|
|
|
|
|
|
'Morrowville', |
9940
|
|
|
|
|
|
|
'Morse', |
9941
|
|
|
|
|
|
|
'Morse Bluff', |
9942
|
|
|
|
|
|
|
'Morton', |
9943
|
|
|
|
|
|
|
'Morton Grove', |
9944
|
|
|
|
|
|
|
'Mortons Gap', |
9945
|
|
|
|
|
|
|
'Morven', |
9946
|
|
|
|
|
|
|
'Mosby', |
9947
|
|
|
|
|
|
|
'Moscow', |
9948
|
|
|
|
|
|
|
'Moscow Mills', |
9949
|
|
|
|
|
|
|
'Moses Lake', |
9950
|
|
|
|
|
|
|
'Moses Lake North', |
9951
|
|
|
|
|
|
|
'Mosheim', |
9952
|
|
|
|
|
|
|
'Mosier', |
9953
|
|
|
|
|
|
|
'Mosinee', |
9954
|
|
|
|
|
|
|
'Mosquero', |
9955
|
|
|
|
|
|
|
'Mosquito Lake', |
9956
|
|
|
|
|
|
|
'Moss Beach', |
9957
|
|
|
|
|
|
|
'Moss Bluff', |
9958
|
|
|
|
|
|
|
'Moss Landing', |
9959
|
|
|
|
|
|
|
'Moss Point', |
9960
|
|
|
|
|
|
|
'Mosses', |
9961
|
|
|
|
|
|
|
'Mossyrock', |
9962
|
|
|
|
|
|
|
'Motley', |
9963
|
|
|
|
|
|
|
'Mott', |
9964
|
|
|
|
|
|
|
'Moulton', |
9965
|
|
|
|
|
|
|
'Moultrie', |
9966
|
|
|
|
|
|
|
'Mound', |
9967
|
|
|
|
|
|
|
'Mound Bayou', |
9968
|
|
|
|
|
|
|
'Mound City', |
9969
|
|
|
|
|
|
|
'Mound Station', |
9970
|
|
|
|
|
|
|
'Mound Valley', |
9971
|
|
|
|
|
|
|
'Moundridge', |
9972
|
|
|
|
|
|
|
'Mounds', |
9973
|
|
|
|
|
|
|
'Mounds View', |
9974
|
|
|
|
|
|
|
'Moundsville', |
9975
|
|
|
|
|
|
|
'Moundville', |
9976
|
|
|
|
|
|
|
'Mount Aetna', |
9977
|
|
|
|
|
|
|
'Mount Airy', |
9978
|
|
|
|
|
|
|
'Mount Angel', |
9979
|
|
|
|
|
|
|
'Mount Arlington', |
9980
|
|
|
|
|
|
|
'Mount Auburn', |
9981
|
|
|
|
|
|
|
'Mount Ayr', |
9982
|
|
|
|
|
|
|
'Mount Blanchard', |
9983
|
|
|
|
|
|
|
'Mount Calm', |
9984
|
|
|
|
|
|
|
'Mount Calvary', |
9985
|
|
|
|
|
|
|
'Mount Carbon', |
9986
|
|
|
|
|
|
|
'Mount Carmel', |
9987
|
|
|
|
|
|
|
'Mount Carroll', |
9988
|
|
|
|
|
|
|
'Mount Charleston', |
9989
|
|
|
|
|
|
|
'Mount Clare', |
9990
|
|
|
|
|
|
|
'Mount Clemens', |
9991
|
|
|
|
|
|
|
'Mount Cobb', |
9992
|
|
|
|
|
|
|
'Mount Cory', |
9993
|
|
|
|
|
|
|
'Mount Crawford', |
9994
|
|
|
|
|
|
|
'Mount Crested Butte', |
9995
|
|
|
|
|
|
|
'Mount Croghan', |
9996
|
|
|
|
|
|
|
'Mount Dora', |
9997
|
|
|
|
|
|
|
'Mount Eaton', |
9998
|
|
|
|
|
|
|
'Mount Enterprise', |
9999
|
|
|
|
|
|
|
'Mount Ephraim', |
10000
|
|
|
|
|
|
|
'Mount Erie', |
10001
|
|
|
|
|
|
|
'Mount Etna', |
10002
|
|
|
|
|
|
|
'Mount Gay-Shamrock', |
10003
|
|
|
|
|
|
|
'Mount Gilead', |
10004
|
|
|
|
|
|
|
'Mount Gretna', |
10005
|
|
|
|
|
|
|
'Mount Gretna Heights', |
10006
|
|
|
|
|
|
|
'Mount Healthy', |
10007
|
|
|
|
|
|
|
'Mount Healthy Heights', |
10008
|
|
|
|
|
|
|
'Mount Hebron', |
10009
|
|
|
|
|
|
|
'Mount Holly', |
10010
|
|
|
|
|
|
|
'Mount Holly Springs', |
10011
|
|
|
|
|
|
|
'Mount Hood Village', |
10012
|
|
|
|
|
|
|
'Mount Hope', |
10013
|
|
|
|
|
|
|
'Mount Horeb', |
10014
|
|
|
|
|
|
|
'Mount Ida', |
10015
|
|
|
|
|
|
|
'Mount Ivy', |
10016
|
|
|
|
|
|
|
'Mount Jackson', |
10017
|
|
|
|
|
|
|
'Mount Jewett', |
10018
|
|
|
|
|
|
|
'Mount Joy', |
10019
|
|
|
|
|
|
|
'Mount Juliet', |
10020
|
|
|
|
|
|
|
'Mount Kisco', |
10021
|
|
|
|
|
|
|
'Mount Lebanon', |
10022
|
|
|
|
|
|
|
'Mount Lena', |
10023
|
|
|
|
|
|
|
'Mount Leonard', |
10024
|
|
|
|
|
|
|
'Mount Moriah', |
10025
|
|
|
|
|
|
|
'Mount Morris', |
10026
|
|
|
|
|
|
|
'Mount Olive', |
10027
|
|
|
|
|
|
|
'Mount Oliver', |
10028
|
|
|
|
|
|
|
'Mount Olivet', |
10029
|
|
|
|
|
|
|
'Mount Olympus', |
10030
|
|
|
|
|
|
|
'Mount Orab', |
10031
|
|
|
|
|
|
|
'Mount Penn', |
10032
|
|
|
|
|
|
|
'Mount Pleasant', |
10033
|
|
|
|
|
|
|
'Mount Pleasant Mills', |
10034
|
|
|
|
|
|
|
'Mount Plymouth', |
10035
|
|
|
|
|
|
|
'Mount Pocono', |
10036
|
|
|
|
|
|
|
'Mount Prospect', |
10037
|
|
|
|
|
|
|
'Mount Pulaski', |
10038
|
|
|
|
|
|
|
'Mount Rainier', |
10039
|
|
|
|
|
|
|
'Mount Repose', |
10040
|
|
|
|
|
|
|
'Mount Shasta', |
10041
|
|
|
|
|
|
|
'Mount Sinai', |
10042
|
|
|
|
|
|
|
'Mount Sterling', |
10043
|
|
|
|
|
|
|
'Mount Summit', |
10044
|
|
|
|
|
|
|
'Mount Union', |
10045
|
|
|
|
|
|
|
'Mount Vernon', |
10046
|
|
|
|
|
|
|
'Mount Victory', |
10047
|
|
|
|
|
|
|
'Mount Vista', |
10048
|
|
|
|
|
|
|
'Mount Washington', |
10049
|
|
|
|
|
|
|
'Mount Wolf', |
10050
|
|
|
|
|
|
|
'Mount Zion', |
10051
|
|
|
|
|
|
|
'Mountain', |
10052
|
|
|
|
|
|
|
'Mountain Brook', |
10053
|
|
|
|
|
|
|
'Mountain City', |
10054
|
|
|
|
|
|
|
'Mountain Grove', |
10055
|
|
|
|
|
|
|
'Mountain Home', |
10056
|
|
|
|
|
|
|
'Mountain Home AFB', |
10057
|
|
|
|
|
|
|
'Mountain Iron', |
10058
|
|
|
|
|
|
|
'Mountain Lake', |
10059
|
|
|
|
|
|
|
'Mountain Lake Park', |
10060
|
|
|
|
|
|
|
'Mountain Lakes', |
10061
|
|
|
|
|
|
|
'Mountain Mesa', |
10062
|
|
|
|
|
|
|
'Mountain Park', |
10063
|
|
|
|
|
|
|
'Mountain Pine', |
10064
|
|
|
|
|
|
|
'Mountain Ranch', |
10065
|
|
|
|
|
|
|
'Mountain Top', |
10066
|
|
|
|
|
|
|
'Mountain View', |
10067
|
|
|
|
|
|
|
'Mountain View Acres', |
10068
|
|
|
|
|
|
|
'Mountain Village', |
10069
|
|
|
|
|
|
|
'Mountainair', |
10070
|
|
|
|
|
|
|
'Mountainaire', |
10071
|
|
|
|
|
|
|
'Mountainboro', |
10072
|
|
|
|
|
|
|
'Mountainburg', |
10073
|
|
|
|
|
|
|
'Mountainhome', |
10074
|
|
|
|
|
|
|
'Mountainside', |
10075
|
|
|
|
|
|
|
'Mountlake Terrace', |
10076
|
|
|
|
|
|
|
'Mountville', |
10077
|
|
|
|
|
|
|
'Moville', |
10078
|
|
|
|
|
|
|
'Moweaqua', |
10079
|
|
|
|
|
|
|
'Mowrystown', |
10080
|
|
|
|
|
|
|
'Moxee', |
10081
|
|
|
|
|
|
|
'Moyie Springs', |
10082
|
|
|
|
|
|
|
'Mucarabones', |
10083
|
|
|
|
|
|
|
'Mud Bay', |
10084
|
|
|
|
|
|
|
'Mud Lake', |
10085
|
|
|
|
|
|
|
'Muddy', |
10086
|
|
|
|
|
|
|
'Muenster', |
10087
|
|
|
|
|
|
|
'Muir', |
10088
|
|
|
|
|
|
|
'Muir Beach', |
10089
|
|
|
|
|
|
|
'Mukilteo', |
10090
|
|
|
|
|
|
|
'Mukwonago', |
10091
|
|
|
|
|
|
|
'Mulberry', |
10092
|
|
|
|
|
|
|
'Mulberry Grove', |
10093
|
|
|
|
|
|
|
'Muldraugh', |
10094
|
|
|
|
|
|
|
'Muldrow', |
10095
|
|
|
|
|
|
|
'Mule Barn', |
10096
|
|
|
|
|
|
|
'Muleshoe', |
10097
|
|
|
|
|
|
|
'Mulga', |
10098
|
|
|
|
|
|
|
'Mulhall', |
10099
|
|
|
|
|
|
|
'Mullan', |
10100
|
|
|
|
|
|
|
'Mullen', |
10101
|
|
|
|
|
|
|
'Mullens', |
10102
|
|
|
|
|
|
|
'Mullica Hill', |
10103
|
|
|
|
|
|
|
'Mulliken', |
10104
|
|
|
|
|
|
|
'Mullin', |
10105
|
|
|
|
|
|
|
'Mullins', |
10106
|
|
|
|
|
|
|
'Mullinville', |
10107
|
|
|
|
|
|
|
'Mulvane', |
10108
|
|
|
|
|
|
|
'Muncie', |
10109
|
|
|
|
|
|
|
'Muncy', |
10110
|
|
|
|
|
|
|
'Munday', |
10111
|
|
|
|
|
|
|
'Mundelein', |
10112
|
|
|
|
|
|
|
'Munden', |
10113
|
|
|
|
|
|
|
'Munds Park', |
10114
|
|
|
|
|
|
|
'Munford', |
10115
|
|
|
|
|
|
|
'Munfordville', |
10116
|
|
|
|
|
|
|
'Munhall', |
10117
|
|
|
|
|
|
|
'Munich', |
10118
|
|
|
|
|
|
|
'Municipality of Monroeville', |
10119
|
|
|
|
|
|
|
'Municipality of Murrysville', |
10120
|
|
|
|
|
|
|
'Munising', |
10121
|
|
|
|
|
|
|
'Muniz', |
10122
|
|
|
|
|
|
|
'Munnsville', |
10123
|
|
|
|
|
|
|
'Munroe Falls', |
10124
|
|
|
|
|
|
|
'Munsey Park', |
10125
|
|
|
|
|
|
|
'Munsons Corners', |
10126
|
|
|
|
|
|
|
'Munster', |
10127
|
|
|
|
|
|
|
'Murchison', |
10128
|
|
|
|
|
|
|
'Murdo', |
10129
|
|
|
|
|
|
|
'Murdock', |
10130
|
|
|
|
|
|
|
'Murfreesboro', |
10131
|
|
|
|
|
|
|
'Murphy', |
10132
|
|
|
|
|
|
|
'Murphys', |
10133
|
|
|
|
|
|
|
'Murphys Estates', |
10134
|
|
|
|
|
|
|
'Murphysboro', |
10135
|
|
|
|
|
|
|
'Murray', |
10136
|
|
|
|
|
|
|
'Murray City', |
10137
|
|
|
|
|
|
|
'Murray Hill', |
10138
|
|
|
|
|
|
|
'Murraysville', |
10139
|
|
|
|
|
|
|
'Murrayville', |
10140
|
|
|
|
|
|
|
'Murrells Inlet', |
10141
|
|
|
|
|
|
|
'Murrieta', |
10142
|
|
|
|
|
|
|
'Murrieta Hot Springs', |
10143
|
|
|
|
|
|
|
'Murtaugh', |
10144
|
|
|
|
|
|
|
'Muscatine', |
10145
|
|
|
|
|
|
|
'Muscle Shoals', |
10146
|
|
|
|
|
|
|
'Muscoda', |
10147
|
|
|
|
|
|
|
'Muscotah', |
10148
|
|
|
|
|
|
|
'Muscoy', |
10149
|
|
|
|
|
|
|
'Muskego', |
10150
|
|
|
|
|
|
|
'Muskegon', |
10151
|
|
|
|
|
|
|
'Muskegon Heights', |
10152
|
|
|
|
|
|
|
'Muskogee', |
10153
|
|
|
|
|
|
|
'Musselshell', |
10154
|
|
|
|
|
|
|
'Mustang', |
10155
|
|
|
|
|
|
|
'Mustang Ridge', |
10156
|
|
|
|
|
|
|
'Muttontown', |
10157
|
|
|
|
|
|
|
'Mutual', |
10158
|
|
|
|
|
|
|
'Myers Corner', |
10159
|
|
|
|
|
|
|
'Myerstown', |
10160
|
|
|
|
|
|
|
'Myersville', |
10161
|
|
|
|
|
|
|
'Mylo', |
10162
|
|
|
|
|
|
|
'Myrtle', |
10163
|
|
|
|
|
|
|
'Myrtle Beach', |
10164
|
|
|
|
|
|
|
'Myrtle Creek', |
10165
|
|
|
|
|
|
|
'Myrtle Grove', |
10166
|
|
|
|
|
|
|
'Myrtle Point', |
10167
|
|
|
|
|
|
|
'Myrtletown', |
10168
|
|
|
|
|
|
|
'Myrtlewood', |
10169
|
|
|
|
|
|
|
'Mystic', |
10170
|
|
|
|
|
|
|
'Mystic Island', |
10171
|
|
|
|
|
|
|
'Myton', |
10172
|
|
|
|
|
|
|
'Naalehu', |
10173
|
|
|
|
|
|
|
'Naches', |
10174
|
|
|
|
|
|
|
'Naco', |
10175
|
|
|
|
|
|
|
'Nacogdoches', |
10176
|
|
|
|
|
|
|
'Nageezi', |
10177
|
|
|
|
|
|
|
'Nags Head', |
10178
|
|
|
|
|
|
|
'Naguabo', |
10179
|
|
|
|
|
|
|
'Nahant', |
10180
|
|
|
|
|
|
|
'Nahunta', |
10181
|
|
|
|
|
|
|
'Nakaibito', |
10182
|
|
|
|
|
|
|
'Naknek', |
10183
|
|
|
|
|
|
|
'Nampa', |
10184
|
|
|
|
|
|
|
'Nanakuli', |
10185
|
|
|
|
|
|
|
'Nanawale Estates', |
10186
|
|
|
|
|
|
|
'Nanticoke', |
10187
|
|
|
|
|
|
|
'Nantucket', |
10188
|
|
|
|
|
|
|
'Nanty-Glo', |
10189
|
|
|
|
|
|
|
'Nanuet', |
10190
|
|
|
|
|
|
|
'Nanwalek', |
10191
|
|
|
|
|
|
|
'Napa', |
10192
|
|
|
|
|
|
|
'Napakiak', |
10193
|
|
|
|
|
|
|
'Napanoch', |
10194
|
|
|
|
|
|
|
'Napaskiak', |
10195
|
|
|
|
|
|
|
'Napavine', |
10196
|
|
|
|
|
|
|
'Napeague', |
10197
|
|
|
|
|
|
|
'Naper', |
10198
|
|
|
|
|
|
|
'Naperville', |
10199
|
|
|
|
|
|
|
'Napi HQ', |
10200
|
|
|
|
|
|
|
'Napier Field', |
10201
|
|
|
|
|
|
|
'Napili-Honokowai', |
10202
|
|
|
|
|
|
|
'Naplate', |
10203
|
|
|
|
|
|
|
'Naples', |
10204
|
|
|
|
|
|
|
'Naples Manor', |
10205
|
|
|
|
|
|
|
'Naples Park', |
10206
|
|
|
|
|
|
|
'Napoleon', |
10207
|
|
|
|
|
|
|
'Napoleonville', |
10208
|
|
|
|
|
|
|
'Naponee', |
10209
|
|
|
|
|
|
|
'Nappanee', |
10210
|
|
|
|
|
|
|
'Naranja', |
10211
|
|
|
|
|
|
|
'Naranjito', |
10212
|
|
|
|
|
|
|
'Narberth', |
10213
|
|
|
|
|
|
|
'Narcissa', |
10214
|
|
|
|
|
|
|
'Narka', |
10215
|
|
|
|
|
|
|
'Narragansett Pier', |
10216
|
|
|
|
|
|
|
'Narrows', |
10217
|
|
|
|
|
|
|
'Narrowsburg', |
10218
|
|
|
|
|
|
|
'Naschitti', |
10219
|
|
|
|
|
|
|
'Naselle', |
10220
|
|
|
|
|
|
|
'Nash', |
10221
|
|
|
|
|
|
|
'Nashotah', |
10222
|
|
|
|
|
|
|
'Nashua', |
10223
|
|
|
|
|
|
|
'Nashville', |
10224
|
|
|
|
|
|
|
'Nashwauk', |
10225
|
|
|
|
|
|
|
'Nason', |
10226
|
|
|
|
|
|
|
'Nassau', |
10227
|
|
|
|
|
|
|
'Nassau Bay', |
10228
|
|
|
|
|
|
|
'Nassau Village-Ratliff', |
10229
|
|
|
|
|
|
|
'Nassawadox', |
10230
|
|
|
|
|
|
|
'Natalbany', |
10231
|
|
|
|
|
|
|
'Natalia', |
10232
|
|
|
|
|
|
|
'Natchez', |
10233
|
|
|
|
|
|
|
'Natchitoches', |
10234
|
|
|
|
|
|
|
'National City', |
10235
|
|
|
|
|
|
|
'National Park', |
10236
|
|
|
|
|
|
|
'Natoma', |
10237
|
|
|
|
|
|
|
'Natural Bridge', |
10238
|
|
|
|
|
|
|
'Naturita', |
10239
|
|
|
|
|
|
|
'Naugatuck', |
10240
|
|
|
|
|
|
|
'Naukati Bay', |
10241
|
|
|
|
|
|
|
'Nauvoo', |
10242
|
|
|
|
|
|
|
'Navajo', |
10243
|
|
|
|
|
|
|
'Navajo Mountain', |
10244
|
|
|
|
|
|
|
'Naval Academy', |
10245
|
|
|
|
|
|
|
'Navarre', |
10246
|
|
|
|
|
|
|
'Navarro', |
10247
|
|
|
|
|
|
|
'Navasota', |
10248
|
|
|
|
|
|
|
'Navassa', |
10249
|
|
|
|
|
|
|
'Navesink', |
10250
|
|
|
|
|
|
|
'Navy Yard City', |
10251
|
|
|
|
|
|
|
'Naylor', |
10252
|
|
|
|
|
|
|
'Naytahwaush', |
10253
|
|
|
|
|
|
|
'Nazareth', |
10254
|
|
|
|
|
|
|
'Nazlini', |
10255
|
|
|
|
|
|
|
'Neah Bay', |
10256
|
|
|
|
|
|
|
'Nebo', |
10257
|
|
|
|
|
|
|
'Nebo Center', |
10258
|
|
|
|
|
|
|
'Nebraska City', |
10259
|
|
|
|
|
|
|
'Necedah', |
10260
|
|
|
|
|
|
|
'Neche', |
10261
|
|
|
|
|
|
|
'Neck City', |
10262
|
|
|
|
|
|
|
'Nectar', |
10263
|
|
|
|
|
|
|
'Nederland', |
10264
|
|
|
|
|
|
|
'Nedrow', |
10265
|
|
|
|
|
|
|
'Needham', |
10266
|
|
|
|
|
|
|
'Needles', |
10267
|
|
|
|
|
|
|
'Needville', |
10268
|
|
|
|
|
|
|
'Neelyville', |
10269
|
|
|
|
|
|
|
'Neenah', |
10270
|
|
|
|
|
|
|
'Neeses', |
10271
|
|
|
|
|
|
|
'Neffs', |
10272
|
|
|
|
|
|
|
'Negaunee', |
10273
|
|
|
|
|
|
|
'Nehalem', |
10274
|
|
|
|
|
|
|
'Nehawka', |
10275
|
|
|
|
|
|
|
'Neihart', |
10276
|
|
|
|
|
|
|
'Neillsville', |
10277
|
|
|
|
|
|
|
'Neilton', |
10278
|
|
|
|
|
|
|
'Nekoma', |
10279
|
|
|
|
|
|
|
'Nekoosa', |
10280
|
|
|
|
|
|
|
'Nelchina', |
10281
|
|
|
|
|
|
|
'Neligh', |
10282
|
|
|
|
|
|
|
'Nellie', |
10283
|
|
|
|
|
|
|
'Nellieburg', |
10284
|
|
|
|
|
|
|
'Nellis AFB', |
10285
|
|
|
|
|
|
|
'Nelliston', |
10286
|
|
|
|
|
|
|
'Nelson', |
10287
|
|
|
|
|
|
|
'Nelson Lagoon', |
10288
|
|
|
|
|
|
|
'Nelsonville', |
10289
|
|
|
|
|
|
|
'Nemacolin', |
10290
|
|
|
|
|
|
|
'Nemaha', |
10291
|
|
|
|
|
|
|
'Nenahnezad', |
10292
|
|
|
|
|
|
|
'Nenana', |
10293
|
|
|
|
|
|
|
'Nenzel', |
10294
|
|
|
|
|
|
|
'Neodesha', |
10295
|
|
|
|
|
|
|
'Neoga', |
10296
|
|
|
|
|
|
|
'Neola', |
10297
|
|
|
|
|
|
|
'Neopit', |
10298
|
|
|
|
|
|
|
'Neosho', |
10299
|
|
|
|
|
|
|
'Neosho Falls', |
10300
|
|
|
|
|
|
|
'Neosho Rapids', |
10301
|
|
|
|
|
|
|
'Nephi', |
10302
|
|
|
|
|
|
|
'Neponset', |
10303
|
|
|
|
|
|
|
'Neptune Beach', |
10304
|
|
|
|
|
|
|
'Neptune City', |
10305
|
|
|
|
|
|
|
'Nerstrand', |
10306
|
|
|
|
|
|
|
'Nesbitt', |
10307
|
|
|
|
|
|
|
'Nesconset', |
10308
|
|
|
|
|
|
|
'Nescopeck', |
10309
|
|
|
|
|
|
|
'Neshkoro', |
10310
|
|
|
|
|
|
|
'Neskowin', |
10311
|
|
|
|
|
|
|
'Nespelem', |
10312
|
|
|
|
|
|
|
'Nespelem Community', |
10313
|
|
|
|
|
|
|
'Nesquehoning', |
10314
|
|
|
|
|
|
|
'Ness City', |
10315
|
|
|
|
|
|
|
'Netarts', |
10316
|
|
|
|
|
|
|
'Netawaka', |
10317
|
|
|
|
|
|
|
'Netcong', |
10318
|
|
|
|
|
|
|
'Nether Providence Township', |
10319
|
|
|
|
|
|
|
'Nettleton', |
10320
|
|
|
|
|
|
|
'Neuse Forest', |
10321
|
|
|
|
|
|
|
'Nevada', |
10322
|
|
|
|
|
|
|
'Nevada City', |
10323
|
|
|
|
|
|
|
'Neville', |
10324
|
|
|
|
|
|
|
'Nevis', |
10325
|
|
|
|
|
|
|
'New Albany', |
10326
|
|
|
|
|
|
|
'New Albin', |
10327
|
|
|
|
|
|
|
'New Alexandria', |
10328
|
|
|
|
|
|
|
'New Allakaket', |
10329
|
|
|
|
|
|
|
'New Alluwe', |
10330
|
|
|
|
|
|
|
'New Amsterdam', |
10331
|
|
|
|
|
|
|
'New Athens', |
10332
|
|
|
|
|
|
|
'New Auburn', |
10333
|
|
|
|
|
|
|
'New Augusta', |
10334
|
|
|
|
|
|
|
'New Baden', |
10335
|
|
|
|
|
|
|
'New Baltimore', |
10336
|
|
|
|
|
|
|
'New Bavaria', |
10337
|
|
|
|
|
|
|
'New Beaver', |
10338
|
|
|
|
|
|
|
'New Bedford', |
10339
|
|
|
|
|
|
|
'New Berlin', |
10340
|
|
|
|
|
|
|
'New Bern', |
10341
|
|
|
|
|
|
|
'New Bethlehem', |
10342
|
|
|
|
|
|
|
'New Bloomfield', |
10343
|
|
|
|
|
|
|
'New Bloomington', |
10344
|
|
|
|
|
|
|
'New Boston', |
10345
|
|
|
|
|
|
|
'New Boston-Morea', |
10346
|
|
|
|
|
|
|
'New Braunfels', |
10347
|
|
|
|
|
|
|
'New Bremen', |
10348
|
|
|
|
|
|
|
'New Brighton', |
10349
|
|
|
|
|
|
|
'New Britain', |
10350
|
|
|
|
|
|
|
'New Brockton', |
10351
|
|
|
|
|
|
|
'New Brunswick', |
10352
|
|
|
|
|
|
|
'New Buffalo', |
10353
|
|
|
|
|
|
|
'New Burnside', |
10354
|
|
|
|
|
|
|
'New Cambria', |
10355
|
|
|
|
|
|
|
'New Canton', |
10356
|
|
|
|
|
|
|
'New Carlisle', |
10357
|
|
|
|
|
|
|
'New Carrollton', |
10358
|
|
|
|
|
|
|
'New Cassel', |
10359
|
|
|
|
|
|
|
'New Castle', |
10360
|
|
|
|
|
|
|
'New Castle Northwest', |
10361
|
|
|
|
|
|
|
'New Centerville', |
10362
|
|
|
|
|
|
|
'New Chapel Hill', |
10363
|
|
|
|
|
|
|
'New Chicago', |
10364
|
|
|
|
|
|
|
'New City', |
10365
|
|
|
|
|
|
|
'New Columbus', |
10366
|
|
|
|
|
|
|
'New Concord', |
10367
|
|
|
|
|
|
|
'New Cordell', |
10368
|
|
|
|
|
|
|
'New Cumberland', |
10369
|
|
|
|
|
|
|
'New Deal', |
10370
|
|
|
|
|
|
|
'New Douglas', |
10371
|
|
|
|
|
|
|
'New Eagle', |
10372
|
|
|
|
|
|
|
'New Effington', |
10373
|
|
|
|
|
|
|
'New Egypt', |
10374
|
|
|
|
|
|
|
'New Ellenton', |
10375
|
|
|
|
|
|
|
'New England', |
10376
|
|
|
|
|
|
|
'New Era', |
10377
|
|
|
|
|
|
|
'New Eucha', |
10378
|
|
|
|
|
|
|
'New Fairview', |
10379
|
|
|
|
|
|
|
'New Falcon', |
10380
|
|
|
|
|
|
|
'New Florence', |
10381
|
|
|
|
|
|
|
'New Franklin', |
10382
|
|
|
|
|
|
|
'New Freedom', |
10383
|
|
|
|
|
|
|
'New Galilee', |
10384
|
|
|
|
|
|
|
'New Germany', |
10385
|
|
|
|
|
|
|
'New Glarus', |
10386
|
|
|
|
|
|
|
'New Grand Chain', |
10387
|
|
|
|
|
|
|
'New Hampton', |
10388
|
|
|
|
|
|
|
'New Harmony', |
10389
|
|
|
|
|
|
|
'New Hartford', |
10390
|
|
|
|
|
|
|
'New Hartford Center', |
10391
|
|
|
|
|
|
|
'New Haven', |
10392
|
|
|
|
|
|
|
'New Hebron', |
10393
|
|
|
|
|
|
|
'New Hempstead', |
10394
|
|
|
|
|
|
|
'New Holland', |
10395
|
|
|
|
|
|
|
'New Holstein', |
10396
|
|
|
|
|
|
|
'New Home', |
10397
|
|
|
|
|
|
|
'New Hope', |
10398
|
|
|
|
|
|
|
'New Houlka', |
10399
|
|
|
|
|
|
|
'New Hyde Park', |
10400
|
|
|
|
|
|
|
'New Iberia', |
10401
|
|
|
|
|
|
|
'New Johnsonville', |
10402
|
|
|
|
|
|
|
'New Kensington', |
10403
|
|
|
|
|
|
|
'New Kingman-Butler', |
10404
|
|
|
|
|
|
|
'New Kingstown', |
10405
|
|
|
|
|
|
|
'New Knoxville', |
10406
|
|
|
|
|
|
|
'New Lebanon', |
10407
|
|
|
|
|
|
|
'New Leipzig', |
10408
|
|
|
|
|
|
|
'New Lenox', |
10409
|
|
|
|
|
|
|
'New Lexington', |
10410
|
|
|
|
|
|
|
'New Liberty', |
10411
|
|
|
|
|
|
|
'New Lisbon', |
10412
|
|
|
|
|
|
|
'New Llano', |
10413
|
|
|
|
|
|
|
'New London', |
10414
|
|
|
|
|
|
|
'New Lothrop', |
10415
|
|
|
|
|
|
|
'New Madison', |
10416
|
|
|
|
|
|
|
'New Madrid', |
10417
|
|
|
|
|
|
|
'New Market', |
10418
|
|
|
|
|
|
|
'New Martinsville', |
10419
|
|
|
|
|
|
|
'New Meadows', |
10420
|
|
|
|
|
|
|
'New Melle', |
10421
|
|
|
|
|
|
|
'New Miami', |
10422
|
|
|
|
|
|
|
'New Middletown', |
10423
|
|
|
|
|
|
|
'New Milford', |
10424
|
|
|
|
|
|
|
'New Millford', |
10425
|
|
|
|
|
|
|
'New Minden', |
10426
|
|
|
|
|
|
|
'New Morgan', |
10427
|
|
|
|
|
|
|
'New Munich', |
10428
|
|
|
|
|
|
|
'New Orleans', |
10429
|
|
|
|
|
|
|
'New Oxford', |
10430
|
|
|
|
|
|
|
'New Palestine', |
10431
|
|
|
|
|
|
|
'New Paltz', |
10432
|
|
|
|
|
|
|
'New Paris', |
10433
|
|
|
|
|
|
|
'New Pekin', |
10434
|
|
|
|
|
|
|
'New Philadelphia', |
10435
|
|
|
|
|
|
|
'New Plymouth', |
10436
|
|
|
|
|
|
|
'New Port Richey', |
10437
|
|
|
|
|
|
|
'New Port Richey East', |
10438
|
|
|
|
|
|
|
'New Post', |
10439
|
|
|
|
|
|
|
'New Prague', |
10440
|
|
|
|
|
|
|
'New Preston', |
10441
|
|
|
|
|
|
|
'New Providence', |
10442
|
|
|
|
|
|
|
'New Richland', |
10443
|
|
|
|
|
|
|
'New Richmond', |
10444
|
|
|
|
|
|
|
'New Riegel', |
10445
|
|
|
|
|
|
|
'New Ringgold', |
10446
|
|
|
|
|
|
|
'New River', |
10447
|
|
|
|
|
|
|
'New Roads', |
10448
|
|
|
|
|
|
|
'New Rochelle', |
10449
|
|
|
|
|
|
|
'New Rockford', |
10450
|
|
|
|
|
|
|
'New Rome', |
10451
|
|
|
|
|
|
|
'New Ross', |
10452
|
|
|
|
|
|
|
'New Salem', |
10453
|
|
|
|
|
|
|
'New Salem-Buffington', |
10454
|
|
|
|
|
|
|
'New Sarpy', |
10455
|
|
|
|
|
|
|
'New Seabury', |
10456
|
|
|
|
|
|
|
'New Sharon', |
10457
|
|
|
|
|
|
|
'New Site', |
10458
|
|
|
|
|
|
|
'New Smyrna Beach', |
10459
|
|
|
|
|
|
|
'New Square', |
10460
|
|
|
|
|
|
|
'New Stanton', |
10461
|
|
|
|
|
|
|
'New Straitsville', |
10462
|
|
|
|
|
|
|
'New Strawn', |
10463
|
|
|
|
|
|
|
'New Stuyahok', |
10464
|
|
|
|
|
|
|
'New Suffolk', |
10465
|
|
|
|
|
|
|
'New Summerfield', |
10466
|
|
|
|
|
|
|
'New Tazewell', |
10467
|
|
|
|
|
|
|
'New Territory', |
10468
|
|
|
|
|
|
|
'New Town', |
10469
|
|
|
|
|
|
|
'New Trier', |
10470
|
|
|
|
|
|
|
'New Tulsa', |
10471
|
|
|
|
|
|
|
'New Ulm', |
10472
|
|
|
|
|
|
|
'New Underwood', |
10473
|
|
|
|
|
|
|
'New Vienna', |
10474
|
|
|
|
|
|
|
'New Virginia', |
10475
|
|
|
|
|
|
|
'New Washington', |
10476
|
|
|
|
|
|
|
'New Waterford', |
10477
|
|
|
|
|
|
|
'New Waverly', |
10478
|
|
|
|
|
|
|
'New Weston', |
10479
|
|
|
|
|
|
|
'New Whiteland', |
10480
|
|
|
|
|
|
|
'New Wilmington', |
10481
|
|
|
|
|
|
|
'New Windsor', |
10482
|
|
|
|
|
|
|
'New Witten', |
10483
|
|
|
|
|
|
|
'New York', |
10484
|
|
|
|
|
|
|
'New York Mills', |
10485
|
|
|
|
|
|
|
'Newark', |
10486
|
|
|
|
|
|
|
'Newark Valley', |
10487
|
|
|
|
|
|
|
'Newaygo', |
10488
|
|
|
|
|
|
|
'Newberg', |
10489
|
|
|
|
|
|
|
'Newbern', |
10490
|
|
|
|
|
|
|
'Newberry', |
10491
|
|
|
|
|
|
|
'Newborn', |
10492
|
|
|
|
|
|
|
'Newburg', |
10493
|
|
|
|
|
|
|
'Newburgh', |
10494
|
|
|
|
|
|
|
'Newburgh Heights', |
10495
|
|
|
|
|
|
|
'Newbury', |
10496
|
|
|
|
|
|
|
'Newburyport', |
10497
|
|
|
|
|
|
|
'Newcastle', |
10498
|
|
|
|
|
|
|
'Newcomb', |
10499
|
|
|
|
|
|
|
'Newcomerstown', |
10500
|
|
|
|
|
|
|
'Newdale', |
10501
|
|
|
|
|
|
|
'Newell', |
10502
|
|
|
|
|
|
|
'Newellton', |
10503
|
|
|
|
|
|
|
'Newfane', |
10504
|
|
|
|
|
|
|
'Newfield', |
10505
|
|
|
|
|
|
|
'Newfield Hamlet', |
10506
|
|
|
|
|
|
|
'Newfolden', |
10507
|
|
|
|
|
|
|
'Newhalen', |
10508
|
|
|
|
|
|
|
'Newhall', |
10509
|
|
|
|
|
|
|
'Newington', |
10510
|
|
|
|
|
|
|
'Newkirk', |
10511
|
|
|
|
|
|
|
'Newland', |
10512
|
|
|
|
|
|
|
'Newman', |
10513
|
|
|
|
|
|
|
'Newman Grove', |
10514
|
|
|
|
|
|
|
'Newmanstown', |
10515
|
|
|
|
|
|
|
'Newmarket', |
10516
|
|
|
|
|
|
|
'Newnan', |
10517
|
|
|
|
|
|
|
'Newpoint', |
10518
|
|
|
|
|
|
|
'Newport', |
10519
|
|
|
|
|
|
|
'Newport Beach', |
10520
|
|
|
|
|
|
|
'Newport Coast', |
10521
|
|
|
|
|
|
|
'Newport East', |
10522
|
|
|
|
|
|
|
'Newport News', |
10523
|
|
|
|
|
|
|
'Newry', |
10524
|
|
|
|
|
|
|
'Newsoms', |
10525
|
|
|
|
|
|
|
'Newtok', |
10526
|
|
|
|
|
|
|
'Newton', |
10527
|
|
|
|
|
|
|
'Newton Falls', |
10528
|
|
|
|
|
|
|
'Newton Grove', |
10529
|
|
|
|
|
|
|
'Newton Hamilton', |
10530
|
|
|
|
|
|
|
'Newtonia', |
10531
|
|
|
|
|
|
|
'Newtonsville', |
10532
|
|
|
|
|
|
|
'Newtown', |
10533
|
|
|
|
|
|
|
'Newtown Grant', |
10534
|
|
|
|
|
|
|
'Newville', |
10535
|
|
|
|
|
|
|
'Ney', |
10536
|
|
|
|
|
|
|
'Neylandville', |
10537
|
|
|
|
|
|
|
'Nezperce', |
10538
|
|
|
|
|
|
|
'Niagara', |
10539
|
|
|
|
|
|
|
'Niagara Falls', |
10540
|
|
|
|
|
|
|
'Niangua', |
10541
|
|
|
|
|
|
|
'Niantic', |
10542
|
|
|
|
|
|
|
'Niarada', |
10543
|
|
|
|
|
|
|
'Nibley', |
10544
|
|
|
|
|
|
|
'Nice', |
10545
|
|
|
|
|
|
|
'Niceville', |
10546
|
|
|
|
|
|
|
'Nicholasville', |
10547
|
|
|
|
|
|
|
'Nicholls', |
10548
|
|
|
|
|
|
|
'Nichols', |
10549
|
|
|
|
|
|
|
'Nichols Hills', |
10550
|
|
|
|
|
|
|
'Nicholson', |
10551
|
|
|
|
|
|
|
'Nickelsville', |
10552
|
|
|
|
|
|
|
'Nickerson', |
10553
|
|
|
|
|
|
|
'Nicollet', |
10554
|
|
|
|
|
|
|
'Nicoma Park', |
10555
|
|
|
|
|
|
|
'Niederwald', |
10556
|
|
|
|
|
|
|
'Nielsville', |
10557
|
|
|
|
|
|
|
'Nightmute', |
10558
|
|
|
|
|
|
|
'Nikiski', |
10559
|
|
|
|
|
|
|
'Nikolaevsk', |
10560
|
|
|
|
|
|
|
'Nikolai', |
10561
|
|
|
|
|
|
|
'Nikolski', |
10562
|
|
|
|
|
|
|
'Niland', |
10563
|
|
|
|
|
|
|
'Niles', |
10564
|
|
|
|
|
|
|
'Nilwood', |
10565
|
|
|
|
|
|
|
'Nimmons', |
10566
|
|
|
|
|
|
|
'Nimrod', |
10567
|
|
|
|
|
|
|
'Ninety Six', |
10568
|
|
|
|
|
|
|
'Ninilchik', |
10569
|
|
|
|
|
|
|
'Ninnekah', |
10570
|
|
|
|
|
|
|
'Niobrara', |
10571
|
|
|
|
|
|
|
'Niota', |
10572
|
|
|
|
|
|
|
'Niotaze', |
10573
|
|
|
|
|
|
|
'Nipomo', |
10574
|
|
|
|
|
|
|
'Niskayuna', |
10575
|
|
|
|
|
|
|
'Nisland', |
10576
|
|
|
|
|
|
|
'Nisqually Indian Community', |
10577
|
|
|
|
|
|
|
'Nissequogue', |
10578
|
|
|
|
|
|
|
'Nisswa', |
10579
|
|
|
|
|
|
|
'Nitro', |
10580
|
|
|
|
|
|
|
'Niverville', |
10581
|
|
|
|
|
|
|
'Niwot', |
10582
|
|
|
|
|
|
|
'Nixa', |
10583
|
|
|
|
|
|
|
'Nixon', |
10584
|
|
|
|
|
|
|
'Noank', |
10585
|
|
|
|
|
|
|
'Noatak', |
10586
|
|
|
|
|
|
|
'Noble', |
10587
|
|
|
|
|
|
|
'Noblesville', |
10588
|
|
|
|
|
|
|
'Nobleton', |
10589
|
|
|
|
|
|
|
'Nocona', |
10590
|
|
|
|
|
|
|
'Nodaway', |
10591
|
|
|
|
|
|
|
'Noel', |
10592
|
|
|
|
|
|
|
'Nogales', |
10593
|
|
|
|
|
|
|
'Nokesville', |
10594
|
|
|
|
|
|
|
'Nokomis', |
10595
|
|
|
|
|
|
|
'Nolanville', |
10596
|
|
|
|
|
|
|
'Nolensville', |
10597
|
|
|
|
|
|
|
'Noma', |
10598
|
|
|
|
|
|
|
'Nome', |
10599
|
|
|
|
|
|
|
'Nondalton', |
10600
|
|
|
|
|
|
|
'Nooksack', |
10601
|
|
|
|
|
|
|
'Noonan', |
10602
|
|
|
|
|
|
|
'Noonday', |
10603
|
|
|
|
|
|
|
'Noorvik', |
10604
|
|
|
|
|
|
|
'Nora', |
10605
|
|
|
|
|
|
|
'Nora Springs', |
10606
|
|
|
|
|
|
|
'Norborne', |
10607
|
|
|
|
|
|
|
'Norbourne Estates', |
10608
|
|
|
|
|
|
|
'Norcatur', |
10609
|
|
|
|
|
|
|
'Norco', |
10610
|
|
|
|
|
|
|
'Norcross', |
10611
|
|
|
|
|
|
|
'Nordheim', |
10612
|
|
|
|
|
|
|
'Norfolk', |
10613
|
|
|
|
|
|
|
'Norfork', |
10614
|
|
|
|
|
|
|
'Norge', |
10615
|
|
|
|
|
|
|
'Norland', |
10616
|
|
|
|
|
|
|
'Norlina', |
10617
|
|
|
|
|
|
|
'Normal', |
10618
|
|
|
|
|
|
|
'Norman', |
10619
|
|
|
|
|
|
|
'Norman Park', |
10620
|
|
|
|
|
|
|
'Normandy', |
10621
|
|
|
|
|
|
|
'Normandy Park', |
10622
|
|
|
|
|
|
|
'Normangee', |
10623
|
|
|
|
|
|
|
'Normanna', |
10624
|
|
|
|
|
|
|
'Norphlet', |
10625
|
|
|
|
|
|
|
'Norridge', |
10626
|
|
|
|
|
|
|
'Norridgewock', |
10627
|
|
|
|
|
|
|
'Norris', |
10628
|
|
|
|
|
|
|
'Norris City', |
10629
|
|
|
|
|
|
|
'Norristown', |
10630
|
|
|
|
|
|
|
'North', |
10631
|
|
|
|
|
|
|
'North Acomita Village', |
10632
|
|
|
|
|
|
|
'North Adams', |
10633
|
|
|
|
|
|
|
'North Alamo', |
10634
|
|
|
|
|
|
|
'North Amherst', |
10635
|
|
|
|
|
|
|
'North Amityville', |
10636
|
|
|
|
|
|
|
'North Andrews Gardens', |
10637
|
|
|
|
|
|
|
'North Apollo', |
10638
|
|
|
|
|
|
|
'North Arlington', |
10639
|
|
|
|
|
|
|
'North Atlanta', |
10640
|
|
|
|
|
|
|
'North Attleborough Center', |
10641
|
|
|
|
|
|
|
'North Auburn', |
10642
|
|
|
|
|
|
|
'North Augusta', |
10643
|
|
|
|
|
|
|
'North Aurora', |
10644
|
|
|
|
|
|
|
'North Babylon', |
10645
|
|
|
|
|
|
|
'North Ballston Spa', |
10646
|
|
|
|
|
|
|
'North Baltimore', |
10647
|
|
|
|
|
|
|
'North Barrington', |
10648
|
|
|
|
|
|
|
'North Bay', |
10649
|
|
|
|
|
|
|
'North Bay Shore', |
10650
|
|
|
|
|
|
|
'North Bay Village', |
10651
|
|
|
|
|
|
|
'North Beach', |
10652
|
|
|
|
|
|
|
'North Beach Haven', |
10653
|
|
|
|
|
|
|
'North Belle Vernon', |
10654
|
|
|
|
|
|
|
'North Bellmore', |
10655
|
|
|
|
|
|
|
'North Bellport', |
10656
|
|
|
|
|
|
|
'North Bend', |
10657
|
|
|
|
|
|
|
'North Bennington', |
10658
|
|
|
|
|
|
|
'North Berwick', |
10659
|
|
|
|
|
|
|
'North Bethesda', |
10660
|
|
|
|
|
|
|
'North Bibb', |
10661
|
|
|
|
|
|
|
'North Bonneville', |
10662
|
|
|
|
|
|
|
'North Boston', |
10663
|
|
|
|
|
|
|
'North Braddock', |
10664
|
|
|
|
|
|
|
'North Branch', |
10665
|
|
|
|
|
|
|
'North Brentwood', |
10666
|
|
|
|
|
|
|
'North Brookfield', |
10667
|
|
|
|
|
|
|
'North Brooksville', |
10668
|
|
|
|
|
|
|
'North Browning', |
10669
|
|
|
|
|
|
|
'North Brunswick Township', |
10670
|
|
|
|
|
|
|
'North Buena Vista', |
10671
|
|
|
|
|
|
|
'North Caldwell', |
10672
|
|
|
|
|
|
|
'North Canton', |
10673
|
|
|
|
|
|
|
'North Cape May', |
10674
|
|
|
|
|
|
|
'North Carrollton', |
10675
|
|
|
|
|
|
|
'North Catasauqua', |
10676
|
|
|
|
|
|
|
'North Charleroi', |
10677
|
|
|
|
|
|
|
'North Charleston', |
10678
|
|
|
|
|
|
|
'North Chevy Chase', |
10679
|
|
|
|
|
|
|
'North Chicago', |
10680
|
|
|
|
|
|
|
'North City', |
10681
|
|
|
|
|
|
|
'North Cleveland', |
10682
|
|
|
|
|
|
|
'North College Hill', |
10683
|
|
|
|
|
|
|
'North Collins', |
10684
|
|
|
|
|
|
|
'North Conway', |
10685
|
|
|
|
|
|
|
'North Corbin', |
10686
|
|
|
|
|
|
|
'North Courtland', |
10687
|
|
|
|
|
|
|
'North Creek', |
10688
|
|
|
|
|
|
|
'North Crossett', |
10689
|
|
|
|
|
|
|
'North Crows Nest', |
10690
|
|
|
|
|
|
|
'North De Land', |
10691
|
|
|
|
|
|
|
'North Decatur', |
10692
|
|
|
|
|
|
|
'North Druid Hills', |
10693
|
|
|
|
|
|
|
'North Eagle Butte', |
10694
|
|
|
|
|
|
|
'North East', |
10695
|
|
|
|
|
|
|
'North Eastham', |
10696
|
|
|
|
|
|
|
'North Edwards', |
10697
|
|
|
|
|
|
|
'North El Monte', |
10698
|
|
|
|
|
|
|
'North English', |
10699
|
|
|
|
|
|
|
'North Enid', |
10700
|
|
|
|
|
|
|
'North Escobares', |
10701
|
|
|
|
|
|
|
'North Fair Oaks', |
10702
|
|
|
|
|
|
|
'North Fairfield', |
10703
|
|
|
|
|
|
|
'North Falmouth', |
10704
|
|
|
|
|
|
|
'North Fond du Lac', |
10705
|
|
|
|
|
|
|
'North Fork Village', |
10706
|
|
|
|
|
|
|
'North Fort Myers', |
10707
|
|
|
|
|
|
|
'North Freedom', |
10708
|
|
|
|
|
|
|
'North Granby', |
10709
|
|
|
|
|
|
|
'North Great River', |
10710
|
|
|
|
|
|
|
'North Grosvenor Dale', |
10711
|
|
|
|
|
|
|
'North Haledon', |
10712
|
|
|
|
|
|
|
'North Hampton', |
10713
|
|
|
|
|
|
|
'North Hartsville', |
10714
|
|
|
|
|
|
|
'North Haven', |
10715
|
|
|
|
|
|
|
'North Henderson', |
10716
|
|
|
|
|
|
|
'North High Shoals', |
10717
|
|
|
|
|
|
|
'North Highlands', |
10718
|
|
|
|
|
|
|
'North Hills', |
10719
|
|
|
|
|
|
|
'North Hodge', |
10720
|
|
|
|
|
|
|
'North Hornell', |
10721
|
|
|
|
|
|
|
'North Hudson', |
10722
|
|
|
|
|
|
|
'North Irwin', |
10723
|
|
|
|
|
|
|
'North Johns', |
10724
|
|
|
|
|
|
|
'North Judson', |
10725
|
|
|
|
|
|
|
'North Kansas City', |
10726
|
|
|
|
|
|
|
'North Kensington', |
10727
|
|
|
|
|
|
|
'North Key Largo', |
10728
|
|
|
|
|
|
|
'North Kingsville', |
10729
|
|
|
|
|
|
|
'North Lakeport', |
10730
|
|
|
|
|
|
|
'North Lakeville', |
10731
|
|
|
|
|
|
|
'North Las Vegas', |
10732
|
|
|
|
|
|
|
'North Lauderdale', |
10733
|
|
|
|
|
|
|
'North Laurel', |
10734
|
|
|
|
|
|
|
'North Lewisburg', |
10735
|
|
|
|
|
|
|
'North Liberty', |
10736
|
|
|
|
|
|
|
'North Lilbourn', |
10737
|
|
|
|
|
|
|
'North Lindenhurst', |
10738
|
|
|
|
|
|
|
'North Little Rock', |
10739
|
|
|
|
|
|
|
'North Logan', |
10740
|
|
|
|
|
|
|
'North Loup', |
10741
|
|
|
|
|
|
|
'North Lynbrook', |
10742
|
|
|
|
|
|
|
'North Madison', |
10743
|
|
|
|
|
|
|
'North Manchester', |
10744
|
|
|
|
|
|
|
'North Mankato', |
10745
|
|
|
|
|
|
|
'North Marysville', |
10746
|
|
|
|
|
|
|
'North Massapequa', |
10747
|
|
|
|
|
|
|
'North Merrick', |
10748
|
|
|
|
|
|
|
'North Miami', |
10749
|
|
|
|
|
|
|
'North Miami Beach', |
10750
|
|
|
|
|
|
|
'North Middletown', |
10751
|
|
|
|
|
|
|
'North Muskegon', |
10752
|
|
|
|
|
|
|
'North Myrtle Beach', |
10753
|
|
|
|
|
|
|
'North New Hyde Park', |
10754
|
|
|
|
|
|
|
'North Newton', |
10755
|
|
|
|
|
|
|
'North Oaks', |
10756
|
|
|
|
|
|
|
'North Ogden', |
10757
|
|
|
|
|
|
|
'North Olmsted', |
10758
|
|
|
|
|
|
|
'North Omak', |
10759
|
|
|
|
|
|
|
'North Palm Beach', |
10760
|
|
|
|
|
|
|
'North Patchogue', |
10761
|
|
|
|
|
|
|
'North Pearsall', |
10762
|
|
|
|
|
|
|
'North Pekin', |
10763
|
|
|
|
|
|
|
'North Pembroke', |
10764
|
|
|
|
|
|
|
'North Perry', |
10765
|
|
|
|
|
|
|
'North Philipsburg', |
10766
|
|
|
|
|
|
|
'North Plainfield', |
10767
|
|
|
|
|
|
|
'North Plains', |
10768
|
|
|
|
|
|
|
'North Platte', |
10769
|
|
|
|
|
|
|
'North Plymouth', |
10770
|
|
|
|
|
|
|
'North Pole', |
10771
|
|
|
|
|
|
|
'North Port', |
10772
|
|
|
|
|
|
|
'North Potomac', |
10773
|
|
|
|
|
|
|
'North Powder', |
10774
|
|
|
|
|
|
|
'North Prairie', |
10775
|
|
|
|
|
|
|
'North Providence', |
10776
|
|
|
|
|
|
|
'North Randall', |
10777
|
|
|
|
|
|
|
'North Redington Beach', |
10778
|
|
|
|
|
|
|
'North Richland Hills', |
10779
|
|
|
|
|
|
|
'North Ridgeville', |
10780
|
|
|
|
|
|
|
'North River', |
10781
|
|
|
|
|
|
|
'North River Shores', |
10782
|
|
|
|
|
|
|
'North Riverside', |
10783
|
|
|
|
|
|
|
'North Robinson', |
10784
|
|
|
|
|
|
|
'North Rock Springs', |
10785
|
|
|
|
|
|
|
'North Royalton', |
10786
|
|
|
|
|
|
|
'North Salem', |
10787
|
|
|
|
|
|
|
'North Salt Lake', |
10788
|
|
|
|
|
|
|
'North San Pedro', |
10789
|
|
|
|
|
|
|
'North Sarasota', |
10790
|
|
|
|
|
|
|
'North Scituate', |
10791
|
|
|
|
|
|
|
'North Sea', |
10792
|
|
|
|
|
|
|
'North Seekonk', |
10793
|
|
|
|
|
|
|
'North Shore', |
10794
|
|
|
|
|
|
|
'North Sioux City', |
10795
|
|
|
|
|
|
|
'North Snyderville Basin', |
10796
|
|
|
|
|
|
|
'North Spearfish', |
10797
|
|
|
|
|
|
|
'North Springfield', |
10798
|
|
|
|
|
|
|
'North St. Paul', |
10799
|
|
|
|
|
|
|
'North Stanwood', |
10800
|
|
|
|
|
|
|
'North Star', |
10801
|
|
|
|
|
|
|
'North Sultan', |
10802
|
|
|
|
|
|
|
'North Syracuse', |
10803
|
|
|
|
|
|
|
'North Terre Haute', |
10804
|
|
|
|
|
|
|
'North Tonawanda', |
10805
|
|
|
|
|
|
|
'North Topsail Beach', |
10806
|
|
|
|
|
|
|
'North Troy', |
10807
|
|
|
|
|
|
|
'North Tunica', |
10808
|
|
|
|
|
|
|
'North Utica', |
10809
|
|
|
|
|
|
|
'North Vacherie', |
10810
|
|
|
|
|
|
|
'North Valley', |
10811
|
|
|
|
|
|
|
'North Valley Stream', |
10812
|
|
|
|
|
|
|
'North Vandergrift-Pleasant View', |
10813
|
|
|
|
|
|
|
'North Vernon', |
10814
|
|
|
|
|
|
|
'North Versailles', |
10815
|
|
|
|
|
|
|
'North Wales', |
10816
|
|
|
|
|
|
|
'North Wantagh', |
10817
|
|
|
|
|
|
|
'North Wardell', |
10818
|
|
|
|
|
|
|
'North Washington', |
10819
|
|
|
|
|
|
|
'North Webster', |
10820
|
|
|
|
|
|
|
'North Weeki Wachee', |
10821
|
|
|
|
|
|
|
'North Westminster', |
10822
|
|
|
|
|
|
|
'North Westport', |
10823
|
|
|
|
|
|
|
'North Wildwood', |
10824
|
|
|
|
|
|
|
'North Wilkesboro', |
10825
|
|
|
|
|
|
|
'North Windham', |
10826
|
|
|
|
|
|
|
'North Woodbridge', |
10827
|
|
|
|
|
|
|
'North Yelm', |
10828
|
|
|
|
|
|
|
'North York', |
10829
|
|
|
|
|
|
|
'North Zanesville', |
10830
|
|
|
|
|
|
|
'Northampton', |
10831
|
|
|
|
|
|
|
'Northboro', |
10832
|
|
|
|
|
|
|
'Northborough', |
10833
|
|
|
|
|
|
|
'Northbrook', |
10834
|
|
|
|
|
|
|
'Northcliff', |
10835
|
|
|
|
|
|
|
'Northeast Ithaca', |
10836
|
|
|
|
|
|
|
'Northern Cambria', |
10837
|
|
|
|
|
|
|
'Northfield', |
10838
|
|
|
|
|
|
|
'Northfork', |
10839
|
|
|
|
|
|
|
'Northgate', |
10840
|
|
|
|
|
|
|
'Northglenn', |
10841
|
|
|
|
|
|
|
'Northlake', |
10842
|
|
|
|
|
|
|
'Northlakes', |
10843
|
|
|
|
|
|
|
'Northmoor', |
10844
|
|
|
|
|
|
|
'Northome', |
10845
|
|
|
|
|
|
|
'Northport', |
10846
|
|
|
|
|
|
|
'Northridge', |
10847
|
|
|
|
|
|
|
'Northrop', |
10848
|
|
|
|
|
|
|
'Northumberland', |
10849
|
|
|
|
|
|
|
'Northvale', |
10850
|
|
|
|
|
|
|
'Northview', |
10851
|
|
|
|
|
|
|
'Northville', |
10852
|
|
|
|
|
|
|
'Northway', |
10853
|
|
|
|
|
|
|
'Northway Junction', |
10854
|
|
|
|
|
|
|
'Northway Village', |
10855
|
|
|
|
|
|
|
'Northwest', |
10856
|
|
|
|
|
|
|
'Northwest Harbor', |
10857
|
|
|
|
|
|
|
'Northwest Harborcreek', |
10858
|
|
|
|
|
|
|
'Northwest Harwich', |
10859
|
|
|
|
|
|
|
'Northwest Harwinton', |
10860
|
|
|
|
|
|
|
'Northwest Ithaca', |
10861
|
|
|
|
|
|
|
'Northwest Snohomish', |
10862
|
|
|
|
|
|
|
'Northwood', |
10863
|
|
|
|
|
|
|
'Northwoods', |
10864
|
|
|
|
|
|
|
'Norton', |
10865
|
|
|
|
|
|
|
'Norton Center', |
10866
|
|
|
|
|
|
|
'Norton Shores', |
10867
|
|
|
|
|
|
|
'Nortonville', |
10868
|
|
|
|
|
|
|
'Norwalk', |
10869
|
|
|
|
|
|
|
'Norway', |
10870
|
|
|
|
|
|
|
'Norwich', |
10871
|
|
|
|
|
|
|
'Norwood', |
10872
|
|
|
|
|
|
|
'Norwood Court', |
10873
|
|
|
|
|
|
|
'Norwood Young America', |
10874
|
|
|
|
|
|
|
'Notasulga', |
10875
|
|
|
|
|
|
|
'Notchietown', |
10876
|
|
|
|
|
|
|
'Notus', |
10877
|
|
|
|
|
|
|
'Novato', |
10878
|
|
|
|
|
|
|
'Novelty', |
10879
|
|
|
|
|
|
|
'Novi', |
10880
|
|
|
|
|
|
|
'Novice', |
10881
|
|
|
|
|
|
|
'Novinger', |
10882
|
|
|
|
|
|
|
'Nowata', |
10883
|
|
|
|
|
|
|
'Noxapater', |
10884
|
|
|
|
|
|
|
'Noxon', |
10885
|
|
|
|
|
|
|
'Noyack', |
10886
|
|
|
|
|
|
|
'Nuangola', |
10887
|
|
|
|
|
|
|
'Nucla', |
10888
|
|
|
|
|
|
|
'Nuevo', |
10889
|
|
|
|
|
|
|
'Nuiqsut', |
10890
|
|
|
|
|
|
|
'Nulato', |
10891
|
|
|
|
|
|
|
'Numa', |
10892
|
|
|
|
|
|
|
'Numidia', |
10893
|
|
|
|
|
|
|
'Nunapitchuk', |
10894
|
|
|
|
|
|
|
'Nunda', |
10895
|
|
|
|
|
|
|
'Nunez', |
10896
|
|
|
|
|
|
|
'Nunn', |
10897
|
|
|
|
|
|
|
'Nuremberg', |
10898
|
|
|
|
|
|
|
'Nurillo', |
10899
|
|
|
|
|
|
|
'Nutley', |
10900
|
|
|
|
|
|
|
'Nutter Fort', |
10901
|
|
|
|
|
|
|
'Nyack', |
10902
|
|
|
|
|
|
|
'Nyssa', |
10903
|
|
|
|
|
|
|
'O\'Brien', |
10904
|
|
|
|
|
|
|
'O\'Donnell', |
10905
|
|
|
|
|
|
|
'O\'Fallon', |
10906
|
|
|
|
|
|
|
'O\'Hara Township', |
10907
|
|
|
|
|
|
|
'O\'Kean', |
10908
|
|
|
|
|
|
|
'O\'Neill', |
10909
|
|
|
|
|
|
|
'Oacoma', |
10910
|
|
|
|
|
|
|
'Oak', |
10911
|
|
|
|
|
|
|
'Oak Brook', |
10912
|
|
|
|
|
|
|
'Oak City', |
10913
|
|
|
|
|
|
|
'Oak Creek', |
10914
|
|
|
|
|
|
|
'Oak Forest', |
10915
|
|
|
|
|
|
|
'Oak Grove', |
10916
|
|
|
|
|
|
|
'Oak Grove Heights', |
10917
|
|
|
|
|
|
|
'Oak Harbor', |
10918
|
|
|
|
|
|
|
'Oak Hill', |
10919
|
|
|
|
|
|
|
'Oak Hills', |
10920
|
|
|
|
|
|
|
'Oak Hills Place', |
10921
|
|
|
|
|
|
|
'Oak Island', |
10922
|
|
|
|
|
|
|
'Oak Lawn', |
10923
|
|
|
|
|
|
|
'Oak Leaf', |
10924
|
|
|
|
|
|
|
'Oak Level', |
10925
|
|
|
|
|
|
|
'Oak Park', |
10926
|
|
|
|
|
|
|
'Oak Park Heights', |
10927
|
|
|
|
|
|
|
'Oak Point', |
10928
|
|
|
|
|
|
|
'Oak Ridge', |
10929
|
|
|
|
|
|
|
'Oak Ridge North', |
10930
|
|
|
|
|
|
|
'Oak Trail Shores', |
10931
|
|
|
|
|
|
|
'Oak Valley', |
10932
|
|
|
|
|
|
|
'Oak View', |
10933
|
|
|
|
|
|
|
'Oakboro', |
10934
|
|
|
|
|
|
|
'Oakbrook', |
10935
|
|
|
|
|
|
|
'Oakbrook Terrace', |
10936
|
|
|
|
|
|
|
'Oakdale', |
10937
|
|
|
|
|
|
|
'Oakes', |
10938
|
|
|
|
|
|
|
'Oakesdale', |
10939
|
|
|
|
|
|
|
'Oakfield', |
10940
|
|
|
|
|
|
|
'Oakford', |
10941
|
|
|
|
|
|
|
'Oakhaven', |
10942
|
|
|
|
|
|
|
'Oakhurst', |
10943
|
|
|
|
|
|
|
'Oakland', |
10944
|
|
|
|
|
|
|
'Oakland Acres', |
10945
|
|
|
|
|
|
|
'Oakland City', |
10946
|
|
|
|
|
|
|
'Oakland Park', |
10947
|
|
|
|
|
|
|
'Oaklawn-Sunview', |
10948
|
|
|
|
|
|
|
'Oakley', |
10949
|
|
|
|
|
|
|
'Oaklyn', |
10950
|
|
|
|
|
|
|
'Oakman', |
10951
|
|
|
|
|
|
|
'Oakmont', |
10952
|
|
|
|
|
|
|
'Oakport', |
10953
|
|
|
|
|
|
|
'Oakridge', |
10954
|
|
|
|
|
|
|
'Oaks', |
10955
|
|
|
|
|
|
|
'Oakton', |
10956
|
|
|
|
|
|
|
'Oaktown', |
10957
|
|
|
|
|
|
|
'Oakvale', |
10958
|
|
|
|
|
|
|
'Oakview', |
10959
|
|
|
|
|
|
|
'Oakville', |
10960
|
|
|
|
|
|
|
'Oakwood', |
10961
|
|
|
|
|
|
|
'Oakwood Hills', |
10962
|
|
|
|
|
|
|
'Oakwood Park', |
10963
|
|
|
|
|
|
|
'Oatfield', |
10964
|
|
|
|
|
|
|
'Oberlin', |
10965
|
|
|
|
|
|
|
'Oberon', |
10966
|
|
|
|
|
|
|
'Obert', |
10967
|
|
|
|
|
|
|
'Obetz', |
10968
|
|
|
|
|
|
|
'Obion', |
10969
|
|
|
|
|
|
|
'Oblong', |
10970
|
|
|
|
|
|
|
'Ocala', |
10971
|
|
|
|
|
|
|
'Occidental', |
10972
|
|
|
|
|
|
|
'Occoquan', |
10973
|
|
|
|
|
|
|
'Ocean Acres', |
10974
|
|
|
|
|
|
|
'Ocean Beach', |
10975
|
|
|
|
|
|
|
'Ocean Bluff-Brant Rock', |
10976
|
|
|
|
|
|
|
'Ocean Breeze Park', |
10977
|
|
|
|
|
|
|
'Ocean City', |
10978
|
|
|
|
|
|
|
'Ocean Gate', |
10979
|
|
|
|
|
|
|
'Ocean Grove', |
10980
|
|
|
|
|
|
|
'Ocean Isle Beach', |
10981
|
|
|
|
|
|
|
'Ocean Park', |
10982
|
|
|
|
|
|
|
'Ocean Pines', |
10983
|
|
|
|
|
|
|
'Ocean Ridge', |
10984
|
|
|
|
|
|
|
'Ocean Shores', |
10985
|
|
|
|
|
|
|
'Ocean Springs', |
10986
|
|
|
|
|
|
|
'Ocean View', |
10987
|
|
|
|
|
|
|
'Oceana', |
10988
|
|
|
|
|
|
|
'Oceano', |
10989
|
|
|
|
|
|
|
'Oceanport', |
10990
|
|
|
|
|
|
|
'Oceanside', |
10991
|
|
|
|
|
|
|
'Ochelata', |
10992
|
|
|
|
|
|
|
'Ocheyedan', |
10993
|
|
|
|
|
|
|
'Ochlocknee', |
10994
|
|
|
|
|
|
|
'Ocilla', |
10995
|
|
|
|
|
|
|
'Ocoee', |
10996
|
|
|
|
|
|
|
'Oconee', |
10997
|
|
|
|
|
|
|
'Oconomowoc', |
10998
|
|
|
|
|
|
|
'Oconomowoc Lake', |
10999
|
|
|
|
|
|
|
'Oconto', |
11000
|
|
|
|
|
|
|
'Oconto Falls', |
11001
|
|
|
|
|
|
|
'Ocotillo', |
11002
|
|
|
|
|
|
|
'Ocracoke', |
11003
|
|
|
|
|
|
|
'Octa', |
11004
|
|
|
|
|
|
|
'Octavia', |
11005
|
|
|
|
|
|
|
'Odanah', |
11006
|
|
|
|
|
|
|
'Odebolt', |
11007
|
|
|
|
|
|
|
'Odell', |
11008
|
|
|
|
|
|
|
'Odem', |
11009
|
|
|
|
|
|
|
'Oden', |
11010
|
|
|
|
|
|
|
'Odenton', |
11011
|
|
|
|
|
|
|
'Odenville', |
11012
|
|
|
|
|
|
|
'Odessa', |
11013
|
|
|
|
|
|
|
'Odin', |
11014
|
|
|
|
|
|
|
'Odon', |
11015
|
|
|
|
|
|
|
'Odum', |
11016
|
|
|
|
|
|
|
'Oelrichs', |
11017
|
|
|
|
|
|
|
'Oelwein', |
11018
|
|
|
|
|
|
|
'Offerle', |
11019
|
|
|
|
|
|
|
'Offerman', |
11020
|
|
|
|
|
|
|
'Offutt AFB', |
11021
|
|
|
|
|
|
|
'Ogallala', |
11022
|
|
|
|
|
|
|
'Ogden', |
11023
|
|
|
|
|
|
|
'Ogden Dunes', |
11024
|
|
|
|
|
|
|
'Ogdensburg', |
11025
|
|
|
|
|
|
|
'Ogema', |
11026
|
|
|
|
|
|
|
'Ogilvie', |
11027
|
|
|
|
|
|
|
'Oglala', |
11028
|
|
|
|
|
|
|
'Oglesby', |
11029
|
|
|
|
|
|
|
'Oglethorpe', |
11030
|
|
|
|
|
|
|
'Ohatchee', |
11031
|
|
|
|
|
|
|
'Ohio', |
11032
|
|
|
|
|
|
|
'Ohio City', |
11033
|
|
|
|
|
|
|
'Ohiopyle', |
11034
|
|
|
|
|
|
|
'Ohioville', |
11035
|
|
|
|
|
|
|
'Ohiowa', |
11036
|
|
|
|
|
|
|
'Ohlman', |
11037
|
|
|
|
|
|
|
'Oil City', |
11038
|
|
|
|
|
|
|
'Oil Trough', |
11039
|
|
|
|
|
|
|
'Oildale', |
11040
|
|
|
|
|
|
|
'Oilton', |
11041
|
|
|
|
|
|
|
'Ojai', |
11042
|
|
|
|
|
|
|
'Ojo Amarillo', |
11043
|
|
|
|
|
|
|
'Ojus', |
11044
|
|
|
|
|
|
|
'Okabena', |
11045
|
|
|
|
|
|
|
'Okahumpka', |
11046
|
|
|
|
|
|
|
'Okanogan', |
11047
|
|
|
|
|
|
|
'Okarche', |
11048
|
|
|
|
|
|
|
'Okaton', |
11049
|
|
|
|
|
|
|
'Okauchee Lake', |
11050
|
|
|
|
|
|
|
'Okawville', |
11051
|
|
|
|
|
|
|
'Okay', |
11052
|
|
|
|
|
|
|
'Okeechobee', |
11053
|
|
|
|
|
|
|
'Okeene', |
11054
|
|
|
|
|
|
|
'Okemah', |
11055
|
|
|
|
|
|
|
'Okemos', |
11056
|
|
|
|
|
|
|
'Oketo', |
11057
|
|
|
|
|
|
|
'Oklahoma', |
11058
|
|
|
|
|
|
|
'Oklahoma City', |
11059
|
|
|
|
|
|
|
'Oklee', |
11060
|
|
|
|
|
|
|
'Okmulgee', |
11061
|
|
|
|
|
|
|
'Okoboji', |
11062
|
|
|
|
|
|
|
'Okolona', |
11063
|
|
|
|
|
|
|
'Oktaha', |
11064
|
|
|
|
|
|
|
'Ola', |
11065
|
|
|
|
|
|
|
'Olancha', |
11066
|
|
|
|
|
|
|
'Olanta', |
11067
|
|
|
|
|
|
|
'Olar', |
11068
|
|
|
|
|
|
|
'Olathe', |
11069
|
|
|
|
|
|
|
'Olcott', |
11070
|
|
|
|
|
|
|
'Old Agency', |
11071
|
|
|
|
|
|
|
'Old Appleton', |
11072
|
|
|
|
|
|
|
'Old Bennington', |
11073
|
|
|
|
|
|
|
'Old Bethpage', |
11074
|
|
|
|
|
|
|
'Old Bridge', |
11075
|
|
|
|
|
|
|
'Old Brookville', |
11076
|
|
|
|
|
|
|
'Old Brownsboro Place', |
11077
|
|
|
|
|
|
|
'Old Eucha', |
11078
|
|
|
|
|
|
|
'Old Field', |
11079
|
|
|
|
|
|
|
'Old Forge', |
11080
|
|
|
|
|
|
|
'Old Fort', |
11081
|
|
|
|
|
|
|
'Old Harbor', |
11082
|
|
|
|
|
|
|
'Old Jefferson', |
11083
|
|
|
|
|
|
|
'Old Mill Creek', |
11084
|
|
|
|
|
|
|
'Old Monroe', |
11085
|
|
|
|
|
|
|
'Old Mystic', |
11086
|
|
|
|
|
|
|
'Old Orchard', |
11087
|
|
|
|
|
|
|
'Old Orchard Beach', |
11088
|
|
|
|
|
|
|
'Old Ripley', |
11089
|
|
|
|
|
|
|
'Old River-Winfree', |
11090
|
|
|
|
|
|
|
'Old Saybrook Center', |
11091
|
|
|
|
|
|
|
'Old Shawneetown', |
11092
|
|
|
|
|
|
|
'Old Tappan', |
11093
|
|
|
|
|
|
|
'Old Town', |
11094
|
|
|
|
|
|
|
'Old Washington', |
11095
|
|
|
|
|
|
|
'Old Westbury', |
11096
|
|
|
|
|
|
|
'Olde West Chester', |
11097
|
|
|
|
|
|
|
'Oldenburg', |
11098
|
|
|
|
|
|
|
'Oldham', |
11099
|
|
|
|
|
|
|
'Olds', |
11100
|
|
|
|
|
|
|
'Oldsmar', |
11101
|
|
|
|
|
|
|
'Oldtown', |
11102
|
|
|
|
|
|
|
'Olean', |
11103
|
|
|
|
|
|
|
'Olga', |
11104
|
|
|
|
|
|
|
'Olimpo', |
11105
|
|
|
|
|
|
|
'Olin', |
11106
|
|
|
|
|
|
|
'Olivarez', |
11107
|
|
|
|
|
|
|
'Olive Branch', |
11108
|
|
|
|
|
|
|
'Olive Hill', |
11109
|
|
|
|
|
|
|
'Olivehurst', |
11110
|
|
|
|
|
|
|
'Oliver', |
11111
|
|
|
|
|
|
|
'Oliver Springs', |
11112
|
|
|
|
|
|
|
'Olivet', |
11113
|
|
|
|
|
|
|
'Olivette', |
11114
|
|
|
|
|
|
|
'Olivia', |
11115
|
|
|
|
|
|
|
'Oljato-Monument Valley', |
11116
|
|
|
|
|
|
|
'Olla', |
11117
|
|
|
|
|
|
|
'Ollie', |
11118
|
|
|
|
|
|
|
'Olmito', |
11119
|
|
|
|
|
|
|
'Olmitz', |
11120
|
|
|
|
|
|
|
'Olmos Park', |
11121
|
|
|
|
|
|
|
'Olmsted', |
11122
|
|
|
|
|
|
|
'Olmsted Falls', |
11123
|
|
|
|
|
|
|
'Olney', |
11124
|
|
|
|
|
|
|
'Olney Springs', |
11125
|
|
|
|
|
|
|
'Olpe', |
11126
|
|
|
|
|
|
|
'Olsburg', |
11127
|
|
|
|
|
|
|
'Olton', |
11128
|
|
|
|
|
|
|
'Olustee', |
11129
|
|
|
|
|
|
|
'Olympia', |
11130
|
|
|
|
|
|
|
'Olympia Fields', |
11131
|
|
|
|
|
|
|
'Olympia Heights', |
11132
|
|
|
|
|
|
|
'Olympian Village', |
11133
|
|
|
|
|
|
|
'Olyphant', |
11134
|
|
|
|
|
|
|
'Omaha', |
11135
|
|
|
|
|
|
|
'Omak', |
11136
|
|
|
|
|
|
|
'Omao', |
11137
|
|
|
|
|
|
|
'Omega', |
11138
|
|
|
|
|
|
|
'Omer', |
11139
|
|
|
|
|
|
|
'Omro', |
11140
|
|
|
|
|
|
|
'Onaga', |
11141
|
|
|
|
|
|
|
'Onaka', |
11142
|
|
|
|
|
|
|
'Onalaska', |
11143
|
|
|
|
|
|
|
'Onamia', |
11144
|
|
|
|
|
|
|
'Onancock', |
11145
|
|
|
|
|
|
|
'Onarga', |
11146
|
|
|
|
|
|
|
'Onawa', |
11147
|
|
|
|
|
|
|
'Onaway', |
11148
|
|
|
|
|
|
|
'Oneida', |
11149
|
|
|
|
|
|
|
'Oneida Castle', |
11150
|
|
|
|
|
|
|
'Onekama', |
11151
|
|
|
|
|
|
|
'Oneonta', |
11152
|
|
|
|
|
|
|
'Ong', |
11153
|
|
|
|
|
|
|
'Onida', |
11154
|
|
|
|
|
|
|
'Onion Creek', |
11155
|
|
|
|
|
|
|
'Onley', |
11156
|
|
|
|
|
|
|
'Onset', |
11157
|
|
|
|
|
|
|
'Onslow', |
11158
|
|
|
|
|
|
|
'Onsted', |
11159
|
|
|
|
|
|
|
'Ontario', |
11160
|
|
|
|
|
|
|
'Ontonagon', |
11161
|
|
|
|
|
|
|
'Onward', |
11162
|
|
|
|
|
|
|
'Onycha', |
11163
|
|
|
|
|
|
|
'Onyx', |
11164
|
|
|
|
|
|
|
'Oolitic', |
11165
|
|
|
|
|
|
|
'Oologah', |
11166
|
|
|
|
|
|
|
'Ooltewah', |
11167
|
|
|
|
|
|
|
'Oostburg', |
11168
|
|
|
|
|
|
|
'Opa-locka', |
11169
|
|
|
|
|
|
|
'Opa-locka North', |
11170
|
|
|
|
|
|
|
'Opal', |
11171
|
|
|
|
|
|
|
'Opal Cliffs', |
11172
|
|
|
|
|
|
|
'Opdyke West', |
11173
|
|
|
|
|
|
|
'Opelika', |
11174
|
|
|
|
|
|
|
'Opelousas', |
11175
|
|
|
|
|
|
|
'Opheim', |
11176
|
|
|
|
|
|
|
'Ophir', |
11177
|
|
|
|
|
|
|
'Opp', |
11178
|
|
|
|
|
|
|
'Oppelo', |
11179
|
|
|
|
|
|
|
'Opportunity', |
11180
|
|
|
|
|
|
|
'Optima', |
11181
|
|
|
|
|
|
|
'Oquawka', |
11182
|
|
|
|
|
|
|
'Oquirrh', |
11183
|
|
|
|
|
|
|
'Oracle', |
11184
|
|
|
|
|
|
|
'Oradell', |
11185
|
|
|
|
|
|
|
'Oran', |
11186
|
|
|
|
|
|
|
'Orange', |
11187
|
|
|
|
|
|
|
'Orange Beach', |
11188
|
|
|
|
|
|
|
'Orange City', |
11189
|
|
|
|
|
|
|
'Orange Cove', |
11190
|
|
|
|
|
|
|
'Orange Grove', |
11191
|
|
|
|
|
|
|
'Orange Lake', |
11192
|
|
|
|
|
|
|
'Orange Park', |
11193
|
|
|
|
|
|
|
'Orangeburg', |
11194
|
|
|
|
|
|
|
'Orangetree', |
11195
|
|
|
|
|
|
|
'Orangevale', |
11196
|
|
|
|
|
|
|
'Orangeville', |
11197
|
|
|
|
|
|
|
'Orbisonia', |
11198
|
|
|
|
|
|
|
'Orchard', |
11199
|
|
|
|
|
|
|
'Orchard City', |
11200
|
|
|
|
|
|
|
'Orchard Grass Hills', |
11201
|
|
|
|
|
|
|
'Orchard Hill', |
11202
|
|
|
|
|
|
|
'Orchard Hills', |
11203
|
|
|
|
|
|
|
'Orchard Homes', |
11204
|
|
|
|
|
|
|
'Orchard Lake Village', |
11205
|
|
|
|
|
|
|
'Orchard Mesa', |
11206
|
|
|
|
|
|
|
'Orchard Park', |
11207
|
|
|
|
|
|
|
'Orchards', |
11208
|
|
|
|
|
|
|
'Orchid', |
11209
|
|
|
|
|
|
|
'Orchidlands Estates', |
11210
|
|
|
|
|
|
|
'Orcutt', |
11211
|
|
|
|
|
|
|
'Ord', |
11212
|
|
|
|
|
|
|
'Orderville', |
11213
|
|
|
|
|
|
|
'Ordway', |
11214
|
|
|
|
|
|
|
'Ore City', |
11215
|
|
|
|
|
|
|
'Oreana', |
11216
|
|
|
|
|
|
|
'Oregon', |
11217
|
|
|
|
|
|
|
'Oregon City', |
11218
|
|
|
|
|
|
|
'Oreland', |
11219
|
|
|
|
|
|
|
'Orem', |
11220
|
|
|
|
|
|
|
'Orestes', |
11221
|
|
|
|
|
|
|
'Orfordville', |
11222
|
|
|
|
|
|
|
'Orient', |
11223
|
|
|
|
|
|
|
'Oriental', |
11224
|
|
|
|
|
|
|
'Orinda', |
11225
|
|
|
|
|
|
|
'Orion', |
11226
|
|
|
|
|
|
|
'Oriska', |
11227
|
|
|
|
|
|
|
'Oriskany', |
11228
|
|
|
|
|
|
|
'Oriskany Falls', |
11229
|
|
|
|
|
|
|
'Orland', |
11230
|
|
|
|
|
|
|
'Orland Hills', |
11231
|
|
|
|
|
|
|
'Orland Park', |
11232
|
|
|
|
|
|
|
'Orlando', |
11233
|
|
|
|
|
|
|
'Orleans', |
11234
|
|
|
|
|
|
|
'Orlinda', |
11235
|
|
|
|
|
|
|
'Orlovista', |
11236
|
|
|
|
|
|
|
'Orme', |
11237
|
|
|
|
|
|
|
'Ormond Beach', |
11238
|
|
|
|
|
|
|
'Ormond-By-The-Sea', |
11239
|
|
|
|
|
|
|
'Ormsby', |
11240
|
|
|
|
|
|
|
'Oro Valley', |
11241
|
|
|
|
|
|
|
'Orocovis', |
11242
|
|
|
|
|
|
|
'Orofino', |
11243
|
|
|
|
|
|
|
'Orono', |
11244
|
|
|
|
|
|
|
'Oronoco', |
11245
|
|
|
|
|
|
|
'Oronogo', |
11246
|
|
|
|
|
|
|
'Orosi', |
11247
|
|
|
|
|
|
|
'Oroville', |
11248
|
|
|
|
|
|
|
'Oroville East', |
11249
|
|
|
|
|
|
|
'Orr', |
11250
|
|
|
|
|
|
|
'Orrick', |
11251
|
|
|
|
|
|
|
'Orrstown', |
11252
|
|
|
|
|
|
|
'Orrtanna', |
11253
|
|
|
|
|
|
|
'Orrum', |
11254
|
|
|
|
|
|
|
'Orrville', |
11255
|
|
|
|
|
|
|
'Orting', |
11256
|
|
|
|
|
|
|
'Ortley', |
11257
|
|
|
|
|
|
|
'Ortonville', |
11258
|
|
|
|
|
|
|
'Orwell', |
11259
|
|
|
|
|
|
|
'Orwigsburg', |
11260
|
|
|
|
|
|
|
'Osage', |
11261
|
|
|
|
|
|
|
'Osage Beach', |
11262
|
|
|
|
|
|
|
'Osage City', |
11263
|
|
|
|
|
|
|
'Osakis', |
11264
|
|
|
|
|
|
|
'Osawatomie', |
11265
|
|
|
|
|
|
|
'Osborn', |
11266
|
|
|
|
|
|
|
'Osborne', |
11267
|
|
|
|
|
|
|
'Osburn', |
11268
|
|
|
|
|
|
|
'Oscarville', |
11269
|
|
|
|
|
|
|
'Osceola', |
11270
|
|
|
|
|
|
|
'Osceola Mills', |
11271
|
|
|
|
|
|
|
'Oscoda', |
11272
|
|
|
|
|
|
|
'Osgood', |
11273
|
|
|
|
|
|
|
'Oshkosh', |
11274
|
|
|
|
|
|
|
'Oskaloosa', |
11275
|
|
|
|
|
|
|
'Oslo', |
11276
|
|
|
|
|
|
|
'Osmond', |
11277
|
|
|
|
|
|
|
'Osnabrock', |
11278
|
|
|
|
|
|
|
'Oso', |
11279
|
|
|
|
|
|
|
'Osprey', |
11280
|
|
|
|
|
|
|
'Osseo', |
11281
|
|
|
|
|
|
|
'Ossian', |
11282
|
|
|
|
|
|
|
'Ossineke', |
11283
|
|
|
|
|
|
|
'Ossining', |
11284
|
|
|
|
|
|
|
'Osterdock', |
11285
|
|
|
|
|
|
|
'Ostrander', |
11286
|
|
|
|
|
|
|
'Oswayo', |
11287
|
|
|
|
|
|
|
'Oswego', |
11288
|
|
|
|
|
|
|
'Osyka', |
11289
|
|
|
|
|
|
|
'Otego', |
11290
|
|
|
|
|
|
|
'Othello', |
11291
|
|
|
|
|
|
|
'Otho', |
11292
|
|
|
|
|
|
|
'Otis', |
11293
|
|
|
|
|
|
|
'Otis Orchards-East Farms', |
11294
|
|
|
|
|
|
|
'Otisville', |
11295
|
|
|
|
|
|
|
'Oto', |
11296
|
|
|
|
|
|
|
'Otoe', |
11297
|
|
|
|
|
|
|
'Otsego', |
11298
|
|
|
|
|
|
|
'Ottawa', |
11299
|
|
|
|
|
|
|
'Ottawa Hills', |
11300
|
|
|
|
|
|
|
'Otter Creek', |
11301
|
|
|
|
|
|
|
'Otter Lake', |
11302
|
|
|
|
|
|
|
'Otterbein', |
11303
|
|
|
|
|
|
|
'Ottertail', |
11304
|
|
|
|
|
|
|
'Otterville', |
11305
|
|
|
|
|
|
|
'Ottosen', |
11306
|
|
|
|
|
|
|
'Ottoville', |
11307
|
|
|
|
|
|
|
'Ottumwa', |
11308
|
|
|
|
|
|
|
'Otway', |
11309
|
|
|
|
|
|
|
'Ouray', |
11310
|
|
|
|
|
|
|
'Outlook', |
11311
|
|
|
|
|
|
|
'Ouzinkie', |
11312
|
|
|
|
|
|
|
'Ovando', |
11313
|
|
|
|
|
|
|
'Overbrook', |
11314
|
|
|
|
|
|
|
'Overland', |
11315
|
|
|
|
|
|
|
'Overland Park', |
11316
|
|
|
|
|
|
|
'Overlea', |
11317
|
|
|
|
|
|
|
'Overly', |
11318
|
|
|
|
|
|
|
'Overton', |
11319
|
|
|
|
|
|
|
'Ovid', |
11320
|
|
|
|
|
|
|
'Oviedo', |
11321
|
|
|
|
|
|
|
'Ovilla', |
11322
|
|
|
|
|
|
|
'Owaneco', |
11323
|
|
|
|
|
|
|
'Owasa', |
11324
|
|
|
|
|
|
|
'Owasso', |
11325
|
|
|
|
|
|
|
'Owatonna', |
11326
|
|
|
|
|
|
|
'Owego', |
11327
|
|
|
|
|
|
|
'Owen', |
11328
|
|
|
|
|
|
|
'Owendale', |
11329
|
|
|
|
|
|
|
'Owens Cross Roads', |
11330
|
|
|
|
|
|
|
'Owensboro', |
11331
|
|
|
|
|
|
|
'Owensville', |
11332
|
|
|
|
|
|
|
'Owenton', |
11333
|
|
|
|
|
|
|
'Owings', |
11334
|
|
|
|
|
|
|
'Owings Mills', |
11335
|
|
|
|
|
|
|
'Owingsville', |
11336
|
|
|
|
|
|
|
'Owl Creek', |
11337
|
|
|
|
|
|
|
'Owl Ranch-Amargosa', |
11338
|
|
|
|
|
|
|
'Owosso', |
11339
|
|
|
|
|
|
|
'Owyhee', |
11340
|
|
|
|
|
|
|
'Oxbow', |
11341
|
|
|
|
|
|
|
'Oxford', |
11342
|
|
|
|
|
|
|
'Oxford Junction', |
11343
|
|
|
|
|
|
|
'Oxnard', |
11344
|
|
|
|
|
|
|
'Oxoboxo River', |
11345
|
|
|
|
|
|
|
'Oxon Hill-Glassmanor', |
11346
|
|
|
|
|
|
|
'Oyehut-Hogans Corner', |
11347
|
|
|
|
|
|
|
'Oyens', |
11348
|
|
|
|
|
|
|
'Oyster Bay', |
11349
|
|
|
|
|
|
|
'Oyster Bay Cove', |
11350
|
|
|
|
|
|
|
'Oyster Creek', |
11351
|
|
|
|
|
|
|
'Ozan', |
11352
|
|
|
|
|
|
|
'Ozark', |
11353
|
|
|
|
|
|
|
'Ozawkie', |
11354
|
|
|
|
|
|
|
'Ozona', |
11355
|
|
|
|
|
|
|
'Paauilo', |
11356
|
|
|
|
|
|
|
'Pablo', |
11357
|
|
|
|
|
|
|
'Pace', |
11358
|
|
|
|
|
|
|
'Pacheco', |
11359
|
|
|
|
|
|
|
'Pachuta', |
11360
|
|
|
|
|
|
|
'Pacific', |
11361
|
|
|
|
|
|
|
'Pacific City', |
11362
|
|
|
|
|
|
|
'Pacific Grove', |
11363
|
|
|
|
|
|
|
'Pacific Junction', |
11364
|
|
|
|
|
|
|
'Pacifica', |
11365
|
|
|
|
|
|
|
'Packwood', |
11366
|
|
|
|
|
|
|
'Pacolet', |
11367
|
|
|
|
|
|
|
'Paddock Lake', |
11368
|
|
|
|
|
|
|
'Paden', |
11369
|
|
|
|
|
|
|
'Paden City', |
11370
|
|
|
|
|
|
|
'Padroni', |
11371
|
|
|
|
|
|
|
'Paducah', |
11372
|
|
|
|
|
|
|
'Page', |
11373
|
|
|
|
|
|
|
'Page Park', |
11374
|
|
|
|
|
|
|
'Pagedale', |
11375
|
|
|
|
|
|
|
'Pageland', |
11376
|
|
|
|
|
|
|
'Pagosa Springs', |
11377
|
|
|
|
|
|
|
'Paguate', |
11378
|
|
|
|
|
|
|
'Pahala', |
11379
|
|
|
|
|
|
|
'Pahoa', |
11380
|
|
|
|
|
|
|
'Pahokee', |
11381
|
|
|
|
|
|
|
'Pahrump', |
11382
|
|
|
|
|
|
|
'Paia', |
11383
|
|
|
|
|
|
|
'Paincourtville', |
11384
|
|
|
|
|
|
|
'Paine Field-Lake Stickney', |
11385
|
|
|
|
|
|
|
'Painesville', |
11386
|
|
|
|
|
|
|
'Paint', |
11387
|
|
|
|
|
|
|
'Paint Rock', |
11388
|
|
|
|
|
|
|
'Painted Post', |
11389
|
|
|
|
|
|
|
'Painter', |
11390
|
|
|
|
|
|
|
'Paintsville', |
11391
|
|
|
|
|
|
|
'Paisley', |
11392
|
|
|
|
|
|
|
'Pajaro', |
11393
|
|
|
|
|
|
|
'Pajonal', |
11394
|
|
|
|
|
|
|
'Pakala Village', |
11395
|
|
|
|
|
|
|
'Palacios', |
11396
|
|
|
|
|
|
|
'Palatine', |
11397
|
|
|
|
|
|
|
'Palatine Bridge', |
11398
|
|
|
|
|
|
|
'Palatka', |
11399
|
|
|
|
|
|
|
'Palco', |
11400
|
|
|
|
|
|
|
'Palenville', |
11401
|
|
|
|
|
|
|
'Palermo', |
11402
|
|
|
|
|
|
|
'Palestine', |
11403
|
|
|
|
|
|
|
'Palisade', |
11404
|
|
|
|
|
|
|
'Palisades', |
11405
|
|
|
|
|
|
|
'Palisades Park', |
11406
|
|
|
|
|
|
|
'Palm Aire', |
11407
|
|
|
|
|
|
|
'Palm Bay', |
11408
|
|
|
|
|
|
|
'Palm Beach', |
11409
|
|
|
|
|
|
|
'Palm Beach Gardens', |
11410
|
|
|
|
|
|
|
'Palm Beach Shores', |
11411
|
|
|
|
|
|
|
'Palm City', |
11412
|
|
|
|
|
|
|
'Palm Coast', |
11413
|
|
|
|
|
|
|
'Palm Desert', |
11414
|
|
|
|
|
|
|
'Palm Harbor', |
11415
|
|
|
|
|
|
|
'Palm River-Clair Mel', |
11416
|
|
|
|
|
|
|
'Palm Shores', |
11417
|
|
|
|
|
|
|
'Palm Springs', |
11418
|
|
|
|
|
|
|
'Palm Springs North', |
11419
|
|
|
|
|
|
|
'Palm Valley', |
11420
|
|
|
|
|
|
|
'Palmarejo', |
11421
|
|
|
|
|
|
|
'Palmas', |
11422
|
|
|
|
|
|
|
'Palmdale', |
11423
|
|
|
|
|
|
|
'Palmer', |
11424
|
|
|
|
|
|
|
'Palmer Heights', |
11425
|
|
|
|
|
|
|
'Palmer Lake', |
11426
|
|
|
|
|
|
|
'Palmerton', |
11427
|
|
|
|
|
|
|
'Palmetto', |
11428
|
|
|
|
|
|
|
'Palmetto Estates', |
11429
|
|
|
|
|
|
|
'Palmhurst', |
11430
|
|
|
|
|
|
|
'Palmona Park', |
11431
|
|
|
|
|
|
|
'Palmview', |
11432
|
|
|
|
|
|
|
'Palmview South', |
11433
|
|
|
|
|
|
|
'Palmyra', |
11434
|
|
|
|
|
|
|
'Palo', |
11435
|
|
|
|
|
|
|
'Palo Alto', |
11436
|
|
|
|
|
|
|
'Palo Cedro', |
11437
|
|
|
|
|
|
|
'Palo Seco', |
11438
|
|
|
|
|
|
|
'Palo Verde', |
11439
|
|
|
|
|
|
|
'Palomas', |
11440
|
|
|
|
|
|
|
'Palos Heights', |
11441
|
|
|
|
|
|
|
'Palos Hills', |
11442
|
|
|
|
|
|
|
'Palos Park', |
11443
|
|
|
|
|
|
|
'Palos Verdes Estates', |
11444
|
|
|
|
|
|
|
'Palouse', |
11445
|
|
|
|
|
|
|
'Pampa', |
11446
|
|
|
|
|
|
|
'Pamplico', |
11447
|
|
|
|
|
|
|
'Pamplin City', |
11448
|
|
|
|
|
|
|
'Pana', |
11449
|
|
|
|
|
|
|
'Panama', |
11450
|
|
|
|
|
|
|
'Panama City', |
11451
|
|
|
|
|
|
|
'Panama City Beach', |
11452
|
|
|
|
|
|
|
'Pandora', |
11453
|
|
|
|
|
|
|
'Pangburn', |
11454
|
|
|
|
|
|
|
'Panguitch', |
11455
|
|
|
|
|
|
|
'Panhandle', |
11456
|
|
|
|
|
|
|
'Panola', |
11457
|
|
|
|
|
|
|
'Panora', |
11458
|
|
|
|
|
|
|
'Panorama Park', |
11459
|
|
|
|
|
|
|
'Panorama Village', |
11460
|
|
|
|
|
|
|
'Pantego', |
11461
|
|
|
|
|
|
|
'Panthersville', |
11462
|
|
|
|
|
|
|
'Paola', |
11463
|
|
|
|
|
|
|
'Paoli', |
11464
|
|
|
|
|
|
|
'Paonia', |
11465
|
|
|
|
|
|
|
'Papaikou', |
11466
|
|
|
|
|
|
|
'Papillion', |
11467
|
|
|
|
|
|
|
'Papineau', |
11468
|
|
|
|
|
|
|
'Parachute', |
11469
|
|
|
|
|
|
|
'Paradis', |
11470
|
|
|
|
|
|
|
'Paradise', |
11471
|
|
|
|
|
|
|
'Paradise Heights', |
11472
|
|
|
|
|
|
|
'Paradise Hill', |
11473
|
|
|
|
|
|
|
'Paradise Valley', |
11474
|
|
|
|
|
|
|
'Paragon', |
11475
|
|
|
|
|
|
|
'Paragonah', |
11476
|
|
|
|
|
|
|
'Paragould', |
11477
|
|
|
|
|
|
|
'Paraje', |
11478
|
|
|
|
|
|
|
'Paramount', |
11479
|
|
|
|
|
|
|
'Paramount-Long Meadow', |
11480
|
|
|
|
|
|
|
'Paramus', |
11481
|
|
|
|
|
|
|
'Parc', |
11482
|
|
|
|
|
|
|
'Parcelas La Milagrosa', |
11483
|
|
|
|
|
|
|
'Parcelas Nuevas', |
11484
|
|
|
|
|
|
|
'Parcelas Peñuelas', |
11485
|
|
|
|
|
|
|
'Parchment', |
11486
|
|
|
|
|
|
|
'Pardeeville', |
11487
|
|
|
|
|
|
|
'Paris', |
11488
|
|
|
|
|
|
|
'Parish', |
11489
|
|
|
|
|
|
|
'Park', |
11490
|
|
|
|
|
|
|
'Park City', |
11491
|
|
|
|
|
|
|
'Park Falls', |
11492
|
|
|
|
|
|
|
'Park Forest', |
11493
|
|
|
|
|
|
|
'Park Forest Village', |
11494
|
|
|
|
|
|
|
'Park Hill', |
11495
|
|
|
|
|
|
|
'Park Hills', |
11496
|
|
|
|
|
|
|
'Park Lake', |
11497
|
|
|
|
|
|
|
'Park Layne', |
11498
|
|
|
|
|
|
|
'Park Rapids', |
11499
|
|
|
|
|
|
|
'Park Ridge', |
11500
|
|
|
|
|
|
|
'Park River', |
11501
|
|
|
|
|
|
|
'Park View', |
11502
|
|
|
|
|
|
|
'Parkdale', |
11503
|
|
|
|
|
|
|
'Parker', |
11504
|
|
|
|
|
|
|
'Parker City', |
11505
|
|
|
|
|
|
|
'Parker School', |
11506
|
|
|
|
|
|
|
'Parker Strip', |
11507
|
|
|
|
|
|
|
'Parkers Crossroads', |
11508
|
|
|
|
|
|
|
'Parkers Prairie', |
11509
|
|
|
|
|
|
|
'Parkers-Iron Springs', |
11510
|
|
|
|
|
|
|
'Parkersburg', |
11511
|
|
|
|
|
|
|
'Parkerville', |
11512
|
|
|
|
|
|
|
'Parkesburg', |
11513
|
|
|
|
|
|
|
'Parkin', |
11514
|
|
|
|
|
|
|
'Parkland', |
11515
|
|
|
|
|
|
|
'Parkline', |
11516
|
|
|
|
|
|
|
'Parkman', |
11517
|
|
|
|
|
|
|
'Parks', |
11518
|
|
|
|
|
|
|
'Parksdale', |
11519
|
|
|
|
|
|
|
'Parkside', |
11520
|
|
|
|
|
|
|
'Parksley', |
11521
|
|
|
|
|
|
|
'Parkston', |
11522
|
|
|
|
|
|
|
'Parksville', |
11523
|
|
|
|
|
|
|
'Parkton', |
11524
|
|
|
|
|
|
|
'Parkville', |
11525
|
|
|
|
|
|
|
'Parkway', |
11526
|
|
|
|
|
|
|
'Parkway Village', |
11527
|
|
|
|
|
|
|
'Parkway-South Sacramento', |
11528
|
|
|
|
|
|
|
'Parkwood', |
11529
|
|
|
|
|
|
|
'Parlier', |
11530
|
|
|
|
|
|
|
'Parma', |
11531
|
|
|
|
|
|
|
'Parma Heights', |
11532
|
|
|
|
|
|
|
'Parmele', |
11533
|
|
|
|
|
|
|
'Parmelee', |
11534
|
|
|
|
|
|
|
'Parnell', |
11535
|
|
|
|
|
|
|
'Parole', |
11536
|
|
|
|
|
|
|
'Parowan', |
11537
|
|
|
|
|
|
|
'Parral', |
11538
|
|
|
|
|
|
|
'Parris Island', |
11539
|
|
|
|
|
|
|
'Parrish', |
11540
|
|
|
|
|
|
|
'Parrott', |
11541
|
|
|
|
|
|
|
'Parrottsville', |
11542
|
|
|
|
|
|
|
'Parryville', |
11543
|
|
|
|
|
|
|
'Parshall', |
11544
|
|
|
|
|
|
|
'Parsons', |
11545
|
|
|
|
|
|
|
'Partridge', |
11546
|
|
|
|
|
|
|
'Pasadena', |
11547
|
|
|
|
|
|
|
'Pasadena Hills', |
11548
|
|
|
|
|
|
|
'Pasadena Park', |
11549
|
|
|
|
|
|
|
'Pascagoula', |
11550
|
|
|
|
|
|
|
'Pasco', |
11551
|
|
|
|
|
|
|
'Pascoag', |
11552
|
|
|
|
|
|
|
'Pascola', |
11553
|
|
|
|
|
|
|
'Pass Christian', |
11554
|
|
|
|
|
|
|
'Passaic', |
11555
|
|
|
|
|
|
|
'Pastos', |
11556
|
|
|
|
|
|
|
'Patagonia', |
11557
|
|
|
|
|
|
|
'Pataskala', |
11558
|
|
|
|
|
|
|
'Patch Grove', |
11559
|
|
|
|
|
|
|
'Patchogue', |
11560
|
|
|
|
|
|
|
'Pateros', |
11561
|
|
|
|
|
|
|
'Paterson', |
11562
|
|
|
|
|
|
|
'Patillas', |
11563
|
|
|
|
|
|
|
'Patmos', |
11564
|
|
|
|
|
|
|
'Patoka', |
11565
|
|
|
|
|
|
|
'Paton', |
11566
|
|
|
|
|
|
|
'Patrick', |
11567
|
|
|
|
|
|
|
'Patrick Springs', |
11568
|
|
|
|
|
|
|
'Patriot', |
11569
|
|
|
|
|
|
|
'Patterson', |
11570
|
|
|
|
|
|
|
'Patterson Heights', |
11571
|
|
|
|
|
|
|
'Patterson Springs', |
11572
|
|
|
|
|
|
|
'Patterson Township', |
11573
|
|
|
|
|
|
|
'Pattersonville-Rotterdam Junction', |
11574
|
|
|
|
|
|
|
'Pattison', |
11575
|
|
|
|
|
|
|
'Patton', |
11576
|
|
|
|
|
|
|
'Patton Village', |
11577
|
|
|
|
|
|
|
'Pattonsburg', |
11578
|
|
|
|
|
|
|
'Paukaa', |
11579
|
|
|
|
|
|
|
'Paul', |
11580
|
|
|
|
|
|
|
'Paulden', |
11581
|
|
|
|
|
|
|
'Paulding', |
11582
|
|
|
|
|
|
|
'Paullina', |
11583
|
|
|
|
|
|
|
'Pauls Valley', |
11584
|
|
|
|
|
|
|
'Paulsboro', |
11585
|
|
|
|
|
|
|
'Pavillion', |
11586
|
|
|
|
|
|
|
'Pavo', |
11587
|
|
|
|
|
|
|
'Paw Paw', |
11588
|
|
|
|
|
|
|
'Paw Paw Lake', |
11589
|
|
|
|
|
|
|
'Pawcatuck', |
11590
|
|
|
|
|
|
|
'Pawhuska', |
11591
|
|
|
|
|
|
|
'Pawleys Island', |
11592
|
|
|
|
|
|
|
'Pawling', |
11593
|
|
|
|
|
|
|
'Pawnee', |
11594
|
|
|
|
|
|
|
'Pawnee City', |
11595
|
|
|
|
|
|
|
'Pawnee Rock', |
11596
|
|
|
|
|
|
|
'Pawtucket', |
11597
|
|
|
|
|
|
|
'Pax', |
11598
|
|
|
|
|
|
|
'Paxico', |
11599
|
|
|
|
|
|
|
'Paxson', |
11600
|
|
|
|
|
|
|
'Paxtang', |
11601
|
|
|
|
|
|
|
'Paxton', |
11602
|
|
|
|
|
|
|
'Paxtonia', |
11603
|
|
|
|
|
|
|
'Paxtonville', |
11604
|
|
|
|
|
|
|
'Paxville', |
11605
|
|
|
|
|
|
|
'Payette', |
11606
|
|
|
|
|
|
|
'Payne', |
11607
|
|
|
|
|
|
|
'Payne Springs', |
11608
|
|
|
|
|
|
|
'Paynesville', |
11609
|
|
|
|
|
|
|
'Payson', |
11610
|
|
|
|
|
|
|
'Pe Ell', |
11611
|
|
|
|
|
|
|
'Pea Ridge', |
11612
|
|
|
|
|
|
|
'Peabody', |
11613
|
|
|
|
|
|
|
'Peaceful Valley', |
11614
|
|
|
|
|
|
|
'Peach Lake', |
11615
|
|
|
|
|
|
|
'Peach Orchard', |
11616
|
|
|
|
|
|
|
'Peach Springs', |
11617
|
|
|
|
|
|
|
'Peachland', |
11618
|
|
|
|
|
|
|
'Peachtree City', |
11619
|
|
|
|
|
|
|
'Peak', |
11620
|
|
|
|
|
|
|
'Peapack and Gladstone', |
11621
|
|
|
|
|
|
|
'Pearisburg', |
11622
|
|
|
|
|
|
|
'Pearl', |
11623
|
|
|
|
|
|
|
'Pearl Beach', |
11624
|
|
|
|
|
|
|
'Pearl City', |
11625
|
|
|
|
|
|
|
'Pearl River', |
11626
|
|
|
|
|
|
|
'Pearland', |
11627
|
|
|
|
|
|
|
'Pearlington', |
11628
|
|
|
|
|
|
|
'Pearsall', |
11629
|
|
|
|
|
|
|
'Pearson', |
11630
|
|
|
|
|
|
|
'Pearsonville', |
11631
|
|
|
|
|
|
|
'Pease', |
11632
|
|
|
|
|
|
|
'Peavine', |
11633
|
|
|
|
|
|
|
'Pebble Creek', |
11634
|
|
|
|
|
|
|
'Pecan Acres', |
11635
|
|
|
|
|
|
|
'Pecan Gap', |
11636
|
|
|
|
|
|
|
'Pecan Grove', |
11637
|
|
|
|
|
|
|
'Pecan Hill', |
11638
|
|
|
|
|
|
|
'Pecan Plantation', |
11639
|
|
|
|
|
|
|
'Pecatonica', |
11640
|
|
|
|
|
|
|
'Peck', |
11641
|
|
|
|
|
|
|
'Peconic', |
11642
|
|
|
|
|
|
|
'Pecos', |
11643
|
|
|
|
|
|
|
'Peculiar', |
11644
|
|
|
|
|
|
|
'Pedley', |
11645
|
|
|
|
|
|
|
'Pedro Bay', |
11646
|
|
|
|
|
|
|
'Peebles', |
11647
|
|
|
|
|
|
|
'Peekskill', |
11648
|
|
|
|
|
|
|
'Peeples Valley', |
11649
|
|
|
|
|
|
|
'Peetz', |
11650
|
|
|
|
|
|
|
'Peever', |
11651
|
|
|
|
|
|
|
'Pegram', |
11652
|
|
|
|
|
|
|
'Pekin', |
11653
|
|
|
|
|
|
|
'Pelahatchie', |
11654
|
|
|
|
|
|
|
'Peletier', |
11655
|
|
|
|
|
|
|
'Pelham', |
11656
|
|
|
|
|
|
|
'Pelham Manor', |
11657
|
|
|
|
|
|
|
'Pelican', |
11658
|
|
|
|
|
|
|
'Pelican Bay', |
11659
|
|
|
|
|
|
|
'Pelican Rapids', |
11660
|
|
|
|
|
|
|
'Pelion', |
11661
|
|
|
|
|
|
|
'Pell City', |
11662
|
|
|
|
|
|
|
'Pell Lake', |
11663
|
|
|
|
|
|
|
'Pella', |
11664
|
|
|
|
|
|
|
'Pellston', |
11665
|
|
|
|
|
|
|
'Pelzer', |
11666
|
|
|
|
|
|
|
'Pemberton', |
11667
|
|
|
|
|
|
|
'Pemberton Heights', |
11668
|
|
|
|
|
|
|
'Pemberville', |
11669
|
|
|
|
|
|
|
'Pembina', |
11670
|
|
|
|
|
|
|
'Pembroke', |
11671
|
|
|
|
|
|
|
'Pembroke Park', |
11672
|
|
|
|
|
|
|
'Pembroke Pines', |
11673
|
|
|
|
|
|
|
'Pen Argyl', |
11674
|
|
|
|
|
|
|
'Pena Blanca', |
11675
|
|
|
|
|
|
|
'Penalosa', |
11676
|
|
|
|
|
|
|
'Penasco', |
11677
|
|
|
|
|
|
|
'Penbrook', |
11678
|
|
|
|
|
|
|
'Pender', |
11679
|
|
|
|
|
|
|
'Pendergrass', |
11680
|
|
|
|
|
|
|
'Pendleton', |
11681
|
|
|
|
|
|
|
'Penelope', |
11682
|
|
|
|
|
|
|
'Penermon', |
11683
|
|
|
|
|
|
|
'Penhook', |
11684
|
|
|
|
|
|
|
'Peninsula', |
11685
|
|
|
|
|
|
|
'Penitas', |
11686
|
|
|
|
|
|
|
'Penn', |
11687
|
|
|
|
|
|
|
'Penn Hills', |
11688
|
|
|
|
|
|
|
'Penn Lake Park', |
11689
|
|
|
|
|
|
|
'Penn Valley', |
11690
|
|
|
|
|
|
|
'Penn Wynne', |
11691
|
|
|
|
|
|
|
'Penn Yan', |
11692
|
|
|
|
|
|
|
'Penndel', |
11693
|
|
|
|
|
|
|
'Penney Farms', |
11694
|
|
|
|
|
|
|
'Pennington', |
11695
|
|
|
|
|
|
|
'Pennington Gap', |
11696
|
|
|
|
|
|
|
'Pennock', |
11697
|
|
|
|
|
|
|
'Penns Creek', |
11698
|
|
|
|
|
|
|
'Penns Grove', |
11699
|
|
|
|
|
|
|
'Pennsauken', |
11700
|
|
|
|
|
|
|
'Pennsboro', |
11701
|
|
|
|
|
|
|
'Pennsburg', |
11702
|
|
|
|
|
|
|
'Pennsbury Village', |
11703
|
|
|
|
|
|
|
'Pennsville', |
11704
|
|
|
|
|
|
|
'Pennville', |
11705
|
|
|
|
|
|
|
'Penrose', |
11706
|
|
|
|
|
|
|
'Pensacola', |
11707
|
|
|
|
|
|
|
'Pentwater', |
11708
|
|
|
|
|
|
|
'Peoria', |
11709
|
|
|
|
|
|
|
'Peoria Heights', |
11710
|
|
|
|
|
|
|
'Peosta', |
11711
|
|
|
|
|
|
|
'Peotone', |
11712
|
|
|
|
|
|
|
'Pepeekeo', |
11713
|
|
|
|
|
|
|
'Pepin', |
11714
|
|
|
|
|
|
|
'Pepper Pike', |
11715
|
|
|
|
|
|
|
'Pepperell', |
11716
|
|
|
|
|
|
|
'Pequot Lakes', |
11717
|
|
|
|
|
|
|
'Peralta', |
11718
|
|
|
|
|
|
|
'Percy', |
11719
|
|
|
|
|
|
|
'Perham', |
11720
|
|
|
|
|
|
|
'Peridot', |
11721
|
|
|
|
|
|
|
'Perkasie', |
11722
|
|
|
|
|
|
|
'Perkins', |
11723
|
|
|
|
|
|
|
'Perkinsville', |
11724
|
|
|
|
|
|
|
'Perla', |
11725
|
|
|
|
|
|
|
'Perley', |
11726
|
|
|
|
|
|
|
'Pernitas Point', |
11727
|
|
|
|
|
|
|
'Perrinton', |
11728
|
|
|
|
|
|
|
'Perris', |
11729
|
|
|
|
|
|
|
'Perry', |
11730
|
|
|
|
|
|
|
'Perry Hall', |
11731
|
|
|
|
|
|
|
'Perry Heights', |
11732
|
|
|
|
|
|
|
'Perry Park', |
11733
|
|
|
|
|
|
|
'Perryman', |
11734
|
|
|
|
|
|
|
'Perryopolis', |
11735
|
|
|
|
|
|
|
'Perrysburg', |
11736
|
|
|
|
|
|
|
'Perrysville', |
11737
|
|
|
|
|
|
|
'Perryton', |
11738
|
|
|
|
|
|
|
'Perrytown', |
11739
|
|
|
|
|
|
|
'Perryville', |
11740
|
|
|
|
|
|
|
'Persia', |
11741
|
|
|
|
|
|
|
'Perth', |
11742
|
|
|
|
|
|
|
'Perth Amboy', |
11743
|
|
|
|
|
|
|
'Peru', |
11744
|
|
|
|
|
|
|
'Peshtigo', |
11745
|
|
|
|
|
|
|
'Pesotum', |
11746
|
|
|
|
|
|
|
'Petal', |
11747
|
|
|
|
|
|
|
'Petaluma', |
11748
|
|
|
|
|
|
|
'Peter', |
11749
|
|
|
|
|
|
|
'Peterborough', |
11750
|
|
|
|
|
|
|
'Petersburg', |
11751
|
|
|
|
|
|
|
'Peterson', |
11752
|
|
|
|
|
|
|
'Peterstown', |
11753
|
|
|
|
|
|
|
'Petersville', |
11754
|
|
|
|
|
|
|
'Petoskey', |
11755
|
|
|
|
|
|
|
'Petrey', |
11756
|
|
|
|
|
|
|
'Petrolia', |
11757
|
|
|
|
|
|
|
'Petronila', |
11758
|
|
|
|
|
|
|
'Pettibone', |
11759
|
|
|
|
|
|
|
'Pettit', |
11760
|
|
|
|
|
|
|
'Pettus', |
11761
|
|
|
|
|
|
|
'Pevely', |
11762
|
|
|
|
|
|
|
'Pewamo', |
11763
|
|
|
|
|
|
|
'Pewaukee', |
11764
|
|
|
|
|
|
|
'Pewee Valley', |
11765
|
|
|
|
|
|
|
'Peña Pobre', |
11766
|
|
|
|
|
|
|
'Peñuelas', |
11767
|
|
|
|
|
|
|
'Pflugerville', |
11768
|
|
|
|
|
|
|
'Pharr', |
11769
|
|
|
|
|
|
|
'Phelps', |
11770
|
|
|
|
|
|
|
'Phenix', |
11771
|
|
|
|
|
|
|
'Phenix City', |
11772
|
|
|
|
|
|
|
'Phil Campbell', |
11773
|
|
|
|
|
|
|
'Philadelphia', |
11774
|
|
|
|
|
|
|
'Philip', |
11775
|
|
|
|
|
|
|
'Philippi', |
11776
|
|
|
|
|
|
|
'Philipsburg', |
11777
|
|
|
|
|
|
|
'Phillips', |
11778
|
|
|
|
|
|
|
'Phillipsburg', |
11779
|
|
|
|
|
|
|
'Phillipstown', |
11780
|
|
|
|
|
|
|
'Philmont', |
11781
|
|
|
|
|
|
|
'Philo', |
11782
|
|
|
|
|
|
|
'Philomath', |
11783
|
|
|
|
|
|
|
'Phoenicia', |
11784
|
|
|
|
|
|
|
'Phoenix', |
11785
|
|
|
|
|
|
|
'Phoenix Lake-Cedar Ridge', |
11786
|
|
|
|
|
|
|
'Phoenixville', |
11787
|
|
|
|
|
|
|
'Picayune', |
11788
|
|
|
|
|
|
|
'Picher', |
11789
|
|
|
|
|
|
|
'Pick City', |
11790
|
|
|
|
|
|
|
'Pickens', |
11791
|
|
|
|
|
|
|
'Pickensville', |
11792
|
|
|
|
|
|
|
'Pickering', |
11793
|
|
|
|
|
|
|
'Pickerington', |
11794
|
|
|
|
|
|
|
'Pickrell', |
11795
|
|
|
|
|
|
|
'Pickstown', |
11796
|
|
|
|
|
|
|
'Picnic Point-North Lynnwood', |
11797
|
|
|
|
|
|
|
'Pico Rivera', |
11798
|
|
|
|
|
|
|
'Picture Rocks', |
11799
|
|
|
|
|
|
|
'Picuris Pueblo', |
11800
|
|
|
|
|
|
|
'Piedmont', |
11801
|
|
|
|
|
|
|
'Piedra Gorda', |
11802
|
|
|
|
|
|
|
'Pierce', |
11803
|
|
|
|
|
|
|
'Pierce City', |
11804
|
|
|
|
|
|
|
'Pierceton', |
11805
|
|
|
|
|
|
|
'Piermont', |
11806
|
|
|
|
|
|
|
'Pierpont', |
11807
|
|
|
|
|
|
|
'Pierre', |
11808
|
|
|
|
|
|
|
'Pierre Part', |
11809
|
|
|
|
|
|
|
'Pierron', |
11810
|
|
|
|
|
|
|
'Pierson', |
11811
|
|
|
|
|
|
|
'Pierz', |
11812
|
|
|
|
|
|
|
'Pigeon', |
11813
|
|
|
|
|
|
|
'Pigeon Creek', |
11814
|
|
|
|
|
|
|
'Pigeon Falls', |
11815
|
|
|
|
|
|
|
'Pigeon Forge', |
11816
|
|
|
|
|
|
|
'Piggott', |
11817
|
|
|
|
|
|
|
'Pike', |
11818
|
|
|
|
|
|
|
'Pike Creek', |
11819
|
|
|
|
|
|
|
'Pike Road', |
11820
|
|
|
|
|
|
|
'Pikesville', |
11821
|
|
|
|
|
|
|
'Piketon', |
11822
|
|
|
|
|
|
|
'Pikeville', |
11823
|
|
|
|
|
|
|
'Pilger', |
11824
|
|
|
|
|
|
|
'Pillager', |
11825
|
|
|
|
|
|
|
'Pillow', |
11826
|
|
|
|
|
|
|
'Pillsbury', |
11827
|
|
|
|
|
|
|
'Pilot Grove', |
11828
|
|
|
|
|
|
|
'Pilot Knob', |
11829
|
|
|
|
|
|
|
'Pilot Mound', |
11830
|
|
|
|
|
|
|
'Pilot Mountain', |
11831
|
|
|
|
|
|
|
'Pilot Point', |
11832
|
|
|
|
|
|
|
'Pilot Rock', |
11833
|
|
|
|
|
|
|
'Pilot Station', |
11834
|
|
|
|
|
|
|
'Pima', |
11835
|
|
|
|
|
|
|
'Pimmit Hills', |
11836
|
|
|
|
|
|
|
'Pin Oak Acres', |
11837
|
|
|
|
|
|
|
'Pinardville', |
11838
|
|
|
|
|
|
|
'Pinch', |
11839
|
|
|
|
|
|
|
'Pinckard', |
11840
|
|
|
|
|
|
|
'Pinckney', |
11841
|
|
|
|
|
|
|
'Pinckneyville', |
11842
|
|
|
|
|
|
|
'Pinconning', |
11843
|
|
|
|
|
|
|
'Pindall', |
11844
|
|
|
|
|
|
|
'Pine', |
11845
|
|
|
|
|
|
|
'Pine Apple', |
11846
|
|
|
|
|
|
|
'Pine Beach', |
11847
|
|
|
|
|
|
|
'Pine Bluff', |
11848
|
|
|
|
|
|
|
'Pine Bluffs', |
11849
|
|
|
|
|
|
|
'Pine Bush', |
11850
|
|
|
|
|
|
|
'Pine Castle', |
11851
|
|
|
|
|
|
|
'Pine City', |
11852
|
|
|
|
|
|
|
'Pine Crest', |
11853
|
|
|
|
|
|
|
'Pine Forest', |
11854
|
|
|
|
|
|
|
'Pine Glen', |
11855
|
|
|
|
|
|
|
'Pine Grove', |
11856
|
|
|
|
|
|
|
'Pine Grove Mills', |
11857
|
|
|
|
|
|
|
'Pine Haven', |
11858
|
|
|
|
|
|
|
'Pine Hill', |
11859
|
|
|
|
|
|
|
'Pine Hills', |
11860
|
|
|
|
|
|
|
'Pine Hollow', |
11861
|
|
|
|
|
|
|
'Pine Island', |
11862
|
|
|
|
|
|
|
'Pine Island Center', |
11863
|
|
|
|
|
|
|
'Pine Island Ridge', |
11864
|
|
|
|
|
|
|
'Pine Knoll Shores', |
11865
|
|
|
|
|
|
|
'Pine Knot', |
11866
|
|
|
|
|
|
|
'Pine Lake', |
11867
|
|
|
|
|
|
|
'Pine Lakes', |
11868
|
|
|
|
|
|
|
'Pine Lawn', |
11869
|
|
|
|
|
|
|
'Pine Level', |
11870
|
|
|
|
|
|
|
'Pine Manor', |
11871
|
|
|
|
|
|
|
'Pine Mountain', |
11872
|
|
|
|
|
|
|
'Pine Mountain Club', |
11873
|
|
|
|
|
|
|
'Pine Plains', |
11874
|
|
|
|
|
|
|
'Pine Point', |
11875
|
|
|
|
|
|
|
'Pine Prairie', |
11876
|
|
|
|
|
|
|
'Pine Ridge', |
11877
|
|
|
|
|
|
|
'Pine Ridge at Crestwood', |
11878
|
|
|
|
|
|
|
'Pine River', |
11879
|
|
|
|
|
|
|
'Pine Springs', |
11880
|
|
|
|
|
|
|
'Pine Valley', |
11881
|
|
|
|
|
|
|
'Pine Village', |
11882
|
|
|
|
|
|
|
'Pinebluff', |
11883
|
|
|
|
|
|
|
'Pinecrest', |
11884
|
|
|
|
|
|
|
'Pinedale', |
11885
|
|
|
|
|
|
|
'Pinehill', |
11886
|
|
|
|
|
|
|
'Pinehurst', |
11887
|
|
|
|
|
|
|
'Pineland', |
11888
|
|
|
|
|
|
|
'Pinellas Park', |
11889
|
|
|
|
|
|
|
'Pinesdale', |
11890
|
|
|
|
|
|
|
'Pinetop-Lakeside', |
11891
|
|
|
|
|
|
|
'Pinetops', |
11892
|
|
|
|
|
|
|
'Pineview', |
11893
|
|
|
|
|
|
|
'Pineville', |
11894
|
|
|
|
|
|
|
'Pinewood', |
11895
|
|
|
|
|
|
|
'Pinewood Estates', |
11896
|
|
|
|
|
|
|
'Piney', |
11897
|
|
|
|
|
|
|
'Piney Green', |
11898
|
|
|
|
|
|
|
'Piney Point Village', |
11899
|
|
|
|
|
|
|
'Piney View', |
11900
|
|
|
|
|
|
|
'Pingree', |
11901
|
|
|
|
|
|
|
'Pingree Grove', |
11902
|
|
|
|
|
|
|
'Pinhook', |
11903
|
|
|
|
|
|
|
'Pinhook Corners', |
11904
|
|
|
|
|
|
|
'Pink', |
11905
|
|
|
|
|
|
|
'Pink Hill', |
11906
|
|
|
|
|
|
|
'Pinole', |
11907
|
|
|
|
|
|
|
'Pinon', |
11908
|
|
|
|
|
|
|
'Pinson', |
11909
|
|
|
|
|
|
|
'Pioneer', |
11910
|
|
|
|
|
|
|
'Pioneer Village', |
11911
|
|
|
|
|
|
|
'Piper City', |
11912
|
|
|
|
|
|
|
'Piperton', |
11913
|
|
|
|
|
|
|
'Pipestone', |
11914
|
|
|
|
|
|
|
'Pippa Passes', |
11915
|
|
|
|
|
|
|
'Piqua', |
11916
|
|
|
|
|
|
|
'Pirtleville', |
11917
|
|
|
|
|
|
|
'Piru', |
11918
|
|
|
|
|
|
|
'Pisek', |
11919
|
|
|
|
|
|
|
'Pisgah', |
11920
|
|
|
|
|
|
|
'Pisinemo', |
11921
|
|
|
|
|
|
|
'Pismo Beach', |
11922
|
|
|
|
|
|
|
'Pistakee Highlands', |
11923
|
|
|
|
|
|
|
'Pitcairn', |
11924
|
|
|
|
|
|
|
'Pitkas Point', |
11925
|
|
|
|
|
|
|
'Pitkin', |
11926
|
|
|
|
|
|
|
'Pitman', |
11927
|
|
|
|
|
|
|
'Pitsburg', |
11928
|
|
|
|
|
|
|
'Pittman', |
11929
|
|
|
|
|
|
|
'Pittman Center', |
11930
|
|
|
|
|
|
|
'Pitts', |
11931
|
|
|
|
|
|
|
'Pittsboro', |
11932
|
|
|
|
|
|
|
'Pittsburg', |
11933
|
|
|
|
|
|
|
'Pittsburgh', |
11934
|
|
|
|
|
|
|
'Pittsfield', |
11935
|
|
|
|
|
|
|
'Pittsford', |
11936
|
|
|
|
|
|
|
'Pittston', |
11937
|
|
|
|
|
|
|
'Pittsville', |
11938
|
|
|
|
|
|
|
'Pixley', |
11939
|
|
|
|
|
|
|
'Placentia', |
11940
|
|
|
|
|
|
|
'Placerville', |
11941
|
|
|
|
|
|
|
'Placid Lakes', |
11942
|
|
|
|
|
|
|
'Placitas', |
11943
|
|
|
|
|
|
|
'Plain', |
11944
|
|
|
|
|
|
|
'Plain City', |
11945
|
|
|
|
|
|
|
'Plain Dealing', |
11946
|
|
|
|
|
|
|
'Plain View', |
11947
|
|
|
|
|
|
|
'Plainedge', |
11948
|
|
|
|
|
|
|
'Plainfield', |
11949
|
|
|
|
|
|
|
'Plainfield Village', |
11950
|
|
|
|
|
|
|
'Plains', |
11951
|
|
|
|
|
|
|
'Plainsboro Center', |
11952
|
|
|
|
|
|
|
'Plainview', |
11953
|
|
|
|
|
|
|
'Plainville', |
11954
|
|
|
|
|
|
|
'Plainwell', |
11955
|
|
|
|
|
|
|
'Planada', |
11956
|
|
|
|
|
|
|
'Plandome', |
11957
|
|
|
|
|
|
|
'Plandome Heights', |
11958
|
|
|
|
|
|
|
'Plandome Manor', |
11959
|
|
|
|
|
|
|
'Plankinton', |
11960
|
|
|
|
|
|
|
'Plano', |
11961
|
|
|
|
|
|
|
'Plant City', |
11962
|
|
|
|
|
|
|
'Plantation', |
11963
|
|
|
|
|
|
|
'Plantation Island', |
11964
|
|
|
|
|
|
|
'Plantation Mobile Home Park', |
11965
|
|
|
|
|
|
|
'Plantersville', |
11966
|
|
|
|
|
|
|
'Plaquemine', |
11967
|
|
|
|
|
|
|
'Platea', |
11968
|
|
|
|
|
|
|
'Platinum', |
11969
|
|
|
|
|
|
|
'Plato', |
11970
|
|
|
|
|
|
|
'Platte', |
11971
|
|
|
|
|
|
|
'Platte Center', |
11972
|
|
|
|
|
|
|
'Platte City', |
11973
|
|
|
|
|
|
|
'Platte Woods', |
11974
|
|
|
|
|
|
|
'Plattekill', |
11975
|
|
|
|
|
|
|
'Platteville', |
11976
|
|
|
|
|
|
|
'Plattsburg', |
11977
|
|
|
|
|
|
|
'Plattsburgh', |
11978
|
|
|
|
|
|
|
'Plattsburgh West', |
11979
|
|
|
|
|
|
|
'Plattsmouth', |
11980
|
|
|
|
|
|
|
'Plaucheville', |
11981
|
|
|
|
|
|
|
'Playa Fortuna', |
11982
|
|
|
|
|
|
|
'Playita', |
11983
|
|
|
|
|
|
|
'Playita Cortada', |
11984
|
|
|
|
|
|
|
'Plaza', |
11985
|
|
|
|
|
|
|
'Pleak', |
11986
|
|
|
|
|
|
|
'Pleasant City', |
11987
|
|
|
|
|
|
|
'Pleasant Dale', |
11988
|
|
|
|
|
|
|
'Pleasant Gap', |
11989
|
|
|
|
|
|
|
'Pleasant Garden', |
11990
|
|
|
|
|
|
|
'Pleasant Grove', |
11991
|
|
|
|
|
|
|
'Pleasant Groves', |
11992
|
|
|
|
|
|
|
'Pleasant Hill', |
11993
|
|
|
|
|
|
|
'Pleasant Hills', |
11994
|
|
|
|
|
|
|
'Pleasant Hope', |
11995
|
|
|
|
|
|
|
'Pleasant Lake', |
11996
|
|
|
|
|
|
|
'Pleasant Plain', |
11997
|
|
|
|
|
|
|
'Pleasant Plains', |
11998
|
|
|
|
|
|
|
'Pleasant Prairie', |
11999
|
|
|
|
|
|
|
'Pleasant Ridge', |
12000
|
|
|
|
|
|
|
'Pleasant Run', |
12001
|
|
|
|
|
|
|
'Pleasant Run Farm', |
12002
|
|
|
|
|
|
|
'Pleasant Valley', |
12003
|
|
|
|
|
|
|
'Pleasant View', |
12004
|
|
|
|
|
|
|
'Pleasanton', |
12005
|
|
|
|
|
|
|
'Pleasantville', |
12006
|
|
|
|
|
|
|
'Pleasure Ridge Park', |
12007
|
|
|
|
|
|
|
'Pleasureville', |
12008
|
|
|
|
|
|
|
'Plentywood', |
12009
|
|
|
|
|
|
|
'Plevna', |
12010
|
|
|
|
|
|
|
'Plover', |
12011
|
|
|
|
|
|
|
'Plum', |
12012
|
|
|
|
|
|
|
'Plum Branch', |
12013
|
|
|
|
|
|
|
'Plum City', |
12014
|
|
|
|
|
|
|
'Plum Grove', |
12015
|
|
|
|
|
|
|
'Plum Springs', |
12016
|
|
|
|
|
|
|
'Plumas Eureka', |
12017
|
|
|
|
|
|
|
'Plumerville', |
12018
|
|
|
|
|
|
|
'Plummer', |
12019
|
|
|
|
|
|
|
'Plumville', |
12020
|
|
|
|
|
|
|
'Plymouth', |
12021
|
|
|
|
|
|
|
'Plymouth Meeting', |
12022
|
|
|
|
|
|
|
'Plymouth Township', |
12023
|
|
|
|
|
|
|
'Plymouth Village', |
12024
|
|
|
|
|
|
|
'Plymptonville', |
12025
|
|
|
|
|
|
|
'Poca', |
12026
|
|
|
|
|
|
|
'Pocahontas', |
12027
|
|
|
|
|
|
|
'Pocasset', |
12028
|
|
|
|
|
|
|
'Pocatello', |
12029
|
|
|
|
|
|
|
'Pocola', |
12030
|
|
|
|
|
|
|
'Pocomoke City', |
12031
|
|
|
|
|
|
|
'Pocono Pines', |
12032
|
|
|
|
|
|
|
'Poestenkill', |
12033
|
|
|
|
|
|
|
'Poinciana', |
12034
|
|
|
|
|
|
|
'Point', |
12035
|
|
|
|
|
|
|
'Point Arena', |
12036
|
|
|
|
|
|
|
'Point Baker', |
12037
|
|
|
|
|
|
|
'Point Blank', |
12038
|
|
|
|
|
|
|
'Point Clear', |
12039
|
|
|
|
|
|
|
'Point Comfort', |
12040
|
|
|
|
|
|
|
'Point Hope', |
12041
|
|
|
|
|
|
|
'Point Lay', |
12042
|
|
|
|
|
|
|
'Point Lookout', |
12043
|
|
|
|
|
|
|
'Point MacKenzie', |
12044
|
|
|
|
|
|
|
'Point Marion', |
12045
|
|
|
|
|
|
|
'Point Pleasant', |
12046
|
|
|
|
|
|
|
'Point Pleasant Beach', |
12047
|
|
|
|
|
|
|
'Point Reyes Station', |
12048
|
|
|
|
|
|
|
'Point of Rocks', |
12049
|
|
|
|
|
|
|
'Poipu', |
12050
|
|
|
|
|
|
|
'Pojoaque', |
12051
|
|
|
|
|
|
|
'Poland', |
12052
|
|
|
|
|
|
|
'Pole Ojea', |
12053
|
|
|
|
|
|
|
'Polk', |
12054
|
|
|
|
|
|
|
'Polk City', |
12055
|
|
|
|
|
|
|
'Polkton', |
12056
|
|
|
|
|
|
|
'Polkville', |
12057
|
|
|
|
|
|
|
'Pollard', |
12058
|
|
|
|
|
|
|
'Pollock', |
12059
|
|
|
|
|
|
|
'Pollock Pines', |
12060
|
|
|
|
|
|
|
'Pollocksville', |
12061
|
|
|
|
|
|
|
'Polo', |
12062
|
|
|
|
|
|
|
'Polson', |
12063
|
|
|
|
|
|
|
'Pomaria', |
12064
|
|
|
|
|
|
|
'Pomeroy', |
12065
|
|
|
|
|
|
|
'Pomona', |
12066
|
|
|
|
|
|
|
'Pomona Park', |
12067
|
|
|
|
|
|
|
'Pompano Beach', |
12068
|
|
|
|
|
|
|
'Pompano Beach Highlands', |
12069
|
|
|
|
|
|
|
'Pompano Estates', |
12070
|
|
|
|
|
|
|
'Pompton Lakes', |
12071
|
|
|
|
|
|
|
'Ponca', |
12072
|
|
|
|
|
|
|
'Ponca City', |
12073
|
|
|
|
|
|
|
'Ponce', |
12074
|
|
|
|
|
|
|
'Ponce Inlet', |
12075
|
|
|
|
|
|
|
'Ponce de Leon', |
12076
|
|
|
|
|
|
|
'Poncha Springs', |
12077
|
|
|
|
|
|
|
'Ponchatoula', |
12078
|
|
|
|
|
|
|
'Pond Creek', |
12079
|
|
|
|
|
|
|
'Ponder', |
12080
|
|
|
|
|
|
|
'Ponderay', |
12081
|
|
|
|
|
|
|
'Ponderosa', |
12082
|
|
|
|
|
|
|
'Ponderosa Park', |
12083
|
|
|
|
|
|
|
'Ponemah', |
12084
|
|
|
|
|
|
|
'Poneto', |
12085
|
|
|
|
|
|
|
'Pontiac', |
12086
|
|
|
|
|
|
|
'Pontoon Beach', |
12087
|
|
|
|
|
|
|
'Pontoosuc', |
12088
|
|
|
|
|
|
|
'Pontotoc', |
12089
|
|
|
|
|
|
|
'Pooler', |
12090
|
|
|
|
|
|
|
'Poolesville', |
12091
|
|
|
|
|
|
|
'Pope', |
12092
|
|
|
|
|
|
|
'Pope AFB', |
12093
|
|
|
|
|
|
|
'Pope-Vannoy Landing', |
12094
|
|
|
|
|
|
|
'Popejoy', |
12095
|
|
|
|
|
|
|
'Poplar', |
12096
|
|
|
|
|
|
|
'Poplar Bluff', |
12097
|
|
|
|
|
|
|
'Poplar Grove', |
12098
|
|
|
|
|
|
|
'Poplar Hills', |
12099
|
|
|
|
|
|
|
'Poplar-Cotton Center', |
12100
|
|
|
|
|
|
|
'Poplarville', |
12101
|
|
|
|
|
|
|
'Popponesset', |
12102
|
|
|
|
|
|
|
'Popponesset Island', |
12103
|
|
|
|
|
|
|
'Poquonock Bridge', |
12104
|
|
|
|
|
|
|
'Poquoson', |
12105
|
|
|
|
|
|
|
'Poquott', |
12106
|
|
|
|
|
|
|
'Porcupine', |
12107
|
|
|
|
|
|
|
'Port Alexander', |
12108
|
|
|
|
|
|
|
'Port Allegany', |
12109
|
|
|
|
|
|
|
'Port Allen', |
12110
|
|
|
|
|
|
|
'Port Alsworth', |
12111
|
|
|
|
|
|
|
'Port Angeles', |
12112
|
|
|
|
|
|
|
'Port Angeles East', |
12113
|
|
|
|
|
|
|
'Port Aransas', |
12114
|
|
|
|
|
|
|
'Port Arthur', |
12115
|
|
|
|
|
|
|
'Port Austin', |
12116
|
|
|
|
|
|
|
'Port Barre', |
12117
|
|
|
|
|
|
|
'Port Byron', |
12118
|
|
|
|
|
|
|
'Port Carbon', |
12119
|
|
|
|
|
|
|
'Port Charlotte', |
12120
|
|
|
|
|
|
|
'Port Chester', |
12121
|
|
|
|
|
|
|
'Port Clarence', |
12122
|
|
|
|
|
|
|
'Port Clinton', |
12123
|
|
|
|
|
|
|
'Port Costa', |
12124
|
|
|
|
|
|
|
'Port Deposit', |
12125
|
|
|
|
|
|
|
'Port Dickinson', |
12126
|
|
|
|
|
|
|
'Port Edwards', |
12127
|
|
|
|
|
|
|
'Port Ewen', |
12128
|
|
|
|
|
|
|
'Port Gibson', |
12129
|
|
|
|
|
|
|
'Port Graham', |
12130
|
|
|
|
|
|
|
'Port Hadlock-Irondale', |
12131
|
|
|
|
|
|
|
'Port Heiden', |
12132
|
|
|
|
|
|
|
'Port Henry', |
12133
|
|
|
|
|
|
|
'Port Hope', |
12134
|
|
|
|
|
|
|
'Port Hueneme', |
12135
|
|
|
|
|
|
|
'Port Huron', |
12136
|
|
|
|
|
|
|
'Port Isabel', |
12137
|
|
|
|
|
|
|
'Port Jefferson', |
12138
|
|
|
|
|
|
|
'Port Jefferson Station', |
12139
|
|
|
|
|
|
|
'Port Jervis', |
12140
|
|
|
|
|
|
|
'Port La Belle', |
12141
|
|
|
|
|
|
|
'Port Lavaca', |
12142
|
|
|
|
|
|
|
'Port Leyden', |
12143
|
|
|
|
|
|
|
'Port Lions', |
12144
|
|
|
|
|
|
|
'Port Ludlow', |
12145
|
|
|
|
|
|
|
'Port Mansfield', |
12146
|
|
|
|
|
|
|
'Port Matilda', |
12147
|
|
|
|
|
|
|
'Port Monmouth', |
12148
|
|
|
|
|
|
|
'Port Neches', |
12149
|
|
|
|
|
|
|
'Port Norris', |
12150
|
|
|
|
|
|
|
'Port Orange', |
12151
|
|
|
|
|
|
|
'Port Orchard', |
12152
|
|
|
|
|
|
|
'Port Orford', |
12153
|
|
|
|
|
|
|
'Port Protection', |
12154
|
|
|
|
|
|
|
'Port Reading', |
12155
|
|
|
|
|
|
|
'Port Republic', |
12156
|
|
|
|
|
|
|
'Port Richey', |
12157
|
|
|
|
|
|
|
'Port Royal', |
12158
|
|
|
|
|
|
|
'Port Salerno', |
12159
|
|
|
|
|
|
|
'Port Sanilac', |
12160
|
|
|
|
|
|
|
'Port St. Joe', |
12161
|
|
|
|
|
|
|
'Port St. John', |
12162
|
|
|
|
|
|
|
'Port St. Lucie', |
12163
|
|
|
|
|
|
|
'Port St. Lucie-River Park', |
12164
|
|
|
|
|
|
|
'Port Sulphur', |
12165
|
|
|
|
|
|
|
'Port Tobacco Village', |
12166
|
|
|
|
|
|
|
'Port Townsend', |
12167
|
|
|
|
|
|
|
'Port Trevorton', |
12168
|
|
|
|
|
|
|
'Port Vincent', |
12169
|
|
|
|
|
|
|
'Port Vue', |
12170
|
|
|
|
|
|
|
'Port Washington', |
12171
|
|
|
|
|
|
|
'Port Washington North', |
12172
|
|
|
|
|
|
|
'Port Wentworth', |
12173
|
|
|
|
|
|
|
'Port William', |
12174
|
|
|
|
|
|
|
'Portage', |
12175
|
|
|
|
|
|
|
'Portage Creek', |
12176
|
|
|
|
|
|
|
'Portage Des Sioux', |
12177
|
|
|
|
|
|
|
'Portage Lakes', |
12178
|
|
|
|
|
|
|
'Portageville', |
12179
|
|
|
|
|
|
|
'Portal', |
12180
|
|
|
|
|
|
|
'Portales', |
12181
|
|
|
|
|
|
|
'Porter', |
12182
|
|
|
|
|
|
|
'Porter Heights', |
12183
|
|
|
|
|
|
|
'Porterdale', |
12184
|
|
|
|
|
|
|
'Portersville', |
12185
|
|
|
|
|
|
|
'Porterville', |
12186
|
|
|
|
|
|
|
'Portia', |
12187
|
|
|
|
|
|
|
'Portis', |
12188
|
|
|
|
|
|
|
'Portland', |
12189
|
|
|
|
|
|
|
'Portola', |
12190
|
|
|
|
|
|
|
'Portola Hills', |
12191
|
|
|
|
|
|
|
'Portola Valley', |
12192
|
|
|
|
|
|
|
'Portsmouth', |
12193
|
|
|
|
|
|
|
'Portville', |
12194
|
|
|
|
|
|
|
'Porum', |
12195
|
|
|
|
|
|
|
'Posen', |
12196
|
|
|
|
|
|
|
'Poseyville', |
12197
|
|
|
|
|
|
|
'Post', |
12198
|
|
|
|
|
|
|
'Post Falls', |
12199
|
|
|
|
|
|
|
'Post Oak Bend City', |
12200
|
|
|
|
|
|
|
'Poston', |
12201
|
|
|
|
|
|
|
'Postville', |
12202
|
|
|
|
|
|
|
'Potala Pastillo', |
12203
|
|
|
|
|
|
|
'Poteau', |
12204
|
|
|
|
|
|
|
'Poteet', |
12205
|
|
|
|
|
|
|
'Poth', |
12206
|
|
|
|
|
|
|
'Potlatch', |
12207
|
|
|
|
|
|
|
'Potomac', |
12208
|
|
|
|
|
|
|
'Potomac Heights', |
12209
|
|
|
|
|
|
|
'Potosi', |
12210
|
|
|
|
|
|
|
'Potsdam', |
12211
|
|
|
|
|
|
|
'Pottawattamie Park', |
12212
|
|
|
|
|
|
|
'Potter', |
12213
|
|
|
|
|
|
|
'Potter Lake', |
12214
|
|
|
|
|
|
|
'Potterville', |
12215
|
|
|
|
|
|
|
'Potts Camp', |
12216
|
|
|
|
|
|
|
'Pottsboro', |
12217
|
|
|
|
|
|
|
'Pottsgrove', |
12218
|
|
|
|
|
|
|
'Pottstown', |
12219
|
|
|
|
|
|
|
'Pottsville', |
12220
|
|
|
|
|
|
|
'Potwin', |
12221
|
|
|
|
|
|
|
'Poughkeepsie', |
12222
|
|
|
|
|
|
|
'Poulan', |
12223
|
|
|
|
|
|
|
'Poulsbo', |
12224
|
|
|
|
|
|
|
'Poultney', |
12225
|
|
|
|
|
|
|
'Pound', |
12226
|
|
|
|
|
|
|
'Poway', |
12227
|
|
|
|
|
|
|
'Powder River', |
12228
|
|
|
|
|
|
|
'Powder Springs', |
12229
|
|
|
|
|
|
|
'Powderly', |
12230
|
|
|
|
|
|
|
'Powderville', |
12231
|
|
|
|
|
|
|
'Powell', |
12232
|
|
|
|
|
|
|
'Powells Crossroads', |
12233
|
|
|
|
|
|
|
'Powellsville', |
12234
|
|
|
|
|
|
|
'Powellton', |
12235
|
|
|
|
|
|
|
'Power', |
12236
|
|
|
|
|
|
|
'Powers', |
12237
|
|
|
|
|
|
|
'Powers Lake', |
12238
|
|
|
|
|
|
|
'Powersville', |
12239
|
|
|
|
|
|
|
'Powhatan', |
12240
|
|
|
|
|
|
|
'Powhatan Point', |
12241
|
|
|
|
|
|
|
'Powhattan', |
12242
|
|
|
|
|
|
|
'Poydras', |
12243
|
|
|
|
|
|
|
'Poyen', |
12244
|
|
|
|
|
|
|
'Poynette', |
12245
|
|
|
|
|
|
|
'Poynor', |
12246
|
|
|
|
|
|
|
'Prado Verde', |
12247
|
|
|
|
|
|
|
'Prague', |
12248
|
|
|
|
|
|
|
'Prairie City', |
12249
|
|
|
|
|
|
|
'Prairie Creek', |
12250
|
|
|
|
|
|
|
'Prairie Farm', |
12251
|
|
|
|
|
|
|
'Prairie Grove', |
12252
|
|
|
|
|
|
|
'Prairie Home', |
12253
|
|
|
|
|
|
|
'Prairie Ridge', |
12254
|
|
|
|
|
|
|
'Prairie Rose', |
12255
|
|
|
|
|
|
|
'Prairie View', |
12256
|
|
|
|
|
|
|
'Prairie Village', |
12257
|
|
|
|
|
|
|
'Prairie du Chien', |
12258
|
|
|
|
|
|
|
'Prairie du Rocher', |
12259
|
|
|
|
|
|
|
'Prairie du Sac', |
12260
|
|
|
|
|
|
|
'Prairieburg', |
12261
|
|
|
|
|
|
|
'Prathersville', |
12262
|
|
|
|
|
|
|
'Pratt', |
12263
|
|
|
|
|
|
|
'Prattsville', |
12264
|
|
|
|
|
|
|
'Prattville', |
12265
|
|
|
|
|
|
|
'Premont', |
12266
|
|
|
|
|
|
|
'Prentice', |
12267
|
|
|
|
|
|
|
'Prentiss', |
12268
|
|
|
|
|
|
|
'Prescott', |
12269
|
|
|
|
|
|
|
'Prescott Valley', |
12270
|
|
|
|
|
|
|
'Presho', |
12271
|
|
|
|
|
|
|
'Presidential Lakes Estates', |
12272
|
|
|
|
|
|
|
'Presidio', |
12273
|
|
|
|
|
|
|
'Presque Isle', |
12274
|
|
|
|
|
|
|
'Preston', |
12275
|
|
|
|
|
|
|
'Preston Heights', |
12276
|
|
|
|
|
|
|
'Preston-Potter Hollow', |
12277
|
|
|
|
|
|
|
'Prestonsburg', |
12278
|
|
|
|
|
|
|
'Prestonville', |
12279
|
|
|
|
|
|
|
'Pretty Bayou', |
12280
|
|
|
|
|
|
|
'Pretty Prairie', |
12281
|
|
|
|
|
|
|
'Price', |
12282
|
|
|
|
|
|
|
'Priceville', |
12283
|
|
|
|
|
|
|
'Prichard', |
12284
|
|
|
|
|
|
|
'Prien', |
12285
|
|
|
|
|
|
|
'Priest Point', |
12286
|
|
|
|
|
|
|
'Priest River', |
12287
|
|
|
|
|
|
|
'Primera', |
12288
|
|
|
|
|
|
|
'Primghar', |
12289
|
|
|
|
|
|
|
'Primrose', |
12290
|
|
|
|
|
|
|
'Prince Frederick', |
12291
|
|
|
|
|
|
|
'Princes Lakes', |
12292
|
|
|
|
|
|
|
'Princess Anne', |
12293
|
|
|
|
|
|
|
'Princeton', |
12294
|
|
|
|
|
|
|
'Princeton Junction', |
12295
|
|
|
|
|
|
|
'Princeton Meadows', |
12296
|
|
|
|
|
|
|
'Princeton North', |
12297
|
|
|
|
|
|
|
'Princeville', |
12298
|
|
|
|
|
|
|
'Prineville', |
12299
|
|
|
|
|
|
|
'Pringle', |
12300
|
|
|
|
|
|
|
'Prinsburg', |
12301
|
|
|
|
|
|
|
'Prior Lake', |
12302
|
|
|
|
|
|
|
'Pritchett', |
12303
|
|
|
|
|
|
|
'Privateer', |
12304
|
|
|
|
|
|
|
'Proctor', |
12305
|
|
|
|
|
|
|
'Proctorville', |
12306
|
|
|
|
|
|
|
'Progreso', |
12307
|
|
|
|
|
|
|
'Progreso Lakes', |
12308
|
|
|
|
|
|
|
'Progress', |
12309
|
|
|
|
|
|
|
'Progress Village', |
12310
|
|
|
|
|
|
|
'Promise City', |
12311
|
|
|
|
|
|
|
'Promised Land', |
12312
|
|
|
|
|
|
|
'Prompton', |
12313
|
|
|
|
|
|
|
'Prophetstown', |
12314
|
|
|
|
|
|
|
'Prospect', |
12315
|
|
|
|
|
|
|
'Prospect Heights', |
12316
|
|
|
|
|
|
|
'Prospect Park', |
12317
|
|
|
|
|
|
|
'Prosper', |
12318
|
|
|
|
|
|
|
'Prosperity', |
12319
|
|
|
|
|
|
|
'Prosser', |
12320
|
|
|
|
|
|
|
'Protection', |
12321
|
|
|
|
|
|
|
'Protivin', |
12322
|
|
|
|
|
|
|
'Provencal', |
12323
|
|
|
|
|
|
|
'Providence', |
12324
|
|
|
|
|
|
|
'Provincetown', |
12325
|
|
|
|
|
|
|
'Provo', |
12326
|
|
|
|
|
|
|
'Prudenville', |
12327
|
|
|
|
|
|
|
'Prudhoe Bay', |
12328
|
|
|
|
|
|
|
'Prue', |
12329
|
|
|
|
|
|
|
'Prunedale', |
12330
|
|
|
|
|
|
|
'Pryor', |
12331
|
|
|
|
|
|
|
'Pryor Creek', |
12332
|
|
|
|
|
|
|
'Puako', |
12333
|
|
|
|
|
|
|
'Puckett', |
12334
|
|
|
|
|
|
|
'Pueblito del RÃo', |
12335
|
|
|
|
|
|
|
'Pueblo', |
12336
|
|
|
|
|
|
|
'Pueblo Pintado', |
12337
|
|
|
|
|
|
|
'Pueblo West', |
12338
|
|
|
|
|
|
|
'Pueblo of Sandia Village', |
12339
|
|
|
|
|
|
|
'Puerto Real', |
12340
|
|
|
|
|
|
|
'Puhi', |
12341
|
|
|
|
|
|
|
'Pukalani', |
12342
|
|
|
|
|
|
|
'Pukwana', |
12343
|
|
|
|
|
|
|
'Pulaski', |
12344
|
|
|
|
|
|
|
'Pullman', |
12345
|
|
|
|
|
|
|
'Pump Back', |
12346
|
|
|
|
|
|
|
'Pumphrey', |
12347
|
|
|
|
|
|
|
'Pumpkin Center', |
12348
|
|
|
|
|
|
|
'Punaluu', |
12349
|
|
|
|
|
|
|
'Punta Gorda', |
12350
|
|
|
|
|
|
|
'Punta Rassa', |
12351
|
|
|
|
|
|
|
'Punta Santiago', |
12352
|
|
|
|
|
|
|
'Punxsutawney', |
12353
|
|
|
|
|
|
|
'Pupukea', |
12354
|
|
|
|
|
|
|
'Purcell', |
12355
|
|
|
|
|
|
|
'Purcellville', |
12356
|
|
|
|
|
|
|
'Purdin', |
12357
|
|
|
|
|
|
|
'Purdy', |
12358
|
|
|
|
|
|
|
'Purple Sage', |
12359
|
|
|
|
|
|
|
'Purvis', |
12360
|
|
|
|
|
|
|
'Puryear', |
12361
|
|
|
|
|
|
|
'Put-in-Bay', |
12362
|
|
|
|
|
|
|
'Putnam', |
12363
|
|
|
|
|
|
|
'Putnam District', |
12364
|
|
|
|
|
|
|
'Putnam Lake', |
12365
|
|
|
|
|
|
|
'Putney', |
12366
|
|
|
|
|
|
|
'Puxico', |
12367
|
|
|
|
|
|
|
'Puyallup', |
12368
|
|
|
|
|
|
|
'Pyatt', |
12369
|
|
|
|
|
|
|
'Pymatuning Central', |
12370
|
|
|
|
|
|
|
'Pymatuning North', |
12371
|
|
|
|
|
|
|
'Pymatuning South', |
12372
|
|
|
|
|
|
|
'Pyote', |
12373
|
|
|
|
|
|
|
'Pájaros', |
12374
|
|
|
|
|
|
|
'Quail', |
12375
|
|
|
|
|
|
|
'Quail Valley', |
12376
|
|
|
|
|
|
|
'Quaker City', |
12377
|
|
|
|
|
|
|
'Quakertown', |
12378
|
|
|
|
|
|
|
'Quamba', |
12379
|
|
|
|
|
|
|
'Quanah', |
12380
|
|
|
|
|
|
|
'Quantico', |
12381
|
|
|
|
|
|
|
'Quantico Station', |
12382
|
|
|
|
|
|
|
'Quapaw', |
12383
|
|
|
|
|
|
|
'Quarryville', |
12384
|
|
|
|
|
|
|
'Quartz Hill', |
12385
|
|
|
|
|
|
|
'Quartzsite', |
12386
|
|
|
|
|
|
|
'Quasqueton', |
12387
|
|
|
|
|
|
|
'Quay', |
12388
|
|
|
|
|
|
|
'Quebrada', |
12389
|
|
|
|
|
|
|
'Quebradillas', |
12390
|
|
|
|
|
|
|
'Queen Anne', |
12391
|
|
|
|
|
|
|
'Queen City', |
12392
|
|
|
|
|
|
|
'Queen Creek', |
12393
|
|
|
|
|
|
|
'Queen Valley', |
12394
|
|
|
|
|
|
|
'Queenstown', |
12395
|
|
|
|
|
|
|
'Quemado', |
12396
|
|
|
|
|
|
|
'Quenemo', |
12397
|
|
|
|
|
|
|
'Quentin', |
12398
|
|
|
|
|
|
|
'Questa', |
12399
|
|
|
|
|
|
|
'Quilcene', |
12400
|
|
|
|
|
|
|
'Quimby', |
12401
|
|
|
|
|
|
|
'Quinby', |
12402
|
|
|
|
|
|
|
'Quincy', |
12403
|
|
|
|
|
|
|
'Quinebaug', |
12404
|
|
|
|
|
|
|
'Quinhagak', |
12405
|
|
|
|
|
|
|
'Quinlan', |
12406
|
|
|
|
|
|
|
'Quinn', |
12407
|
|
|
|
|
|
|
'Quinnesec', |
12408
|
|
|
|
|
|
|
'Quintana', |
12409
|
|
|
|
|
|
|
'Quinter', |
12410
|
|
|
|
|
|
|
'Quinton', |
12411
|
|
|
|
|
|
|
'Quinwood', |
12412
|
|
|
|
|
|
|
'Quioque', |
12413
|
|
|
|
|
|
|
'Quitaque', |
12414
|
|
|
|
|
|
|
'Quitman', |
12415
|
|
|
|
|
|
|
'Qulin', |
12416
|
|
|
|
|
|
|
'Quogue', |
12417
|
|
|
|
|
|
|
'Raceland', |
12418
|
|
|
|
|
|
|
'Racine', |
12419
|
|
|
|
|
|
|
'Radar Base', |
12420
|
|
|
|
|
|
|
'Radcliff', |
12421
|
|
|
|
|
|
|
'Radcliffe', |
12422
|
|
|
|
|
|
|
'Radersburg', |
12423
|
|
|
|
|
|
|
'Radford', |
12424
|
|
|
|
|
|
|
'Radisson', |
12425
|
|
|
|
|
|
|
'Radium', |
12426
|
|
|
|
|
|
|
'Radium Springs', |
12427
|
|
|
|
|
|
|
'Radnor Township', |
12428
|
|
|
|
|
|
|
'Radom', |
12429
|
|
|
|
|
|
|
'Raeford', |
12430
|
|
|
|
|
|
|
'Raemon', |
12431
|
|
|
|
|
|
|
'Rafael Capó', |
12432
|
|
|
|
|
|
|
'Rafael González', |
12433
|
|
|
|
|
|
|
'Rafael Hernández', |
12434
|
|
|
|
|
|
|
'Rafter J Ranch', |
12435
|
|
|
|
|
|
|
'Ragan', |
12436
|
|
|
|
|
|
|
'Ragland', |
12437
|
|
|
|
|
|
|
'Rahway', |
12438
|
|
|
|
|
|
|
'Raiford', |
12439
|
|
|
|
|
|
|
'Rail Road Flat', |
12440
|
|
|
|
|
|
|
'Railroad', |
12441
|
|
|
|
|
|
|
'Rainbow', |
12442
|
|
|
|
|
|
|
'Rainbow City', |
12443
|
|
|
|
|
|
|
'Rainelle', |
12444
|
|
|
|
|
|
|
'Rainier', |
12445
|
|
|
|
|
|
|
'Rainsburg', |
12446
|
|
|
|
|
|
|
'Rainsville', |
12447
|
|
|
|
|
|
|
'Raisin City', |
12448
|
|
|
|
|
|
|
'Rake', |
12449
|
|
|
|
|
|
|
'Raleigh', |
12450
|
|
|
|
|
|
|
'Raleigh Hills', |
12451
|
|
|
|
|
|
|
'Ralls', |
12452
|
|
|
|
|
|
|
'Ralston', |
12453
|
|
|
|
|
|
|
'Ramah', |
12454
|
|
|
|
|
|
|
'Ramblewood', |
12455
|
|
|
|
|
|
|
'Ramblewood East', |
12456
|
|
|
|
|
|
|
'Ramer', |
12457
|
|
|
|
|
|
|
'Ramey', |
12458
|
|
|
|
|
|
|
'Ramona', |
12459
|
|
|
|
|
|
|
'Ramos', |
12460
|
|
|
|
|
|
|
'Rampart', |
12461
|
|
|
|
|
|
|
'Ramseur', |
12462
|
|
|
|
|
|
|
'Ramsey', |
12463
|
|
|
|
|
|
|
'Ramtown', |
12464
|
|
|
|
|
|
|
'Ranburne', |
12465
|
|
|
|
|
|
|
'Ranchester', |
12466
|
|
|
|
|
|
|
'Ranchette Estates', |
12467
|
|
|
|
|
|
|
'Ranchettes', |
12468
|
|
|
|
|
|
|
'Ranchitos Las Lomas', |
12469
|
|
|
|
|
|
|
'Rancho Alegre', |
12470
|
|
|
|
|
|
|
'Rancho Banquete', |
12471
|
|
|
|
|
|
|
'Rancho Calaveras', |
12472
|
|
|
|
|
|
|
'Rancho Chico', |
12473
|
|
|
|
|
|
|
'Rancho Cordova', |
12474
|
|
|
|
|
|
|
'Rancho Cucamonga', |
12475
|
|
|
|
|
|
|
'Rancho Mirage', |
12476
|
|
|
|
|
|
|
'Rancho Murieta', |
12477
|
|
|
|
|
|
|
'Rancho Palos Verdes', |
12478
|
|
|
|
|
|
|
'Rancho San Diego', |
12479
|
|
|
|
|
|
|
'Rancho Santa Fe', |
12480
|
|
|
|
|
|
|
'Rancho Santa Margarita', |
12481
|
|
|
|
|
|
|
'Rancho Tehama Reserve', |
12482
|
|
|
|
|
|
|
'Rancho Viejo', |
12483
|
|
|
|
|
|
|
'Ranchos Penitas West', |
12484
|
|
|
|
|
|
|
'Ranchos de Taos', |
12485
|
|
|
|
|
|
|
'Randalia', |
12486
|
|
|
|
|
|
|
'Randall', |
12487
|
|
|
|
|
|
|
'Randallstown', |
12488
|
|
|
|
|
|
|
'Randleman', |
12489
|
|
|
|
|
|
|
'Randlett', |
12490
|
|
|
|
|
|
|
'Randolph', |
12491
|
|
|
|
|
|
|
'Random Lake', |
12492
|
|
|
|
|
|
|
'Randsburg', |
12493
|
|
|
|
|
|
|
'Rangely', |
12494
|
|
|
|
|
|
|
'Ranger', |
12495
|
|
|
|
|
|
|
'Rangerville', |
12496
|
|
|
|
|
|
|
'Ranier', |
12497
|
|
|
|
|
|
|
'Rankin', |
12498
|
|
|
|
|
|
|
'Ranlo', |
12499
|
|
|
|
|
|
|
'Ransom', |
12500
|
|
|
|
|
|
|
'Ransom Canyon', |
12501
|
|
|
|
|
|
|
'Ransomville', |
12502
|
|
|
|
|
|
|
'Rantoul', |
12503
|
|
|
|
|
|
|
'Raoul', |
12504
|
|
|
|
|
|
|
'Rapid City', |
12505
|
|
|
|
|
|
|
'Rapid Valley', |
12506
|
|
|
|
|
|
|
'Rapids', |
12507
|
|
|
|
|
|
|
'Rapids City', |
12508
|
|
|
|
|
|
|
'Rarden', |
12509
|
|
|
|
|
|
|
'Raritan', |
12510
|
|
|
|
|
|
|
'Ratamosa', |
12511
|
|
|
|
|
|
|
'Ratcliff', |
12512
|
|
|
|
|
|
|
'Rathbun', |
12513
|
|
|
|
|
|
|
'Rathdrum', |
12514
|
|
|
|
|
|
|
'Ratliff City', |
12515
|
|
|
|
|
|
|
'Raton', |
12516
|
|
|
|
|
|
|
'Rattan', |
12517
|
|
|
|
|
|
|
'Ravalli', |
12518
|
|
|
|
|
|
|
'Raven', |
12519
|
|
|
|
|
|
|
'Ravena', |
12520
|
|
|
|
|
|
|
'Ravenden', |
12521
|
|
|
|
|
|
|
'Ravenden Springs', |
12522
|
|
|
|
|
|
|
'Ravenel', |
12523
|
|
|
|
|
|
|
'Ravenna', |
12524
|
|
|
|
|
|
|
'Ravensdale', |
12525
|
|
|
|
|
|
|
'Ravenswood', |
12526
|
|
|
|
|
|
|
'Ravenswood Estates', |
12527
|
|
|
|
|
|
|
'Ravenwood', |
12528
|
|
|
|
|
|
|
'Ravia', |
12529
|
|
|
|
|
|
|
'Ravine', |
12530
|
|
|
|
|
|
|
'Ravinia', |
12531
|
|
|
|
|
|
|
'Rawlins', |
12532
|
|
|
|
|
|
|
'Rawson', |
12533
|
|
|
|
|
|
|
'Ray', |
12534
|
|
|
|
|
|
|
'Ray City', |
12535
|
|
|
|
|
|
|
'Rayland', |
12536
|
|
|
|
|
|
|
'Rayle', |
12537
|
|
|
|
|
|
|
'Raymer', |
12538
|
|
|
|
|
|
|
'Raymond', |
12539
|
|
|
|
|
|
|
'Raymondville', |
12540
|
|
|
|
|
|
|
'Raymore', |
12541
|
|
|
|
|
|
|
'Rayne', |
12542
|
|
|
|
|
|
|
'Raynham', |
12543
|
|
|
|
|
|
|
'Raynham Center', |
12544
|
|
|
|
|
|
|
'Raytown', |
12545
|
|
|
|
|
|
|
'Rayville', |
12546
|
|
|
|
|
|
|
'Raywick', |
12547
|
|
|
|
|
|
|
'Rea', |
12548
|
|
|
|
|
|
|
'Reader', |
12549
|
|
|
|
|
|
|
'Reading', |
12550
|
|
|
|
|
|
|
'Readlyn', |
12551
|
|
|
|
|
|
|
'Readstown', |
12552
|
|
|
|
|
|
|
'Realitos', |
12553
|
|
|
|
|
|
|
'Reamstown', |
12554
|
|
|
|
|
|
|
'Reardan', |
12555
|
|
|
|
|
|
|
'Reasnor', |
12556
|
|
|
|
|
|
|
'Rebecca', |
12557
|
|
|
|
|
|
|
'Rebersburg', |
12558
|
|
|
|
|
|
|
'Rector', |
12559
|
|
|
|
|
|
|
'Red Bank', |
12560
|
|
|
|
|
|
|
'Red Bay', |
12561
|
|
|
|
|
|
|
'Red Bluff', |
12562
|
|
|
|
|
|
|
'Red Boiling Springs', |
12563
|
|
|
|
|
|
|
'Red Bud', |
12564
|
|
|
|
|
|
|
'Red Butte', |
12565
|
|
|
|
|
|
|
'Red Chute', |
12566
|
|
|
|
|
|
|
'Red Cliff', |
12567
|
|
|
|
|
|
|
'Red Cloud', |
12568
|
|
|
|
|
|
|
'Red Creek', |
12569
|
|
|
|
|
|
|
'Red Devil', |
12570
|
|
|
|
|
|
|
'Red Dog Mine', |
12571
|
|
|
|
|
|
|
'Red Feather Lakes', |
12572
|
|
|
|
|
|
|
'Red Hill', |
12573
|
|
|
|
|
|
|
'Red Hook', |
12574
|
|
|
|
|
|
|
'Red Jacket', |
12575
|
|
|
|
|
|
|
'Red Lake', |
12576
|
|
|
|
|
|
|
'Red Lake Falls', |
12577
|
|
|
|
|
|
|
'Red Level', |
12578
|
|
|
|
|
|
|
'Red Lick', |
12579
|
|
|
|
|
|
|
'Red Lion', |
12580
|
|
|
|
|
|
|
'Red Lodge', |
12581
|
|
|
|
|
|
|
'Red Mesa', |
12582
|
|
|
|
|
|
|
'Red Oak', |
12583
|
|
|
|
|
|
|
'Red Oaks Mill', |
12584
|
|
|
|
|
|
|
'Red River', |
12585
|
|
|
|
|
|
|
'Red Rock', |
12586
|
|
|
|
|
|
|
'Red Springs', |
12587
|
|
|
|
|
|
|
'Red Wing', |
12588
|
|
|
|
|
|
|
'Redan', |
12589
|
|
|
|
|
|
|
'Redbird', |
12590
|
|
|
|
|
|
|
'Redbird Smith', |
12591
|
|
|
|
|
|
|
'Redby', |
12592
|
|
|
|
|
|
|
'Reddick', |
12593
|
|
|
|
|
|
|
'Redding', |
12594
|
|
|
|
|
|
|
'Redfield', |
12595
|
|
|
|
|
|
|
'Redford', |
12596
|
|
|
|
|
|
|
'Redgranite', |
12597
|
|
|
|
|
|
|
'Redings Mill', |
12598
|
|
|
|
|
|
|
'Redington Beach', |
12599
|
|
|
|
|
|
|
'Redington Shores', |
12600
|
|
|
|
|
|
|
'Redkey', |
12601
|
|
|
|
|
|
|
'Redland', |
12602
|
|
|
|
|
|
|
'Redlands', |
12603
|
|
|
|
|
|
|
'Redmon', |
12604
|
|
|
|
|
|
|
'Redmond', |
12605
|
|
|
|
|
|
|
'Redondo Beach', |
12606
|
|
|
|
|
|
|
'Redstone Arsenal', |
12607
|
|
|
|
|
|
|
'Redwater', |
12608
|
|
|
|
|
|
|
'Redway', |
12609
|
|
|
|
|
|
|
'Redwood', |
12610
|
|
|
|
|
|
|
'Redwood City', |
12611
|
|
|
|
|
|
|
'Redwood Falls', |
12612
|
|
|
|
|
|
|
'Ree Heights', |
12613
|
|
|
|
|
|
|
'Reece City', |
12614
|
|
|
|
|
|
|
'Reed', |
12615
|
|
|
|
|
|
|
'Reed City', |
12616
|
|
|
|
|
|
|
'Reed Creek', |
12617
|
|
|
|
|
|
|
'Reed Point', |
12618
|
|
|
|
|
|
|
'Reeder', |
12619
|
|
|
|
|
|
|
'Reedley', |
12620
|
|
|
|
|
|
|
'Reeds', |
12621
|
|
|
|
|
|
|
'Reeds Spring', |
12622
|
|
|
|
|
|
|
'Reedsburg', |
12623
|
|
|
|
|
|
|
'Reedsport', |
12624
|
|
|
|
|
|
|
'Reedsville', |
12625
|
|
|
|
|
|
|
'Reedy', |
12626
|
|
|
|
|
|
|
'Reese', |
12627
|
|
|
|
|
|
|
'Reese Center', |
12628
|
|
|
|
|
|
|
'Reeseville', |
12629
|
|
|
|
|
|
|
'Reeves', |
12630
|
|
|
|
|
|
|
'Reevesville', |
12631
|
|
|
|
|
|
|
'Reform', |
12632
|
|
|
|
|
|
|
'Refugio', |
12633
|
|
|
|
|
|
|
'Regal', |
12634
|
|
|
|
|
|
|
'Regan', |
12635
|
|
|
|
|
|
|
'Regent', |
12636
|
|
|
|
|
|
|
'Regina', |
12637
|
|
|
|
|
|
|
'Register', |
12638
|
|
|
|
|
|
|
'Rehobeth', |
12639
|
|
|
|
|
|
|
'Rehoboth Beach', |
12640
|
|
|
|
|
|
|
'Reid Hope King', |
12641
|
|
|
|
|
|
|
'Reidland', |
12642
|
|
|
|
|
|
|
'Reidsville', |
12643
|
|
|
|
|
|
|
'Reidville', |
12644
|
|
|
|
|
|
|
'Reiffton', |
12645
|
|
|
|
|
|
|
'Reile\'s Acres', |
12646
|
|
|
|
|
|
|
'Reinbeck', |
12647
|
|
|
|
|
|
|
'Reinerton-Orwin-Muir', |
12648
|
|
|
|
|
|
|
'Reisterstown', |
12649
|
|
|
|
|
|
|
'Reklaw', |
12650
|
|
|
|
|
|
|
'Relampago', |
12651
|
|
|
|
|
|
|
'Reliance', |
12652
|
|
|
|
|
|
|
'Rembert', |
12653
|
|
|
|
|
|
|
'Rembrandt', |
12654
|
|
|
|
|
|
|
'Remer', |
12655
|
|
|
|
|
|
|
'Remerton', |
12656
|
|
|
|
|
|
|
'Reminderville', |
12657
|
|
|
|
|
|
|
'Remington', |
12658
|
|
|
|
|
|
|
'Remsen', |
12659
|
|
|
|
|
|
|
'Remsenburg-Speonk', |
12660
|
|
|
|
|
|
|
'Remy', |
12661
|
|
|
|
|
|
|
'Rendon', |
12662
|
|
|
|
|
|
|
'Rendville', |
12663
|
|
|
|
|
|
|
'Renfrow', |
12664
|
|
|
|
|
|
|
'Renick', |
12665
|
|
|
|
|
|
|
'Rennert', |
12666
|
|
|
|
|
|
|
'Renningers', |
12667
|
|
|
|
|
|
|
'Reno', |
12668
|
|
|
|
|
|
|
'Renova', |
12669
|
|
|
|
|
|
|
'Renovo', |
12670
|
|
|
|
|
|
|
'Rensselaer', |
12671
|
|
|
|
|
|
|
'Rensselaer Falls', |
12672
|
|
|
|
|
|
|
'Rentiesville', |
12673
|
|
|
|
|
|
|
'Renton', |
12674
|
|
|
|
|
|
|
'Rentz', |
12675
|
|
|
|
|
|
|
'Renville', |
12676
|
|
|
|
|
|
|
'Renwick', |
12677
|
|
|
|
|
|
|
'Repton', |
12678
|
|
|
|
|
|
|
'Republic', |
12679
|
|
|
|
|
|
|
'Republican City', |
12680
|
|
|
|
|
|
|
'Resaca', |
12681
|
|
|
|
|
|
|
'Reserve', |
12682
|
|
|
|
|
|
|
'Reserve Township', |
12683
|
|
|
|
|
|
|
'Rest Haven', |
12684
|
|
|
|
|
|
|
'Reston', |
12685
|
|
|
|
|
|
|
'Retreat', |
12686
|
|
|
|
|
|
|
'Reubens', |
12687
|
|
|
|
|
|
|
'Revere', |
12688
|
|
|
|
|
|
|
'Revillo', |
12689
|
|
|
|
|
|
|
'Rewey', |
12690
|
|
|
|
|
|
|
'Rex', |
12691
|
|
|
|
|
|
|
'Rexburg', |
12692
|
|
|
|
|
|
|
'Rexford', |
12693
|
|
|
|
|
|
|
'Reydon', |
12694
|
|
|
|
|
|
|
'Reyno', |
12695
|
|
|
|
|
|
|
'Reynolds', |
12696
|
|
|
|
|
|
|
'Reynoldsburg', |
12697
|
|
|
|
|
|
|
'Reynoldsville', |
12698
|
|
|
|
|
|
|
'Rhame', |
12699
|
|
|
|
|
|
|
'Rheems', |
12700
|
|
|
|
|
|
|
'Rhine', |
12701
|
|
|
|
|
|
|
'Rhinebeck', |
12702
|
|
|
|
|
|
|
'Rhineland', |
12703
|
|
|
|
|
|
|
'Rhinelander', |
12704
|
|
|
|
|
|
|
'Rhodell', |
12705
|
|
|
|
|
|
|
'Rhodes', |
12706
|
|
|
|
|
|
|
'Rhodhiss', |
12707
|
|
|
|
|
|
|
'Rhome', |
12708
|
|
|
|
|
|
|
'Rialto', |
12709
|
|
|
|
|
|
|
'Rib Lake', |
12710
|
|
|
|
|
|
|
'Rib Mountain', |
12711
|
|
|
|
|
|
|
'Rice', |
12712
|
|
|
|
|
|
|
'Rice Lake', |
12713
|
|
|
|
|
|
|
'Riceboro', |
12714
|
|
|
|
|
|
|
'Rices Landing', |
12715
|
|
|
|
|
|
|
'Riceville', |
12716
|
|
|
|
|
|
|
'Rich Creek', |
12717
|
|
|
|
|
|
|
'Rich Hill', |
12718
|
|
|
|
|
|
|
'Rich Square', |
12719
|
|
|
|
|
|
|
'Richards', |
12720
|
|
|
|
|
|
|
'Richardson', |
12721
|
|
|
|
|
|
|
'Richardton', |
12722
|
|
|
|
|
|
|
'Richboro', |
12723
|
|
|
|
|
|
|
'Richburg', |
12724
|
|
|
|
|
|
|
'Richey', |
12725
|
|
|
|
|
|
|
'Richfield', |
12726
|
|
|
|
|
|
|
'Richfield Springs', |
12727
|
|
|
|
|
|
|
'Richgrove', |
12728
|
|
|
|
|
|
|
'Richland', |
12729
|
|
|
|
|
|
|
'Richland Center', |
12730
|
|
|
|
|
|
|
'Richland Hills', |
12731
|
|
|
|
|
|
|
'Richland Springs', |
12732
|
|
|
|
|
|
|
'Richlands', |
12733
|
|
|
|
|
|
|
'Richlandtown', |
12734
|
|
|
|
|
|
|
'Richlawn', |
12735
|
|
|
|
|
|
|
'Richmond', |
12736
|
|
|
|
|
|
|
'Richmond Heights', |
12737
|
|
|
|
|
|
|
'Richmond Hill', |
12738
|
|
|
|
|
|
|
'Richmond West', |
12739
|
|
|
|
|
|
|
'Richmondville', |
12740
|
|
|
|
|
|
|
'Richton', |
12741
|
|
|
|
|
|
|
'Richton Park', |
12742
|
|
|
|
|
|
|
'Richview', |
12743
|
|
|
|
|
|
|
'Richville', |
12744
|
|
|
|
|
|
|
'Richwood', |
12745
|
|
|
|
|
|
|
'Rickardsville', |
12746
|
|
|
|
|
|
|
'Ricketts', |
12747
|
|
|
|
|
|
|
'Rickreall', |
12748
|
|
|
|
|
|
|
'Rico', |
12749
|
|
|
|
|
|
|
'Riddle', |
12750
|
|
|
|
|
|
|
'Riddleville', |
12751
|
|
|
|
|
|
|
'Ridge', |
12752
|
|
|
|
|
|
|
'Ridge Farm', |
12753
|
|
|
|
|
|
|
'Ridge Manor', |
12754
|
|
|
|
|
|
|
'Ridge Spring', |
12755
|
|
|
|
|
|
|
'Ridge Wood Heights', |
12756
|
|
|
|
|
|
|
'Ridgecrest', |
12757
|
|
|
|
|
|
|
'Ridgefield', |
12758
|
|
|
|
|
|
|
'Ridgefield Park', |
12759
|
|
|
|
|
|
|
'Ridgeland', |
12760
|
|
|
|
|
|
|
'Ridgeley', |
12761
|
|
|
|
|
|
|
'Ridgely', |
12762
|
|
|
|
|
|
|
'Ridgemark', |
12763
|
|
|
|
|
|
|
'Ridgeside', |
12764
|
|
|
|
|
|
|
'Ridgetop', |
12765
|
|
|
|
|
|
|
'Ridgeville', |
12766
|
|
|
|
|
|
|
'Ridgeway', |
12767
|
|
|
|
|
|
|
'Ridgewood', |
12768
|
|
|
|
|
|
|
'Ridgway', |
12769
|
|
|
|
|
|
|
'Ridley Park', |
12770
|
|
|
|
|
|
|
'Ridott', |
12771
|
|
|
|
|
|
|
'Riegelsville', |
12772
|
|
|
|
|
|
|
'Rienzi', |
12773
|
|
|
|
|
|
|
'Riesel', |
12774
|
|
|
|
|
|
|
'Rifle', |
12775
|
|
|
|
|
|
|
'Rifton', |
12776
|
|
|
|
|
|
|
'Rigby', |
12777
|
|
|
|
|
|
|
'Riggins', |
12778
|
|
|
|
|
|
|
'Riley', |
12779
|
|
|
|
|
|
|
'Rimersburg', |
12780
|
|
|
|
|
|
|
'Rinard', |
12781
|
|
|
|
|
|
|
'Rincon', |
12782
|
|
|
|
|
|
|
'Rincón', |
12783
|
|
|
|
|
|
|
'Ringgold', |
12784
|
|
|
|
|
|
|
'Ringling', |
12785
|
|
|
|
|
|
|
'Ringsted', |
12786
|
|
|
|
|
|
|
'Ringtown', |
12787
|
|
|
|
|
|
|
'Ringwood', |
12788
|
|
|
|
|
|
|
'Rio', |
12789
|
|
|
|
|
|
|
'Rio Bravo', |
12790
|
|
|
|
|
|
|
'Rio Chiquito', |
12791
|
|
|
|
|
|
|
'Rio Communities', |
12792
|
|
|
|
|
|
|
'Rio Communities North', |
12793
|
|
|
|
|
|
|
'Rio Dell', |
12794
|
|
|
|
|
|
|
'Rio Grande', |
12795
|
|
|
|
|
|
|
'Rio Grande City', |
12796
|
|
|
|
|
|
|
'Rio Hondo', |
12797
|
|
|
|
|
|
|
'Rio Linda', |
12798
|
|
|
|
|
|
|
'Rio Lucio', |
12799
|
|
|
|
|
|
|
'Rio Rancho', |
12800
|
|
|
|
|
|
|
'Rio Rico Northeast', |
12801
|
|
|
|
|
|
|
'Rio Rico Northwest', |
12802
|
|
|
|
|
|
|
'Rio Rico Southeast', |
12803
|
|
|
|
|
|
|
'Rio Rico Southwest', |
12804
|
|
|
|
|
|
|
'Rio Verde', |
12805
|
|
|
|
|
|
|
'Rio Vista', |
12806
|
|
|
|
|
|
|
'Rio del Mar', |
12807
|
|
|
|
|
|
|
'Rio en Medio', |
12808
|
|
|
|
|
|
|
'Ripley', |
12809
|
|
|
|
|
|
|
'Ripon', |
12810
|
|
|
|
|
|
|
'Rippey', |
12811
|
|
|
|
|
|
|
'Ririe', |
12812
|
|
|
|
|
|
|
'Risco', |
12813
|
|
|
|
|
|
|
'Rising City', |
12814
|
|
|
|
|
|
|
'Rising Star', |
12815
|
|
|
|
|
|
|
'Rising Sun', |
12816
|
|
|
|
|
|
|
'Rising Sun-Lebanon', |
12817
|
|
|
|
|
|
|
'Risingsun', |
12818
|
|
|
|
|
|
|
'Rison', |
12819
|
|
|
|
|
|
|
'Ritchey', |
12820
|
|
|
|
|
|
|
'Rittman', |
12821
|
|
|
|
|
|
|
'Ritzville', |
12822
|
|
|
|
|
|
|
'Riva', |
12823
|
|
|
|
|
|
|
'River Bend', |
12824
|
|
|
|
|
|
|
'River Bluff', |
12825
|
|
|
|
|
|
|
'River Bottom', |
12826
|
|
|
|
|
|
|
'River Edge', |
12827
|
|
|
|
|
|
|
'River Falls', |
12828
|
|
|
|
|
|
|
'River Forest', |
12829
|
|
|
|
|
|
|
'River Grove', |
12830
|
|
|
|
|
|
|
'River Heights', |
12831
|
|
|
|
|
|
|
'River Hills', |
12832
|
|
|
|
|
|
|
'River Oaks', |
12833
|
|
|
|
|
|
|
'River Ridge', |
12834
|
|
|
|
|
|
|
'River Road', |
12835
|
|
|
|
|
|
|
'River Rouge', |
12836
|
|
|
|
|
|
|
'River Vale', |
12837
|
|
|
|
|
|
|
'Riverbank', |
12838
|
|
|
|
|
|
|
'Riverbend', |
12839
|
|
|
|
|
|
|
'Riverdale', |
12840
|
|
|
|
|
|
|
'Riverdale Park', |
12841
|
|
|
|
|
|
|
'Rivergrove', |
12842
|
|
|
|
|
|
|
'Riverhead', |
12843
|
|
|
|
|
|
|
'Riverland Village', |
12844
|
|
|
|
|
|
|
'Riverlea', |
12845
|
|
|
|
|
|
|
'Riverside', |
12846
|
|
|
|
|
|
|
'Riverton', |
12847
|
|
|
|
|
|
|
'Riverton-Boulevard Park', |
12848
|
|
|
|
|
|
|
'Riverview', |
12849
|
|
|
|
|
|
|
'Riverwood', |
12850
|
|
|
|
|
|
|
'Riverwoods', |
12851
|
|
|
|
|
|
|
'Rives', |
12852
|
|
|
|
|
|
|
'Rivesville', |
12853
|
|
|
|
|
|
|
'Riviera Beach', |
12854
|
|
|
|
|
|
|
'Roachdale', |
12855
|
|
|
|
|
|
|
'Roaming Shores', |
12856
|
|
|
|
|
|
|
'Roan Mountain', |
12857
|
|
|
|
|
|
|
'Roann', |
12858
|
|
|
|
|
|
|
'Roanoke', |
12859
|
|
|
|
|
|
|
'Roanoke Rapids', |
12860
|
|
|
|
|
|
|
'Roaring Spring', |
12861
|
|
|
|
|
|
|
'Roaring Springs', |
12862
|
|
|
|
|
|
|
'Robards', |
12863
|
|
|
|
|
|
|
'Robbins', |
12864
|
|
|
|
|
|
|
'Robbinsdale', |
12865
|
|
|
|
|
|
|
'Robbinsville', |
12866
|
|
|
|
|
|
|
'Robeline', |
12867
|
|
|
|
|
|
|
'Robersonville', |
12868
|
|
|
|
|
|
|
'Robert Lee', |
12869
|
|
|
|
|
|
|
'Roberta', |
12870
|
|
|
|
|
|
|
'Roberts', |
12871
|
|
|
|
|
|
|
'Robertsdale', |
12872
|
|
|
|
|
|
|
'Robertson', |
12873
|
|
|
|
|
|
|
'Robesonia', |
12874
|
|
|
|
|
|
|
'Robin Glen-Indiantown', |
12875
|
|
|
|
|
|
|
'Robins', |
12876
|
|
|
|
|
|
|
'Robins AFB', |
12877
|
|
|
|
|
|
|
'Robinson', |
12878
|
|
|
|
|
|
|
'Robinson Township', |
12879
|
|
|
|
|
|
|
'Robinwood', |
12880
|
|
|
|
|
|
|
'Robstown', |
12881
|
|
|
|
|
|
|
'Roby', |
12882
|
|
|
|
|
|
|
'Roca', |
12883
|
|
|
|
|
|
|
'Rochelle', |
12884
|
|
|
|
|
|
|
'Rochelle Park', |
12885
|
|
|
|
|
|
|
'Rocheport', |
12886
|
|
|
|
|
|
|
'Rochester', |
12887
|
|
|
|
|
|
|
'Rochester Hills', |
12888
|
|
|
|
|
|
|
'Rock City', |
12889
|
|
|
|
|
|
|
'Rock Creek', |
12890
|
|
|
|
|
|
|
'Rock Falls', |
12891
|
|
|
|
|
|
|
'Rock Hall', |
12892
|
|
|
|
|
|
|
'Rock Hill', |
12893
|
|
|
|
|
|
|
'Rock Island', |
12894
|
|
|
|
|
|
|
'Rock Island Arsenal', |
12895
|
|
|
|
|
|
|
'Rock Mills', |
12896
|
|
|
|
|
|
|
'Rock Point', |
12897
|
|
|
|
|
|
|
'Rock Port', |
12898
|
|
|
|
|
|
|
'Rock Rapids', |
12899
|
|
|
|
|
|
|
'Rock River', |
12900
|
|
|
|
|
|
|
'Rock Springs', |
12901
|
|
|
|
|
|
|
'Rock Valley', |
12902
|
|
|
|
|
|
|
'Rockaway', |
12903
|
|
|
|
|
|
|
'Rockaway Beach', |
12904
|
|
|
|
|
|
|
'Rockbridge', |
12905
|
|
|
|
|
|
|
'Rockcreek', |
12906
|
|
|
|
|
|
|
'Rockdale', |
12907
|
|
|
|
|
|
|
'Rockfish', |
12908
|
|
|
|
|
|
|
'Rockford', |
12909
|
|
|
|
|
|
|
'Rockham', |
12910
|
|
|
|
|
|
|
'Rockhill Furnace', |
12911
|
|
|
|
|
|
|
'Rockingham', |
12912
|
|
|
|
|
|
|
'Rocklake', |
12913
|
|
|
|
|
|
|
'Rockland', |
12914
|
|
|
|
|
|
|
'Rockledge', |
12915
|
|
|
|
|
|
|
'Rockleigh', |
12916
|
|
|
|
|
|
|
'Rocklin', |
12917
|
|
|
|
|
|
|
'Rockmart', |
12918
|
|
|
|
|
|
|
'Rockport', |
12919
|
|
|
|
|
|
|
'Rocksprings', |
12920
|
|
|
|
|
|
|
'Rockton', |
12921
|
|
|
|
|
|
|
'Rockvale', |
12922
|
|
|
|
|
|
|
'Rockville', |
12923
|
|
|
|
|
|
|
'Rockville Centre', |
12924
|
|
|
|
|
|
|
'Rockwall', |
12925
|
|
|
|
|
|
|
'Rockwell', |
12926
|
|
|
|
|
|
|
'Rockwell City', |
12927
|
|
|
|
|
|
|
'Rockwood', |
12928
|
|
|
|
|
|
|
'Rocky', |
12929
|
|
|
|
|
|
|
'Rocky Ford', |
12930
|
|
|
|
|
|
|
'Rocky Hill', |
12931
|
|
|
|
|
|
|
'Rocky Mound', |
12932
|
|
|
|
|
|
|
'Rocky Mount', |
12933
|
|
|
|
|
|
|
'Rocky Mountain', |
12934
|
|
|
|
|
|
|
'Rocky Point', |
12935
|
|
|
|
|
|
|
'Rocky Ridge', |
12936
|
|
|
|
|
|
|
'Rocky Ripple', |
12937
|
|
|
|
|
|
|
'Rocky River', |
12938
|
|
|
|
|
|
|
'Rodeo', |
12939
|
|
|
|
|
|
|
'Rodessa', |
12940
|
|
|
|
|
|
|
'Rodman', |
12941
|
|
|
|
|
|
|
'Rodney', |
12942
|
|
|
|
|
|
|
'Rodney Village', |
12943
|
|
|
|
|
|
|
'Roe', |
12944
|
|
|
|
|
|
|
'Roebuck', |
12945
|
|
|
|
|
|
|
'Roeland Park', |
12946
|
|
|
|
|
|
|
'Roff', |
12947
|
|
|
|
|
|
|
'Rogers', |
12948
|
|
|
|
|
|
|
'Rogers City', |
12949
|
|
|
|
|
|
|
'Rogersville', |
12950
|
|
|
|
|
|
|
'Rogue River', |
12951
|
|
|
|
|
|
|
'Rohnert Park', |
12952
|
|
|
|
|
|
|
'Rohrersville', |
12953
|
|
|
|
|
|
|
'Rohrsburg', |
12954
|
|
|
|
|
|
|
'Roland', |
12955
|
|
|
|
|
|
|
'Rolesville', |
12956
|
|
|
|
|
|
|
'Rolette', |
12957
|
|
|
|
|
|
|
'Rolfe', |
12958
|
|
|
|
|
|
|
'Rolla', |
12959
|
|
|
|
|
|
|
'Rolling Fields', |
12960
|
|
|
|
|
|
|
'Rolling Fork', |
12961
|
|
|
|
|
|
|
'Rolling Hills', |
12962
|
|
|
|
|
|
|
'Rolling Hills Estates', |
12963
|
|
|
|
|
|
|
'Rolling Meadows', |
12964
|
|
|
|
|
|
|
'Rolling Oaks', |
12965
|
|
|
|
|
|
|
'Rollingstone', |
12966
|
|
|
|
|
|
|
'Rollingwood', |
12967
|
|
|
|
|
|
|
'Rollins', |
12968
|
|
|
|
|
|
|
'Roma', |
12969
|
|
|
|
|
|
|
'Roma Creek', |
12970
|
|
|
|
|
|
|
'Roman Forest', |
12971
|
|
|
|
|
|
|
'Rome', |
12972
|
|
|
|
|
|
|
'Rome City', |
12973
|
|
|
|
|
|
|
'Romeo', |
12974
|
|
|
|
|
|
|
'Romeoville', |
12975
|
|
|
|
|
|
|
'Romney', |
12976
|
|
|
|
|
|
|
'Romoland', |
12977
|
|
|
|
|
|
|
'Romulus', |
12978
|
|
|
|
|
|
|
'Ronald', |
12979
|
|
|
|
|
|
|
'Ronan', |
12980
|
|
|
|
|
|
|
'Ronceverte', |
12981
|
|
|
|
|
|
|
'Ronda', |
12982
|
|
|
|
|
|
|
'Rondo', |
12983
|
|
|
|
|
|
|
'Ronkonkoma', |
12984
|
|
|
|
|
|
|
'Ronneby', |
12985
|
|
|
|
|
|
|
'Roodhouse', |
12986
|
|
|
|
|
|
|
'Roopville', |
12987
|
|
|
|
|
|
|
'Roosevelt', |
12988
|
|
|
|
|
|
|
'Roosevelt Gardens', |
12989
|
|
|
|
|
|
|
'Roosevelt Park', |
12990
|
|
|
|
|
|
|
'Roosevelt Roads', |
12991
|
|
|
|
|
|
|
'Roper', |
12992
|
|
|
|
|
|
|
'Ropesville', |
12993
|
|
|
|
|
|
|
'Rosa', |
12994
|
|
|
|
|
|
|
'Rosa Sánchez', |
12995
|
|
|
|
|
|
|
'Rosalia', |
12996
|
|
|
|
|
|
|
'Rosalie', |
12997
|
|
|
|
|
|
|
'Rosamond', |
12998
|
|
|
|
|
|
|
'Rosaryville', |
12999
|
|
|
|
|
|
|
'Roscoe', |
13000
|
|
|
|
|
|
|
'Roscommon', |
13001
|
|
|
|
|
|
|
'Rose Bud', |
13002
|
|
|
|
|
|
|
'Rose City', |
13003
|
|
|
|
|
|
|
'Rose Creek', |
13004
|
|
|
|
|
|
|
'Rose Hill', |
13005
|
|
|
|
|
|
|
'Rose Hill Acres', |
13006
|
|
|
|
|
|
|
'Rose Lodge', |
13007
|
|
|
|
|
|
|
'Rose Valley', |
13008
|
|
|
|
|
|
|
'Roseau', |
13009
|
|
|
|
|
|
|
'Roseboro', |
13010
|
|
|
|
|
|
|
'Rosebud', |
13011
|
|
|
|
|
|
|
'Roseburg', |
13012
|
|
|
|
|
|
|
'Roseburg North', |
13013
|
|
|
|
|
|
|
'Rosebush', |
13014
|
|
|
|
|
|
|
'Rosedale', |
13015
|
|
|
|
|
|
|
'Roseland', |
13016
|
|
|
|
|
|
|
'Roselawn', |
13017
|
|
|
|
|
|
|
'Roselle', |
13018
|
|
|
|
|
|
|
'Roselle Park', |
13019
|
|
|
|
|
|
|
'Rosemead', |
13020
|
|
|
|
|
|
|
'Rosemont', |
13021
|
|
|
|
|
|
|
'Rosemount', |
13022
|
|
|
|
|
|
|
'Rosenberg', |
13023
|
|
|
|
|
|
|
'Rosendale', |
13024
|
|
|
|
|
|
|
'Rosendale Village', |
13025
|
|
|
|
|
|
|
'Rosenhayn', |
13026
|
|
|
|
|
|
|
'Rosepine', |
13027
|
|
|
|
|
|
|
'Roseto', |
13028
|
|
|
|
|
|
|
'Roseville', |
13029
|
|
|
|
|
|
|
'Rosewood Heights', |
13030
|
|
|
|
|
|
|
'Rosholt', |
13031
|
|
|
|
|
|
|
'Rosiclare', |
13032
|
|
|
|
|
|
|
'Rosita North', |
13033
|
|
|
|
|
|
|
'Rosita South', |
13034
|
|
|
|
|
|
|
'Roslyn', |
13035
|
|
|
|
|
|
|
'Roslyn Estates', |
13036
|
|
|
|
|
|
|
'Roslyn Harbor', |
13037
|
|
|
|
|
|
|
'Roslyn Heights', |
13038
|
|
|
|
|
|
|
'Rosman', |
13039
|
|
|
|
|
|
|
'Ross', |
13040
|
|
|
|
|
|
|
'Ross Township', |
13041
|
|
|
|
|
|
|
'Rossburg', |
13042
|
|
|
|
|
|
|
'Rosser', |
13043
|
|
|
|
|
|
|
'Rossford', |
13044
|
|
|
|
|
|
|
'Rossie', |
13045
|
|
|
|
|
|
|
'Rossiter', |
13046
|
|
|
|
|
|
|
'Rosslyn Farms', |
13047
|
|
|
|
|
|
|
'Rossmoor', |
13048
|
|
|
|
|
|
|
'Rosston', |
13049
|
|
|
|
|
|
|
'Rossville', |
13050
|
|
|
|
|
|
|
'Roswell', |
13051
|
|
|
|
|
|
|
'Rotan', |
13052
|
|
|
|
|
|
|
'Rothbury', |
13053
|
|
|
|
|
|
|
'Rothsay', |
13054
|
|
|
|
|
|
|
'Rothschild', |
13055
|
|
|
|
|
|
|
'Rothsville', |
13056
|
|
|
|
|
|
|
'Rothville', |
13057
|
|
|
|
|
|
|
'Rotonda', |
13058
|
|
|
|
|
|
|
'Rotterdam', |
13059
|
|
|
|
|
|
|
'Rough Rock', |
13060
|
|
|
|
|
|
|
'Round Hill', |
13061
|
|
|
|
|
|
|
'Round Lake', |
13062
|
|
|
|
|
|
|
'Round Lake Beach', |
13063
|
|
|
|
|
|
|
'Round Lake Heights', |
13064
|
|
|
|
|
|
|
'Round Lake Park', |
13065
|
|
|
|
|
|
|
'Round Mountain', |
13066
|
|
|
|
|
|
|
'Round Rock', |
13067
|
|
|
|
|
|
|
'Round Top', |
13068
|
|
|
|
|
|
|
'Round Valley', |
13069
|
|
|
|
|
|
|
'Roundup', |
13070
|
|
|
|
|
|
|
'Rouses Point', |
13071
|
|
|
|
|
|
|
'Rouseville', |
13072
|
|
|
|
|
|
|
'Rouzerville', |
13073
|
|
|
|
|
|
|
'Rowan', |
13074
|
|
|
|
|
|
|
'Rowena', |
13075
|
|
|
|
|
|
|
'Rowesville', |
13076
|
|
|
|
|
|
|
'Rowland', |
13077
|
|
|
|
|
|
|
'Rowland Heights', |
13078
|
|
|
|
|
|
|
'Rowlesburg', |
13079
|
|
|
|
|
|
|
'Rowlett', |
13080
|
|
|
|
|
|
|
'Rowley', |
13081
|
|
|
|
|
|
|
'Roxana', |
13082
|
|
|
|
|
|
|
'Roxboro', |
13083
|
|
|
|
|
|
|
'Roxborough Park', |
13084
|
|
|
|
|
|
|
'Roxie', |
13085
|
|
|
|
|
|
|
'Roxobel', |
13086
|
|
|
|
|
|
|
'Roxton', |
13087
|
|
|
|
|
|
|
'Roy', |
13088
|
|
|
|
|
|
|
'Royal', |
13089
|
|
|
|
|
|
|
'Royal Center', |
13090
|
|
|
|
|
|
|
'Royal City', |
13091
|
|
|
|
|
|
|
'Royal Lakes', |
13092
|
|
|
|
|
|
|
'Royal Oak', |
13093
|
|
|
|
|
|
|
'Royal Palm Beach', |
13094
|
|
|
|
|
|
|
'Royal Palm Estates', |
13095
|
|
|
|
|
|
|
'Royal Palm Ranches', |
13096
|
|
|
|
|
|
|
'Royal Pines', |
13097
|
|
|
|
|
|
|
'Royalton', |
13098
|
|
|
|
|
|
|
'Royersford', |
13099
|
|
|
|
|
|
|
'Royse City', |
13100
|
|
|
|
|
|
|
'Royston', |
13101
|
|
|
|
|
|
|
'Rozel', |
13102
|
|
|
|
|
|
|
'Rubidoux', |
13103
|
|
|
|
|
|
|
'Ruby', |
13104
|
|
|
|
|
|
|
'Rudd', |
13105
|
|
|
|
|
|
|
'Rudolph', |
13106
|
|
|
|
|
|
|
'Rudy', |
13107
|
|
|
|
|
|
|
'Rudyard', |
13108
|
|
|
|
|
|
|
'Rufus', |
13109
|
|
|
|
|
|
|
'Rugby', |
13110
|
|
|
|
|
|
|
'Ruidoso', |
13111
|
|
|
|
|
|
|
'Ruidoso Downs', |
13112
|
|
|
|
|
|
|
'Rule', |
13113
|
|
|
|
|
|
|
'Ruleville', |
13114
|
|
|
|
|
|
|
'Rulo', |
13115
|
|
|
|
|
|
|
'Ruma', |
13116
|
|
|
|
|
|
|
'Rumford', |
13117
|
|
|
|
|
|
|
'Rumson', |
13118
|
|
|
|
|
|
|
'Runaway Bay', |
13119
|
|
|
|
|
|
|
'Runge', |
13120
|
|
|
|
|
|
|
'Runnells', |
13121
|
|
|
|
|
|
|
'Runnemede', |
13122
|
|
|
|
|
|
|
'Running Springs', |
13123
|
|
|
|
|
|
|
'Rupert', |
13124
|
|
|
|
|
|
|
'Rural Hall', |
13125
|
|
|
|
|
|
|
'Rural Hill', |
13126
|
|
|
|
|
|
|
'Rural Retreat', |
13127
|
|
|
|
|
|
|
'Rural Valley', |
13128
|
|
|
|
|
|
|
'Rush Center', |
13129
|
|
|
|
|
|
|
'Rush City', |
13130
|
|
|
|
|
|
|
'Rush Hill', |
13131
|
|
|
|
|
|
|
'Rush Springs', |
13132
|
|
|
|
|
|
|
'Rush Valley', |
13133
|
|
|
|
|
|
|
'Rushford', |
13134
|
|
|
|
|
|
|
'Rushford Village', |
13135
|
|
|
|
|
|
|
'Rushmere', |
13136
|
|
|
|
|
|
|
'Rushmore', |
13137
|
|
|
|
|
|
|
'Rushsylvania', |
13138
|
|
|
|
|
|
|
'Rushville', |
13139
|
|
|
|
|
|
|
'Rusk', |
13140
|
|
|
|
|
|
|
'Ruskin', |
13141
|
|
|
|
|
|
|
'Ruso', |
13142
|
|
|
|
|
|
|
'Russell', |
13143
|
|
|
|
|
|
|
'Russell Gardens', |
13144
|
|
|
|
|
|
|
'Russell Springs', |
13145
|
|
|
|
|
|
|
'Russells Point', |
13146
|
|
|
|
|
|
|
'Russellton', |
13147
|
|
|
|
|
|
|
'Russellville', |
13148
|
|
|
|
|
|
|
'Russia', |
13149
|
|
|
|
|
|
|
'Russian Mission', |
13150
|
|
|
|
|
|
|
'Russiaville', |
13151
|
|
|
|
|
|
|
'Rustburg', |
13152
|
|
|
|
|
|
|
'Ruston', |
13153
|
|
|
|
|
|
|
'Ruth', |
13154
|
|
|
|
|
|
|
'Rutherford', |
13155
|
|
|
|
|
|
|
'Rutherford College', |
13156
|
|
|
|
|
|
|
'Rutherfordton', |
13157
|
|
|
|
|
|
|
'Ruthton', |
13158
|
|
|
|
|
|
|
'Ruthven', |
13159
|
|
|
|
|
|
|
'Rutland', |
13160
|
|
|
|
|
|
|
'Rutledge', |
13161
|
|
|
|
|
|
|
'Ryan', |
13162
|
|
|
|
|
|
|
'Ryder', |
13163
|
|
|
|
|
|
|
'Rye', |
13164
|
|
|
|
|
|
|
'Rye Brook', |
13165
|
|
|
|
|
|
|
'Ryegate', |
13166
|
|
|
|
|
|
|
'Ryland Heights', |
13167
|
|
|
|
|
|
|
'RÃo Blanco', |
13168
|
|
|
|
|
|
|
'RÃo Cañas Abajo', |
13169
|
|
|
|
|
|
|
'RÃo Grande', |
13170
|
|
|
|
|
|
|
'RÃo Lajas', |
13171
|
|
|
|
|
|
|
'S.N.P.J.', |
13172
|
|
|
|
|
|
|
'Sabana', |
13173
|
|
|
|
|
|
|
'Sabana Eneas', |
13174
|
|
|
|
|
|
|
'Sabana Grande', |
13175
|
|
|
|
|
|
|
'Sabana Hoyos', |
13176
|
|
|
|
|
|
|
'Sabana Seca', |
13177
|
|
|
|
|
|
|
'Sabetha', |
13178
|
|
|
|
|
|
|
'Sabin', |
13179
|
|
|
|
|
|
|
'Sabina', |
13180
|
|
|
|
|
|
|
'Sabinal', |
13181
|
|
|
|
|
|
|
'Sabula', |
13182
|
|
|
|
|
|
|
'Sac City', |
13183
|
|
|
|
|
|
|
'Sacaton', |
13184
|
|
|
|
|
|
|
'Sachse', |
13185
|
|
|
|
|
|
|
'Sackets Harbor', |
13186
|
|
|
|
|
|
|
'Saco', |
13187
|
|
|
|
|
|
|
'Sacramento', |
13188
|
|
|
|
|
|
|
'Sacred Heart', |
13189
|
|
|
|
|
|
|
'Saddle Brook', |
13190
|
|
|
|
|
|
|
'Saddle Butte', |
13191
|
|
|
|
|
|
|
'Saddle River', |
13192
|
|
|
|
|
|
|
'Saddle Rock', |
13193
|
|
|
|
|
|
|
'Saddle Rock Estates', |
13194
|
|
|
|
|
|
|
'Sadieville', |
13195
|
|
|
|
|
|
|
'Sadler', |
13196
|
|
|
|
|
|
|
'Sadorus', |
13197
|
|
|
|
|
|
|
'Saegertown', |
13198
|
|
|
|
|
|
|
'Safety Harbor', |
13199
|
|
|
|
|
|
|
'Safford', |
13200
|
|
|
|
|
|
|
'Sag Harbor', |
13201
|
|
|
|
|
|
|
'Sagamore', |
13202
|
|
|
|
|
|
|
'Sagaponack', |
13203
|
|
|
|
|
|
|
'Sageville', |
13204
|
|
|
|
|
|
|
'Saginaw', |
13205
|
|
|
|
|
|
|
'Saginaw Township North', |
13206
|
|
|
|
|
|
|
'Saginaw Township South', |
13207
|
|
|
|
|
|
|
'Saguache', |
13208
|
|
|
|
|
|
|
'Sahuarita', |
13209
|
|
|
|
|
|
|
'Sailor Springs', |
13210
|
|
|
|
|
|
|
'Saks', |
13211
|
|
|
|
|
|
|
'Salado', |
13212
|
|
|
|
|
|
|
'Salamanca', |
13213
|
|
|
|
|
|
|
'Salamatof', |
13214
|
|
|
|
|
|
|
'Salamonia', |
13215
|
|
|
|
|
|
|
'Salcha', |
13216
|
|
|
|
|
|
|
'Sale City', |
13217
|
|
|
|
|
|
|
'Salem', |
13218
|
|
|
|
|
|
|
'Salemburg', |
13219
|
|
|
|
|
|
|
'Salesville', |
13220
|
|
|
|
|
|
|
'Salida', |
13221
|
|
|
|
|
|
|
'Salina', |
13222
|
|
|
|
|
|
|
'Salinas', |
13223
|
|
|
|
|
|
|
'Saline', |
13224
|
|
|
|
|
|
|
'Salineno', |
13225
|
|
|
|
|
|
|
'Salineville', |
13226
|
|
|
|
|
|
|
'Salisbury', |
13227
|
|
|
|
|
|
|
'Salix', |
13228
|
|
|
|
|
|
|
'Salix-Beauty Line Park', |
13229
|
|
|
|
|
|
|
'Salladasburg', |
13230
|
|
|
|
|
|
|
'Salley', |
13231
|
|
|
|
|
|
|
'Sallis', |
13232
|
|
|
|
|
|
|
'Sallisaw', |
13233
|
|
|
|
|
|
|
'Salmon', |
13234
|
|
|
|
|
|
|
'Salmon Brook', |
13235
|
|
|
|
|
|
|
'Salmon Creek', |
13236
|
|
|
|
|
|
|
'Salome', |
13237
|
|
|
|
|
|
|
'Salt Creek', |
13238
|
|
|
|
|
|
|
'Salt Lake City', |
13239
|
|
|
|
|
|
|
'Salt Lick', |
13240
|
|
|
|
|
|
|
'Saltaire', |
13241
|
|
|
|
|
|
|
'Saltillo', |
13242
|
|
|
|
|
|
|
'Salton City', |
13243
|
|
|
|
|
|
|
'Salton Sea Beach', |
13244
|
|
|
|
|
|
|
'Saltsburg', |
13245
|
|
|
|
|
|
|
'Saltville', |
13246
|
|
|
|
|
|
|
'Saluda', |
13247
|
|
|
|
|
|
|
'Salunga-Landisville', |
13248
|
|
|
|
|
|
|
'Salyersville', |
13249
|
|
|
|
|
|
|
'Samak', |
13250
|
|
|
|
|
|
|
'Samburg', |
13251
|
|
|
|
|
|
|
'Sammamish', |
13252
|
|
|
|
|
|
|
'Samnorwood', |
13253
|
|
|
|
|
|
|
'Samoset', |
13254
|
|
|
|
|
|
|
'Sams Corner', |
13255
|
|
|
|
|
|
|
'Samson', |
13256
|
|
|
|
|
|
|
'Samsula-Spruce Creek', |
13257
|
|
|
|
|
|
|
'San Andreas', |
13258
|
|
|
|
|
|
|
'San Angelo', |
13259
|
|
|
|
|
|
|
'San Anselmo', |
13260
|
|
|
|
|
|
|
'San Antonio', |
13261
|
|
|
|
|
|
|
'San Antonio Heights', |
13262
|
|
|
|
|
|
|
'San Ardo', |
13263
|
|
|
|
|
|
|
'San Augustine', |
13264
|
|
|
|
|
|
|
'San Benito', |
13265
|
|
|
|
|
|
|
'San Bernardino', |
13266
|
|
|
|
|
|
|
'San Bruno', |
13267
|
|
|
|
|
|
|
'San Buenaventura (Ventura)', |
13268
|
|
|
|
|
|
|
'San Carlos', |
13269
|
|
|
|
|
|
|
'San Carlos Park', |
13270
|
|
|
|
|
|
|
'San Clemente', |
13271
|
|
|
|
|
|
|
'San Diego', |
13272
|
|
|
|
|
|
|
'San Diego Country Estates', |
13273
|
|
|
|
|
|
|
'San Dimas', |
13274
|
|
|
|
|
|
|
'San Elizario', |
13275
|
|
|
|
|
|
|
'San Felipe', |
13276
|
|
|
|
|
|
|
'San Felipe Pueblo', |
13277
|
|
|
|
|
|
|
'San Fernando', |
13278
|
|
|
|
|
|
|
'San Francisco', |
13279
|
|
|
|
|
|
|
'San Gabriel', |
13280
|
|
|
|
|
|
|
'San Germán', |
13281
|
|
|
|
|
|
|
'San Geronimo', |
13282
|
|
|
|
|
|
|
'San Ignacio', |
13283
|
|
|
|
|
|
|
'San Ildefonso Pueblo', |
13284
|
|
|
|
|
|
|
'San Isidro', |
13285
|
|
|
|
|
|
|
'San Jacinto', |
13286
|
|
|
|
|
|
|
'San Joaquin', |
13287
|
|
|
|
|
|
|
'San Joaquin Hills', |
13288
|
|
|
|
|
|
|
'San Jon', |
13289
|
|
|
|
|
|
|
'San Jose', |
13290
|
|
|
|
|
|
|
'San José', |
13291
|
|
|
|
|
|
|
'San Juan', |
13292
|
|
|
|
|
|
|
'San Juan Bautista', |
13293
|
|
|
|
|
|
|
'San Juan Capistrano', |
13294
|
|
|
|
|
|
|
'San Leandro', |
13295
|
|
|
|
|
|
|
'San Leanna', |
13296
|
|
|
|
|
|
|
'San Leon', |
13297
|
|
|
|
|
|
|
'San Lorenzo', |
13298
|
|
|
|
|
|
|
'San Lucas', |
13299
|
|
|
|
|
|
|
'San Luis', |
13300
|
|
|
|
|
|
|
'San Luis Obispo', |
13301
|
|
|
|
|
|
|
'San Manuel', |
13302
|
|
|
|
|
|
|
'San Manuel-Linn', |
13303
|
|
|
|
|
|
|
'San Mar', |
13304
|
|
|
|
|
|
|
'San Marcos', |
13305
|
|
|
|
|
|
|
'San Marino', |
13306
|
|
|
|
|
|
|
'San Martin', |
13307
|
|
|
|
|
|
|
'San Mateo', |
13308
|
|
|
|
|
|
|
'San Miguel', |
13309
|
|
|
|
|
|
|
'San Pablo', |
13310
|
|
|
|
|
|
|
'San Patricio', |
13311
|
|
|
|
|
|
|
'San Pedro', |
13312
|
|
|
|
|
|
|
'San Perlita', |
13313
|
|
|
|
|
|
|
'San Pierre', |
13314
|
|
|
|
|
|
|
'San Rafael', |
13315
|
|
|
|
|
|
|
'San Ramon', |
13316
|
|
|
|
|
|
|
'San Saba', |
13317
|
|
|
|
|
|
|
'San Sebastián', |
13318
|
|
|
|
|
|
|
'San Ysidro', |
13319
|
|
|
|
|
|
|
'Sanatoga', |
13320
|
|
|
|
|
|
|
'Sanborn', |
13321
|
|
|
|
|
|
|
'Sanctuary', |
13322
|
|
|
|
|
|
|
'Sand City', |
13323
|
|
|
|
|
|
|
'Sand Fork', |
13324
|
|
|
|
|
|
|
'Sand Hill', |
13325
|
|
|
|
|
|
|
'Sand Hills', |
13326
|
|
|
|
|
|
|
'Sand Lake', |
13327
|
|
|
|
|
|
|
'Sand Point', |
13328
|
|
|
|
|
|
|
'Sand Ridge', |
13329
|
|
|
|
|
|
|
'Sand Rock', |
13330
|
|
|
|
|
|
|
'Sand Springs', |
13331
|
|
|
|
|
|
|
'Sandalfoot Cove', |
13332
|
|
|
|
|
|
|
'Sandborn', |
13333
|
|
|
|
|
|
|
'Sanders', |
13334
|
|
|
|
|
|
|
'Sanderson', |
13335
|
|
|
|
|
|
|
'Sandersville', |
13336
|
|
|
|
|
|
|
'Sandia', |
13337
|
|
|
|
|
|
|
'Sandoval', |
13338
|
|
|
|
|
|
|
'Sandpoint', |
13339
|
|
|
|
|
|
|
'Sands Point', |
13340
|
|
|
|
|
|
|
'Sandstone', |
13341
|
|
|
|
|
|
|
'Sandusky', |
13342
|
|
|
|
|
|
|
'Sandusky South', |
13343
|
|
|
|
|
|
|
'Sandwich', |
13344
|
|
|
|
|
|
|
'Sandy', |
13345
|
|
|
|
|
|
|
'Sandy Creek', |
13346
|
|
|
|
|
|
|
'Sandy Hollow-Escondidas', |
13347
|
|
|
|
|
|
|
'Sandy Hook', |
13348
|
|
|
|
|
|
|
'Sandy Lake', |
13349
|
|
|
|
|
|
|
'Sandy Level', |
13350
|
|
|
|
|
|
|
'Sandy Ridge', |
13351
|
|
|
|
|
|
|
'Sandy Springs', |
13352
|
|
|
|
|
|
|
'Sandy Valley', |
13353
|
|
|
|
|
|
|
'Sandyfield', |
13354
|
|
|
|
|
|
|
'Sandyville', |
13355
|
|
|
|
|
|
|
'Sanford', |
13356
|
|
|
|
|
|
|
'Sanger', |
13357
|
|
|
|
|
|
|
'Sangrey', |
13358
|
|
|
|
|
|
|
'Sanibel', |
13359
|
|
|
|
|
|
|
'Sankertown', |
13360
|
|
|
|
|
|
|
'Sanostee', |
13361
|
|
|
|
|
|
|
'Sans Souci', |
13362
|
|
|
|
|
|
|
'Sansom Park', |
13363
|
|
|
|
|
|
|
'Santa Ana', |
13364
|
|
|
|
|
|
|
'Santa Ana Pueblo', |
13365
|
|
|
|
|
|
|
'Santa Anna', |
13366
|
|
|
|
|
|
|
'Santa Barbara', |
13367
|
|
|
|
|
|
|
'Santa Bárbara', |
13368
|
|
|
|
|
|
|
'Santa Clara', |
13369
|
|
|
|
|
|
|
'Santa Clara Pueblo', |
13370
|
|
|
|
|
|
|
'Santa Clarita', |
13371
|
|
|
|
|
|
|
'Santa Claus', |
13372
|
|
|
|
|
|
|
'Santa Cruz', |
13373
|
|
|
|
|
|
|
'Santa Fe', |
13374
|
|
|
|
|
|
|
'Santa Fe Springs', |
13375
|
|
|
|
|
|
|
'Santa Isabel', |
13376
|
|
|
|
|
|
|
'Santa Maria', |
13377
|
|
|
|
|
|
|
'Santa Monica', |
13378
|
|
|
|
|
|
|
'Santa Paula', |
13379
|
|
|
|
|
|
|
'Santa Rosa', |
13380
|
|
|
|
|
|
|
'Santa Teresa', |
13381
|
|
|
|
|
|
|
'Santa Venetia', |
13382
|
|
|
|
|
|
|
'Santa Ynez', |
13383
|
|
|
|
|
|
|
'Santan', |
13384
|
|
|
|
|
|
|
'Santaquin', |
13385
|
|
|
|
|
|
|
'Santee', |
13386
|
|
|
|
|
|
|
'Santo Domingo', |
13387
|
|
|
|
|
|
|
'Santo Domingo Pueblo', |
13388
|
|
|
|
|
|
|
'Sappington', |
13389
|
|
|
|
|
|
|
'Sapulpa', |
13390
|
|
|
|
|
|
|
'Sarahsville', |
13391
|
|
|
|
|
|
|
'Saraland', |
13392
|
|
|
|
|
|
|
'Saranac', |
13393
|
|
|
|
|
|
|
'Saranac Lake', |
13394
|
|
|
|
|
|
|
'Sarasota', |
13395
|
|
|
|
|
|
|
'Sarasota Springs', |
13396
|
|
|
|
|
|
|
'Saratoga', |
13397
|
|
|
|
|
|
|
'Saratoga Springs', |
13398
|
|
|
|
|
|
|
'Sarcoxie', |
13399
|
|
|
|
|
|
|
'Sardinia', |
13400
|
|
|
|
|
|
|
'Sardis', |
13401
|
|
|
|
|
|
|
'Sardis City', |
13402
|
|
|
|
|
|
|
'Sarepta', |
13403
|
|
|
|
|
|
|
'Sargeant', |
13404
|
|
|
|
|
|
|
'Sargent', |
13405
|
|
|
|
|
|
|
'Sarles', |
13406
|
|
|
|
|
|
|
'Saronville', |
13407
|
|
|
|
|
|
|
'Sartell', |
13408
|
|
|
|
|
|
|
'Sasakwa', |
13409
|
|
|
|
|
|
|
'Sasser', |
13410
|
|
|
|
|
|
|
'Satanta', |
13411
|
|
|
|
|
|
|
'Satartia', |
13412
|
|
|
|
|
|
|
'Satellite Beach', |
13413
|
|
|
|
|
|
|
'Satsop', |
13414
|
|
|
|
|
|
|
'Satsuma', |
13415
|
|
|
|
|
|
|
'Satus', |
13416
|
|
|
|
|
|
|
'Saucier', |
13417
|
|
|
|
|
|
|
'Saugatuck', |
13418
|
|
|
|
|
|
|
'Saugerties', |
13419
|
|
|
|
|
|
|
'Saugerties South', |
13420
|
|
|
|
|
|
|
'Sauget', |
13421
|
|
|
|
|
|
|
'Saugus', |
13422
|
|
|
|
|
|
|
'Sauk Centre', |
13423
|
|
|
|
|
|
|
'Sauk City', |
13424
|
|
|
|
|
|
|
'Sauk Rapids', |
13425
|
|
|
|
|
|
|
'Sauk Village', |
13426
|
|
|
|
|
|
|
'Saukville', |
13427
|
|
|
|
|
|
|
'Saulsbury', |
13428
|
|
|
|
|
|
|
'Sault Ste. Marie', |
13429
|
|
|
|
|
|
|
'Saunemin', |
13430
|
|
|
|
|
|
|
'Sausalito', |
13431
|
|
|
|
|
|
|
'Savage', |
13432
|
|
|
|
|
|
|
'Savage-Guilford', |
13433
|
|
|
|
|
|
|
'Savanna', |
13434
|
|
|
|
|
|
|
'Savannah', |
13435
|
|
|
|
|
|
|
'Savona', |
13436
|
|
|
|
|
|
|
'Savonburg', |
13437
|
|
|
|
|
|
|
'Savoonga', |
13438
|
|
|
|
|
|
|
'Savoy', |
13439
|
|
|
|
|
|
|
'Sawgrass', |
13440
|
|
|
|
|
|
|
'Sawmill', |
13441
|
|
|
|
|
|
|
'Sawmills', |
13442
|
|
|
|
|
|
|
'Sawpit', |
13443
|
|
|
|
|
|
|
'Sawyer', |
13444
|
|
|
|
|
|
|
'Sawyerville', |
13445
|
|
|
|
|
|
|
'Saxapahaw', |
13446
|
|
|
|
|
|
|
'Saxis', |
13447
|
|
|
|
|
|
|
'Saxman', |
13448
|
|
|
|
|
|
|
'Saxon', |
13449
|
|
|
|
|
|
|
'Saxonburg', |
13450
|
|
|
|
|
|
|
'Saxton', |
13451
|
|
|
|
|
|
|
'Saxtons River', |
13452
|
|
|
|
|
|
|
'Saybrook', |
13453
|
|
|
|
|
|
|
'Saybrook Manor', |
13454
|
|
|
|
|
|
|
'Saylorville', |
13455
|
|
|
|
|
|
|
'Sayre', |
13456
|
|
|
|
|
|
|
'Sayreville', |
13457
|
|
|
|
|
|
|
'Sayville', |
13458
|
|
|
|
|
|
|
'Scales Mound', |
13459
|
|
|
|
|
|
|
'Scalp Level', |
13460
|
|
|
|
|
|
|
'Scammon', |
13461
|
|
|
|
|
|
|
'Scammon Bay', |
13462
|
|
|
|
|
|
|
'Scandia', |
13463
|
|
|
|
|
|
|
'Scandinavia', |
13464
|
|
|
|
|
|
|
'Scanlon', |
13465
|
|
|
|
|
|
|
'Scappoose', |
13466
|
|
|
|
|
|
|
'Scarborough', |
13467
|
|
|
|
|
|
|
'Scarsdale', |
13468
|
|
|
|
|
|
|
'Scarville', |
13469
|
|
|
|
|
|
|
'Scenic Oaks', |
13470
|
|
|
|
|
|
|
'Schaefferstown', |
13471
|
|
|
|
|
|
|
'Schaghticoke', |
13472
|
|
|
|
|
|
|
'Schall Circle', |
13473
|
|
|
|
|
|
|
'Schaller', |
13474
|
|
|
|
|
|
|
'Schaumburg', |
13475
|
|
|
|
|
|
|
'Schell City', |
13476
|
|
|
|
|
|
|
'Schellsburg', |
13477
|
|
|
|
|
|
|
'Schenectady', |
13478
|
|
|
|
|
|
|
'Schererville', |
13479
|
|
|
|
|
|
|
'Schertz', |
13480
|
|
|
|
|
|
|
'Schiller Park', |
13481
|
|
|
|
|
|
|
'Schlater', |
13482
|
|
|
|
|
|
|
'Schleswig', |
13483
|
|
|
|
|
|
|
'Schlusser', |
13484
|
|
|
|
|
|
|
'Schnecksville', |
13485
|
|
|
|
|
|
|
'Schneider', |
13486
|
|
|
|
|
|
|
'Schoenchen', |
13487
|
|
|
|
|
|
|
'Schofield', |
13488
|
|
|
|
|
|
|
'Schofield Barracks', |
13489
|
|
|
|
|
|
|
'Schoharie', |
13490
|
|
|
|
|
|
|
'Schoolcraft', |
13491
|
|
|
|
|
|
|
'Schram City', |
13492
|
|
|
|
|
|
|
'Schriever', |
13493
|
|
|
|
|
|
|
'Schulenburg', |
13494
|
|
|
|
|
|
|
'Schulter', |
13495
|
|
|
|
|
|
|
'Schurz', |
13496
|
|
|
|
|
|
|
'Schuyler', |
13497
|
|
|
|
|
|
|
'Schuylerville', |
13498
|
|
|
|
|
|
|
'Schuylkill Haven', |
13499
|
|
|
|
|
|
|
'Schwenksville', |
13500
|
|
|
|
|
|
|
'Science Hill', |
13501
|
|
|
|
|
|
|
'Scio', |
13502
|
|
|
|
|
|
|
'Sciota', |
13503
|
|
|
|
|
|
|
'Sciotodale', |
13504
|
|
|
|
|
|
|
'Scipio', |
13505
|
|
|
|
|
|
|
'Scissors', |
13506
|
|
|
|
|
|
|
'Scituate', |
13507
|
|
|
|
|
|
|
'Scobey', |
13508
|
|
|
|
|
|
|
'Scofield', |
13509
|
|
|
|
|
|
|
'Scooba', |
13510
|
|
|
|
|
|
|
'Scotch Plains', |
13511
|
|
|
|
|
|
|
'Scotchtown', |
13512
|
|
|
|
|
|
|
'Scotia', |
13513
|
|
|
|
|
|
|
'Scotland', |
13514
|
|
|
|
|
|
|
'Scotland Neck', |
13515
|
|
|
|
|
|
|
'Scotsdale', |
13516
|
|
|
|
|
|
|
'Scott', |
13517
|
|
|
|
|
|
|
'Scott AFB', |
13518
|
|
|
|
|
|
|
'Scott City', |
13519
|
|
|
|
|
|
|
'Scott Lake', |
13520
|
|
|
|
|
|
|
'Scott Township', |
13521
|
|
|
|
|
|
|
'Scottdale', |
13522
|
|
|
|
|
|
|
'Scotts Corners', |
13523
|
|
|
|
|
|
|
'Scotts Hill', |
13524
|
|
|
|
|
|
|
'Scotts Mills', |
13525
|
|
|
|
|
|
|
'Scotts Valley', |
13526
|
|
|
|
|
|
|
'Scottsbluff', |
13527
|
|
|
|
|
|
|
'Scottsboro', |
13528
|
|
|
|
|
|
|
'Scottsburg', |
13529
|
|
|
|
|
|
|
'Scottsdale', |
13530
|
|
|
|
|
|
|
'Scottsville', |
13531
|
|
|
|
|
|
|
'Scottville', |
13532
|
|
|
|
|
|
|
'Scranton', |
13533
|
|
|
|
|
|
|
'Scraper', |
13534
|
|
|
|
|
|
|
'Screven', |
13535
|
|
|
|
|
|
|
'Scribner', |
13536
|
|
|
|
|
|
|
'Sea Breeze', |
13537
|
|
|
|
|
|
|
'Sea Bright', |
13538
|
|
|
|
|
|
|
'Sea Cliff', |
13539
|
|
|
|
|
|
|
'Sea Girt', |
13540
|
|
|
|
|
|
|
'Sea Isle City', |
13541
|
|
|
|
|
|
|
'Sea Ranch Lakes', |
13542
|
|
|
|
|
|
|
'SeaTac', |
13543
|
|
|
|
|
|
|
'Seaboard', |
13544
|
|
|
|
|
|
|
'Seabrook', |
13545
|
|
|
|
|
|
|
'Seabrook Farms', |
13546
|
|
|
|
|
|
|
'Seabrook Island', |
13547
|
|
|
|
|
|
|
'Seadrift', |
13548
|
|
|
|
|
|
|
'Seaford', |
13549
|
|
|
|
|
|
|
'Seaforth', |
13550
|
|
|
|
|
|
|
'Seagate', |
13551
|
|
|
|
|
|
|
'Seagoville', |
13552
|
|
|
|
|
|
|
'Seagraves', |
13553
|
|
|
|
|
|
|
'Seagrove', |
13554
|
|
|
|
|
|
|
'Seal Beach', |
13555
|
|
|
|
|
|
|
'Sealy', |
13556
|
|
|
|
|
|
|
'Seama', |
13557
|
|
|
|
|
|
|
'Seaman', |
13558
|
|
|
|
|
|
|
'Searchlight', |
13559
|
|
|
|
|
|
|
'Searcy', |
13560
|
|
|
|
|
|
|
'Searingtown', |
13561
|
|
|
|
|
|
|
'Searles Valley', |
13562
|
|
|
|
|
|
|
'Searsboro', |
13563
|
|
|
|
|
|
|
'Searsport', |
13564
|
|
|
|
|
|
|
'Seaside', |
13565
|
|
|
|
|
|
|
'Seaside Heights', |
13566
|
|
|
|
|
|
|
'Seaside Park', |
13567
|
|
|
|
|
|
|
'Seat Pleasant', |
13568
|
|
|
|
|
|
|
'Seaton', |
13569
|
|
|
|
|
|
|
'Seatonville', |
13570
|
|
|
|
|
|
|
'Seattle', |
13571
|
|
|
|
|
|
|
'Seattle Hill-Silver Firs', |
13572
|
|
|
|
|
|
|
'Sebastian', |
13573
|
|
|
|
|
|
|
'Sebastopol', |
13574
|
|
|
|
|
|
|
'Sebeka', |
13575
|
|
|
|
|
|
|
'Sebewaing', |
13576
|
|
|
|
|
|
|
'Sebree', |
13577
|
|
|
|
|
|
|
'Sebring', |
13578
|
|
|
|
|
|
|
'Secaucus', |
13579
|
|
|
|
|
|
|
'Second Mesa', |
13580
|
|
|
|
|
|
|
'Seconsett Island', |
13581
|
|
|
|
|
|
|
'Secor', |
13582
|
|
|
|
|
|
|
'Secretary', |
13583
|
|
|
|
|
|
|
'Section', |
13584
|
|
|
|
|
|
|
'Security-Widefield', |
13585
|
|
|
|
|
|
|
'Sedalia', |
13586
|
|
|
|
|
|
|
'Sedan', |
13587
|
|
|
|
|
|
|
'Sedco Hills', |
13588
|
|
|
|
|
|
|
'Sedgewickville', |
13589
|
|
|
|
|
|
|
'Sedgwick', |
13590
|
|
|
|
|
|
|
'Sedona', |
13591
|
|
|
|
|
|
|
'Sedro-Woolley', |
13592
|
|
|
|
|
|
|
'Seeley', |
13593
|
|
|
|
|
|
|
'Seeley Lake', |
13594
|
|
|
|
|
|
|
'Seelyville', |
13595
|
|
|
|
|
|
|
'Seffner', |
13596
|
|
|
|
|
|
|
'Seguin', |
13597
|
|
|
|
|
|
|
'Seibert', |
13598
|
|
|
|
|
|
|
'Seiling', |
13599
|
|
|
|
|
|
|
'Selah', |
13600
|
|
|
|
|
|
|
'Selawik', |
13601
|
|
|
|
|
|
|
'Selby', |
13602
|
|
|
|
|
|
|
'Selby-on-the-Bay', |
13603
|
|
|
|
|
|
|
'Selbyville', |
13604
|
|
|
|
|
|
|
'Selden', |
13605
|
|
|
|
|
|
|
'Seldovia', |
13606
|
|
|
|
|
|
|
'Seldovia Village', |
13607
|
|
|
|
|
|
|
'Selfridge', |
13608
|
|
|
|
|
|
|
'Seligman', |
13609
|
|
|
|
|
|
|
'Selinsgrove', |
13610
|
|
|
|
|
|
|
'Sellers', |
13611
|
|
|
|
|
|
|
'Sellersburg', |
13612
|
|
|
|
|
|
|
'Sellersville', |
13613
|
|
|
|
|
|
|
'Sells', |
13614
|
|
|
|
|
|
|
'Selma', |
13615
|
|
|
|
|
|
|
'Selmer', |
13616
|
|
|
|
|
|
|
'Selmont-West Selmont', |
13617
|
|
|
|
|
|
|
'Seltzer', |
13618
|
|
|
|
|
|
|
'Seminary', |
13619
|
|
|
|
|
|
|
'Seminole', |
13620
|
|
|
|
|
|
|
'Seminole Manor', |
13621
|
|
|
|
|
|
|
'Senath', |
13622
|
|
|
|
|
|
|
'Senatobia', |
13623
|
|
|
|
|
|
|
'Seneca', |
13624
|
|
|
|
|
|
|
'Seneca Falls', |
13625
|
|
|
|
|
|
|
'Seneca Gardens', |
13626
|
|
|
|
|
|
|
'Seneca Knolls', |
13627
|
|
|
|
|
|
|
'Senecaville', |
13628
|
|
|
|
|
|
|
'Senoia', |
13629
|
|
|
|
|
|
|
'Sentinel', |
13630
|
|
|
|
|
|
|
'Sentinel Butte', |
13631
|
|
|
|
|
|
|
'Sequim', |
13632
|
|
|
|
|
|
|
'Sequoyah', |
13633
|
|
|
|
|
|
|
'Serenada', |
13634
|
|
|
|
|
|
|
'Sergeant Bluff', |
13635
|
|
|
|
|
|
|
'Sesser', |
13636
|
|
|
|
|
|
|
'Setauket-East Setauket', |
13637
|
|
|
|
|
|
|
'Seth Ward', |
13638
|
|
|
|
|
|
|
'Seven Corners', |
13639
|
|
|
|
|
|
|
'Seven Devils', |
13640
|
|
|
|
|
|
|
'Seven Fields', |
13641
|
|
|
|
|
|
|
'Seven Hills', |
13642
|
|
|
|
|
|
|
'Seven Lakes', |
13643
|
|
|
|
|
|
|
'Seven Mile', |
13644
|
|
|
|
|
|
|
'Seven Oaks', |
13645
|
|
|
|
|
|
|
'Seven Points', |
13646
|
|
|
|
|
|
|
'Seven Springs', |
13647
|
|
|
|
|
|
|
'Seven Trees', |
13648
|
|
|
|
|
|
|
'Seven Valleys', |
13649
|
|
|
|
|
|
|
'Severance', |
13650
|
|
|
|
|
|
|
'Severn', |
13651
|
|
|
|
|
|
|
'Severna Park', |
13652
|
|
|
|
|
|
|
'Severy', |
13653
|
|
|
|
|
|
|
'Sevierville', |
13654
|
|
|
|
|
|
|
'Seville', |
13655
|
|
|
|
|
|
|
'Sewall\'s Point', |
13656
|
|
|
|
|
|
|
'Sewanee', |
13657
|
|
|
|
|
|
|
'Seward', |
13658
|
|
|
|
|
|
|
'Sewaren', |
13659
|
|
|
|
|
|
|
'Sewickley', |
13660
|
|
|
|
|
|
|
'Sewickley Heights', |
13661
|
|
|
|
|
|
|
'Sewickley Hills', |
13662
|
|
|
|
|
|
|
'Seymour', |
13663
|
|
|
|
|
|
|
'Shabbona', |
13664
|
|
|
|
|
|
|
'Shackelford', |
13665
|
|
|
|
|
|
|
'Shade Gap', |
13666
|
|
|
|
|
|
|
'Shadeland', |
13667
|
|
|
|
|
|
|
'Shady Cove', |
13668
|
|
|
|
|
|
|
'Shady Dale', |
13669
|
|
|
|
|
|
|
'Shady Grove', |
13670
|
|
|
|
|
|
|
'Shady Hills', |
13671
|
|
|
|
|
|
|
'Shady Hollow', |
13672
|
|
|
|
|
|
|
'Shady Point', |
13673
|
|
|
|
|
|
|
'Shady Shores', |
13674
|
|
|
|
|
|
|
'Shady Side', |
13675
|
|
|
|
|
|
|
'Shady Spring', |
13676
|
|
|
|
|
|
|
'Shadyside', |
13677
|
|
|
|
|
|
|
'Shafer', |
13678
|
|
|
|
|
|
|
'Shafter', |
13679
|
|
|
|
|
|
|
'Shageluk', |
13680
|
|
|
|
|
|
|
'Shaker Church', |
13681
|
|
|
|
|
|
|
'Shaker Heights', |
13682
|
|
|
|
|
|
|
'Shakopee', |
13683
|
|
|
|
|
|
|
'Shaktoolik', |
13684
|
|
|
|
|
|
|
'Shaler Township', |
13685
|
|
|
|
|
|
|
'Shalimar', |
13686
|
|
|
|
|
|
|
'Shallotte', |
13687
|
|
|
|
|
|
|
'Shallowater', |
13688
|
|
|
|
|
|
|
'Shambaugh', |
13689
|
|
|
|
|
|
|
'Shamokin', |
13690
|
|
|
|
|
|
|
'Shamokin Dam', |
13691
|
|
|
|
|
|
|
'Shamrock', |
13692
|
|
|
|
|
|
|
'Shamrock Lakes', |
13693
|
|
|
|
|
|
|
'Shandon', |
13694
|
|
|
|
|
|
|
'Shaniko', |
13695
|
|
|
|
|
|
|
'Shanksville', |
13696
|
|
|
|
|
|
|
'Shannon', |
13697
|
|
|
|
|
|
|
'Shannon City', |
13698
|
|
|
|
|
|
|
'Shannon Hills', |
13699
|
|
|
|
|
|
|
'Shanor-Northvue', |
13700
|
|
|
|
|
|
|
'Shark River Hills', |
13701
|
|
|
|
|
|
|
'Sharon', |
13702
|
|
|
|
|
|
|
'Sharon Hill', |
13703
|
|
|
|
|
|
|
'Sharon Springs', |
13704
|
|
|
|
|
|
|
'Sharonville', |
13705
|
|
|
|
|
|
|
'Sharpes', |
13706
|
|
|
|
|
|
|
'Sharpsburg', |
13707
|
|
|
|
|
|
|
'Sharpsville', |
13708
|
|
|
|
|
|
|
'Sharptown', |
13709
|
|
|
|
|
|
|
'Shasta Lake', |
13710
|
|
|
|
|
|
|
'Shattuck', |
13711
|
|
|
|
|
|
|
'Shavano Park', |
13712
|
|
|
|
|
|
|
'Shaver Lake', |
13713
|
|
|
|
|
|
|
'Shaw', |
13714
|
|
|
|
|
|
|
'Shawano', |
13715
|
|
|
|
|
|
|
'Shawnee', |
13716
|
|
|
|
|
|
|
'Shawnee Hills', |
13717
|
|
|
|
|
|
|
'Shawneetown', |
13718
|
|
|
|
|
|
|
'Shawsville', |
13719
|
|
|
|
|
|
|
'Sheakleyville', |
13720
|
|
|
|
|
|
|
'Sheboygan', |
13721
|
|
|
|
|
|
|
'Sheboygan Falls', |
13722
|
|
|
|
|
|
|
'Sheep Springs', |
13723
|
|
|
|
|
|
|
'Sheffield', |
13724
|
|
|
|
|
|
|
'Sheffield Lake', |
13725
|
|
|
|
|
|
|
'Shelbina', |
13726
|
|
|
|
|
|
|
'Shelburn', |
13727
|
|
|
|
|
|
|
'Shelburne Falls', |
13728
|
|
|
|
|
|
|
'Shelby', |
13729
|
|
|
|
|
|
|
'Shelbyville', |
13730
|
|
|
|
|
|
|
'Sheldahl', |
13731
|
|
|
|
|
|
|
'Sheldon', |
13732
|
|
|
|
|
|
|
'Sheldon Point (Nunam Iqua)', |
13733
|
|
|
|
|
|
|
'Shell Knob', |
13734
|
|
|
|
|
|
|
'Shell Lake', |
13735
|
|
|
|
|
|
|
'Shell Point', |
13736
|
|
|
|
|
|
|
'Shell Rock', |
13737
|
|
|
|
|
|
|
'Shell Valley', |
13738
|
|
|
|
|
|
|
'Shelley', |
13739
|
|
|
|
|
|
|
'Shellman', |
13740
|
|
|
|
|
|
|
'Shellsburg', |
13741
|
|
|
|
|
|
|
'Shelly', |
13742
|
|
|
|
|
|
|
'Shelocta', |
13743
|
|
|
|
|
|
|
'Shelter Island', |
13744
|
|
|
|
|
|
|
'Shelter Island Heights', |
13745
|
|
|
|
|
|
|
'Shelton', |
13746
|
|
|
|
|
|
|
'Shenandoah', |
13747
|
|
|
|
|
|
|
'Shenandoah Heights', |
13748
|
|
|
|
|
|
|
'Shenorock', |
13749
|
|
|
|
|
|
|
'Shepherd', |
13750
|
|
|
|
|
|
|
'Shepherdstown', |
13751
|
|
|
|
|
|
|
'Shepherdsville', |
13752
|
|
|
|
|
|
|
'Sheppton', |
13753
|
|
|
|
|
|
|
'Sherando', |
13754
|
|
|
|
|
|
|
'Sherburn', |
13755
|
|
|
|
|
|
|
'Sherburne', |
13756
|
|
|
|
|
|
|
'Sheridan', |
13757
|
|
|
|
|
|
|
'Sheridan Lake', |
13758
|
|
|
|
|
|
|
'Sherman', |
13759
|
|
|
|
|
|
|
'Sherrard', |
13760
|
|
|
|
|
|
|
'Sherrelwood', |
13761
|
|
|
|
|
|
|
'Sherrill', |
13762
|
|
|
|
|
|
|
'Sherrills Ford', |
13763
|
|
|
|
|
|
|
'Sherrodsville', |
13764
|
|
|
|
|
|
|
'Sherwood', |
13765
|
|
|
|
|
|
|
'Sherwood Manor', |
13766
|
|
|
|
|
|
|
'Shevlin', |
13767
|
|
|
|
|
|
|
'Sheyenne', |
13768
|
|
|
|
|
|
|
'Shickley', |
13769
|
|
|
|
|
|
|
'Shickshinny', |
13770
|
|
|
|
|
|
|
'Shidler', |
13771
|
|
|
|
|
|
|
'Shields', |
13772
|
|
|
|
|
|
|
'Shillington', |
13773
|
|
|
|
|
|
|
'Shiloh', |
13774
|
|
|
|
|
|
|
'Shiner', |
13775
|
|
|
|
|
|
|
'Shingle Springs', |
13776
|
|
|
|
|
|
|
'Shinglehouse', |
13777
|
|
|
|
|
|
|
'Shingletown', |
13778
|
|
|
|
|
|
|
'Shinnecock Hills', |
13779
|
|
|
|
|
|
|
'Shinnston', |
13780
|
|
|
|
|
|
|
'Shiocton', |
13781
|
|
|
|
|
|
|
'Ship Bottom', |
13782
|
|
|
|
|
|
|
'Shipman', |
13783
|
|
|
|
|
|
|
'Shippensburg', |
13784
|
|
|
|
|
|
|
'Shippenville', |
13785
|
|
|
|
|
|
|
'Shippingport', |
13786
|
|
|
|
|
|
|
'Shiprock', |
13787
|
|
|
|
|
|
|
'Shipshewana', |
13788
|
|
|
|
|
|
|
'Shiremanstown', |
13789
|
|
|
|
|
|
|
'Shirley', |
13790
|
|
|
|
|
|
|
'Shirleysburg', |
13791
|
|
|
|
|
|
|
'Shishmaref', |
13792
|
|
|
|
|
|
|
'Shively', |
13793
|
|
|
|
|
|
|
'Shoal Creek Drive', |
13794
|
|
|
|
|
|
|
'Shoal Creek Estates', |
13795
|
|
|
|
|
|
|
'Shoals', |
13796
|
|
|
|
|
|
|
'Shoemakersville', |
13797
|
|
|
|
|
|
|
'Shokan', |
13798
|
|
|
|
|
|
|
'Sholes', |
13799
|
|
|
|
|
|
|
'Shongaloo', |
13800
|
|
|
|
|
|
|
'Shongopovi', |
13801
|
|
|
|
|
|
|
'Shonto', |
13802
|
|
|
|
|
|
|
'Shoreacres', |
13803
|
|
|
|
|
|
|
'Shoreham', |
13804
|
|
|
|
|
|
|
'Shoreline', |
13805
|
|
|
|
|
|
|
'Shoreline Park', |
13806
|
|
|
|
|
|
|
'Shoreview', |
13807
|
|
|
|
|
|
|
'Shorewood', |
13808
|
|
|
|
|
|
|
'Shorewood Hills', |
13809
|
|
|
|
|
|
|
'Shorewood-Tower Hills-Harbert', |
13810
|
|
|
|
|
|
|
'Short', |
13811
|
|
|
|
|
|
|
'Short Pump', |
13812
|
|
|
|
|
|
|
'Shorter', |
13813
|
|
|
|
|
|
|
'Shortsville', |
13814
|
|
|
|
|
|
|
'Shoshone', |
13815
|
|
|
|
|
|
|
'Shoshoni', |
13816
|
|
|
|
|
|
|
'Show Low', |
13817
|
|
|
|
|
|
|
'Shreve', |
13818
|
|
|
|
|
|
|
'Shreveport', |
13819
|
|
|
|
|
|
|
'Shrewsbury', |
13820
|
|
|
|
|
|
|
'Shrub Oak', |
13821
|
|
|
|
|
|
|
'Shubert', |
13822
|
|
|
|
|
|
|
'Shubuta', |
13823
|
|
|
|
|
|
|
'Shueyville', |
13824
|
|
|
|
|
|
|
'Shullsburg', |
13825
|
|
|
|
|
|
|
'Shumway', |
13826
|
|
|
|
|
|
|
'Shungnak', |
13827
|
|
|
|
|
|
|
'Shuqualak', |
13828
|
|
|
|
|
|
|
'Sibley', |
13829
|
|
|
|
|
|
|
'Sicily Island', |
13830
|
|
|
|
|
|
|
'Sidell', |
13831
|
|
|
|
|
|
|
'Sidney', |
13832
|
|
|
|
|
|
|
'Sidon', |
13833
|
|
|
|
|
|
|
'Sienna Plantation', |
13834
|
|
|
|
|
|
|
'Sierra Blanca', |
13835
|
|
|
|
|
|
|
'Sierra Madre', |
13836
|
|
|
|
|
|
|
'Sierra Vista', |
13837
|
|
|
|
|
|
|
'Sierra Vista Southeast', |
13838
|
|
|
|
|
|
|
'Siesta Key', |
13839
|
|
|
|
|
|
|
'Siesta Shores', |
13840
|
|
|
|
|
|
|
'Sigel', |
13841
|
|
|
|
|
|
|
'Signal Hill', |
13842
|
|
|
|
|
|
|
'Signal Mountain', |
13843
|
|
|
|
|
|
|
'Sigourney', |
13844
|
|
|
|
|
|
|
'Sigurd', |
13845
|
|
|
|
|
|
|
'Sikes', |
13846
|
|
|
|
|
|
|
'Sikeston', |
13847
|
|
|
|
|
|
|
'Silas', |
13848
|
|
|
|
|
|
|
'Siler City', |
13849
|
|
|
|
|
|
|
'Silerton', |
13850
|
|
|
|
|
|
|
'Siletz', |
13851
|
|
|
|
|
|
|
'Silex', |
13852
|
|
|
|
|
|
|
'Silo', |
13853
|
|
|
|
|
|
|
'Siloam', |
13854
|
|
|
|
|
|
|
'Siloam Springs', |
13855
|
|
|
|
|
|
|
'Silsbee', |
13856
|
|
|
|
|
|
|
'Silt', |
13857
|
|
|
|
|
|
|
'Silvana', |
13858
|
|
|
|
|
|
|
'Silver Bay', |
13859
|
|
|
|
|
|
|
'Silver City', |
13860
|
|
|
|
|
|
|
'Silver Cliff', |
13861
|
|
|
|
|
|
|
'Silver Creek', |
13862
|
|
|
|
|
|
|
'Silver Grove', |
13863
|
|
|
|
|
|
|
'Silver Lake', |
13864
|
|
|
|
|
|
|
'Silver Plume', |
13865
|
|
|
|
|
|
|
'Silver Ridge', |
13866
|
|
|
|
|
|
|
'Silver Spring', |
13867
|
|
|
|
|
|
|
'Silver Springs', |
13868
|
|
|
|
|
|
|
'Silver Springs Shores', |
13869
|
|
|
|
|
|
|
'Silverdale', |
13870
|
|
|
|
|
|
|
'Silverhill', |
13871
|
|
|
|
|
|
|
'Silverstreet', |
13872
|
|
|
|
|
|
|
'Silverthorne', |
13873
|
|
|
|
|
|
|
'Silverton', |
13874
|
|
|
|
|
|
|
'Silvis', |
13875
|
|
|
|
|
|
|
'Simi Valley', |
13876
|
|
|
|
|
|
|
'Simla', |
13877
|
|
|
|
|
|
|
'Simmesport', |
13878
|
|
|
|
|
|
|
'Simms', |
13879
|
|
|
|
|
|
|
'Simonton', |
13880
|
|
|
|
|
|
|
'Simonton Lake', |
13881
|
|
|
|
|
|
|
'Simpson', |
13882
|
|
|
|
|
|
|
'Simpsonville', |
13883
|
|
|
|
|
|
|
'Sims', |
13884
|
|
|
|
|
|
|
'Simsboro', |
13885
|
|
|
|
|
|
|
'Simsbury Center', |
13886
|
|
|
|
|
|
|
'Sinai', |
13887
|
|
|
|
|
|
|
'Sinclair', |
13888
|
|
|
|
|
|
|
'Sinclairville', |
13889
|
|
|
|
|
|
|
'Sinking Spring', |
13890
|
|
|
|
|
|
|
'Sinton', |
13891
|
|
|
|
|
|
|
'Sioux Center', |
13892
|
|
|
|
|
|
|
'Sioux City', |
13893
|
|
|
|
|
|
|
'Sioux Falls', |
13894
|
|
|
|
|
|
|
'Sioux Rapids', |
13895
|
|
|
|
|
|
|
'Sipsey', |
13896
|
|
|
|
|
|
|
'Siren', |
13897
|
|
|
|
|
|
|
'Sisseton', |
13898
|
|
|
|
|
|
|
'Sissonville', |
13899
|
|
|
|
|
|
|
'Sister Bay', |
13900
|
|
|
|
|
|
|
'Sisters', |
13901
|
|
|
|
|
|
|
'Sistersville', |
13902
|
|
|
|
|
|
|
'Sitka city and', |
13903
|
|
|
|
|
|
|
'Six Mile', |
13904
|
|
|
|
|
|
|
'Skagway', |
13905
|
|
|
|
|
|
|
'Skaneateles', |
13906
|
|
|
|
|
|
|
'Skedee', |
13907
|
|
|
|
|
|
|
'Skellytown', |
13908
|
|
|
|
|
|
|
'Skiatook', |
13909
|
|
|
|
|
|
|
'Skidaway Island', |
13910
|
|
|
|
|
|
|
'Skidmore', |
13911
|
|
|
|
|
|
|
'Skidway Lake', |
13912
|
|
|
|
|
|
|
'Skippack', |
13913
|
|
|
|
|
|
|
'Skippers Corner', |
13914
|
|
|
|
|
|
|
'Skokie', |
13915
|
|
|
|
|
|
|
'Skokomish', |
13916
|
|
|
|
|
|
|
'Skowhegan', |
13917
|
|
|
|
|
|
|
'Skwentna', |
13918
|
|
|
|
|
|
|
'Sky Lake', |
13919
|
|
|
|
|
|
|
'Sky Valley', |
13920
|
|
|
|
|
|
|
'Skykomish', |
13921
|
|
|
|
|
|
|
'Skyline', |
13922
|
|
|
|
|
|
|
'Skyline View', |
13923
|
|
|
|
|
|
|
'Skyline-Ganipa', |
13924
|
|
|
|
|
|
|
'Slabtown', |
13925
|
|
|
|
|
|
|
'Slana', |
13926
|
|
|
|
|
|
|
'Slate Springs', |
13927
|
|
|
|
|
|
|
'Slater', |
13928
|
|
|
|
|
|
|
'Slater-Marietta', |
13929
|
|
|
|
|
|
|
'Slatington', |
13930
|
|
|
|
|
|
|
'Slaton', |
13931
|
|
|
|
|
|
|
'Slaughter', |
13932
|
|
|
|
|
|
|
'Slaughter Beach', |
13933
|
|
|
|
|
|
|
'Slaughters', |
13934
|
|
|
|
|
|
|
'Slaughterville', |
13935
|
|
|
|
|
|
|
'Slayden', |
13936
|
|
|
|
|
|
|
'Slayton', |
13937
|
|
|
|
|
|
|
'Sledge', |
13938
|
|
|
|
|
|
|
'Sleepy Eye', |
13939
|
|
|
|
|
|
|
'Sleepy Hollow', |
13940
|
|
|
|
|
|
|
'Sleetmute', |
13941
|
|
|
|
|
|
|
'Slick', |
13942
|
|
|
|
|
|
|
'Slickville', |
13943
|
|
|
|
|
|
|
'Slidell', |
13944
|
|
|
|
|
|
|
'Sligo', |
13945
|
|
|
|
|
|
|
'Slinger', |
13946
|
|
|
|
|
|
|
'Slippery Rock', |
13947
|
|
|
|
|
|
|
'Sloan', |
13948
|
|
|
|
|
|
|
'Sloatsburg', |
13949
|
|
|
|
|
|
|
'Slocomb', |
13950
|
|
|
|
|
|
|
'Smackover', |
13951
|
|
|
|
|
|
|
'Smallwood', |
13952
|
|
|
|
|
|
|
'Smelterville', |
13953
|
|
|
|
|
|
|
'Smethport', |
13954
|
|
|
|
|
|
|
'Smicksburg', |
13955
|
|
|
|
|
|
|
'Smiley', |
13956
|
|
|
|
|
|
|
'Smith Center', |
13957
|
|
|
|
|
|
|
'Smith Island', |
13958
|
|
|
|
|
|
|
'Smith Mills', |
13959
|
|
|
|
|
|
|
'Smith Valley', |
13960
|
|
|
|
|
|
|
'Smith Village', |
13961
|
|
|
|
|
|
|
'Smithboro', |
13962
|
|
|
|
|
|
|
'Smithers', |
13963
|
|
|
|
|
|
|
'Smithfield', |
13964
|
|
|
|
|
|
|
'Smithland', |
13965
|
|
|
|
|
|
|
'Smiths', |
13966
|
|
|
|
|
|
|
'Smiths Grove', |
13967
|
|
|
|
|
|
|
'Smithsburg', |
13968
|
|
|
|
|
|
|
'Smithton', |
13969
|
|
|
|
|
|
|
'Smithtown', |
13970
|
|
|
|
|
|
|
'Smithville', |
13971
|
|
|
|
|
|
|
'Smoaks', |
13972
|
|
|
|
|
|
|
'Smoke Rise', |
13973
|
|
|
|
|
|
|
'Smokey Point', |
13974
|
|
|
|
|
|
|
'Smolan', |
13975
|
|
|
|
|
|
|
'Smoot', |
13976
|
|
|
|
|
|
|
'Smyer', |
13977
|
|
|
|
|
|
|
'Smyrna', |
13978
|
|
|
|
|
|
|
'Snake Creek', |
13979
|
|
|
|
|
|
|
'Snead', |
13980
|
|
|
|
|
|
|
'Sneads', |
13981
|
|
|
|
|
|
|
'Sneads Ferry', |
13982
|
|
|
|
|
|
|
'Sneedville', |
13983
|
|
|
|
|
|
|
'Snelling', |
13984
|
|
|
|
|
|
|
'Snellville', |
13985
|
|
|
|
|
|
|
'Snohomish', |
13986
|
|
|
|
|
|
|
'Snook', |
13987
|
|
|
|
|
|
|
'Snoqualmie', |
13988
|
|
|
|
|
|
|
'Snoqualmie Pass', |
13989
|
|
|
|
|
|
|
'Snow Hill', |
13990
|
|
|
|
|
|
|
'Snow Lake Shores', |
13991
|
|
|
|
|
|
|
'Snow Shoe', |
13992
|
|
|
|
|
|
|
'Snowflake', |
13993
|
|
|
|
|
|
|
'Snowmass Village', |
13994
|
|
|
|
|
|
|
'Snowville', |
13995
|
|
|
|
|
|
|
'Snyder', |
13996
|
|
|
|
|
|
|
'Snydertown', |
13997
|
|
|
|
|
|
|
'Soap Lake', |
13998
|
|
|
|
|
|
|
'Sobieski', |
13999
|
|
|
|
|
|
|
'Socastee', |
14000
|
|
|
|
|
|
|
'Social Circle', |
14001
|
|
|
|
|
|
|
'Society Hill', |
14002
|
|
|
|
|
|
|
'Socorro', |
14003
|
|
|
|
|
|
|
'Soda Springs', |
14004
|
|
|
|
|
|
|
'Sodaville', |
14005
|
|
|
|
|
|
|
'Soddy-Daisy', |
14006
|
|
|
|
|
|
|
'Sodus', |
14007
|
|
|
|
|
|
|
'Sodus Point', |
14008
|
|
|
|
|
|
|
'Solana', |
14009
|
|
|
|
|
|
|
'Solana Beach', |
14010
|
|
|
|
|
|
|
'Soldier', |
14011
|
|
|
|
|
|
|
'Soldiers Grove', |
14012
|
|
|
|
|
|
|
'Soldotna', |
14013
|
|
|
|
|
|
|
'Soledad', |
14014
|
|
|
|
|
|
|
'Solen', |
14015
|
|
|
|
|
|
|
'Solis', |
14016
|
|
|
|
|
|
|
'Solomon', |
14017
|
|
|
|
|
|
|
'Solomons', |
14018
|
|
|
|
|
|
|
'Solon', |
14019
|
|
|
|
|
|
|
'Solon Springs', |
14020
|
|
|
|
|
|
|
'Solvang', |
14021
|
|
|
|
|
|
|
'Solvay', |
14022
|
|
|
|
|
|
|
'Solway', |
14023
|
|
|
|
|
|
|
'Sombrillo', |
14024
|
|
|
|
|
|
|
'Somerdale', |
14025
|
|
|
|
|
|
|
'Somers', |
14026
|
|
|
|
|
|
|
'Somers Point', |
14027
|
|
|
|
|
|
|
'Somerset', |
14028
|
|
|
|
|
|
|
'Somersworth', |
14029
|
|
|
|
|
|
|
'Somerton', |
14030
|
|
|
|
|
|
|
'Somerville', |
14031
|
|
|
|
|
|
|
'Somonauk', |
14032
|
|
|
|
|
|
|
'Sonoita', |
14033
|
|
|
|
|
|
|
'Sonoma', |
14034
|
|
|
|
|
|
|
'Sonora', |
14035
|
|
|
|
|
|
|
'Sopchoppy', |
14036
|
|
|
|
|
|
|
'Soper', |
14037
|
|
|
|
|
|
|
'Soperton', |
14038
|
|
|
|
|
|
|
'Sophia', |
14039
|
|
|
|
|
|
|
'Soquel', |
14040
|
|
|
|
|
|
|
'Sorento', |
14041
|
|
|
|
|
|
|
'Sorrento', |
14042
|
|
|
|
|
|
|
'Soso', |
14043
|
|
|
|
|
|
|
'Souderton', |
14044
|
|
|
|
|
|
|
'Soulsbyville', |
14045
|
|
|
|
|
|
|
'Sound Beach', |
14046
|
|
|
|
|
|
|
'Sour John', |
14047
|
|
|
|
|
|
|
'Sour Lake', |
14048
|
|
|
|
|
|
|
'Souris', |
14049
|
|
|
|
|
|
|
'South Alamo', |
14050
|
|
|
|
|
|
|
'South Amboy', |
14051
|
|
|
|
|
|
|
'South Amherst', |
14052
|
|
|
|
|
|
|
'South Apopka', |
14053
|
|
|
|
|
|
|
'South Ashburnham', |
14054
|
|
|
|
|
|
|
'South Barre', |
14055
|
|
|
|
|
|
|
'South Barrington', |
14056
|
|
|
|
|
|
|
'South Bay', |
14057
|
|
|
|
|
|
|
'South Beach', |
14058
|
|
|
|
|
|
|
'South Belmar', |
14059
|
|
|
|
|
|
|
'South Beloit', |
14060
|
|
|
|
|
|
|
'South Bend', |
14061
|
|
|
|
|
|
|
'South Bethany', |
14062
|
|
|
|
|
|
|
'South Bethlehem', |
14063
|
|
|
|
|
|
|
'South Bloomfield', |
14064
|
|
|
|
|
|
|
'South Boston', |
14065
|
|
|
|
|
|
|
'South Bound Brook', |
14066
|
|
|
|
|
|
|
'South Bradenton', |
14067
|
|
|
|
|
|
|
'South Brooksville', |
14068
|
|
|
|
|
|
|
'South Browning', |
14069
|
|
|
|
|
|
|
'South Burlington', |
14070
|
|
|
|
|
|
|
'South Canal', |
14071
|
|
|
|
|
|
|
'South Carrollton', |
14072
|
|
|
|
|
|
|
'South Carthage', |
14073
|
|
|
|
|
|
|
'South Charleston', |
14074
|
|
|
|
|
|
|
'South Chicago Heights', |
14075
|
|
|
|
|
|
|
'South Cle Elum', |
14076
|
|
|
|
|
|
|
'South Cleveland', |
14077
|
|
|
|
|
|
|
'South Coatesville', |
14078
|
|
|
|
|
|
|
'South Coffeyville', |
14079
|
|
|
|
|
|
|
'South Congaree', |
14080
|
|
|
|
|
|
|
'South Connellsville', |
14081
|
|
|
|
|
|
|
'South Corning', |
14082
|
|
|
|
|
|
|
'South Coventry', |
14083
|
|
|
|
|
|
|
'South Dayton', |
14084
|
|
|
|
|
|
|
'South Daytona', |
14085
|
|
|
|
|
|
|
'South Deerfield', |
14086
|
|
|
|
|
|
|
'South Dennis', |
14087
|
|
|
|
|
|
|
'South Dos Palos', |
14088
|
|
|
|
|
|
|
'South Duxbury', |
14089
|
|
|
|
|
|
|
'South El Monte', |
14090
|
|
|
|
|
|
|
'South Elgin', |
14091
|
|
|
|
|
|
|
'South Eliot', |
14092
|
|
|
|
|
|
|
'South English', |
14093
|
|
|
|
|
|
|
'South Euclid', |
14094
|
|
|
|
|
|
|
'South Fallsburg', |
14095
|
|
|
|
|
|
|
'South Farmingdale', |
14096
|
|
|
|
|
|
|
'South Flat', |
14097
|
|
|
|
|
|
|
'South Floral Park', |
14098
|
|
|
|
|
|
|
'South Fork', |
14099
|
|
|
|
|
|
|
'South Fork Estates', |
14100
|
|
|
|
|
|
|
'South Fulton', |
14101
|
|
|
|
|
|
|
'South Gastonia', |
14102
|
|
|
|
|
|
|
'South Gate', |
14103
|
|
|
|
|
|
|
'South Gate Ridge', |
14104
|
|
|
|
|
|
|
'South Gifford', |
14105
|
|
|
|
|
|
|
'South Glens Falls', |
14106
|
|
|
|
|
|
|
'South Gorin', |
14107
|
|
|
|
|
|
|
'South Greeley', |
14108
|
|
|
|
|
|
|
'South Greenfield', |
14109
|
|
|
|
|
|
|
'South Greensburg', |
14110
|
|
|
|
|
|
|
'South Gull Lake', |
14111
|
|
|
|
|
|
|
'South Haven', |
14112
|
|
|
|
|
|
|
'South Heart', |
14113
|
|
|
|
|
|
|
'South Heights', |
14114
|
|
|
|
|
|
|
'South Hempstead', |
14115
|
|
|
|
|
|
|
'South Henderson', |
14116
|
|
|
|
|
|
|
'South Highpoint', |
14117
|
|
|
|
|
|
|
'South Hill', |
14118
|
|
|
|
|
|
|
'South Holland', |
14119
|
|
|
|
|
|
|
'South Hooksett', |
14120
|
|
|
|
|
|
|
'South Houston', |
14121
|
|
|
|
|
|
|
'South Huntington', |
14122
|
|
|
|
|
|
|
'South Hutchinson', |
14123
|
|
|
|
|
|
|
'South Jacksonville', |
14124
|
|
|
|
|
|
|
'South Jordan', |
14125
|
|
|
|
|
|
|
'South Kensington', |
14126
|
|
|
|
|
|
|
'South Lake Tahoe', |
14127
|
|
|
|
|
|
|
'South Lancaster', |
14128
|
|
|
|
|
|
|
'South Laurel', |
14129
|
|
|
|
|
|
|
'South Lead Hill', |
14130
|
|
|
|
|
|
|
'South Lebanon', |
14131
|
|
|
|
|
|
|
'South Lineville', |
14132
|
|
|
|
|
|
|
'South Lockport', |
14133
|
|
|
|
|
|
|
'South Lyon', |
14134
|
|
|
|
|
|
|
'South Mansfield', |
14135
|
|
|
|
|
|
|
'South Miami', |
14136
|
|
|
|
|
|
|
'South Miami Heights', |
14137
|
|
|
|
|
|
|
'South Middletown', |
14138
|
|
|
|
|
|
|
'South Milwaukee', |
14139
|
|
|
|
|
|
|
'South Monroe', |
14140
|
|
|
|
|
|
|
'South Mountain', |
14141
|
|
|
|
|
|
|
'South Naknek', |
14142
|
|
|
|
|
|
|
'South New Castle', |
14143
|
|
|
|
|
|
|
'South Nyack', |
14144
|
|
|
|
|
|
|
'South Ogden', |
14145
|
|
|
|
|
|
|
'South Orange', |
14146
|
|
|
|
|
|
|
'South Oroville', |
14147
|
|
|
|
|
|
|
'South Padre Island', |
14148
|
|
|
|
|
|
|
'South Palm Beach', |
14149
|
|
|
|
|
|
|
'South Paris', |
14150
|
|
|
|
|
|
|
'South Park', |
14151
|
|
|
|
|
|
|
'South Park Township', |
14152
|
|
|
|
|
|
|
'South Park View', |
14153
|
|
|
|
|
|
|
'South Pasadena', |
14154
|
|
|
|
|
|
|
'South Patrick Shores', |
14155
|
|
|
|
|
|
|
'South Pekin', |
14156
|
|
|
|
|
|
|
'South Philipsburg', |
14157
|
|
|
|
|
|
|
'South Pittsburg', |
14158
|
|
|
|
|
|
|
'South Plainfield', |
14159
|
|
|
|
|
|
|
'South Point', |
14160
|
|
|
|
|
|
|
'South Portland', |
14161
|
|
|
|
|
|
|
'South Pottstown', |
14162
|
|
|
|
|
|
|
'South Prairie', |
14163
|
|
|
|
|
|
|
'South Range', |
14164
|
|
|
|
|
|
|
'South Renovo', |
14165
|
|
|
|
|
|
|
'South River', |
14166
|
|
|
|
|
|
|
'South Rockwood', |
14167
|
|
|
|
|
|
|
'South Rosemary', |
14168
|
|
|
|
|
|
|
'South Roxana', |
14169
|
|
|
|
|
|
|
'South Russell', |
14170
|
|
|
|
|
|
|
'South Salem', |
14171
|
|
|
|
|
|
|
'South Salt Lake', |
14172
|
|
|
|
|
|
|
'South San Francisco', |
14173
|
|
|
|
|
|
|
'South San Gabriel', |
14174
|
|
|
|
|
|
|
'South San Jose Hills', |
14175
|
|
|
|
|
|
|
'South Sanford', |
14176
|
|
|
|
|
|
|
'South Sarasota', |
14177
|
|
|
|
|
|
|
'South Shaftsbury', |
14178
|
|
|
|
|
|
|
'South Shore', |
14179
|
|
|
|
|
|
|
'South Sioux City', |
14180
|
|
|
|
|
|
|
'South Snyderville Basin', |
14181
|
|
|
|
|
|
|
'South Solon', |
14182
|
|
|
|
|
|
|
'South St. Paul', |
14183
|
|
|
|
|
|
|
'South Sumter', |
14184
|
|
|
|
|
|
|
'South Taft', |
14185
|
|
|
|
|
|
|
'South Toledo Bend', |
14186
|
|
|
|
|
|
|
'South Toms River', |
14187
|
|
|
|
|
|
|
'South Tucson', |
14188
|
|
|
|
|
|
|
'South Vacherie', |
14189
|
|
|
|
|
|
|
'South Valley', |
14190
|
|
|
|
|
|
|
'South Valley Stream', |
14191
|
|
|
|
|
|
|
'South Venice', |
14192
|
|
|
|
|
|
|
'South Vienna', |
14193
|
|
|
|
|
|
|
'South Vinemont', |
14194
|
|
|
|
|
|
|
'South Wallins', |
14195
|
|
|
|
|
|
|
'South Waverly', |
14196
|
|
|
|
|
|
|
'South Wayne', |
14197
|
|
|
|
|
|
|
'South Weber', |
14198
|
|
|
|
|
|
|
'South Webster', |
14199
|
|
|
|
|
|
|
'South Weldon', |
14200
|
|
|
|
|
|
|
'South Wenatchee', |
14201
|
|
|
|
|
|
|
'South West City', |
14202
|
|
|
|
|
|
|
'South Whitley', |
14203
|
|
|
|
|
|
|
'South Whittier', |
14204
|
|
|
|
|
|
|
'South Willard', |
14205
|
|
|
|
|
|
|
'South Williamsport', |
14206
|
|
|
|
|
|
|
'South Wilmington', |
14207
|
|
|
|
|
|
|
'South Windham', |
14208
|
|
|
|
|
|
|
'South Woodbridge', |
14209
|
|
|
|
|
|
|
'South Woodstock', |
14210
|
|
|
|
|
|
|
'South Yarmouth', |
14211
|
|
|
|
|
|
|
'South Yuba City', |
14212
|
|
|
|
|
|
|
'South Zanesville', |
14213
|
|
|
|
|
|
|
'Southampton', |
14214
|
|
|
|
|
|
|
'Southaven', |
14215
|
|
|
|
|
|
|
'Southbridge', |
14216
|
|
|
|
|
|
|
'Southchase', |
14217
|
|
|
|
|
|
|
'Southeast Arcadia', |
14218
|
|
|
|
|
|
|
'Southern Pines', |
14219
|
|
|
|
|
|
|
'Southern Shops', |
14220
|
|
|
|
|
|
|
'Southern Shores', |
14221
|
|
|
|
|
|
|
'Southern View', |
14222
|
|
|
|
|
|
|
'Southfield', |
14223
|
|
|
|
|
|
|
'Southgate', |
14224
|
|
|
|
|
|
|
'Southglenn', |
14225
|
|
|
|
|
|
|
'Southlake', |
14226
|
|
|
|
|
|
|
'Southmayd', |
14227
|
|
|
|
|
|
|
'Southmont', |
14228
|
|
|
|
|
|
|
'Southold', |
14229
|
|
|
|
|
|
|
'Southport', |
14230
|
|
|
|
|
|
|
'Southside', |
14231
|
|
|
|
|
|
|
'Southside Place', |
14232
|
|
|
|
|
|
|
'Southwest Greensburg', |
14233
|
|
|
|
|
|
|
'Southwood Acres', |
14234
|
|
|
|
|
|
|
'Spackenkill', |
14235
|
|
|
|
|
|
|
'Spade', |
14236
|
|
|
|
|
|
|
'Spalding', |
14237
|
|
|
|
|
|
|
'Spanaway', |
14238
|
|
|
|
|
|
|
'Spangle', |
14239
|
|
|
|
|
|
|
'Spanish Fork', |
14240
|
|
|
|
|
|
|
'Spanish Fort', |
14241
|
|
|
|
|
|
|
'Spanish Lake', |
14242
|
|
|
|
|
|
|
'Spanish Springs', |
14243
|
|
|
|
|
|
|
'Spanish Valley', |
14244
|
|
|
|
|
|
|
'Sparkman', |
14245
|
|
|
|
|
|
|
'Sparks', |
14246
|
|
|
|
|
|
|
'Sparland', |
14247
|
|
|
|
|
|
|
'Sparta', |
14248
|
|
|
|
|
|
|
'Spartanburg', |
14249
|
|
|
|
|
|
|
'Spartansburg', |
14250
|
|
|
|
|
|
|
'Spaulding', |
14251
|
|
|
|
|
|
|
'Spavinaw', |
14252
|
|
|
|
|
|
|
'Spearfish', |
14253
|
|
|
|
|
|
|
'Spearman', |
14254
|
|
|
|
|
|
|
'Spearsville', |
14255
|
|
|
|
|
|
|
'Spearville', |
14256
|
|
|
|
|
|
|
'Speculator', |
14257
|
|
|
|
|
|
|
'Speed', |
14258
|
|
|
|
|
|
|
'Speedway', |
14259
|
|
|
|
|
|
|
'Speers', |
14260
|
|
|
|
|
|
|
'Spencer', |
14261
|
|
|
|
|
|
|
'Spencer Mountain', |
14262
|
|
|
|
|
|
|
'Spencerport', |
14263
|
|
|
|
|
|
|
'Spencerville', |
14264
|
|
|
|
|
|
|
'Sperry', |
14265
|
|
|
|
|
|
|
'Spiceland', |
14266
|
|
|
|
|
|
|
'Spicer', |
14267
|
|
|
|
|
|
|
'Spickard', |
14268
|
|
|
|
|
|
|
'Spillertown', |
14269
|
|
|
|
|
|
|
'Spillville', |
14270
|
|
|
|
|
|
|
'Spindale', |
14271
|
|
|
|
|
|
|
'Spirit Lake', |
14272
|
|
|
|
|
|
|
'Spiritwood Lake', |
14273
|
|
|
|
|
|
|
'Spiro', |
14274
|
|
|
|
|
|
|
'Spivey', |
14275
|
|
|
|
|
|
|
'Spiveys Corner', |
14276
|
|
|
|
|
|
|
'Splendora', |
14277
|
|
|
|
|
|
|
'Spofford', |
14278
|
|
|
|
|
|
|
'Spokane', |
14279
|
|
|
|
|
|
|
'Spooner', |
14280
|
|
|
|
|
|
|
'Sportsmen Acres', |
14281
|
|
|
|
|
|
|
'Sportsmen Acres Community', |
14282
|
|
|
|
|
|
|
'Spotswood', |
14283
|
|
|
|
|
|
|
'Spotsylvania Courthouse', |
14284
|
|
|
|
|
|
|
'Sprague', |
14285
|
|
|
|
|
|
|
'Spragueville', |
14286
|
|
|
|
|
|
|
'Spray', |
14287
|
|
|
|
|
|
|
'Spreckels', |
14288
|
|
|
|
|
|
|
'Spring', |
14289
|
|
|
|
|
|
|
'Spring Arbor', |
14290
|
|
|
|
|
|
|
'Spring Bay', |
14291
|
|
|
|
|
|
|
'Spring City', |
14292
|
|
|
|
|
|
|
'Spring Creek', |
14293
|
|
|
|
|
|
|
'Spring Garden', |
14294
|
|
|
|
|
|
|
'Spring Garden-Terra Verde', |
14295
|
|
|
|
|
|
|
'Spring Green', |
14296
|
|
|
|
|
|
|
'Spring Grove', |
14297
|
|
|
|
|
|
|
'Spring Hill', |
14298
|
|
|
|
|
|
|
'Spring Hope', |
14299
|
|
|
|
|
|
|
'Spring House', |
14300
|
|
|
|
|
|
|
'Spring Lake', |
14301
|
|
|
|
|
|
|
'Spring Lake Heights', |
14302
|
|
|
|
|
|
|
'Spring Lake Park', |
14303
|
|
|
|
|
|
|
'Spring Mill', |
14304
|
|
|
|
|
|
|
'Spring Mills', |
14305
|
|
|
|
|
|
|
'Spring Mount', |
14306
|
|
|
|
|
|
|
'Spring Park', |
14307
|
|
|
|
|
|
|
'Spring Ridge', |
14308
|
|
|
|
|
|
|
'Spring Valley', |
14309
|
|
|
|
|
|
|
'Springboro', |
14310
|
|
|
|
|
|
|
'Springbrook', |
14311
|
|
|
|
|
|
|
'Springdale', |
14312
|
|
|
|
|
|
|
'Springer', |
14313
|
|
|
|
|
|
|
'Springerton', |
14314
|
|
|
|
|
|
|
'Springerville', |
14315
|
|
|
|
|
|
|
'Springetts Manor-Yorklyn', |
14316
|
|
|
|
|
|
|
'Springfield', |
14317
|
|
|
|
|
|
|
'Springhill', |
14318
|
|
|
|
|
|
|
'Springlake', |
14319
|
|
|
|
|
|
|
'Springlee', |
14320
|
|
|
|
|
|
|
'Springport', |
14321
|
|
|
|
|
|
|
'Springs', |
14322
|
|
|
|
|
|
|
'Springtown', |
14323
|
|
|
|
|
|
|
'Springvale', |
14324
|
|
|
|
|
|
|
'Springview', |
14325
|
|
|
|
|
|
|
'Springville', |
14326
|
|
|
|
|
|
|
'Spruce Pine', |
14327
|
|
|
|
|
|
|
'Spry', |
14328
|
|
|
|
|
|
|
'Spur', |
14329
|
|
|
|
|
|
|
'Spurgeon', |
14330
|
|
|
|
|
|
|
'Squaw Lake', |
14331
|
|
|
|
|
|
|
'Squaw Valley', |
14332
|
|
|
|
|
|
|
'Squirrel Mountain Valley', |
14333
|
|
|
|
|
|
|
'St. Albans', |
14334
|
|
|
|
|
|
|
'St. Andrews', |
14335
|
|
|
|
|
|
|
'St. Ann', |
14336
|
|
|
|
|
|
|
'St. Anne', |
14337
|
|
|
|
|
|
|
'St. Ansgar', |
14338
|
|
|
|
|
|
|
'St. Anthony', |
14339
|
|
|
|
|
|
|
'St. Augustine', |
14340
|
|
|
|
|
|
|
'St. Augustine Beach', |
14341
|
|
|
|
|
|
|
'St. Augustine Shores', |
14342
|
|
|
|
|
|
|
'St. Augustine South', |
14343
|
|
|
|
|
|
|
'St. Bernard', |
14344
|
|
|
|
|
|
|
'St. Bonaventure', |
14345
|
|
|
|
|
|
|
'St. Bonifacius', |
14346
|
|
|
|
|
|
|
'St. Charles', |
14347
|
|
|
|
|
|
|
'St. Clair', |
14348
|
|
|
|
|
|
|
'St. Clair Shores', |
14349
|
|
|
|
|
|
|
'St. Clairsville', |
14350
|
|
|
|
|
|
|
'St. Cloud', |
14351
|
|
|
|
|
|
|
'St. Croix Falls', |
14352
|
|
|
|
|
|
|
'St. David', |
14353
|
|
|
|
|
|
|
'St. Dennis', |
14354
|
|
|
|
|
|
|
'St. Donatus', |
14355
|
|
|
|
|
|
|
'St. Edward', |
14356
|
|
|
|
|
|
|
'St. Elizabeth', |
14357
|
|
|
|
|
|
|
'St. Elmo', |
14358
|
|
|
|
|
|
|
'St. Florian', |
14359
|
|
|
|
|
|
|
'St. Francis', |
14360
|
|
|
|
|
|
|
'St. Francisville', |
14361
|
|
|
|
|
|
|
'St. Gabriel', |
14362
|
|
|
|
|
|
|
'St. George', |
14363
|
|
|
|
|
|
|
'St. Hedwig', |
14364
|
|
|
|
|
|
|
'St. Helen', |
14365
|
|
|
|
|
|
|
'St. Helena', |
14366
|
|
|
|
|
|
|
'St. Helens', |
14367
|
|
|
|
|
|
|
'St. Henry', |
14368
|
|
|
|
|
|
|
'St. Hilaire', |
14369
|
|
|
|
|
|
|
'St. Ignace', |
14370
|
|
|
|
|
|
|
'St. Ignatius', |
14371
|
|
|
|
|
|
|
'St. Jacob', |
14372
|
|
|
|
|
|
|
'St. James', |
14373
|
|
|
|
|
|
|
'St. James City', |
14374
|
|
|
|
|
|
|
'St. Jo', |
14375
|
|
|
|
|
|
|
'St. Joe', |
14376
|
|
|
|
|
|
|
'St. John', |
14377
|
|
|
|
|
|
|
'St. Johns', |
14378
|
|
|
|
|
|
|
'St. Johnsbury', |
14379
|
|
|
|
|
|
|
'St. Johnsville', |
14380
|
|
|
|
|
|
|
'St. Joseph', |
14381
|
|
|
|
|
|
|
'St. Lawrence', |
14382
|
|
|
|
|
|
|
'St. Leo', |
14383
|
|
|
|
|
|
|
'St. Leon', |
14384
|
|
|
|
|
|
|
'St. Leonard', |
14385
|
|
|
|
|
|
|
'St. Libory', |
14386
|
|
|
|
|
|
|
'St. Louis', |
14387
|
|
|
|
|
|
|
'St. Louis Park', |
14388
|
|
|
|
|
|
|
'St. Louisville', |
14389
|
|
|
|
|
|
|
'St. Lucas', |
14390
|
|
|
|
|
|
|
'St. Lucie', |
14391
|
|
|
|
|
|
|
'St. Marie', |
14392
|
|
|
|
|
|
|
'St. Maries', |
14393
|
|
|
|
|
|
|
'St. Marks', |
14394
|
|
|
|
|
|
|
'St. Martin', |
14395
|
|
|
|
|
|
|
'St. Martins', |
14396
|
|
|
|
|
|
|
'St. Martinville', |
14397
|
|
|
|
|
|
|
'St. Mary', |
14398
|
|
|
|
|
|
|
'St. Mary\'s', |
14399
|
|
|
|
|
|
|
'St. Marys', |
14400
|
|
|
|
|
|
|
'St. Marys Point', |
14401
|
|
|
|
|
|
|
'St. Matthews', |
14402
|
|
|
|
|
|
|
'St. Michael', |
14403
|
|
|
|
|
|
|
'St. Michael-Sidman', |
14404
|
|
|
|
|
|
|
'St. Michaels', |
14405
|
|
|
|
|
|
|
'St. Nazianz', |
14406
|
|
|
|
|
|
|
'St. Olaf', |
14407
|
|
|
|
|
|
|
'St. Paris', |
14408
|
|
|
|
|
|
|
'St. Paul', |
14409
|
|
|
|
|
|
|
'St. Paul Park', |
14410
|
|
|
|
|
|
|
'St. Pauls', |
14411
|
|
|
|
|
|
|
'St. Pete Beach', |
14412
|
|
|
|
|
|
|
'St. Peter', |
14413
|
|
|
|
|
|
|
'St. Peters', |
14414
|
|
|
|
|
|
|
'St. Petersburg', |
14415
|
|
|
|
|
|
|
'St. Pierre', |
14416
|
|
|
|
|
|
|
'St. Regis', |
14417
|
|
|
|
|
|
|
'St. Regis Park', |
14418
|
|
|
|
|
|
|
'St. Robert', |
14419
|
|
|
|
|
|
|
'St. Rosa', |
14420
|
|
|
|
|
|
|
'St. Rose', |
14421
|
|
|
|
|
|
|
'St. Simons', |
14422
|
|
|
|
|
|
|
'St. Stephen', |
14423
|
|
|
|
|
|
|
'St. Stephens', |
14424
|
|
|
|
|
|
|
'St. Thomas', |
14425
|
|
|
|
|
|
|
'St. Vincent', |
14426
|
|
|
|
|
|
|
'St. Xavier', |
14427
|
|
|
|
|
|
|
'Staatsburg', |
14428
|
|
|
|
|
|
|
'Stacey Street', |
14429
|
|
|
|
|
|
|
'Stacy', |
14430
|
|
|
|
|
|
|
'Stacyville', |
14431
|
|
|
|
|
|
|
'Stafford', |
14432
|
|
|
|
|
|
|
'Stagecoach', |
14433
|
|
|
|
|
|
|
'Staley', |
14434
|
|
|
|
|
|
|
'Stallings', |
14435
|
|
|
|
|
|
|
'Stallion Springs', |
14436
|
|
|
|
|
|
|
'Stambaugh', |
14437
|
|
|
|
|
|
|
'Stamford', |
14438
|
|
|
|
|
|
|
'Stamping Ground', |
14439
|
|
|
|
|
|
|
'Stamps', |
14440
|
|
|
|
|
|
|
'Stanaford', |
14441
|
|
|
|
|
|
|
'Stanardsville', |
14442
|
|
|
|
|
|
|
'Stanberry', |
14443
|
|
|
|
|
|
|
'Standard', |
14444
|
|
|
|
|
|
|
'Standard City', |
14445
|
|
|
|
|
|
|
'Standing Pine', |
14446
|
|
|
|
|
|
|
'Standish', |
14447
|
|
|
|
|
|
|
'Stanfield', |
14448
|
|
|
|
|
|
|
'Stanford', |
14449
|
|
|
|
|
|
|
'Stanhope', |
14450
|
|
|
|
|
|
|
'Stanley', |
14451
|
|
|
|
|
|
|
'Stanleytown', |
14452
|
|
|
|
|
|
|
'Stannards', |
14453
|
|
|
|
|
|
|
'Stansbury Park', |
14454
|
|
|
|
|
|
|
'Stanton', |
14455
|
|
|
|
|
|
|
'Stantonsburg', |
14456
|
|
|
|
|
|
|
'Stantonville', |
14457
|
|
|
|
|
|
|
'Stanwood', |
14458
|
|
|
|
|
|
|
'Staplehurst', |
14459
|
|
|
|
|
|
|
'Staples', |
14460
|
|
|
|
|
|
|
'Stapleton', |
14461
|
|
|
|
|
|
|
'Star', |
14462
|
|
|
|
|
|
|
'Star City', |
14463
|
|
|
|
|
|
|
'Star Harbor', |
14464
|
|
|
|
|
|
|
'Star Lake', |
14465
|
|
|
|
|
|
|
'Star Prairie', |
14466
|
|
|
|
|
|
|
'Star Valley Ranch', |
14467
|
|
|
|
|
|
|
'Starbuck', |
14468
|
|
|
|
|
|
|
'Stark', |
14469
|
|
|
|
|
|
|
'Stark City', |
14470
|
|
|
|
|
|
|
'Starke', |
14471
|
|
|
|
|
|
|
'Starkville', |
14472
|
|
|
|
|
|
|
'Starkweather', |
14473
|
|
|
|
|
|
|
'Starr', |
14474
|
|
|
|
|
|
|
'Starr School', |
14475
|
|
|
|
|
|
|
'Starrucca', |
14476
|
|
|
|
|
|
|
'Startex', |
14477
|
|
|
|
|
|
|
'Startup', |
14478
|
|
|
|
|
|
|
'State Center', |
14479
|
|
|
|
|
|
|
'State College', |
14480
|
|
|
|
|
|
|
'State Line', |
14481
|
|
|
|
|
|
|
'State Line City', |
14482
|
|
|
|
|
|
|
'Stateburg', |
14483
|
|
|
|
|
|
|
'Stateline', |
14484
|
|
|
|
|
|
|
'Statesboro', |
14485
|
|
|
|
|
|
|
'Statesville', |
14486
|
|
|
|
|
|
|
'Statham', |
14487
|
|
|
|
|
|
|
'Staunton', |
14488
|
|
|
|
|
|
|
'Stayton', |
14489
|
|
|
|
|
|
|
'Ste. Genevieve', |
14490
|
|
|
|
|
|
|
'Ste. Marie', |
14491
|
|
|
|
|
|
|
'Steamboat', |
14492
|
|
|
|
|
|
|
'Steamboat Rock', |
14493
|
|
|
|
|
|
|
'Steamboat Springs', |
14494
|
|
|
|
|
|
|
'Stearns', |
14495
|
|
|
|
|
|
|
'Stebbins', |
14496
|
|
|
|
|
|
|
'Stedman', |
14497
|
|
|
|
|
|
|
'Steele', |
14498
|
|
|
|
|
|
|
'Steele City', |
14499
|
|
|
|
|
|
|
'Steeleville', |
14500
|
|
|
|
|
|
|
'Steelton', |
14501
|
|
|
|
|
|
|
'Steelville', |
14502
|
|
|
|
|
|
|
'Steen', |
14503
|
|
|
|
|
|
|
'Steger', |
14504
|
|
|
|
|
|
|
'Steilacoom', |
14505
|
|
|
|
|
|
|
'Steinauer', |
14506
|
|
|
|
|
|
|
'Stella', |
14507
|
|
|
|
|
|
|
'Stem', |
14508
|
|
|
|
|
|
|
'Stephen', |
14509
|
|
|
|
|
|
|
'Stephens', |
14510
|
|
|
|
|
|
|
'Stephens City', |
14511
|
|
|
|
|
|
|
'Stephenson', |
14512
|
|
|
|
|
|
|
'Stephenville', |
14513
|
|
|
|
|
|
|
'Sterling', |
14514
|
|
|
|
|
|
|
'Sterling City', |
14515
|
|
|
|
|
|
|
'Sterling Heights', |
14516
|
|
|
|
|
|
|
'Sterlington', |
14517
|
|
|
|
|
|
|
'Stetsonville', |
14518
|
|
|
|
|
|
|
'Steuben', |
14519
|
|
|
|
|
|
|
'Steubenville', |
14520
|
|
|
|
|
|
|
'Stevens Point', |
14521
|
|
|
|
|
|
|
'Stevens Village', |
14522
|
|
|
|
|
|
|
'Stevenson', |
14523
|
|
|
|
|
|
|
'Stevensville', |
14524
|
|
|
|
|
|
|
'Steward', |
14525
|
|
|
|
|
|
|
'Stewardson', |
14526
|
|
|
|
|
|
|
'Stewart', |
14527
|
|
|
|
|
|
|
'Stewart Manor', |
14528
|
|
|
|
|
|
|
'Stewartstown', |
14529
|
|
|
|
|
|
|
'Stewartsville', |
14530
|
|
|
|
|
|
|
'Stewartville', |
14531
|
|
|
|
|
|
|
'Stickney', |
14532
|
|
|
|
|
|
|
'Stidham', |
14533
|
|
|
|
|
|
|
'Stigler', |
14534
|
|
|
|
|
|
|
'Stilesville', |
14535
|
|
|
|
|
|
|
'Stillman Valley', |
14536
|
|
|
|
|
|
|
'Stillmore', |
14537
|
|
|
|
|
|
|
'Stillwater', |
14538
|
|
|
|
|
|
|
'Stilwell', |
14539
|
|
|
|
|
|
|
'Stimson Crossing', |
14540
|
|
|
|
|
|
|
'Stinesville', |
14541
|
|
|
|
|
|
|
'Stinnett', |
14542
|
|
|
|
|
|
|
'Stinson Beach', |
14543
|
|
|
|
|
|
|
'Stites', |
14544
|
|
|
|
|
|
|
'Stock Island', |
14545
|
|
|
|
|
|
|
'Stockbridge', |
14546
|
|
|
|
|
|
|
'Stockdale', |
14547
|
|
|
|
|
|
|
'Stockertown', |
14548
|
|
|
|
|
|
|
'Stockham', |
14549
|
|
|
|
|
|
|
'Stockholm', |
14550
|
|
|
|
|
|
|
'Stockport', |
14551
|
|
|
|
|
|
|
'Stockton', |
14552
|
|
|
|
|
|
|
'Stockville', |
14553
|
|
|
|
|
|
|
'Stoddard', |
14554
|
|
|
|
|
|
|
'Stokesdale', |
14555
|
|
|
|
|
|
|
'Stone Creek', |
14556
|
|
|
|
|
|
|
'Stone Harbor', |
14557
|
|
|
|
|
|
|
'Stone Mountain', |
14558
|
|
|
|
|
|
|
'Stone Park', |
14559
|
|
|
|
|
|
|
'Stone Ridge', |
14560
|
|
|
|
|
|
|
'Stoneboro', |
14561
|
|
|
|
|
|
|
'Stonefort', |
14562
|
|
|
|
|
|
|
'Stonegate', |
14563
|
|
|
|
|
|
|
'Stoneham', |
14564
|
|
|
|
|
|
|
'Stoneville', |
14565
|
|
|
|
|
|
|
'Stonewall', |
14566
|
|
|
|
|
|
|
'Stonewood', |
14567
|
|
|
|
|
|
|
'Stonington', |
14568
|
|
|
|
|
|
|
'Stony Brook', |
14569
|
|
|
|
|
|
|
'Stony Creek', |
14570
|
|
|
|
|
|
|
'Stony Point', |
14571
|
|
|
|
|
|
|
'Stony Prairie', |
14572
|
|
|
|
|
|
|
'Stony River', |
14573
|
|
|
|
|
|
|
'Stonybrook-Wilshire', |
14574
|
|
|
|
|
|
|
'Storden', |
14575
|
|
|
|
|
|
|
'Storla', |
14576
|
|
|
|
|
|
|
'Storm Lake', |
14577
|
|
|
|
|
|
|
'Stormstown', |
14578
|
|
|
|
|
|
|
'Storrie', |
14579
|
|
|
|
|
|
|
'Storrs', |
14580
|
|
|
|
|
|
|
'Story', |
14581
|
|
|
|
|
|
|
'Story City', |
14582
|
|
|
|
|
|
|
'Stotesbury', |
14583
|
|
|
|
|
|
|
'Stotts City', |
14584
|
|
|
|
|
|
|
'Stottville', |
14585
|
|
|
|
|
|
|
'Stoughton', |
14586
|
|
|
|
|
|
|
'Stout', |
14587
|
|
|
|
|
|
|
'Stoutland', |
14588
|
|
|
|
|
|
|
'Stoutsville', |
14589
|
|
|
|
|
|
|
'Stovall', |
14590
|
|
|
|
|
|
|
'Stover', |
14591
|
|
|
|
|
|
|
'Stow', |
14592
|
|
|
|
|
|
|
'Stowe', |
14593
|
|
|
|
|
|
|
'Stowe Township', |
14594
|
|
|
|
|
|
|
'Stowell', |
14595
|
|
|
|
|
|
|
'Stoy', |
14596
|
|
|
|
|
|
|
'Stoystown', |
14597
|
|
|
|
|
|
|
'Strafford', |
14598
|
|
|
|
|
|
|
'Strandburg', |
14599
|
|
|
|
|
|
|
'Strandquist', |
14600
|
|
|
|
|
|
|
'Strang', |
14601
|
|
|
|
|
|
|
'Strasburg', |
14602
|
|
|
|
|
|
|
'Stratford', |
14603
|
|
|
|
|
|
|
'Strathcona', |
14604
|
|
|
|
|
|
|
'Strathmere', |
14605
|
|
|
|
|
|
|
'Strathmoor Manor', |
14606
|
|
|
|
|
|
|
'Strathmoor Village', |
14607
|
|
|
|
|
|
|
'Strathmore', |
14608
|
|
|
|
|
|
|
'Stratmoor', |
14609
|
|
|
|
|
|
|
'Strattanville', |
14610
|
|
|
|
|
|
|
'Stratton', |
14611
|
|
|
|
|
|
|
'Straughn', |
14612
|
|
|
|
|
|
|
'Strausstown', |
14613
|
|
|
|
|
|
|
'Strawberry', |
14614
|
|
|
|
|
|
|
'Strawberry Point', |
14615
|
|
|
|
|
|
|
'Strawn', |
14616
|
|
|
|
|
|
|
'Streamwood', |
14617
|
|
|
|
|
|
|
'Streator', |
14618
|
|
|
|
|
|
|
'Streeter', |
14619
|
|
|
|
|
|
|
'Streetman', |
14620
|
|
|
|
|
|
|
'Streetsboro', |
14621
|
|
|
|
|
|
|
'Stringtown', |
14622
|
|
|
|
|
|
|
'Stromsburg', |
14623
|
|
|
|
|
|
|
'Strong', |
14624
|
|
|
|
|
|
|
'Strong City', |
14625
|
|
|
|
|
|
|
'Stronghurst', |
14626
|
|
|
|
|
|
|
'Strongsville', |
14627
|
|
|
|
|
|
|
'Stroud', |
14628
|
|
|
|
|
|
|
'Stroudsburg', |
14629
|
|
|
|
|
|
|
'Struble', |
14630
|
|
|
|
|
|
|
'Strum', |
14631
|
|
|
|
|
|
|
'Struthers', |
14632
|
|
|
|
|
|
|
'Stryker', |
14633
|
|
|
|
|
|
|
'Stuart', |
14634
|
|
|
|
|
|
|
'Stuarts Draft', |
14635
|
|
|
|
|
|
|
'Stuckey', |
14636
|
|
|
|
|
|
|
'Study Butte-Terlingua', |
14637
|
|
|
|
|
|
|
'Sturbridge', |
14638
|
|
|
|
|
|
|
'Sturgeon', |
14639
|
|
|
|
|
|
|
'Sturgeon Bay', |
14640
|
|
|
|
|
|
|
'Sturgeon Lake', |
14641
|
|
|
|
|
|
|
'Sturgeon-Noblestown', |
14642
|
|
|
|
|
|
|
'Sturgis', |
14643
|
|
|
|
|
|
|
'Sturtevant', |
14644
|
|
|
|
|
|
|
'Stuttgart', |
14645
|
|
|
|
|
|
|
'Subiaco', |
14646
|
|
|
|
|
|
|
'Sublette', |
14647
|
|
|
|
|
|
|
'Sublimity', |
14648
|
|
|
|
|
|
|
'Succasunna-Kenvil', |
14649
|
|
|
|
|
|
|
'Success', |
14650
|
|
|
|
|
|
|
'Sudan', |
14651
|
|
|
|
|
|
|
'Sudden Valley', |
14652
|
|
|
|
|
|
|
'Sudlersville', |
14653
|
|
|
|
|
|
|
'Sudley', |
14654
|
|
|
|
|
|
|
'Suffern', |
14655
|
|
|
|
|
|
|
'Suffield Depot', |
14656
|
|
|
|
|
|
|
'Suffolk', |
14657
|
|
|
|
|
|
|
'Sugar Bush Knolls', |
14658
|
|
|
|
|
|
|
'Sugar City', |
14659
|
|
|
|
|
|
|
'Sugar Creek', |
14660
|
|
|
|
|
|
|
'Sugar Grove', |
14661
|
|
|
|
|
|
|
'Sugar Hill', |
14662
|
|
|
|
|
|
|
'Sugar Land', |
14663
|
|
|
|
|
|
|
'Sugar Mountain', |
14664
|
|
|
|
|
|
|
'Sugar Notch', |
14665
|
|
|
|
|
|
|
'Sugarcreek', |
14666
|
|
|
|
|
|
|
'Sugarmill Woods', |
14667
|
|
|
|
|
|
|
'Sugden', |
14668
|
|
|
|
|
|
|
'Suisun City', |
14669
|
|
|
|
|
|
|
'Suitland-Silver Hill', |
14670
|
|
|
|
|
|
|
'Sulligent', |
14671
|
|
|
|
|
|
|
'Sullivan', |
14672
|
|
|
|
|
|
|
'Sullivan City', |
14673
|
|
|
|
|
|
|
'Sullivan\'s Island', |
14674
|
|
|
|
|
|
|
'Sully', |
14675
|
|
|
|
|
|
|
'Sulphur', |
14676
|
|
|
|
|
|
|
'Sulphur Rock', |
14677
|
|
|
|
|
|
|
'Sulphur Springs', |
14678
|
|
|
|
|
|
|
'Sultan', |
14679
|
|
|
|
|
|
|
'Sumas', |
14680
|
|
|
|
|
|
|
'Sumiton', |
14681
|
|
|
|
|
|
|
'Summerdale', |
14682
|
|
|
|
|
|
|
'Summerfield', |
14683
|
|
|
|
|
|
|
'Summerhill', |
14684
|
|
|
|
|
|
|
'Summerland', |
14685
|
|
|
|
|
|
|
'Summerlin South', |
14686
|
|
|
|
|
|
|
'Summerside', |
14687
|
|
|
|
|
|
|
'Summersville', |
14688
|
|
|
|
|
|
|
'Summerton', |
14689
|
|
|
|
|
|
|
'Summertown', |
14690
|
|
|
|
|
|
|
'Summerville', |
14691
|
|
|
|
|
|
|
'Summit', |
14692
|
|
|
|
|
|
|
'Summit Hill', |
14693
|
|
|
|
|
|
|
'Summit Park', |
14694
|
|
|
|
|
|
|
'Summit Station', |
14695
|
|
|
|
|
|
|
'Summitview', |
14696
|
|
|
|
|
|
|
'Summitville', |
14697
|
|
|
|
|
|
|
'Sumner', |
14698
|
|
|
|
|
|
|
'Sumpter', |
14699
|
|
|
|
|
|
|
'Sumrall', |
14700
|
|
|
|
|
|
|
'Sumter', |
14701
|
|
|
|
|
|
|
'Sun', |
14702
|
|
|
|
|
|
|
'Sun City', |
14703
|
|
|
|
|
|
|
'Sun City West', |
14704
|
|
|
|
|
|
|
'Sun Lakes', |
14705
|
|
|
|
|
|
|
'Sun Prairie', |
14706
|
|
|
|
|
|
|
'Sun River', |
14707
|
|
|
|
|
|
|
'Sun River Terrace', |
14708
|
|
|
|
|
|
|
'Sun Valley', |
14709
|
|
|
|
|
|
|
'Sunbright', |
14710
|
|
|
|
|
|
|
'Sunburg', |
14711
|
|
|
|
|
|
|
'Sunburst', |
14712
|
|
|
|
|
|
|
'Sunbury', |
14713
|
|
|
|
|
|
|
'Suncoast Estates', |
14714
|
|
|
|
|
|
|
'Suncook', |
14715
|
|
|
|
|
|
|
'Sundance', |
14716
|
|
|
|
|
|
|
'Sundown', |
14717
|
|
|
|
|
|
|
'Sunfield', |
14718
|
|
|
|
|
|
|
'Sunfish Lake', |
14719
|
|
|
|
|
|
|
'Sunflower', |
14720
|
|
|
|
|
|
|
'Sunland Park', |
14721
|
|
|
|
|
|
|
'Sunman', |
14722
|
|
|
|
|
|
|
'Sunny Isles Beach', |
14723
|
|
|
|
|
|
|
'Sunny Side', |
14724
|
|
|
|
|
|
|
'Sunnyside', |
14725
|
|
|
|
|
|
|
'Sunnyside-Tahoe City', |
14726
|
|
|
|
|
|
|
'Sunnyslope', |
14727
|
|
|
|
|
|
|
'Sunnyvale', |
14728
|
|
|
|
|
|
|
'Sunol', |
14729
|
|
|
|
|
|
|
'Sunol-Midtown', |
14730
|
|
|
|
|
|
|
'Sunray', |
14731
|
|
|
|
|
|
|
'Sunrise', |
14732
|
|
|
|
|
|
|
'Sunrise Beach', |
14733
|
|
|
|
|
|
|
'Sunrise Beach Village', |
14734
|
|
|
|
|
|
|
'Sunrise Manor', |
14735
|
|
|
|
|
|
|
'Sunset', |
14736
|
|
|
|
|
|
|
'Sunset Beach', |
14737
|
|
|
|
|
|
|
'Sunset Hills', |
14738
|
|
|
|
|
|
|
'Sunset Valley', |
14739
|
|
|
|
|
|
|
'Sunset Village', |
14740
|
|
|
|
|
|
|
'Sunshine Acres', |
14741
|
|
|
|
|
|
|
'Sunshine Ranches', |
14742
|
|
|
|
|
|
|
'Supai', |
14743
|
|
|
|
|
|
|
'Superior', |
14744
|
|
|
|
|
|
|
'Supreme', |
14745
|
|
|
|
|
|
|
'Suquamish', |
14746
|
|
|
|
|
|
|
'Surf City', |
14747
|
|
|
|
|
|
|
'Surfside', |
14748
|
|
|
|
|
|
|
'Surfside Beach', |
14749
|
|
|
|
|
|
|
'Surgoinsville', |
14750
|
|
|
|
|
|
|
'Suring', |
14751
|
|
|
|
|
|
|
'Surprise', |
14752
|
|
|
|
|
|
|
'Surrency', |
14753
|
|
|
|
|
|
|
'Surrey', |
14754
|
|
|
|
|
|
|
'Surry', |
14755
|
|
|
|
|
|
|
'Susan Moore', |
14756
|
|
|
|
|
|
|
'Susank', |
14757
|
|
|
|
|
|
|
'Susanville', |
14758
|
|
|
|
|
|
|
'Susitna', |
14759
|
|
|
|
|
|
|
'Susquehanna Depot', |
14760
|
|
|
|
|
|
|
'Susquehanna Trails', |
14761
|
|
|
|
|
|
|
'Sussex', |
14762
|
|
|
|
|
|
|
'Sutcliffe', |
14763
|
|
|
|
|
|
|
'Sutersville', |
14764
|
|
|
|
|
|
|
'Sutherland', |
14765
|
|
|
|
|
|
|
'Sutherlin', |
14766
|
|
|
|
|
|
|
'Sutter', |
14767
|
|
|
|
|
|
|
'Sutter Creek', |
14768
|
|
|
|
|
|
|
'Sutton', |
14769
|
|
|
|
|
|
|
'Sutton-Alpine', |
14770
|
|
|
|
|
|
|
'Suttons Bay', |
14771
|
|
|
|
|
|
|
'Suwanee', |
14772
|
|
|
|
|
|
|
'Suárez', |
14773
|
|
|
|
|
|
|
'Swainsboro', |
14774
|
|
|
|
|
|
|
'Swaledale', |
14775
|
|
|
|
|
|
|
'Swampscott', |
14776
|
|
|
|
|
|
|
'Swan', |
14777
|
|
|
|
|
|
|
'Swan Valley', |
14778
|
|
|
|
|
|
|
'Swannanoa', |
14779
|
|
|
|
|
|
|
'Swansboro', |
14780
|
|
|
|
|
|
|
'Swansea', |
14781
|
|
|
|
|
|
|
'Swanton', |
14782
|
|
|
|
|
|
|
'Swanville', |
14783
|
|
|
|
|
|
|
'Swarthmore', |
14784
|
|
|
|
|
|
|
'Swartz', |
14785
|
|
|
|
|
|
|
'Swartz Creek', |
14786
|
|
|
|
|
|
|
'Swayzee', |
14787
|
|
|
|
|
|
|
'Swea City', |
14788
|
|
|
|
|
|
|
'Swedesboro', |
14789
|
|
|
|
|
|
|
'Sweeney Ranch', |
14790
|
|
|
|
|
|
|
'Sweeny', |
14791
|
|
|
|
|
|
|
'Sweet Home', |
14792
|
|
|
|
|
|
|
'Sweet Springs', |
14793
|
|
|
|
|
|
|
'Sweet Water', |
14794
|
|
|
|
|
|
|
'Sweetser', |
14795
|
|
|
|
|
|
|
'Sweetwater', |
14796
|
|
|
|
|
|
|
'Swepsonville', |
14797
|
|
|
|
|
|
|
'Swift Trail Junction', |
14798
|
|
|
|
|
|
|
'Swifton', |
14799
|
|
|
|
|
|
|
'Swink', |
14800
|
|
|
|
|
|
|
'Swisher', |
14801
|
|
|
|
|
|
|
'Swissvale', |
14802
|
|
|
|
|
|
|
'Switz City', |
14803
|
|
|
|
|
|
|
'Switzer', |
14804
|
|
|
|
|
|
|
'Swoyersville', |
14805
|
|
|
|
|
|
|
'Sycamore', |
14806
|
|
|
|
|
|
|
'Sycamore Hills', |
14807
|
|
|
|
|
|
|
'Sykeston', |
14808
|
|
|
|
|
|
|
'Sykesville', |
14809
|
|
|
|
|
|
|
'Sylacauga', |
14810
|
|
|
|
|
|
|
'Sylva', |
14811
|
|
|
|
|
|
|
'Sylvan Beach', |
14812
|
|
|
|
|
|
|
'Sylvan Grove', |
14813
|
|
|
|
|
|
|
'Sylvan Lake', |
14814
|
|
|
|
|
|
|
'Sylvan Shores', |
14815
|
|
|
|
|
|
|
'Sylvan Springs', |
14816
|
|
|
|
|
|
|
'Sylvania', |
14817
|
|
|
|
|
|
|
'Sylvarena', |
14818
|
|
|
|
|
|
|
'Sylvester', |
14819
|
|
|
|
|
|
|
'Sylvia', |
14820
|
|
|
|
|
|
|
'Symerton', |
14821
|
|
|
|
|
|
|
'Syosset', |
14822
|
|
|
|
|
|
|
'Syracuse', |
14823
|
|
|
|
|
|
|
'Tabernash', |
14824
|
|
|
|
|
|
|
'Tabiona', |
14825
|
|
|
|
|
|
|
'Table Grove', |
14826
|
|
|
|
|
|
|
'Table Rock', |
14827
|
|
|
|
|
|
|
'Tabor', |
14828
|
|
|
|
|
|
|
'Tabor City', |
14829
|
|
|
|
|
|
|
'Tacna', |
14830
|
|
|
|
|
|
|
'Tacoma', |
14831
|
|
|
|
|
|
|
'Taconite', |
14832
|
|
|
|
|
|
|
'Taft', |
14833
|
|
|
|
|
|
|
'Taft Heights', |
14834
|
|
|
|
|
|
|
'Taft Mosswood', |
14835
|
|
|
|
|
|
|
'Taft Southwest', |
14836
|
|
|
|
|
|
|
'Tagg Flats', |
14837
|
|
|
|
|
|
|
'Tahlequah', |
14838
|
|
|
|
|
|
|
'Tahoe Vista', |
14839
|
|
|
|
|
|
|
'Tahoka', |
14840
|
|
|
|
|
|
|
'Taholah', |
14841
|
|
|
|
|
|
|
'Tainter Lake', |
14842
|
|
|
|
|
|
|
'Taiwah', |
14843
|
|
|
|
|
|
|
'Tajique', |
14844
|
|
|
|
|
|
|
'Takoma Park', |
14845
|
|
|
|
|
|
|
'Takotna', |
14846
|
|
|
|
|
|
|
'Talala', |
14847
|
|
|
|
|
|
|
'Talbotton', |
14848
|
|
|
|
|
|
|
'Talco', |
14849
|
|
|
|
|
|
|
'Talent', |
14850
|
|
|
|
|
|
|
'Talihina', |
14851
|
|
|
|
|
|
|
'Talkeetna', |
14852
|
|
|
|
|
|
|
'Talking Rock', |
14853
|
|
|
|
|
|
|
'Tallaboa', |
14854
|
|
|
|
|
|
|
'Tallaboa Alta', |
14855
|
|
|
|
|
|
|
'Talladega', |
14856
|
|
|
|
|
|
|
'Talladega Springs', |
14857
|
|
|
|
|
|
|
'Tallahassee', |
14858
|
|
|
|
|
|
|
'Tallapoosa', |
14859
|
|
|
|
|
|
|
'Tallassee', |
14860
|
|
|
|
|
|
|
'Tallmadge', |
14861
|
|
|
|
|
|
|
'Tallula', |
14862
|
|
|
|
|
|
|
'Tallulah', |
14863
|
|
|
|
|
|
|
'Tallulah Falls', |
14864
|
|
|
|
|
|
|
'Talmage', |
14865
|
|
|
|
|
|
|
'Talmo', |
14866
|
|
|
|
|
|
|
'Taloga', |
14867
|
|
|
|
|
|
|
'Talty', |
14868
|
|
|
|
|
|
|
'Tama', |
14869
|
|
|
|
|
|
|
'Tamaha', |
14870
|
|
|
|
|
|
|
'Tamalpais-Homestead Valley', |
14871
|
|
|
|
|
|
|
'Tamaqua', |
14872
|
|
|
|
|
|
|
'Tamarac', |
14873
|
|
|
|
|
|
|
'Tamarack', |
14874
|
|
|
|
|
|
|
'Tamaroa', |
14875
|
|
|
|
|
|
|
'Tamiami', |
14876
|
|
|
|
|
|
|
'Tamms', |
14877
|
|
|
|
|
|
|
'Tampa', |
14878
|
|
|
|
|
|
|
'Tampico', |
14879
|
|
|
|
|
|
|
'Tanacross', |
14880
|
|
|
|
|
|
|
'Tanaina', |
14881
|
|
|
|
|
|
|
'Tanana', |
14882
|
|
|
|
|
|
|
'Taneytown', |
14883
|
|
|
|
|
|
|
'Taneyville', |
14884
|
|
|
|
|
|
|
'Tangelo Park', |
14885
|
|
|
|
|
|
|
'Tangent', |
14886
|
|
|
|
|
|
|
'Tangerine', |
14887
|
|
|
|
|
|
|
'Tangier', |
14888
|
|
|
|
|
|
|
'Tangipahoa', |
14889
|
|
|
|
|
|
|
'Tanglewilde-Thompson Place', |
14890
|
|
|
|
|
|
|
'Tanner', |
14891
|
|
|
|
|
|
|
'Tannersville', |
14892
|
|
|
|
|
|
|
'Tanque Verde', |
14893
|
|
|
|
|
|
|
'Taopi', |
14894
|
|
|
|
|
|
|
'Taos', |
14895
|
|
|
|
|
|
|
'Taos Pueblo', |
14896
|
|
|
|
|
|
|
'Taos Ski Valley', |
14897
|
|
|
|
|
|
|
'Tappahannock', |
14898
|
|
|
|
|
|
|
'Tappan', |
14899
|
|
|
|
|
|
|
'Tappen', |
14900
|
|
|
|
|
|
|
'Tar Heel', |
14901
|
|
|
|
|
|
|
'Tara Hills', |
14902
|
|
|
|
|
|
|
'Tarboro', |
14903
|
|
|
|
|
|
|
'Tarentum', |
14904
|
|
|
|
|
|
|
'Tariffville', |
14905
|
|
|
|
|
|
|
'Tarkio', |
14906
|
|
|
|
|
|
|
'Tarlton', |
14907
|
|
|
|
|
|
|
'Tarnov', |
14908
|
|
|
|
|
|
|
'Tarpon Springs', |
14909
|
|
|
|
|
|
|
'Tarrant', |
14910
|
|
|
|
|
|
|
'Tarrants', |
14911
|
|
|
|
|
|
|
'Tarrytown', |
14912
|
|
|
|
|
|
|
'Tatamy', |
14913
|
|
|
|
|
|
|
'Tatitlek', |
14914
|
|
|
|
|
|
|
'Tatum', |
14915
|
|
|
|
|
|
|
'Tatums', |
14916
|
|
|
|
|
|
|
'Taunton', |
14917
|
|
|
|
|
|
|
'Tavares', |
14918
|
|
|
|
|
|
|
'Tavernier', |
14919
|
|
|
|
|
|
|
'Tavistock', |
14920
|
|
|
|
|
|
|
'Tawas City', |
14921
|
|
|
|
|
|
|
'Taylor', |
14922
|
|
|
|
|
|
|
'Taylor Creek', |
14923
|
|
|
|
|
|
|
'Taylor Lake Village', |
14924
|
|
|
|
|
|
|
'Taylor Mill', |
14925
|
|
|
|
|
|
|
'Taylor Springs', |
14926
|
|
|
|
|
|
|
'Taylors', |
14927
|
|
|
|
|
|
|
'Taylors Falls', |
14928
|
|
|
|
|
|
|
'Taylorsville', |
14929
|
|
|
|
|
|
|
'Taylortown', |
14930
|
|
|
|
|
|
|
'Taylorville', |
14931
|
|
|
|
|
|
|
'Tazewell', |
14932
|
|
|
|
|
|
|
'Tazlina', |
14933
|
|
|
|
|
|
|
'Tchula', |
14934
|
|
|
|
|
|
|
'Tea', |
14935
|
|
|
|
|
|
|
'Teachey', |
14936
|
|
|
|
|
|
|
'Teague', |
14937
|
|
|
|
|
|
|
'Teaneck', |
14938
|
|
|
|
|
|
|
'Teaticket', |
14939
|
|
|
|
|
|
|
'Teays Valley', |
14940
|
|
|
|
|
|
|
'Tecopa', |
14941
|
|
|
|
|
|
|
'Tecumseh', |
14942
|
|
|
|
|
|
|
'Tedder', |
14943
|
|
|
|
|
|
|
'Teec Nos Pos', |
14944
|
|
|
|
|
|
|
'Tega Cay', |
14945
|
|
|
|
|
|
|
'Tehachapi', |
14946
|
|
|
|
|
|
|
'Tehama', |
14947
|
|
|
|
|
|
|
'Tehuacana', |
14948
|
|
|
|
|
|
|
'Tekamah', |
14949
|
|
|
|
|
|
|
'Tekoa', |
14950
|
|
|
|
|
|
|
'Tekonsha', |
14951
|
|
|
|
|
|
|
'Telford', |
14952
|
|
|
|
|
|
|
'Tell City', |
14953
|
|
|
|
|
|
|
'Teller', |
14954
|
|
|
|
|
|
|
'Tellico Plains', |
14955
|
|
|
|
|
|
|
'Telluride', |
14956
|
|
|
|
|
|
|
'Temecula', |
14957
|
|
|
|
|
|
|
'Temelec', |
14958
|
|
|
|
|
|
|
'Tempe', |
14959
|
|
|
|
|
|
|
'Temperance', |
14960
|
|
|
|
|
|
|
'Temple', |
14961
|
|
|
|
|
|
|
'Temple City', |
14962
|
|
|
|
|
|
|
'Temple Hills', |
14963
|
|
|
|
|
|
|
'Temple Terrace', |
14964
|
|
|
|
|
|
|
'Templeton', |
14965
|
|
|
|
|
|
|
'Templeville', |
14966
|
|
|
|
|
|
|
'Ten Broeck', |
14967
|
|
|
|
|
|
|
'Ten Sleep', |
14968
|
|
|
|
|
|
|
'Tenafly', |
14969
|
|
|
|
|
|
|
'Tenaha', |
14970
|
|
|
|
|
|
|
'Tenakee Springs', |
14971
|
|
|
|
|
|
|
'Tenino', |
14972
|
|
|
|
|
|
|
'Tenkiller', |
14973
|
|
|
|
|
|
|
'Tennant', |
14974
|
|
|
|
|
|
|
'Tennessee', |
14975
|
|
|
|
|
|
|
'Tennessee Ridge', |
14976
|
|
|
|
|
|
|
'Tenney', |
14977
|
|
|
|
|
|
|
'Tennille', |
14978
|
|
|
|
|
|
|
'Tennyson', |
14979
|
|
|
|
|
|
|
'Tensed', |
14980
|
|
|
|
|
|
|
'Tenstrike', |
14981
|
|
|
|
|
|
|
'Tequesta', |
14982
|
|
|
|
|
|
|
'Terlton', |
14983
|
|
|
|
|
|
|
'Terra Alta', |
14984
|
|
|
|
|
|
|
'Terra Bella', |
14985
|
|
|
|
|
|
|
'Terra Mar', |
14986
|
|
|
|
|
|
|
'Terrace Heights', |
14987
|
|
|
|
|
|
|
'Terrace Park', |
14988
|
|
|
|
|
|
|
'Terral', |
14989
|
|
|
|
|
|
|
'Terramuggus', |
14990
|
|
|
|
|
|
|
'Terre Haute', |
14991
|
|
|
|
|
|
|
'Terre Hill', |
14992
|
|
|
|
|
|
|
'Terrebonne', |
14993
|
|
|
|
|
|
|
'Terrell', |
14994
|
|
|
|
|
|
|
'Terrell Hills', |
14995
|
|
|
|
|
|
|
'Terril', |
14996
|
|
|
|
|
|
|
'Terry', |
14997
|
|
|
|
|
|
|
'Terrytown', |
14998
|
|
|
|
|
|
|
'Terryville', |
14999
|
|
|
|
|
|
|
'Tescott', |
15000
|
|
|
|
|
|
|
'Tesuque', |
15001
|
|
|
|
|
|
|
'Teterboro', |
15002
|
|
|
|
|
|
|
'Tetlin', |
15003
|
|
|
|
|
|
|
'Teton', |
15004
|
|
|
|
|
|
|
'Teton Village', |
15005
|
|
|
|
|
|
|
'Tetonia', |
15006
|
|
|
|
|
|
|
'Teutopolis', |
15007
|
|
|
|
|
|
|
'Texanna', |
15008
|
|
|
|
|
|
|
'Texarkana', |
15009
|
|
|
|
|
|
|
'Texas City', |
15010
|
|
|
|
|
|
|
'Texhoma', |
15011
|
|
|
|
|
|
|
'Texico', |
15012
|
|
|
|
|
|
|
'Texline', |
15013
|
|
|
|
|
|
|
'Texola', |
15014
|
|
|
|
|
|
|
'Thackerville', |
15015
|
|
|
|
|
|
|
'Thatcher', |
15016
|
|
|
|
|
|
|
'Thawville', |
15017
|
|
|
|
|
|
|
'Thaxton', |
15018
|
|
|
|
|
|
|
'Thayer', |
15019
|
|
|
|
|
|
|
'Thayne', |
15020
|
|
|
|
|
|
|
'The Buttes', |
15021
|
|
|
|
|
|
|
'The Colony', |
15022
|
|
|
|
|
|
|
'The Crossings', |
15023
|
|
|
|
|
|
|
'The Hammocks', |
15024
|
|
|
|
|
|
|
'The Hills', |
15025
|
|
|
|
|
|
|
'The Lakes', |
15026
|
|
|
|
|
|
|
'The Meadows', |
15027
|
|
|
|
|
|
|
'The Pinery', |
15028
|
|
|
|
|
|
|
'The Plains', |
15029
|
|
|
|
|
|
|
'The Village', |
15030
|
|
|
|
|
|
|
'The Village of Indian Hill', |
15031
|
|
|
|
|
|
|
'The Villages', |
15032
|
|
|
|
|
|
|
'The Woodlands', |
15033
|
|
|
|
|
|
|
'Thebes', |
15034
|
|
|
|
|
|
|
'Thedford', |
15035
|
|
|
|
|
|
|
'Theodore', |
15036
|
|
|
|
|
|
|
'Theodosia', |
15037
|
|
|
|
|
|
|
'Theresa', |
15038
|
|
|
|
|
|
|
'Thermalito', |
15039
|
|
|
|
|
|
|
'Thermopolis', |
15040
|
|
|
|
|
|
|
'Thibodaux', |
15041
|
|
|
|
|
|
|
'Thief River Falls', |
15042
|
|
|
|
|
|
|
'Thiells', |
15043
|
|
|
|
|
|
|
'Thiensville', |
15044
|
|
|
|
|
|
|
'Third Lake', |
15045
|
|
|
|
|
|
|
'Thomas', |
15046
|
|
|
|
|
|
|
'Thomasboro', |
15047
|
|
|
|
|
|
|
'Thomaston', |
15048
|
|
|
|
|
|
|
'Thomasville', |
15049
|
|
|
|
|
|
|
'Thompson', |
15050
|
|
|
|
|
|
|
'Thompson Falls', |
15051
|
|
|
|
|
|
|
'Thompson\'s Station', |
15052
|
|
|
|
|
|
|
'Thompsons', |
15053
|
|
|
|
|
|
|
'Thompsontown', |
15054
|
|
|
|
|
|
|
'Thompsonville', |
15055
|
|
|
|
|
|
|
'Thoms Place', |
15056
|
|
|
|
|
|
|
'Thomson', |
15057
|
|
|
|
|
|
|
'Thonotosassa', |
15058
|
|
|
|
|
|
|
'Thor', |
15059
|
|
|
|
|
|
|
'Thoreau', |
15060
|
|
|
|
|
|
|
'Thornburg', |
15061
|
|
|
|
|
|
|
'Thorndale', |
15062
|
|
|
|
|
|
|
'Thorne Bay', |
15063
|
|
|
|
|
|
|
'Thornhill', |
15064
|
|
|
|
|
|
|
'Thornton', |
15065
|
|
|
|
|
|
|
'Thorntonville', |
15066
|
|
|
|
|
|
|
'Thorntown', |
15067
|
|
|
|
|
|
|
'Thornville', |
15068
|
|
|
|
|
|
|
'Thornwood', |
15069
|
|
|
|
|
|
|
'Thorp', |
15070
|
|
|
|
|
|
|
'Thorsby', |
15071
|
|
|
|
|
|
|
'Thousand Oaks', |
15072
|
|
|
|
|
|
|
'Thousand Palms', |
15073
|
|
|
|
|
|
|
'Thrall', |
15074
|
|
|
|
|
|
|
'Three Forks', |
15075
|
|
|
|
|
|
|
'Three Lakes', |
15076
|
|
|
|
|
|
|
'Three Oaks', |
15077
|
|
|
|
|
|
|
'Three Points', |
15078
|
|
|
|
|
|
|
'Three Rivers', |
15079
|
|
|
|
|
|
|
'Three Springs', |
15080
|
|
|
|
|
|
|
'Three Way', |
15081
|
|
|
|
|
|
|
'Throckmorton', |
15082
|
|
|
|
|
|
|
'Throop', |
15083
|
|
|
|
|
|
|
'Thunderbolt', |
15084
|
|
|
|
|
|
|
'Thurman', |
15085
|
|
|
|
|
|
|
'Thurmond', |
15086
|
|
|
|
|
|
|
'Thurmont', |
15087
|
|
|
|
|
|
|
'Thurston', |
15088
|
|
|
|
|
|
|
'Tiburon', |
15089
|
|
|
|
|
|
|
'Tiburones', |
15090
|
|
|
|
|
|
|
'Tice', |
15091
|
|
|
|
|
|
|
'Tickfaw', |
15092
|
|
|
|
|
|
|
'Tidioute', |
15093
|
|
|
|
|
|
|
'Tierra Bonita', |
15094
|
|
|
|
|
|
|
'Tierra Buena', |
15095
|
|
|
|
|
|
|
'Tierra Grande', |
15096
|
|
|
|
|
|
|
'Tierra Verde', |
15097
|
|
|
|
|
|
|
'Tierras Nuevas Poniente', |
15098
|
|
|
|
|
|
|
'Tieton', |
15099
|
|
|
|
|
|
|
'Tiffin', |
15100
|
|
|
|
|
|
|
'Tifton', |
15101
|
|
|
|
|
|
|
'Tigard', |
15102
|
|
|
|
|
|
|
'Tiger', |
15103
|
|
|
|
|
|
|
'Tigerton', |
15104
|
|
|
|
|
|
|
'Tightwad', |
15105
|
|
|
|
|
|
|
'Tignall', |
15106
|
|
|
|
|
|
|
'Tijeras', |
15107
|
|
|
|
|
|
|
'Tiki Island', |
15108
|
|
|
|
|
|
|
'Tilden', |
15109
|
|
|
|
|
|
|
'Tildenville', |
15110
|
|
|
|
|
|
|
'Tilghman Island', |
15111
|
|
|
|
|
|
|
'Tillamook', |
15112
|
|
|
|
|
|
|
'Tillar', |
15113
|
|
|
|
|
|
|
'Tillatoba', |
15114
|
|
|
|
|
|
|
'Tillmans Corner', |
15115
|
|
|
|
|
|
|
'Tillson', |
15116
|
|
|
|
|
|
|
'Tilton', |
15117
|
|
|
|
|
|
|
'Tilton-Northfield', |
15118
|
|
|
|
|
|
|
'Tiltonsville', |
15119
|
|
|
|
|
|
|
'Timber Hills', |
15120
|
|
|
|
|
|
|
'Timber Lake', |
15121
|
|
|
|
|
|
|
'Timber Lakes', |
15122
|
|
|
|
|
|
|
'Timber Pines', |
15123
|
|
|
|
|
|
|
'Timbercreek Canyon', |
15124
|
|
|
|
|
|
|
'Timberlake', |
15125
|
|
|
|
|
|
|
'Timberlane', |
15126
|
|
|
|
|
|
|
'Timberon', |
15127
|
|
|
|
|
|
|
'Timberville', |
15128
|
|
|
|
|
|
|
'Timberwood Park', |
15129
|
|
|
|
|
|
|
'Timblin', |
15130
|
|
|
|
|
|
|
'Time', |
15131
|
|
|
|
|
|
|
'Timken', |
15132
|
|
|
|
|
|
|
'Timmonsville', |
15133
|
|
|
|
|
|
|
'Timnath', |
15134
|
|
|
|
|
|
|
'Timpson', |
15135
|
|
|
|
|
|
|
'Tina', |
15136
|
|
|
|
|
|
|
'Tindall', |
15137
|
|
|
|
|
|
|
'Tingley', |
15138
|
|
|
|
|
|
|
'Tinicum Township', |
15139
|
|
|
|
|
|
|
'Tinley Park', |
15140
|
|
|
|
|
|
|
'Tinsman', |
15141
|
|
|
|
|
|
|
'Tintah', |
15142
|
|
|
|
|
|
|
'Tinton Falls', |
15143
|
|
|
|
|
|
|
'Tioga', |
15144
|
|
|
|
|
|
|
'Tionesta', |
15145
|
|
|
|
|
|
|
'Tipp City', |
15146
|
|
|
|
|
|
|
'Tipton', |
15147
|
|
|
|
|
|
|
'Tiptonville', |
15148
|
|
|
|
|
|
|
'Tira', |
15149
|
|
|
|
|
|
|
'Tiro', |
15150
|
|
|
|
|
|
|
'Tishomingo', |
15151
|
|
|
|
|
|
|
'Tiskilwa', |
15152
|
|
|
|
|
|
|
'Titonka', |
15153
|
|
|
|
|
|
|
'Titusville', |
15154
|
|
|
|
|
|
|
'Tiverton', |
15155
|
|
|
|
|
|
|
'Tivoli', |
15156
|
|
|
|
|
|
|
'Toa Alta', |
15157
|
|
|
|
|
|
|
'Toa Baja', |
15158
|
|
|
|
|
|
|
'Toast', |
15159
|
|
|
|
|
|
|
'Tobaccoville', |
15160
|
|
|
|
|
|
|
'Tobias', |
15161
|
|
|
|
|
|
|
'Tobin', |
15162
|
|
|
|
|
|
|
'Toccoa', |
15163
|
|
|
|
|
|
|
'Toccopola', |
15164
|
|
|
|
|
|
|
'Toco', |
15165
|
|
|
|
|
|
|
'Todd Creek', |
15166
|
|
|
|
|
|
|
'Todd Mission', |
15167
|
|
|
|
|
|
|
'Togiak', |
15168
|
|
|
|
|
|
|
'Tohatchi', |
15169
|
|
|
|
|
|
|
'Tok', |
15170
|
|
|
|
|
|
|
'Tokeland', |
15171
|
|
|
|
|
|
|
'Toksook Bay', |
15172
|
|
|
|
|
|
|
'Tolar', |
15173
|
|
|
|
|
|
|
'Toledo', |
15174
|
|
|
|
|
|
|
'Tolleson', |
15175
|
|
|
|
|
|
|
'Tollette', |
15176
|
|
|
|
|
|
|
'Tolley', |
15177
|
|
|
|
|
|
|
'Tolna', |
15178
|
|
|
|
|
|
|
'Tolono', |
15179
|
|
|
|
|
|
|
'Tolsona', |
15180
|
|
|
|
|
|
|
'Tolstoy', |
15181
|
|
|
|
|
|
|
'Toluca', |
15182
|
|
|
|
|
|
|
'Tom Bean', |
15183
|
|
|
|
|
|
|
'Tomah', |
15184
|
|
|
|
|
|
|
'Tomahawk', |
15185
|
|
|
|
|
|
|
'Tomales', |
15186
|
|
|
|
|
|
|
'Tomball', |
15187
|
|
|
|
|
|
|
'Tombstone', |
15188
|
|
|
|
|
|
|
'Tome-Adelino', |
15189
|
|
|
|
|
|
|
'Tompkinsville', |
15190
|
|
|
|
|
|
|
'Toms Brook', |
15191
|
|
|
|
|
|
|
'Toms River', |
15192
|
|
|
|
|
|
|
'Tonalea', |
15193
|
|
|
|
|
|
|
'Tonasket', |
15194
|
|
|
|
|
|
|
'Tonawanda', |
15195
|
|
|
|
|
|
|
'Tonganoxie', |
15196
|
|
|
|
|
|
|
'Tonica', |
15197
|
|
|
|
|
|
|
'Tonka Bay', |
15198
|
|
|
|
|
|
|
'Tonkawa', |
15199
|
|
|
|
|
|
|
'Tonopah', |
15200
|
|
|
|
|
|
|
'Tonsina', |
15201
|
|
|
|
|
|
|
'Tontitown', |
15202
|
|
|
|
|
|
|
'Tonto Basin', |
15203
|
|
|
|
|
|
|
'Tontogany', |
15204
|
|
|
|
|
|
|
'Tony', |
15205
|
|
|
|
|
|
|
'Tooele', |
15206
|
|
|
|
|
|
|
'Tool', |
15207
|
|
|
|
|
|
|
'Toomsboro', |
15208
|
|
|
|
|
|
|
'Toone', |
15209
|
|
|
|
|
|
|
'Top-of-the-World', |
15210
|
|
|
|
|
|
|
'Topeka', |
15211
|
|
|
|
|
|
|
'Toppenish', |
15212
|
|
|
|
|
|
|
'Topsail Beach', |
15213
|
|
|
|
|
|
|
'Topsfield', |
15214
|
|
|
|
|
|
|
'Topsham', |
15215
|
|
|
|
|
|
|
'Topton', |
15216
|
|
|
|
|
|
|
'Toquerville', |
15217
|
|
|
|
|
|
|
'Tornado', |
15218
|
|
|
|
|
|
|
'Tornillo', |
15219
|
|
|
|
|
|
|
'Toro Canyon', |
15220
|
|
|
|
|
|
|
'Toronto', |
15221
|
|
|
|
|
|
|
'Torrance', |
15222
|
|
|
|
|
|
|
'Torreon', |
15223
|
|
|
|
|
|
|
'Torrey', |
15224
|
|
|
|
|
|
|
'Torrington', |
15225
|
|
|
|
|
|
|
'Tortolita', |
15226
|
|
|
|
|
|
|
'Toston', |
15227
|
|
|
|
|
|
|
'Totowa', |
15228
|
|
|
|
|
|
|
'Touchet', |
15229
|
|
|
|
|
|
|
'Toughkenamon', |
15230
|
|
|
|
|
|
|
'Toulon', |
15231
|
|
|
|
|
|
|
'Tovey', |
15232
|
|
|
|
|
|
|
'Towanda', |
15233
|
|
|
|
|
|
|
'Towaoc', |
15234
|
|
|
|
|
|
|
'Tower', |
15235
|
|
|
|
|
|
|
'Tower City', |
15236
|
|
|
|
|
|
|
'Tower Hill', |
15237
|
|
|
|
|
|
|
'Tower Lakes', |
15238
|
|
|
|
|
|
|
'Town \'n\' Country', |
15239
|
|
|
|
|
|
|
'Town Creek', |
15240
|
|
|
|
|
|
|
'Town Line', |
15241
|
|
|
|
|
|
|
'Town and Country', |
15242
|
|
|
|
|
|
|
'Town of Pines', |
15243
|
|
|
|
|
|
|
'Towner', |
15244
|
|
|
|
|
|
|
'Townsend', |
15245
|
|
|
|
|
|
|
'Townville', |
15246
|
|
|
|
|
|
|
'Towson', |
15247
|
|
|
|
|
|
|
'Toxey', |
15248
|
|
|
|
|
|
|
'Toyah', |
15249
|
|
|
|
|
|
|
'Tracy', |
15250
|
|
|
|
|
|
|
'Tracy City', |
15251
|
|
|
|
|
|
|
'Tracyton', |
15252
|
|
|
|
|
|
|
'Tradewinds', |
15253
|
|
|
|
|
|
|
'Traer', |
15254
|
|
|
|
|
|
|
'Trafalgar', |
15255
|
|
|
|
|
|
|
'Trafford', |
15256
|
|
|
|
|
|
|
'Trail', |
15257
|
|
|
|
|
|
|
'Trail Creek', |
15258
|
|
|
|
|
|
|
'Trainer', |
15259
|
|
|
|
|
|
|
'Tranquillity', |
15260
|
|
|
|
|
|
|
'Trappe', |
15261
|
|
|
|
|
|
|
'Trapper Creek', |
15262
|
|
|
|
|
|
|
'Traskwood', |
15263
|
|
|
|
|
|
|
'Travelers Rest', |
15264
|
|
|
|
|
|
|
'Traver', |
15265
|
|
|
|
|
|
|
'Traverse City', |
15266
|
|
|
|
|
|
|
'Travilah', |
15267
|
|
|
|
|
|
|
'Treasure Island', |
15268
|
|
|
|
|
|
|
'Treasure Lake', |
15269
|
|
|
|
|
|
|
'Treece', |
15270
|
|
|
|
|
|
|
'Tremont', |
15271
|
|
|
|
|
|
|
'Tremont City', |
15272
|
|
|
|
|
|
|
'Tremonton', |
15273
|
|
|
|
|
|
|
'Trempealeau', |
15274
|
|
|
|
|
|
|
'Trent', |
15275
|
|
|
|
|
|
|
'Trent Woods', |
15276
|
|
|
|
|
|
|
'Trenton', |
15277
|
|
|
|
|
|
|
'Trentwood', |
15278
|
|
|
|
|
|
|
'Tresckow', |
15279
|
|
|
|
|
|
|
'Trevorton', |
15280
|
|
|
|
|
|
|
'Treynor', |
15281
|
|
|
|
|
|
|
'Trezevant', |
15282
|
|
|
|
|
|
|
'Tri-City', |
15283
|
|
|
|
|
|
|
'Tri-Lakes', |
15284
|
|
|
|
|
|
|
'Triadelphia', |
15285
|
|
|
|
|
|
|
'Triana', |
15286
|
|
|
|
|
|
|
'Triangle', |
15287
|
|
|
|
|
|
|
'Tribbey', |
15288
|
|
|
|
|
|
|
'Tribes Hill', |
15289
|
|
|
|
|
|
|
'Tribune', |
15290
|
|
|
|
|
|
|
'Trimble', |
15291
|
|
|
|
|
|
|
'Trimont', |
15292
|
|
|
|
|
|
|
'Trinidad', |
15293
|
|
|
|
|
|
|
'Trinity', |
15294
|
|
|
|
|
|
|
'Trion', |
15295
|
|
|
|
|
|
|
'Triplett', |
15296
|
|
|
|
|
|
|
'Tripoli', |
15297
|
|
|
|
|
|
|
'Tripp', |
15298
|
|
|
|
|
|
|
'Trommald', |
15299
|
|
|
|
|
|
|
'Trooper', |
15300
|
|
|
|
|
|
|
'Trophy Club', |
15301
|
|
|
|
|
|
|
'Tropic', |
15302
|
|
|
|
|
|
|
'Trosky', |
15303
|
|
|
|
|
|
|
'Trotwood', |
15304
|
|
|
|
|
|
|
'Troup', |
15305
|
|
|
|
|
|
|
'Trout Creek', |
15306
|
|
|
|
|
|
|
'Trout Lake', |
15307
|
|
|
|
|
|
|
'Trout Valley', |
15308
|
|
|
|
|
|
|
'Troutdale', |
15309
|
|
|
|
|
|
|
'Troutman', |
15310
|
|
|
|
|
|
|
'Troutville', |
15311
|
|
|
|
|
|
|
'Trowbridge Park', |
15312
|
|
|
|
|
|
|
'Troxelville', |
15313
|
|
|
|
|
|
|
'Troy', |
15314
|
|
|
|
|
|
|
'Troy Grove', |
15315
|
|
|
|
|
|
|
'Truckee', |
15316
|
|
|
|
|
|
|
'Truesdale', |
15317
|
|
|
|
|
|
|
'Trujillo Alto', |
15318
|
|
|
|
|
|
|
'Truman', |
15319
|
|
|
|
|
|
|
'Trumann', |
15320
|
|
|
|
|
|
|
'Trumansburg', |
15321
|
|
|
|
|
|
|
'Trumbauersville', |
15322
|
|
|
|
|
|
|
'Trumbull', |
15323
|
|
|
|
|
|
|
'Truro', |
15324
|
|
|
|
|
|
|
'Trussville', |
15325
|
|
|
|
|
|
|
'Truth or Consequences', |
15326
|
|
|
|
|
|
|
'Truxton', |
15327
|
|
|
|
|
|
|
'Tryon', |
15328
|
|
|
|
|
|
|
'Tsaile', |
15329
|
|
|
|
|
|
|
'Tse Bonito', |
15330
|
|
|
|
|
|
|
'Tselakai Dezza', |
15331
|
|
|
|
|
|
|
'Tualatin', |
15332
|
|
|
|
|
|
|
'Tuba City', |
15333
|
|
|
|
|
|
|
'Tubac', |
15334
|
|
|
|
|
|
|
'Tuckahoe', |
15335
|
|
|
|
|
|
|
'Tucker', |
15336
|
|
|
|
|
|
|
'Tuckerman', |
15337
|
|
|
|
|
|
|
'Tuckerton', |
15338
|
|
|
|
|
|
|
'Tucson', |
15339
|
|
|
|
|
|
|
'Tucson Estates', |
15340
|
|
|
|
|
|
|
'Tucumcari', |
15341
|
|
|
|
|
|
|
'Tukwila', |
15342
|
|
|
|
|
|
|
'Tulalip Bay', |
15343
|
|
|
|
|
|
|
'Tulare', |
15344
|
|
|
|
|
|
|
'Tularosa', |
15345
|
|
|
|
|
|
|
'Tulelake', |
15346
|
|
|
|
|
|
|
'Tuleta', |
15347
|
|
|
|
|
|
|
'Tulia', |
15348
|
|
|
|
|
|
|
'Tull', |
15349
|
|
|
|
|
|
|
'Tullahassee', |
15350
|
|
|
|
|
|
|
'Tullahoma', |
15351
|
|
|
|
|
|
|
'Tullos', |
15352
|
|
|
|
|
|
|
'Tully', |
15353
|
|
|
|
|
|
|
'Tullytown', |
15354
|
|
|
|
|
|
|
'Tulsa', |
15355
|
|
|
|
|
|
|
'Tulsita', |
15356
|
|
|
|
|
|
|
'Tuluksak', |
15357
|
|
|
|
|
|
|
'Tumacacori-Carmen', |
15358
|
|
|
|
|
|
|
'Tumwater', |
15359
|
|
|
|
|
|
|
'Tunica', |
15360
|
|
|
|
|
|
|
'Tunkhannock', |
15361
|
|
|
|
|
|
|
'Tunnel Hill', |
15362
|
|
|
|
|
|
|
'Tunnelhill', |
15363
|
|
|
|
|
|
|
'Tunnelton', |
15364
|
|
|
|
|
|
|
'Tuntutuliak', |
15365
|
|
|
|
|
|
|
'Tununak', |
15366
|
|
|
|
|
|
|
'Tuolumne City', |
15367
|
|
|
|
|
|
|
'Tupelo', |
15368
|
|
|
|
|
|
|
'Tupman', |
15369
|
|
|
|
|
|
|
'Tupper Lake', |
15370
|
|
|
|
|
|
|
'Turbeville', |
15371
|
|
|
|
|
|
|
'Turbotville', |
15372
|
|
|
|
|
|
|
'Turin', |
15373
|
|
|
|
|
|
|
'Turkey', |
15374
|
|
|
|
|
|
|
'Turkey Creek', |
15375
|
|
|
|
|
|
|
'Turley', |
15376
|
|
|
|
|
|
|
'Turlock', |
15377
|
|
|
|
|
|
|
'Turner', |
15378
|
|
|
|
|
|
|
'Turners Falls', |
15379
|
|
|
|
|
|
|
'Turnersville', |
15380
|
|
|
|
|
|
|
'Turnerville', |
15381
|
|
|
|
|
|
|
'Turney', |
15382
|
|
|
|
|
|
|
'Turon', |
15383
|
|
|
|
|
|
|
'Turpin Hills', |
15384
|
|
|
|
|
|
|
'Turrell', |
15385
|
|
|
|
|
|
|
'Turtle Creek', |
15386
|
|
|
|
|
|
|
'Turtle Lake', |
15387
|
|
|
|
|
|
|
'Turtle River', |
15388
|
|
|
|
|
|
|
'Turton', |
15389
|
|
|
|
|
|
|
'Tusayan', |
15390
|
|
|
|
|
|
|
'Tuscaloosa', |
15391
|
|
|
|
|
|
|
'Tuscarawas', |
15392
|
|
|
|
|
|
|
'Tuscarora', |
15393
|
|
|
|
|
|
|
'Tuscola', |
15394
|
|
|
|
|
|
|
'Tusculum', |
15395
|
|
|
|
|
|
|
'Tuscumbia', |
15396
|
|
|
|
|
|
|
'Tushka', |
15397
|
|
|
|
|
|
|
'Tuskegee', |
15398
|
|
|
|
|
|
|
'Tustin', |
15399
|
|
|
|
|
|
|
'Tustin Foothills', |
15400
|
|
|
|
|
|
|
'Tuttle', |
15401
|
|
|
|
|
|
|
'Tutuilla', |
15402
|
|
|
|
|
|
|
'Tutwiler', |
15403
|
|
|
|
|
|
|
'Tuxedo Park', |
15404
|
|
|
|
|
|
|
'Twain', |
15405
|
|
|
|
|
|
|
'Twain Harte', |
15406
|
|
|
|
|
|
|
'Twentynine Palms', |
15407
|
|
|
|
|
|
|
'Twentynine Palms Base', |
15408
|
|
|
|
|
|
|
'Twilight', |
15409
|
|
|
|
|
|
|
'Twin Bridges', |
15410
|
|
|
|
|
|
|
'Twin Brooks', |
15411
|
|
|
|
|
|
|
'Twin City', |
15412
|
|
|
|
|
|
|
'Twin Falls', |
15413
|
|
|
|
|
|
|
'Twin Groves', |
15414
|
|
|
|
|
|
|
'Twin Hills', |
15415
|
|
|
|
|
|
|
'Twin Lake', |
15416
|
|
|
|
|
|
|
'Twin Lakes', |
15417
|
|
|
|
|
|
|
'Twin Oaks', |
15418
|
|
|
|
|
|
|
'Twin Rivers', |
15419
|
|
|
|
|
|
|
'Twin Valley', |
15420
|
|
|
|
|
|
|
'Twining', |
15421
|
|
|
|
|
|
|
'Twinsburg', |
15422
|
|
|
|
|
|
|
'Twisp', |
15423
|
|
|
|
|
|
|
'Two Buttes', |
15424
|
|
|
|
|
|
|
'Two Harbors', |
15425
|
|
|
|
|
|
|
'Two Rivers', |
15426
|
|
|
|
|
|
|
'Two Strike', |
15427
|
|
|
|
|
|
|
'Ty Ty', |
15428
|
|
|
|
|
|
|
'Tybee Island', |
15429
|
|
|
|
|
|
|
'Tye', |
15430
|
|
|
|
|
|
|
'Tygh Valley', |
15431
|
|
|
|
|
|
|
'Tyler', |
15432
|
|
|
|
|
|
|
'Tyler Run-Queens Gate', |
15433
|
|
|
|
|
|
|
'Tylertown', |
15434
|
|
|
|
|
|
|
'Tynan', |
15435
|
|
|
|
|
|
|
'Tyndall', |
15436
|
|
|
|
|
|
|
'Tyndall AFB', |
15437
|
|
|
|
|
|
|
'Tyonek', |
15438
|
|
|
|
|
|
|
'Tyro', |
15439
|
|
|
|
|
|
|
'Tyrone', |
15440
|
|
|
|
|
|
|
'Tyronza', |
15441
|
|
|
|
|
|
|
'Tysons Corner', |
15442
|
|
|
|
|
|
|
'Ubly', |
15443
|
|
|
|
|
|
|
'Ucon', |
15444
|
|
|
|
|
|
|
'Udall', |
15445
|
|
|
|
|
|
|
'Udell', |
15446
|
|
|
|
|
|
|
'Uehling', |
15447
|
|
|
|
|
|
|
'Ugashik', |
15448
|
|
|
|
|
|
|
'Uhland', |
15449
|
|
|
|
|
|
|
'Uhrichsville', |
15450
|
|
|
|
|
|
|
'Uintah', |
15451
|
|
|
|
|
|
|
'Ukiah', |
15452
|
|
|
|
|
|
|
'Ulen', |
15453
|
|
|
|
|
|
|
'Ullin', |
15454
|
|
|
|
|
|
|
'Ulm', |
15455
|
|
|
|
|
|
|
'Ulmer', |
15456
|
|
|
|
|
|
|
'Ulysses', |
15457
|
|
|
|
|
|
|
'Umatilla', |
15458
|
|
|
|
|
|
|
'Umber View Heights', |
15459
|
|
|
|
|
|
|
'Unadilla', |
15460
|
|
|
|
|
|
|
'Unalakleet', |
15461
|
|
|
|
|
|
|
'Unalaska', |
15462
|
|
|
|
|
|
|
'Uncertain', |
15463
|
|
|
|
|
|
|
'Underwood', |
15464
|
|
|
|
|
|
|
'Underwood-Petersville', |
15465
|
|
|
|
|
|
|
'Unicoi', |
15466
|
|
|
|
|
|
|
'Union', |
15467
|
|
|
|
|
|
|
'Union Beach', |
15468
|
|
|
|
|
|
|
'Union Bridge', |
15469
|
|
|
|
|
|
|
'Union Center', |
15470
|
|
|
|
|
|
|
'Union City', |
15471
|
|
|
|
|
|
|
'Union Dale', |
15472
|
|
|
|
|
|
|
'Union Gap', |
15473
|
|
|
|
|
|
|
'Union Grove', |
15474
|
|
|
|
|
|
|
'Union Hall', |
15475
|
|
|
|
|
|
|
'Union Hill', |
15476
|
|
|
|
|
|
|
'Union Hill-Novelty Hill', |
15477
|
|
|
|
|
|
|
'Union Park', |
15478
|
|
|
|
|
|
|
'Union Point', |
15479
|
|
|
|
|
|
|
'Union Springs', |
15480
|
|
|
|
|
|
|
'Union Star', |
15481
|
|
|
|
|
|
|
'Uniondale', |
15482
|
|
|
|
|
|
|
'Uniontown', |
15483
|
|
|
|
|
|
|
'Unionville', |
15484
|
|
|
|
|
|
|
'Unionville Center', |
15485
|
|
|
|
|
|
|
'Uniopolis', |
15486
|
|
|
|
|
|
|
'Unity', |
15487
|
|
|
|
|
|
|
'Unity Village', |
15488
|
|
|
|
|
|
|
'Universal', |
15489
|
|
|
|
|
|
|
'Universal City', |
15490
|
|
|
|
|
|
|
'University', |
15491
|
|
|
|
|
|
|
'University City', |
15492
|
|
|
|
|
|
|
'University Gardens', |
15493
|
|
|
|
|
|
|
'University Heights', |
15494
|
|
|
|
|
|
|
'University Park', |
15495
|
|
|
|
|
|
|
'University Place', |
15496
|
|
|
|
|
|
|
'Upham', |
15497
|
|
|
|
|
|
|
'Upland', |
15498
|
|
|
|
|
|
|
'Uplands Park', |
15499
|
|
|
|
|
|
|
'Upper Arlington', |
15500
|
|
|
|
|
|
|
'Upper Brookville', |
15501
|
|
|
|
|
|
|
'Upper Fruitland', |
15502
|
|
|
|
|
|
|
'Upper Grand Lagoon', |
15503
|
|
|
|
|
|
|
'Upper Kalskag', |
15504
|
|
|
|
|
|
|
'Upper Lake', |
15505
|
|
|
|
|
|
|
'Upper Marlboro', |
15506
|
|
|
|
|
|
|
'Upper Nyack', |
15507
|
|
|
|
|
|
|
'Upper Providence Township', |
15508
|
|
|
|
|
|
|
'Upper Saddle River', |
15509
|
|
|
|
|
|
|
'Upper Sandusky', |
15510
|
|
|
|
|
|
|
'Upper St. Clair', |
15511
|
|
|
|
|
|
|
'Upsala', |
15512
|
|
|
|
|
|
|
'Upton', |
15513
|
|
|
|
|
|
|
'Upton-West Upton', |
15514
|
|
|
|
|
|
|
'Urania', |
15515
|
|
|
|
|
|
|
'Urbana', |
15516
|
|
|
|
|
|
|
'Urbancrest', |
15517
|
|
|
|
|
|
|
'Urbandale', |
15518
|
|
|
|
|
|
|
'Urbank', |
15519
|
|
|
|
|
|
|
'Urbanna', |
15520
|
|
|
|
|
|
|
'Urich', |
15521
|
|
|
|
|
|
|
'Ursa', |
15522
|
|
|
|
|
|
|
'Ursina', |
15523
|
|
|
|
|
|
|
'Ute', |
15524
|
|
|
|
|
|
|
'Utica', |
15525
|
|
|
|
|
|
|
'Utopia', |
15526
|
|
|
|
|
|
|
'Utuado', |
15527
|
|
|
|
|
|
|
'Uvalda', |
15528
|
|
|
|
|
|
|
'Uvalde', |
15529
|
|
|
|
|
|
|
'Uvalde Estates', |
15530
|
|
|
|
|
|
|
'Vacaville', |
15531
|
|
|
|
|
|
|
'Vader', |
15532
|
|
|
|
|
|
|
'Vadito', |
15533
|
|
|
|
|
|
|
'Vadnais Heights', |
15534
|
|
|
|
|
|
|
'Vado', |
15535
|
|
|
|
|
|
|
'Vaiden', |
15536
|
|
|
|
|
|
|
'Vail', |
15537
|
|
|
|
|
|
|
'Vails Gate', |
15538
|
|
|
|
|
|
|
'Val Verde', |
15539
|
|
|
|
|
|
|
'Val Verde Park', |
15540
|
|
|
|
|
|
|
'Valatie', |
15541
|
|
|
|
|
|
|
'Valders', |
15542
|
|
|
|
|
|
|
'Valdese', |
15543
|
|
|
|
|
|
|
'Valdez', |
15544
|
|
|
|
|
|
|
'Valdosta', |
15545
|
|
|
|
|
|
|
'Vale', |
15546
|
|
|
|
|
|
|
'Valencia', |
15547
|
|
|
|
|
|
|
'Valencia West', |
15548
|
|
|
|
|
|
|
'Valentine', |
15549
|
|
|
|
|
|
|
'Valeria', |
15550
|
|
|
|
|
|
|
'Valhalla', |
15551
|
|
|
|
|
|
|
'Valier', |
15552
|
|
|
|
|
|
|
'Valinda', |
15553
|
|
|
|
|
|
|
'Valle Vista', |
15554
|
|
|
|
|
|
|
'Vallecito', |
15555
|
|
|
|
|
|
|
'Vallejo', |
15556
|
|
|
|
|
|
|
'Valley', |
15557
|
|
|
|
|
|
|
'Valley Acres', |
15558
|
|
|
|
|
|
|
'Valley Brook', |
15559
|
|
|
|
|
|
|
'Valley Center', |
15560
|
|
|
|
|
|
|
'Valley City', |
15561
|
|
|
|
|
|
|
'Valley Cottage', |
15562
|
|
|
|
|
|
|
'Valley Falls', |
15563
|
|
|
|
|
|
|
'Valley Green', |
15564
|
|
|
|
|
|
|
'Valley Grove', |
15565
|
|
|
|
|
|
|
'Valley Head', |
15566
|
|
|
|
|
|
|
'Valley Hi', |
15567
|
|
|
|
|
|
|
'Valley Hill', |
15568
|
|
|
|
|
|
|
'Valley Mills', |
15569
|
|
|
|
|
|
|
'Valley Park', |
15570
|
|
|
|
|
|
|
'Valley Ranch', |
15571
|
|
|
|
|
|
|
'Valley Springs', |
15572
|
|
|
|
|
|
|
'Valley Station', |
15573
|
|
|
|
|
|
|
'Valley Stream', |
15574
|
|
|
|
|
|
|
'Valley View', |
15575
|
|
|
|
|
|
|
'Valley-Hi', |
15576
|
|
|
|
|
|
|
'Valleyview', |
15577
|
|
|
|
|
|
|
'Valliant', |
15578
|
|
|
|
|
|
|
'Valmeyer', |
15579
|
|
|
|
|
|
|
'Valparaiso', |
15580
|
|
|
|
|
|
|
'Valrico', |
15581
|
|
|
|
|
|
|
'Vamo', |
15582
|
|
|
|
|
|
|
'Van', |
15583
|
|
|
|
|
|
|
'Van Alstyne', |
15584
|
|
|
|
|
|
|
'Van Buren', |
15585
|
|
|
|
|
|
|
'Van Etten', |
15586
|
|
|
|
|
|
|
'Van Horn', |
15587
|
|
|
|
|
|
|
'Van Horne', |
15588
|
|
|
|
|
|
|
'Van Meter', |
15589
|
|
|
|
|
|
|
'Van Tassell', |
15590
|
|
|
|
|
|
|
'Van Vleck', |
15591
|
|
|
|
|
|
|
'Van Wert', |
15592
|
|
|
|
|
|
|
'Vance', |
15593
|
|
|
|
|
|
|
'Vanceboro', |
15594
|
|
|
|
|
|
|
'Vanceburg', |
15595
|
|
|
|
|
|
|
'Vancleave', |
15596
|
|
|
|
|
|
|
'Vancouver', |
15597
|
|
|
|
|
|
|
'Vandalia', |
15598
|
|
|
|
|
|
|
'Vandemere', |
15599
|
|
|
|
|
|
|
'Vandenberg AFB', |
15600
|
|
|
|
|
|
|
'Vandenberg Village', |
15601
|
|
|
|
|
|
|
'Vander', |
15602
|
|
|
|
|
|
|
'Vanderbilt', |
15603
|
|
|
|
|
|
|
'Vandercook Lake', |
15604
|
|
|
|
|
|
|
'Vandergrift', |
15605
|
|
|
|
|
|
|
'Vandervoort', |
15606
|
|
|
|
|
|
|
'Vandiver', |
15607
|
|
|
|
|
|
|
'Vandling', |
15608
|
|
|
|
|
|
|
'Vanduser', |
15609
|
|
|
|
|
|
|
'Vanleer', |
15610
|
|
|
|
|
|
|
'Vanlue', |
15611
|
|
|
|
|
|
|
'Vann Crossroads', |
15612
|
|
|
|
|
|
|
'Vansant', |
15613
|
|
|
|
|
|
|
'Vantage', |
15614
|
|
|
|
|
|
|
'Vardaman', |
15615
|
|
|
|
|
|
|
'Varina', |
15616
|
|
|
|
|
|
|
'Varna', |
15617
|
|
|
|
|
|
|
'Varnado', |
15618
|
|
|
|
|
|
|
'Varnamtown', |
15619
|
|
|
|
|
|
|
'Varnell', |
15620
|
|
|
|
|
|
|
'Varnville', |
15621
|
|
|
|
|
|
|
'Vashon', |
15622
|
|
|
|
|
|
|
'Vass', |
15623
|
|
|
|
|
|
|
'Vassar', |
15624
|
|
|
|
|
|
|
'Vaughn', |
15625
|
|
|
|
|
|
|
'Veblen', |
15626
|
|
|
|
|
|
|
'Veedersburg', |
15627
|
|
|
|
|
|
|
'Vega', |
15628
|
|
|
|
|
|
|
'Vega Alta', |
15629
|
|
|
|
|
|
|
'Vega Baja', |
15630
|
|
|
|
|
|
|
'Velda City', |
15631
|
|
|
|
|
|
|
'Velda Village Hills', |
15632
|
|
|
|
|
|
|
'Velma', |
15633
|
|
|
|
|
|
|
'Velva', |
15634
|
|
|
|
|
|
|
'Venango', |
15635
|
|
|
|
|
|
|
'Venedocia', |
15636
|
|
|
|
|
|
|
'Venedy', |
15637
|
|
|
|
|
|
|
'Venersborg', |
15638
|
|
|
|
|
|
|
'Veneta', |
15639
|
|
|
|
|
|
|
'Venetian Village', |
15640
|
|
|
|
|
|
|
'Venetie', |
15641
|
|
|
|
|
|
|
'Venice', |
15642
|
|
|
|
|
|
|
'Venice Gardens', |
15643
|
|
|
|
|
|
|
'Ventnor City', |
15644
|
|
|
|
|
|
|
'Ventura', |
15645
|
|
|
|
|
|
|
'Venturia', |
15646
|
|
|
|
|
|
|
'Venus', |
15647
|
|
|
|
|
|
|
'Vera', |
15648
|
|
|
|
|
|
|
'Vera Cruz', |
15649
|
|
|
|
|
|
|
'Veradale', |
15650
|
|
|
|
|
|
|
'Verdel', |
15651
|
|
|
|
|
|
|
'Verden', |
15652
|
|
|
|
|
|
|
'Verdi-Mogul', |
15653
|
|
|
|
|
|
|
'Verdigre', |
15654
|
|
|
|
|
|
|
'Verdon', |
15655
|
|
|
|
|
|
|
'Vergas', |
15656
|
|
|
|
|
|
|
'Vergennes', |
15657
|
|
|
|
|
|
|
'Verlot', |
15658
|
|
|
|
|
|
|
'Vermilion', |
15659
|
|
|
|
|
|
|
'Vermillion', |
15660
|
|
|
|
|
|
|
'Vermont', |
15661
|
|
|
|
|
|
|
'Vermontville', |
15662
|
|
|
|
|
|
|
'Vernal', |
15663
|
|
|
|
|
|
|
'Verndale', |
15664
|
|
|
|
|
|
|
'Vernon', |
15665
|
|
|
|
|
|
|
'Vernon Center', |
15666
|
|
|
|
|
|
|
'Vernon Hills', |
15667
|
|
|
|
|
|
|
'Vernon Valley', |
15668
|
|
|
|
|
|
|
'Vernonburg', |
15669
|
|
|
|
|
|
|
'Vernonia', |
15670
|
|
|
|
|
|
|
'Vero Beach', |
15671
|
|
|
|
|
|
|
'Vero Beach South', |
15672
|
|
|
|
|
|
|
'Verona', |
15673
|
|
|
|
|
|
|
'Verplanck', |
15674
|
|
|
|
|
|
|
'Versailles', |
15675
|
|
|
|
|
|
|
'Vesper', |
15676
|
|
|
|
|
|
|
'Vesta', |
15677
|
|
|
|
|
|
|
'Vestavia Hills', |
15678
|
|
|
|
|
|
|
'Veteran', |
15679
|
|
|
|
|
|
|
'Vevay', |
15680
|
|
|
|
|
|
|
'Vian', |
15681
|
|
|
|
|
|
|
'Viborg', |
15682
|
|
|
|
|
|
|
'Viburnum', |
15683
|
|
|
|
|
|
|
'Vicco', |
15684
|
|
|
|
|
|
|
'Vici', |
15685
|
|
|
|
|
|
|
'Vicksburg', |
15686
|
|
|
|
|
|
|
'Victor', |
15687
|
|
|
|
|
|
|
'Victoria', |
15688
|
|
|
|
|
|
|
'Victorville', |
15689
|
|
|
|
|
|
|
'Victory', |
15690
|
|
|
|
|
|
|
'Victory Gardens', |
15691
|
|
|
|
|
|
|
'Victory Lakes', |
15692
|
|
|
|
|
|
|
'Vidalia', |
15693
|
|
|
|
|
|
|
'Vidette', |
15694
|
|
|
|
|
|
|
'Vidor', |
15695
|
|
|
|
|
|
|
'Vienna', |
15696
|
|
|
|
|
|
|
'Vienna Center', |
15697
|
|
|
|
|
|
|
'Vieques', |
15698
|
|
|
|
|
|
|
'View Park-Windsor Hills', |
15699
|
|
|
|
|
|
|
'Viking', |
15700
|
|
|
|
|
|
|
'Vilas', |
15701
|
|
|
|
|
|
|
'Villa Grove', |
15702
|
|
|
|
|
|
|
'Villa Heights', |
15703
|
|
|
|
|
|
|
'Villa Hills', |
15704
|
|
|
|
|
|
|
'Villa Pancho', |
15705
|
|
|
|
|
|
|
'Villa Park', |
15706
|
|
|
|
|
|
|
'Villa Rica', |
15707
|
|
|
|
|
|
|
'Villa Ridge', |
15708
|
|
|
|
|
|
|
'Villa Verde', |
15709
|
|
|
|
|
|
|
'Villa del Sol', |
15710
|
|
|
|
|
|
|
'Village Green', |
15711
|
|
|
|
|
|
|
'Village Green-Green Ridge', |
15712
|
|
|
|
|
|
|
'Village Park', |
15713
|
|
|
|
|
|
|
'Village Shires', |
15714
|
|
|
|
|
|
|
'Village St. George', |
15715
|
|
|
|
|
|
|
'Village of Clarkston', |
15716
|
|
|
|
|
|
|
'Village of Four Seasons', |
15717
|
|
|
|
|
|
|
'Village of Lake Isabella', |
15718
|
|
|
|
|
|
|
'Village of the Branch', |
15719
|
|
|
|
|
|
|
'Villages of Oriole', |
15720
|
|
|
|
|
|
|
'Villalba', |
15721
|
|
|
|
|
|
|
'Villano Beach', |
15722
|
|
|
|
|
|
|
'Villard', |
15723
|
|
|
|
|
|
|
'Villas', |
15724
|
|
|
|
|
|
|
'Ville Platte', |
15725
|
|
|
|
|
|
|
'Villisca', |
15726
|
|
|
|
|
|
|
'Vilonia', |
15727
|
|
|
|
|
|
|
'Vina', |
15728
|
|
|
|
|
|
|
'Vincennes', |
15729
|
|
|
|
|
|
|
'Vincent', |
15730
|
|
|
|
|
|
|
'Vinco', |
15731
|
|
|
|
|
|
|
'Vine Grove', |
15732
|
|
|
|
|
|
|
'Vine Hill', |
15733
|
|
|
|
|
|
|
'Vineland', |
15734
|
|
|
|
|
|
|
'Vineyard', |
15735
|
|
|
|
|
|
|
'Vineyard Haven', |
15736
|
|
|
|
|
|
|
'Vineyards', |
15737
|
|
|
|
|
|
|
'Vining', |
15738
|
|
|
|
|
|
|
'Vinings', |
15739
|
|
|
|
|
|
|
'Vinita', |
15740
|
|
|
|
|
|
|
'Vinita Park', |
15741
|
|
|
|
|
|
|
'Vinita Terrace', |
15742
|
|
|
|
|
|
|
'Vinton', |
15743
|
|
|
|
|
|
|
'Vintondale', |
15744
|
|
|
|
|
|
|
'Viola', |
15745
|
|
|
|
|
|
|
'Violet', |
15746
|
|
|
|
|
|
|
'Virden', |
15747
|
|
|
|
|
|
|
'Virgil', |
15748
|
|
|
|
|
|
|
'Virgilina', |
15749
|
|
|
|
|
|
|
'Virgin', |
15750
|
|
|
|
|
|
|
'Virginia', |
15751
|
|
|
|
|
|
|
'Virginia Beach', |
15752
|
|
|
|
|
|
|
'Virginia City', |
15753
|
|
|
|
|
|
|
'Virginia Gardens', |
15754
|
|
|
|
|
|
|
'Viroqua', |
15755
|
|
|
|
|
|
|
'Visalia', |
15756
|
|
|
|
|
|
|
'Vista', |
15757
|
|
|
|
|
|
|
'Vista Center', |
15758
|
|
|
|
|
|
|
'Vista West', |
15759
|
|
|
|
|
|
|
'Vivian', |
15760
|
|
|
|
|
|
|
'Volant', |
15761
|
|
|
|
|
|
|
'Volcano', |
15762
|
|
|
|
|
|
|
'Volga', |
15763
|
|
|
|
|
|
|
'Volin', |
15764
|
|
|
|
|
|
|
'Volo', |
15765
|
|
|
|
|
|
|
'Voltaire', |
15766
|
|
|
|
|
|
|
'Vona', |
15767
|
|
|
|
|
|
|
'Vonore', |
15768
|
|
|
|
|
|
|
'Voorheesville', |
15769
|
|
|
|
|
|
|
'Vredenburgh', |
15770
|
|
|
|
|
|
|
'Vázquez', |
15771
|
|
|
|
|
|
|
'WaKeeney', |
15772
|
|
|
|
|
|
|
'Wabash', |
15773
|
|
|
|
|
|
|
'Wabasha', |
15774
|
|
|
|
|
|
|
'Wabasso', |
15775
|
|
|
|
|
|
|
'Wabasso Beach', |
15776
|
|
|
|
|
|
|
'Wabbaseka', |
15777
|
|
|
|
|
|
|
'Wachapreague', |
15778
|
|
|
|
|
|
|
'Waco', |
15779
|
|
|
|
|
|
|
'Waconia', |
15780
|
|
|
|
|
|
|
'Waddington', |
15781
|
|
|
|
|
|
|
'Wade', |
15782
|
|
|
|
|
|
|
'Wade Hampton', |
15783
|
|
|
|
|
|
|
'Wadena', |
15784
|
|
|
|
|
|
|
'Wadesboro', |
15785
|
|
|
|
|
|
|
'Wading River', |
15786
|
|
|
|
|
|
|
'Wadley', |
15787
|
|
|
|
|
|
|
'Wadsworth', |
15788
|
|
|
|
|
|
|
'Waelder', |
15789
|
|
|
|
|
|
|
'Wagener', |
15790
|
|
|
|
|
|
|
'Waggaman', |
15791
|
|
|
|
|
|
|
'Waggoner', |
15792
|
|
|
|
|
|
|
'Wagner', |
15793
|
|
|
|
|
|
|
'Wagon Mound', |
15794
|
|
|
|
|
|
|
'Wagoner', |
15795
|
|
|
|
|
|
|
'Wagram', |
15796
|
|
|
|
|
|
|
'Wahiawa', |
15797
|
|
|
|
|
|
|
'Wahkon', |
15798
|
|
|
|
|
|
|
'Wahneta', |
15799
|
|
|
|
|
|
|
'Wahoo', |
15800
|
|
|
|
|
|
|
'Wahpeton', |
15801
|
|
|
|
|
|
|
'Waialua', |
15802
|
|
|
|
|
|
|
'Waianae', |
15803
|
|
|
|
|
|
|
'Waihee-Waiehu', |
15804
|
|
|
|
|
|
|
'Waikane', |
15805
|
|
|
|
|
|
|
'Waikapu', |
15806
|
|
|
|
|
|
|
'Waikoloa Village', |
15807
|
|
|
|
|
|
|
'Wailea-Makena', |
15808
|
|
|
|
|
|
|
'Wailua', |
15809
|
|
|
|
|
|
|
'Wailua Homesteads', |
15810
|
|
|
|
|
|
|
'Wailuku', |
15811
|
|
|
|
|
|
|
'Waimalu', |
15812
|
|
|
|
|
|
|
'Waimanalo', |
15813
|
|
|
|
|
|
|
'Waimanalo Beach', |
15814
|
|
|
|
|
|
|
'Waimea', |
15815
|
|
|
|
|
|
|
'Wainaku', |
15816
|
|
|
|
|
|
|
'Wainscott', |
15817
|
|
|
|
|
|
|
'Wainwright', |
15818
|
|
|
|
|
|
|
'Waipahu', |
15819
|
|
|
|
|
|
|
'Waipio', |
15820
|
|
|
|
|
|
|
'Waipio Acres', |
15821
|
|
|
|
|
|
|
'Waite Hill', |
15822
|
|
|
|
|
|
|
'Waite Park', |
15823
|
|
|
|
|
|
|
'Waitsburg', |
15824
|
|
|
|
|
|
|
'Wakarusa', |
15825
|
|
|
|
|
|
|
'Wake Forest', |
15826
|
|
|
|
|
|
|
'Wake Village', |
15827
|
|
|
|
|
|
|
'Wakefield', |
15828
|
|
|
|
|
|
|
'Wakefield-Peacedale', |
15829
|
|
|
|
|
|
|
'Wakeman', |
15830
|
|
|
|
|
|
|
'Wakita', |
15831
|
|
|
|
|
|
|
'Wakonda', |
15832
|
|
|
|
|
|
|
'Walbridge', |
15833
|
|
|
|
|
|
|
'Walcott', |
15834
|
|
|
|
|
|
|
'Walden', |
15835
|
|
|
|
|
|
|
'Waldenburg', |
15836
|
|
|
|
|
|
|
'Waldo', |
15837
|
|
|
|
|
|
|
'Waldoboro', |
15838
|
|
|
|
|
|
|
'Waldon', |
15839
|
|
|
|
|
|
|
'Waldorf', |
15840
|
|
|
|
|
|
|
'Waldport', |
15841
|
|
|
|
|
|
|
'Waldron', |
15842
|
|
|
|
|
|
|
'Waldwick', |
15843
|
|
|
|
|
|
|
'Wales', |
15844
|
|
|
|
|
|
|
'Waleska', |
15845
|
|
|
|
|
|
|
'Walford', |
15846
|
|
|
|
|
|
|
'Walhalla', |
15847
|
|
|
|
|
|
|
'Walker', |
15848
|
|
|
|
|
|
|
'Walker Mill', |
15849
|
|
|
|
|
|
|
'Walker Valley', |
15850
|
|
|
|
|
|
|
'Walkersville', |
15851
|
|
|
|
|
|
|
'Walkerton', |
15852
|
|
|
|
|
|
|
'Walkertown', |
15853
|
|
|
|
|
|
|
'Walkerville', |
15854
|
|
|
|
|
|
|
'Wall', |
15855
|
|
|
|
|
|
|
'Wall Lake', |
15856
|
|
|
|
|
|
|
'Walla Walla', |
15857
|
|
|
|
|
|
|
'Walla Walla East', |
15858
|
|
|
|
|
|
|
'Wallace', |
15859
|
|
|
|
|
|
|
'Wallaceton', |
15860
|
|
|
|
|
|
|
'Walled Lake', |
15861
|
|
|
|
|
|
|
'Waller', |
15862
|
|
|
|
|
|
|
'Wallingford', |
15863
|
|
|
|
|
|
|
'Wallingford Center', |
15864
|
|
|
|
|
|
|
'Wallington', |
15865
|
|
|
|
|
|
|
'Wallins Creek', |
15866
|
|
|
|
|
|
|
'Wallis', |
15867
|
|
|
|
|
|
|
'Wallkill', |
15868
|
|
|
|
|
|
|
'Wallowa', |
15869
|
|
|
|
|
|
|
'Wallsburg', |
15870
|
|
|
|
|
|
|
'Wallula', |
15871
|
|
|
|
|
|
|
'Walnut', |
15872
|
|
|
|
|
|
|
'Walnut Cove', |
15873
|
|
|
|
|
|
|
'Walnut Creek', |
15874
|
|
|
|
|
|
|
'Walnut Grove', |
15875
|
|
|
|
|
|
|
'Walnut Hill', |
15876
|
|
|
|
|
|
|
'Walnut Park', |
15877
|
|
|
|
|
|
|
'Walnut Ridge', |
15878
|
|
|
|
|
|
|
'Walnut Springs', |
15879
|
|
|
|
|
|
|
'Walnutport', |
15880
|
|
|
|
|
|
|
'Walpole', |
15881
|
|
|
|
|
|
|
'Walsenburg', |
15882
|
|
|
|
|
|
|
'Walsh', |
15883
|
|
|
|
|
|
|
'Walshville', |
15884
|
|
|
|
|
|
|
'Walstonburg', |
15885
|
|
|
|
|
|
|
'Walterboro', |
15886
|
|
|
|
|
|
|
'Walterhill', |
15887
|
|
|
|
|
|
|
'Walters', |
15888
|
|
|
|
|
|
|
'Walthall', |
15889
|
|
|
|
|
|
|
'Waltham', |
15890
|
|
|
|
|
|
|
'Walthill', |
15891
|
|
|
|
|
|
|
'Walthourville', |
15892
|
|
|
|
|
|
|
'Walton', |
15893
|
|
|
|
|
|
|
'Walton Hills', |
15894
|
|
|
|
|
|
|
'Walton Park', |
15895
|
|
|
|
|
|
|
'Waltonville', |
15896
|
|
|
|
|
|
|
'Walworth', |
15897
|
|
|
|
|
|
|
'Wamac', |
15898
|
|
|
|
|
|
|
'Wamego', |
15899
|
|
|
|
|
|
|
'Wamic', |
15900
|
|
|
|
|
|
|
'Wampsville', |
15901
|
|
|
|
|
|
|
'Wampum', |
15902
|
|
|
|
|
|
|
'Wamsutter', |
15903
|
|
|
|
|
|
|
'Wanamassa', |
15904
|
|
|
|
|
|
|
'Wanamingo', |
15905
|
|
|
|
|
|
|
'Wanaque', |
15906
|
|
|
|
|
|
|
'Wanatah', |
15907
|
|
|
|
|
|
|
'Wanblee', |
15908
|
|
|
|
|
|
|
'Wanchese', |
15909
|
|
|
|
|
|
|
'Wanda', |
15910
|
|
|
|
|
|
|
'Wanette', |
15911
|
|
|
|
|
|
|
'Wann', |
15912
|
|
|
|
|
|
|
'Wantagh', |
15913
|
|
|
|
|
|
|
'Wapakoneta', |
15914
|
|
|
|
|
|
|
'Wapanucka', |
15915
|
|
|
|
|
|
|
'Wapato', |
15916
|
|
|
|
|
|
|
'Wapella', |
15917
|
|
|
|
|
|
|
'Wapello', |
15918
|
|
|
|
|
|
|
'Wappingers Falls', |
15919
|
|
|
|
|
|
|
'War', |
15920
|
|
|
|
|
|
|
'Warba', |
15921
|
|
|
|
|
|
|
'Ward', |
15922
|
|
|
|
|
|
|
'Wardell', |
15923
|
|
|
|
|
|
|
'Warden', |
15924
|
|
|
|
|
|
|
'Wardensville', |
15925
|
|
|
|
|
|
|
'Wardner', |
15926
|
|
|
|
|
|
|
'Wardsville', |
15927
|
|
|
|
|
|
|
'Ware', |
15928
|
|
|
|
|
|
|
'Ware Shoals', |
15929
|
|
|
|
|
|
|
'Wareham Center', |
15930
|
|
|
|
|
|
|
'Waretown', |
15931
|
|
|
|
|
|
|
'Warfield', |
15932
|
|
|
|
|
|
|
'Warm Beach', |
15933
|
|
|
|
|
|
|
'Warm Mineral Springs', |
15934
|
|
|
|
|
|
|
'Warm River', |
15935
|
|
|
|
|
|
|
'Warm Springs', |
15936
|
|
|
|
|
|
|
'Warminster Heights', |
15937
|
|
|
|
|
|
|
'Warner', |
15938
|
|
|
|
|
|
|
'Warner Robins', |
15939
|
|
|
|
|
|
|
'Warr Acres', |
15940
|
|
|
|
|
|
|
'Warren', |
15941
|
|
|
|
|
|
|
'Warren AFB', |
15942
|
|
|
|
|
|
|
'Warren City', |
15943
|
|
|
|
|
|
|
'Warren Park', |
15944
|
|
|
|
|
|
|
'Warren South', |
15945
|
|
|
|
|
|
|
'Warrens', |
15946
|
|
|
|
|
|
|
'Warrensburg', |
15947
|
|
|
|
|
|
|
'Warrensville Heights', |
15948
|
|
|
|
|
|
|
'Warrenton', |
15949
|
|
|
|
|
|
|
'Warrenville', |
15950
|
|
|
|
|
|
|
'Warrington', |
15951
|
|
|
|
|
|
|
'Warrior', |
15952
|
|
|
|
|
|
|
'Warrior Run', |
15953
|
|
|
|
|
|
|
'Warroad', |
15954
|
|
|
|
|
|
|
'Warsaw', |
15955
|
|
|
|
|
|
|
'Warson Woods', |
15956
|
|
|
|
|
|
|
'Wartburg', |
15957
|
|
|
|
|
|
|
'Wartrace', |
15958
|
|
|
|
|
|
|
'Warwick', |
15959
|
|
|
|
|
|
|
'Wasco', |
15960
|
|
|
|
|
|
|
'Waseca', |
15961
|
|
|
|
|
|
|
'Washakie Ten', |
15962
|
|
|
|
|
|
|
'Washam', |
15963
|
|
|
|
|
|
|
'Washburn', |
15964
|
|
|
|
|
|
|
'Washington', |
15965
|
|
|
|
|
|
|
'Washington Grove', |
15966
|
|
|
|
|
|
|
'Washington Heights', |
15967
|
|
|
|
|
|
|
'Washington Park', |
15968
|
|
|
|
|
|
|
'Washington Terrace', |
15969
|
|
|
|
|
|
|
'Washington Township', |
15970
|
|
|
|
|
|
|
'Washingtonville', |
15971
|
|
|
|
|
|
|
'Washougal', |
15972
|
|
|
|
|
|
|
'Washta', |
15973
|
|
|
|
|
|
|
'Washtucna', |
15974
|
|
|
|
|
|
|
'Wasilla', |
15975
|
|
|
|
|
|
|
'Waskom', |
15976
|
|
|
|
|
|
|
'Wasta', |
15977
|
|
|
|
|
|
|
'Wataga', |
15978
|
|
|
|
|
|
|
'Watauga', |
15979
|
|
|
|
|
|
|
'Watchung', |
15980
|
|
|
|
|
|
|
'Water Valley', |
15981
|
|
|
|
|
|
|
'Waterbury', |
15982
|
|
|
|
|
|
|
'Waterford', |
15983
|
|
|
|
|
|
|
'Waterford North', |
15984
|
|
|
|
|
|
|
'Waterloo', |
15985
|
|
|
|
|
|
|
'Waterman', |
15986
|
|
|
|
|
|
|
'Watermill', |
15987
|
|
|
|
|
|
|
'Waterproof', |
15988
|
|
|
|
|
|
|
'Watertown', |
15989
|
|
|
|
|
|
|
'Waterville', |
15990
|
|
|
|
|
|
|
'Watervliet', |
15991
|
|
|
|
|
|
|
'Watford City', |
15992
|
|
|
|
|
|
|
'Watha', |
15993
|
|
|
|
|
|
|
'Wathena', |
15994
|
|
|
|
|
|
|
'Watkins', |
15995
|
|
|
|
|
|
|
'Watkins Glen', |
15996
|
|
|
|
|
|
|
'Watkinsville', |
15997
|
|
|
|
|
|
|
'Watonga', |
15998
|
|
|
|
|
|
|
'Watseka', |
15999
|
|
|
|
|
|
|
'Watson', |
16000
|
|
|
|
|
|
|
'Watsontown', |
16001
|
|
|
|
|
|
|
'Watsonville', |
16002
|
|
|
|
|
|
|
'Watterson Park', |
16003
|
|
|
|
|
|
|
'Watts', |
16004
|
|
|
|
|
|
|
'Watts Community', |
16005
|
|
|
|
|
|
|
'Watts Mills', |
16006
|
|
|
|
|
|
|
'Wattsburg', |
16007
|
|
|
|
|
|
|
'Waubay', |
16008
|
|
|
|
|
|
|
'Waubun', |
16009
|
|
|
|
|
|
|
'Wauchula', |
16010
|
|
|
|
|
|
|
'Waucoma', |
16011
|
|
|
|
|
|
|
'Wauconda', |
16012
|
|
|
|
|
|
|
'Waukee', |
16013
|
|
|
|
|
|
|
'Waukegan', |
16014
|
|
|
|
|
|
|
'Waukesha', |
16015
|
|
|
|
|
|
|
'Waukomis', |
16016
|
|
|
|
|
|
|
'Waukon', |
16017
|
|
|
|
|
|
|
'Waunakee', |
16018
|
|
|
|
|
|
|
'Wauneta', |
16019
|
|
|
|
|
|
|
'Waupaca', |
16020
|
|
|
|
|
|
|
'Waupun', |
16021
|
|
|
|
|
|
|
'Wauregan', |
16022
|
|
|
|
|
|
|
'Waurika', |
16023
|
|
|
|
|
|
|
'Wausa', |
16024
|
|
|
|
|
|
|
'Wausau', |
16025
|
|
|
|
|
|
|
'Wausaukee', |
16026
|
|
|
|
|
|
|
'Wauseon', |
16027
|
|
|
|
|
|
|
'Wautoma', |
16028
|
|
|
|
|
|
|
'Wauwatosa', |
16029
|
|
|
|
|
|
|
'Wauzeka', |
16030
|
|
|
|
|
|
|
'Waveland', |
16031
|
|
|
|
|
|
|
'Waverly', |
16032
|
|
|
|
|
|
|
'Waverly City', |
16033
|
|
|
|
|
|
|
'Waverly Hall', |
16034
|
|
|
|
|
|
|
'Waxahachie', |
16035
|
|
|
|
|
|
|
'Waxhaw', |
16036
|
|
|
|
|
|
|
'Waycross', |
16037
|
|
|
|
|
|
|
'Wayland', |
16038
|
|
|
|
|
|
|
'Waymart', |
16039
|
|
|
|
|
|
|
'Wayne', |
16040
|
|
|
|
|
|
|
'Wayne City', |
16041
|
|
|
|
|
|
|
'Wayne Heights', |
16042
|
|
|
|
|
|
|
'Wayne Lakes', |
16043
|
|
|
|
|
|
|
'Waynesboro', |
16044
|
|
|
|
|
|
|
'Waynesburg', |
16045
|
|
|
|
|
|
|
'Waynesfield', |
16046
|
|
|
|
|
|
|
'Waynesville', |
16047
|
|
|
|
|
|
|
'Waynetown', |
16048
|
|
|
|
|
|
|
'Waynoka', |
16049
|
|
|
|
|
|
|
'Wayzata', |
16050
|
|
|
|
|
|
|
'Weallup Lake', |
16051
|
|
|
|
|
|
|
'Weatherby', |
16052
|
|
|
|
|
|
|
'Weatherby Lake', |
16053
|
|
|
|
|
|
|
'Weatherford', |
16054
|
|
|
|
|
|
|
'Weatherly', |
16055
|
|
|
|
|
|
|
'Weatogue', |
16056
|
|
|
|
|
|
|
'Weaubleau', |
16057
|
|
|
|
|
|
|
'Weaver', |
16058
|
|
|
|
|
|
|
'Weaverville', |
16059
|
|
|
|
|
|
|
'Webb', |
16060
|
|
|
|
|
|
|
'Webb City', |
16061
|
|
|
|
|
|
|
'Webber', |
16062
|
|
|
|
|
|
|
'Webbers Falls', |
16063
|
|
|
|
|
|
|
'Webberville', |
16064
|
|
|
|
|
|
|
'Weber City', |
16065
|
|
|
|
|
|
|
'Webster', |
16066
|
|
|
|
|
|
|
'Webster City', |
16067
|
|
|
|
|
|
|
'Webster Groves', |
16068
|
|
|
|
|
|
|
'Weddington', |
16069
|
|
|
|
|
|
|
'Wedgefield', |
16070
|
|
|
|
|
|
|
'Wedgewood', |
16071
|
|
|
|
|
|
|
'Wedowee', |
16072
|
|
|
|
|
|
|
'Weed', |
16073
|
|
|
|
|
|
|
'Weedpatch', |
16074
|
|
|
|
|
|
|
'Weedsport', |
16075
|
|
|
|
|
|
|
'Weeki Wachee', |
16076
|
|
|
|
|
|
|
'Weeki Wachee Gardens', |
16077
|
|
|
|
|
|
|
'Weeping Water', |
16078
|
|
|
|
|
|
|
'Weidman', |
16079
|
|
|
|
|
|
|
'Weigelstown', |
16080
|
|
|
|
|
|
|
'Weimar', |
16081
|
|
|
|
|
|
|
'Weiner', |
16082
|
|
|
|
|
|
|
'Weinert', |
16083
|
|
|
|
|
|
|
'Weippe', |
16084
|
|
|
|
|
|
|
'Weir', |
16085
|
|
|
|
|
|
|
'Weirton', |
16086
|
|
|
|
|
|
|
'Weiser', |
16087
|
|
|
|
|
|
|
'Weissport', |
16088
|
|
|
|
|
|
|
'Weissport East', |
16089
|
|
|
|
|
|
|
'Wekiwa Springs', |
16090
|
|
|
|
|
|
|
'Welaka', |
16091
|
|
|
|
|
|
|
'Welby', |
16092
|
|
|
|
|
|
|
'Welch', |
16093
|
|
|
|
|
|
|
'Welcome', |
16094
|
|
|
|
|
|
|
'Weldon', |
16095
|
|
|
|
|
|
|
'Weldon Spring', |
16096
|
|
|
|
|
|
|
'Weldon Spring Heights', |
16097
|
|
|
|
|
|
|
'Weleetka', |
16098
|
|
|
|
|
|
|
'Wellersburg', |
16099
|
|
|
|
|
|
|
'Wellesley', |
16100
|
|
|
|
|
|
|
'Wellfleet', |
16101
|
|
|
|
|
|
|
'Wellford', |
16102
|
|
|
|
|
|
|
'Welling', |
16103
|
|
|
|
|
|
|
'Wellington', |
16104
|
|
|
|
|
|
|
'Wellman', |
16105
|
|
|
|
|
|
|
'Wells', |
16106
|
|
|
|
|
|
|
'Wells Branch', |
16107
|
|
|
|
|
|
|
'Wells River', |
16108
|
|
|
|
|
|
|
'Wellsboro', |
16109
|
|
|
|
|
|
|
'Wellsburg', |
16110
|
|
|
|
|
|
|
'Wellston', |
16111
|
|
|
|
|
|
|
'Wellsville', |
16112
|
|
|
|
|
|
|
'Wellton', |
16113
|
|
|
|
|
|
|
'Welsh', |
16114
|
|
|
|
|
|
|
'Welton', |
16115
|
|
|
|
|
|
|
'Wenatchee', |
16116
|
|
|
|
|
|
|
'Wendell', |
16117
|
|
|
|
|
|
|
'Wenden', |
16118
|
|
|
|
|
|
|
'Wendover', |
16119
|
|
|
|
|
|
|
'Wenona', |
16120
|
|
|
|
|
|
|
'Wenonah', |
16121
|
|
|
|
|
|
|
'Wentworth', |
16122
|
|
|
|
|
|
|
'Wentzville', |
16123
|
|
|
|
|
|
|
'Wernersville', |
16124
|
|
|
|
|
|
|
'Weslaco', |
16125
|
|
|
|
|
|
|
'Wesley', |
16126
|
|
|
|
|
|
|
'Wesley Chapel', |
16127
|
|
|
|
|
|
|
'Wesley Chapel South', |
16128
|
|
|
|
|
|
|
'Wesley Hills', |
16129
|
|
|
|
|
|
|
'Wesleyville', |
16130
|
|
|
|
|
|
|
'Wessington', |
16131
|
|
|
|
|
|
|
'Wessington Springs', |
16132
|
|
|
|
|
|
|
'Wesson', |
16133
|
|
|
|
|
|
|
'West', |
16134
|
|
|
|
|
|
|
'West Alexander', |
16135
|
|
|
|
|
|
|
'West Alexandria', |
16136
|
|
|
|
|
|
|
'West Allis', |
16137
|
|
|
|
|
|
|
'West Alton', |
16138
|
|
|
|
|
|
|
'West Athens', |
16139
|
|
|
|
|
|
|
'West Babylon', |
16140
|
|
|
|
|
|
|
'West Baden Springs', |
16141
|
|
|
|
|
|
|
'West Baraboo', |
16142
|
|
|
|
|
|
|
'West Bay Shore', |
16143
|
|
|
|
|
|
|
'West Belmar', |
16144
|
|
|
|
|
|
|
'West Bend', |
16145
|
|
|
|
|
|
|
'West Bishop', |
16146
|
|
|
|
|
|
|
'West Blocton', |
16147
|
|
|
|
|
|
|
'West Bloomfield Township', |
16148
|
|
|
|
|
|
|
'West Bountiful', |
16149
|
|
|
|
|
|
|
'West Bradenton', |
16150
|
|
|
|
|
|
|
'West Branch', |
16151
|
|
|
|
|
|
|
'West Brattleboro', |
16152
|
|
|
|
|
|
|
'West Brookfield', |
16153
|
|
|
|
|
|
|
'West Brooklyn', |
16154
|
|
|
|
|
|
|
'West Brownsville', |
16155
|
|
|
|
|
|
|
'West Buechel', |
16156
|
|
|
|
|
|
|
'West Burke', |
16157
|
|
|
|
|
|
|
'West Burlington', |
16158
|
|
|
|
|
|
|
'West Caldwell', |
16159
|
|
|
|
|
|
|
'West Canton', |
16160
|
|
|
|
|
|
|
'West Cape May', |
16161
|
|
|
|
|
|
|
'West Carrollton City', |
16162
|
|
|
|
|
|
|
'West Carson', |
16163
|
|
|
|
|
|
|
'West Carthage', |
16164
|
|
|
|
|
|
|
'West Chatham', |
16165
|
|
|
|
|
|
|
'West Chester', |
16166
|
|
|
|
|
|
|
'West Chicago', |
16167
|
|
|
|
|
|
|
'West City', |
16168
|
|
|
|
|
|
|
'West Clarkston-Highland', |
16169
|
|
|
|
|
|
|
'West College Corner', |
16170
|
|
|
|
|
|
|
'West Columbia', |
16171
|
|
|
|
|
|
|
'West Compton', |
16172
|
|
|
|
|
|
|
'West Concord', |
16173
|
|
|
|
|
|
|
'West Conshohocken', |
16174
|
|
|
|
|
|
|
'West Covina', |
16175
|
|
|
|
|
|
|
'West Crossett', |
16176
|
|
|
|
|
|
|
'West De Land', |
16177
|
|
|
|
|
|
|
'West Dennis', |
16178
|
|
|
|
|
|
|
'West Des Moines', |
16179
|
|
|
|
|
|
|
'West Dundee', |
16180
|
|
|
|
|
|
|
'West Easton', |
16181
|
|
|
|
|
|
|
'West Elizabeth', |
16182
|
|
|
|
|
|
|
'West Elkton', |
16183
|
|
|
|
|
|
|
'West Elmira', |
16184
|
|
|
|
|
|
|
'West End', |
16185
|
|
|
|
|
|
|
'West End-Cobb Town', |
16186
|
|
|
|
|
|
|
'West Falmouth', |
16187
|
|
|
|
|
|
|
'West Fargo', |
16188
|
|
|
|
|
|
|
'West Farmington', |
16189
|
|
|
|
|
|
|
'West Ferriday', |
16190
|
|
|
|
|
|
|
'West Fork', |
16191
|
|
|
|
|
|
|
'West Frankfort', |
16192
|
|
|
|
|
|
|
'West Freehold', |
16193
|
|
|
|
|
|
|
'West Gate', |
16194
|
|
|
|
|
|
|
'West Glendive', |
16195
|
|
|
|
|
|
|
'West Glens Falls', |
16196
|
|
|
|
|
|
|
'West Goshen', |
16197
|
|
|
|
|
|
|
'West Grove', |
16198
|
|
|
|
|
|
|
'West Hamlin', |
16199
|
|
|
|
|
|
|
'West Hampton Dunes', |
16200
|
|
|
|
|
|
|
'West Harrison', |
16201
|
|
|
|
|
|
|
'West Hartford', |
16202
|
|
|
|
|
|
|
'West Hattiesburg', |
16203
|
|
|
|
|
|
|
'West Haven', |
16204
|
|
|
|
|
|
|
'West Haven-Sylvan', |
16205
|
|
|
|
|
|
|
'West Haverstraw', |
16206
|
|
|
|
|
|
|
'West Havre', |
16207
|
|
|
|
|
|
|
'West Hazleton', |
16208
|
|
|
|
|
|
|
'West Helena', |
16209
|
|
|
|
|
|
|
'West Hempstead', |
16210
|
|
|
|
|
|
|
'West Hill', |
16211
|
|
|
|
|
|
|
'West Hills', |
16212
|
|
|
|
|
|
|
'West Hollywood', |
16213
|
|
|
|
|
|
|
'West Homestead', |
16214
|
|
|
|
|
|
|
'West Hurley', |
16215
|
|
|
|
|
|
|
'West Ishpeming', |
16216
|
|
|
|
|
|
|
'West Islip', |
16217
|
|
|
|
|
|
|
'West Jefferson', |
16218
|
|
|
|
|
|
|
'West Jordan', |
16219
|
|
|
|
|
|
|
'West Ken-Lark', |
16220
|
|
|
|
|
|
|
'West Kennebunk', |
16221
|
|
|
|
|
|
|
'West Kittanning', |
16222
|
|
|
|
|
|
|
'West Lafayette', |
16223
|
|
|
|
|
|
|
'West Lake Hills', |
16224
|
|
|
|
|
|
|
'West Lake Sammamish', |
16225
|
|
|
|
|
|
|
'West Lake Stevens', |
16226
|
|
|
|
|
|
|
'West Laurel', |
16227
|
|
|
|
|
|
|
'West Lawn', |
16228
|
|
|
|
|
|
|
'West Lebanon', |
16229
|
|
|
|
|
|
|
'West Leechburg', |
16230
|
|
|
|
|
|
|
'West Leipsic', |
16231
|
|
|
|
|
|
|
'West Liberty', |
16232
|
|
|
|
|
|
|
'West Line', |
16233
|
|
|
|
|
|
|
'West Linn', |
16234
|
|
|
|
|
|
|
'West Little River', |
16235
|
|
|
|
|
|
|
'West Livingston', |
16236
|
|
|
|
|
|
|
'West Logan', |
16237
|
|
|
|
|
|
|
'West Long Branch', |
16238
|
|
|
|
|
|
|
'West Longview', |
16239
|
|
|
|
|
|
|
'West Manchester', |
16240
|
|
|
|
|
|
|
'West Mansfield', |
16241
|
|
|
|
|
|
|
'West Marion', |
16242
|
|
|
|
|
|
|
'West Mayfield', |
16243
|
|
|
|
|
|
|
'West Melbourne', |
16244
|
|
|
|
|
|
|
'West Memphis', |
16245
|
|
|
|
|
|
|
'West Menlo Park', |
16246
|
|
|
|
|
|
|
'West Miami', |
16247
|
|
|
|
|
|
|
'West Middlesex', |
16248
|
|
|
|
|
|
|
'West Middletown', |
16249
|
|
|
|
|
|
|
'West Mifflin', |
16250
|
|
|
|
|
|
|
'West Milford', |
16251
|
|
|
|
|
|
|
'West Millgrove', |
16252
|
|
|
|
|
|
|
'West Milton', |
16253
|
|
|
|
|
|
|
'West Milwaukee', |
16254
|
|
|
|
|
|
|
'West Mineral', |
16255
|
|
|
|
|
|
|
'West Modesto', |
16256
|
|
|
|
|
|
|
'West Monroe', |
16257
|
|
|
|
|
|
|
'West Mountain', |
16258
|
|
|
|
|
|
|
'West New York', |
16259
|
|
|
|
|
|
|
'West Newton', |
16260
|
|
|
|
|
|
|
'West Norriton', |
16261
|
|
|
|
|
|
|
'West Nyack', |
16262
|
|
|
|
|
|
|
'West Ocean City', |
16263
|
|
|
|
|
|
|
'West Odessa', |
16264
|
|
|
|
|
|
|
'West Okoboji', |
16265
|
|
|
|
|
|
|
'West Orange', |
16266
|
|
|
|
|
|
|
'West Palm Beach', |
16267
|
|
|
|
|
|
|
'West Pasco', |
16268
|
|
|
|
|
|
|
'West Paterson', |
16269
|
|
|
|
|
|
|
'West Pearsall', |
16270
|
|
|
|
|
|
|
'West Peavine', |
16271
|
|
|
|
|
|
|
'West Pelzer', |
16272
|
|
|
|
|
|
|
'West Pensacola', |
16273
|
|
|
|
|
|
|
'West Peoria', |
16274
|
|
|
|
|
|
|
'West Perrine', |
16275
|
|
|
|
|
|
|
'West Pittston', |
16276
|
|
|
|
|
|
|
'West Plains', |
16277
|
|
|
|
|
|
|
'West Pleasant View', |
16278
|
|
|
|
|
|
|
'West Pocomoke', |
16279
|
|
|
|
|
|
|
'West Point', |
16280
|
|
|
|
|
|
|
'West Portsmouth', |
16281
|
|
|
|
|
|
|
'West Puente Valley', |
16282
|
|
|
|
|
|
|
'West Reading', |
16283
|
|
|
|
|
|
|
'West Richland', |
16284
|
|
|
|
|
|
|
'West River', |
16285
|
|
|
|
|
|
|
'West Rushville', |
16286
|
|
|
|
|
|
|
'West Rutland', |
16287
|
|
|
|
|
|
|
'West Sacramento', |
16288
|
|
|
|
|
|
|
'West Salem', |
16289
|
|
|
|
|
|
|
'West Samoset', |
16290
|
|
|
|
|
|
|
'West Sand Lake', |
16291
|
|
|
|
|
|
|
'West Sayville', |
16292
|
|
|
|
|
|
|
'West Seneca', |
16293
|
|
|
|
|
|
|
'West Sharyland', |
16294
|
|
|
|
|
|
|
'West Side Highway', |
16295
|
|
|
|
|
|
|
'West Siloam Springs', |
16296
|
|
|
|
|
|
|
'West Simsbury', |
16297
|
|
|
|
|
|
|
'West Slope', |
16298
|
|
|
|
|
|
|
'West Smithfield', |
16299
|
|
|
|
|
|
|
'West Springfield', |
16300
|
|
|
|
|
|
|
'West St. Paul', |
16301
|
|
|
|
|
|
|
'West Sunbury', |
16302
|
|
|
|
|
|
|
'West Swanzey', |
16303
|
|
|
|
|
|
|
'West Tawakoni', |
16304
|
|
|
|
|
|
|
'West Terre Haute', |
16305
|
|
|
|
|
|
|
'West Union', |
16306
|
|
|
|
|
|
|
'West Unity', |
16307
|
|
|
|
|
|
|
'West University Place', |
16308
|
|
|
|
|
|
|
'West Valley', |
16309
|
|
|
|
|
|
|
'West Valley City', |
16310
|
|
|
|
|
|
|
'West Vero Corridor', |
16311
|
|
|
|
|
|
|
'West View', |
16312
|
|
|
|
|
|
|
'West Wareham', |
16313
|
|
|
|
|
|
|
'West Warwick', |
16314
|
|
|
|
|
|
|
'West Wenatchee', |
16315
|
|
|
|
|
|
|
'West Wendover', |
16316
|
|
|
|
|
|
|
'West Whittier-Los Nietos', |
16317
|
|
|
|
|
|
|
'West Wildwood', |
16318
|
|
|
|
|
|
|
'West Winfield', |
16319
|
|
|
|
|
|
|
'West Wyoming', |
16320
|
|
|
|
|
|
|
'West Wyomissing', |
16321
|
|
|
|
|
|
|
'West Yarmouth', |
16322
|
|
|
|
|
|
|
'West Yellowstone', |
16323
|
|
|
|
|
|
|
'West York', |
16324
|
|
|
|
|
|
|
'West and East Lealman', |
16325
|
|
|
|
|
|
|
'Westboro', |
16326
|
|
|
|
|
|
|
'Westborough', |
16327
|
|
|
|
|
|
|
'Westbrook', |
16328
|
|
|
|
|
|
|
'Westbrook Center', |
16329
|
|
|
|
|
|
|
'Westbury', |
16330
|
|
|
|
|
|
|
'Westby', |
16331
|
|
|
|
|
|
|
'Westchase', |
16332
|
|
|
|
|
|
|
'Westchester', |
16333
|
|
|
|
|
|
|
'Westcliffe', |
16334
|
|
|
|
|
|
|
'Westcreek', |
16335
|
|
|
|
|
|
|
'Westdale', |
16336
|
|
|
|
|
|
|
'Westerly', |
16337
|
|
|
|
|
|
|
'Western', |
16338
|
|
|
|
|
|
|
'Western Grove', |
16339
|
|
|
|
|
|
|
'Western Springs', |
16340
|
|
|
|
|
|
|
'Westernport', |
16341
|
|
|
|
|
|
|
'Westerville', |
16342
|
|
|
|
|
|
|
'Westfield', |
16343
|
|
|
|
|
|
|
'Westfield Center', |
16344
|
|
|
|
|
|
|
'Westfir', |
16345
|
|
|
|
|
|
|
'Westgate', |
16346
|
|
|
|
|
|
|
'Westgate-Belvedere Homes', |
16347
|
|
|
|
|
|
|
'Westhampton', |
16348
|
|
|
|
|
|
|
'Westhampton Beach', |
16349
|
|
|
|
|
|
|
'Westhaven-Moonstone', |
16350
|
|
|
|
|
|
|
'Westhope', |
16351
|
|
|
|
|
|
|
'Westlake', |
16352
|
|
|
|
|
|
|
'Westlake Corner', |
16353
|
|
|
|
|
|
|
'Westlake Village', |
16354
|
|
|
|
|
|
|
'Westland', |
16355
|
|
|
|
|
|
|
'Westley', |
16356
|
|
|
|
|
|
|
'Westmere', |
16357
|
|
|
|
|
|
|
'Westminster', |
16358
|
|
|
|
|
|
|
'Westmont', |
16359
|
|
|
|
|
|
|
'Westmoreland', |
16360
|
|
|
|
|
|
|
'Westmorland', |
16361
|
|
|
|
|
|
|
'Weston', |
16362
|
|
|
|
|
|
|
'Weston Mills', |
16363
|
|
|
|
|
|
|
'Westover', |
16364
|
|
|
|
|
|
|
'Westover Hills', |
16365
|
|
|
|
|
|
|
'Westphalia', |
16366
|
|
|
|
|
|
|
'Westport', |
16367
|
|
|
|
|
|
|
'Westside', |
16368
|
|
|
|
|
|
|
'Westvale', |
16369
|
|
|
|
|
|
|
'Westview', |
16370
|
|
|
|
|
|
|
'Westview Circle', |
16371
|
|
|
|
|
|
|
'Westville', |
16372
|
|
|
|
|
|
|
'Westway', |
16373
|
|
|
|
|
|
|
'Westwego', |
16374
|
|
|
|
|
|
|
'Westwood', |
16375
|
|
|
|
|
|
|
'Westwood Hills', |
16376
|
|
|
|
|
|
|
'Westwood Lakes', |
16377
|
|
|
|
|
|
|
'Westworth Village', |
16378
|
|
|
|
|
|
|
'Wetherington', |
16379
|
|
|
|
|
|
|
'Wethersfield', |
16380
|
|
|
|
|
|
|
'Wetmore', |
16381
|
|
|
|
|
|
|
'Wetonka', |
16382
|
|
|
|
|
|
|
'Wetumka', |
16383
|
|
|
|
|
|
|
'Wetumpka', |
16384
|
|
|
|
|
|
|
'Wewahitchka', |
16385
|
|
|
|
|
|
|
'Weweantic', |
16386
|
|
|
|
|
|
|
'Wewoka', |
16387
|
|
|
|
|
|
|
'Weyauwega', |
16388
|
|
|
|
|
|
|
'Weyerhaeuser', |
16389
|
|
|
|
|
|
|
'Weyers Cave', |
16390
|
|
|
|
|
|
|
'Weymouth', |
16391
|
|
|
|
|
|
|
'Whalan', |
16392
|
|
|
|
|
|
|
'Whale Pass', |
16393
|
|
|
|
|
|
|
'Whaleyville', |
16394
|
|
|
|
|
|
|
'Wharton', |
16395
|
|
|
|
|
|
|
'What Cheer', |
16396
|
|
|
|
|
|
|
'Wheat Ridge', |
16397
|
|
|
|
|
|
|
'Wheatcroft', |
16398
|
|
|
|
|
|
|
'Wheatfield', |
16399
|
|
|
|
|
|
|
'Wheatland', |
16400
|
|
|
|
|
|
|
'Wheatley', |
16401
|
|
|
|
|
|
|
'Wheatley Heights', |
16402
|
|
|
|
|
|
|
'Wheaton', |
16403
|
|
|
|
|
|
|
'Wheaton-Glenmont', |
16404
|
|
|
|
|
|
|
'Wheeler', |
16405
|
|
|
|
|
|
|
'Wheeler AFB', |
16406
|
|
|
|
|
|
|
'Wheelersburg', |
16407
|
|
|
|
|
|
|
'Wheeling', |
16408
|
|
|
|
|
|
|
'Wheelwright', |
16409
|
|
|
|
|
|
|
'Whelen Springs', |
16410
|
|
|
|
|
|
|
'Whetstone', |
16411
|
|
|
|
|
|
|
'Whigham', |
16412
|
|
|
|
|
|
|
'Whipps Millgate', |
16413
|
|
|
|
|
|
|
'Whiskey Creek', |
16414
|
|
|
|
|
|
|
'Whisper Walk', |
16415
|
|
|
|
|
|
|
'Whispering Pines', |
16416
|
|
|
|
|
|
|
'Whitaker', |
16417
|
|
|
|
|
|
|
'Whitakers', |
16418
|
|
|
|
|
|
|
'White', |
16419
|
|
|
|
|
|
|
'White Bear Lake', |
16420
|
|
|
|
|
|
|
'White Bird', |
16421
|
|
|
|
|
|
|
'White Bluff', |
16422
|
|
|
|
|
|
|
'White Castle', |
16423
|
|
|
|
|
|
|
'White Center', |
16424
|
|
|
|
|
|
|
'White City', |
16425
|
|
|
|
|
|
|
'White Cloud', |
16426
|
|
|
|
|
|
|
'White Deer', |
16427
|
|
|
|
|
|
|
'White Earth', |
16428
|
|
|
|
|
|
|
'White Hall', |
16429
|
|
|
|
|
|
|
'White Haven', |
16430
|
|
|
|
|
|
|
'White Horse', |
16431
|
|
|
|
|
|
|
'White House', |
16432
|
|
|
|
|
|
|
'White House Station', |
16433
|
|
|
|
|
|
|
'White Island Shores', |
16434
|
|
|
|
|
|
|
'White Lake', |
16435
|
|
|
|
|
|
|
'White Marsh', |
16436
|
|
|
|
|
|
|
'White Meadow Lake', |
16437
|
|
|
|
|
|
|
'White Mesa', |
16438
|
|
|
|
|
|
|
'White Mountain', |
16439
|
|
|
|
|
|
|
'White Oak', |
16440
|
|
|
|
|
|
|
'White Oak East', |
16441
|
|
|
|
|
|
|
'White Oak West', |
16442
|
|
|
|
|
|
|
'White Pigeon', |
16443
|
|
|
|
|
|
|
'White Pine', |
16444
|
|
|
|
|
|
|
'White Plains', |
16445
|
|
|
|
|
|
|
'White River', |
16446
|
|
|
|
|
|
|
'White River Junction', |
16447
|
|
|
|
|
|
|
'White Rock', |
16448
|
|
|
|
|
|
|
'White Salmon', |
16449
|
|
|
|
|
|
|
'White Sands', |
16450
|
|
|
|
|
|
|
'White Settlement', |
16451
|
|
|
|
|
|
|
'White Shield', |
16452
|
|
|
|
|
|
|
'White Springs', |
16453
|
|
|
|
|
|
|
'White Stone', |
16454
|
|
|
|
|
|
|
'White Sulphur Springs', |
16455
|
|
|
|
|
|
|
'White Swan', |
16456
|
|
|
|
|
|
|
'Whiteash', |
16457
|
|
|
|
|
|
|
'Whiteface', |
16458
|
|
|
|
|
|
|
'Whitefield', |
16459
|
|
|
|
|
|
|
'Whitefish', |
16460
|
|
|
|
|
|
|
'Whitefish Bay', |
16461
|
|
|
|
|
|
|
'Whitehall', |
16462
|
|
|
|
|
|
|
'Whitehawk', |
16463
|
|
|
|
|
|
|
'Whitehorse', |
16464
|
|
|
|
|
|
|
'Whitehouse', |
16465
|
|
|
|
|
|
|
'Whiteland', |
16466
|
|
|
|
|
|
|
'Whitelaw', |
16467
|
|
|
|
|
|
|
'Whiteman AFB', |
16468
|
|
|
|
|
|
|
'Whitemarsh Island', |
16469
|
|
|
|
|
|
|
'Whiteriver', |
16470
|
|
|
|
|
|
|
'Whiterocks', |
16471
|
|
|
|
|
|
|
'Whitesboro', |
16472
|
|
|
|
|
|
|
'Whitesboro-Burleigh', |
16473
|
|
|
|
|
|
|
'Whitesburg', |
16474
|
|
|
|
|
|
|
'Whiteside', |
16475
|
|
|
|
|
|
|
'Whitestone Logging Camp', |
16476
|
|
|
|
|
|
|
'Whitestown', |
16477
|
|
|
|
|
|
|
'Whitesville', |
16478
|
|
|
|
|
|
|
'Whiteville', |
16479
|
|
|
|
|
|
|
'Whitewater', |
16480
|
|
|
|
|
|
|
'Whitewood', |
16481
|
|
|
|
|
|
|
'Whitewright', |
16482
|
|
|
|
|
|
|
'Whitfield', |
16483
|
|
|
|
|
|
|
'Whiting', |
16484
|
|
|
|
|
|
|
'Whitinsville', |
16485
|
|
|
|
|
|
|
'Whitley City', |
16486
|
|
|
|
|
|
|
'Whitmire', |
16487
|
|
|
|
|
|
|
'Whitmore Lake', |
16488
|
|
|
|
|
|
|
'Whitmore Village', |
16489
|
|
|
|
|
|
|
'Whitney', |
16490
|
|
|
|
|
|
|
'Whitney Point', |
16491
|
|
|
|
|
|
|
'Whitsett', |
16492
|
|
|
|
|
|
|
'Whittemore', |
16493
|
|
|
|
|
|
|
'Whitten', |
16494
|
|
|
|
|
|
|
'Whittier', |
16495
|
|
|
|
|
|
|
'Whittingham', |
16496
|
|
|
|
|
|
|
'Whitwell', |
16497
|
|
|
|
|
|
|
'Wibaux', |
16498
|
|
|
|
|
|
|
'Wichita', |
16499
|
|
|
|
|
|
|
'Wichita Falls', |
16500
|
|
|
|
|
|
|
'Wickenburg', |
16501
|
|
|
|
|
|
|
'Wickerham Manor-Fisher', |
16502
|
|
|
|
|
|
|
'Wickes', |
16503
|
|
|
|
|
|
|
'Wickett', |
16504
|
|
|
|
|
|
|
'Wickliffe', |
16505
|
|
|
|
|
|
|
'Widener', |
16506
|
|
|
|
|
|
|
'Wiederkehr Village', |
16507
|
|
|
|
|
|
|
'Wiggins', |
16508
|
|
|
|
|
|
|
'Wilber', |
16509
|
|
|
|
|
|
|
'Wilberforce', |
16510
|
|
|
|
|
|
|
'Wilbraham', |
16511
|
|
|
|
|
|
|
'Wilbur', |
16512
|
|
|
|
|
|
|
'Wilbur Park', |
16513
|
|
|
|
|
|
|
'Wilburton', |
16514
|
|
|
|
|
|
|
'Wilburton Number One', |
16515
|
|
|
|
|
|
|
'Wilburton Number Two', |
16516
|
|
|
|
|
|
|
'Wilcox', |
16517
|
|
|
|
|
|
|
'Wild Peach Village', |
16518
|
|
|
|
|
|
|
'Wild Rose', |
16519
|
|
|
|
|
|
|
'Wilder', |
16520
|
|
|
|
|
|
|
'Wildomar', |
16521
|
|
|
|
|
|
|
'Wildrose', |
16522
|
|
|
|
|
|
|
'Wildwood', |
16523
|
|
|
|
|
|
|
'Wildwood Crest', |
16524
|
|
|
|
|
|
|
'Wildwood Lake', |
16525
|
|
|
|
|
|
|
'Wiley', |
16526
|
|
|
|
|
|
|
'Wiley Ford', |
16527
|
|
|
|
|
|
|
'Wilhoit', |
16528
|
|
|
|
|
|
|
'Wilkerson', |
16529
|
|
|
|
|
|
|
'Wilkes-Barre', |
16530
|
|
|
|
|
|
|
'Wilkes-Barre Township', |
16531
|
|
|
|
|
|
|
'Wilkesboro', |
16532
|
|
|
|
|
|
|
'Wilkeson', |
16533
|
|
|
|
|
|
|
'Wilkesville', |
16534
|
|
|
|
|
|
|
'Wilkins Township', |
16535
|
|
|
|
|
|
|
'Wilkinsburg', |
16536
|
|
|
|
|
|
|
'Wilkinson', |
16537
|
|
|
|
|
|
|
'Wilkinson Heights', |
16538
|
|
|
|
|
|
|
'Willacoochee', |
16539
|
|
|
|
|
|
|
'Willamar', |
16540
|
|
|
|
|
|
|
'Willamina', |
16541
|
|
|
|
|
|
|
'Willard', |
16542
|
|
|
|
|
|
|
'Willards', |
16543
|
|
|
|
|
|
|
'Willcox', |
16544
|
|
|
|
|
|
|
'Willernie', |
16545
|
|
|
|
|
|
|
'Willey', |
16546
|
|
|
|
|
|
|
'Williams', |
16547
|
|
|
|
|
|
|
'Williams Bay', |
16548
|
|
|
|
|
|
|
'Williams Creek', |
16549
|
|
|
|
|
|
|
'Williamsburg', |
16550
|
|
|
|
|
|
|
'Williamsfield', |
16551
|
|
|
|
|
|
|
'Williamson', |
16552
|
|
|
|
|
|
|
'Williamsport', |
16553
|
|
|
|
|
|
|
'Williamston', |
16554
|
|
|
|
|
|
|
'Williamstown', |
16555
|
|
|
|
|
|
|
'Williamsville', |
16556
|
|
|
|
|
|
|
'Williford', |
16557
|
|
|
|
|
|
|
'Willimantic', |
16558
|
|
|
|
|
|
|
'Willington', |
16559
|
|
|
|
|
|
|
'Willis', |
16560
|
|
|
|
|
|
|
'Willisburg', |
16561
|
|
|
|
|
|
|
'Williston', |
16562
|
|
|
|
|
|
|
'Williston Highlands', |
16563
|
|
|
|
|
|
|
'Williston Park', |
16564
|
|
|
|
|
|
|
'Willisville', |
16565
|
|
|
|
|
|
|
'Willits', |
16566
|
|
|
|
|
|
|
'Willmar', |
16567
|
|
|
|
|
|
|
'Willoughby', |
16568
|
|
|
|
|
|
|
'Willoughby Hills', |
16569
|
|
|
|
|
|
|
'Willow', |
16570
|
|
|
|
|
|
|
'Willow City', |
16571
|
|
|
|
|
|
|
'Willow Creek', |
16572
|
|
|
|
|
|
|
'Willow Grove', |
16573
|
|
|
|
|
|
|
'Willow Hill', |
16574
|
|
|
|
|
|
|
'Willow Lake', |
16575
|
|
|
|
|
|
|
'Willow Oak', |
16576
|
|
|
|
|
|
|
'Willow Park', |
16577
|
|
|
|
|
|
|
'Willow River', |
16578
|
|
|
|
|
|
|
'Willow Springs', |
16579
|
|
|
|
|
|
|
'Willow Street', |
16580
|
|
|
|
|
|
|
'Willow Valley', |
16581
|
|
|
|
|
|
|
'Willowbrook', |
16582
|
|
|
|
|
|
|
'Willowick', |
16583
|
|
|
|
|
|
|
'Willows', |
16584
|
|
|
|
|
|
|
'Wills Point', |
16585
|
|
|
|
|
|
|
'Willshire', |
16586
|
|
|
|
|
|
|
'Wilmar', |
16587
|
|
|
|
|
|
|
'Wilmer', |
16588
|
|
|
|
|
|
|
'Wilmerding', |
16589
|
|
|
|
|
|
|
'Wilmette', |
16590
|
|
|
|
|
|
|
'Wilmington', |
16591
|
|
|
|
|
|
|
'Wilmington Island', |
16592
|
|
|
|
|
|
|
'Wilmington Manor', |
16593
|
|
|
|
|
|
|
'Wilmont', |
16594
|
|
|
|
|
|
|
'Wilmore', |
16595
|
|
|
|
|
|
|
'Wilmot', |
16596
|
|
|
|
|
|
|
'Wilsall', |
16597
|
|
|
|
|
|
|
'Wilsey', |
16598
|
|
|
|
|
|
|
'Wilson', |
16599
|
|
|
|
|
|
|
'Wilson City', |
16600
|
|
|
|
|
|
|
'Wilson Creek', |
16601
|
|
|
|
|
|
|
'Wilson\'s Mills', |
16602
|
|
|
|
|
|
|
'Wilson-Conococheague', |
16603
|
|
|
|
|
|
|
'Wilsonville', |
16604
|
|
|
|
|
|
|
'Wilton', |
16605
|
|
|
|
|
|
|
'Wilton Manors', |
16606
|
|
|
|
|
|
|
'Wimauma', |
16607
|
|
|
|
|
|
|
'Wimberley', |
16608
|
|
|
|
|
|
|
'Wimbledon', |
16609
|
|
|
|
|
|
|
'Winamac', |
16610
|
|
|
|
|
|
|
'Winchendon', |
16611
|
|
|
|
|
|
|
'Winchester', |
16612
|
|
|
|
|
|
|
'Winchester Bay', |
16613
|
|
|
|
|
|
|
'Wind Gap', |
16614
|
|
|
|
|
|
|
'Wind Lake', |
16615
|
|
|
|
|
|
|
'Wind Point', |
16616
|
|
|
|
|
|
|
'Windber', |
16617
|
|
|
|
|
|
|
'Windcrest', |
16618
|
|
|
|
|
|
|
'Windemere', |
16619
|
|
|
|
|
|
|
'Winder', |
16620
|
|
|
|
|
|
|
'Windermere', |
16621
|
|
|
|
|
|
|
'Windfall City', |
16622
|
|
|
|
|
|
|
'Windham', |
16623
|
|
|
|
|
|
|
'Windom', |
16624
|
|
|
|
|
|
|
'Window Rock', |
16625
|
|
|
|
|
|
|
'Windsor', |
16626
|
|
|
|
|
|
|
'Windsor Heights', |
16627
|
|
|
|
|
|
|
'Windsor Locks', |
16628
|
|
|
|
|
|
|
'Windthorst', |
16629
|
|
|
|
|
|
|
'Windy Hills', |
16630
|
|
|
|
|
|
|
'Winfall', |
16631
|
|
|
|
|
|
|
'Winfield', |
16632
|
|
|
|
|
|
|
'Wing', |
16633
|
|
|
|
|
|
|
'Wingate', |
16634
|
|
|
|
|
|
|
'Winger', |
16635
|
|
|
|
|
|
|
'Wingo', |
16636
|
|
|
|
|
|
|
'Winifred', |
16637
|
|
|
|
|
|
|
'Wink', |
16638
|
|
|
|
|
|
|
'Winkelman', |
16639
|
|
|
|
|
|
|
'Winlock', |
16640
|
|
|
|
|
|
|
'Winnebago', |
16641
|
|
|
|
|
|
|
'Winneconne', |
16642
|
|
|
|
|
|
|
'Winnemucca', |
16643
|
|
|
|
|
|
|
'Winner', |
16644
|
|
|
|
|
|
|
'Winnetka', |
16645
|
|
|
|
|
|
|
'Winnetoon', |
16646
|
|
|
|
|
|
|
'Winnett', |
16647
|
|
|
|
|
|
|
'Winnfield', |
16648
|
|
|
|
|
|
|
'Winnie', |
16649
|
|
|
|
|
|
|
'Winnsboro', |
16650
|
|
|
|
|
|
|
'Winnsboro Mills', |
16651
|
|
|
|
|
|
|
'Winona', |
16652
|
|
|
|
|
|
|
'Winona Lake', |
16653
|
|
|
|
|
|
|
'Winooski', |
16654
|
|
|
|
|
|
|
'Winside', |
16655
|
|
|
|
|
|
|
'Winslow', |
16656
|
|
|
|
|
|
|
'Winslow West', |
16657
|
|
|
|
|
|
|
'Winsted', |
16658
|
|
|
|
|
|
|
'Winston', |
16659
|
|
|
|
|
|
|
'Winston-Salem', |
16660
|
|
|
|
|
|
|
'Winstonville', |
16661
|
|
|
|
|
|
|
'Winter', |
16662
|
|
|
|
|
|
|
'Winter Beach', |
16663
|
|
|
|
|
|
|
'Winter Garden', |
16664
|
|
|
|
|
|
|
'Winter Gardens', |
16665
|
|
|
|
|
|
|
'Winter Haven', |
16666
|
|
|
|
|
|
|
'Winter Park', |
16667
|
|
|
|
|
|
|
'Winter Springs', |
16668
|
|
|
|
|
|
|
'Winterhaven', |
16669
|
|
|
|
|
|
|
'Winterport', |
16670
|
|
|
|
|
|
|
'Winters', |
16671
|
|
|
|
|
|
|
'Winterset', |
16672
|
|
|
|
|
|
|
'Winterstown', |
16673
|
|
|
|
|
|
|
'Wintersville', |
16674
|
|
|
|
|
|
|
'Winterville', |
16675
|
|
|
|
|
|
|
'Winthrop', |
16676
|
|
|
|
|
|
|
'Winthrop Harbor', |
16677
|
|
|
|
|
|
|
'Winton', |
16678
|
|
|
|
|
|
|
'Wiota', |
16679
|
|
|
|
|
|
|
'Wiscasset', |
16680
|
|
|
|
|
|
|
'Wisconsin Dells', |
16681
|
|
|
|
|
|
|
'Wisconsin Rapids', |
16682
|
|
|
|
|
|
|
'Wisdom', |
16683
|
|
|
|
|
|
|
'Wise', |
16684
|
|
|
|
|
|
|
'Wiseman', |
16685
|
|
|
|
|
|
|
'Wishek', |
16686
|
|
|
|
|
|
|
'Wishram', |
16687
|
|
|
|
|
|
|
'Wisner', |
16688
|
|
|
|
|
|
|
'Wister', |
16689
|
|
|
|
|
|
|
'Withamsville', |
16690
|
|
|
|
|
|
|
'Withee', |
16691
|
|
|
|
|
|
|
'Witt', |
16692
|
|
|
|
|
|
|
'Wittenberg', |
16693
|
|
|
|
|
|
|
'Wixom', |
16694
|
|
|
|
|
|
|
'Wixon Valley', |
16695
|
|
|
|
|
|
|
'Woburn', |
16696
|
|
|
|
|
|
|
'Woden', |
16697
|
|
|
|
|
|
|
'Wofford Heights', |
16698
|
|
|
|
|
|
|
'Wolbach', |
16699
|
|
|
|
|
|
|
'Wolcott', |
16700
|
|
|
|
|
|
|
'Wolcottville', |
16701
|
|
|
|
|
|
|
'Wolf Lake', |
16702
|
|
|
|
|
|
|
'Wolf Point', |
16703
|
|
|
|
|
|
|
'Wolf Trap', |
16704
|
|
|
|
|
|
|
'Wolfdale', |
16705
|
|
|
|
|
|
|
'Wolfe City', |
16706
|
|
|
|
|
|
|
'Wolfeboro', |
16707
|
|
|
|
|
|
|
'Wolfforth', |
16708
|
|
|
|
|
|
|
'Wolford', |
16709
|
|
|
|
|
|
|
'Wolsey', |
16710
|
|
|
|
|
|
|
'Wolverine', |
16711
|
|
|
|
|
|
|
'Wolverine Lake', |
16712
|
|
|
|
|
|
|
'Wolverton', |
16713
|
|
|
|
|
|
|
'Womelsdorf', |
16714
|
|
|
|
|
|
|
'Womelsdorf (Coalton)', |
16715
|
|
|
|
|
|
|
'Womens Bay', |
16716
|
|
|
|
|
|
|
'Wonder Lake', |
16717
|
|
|
|
|
|
|
'Wonewoc', |
16718
|
|
|
|
|
|
|
'Wood', |
16719
|
|
|
|
|
|
|
'Wood Dale', |
16720
|
|
|
|
|
|
|
'Wood Lake', |
16721
|
|
|
|
|
|
|
'Wood River', |
16722
|
|
|
|
|
|
|
'Wood Village', |
16723
|
|
|
|
|
|
|
'Wood-Ridge', |
16724
|
|
|
|
|
|
|
'Woodacre', |
16725
|
|
|
|
|
|
|
'Woodall', |
16726
|
|
|
|
|
|
|
'Woodbine', |
16727
|
|
|
|
|
|
|
'Woodbourne', |
16728
|
|
|
|
|
|
|
'Woodbourne-Hyde Park', |
16729
|
|
|
|
|
|
|
'Woodbranch', |
16730
|
|
|
|
|
|
|
'Woodbridge', |
16731
|
|
|
|
|
|
|
'Woodburn', |
16732
|
|
|
|
|
|
|
'Woodbury', |
16733
|
|
|
|
|
|
|
'Woodbury Center', |
16734
|
|
|
|
|
|
|
'Woodbury Heights', |
16735
|
|
|
|
|
|
|
'Woodcliff Lake', |
16736
|
|
|
|
|
|
|
'Woodcock', |
16737
|
|
|
|
|
|
|
'Woodcreek', |
16738
|
|
|
|
|
|
|
'Woodcrest', |
16739
|
|
|
|
|
|
|
'Woodfield', |
16740
|
|
|
|
|
|
|
'Woodfin', |
16741
|
|
|
|
|
|
|
'Woodford', |
16742
|
|
|
|
|
|
|
'Woodhaven', |
16743
|
|
|
|
|
|
|
'Woodhull', |
16744
|
|
|
|
|
|
|
'Woodinville', |
16745
|
|
|
|
|
|
|
'Woodlake', |
16746
|
|
|
|
|
|
|
'Woodland', |
16747
|
|
|
|
|
|
|
'Woodland Beach', |
16748
|
|
|
|
|
|
|
'Woodland Heights', |
16749
|
|
|
|
|
|
|
'Woodland Hills', |
16750
|
|
|
|
|
|
|
'Woodland Mills', |
16751
|
|
|
|
|
|
|
'Woodland Park', |
16752
|
|
|
|
|
|
|
'Woodlawn', |
16753
|
|
|
|
|
|
|
'Woodlawn Heights', |
16754
|
|
|
|
|
|
|
'Woodlawn Park', |
16755
|
|
|
|
|
|
|
'Woodlawn-Oakdale', |
16756
|
|
|
|
|
|
|
'Woodloch', |
16757
|
|
|
|
|
|
|
'Woodlyn', |
16758
|
|
|
|
|
|
|
'Woodlynne', |
16759
|
|
|
|
|
|
|
'Woodman', |
16760
|
|
|
|
|
|
|
'Woodmere', |
16761
|
|
|
|
|
|
|
'Woodmont', |
16762
|
|
|
|
|
|
|
'Woodmoor', |
16763
|
|
|
|
|
|
|
'Woodmore', |
16764
|
|
|
|
|
|
|
'Woodridge', |
16765
|
|
|
|
|
|
|
'Woodruff', |
16766
|
|
|
|
|
|
|
'Woods Bay', |
16767
|
|
|
|
|
|
|
'Woods Creek', |
16768
|
|
|
|
|
|
|
'Woods Cross', |
16769
|
|
|
|
|
|
|
'Woods Heights', |
16770
|
|
|
|
|
|
|
'Woods Hole', |
16771
|
|
|
|
|
|
|
'Woods Landing-Jelm', |
16772
|
|
|
|
|
|
|
'Woodsboro', |
16773
|
|
|
|
|
|
|
'Woodsburgh', |
16774
|
|
|
|
|
|
|
'Woodsfield', |
16775
|
|
|
|
|
|
|
'Woodside', |
16776
|
|
|
|
|
|
|
'Woodside East', |
16777
|
|
|
|
|
|
|
'Woodson', |
16778
|
|
|
|
|
|
|
'Woodson Terrace', |
16779
|
|
|
|
|
|
|
'Woodstock', |
16780
|
|
|
|
|
|
|
'Woodston', |
16781
|
|
|
|
|
|
|
'Woodstown', |
16782
|
|
|
|
|
|
|
'Woodsville', |
16783
|
|
|
|
|
|
|
'Woodville', |
16784
|
|
|
|
|
|
|
'Woodward', |
16785
|
|
|
|
|
|
|
'Woodway', |
16786
|
|
|
|
|
|
|
'Woodworth', |
16787
|
|
|
|
|
|
|
'Wooldridge', |
16788
|
|
|
|
|
|
|
'Woolsey', |
16789
|
|
|
|
|
|
|
'Woolstock', |
16790
|
|
|
|
|
|
|
'Woonsocket', |
16791
|
|
|
|
|
|
|
'Wooster', |
16792
|
|
|
|
|
|
|
'Worcester', |
16793
|
|
|
|
|
|
|
'Worden', |
16794
|
|
|
|
|
|
|
'Worland', |
16795
|
|
|
|
|
|
|
'Worley', |
16796
|
|
|
|
|
|
|
'Wormleysburg', |
16797
|
|
|
|
|
|
|
'Worth', |
16798
|
|
|
|
|
|
|
'Wortham', |
16799
|
|
|
|
|
|
|
'Worthing', |
16800
|
|
|
|
|
|
|
'Worthington', |
16801
|
|
|
|
|
|
|
'Worthington Hills', |
16802
|
|
|
|
|
|
|
'Worthington Springs', |
16803
|
|
|
|
|
|
|
'Worthville', |
16804
|
|
|
|
|
|
|
'Wounded Knee', |
16805
|
|
|
|
|
|
|
'Wrangell', |
16806
|
|
|
|
|
|
|
'Wray', |
16807
|
|
|
|
|
|
|
'Wren', |
16808
|
|
|
|
|
|
|
'Wrens', |
16809
|
|
|
|
|
|
|
'Wrenshall', |
16810
|
|
|
|
|
|
|
'Wright', |
16811
|
|
|
|
|
|
|
'Wright City', |
16812
|
|
|
|
|
|
|
'Wright-Patterson AFB', |
16813
|
|
|
|
|
|
|
'Wrightsboro', |
16814
|
|
|
|
|
|
|
'Wrightstown', |
16815
|
|
|
|
|
|
|
'Wrightsville', |
16816
|
|
|
|
|
|
|
'Wrightsville Beach', |
16817
|
|
|
|
|
|
|
'Wrightwood', |
16818
|
|
|
|
|
|
|
'Wurtland', |
16819
|
|
|
|
|
|
|
'Wurtsboro', |
16820
|
|
|
|
|
|
|
'Wyaconda', |
16821
|
|
|
|
|
|
|
'Wyalusing', |
16822
|
|
|
|
|
|
|
'Wyandanch', |
16823
|
|
|
|
|
|
|
'Wyandotte', |
16824
|
|
|
|
|
|
|
'Wyanet', |
16825
|
|
|
|
|
|
|
'Wyatt', |
16826
|
|
|
|
|
|
|
'Wyckoff', |
16827
|
|
|
|
|
|
|
'Wye', |
16828
|
|
|
|
|
|
|
'Wyeville', |
16829
|
|
|
|
|
|
|
'Wykoff', |
16830
|
|
|
|
|
|
|
'Wyldwood', |
16831
|
|
|
|
|
|
|
'Wylie', |
16832
|
|
|
|
|
|
|
'Wymore', |
16833
|
|
|
|
|
|
|
'Wynantskill', |
16834
|
|
|
|
|
|
|
'Wyncote', |
16835
|
|
|
|
|
|
|
'Wyndham', |
16836
|
|
|
|
|
|
|
'Wyndmere', |
16837
|
|
|
|
|
|
|
'Wyndmoor', |
16838
|
|
|
|
|
|
|
'Wynne', |
16839
|
|
|
|
|
|
|
'Wynnedale', |
16840
|
|
|
|
|
|
|
'Wynnewood', |
16841
|
|
|
|
|
|
|
'Wynona', |
16842
|
|
|
|
|
|
|
'Wynot', |
16843
|
|
|
|
|
|
|
'Wyocena', |
16844
|
|
|
|
|
|
|
'Wyola', |
16845
|
|
|
|
|
|
|
'Wyoming', |
16846
|
|
|
|
|
|
|
'Wyomissing', |
16847
|
|
|
|
|
|
|
'Wyomissing Hills', |
16848
|
|
|
|
|
|
|
'Wytheville', |
16849
|
|
|
|
|
|
|
'Xenia', |
16850
|
|
|
|
|
|
|
'Y', |
16851
|
|
|
|
|
|
|
'Y-O Ranch', |
16852
|
|
|
|
|
|
|
'Yabucoa', |
16853
|
|
|
|
|
|
|
'Yachats', |
16854
|
|
|
|
|
|
|
'Yacolt', |
16855
|
|
|
|
|
|
|
'Yadkinville', |
16856
|
|
|
|
|
|
|
'Yah-ta-hey', |
16857
|
|
|
|
|
|
|
'Yakima', |
16858
|
|
|
|
|
|
|
'Yakutat', |
16859
|
|
|
|
|
|
|
'Yalaha', |
16860
|
|
|
|
|
|
|
'Yale', |
16861
|
|
|
|
|
|
|
'Yamhill', |
16862
|
|
|
|
|
|
|
'Yampa', |
16863
|
|
|
|
|
|
|
'Yanceyville', |
16864
|
|
|
|
|
|
|
'Yankee Lake', |
16865
|
|
|
|
|
|
|
'Yankeetown', |
16866
|
|
|
|
|
|
|
'Yankton', |
16867
|
|
|
|
|
|
|
'Yantis', |
16868
|
|
|
|
|
|
|
'Yaphank', |
16869
|
|
|
|
|
|
|
'Yardley', |
16870
|
|
|
|
|
|
|
'Yardville-Groveville', |
16871
|
|
|
|
|
|
|
'Yarmouth', |
16872
|
|
|
|
|
|
|
'Yarmouth Port', |
16873
|
|
|
|
|
|
|
'Yarnell', |
16874
|
|
|
|
|
|
|
'Yarrow Point', |
16875
|
|
|
|
|
|
|
'Yates Center', |
16876
|
|
|
|
|
|
|
'Yates City', |
16877
|
|
|
|
|
|
|
'Yatesville', |
16878
|
|
|
|
|
|
|
'Yauco', |
16879
|
|
|
|
|
|
|
'Yaurel', |
16880
|
|
|
|
|
|
|
'Yazoo City', |
16881
|
|
|
|
|
|
|
'Yeadon', |
16882
|
|
|
|
|
|
|
'Yeager', |
16883
|
|
|
|
|
|
|
'Yeagertown', |
16884
|
|
|
|
|
|
|
'Yeehaw Junction', |
16885
|
|
|
|
|
|
|
'Yellow Bluff', |
16886
|
|
|
|
|
|
|
'Yellow Springs', |
16887
|
|
|
|
|
|
|
'Yellville', |
16888
|
|
|
|
|
|
|
'Yelm', |
16889
|
|
|
|
|
|
|
'Yemassee', |
16890
|
|
|
|
|
|
|
'Yeoman', |
16891
|
|
|
|
|
|
|
'Yerington', |
16892
|
|
|
|
|
|
|
'Yetter', |
16893
|
|
|
|
|
|
|
'Yoakum', |
16894
|
|
|
|
|
|
|
'Yoder', |
16895
|
|
|
|
|
|
|
'Yoe', |
16896
|
|
|
|
|
|
|
'Yoncalla', |
16897
|
|
|
|
|
|
|
'Yonkers', |
16898
|
|
|
|
|
|
|
'Yorba Linda', |
16899
|
|
|
|
|
|
|
'York', |
16900
|
|
|
|
|
|
|
'York Harbor', |
16901
|
|
|
|
|
|
|
'York Haven', |
16902
|
|
|
|
|
|
|
'York Springs', |
16903
|
|
|
|
|
|
|
'Yorkana', |
16904
|
|
|
|
|
|
|
'Yorketown', |
16905
|
|
|
|
|
|
|
'Yorkshire', |
16906
|
|
|
|
|
|
|
'Yorktown', |
16907
|
|
|
|
|
|
|
'Yorktown Heights', |
16908
|
|
|
|
|
|
|
'Yorkville', |
16909
|
|
|
|
|
|
|
'Yosemite Lakes', |
16910
|
|
|
|
|
|
|
'Yosemite Valley', |
16911
|
|
|
|
|
|
|
'Young', |
16912
|
|
|
|
|
|
|
'Young Harris', |
16913
|
|
|
|
|
|
|
'Youngstown', |
16914
|
|
|
|
|
|
|
'Youngsville', |
16915
|
|
|
|
|
|
|
'Youngtown', |
16916
|
|
|
|
|
|
|
'Youngwood', |
16917
|
|
|
|
|
|
|
'Yountville', |
16918
|
|
|
|
|
|
|
'Ypsilanti', |
16919
|
|
|
|
|
|
|
'Yreka', |
16920
|
|
|
|
|
|
|
'Yuba', |
16921
|
|
|
|
|
|
|
'Yuba City', |
16922
|
|
|
|
|
|
|
'Yucaipa', |
16923
|
|
|
|
|
|
|
'Yucca Valley', |
16924
|
|
|
|
|
|
|
'Yukon', |
16925
|
|
|
|
|
|
|
'Yulee', |
16926
|
|
|
|
|
|
|
'Yuma', |
16927
|
|
|
|
|
|
|
'Yutan', |
16928
|
|
|
|
|
|
|
'Yznaga', |
16929
|
|
|
|
|
|
|
'Zachary', |
16930
|
|
|
|
|
|
|
'Zaleski', |
16931
|
|
|
|
|
|
|
'Zalma', |
16932
|
|
|
|
|
|
|
'Zanesfield', |
16933
|
|
|
|
|
|
|
'Zanesville', |
16934
|
|
|
|
|
|
|
'Zap', |
16935
|
|
|
|
|
|
|
'Zapata', |
16936
|
|
|
|
|
|
|
'Zapata Ranch', |
16937
|
|
|
|
|
|
|
'Zavalla', |
16938
|
|
|
|
|
|
|
'Zearing', |
16939
|
|
|
|
|
|
|
'Zeb', |
16940
|
|
|
|
|
|
|
'Zebulon', |
16941
|
|
|
|
|
|
|
'Zeeland', |
16942
|
|
|
|
|
|
|
'Zeigler', |
16943
|
|
|
|
|
|
|
'Zelienople', |
16944
|
|
|
|
|
|
|
'Zellwood', |
16945
|
|
|
|
|
|
|
'Zemple', |
16946
|
|
|
|
|
|
|
'Zena', |
16947
|
|
|
|
|
|
|
'Zenda', |
16948
|
|
|
|
|
|
|
'Zephyr Cove-Round Hill Village', |
16949
|
|
|
|
|
|
|
'Zephyrhills', |
16950
|
|
|
|
|
|
|
'Zephyrhills North', |
16951
|
|
|
|
|
|
|
'Zephyrhills South', |
16952
|
|
|
|
|
|
|
'Zephyrhills West', |
16953
|
|
|
|
|
|
|
'Zia Pueblo', |
16954
|
|
|
|
|
|
|
'Zillah', |
16955
|
|
|
|
|
|
|
'Zilwaukee', |
16956
|
|
|
|
|
|
|
'Zimmerman', |
16957
|
|
|
|
|
|
|
'Zinc', |
16958
|
|
|
|
|
|
|
'Zion', |
16959
|
|
|
|
|
|
|
'Zionsville', |
16960
|
|
|
|
|
|
|
'Zoar', |
16961
|
|
|
|
|
|
|
'Zolfo Springs', |
16962
|
|
|
|
|
|
|
'Zuehl', |
16963
|
|
|
|
|
|
|
'Zumbro Falls', |
16964
|
|
|
|
|
|
|
'Zumbrota', |
16965
|
|
|
|
|
|
|
'Zuni Pueblo', |
16966
|
|
|
|
|
|
|
'Zurich', |
16967
|
|
|
|
|
|
|
'Zwingle', |
16968
|
|
|
|
|
|
|
'Zwolle' |
16969
|
|
|
|
|
|
|
]}; |
16970
|
|
|
|
|
|
|
|
16971
|
|
|
|
|
|
|
sub validate { |
16972
|
|
|
|
|
|
|
|
16973
|
10
|
|
|
10
|
0
|
19
|
my ($self, $proto, $field, $param) = @_; |
16974
|
|
|
|
|
|
|
|
16975
|
10
|
50
|
33
|
|
|
61
|
if (defined $field->{city} && defined $param) { |
16976
|
|
|
|
|
|
|
|
16977
|
10
|
50
|
33
|
|
|
49
|
if ($field->{required} || $param) { |
16978
|
|
|
|
|
|
|
|
16979
|
10
|
|
|
|
|
36
|
my $cre = $self->regexp; |
16980
|
10
|
100
|
|
1
|
|
19841
|
$self->error($proto, $field) unless $param =~ /$cre/i; |
|
1
|
|
|
|
|
15
|
|
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
21
|
|
16981
|
|
|
|
|
|
|
|
16982
|
|
|
|
|
|
|
} |
16983
|
|
|
|
|
|
|
|
16984
|
|
|
|
|
|
|
} |
16985
|
|
|
|
|
|
|
|
16986
|
10
|
|
|
|
|
3499
|
return $self; |
16987
|
|
|
|
|
|
|
|
16988
|
|
|
|
|
|
|
} |
16989
|
|
|
|
|
|
|
|
16990
|
|
|
|
|
|
|
1; |
16991
|
|
|
|
|
|
|
|
16992
|
|
|
|
|
|
|
__END__ |