zip-code-info 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
data/Gemfile ADDED
@@ -0,0 +1,14 @@
1
+ source "http://rubygems.org"
2
+ # Add dependencies required to use your gem here.
3
+ # Example:
4
+ # gem "activesupport", ">= 2.3.5"
5
+
6
+ # Add dependencies to develop your gem here.
7
+ # Include everything needed to run rake, tests, features, etc.
8
+ group :development do
9
+ gem "bundler", "~> 1.0.0"
10
+ gem "jeweler", "~> 1.5.2"
11
+ gem "rspec", "~> 2.3.0"
12
+ gem "rcov", ">= 0"
13
+ gem "nokogiri"
14
+ end
data/Gemfile.lock ADDED
@@ -0,0 +1,30 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ diff-lcs (1.1.2)
5
+ git (1.2.5)
6
+ jeweler (1.5.2)
7
+ bundler (~> 1.0.0)
8
+ git (>= 1.2.5)
9
+ rake
10
+ nokogiri (1.4.4)
11
+ rake (0.8.7)
12
+ rcov (0.9.9)
13
+ rspec (2.3.0)
14
+ rspec-core (~> 2.3.0)
15
+ rspec-expectations (~> 2.3.0)
16
+ rspec-mocks (~> 2.3.0)
17
+ rspec-core (2.3.1)
18
+ rspec-expectations (2.3.0)
19
+ diff-lcs (~> 1.1.2)
20
+ rspec-mocks (2.3.0)
21
+
22
+ PLATFORMS
23
+ ruby
24
+
25
+ DEPENDENCIES
26
+ bundler (~> 1.0.0)
27
+ jeweler (~> 1.5.2)
28
+ nokogiri
29
+ rcov
30
+ rspec (~> 2.3.0)
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2011 Monica Olinescu
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,47 @@
1
+ = zip-code-info
2
+
3
+ This gem returns the state and city of the Sectional Center Facility for a given zip code. It does not use an external service.
4
+
5
+ The zip code data has been taken from http://en.wikipedia.org/wiki/ZIP_code_prefixes
6
+
7
+ == Usage
8
+
9
+ In your Gemfile
10
+
11
+ gem zip-code-info
12
+
13
+ The code runs out of a Singleton class. Right now you can call these two methods.
14
+
15
+ ZipCodeInfo.instance.state_for "99163"
16
+ #=> WA
17
+
18
+ ZipCodeInfo.instance.scf_city_for "99163"
19
+ #=> Spokane
20
+
21
+ == Limitations
22
+
23
+ * The city returned is the city where the USPS Sectional Center Facility (SCF) is located.
24
+ * Sometimes the state that a zip code is bound to for USPS is different from the actual state the zip code is in. There are plans to provide both states.
25
+
26
+
27
+
28
+ == TODO
29
+
30
+ * Ability to return the timezone information from a zip code.
31
+ * Provide the USPS state as well as the actual state (see limitations).
32
+
33
+ == Contributing to zip-code-info
34
+
35
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
36
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
37
+ * Fork the project
38
+ * Start a feature/bugfix branch
39
+ * Commit and push until you are happy with your contribution
40
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
41
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
42
+
43
+ == Copyright
44
+
45
+ Copyright (c) 2011 Monica Olinescu. See LICENSE.txt for
46
+ further details.
47
+
data/Rakefile ADDED
@@ -0,0 +1,50 @@
1
+ require 'rubygems'
2
+ require 'bundler'
3
+ begin
4
+ Bundler.setup(:default, :development)
5
+ rescue Bundler::BundlerError => e
6
+ $stderr.puts e.message
7
+ $stderr.puts "Run `bundle install` to install missing gems"
8
+ exit e.status_code
9
+ end
10
+ require 'rake'
11
+
12
+ require 'jeweler'
13
+ Jeweler::Tasks.new do |gem|
14
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
15
+ gem.name = "zip-code-info"
16
+ gem.homepage = "http://github.com/monicao/zip-code-info"
17
+ gem.license = "MIT"
18
+ gem.summary = %Q{Looks up the state and city of the Sectional Center Facility for a given zip code.}
19
+ gem.description = %Q{The data has been collected from wikipedia and stored in a yml file. This gem does not use an external service.}
20
+ gem.email = "monica.olinescu@gmail.com"
21
+ gem.authors = ["Monica Olinescu"]
22
+ # Include your dependencies below. Runtime dependencies are required when using your gem,
23
+ # and development dependencies are only needed for development (ie running rake tasks, tests, etc)
24
+ # gem.add_runtime_dependency 'jabber4r', '> 0.1'
25
+ # gem.add_development_dependency 'rspec', '> 1.2.3'
26
+ end
27
+ Jeweler::RubygemsDotOrgTasks.new
28
+
29
+ require 'rspec/core'
30
+ require 'rspec/core/rake_task'
31
+ RSpec::Core::RakeTask.new(:spec) do |spec|
32
+ spec.pattern = FileList['spec/**/*_spec.rb']
33
+ end
34
+
35
+ RSpec::Core::RakeTask.new(:rcov) do |spec|
36
+ spec.pattern = 'spec/**/*_spec.rb'
37
+ spec.rcov = true
38
+ end
39
+
40
+ task :default => :spec
41
+
42
+ require 'rake/rdoctask'
43
+ Rake::RDocTask.new do |rdoc|
44
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
45
+
46
+ rdoc.rdoc_dir = 'rdoc'
47
+ rdoc.title = "zip-code-info #{version}"
48
+ rdoc.rdoc_files.include('README*')
49
+ rdoc.rdoc_files.include('lib/**/*.rb')
50
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.0
data/data/data.yml ADDED
@@ -0,0 +1,2794 @@
1
+ ---
2
+ "005":
3
+ :state: NY
4
+ :city: Mid-Island
5
+ "006":
6
+ :state: PR
7
+ :city: San Juan
8
+ "007":
9
+ :state: PR
10
+ :city: San Juan
11
+ 008:
12
+ :state: VI
13
+ :city: Virgin Islands
14
+ 009:
15
+ :state: PR
16
+ :city: San Juan
17
+ "010":
18
+ :state: MA
19
+ :city: Springfield
20
+ "011":
21
+ :state: MA
22
+ :city: Springfield
23
+ "012":
24
+ :state: MA
25
+ :city: Pittsfield
26
+ "013":
27
+ :state: MA
28
+ :city: Springfield
29
+ "014":
30
+ :state: MA
31
+ :city: Worcester
32
+ "015":
33
+ :state: MA
34
+ :city: Worcester
35
+ "016":
36
+ :state: MA
37
+ :city: Worcester
38
+ "017":
39
+ :state: MA
40
+ :city: Worcester
41
+ 018:
42
+ :state: MA
43
+ :city: Mdl'sex-Essex
44
+ 019:
45
+ :state: MA
46
+ :city: Mdl'sex-Essex
47
+ "020":
48
+ :state: MA
49
+ :city: Brockton
50
+ "021":
51
+ :state: MA
52
+ :city: Boston
53
+ "022":
54
+ :state: MA
55
+ :city: Boston
56
+ "023":
57
+ :state: MA
58
+ :city: Brockton
59
+ "024":
60
+ :state: MA
61
+ :city: Boston
62
+ "025":
63
+ :state: MA
64
+ :city: Cape Cod
65
+ "026":
66
+ :state: MA
67
+ :city: Cape Cod
68
+ "027":
69
+ :state: MA
70
+ :city: New Bedford
71
+ 028:
72
+ :state: RI
73
+ :city: Providence
74
+ 029:
75
+ :state: RI
76
+ :city: Providence
77
+ "030":
78
+ :state: NH
79
+ :city: Manchester
80
+ "031":
81
+ :state: NH
82
+ :city: Manchester
83
+ "032":
84
+ :state: NH
85
+ :city: Manchester
86
+ "033":
87
+ :state: NH
88
+ :city: Concord
89
+ "034":
90
+ :state: NH
91
+ :city: Manchester
92
+ "035":
93
+ :state: NH
94
+ :city: W.R. Jctn. (VT)
95
+ "036":
96
+ :state: NH
97
+ :city: W.R. Jctn. (VT)
98
+ "037":
99
+ :state: NH
100
+ :city: W.R. Jctn. (VT)
101
+ 038:
102
+ :state: NH
103
+ :city: Portsmouth
104
+ 039:
105
+ :state: ME
106
+ :city: Portsm'th (NH)
107
+ "040":
108
+ :state: ME
109
+ :city: Portland
110
+ "041":
111
+ :state: ME
112
+ :city: Portland
113
+ "042":
114
+ :state: ME
115
+ :city: Portland
116
+ "043":
117
+ :state: ME
118
+ :city: Portland
119
+ "044":
120
+ :state: ME
121
+ :city: Bangor
122
+ "045":
123
+ :state: ME
124
+ :city: Portland
125
+ "046":
126
+ :state: ME
127
+ :city: Bangor
128
+ "047":
129
+ :state: ME
130
+ :city: Bangor
131
+ 048:
132
+ :state: ME
133
+ :city: Portland
134
+ 049:
135
+ :state: ME
136
+ :city: Bangor
137
+ "050":
138
+ :state: VT
139
+ :city: W.R. Junction
140
+ "051":
141
+ :state: VT
142
+ :city: W.R. Junction
143
+ "052":
144
+ :state: VT
145
+ :city: W.R. Junction
146
+ "053":
147
+ :state: VT
148
+ :city: W.R. Junction
149
+ "054":
150
+ :state: VT
151
+ :city: Burlington
152
+ "055":
153
+ :state: MA
154
+ :city: Mdl'sex-Essex
155
+ "056":
156
+ :state: VT
157
+ :city: Burlington
158
+ "057":
159
+ :state: VT
160
+ :city: W.R. Junction
161
+ 058:
162
+ :state: VT
163
+ :city: W.R. Junction
164
+ 059:
165
+ :state: VT
166
+ :city: W.R. Junction
167
+ "060":
168
+ :state: CT
169
+ :city: Hartford
170
+ "061":
171
+ :state: CT
172
+ :city: Hartford
173
+ "062":
174
+ :state: CT
175
+ :city: Hartford
176
+ "063":
177
+ :state: CT
178
+ :city: Southern Area
179
+ "064":
180
+ :state: CT
181
+ :city: Southern Area
182
+ "065":
183
+ :state: CT
184
+ :city: New Haven
185
+ "066":
186
+ :state: CT
187
+ :city: Bridgeport
188
+ "067":
189
+ :state: CT
190
+ :city: Waterbury
191
+ 068:
192
+ :state: CT
193
+ :city: Stamford
194
+ 069:
195
+ :state: CT
196
+ :city: Stamford
197
+ "070":
198
+ :state: NJ
199
+ :city: Newark
200
+ "071":
201
+ :state: NJ
202
+ :city: Newark
203
+ "072":
204
+ :state: NJ
205
+ :city: Elizabeth
206
+ "073":
207
+ :state: NJ
208
+ :city: Jersey City
209
+ "074":
210
+ :state: NJ
211
+ :city: Paterson
212
+ "075":
213
+ :state: NJ
214
+ :city: Paterson
215
+ "076":
216
+ :state: NJ
217
+ :city: Hackensack
218
+ "077":
219
+ :state: NJ
220
+ :city: Monmouth
221
+ 078:
222
+ :state: NJ
223
+ :city: Western Area
224
+ 079:
225
+ :state: NJ
226
+ :city: Western Area
227
+ 080:
228
+ :state: NJ
229
+ :city: Southern Area
230
+ 081:
231
+ :state: NJ
232
+ :city: Camden
233
+ 082:
234
+ :state: NJ
235
+ :city: Southern Area
236
+ 083:
237
+ :state: NJ
238
+ :city: Southern Area
239
+ 084:
240
+ :state: NJ
241
+ :city: Atlantic City
242
+ 085:
243
+ :state: NJ
244
+ :city: Trenton
245
+ 086:
246
+ :state: NJ
247
+ :city: Trenton
248
+ 087:
249
+ :state: NJ
250
+ :city: Monmouth
251
+ 088:
252
+ :state: NJ
253
+ :city: Kilmer
254
+ 089:
255
+ :state: NJ
256
+ :city: New Brunswick
257
+ 090:
258
+ :state: AE
259
+ :city: Military
260
+ 091:
261
+ :state: AE
262
+ :city: Military
263
+ 092:
264
+ :state: AE
265
+ :city: Military
266
+ 093:
267
+ :state: AE
268
+ :city: Military
269
+ 094:
270
+ :state: AE
271
+ :city: Military
272
+ 095:
273
+ :state: AE
274
+ :city: Military
275
+ 096:
276
+ :state: AE
277
+ :city: Military
278
+ 097:
279
+ :state: AE
280
+ :city: Military
281
+ 098:
282
+ :state: AE
283
+ :city: Military
284
+ "100":
285
+ :state: NY
286
+ :city: New York City
287
+ "101":
288
+ :state: NY
289
+ :city: New York City
290
+ "102":
291
+ :state: NY
292
+ :city: New York City
293
+ "103":
294
+ :state: NY
295
+ :city: Staten Island
296
+ "104":
297
+ :state: NY
298
+ :city: The Bronx
299
+ "105":
300
+ :state: NY
301
+ :city: Westchester
302
+ "106":
303
+ :state: NY
304
+ :city: White Plains
305
+ "107":
306
+ :state: NY
307
+ :city: Yonkers
308
+ "108":
309
+ :state: NY
310
+ :city: New Rochelle
311
+ "109":
312
+ :state: NY
313
+ :city: Rockland
314
+ "110":
315
+ :state: NY
316
+ :city: Queens &West Nassau
317
+ "111":
318
+ :state: NY
319
+ :city: Long Island City
320
+ "112":
321
+ :state: NY
322
+ :city: Brooklyn
323
+ "113":
324
+ :state: NY
325
+ :city: Flushing
326
+ "114":
327
+ :state: NY
328
+ :city: Jamaica
329
+ "115":
330
+ :state: NY
331
+ :city: West Nassau
332
+ "116":
333
+ :state: NY
334
+ :city: Far Rockaway
335
+ "117":
336
+ :state: NY
337
+ :city: Mid-Island
338
+ "118":
339
+ :state: NY
340
+ :city: Hicksville
341
+ "119":
342
+ :state: NY
343
+ :city: Mid-Island
344
+ "120":
345
+ :state: NY
346
+ :city: Albany
347
+ "121":
348
+ :state: NY
349
+ :city: Albany
350
+ "122":
351
+ :state: NY
352
+ :city: Albany
353
+ "123":
354
+ :state: NY
355
+ :city: Schenectady
356
+ "124":
357
+ :state: NY
358
+ :city: Mid-Hudson
359
+ "125":
360
+ :state: NY
361
+ :city: Mid-Hudson
362
+ "126":
363
+ :state: NY
364
+ :city: Poughkeepsie
365
+ "127":
366
+ :state: NY
367
+ :city: Mid-Hudson
368
+ "128":
369
+ :state: NY
370
+ :city: Glens Falls
371
+ "129":
372
+ :state: NY
373
+ :city: Plattsburgh
374
+ "130":
375
+ :state: NY
376
+ :city: Syracuse
377
+ "131":
378
+ :state: NY
379
+ :city: Syracuse
380
+ "132":
381
+ :state: NY
382
+ :city: Syracuse
383
+ "133":
384
+ :state: NY
385
+ :city: Utica
386
+ "134":
387
+ :state: NY
388
+ :city: Utica
389
+ "135":
390
+ :state: NY
391
+ :city: Utica
392
+ "136":
393
+ :state: NY
394
+ :city: Watertown
395
+ "137":
396
+ :state: NY
397
+ :city: Binghamton
398
+ "138":
399
+ :state: NY
400
+ :city: Binghamton
401
+ "139":
402
+ :state: NY
403
+ :city: Binghamton
404
+ "140":
405
+ :state: NY
406
+ :city: Buffalo
407
+ "141":
408
+ :state: NY
409
+ :city: Buffalo
410
+ "142":
411
+ :state: NY
412
+ :city: Buffalo
413
+ "143":
414
+ :state: NY
415
+ :city: Niagara Falls
416
+ "144":
417
+ :state: NY
418
+ :city: Rochester
419
+ "145":
420
+ :state: NY
421
+ :city: Rochester
422
+ "146":
423
+ :state: NY
424
+ :city: Rochester
425
+ "147":
426
+ :state: NY
427
+ :city: Jamestown
428
+ "148":
429
+ :state: NY
430
+ :city: Elmira
431
+ "149":
432
+ :state: NY
433
+ :city: Elmira
434
+ "150":
435
+ :state: PA
436
+ :city: Pittsburgh
437
+ "151":
438
+ :state: PA
439
+ :city: Pittsburgh
440
+ "152":
441
+ :state: PA
442
+ :city: Pittsburgh
443
+ "153":
444
+ :state: PA
445
+ :city: Pittsburgh
446
+ "154":
447
+ :state: PA
448
+ :city: Pittsburgh
449
+ "155":
450
+ :state: PA
451
+ :city: Johnstown
452
+ "156":
453
+ :state: PA
454
+ :city: Greensburg
455
+ "157":
456
+ :state: PA
457
+ :city: Johnstown
458
+ "158":
459
+ :state: PA
460
+ :city: Du Bois
461
+ "159":
462
+ :state: PA
463
+ :city: Johnstown
464
+ "160":
465
+ :state: PA
466
+ :city: New Castle
467
+ "161":
468
+ :state: PA
469
+ :city: New Castle
470
+ "162":
471
+ :state: PA
472
+ :city: New Castle
473
+ "163":
474
+ :state: PA
475
+ :city: Oil City
476
+ "164":
477
+ :state: PA
478
+ :city: Erie
479
+ "165":
480
+ :state: PA
481
+ :city: Erie
482
+ "166":
483
+ :state: PA
484
+ :city: Altoona
485
+ "167":
486
+ :state: PA
487
+ :city: Bradford
488
+ "168":
489
+ :state: PA
490
+ :city: Altoona
491
+ "169":
492
+ :state: PA
493
+ :city: Williamsport
494
+ "170":
495
+ :state: PA
496
+ :city: Harrisburg
497
+ "171":
498
+ :state: PA
499
+ :city: Harrisburg
500
+ "172":
501
+ :state: PA
502
+ :city: Harrisburg
503
+ "173":
504
+ :state: PA
505
+ :city: Lancaster
506
+ "174":
507
+ :state: PA
508
+ :city: York
509
+ "175":
510
+ :state: PA
511
+ :city: Lancaster
512
+ "176":
513
+ :state: PA
514
+ :city: Lancaster
515
+ "177":
516
+ :state: PA
517
+ :city: Williamsport
518
+ "178":
519
+ :state: PA
520
+ :city: Harrisburg
521
+ "179":
522
+ :state: PA
523
+ :city: Reading
524
+ "180":
525
+ :state: PA
526
+ :city: Lehigh Valley
527
+ "181":
528
+ :state: PA
529
+ :city: Allentown
530
+ "182":
531
+ :state: PA
532
+ :city: Wilkes-Barre
533
+ "183":
534
+ :state: PA
535
+ :city: Lehigh Valley
536
+ "184":
537
+ :state: PA
538
+ :city: Scranton
539
+ "185":
540
+ :state: PA
541
+ :city: Scranton
542
+ "186":
543
+ :state: PA
544
+ :city: Wilkes-Barre
545
+ "187":
546
+ :state: PA
547
+ :city: Wilkes-Barre
548
+ "188":
549
+ :state: PA
550
+ :city: Scranton
551
+ "189":
552
+ :state: PA
553
+ :city: Southeast Area
554
+ "190":
555
+ :state: PA
556
+ :city: Philadelphia
557
+ "191":
558
+ :state: PA
559
+ :city: Philadelphia
560
+ "192":
561
+ :state: PA
562
+ :city: Philadelphia
563
+ "193":
564
+ :state: PA
565
+ :city: Southeast Area
566
+ "194":
567
+ :state: PA
568
+ :city: Southeast Area
569
+ "195":
570
+ :state: PA
571
+ :city: Reading
572
+ "196":
573
+ :state: PA
574
+ :city: Reading
575
+ "197":
576
+ :state: DE
577
+ :city: Wilmington
578
+ "198":
579
+ :state: DE
580
+ :city: Wilmington
581
+ "199":
582
+ :state: DE
583
+ :city: Wilmington
584
+ "200":
585
+ :state: DC
586
+ :city: Washington
587
+ "201":
588
+ :state: VA
589
+ :city: Dulles
590
+ "202":
591
+ :state: DC
592
+ :city: Washington
593
+ "203":
594
+ :state: DC
595
+ :city: Washington
596
+ "204":
597
+ :state: DC
598
+ :city: Washington
599
+ "205":
600
+ :state: DC
601
+ :city: Washington
602
+ "206":
603
+ :state: MD
604
+ :city: Southern Area
605
+ "207":
606
+ :state: MD
607
+ :city: Southern Area
608
+ "208":
609
+ :state: MD
610
+ :city: Suburban Area
611
+ "209":
612
+ :state: MD
613
+ :city: Silver Spring
614
+ "210":
615
+ :state: MD
616
+ :city: Linthicum
617
+ "211":
618
+ :state: MD
619
+ :city: Linthicum
620
+ "212":
621
+ :state: MD
622
+ :city: Baltimore
623
+ "214":
624
+ :state: MD
625
+ :city: Annapolis
626
+ "215":
627
+ :state: MD
628
+ :city: Cumberland
629
+ "216":
630
+ :state: MD
631
+ :city: Eastern Shore
632
+ "217":
633
+ :state: MD
634
+ :city: Frederick
635
+ "218":
636
+ :state: MD
637
+ :city: Salisbury
638
+ "219":
639
+ :state: MD
640
+ :city: Baltimore
641
+ "220":
642
+ :state: VA
643
+ :city: Northern Area
644
+ "221":
645
+ :state: VA
646
+ :city: Northern Area
647
+ "222":
648
+ :state: VA
649
+ :city: Arlington
650
+ "223":
651
+ :state: VA
652
+ :city: Alexandria
653
+ "224":
654
+ :state: VA
655
+ :city: Fredericksburg
656
+ "225":
657
+ :state: VA
658
+ :city: Fredericksburg
659
+ "226":
660
+ :state: VA
661
+ :city: Winchester
662
+ "227":
663
+ :state: VA
664
+ :city: Culpeper
665
+ "228":
666
+ :state: VA
667
+ :city: Charlottesville
668
+ "229":
669
+ :state: VA
670
+ :city: Charlottesville
671
+ "230":
672
+ :state: VA
673
+ :city: Richmond
674
+ "231":
675
+ :state: VA
676
+ :city: Richmond
677
+ "232":
678
+ :state: VA
679
+ :city: Richmond
680
+ "233":
681
+ :state: VA
682
+ :city: Norfolk
683
+ "234":
684
+ :state: VA
685
+ :city: Norfolk
686
+ "235":
687
+ :state: VA
688
+ :city: Norfolk
689
+ "236":
690
+ :state: VA
691
+ :city: Norfolk
692
+ "237":
693
+ :state: VA
694
+ :city: Portsmouth
695
+ "238":
696
+ :state: VA
697
+ :city: Richmond
698
+ "239":
699
+ :state: VA
700
+ :city: Farmville
701
+ "240":
702
+ :state: VA
703
+ :city: Roanoke
704
+ "241":
705
+ :state: VA
706
+ :city: Roanoke
707
+ "242":
708
+ :state: VA
709
+ :city: Bristol
710
+ "243":
711
+ :state: VA
712
+ :city: Roanoke
713
+ "244":
714
+ :state: VA
715
+ :city: Charlottesville
716
+ "245":
717
+ :state: VA
718
+ :city: Lynchburg
719
+ "246":
720
+ :state: VA
721
+ :city: Bluefield (WV)
722
+ "247":
723
+ :state: WV
724
+ :city: Bluefield
725
+ "248":
726
+ :state: WV
727
+ :city: Bluefield
728
+ "249":
729
+ :state: WV
730
+ :city: Lewisburg
731
+ "250":
732
+ :state: WV
733
+ :city: Charleston
734
+ "251":
735
+ :state: WV
736
+ :city: Charleston
737
+ "252":
738
+ :state: WV
739
+ :city: Charleston
740
+ "253":
741
+ :state: WV
742
+ :city: Charleston
743
+ "254":
744
+ :state: WV
745
+ :city: Martinsburg
746
+ "255":
747
+ :state: WV
748
+ :city: Huntington
749
+ "256":
750
+ :state: WV
751
+ :city: Huntington
752
+ "257":
753
+ :state: WV
754
+ :city: Huntington
755
+ "258":
756
+ :state: WV
757
+ :city: Beckley
758
+ "259":
759
+ :state: WV
760
+ :city: Beckley
761
+ "260":
762
+ :state: WV
763
+ :city: Wheeling
764
+ "261":
765
+ :state: WV
766
+ :city: Parkersburg
767
+ "262":
768
+ :state: WV
769
+ :city: Clarksburg
770
+ "263":
771
+ :state: WV
772
+ :city: Clarksburg
773
+ "264":
774
+ :state: WV
775
+ :city: Clarksburg
776
+ "265":
777
+ :state: WV
778
+ :city: Clarksburg
779
+ "266":
780
+ :state: WV
781
+ :city: Gassaway
782
+ "267":
783
+ :state: WV
784
+ :city: Cumb'l'nd (MD)
785
+ "268":
786
+ :state: WV
787
+ :city: Petersburg
788
+ "270":
789
+ :state: NC
790
+ :city: Greensboro
791
+ "271":
792
+ :state: NC
793
+ :city: Winston-Salem
794
+ "272":
795
+ :state: NC
796
+ :city: Greensboro
797
+ "273":
798
+ :state: NC
799
+ :city: Greensboro
800
+ "274":
801
+ :state: NC
802
+ :city: Greensboro
803
+ "275":
804
+ :state: NC
805
+ :city: Raleigh
806
+ "276":
807
+ :state: NC
808
+ :city: Raleigh
809
+ "277":
810
+ :state: NC
811
+ :city: Durham
812
+ "278":
813
+ :state: NC
814
+ :city: Rocky Mount
815
+ "279":
816
+ :state: NC
817
+ :city: Rocky Mount
818
+ "280":
819
+ :state: NC
820
+ :city: Charlotte
821
+ "281":
822
+ :state: NC
823
+ :city: Charlotte
824
+ "282":
825
+ :state: NC
826
+ :city: Charlotte
827
+ "283":
828
+ :state: NC
829
+ :city: Fayetteville
830
+ "284":
831
+ :state: NC
832
+ :city: Fayetteville
833
+ "285":
834
+ :state: NC
835
+ :city: Kinston
836
+ "286":
837
+ :state: NC
838
+ :city: Hickory
839
+ "287":
840
+ :state: NC
841
+ :city: Asheville
842
+ "288":
843
+ :state: NC
844
+ :city: Asheville
845
+ "289":
846
+ :state: NC
847
+ :city: Asheville
848
+ "290":
849
+ :state: SC
850
+ :city: Columbia
851
+ "291":
852
+ :state: SC
853
+ :city: Columbia
854
+ "292":
855
+ :state: SC
856
+ :city: Columbia
857
+ "293":
858
+ :state: SC
859
+ :city: Spartanburg
860
+ "294":
861
+ :state: SC
862
+ :city: Charleston
863
+ "295":
864
+ :state: SC
865
+ :city: Florence
866
+ "296":
867
+ :state: SC
868
+ :city: Greenville
869
+ "297":
870
+ :state: SC
871
+ :city: Charlotte (NC)
872
+ "298":
873
+ :state: SC
874
+ :city: Augusta (GA)
875
+ "299":
876
+ :state: SC
877
+ :city: Savannah (GA)
878
+ "300":
879
+ :state: GA
880
+ :city: Atlanta
881
+ "301":
882
+ :state: GA
883
+ :city: Atlanta
884
+ "302":
885
+ :state: GA
886
+ :city: Atlanta
887
+ "303":
888
+ :state: GA
889
+ :city: Atlanta
890
+ "304":
891
+ :state: GA
892
+ :city: Swainsboro
893
+ "305":
894
+ :state: GA
895
+ :city: Gainesville
896
+ "306":
897
+ :state: GA
898
+ :city: Athens
899
+ "307":
900
+ :state: GA
901
+ :city: Chatt'n'ga (TN)
902
+ "308":
903
+ :state: GA
904
+ :city: Augusta
905
+ "309":
906
+ :state: GA
907
+ :city: Augusta
908
+ "310":
909
+ :state: GA
910
+ :city: Macon
911
+ "311":
912
+ :state: GA
913
+ :city: Atlanta
914
+ "312":
915
+ :state: GA
916
+ :city: Macon
917
+ "313":
918
+ :state: GA
919
+ :city: Savannah
920
+ "314":
921
+ :state: GA
922
+ :city: Savannah
923
+ "315":
924
+ :state: GA
925
+ :city: Waycross
926
+ "316":
927
+ :state: GA
928
+ :city: Valdosta
929
+ "317":
930
+ :state: GA
931
+ :city: Albany
932
+ "318":
933
+ :state: GA
934
+ :city: Columbus
935
+ "319":
936
+ :state: GA
937
+ :city: Columbus
938
+ "320":
939
+ :state: FL
940
+ :city: Jacksonville
941
+ "321":
942
+ :state: FL
943
+ :city: Daytona Beach
944
+ "322":
945
+ :state: FL
946
+ :city: Jacksonville
947
+ "323":
948
+ :state: FL
949
+ :city: Tallahassee
950
+ "324":
951
+ :state: FL
952
+ :city: Panama City
953
+ "325":
954
+ :state: FL
955
+ :city: Pensacola
956
+ "326":
957
+ :state: FL
958
+ :city: Gainesville
959
+ "327":
960
+ :state: FL
961
+ :city: Mid-State
962
+ "328":
963
+ :state: FL
964
+ :city: Orlando
965
+ "329":
966
+ :state: FL
967
+ :city: Orlando
968
+ "330":
969
+ :state: FL
970
+ :city: Southern Area
971
+ "331":
972
+ :state: FL
973
+ :city: Miami
974
+ "332":
975
+ :state: FL
976
+ :city: Miami
977
+ "333":
978
+ :state: FL
979
+ :city: Fort Lauderdale
980
+ "334":
981
+ :state: FL
982
+ :city: W. Palm Beach
983
+ "335":
984
+ :state: FL
985
+ :city: Tampa
986
+ "336":
987
+ :state: FL
988
+ :city: Tampa
989
+ "337":
990
+ :state: FL
991
+ :city: St. Petersburg
992
+ "338":
993
+ :state: FL
994
+ :city: Lakeland
995
+ "339":
996
+ :state: FL
997
+ :city: Fort Myers
998
+ "340":
999
+ :state: AA
1000
+ :city: Military
1001
+ "341":
1002
+ :state: FL
1003
+ :city: Fort Myers
1004
+ "342":
1005
+ :state: FL
1006
+ :city: Manasota
1007
+ "344":
1008
+ :state: FL
1009
+ :city: Gainesville
1010
+ "346":
1011
+ :state: FL
1012
+ :city: Tampa
1013
+ "347":
1014
+ :state: FL
1015
+ :city: Orlando
1016
+ "349":
1017
+ :state: FL
1018
+ :city: W. Palm Beach
1019
+ "350":
1020
+ :state: AL
1021
+ :city: Birmingham
1022
+ "351":
1023
+ :state: AL
1024
+ :city: Birmingham
1025
+ "352":
1026
+ :state: AL
1027
+ :city: Birmingham
1028
+ "354":
1029
+ :state: AL
1030
+ :city: Tuscaloosa
1031
+ "355":
1032
+ :state: AL
1033
+ :city: Birmingham
1034
+ "356":
1035
+ :state: AL
1036
+ :city: Huntsville
1037
+ "357":
1038
+ :state: AL
1039
+ :city: Huntsville
1040
+ "358":
1041
+ :state: AL
1042
+ :city: Huntsville
1043
+ "359":
1044
+ :state: AL
1045
+ :city: Birmingham
1046
+ "360":
1047
+ :state: AL
1048
+ :city: Montgomery
1049
+ "361":
1050
+ :state: AL
1051
+ :city: Montgomery
1052
+ "362":
1053
+ :state: AL
1054
+ :city: Anniston
1055
+ "363":
1056
+ :state: AL
1057
+ :city: Dothan
1058
+ "364":
1059
+ :state: AL
1060
+ :city: Evergreen
1061
+ "365":
1062
+ :state: AL
1063
+ :city: Mobile
1064
+ "366":
1065
+ :state: AL
1066
+ :city: Mobile
1067
+ "367":
1068
+ :state: AL
1069
+ :city: Montgomery
1070
+ "368":
1071
+ :state: AL
1072
+ :city: Montgomery
1073
+ "369":
1074
+ :state: AL
1075
+ :city: Meridian (MS)
1076
+ "370":
1077
+ :state: TN
1078
+ :city: Nashville
1079
+ "371":
1080
+ :state: TN
1081
+ :city: Nashville
1082
+ "372":
1083
+ :state: TN
1084
+ :city: Nashville
1085
+ "373":
1086
+ :state: TN
1087
+ :city: Chattanooga
1088
+ "374":
1089
+ :state: TN
1090
+ :city: Chattanooga
1091
+ "375":
1092
+ :state: TN
1093
+ :city: Memphis
1094
+ "376":
1095
+ :state: TN
1096
+ :city: Johnson City
1097
+ "377":
1098
+ :state: TN
1099
+ :city: Knoxville
1100
+ "378":
1101
+ :state: TN
1102
+ :city: Knoxville
1103
+ "379":
1104
+ :state: TN
1105
+ :city: Knoxville
1106
+ "380":
1107
+ :state: TN
1108
+ :city: Memphis
1109
+ "381":
1110
+ :state: TN
1111
+ :city: Memphis
1112
+ "382":
1113
+ :state: TN
1114
+ :city: McKenzie
1115
+ "383":
1116
+ :state: TN
1117
+ :city: Jackson
1118
+ "384":
1119
+ :state: TN
1120
+ :city: Columbia
1121
+ "385":
1122
+ :state: TN
1123
+ :city: Cookeville
1124
+ "386":
1125
+ :state: MS
1126
+ :city: Memphis (TN)
1127
+ "387":
1128
+ :state: MS
1129
+ :city: Greenville
1130
+ "388":
1131
+ :state: MS
1132
+ :city: Tupelo
1133
+ "389":
1134
+ :state: MS
1135
+ :city: Grenada
1136
+ "390":
1137
+ :state: MS
1138
+ :city: Jackson
1139
+ "391":
1140
+ :state: MS
1141
+ :city: Jackson
1142
+ "392":
1143
+ :state: MS
1144
+ :city: Jackson
1145
+ "393":
1146
+ :state: MS
1147
+ :city: Meridian
1148
+ "394":
1149
+ :state: MS
1150
+ :city: Hattiesburg
1151
+ "395":
1152
+ :state: MS
1153
+ :city: Gulfport
1154
+ "396":
1155
+ :state: MS
1156
+ :city: McComb
1157
+ "397":
1158
+ :state: MS
1159
+ :city: Columbus
1160
+ "398":
1161
+ :state: GA
1162
+ :city: Albany
1163
+ "399":
1164
+ :state: GA
1165
+ :city: Atlanta
1166
+ "400":
1167
+ :state: KY
1168
+ :city: Louisville
1169
+ "401":
1170
+ :state: KY
1171
+ :city: Louisville
1172
+ "402":
1173
+ :state: KY
1174
+ :city: Louisville
1175
+ "403":
1176
+ :state: KY
1177
+ :city: Lexington
1178
+ "404":
1179
+ :state: KY
1180
+ :city: Lexington
1181
+ "405":
1182
+ :state: KY
1183
+ :city: Lexington
1184
+ "406":
1185
+ :state: KY
1186
+ :city: Frankfort
1187
+ "407":
1188
+ :state: KY
1189
+ :city: London
1190
+ "408":
1191
+ :state: KY
1192
+ :city: London
1193
+ "409":
1194
+ :state: KY
1195
+ :city: London
1196
+ "410":
1197
+ :state: KY
1198
+ :city: Cincinnati (OH)
1199
+ "411":
1200
+ :state: KY
1201
+ :city: Ashland
1202
+ "412":
1203
+ :state: KY
1204
+ :city: Ashland
1205
+ "413":
1206
+ :state: KY
1207
+ :city: Campton
1208
+ "414":
1209
+ :state: KY
1210
+ :city: Campton
1211
+ "415":
1212
+ :state: KY
1213
+ :city: Pikeville
1214
+ "416":
1215
+ :state: KY
1216
+ :city: Pikeville
1217
+ "417":
1218
+ :state: KY
1219
+ :city: Hazard
1220
+ "418":
1221
+ :state: KY
1222
+ :city: Hazard
1223
+ "420":
1224
+ :state: KY
1225
+ :city: Paducah
1226
+ "421":
1227
+ :state: KY
1228
+ :city: Bowling Green
1229
+ "422":
1230
+ :state: KY
1231
+ :city: Bowling Green
1232
+ "423":
1233
+ :state: KY
1234
+ :city: Owensboro
1235
+ "424":
1236
+ :state: KY
1237
+ :city: Evansville (IN)
1238
+ "425":
1239
+ :state: KY
1240
+ :city: Somerset
1241
+ "426":
1242
+ :state: KY
1243
+ :city: Somerset
1244
+ "427":
1245
+ :state: KY
1246
+ :city: Elizabethtown
1247
+ "430":
1248
+ :state: OH
1249
+ :city: Columbus
1250
+ "431":
1251
+ :state: OH
1252
+ :city: Columbus
1253
+ "432":
1254
+ :state: OH
1255
+ :city: Columbus
1256
+ "433":
1257
+ :state: OH
1258
+ :city: Columbus
1259
+ "434":
1260
+ :state: OH
1261
+ :city: Toledo
1262
+ "435":
1263
+ :state: OH
1264
+ :city: Toledo
1265
+ "436":
1266
+ :state: OH
1267
+ :city: Toledo
1268
+ "437":
1269
+ :state: OH
1270
+ :city: Zanesville
1271
+ "438":
1272
+ :state: OH
1273
+ :city: Zanesville
1274
+ "439":
1275
+ :state: OH
1276
+ :city: Steubenville
1277
+ "440":
1278
+ :state: OH
1279
+ :city: Cleveland
1280
+ "441":
1281
+ :state: OH
1282
+ :city: Cleveland
1283
+ "442":
1284
+ :state: OH
1285
+ :city: Akron
1286
+ "443":
1287
+ :state: OH
1288
+ :city: Akron
1289
+ "444":
1290
+ :state: OH
1291
+ :city: Youngstown
1292
+ "445":
1293
+ :state: OH
1294
+ :city: Youngstown
1295
+ "446":
1296
+ :state: OH
1297
+ :city: Canton
1298
+ "447":
1299
+ :state: OH
1300
+ :city: Canton
1301
+ "448":
1302
+ :state: OH
1303
+ :city: Mansfield
1304
+ "449":
1305
+ :state: OH
1306
+ :city: Mansfield
1307
+ "450":
1308
+ :state: OH
1309
+ :city: Cincinnati
1310
+ "451":
1311
+ :state: OH
1312
+ :city: Cincinnati
1313
+ "452":
1314
+ :state: OH
1315
+ :city: Cincinnati
1316
+ "453":
1317
+ :state: OH
1318
+ :city: Dayton
1319
+ "454":
1320
+ :state: OH
1321
+ :city: Dayton
1322
+ "455":
1323
+ :state: OH
1324
+ :city: Springfield
1325
+ "456":
1326
+ :state: OH
1327
+ :city: Chillicothe
1328
+ "457":
1329
+ :state: OH
1330
+ :city: Athens
1331
+ "458":
1332
+ :state: OH
1333
+ :city: Lima
1334
+ "459":
1335
+ :state: OH
1336
+ :city: Cincinnati
1337
+ "460":
1338
+ :state: IN
1339
+ :city: Indianapolis
1340
+ "461":
1341
+ :state: IN
1342
+ :city: Indianapolis
1343
+ "462":
1344
+ :state: IN
1345
+ :city: Indianapolis
1346
+ "463":
1347
+ :state: IN
1348
+ :city: Gary
1349
+ "464":
1350
+ :state: IN
1351
+ :city: Gary
1352
+ "465":
1353
+ :state: IN
1354
+ :city: South Bend
1355
+ "466":
1356
+ :state: IN
1357
+ :city: South Bend
1358
+ "467":
1359
+ :state: IN
1360
+ :city: Fort Wayne
1361
+ "468":
1362
+ :state: IN
1363
+ :city: Fort Wayne
1364
+ "469":
1365
+ :state: IN
1366
+ :city: Kokomo
1367
+ "470":
1368
+ :state: IN
1369
+ :city: Cincinnati (OH)
1370
+ "471":
1371
+ :state: IN
1372
+ :city: Louisville (KY)
1373
+ "472":
1374
+ :state: IN
1375
+ :city: Columbus
1376
+ "473":
1377
+ :state: IN
1378
+ :city: Muncie
1379
+ "474":
1380
+ :state: IN
1381
+ :city: Bloomington
1382
+ "475":
1383
+ :state: IN
1384
+ :city: Terre Haute
1385
+ "476":
1386
+ :state: IN
1387
+ :city: Evansville
1388
+ "477":
1389
+ :state: IN
1390
+ :city: Evansville
1391
+ "478":
1392
+ :state: IN
1393
+ :city: Terre Haute
1394
+ "479":
1395
+ :state: IN
1396
+ :city: Lafayette
1397
+ "480":
1398
+ :state: MI
1399
+ :city: Royal Oak
1400
+ "481":
1401
+ :state: MI
1402
+ :city: Detroit
1403
+ "482":
1404
+ :state: MI
1405
+ :city: Detroit
1406
+ "483":
1407
+ :state: MI
1408
+ :city: Royal Oak
1409
+ "484":
1410
+ :state: MI
1411
+ :city: Flint
1412
+ "485":
1413
+ :state: MI
1414
+ :city: Flint
1415
+ "486":
1416
+ :state: MI
1417
+ :city: Saginaw
1418
+ "487":
1419
+ :state: MI
1420
+ :city: Saginaw
1421
+ "488":
1422
+ :state: MI
1423
+ :city: Lansing
1424
+ "489":
1425
+ :state: MI
1426
+ :city: Lansing
1427
+ "490":
1428
+ :state: MI
1429
+ :city: Kalamazoo
1430
+ "491":
1431
+ :state: MI
1432
+ :city: Kalamazoo
1433
+ "492":
1434
+ :state: MI
1435
+ :city: Jackson
1436
+ "493":
1437
+ :state: MI
1438
+ :city: Grand Rapids
1439
+ "494":
1440
+ :state: MI
1441
+ :city: Grand Rapids
1442
+ "495":
1443
+ :state: MI
1444
+ :city: Grand Rapids
1445
+ "496":
1446
+ :state: MI
1447
+ :city: Traverse City
1448
+ "497":
1449
+ :state: MI
1450
+ :city: Gaylord
1451
+ "498":
1452
+ :state: MI
1453
+ :city: Iron Mountain
1454
+ "499":
1455
+ :state: MI
1456
+ :city: Iron Mountain
1457
+ "500":
1458
+ :state: IA
1459
+ :city: Des Moines
1460
+ "501":
1461
+ :state: IA
1462
+ :city: Des Moines
1463
+ "502":
1464
+ :state: IA
1465
+ :city: Des Moines
1466
+ "503":
1467
+ :state: IA
1468
+ :city: Des Moines
1469
+ "504":
1470
+ :state: IA
1471
+ :city: Mason City
1472
+ "505":
1473
+ :state: IA
1474
+ :city: Fort Dodge
1475
+ "506":
1476
+ :state: IA
1477
+ :city: Waterloo
1478
+ "507":
1479
+ :state: IA
1480
+ :city: Waterloo
1481
+ "508":
1482
+ :state: IA
1483
+ :city: Creston
1484
+ "509":
1485
+ :state: IA
1486
+ :city: Des Moines
1487
+ "510":
1488
+ :state: IA
1489
+ :city: Sioux City
1490
+ "511":
1491
+ :state: IA
1492
+ :city: Sioux City
1493
+ "512":
1494
+ :state: IA
1495
+ :city: Sheldon
1496
+ "513":
1497
+ :state: IA
1498
+ :city: Spencer
1499
+ "514":
1500
+ :state: IA
1501
+ :city: Carroll
1502
+ "515":
1503
+ :state: IA
1504
+ :city: Omaha (NE)
1505
+ "516":
1506
+ :state: IA
1507
+ :city: Shenandoah
1508
+ "520":
1509
+ :state: IA
1510
+ :city: Dubuque
1511
+ "521":
1512
+ :state: IA
1513
+ :city: Decorah
1514
+ "522":
1515
+ :state: IA
1516
+ :city: Cedar Rapids
1517
+ "523":
1518
+ :state: IA
1519
+ :city: Cedar Rapids
1520
+ "524":
1521
+ :state: IA
1522
+ :city: Cedar Rapids
1523
+ "525":
1524
+ :state: IA
1525
+ :city: Ottumwa
1526
+ "526":
1527
+ :state: IA
1528
+ :city: Burlington
1529
+ "527":
1530
+ :state: IA
1531
+ :city: Rock Island (IL)
1532
+ "528":
1533
+ :state: IA
1534
+ :city: Davenport
1535
+ "530":
1536
+ :state: WI
1537
+ :city: Milwaukee
1538
+ "531":
1539
+ :state: WI
1540
+ :city: Milwaukee
1541
+ "532":
1542
+ :state: WI
1543
+ :city: Milwaukee
1544
+ "534":
1545
+ :state: WI
1546
+ :city: Racine
1547
+ "535":
1548
+ :state: WI
1549
+ :city: Madison
1550
+ "537":
1551
+ :state: WI
1552
+ :city: Madison
1553
+ "538":
1554
+ :state: WI
1555
+ :city: Madison
1556
+ "539":
1557
+ :state: WI
1558
+ :city: Portage
1559
+ "540":
1560
+ :state: WI
1561
+ :city: Saint Paul (MN)
1562
+ "541":
1563
+ :state: WI
1564
+ :city: Green Bay
1565
+ "542":
1566
+ :state: WI
1567
+ :city: Green Bay
1568
+ "543":
1569
+ :state: WI
1570
+ :city: Green Bay
1571
+ "544":
1572
+ :state: WI
1573
+ :city: Wausau
1574
+ "545":
1575
+ :state: WI
1576
+ :city: Rhinelander
1577
+ "546":
1578
+ :state: WI
1579
+ :city: La Crosse
1580
+ "547":
1581
+ :state: WI
1582
+ :city: Eau Claire
1583
+ "548":
1584
+ :state: WI
1585
+ :city: Spooner
1586
+ "549":
1587
+ :state: WI
1588
+ :city: Oshkosh
1589
+ "550":
1590
+ :state: MN
1591
+ :city: Saint Paul
1592
+ "551":
1593
+ :state: MN
1594
+ :city: Saint Paul
1595
+ "553":
1596
+ :state: MN
1597
+ :city: Minneapolis
1598
+ "554":
1599
+ :state: MN
1600
+ :city: Minneapolis
1601
+ "555":
1602
+ :state: MN
1603
+ :city: Minneapolis
1604
+ "556":
1605
+ :state: MN
1606
+ :city: North Shore
1607
+ "557":
1608
+ :state: MN
1609
+ :city: Arrowhead region
1610
+ "558":
1611
+ :state: MN
1612
+ :city: Duluth
1613
+ "559":
1614
+ :state: MN
1615
+ :city: Rochester
1616
+ "560":
1617
+ :state: MN
1618
+ :city: Mankato
1619
+ "561":
1620
+ :state: MN
1621
+ :city: Windom
1622
+ "562":
1623
+ :state: MN
1624
+ :city: Willmar
1625
+ "563":
1626
+ :state: MN
1627
+ :city: Saint Cloud
1628
+ "564":
1629
+ :state: MN
1630
+ :city: Brainerd
1631
+ "565":
1632
+ :state: MN
1633
+ :city: Detroit Lakes
1634
+ "566":
1635
+ :state: MN
1636
+ :city: Bemidji
1637
+ "567":
1638
+ :state: MN
1639
+ :city: Thief River Falls
1640
+ "569":
1641
+ :state: DC
1642
+ :city: Washington
1643
+ "570":
1644
+ :state: SD
1645
+ :city: Sioux Falls
1646
+ "571":
1647
+ :state: SD
1648
+ :city: Sioux Falls
1649
+ "572":
1650
+ :state: SD
1651
+ :city: Watertown
1652
+ "573":
1653
+ :state: SD
1654
+ :city: Mitchell
1655
+ "574":
1656
+ :state: SD
1657
+ :city: Aberdeen
1658
+ "575":
1659
+ :state: SD
1660
+ :city: Pierre
1661
+ "576":
1662
+ :state: SD
1663
+ :city: Mobridge
1664
+ "577":
1665
+ :state: SD
1666
+ :city: Rapid City
1667
+ "580":
1668
+ :state: ND
1669
+ :city: Fargo
1670
+ "581":
1671
+ :state: ND
1672
+ :city: Fargo
1673
+ "582":
1674
+ :state: ND
1675
+ :city: Grand Forks
1676
+ "583":
1677
+ :state: ND
1678
+ :city: Devils Lake
1679
+ "584":
1680
+ :state: ND
1681
+ :city: Jamestown
1682
+ "585":
1683
+ :state: ND
1684
+ :city: Bismarck
1685
+ "586":
1686
+ :state: ND
1687
+ :city: Dickinson
1688
+ "587":
1689
+ :state: ND
1690
+ :city: Minot
1691
+ "588":
1692
+ :state: ND
1693
+ :city: Williston
1694
+ "590":
1695
+ :state: MT
1696
+ :city: Billings
1697
+ "591":
1698
+ :state: MT
1699
+ :city: Billings
1700
+ "592":
1701
+ :state: MT
1702
+ :city: Wolf Point
1703
+ "593":
1704
+ :state: MT
1705
+ :city: Miles City
1706
+ "594":
1707
+ :state: MT
1708
+ :city: Great Falls
1709
+ "595":
1710
+ :state: MT
1711
+ :city: Havre
1712
+ "596":
1713
+ :state: MT
1714
+ :city: Helena
1715
+ "597":
1716
+ :state: MT
1717
+ :city: Butte
1718
+ "598":
1719
+ :state: MT
1720
+ :city: Missoula
1721
+ "599":
1722
+ :state: MT
1723
+ :city: Kalispell
1724
+ "600":
1725
+ :state: IL
1726
+ :city: Palatine
1727
+ "601":
1728
+ :state: IL
1729
+ :city: Carol Stream
1730
+ "602":
1731
+ :state: IL
1732
+ :city: Evanston
1733
+ "603":
1734
+ :state: IL
1735
+ :city: Oak Park
1736
+ "604":
1737
+ :state: IL
1738
+ :city: Chicago
1739
+ "605":
1740
+ :state: IL
1741
+ :city: Fox Valley
1742
+ "606":
1743
+ :state: IL
1744
+ :city: Chicago
1745
+ "607":
1746
+ :state: IL
1747
+ :city: Chicago
1748
+ "608":
1749
+ :state: IL
1750
+ :city: Chicago
1751
+ "609":
1752
+ :state: IL
1753
+ :city: Kankakee
1754
+ "610":
1755
+ :state: IL
1756
+ :city: Rockford
1757
+ "611":
1758
+ :state: IL
1759
+ :city: Rockford
1760
+ "612":
1761
+ :state: IL
1762
+ :city: Rock Island
1763
+ "613":
1764
+ :state: IL
1765
+ :city: La Salle
1766
+ "614":
1767
+ :state: IL
1768
+ :city: Galesburg
1769
+ "615":
1770
+ :state: IL
1771
+ :city: Peoria
1772
+ "616":
1773
+ :state: IL
1774
+ :city: Peoria
1775
+ "617":
1776
+ :state: IL
1777
+ :city: Bloomington
1778
+ "618":
1779
+ :state: IL
1780
+ :city: Champaign
1781
+ "619":
1782
+ :state: IL
1783
+ :city: Champaign
1784
+ "620":
1785
+ :state: IL
1786
+ :city: St. Louis (MO)
1787
+ "622":
1788
+ :state: IL
1789
+ :city: St. Louis (MO)
1790
+ "623":
1791
+ :state: IL
1792
+ :city: Quincy
1793
+ "624":
1794
+ :state: IL
1795
+ :city: Effingham
1796
+ "625":
1797
+ :state: IL
1798
+ :city: Springfield
1799
+ "626":
1800
+ :state: IL
1801
+ :city: Springfield
1802
+ "627":
1803
+ :state: IL
1804
+ :city: Springfield
1805
+ "628":
1806
+ :state: IL
1807
+ :city: Centralia
1808
+ "629":
1809
+ :state: IL
1810
+ :city: Carbondale
1811
+ "630":
1812
+ :state: MO
1813
+ :city: Saint Louis
1814
+ "631":
1815
+ :state: MO
1816
+ :city: Saint Louis
1817
+ "633":
1818
+ :state: MO
1819
+ :city: Saint Louis
1820
+ "634":
1821
+ :state: MO
1822
+ :city: Quincy (IL)
1823
+ "635":
1824
+ :state: MO
1825
+ :city: Quincy (IL)
1826
+ "636":
1827
+ :state: MO
1828
+ :city: Cape Girardeau
1829
+ "637":
1830
+ :state: MO
1831
+ :city: Cape Girardeau
1832
+ "638":
1833
+ :state: MO
1834
+ :city: Cape Girardeau
1835
+ "639":
1836
+ :state: MO
1837
+ :city: Cape Girardeau
1838
+ "640":
1839
+ :state: MO
1840
+ :city: Kansas City
1841
+ "641":
1842
+ :state: MO
1843
+ :city: Kansas City
1844
+ "644":
1845
+ :state: MO
1846
+ :city: Saint Joseph
1847
+ "645":
1848
+ :state: MO
1849
+ :city: Saint Joseph
1850
+ "646":
1851
+ :state: MO
1852
+ :city: Chillicothe
1853
+ "647":
1854
+ :state: MO
1855
+ :city: Harrisonville
1856
+ "648":
1857
+ :state: MO
1858
+ :city: Springfield
1859
+ "649":
1860
+ :state: MO
1861
+ :city: Kansas City
1862
+ "650":
1863
+ :state: MO
1864
+ :city: Columbia
1865
+ "651":
1866
+ :state: MO
1867
+ :city: Columbia
1868
+ "652":
1869
+ :state: MO
1870
+ :city: Columbia
1871
+ "653":
1872
+ :state: MO
1873
+ :city: Columbia
1874
+ "654":
1875
+ :state: MO
1876
+ :city: Springfield
1877
+ "655":
1878
+ :state: MO
1879
+ :city: Springfield
1880
+ "656":
1881
+ :state: MO
1882
+ :city: Springfield
1883
+ "657":
1884
+ :state: MO
1885
+ :city: Springfield
1886
+ "658":
1887
+ :state: MO
1888
+ :city: Springfield
1889
+ "660":
1890
+ :state: KS
1891
+ :city: Kansas City
1892
+ "661":
1893
+ :state: KS
1894
+ :city: Kansas City
1895
+ "662":
1896
+ :state: KS
1897
+ :city: Shawnee Mission
1898
+ "664":
1899
+ :state: KS
1900
+ :city: Topeka
1901
+ "665":
1902
+ :state: KS
1903
+ :city: Topeka
1904
+ "666":
1905
+ :state: KS
1906
+ :city: Topeka
1907
+ "667":
1908
+ :state: KS
1909
+ :city: Fort Scott
1910
+ "668":
1911
+ :state: KS
1912
+ :city: Topeka
1913
+ "669":
1914
+ :state: KS
1915
+ :city: Salina
1916
+ "670":
1917
+ :state: KS
1918
+ :city: Wichita
1919
+ "671":
1920
+ :state: KS
1921
+ :city: Wichita
1922
+ "672":
1923
+ :state: KS
1924
+ :city: Wichita
1925
+ "673":
1926
+ :state: KS
1927
+ :city: Independence
1928
+ "674":
1929
+ :state: KS
1930
+ :city: Salina
1931
+ "675":
1932
+ :state: KS
1933
+ :city: Hutchinson
1934
+ "676":
1935
+ :state: KS
1936
+ :city: Hays
1937
+ "677":
1938
+ :state: KS
1939
+ :city: Colby
1940
+ "678":
1941
+ :state: KS
1942
+ :city: Dodge City
1943
+ "679":
1944
+ :state: KS
1945
+ :city: Liberal
1946
+ "680":
1947
+ :state: NE
1948
+ :city: Omaha
1949
+ "681":
1950
+ :state: NE
1951
+ :city: Omaha
1952
+ "683":
1953
+ :state: NE
1954
+ :city: Lincoln
1955
+ "684":
1956
+ :state: NE
1957
+ :city: Lincoln
1958
+ "685":
1959
+ :state: NE
1960
+ :city: Lincoln
1961
+ "686":
1962
+ :state: NE
1963
+ :city: Norfolk
1964
+ "687":
1965
+ :state: NE
1966
+ :city: Norfolk
1967
+ "688":
1968
+ :state: NE
1969
+ :city: Grand Island
1970
+ "689":
1971
+ :state: NE
1972
+ :city: Grand Island
1973
+ "690":
1974
+ :state: NE
1975
+ :city: McCook
1976
+ "691":
1977
+ :state: NE
1978
+ :city: North Platte
1979
+ "692":
1980
+ :state: NE
1981
+ :city: Valentine
1982
+ "693":
1983
+ :state: NE
1984
+ :city: Alliance
1985
+ "700":
1986
+ :state: LA
1987
+ :city: Metairie
1988
+ "701":
1989
+ :state: LA
1990
+ :city: New Orleans
1991
+ "703":
1992
+ :state: LA
1993
+ :city: Houma
1994
+ "704":
1995
+ :state: LA
1996
+ :city: Mandeville
1997
+ "705":
1998
+ :state: LA
1999
+ :city: Lafayette
2000
+ "706":
2001
+ :state: LA
2002
+ :city: Lake Charles
2003
+ "707":
2004
+ :state: LA
2005
+ :city: Baton Rouge
2006
+ "708":
2007
+ :state: LA
2008
+ :city: Baton Rouge
2009
+ "710":
2010
+ :state: LA
2011
+ :city: Shreveport
2012
+ "711":
2013
+ :state: LA
2014
+ :city: Shreveport
2015
+ "712":
2016
+ :state: LA
2017
+ :city: Monroe
2018
+ "713":
2019
+ :state: LA
2020
+ :city: Alexandria
2021
+ "714":
2022
+ :state: LA
2023
+ :city: Alexandria
2024
+ "716":
2025
+ :state: AR
2026
+ :city: Pine Bluff
2027
+ "717":
2028
+ :state: AR
2029
+ :city: Camden
2030
+ "718":
2031
+ :state: AR
2032
+ :city: Texarkana (TX)
2033
+ "719":
2034
+ :state: AR
2035
+ :city: Hot Sprs. N.P.
2036
+ "720":
2037
+ :state: AR
2038
+ :city: Little Rock
2039
+ "721":
2040
+ :state: AR
2041
+ :city: Little Rock
2042
+ "722":
2043
+ :state: AR
2044
+ :city: Little Rock
2045
+ "723":
2046
+ :state: AR
2047
+ :city: Memphis (TN)
2048
+ "724":
2049
+ :state: AR
2050
+ :city: Jonesboro
2051
+ "725":
2052
+ :state: AR
2053
+ :city: Batesville
2054
+ "726":
2055
+ :state: AR
2056
+ :city: Harrison
2057
+ "727":
2058
+ :state: AR
2059
+ :city: Fayetteville
2060
+ "728":
2061
+ :state: AR
2062
+ :city: Russellville
2063
+ "729":
2064
+ :state: AR
2065
+ :city: Fort Smith
2066
+ "730":
2067
+ :state: OK
2068
+ :city: Oklahoma City
2069
+ "731":
2070
+ :state: OK
2071
+ :city: Oklahoma City
2072
+ "733":
2073
+ :state: TX
2074
+ :city: Austin
2075
+ "734":
2076
+ :state: OK
2077
+ :city: Ardmore
2078
+ "735":
2079
+ :state: OK
2080
+ :city: Lawton
2081
+ "736":
2082
+ :state: OK
2083
+ :city: Clinton
2084
+ "737":
2085
+ :state: OK
2086
+ :city: Enid
2087
+ "738":
2088
+ :state: OK
2089
+ :city: Woodward
2090
+ "739":
2091
+ :state: OK
2092
+ :city: Liberal (KS)
2093
+ "740":
2094
+ :state: OK
2095
+ :city: Tulsa
2096
+ "741":
2097
+ :state: OK
2098
+ :city: Tulsa
2099
+ "743":
2100
+ :state: OK
2101
+ :city: Tulsa
2102
+ "744":
2103
+ :state: OK
2104
+ :city: Muskogee
2105
+ "745":
2106
+ :state: OK
2107
+ :city: McAlester
2108
+ "746":
2109
+ :state: OK
2110
+ :city: Ponca City
2111
+ "747":
2112
+ :state: OK
2113
+ :city: Durant
2114
+ "748":
2115
+ :state: OK
2116
+ :city: Shawnee
2117
+ "749":
2118
+ :state: OK
2119
+ :city: Poteau
2120
+ "750":
2121
+ :state: TX
2122
+ :city: North Area
2123
+ "751":
2124
+ :state: TX
2125
+ :city: Dallas
2126
+ "752":
2127
+ :state: TX
2128
+ :city: Dallas
2129
+ "753":
2130
+ :state: TX
2131
+ :city: Dallas
2132
+ "754":
2133
+ :state: TX
2134
+ :city: Greenville
2135
+ "755":
2136
+ :state: TX
2137
+ :city: Texarkana
2138
+ "756":
2139
+ :state: TX
2140
+ :city: Longview
2141
+ "757":
2142
+ :state: TX
2143
+ :city: Tyler
2144
+ "758":
2145
+ :state: TX
2146
+ :city: Palestine
2147
+ "759":
2148
+ :state: TX
2149
+ :city: Lufkin
2150
+ "760":
2151
+ :state: TX
2152
+ :city: Fort Worth
2153
+ "761":
2154
+ :state: TX
2155
+ :city: Fort Worth
2156
+ "762":
2157
+ :state: TX
2158
+ :city: Fort Worth
2159
+ "763":
2160
+ :state: TX
2161
+ :city: Wichita Falls
2162
+ "764":
2163
+ :state: TX
2164
+ :city: Fort Worth
2165
+ "765":
2166
+ :state: TX
2167
+ :city: Waco
2168
+ "766":
2169
+ :state: TX
2170
+ :city: Waco
2171
+ "767":
2172
+ :state: TX
2173
+ :city: Waco
2174
+ "768":
2175
+ :state: TX
2176
+ :city: Abilene
2177
+ "769":
2178
+ :state: TX
2179
+ :city: Midland
2180
+ "770":
2181
+ :state: TX
2182
+ :city: Houston
2183
+ "772":
2184
+ :state: TX
2185
+ :city: Houston
2186
+ "773":
2187
+ :state: TX
2188
+ :city: North Houston
2189
+ "774":
2190
+ :state: TX
2191
+ :city: Katy
2192
+ "775":
2193
+ :state: TX
2194
+ :city: North Houston
2195
+ "776":
2196
+ :state: TX
2197
+ :city: Beaumont
2198
+ "777":
2199
+ :state: TX
2200
+ :city: Beaumont
2201
+ "778":
2202
+ :state: TX
2203
+ :city: Bryan
2204
+ "779":
2205
+ :state: TX
2206
+ :city: Victoria
2207
+ "780":
2208
+ :state: TX
2209
+ :city: Laredo
2210
+ "781":
2211
+ :state: TX
2212
+ :city: San Antonio
2213
+ "782":
2214
+ :state: TX
2215
+ :city: San Antonio
2216
+ "783":
2217
+ :state: TX
2218
+ :city: Corpus Christi
2219
+ "784":
2220
+ :state: TX
2221
+ :city: Corpus Christi
2222
+ "785":
2223
+ :state: TX
2224
+ :city: McAllen
2225
+ "786":
2226
+ :state: TX
2227
+ :city: Austin
2228
+ "787":
2229
+ :state: TX
2230
+ :city: Austin
2231
+ "788":
2232
+ :state: TX
2233
+ :city: San Antonio
2234
+ "789":
2235
+ :state: TX
2236
+ :city: Austin
2237
+ "790":
2238
+ :state: TX
2239
+ :city: Amarillo
2240
+ "791":
2241
+ :state: TX
2242
+ :city: Amarillo
2243
+ "792":
2244
+ :state: TX
2245
+ :city: Childress
2246
+ "793":
2247
+ :state: TX
2248
+ :city: Lubbock
2249
+ "794":
2250
+ :state: TX
2251
+ :city: Lubbock
2252
+ "795":
2253
+ :state: TX
2254
+ :city: Abilene
2255
+ "796":
2256
+ :state: TX
2257
+ :city: Abilene
2258
+ "797":
2259
+ :state: TX
2260
+ :city: Midland
2261
+ "798":
2262
+ :state: TX
2263
+ :city: El Paso
2264
+ "799":
2265
+ :state: TX
2266
+ :city: El Paso
2267
+ "800":
2268
+ :state: CO
2269
+ :city: Denver
2270
+ "801":
2271
+ :state: CO
2272
+ :city: Denver
2273
+ "802":
2274
+ :state: CO
2275
+ :city: Denver
2276
+ "803":
2277
+ :state: CO
2278
+ :city: Boulder
2279
+ "804":
2280
+ :state: CO
2281
+ :city: Denver
2282
+ "805":
2283
+ :state: CO
2284
+ :city: Longmont
2285
+ "806":
2286
+ :state: CO
2287
+ :city: Brighton
2288
+ "807":
2289
+ :state: CO
2290
+ :city: Brighton
2291
+ "808":
2292
+ :state: CO
2293
+ :city: Col. Springs
2294
+ "809":
2295
+ :state: CO
2296
+ :city: Col. Springs
2297
+ "810":
2298
+ :state: CO
2299
+ :city: Pueblo
2300
+ "811":
2301
+ :state: CO
2302
+ :city: Alamosa
2303
+ "812":
2304
+ :state: CO
2305
+ :city: Salida
2306
+ "813":
2307
+ :state: CO
2308
+ :city: Durango
2309
+ "814":
2310
+ :state: CO
2311
+ :city: Grand Junction
2312
+ "815":
2313
+ :state: CO
2314
+ :city: Grand Junction
2315
+ "816":
2316
+ :state: CO
2317
+ :city: Glenwood Springs
2318
+ "820":
2319
+ :state: WY
2320
+ :city: Cheyenne
2321
+ "821":
2322
+ :state: WY
2323
+ :city: Yellowstone N.P.
2324
+ "822":
2325
+ :state: WY
2326
+ :city: Wheatland
2327
+ "823":
2328
+ :state: WY
2329
+ :city: Rawlins
2330
+ "824":
2331
+ :state: WY
2332
+ :city: Worland
2333
+ "825":
2334
+ :state: WY
2335
+ :city: Riverton
2336
+ "826":
2337
+ :state: WY
2338
+ :city: Casper
2339
+ "827":
2340
+ :state: WY
2341
+ :city: Gillette
2342
+ "828":
2343
+ :state: WY
2344
+ :city: Sheridan
2345
+ "829":
2346
+ :state: WY
2347
+ :city: Rock Springs
2348
+ "830":
2349
+ :state: WY
2350
+ :city: Rock Springs
2351
+ "831":
2352
+ :state: WY
2353
+ :city: Rock Springs
2354
+ "832":
2355
+ :state: ID
2356
+ :city: Pocatello
2357
+ "833":
2358
+ :state: ID
2359
+ :city: Twin Falls
2360
+ "834":
2361
+ :state: ID
2362
+ :city: Pocatello
2363
+ "835":
2364
+ :state: ID
2365
+ :city: Lewiston
2366
+ "836":
2367
+ :state: ID
2368
+ :city: Boise
2369
+ "837":
2370
+ :state: ID
2371
+ :city: Boise
2372
+ "838":
2373
+ :state: ID
2374
+ :city: Spokane (WA)
2375
+ "840":
2376
+ :state: UT
2377
+ :city: Salt Lake City
2378
+ "841":
2379
+ :state: UT
2380
+ :city: Salt Lake City
2381
+ "842":
2382
+ :state: UT
2383
+ :city: Salt Lake City
2384
+ "843":
2385
+ :state: UT
2386
+ :city: Salt Lake City
2387
+ "844":
2388
+ :state: UT
2389
+ :city: Ogden
2390
+ "845":
2391
+ :state: UT
2392
+ :city: Provo
2393
+ "846":
2394
+ :state: UT
2395
+ :city: Provo
2396
+ "847":
2397
+ :state: UT
2398
+ :city: Provo
2399
+ "850":
2400
+ :state: AZ
2401
+ :city: Phoenix
2402
+ "851":
2403
+ :state: AZ
2404
+ :city: Phoenix
2405
+ "852":
2406
+ :state: AZ
2407
+ :city: Phoenix
2408
+ "853":
2409
+ :state: AZ
2410
+ :city: Phoenix
2411
+ "855":
2412
+ :state: AZ
2413
+ :city: Globe
2414
+ "856":
2415
+ :state: AZ
2416
+ :city: Tucson
2417
+ "857":
2418
+ :state: AZ
2419
+ :city: Tucson
2420
+ "859":
2421
+ :state: AZ
2422
+ :city: Show Low
2423
+ "860":
2424
+ :state: AZ
2425
+ :city: Flagstaff
2426
+ "863":
2427
+ :state: AZ
2428
+ :city: Prescott
2429
+ "864":
2430
+ :state: AZ
2431
+ :city: Kingman
2432
+ "865":
2433
+ :state: AZ
2434
+ :city: Gallup (NM)
2435
+ "870":
2436
+ :state: NM
2437
+ :city: Albuquerque
2438
+ "871":
2439
+ :state: NM
2440
+ :city: Albuquerque
2441
+ "872":
2442
+ :state: NM
2443
+ :city: Albuquerque
2444
+ "873":
2445
+ :state: NM
2446
+ :city: Gallup
2447
+ "874":
2448
+ :state: NM
2449
+ :city: Farmington
2450
+ "875":
2451
+ :state: NM
2452
+ :city: Albuquerque
2453
+ "877":
2454
+ :state: NM
2455
+ :city: Las Vegas
2456
+ "878":
2457
+ :state: NM
2458
+ :city: Socorro
2459
+ "879":
2460
+ :state: NM
2461
+ :city: Truth or Consequences
2462
+ "880":
2463
+ :state: NM
2464
+ :city: Las Cruces
2465
+ "881":
2466
+ :state: NM
2467
+ :city: Clovis
2468
+ "882":
2469
+ :state: NM
2470
+ :city: Roswell
2471
+ "883":
2472
+ :state: NM
2473
+ :city: Carrizozo
2474
+ "884":
2475
+ :state: NM
2476
+ :city: Tucumcari
2477
+ "885":
2478
+ :state: TX
2479
+ :city: El Paso
2480
+ "889":
2481
+ :state: NV
2482
+ :city: Las Vegas
2483
+ "890":
2484
+ :state: NV
2485
+ :city: Las Vegas
2486
+ "891":
2487
+ :state: NV
2488
+ :city: Las Vegas
2489
+ "893":
2490
+ :state: NV
2491
+ :city: Ely
2492
+ "894":
2493
+ :state: NV
2494
+ :city: Reno
2495
+ "895":
2496
+ :state: NV
2497
+ :city: Reno
2498
+ "897":
2499
+ :state: NV
2500
+ :city: Carson City
2501
+ "898":
2502
+ :state: NV
2503
+ :city: Elko
2504
+ "900":
2505
+ :state: CA
2506
+ :city: Los Angeles
2507
+ "901":
2508
+ :state: CA
2509
+ :city: Los Angeles
2510
+ "902":
2511
+ :state: CA
2512
+ :city: Inglewood
2513
+ "903":
2514
+ :state: CA
2515
+ :city: Inglewood
2516
+ "904":
2517
+ :state: CA
2518
+ :city: Santa Monica
2519
+ "905":
2520
+ :state: CA
2521
+ :city: Torrance
2522
+ "906":
2523
+ :state: CA
2524
+ :city: Long Beach
2525
+ "907":
2526
+ :state: CA
2527
+ :city: Long Beach
2528
+ "908":
2529
+ :state: CA
2530
+ :city: Long Beach
2531
+ "910":
2532
+ :state: CA
2533
+ :city: Pasadena
2534
+ "911":
2535
+ :state: CA
2536
+ :city: Pasadena
2537
+ "912":
2538
+ :state: CA
2539
+ :city: Glendale
2540
+ "913":
2541
+ :state: CA
2542
+ :city: Van Nuys
2543
+ "914":
2544
+ :state: CA
2545
+ :city: Van Nuys
2546
+ "915":
2547
+ :state: CA
2548
+ :city: Burbank
2549
+ "916":
2550
+ :state: CA
2551
+ :city: North Hollywood
2552
+ "917":
2553
+ :state: CA
2554
+ :city: Industry
2555
+ "918":
2556
+ :state: CA
2557
+ :city: Industry
2558
+ "919":
2559
+ :state: CA
2560
+ :city: San Diego
2561
+ "920":
2562
+ :state: CA
2563
+ :city: San Diego
2564
+ "921":
2565
+ :state: CA
2566
+ :city: San Diego
2567
+ "922":
2568
+ :state: CA
2569
+ :city: Palm Springs
2570
+ "923":
2571
+ :state: CA
2572
+ :city: San Bernardino
2573
+ "924":
2574
+ :state: CA
2575
+ :city: San Bernardino
2576
+ "925":
2577
+ :state: CA
2578
+ :city: Riverside
2579
+ "926":
2580
+ :state: CA
2581
+ :city: Santa Ana
2582
+ "927":
2583
+ :state: CA
2584
+ :city: Santa Ana
2585
+ "928":
2586
+ :state: CA
2587
+ :city: Anaheim
2588
+ "930":
2589
+ :state: CA
2590
+ :city: Oxnard
2591
+ "931":
2592
+ :state: CA
2593
+ :city: Santa Barbara
2594
+ "932":
2595
+ :state: CA
2596
+ :city: Bakersfield
2597
+ "933":
2598
+ :state: CA
2599
+ :city: Bakersfield
2600
+ "934":
2601
+ :state: CA
2602
+ :city: Santa Barbara
2603
+ "935":
2604
+ :state: CA
2605
+ :city: Mojave
2606
+ "936":
2607
+ :state: CA
2608
+ :city: Fresno
2609
+ "937":
2610
+ :state: CA
2611
+ :city: Fresno
2612
+ "938":
2613
+ :state: CA
2614
+ :city: Fresno
2615
+ "939":
2616
+ :state: CA
2617
+ :city: Salinas
2618
+ "940":
2619
+ :state: CA
2620
+ :city: San Francisco
2621
+ "941":
2622
+ :state: CA
2623
+ :city: San Francisco
2624
+ "942":
2625
+ :state: CA
2626
+ :city: Sacramento
2627
+ "943":
2628
+ :state: CA
2629
+ :city: Palo Alto
2630
+ "944":
2631
+ :state: CA
2632
+ :city: San Mateo
2633
+ "945":
2634
+ :state: CA
2635
+ :city: Oakland
2636
+ "946":
2637
+ :state: CA
2638
+ :city: Oakland
2639
+ "947":
2640
+ :state: CA
2641
+ :city: Berkeley
2642
+ "948":
2643
+ :state: CA
2644
+ :city: Richmond
2645
+ "949":
2646
+ :state: CA
2647
+ :city: North Bay
2648
+ "950":
2649
+ :state: CA
2650
+ :city: San Jose
2651
+ "951":
2652
+ :state: CA
2653
+ :city: San Jose
2654
+ "952":
2655
+ :state: CA
2656
+ :city: Stockton
2657
+ "953":
2658
+ :state: CA
2659
+ :city: Stockton
2660
+ "954":
2661
+ :state: CA
2662
+ :city: North Bay
2663
+ "955":
2664
+ :state: CA
2665
+ :city: Eureka
2666
+ "956":
2667
+ :state: CA
2668
+ :city: Sacramento
2669
+ "957":
2670
+ :state: CA
2671
+ :city: Sacramento
2672
+ "958":
2673
+ :state: CA
2674
+ :city: Sacramento
2675
+ "959":
2676
+ :state: CA
2677
+ :city: Marysville
2678
+ "960":
2679
+ :state: CA
2680
+ :city: Redding
2681
+ "961":
2682
+ :state: CA
2683
+ :city: Reno (NV)
2684
+ "962":
2685
+ :state: AP
2686
+ :city: Military
2687
+ "963":
2688
+ :state: AP
2689
+ :city: Military
2690
+ "964":
2691
+ :state: AP
2692
+ :city: Military
2693
+ "965":
2694
+ :state: AP
2695
+ :city: Military
2696
+ "966":
2697
+ :state: AP
2698
+ :city: Military
2699
+ "967":
2700
+ :state: HI
2701
+ :city: Honolulu
2702
+ "968":
2703
+ :state: HI
2704
+ :city: Honolulu
2705
+ "969":
2706
+ :state: GU
2707
+ :city: Barrigada
2708
+ "970":
2709
+ :state: OR
2710
+ :city: Portland
2711
+ "971":
2712
+ :state: OR
2713
+ :city: Portland
2714
+ "972":
2715
+ :state: OR
2716
+ :city: Portland
2717
+ "973":
2718
+ :state: OR
2719
+ :city: Salem
2720
+ "974":
2721
+ :state: OR
2722
+ :city: Eugene
2723
+ "975":
2724
+ :state: OR
2725
+ :city: Medford
2726
+ "976":
2727
+ :state: OR
2728
+ :city: Klamath Falls
2729
+ "977":
2730
+ :state: OR
2731
+ :city: Bend
2732
+ "978":
2733
+ :state: OR
2734
+ :city: Pendleton
2735
+ "979":
2736
+ :state: OR
2737
+ :city: Boise (ID)
2738
+ "980":
2739
+ :state: WA
2740
+ :city: Seattle
2741
+ "981":
2742
+ :state: WA
2743
+ :city: Seattle
2744
+ "982":
2745
+ :state: WA
2746
+ :city: Everett
2747
+ "983":
2748
+ :state: WA
2749
+ :city: Tacoma
2750
+ "984":
2751
+ :state: WA
2752
+ :city: Tacoma
2753
+ "985":
2754
+ :state: WA
2755
+ :city: Olympia
2756
+ "986":
2757
+ :state: WA
2758
+ :city: Portland (OR)
2759
+ "988":
2760
+ :state: WA
2761
+ :city: Wenatchee
2762
+ "989":
2763
+ :state: WA
2764
+ :city: Yakima
2765
+ "990":
2766
+ :state: WA
2767
+ :city: Spokane
2768
+ "991":
2769
+ :state: WA
2770
+ :city: Spokane
2771
+ "992":
2772
+ :state: WA
2773
+ :city: Spokane
2774
+ "993":
2775
+ :state: WA
2776
+ :city: Pasco
2777
+ "994":
2778
+ :state: WA
2779
+ :city: Lewiston (ID)
2780
+ "995":
2781
+ :state: AK
2782
+ :city: Anchorage
2783
+ "996":
2784
+ :state: AK
2785
+ :city: Anchorage
2786
+ "997":
2787
+ :state: AK
2788
+ :city: Fairbanks
2789
+ "998":
2790
+ :state: AK
2791
+ :city: Juneau
2792
+ "999":
2793
+ :state: AK
2794
+ :city: Ketchikan