-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelections.csv
We can't make this file beautiful and searchable because it's too large.
3196 lines (3196 loc) · 856 KB
/
elections.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
fips,area_name,state_abbreviation,PST045214,PST040210,PST120214,POP010210,AGE135214,AGE295214,AGE775214,SEX255214,RHI125214,RHI225214,RHI325214,RHI425214,RHI525214,RHI625214,RHI725214,RHI825214,POP715213,POP645213,POP815213,EDU635213,EDU685213,VET605213,LFE305213,HSG010214,HSG445213,HSG096213,HSG495213,HSD410213,HSD310213,INC910213,INC110213,PVY020213,BZA010213,BZA110213,BZA115213,NES010213,SBO001207,SBO315207,SBO115207,SBO215207,SBO515207,SBO415207,SBO015207,MAN450207,WTN220207,RTN130207,RTN131207,AFN120207,BPS030214,LND110210,POP060210
0,United States,,318857056,308758105,3.3,308745538,6.2,23.1,14.5,50.8,77.4,13.2,1.2,5.4,0.2,2.5,17.4,62.1,84.9,12.9,20.7,86.0,28.8,21263779,25.5,133957180,64.9,26.0,176700,115610216,2.63,28155,53046,15.4,7488353,118266253,2.0,23005620,27092908,7.1,0.9,5.7,0.1,8.3,28.8,5319456312,4174286516,3917663456,12990,613795732,1046363,3531905.43,87.4
1000,Alabama,,4849377,4780127,1.4,4779736,6.1,22.8,15.3,51.5,69.7,26.7,0.7,1.3,0.1,1.5,4.1,66.2,85.0,3.5,5.2,83.1,22.6,388865,24.2,2207912,69.7,15.9,122500,1838683,2.55,23680,43253,18.6,97578,1603100,1.1,311578,382350,14.8,0.8,1.8,0.1,1.2,28.1,112858843,52252752,57344851,12364,6426342,13369,50645.33,94.4
1001,Autauga County,AL,55395,54571,1.5,54571,6.0,25.2,13.8,51.4,77.9,18.7,0.5,1.1,0.1,1.8,2.7,75.6,85.0,1.6,3.5,85.6,20.9,5922,26.2,22751,76.8,8.3,136200,20071,2.71,24571,53682,12.1,817,10120,2.1,2947,4067,15.2,0.0,1.3,0.0,0.7,31.7,0,0,598175,12003,88157,131,594.44,91.8
1003,Baldwin County,AL,200111,182265,9.8,182265,5.6,22.2,18.7,51.2,87.1,9.6,0.7,0.9,0.1,1.6,4.6,83.0,82.1,3.6,5.5,89.1,27.7,19346,25.9,107374,72.6,24.4,168600,73283,2.52,26766,50221,13.9,4871,54988,3.7,16508,19035,2.7,0.4,1.0,0.0,1.3,27.3,1410273,0,2966489,17166,436955,1384,1589.78,114.6
1005,Barbour County,AL,26887,27457,-2.1,27457,5.7,21.2,16.5,46.6,50.2,47.6,0.6,0.5,0.2,0.9,4.5,46.6,84.8,2.9,5.0,73.7,13.4,2120,24.6,11799,67.7,10.6,89200,9200,2.66,16829,32911,26.7,464,6611,-5.6,1546,1667,0.0,0.0,0.0,0.0,0.0,27.0,0,0,188337,6334,0,8,884.88,31.0
1007,Bibb County,AL,22506,22919,-1.8,22915,5.3,21.0,14.8,45.9,76.3,22.1,0.4,0.2,0.1,0.9,2.1,74.5,86.6,1.2,2.1,77.5,12.1,1327,27.6,8978,79.0,7.3,90500,7091,3.03,17427,36447,18.1,275,3145,7.5,1126,1385,14.9,0.0,0.0,0.0,0.0,0.0,0,0,124707,5804,10757,19,622.58,36.8
1009,Blount County,AL,57719,57322,0.7,57322,6.1,23.6,17.0,50.5,96.0,1.8,0.6,0.3,0.1,1.2,8.7,87.8,88.7,4.3,7.3,77.0,12.1,4540,33.9,23826,81.0,4.5,117100,21108,2.7,20730,44145,15.8,660,6798,3.4,3563,4458,0.0,0.0,0.0,0.0,0.0,23.2,341544,0,319700,5622,20941,3,644.78,88.9
1011,Bullock County,AL,10764,10915,-1.4,10914,6.3,21.4,14.9,45.3,26.9,70.1,0.8,0.3,0.7,1.1,7.5,22.1,84.7,5.4,5.2,67.8,12.5,636,26.9,4461,74.3,8.7,70600,3741,2.73,18628,32033,21.6,112,0,0.0,470,417,0.0,0.0,0.0,0.0,0.0,38.8,0,0,43810,3995,3670,1,622.81,17.5
1013,Butler County,AL,20296,20946,-3.1,20947,6.1,23.6,18.0,53.6,53.9,44.0,0.4,0.9,0.0,0.8,1.2,53.1,94.6,0.8,1.7,76.3,14.0,1497,24.0,9916,70.3,13.3,74700,8235,2.47,17403,29918,28.4,393,5711,2.7,1095,1769,0.0,0.0,3.3,0.0,0.0,0.0,399132,56712,229277,11326,28427,2,776.83,27.0
1015,Calhoun County,AL,115916,118586,-2.3,118572,5.7,22.2,16.0,51.8,75.8,21.1,0.5,0.9,0.1,1.7,3.5,72.9,83.6,2.4,4.5,78.6,16.1,11385,22.5,53289,68.7,13.8,100600,45196,2.54,20828,39962,21.9,2311,34871,0.6,6352,8713,7.2,0.0,1.6,0.0,0.5,24.7,2679991,0,1542981,13678,186533,114,605.87,195.7
1017,Chambers County,AL,34076,34170,-0.3,34215,5.9,21.4,18.3,52.3,58.3,39.5,0.3,0.8,0.1,1.1,2.0,56.8,85.8,1.1,1.3,75.1,11.8,2691,24.6,16894,67.9,11.1,81200,13722,2.46,19291,32402,24.1,515,6431,-0.2,2354,1981,0.0,0.0,0.0,0.0,0.0,29.3,667283,0,264650,7620,23237,8,596.53,57.4
1019,Cherokee County,AL,26037,25986,0.2,25989,4.8,20.4,20.9,50.2,93.0,4.6,0.5,0.3,0.0,1.6,1.5,91.6,90.6,0.7,1.1,78.3,12.8,2174,26.9,16241,76.1,4.6,99400,11656,2.2,22030,34907,21.2,379,3864,5.5,1560,2180,0.0,0.0,0.0,0.0,0.0,14.5,307439,62293,186321,7613,13948,2,553.7,46.9
1021,Chilton County,AL,43931,43631,0.7,43643,6.4,24.2,15.2,50.8,87.1,10.6,0.5,0.4,0.2,1.2,7.7,80.3,88.8,5.2,7.4,76.0,12.9,3308,31.8,19221,74.5,4.1,102600,16232,2.67,20701,41250,19.5,703,7396,8.8,2719,0,0.0,0.0,0.0,0.0,0.0,0.0,0,155139,359910,8496,34073,78,692.85,63.0
1023,Choctaw County,AL,13323,13858,-3.9,13859,4.9,20.6,20.8,52.5,56.6,42.4,0.2,0.3,0.0,0.5,0.8,56.1,91.4,0.3,1.3,75.2,11.8,938,33.4,7231,83.7,4.0,58200,5518,2.45,20323,33941,21.5,255,2900,1.4,809,1102,26.2,0.0,0.0,0.0,0.0,44.1,0,52904,84633,5969,11345,0,913.5,15.2
1025,Clarke County,AL,24945,25840,-3.5,25833,5.6,22.6,18.0,52.8,54.0,44.2,0.4,0.5,0.0,0.8,1.3,53.1,92.5,0.3,1.3,78.3,11.2,1583,25.5,12583,72.9,6.8,85600,9631,2.63,18979,29357,29.3,586,6648,3.7,1640,2374,0.0,0.0,0.0,0.0,0.0,28.6,571454,85803,344311,13034,23596,11,1238.47,20.9
1027,Clay County,AL,13552,13932,-2.7,13932,5.3,21.6,19.4,50.6,82.8,14.5,0.6,0.3,0.0,1.8,3.4,79.7,88.3,2.2,3.3,76.5,9.2,1076,30.7,6736,75.0,10.0,79900,5649,2.38,18694,34002,19.0,190,2993,4.6,792,1005,0.0,0.0,0.0,0.0,0.0,0.0,330878,0,70558,5123,4352,0,603.96,23.1
1029,Cleburne County,AL,15080,14972,0.7,14972,5.7,23.3,18.4,50.4,94.5,3.6,0.4,0.2,0.1,1.2,2.5,92.3,89.1,1.5,2.3,76.0,9.0,989,31.4,6690,77.6,6.3,100800,5601,2.64,19108,38019,18.4,152,1548,-4.8,930,1280,0.0,0.0,0.0,0.0,0.0,17.7,0,5888,133407,9080,4134,1,560.1,26.7
1031,Coffee County,AL,50909,49948,1.9,49948,6.1,23.7,15.9,50.5,76.4,17.7,1.4,1.6,0.4,2.5,6.4,71.3,83.3,5.1,7.5,82.4,22.5,6066,21.3,22852,69.9,13.5,131000,18820,2.65,23380,43768,18.6,954,12762,0.3,2602,4032,6.0,0.0,1.3,0.0,0.7,29.3,613758,131594,639623,13665,50080,58,678.97,73.6
1033,Colbert County,AL,54543,54428,0.2,54428,5.7,21.7,18.5,51.8,80.8,16.3,0.6,0.5,0.1,1.7,2.6,78.8,87.2,2.0,2.6,83.5,17.7,4376,22.7,26192,72.1,12.3,99300,22260,2.42,21572,39077,17.9,1226,19820,6.2,3630,4757,0.0,0.0,0.0,0.0,0.0,22.8,2083166,351388,821284,15040,61935,143,592.62,91.8
1035,Conecuh County,AL,12670,13228,-4.2,13228,5.5,21.4,20.4,51.9,52.1,46.2,0.4,0.1,0.0,1.2,1.8,51.1,96.9,0.6,2.2,77.3,8.8,1101,27.2,7055,79.1,7.2,69600,4994,2.61,15605,24658,32.7,194,2197,-1.5,756,980,0.0,0.0,0.0,0.0,0.0,23.0,183544,76736,71232,5430,8667,3,850.16,15.6
1037,Coosa County,AL,10886,11758,-7.4,11539,4.8,18.3,18.5,49.5,66.1,31.8,0.6,0.2,0.2,1.2,2.3,64.8,87.2,1.8,3.3,75.0,9.8,934,30.2,6458,83.0,3.0,75100,4506,2.42,18493,37277,20.9,93,992,3.9,367,545,0.0,0.0,0.0,0.0,0.0,0.0,89585,31647,20531,1904,575,0,650.93,17.7
1039,Covington County,AL,37914,37765,0.4,37765,5.9,22.1,19.8,51.6,84.3,13.0,0.6,0.5,0.0,1.6,1.6,83.1,86.7,1.4,2.1,78.4,14.2,3433,23.3,18778,75.1,6.0,88800,15041,2.48,20391,35869,20.0,834,10824,0.7,2201,2957,0.0,0.0,0.0,0.0,0.0,0.0,561168,338692,424873,11544,30271,8,1030.46,36.6
1041,Crenshaw County,AL,13977,13906,0.5,13906,6.1,22.7,18.0,51.1,72.0,24.0,0.5,1.8,0.1,1.6,1.7,70.6,86.3,2.3,3.2,76.7,12.7,1098,30.3,6708,69.9,8.0,70800,5601,2.46,21343,36275,19.1,211,3139,1.0,811,1027,25.8,0.0,0.0,0.0,0.0,30.2,270809,131874,75456,5491,5640,2,608.84,22.8
1043,Cullman County,AL,81289,80410,1.1,80406,5.9,22.5,17.6,50.5,96.2,1.4,0.6,0.5,0.0,1.2,4.4,92.1,87.0,3.0,4.6,79.8,14.8,6167,26.4,37131,75.0,8.2,106100,31342,2.53,20760,38847,18.8,1714,22185,3.6,5549,7873,1.1,0.0,1.1,0.0,0.0,23.9,1393437,0,867058,10757,102291,77,734.84,109.4
1045,Dale County,AL,49484,50251,-1.5,50251,6.3,23.6,15.4,50.5,75.2,19.7,0.8,1.3,0.1,2.8,6.1,70.2,78.4,3.7,6.3,84.1,17.0,6730,20.9,22832,61.1,13.6,99400,19345,2.52,22685,44889,17.4,766,11924,-1.6,2444,2951,0.0,0.0,0.0,0.0,0.0,0.0,114991,69341,332503,6889,37229,17,561.15,89.6
1047,Dallas County,AL,41711,43820,-4.8,43820,6.7,25.2,15.6,53.7,29.0,69.5,0.2,0.5,0.0,0.7,1.0,28.5,86.7,0.8,1.3,77.5,14.2,2897,22.0,20240,60.9,19.3,75700,16173,2.63,17245,26519,35.5,757,10420,-1.0,2179,3148,49.1,0.0,4.4,0.0,0.0,28.8,1174763,0,437359,10223,33708,17,978.7,44.8
1049,DeKalb County,AL,71065,71115,-0.1,71109,6.2,24.7,15.7,50.7,92.4,2.1,2.1,0.4,0.7,2.2,14.2,80.6,90.9,7.5,11.2,70.6,10.7,4371,23.3,31035,76.3,6.7,93400,24923,2.82,18149,37851,19.9,1082,16841,3.9,4679,5908,0.0,0.8,0.6,0.0,0.0,25.8,1831626,0,635185,9303,67915,31,777.09,91.5
1051,Elmore County,AL,80977,79296,2.1,79303,5.9,23.0,14.0,51.5,76.0,21.2,0.4,0.7,0.1,1.6,2.7,73.7,85.4,2.1,3.6,86.6,21.0,8364,28.2,33326,75.5,8.1,144600,28324,2.62,23856,54766,13.4,1135,14056,-2.3,4850,6513,9.1,0.0,0.0,0.0,0.0,28.3,766344,104885,618313,7982,47884,259,618.49,128.2
1053,Escambia County,AL,37733,38319,-1.5,38319,6.1,22.0,16.7,48.8,62.2,32.4,3.4,0.3,0.1,1.7,2.1,60.6,93.4,0.6,1.4,76.2,11.7,2995,23.5,16402,72.5,9.0,84100,13681,2.59,16540,30687,25.4,723,9977,1.0,2111,2765,9.0,3.2,0.0,0.0,0.0,21.3,665336,93125,379587,10089,31909,26,945.08,40.5
1055,Etowah County,AL,103531,104427,-0.9,104430,5.7,22.1,17.3,51.6,81.2,15.5,0.5,0.8,0.3,1.6,3.7,78.4,85.0,2.2,3.1,81.8,14.8,8638,23.9,47505,72.4,12.1,100000,40217,2.55,20204,38013,19.0,2008,29796,-0.5,6988,9147,6.1,0.0,0.0,0.0,0.6,25.7,1252962,518424,1114841,10801,137966,79,534.99,195.2
1057,Fayette County,AL,16874,17241,-2.1,17241,5.4,21.7,19.6,50.5,86.2,11.9,0.4,0.3,0.0,1.1,1.4,85.0,87.8,0.6,0.8,74.9,13.2,1221,27.5,8404,74.9,8.7,71400,6956,2.41,18494,33838,19.9,306,3323,-3.8,1073,1378,5.1,0.0,0.0,0.0,0.0,24.3,186247,22463,130362,7433,10869,0,627.66,27.5
1059,Franklin County,AL,31601,31709,-0.3,31704,6.6,24.3,15.9,50.3,91.9,4.6,1.5,0.4,0.2,1.5,16.1,78.0,86.4,8.4,13.2,72.5,11.0,1860,26.2,14048,69.5,12.0,82300,12437,2.52,18888,36415,21.9,510,9369,-8.0,1863,2357,0.0,0.0,0.0,0.0,0.0,23.2,671954,67398,269096,8786,25389,13,633.82,50.0
1061,Geneva County,AL,26712,26790,-0.3,26790,5.8,22.2,19.2,50.8,87.1,9.7,1.0,0.4,0.1,1.7,3.6,84.1,82.7,1.8,3.0,77.2,10.4,2336,25.6,12646,72.1,5.6,78100,10945,2.43,20199,35625,21.2,400,3791,2.8,1584,1736,0.0,0.0,0.0,0.0,0.0,0.0,153342,231687,170044,6612,10402,8,574.41,46.6
1063,Greene County,AL,8553,9045,-5.4,9045,5.9,23.3,17.9,52.5,18.5,80.5,0.2,0.2,0.0,0.6,1.0,17.9,92.4,0.2,1.4,76.2,12.8,502,28.0,4988,73.2,8.9,72700,3264,2.72,14930,24226,32.9,99,1379,16.3,506,657,60.3,0.0,0.0,0.0,0.0,36.1,0,0,33639,3697,1226,4,647.11,14.0
1065,Hale County,AL,15184,15760,-3.7,15760,6.2,23.3,17.3,52.8,40.8,58.1,0.2,0.3,0.0,0.6,1.3,40.0,90.6,1.2,2.7,77.4,12.8,995,27.1,7639,78.0,6.1,79900,5969,2.56,18812,30051,26.6,195,1966,0.2,762,882,0.0,0.0,0.0,0.0,0.0,0.0,0,0,86735,4794,3136,8,643.94,24.5
1067,Henry County,AL,17190,17302,-0.6,17302,5.5,21.2,20.8,51.8,70.4,27.3,0.3,0.7,0.0,1.2,2.6,68.4,91.9,2.9,5.0,80.1,16.6,1497,26.0,8961,77.7,4.6,97000,7001,2.44,21924,41650,14.4,293,2754,-2.4,1034,1091,0.0,0.0,0.0,0.0,0.0,18.2,425821,0,92574,5559,7415,17,561.75,30.8
1069,Houston County,AL,104193,101547,2.6,101547,6.2,23.7,16.1,52.1,70.0,26.7,0.5,0.9,0.1,1.8,3.3,67.3,86.3,2.4,4.4,83.9,19.7,9254,20.8,46442,64.6,14.6,122300,39250,2.58,23316,40948,18.0,2702,43139,0.5,6819,10151,12.1,0.0,1.4,0.0,1.3,25.5,1310677,0,1909615,19608,177224,311,579.82,175.1
1071,Jackson County,AL,52665,53226,-1.1,53227,5.4,21.7,18.6,50.7,91.5,3.6,1.6,0.5,0.1,2.6,2.9,89.4,91.2,2.2,3.4,74.6,13.0,4000,26.4,24755,75.2,6.9,93400,20765,2.53,20486,37634,16.0,856,12440,4.2,3098,4337,0.0,4.3,0.0,0.0,0.0,26.8,1525396,0,410988,7784,39315,39,1077.87,49.4
1073,Jefferson County,AL,660793,658350,0.4,658466,6.6,23.1,14.3,52.8,54.0,42.9,0.3,1.6,0.1,1.1,3.8,50.8,83.8,4.1,5.9,87.4,30.0,46613,23.4,305040,64.7,24.2,140800,259634,2.48,26906,45429,18.0,16232,319199,2.0,44987,55470,23.4,0.4,2.4,0.0,1.3,29.8,10260950,13756797,11066328,16730,1268154,2280,1111.28,592.5
1075,Lamar County,AL,14086,14564,-3.3,14564,5.0,21.7,20.5,51.2,87.1,11.3,0.2,0.1,0.0,1.4,1.4,85.8,87.8,0.6,1.0,76.1,9.5,1127,25.7,7326,71.5,9.0,66800,6084,2.32,19026,36028,22.3,241,2943,4.6,932,1340,0.0,0.0,0.0,0.0,0.0,25.8,234908,0,70780,4887,6008,0,604.85,24.1
1077,Lauderdale County,AL,93096,92709,0.4,92709,5.2,20.5,18.2,52.1,86.7,10.4,0.5,0.9,0.1,1.5,2.4,84.7,86.1,2.1,3.0,83.8,21.1,7000,24.5,44353,69.9,15.4,114300,38458,2.36,23510,42844,17.2,1967,25839,3.4,6576,8317,5.5,0.0,0.8,0.0,0.0,27.6,1083658,514555,1131585,12783,136587,54,667.7,138.8
1079,Lawrence County,AL,33477,34339,-2.5,34339,5.3,21.7,16.8,51.3,78.1,11.4,5.8,0.2,0.0,4.4,2.2,76.4,90.5,1.0,1.9,77.1,11.9,1891,27.8,15171,80.1,5.9,94200,13382,2.52,20181,38551,17.5,407,4232,-6.3,1990,2289,0.0,0.0,0.0,0.0,1.1,0.0,0,23787,166958,4889,22719,0,690.68,49.7
1081,Lee County,AL,154255,140296,9.9,140247,5.8,21.6,10.3,50.7,70.9,23.7,0.4,3.3,0.1,1.5,3.9,67.7,76.4,5.1,6.9,86.7,32.5,10045,21.4,65566,61.7,23.8,146900,55864,2.49,23506,43542,22.0,2500,38782,3.4,9361,10319,16.2,0.0,2.0,0.4,0.0,28.2,0,0,1451634,11099,201205,943,607.54,230.8
1083,Limestone County,AL,90787,82782,9.7,82782,5.9,23.4,13.8,49.7,82.0,13.5,0.8,1.4,0.2,2.1,5.8,77.2,88.1,4.3,6.4,81.5,22.7,6964,26.3,35445,76.6,8.9,134500,31794,2.56,25020,48619,14.7,1308,15305,1.3,5417,5914,4.8,1.1,0.8,0.0,1.3,25.8,947299,248292,723200,9785,68140,140,559.94,147.8
1085,Lowndes County,AL,10580,11299,-6.4,11299,6.7,23.1,17.4,52.3,25.8,72.9,0.3,0.2,0.0,0.8,1.2,25.3,90.4,0.2,0.7,73.9,14.4,626,30.4,5089,74.9,9.5,71400,4212,2.61,18368,26230,26.7,98,1835,-1.3,685,682,57.3,0.0,0.0,0.0,0.0,35.2,1156888,0,103636,8184,595,5,715.91,15.8
1087,Macon County,AL,19425,21450,-9.4,21452,4.7,18.3,16.8,54.2,16.7,81.5,0.2,0.3,0.0,1.4,1.5,16.2,83.8,1.1,4.2,80.0,19.6,1662,23.1,10217,65.7,15.5,75700,8107,2.29,16826,30724,27.3,217,5381,3.2,1166,1584,66.7,0.0,0.0,0.0,0.0,0.0,0,0,87509,3932,19354,1,608.89,35.2
1089,Madison County,AL,350299,334811,4.6,334811,5.8,22.4,13.7,51.2,69.4,24.6,0.8,2.6,0.1,2.5,4.7,65.5,84.7,5.4,7.1,90.0,38.5,34203,21.0,154452,69.3,21.4,164500,132975,2.5,31933,58434,12.8,8095,153304,0.8,22681,26467,12.3,1.4,3.5,0.0,1.3,29.2,8650700,2970410,4438653,14145,596324,2677,801.59,417.7
1091,Marengo County,AL,20110,21029,-4.4,21027,6.0,23.0,18.6,53.2,47.4,51.0,0.3,0.3,0.2,0.8,2.4,45.6,87.4,0.7,1.2,83.7,17.4,1462,22.4,10207,71.3,9.1,89600,8464,2.42,22072,35079,24.0,478,5876,1.8,1019,1604,0.0,0.0,0.0,0.0,0.0,21.4,542135,64589,197221,9274,16684,0,976.88,21.5
1093,Marion County,AL,30271,30777,-1.6,30776,5.4,21.2,20.1,50.4,93.9,4.2,0.3,0.3,0.1,1.2,2.5,91.7,86.6,1.0,2.5,74.6,9.5,2287,24.0,14704,75.9,9.6,78700,12700,2.34,19576,32888,20.9,547,8006,5.0,1828,2224,0.0,0.0,0.0,0.0,0.0,0.0,794483,162519,209924,7116,19081,0,742.29,41.5
1095,Marshall County,AL,94636,93019,1.7,93019,6.6,24.5,16.3,50.9,93.7,2.7,1.1,0.7,0.3,1.6,12.9,82.3,86.1,8.0,11.5,76.2,15.2,7192,23.9,40328,71.9,9.5,114000,34250,2.7,20382,39526,19.5,1795,30306,0.1,6781,8700,0.0,0.0,0.9,0.0,1.0,24.9,3029491,1138701,1357696,15434,103539,28,565.84,164.4
1097,Mobile County,AL,415123,413143,0.5,412992,6.7,24.0,14.5,52.2,60.1,35.3,1.0,2.0,0.1,1.5,2.8,57.8,85.8,3.2,5.0,83.9,20.7,33586,23.9,181611,66.6,17.4,124300,155178,2.6,22501,43028,19.8,8567,147574,-0.4,29500,34836,18.8,0.0,2.4,0.0,1.2,29.5,12407151,3268730,5225494,12895,562436,746,1229.44,335.9
1099,Monroe County,AL,21947,23070,-4.9,23068,5.5,23.4,17.9,52.6,55.5,41.1,1.3,0.4,0.0,1.6,1.2,54.7,91.8,0.9,1.3,76.1,10.6,1237,23.3,11274,74.0,6.8,76900,8333,2.71,15749,29203,28.6,393,5029,-1.8,1265,2257,23.6,0.0,0.0,0.0,0.0,24.5,1251911,92815,212618,9342,14796,0,1025.68,22.5
1101,Montgomery County,AL,226189,229363,-1.4,229363,6.8,24.0,13.3,52.6,38.9,56.7,0.3,2.6,0.1,1.3,3.4,36.3,78.1,4.3,5.7,85.6,31.5,20008,19.3,103434,61.4,22.4,122900,88844,2.49,24975,44790,21.2,5533,101517,1.2,15129,21463,35.6,0.7,2.4,0.0,1.3,30.9,7956627,3275567,3238175,14351,402861,734,784.25,292.5
1103,Morgan County,AL,119607,119486,0.1,119490,6.0,23.1,15.9,50.8,83.5,12.5,1.1,0.7,0.1,2.0,7.9,76.6,86.4,5.1,8.0,81.4,19.9,9518,23.7,51496,71.5,15.1,120500,46192,2.55,23764,44800,15.7,2589,42569,2.0,7506,10034,5.9,1.8,1.0,0.0,0.0,21.3,0,1213925,1637628,14222,154700,136,579.34,206.3
1105,Perry County,AL,9826,10581,-7.1,10591,5.5,22.4,17.9,53.4,31.1,67.5,0.2,0.4,0.1,0.7,1.3,30.3,92.2,0.5,0.8,70.2,10.4,670,26.8,4691,67.0,11.0,58000,3400,2.84,13716,28209,25.6,125,1570,4.0,488,854,55.7,0.0,0.0,0.0,0.0,41.3,0,10360,34121,3181,2632,0,719.66,14.7
1107,Pickens County,AL,20365,19746,3.1,19746,5.2,20.5,17.8,50.6,58.1,40.2,0.2,0.3,0.4,0.9,4.1,54.7,91.9,0.3,2.6,79.7,11.0,1610,29.3,9441,72.0,10.7,81900,7926,2.42,17153,28741,27.2,266,2707,-1.2,1073,1268,0.0,0.0,0.0,0.0,0.0,10.0,107619,36581,113222,5805,6302,3,881.41,22.4
1109,Pike County,AL,33389,32899,1.5,32899,5.7,19.4,14.1,51.9,58.5,36.9,0.7,2.2,0.1,1.6,2.2,57.1,79.3,4.0,5.8,81.0,23.0,2516,18.7,15807,57.8,18.5,101000,12959,2.4,19715,33090,27.6,628,11009,1.4,1970,2527,0.0,0.0,0.0,0.0,0.0,0.0,0,0,367926,12189,45692,44,672.09,48.9
1111,Randolph County,AL,22539,22914,-1.6,22913,5.7,22.0,19.6,51.4,77.6,20.2,0.5,0.3,0.1,1.4,2.9,75.0,87.9,1.7,3.4,72.6,11.1,1598,26.8,11928,72.3,5.7,88600,9013,2.48,19830,35213,24.5,340,3481,0.0,1388,1550,7.1,0.0,0.0,0.0,0.0,0.0,401677,26751,161410,7209,9241,0,580.55,39.5
1113,Russell County,AL,59608,52949,12.6,52947,7.6,25.3,12.5,51.3,53.1,42.9,0.6,0.8,0.2,2.4,5.0,49.5,81.7,2.2,5.0,80.4,16.0,5977,23.6,26787,61.3,19.8,104400,21142,2.6,19678,36143,22.0,783,10489,-1.9,3523,3823,33.9,0.0,0.0,0.0,1.0,32.4,0,0,428236,8526,56392,244,641.14,82.6
1115,St. Clair County,AL,86697,83593,3.7,83593,6.1,23.0,15.3,50.1,87.9,9.5,0.4,0.8,0.1,1.3,2.3,85.9,86.8,1.8,2.5,82.0,15.5,6928,30.0,35844,81.5,5.1,134600,31353,2.63,23872,50786,15.2,1266,15265,1.0,5172,6061,2.4,1.0,1.4,0.0,0.0,28.1,985409,317458,581324,7404,70254,80,631.9,132.3
1117,Shelby County,AL,206655,195218,5.9,195085,6.0,24.4,13.0,51.2,84.0,12.1,0.4,2.2,0.0,1.3,6.0,78.5,86.6,6.0,8.3,91.2,40.3,13991,29.0,83498,79.0,12.1,193000,74144,2.64,33313,68770,7.9,4845,76137,2.1,15634,18393,5.7,0.6,0.0,0.0,2.0,30.5,1723017,4385596,2520488,13737,301893,896,784.93,248.5
1119,Sumter County,AL,13166,13763,-4.3,13763,4.8,19.7,16.3,55.0,25.5,73.5,0.1,0.4,0.0,0.5,1.1,24.8,87.9,0.9,1.9,75.5,14.9,706,23.4,6748,64.7,16.3,74100,5060,2.57,14156,22186,38.0,202,2966,8.1,823,730,57.5,0.0,0.0,0.0,0.0,0.0,0,76499,59636,4494,8199,3,903.89,15.2
1121,Talladega County,AL,81322,82291,-1.2,82291,5.5,22.3,16.1,51.4,65.2,32.5,0.4,0.4,0.0,1.5,2.3,63.4,85.0,1.6,2.8,78.9,13.0,6691,23.9,37177,71.2,11.6,92600,31486,2.5,19410,35439,22.9,1230,23763,4.8,3988,4872,0.0,0.0,1.5,0.0,0.0,26.6,9054200,0,730728,9113,67078,65,736.78,111.7
1123,Tallapoosa County,AL,41165,41618,-1.1,41616,5.8,21.1,19.6,51.4,70.6,27.3,0.4,0.5,0.0,1.2,2.3,68.9,86.0,1.9,2.9,79.2,16.3,3631,23.9,22029,72.2,10.1,94900,16373,2.49,21434,39130,19.8,721,10771,4.1,2478,3528,13.0,0.0,0.0,0.0,0.0,35.0,0,0,362304,8881,28222,16,716.52,58.1
1125,Tuscaloosa County,AL,202212,194653,3.9,194656,6.0,21.1,11.7,51.7,66.0,31.0,0.3,1.5,0.1,1.1,3.3,63.2,81.2,3.5,5.8,86.6,27.0,12198,21.8,87795,64.4,27.9,153300,67882,2.76,22637,45408,18.9,4009,72917,3.0,11107,14729,13.3,0.9,0.0,0.0,0.0,22.5,10852479,760623,2445850,13664,327429,1375,1321.76,147.3
1127,Walker County,AL,65471,67023,-2.3,67023,5.8,22.1,18.2,51.4,91.3,6.4,0.5,0.4,0.1,1.3,2.3,89.4,85.3,1.2,1.4,76.4,10.5,5353,29.3,30669,75.0,5.7,82100,25751,2.55,20698,37566,20.9,1250,15669,4.1,3509,5365,0.0,0.0,0.6,0.0,0.0,23.8,314804,256377,903643,13162,73895,8,791.19,84.7
1129,Washington County,AL,16834,17583,-4.3,17581,4.9,22.5,17.0,51.2,66.0,24.6,7.9,0.1,0.1,1.3,1.4,65.1,91.3,0.9,1.9,80.5,9.5,1025,31.8,8377,86.5,2.0,83900,6620,2.59,20395,42156,18.4,217,5756,-4.7,1031,1288,0.0,0.0,0.0,0.0,0.0,25.6,1153449,32856,76343,4458,0,2,1080.21,16.3
1131,Wilcox County,AL,11098,11665,-4.9,11670,5.7,24.8,17.7,52.4,28.1,71.0,0.2,0.1,0.0,0.6,1.0,27.6,93.8,0.1,0.9,76.1,11.1,462,21.6,5615,74.5,5.7,67000,3866,2.9,13379,23642,39.2,189,1738,-1.1,613,928,66.2,0.0,0.0,0.0,0.0,37.6,0,21337,75708,6018,12949,0,888.5,13.1
1133,Winston County,AL,24150,24483,-1.4,24484,5.0,20.9,20.0,50.9,96.3,1.0,0.9,0.3,0.2,1.4,2.9,94.0,83.4,1.1,1.8,72.7,10.4,1721,27.0,13406,74.9,5.3,82500,9489,2.52,18995,32900,24.0,439,6321,-4.3,1641,2380,0.0,0.0,0.0,0.0,0.0,19.6,797845,165638,166709,6853,16564,7,612.98,39.9
2000,Alaska,,736732,710249,3.7,710231,7.4,25.3,9.4,47.4,66.9,3.9,14.8,6.1,1.3,7.1,6.8,61.9,80.3,7.0,16.2,91.6,27.5,71004,18.8,308583,63.8,24.0,241800,251899,2.75,32651,70760,9.9,20519,266627,3.3,52991,68728,1.5,10.0,3.1,0.3,0.0,25.9,8204030,4563605,9303387,13635,1851293,1518,570640.95,1.2
2013,Aleutians East Borough,AK,3360,3141,7.0,3141,2.8,10.1,6.6,30.9,22.8,12.0,20.5,40.7,0.6,3.4,13.2,11.5,77.4,56.6,63.7,78.5,12.0,99,4.8,747,54.7,15.7,118500,435,2.46,26535,61250,16.7,59,0,0.0,241,188,0.0,71.8,0.0,0.0,0.0,0.0,0,0,9326,3309,0,0,6981.94,0.4
2016,Aleutians West Census Area,AK,5750,5561,3.4,5561,3.6,12.3,5.4,32.4,37.8,7.6,13.0,34.5,2.3,4.7,14.1,26.9,81.5,34.9,47.4,82.7,13.3,354,6.4,1932,36.4,44.2,218400,1033,3.52,31790,81853,9.2,117,4668,1.9,254,285,0.0,0.0,0.0,0.0,0.0,26.3,634809,62073,46785,9823,14684,2,4390.28,1.3
2020,Anchorage Municipality,AK,301010,291826,3.1,291826,7.4,24.9,8.9,48.6,66.1,6.3,8.2,9.2,2.4,7.8,8.9,59.7,79.5,9.4,17.3,92.5,32.8,30292,19.4,114332,60.6,33.6,282800,105208,2.73,36214,77454,7.9,8609,152377,4.5,19252,26726,2.5,5.7,5.3,0.0,3.1,30.2,0,2914025,4482714,16096,933301,770,1704.68,171.2
2050,Bethel Census Area,AK,17868,17013,5.0,17013,11.1,36.1,6.6,48.3,12.1,0.8,81.7,1.1,0.2,4.1,1.8,11.5,85.2,1.2,66.7,79.5,11.7,909,7.4,5920,64.2,13.0,189600,4358,3.9,18497,51689,22.8,232,3174,0.3,1079,1238,0.0,54.7,0.0,0.0,0.0,20.8,0,3454,96755,5658,4091,11,40570.0,0.4
2060,Bristol Bay Borough,AK,957,997,-4.0,997,5.2,20.1,9.7,44.3,46.1,0.0,35.2,1.0,0.3,17.3,4.3,44.1,83.4,0.6,5.2,91.7,19.4,91,10.2,965,57.3,12.7,175000,384,2.42,37024,79531,7.9,66,299,-7.4,220,250,0.0,0.0,0.0,0.0,0.0,0.0,0,0,12785,12823,13278,2,503.84,2.0
2068,Denali Borough,AK,1921,1826,5.2,1826,4.7,18.8,8.5,45.6,86.0,1.8,3.7,3.6,0.1,4.8,3.7,82.7,82.1,7.4,10.3,88.8,28.1,198,15.2,1760,68.9,9.8,192500,716,2.26,35295,72500,11.4,103,408,0.0,155,316,0.0,0.0,0.0,0.0,0.0,0.0,0,0,11046,6120,37099,0,12751.41,0.1
2070,Dillingham Census Area,AK,4988,4847,2.9,4847,11.0,31.9,7.9,48.6,18.7,0.7,70.4,0.9,0.2,9.1,3.1,17.6,84.2,1.5,39.9,83.7,17.8,214,8.7,2422,57.8,15.2,194000,1339,3.59,21498,54150,18.1,92,1264,-1.2,790,789,0.0,58.3,0.0,0.0,0.0,9.1,0,0,42742,8612,7197,4,18568.78,0.3
2090,Fairbanks North Star Borough,AK,99357,97581,1.8,97581,7.7,24.1,8.0,45.9,77.3,5.4,7.3,3.1,0.5,6.3,7.7,71.3,73.8,5.7,10.3,93.1,29.0,11048,19.2,41684,59.2,24.9,212500,35588,2.67,32143,69223,8.4,2471,27466,2.2,5249,6481,2.0,3.8,3.4,0.0,2.3,32.5,0,0,1574267,16072,221600,54,7338.21,13.3
2100,Haines Borough,AK,2566,2508,2.3,2508,3.7,19.1,16.8,51.0,79.1,0.7,10.4,1.1,0.0,8.8,2.5,77.5,78.8,5.0,7.9,96.4,30.1,282,11.7,1639,64.2,15.0,171900,1245,2.01,31096,52866,7.8,134,635,-0.5,395,489,0.0,0.0,0.0,0.0,0.0,37.2,0,0,16185,6991,6351,6,2318.6,1.1
2105,Hoonah-Angoon Census Area,AK,2082,2149,-3.1,2150,5.2,19.4,16.5,46.5,48.8,0.6,39.5,0.7,0.1,10.3,5.1,47.2,85.9,3.0,13.7,88.4,26.9,172,9.7,1755,63.4,7.3,200500,930,2.23,28806,49545,14.9,71,216,-6.9,287,718,0.0,0.0,0.0,0.0,0.0,20.8,0,0,52012,23610,20660,8,7524.92,0.3
2110,Juneau City and Borough,AK,32406,31275,3.6,31275,5.9,22.1,10.6,48.8,69.9,1.6,11.9,6.2,1.1,9.3,6.5,65.5,81.0,6.5,9.9,95.5,36.7,2739,15.1,13207,64.5,32.2,309900,12099,2.58,37558,81490,6.2,1135,10932,-1.0,2572,3500,1.0,5.2,3.6,0.0,0.0,26.5,0,0,465334,15235,86874,204,2701.93,11.6
2122,Kenai Peninsula Borough,AK,57477,55400,3.7,55400,6.4,23.1,14.2,47.6,84.5,0.8,7.3,1.4,0.3,5.7,4.0,81.4,83.7,2.6,8.2,92.8,23.7,6137,19.1,30698,72.7,11.7,204900,21720,2.5,31256,61793,8.6,2058,14734,3.2,6160,8698,0.0,0.0,0.9,0.0,0.0,0.0,0,193745,666923,12527,131217,125,16075.33,3.4
2130,Ketchikan Gateway Borough,AK,13787,13477,2.3,13477,6.5,22.8,12.5,47.9,68.4,0.9,13.8,7.5,0.2,9.1,4.9,65.2,78.3,7.3,9.8,93.5,25.4,1421,13.7,6239,58.5,39.4,265600,5295,2.5,31589,62519,10.2,583,4722,4.5,1317,1472,0.0,2.4,3.0,0.0,0.0,16.4,0,0,268880,20488,45557,37,4858.41,2.8
2150,Kodiak Island Borough,AK,13986,13606,2.8,13592,8.0,26.0,8.6,46.2,57.2,1.5,13.0,20.7,0.9,6.7,8.7,50.8,79.4,14.2,22.7,89.6,20.0,1097,11.1,5327,56.9,29.3,224500,4501,2.97,28562,68718,11.7,478,4787,6.1,1551,1847,0.0,21.5,0.0,0.0,8.8,0.0,0,0,108173,8274,26252,12,6549.58,2.1
2164,Lake and Peninsula Borough,AK,1631,1635,-0.2,1631,9.3,28.1,9.0,47.1,25.1,1.0,63.4,0.3,0.3,9.9,3.2,23.6,88.0,1.7,15.8,86.8,15.4,79,6.4,1501,64.4,2.9,136400,508,2.83,21616,51786,21.1,51,135,7.1,298,371,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,23652.01,0.1
2170,Matanuska-Susitna Borough,AK,97882,88995,10.0,88995,7.2,27.3,9.6,47.5,83.8,1.3,6.4,1.4,0.4,6.7,4.7,80.3,84.0,3.4,7.0,92.4,21.3,9600,32.8,41313,76.7,11.1,218900,31123,2.89,29534,71037,9.9,2070,16807,1.7,6351,7646,0.0,4.1,1.0,0.0,0.0,25.7,0,136960,853888,10362,113679,117,24607.9,3.6
2180,Nome Census Area,AK,9817,9492,3.4,9492,11.1,34.9,7.3,47.6,17.3,0.7,74.5,1.2,0.1,6.3,2.0,16.5,83.5,1.4,28.7,84.1,17.1,600,6.7,4045,55.1,18.1,142800,2797,3.37,20271,49974,27.7,167,1910,-1.5,572,629,0.0,45.2,0.0,0.0,0.0,0.0,0,0,63167,6785,10198,10,22961.76,0.4
2185,North Slope Borough,AK,9703,9430,2.9,9430,8.6,25.8,4.8,37.5,33.9,1.5,52.1,5.8,1.6,5.1,3.9,32.1,81.1,5.3,36.0,86.0,14.5,604,8.9,2586,48.3,26.4,154600,1990,3.48,46457,80761,10.3,155,3414,18.3,255,263,0.0,11.4,0.0,0.0,0.0,11.8,0,135221,70105,10574,56347,15,88695.41,0.1
2188,Northwest Arctic Borough,AK,7717,7523,2.6,7523,11.5,36.1,6.9,45.8,13.1,1.0,78.8,0.9,0.2,6.0,2.1,12.1,83.1,1.2,33.9,78.7,11.0,367,7.6,2704,56.0,17.5,131000,1828,4.0,21461,61607,22.0,72,1591,-4.3,219,189,0.0,51.9,0.0,0.0,0.0,39.7,0,0,41576,5599,0,20,35572.58,0.2
2195,Petersburg Borough,AK,3160,3207,-1.5,3815,6.7,22.3,13.3,48.2,77.9,1.6,9.8,3.1,0.3,7.3,5.6,73.6,86.4,4.6,9.7,95.7,25.7,345,7.7,1646,69.2,14.5,215100,1643,2.2,34183,63934,13.5,167,1079,-4.1,755,1395,0.0,0.0,0.0,0.0,0.0,22.2,128982,20426,68451,17606,8300,9,3281.98,1.2
2198,Prince of Wales-Hyder Census Area,AK,6396,6172,3.6,5559,6.5,24.1,11.4,45.3,47.2,0.4,42.4,0.7,0.4,9.0,3.3,45.5,82.2,1.4,4.8,91.0,15.7,492,14.6,3319,70.7,10.5,162500,2240,2.49,24581,46071,15.1,134,894,-7.8,540,905,0.0,15.8,0.0,0.0,0.0,9.1,0,0,41561,7514,10917,4,3922.87,1.4
2220,Sitka City and Borough,AK,8900,8881,0.2,8881,6.1,22.2,13.2,48.7,67.0,1.1,15.9,6.6,0.3,9.1,6.0,63.6,84.0,7.7,13.3,91.2,34.1,757,12.3,4122,56.2,27.2,323200,3554,2.42,32521,69405,10.0,382,2867,-0.1,1275,1938,0.0,12.8,0.0,0.0,0.0,16.3,0,0,94916,10875,27072,17,2870.34,3.1
2230,Skagway Municipality,AK,1036,968,7.0,968,5.2,13.1,10.6,47.6,89.9,0.3,5.0,0.7,0.2,4.0,4.3,86.2,83.0,8.9,12.2,95.2,24.3,47,4.4,662,59.2,27.6,305600,412,2.23,37139,71667,5.5,109,337,10.5,127,0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,2,452.33,2.1
2240,Southeast Fairbanks Census Area,AK,6931,7029,-1.4,7029,7.7,25.6,12.0,44.4,80.0,1.5,11.6,1.3,0.5,5.2,4.9,76.2,76.9,9.1,23.4,93.1,23.1,973,12.2,3890,66.5,16.9,175000,2326,2.84,29437,56801,13.3,172,1265,-0.7,542,567,0.0,0.0,0.0,0.0,0.0,0.0,0,0,47342,6906,22181,0,24768.81,0.3
2261,Valdez-Cordova Census Area,AK,9488,9636,-1.5,9636,7.1,24.5,10.1,47.3,74.0,0.9,13.5,4.0,0.7,6.9,4.7,70.7,80.5,4.6,8.9,91.0,23.9,895,12.2,6089,74.5,18.1,177700,3424,2.73,32579,74878,8.3,461,2786,-2.2,1258,1574,0.0,8.1,2.0,0.0,0.0,18.9,543389,81239,79692,8422,23148,3,34239.88,0.3
2270,Wade Hampton Census Area,AK,8010,7459,7.4,7459,13.7,42.0,5.2,47.5,5.2,0.2,91.7,0.3,0.0,2.6,1.1,4.9,89.5,0.6,50.0,76.6,5.4,351,6.0,2183,71.1,3.4,109300,1744,4.39,11210,40176,31.4,71,575,-18.3,474,0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,39514,5211,0,0,17081.43,0.4
2275,Wrangell City and Borough,AK,2364,2365,0.0,2369,4.8,20.3,17.9,48.2,70.6,0.4,16.9,1.9,0.0,10.3,2.2,69.2,86.4,2.8,6.0,89.0,16.7,364,9.5,1422,71.4,17.2,157400,1149,2.01,28474,45841,9.5,86,524,-3.9,356,0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,6,2541.48,0.9
2282,Yakutat City and Borough,AK,635,662,-4.1,662,5.7,19.2,12.8,44.6,39.8,2.5,36.1,4.6,1.7,15.3,3.3,37.2,81.8,5.9,19.6,93.2,22.7,58,5.4,450,49.6,13.8,147500,254,2.15,34317,72500,5.9,30,147,-2.6,110,158,0.0,0.0,0.0,0.0,0.0,25.3,0,9957,0,0,3757,3,7649.46,0.1
2290,Yukon-Koyukuk Census Area,AK,5547,5588,-0.7,5588,8.3,27.8,13.3,46.3,23.2,0.6,70.7,0.3,0.1,5.0,2.0,22.0,85.9,1.1,17.3,80.3,9.3,419,8.3,4024,70.4,2.1,106500,2056,2.72,19729,34710,24.2,99,434,-4.8,337,426,0.0,56.6,0.0,0.0,0.0,33.8,0,0,41553,7151,5429,0,145504.79,0.0
4000,Arizona,,6731484,6392310,5.3,6392017,6.4,24.1,15.9,50.3,83.7,4.7,5.3,3.3,0.3,2.7,30.5,56.2,80.4,13.4,26.8,85.7,26.9,522382,24.6,2909218,64.4,20.7,165100,2370289,2.67,25358,49774,17.9,132762,2173205,1.8,420233,491529,2.0,1.9,3.3,0.0,10.7,28.1,57977827,57573459,86758801,13637,13268514,26997,113594.08,56.3
4001,Apache County,AZ,71828,71518,0.4,71518,7.6,29.3,13.5,50.6,23.4,0.9,73.5,0.4,0.1,1.8,6.4,19.0,91.7,1.7,57.0,74.5,10.4,4109,30.0,32651,76.5,5.8,83100,19055,3.7,12709,31476,36.2,463,6796,-2.4,2644,3732,0.0,31.0,0.0,0.0,6.2,0.0,0,18138,276872,3997,47781,38,11197.52,6.4
4003,Cochise County,AZ,127448,131357,-3.0,131346,6.5,22.4,19.9,49.2,87.9,4.7,1.7,2.2,0.4,3.1,34.6,56.1,80.9,11.6,27.4,85.8,22.5,18795,18.9,60504,68.8,13.3,146200,49174,2.47,23608,45755,17.1,2245,26387,-3.1,6369,8740,2.5,0.7,2.3,0.0,15.5,33.0,181316,102250,1313671,10284,171397,261,6165.69,21.3
4005,Coconino County,AZ,137682,134437,2.4,134421,6.1,21.8,11.1,50.6,66.4,1.6,27.3,1.8,0.2,2.8,13.9,54.9,79.8,5.3,23.5,87.6,31.1,8084,18.7,64217,59.5,19.1,220400,46198,2.74,23382,49555,23.0,3518,44834,0.9,8342,11407,0.0,7.6,2.1,0.0,5.6,31.1,1526810,475616,1691664,13273,717689,560,18618.89,7.2
4007,Gila County,AZ,53119,53597,-0.9,53597,5.7,20.4,26.6,50.4,80.2,0.9,16.5,0.8,0.1,1.6,18.8,63.2,88.3,3.4,14.4,84.3,16.1,6166,20.8,33099,75.8,5.2,134000,20601,2.54,20792,39954,21.6,1013,10780,-5.5,3387,5250,0.0,4.3,0.0,0.0,0.0,28.7,0,0,550763,10545,106693,101,4757.93,11.3
4009,Graham County,AZ,37957,37220,2.0,37220,7.7,28.3,12.3,46.5,81.1,2.1,14.0,0.7,0.2,1.8,32.1,51.4,83.7,5.0,20.1,84.4,12.3,2695,22.2,13238,74.3,9.8,122200,11031,3.01,17168,44943,22.3,487,6499,2.4,1314,1603,0.0,0.0,0.0,0.0,0.0,0.0,0,67967,389416,11211,34671,87,4622.6,8.1
4011,Greenlee County,AZ,9346,8437,10.8,8437,6.8,28.1,11.6,47.7,91.5,1.8,3.3,0.8,0.2,2.3,46.6,47.8,83.7,4.7,24.3,84.3,11.1,820,17.5,4416,46.1,6.6,81000,3386,2.54,20516,47992,16.0,90,4834,5.8,220,538,0.0,0.0,0.0,0.0,0.0,0.0,0,0,35595,4587,4888,1,1843.13,4.6
4012,La Paz County,AZ,20231,20489,-1.3,20489,4.6,17.4,36.1,48.9,77.1,1.2,17.8,0.9,0.1,2.9,25.7,59.3,88.7,13.5,18.8,75.3,9.3,3044,12.4,16209,74.0,4.1,88800,10221,1.97,22200,35776,19.4,345,3739,-2.7,793,1241,0.0,2.7,0.0,0.0,0.0,32.0,0,65901,394370,19588,37986,26,4499.63,4.6
4013,Maricopa County,AZ,4087191,3817357,7.1,3817117,6.7,25.1,13.8,50.6,84.4,5.7,2.8,4.1,0.3,2.8,30.3,57.0,80.0,14.9,26.3,86.4,29.8,271518,25.4,1680068,62.5,25.1,176500,1411727,2.72,27256,53596,16.7,86045,1491582,2.3,275014,311765,2.4,1.2,3.9,0.0,9.2,27.3,40182099,49760315,58688328,15153,8408940,18597,9200.14,414.9
4015,Mohave County,AZ,203361,200186,1.6,200186,4.6,18.7,26.9,49.7,92.0,1.3,2.9,1.2,0.2,2.3,15.8,78.0,79.0,6.9,10.9,83.8,11.9,26193,18.9,112313,69.4,10.2,133900,80230,2.43,20833,39200,19.4,3603,39476,0.1,10217,14568,1.1,2.6,1.6,0.0,4.6,25.9,1349965,423845,2837691,14489,274299,535,13311.08,15.0
4017,Navajo County,AZ,108101,107494,0.6,107449,7.3,28.0,15.8,49.8,51.0,1.3,44.9,0.7,0.1,2.0,11.1,42.2,86.6,2.6,36.8,80.6,14.9,7144,22.3,57408,72.0,7.7,112200,34343,3.05,16626,36927,30.3,1692,16802,-0.8,5261,6709,0.0,11.8,0.0,0.0,0.0,24.7,0,209493,1237467,11148,191458,191,9950.42,10.8
4019,Pima County,AZ,1004516,980263,2.5,980263,5.9,21.9,17.7,50.8,85.5,4.1,4.3,3.1,0.2,2.8,36.1,53.3,79.6,12.8,28.5,87.2,29.8,92409,24.0,448843,62.7,22.7,167500,384041,2.5,25269,45841,19.2,19962,305393,0.1,60686,75853,1.3,1.4,3.4,0.0,14.1,30.1,10365206,3056767,11928538,11969,2135243,3250,9187.04,106.7
4021,Pinal County,AZ,401918,375770,7.0,375770,6.0,24.4,18.0,47.8,83.2,4.9,6.8,1.9,0.4,2.8,29.2,57.9,79.8,10.1,21.9,84.7,18.0,35852,31.1,165710,74.4,5.9,120200,123733,2.87,20910,50027,15.6,3311,46431,3.4,15902,15591,3.1,1.9,0.0,0.0,12.7,27.0,2149874,450438,2033110,6718,341933,1744,5365.61,70.0
4023,Santa Cruz County,AZ,46695,47420,-1.5,47420,7.3,28.3,15.8,52.0,96.2,0.9,1.3,0.7,0.1,0.8,82.8,15.6,86.9,33.5,76.9,72.5,19.8,2223,19.8,18101,66.3,17.6,140000,15078,3.11,17664,37745,26.3,1145,10954,-0.1,4032,4599,0.6,0.0,1.6,0.0,47.1,25.0,0,0,681267,15958,67226,44,1236.92,38.3
4025,Yavapai County,AZ,218844,211015,3.7,211033,4.1,17.4,28.1,51.1,93.6,0.9,2.1,1.0,0.1,2.2,14.2,80.9,80.7,6.8,10.4,90.2,24.2,27950,22.2,112523,70.0,10.7,184100,91349,2.28,25186,42987,15.8,5548,53338,1.0,17762,23563,0.0,0.8,1.0,0.0,6.9,25.4,763989,831416,2695406,12714,456458,968,8123.5,26.0
4027,Yuma County,AZ,203247,195750,3.8,195751,7.5,26.2,17.4,48.8,91.3,2.7,2.2,1.5,0.3,2.0,61.7,32.9,82.7,25.3,51.2,71.9,14.3,15380,18.8,89918,69.6,12.3,118000,70122,2.73,18840,41595,20.2,2851,39710,-0.6,8290,10158,0.0,2.4,2.1,0.0,33.9,29.8,891604,0,2004643,10596,271852,594,5513.99,35.5
5000,Arkansas,,2966369,2915958,1.7,2915918,6.5,23.8,15.7,50.9,79.7,15.6,1.0,1.5,0.3,1.9,7.0,73.4,83.6,4.5,7.2,83.7,20.1,237311,21.3,1341033,66.7,15.7,107300,1129723,2.53,22170,40768,19.2,64772,978094,0.0,191530,238994,5.5,1.1,1.4,0.1,2.3,24.5,60735582,29659789,32974282,11602,3559795,7666,52035.48,56.0
5001,Arkansas County,AR,18594,19018,-2.2,19019,6.8,23.0,17.5,51.6,72.6,24.5,0.4,1.0,0.0,1.5,3.0,70.2,81.6,2.2,2.8,84.1,12.4,1389,15.5,9441,67.5,9.3,75500,7883,2.36,23045,39633,15.8,527,8181,-0.9,1285,1791,0.0,0.0,0.0,0.0,0.0,29.4,1702196,134593,286337,14825,15452,18,988.77,19.2
5003,Ashley County,AR,20948,21853,-4.1,21853,6.5,23.6,18.4,51.8,71.9,25.6,0.8,0.3,0.1,1.4,5.2,67.7,87.4,2.1,4.7,84.2,12.2,1370,18.5,10106,75.6,6.9,62500,8656,2.47,19761,35683,18.9,414,6845,-0.9,1078,1486,0.0,0.0,0.0,0.0,0.0,19.4,0,107302,170779,7673,15276,0,925.35,23.6
5005,Baxter County,AR,40857,41513,-1.6,41513,4.4,17.8,30.0,51.8,96.8,0.4,0.7,0.6,0.0,1.5,2.0,95.2,84.9,1.9,2.5,87.6,16.5,5725,17.1,22633,76.5,9.4,120000,18155,2.24,21334,35343,15.5,1039,12604,-0.8,3042,4635,0.0,0.0,0.6,0.0,0.0,22.8,550061,0,486791,11633,60260,8,554.28,74.9
5007,Benton County,AR,242321,221344,9.5,221339,7.2,27.0,13.0,50.5,90.0,1.9,1.9,3.4,0.4,2.3,16.2,74.9,82.4,10.9,15.5,85.8,28.7,16452,20.1,97542,68.6,15.5,147500,82150,2.74,26715,54515,12.2,5454,98642,0.5,15567,18799,0.9,1.3,2.3,0.0,5.2,23.7,0,0,2390591,11332,295747,2218,847.36,261.2
5009,Boone County,AR,37196,36903,0.8,36903,6.0,22.6,19.8,50.8,96.3,0.4,0.8,0.6,0.1,1.8,2.3,94.3,83.8,1.3,2.5,85.4,15.4,3280,19.7,16904,72.6,9.5,106400,15086,2.43,22160,38506,16.6,864,11897,-2.8,2722,3748,0.0,0.0,0.0,0.0,0.0,29.3,0,0,466894,12738,41893,12,590.23,62.5
5011,Bradley County,AR,11148,11508,-3.1,11508,6.9,23.4,18.3,51.1,68.3,27.6,1.9,0.5,0.0,1.6,14.3,56.3,89.4,6.7,10.2,76.0,10.8,765,20.1,5820,68.8,11.3,62900,4789,2.32,19386,30409,31.3,250,2621,1.5,525,640,0.0,0.0,0.0,0.0,4.2,0.0,176955,42794,71522,5978,6240,1,649.23,17.7
5013,Calhoun County,AR,5202,5368,-3.1,5368,5.0,18.1,19.8,49.2,75.7,22.0,0.5,0.2,0.0,1.6,3.9,72.3,89.1,0.0,0.3,80.5,7.4,391,24.9,2886,80.0,2.5,58300,2046,2.55,17763,30980,14.9,66,435,-2.5,191,0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,17859,3263,802,0,628.58,8.5
5015,Carroll County,AR,27744,27446,1.1,27446,5.5,22.1,21.1,50.7,94.5,0.8,1.3,0.9,0.6,2.0,14.6,81.1,81.0,6.8,13.6,84.6,17.3,2961,19.1,13568,73.2,9.3,120000,11019,2.47,20637,36584,18.8,698,8142,-1.8,2444,3078,0.0,0.0,0.0,0.0,0.0,19.1,0,24110,265358,9728,53966,10,630.09,43.6
5017,Chicot County,AR,11180,11800,-5.3,11800,6.7,23.2,19.2,50.8,43.5,54.6,0.5,0.5,0.0,0.9,5.6,39.2,90.1,3.3,5.0,74.2,12.6,905,21.4,5403,66.3,9.7,54700,4510,2.41,16538,26201,33.0,225,2207,-5.5,551,916,12.2,0.0,0.0,0.0,0.0,25.1,0,120552,67030,5446,6074,6,644.3,18.3
5019,Clark County,AR,22576,22995,-1.8,22995,4.9,19.2,16.1,52.1,73.4,24.0,0.6,0.7,0.0,1.4,4.4,69.6,81.2,2.6,5.2,86.2,21.4,1804,19.9,10435,63.5,17.1,86600,8341,2.41,17960,32721,24.3,498,6584,2.2,1246,1689,0.0,0.0,0.0,0.0,0.0,26.8,433867,0,247757,10461,32727,3,866.07,26.6
5021,Clay County,AR,15118,16083,-6.0,16083,4.3,20.4,21.4,51.1,97.4,0.6,0.4,0.2,0.0,1.3,1.8,95.7,87.6,0.9,1.9,76.1,9.5,1230,22.8,8037,72.6,8.8,62400,6814,2.3,18509,31502,20.2,307,2683,-6.4,814,1109,0.0,0.0,0.0,0.0,0.0,25.2,111760,116882,132637,8255,6345,3,639.47,25.2
5023,Cleburne County,AR,25634,25969,-1.3,25970,4.8,19.8,25.4,50.7,97.0,0.5,0.7,0.3,0.0,1.4,2.6,94.8,83.0,2.0,2.9,84.5,16.8,3158,24.9,15849,76.9,5.0,117900,10286,2.47,23044,40246,15.8,577,5882,-6.2,2143,3180,0.0,0.0,0.0,0.0,0.0,27.1,205550,54394,282382,11169,29180,26,553.69,46.9
5025,Cleveland County,AR,8449,8689,-2.8,8689,5.1,23.4,19.1,51.1,86.6,11.4,0.5,0.1,0.0,1.3,2.2,84.7,94.7,0.4,0.9,84.8,13.8,630,27.4,4048,77.5,3.0,78300,3346,2.56,20622,39420,17.7,81,584,1.2,404,297,0.0,0.0,0.0,0.0,0.0,0.0,0,1230,12265,1404,0,0,597.78,14.5
5027,Columbia County,AR,23933,24552,-2.5,24552,5.8,21.6,16.6,52.0,61.1,36.2,0.5,0.9,0.0,1.3,2.7,59.4,82.1,2.9,4.7,85.4,20.3,1508,16.6,11562,68.9,11.6,78900,9449,2.43,19439,35128,25.4,596,7538,-2.8,1215,1859,0.0,0.0,0.0,0.0,0.0,23.1,1164275,0,197935,8143,21775,49,766.05,32.1
5029,Conway County,AR,21083,21271,-0.9,21273,5.9,23.1,18.3,50.9,85.0,11.4,0.8,0.6,0.0,2.1,4.0,81.5,87.1,1.9,4.5,84.5,14.7,1534,22.2,9720,74.0,8.4,86100,8154,2.57,20040,35225,24.0,409,4894,-2.5,1337,1876,0.0,0.0,0.0,0.0,0.0,16.9,432551,124901,270351,13074,16218,10,552.25,38.5
5031,Craighead County,AR,102518,96443,6.3,96443,6.9,24.9,13.0,51.3,82.2,14.5,0.6,1.1,0.1,1.6,4.7,78.0,76.9,3.7,5.2,84.9,24.4,6727,17.5,43311,58.3,21.1,120700,37834,2.51,23138,41393,20.6,2476,38113,0.6,7113,8387,0.0,0.0,1.2,0.0,1.3,0.0,1830332,605938,1440936,15768,146652,671,707.21,136.4
5033,Crawford County,AR,61697,61948,-0.4,61948,6.0,25.1,15.3,50.7,91.5,1.6,2.5,1.6,0.1,2.8,6.7,85.6,85.1,4.1,6.6,82.2,14.3,5321,22.0,26458,74.3,10.4,102800,23368,2.62,19477,39479,20.2,1061,20016,-0.8,3573,4489,0.0,1.7,1.1,0.0,1.8,21.5,847991,0,452539,7666,53249,43,593.09,104.4
5035,Crittenden County,AR,49548,50902,-2.7,50902,7.7,27.9,12.1,52.6,45.9,51.8,0.4,0.7,0.0,1.2,2.3,44.1,82.3,1.7,2.9,79.1,13.9,3541,20.2,21624,56.3,21.5,99500,18309,2.72,19665,37751,26.3,824,13445,1.2,3542,3399,22.6,0.9,3.4,0.0,0.0,25.2,701251,795836,750517,14399,65142,95,609.76,83.5
5037,Cross County,AR,17227,17866,-3.6,17870,6.9,24.0,17.6,51.4,74.9,22.9,0.3,0.5,0.0,1.3,1.9,73.3,88.6,0.7,1.2,79.0,11.4,1189,23.8,7888,65.4,10.4,78400,6818,2.57,18701,38085,17.4,359,4100,1.8,1381,1589,0.0,0.0,0.0,0.0,0.0,26.3,0,174748,185706,9970,12504,18,616.38,29.0
5039,Dallas County,AR,7755,8116,-4.4,8116,5.5,22.3,20.5,51.7,56.4,41.3,0.5,0.2,0.0,1.5,2.7,54.1,88.1,2.5,3.4,82.1,10.2,444,20.2,4289,66.4,8.9,59200,3269,2.32,16838,28931,19.7,195,2305,-7.1,364,459,9.6,0.0,0.0,0.0,0.0,12.9,184521,10852,79676,9727,4648,1,667.39,12.2
5041,Desha County,AR,12264,13008,-5.7,13008,6.8,25.6,17.1,53.2,50.1,47.9,0.4,0.4,0.1,1.0,4.8,46.6,89.1,1.8,4.1,76.9,12.7,754,21.5,6306,55.9,17.3,55100,5305,2.39,19822,28680,30.1,312,3412,1.0,732,840,0.0,0.0,0.0,0.0,0.0,27.4,400820,230922,119201,8691,9790,7,768.15,16.9
5043,Drew County,AR,18622,18509,0.6,18509,6.3,22.4,16.1,51.2,69.6,28.0,0.4,0.9,0.0,1.1,2.9,67.0,85.9,1.9,3.4,81.3,19.1,983,20.8,8481,61.2,13.4,83300,7496,2.37,17057,31171,28.5,405,4478,-0.9,1006,1460,6.4,0.0,0.0,0.0,0.0,0.0,156135,87552,198993,10645,19657,4,828.36,22.3
5045,Faulkner County,AR,120768,113237,6.7,113237,6.6,23.9,11.2,51.1,84.6,11.3,0.7,1.2,0.1,2.0,4.1,81.1,81.8,2.9,4.8,89.4,27.2,8027,24.2,48849,65.2,19.6,137800,42413,2.62,24401,50314,14.6,2439,35228,-1.6,7738,9464,4.5,0.0,0.7,0.0,3.6,24.4,1587628,266098,1227650,11730,137881,341,647.88,174.8
5047,Franklin County,AR,17805,18125,-1.8,18125,5.9,23.6,18.0,50.5,95.2,0.9,1.3,0.9,0.1,1.6,3.0,92.5,85.0,0.8,1.8,82.1,12.4,1643,25.0,8024,74.0,3.4,93000,6769,2.61,19135,36766,20.5,278,3424,1.1,1025,1139,0.0,0.0,0.0,0.0,0.0,19.6,327694,3128,140227,7748,10416,0,608.86,29.8
5049,Fulton County,AR,12125,12245,-1.0,12245,4.8,20.4,25.4,50.5,96.8,0.6,0.7,0.3,0.0,1.6,1.2,95.8,83.2,1.1,1.5,83.7,10.0,1358,25.5,6762,78.1,4.3,88200,5140,2.35,19326,35522,18.7,162,1460,-4.5,790,1047,0.0,0.0,0.0,0.0,0.0,21.9,0,8179,42434,3598,5299,1,618.19,19.8
5051,Garland County,AR,97322,96024,1.4,96024,5.7,20.9,21.7,51.7,87.7,8.5,0.7,0.8,0.1,2.3,5.3,82.9,83.5,3.6,5.6,86.8,20.9,10575,21.7,50542,68.6,17.2,130500,39881,2.37,23170,39162,20.7,2696,32235,-0.3,7724,10369,2.0,0.9,0.0,0.0,2.3,22.8,661675,0,1443438,14958,203277,43,677.78,141.7
5053,Grant County,AR,18144,17853,1.6,17853,5.7,23.5,16.1,50.3,94.8,2.8,0.5,0.4,0.0,1.4,2.6,92.7,90.3,1.9,3.1,84.9,17.6,1594,29.9,7837,77.8,4.7,100800,6855,2.59,23239,49004,9.9,274,2876,2.8,1155,1696,0.0,0.0,0.0,0.0,0.0,25.4,489875,48526,107622,6148,10188,9,631.81,28.3
5055,Greene County,AR,43694,42090,3.8,42090,6.6,24.6,15.0,50.8,96.9,0.9,0.5,0.3,0.0,1.4,2.7,94.5,81.6,1.1,2.5,82.8,14.7,3801,20.4,18439,63.3,15.1,99100,16603,2.53,19652,38413,17.1,767,15717,6.3,2718,3205,0.0,0.0,0.0,0.0,0.0,25.4,1434062,0,373077,9257,37645,193,577.7,72.9
5057,Hempstead County,AR,22327,22609,-1.2,22609,7.3,26.4,16.3,51.6,66.8,29.9,0.7,0.5,0.1,1.9,12.6,55.3,87.6,5.7,10.3,81.7,14.1,1556,19.7,10423,68.0,9.5,73100,8296,2.67,17376,32056,27.4,386,6036,-9.3,1060,1578,0.0,0.0,0.0,0.0,0.0,25.9,0,32782,204433,8807,21236,3,727.52,31.1
5059,Hot Spring County,AR,33368,32923,1.4,32923,5.3,21.6,17.2,48.1,85.6,11.6,0.6,0.4,0.1,1.8,3.3,82.7,87.8,0.9,1.7,83.4,12.3,3202,27.7,14283,72.5,4.8,81300,12231,2.58,19286,41193,14.2,472,5876,-3.7,1793,2636,0.0,0.0,0.0,0.0,0.0,23.8,858460,77002,207424,6511,16843,0,615.2,53.5
5061,Howard County,AR,13500,13789,-2.1,13789,6.9,26.1,16.9,51.3,75.8,20.9,1.0,0.7,0.1,1.4,11.0,65.7,88.8,6.2,12.4,76.0,12.0,875,18.7,6236,63.3,7.9,74500,5208,2.6,18707,35879,23.2,300,5881,-1.0,740,955,0.0,0.0,0.0,0.0,0.0,0.0,1081066,45101,160839,11402,9151,3,588.55,23.4
5063,Independence County,AR,36959,36647,0.9,36647,6.4,24.0,17.0,51.3,94.5,2.3,0.7,0.8,0.2,1.5,5.9,89.3,83.4,3.6,4.3,82.5,14.4,2826,19.7,16260,70.6,6.8,88900,14544,2.46,20289,35026,23.7,779,13970,-8.9,2431,3110,0.0,0.0,0.0,0.0,0.8,26.3,920041,174997,384242,11132,34685,48,763.95,48.0
5065,Izard County,AR,13486,13696,-1.5,13696,4.5,18.2,25.0,47.6,95.4,1.8,1.1,0.3,0.0,1.4,1.9,93.8,86.6,2.3,2.5,79.8,11.7,1605,23.4,7214,78.0,4.5,73900,5682,2.26,18040,30661,18.7,206,1988,3.2,847,0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,104699,8035,3275,3,580.58,23.6
5067,Jackson County,AR,17534,17998,-2.6,17997,5.6,20.4,16.7,50.3,79.6,17.6,0.7,0.4,0.1,1.6,2.9,77.1,79.1,0.8,1.7,75.6,8.8,1352,19.1,7589,67.2,11.4,56500,6541,2.28,15609,30284,28.4,327,3890,1.9,842,1110,0.0,0.0,0.0,0.0,0.0,17.0,0,95424,190887,11203,9669,5,633.94,28.4
5069,Jefferson County,AR,72297,77435,-6.6,77435,6.2,23.3,15.1,50.8,41.7,55.5,0.4,0.9,0.1,1.3,1.9,40.3,85.1,1.4,3.1,83.0,17.5,5858,21.3,33242,64.5,14.8,81100,28367,2.47,19353,37140,23.9,1371,21243,-3.4,3802,4083,28.1,0.0,2.9,0.0,0.0,25.6,0,0,867380,10922,87074,55,870.75,88.9
5071,Johnson County,AR,26005,25540,1.8,25540,7.1,24.8,15.8,50.3,93.4,2.1,1.2,1.2,0.1,1.9,13.5,81.1,86.2,6.3,12.1,79.7,14.7,1887,20.5,11351,66.2,11.9,88700,10046,2.49,19366,31003,20.1,394,7204,-4.5,1376,2100,0.0,0.0,0.0,0.0,0.0,28.6,546790,44214,196775,7942,20545,3,659.8,38.7
5073,Lafayette County,AR,7111,7645,-7.0,7645,4.7,20.2,21.5,51.7,61.1,37.1,0.4,0.5,0.0,1.0,2.0,59.7,89.7,0.7,1.2,77.5,10.7,534,24.9,4342,72.7,6.5,52200,2722,2.7,17212,29732,24.1,111,780,0.8,321,0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,32850,4257,1519,0,528.27,14.5
5075,Lawrence County,AR,16931,17412,-2.8,17415,5.6,22.6,19.3,50.5,97.1,1.0,0.5,0.2,0.0,1.2,1.3,96.0,88.8,0.6,1.4,77.4,10.4,1443,25.1,7979,70.7,8.7,59800,6580,2.52,15971,32239,25.4,274,2790,-1.0,1154,1434,0.0,0.0,0.0,0.0,0.0,24.1,0,57963,163661,9703,9250,3,587.61,29.6
5077,Lee County,AR,9860,10424,-5.4,10424,5.4,19.6,16.7,44.0,43.1,54.2,0.6,0.5,0.0,1.6,2.7,41.0,87.7,0.8,1.0,70.1,7.1,485,20.4,4364,57.0,14.8,54700,3491,2.54,12529,25034,31.5,127,907,-5.1,643,532,0.0,0.0,0.0,0.0,0.0,23.7,0,84657,35796,3345,2793,0,602.62,17.3
5079,Lincoln County,AR,13970,14134,-1.2,14134,4.4,17.8,13.5,38.9,67.7,30.3,0.4,0.3,0.0,1.2,3.6,64.8,88.2,1.5,3.3,73.5,7.9,901,26.2,4858,69.7,7.1,59300,4188,2.53,15023,32697,27.0,155,1636,6.9,575,586,0.0,0.0,0.0,0.0,0.0,32.8,0,0,57549,4202,0,0,561.52,25.2
5081,Little River County,AR,12532,13168,-4.8,13171,5.3,22.2,19.5,50.9,75.7,19.7,1.9,0.4,0.0,2.2,3.1,73.3,84.9,1.4,3.0,83.4,10.6,1218,23.4,6446,78.0,8.0,80900,5315,2.41,19880,39673,14.0,162,2713,0.0,598,863,0.0,0.0,0.0,0.0,0.0,21.4,0,13527,88228,6846,6101,1,532.25,24.7
5083,Logan County,AR,21958,22353,-1.8,22353,5.6,22.4,19.2,50.2,93.7,1.5,1.2,1.9,0.0,1.7,2.7,91.4,84.9,1.2,2.6,81.3,11.7,2058,26.0,10125,75.4,6.0,81100,8233,2.63,19046,34996,17.6,377,4054,3.7,1218,1924,0.0,0.0,0.0,0.0,0.0,0.0,692089,0,178072,7855,10022,8,708.13,31.6
5085,Lonoke County,AR,71557,68354,4.7,68356,6.7,26.4,12.6,50.5,90.4,6.2,0.7,0.9,0.1,1.8,4.0,86.8,85.3,2.1,2.5,86.7,18.2,7426,25.6,28618,73.2,9.3,120600,25052,2.74,23218,52582,13.2,1002,10181,2.7,4220,5253,4.1,0.0,0.7,0.0,2.2,21.5,0,161592,497238,7821,46387,263,770.73,88.7
5087,Madison County,AR,15740,15720,0.1,15717,6.2,23.5,17.5,49.9,95.2,0.4,1.7,0.8,0.4,1.6,5.4,90.4,88.3,2.3,4.7,76.6,10.3,1279,29.6,7485,76.5,3.1,92800,6048,2.58,18754,35771,22.6,189,2422,1.7,1237,1202,0.0,0.0,0.0,0.0,0.0,0.0,0,0,114683,7381,3245,0,834.26,18.8
5089,Marion County,AR,16367,16653,-1.7,16653,4.4,17.3,26.8,50.3,96.5,0.4,0.9,0.3,0.1,1.8,2.3,94.6,88.5,2.4,1.9,83.6,12.9,2267,24.1,9333,79.5,5.1,92700,7036,2.34,18188,34494,18.9,213,3002,2.6,1165,2094,0.0,0.0,0.0,0.0,0.0,0.0,350144,0,87884,5291,8605,2,597.01,27.9
5091,Miller County,AR,43428,43462,-0.1,43462,7.0,24.1,15.2,50.8,71.7,25.1,0.8,0.6,0.1,1.8,3.1,69.3,80.8,0.9,3.2,85.1,13.9,3406,20.2,19415,67.2,19.2,92900,16950,2.49,20636,41319,19.5,704,10926,-3.1,2423,3160,11.3,0.0,1.1,0.0,0.0,18.9,712872,0,407683,9503,43650,37,625.58,69.5
5093,Mississippi County,AR,44235,46480,-4.8,46480,7.0,26.7,13.4,51.3,62.8,34.9,0.5,0.5,0.0,1.3,4.0,59.4,82.1,1.8,4.2,77.8,13.0,3002,18.2,20506,58.8,17.3,75300,17058,2.64,18905,36428,24.9,836,17787,17.0,2083,2231,13.4,0.0,0.0,0.0,0.0,28.9,5010206,0,421872,9051,45822,30,900.57,51.6
5095,Monroe County,AR,7582,8150,-7.0,8149,5.8,21.2,20.3,52.5,56.7,40.3,0.7,0.6,0.0,1.7,2.2,55.1,87.6,0.8,1.5,75.3,11.3,629,19.5,4432,63.5,14.6,52200,3393,2.33,16939,27263,28.8,197,1723,1.4,534,832,0.0,0.0,0.0,0.0,0.0,0.0,0,64682,82241,9599,8190,1,607.12,13.4
5097,Montgomery County,AR,9082,9487,-4.3,9487,4.3,19.2,25.4,50.1,95.1,0.6,1.3,0.7,0.0,2.3,3.6,92.3,86.1,1.7,3.8,82.3,12.9,1139,25.9,5747,79.8,3.2,76400,3873,2.39,19021,31345,22.0,141,920,2.6,740,922,0.0,0.0,0.0,0.0,0.0,0.0,0,0,32370,3570,18197,0,779.88,12.2
5099,Nevada County,AR,8723,8997,-3.0,8997,6.4,22.7,19.4,50.6,67.1,30.5,0.5,0.4,0.1,1.6,3.3,64.1,87.0,1.0,2.7,82.1,12.8,762,25.1,4542,73.1,5.9,64600,3622,2.41,18695,33694,26.5,123,1948,3.1,471,622,0.0,0.0,0.0,0.0,0.0,0.0,0,0,136792,14660,3228,0,617.84,14.6
5101,Newton County,AR,7904,8330,-5.1,8330,4.8,19.5,24.3,49.5,95.5,0.3,1.5,0.3,0.0,2.4,1.8,94.0,94.2,0.8,0.9,79.8,12.7,838,37.7,4667,82.5,3.3,74600,3507,2.32,17884,30038,23.5,83,759,15.3,697,1027,0.0,0.0,0.0,0.0,0.0,0.0,0,0,13268,1596,3264,1,820.9,10.1
5103,Ouachita County,AR,24828,26121,-5.0,26120,6.2,23.0,18.3,52.6,57.0,40.3,0.4,0.5,0.1,1.8,2.2,55.4,89.4,1.0,1.6,84.7,15.5,2039,22.7,13067,66.3,8.9,70000,10733,2.36,18975,32015,23.1,530,7423,-2.4,1292,2153,13.6,0.0,0.0,0.0,0.0,0.0,0,0,185662,7135,14614,3,732.78,35.6
5105,Perry County,AR,10245,10441,-1.9,10445,5.2,22.1,17.9,50.3,94.8,2.2,0.8,0.2,0.0,2.0,2.8,92.4,87.6,0.8,0.8,84.6,11.9,1002,34.8,4900,79.5,2.5,77700,3903,2.61,22047,42455,15.6,107,816,0.5,700,636,0.0,0.0,0.0,0.0,0.0,0.0,0,1528,32763,3162,1718,1,551.4,18.9
5107,Phillips County,AR,19930,21757,-8.4,21757,8.0,27.2,16.3,53.0,36.5,61.6,0.4,0.4,0.0,1.2,1.7,35.6,82.1,0.6,1.9,72.8,12.0,1271,18.3,10163,54.5,17.2,59500,8339,2.52,16830,26737,33.5,414,4195,1.2,1419,1791,26.7,0.0,0.0,0.0,0.0,33.4,0,0,229411,10468,13481,34,695.66,31.3
5109,Pike County,AR,11024,11291,-2.4,11291,5.8,22.8,18.6,50.2,93.3,3.5,1.1,0.7,0.0,1.5,6.6,87.6,84.3,3.7,5.5,80.1,13.8,862,24.1,5569,73.1,6.1,75200,4325,2.55,18377,32206,24.8,201,1792,5.0,866,964,0.0,0.0,0.0,0.0,0.0,15.1,0,92105,52793,4876,6825,0,600.62,18.8
5111,Poinsett County,AR,24246,24583,-1.4,24583,6.4,23.7,17.1,51.4,89.8,8.0,0.3,0.3,0.0,1.6,2.7,87.5,81.7,1.3,2.3,73.3,8.6,1835,23.5,10937,62.5,12.7,71300,9369,2.56,16919,32089,28.1,365,3546,-1.9,1424,1682,0.0,0.0,0.0,0.0,0.0,20.3,172016,0,193122,7762,11615,9,758.39,32.4
5113,Polk County,AR,20225,20662,-2.1,20662,5.9,23.4,21.7,50.8,94.5,0.5,2.0,0.6,0.0,2.4,6.4,88.6,88.1,2.8,4.7,85.1,12.3,2163,20.3,10034,77.0,5.3,82700,8069,2.53,19116,32835,23.1,453,5036,-2.0,1461,1931,0.0,0.0,0.0,0.0,0.0,22.6,303468,47813,176896,8785,14410,2,857.68,24.1
5115,Pope County,AR,63201,61754,2.3,61754,6.2,22.8,14.4,50.1,92.4,3.2,1.0,1.2,0.1,2.1,8.4,84.8,83.4,3.5,6.9,81.9,20.7,4459,19.5,25915,69.8,14.2,110200,22603,2.63,19918,40453,19.3,1536,23438,0.5,3684,5192,0.0,0.0,0.0,0.0,1.8,21.3,1436684,234454,919267,15530,79437,53,812.55,76.0
5117,Prairie County,AR,8304,8715,-4.7,8715,5.0,20.2,22.0,50.6,86.7,11.7,0.4,0.1,0.0,1.0,1.2,85.7,90.2,0.3,0.8,78.6,9.3,824,24.4,4493,72.9,7.6,72400,3737,2.26,18137,34855,21.2,157,905,0.3,496,572,0.0,0.0,0.0,0.0,0.0,9.3,0,28389,39496,4481,4266,11,647.96,13.4
5119,Pulaski County,AR,392702,382796,2.6,382748,7.0,23.7,13.5,52.0,59.2,36.0,0.5,2.2,0.1,2.0,6.0,54.0,83.3,5.2,7.9,89.2,31.2,31984,19.8,181406,60.4,26.3,140500,153720,2.47,27414,46013,17.2,12010,204171,0.7,26975,35392,14.1,1.2,2.0,0.0,2.1,26.7,5969537,13418974,6163074,16435,809950,1142,759.76,503.8
5121,Randolph County,AR,17571,17969,-2.2,17969,5.7,22.5,19.9,50.9,96.8,0.9,0.5,0.4,0.0,1.3,1.9,95.2,85.4,0.6,1.6,80.4,12.3,1405,29.2,8522,75.3,7.7,74100,7244,2.42,18871,34418,21.8,325,3500,5.4,1252,1427,0.0,0.0,0.0,0.0,0.0,14.2,148093,39297,137421,7618,13904,11,652.19,27.6
5123,St. Francis County,AR,26899,28258,-4.8,28258,6.4,22.5,13.9,45.1,44.5,52.7,0.7,0.6,0.0,1.5,4.4,41.1,83.8,2.4,5.9,76.0,11.7,1905,20.6,10929,55.3,15.6,65600,9358,2.57,15511,30873,28.4,462,5148,-5.0,1882,2007,33.3,0.0,0.0,0.0,1.4,38.8,0,0,353772,13206,28530,0,634.77,44.5
5125,Saline County,AR,115719,107118,8.0,107118,6.0,23.8,17.1,51.0,90.3,6.6,0.6,1.1,0.1,1.4,4.2,86.6,88.4,2.2,4.3,89.2,23.4,10509,25.6,46701,77.7,8.0,138600,41287,2.62,25962,55348,8.6,1837,19290,1.5,7532,9517,1.7,0.0,1.5,0.0,0.0,23.9,366948,265183,1157723,12137,81237,326,723.6,148.0
5127,Scott County,AR,10693,11233,-4.8,11233,5.7,23.6,18.7,49.6,91.1,0.7,2.3,3.8,0.0,2.1,7.6,84.3,85.6,4.8,9.4,77.0,11.6,961,23.0,5183,73.0,8.3,82100,4324,2.55,18934,37448,20.0,154,2178,0.3,613,776,0.0,0.0,0.0,0.0,0.0,0.0,203046,9183,48651,4308,3086,42,892.32,12.6
5129,Searcy County,AR,7929,8195,-3.2,8195,5.0,20.3,23.6,49.6,95.5,0.3,1.4,0.2,0.0,2.5,2.1,93.7,91.8,0.8,1.5,74.1,12.0,745,29.4,4895,77.5,5.1,85100,3296,2.43,16731,30779,26.1,116,1083,3.3,754,728,0.0,0.0,0.0,0.0,0.0,19.8,0,0,59109,7339,2859,0,666.1,12.3
5131,Sebastian County,AR,126776,125744,0.8,125744,6.8,24.5,14.5,51.0,82.9,6.8,2.3,4.5,0.3,3.4,13.4,71.1,84.7,9.5,14.5,82.2,19.2,10175,17.7,56034,62.8,22.6,114500,49294,2.53,23222,40471,21.2,3482,61045,-2.4,8225,10763,2.5,1.5,3.4,0.0,2.2,0.0,5676530,1313822,1825534,14995,207768,414,531.91,236.4
5133,Sevier County,AR,17426,17058,2.2,17058,7.7,28.8,13.6,50.3,89.0,4.5,3.3,0.5,0.3,2.4,32.7,58.6,83.8,16.9,28.6,66.3,8.6,1055,21.4,6882,69.6,5.2,68800,5745,2.95,16021,35153,24.4,270,4148,-21.1,779,908,0.0,0.0,0.0,0.0,3.6,25.3,0,0,160591,9806,6925,8,565.13,30.2
5135,Sharp County,AR,16906,17267,-2.1,17264,5.2,20.4,25.7,50.6,95.9,0.8,1.0,0.4,0.0,1.9,2.1,94.0,87.6,1.4,3.4,83.0,11.0,2092,27.9,9821,80.0,5.1,73800,7023,2.42,16714,30861,23.9,309,2394,-1.8,1276,0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,155959,8792,12969,8,604.44,28.6
5137,Stone County,AR,12494,12394,0.8,12394,4.9,20.1,25.4,50.4,96.6,0.4,0.8,0.4,0.0,1.8,1.8,95.0,84.5,0.8,1.3,78.9,14.2,1342,21.1,6757,78.3,4.1,88100,5135,2.41,17403,29832,25.5,234,2024,-2.0,1183,1918,0.0,0.0,0.0,0.0,0.0,17.8,0,32552,108393,9100,12052,8,606.41,20.4
5139,Union County,AR,40227,41639,-3.4,41639,6.5,23.9,16.6,51.4,64.4,32.6,0.6,0.8,0.1,1.5,3.6,61.5,86.1,2.1,4.0,82.4,16.1,3090,18.2,19676,69.3,8.2,75000,16596,2.45,20718,37435,21.5,1140,16689,2.3,2733,3612,10.5,0.0,0.7,0.0,0.0,27.4,3901892,0,526384,12261,39958,87,1039.21,40.1
5141,Van Buren County,AR,16851,17294,-2.6,17295,4.9,19.7,24.6,50.3,96.3,0.5,0.9,0.4,0.0,1.9,3.1,93.5,88.0,1.6,2.8,81.4,13.6,1901,28.7,10341,78.1,9.5,86700,7063,2.4,18782,32517,24.5,338,3484,-4.2,1259,1819,0.0,0.0,0.0,0.0,0.0,0.0,0,50733,152073,9238,12534,3,708.14,24.4
5143,Washington County,AR,220792,203060,8.7,203065,7.4,25.3,10.7,49.9,87.3,3.5,1.5,2.6,2.5,2.6,16.2,72.2,75.2,11.6,18.0,82.6,28.7,12056,20.6,89775,55.9,31.3,148800,79214,2.53,23264,41248,20.7,4934,79392,0.5,14580,17653,0.0,1.5,1.2,0.0,4.4,22.4,3497554,1328121,2723279,13987,355688,1131,941.97,215.6
5145,White County,AR,78592,77076,2.0,77076,6.5,23.8,15.1,51.1,92.2,4.6,0.7,0.7,0.1,1.9,4.2,88.4,82.8,2.5,4.3,82.6,18.1,6022,22.8,33198,68.4,14.2,100100,29632,2.5,21793,42487,17.5,1519,22276,-4.6,5198,7525,1.0,0.6,0.0,0.0,0.7,17.2,1168164,0,803511,10907,79764,116,1035.08,74.5
5147,Woodruff County,AR,6910,7264,-4.9,7260,5.7,21.9,21.2,52.0,70.7,26.9,0.3,0.2,0.1,1.7,1.5,69.5,89.8,0.7,0.5,73.6,10.1,581,19.3,3882,62.9,13.5,58400,3070,2.29,19087,28259,24.3,138,1307,1.0,393,391,0.0,0.0,0.0,0.0,0.0,24.6,0,90943,64736,8451,1311,0,586.79,12.4
5149,Yell County,AR,21951,22185,-1.1,22185,6.5,25.1,17.1,50.2,93.9,2.1,1.0,1.6,0.1,1.4,18.9,76.1,84.7,12.7,19.1,71.3,9.4,1426,20.4,9732,66.4,10.2,91200,7917,2.74,16992,35535,22.7,307,4940,1.0,1159,1297,0.0,0.0,0.0,0.0,0.0,24.3,449599,5811,109292,5001,9171,1,929.98,23.9
6000,California,,38802500,37254503,4.2,37253956,6.5,23.6,12.9,50.3,73.2,6.5,1.7,14.4,0.5,3.7,38.6,38.5,84.2,27.0,43.7,81.2,30.7,1893539,27.2,13900766,55.3,31.0,366400,12542460,2.94,29527,61094,15.9,874243,13401863,3.5,2983996,3425510,4.0,1.3,14.9,0.3,16.5,30.3,491372092,598456486,455032270,12561,80852787,83645,155779.22,239.1
6001,Alameda County,CA,1610921,1510261,6.7,1510271,6.1,21.4,12.5,51.0,51.7,12.1,1.1,28.9,1.0,5.2,22.7,32.8,84.1,30.8,43.1,86.4,41.8,63738,28.8,592355,53.2,38.2,493800,545071,2.76,35763,72112,12.5,37108,598309,1.9,124216,140342,6.8,0.0,24.4,0.0,8.9,32.2,25236865,35674007,17909054,12359,2807766,3438,739.02,2043.6
6003,Alpine County,CA,1116,1175,-5.0,1175,3.3,20.0,21.1,48.0,70.3,0.3,24.7,1.3,0.0,3.4,9.6,64.7,84.8,3.8,9.9,90.4,31.2,177,23.7,1765,81.5,35.7,333600,394,2.9,25527,58636,16.6,36,176,-71.5,101,122,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,3,738.33,1.6
6005,Amador County,CA,36742,38091,-3.5,38091,3.7,15.3,25.1,46.9,90.7,2.1,2.2,1.4,0.2,3.3,13.0,79.6,86.1,5.7,9.6,88.1,19.3,4631,30.0,18249,76.1,8.5,270500,14262,2.32,27347,53684,12.6,786,7768,2.9,2678,3491,0.0,0.0,0.0,0.0,0.0,23.0,142958,0,1800754,46797,61202,22,594.58,64.1
6007,Butte County,CA,224241,220000,1.9,220000,5.4,20.2,17.0,50.5,86.6,1.8,2.5,4.6,0.3,4.2,15.5,73.5,79.1,7.5,13.6,87.7,24.4,18453,20.3,97486,60.1,20.0,225900,84816,2.53,23787,43752,20.4,4637,56166,4.6,13031,17307,1.2,0.0,2.7,0.0,0.0,30.9,987397,796397,2400652,11025,355840,550,1636.46,134.4
6009,Calaveras County,CA,44624,45578,-2.1,45578,3.9,17.7,25.1,50.0,91.9,1.0,1.9,1.5,0.2,3.5,11.5,82.1,89.3,4.2,7.0,92.8,21.2,5216,35.5,28053,78.4,4.6,254800,18702,2.38,29329,55295,10.9,881,5729,1.3,3521,5365,0.0,0.0,0.0,0.0,0.0,24.7,0,24179,292762,6249,42359,70,1020.01,44.7
6011,Colusa County,CA,21419,21419,0.0,21419,7.4,28.0,13.1,48.6,91.6,1.2,2.6,1.8,0.6,2.3,58.1,36.7,82.4,23.3,46.3,69.4,13.8,1126,21.2,7938,63.3,12.0,181600,6853,3.07,21579,52158,12.5,376,3956,1.3,974,1234,0.0,0.0,0.0,0.0,0.0,25.9,288416,183229,208543,9884,91604,58,1150.73,18.6
6013,Contra Costa County,CA,1111339,1049197,5.9,1049025,5.8,23.4,14.2,51.3,67.3,9.6,1.0,16.4,0.6,5.1,25.2,45.6,85.3,23.5,33.3,88.8,39.0,57474,33.3,406772,65.9,23.6,404000,375855,2.81,38219,78756,10.5,22338,306661,3.5,82405,95688,4.1,1.4,14.8,0.3,10.9,31.2,32021431,6643987,11763753,11641,1562250,2001,715.94,1465.2
6015,Del Norte County,CA,27212,28610,-4.9,28610,5.8,21.2,15.6,45.2,78.6,3.5,9.0,3.7,0.2,5.0,19.0,63.3,78.5,6.5,15.3,79.1,14.0,2770,14.2,11336,60.2,12.1,198400,9593,2.58,19072,37909,21.8,417,3966,-0.1,1210,1604,0.0,0.0,0.0,0.0,0.0,28.0,0,0,206291,7176,32195,9,1006.37,28.4
6017,El Dorado County,CA,183087,181057,1.1,181058,4.4,20.9,18.0,49.9,89.8,1.0,1.3,4.0,0.2,3.6,12.7,78.7,85.5,8.7,12.5,93.2,32.0,16792,28.8,88866,74.8,11.8,359500,67885,2.64,34884,69297,9.0,4236,40712,2.2,15627,21265,0.0,0.0,2.4,0.0,6.5,26.9,662228,363644,1619711,9216,301718,190,1707.88,106.0
6019,Fresno County,CA,965974,930452,3.8,930450,8.3,28.9,11.2,50.1,77.2,5.9,3.0,10.7,0.3,3.0,51.9,30.9,83.6,21.9,43.7,73.1,19.6,42944,22.1,324126,53.8,25.9,195400,289811,3.18,20208,45563,26.0,15973,239776,2.0,49304,58745,3.9,0.0,11.3,0.0,21.4,29.4,7827264,7846791,9808267,11022,1147177,1892,5957.99,156.2
6021,Glenn County,CA,27955,28122,-0.6,28122,7.0,26.7,14.9,49.6,90.0,1.2,2.9,3.0,0.2,2.7,40.4,53.0,86.6,17.2,36.1,72.3,14.6,1514,21.8,10917,63.1,13.3,217700,9628,2.87,22148,43023,18.8,453,4574,0.1,1353,1903,0.0,0.0,0.0,0.0,16.6,26.1,278276,148410,203958,7320,30980,30,1313.95,21.4
6023,Humboldt County,CA,134809,134623,0.1,134623,5.4,19.5,15.4,50.0,84.0,1.4,6.2,2.8,0.3,5.4,10.8,75.5,81.2,5.7,9.7,90.4,27.5,10437,17.5,62348,55.9,19.9,288300,53296,2.44,23540,41426,20.4,3169,32396,0.2,11071,14689,0.0,2.9,0.0,0.0,0.0,26.9,877020,0,1726357,13428,209017,234,3567.99,37.7
6025,Imperial County,CA,179091,174528,2.6,174528,8.3,28.5,12.0,48.9,89.7,3.5,2.6,2.3,0.2,1.7,82.3,12.3,84.0,32.3,74.5,64.5,13.3,6405,20.8,56972,56.4,21.3,147300,48099,3.42,16763,41807,23.3,2419,31319,3.9,9691,10129,2.6,2.6,0.0,0.0,52.2,28.8,1207866,0,1727258,10771,167799,246,4176.6,41.8
6027,Inyo County,CA,18410,18546,-0.7,18546,6.0,20.6,21.4,49.9,81.4,1.0,12.8,1.6,0.1,3.1,20.9,64.3,88.2,10.4,14.9,88.1,21.4,1720,14.8,9513,64.1,11.0,236100,7873,2.3,27441,44796,12.8,525,5085,-2.4,1298,1709,0.0,0.0,0.0,0.0,0.0,0.0,0,0,241967,13876,91666,7,10180.88,1.8
6029,Kern County,CA,874589,839631,4.2,839631,8.4,29.4,9.9,48.7,82.7,6.3,2.6,5.0,0.3,3.0,51.5,36.2,80.4,20.6,42.1,72.4,15.0,44753,23.6,291454,58.0,18.5,161700,255271,3.19,20295,48552,22.9,12344,195927,3.1,43515,53051,4.4,2.3,0.0,0.2,24.0,31.4,9456205,5730521,7876043,10037,940340,2297,8131.92,103.3
6031,Kings County,CA,150269,152982,-1.8,152982,7.9,27.5,9.1,44.8,81.3,7.3,3.0,4.4,0.3,3.6,53.2,33.7,81.1,20.1,42.8,71.0,12.9,10609,21.4,44864,51.8,19.7,176900,40785,3.28,18429,48133,21.0,1575,23441,0.6,4180,6194,0.0,1.1,6.8,0.0,27.1,35.0,2107702,0,1035901,7017,360069,434,1389.42,110.1
6033,Lake County,CA,64184,64665,-0.7,64665,5.8,20.4,20.6,50.0,87.7,2.1,4.1,1.4,0.3,4.5,19.1,72.1,80.7,8.6,14.2,85.4,16.2,6777,27.5,35657,62.7,7.7,183600,26505,2.38,21537,36548,25.0,1032,9233,1.0,3929,4961,0.9,0.0,0.0,0.0,0.0,31.6,0,0,557902,8630,68069,45,1256.46,51.5
6035,Lassen County,CA,31749,34895,-9.0,34895,4.5,17.0,12.5,36.3,81.6,8.8,4.2,1.4,0.6,3.4,18.5,66.0,71.1,7.0,17.7,79.4,13.1,3119,19.4,12741,62.9,13.4,185500,9945,2.36,19931,53107,16.9,409,3947,12.5,1031,1829,0.0,0.0,0.0,0.0,0.0,20.3,0,0,260422,7440,29679,6,4541.18,7.7
6037,Los Angeles County,CA,10116705,9818664,3.0,9818605,6.4,22.8,12.2,50.7,71.3,9.2,1.5,14.8,0.4,2.9,48.4,26.8,86.4,35.1,56.8,76.6,29.7,331642,29.3,3482516,46.9,42.2,420200,3230383,3.01,27749,55909,17.8,253227,3799831,3.8,945941,1046940,5.7,1.4,17.5,0.3,21.6,30.2,153343705,198435837,119111840,12236,20238148,17659,4057.88,2419.6
6039,Madera County,CA,154548,150865,2.4,150865,7.5,27.6,12.8,51.9,86.0,4.3,4.5,2.5,0.3,2.4,56.1,35.8,87.4,21.5,44.1,68.5,13.6,8266,25.5,49891,60.8,10.6,182000,42516,3.37,17847,45625,22.8,1883,25438,2.6,6970,9543,0.0,0.0,5.1,0.0,23.7,26.3,1452945,353109,1010216,6956,125079,214,2137.07,70.6
6041,Marin County,CA,260750,252409,3.3,252409,4.8,20.5,19.4,51.2,86.0,2.9,1.1,6.1,0.3,3.7,16.0,72.2,85.0,19.0,23.0,92.4,54.6,15439,28.6,112295,62.8,26.9,781900,102912,2.39,56791,90839,7.7,9654,98110,4.0,36468,42712,0.9,0.0,0.0,0.0,0.0,33.9,397211,2373072,4589300,18648,626574,390,520.31,485.1
6043,Mariposa County,CA,17682,18250,-3.1,18251,4.4,16.7,24.5,49.2,90.1,1.1,3.4,1.4,0.2,3.8,10.3,81.4,87.4,4.7,8.6,87.7,21.3,2153,32.0,10329,71.6,5.9,235000,7238,2.36,26988,49820,16.1,349,3246,-1.8,1232,1437,0.0,0.0,0.0,0.0,0.0,0.0,0,0,84507,4705,132992,24,1448.82,12.6
6045,Mendocino County,CA,87869,87840,0.0,87841,6.2,21.9,18.9,50.2,86.3,1.0,6.3,2.2,0.3,4.0,24.1,66.2,84.2,12.5,21.2,85.2,22.0,6798,18.6,40718,58.2,12.5,323600,33878,2.52,23306,43469,20.0,2466,22157,2.6,8223,11015,0.3,1.9,0.0,0.0,0.0,27.6,773447,0,1259064,14716,194204,109,3506.34,25.1
6047,Merced County,CA,266353,255798,4.1,255793,8.1,30.0,10.5,49.5,82.0,4.2,2.5,8.1,0.4,3.0,57.5,29.5,82.2,25.6,52.5,66.7,12.6,11102,26.3,84167,53.6,17.3,146400,75409,3.36,18177,42591,25.4,2852,41183,1.1,10521,12639,2.6,0.0,9.1,0.0,24.8,30.2,3954248,0,2001290,8233,219430,169,1934.97,132.2
6049,Modoc County,CA,9023,9686,-6.8,9686,4.7,20.1,23.2,49.5,88.9,1.2,5.1,1.2,0.3,3.2,14.8,77.6,84.7,7.1,12.8,84.8,18.7,996,16.9,5238,68.8,4.8,164100,3983,2.23,21200,36212,21.0,158,1228,-7.3,555,893,0.0,0.0,0.0,0.0,0.0,0.0,0,0,53025,5827,8787,8,3917.77,2.5
6051,Mono County,CA,13997,14202,-1.4,14202,5.0,19.5,11.8,46.7,91.6,0.8,2.9,1.8,0.3,2.7,27.9,65.8,75.1,17.0,22.4,83.8,29.8,850,16.2,14002,55.6,45.3,344500,5268,2.65,28046,61757,8.5,562,6264,12.5,1346,2137,0.0,0.0,0.0,0.0,0.0,21.3,0,0,154316,12032,217352,29,3048.98,4.7
6053,Monterey County,CA,431344,415057,3.9,415057,7.7,26.4,12.0,49.0,82.6,3.5,2.7,6.9,0.6,3.7,57.4,31.2,84.1,29.9,52.6,71.0,23.0,21572,22.5,140144,49.7,26.5,362400,125428,3.2,24775,59168,17.0,8408,101020,1.9,23865,31711,2.4,1.3,7.5,0.0,21.8,32.5,2227640,0,4541144,11293,1197083,361,3280.6,126.5
6055,Napa County,CA,141667,136530,3.8,136484,5.4,21.8,16.8,50.3,84.8,2.4,1.2,8.1,0.4,3.2,33.7,53.7,86.0,22.4,35.0,83.1,31.3,9410,23.6,55317,60.6,19.7,428600,49431,2.69,34795,70443,10.1,4043,58272,1.9,11274,12794,0.0,1.3,5.4,0.0,10.3,31.1,4529328,0,1665005,12619,620353,147,748.36,182.4
6057,Nevada County,CA,98893,98748,0.1,98764,4.2,17.8,23.4,50.8,93.6,0.6,1.2,1.4,0.2,3.0,9.2,85.6,86.2,6.0,7.7,94.3,32.3,10085,24.6,53080,72.6,10.1,357300,40991,2.38,32346,57353,12.0,2966,26259,3.1,11651,14492,0.0,0.0,0.0,0.0,0.0,28.7,664601,0,1077159,11111,199443,290,957.77,103.1
6059,Orange County,CA,3145515,3010269,4.5,3010232,6.1,23.0,13.1,50.6,73.5,2.1,1.1,19.6,0.4,3.3,34.3,42.0,84.9,30.4,45.5,83.8,36.8,131229,26.3,1072011,58.7,34.2,519600,995512,3.02,34057,75422,12.4,89496,1381148,2.4,278270,329380,1.3,1.0,19.2,0.3,12.4,28.4,49131942,97963621,45022513,15221,8247828,9291,790.57,3807.7
6061,Placer County,CA,371694,348494,6.7,348432,5.4,22.9,17.8,51.2,85.9,1.7,1.1,7.1,0.2,4.0,13.5,74.2,85.1,10.6,15.0,93.6,35.1,29780,26.9,157446,70.6,16.7,342000,132709,2.66,34886,72725,8.7,9707,129592,3.2,29974,36890,1.2,0.0,6.6,0.0,5.3,28.3,3023419,3898601,6180067,18622,773617,1990,1407.01,247.6
6063,Plumas County,CA,18606,20007,-7.0,20007,4.4,17.2,24.7,49.8,90.9,1.2,3.2,1.1,0.1,3.5,8.4,84.0,85.9,5.1,9.7,89.9,22.6,2276,22.9,15692,69.7,6.0,243700,8997,2.13,29806,45794,15.2,593,3656,-2.0,1529,2277,0.0,0.0,0.0,0.0,0.0,23.0,130591,0,175272,8506,30078,32,2553.04,7.8
6065,Riverside County,CA,2329271,2189757,6.4,2189641,6.8,26.3,13.2,50.3,80.5,7.0,1.9,6.8,0.4,3.4,47.4,37.4,82.8,21.9,39.9,79.6,20.5,135139,32.0,819936,66.5,16.3,231000,683144,3.21,23591,56529,16.2,34773,493307,3.4,152801,163248,5.2,0.0,8.0,0.0,24.0,30.4,13623526,16912263,24146447,11745,4835331,6761,7206.48,303.8
6067,Sacramento County,CA,1482026,1418742,4.5,1418788,6.7,24.4,12.8,51.1,64.6,10.9,1.5,15.8,1.2,6.0,22.5,46.6,79.8,19.9,31.2,85.9,28.0,94398,25.7,561842,56.7,26.7,234200,517243,2.72,26739,55064,17.6,27571,428475,5.5,95166,108950,6.4,1.2,14.9,0.3,8.5,32.1,7282833,15728050,15599967,11357,2252889,1761,964.64,1470.8
6069,San Benito County,CA,58267,55269,5.4,55269,6.7,26.8,11.4,49.8,88.4,1.3,3.1,3.5,0.4,3.3,58.3,36.0,83.1,20.1,38.6,76.9,18.2,2715,30.2,18113,61.6,13.6,343000,16995,3.28,25914,66237,11.9,927,10161,7.2,3307,3652,0.0,0.0,0.0,0.0,0.0,30.3,630311,319609,352941,6475,50184,105,1388.71,39.8
6071,San Bernardino County,CA,2112619,2035215,3.8,2035210,7.3,27.2,10.3,50.2,77.3,9.5,2.0,7.3,0.5,3.4,51.7,30.6,82.7,21.1,41.1,78.2,18.7,104576,29.9,708297,61.9,19.8,222300,603879,3.33,21332,54090,18.7,32426,538336,3.4,135455,151888,7.9,0.0,11.5,0.3,27.7,30.6,18907342,27579924,21717402,10897,2754662,3405,20056.94,101.5
6073,San Diego County,CA,3263431,3095308,5.4,3095313,6.6,22.3,12.7,49.8,76.3,5.6,1.3,11.9,0.6,4.3,33.2,46.7,83.9,23.4,37.4,85.5,34.6,234211,24.4,1187625,53.8,35.8,402100,1076483,2.83,30668,62962,14.4,78379,1181133,2.0,246649,291124,2.9,1.3,10.0,0.3,15.2,29.9,27541073,33704921,38710620,13009,9551513,6875,4206.63,735.8
6075,San Francisco County,CA,852469,805195,5.9,805235,4.6,13.4,14.4,49.1,53.8,5.8,0.8,34.9,0.5,4.2,15.3,41.2,84.1,35.6,45.0,86.3,52.4,29478,30.5,386564,36.6,67.7,744600,345344,2.31,48486,75604,13.5,32360,542366,3.8,89078,105030,2.7,0.0,24.0,0.2,6.6,30.1,2077457,10562176,12399960,15516,5039171,2711,46.87,17179.1
6077,San Joaquin County,CA,715597,685308,4.4,685306,7.3,27.8,11.8,50.2,68.1,8.1,2.0,15.9,0.7,5.2,40.5,34.0,81.7,23.1,39.9,77.3,18.1,35277,29.4,237542,58.3,17.9,208000,215563,3.14,22589,53380,18.2,10668,166252,2.2,34735,41137,5.7,0.0,16.2,0.4,17.4,31.0,8272476,9001313,7109680,10687,745809,1265,1391.32,492.6
6079,San Luis Obispo County,CA,279083,269593,3.5,269637,4.8,18.1,17.5,49.1,89.0,2.2,1.4,3.8,0.2,3.4,22.0,69.5,78.9,10.4,18.0,89.6,31.5,21244,21.1,119143,58.4,18.4,426600,102154,2.5,29954,58697,14.3,7873,86125,2.7,23558,29920,0.0,1.1,3.6,0.0,7.9,27.7,2548202,955049,3548407,13559,767899,983,3298.57,81.7
6081,San Mateo County,CA,758581,718498,5.6,718451,6.1,21.5,14.7,50.8,62.5,3.0,0.9,27.7,1.6,4.4,25.3,40.4,87.6,34.0,46.0,88.6,44.4,32332,25.7,273539,59.4,33.2,722200,257941,2.79,45732,88202,7.6,20342,347658,4.4,63460,74604,1.6,0.9,18.6,0.5,11.7,29.9,17918237,12607786,10198837,14625,2107180,1461,448.41,1602.2
6083,Santa Barbara County,CA,440668,423939,3.9,423895,6.4,22.4,14.0,49.9,85.9,2.4,2.2,5.7,0.2,3.5,44.4,45.9,79.0,23.4,40.2,79.1,31.3,26102,19.4,154401,52.6,29.6,453000,141720,2.89,30352,62779,16.0,11211,137623,2.5,32058,39834,0.0,1.1,5.9,0.0,13.9,28.3,3174119,4023586,4983368,12443,1361476,755,2735.09,155.0
6085,Santa Clara County,CA,1894605,1781672,6.3,1781642,6.5,23.1,12.2,49.7,56.4,2.9,1.3,34.9,0.5,4.0,26.6,33.3,84.5,37.1,51.2,86.5,46.5,66749,25.0,651156,57.5,33.0,645600,609377,2.92,41513,91702,10.2,46212,926766,3.5,128730,156084,0.0,1.0,28.5,0.4,10.8,29.7,45088754,60644055,26491464,15367,4147579,9932,1290.1,1381.0
6087,Santa Cruz County,CA,271804,262362,3.6,262382,5.6,20.1,13.5,50.4,87.7,1.4,1.8,4.8,0.2,4.1,33.2,58.2,84.1,18.3,31.0,84.9,37.0,12471,25.4,105275,58.8,20.4,557500,93504,2.72,32295,66519,14.6,6779,70493,2.9,23649,29122,0.0,0.0,4.8,0.0,0.0,34.2,1502419,0,3725362,14894,513826,291,445.17,589.4
6089,Shasta County,CA,179804,177223,1.5,177223,5.8,21.6,19.2,51.0,88.5,1.1,3.1,3.0,0.2,4.2,9.4,80.9,82.4,5.2,8.7,88.4,18.8,17765,20.1,77915,64.2,16.0,220000,68980,2.54,23670,44651,17.5,4126,47159,1.5,11542,0,0.0,0.0,0.0,0.0,0.0,0.0,662910,829031,2526411,14088,280996,242,3775.4,46.9
6091,Sierra County,CA,3003,3240,-7.3,3240,3.3,15.7,26.8,50.0,94.8,0.4,1.9,0.5,0.1,2.3,9.7,86.2,93.6,7.1,9.4,89.4,18.5,440,27.5,2341,77.8,4.2,231400,1253,2.45,24996,39009,19.4,67,198,22.2,235,0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,4,953.21,3.4
6093,Siskiyou County,CA,43628,44900,-2.8,44900,5.4,20.3,22.7,50.3,87.2,1.4,4.7,1.3,0.3,5.0,11.9,77.5,82.8,5.4,9.7,89.0,23.9,4744,18.8,24106,62.7,13.4,200800,19417,2.26,22293,37709,21.0,1075,8222,1.2,3249,4549,0.0,0.0,0.0,0.0,5.2,29.3,257841,169098,403309,9120,78518,19,6277.89,7.2
6095,Solano County,CA,431131,413344,4.3,413344,6.0,22.9,13.5,50.3,60.6,14.8,1.3,15.6,1.0,6.7,25.6,39.6,82.0,20.1,29.6,87.2,24.3,34948,28.9,154981,61.7,21.9,262400,141464,2.85,28929,67177,13.0,6677,103470,3.6,21658,27428,8.9,1.4,15.5,0.0,11.3,30.9,8377320,0,4827955,11892,573269,646,821.77,503.0
6097,Sonoma County,CA,500292,483880,3.4,483878,5.3,20.6,16.7,51.0,87.4,1.9,2.2,4.3,0.4,3.8,26.1,64.6,85.3,16.6,25.5,86.7,32.2,33151,25.3,207232,60.1,19.1,407400,185660,2.57,32835,63356,11.9,13370,152105,2.9,43454,52458,0.0,1.0,0.0,0.0,7.8,30.4,5841879,3953592,6427191,13929,1005419,663,1575.85,307.1
6099,Stanislaus County,CA,531997,514451,3.4,514453,7.3,27.3,12.1,50.5,84.1,3.3,1.9,5.9,0.9,3.9,44.1,44.3,81.4,20.5,40.7,76.4,16.4,25311,26.6,180278,58.1,16.8,172900,166883,3.07,21663,49297,20.3,8516,128728,2.3,25939,31324,2.6,1.4,8.6,0.0,16.2,30.0,9475984,3759083,5661922,11180,615119,454,1494.83,344.2
6101,Sutter County,CA,95847,94737,1.2,94737,6.7,26.4,14.5,50.3,74.0,2.5,2.3,16.5,0.4,4.3,29.9,47.8,82.0,22.7,37.0,78.3,18.7,6740,27.4,34096,59.6,19.1,188500,31725,2.95,23602,50408,16.7,1696,19962,4.2,5193,6625,0.0,0.0,0.0,0.0,0.0,28.2,494893,879004,1065391,11644,100653,79,602.41,157.3
6103,Tehama County,CA,63067,63461,-0.6,63463,6.2,24.0,17.8,50.2,90.7,1.0,3.4,1.4,0.2,3.4,24.1,69.4,81.6,8.9,18.8,81.1,13.5,5608,23.3,27239,67.5,9.4,177100,23374,2.66,20439,41924,19.7,956,11381,2.6,3232,4272,0.0,0.0,0.0,0.0,0.0,32.0,556745,0,735399,12103,56074,78,2949.71,21.5
6105,Trinity County,CA,13170,13786,-4.5,13786,4.9,16.9,24.0,49.0,87.9,0.5,5.3,0.9,0.2,5.2,7.3,82.6,87.2,3.4,7.2,91.3,21.3,1648,18.3,8784,71.2,5.0,257400,5668,2.35,22905,36890,19.2,253,1477,6.1,970,1481,0.0,0.0,0.0,0.0,0.0,0.0,0,0,69188,4966,14624,30,3179.25,4.3
6107,Tulare County,CA,458198,442182,3.6,442179,8.9,31.6,10.4,49.9,88.3,2.2,2.8,4.0,0.2,2.4,62.9,30.3,84.9,22.8,49.2,68.0,13.3,18289,21.3,145503,57.5,14.4,163100,131642,3.35,17894,42708,26.2,6142,88795,2.0,19668,24881,1.4,1.9,0.0,0.0,26.1,27.2,5015960,0,3900853,9373,379422,1092,4824.22,91.7
6109,Tuolumne County,CA,53831,55365,-2.8,55365,4.2,16.8,23.5,47.8,90.8,2.1,2.2,1.3,0.2,3.3,11.5,81.1,84.8,4.8,7.6,89.1,19.5,5375,25.1,31361,69.9,8.4,269400,22025,2.31,25943,48426,14.5,1289,12223,2.4,4033,5706,0.0,0.0,0.0,0.0,0.0,0.0,222524,0,582426,10460,86532,55,2220.88,24.9
6111,Ventura County,CA,846178,823420,2.8,823318,6.4,24.2,13.6,50.5,84.8,2.2,1.9,7.5,0.3,3.3,42.0,46.6,86.5,22.8,37.8,82.8,31.4,47834,24.6,284504,64.9,21.1,442200,267076,3.06,32930,76544,11.1,20089,247116,2.6,64224,80179,1.3,1.6,7.0,0.0,15.0,28.8,8769037,0,11083611,14036,1478160,1314,1843.13,446.7
6113,Yolo County,CA,207590,200850,3.4,200849,5.8,21.7,11.5,51.3,75.9,3.0,1.8,13.8,0.6,5.0,31.5,48.3,76.0,21.7,34.7,84.3,37.9,10321,21.6,76720,52.9,30.6,314300,70347,2.76,27730,55918,19.1,3878,60719,1.4,11858,14782,0.0,0.0,10.5,0.0,11.2,29.9,1853300,6483616,1765735,9106,840344,218,1014.69,197.9
6115,Yuba County,CA,73966,72155,2.5,72155,8.1,27.8,11.4,49.2,79.4,4.0,3.0,7.3,0.5,5.9,27.2,56.6,76.3,12.3,24.7,79.0,13.7,6420,29.5,28015,59.1,18.5,171000,24300,2.93,19244,44902,21.6,820,9130,4.9,3141,4111,0.0,0.0,0.0,0.0,11.0,41.6,169975,0,423597,5908,52440,201,631.84,114.2
8000,Colorado,,5355866,5029324,6.5,5029196,6.3,23.3,12.7,49.8,87.7,4.5,1.6,3.1,0.2,2.9,21.2,69.0,80.7,9.7,16.8,90.2,37.0,399458,24.5,2276184,65.4,25.9,236200,1977591,2.53,31109,58433,13.2,154875,2090975,2.7,447586,547770,1.7,0.8,2.6,0.1,6.2,29.2,46331953,53598986,65896788,13609,11440395,28686,103641.89,48.5
8001,Adams County,CO,480718,441687,8.8,441603,7.6,27.7,9.6,49.6,87.0,3.7,2.1,4.1,0.2,2.9,38.8,51.9,82.4,14.9,28.4,81.4,20.9,27662,28.4,166243,65.6,23.9,186600,152803,2.93,24195,56270,14.2,8559,137849,3.0,28546,32777,1.6,0.0,3.8,0.0,14.0,29.8,6161531,11193392,4848908,11556,578044,1115,1167.65,378.2
8003,Alamosa County,CO,16177,15445,4.7,15445,7.7,23.9,12.6,49.6,87.8,1.9,5.5,1.6,0.3,3.0,45.5,49.5,78.6,6.7,22.6,84.7,24.2,1121,15.0,6684,61.5,17.5,137300,5891,2.51,19487,34520,26.5,475,5383,-2.7,1096,1341,0.0,0.0,0.0,0.0,19.4,25.4,0,85315,262997,17193,30297,52,722.64,21.4
8005,Arapahoe County,CO,618821,572158,8.2,572003,6.5,24.5,11.9,50.7,78.3,10.9,1.1,5.6,0.2,3.7,18.8,62.1,80.6,14.9,22.1,91.4,38.8,42954,26.9,243745,62.7,34.4,230700,225552,2.58,32595,60651,12.1,17284,259423,5.3,50623,61951,4.1,0.8,5.2,0.1,6.2,28.4,2042979,5774128,9931962,18277,1008531,1897,798.1,716.7
8007,Archuleta County,CO,12244,12084,1.3,12084,4.9,18.3,22.9,49.9,92.7,0.5,3.3,1.1,0.1,2.4,18.6,76.9,87.7,3.3,10.7,91.7,32.9,1162,19.6,8943,73.7,12.6,279700,4881,2.45,29793,48933,9.7,490,2965,8.1,1892,2521,0.0,0.0,0.0,0.0,0.0,17.4,0,8772,142696,11435,33162,75,1350.18,8.9
8009,Baca County,CO,3645,3788,-3.8,3788,6.6,21.3,25.7,50.1,94.4,1.1,2.0,0.4,0.0,2.1,10.5,85.5,88.9,2.8,5.2,87.3,17.2,330,12.6,2232,74.4,4.1,73500,1651,2.2,22318,38829,15.2,90,525,-5.4,363,0,0.0,0.0,0.0,0.0,0.0,0.0,0,52654,32910,8570,0,0,2554.97,1.5
8011,Bent County,CO,5630,6499,-13.4,6499,3.7,16.2,16.9,35.6,86.5,7.2,3.2,1.3,0.1,1.7,31.8,58.0,85.6,5.9,17.8,79.4,8.8,614,17.7,2217,63.5,5.1,75500,1873,2.17,15081,37340,19.1,57,551,-1.8,219,331,0.0,0.0,0.0,0.0,0.0,0.0,0,0,16419,2838,2990,0,1512.86,4.3
8013,Boulder County,CO,313333,294571,6.4,294567,5.0,20.3,12.2,49.8,90.8,1.1,0.8,4.5,0.1,2.6,13.8,78.3,76.2,10.9,16.5,93.9,58.3,15432,22.7,130938,63.1,28.9,350900,120521,2.42,38011,67956,14.2,11696,139136,0.9,35710,42506,0.5,0.5,2.4,0.0,3.5,30.2,3855872,2782109,4039254,13660,668939,1371,726.29,405.6
8014,Broomfield County,CO,62138,55860,11.2,55889,6.0,24.7,12.2,50.4,88.8,1.4,0.8,6.3,0.1,2.5,12.0,78.0,81.1,8.6,13.8,94.9,47.5,3824,26.2,25900,68.3,25.0,275900,22016,2.59,37442,77998,7.1,1810,33426,7.1,5010,6284,1.3,0.0,3.9,0.0,2.0,0.0,2255472,0,1139808,21240,163445,820,33.03,1691.9
8015,Chaffee County,CO,18363,17809,3.1,17809,4.0,15.8,23.0,47.2,94.4,1.7,1.5,0.8,0.1,1.5,10.2,85.4,86.7,3.5,6.3,91.1,33.9,2264,14.9,10319,76.2,8.3,262300,7832,2.15,27182,46504,8.0,860,5367,-3.6,2113,3369,0.0,0.0,0.0,0.0,4.0,27.8,0,23550,252573,14982,49240,105,1013.4,17.6
8017,Cheyenne County,CO,1871,1836,1.9,1836,8.3,25.0,18.2,48.5,96.3,0.7,1.3,0.6,0.1,1.0,12.7,84.3,86.0,8.5,11.4,87.0,21.3,137,13.0,970,76.5,5.0,81700,839,2.55,23647,51641,7.2,58,745,9.9,197,304,0.0,0.0,0.0,0.0,0.0,0.0,0,51173,12958,7276,407,1,1778.28,1.0
8019,Clear Creek County,CO,9187,9088,1.1,9088,3.8,15.4,17.9,48.0,95.3,0.9,1.2,0.8,0.1,1.6,5.5,90.7,88.6,4.0,4.3,96.6,39.8,903,32.6,5690,81.3,10.5,268500,4024,2.21,41716,67259,10.2,327,2574,5.4,978,1193,0.0,0.0,0.0,0.0,0.0,0.0,0,6955,73119,8185,25036,11,395.23,23.0
8021,Conejos County,CO,8265,8256,0.1,8256,6.5,27.1,17.4,50.2,92.5,0.7,3.7,0.6,0.2,2.3,54.1,43.5,90.1,3.1,34.5,82.6,19.1,502,24.3,4293,77.3,5.7,109700,3099,2.64,17316,34526,19.4,106,697,2.2,623,893,0.0,0.0,0.0,0.0,0.0,0.0,0,3595,33081,4132,4499,13,1287.39,6.4
8023,Costilla County,CO,3568,3524,1.2,3524,3.9,18.2,25.8,47.6,88.3,1.9,5.6,1.4,0.4,2.4,64.3,32.0,91.9,10.3,50.1,76.5,19.5,445,20.1,2686,79.6,2.4,93800,1361,2.61,20742,29145,22.2,42,255,19.7,241,370,0.0,0.0,0.0,0.0,0.0,0.0,0,0,5702,1726,0,30,1226.95,2.9
8025,Crowley County,CO,5360,5823,-8.0,5823,4.3,14.3,13.0,30.2,84.0,9.3,3.4,1.4,0.1,1.8,30.3,56.4,86.2,5.7,14.7,75.2,12.3,453,24.1,1547,79.6,5.7,78800,1173,3.4,17187,31477,29.1,33,478,-18.3,163,0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,15707,2427,0,7,787.42,7.4
8027,Custer County,CO,4361,4255,2.5,4255,2.5,14.6,29.0,49.1,95.9,1.2,0.8,0.6,0.0,1.6,5.3,91.2,84.1,2.1,5.9,94.6,32.7,790,34.7,4167,80.6,5.1,216200,2048,2.06,25761,32427,14.6,143,543,7.3,655,0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,58746,14820,5545,43,738.63,5.8
8029,Delta County,CO,29870,30952,-3.5,30952,5.1,20.9,23.5,50.1,95.2,0.7,1.3,0.8,0.1,1.8,14.7,82.2,85.6,4.5,9.8,87.8,18.3,3493,24.8,14485,75.7,5.7,191200,12671,2.33,24771,42078,15.5,818,6620,-1.1,2656,4029,0.0,0.0,0.0,0.0,0.0,0.0,141382,60887,312871,10353,26912,47,1142.05,27.1
8031,Denver County,CO,663862,600025,10.6,600158,6.8,20.9,10.9,50.0,80.7,10.2,2.0,3.8,0.2,3.1,30.8,53.4,77.3,15.8,26.9,85.4,42.9,34001,24.6,298864,50.2,45.7,249100,266069,2.27,33251,50313,19.1,22834,399744,2.2,59296,67500,4.3,1.1,3.7,0.0,8.7,30.2,5189894,14920938,6835351,11810,2279048,5958,153.0,3922.6
8033,Dolores County,CO,1978,2064,-4.2,2064,4.9,20.4,22.0,48.0,93.2,0.3,3.6,0.3,0.1,2.6,5.1,88.6,84.4,1.1,2.1,88.8,18.4,169,23.0,1450,80.8,1.8,121800,780,2.19,22880,37750,14.9,53,0,0.0,149,349,0.0,0.0,0.0,0.0,0.0,0.0,0,19209,15039,7961,1659,1,1067.05,1.9
8035,Douglas County,CO,314638,285465,10.2,285465,6.3,28.3,9.9,50.3,91.3,1.4,0.5,4.3,0.1,2.4,8.3,83.9,85.4,6.4,8.8,97.5,55.8,19635,27.7,113777,80.9,15.8,335600,103780,2.82,43634,101591,3.9,8040,91934,5.2,28689,32992,0.0,0.0,2.4,0.0,3.1,27.7,1950842,0,3765450,13846,435099,3230,840.25,339.7
8037,Eagle County,CO,52921,52197,1.4,52197,6.1,23.2,8.1,47.0,95.1,1.0,1.4,1.2,0.1,1.2,30.0,67.1,87.8,19.2,29.6,88.7,47.0,1763,20.0,31528,66.0,38.9,453300,17966,2.9,39497,74456,10.9,3217,29062,-3.3,6887,9437,0.0,1.0,0.0,0.0,3.6,26.3,0,0,928788,18367,469696,256,1684.53,31.0
8039,Elbert County,CO,24195,23086,4.8,23086,3.9,22.5,13.9,49.8,95.4,0.8,0.8,1.0,0.2,1.9,6.4,89.7,88.8,4.1,5.2,96.6,29.6,2328,41.3,9084,90.4,1.3,333600,8240,2.81,36077,82118,6.5,564,2271,9.0,2629,3269,0.0,0.0,0.0,0.0,0.0,26.2,0,13792,80718,3558,6884,116,1850.85,12.5
8041,El Paso County,CO,663519,622261,6.6,622263,6.9,25.1,11.5,49.6,83.7,7.0,1.3,3.0,0.4,4.6,16.3,70.3,77.8,7.2,11.6,93.6,35.2,81330,21.7,262154,63.7,22.3,213500,237039,2.6,28867,57125,12.4,16008,221972,3.3,45032,57475,2.5,0.7,3.0,0.1,4.9,31.4,0,2810614,7950151,13578,1153810,3533,2126.8,292.6
8043,Fremont County,CO,46502,46824,-0.7,46824,4.0,16.5,20.3,42.3,91.5,4.0,1.9,0.8,0.1,1.7,13.0,79.4,82.9,4.0,11.0,84.1,15.6,5491,23.3,19223,70.7,10.9,159500,16938,2.1,18954,39943,17.6,821,7420,-2.9,2692,4110,0.0,0.0,0.0,0.0,0.0,26.2,168772,0,352422,7444,40834,55,1533.07,30.5
8045,Garfield County,CO,57461,56389,1.9,56389,7.1,25.9,10.7,48.9,94.2,1.2,1.8,0.8,0.2,1.9,28.1,68.8,79.2,15.0,24.8,85.2,26.6,3465,27.5,23361,64.8,20.5,302700,20163,2.76,26603,57022,11.9,2410,18983,2.8,5918,8595,0.0,0.6,0.0,0.0,5.7,25.1,0,442167,1184677,22367,161174,83,2947.56,19.1
8047,Gilpin County,CO,5851,5441,7.5,5441,3.8,18.7,13.2,47.3,93.1,1.8,1.2,1.5,0.3,2.2,6.4,87.4,86.5,2.6,4.3,94.4,29.1,722,32.0,3581,75.5,10.6,281700,2504,2.16,38022,63885,10.8,111,4970,4.9,493,723,0.0,0.0,0.0,0.0,0.0,0.0,0,0,3225,636,291507,13,149.9,36.3
8049,Grand County,CO,14546,14843,-2.0,14843,4.2,18.4,13.9,47.0,95.6,0.5,0.8,0.9,0.1,2.0,8.0,88.8,83.8,4.7,9.6,94.4,32.8,1467,18.8,16724,74.9,30.4,282000,5227,2.72,31684,64664,11.1,797,7582,5.5,1803,2624,0.0,0.0,0.0,0.0,0.0,22.5,0,5107,193138,14227,73865,137,1846.33,8.0
8051,Gunnison County,CO,15725,15324,2.6,15324,4.8,17.9,11.2,45.9,94.5,0.5,2.5,0.7,0.0,1.8,9.3,87.5,73.3,4.3,9.2,93.3,54.5,1031,13.4,11574,59.1,28.3,329500,6293,2.27,27654,52332,17.7,1053,6056,-1.6,2243,3300,0.0,0.0,0.0,0.0,0.0,21.3,0,0,211576,14116,89685,58,3239.1,4.7
8053,Hinsdale County,CO,786,843,-6.8,843,6.2,18.7,25.7,48.2,95.9,0.5,1.1,0.6,0.0,1.8,3.7,92.6,87.1,1.7,9.1,93.8,42.2,111,8.2,1413,78.9,4.9,261700,388,2.06,36365,56667,5.1,75,183,3.4,167,326,0.0,0.0,0.0,0.0,0.0,0.0,0,0,7808,9362,3567,6,1117.25,0.8
8055,Huerfano County,CO,6462,6711,-3.7,6711,3.8,15.5,29.7,49.6,89.3,1.0,5.4,1.1,0.2,3.0,34.4,61.7,81.3,4.8,14.9,84.7,28.0,832,22.9,5128,72.5,7.5,152400,3059,2.0,24058,33298,20.6,156,1188,0.3,580,938,0.0,0.0,0.0,0.0,0.0,0.0,0,0,55321,7180,9712,13,1591.0,4.2
8057,Jackson County,CO,1396,1394,0.1,1394,3.4,17.8,20.9,46.7,95.9,0.1,1.7,0.4,0.0,1.9,11.0,86.3,87.8,3.0,7.0,88.7,22.2,145,18.9,1290,72.2,3.5,123200,648,2.08,25936,43606,8.9,71,279,3.7,175,127,0.0,0.0,0.0,0.0,0.0,0.0,0,0,19370,14149,2416,0,1613.72,0.9
8059,Jefferson County,CO,558503,534583,4.5,534543,5.3,20.9,14.7,50.3,92.2,1.3,1.2,2.8,0.1,2.3,15.2,78.8,84.1,6.2,10.3,93.7,40.7,42215,26.2,233275,70.6,25.1,262400,219562,2.42,36087,68984,8.6,16222,188932,0.4,51004,62249,0.6,0.6,2.7,0.0,5.2,30.2,6566636,2514091,7282158,13782,960467,2519,764.21,699.5
8061,Kiowa County,CO,1402,1398,0.3,1398,6.4,20.5,24.1,50.8,96.6,0.7,0.9,0.0,0.3,1.5,6.3,91.4,92.0,2.7,4.0,92.2,20.6,83,17.2,811,72.8,5.2,79400,559,2.49,22482,40813,17.4,36,0,0.0,145,0,0.0,0.0,0.0,0.0,0.0,0.0,0,27022,8036,6158,0,0,1767.77,0.8
8063,Kit Carson County,CO,8072,8270,-2.4,8270,6.2,22.5,17.2,44.8,94.1,2.5,1.1,0.6,0.2,1.5,19.3,76.1,83.2,9.0,15.2,84.0,13.5,799,12.5,3514,65.8,11.2,121600,3046,2.43,21850,44157,13.8,263,1952,0.7,657,834,0.0,0.0,0.0,0.0,0.0,39.3,0,166345,84356,10717,10306,2,2160.82,3.8
8065,Lake County,CO,7357,7310,0.6,7310,6.5,23.1,11.0,46.7,93.9,0.7,2.6,0.6,0.1,2.2,37.8,59.2,75.8,15.0,28.8,86.8,28.1,516,29.3,4273,65.6,12.2,164400,3079,2.33,25029,44610,14.3,205,1226,-1.0,608,796,0.0,0.0,0.0,0.0,0.0,26.6,0,0,51369,6540,12573,0,376.91,19.4
8067,La Plata County,CO,53989,51334,5.2,51334,5.1,19.4,14.2,49.2,89.2,0.6,6.8,0.8,0.1,2.5,12.6,79.2,79.6,3.5,9.7,94.2,41.4,3963,20.5,26475,66.5,17.9,339400,20947,2.39,30151,58080,11.4,2296,20661,8.0,5970,8231,0.0,2.2,0.0,0.0,0.0,25.9,0,0,790433,15914,206242,278,1692.08,30.3
8069,Larimer County,CO,324122,299630,8.2,299630,5.4,20.5,13.9,50.2,93.2,1.1,1.0,2.2,0.1,2.4,11.1,83.5,78.8,5.4,9.0,94.4,43.8,22809,22.6,138534,65.6,21.8,247100,121423,2.45,30740,58626,14.1,9723,112150,2.0,28499,34660,0.4,0.5,1.8,0.0,3.6,29.7,3226757,1265188,3922871,13672,604358,2498,2596.0,115.4
8071,Las Animas County,CO,14052,15507,-9.4,15507,5.1,19.0,22.3,48.4,91.4,1.8,3.5,1.1,0.1,2.1,42.5,52.7,85.2,3.2,14.4,84.3,16.3,1221,21.2,8244,69.4,10.1,151500,5992,2.43,22180,42261,17.8,371,3228,-8.3,911,1558,0.0,0.0,0.0,0.0,13.0,25.9,0,51612,164359,10393,22369,5,4772.67,3.2
8073,Lincoln County,CO,5510,5469,0.7,5467,5.6,19.7,17.4,40.9,90.6,5.6,1.1,1.0,0.1,1.7,13.4,78.4,82.9,5.4,10.9,81.5,15.6,486,18.3,2427,68.3,11.5,115000,1845,2.11,19703,41910,13.7,123,1114,-1.9,392,626,0.0,0.0,0.0,0.0,0.0,29.4,0,0,134696,25671,8400,2,2577.63,2.1
8075,Logan County,CO,22524,22709,-0.8,22709,5.0,18.8,15.7,43.5,91.6,4.3,1.6,0.9,0.1,1.5,16.1,76.9,80.7,5.7,10.5,88.7,15.8,1999,17.1,8952,69.4,12.0,119800,8015,2.68,22581,40415,17.6,577,5312,1.7,1219,1396,0.0,0.0,0.0,0.0,2.9,21.9,0,0,281292,13454,23276,19,1838.55,12.4
8077,Mesa County,CO,148255,146723,1.0,146723,6.3,22.4,16.9,50.3,94.2,1.0,1.5,0.9,0.1,2.2,14.1,82.0,80.9,4.1,8.2,89.6,25.7,13870,21.2,63779,71.7,15.1,210100,58598,2.45,26700,49471,14.7,4431,49355,-1.1,11002,16079,0.0,0.9,0.0,0.0,4.0,26.7,539590,1179281,2389507,17279,268843,504,3328.97,44.1
8079,Mineral County,CO,698,712,-2.0,712,4.7,12.6,26.5,47.6,97.1,0.4,0.9,0.4,0.0,1.1,4.4,92.8,92.3,1.1,3.2,96.5,39.3,111,14.6,1225,83.7,0.0,275000,393,1.85,42255,47083,6.4,66,220,7.3,151,510,0.0,0.0,0.0,0.0,0.0,0.0,0,0,6008,6239,9476,6,875.67,0.8
8081,Moffat County,CO,12928,13795,-6.3,13795,6.9,25.9,12.9,48.1,95.2,0.5,1.5,0.8,0.1,1.9,14.3,82.2,85.2,5.6,10.5,89.2,15.6,1193,21.8,6162,75.9,12.1,176500,5062,2.61,24577,53231,11.5,415,3527,3.5,951,0,0.0,0.0,0.0,0.0,0.0,0.0,0,73158,213043,15717,35307,9,4743.29,2.9
8083,Montezuma County,CO,25772,25535,0.9,25535,6.2,22.7,19.1,50.3,83.1,0.5,13.0,0.9,0.1,2.4,12.2,73.2,82.0,2.3,13.4,89.9,27.3,2319,22.6,11981,70.5,8.4,189400,10688,2.36,23548,43188,19.3,758,6746,0.0,2219,3068,0.0,2.1,0.0,0.0,0.0,31.4,0,52094,301379,12003,84913,15,2029.53,12.6
8085,Montrose County,CO,40873,41278,-1.0,41276,5.6,22.5,21.3,50.8,94.3,0.7,1.8,0.8,0.3,2.0,20.2,76.5,82.8,7.3,13.3,85.7,24.5,3280,20.3,18338,73.1,8.7,193700,16586,2.44,22897,45718,16.0,1270,11253,5.8,3557,5538,0.0,0.0,0.0,0.0,5.1,29.7,218197,0,610875,15484,51053,89,2240.7,18.4
8087,Morgan County,CO,28328,28159,0.6,28159,7.6,26.4,15.4,50.2,92.8,3.1,1.6,0.7,0.3,1.5,35.3,60.1,80.6,12.6,26.5,78.8,15.1,1638,16.5,11474,63.5,14.8,137000,10446,2.65,20680,43774,13.3,667,8794,-2.3,1701,2137,0.0,0.0,0.0,0.0,7.9,24.1,0,0,232820,8450,27652,20,1280.43,22.0
8089,Otero County,CO,18488,18831,-1.8,18831,6.5,24.3,19.0,50.4,91.4,1.2,3.6,0.9,0.2,2.7,41.0,55.4,85.2,4.1,18.5,83.0,15.5,1615,17.5,8881,64.7,13.1,91800,7427,2.45,19078,33848,25.2,442,4256,-4.9,1008,1586,0.0,0.0,0.0,0.0,12.1,37.3,0,59844,171450,9166,20313,2,1261.96,14.9
8091,Ouray County,CO,4629,4434,4.4,4436,3.4,17.0,24.6,50.9,96.8,0.2,0.5,0.6,0.1,1.8,5.5,91.9,79.8,2.9,6.4,98.4,47.5,551,22.8,3151,75.4,10.6,383900,1943,2.3,33015,64601,5.6,263,963,4.0,873,1117,0.0,0.0,0.0,0.0,0.0,26.5,0,1022,26977,6131,21247,33,541.59,8.2
8093,Park County,CO,16345,16201,0.9,16206,3.7,16.7,16.2,47.3,94.6,0.6,1.3,1.1,0.0,2.3,6.2,89.5,87.0,3.4,3.8,95.6,32.0,1992,44.2,14171,88.5,1.2,247300,7038,2.27,31504,61570,9.1,434,1196,2.3,1720,2313,0.0,0.0,0.0,0.0,0.0,28.0,0,3435,55409,3266,11083,88,2193.85,7.4
8095,Phillips County,CO,4363,4442,-1.8,4442,6.1,24.0,20.8,50.4,96.1,1.0,0.8,0.6,0.1,1.4,20.6,76.6,78.4,12.2,19.8,85.6,16.8,343,13.9,2088,69.2,8.3,132700,1668,2.59,20720,43011,19.9,135,909,-9.4,413,324,0.0,0.0,0.0,0.0,0.0,27.5,0,150858,45616,10207,1880,9,687.93,6.5
8097,Pitkin County,CO,17626,17148,2.8,17148,3.7,16.3,15.6,47.6,95.7,0.8,0.5,1.4,0.1,1.5,9.9,86.5,84.2,12.2,16.5,96.0,56.8,950,17.0,13039,68.7,38.8,611200,7507,2.27,51814,72745,10.1,1559,16314,3.1,3528,5100,0.0,0.0,0.0,0.0,2.9,26.5,0,64678,399540,26461,270848,98,970.7,17.7
8099,Prowers County,CO,12034,12551,-4.1,12551,6.9,26.2,16.1,49.9,95.3,0.8,1.8,0.4,0.0,1.7,36.4,61.0,80.7,12.5,26.1,79.2,14.1,1010,14.4,5885,65.8,15.2,86100,4935,2.45,18941,34391,23.3,340,2901,1.4,833,1328,0.0,0.0,0.0,0.0,0.0,13.2,0,81975,146970,11300,16282,1,1638.4,7.7
8101,Pueblo County,CO,161875,159063,1.8,159063,6.0,23.2,17.1,50.7,90.8,2.5,3.0,1.0,0.2,2.5,42.5,52.9,82.1,4.0,14.6,87.1,21.5,15351,20.4,70054,65.7,15.0,138700,62439,2.49,21940,41777,19.1,3036,46754,1.4,7860,10232,0.6,1.5,1.7,0.0,17.1,29.1,1705822,431008,1864599,12080,220852,157,2386.1,66.7
8103,Rio Blanco County,CO,6707,6666,0.6,6666,6.8,24.6,13.7,48.1,94.2,1.1,1.5,0.5,0.1,2.4,11.1,84.1,78.9,6.8,10.0,91.3,23.1,556,19.6,3346,68.8,16.7,200400,2638,2.24,27586,60128,14.9,229,2131,1.2,576,825,0.0,0.0,0.0,0.0,0.0,30.7,0,0,54732,8831,11303,10,3220.93,2.1
8105,Rio Grande County,CO,11607,11982,-3.1,11982,6.3,23.9,18.6,50.1,93.4,0.7,3.3,0.5,0.0,2.0,44.2,53.0,83.3,7.0,25.0,84.1,20.3,1000,19.0,6617,67.4,10.1,129500,4722,2.46,20557,38993,19.2,348,2646,1.8,1017,1791,0.0,0.0,0.0,0.0,16.1,24.6,0,218177,110165,9480,14191,12,911.96,13.1
8107,Routt County,CO,23865,23509,1.5,23509,4.4,19.2,12.3,47.6,96.4,0.6,0.6,0.8,0.1,1.5,7.0,90.1,81.3,3.5,4.7,96.9,48.0,1171,17.3,16387,70.6,33.0,390100,9647,2.38,34873,62002,9.1,1592,16630,-7.3,3543,4913,0.0,0.5,0.0,0.0,0.0,20.3,0,187821,421473,18866,184368,132,2362.03,10.0
8109,Saguache County,CO,6196,6108,1.4,6108,6.4,22.5,18.9,49.5,92.7,0.8,3.0,0.9,0.0,2.7,38.3,57.4,87.4,11.0,34.7,78.0,23.8,521,19.0,3930,66.9,5.4,135400,2692,2.29,20726,34600,24.7,117,799,4.6,576,501,0.0,0.0,0.0,0.0,0.0,0.0,0,57075,20857,3039,0,32,3168.53,1.9
8111,San Juan County,CO,720,699,3.0,699,2.1,13.6,20.4,43.1,94.9,0.1,1.0,1.3,0.0,2.8,14.2,82.1,83.0,3.2,5.6,94.4,24.8,60,11.9,757,59.8,31.7,242300,321,2.05,24711,39583,17.1,68,203,-8.6,106,0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,6624,11540,5079,0,387.49,1.8
8113,San Miguel County,CO,7840,7359,6.5,7359,4.7,18.9,10.4,46.9,95.3,0.7,1.4,0.9,0.1,1.6,9.6,87.1,78.8,8.4,10.0,96.1,53.5,396,19.3,6736,64.4,41.7,448000,3234,2.31,40827,63594,10.6,614,4430,3.2,1660,2294,0.0,0.0,0.0,0.0,3.1,23.3,0,0,97815,13114,77135,36,1286.61,5.7
8115,Sedgwick County,CO,2348,2379,-1.3,2379,5.2,20.3,24.4,50.0,95.4,0.5,1.0,1.4,0.0,1.7,15.1,82.1,78.5,3.2,10.3,86.8,15.0,230,18.9,1408,68.6,12.9,81400,943,2.47,21536,40221,18.9,71,510,3.9,188,282,0.0,0.0,0.0,0.0,0.0,0.0,0,0,33331,14305,1697,1,548.04,4.3
8117,Summit County,CO,29404,27994,5.0,27994,4.6,16.3,10.8,45.9,95.4,1.0,1.1,1.0,0.1,1.4,14.7,82.3,79.2,11.9,15.2,95.7,47.7,1417,16.8,30405,65.9,56.5,460000,11138,2.48,34025,63697,13.7,2140,18614,2.0,4139,5751,0.0,0.0,0.0,0.0,0.0,27.5,0,0,641013,24434,281619,207,608.36,46.0
8119,Teller County,CO,23389,23350,0.2,23350,3.8,18.5,18.0,49.1,94.7,0.7,1.2,0.9,0.1,2.4,6.2,89.6,89.9,2.4,5.1,93.6,31.6,3349,31.7,12742,81.4,5.3,226900,9434,2.44,31075,59040,7.0,673,5377,7.8,2388,3429,0.0,0.0,0.0,0.0,0.0,31.0,0,26287,169017,7771,128005,140,557.06,41.9
8121,Washington County,CO,4780,4814,-0.7,4814,5.1,22.0,20.8,48.5,97.0,0.8,0.3,0.4,0.1,1.4,9.5,88.0,82.2,2.5,5.5,90.4,18.5,433,20.6,2414,73.3,7.2,110500,2019,2.27,24977,44683,13.1,105,524,2.5,371,265,0.0,0.0,0.0,0.0,0.0,0.0,0,42615,23053,5015,1542,5,2518.03,1.9
8123,Weld County,CO,277670,252837,9.8,252825,7.3,26.9,11.1,49.6,93.1,1.4,1.7,1.5,0.2,2.1,28.8,66.7,80.7,8.5,18.5,85.6,25.9,16805,26.2,100070,70.1,16.2,191500,90465,2.79,25468,57180,14.7,5376,71783,2.9,19020,23024,0.6,1.4,1.5,0.0,0.0,25.4,4193672,0,2246115,9272,217231,2708,3987.24,63.4
8125,Yuma County,CO,10202,10043,1.6,10043,7.5,26.5,17.4,50.0,97.3,0.4,0.8,0.5,0.2,0.8,21.9,76.6,83.5,10.9,15.5,88.0,17.7,630,14.7,4429,67.4,9.0,136600,3811,2.61,22498,44308,8.2,370,2535,1.5,943,1031,0.0,0.0,0.0,0.0,0.0,0.0,0,193564,106085,11074,8777,3,2364.41,4.2
9000,Connecticut,,3596677,3574096,0.6,3574097,5.3,21.6,15.5,51.2,81.2,11.5,0.5,4.5,0.1,2.2,15.0,68.8,88.0,13.6,21.5,89.2,36.5,217947,24.8,1493564,67.8,34.4,278900,1355849,2.55,37892,69461,10.2,88498,1473605,0.7,263511,332150,4.4,0.5,3.3,0.0,4.2,28.1,58404898,107917037,52165480,14953,9138437,5329,4842.36,738.1
9001,Fairfield County,CT,945438,916828,3.1,916829,5.7,23.6,14.4,51.2,79.8,12.2,0.5,5.5,0.1,2.0,18.7,63.8,88.8,20.3,28.2,89.0,44.8,41615,28.2,364954,69.0,35.1,432100,332655,2.73,48721,82283,9.1,26972,403375,-0.5,88363,108910,4.7,0.4,3.3,0.0,5.9,28.6,20028377,78881637,15702222,17661,1861946,1889,624.89,1467.2
9003,Hartford County,CT,897985,894029,0.4,894014,5.4,21.7,15.6,51.5,76.8,15.2,0.5,5.1,0.1,2.3,17.0,63.4,87.5,14.9,24.6,88.1,34.9,52781,22.1,374695,65.5,38.4,241500,347874,2.49,34698,64967,11.6,22613,446375,1.2,56271,72906,6.3,0.5,3.9,0.0,4.1,25.9,15016177,15631406,13820736,15811,1637963,962,735.1,1216.2
9005,Litchfield County,CT,184993,189927,-2.6,189927,4.2,19.4,18.4,50.7,94.4,1.8,0.3,1.8,0.1,1.6,5.5,89.9,91.3,7.1,9.8,91.3,33.4,14785,26.5,87434,78.1,21.0,263600,75755,2.45,37667,71338,6.4,4782,51115,-1.1,16961,21435,1.6,0.6,1.5,0.0,1.1,28.5,0,0,2458157,13043,245161,145,920.56,206.3
9007,Middlesex County,CT,164943,165676,-0.4,165676,4.5,19.4,17.7,51.2,89.4,5.4,0.2,3.0,0.1,1.9,5.8,84.6,89.4,7.3,10.4,93.8,39.1,11973,25.2,75274,76.2,23.0,292000,66141,2.41,39992,76994,6.4,4147,60406,0.9,13156,15693,1.3,0.4,3.4,0.2,1.5,28.0,3336020,953882,2129195,12980,293408,228,369.3,448.6
9009,New Haven County,CT,861277,862474,-0.1,862477,5.3,21.1,15.6,51.8,78.8,14.2,0.5,4.2,0.1,2.2,16.8,65.0,88.0,11.7,21.4,88.3,32.9,51106,24.0,362262,63.7,40.2,256900,328013,2.54,32523,61996,12.4,19431,331081,1.6,57091,74477,5.0,0.5,3.7,0.0,4.4,28.2,10493031,9890749,11785336,13970,1345875,1140,604.51,1426.7
9011,New London County,CT,273676,274046,-0.1,274055,5.1,20.3,16.0,49.9,83.9,6.9,1.1,4.5,0.2,3.5,9.9,76.3,85.2,8.6,13.9,90.5,31.3,25314,22.8,121248,67.5,27.8,252900,107066,2.44,33782,66583,8.7,5698,103244,-1.5,15978,21733,2.1,0.9,2.8,0.0,2.6,28.2,0,0,3882978,14682,3444661,646,664.88,412.2
9013,Tolland County,CT,151367,152682,-0.9,152691,4.0,18.5,14.0,49.8,90.3,3.6,0.2,4.1,0.1,1.8,5.0,86.2,85.7,6.9,10.6,93.0,36.9,10916,25.8,58529,74.4,24.5,254800,54327,2.52,34392,80529,6.5,2398,30798,1.7,9190,11698,0.0,0.0,2.9,0.0,1.8,32.5,1021759,214311,1206302,8140,173091,203,410.21,372.2
9015,Windham County,CT,116998,118434,-1.2,118428,5.2,20.7,14.7,50.4,92.8,2.9,0.6,1.4,0.1,2.2,10.9,83.8,86.8,4.9,12.8,86.8,22.3,9457,26.3,49168,70.1,26.7,211100,44018,2.57,27893,59333,11.4,2092,29397,-1.6,6501,8491,0.9,0.8,1.9,0.0,0.0,24.4,1776526,546686,1180554,10120,136332,116,512.91,230.9
10000,Delaware,,935614,897936,4.2,897934,6.0,21.8,16.4,51.6,70.8,22.2,0.7,3.8,0.1,2.5,8.9,63.7,86.3,8.4,12.6,87.7,28.9,75081,24.8,417437,72.5,17.6,235800,335707,2.63,29819,59878,11.7,24151,382128,5.1,56861,74573,8.7,0.0,4.0,0.0,2.1,26.1,25679939,5727401,14202083,16421,1910770,5194,1948.54,460.8
10001,Kent County,DE,171987,162344,5.9,162310,6.5,23.6,15.6,51.8,68.3,25.2,0.7,2.3,0.1,3.4,6.9,63.3,86.3,5.3,8.9,85.2,21.4,18340,25.8,67874,72.3,13.3,199500,58524,2.74,24851,55149,12.9,3166,48071,0.4,9126,11242,10.4,0.8,3.8,0.0,2.5,26.2,2361835,0,2589237,17024,447861,998,586.18,276.9
10003,New Castle County,DE,552778,538477,2.7,538479,6.1,22.2,13.8,51.6,67.1,24.9,0.4,5.2,0.1,2.3,9.4,59.5,85.6,10.0,14.6,89.4,33.8,36340,24.8,220118,70.0,22.5,246300,200739,2.62,32406,64537,10.7,15452,270062,6.4,32974,43660,10.1,0.0,5.1,0.0,2.1,26.5,20268769,0,8633413,16358,999186,1908,426.29,1263.2
10005,Sussex County,DE,210849,197115,7.0,197145,5.6,19.5,24.2,51.5,82.5,12.8,1.2,1.2,0.1,2.1,9.3,75.0,88.0,6.8,10.1,85.6,22.2,20401,24.2,129445,79.0,11.2,236600,76444,2.58,26908,52710,13.4,5343,61111,2.3,14761,20285,4.5,0.5,1.6,0.0,1.7,24.3,3049335,0,2979433,16103,463723,2288,936.08,210.6
11000,District Of Columbia,,658893,601767,9.5,601723,6.5,17.5,11.3,52.6,43.6,49.0,0.6,4.0,0.2,2.6,10.4,35.8,80.6,13.8,15.8,88.4,52.4,30520,29.7,306174,42.1,62.3,445200,263649,2.2,45290,65830,18.6,21919,491130,1.7,52262,55887,28.2,0.9,5.9,0.0,6.1,34.5,332844,2117990,3843716,6555,4278171,4189,61.05,9856.5
11001,District of Columbia,DC,658893,601767,9.5,601723,6.5,17.5,11.3,52.6,43.6,49.0,0.6,4.0,0.2,2.6,10.4,35.8,80.6,13.8,15.8,88.4,52.4,30520,29.7,306174,42.1,62.3,445200,263649,2.2,45290,65830,18.6,21919,491130,1.7,52262,55887,28.2,0.9,5.9,0.0,6.1,34.5,332844,2117990,3843716,6555,4278171,4189,61.05,9856.6
12000,Florida,,19893297,18804623,5.8,18801310,5.5,20.4,19.1,51.1,77.8,16.8,0.5,2.8,0.1,2.0,24.1,55.8,83.7,19.4,27.4,86.1,26.4,1569406,25.9,9144250,67.1,30.1,160200,7158980,2.61,26236,46956,16.3,510389,7134644,2.9,1838864,2009589,9.0,0.5,3.2,0.1,22.4,28.9,104832907,221641518,262341127,14353,41922059,84075,53624.76,350.6
12001,Alachua County,FL,256380,247335,3.7,247336,5.6,18.1,12.5,51.7,70.6,20.5,0.3,5.9,0.1,2.6,9.1,62.6,74.2,10.7,13.8,91.2,40.5,17015,19.9,114060,54.1,37.4,167900,96043,2.43,24857,42149,24.9,5850,84425,2.0,16536,20676,7.8,0.0,3.8,0.0,6.7,31.6,0,0,3152244,13124,493980,762,875.02,282.7
12003,Baker County,FL,27093,27115,-0.1,27115,6.3,24.8,12.9,47.9,83.9,13.5,0.4,0.7,0.0,1.6,2.4,81.9,85.2,1.0,2.2,80.1,10.0,1979,29.4,9620,79.7,3.7,124300,8216,3.01,19852,49236,17.3,388,5150,0.6,1181,1727,0.0,0.0,0.0,0.0,0.0,26.2,0,0,180555,7052,19819,47,585.23,46.3
12005,Bay County,FL,178985,168852,6.0,168852,6.1,21.6,16.1,50.2,82.4,11.3,0.8,2.3,0.1,3.1,5.7,77.7,79.6,4.9,6.3,87.0,21.1,22243,21.3,100322,62.5,31.1,157600,67561,2.48,24498,47461,14.7,4380,56839,0.5,12463,15465,0.0,0.0,0.0,0.3,2.7,29.0,1254295,644966,2471968,15138,480359,601,758.46,222.6
12007,Bradford County,FL,26702,28520,-6.4,28520,5.8,20.2,17.6,45.6,78.2,19.1,0.4,0.5,0.1,1.7,3.8,74.9,87.2,2.5,2.9,75.5,9.2,2741,27.1,10909,77.8,6.7,108000,8857,2.72,17749,40259,18.2,421,4067,-4.5,1161,2106,0.0,0.0,0.0,0.0,0.0,0.0,0,0,215629,7436,37088,2,293.96,97.0
12009,Brevard County,FL,556885,543378,2.5,543376,4.6,18.7,22.6,51.2,83.8,10.7,0.5,2.4,0.1,2.5,9.3,75.8,85.4,8.7,10.1,90.2,26.3,68817,23.7,272297,73.5,23.1,144900,220277,2.44,27009,48039,13.5,13084,161218,-0.9,39045,45939,6.1,0.4,2.9,0.0,5.3,30.4,6767571,1852661,6593988,12339,855503,1286,1015.66,535.0
12011,Broward County,FL,1869235,1748148,6.9,1748066,5.8,21.5,15.3,51.4,64.9,28.9,0.4,3.7,0.1,2.1,27.5,39.8,83.3,31.5,37.8,87.8,29.9,92575,27.2,817277,65.9,47.8,181500,663458,2.67,28205,51251,14.3,57607,626529,1.2,225162,237524,16.4,0.5,3.7,0.1,22.1,29.8,7160772,31411627,30886257,17680,4209090,2462,1209.79,1444.9
12013,Calhoun County,FL,14532,14625,-0.6,14625,5.5,20.8,17.3,45.5,81.8,13.6,1.3,0.8,0.2,2.2,5.8,76.8,87.5,2.7,6.0,73.5,7.8,1598,28.8,5928,79.0,2.2,70000,4696,2.7,14675,32780,23.5,191,1729,1.6,767,1034,0.0,0.0,0.0,0.0,0.0,0.0,0,0,64750,4791,9289,8,567.33,25.8
12015,Charlotte County,FL,168474,159989,5.3,159978,3.1,13.0,37.7,51.3,90.5,6.2,0.3,1.4,0.1,1.5,6.7,84.7,84.1,9.7,11.0,88.8,21.2,24867,23.3,101365,79.0,19.6,143700,70545,2.24,26286,44378,12.6,3692,35239,3.3,11764,13987,0.0,0.0,0.0,0.0,0.0,26.4,0,211715,1898114,12072,178021,610,680.28,235.2
12017,Citrus County,FL,139377,141236,-1.3,141236,3.8,15.0,35.2,51.6,93.3,3.1,0.4,1.6,0.0,1.5,5.2,88.7,88.0,4.8,5.9,86.0,16.6,21097,25.9,77717,82.6,5.6,117400,60319,2.29,23148,39100,16.8,2665,26477,1.6,8790,12451,2.5,0.0,0.0,0.0,0.0,30.9,0,0,1405565,10051,109681,233,581.7,242.8
12019,Clay County,FL,199798,190865,4.7,190865,5.5,24.2,14.2,50.8,82.4,10.9,0.5,3.2,0.2,2.9,9.2,74.8,85.3,6.6,9.8,90.2,24.0,26014,32.1,77439,76.6,11.8,158600,67805,2.82,26577,59482,9.8,3596,36060,2.5,11616,15242,6.3,0.0,4.2,0.0,4.5,28.8,0,394349,2005718,10997,213775,915,604.36,315.8
12021,Collier County,FL,348777,321520,8.5,321520,4.8,18.3,29.4,50.8,89.7,7.2,0.5,1.4,0.1,1.1,26.7,64.3,84.8,22.9,31.6,85.8,31.7,30603,23.6,203070,74.1,48.6,261300,122972,2.64,36439,55843,14.1,10622,108607,2.0,34947,38309,3.3,0.0,1.8,0.0,15.5,26.8,606697,1649037,5186468,16546,1037152,3610,1998.32,160.9
12023,Columbia County,FL,67857,67532,0.5,67531,5.9,21.8,17.3,48.2,78.0,18.5,0.5,1.1,0.1,1.8,5.6,73.1,78.8,3.4,7.2,82.6,13.3,7694,22.3,28309,70.8,9.5,108700,23604,2.69,19306,38070,19.8,1320,17648,0.5,3691,5089,5.7,0.0,0.0,0.0,3.4,24.7,351463,478597,862158,12692,103321,80,797.57,84.7
12027,DeSoto County,FL,35012,34862,0.4,34862,5.5,20.9,19.7,43.7,83.5,13.2,1.1,0.8,0.2,1.2,30.5,55.2,82.0,17.6,29.2,71.3,10.6,2802,24.6,14729,71.8,10.8,89900,10622,2.89,15088,34963,29.6,427,4876,1.7,1572,1899,0.0,0.0,0.0,0.0,0.0,24.0,0,0,280786,8001,24311,112,637.06,54.7
12029,Dixie County,FL,15907,16422,-3.1,16422,5.6,19.1,22.0,46.0,88.5,9.1,0.4,0.4,0.0,1.5,3.7,85.1,87.1,2.7,2.9,78.5,8.4,2085,25.7,9155,78.5,3.0,85300,6130,2.49,16851,33981,17.4,184,1411,1.5,775,919,0.0,0.0,0.0,0.0,0.0,0.0,0,0,49120,3303,7395,24,705.05,23.3
12031,Duval County,FL,897698,864263,3.9,864263,6.8,22.9,12.8,51.6,62.0,30.1,0.4,4.7,0.1,2.7,8.6,55.0,81.5,9.5,13.2,87.9,26.4,85376,23.6,395841,61.6,29.5,151400,330897,2.58,26143,48323,16.9,23807,403647,1.6,62201,69495,14.1,0.3,4.9,0.0,6.3,29.8,11222050,17205787,13316700,15688,1719352,3446,762.19,1133.9
12033,Escambia County,FL,310659,297619,4.4,297619,6.0,20.8,15.7,50.1,69.9,22.8,0.9,3.1,0.2,3.1,5.5,65.5,80.9,5.6,7.9,87.9,23.7,34292,22.2,138636,64.1,23.6,130100,111689,2.51,23441,43918,18.1,6581,98366,-1.4,19187,24187,9.5,0.0,3.7,0.1,2.4,30.6,2117030,1838916,4055667,13404,493882,698,656.46,453.4
12035,Flagler County,FL,102408,95696,7.0,95696,4.2,18.1,28.4,52.0,83.7,11.5,0.4,2.4,0.1,1.9,9.8,75.3,88.2,13.4,15.5,90.2,23.3,11345,26.4,49562,80.2,11.3,169300,35647,2.71,24497,47233,16.6,1863,15920,0.0,8112,9695,0.0,0.0,0.0,0.0,0.0,0.0,235664,0,684121,7766,114760,548,485.46,197.1
12037,Franklin County,FL,11815,11549,2.3,11549,4.3,16.6,20.1,42.2,82.7,14.4,0.6,0.7,0.1,1.5,5.1,78.0,80.0,3.2,7.3,79.3,14.4,1235,22.3,8569,69.7,13.3,143900,4294,2.23,19843,38328,20.6,304,2226,1.3,1270,1758,0.0,0.0,0.0,0.0,0.0,0.0,0,0,92324,8191,37568,8,534.73,21.6
12039,Gadsden County,FL,46281,47746,-3.1,46389,6.1,22.2,15.5,49.5,42.3,55.2,0.6,0.7,0.2,1.1,10.5,33.2,89.4,6.6,9.5,77.2,14.9,3285,28.0,19432,71.2,7.7,111200,16662,2.62,17615,35380,26.5,640,9016,3.4,2780,2765,35.1,0.0,0.0,0.0,0.0,29.8,262901,383966,440290,9422,18920,23,516.33,89.8
12041,Gilchrist County,FL,16997,16939,0.3,16939,5.3,20.4,19.4,48.0,91.7,5.7,0.7,0.5,0.1,1.2,5.2,87.1,85.1,3.0,4.4,79.8,11.1,1815,31.3,7229,79.7,1.8,102300,6240,2.51,20180,38406,24.1,214,1424,5.8,913,1104,0.0,0.0,0.0,0.0,0.0,0.0,0,2348,52477,3102,8145,37,349.68,48.4
12043,Glades County,FL,13635,12884,5.8,12884,4.0,17.1,26.5,43.7,78.7,14.0,5.6,0.7,0.1,1.0,21.7,60.4,87.5,14.7,20.7,78.0,12.2,1205,24.5,6825,72.1,5.7,87700,3843,3.05,16011,34694,24.5,106,881,6.0,517,354,0.0,0.0,0.0,0.0,0.0,29.4,0,0,13064,1191,4894,14,806.01,16.0
12045,Gulf County,FL,15944,15863,0.5,15863,4.3,15.5,18.1,39.8,78.0,19.1,0.5,0.6,0.0,1.8,5.0,73.4,85.1,3.2,4.6,79.5,13.6,1384,24.4,9181,71.3,11.1,120200,5414,2.49,18546,40455,16.4,275,2023,2.7,1063,1232,0.0,0.0,0.0,0.0,0.0,0.0,0,0,76286,4840,18763,92,564.01,28.1
12047,Hamilton County,FL,14048,14799,-5.1,14799,5.4,19.3,15.9,42.9,63.0,33.5,1.0,0.8,0.0,1.8,9.5,55.0,82.9,3.7,8.8,75.1,9.4,1311,24.2,5704,75.1,5.5,73500,4657,2.45,16295,37716,23.6,166,1890,-3.9,556,816,0.0,0.0,0.0,0.0,0.0,35.5,0,0,103218,7243,7863,9,513.79,28.8
12049,Hardee County,FL,27469,27731,-0.9,27731,7.2,26.7,14.8,46.5,88.5,7.6,1.2,1.2,0.1,1.4,43.1,47.5,86.4,20.8,40.7,64.2,8.8,1388,25.6,9618,70.5,9.1,85800,7463,3.38,15366,37125,29.6,380,4172,-5.0,1272,1363,0.0,0.0,0.0,0.0,22.0,0.0,0,0,400142,13878,17883,17,637.78,43.5
12051,Hendry County,FL,38505,39140,-1.6,39140,7.7,28.1,12.7,48.0,82.0,13.2,2.2,1.3,0.2,1.1,50.9,33.9,83.4,24.9,44.8,64.4,9.9,1820,27.5,14376,69.6,8.2,81400,11223,3.15,16133,35425,26.7,546,5579,3.4,2707,2489,0.0,0.0,0.0,0.0,34.3,0.0,0,212095,345685,8774,37321,24,1152.75,34.0
12053,Hernando County,FL,175855,172777,1.8,172778,4.4,18.7,27.5,52.1,90.5,5.7,0.5,1.4,0.1,1.9,11.6,80.2,85.3,6.5,10.5,86.5,15.5,21514,30.0,84623,79.3,4.8,117400,70210,2.44,21411,41024,15.4,2984,29704,-1.0,10326,13476,3.6,0.8,0.0,0.0,8.7,26.6,312518,177905,1654088,9789,166197,378,472.54,365.6
12055,Highlands County,FL,98236,98786,-0.6,98786,4.7,17.8,33.8,51.5,85.6,10.6,0.6,1.5,0.1,1.6,18.4,68.7,84.4,10.9,18.9,81.0,14.9,12995,21.9,54894,77.9,11.7,93600,39931,2.42,20072,35560,20.1,1862,18901,-4.6,5719,7360,0.0,0.0,3.7,0.0,14.4,24.1,306138,0,1089559,11060,100789,92,1016.62,97.2
12057,Hillsborough County,FL,1316298,1229224,7.1,1229226,6.4,23.2,13.1,51.3,75.3,17.5,0.6,4.0,0.1,2.5,26.5,51.6,81.7,15.5,26.4,86.8,29.5,94536,25.7,554070,60.0,29.3,160000,471340,2.63,27149,49596,16.8,33302,538119,3.2,106573,114841,8.6,0.6,4.5,0.0,19.9,28.6,9444867,17752902,19110290,16335,2619799,7490,1020.21,1204.9
12059,Holmes County,FL,19650,19927,-1.4,19927,5.0,20.3,18.9,46.6,89.4,6.8,0.9,0.7,0.1,2.1,2.7,87.0,87.6,2.6,3.8,75.5,12.0,1872,29.7,8559,79.3,4.2,83400,6808,2.65,16845,35511,23.8,267,1804,-5.2,1091,937,0.0,0.0,0.0,0.0,0.0,20.3,0,0,73133,3825,8328,31,478.78,41.6
12061,Indian River County,FL,144755,138028,4.9,138028,4.4,17.5,30.0,52.0,87.3,9.4,0.5,1.5,0.0,1.4,11.9,76.3,84.3,10.4,14.3,87.0,26.6,15463,21.8,77340,74.9,25.0,157400,58038,2.37,30532,44772,15.1,3976,39372,0.8,12372,15401,4.9,0.0,0.0,0.0,6.0,0.0,413041,0,1851697,13940,190526,707,502.87,274.5
12063,Jackson County,FL,48801,49761,-1.9,49746,4.9,18.8,18.0,44.8,69.8,27.0,0.8,0.6,0.2,1.7,4.8,65.7,86.1,2.8,5.7,78.0,14.2,5114,24.0,20821,74.3,7.2,88100,16244,2.55,17525,36809,19.9,767,8740,-1.9,2687,3106,0.0,0.0,0.0,0.0,2.4,27.1,180603,70612,541943,11070,43151,29,917.76,54.2
12065,Jefferson County,FL,14050,14761,-4.8,14761,4.9,17.5,20.1,47.7,62.1,35.4,0.4,0.5,0.0,1.6,4.1,58.8,90.1,2.3,7.4,81.2,16.9,1753,26.9,6589,75.5,5.2,121100,5347,2.36,21184,44170,17.2,239,1490,0.5,1015,1092,0.0,0.0,0.0,0.0,0.0,0.0,0,43717,88713,6403,7035,17,598.1,24.7
12067,Lafayette County,FL,8835,8870,-0.4,8870,5.1,20.1,14.0,40.0,82.5,15.2,0.7,0.2,0.1,1.3,12.5,71.0,85.1,8.2,12.5,78.4,9.3,765,24.3,3300,79.9,2.8,116600,2710,2.75,18660,39722,20.2,94,762,1.1,325,247,0.0,0.0,0.0,0.0,0.0,0.0,0,0,66528,8292,2663,11,543.41,16.3
12069,Lake County,FL,315690,297047,6.3,297052,5.0,19.8,26.0,51.6,84.6,10.6,0.6,2.2,0.1,1.8,13.8,72.4,85.1,8.5,12.5,86.4,20.5,34327,27.7,146687,75.3,12.1,142700,117250,2.53,24183,45035,13.8,6526,70757,3.9,22148,26755,5.6,0.0,0.0,0.0,8.7,27.5,825472,726344,3441893,11391,436028,2488,938.38,316.6
12071,Lee County,FL,679513,618754,9.8,618754,4.9,18.7,26.3,51.0,87.0,9.1,0.5,1.7,0.1,1.6,19.6,69.2,80.9,15.1,21.2,86.9,24.7,63839,26.9,375682,70.8,27.5,149400,241531,2.59,27348,47439,15.4,16403,184629,2.8,57794,64852,4.2,0.0,2.3,0.0,13.6,26.5,1181824,2271601,9193114,15708,1191997,4095,784.51,788.7
12073,Leon County,FL,283988,275480,3.1,275487,5.2,19.1,11.4,52.5,62.6,31.6,0.3,3.3,0.1,2.1,6.1,57.5,72.8,6.5,9.6,91.8,44.2,17802,19.9,126724,53.8,31.7,183300,110377,2.4,26196,46369,23.2,7396,94117,2.1,19062,24022,15.0,0.0,3.1,0.0,4.1,29.8,593440,791172,3533827,13451,551621,1114,666.85,413.1
12075,Levy County,FL,39613,40801,-2.9,40801,5.0,19.8,22.9,50.8,87.2,9.5,0.7,0.7,0.1,1.7,8.1,80.0,83.4,3.2,6.0,81.1,11.1,4599,28.1,19856,77.5,5.2,92200,15582,2.54,18304,34348,23.7,703,5121,-0.2,2599,3663,0.0,0.0,0.0,0.0,0.0,22.8,130976,62754,346356,8920,32401,49,1118.21,36.5
12077,Liberty County,FL,8360,8365,-0.1,8365,4.8,19.0,11.8,37.6,77.0,19.7,1.3,0.4,0.0,1.6,6.6,71.4,79.4,3.4,8.1,75.6,12.8,645,28.7,3324,78.7,0.1,78800,2305,2.91,16266,39681,24.1,79,1334,-4.4,371,489,0.0,0.0,0.0,0.0,0.0,0.0,0,0,24403,3129,3368,9,835.56,10.0
12079,Madison County,FL,18518,19226,-3.7,19224,5.5,20.0,17.9,47.2,58.7,38.9,0.6,0.4,0.0,1.4,5.0,54.5,88.0,4.1,6.9,78.2,9.7,1562,27.5,8422,75.8,7.4,81000,6739,2.52,15538,33833,22.5,298,2775,7.6,938,1092,0.0,0.0,0.0,0.0,0.0,0.0,0,0,124831,6578,12314,33,695.95,27.6
12081,Manatee County,FL,351746,322833,9.0,322833,5.0,19.5,25.5,51.6,86.4,9.3,0.5,2.0,0.1,1.7,15.7,72.1,82.7,12.7,16.5,87.4,26.6,33883,23.9,179035,71.4,24.8,165400,131197,2.48,27322,47876,15.1,7925,85188,-0.3,26634,29906,3.8,0.0,2.6,0.0,7.5,27.9,2985063,1725496,3874822,12339,443809,3565,742.93,434.5
12083,Marion County,FL,339167,331303,2.4,331298,4.9,18.8,27.9,52.0,82.9,13.2,0.5,1.6,0.1,1.7,11.9,72.2,84.6,7.6,11.9,85.0,17.4,39952,24.8,163542,76.7,9.9,119400,134002,2.43,21992,39453,18.1,6787,74910,2.6,22900,29443,7.5,0.0,2.4,0.0,8.2,27.6,1841509,1639464,4218810,13060,353110,754,1584.55,209.1
12085,Martin County,FL,153392,146850,4.5,146318,4.1,16.8,29.3,50.4,90.4,5.7,1.1,1.3,0.2,1.3,12.9,79.3,85.7,9.8,14.5,88.8,29.9,16999,24.4,78948,76.2,29.3,197900,59891,2.41,34057,49846,13.0,5141,49754,-0.1,14370,18387,1.7,0.0,2.2,0.0,5.8,27.6,856090,741647,2470433,17790,279037,432,543.46,269.2
12086,Miami-Dade County,FL,2662874,2498017,6.6,2496435,5.8,20.6,15.2,51.4,77.9,18.9,0.3,1.7,0.0,1.2,66.2,14.8,86.9,51.3,72.2,78.8,26.3,60168,29.0,1004371,55.7,47.4,201000,828031,3.02,23174,43100,19.9,78629,886497,2.9,407551,403672,11.4,0.5,2.2,0.1,60.5,28.9,9347116,60760055,34530470,14074,6005856,7731,1897.72,1315.5
12087,Monroe County,FL,77136,73090,5.5,73090,4.6,15.3,20.5,47.5,89.8,6.6,0.4,1.3,0.1,1.8,22.4,68.6,84.0,17.4,22.9,89.9,28.0,7691,18.8,52935,61.7,23.6,381200,28503,2.54,33974,53607,13.5,3615,29697,2.1,11729,13973,3.4,0.0,1.6,0.0,0.0,24.7,0,0,1387603,18900,748100,188,983.28,74.3
12089,Nassau County,FL,76619,73314,4.5,73314,5.1,20.4,20.0,50.8,90.4,6.5,0.5,1.0,0.1,1.5,3.8,87.2,86.9,2.6,3.7,89.4,22.8,9109,29.0,35972,78.4,13.9,181100,28044,2.62,28926,55315,12.6,1648,15434,1.2,5403,6273,2.7,0.0,0.0,0.0,0.0,27.5,696212,0,630924,9219,286967,587,648.64,113.0
12091,Okaloosa County,FL,196512,180822,8.7,180822,6.7,22.2,15.1,49.2,81.7,10.1,0.7,3.2,0.3,3.9,8.5,74.7,81.0,6.6,9.6,90.9,27.4,30257,22.9,95055,66.1,26.0,182100,73253,2.47,28600,54684,13.4,5031,58285,-0.8,14078,18467,0.0,0.4,4.2,0.0,4.1,27.8,656730,236877,3031043,16754,491894,590,930.25,194.4
12093,Okeechobee County,FL,39149,39996,-2.1,39996,6.2,22.7,17.9,46.2,87.4,8.8,1.4,1.0,0.1,1.3,25.3,63.6,88.7,12.1,24.3,67.8,10.2,3063,25.3,18223,73.9,5.3,105300,12999,2.86,17787,34570,26.9,738,6486,-1.7,2078,2828,0.0,0.9,0.0,0.0,0.0,0.0,0,85257,430587,10758,46949,17,768.91,52.0
12095,Orange County,FL,1253001,1145954,9.3,1145956,6.2,22.7,10.8,50.9,69.0,22.2,0.6,5.6,0.2,2.5,29.2,43.3,79.5,19.0,33.5,87.2,30.1,66314,26.3,508051,57.4,33.0,167800,415790,2.76,24877,47581,17.0,33317,640229,3.0,110458,113155,10.9,0.0,6.1,0.1,20.9,29.9,10921814,17080688,19195634,18005,6645089,9246,903.43,1268.5
12097,Osceola County,FL,310211,268687,15.5,268685,6.4,25.1,12.7,51.0,80.0,13.4,0.8,3.0,0.2,2.6,49.7,36.1,85.4,19.9,47.8,83.8,17.6,16395,30.6,133981,63.1,26.8,129900,90413,3.07,19007,43891,17.9,5090,65594,3.8,25694,24646,0.0,0.6,5.4,0.0,37.6,29.0,644949,3044187,2868737,11107,890451,3414,1327.45,202.4
12099,Palm Beach County,FL,1397710,1320134,5.9,1320134,5.1,19.5,22.7,51.6,76.1,18.8,0.6,2.7,0.1,1.7,20.7,57.3,85.0,22.6,28.4,87.5,32.4,99057,24.5,674844,71.2,40.6,199700,526007,2.51,32858,52432,14.5,44234,466399,3.7,151331,163433,8.9,0.5,3.1,0.0,14.4,27.8,4240652,12017516,19321650,15278,3088613,5066,1969.76,670.2
12101,Pasco County,FL,485331,464701,4.4,464697,5.0,20.5,22.5,51.4,89.4,5.6,0.4,2.4,0.1,2.0,13.4,77.4,87.0,9.0,13.9,87.2,20.4,50239,30.0,232348,76.5,12.1,120000,182707,2.53,23736,43888,13.9,8784,84928,3.5,31285,38812,0.0,1.0,3.3,0.0,9.1,28.3,745172,807398,4746208,10328,432390,2785,746.89,622.2
12103,Pinellas County,FL,938098,916812,2.3,916542,4.5,17.1,23.0,52.1,83.1,10.9,0.4,3.4,0.1,2.0,8.8,75.4,84.3,11.4,13.2,88.9,27.5,94997,23.4,504674,67.0,36.9,151500,401708,2.24,29262,45535,14.1,26751,365099,4.7,76324,98528,4.6,0.3,3.8,0.0,5.0,29.4,8062020,12378394,14826852,16244,1925067,1733,273.8,3347.5
12105,Polk County,FL,634638,602095,5.4,602095,5.9,22.8,19.5,51.0,79.7,15.7,0.6,1.9,0.1,2.0,19.6,62.1,83.7,10.2,19.2,82.4,18.1,51949,25.8,282730,70.5,14.3,111400,219540,2.71,21285,43113,18.2,10922,166924,1.1,38465,45012,7.1,0.0,3.3,0.0,12.8,25.4,7178034,13241719,6420144,11195,699617,2559,1797.84,334.9
12107,Putnam County,FL,72143,74364,-3.0,74364,5.7,21.6,21.1,50.7,80.3,16.6,0.6,0.7,0.1,1.7,9.6,71.7,88.2,4.8,8.9,77.5,11.4,8293,28.1,36662,76.3,7.0,89600,28047,2.57,18377,32497,26.4,1232,11917,0.7,3853,5259,8.5,0.0,0.0,0.0,0.0,0.0,982580,0,671648,9108,48880,29,727.62,102.2
12109,St. Johns County,FL,217919,190039,14.7,190039,4.8,22.0,18.2,51.3,89.5,5.7,0.3,2.6,0.1,1.8,6.1,84.0,83.3,6.4,8.1,93.2,41.4,19172,25.7,96900,77.0,19.1,242900,75558,2.57,36836,64876,9.6,5305,49016,6.1,18006,19871,2.3,0.5,2.7,0.0,4.9,26.1,533263,871130,2039710,11601,507634,2786,600.66,316.4
12111,St. Lucie County,FL,291028,277257,5.0,277789,5.2,20.8,22.6,51.2,75.1,20.2,0.6,1.9,0.1,2.1,17.6,59.5,83.5,14.9,20.5,85.2,19.5,26490,28.3,137339,73.0,20.5,122900,106060,2.62,23285,43413,18.4,5062,53629,-0.8,21562,24858,12.8,0.0,2.4,0.0,13.9,31.7,916481,693623,3697675,14197,268322,962,571.93,485.7
12113,Santa Rosa County,FL,163422,151372,8.0,151372,5.7,22.6,14.5,48.9,87.1,6.6,0.9,2.2,0.2,3.1,5.2,82.8,81.3,4.4,6.5,89.4,25.9,20921,27.1,67604,73.6,11.2,162300,57368,2.64,26861,57703,12.3,2469,22056,0.6,10394,12874,2.2,0.0,0.0,0.0,2.6,31.5,74894,148932,1107974,7499,135111,1127,1011.61,149.6
12115,Sarasota County,FL,396962,379437,4.6,379448,3.7,15.0,33.9,52.2,91.6,5.0,0.3,1.6,0.1,1.5,8.7,83.7,84.8,12.0,13.0,91.9,30.8,47357,21.9,230987,74.5,25.0,175000,170555,2.21,32313,49052,12.2,12905,127514,1.7,38127,46390,2.1,0.2,1.5,0.0,5.3,26.2,1366676,1560297,5599478,15181,844369,2093,555.87,682.6
12117,Seminole County,FL,442516,422718,4.7,422718,5.2,21.4,14.3,51.6,80.6,12.2,0.4,4.1,0.1,2.5,19.2,63.6,86.9,11.8,18.8,91.8,35.0,30528,26.3,185882,70.5,25.3,184300,147529,2.87,28675,58175,11.3,12639,152363,1.6,38346,46725,5.4,0.3,3.4,0.0,11.2,28.8,1634749,2852650,6872148,16831,764148,967,309.22,1367.0
12119,Sumter County,FL,114350,93420,22.4,93420,2.0,7.4,52.9,49.3,89.6,8.3,0.4,0.8,0.1,0.9,5.6,84.6,85.3,5.8,7.4,87.8,25.2,18121,24.6,64510,90.2,2.3,194100,43507,2.04,27504,48493,12.0,1319,17523,6.5,5521,5207,0.0,0.0,0.0,0.0,4.5,31.4,367864,0,672106,9244,79933,2570,546.93,170.8
12121,Suwannee County,FL,44022,41551,5.9,41551,5.8,21.4,19.6,47.8,83.5,13.6,0.7,0.7,0.1,1.5,9.1,75.3,85.2,5.9,8.1,79.8,9.8,4324,26.0,18848,72.2,5.3,98400,15712,2.64,18431,35698,23.6,671,7738,-3.4,2307,3112,5.2,0.0,0.0,0.0,3.4,0.0,0,108657,353760,8962,31870,41,688.55,60.3
12123,Taylor County,FL,22582,22568,0.1,22570,5.3,19.0,18.0,43.6,75.8,20.7,0.9,0.8,0.0,1.7,4.0,72.3,86.7,2.4,5.8,76.5,11.6,2310,21.1,10872,78.1,5.3,87400,7672,2.55,17045,36356,16.7,401,4447,-2.1,930,1475,0.0,0.0,0.0,0.0,0.0,0.0,595497,0,207073,9886,19967,24,1043.31,21.6
12125,Union County,FL,15190,15535,-2.2,15535,5.3,19.2,12.4,35.4,74.7,22.9,0.4,0.4,0.0,1.5,5.3,70.3,83.9,2.6,4.9,73.9,10.0,1931,22.9,4458,66.5,6.7,89200,3807,2.79,13590,42660,19.6,135,1822,3.2,518,722,0.0,0.0,0.0,0.0,0.0,37.1,0,0,42047,2855,10512,22,243.56,63.8
12127,Volusia County,FL,507531,494597,2.6,494593,4.7,18.0,23.2,51.2,84.5,11.1,0.5,1.9,0.1,1.9,12.2,73.8,85.6,7.0,12.7,87.6,20.8,54343,25.4,256093,72.0,21.9,142800,195907,2.47,23973,42457,16.8,11972,131926,1.9,37963,46499,4.1,0.0,2.7,0.0,6.8,0.0,1948646,2002931,6099931,12230,899154,1373,1101.03,449.2
12129,Wakulla County,FL,31432,30783,2.1,30776,5.3,20.8,13.2,44.7,81.4,15.2,0.7,0.6,0.1,2.0,3.8,78.2,80.2,2.8,5.1,87.7,17.2,3447,30.4,12838,78.7,4.9,138300,10455,2.61,21797,52691,14.4,413,3101,4.8,1981,2750,0.0,1.3,0.0,0.0,0.0,0.0,0,7019,167697,5544,20092,106,606.42,50.8
12131,Walton County,FL,61530,55043,11.8,55043,5.4,20.2,18.7,49.1,89.4,5.9,0.9,1.1,0.2,2.5,6.1,84.2,83.5,5.0,7.5,84.5,24.1,6636,25.5,47807,73.3,27.0,159500,22639,2.41,25845,43640,17.9,1873,17445,-2.5,6588,7065,0.0,0.0,0.0,0.0,0.0,24.3,0,205148,705008,13387,312686,1076,1037.63,53.0
12133,Washington County,FL,24451,24896,-1.8,24896,4.9,19.8,17.3,45.2,80.0,15.6,1.4,0.7,0.1,2.2,3.5,77.2,86.4,2.8,4.5,80.3,11.4,2088,28.1,10680,78.6,3.0,85900,8533,2.63,17385,38501,20.1,378,3751,-1.2,1400,1273,0.0,0.0,0.0,0.0,0.0,40.1,0,0,177286,7747,18080,21,582.8,42.7
13000,Georgia,,10097343,9688681,4.2,9687653,6.6,24.7,12.4,51.2,62.1,31.5,0.5,3.8,0.1,2.0,9.3,54.3,83.6,9.7,13.3,84.7,28.0,690208,27.0,4151190,65.1,20.5,151300,3518097,2.71,25182,49179,18.2,217559,3458050,2.0,816360,901105,20.4,0.7,5.1,0.1,3.6,30.9,144280774,141962359,117516907,12326,16976235,39423,57513.49,168.4
13001,Appling County,GA,18540,18236,1.7,18236,6.9,25.4,15.6,49.9,77.8,19.7,0.5,0.8,0.2,1.0,9.3,69.8,90.8,5.5,10.1,76.8,12.8,1009,20.9,8414,69.6,5.9,75600,6934,2.59,19643,36786,22.9,364,5222,-2.7,1170,1627,0.0,0.0,0.0,0.0,2.7,21.5,347120,58142,179447,10022,15835,3,507.08,36.0
13003,Atkinson County,GA,8223,8382,-1.9,8375,8.4,28.1,11.8,49.6,77.0,17.9,1.3,0.8,1.0,2.0,23.9,56.9,87.6,12.2,20.5,64.6,7.7,540,21.2,3461,69.9,7.4,75000,2758,3.0,15958,30049,32.2,89,1115,1.5,514,582,0.0,0.0,0.0,0.0,0.0,27.5,0,0,35656,4367,937,0,339.38,24.7
13005,Bacon County,GA,11281,11096,1.7,11096,6.9,26.0,14.1,50.8,81.0,16.5,0.4,0.5,0.2,1.4,8.0,74.1,85.9,5.2,8.6,72.2,12.1,502,24.2,4739,67.5,6.8,77000,4036,2.66,18558,33757,19.0,214,2553,4.6,652,716,0.0,0.0,0.0,0.0,0.0,26.3,165420,120704,68612,6495,5947,0,258.58,42.9
13007,Baker County,GA,3255,3451,-5.7,3451,5.1,20.6,17.8,52.1,51.6,45.6,0.4,1.2,0.1,1.2,4.8,47.9,95.5,0.6,0.6,79.5,10.9,136,26.9,1628,72.0,4.2,72700,1374,2.47,17019,27353,31.8,23,218,-5.2,193,133,0.0,0.0,0.0,0.0,0.0,30.1,0,0,5320,1421,0,0,341.94,10.1
13009,Baldwin County,GA,45909,45835,0.2,45720,5.2,19.3,14.2,49.6,54.9,41.8,0.3,1.7,0.1,1.2,2.1,53.3,80.2,2.6,3.7,81.7,19.0,3079,20.5,20226,57.2,20.0,103900,16338,2.55,18622,32751,30.0,815,12245,-1.8,2976,4071,0.0,0.0,1.6,0.0,1.0,26.6,0,0,524150,11267,57925,39,257.84,177.3
13011,Banks County,GA,18295,18395,-0.5,18395,5.3,23.2,15.9,49.3,93.8,2.9,0.6,1.3,0.1,1.3,6.5,88.1,91.1,3.4,4.6,75.5,11.6,1262,29.4,7540,77.3,3.5,140200,6772,2.71,20231,41141,16.7,264,2947,6.0,1236,0,0.0,0.0,0.0,0.0,0.0,0.0,0,23263,233863,14223,44269,17,232.09,79.3
13013,Barrow County,GA,73240,69367,5.6,69367,7.2,27.4,11.2,50.7,81.8,11.7,0.5,3.8,0.1,2.2,9.6,73.4,87.2,7.3,12.2,82.1,17.1,4968,33.4,26833,78.2,6.5,127000,23413,2.97,21379,53274,13.7,1072,13953,0.9,5317,6370,0.0,0.0,0.0,0.0,0.0,30.2,768413,466296,660898,9839,125078,444,160.31,432.7
13015,Bartow County,GA,101736,100157,1.6,100157,6.4,25.2,12.8,50.7,85.6,10.9,0.6,1.0,0.1,1.9,8.0,78.7,82.9,4.6,6.9,80.4,15.9,6556,28.1,39827,67.7,11.7,128500,34567,2.88,21022,47197,17.1,1853,28229,3.7,7663,9679,7.0,0.0,2.5,0.0,0.0,28.2,3723604,648966,1177422,12699,140737,221,459.54,217.9
13017,Ben Hill County,GA,17464,17634,-1.0,17634,7.7,25.4,15.4,52.5,61.8,35.5,0.6,0.8,0.0,1.3,6.3,56.5,87.2,1.6,3.2,76.9,9.8,1133,16.9,7893,64.4,13.9,79700,6110,2.83,14204,28547,38.1,318,4597,1.1,1154,1372,14.2,0.0,0.0,0.0,0.0,27.8,0,0,224967,12693,20020,11,250.12,70.5
13019,Berrien County,GA,18700,19286,-3.0,19286,6.1,23.5,16.5,50.7,86.6,11.1,0.4,0.6,0.0,1.2,5.0,82.4,89.0,2.7,4.9,76.8,12.8,1453,25.5,8640,76.8,3.8,80100,7040,2.69,16784,32258,22.5,254,2815,-7.2,1061,1210,0.0,0.0,0.0,0.0,0.0,33.1,415852,68412,129158,7739,9253,15,451.9,42.7
13021,Bibb County,GA,153905,155510,-1.0,155547,7.2,25.2,14.0,53.0,42.6,53.8,0.3,1.9,0.1,1.3,3.2,40.3,81.3,3.8,5.1,82.4,22.5,11498,20.7,70297,54.4,27.8,123000,56585,2.63,20982,37550,24.9,4060,71200,0.2,12382,14851,32.5,0.4,3.3,0.0,0.0,35.1,1693877,1613732,2536200,16374,306252,92,249.76,622.8
13023,Bleckley County,GA,12795,13063,-2.1,13063,5.4,21.5,16.7,52.2,70.9,26.8,0.1,1.0,0.0,1.1,2.6,68.9,82.0,2.0,3.2,79.5,14.9,946,26.3,5276,71.3,10.0,79900,3955,2.9,20156,36073,23.3,163,1469,-24.4,758,769,0.0,0.0,0.0,0.0,0.0,36.4,0,16882,76320,5950,6646,16,215.87,60.5
13025,Brantley County,GA,18417,18410,0.0,18411,5.7,25.0,14.7,50.6,94.4,3.5,0.4,0.3,0.0,1.5,2.1,92.5,88.3,0.7,1.7,76.8,6.4,1327,32.2,7923,80.4,3.7,68500,6550,2.79,16938,36070,21.9,187,1232,-0.6,973,0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,62404,4043,4259,11,442.36,41.6
13027,Brooks County,GA,15418,16324,-5.6,16243,6.7,21.9,18.6,51.2,62.2,35.4,0.4,0.6,0.2,1.2,5.6,57.6,87.2,3.2,6.8,77.4,11.4,1533,23.0,7659,67.6,5.9,101400,6573,2.39,19409,34419,24.0,199,1986,-0.7,819,940,0.0,0.0,0.0,0.0,0.0,0.0,0,65887,88152,5394,0,15,493.05,32.9
13029,Bryan County,GA,33906,30238,12.1,30233,7.3,29.1,10.2,50.2,78.9,15.4,0.5,2.0,0.2,3.0,6.3,74.0,83.2,3.5,4.4,88.0,30.6,3253,28.7,12908,70.2,9.7,182400,11230,2.79,27556,64707,11.7,597,5686,7.2,2258,2749,0.0,0.0,0.0,0.0,0.0,30.6,0,154440,224984,7479,34786,412,435.97,69.3
13031,Bulloch County,GA,72087,70217,2.7,70217,5.6,20.4,10.3,50.6,67.0,29.1,0.4,1.7,0.1,1.6,3.7,64.2,78.0,4.0,5.0,85.9,27.7,4028,21.2,29771,50.9,27.4,134900,25254,2.61,18587,35840,31.3,1373,17227,-0.3,4308,6025,0.0,0.0,0.0,0.0,0.0,22.2,523827,0,733425,11044,95340,521,672.81,104.4
13033,Burke County,GA,22709,23316,-2.6,23316,7.0,26.2,14.1,52.0,49.2,48.4,0.3,0.5,0.1,1.4,3.0,47.0,90.9,1.7,3.0,76.9,9.9,1490,26.7,9829,70.2,9.1,80000,7881,2.91,16171,31494,33.5,300,4993,-10.5,1381,1797,28.3,0.0,0.0,0.0,0.0,36.2,0,0,177473,7776,11108,43,826.97,28.2
13035,Butts County,GA,23368,23655,-1.2,23655,5.8,22.0,14.3,47.1,70.2,27.7,0.3,0.5,0.0,1.2,3.1,67.6,83.5,3.0,3.0,74.7,8.4,1534,30.9,9281,75.2,7.9,125400,7776,2.74,20363,49754,14.5,347,4048,4.6,1461,1731,0.0,0.0,0.0,0.0,0.0,21.0,287017,465389,295450,12496,17970,12,184.39,128.3
13037,Calhoun County,GA,6463,6694,-3.5,6694,4.8,19.0,12.5,40.0,36.1,61.2,0.6,0.6,0.3,1.3,4.7,32.9,74.2,4.9,8.5,68.6,11.5,420,19.0,2383,70.6,9.4,53000,1804,2.19,14868,26986,38.7,74,725,-0.7,295,428,0.0,0.0,0.0,0.0,0.0,0.0,0,16497,19557,3266,946,0,280.37,23.9
13039,Camden County,GA,52027,50513,3.0,50513,7.6,25.2,11.3,48.6,75.0,19.5,0.7,1.7,0.2,2.9,6.2,70.0,80.3,2.1,4.8,90.4,19.5,6625,21.9,21389,63.1,15.7,154500,18386,2.69,22701,51990,15.5,792,8460,5.9,2319,3332,0.0,0.0,0.0,0.0,0.0,33.0,0,0,648346,13688,71770,126,613.03,82.4
13043,Candler County,GA,10888,10998,-1.0,10998,6.3,25.6,16.7,50.4,73.2,24.5,0.2,0.8,0.1,1.2,11.2,62.8,85.0,6.9,9.4,78.5,14.6,770,24.0,4697,64.0,7.4,86700,3861,2.78,17974,35070,25.9,200,2182,-4.4,776,1085,0.0,0.0,0.0,0.0,0.0,24.0,0,24255,114511,10977,14749,0,243.04,45.3
13045,Carroll County,GA,114093,110591,3.2,110527,6.4,24.2,12.5,50.9,77.3,19.1,0.5,1.0,0.1,2.0,6.5,71.8,80.4,4.4,7.7,79.7,18.3,7343,28.5,44757,66.7,13.7,118500,39494,2.72,21227,46147,18.9,1988,31002,2.1,8017,9582,8.3,0.0,0.0,0.0,1.3,25.7,3175562,985854,1252468,11190,142419,111,499.08,221.5
13047,Catoosa County,GA,65621,63940,2.6,63942,5.8,23.6,16.0,51.3,93.7,2.8,0.4,1.4,0.1,1.6,2.8,91.4,86.3,2.3,3.7,82.3,17.5,4805,22.3,26803,72.6,12.9,130200,23941,2.68,21690,47087,13.9,892,11569,-0.1,4002,4789,0.0,0.0,3.1,0.0,0.0,28.5,562058,151178,795089,12730,76458,144,162.16,394.3
13049,Charlton County,GA,12897,12171,6.0,12171,5.6,19.0,13.3,39.7,65.0,32.0,0.6,0.6,0.0,1.8,3.5,62.1,79.9,7.6,7.4,74.3,9.4,1247,28.7,4414,77.9,3.2,76100,3727,3.12,17102,40111,19.7,146,1804,1.5,507,763,0.0,0.0,0.0,0.0,0.0,21.4,0,45988,68423,6460,9831,7,773.58,15.7
13051,Chatham County,GA,283379,265133,6.9,265128,6.9,22.2,13.6,51.8,54.5,40.1,0.3,2.8,0.2,2.1,6.0,49.8,84.8,6.5,8.0,88.7,31.3,24730,21.1,122600,57.5,27.9,174500,102484,2.55,25093,45794,19.1,7229,120438,2.3,19018,23990,23.5,0.0,4.4,0.0,1.1,33.0,0,3780143,4004232,16107,872885,1317,426.44,621.7
13053,Chattahoochee County,GA,11837,11267,5.1,11267,9.5,22.6,4.1,32.7,72.2,19.3,1.3,2.8,0.8,3.6,15.0,60.0,50.8,5.6,13.9,92.5,27.5,581,14.2,3343,28.8,28.1,97100,2613,3.54,20042,48758,11.9,97,1690,-5.0,251,341,36.4,0.0,0.0,0.0,0.0,29.3,0,0,12987,934,804,3,248.74,45.3
13055,Chattooga County,GA,24939,26015,-4.1,26015,5.6,22.6,16.5,48.8,86.6,10.4,0.4,0.6,0.3,1.6,4.8,82.8,87.7,3.1,4.6,69.0,7.7,1540,23.4,10883,69.7,9.5,72400,9457,2.52,16045,33228,24.0,295,4390,0.2,1348,2104,0.0,0.0,0.0,0.0,0.0,22.9,629589,66428,147194,5478,0,0,313.34,83.0
13057,Cherokee County,GA,230985,214346,7.8,214346,6.2,26.0,11.9,50.7,89.0,6.6,0.5,1.9,0.1,1.9,10.1,80.1,87.0,8.6,12.4,88.9,34.2,14589,31.9,85507,79.1,9.7,190400,76144,2.85,29615,67261,9.8,4830,42481,3.9,20922,22759,3.3,0.0,1.9,0.0,3.9,28.1,823737,848952,2114906,10373,246874,2123,421.67,508.3
13059,Clarke County,GA,120938,116707,3.6,116714,5.8,17.6,9.7,52.3,65.5,27.7,0.4,4.4,0.1,1.9,10.8,56.0,75.6,10.4,13.5,85.1,39.5,5581,19.0,51781,43.9,44.1,156600,41358,2.61,19295,33060,36.7,2912,44643,3.5,7804,10181,0.0,0.3,3.2,0.0,3.1,26.0,1971235,1782494,1669122,14711,293388,538,119.2,979.1
13061,Clay County,GA,3102,3183,-2.5,3183,6.6,21.8,23.3,53.1,38.6,59.5,0.3,0.5,0.1,1.0,1.1,37.6,87.1,1.2,3.3,77.9,7.9,234,26.4,2083,66.6,6.8,72300,1235,2.49,12982,21192,44.5,37,0,0.0,200,186,0.0,0.0,0.0,0.0,0.0,42.5,0,1533,11021,3465,0,5,195.38,16.3
13063,Clayton County,GA,267542,259467,3.1,259424,7.8,28.3,8.3,52.6,23.6,68.3,0.6,5.3,0.1,2.1,13.1,13.5,79.1,15.2,20.5,81.7,18.0,18030,29.4,104535,55.3,29.3,97500,86274,2.99,17950,40606,24.0,3767,70120,1.8,25549,23186,51.5,0.0,11.8,0.0,4.3,38.1,1604635,3582346,3207049,11760,398890,340,141.57,1832.5
13065,Clinch County,GA,6831,6798,0.5,6798,7.6,25.9,15.0,51.0,69.0,28.3,0.8,0.2,0.1,1.6,4.2,65.7,86.6,2.6,3.2,71.1,12.5,479,21.1,2967,68.7,11.7,62900,2586,2.53,17815,30345,29.1,127,1806,7.8,428,513,0.0,0.0,0.0,0.0,0.0,22.8,0,0,39791,5714,3333,4,800.22,8.5
13067,Cobb County,GA,730981,688076,6.2,688078,6.6,24.6,10.6,51.6,64.6,27.3,0.5,5.1,0.1,2.4,12.7,53.9,81.2,15.1,20.3,90.8,43.7,44559,29.5,292870,66.4,24.9,196700,261242,2.64,33069,63920,12.8,19159,302767,-0.3,71103,77945,18.6,0.7,4.8,0.1,5.5,31.7,5651641,15524844,10480711,15157,1393471,3103,339.55,2026.4
13069,Coffee County,GA,42811,42356,1.1,42356,6.7,24.7,12.3,48.7,69.4,28.0,0.4,0.9,0.1,1.3,10.9,59.4,88.5,6.1,9.8,75.5,12.9,2488,19.9,16925,69.4,7.3,80700,14497,2.73,17031,35693,24.3,830,11855,-1.5,2837,3452,9.8,0.0,0.0,0.0,2.0,25.1,0,323863,458699,11367,47137,35,575.1,73.7
13071,Colquitt County,GA,46102,45498,1.3,45498,7.8,26.8,14.0,50.4,73.1,23.2,1.4,1.0,0.1,1.2,18.3,57.1,82.4,10.9,17.1,72.1,13.1,2367,21.1,18291,66.2,11.5,83500,15918,2.81,17025,32484,26.7,872,11360,2.6,2854,3290,0.0,0.0,0.0,0.0,0.0,25.2,599465,184865,432377,9669,35043,88,544.15,83.6
13073,Columbia County,GA,139257,124053,12.3,124053,6.3,26.0,11.8,51.1,75.4,16.9,0.4,4.2,0.2,2.9,6.2,70.5,86.8,6.8,9.5,91.3,34.1,13290,24.5,53375,78.9,7.4,170400,43975,2.9,30949,69306,8.3,2092,26336,1.8,8724,10081,7.4,0.6,5.7,0.0,3.0,32.0,2411210,357458,1406298,12919,119074,1289,290.09,427.6
13075,Cook County,GA,17214,17212,0.0,17212,6.7,26.6,14.7,51.6,69.8,27.8,0.4,0.8,0.1,1.2,6.1,64.4,81.7,3.4,6.0,74.8,12.4,1147,25.3,7241,73.4,4.7,83100,6308,2.67,18592,34985,23.1,299,2782,7.5,1002,1023,0.0,0.0,0.0,0.0,0.0,0.0,360662,51503,118054,7198,18080,33,227.16,75.8
13077,Coweta County,GA,135571,127317,6.5,127317,6.2,25.7,12.4,51.2,77.7,18.0,0.4,1.9,0.1,1.9,6.7,71.9,85.4,5.8,8.5,87.8,26.9,10406,30.6,52000,74.5,11.1,176400,46912,2.74,26757,60813,12.7,2109,28918,5.6,10042,11408,0.0,0.0,3.7,0.0,3.1,32.0,2270118,524585,1290974,10852,146607,745,440.89,288.8
13079,Crawford County,GA,12387,12630,-1.9,12630,5.0,21.2,16.9,49.4,76.2,21.3,0.6,0.4,0.1,1.4,3.1,73.7,90.0,0.8,2.7,78.7,13.0,887,28.2,5250,79.0,3.2,90800,4620,2.7,20556,41586,20.6,101,548,0.2,851,560,0.0,0.0,0.0,0.0,0.0,34.1,0,0,18191,1451,1372,20,324.89,38.9
13081,Crisp County,GA,22934,23439,-2.2,23439,6.8,24.9,16.0,52.4,53.8,43.6,0.3,1.0,0.1,1.2,3.2,51.3,86.1,1.5,4.2,79.5,15.5,1664,19.1,10712,59.8,16.1,95600,8832,2.61,18185,35240,31.2,514,6614,3.7,1610,1847,0.0,0.0,0.0,0.0,0.0,0.0,410798,0,326453,14719,39028,12,272.58,86.0
13083,Dade County,GA,16389,16633,-1.5,16633,5.4,19.8,17.0,50.8,95.6,1.4,0.5,1.1,0.1,1.2,2.1,93.9,88.4,1.6,1.8,80.3,17.0,1342,27.4,7260,77.8,7.4,112800,6325,2.44,21690,43205,15.9,214,2718,2.3,1069,1411,0.0,0.0,0.0,0.0,0.0,27.4,187845,0,189274,11687,15778,1,173.98,95.6
13085,Dawson County,GA,22957,22339,2.8,22330,5.1,21.8,17.9,49.9,96.4,0.9,0.4,0.7,0.1,1.5,4.0,93.0,87.1,3.8,4.8,85.8,24.4,1913,31.8,10595,73.7,5.1,186000,8506,2.61,27330,53525,15.6,588,6340,0.3,2055,3229,0.0,0.0,0.0,0.0,0.0,16.2,0,103913,466567,21598,49886,177,210.83,105.9
13087,Decatur County,GA,27220,27842,-2.2,27842,6.9,24.7,15.4,51.4,55.7,41.6,0.8,0.7,0.1,1.1,5.6,51.6,87.6,3.0,4.0,78.4,14.7,1577,23.2,12120,64.3,14.3,102900,10525,2.51,18059,30619,27.1,578,6459,2.2,1854,2725,29.0,1.3,0.0,0.0,2.0,28.0,1021401,0,395435,13854,24104,32,597.14,46.6
13089,DeKalb County,GA,722161,691894,4.4,691893,7.3,23.7,10.4,52.5,36.7,54.8,0.5,5.9,0.1,2.0,8.9,29.9,81.2,16.3,18.6,88.4,39.7,41447,30.7,306954,56.7,36.2,168900,264496,2.59,28810,50856,19.0,16052,260194,3.1,71233,73184,39.6,0.9,6.8,0.1,3.6,37.2,7489009,9361148,7973387,10867,1207713,1231,267.58,2585.7
13091,Dodge County,GA,20976,21797,-3.8,21796,6.1,20.9,15.2,47.8,68.0,30.0,0.4,0.5,0.2,1.0,3.4,65.6,89.8,2.1,4.3,80.2,15.2,1499,24.2,9744,65.7,8.0,70000,8186,2.36,18114,37292,19.8,338,3507,-1.9,1378,1447,0.0,0.0,0.0,0.0,0.0,0.0,199135,9821,167117,8452,12514,8,495.89,44.0
13093,Dooly County,GA,14188,14918,-4.9,14918,4.7,19.8,15.7,46.0,47.6,50.5,0.2,0.7,0.1,0.9,7.3,42.2,88.4,4.2,4.9,70.9,10.1,1214,19.7,6225,66.7,9.2,67600,5133,2.37,14510,29012,29.0,160,1935,-5.9,747,930,30.6,0.0,0.0,0.0,4.4,0.0,303771,61913,151362,13121,6625,0,391.94,38.1
13095,Dougherty County,GA,92407,94565,-2.3,94565,7.4,24.9,13.6,53.5,29.0,68.4,0.3,1.0,0.2,1.2,2.6,27.3,81.7,2.4,3.7,79.9,17.8,7326,18.3,40701,47.3,31.3,101700,35661,2.53,18619,31671,31.2,2336,38273,-2.1,6777,6892,34.0,0.0,4.4,0.0,1.2,33.7,0,1175674,1543650,16198,170969,80,328.69,287.7
13097,Douglas County,GA,138776,132339,4.9,132403,6.6,26.9,10.3,52.1,51.8,43.5,0.4,1.7,0.2,2.4,8.9,44.9,83.4,8.4,11.9,87.2,24.4,10690,31.8,51861,69.8,17.4,135700,46295,2.86,23626,52691,16.1,2392,33246,2.6,11313,11400,0.0,0.4,2.5,0.0,2.7,33.1,989859,929175,2055804,16536,212285,224,200.07,661.8
13099,Early County,GA,10491,11004,-4.7,11008,6.6,25.2,18.4,52.8,48.2,49.9,0.4,0.6,0.0,0.9,2.2,46.5,91.3,0.8,1.5,76.7,12.9,728,22.7,4918,64.7,6.5,82400,4030,2.61,17579,28853,31.6,211,2843,4.1,647,961,0.0,0.0,0.0,0.0,0.0,0.0,832266,131927,75758,6416,6271,9,512.59,21.5
13101,Echols County,GA,4003,4034,-0.8,4034,8.8,27.7,11.3,50.7,88.7,5.6,3.1,0.5,0.2,1.8,28.1,63.6,73.4,17.1,23.2,74.7,5.7,292,24.8,1537,62.7,5.6,71600,1382,2.93,15861,31375,31.3,23,114,-5.8,183,177,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,1,414.89,9.7
13103,Effingham County,GA,55423,52250,6.1,52250,6.6,26.9,10.8,50.1,82.7,14.0,0.4,0.9,0.1,1.8,3.7,79.6,86.4,2.1,4.5,85.2,16.8,4583,29.8,20549,76.6,7.2,155400,17830,2.96,24824,63030,11.2,673,7394,3.7,3311,4492,6.5,0.0,0.0,0.0,0.0,25.9,0,63037,322581,6345,26103,482,477.7,109.4
13105,Elbert County,GA,19438,20166,-3.6,20166,6.0,22.0,19.1,52.1,68.2,29.4,0.4,0.9,0.0,1.1,5.5,63.7,93.0,3.0,5.3,78.3,11.3,1546,21.6,9513,68.4,9.2,84500,7635,2.57,18835,35817,20.4,423,4505,-10.4,1369,1650,0.0,0.0,0.0,0.0,0.0,0.0,515223,106277,136950,6644,14557,12,351.06,57.4
13107,Emanuel County,GA,22755,22594,0.7,22598,6.9,25.1,15.8,51.1,63.6,34.2,0.4,0.7,0.0,1.0,4.6,59.8,84.5,1.3,4.7,76.5,11.6,1357,25.3,9879,65.6,4.9,69900,8026,2.71,17064,32046,29.4,385,4899,-1.6,1849,2163,0.0,0.0,0.0,0.0,0.0,31.0,448400,93384,184041,8160,14804,7,680.6,33.2
13109,Evans County,GA,10898,11001,-0.9,11000,7.7,26.7,15.1,51.7,65.5,31.2,0.6,1.2,0.3,1.2,12.0,56.2,85.0,6.2,12.5,76.2,14.1,725,19.2,4636,63.7,6.9,89700,4067,2.55,18998,36788,27.9,212,3744,-1.2,692,940,0.0,0.0,0.0,0.0,0.0,36.3,354790,0,153912,13507,6395,20,182.85,60.2
13111,Fannin County,GA,23753,23693,0.3,23682,4.5,17.7,25.6,51.1,96.9,0.8,0.4,0.5,0.0,1.3,2.0,95.2,89.5,1.1,3.1,79.0,14.4,2322,25.4,16589,78.2,4.3,161300,9940,2.36,19164,34239,23.0,553,4496,0.8,2648,3558,0.0,0.0,0.0,0.0,0.0,25.0,0,41794,293099,12995,29653,168,386.72,61.2
13113,Fayette County,GA,109664,106566,2.9,106567,4.1,23.9,16.2,51.6,70.9,22.0,0.4,4.5,0.1,2.1,7.1,65.0,88.1,9.2,11.6,94.3,42.6,11491,30.4,41344,82.9,8.6,231500,37930,2.81,35344,79977,7.7,3182,38001,1.7,9875,12696,16.0,0.0,4.4,0.0,3.6,29.8,1744689,877241,1390039,13122,171207,314,194.34,548.3
13115,Floyd County,GA,96063,96317,-0.3,96317,6.1,23.5,15.7,51.5,80.9,14.8,0.8,1.4,0.3,1.7,10.3,72.3,85.1,6.5,9.7,77.9,18.1,7358,21.5,40428,64.2,16.6,114800,34646,2.66,20500,40821,21.0,1950,32861,0.4,6748,8145,0.0,0.0,3.3,0.0,0.0,28.6,3346076,636186,1039780,10932,144251,75,509.91,188.9
13117,Forsyth County,GA,204302,175511,16.4,175511,6.2,28.9,11.1,50.3,85.2,3.5,0.5,9.1,0.1,1.6,9.7,76.4,89.1,13.8,18.1,91.4,43.8,10111,29.9,71045,85.6,4.0,258200,58080,3.14,34582,86569,7.6,5513,64358,5.2,17610,19448,1.9,0.5,4.3,0.0,4.4,27.5,2318605,2503452,1960919,12382,183104,3194,224.02,783.5
13119,Franklin County,GA,22264,22084,0.8,22084,5.7,21.9,18.7,51.2,87.3,9.6,0.3,0.9,0.0,1.8,4.3,83.8,91.0,2.7,4.9,72.3,13.0,1375,24.6,10460,73.1,6.9,114800,8618,2.47,18234,34830,18.9,414,5869,-2.7,1591,1915,0.0,0.0,0.0,0.0,0.0,25.3,430397,107788,315062,14431,22760,2,261.5,84.5
13121,Fulton County,GA,996319,920579,8.2,920581,6.4,23.2,10.4,51.4,46.7,44.3,0.3,6.7,0.1,2.0,7.6,40.5,79.9,12.9,16.7,90.4,48.2,47038,27.0,448897,53.9,43.9,238200,368184,2.49,36757,56857,17.6,33874,723886,3.1,99463,106113,26.7,0.5,5.4,0.0,3.2,32.3,10428483,40824135,13239670,13363,4133808,8098,526.64,1748.0
13123,Gilmer County,GA,28829,28281,1.9,28292,5.3,20.5,22.0,50.1,96.3,0.9,0.6,0.4,0.5,1.2,10.9,86.8,82.8,6.1,9.0,76.5,16.4,2397,27.9,16653,73.4,3.6,142200,11513,2.44,21317,39140,21.7,522,5524,-0.8,2567,2593,0.0,0.0,0.0,0.0,0.0,24.7,354553,45815,370523,12965,36555,102,426.54,66.3
13125,Glascock County,GA,3053,3082,-0.9,3082,4.8,24.0,17.4,51.1,87.9,9.9,0.4,0.4,0.0,1.4,1.5,86.5,92.1,1.0,1.3,78.3,9.6,181,28.3,1501,70.8,3.5,70000,1189,2.53,17984,37760,21.4,22,0,0.0,172,216,0.0,0.0,0.0,0.0,0.0,0.0,0,0,4815,1739,0,0,143.74,21.4
13127,Glynn County,GA,82175,79626,3.2,79626,6.2,23.1,17.7,52.7,69.5,26.5,0.5,1.5,0.2,1.8,6.5,64.1,80.2,5.7,9.5,86.6,26.1,7954,19.1,41726,61.9,20.8,162900,31547,2.51,26724,46407,19.2,2427,29435,1.5,6218,0,0.0,0.0,0.0,0.0,0.0,0.0,0,270865,1351775,18083,398301,427,419.75,189.7
13129,Gordon County,GA,56047,55186,1.6,55186,6.5,25.6,13.3,50.4,92.0,4.4,0.6,1.1,0.4,1.4,15.2,78.2,85.8,9.3,14.6,73.4,14.2,3094,23.0,22254,66.8,15.0,116100,19066,2.88,19177,40926,21.0,986,18965,6.2,3429,4842,0.0,0.0,2.6,0.0,0.0,20.4,2528116,0,659417,12680,62480,63,355.81,155.1
13131,Grady County,GA,25359,25012,1.4,25011,6.8,25.7,16.0,51.3,67.4,29.1,1.3,0.6,0.2,1.4,10.9,58.7,89.7,5.6,8.6,72.7,11.3,1743,25.1,10684,58.5,5.0,110800,9290,2.69,15734,30571,30.1,402,3841,-0.4,1483,1843,0.0,0.0,0.0,0.0,0.0,27.3,183214,201332,168147,6750,13083,31,454.53,55.0
13133,Greene County,GA,16490,15994,3.1,15994,5.4,19.1,26.2,51.2,61.0,36.6,0.5,0.5,0.2,1.2,6.3,56.0,92.0,3.9,4.4,78.7,21.4,1457,24.6,9006,75.6,6.9,145200,6353,2.5,27828,42565,22.3,420,4549,5.1,1439,1986,14.6,0.0,0.0,0.0,0.0,16.5,673247,31905,137147,8715,60642,203,387.44,41.3
13135,Gwinnett County,GA,877922,805324,9.0,805321,6.9,27.8,8.6,51.0,58.1,27.0,0.8,11.5,0.1,2.5,20.5,40.6,85.2,24.9,33.0,87.0,33.9,39586,31.6,298611,68.4,20.2,171300,266952,3.07,25932,60445,13.9,21547,305293,3.0,90033,93820,17.0,1.1,14.2,0.2,9.3,28.6,6480318,28829120,13857021,17939,1264671,3379,430.38,1871.2
13137,Habersham County,GA,43752,43041,1.7,43041,5.9,23.2,17.4,52.6,90.7,4.0,1.0,2.5,0.3,1.4,13.6,78.7,91.1,8.6,13.8,77.9,17.1,3319,23.6,18111,76.3,7.5,137900,14805,2.74,18910,39306,20.8,802,11576,-2.2,2865,4315,0.0,0.0,0.0,0.0,0.0,24.0,968514,0,492128,11672,41762,35,276.74,155.5
13139,Hall County,GA,190761,179684,6.2,179684,6.9,26.5,13.6,50.1,87.3,8.1,0.9,2.0,0.2,1.5,27.5,61.9,86.1,15.4,26.2,78.8,22.8,10555,25.8,69492,67.8,13.9,165300,61220,2.93,23645,50853,18.7,3953,64743,4.2,13987,17307,0.0,0.6,4.4,0.0,6.9,25.1,6068981,4914547,2220699,12417,224064,722,392.78,457.5
13141,Hancock County,GA,8509,9402,-9.5,9429,4.5,16.3,20.0,46.0,25.4,72.6,0.4,0.7,0.0,0.8,1.7,24.3,91.1,1.9,2.4,75.8,9.9,564,25.5,5279,77.7,5.1,67800,2742,2.78,12381,25000,30.6,73,601,-5.4,500,715,55.5,0.0,0.0,0.0,0.0,31.7,0,0,21008,2183,1031,15,471.84,20.0
13143,Haralson County,GA,28641,28780,-0.5,28780,5.9,24.4,16.0,51.6,92.3,5.1,0.4,0.7,0.0,1.6,1.4,91.1,84.0,1.4,1.7,74.2,14.1,1916,30.0,12241,70.3,9.9,106800,10806,2.6,19789,39993,22.8,441,5221,5.8,2025,2349,0.0,0.0,0.0,0.0,0.0,22.0,952054,53193,313130,10907,14624,23,282.17,102.0
13145,Harris County,GA,32876,32026,2.7,32024,4.7,22.0,16.7,50.2,79.9,17.1,0.4,0.9,0.1,1.6,3.3,77.2,89.6,2.6,4.5,89.2,27.3,3578,26.6,13690,86.7,2.8,203800,11426,2.79,31482,69223,8.0,377,3921,18.2,2338,2514,0.0,0.0,0.0,0.0,0.0,21.1,0,0,66126,2271,43474,113,463.87,69.0
13147,Hart County,GA,25377,25213,0.7,25213,5.5,21.4,20.6,50.4,78.4,18.8,0.2,1.0,0.0,1.5,3.6,75.4,87.0,2.1,2.8,80.3,15.5,2148,22.9,12943,73.7,4.6,118400,10009,2.45,20371,35615,25.4,393,5319,-1.5,1798,1725,0.0,0.0,0.0,0.0,0.0,22.7,244785,58960,170726,7077,16806,35,232.39,108.5
13149,Heard County,GA,11603,11834,-2.0,11834,5.7,23.6,15.7,50.1,86.4,10.7,0.4,0.6,0.0,1.8,2.5,84.4,84.2,0.2,0.4,72.7,8.2,863,38.6,5103,76.0,5.3,93200,4321,2.68,18964,39909,24.3,118,1181,0.0,705,1038,0.0,0.0,0.0,0.0,0.0,23.4,0,0,24751,2167,1886,15,296.03,40.0
13151,Henry County,GA,213869,203879,4.9,203922,5.9,27.1,10.4,52.2,53.4,40.6,0.3,3.4,0.1,2.2,6.4,48.6,85.7,7.4,10.2,89.5,26.1,17462,33.3,77530,75.0,11.2,147500,69238,2.97,25299,60781,11.2,3354,46159,7.1,17787,18508,28.9,0.0,5.4,0.0,2.7,33.6,1695755,3076624,1907354,10315,243225,1047,322.13,633.0
13153,Houston County,GA,149111,139910,6.6,139900,6.9,25.7,11.7,51.3,63.6,30.3,0.4,2.8,0.2,2.7,6.6,58.3,83.3,5.8,8.5,88.8,24.0,18505,20.5,60555,67.1,17.3,132900,52330,2.7,25195,54893,15.2,2318,36198,6.7,8976,8657,17.1,0.0,6.2,0.0,2.8,29.1,1422893,0,1524261,11610,206115,602,375.54,372.5
13155,Irwin County,GA,9104,9538,-4.6,9538,5.7,22.3,18.2,49.2,71.3,26.7,0.1,0.8,0.0,1.1,3.6,68.4,89.8,0.7,1.4,81.1,10.3,923,22.5,4022,72.4,6.2,83400,3277,2.69,18207,40771,21.2,125,1727,0.2,561,742,10.9,0.0,0.0,0.0,0.0,0.0,0,94087,27252,2734,2608,10,354.34,26.9
13157,Jackson County,GA,61870,60485,2.3,60485,6.6,25.7,13.5,50.4,88.8,7.2,0.4,1.9,0.1,1.6,6.7,82.7,88.8,4.4,8.5,81.1,19.5,3962,29.7,23752,77.1,5.9,161300,21293,2.81,23247,53179,15.9,1162,16656,5.3,4692,6073,0.0,0.0,1.5,0.0,3.9,21.1,1801528,568845,559370,9365,33343,455,339.66,178.1
13159,Jasper County,GA,13432,13900,-3.4,13900,6.0,24.0,15.5,51.3,76.0,21.5,0.6,0.3,0.0,1.7,4.2,72.5,84.3,3.1,5.4,83.6,13.3,872,36.2,6230,76.1,2.1,120200,5132,2.66,21297,42192,21.7,147,1383,-1.2,1055,1517,0.0,0.0,0.0,0.0,0.0,27.7,187450,0,33351,2442,3412,53,368.17,37.8
13161,Jeff Davis County,GA,14859,15068,-1.4,15068,7.4,27.5,14.2,50.5,82.0,15.6,0.8,0.6,0.0,1.0,11.3,72.0,87.8,4.7,9.3,79.6,9.6,773,22.0,6412,71.3,6.1,79900,5509,2.71,17684,36296,24.5,239,3344,5.9,852,1009,0.0,0.0,0.0,0.0,0.0,0.0,242915,35858,204381,15440,9883,1,330.74,45.6
13163,Jefferson County,GA,16272,16930,-3.9,16930,6.3,24.1,17.0,51.4,44.5,53.6,0.2,0.7,0.1,0.9,3.3,41.9,85.0,1.2,2.2,73.8,8.8,1109,23.1,7246,65.5,9.6,67200,6220,2.58,14757,26968,31.5,300,3935,-1.8,1139,1266,31.8,0.0,0.0,0.0,0.0,27.6,303595,127174,129391,7897,11202,5,526.49,32.2
13165,Jenkins County,GA,9125,8340,9.4,8340,5.7,22.6,15.3,46.8,54.6,43.2,0.4,0.5,0.2,1.0,5.1,51.2,85.3,2.6,4.1,72.6,13.1,605,26.4,4175,69.6,1.9,63400,3354,2.54,17565,26104,29.4,97,946,-1.1,545,716,0.0,0.0,0.0,0.0,0.0,0.0,116890,0,53910,6311,3823,10,347.28,24.0
13167,Johnson County,GA,9701,9984,-2.8,9980,4.5,19.6,15.5,43.5,63.5,35.0,0.3,0.3,0.0,0.9,2.2,61.8,83.7,1.7,1.9,75.8,11.5,729,28.9,4066,78.9,5.1,65000,3250,2.71,16807,36722,22.8,120,994,-9.6,599,516,0.0,0.0,0.0,0.0,0.0,21.1,0,0,25209,2678,1384,0,303.01,32.9
13169,Jones County,GA,28787,28669,0.4,28669,5.2,24.5,15.4,51.6,73.0,24.9,0.3,0.8,0.0,1.1,1.5,71.9,87.8,2.0,2.4,88.7,17.8,1774,26.5,11576,79.1,4.9,138900,10384,2.73,24485,51497,16.6,315,2523,5.4,1890,2169,0.0,0.0,0.0,0.0,0.0,29.9,0,42353,70608,2588,13415,28,393.93,72.8
13171,Lamar County,GA,18207,18317,-0.6,18317,5.5,20.7,16.0,52.3,65.7,31.7,0.3,0.5,0.0,1.7,2.2,64.1,83.1,1.7,2.6,81.9,14.2,1568,30.1,7504,70.1,10.8,122600,6393,2.65,18800,41016,18.9,234,2811,7.8,1145,1544,0.0,0.0,0.0,0.0,0.0,27.8,0,0,113965,6732,12041,18,183.5,99.8
13173,Lanier County,GA,10373,10074,3.0,10078,7.8,25.6,12.1,49.6,72.1,22.7,1.1,1.4,0.0,2.7,5.5,68.0,78.0,2.5,5.5,76.4,12.0,784,23.0,4295,60.9,4.9,111800,3725,2.66,17264,39452,26.7,92,757,-6.5,516,731,0.0,0.0,0.0,0.0,0.0,26.7,0,0,0,0,0,15,185.26,54.4
13175,Laurens County,GA,47851,48434,-1.2,48434,6.7,24.8,16.2,52.4,61.3,36.2,0.3,1.1,0.0,1.2,2.5,59.3,87.7,2.2,3.3,79.8,15.0,3407,23.5,21283,65.7,10.3,85200,17632,2.67,18625,34793,24.7,1037,14748,0.2,3871,4485,0.0,0.0,0.0,0.0,0.0,27.9,0,252146,613069,12912,66796,9,807.3,60.0
13177,Lee County,GA,29191,28298,3.2,28298,6.4,26.8,10.7,49.8,75.1,20.7,0.4,2.4,0.1,1.4,2.6,72.9,86.1,3.5,5.4,83.9,20.5,2267,21.2,10698,76.2,10.4,159000,9773,2.79,26357,60104,11.2,369,3810,20.2,1950,2208,0.0,0.0,0.0,0.0,0.0,30.3,0,118292,123990,3754,6881,175,355.78,79.5
13179,Liberty County,GA,65198,63469,2.7,63453,11.1,28.7,7.5,48.8,51.1,40.8,0.8,2.4,0.6,4.3,12.1,42.2,72.9,6.5,10.9,90.9,20.2,10207,20.1,27198,51.1,22.3,126900,23046,2.73,20791,43832,18.7,812,12380,1.7,2805,3667,36.7,0.0,0.0,0.0,3.0,34.7,0,0,539287,8908,62915,242,489.8,129.5
13181,Lincoln County,GA,7622,7996,-4.7,7996,4.6,19.1,20.7,50.7,66.6,31.6,0.4,0.5,0.0,0.9,1.3,65.6,92.6,1.1,1.6,82.1,11.4,732,32.6,4779,78.7,2.5,103700,3394,2.3,20641,35625,26.5,135,935,-0.6,502,707,0.0,0.0,0.0,0.0,0.0,34.5,0,9380,39568,4927,5229,17,210.38,38.0
13183,Long County,GA,17113,14448,18.4,14464,8.2,28.8,7.7,49.7,68.3,25.6,0.8,1.2,0.5,3.6,11.8,59.1,81.9,4.9,8.2,85.0,14.0,1658,25.1,6205,62.2,4.2,111900,4841,3.11,17158,42651,19.2,71,252,0.0,532,321,0.0,0.0,0.0,0.0,0.0,0.0,0,0,17394,1548,1830,0,400.29,36.1
13185,Lowndes County,GA,113523,109233,3.9,109233,7.1,24.8,11.0,51.1,59.0,36.6,0.5,1.7,0.2,2.1,5.5,54.9,78.1,3.8,5.7,84.0,23.1,9100,18.0,45665,53.9,21.1,133700,39722,2.7,18897,37365,24.3,2640,38679,0.3,6635,8867,12.9,0.9,3.7,0.0,3.0,30.0,2237776,756457,1804839,17744,209463,379,496.07,220.2
13187,Lumpkin County,GA,31176,29966,4.0,29966,5.0,18.9,15.7,50.2,94.7,1.9,0.7,0.7,0.1,1.8,4.9,90.5,80.3,3.3,4.5,85.0,25.4,2423,30.0,13073,68.2,8.9,165900,10999,2.62,20908,43775,18.1,506,4388,5.1,2309,3187,0.0,0.0,0.0,0.0,0.0,0.0,207779,37439,206576,7764,33394,91,282.93,105.9
13189,McDuffie County,GA,21370,21875,-2.3,21875,6.2,25.2,15.9,53.1,56.8,40.7,0.4,0.5,0.1,1.5,2.8,54.7,90.3,1.2,2.7,74.6,13.7,1112,26.4,9248,66.0,9.0,106100,8143,2.62,17922,37487,22.2,433,5938,1.1,1412,1609,0.0,0.0,3.2,0.0,0.0,17.1,0,0,350350,16276,23602,19,257.46,85.0
13191,McIntosh County,GA,14214,14332,-0.8,14333,5.4,19.0,21.7,50.8,62.8,34.9,0.5,0.4,0.1,1.2,2.0,61.4,91.4,1.7,2.7,80.5,15.8,1468,26.3,9299,81.5,5.8,103700,4993,2.81,21484,39068,14.9,184,1199,-7.4,884,1217,0.0,0.0,0.0,0.0,0.0,21.2,0,0,113983,9952,19840,24,424.3,33.8
13193,Macon County,GA,13792,14740,-6.4,14740,4.9,19.9,14.9,45.9,37.2,59.8,0.4,1.6,0.2,0.8,4.1,34.0,88.9,3.6,6.6,70.5,10.1,895,24.5,6052,66.5,9.2,65500,4887,2.64,13865,30240,29.4,179,2194,2.5,793,1101,0.0,0.0,0.0,0.0,0.0,32.3,397403,39536,47915,3588,5623,3,400.64,36.8
13195,Madison County,GA,28312,28120,0.7,28120,5.4,23.1,15.6,50.7,87.7,9.4,0.4,1.2,0.0,1.3,4.7,83.6,92.5,3.1,4.9,78.7,14.9,1787,25.3,11732,73.3,3.2,127800,9732,2.86,19939,42549,17.9,355,2078,2.2,2080,2352,0.0,0.0,0.0,0.0,0.0,0.0,0,57790,119211,4291,7222,66,282.31,99.6
13197,Marion County,GA,8797,8742,0.6,8742,6.1,21.8,17.0,50.1,64.0,30.8,0.9,1.0,1.8,1.6,7.6,59.3,85.8,5.8,9.0,75.1,10.6,970,30.9,4109,71.8,9.7,87000,3000,2.87,17479,33301,20.5,81,1357,2.6,436,197,0.0,0.0,0.0,0.0,0.0,38.6,0,0,71742,10179,1021,10,366.0,23.9
13199,Meriwether County,GA,21198,21992,-3.6,21992,5.4,22.4,18.6,52.0,58.2,39.4,0.4,0.7,0.0,1.2,2.2,56.5,84.3,0.7,1.7,73.0,8.9,1383,30.2,9911,69.9,4.6,91200,8135,2.62,18821,37333,21.1,302,3248,-2.9,1494,2142,22.9,0.0,0.0,0.0,0.0,28.6,233413,0,100756,4421,14833,24,501.22,43.9
13201,Miller County,GA,5958,6129,-2.8,6125,6.2,23.4,19.6,51.6,69.4,28.1,0.5,0.7,0.1,1.2,2.0,68.2,90.4,0.7,1.1,79.9,11.9,354,22.3,2752,74.5,5.8,83200,2458,2.39,19674,32260,23.0,132,1066,-0.8,380,467,0.0,0.0,0.0,0.0,0.0,37.5,0,14952,53450,8671,2935,0,282.42,21.7
13205,Mitchell County,GA,22771,23498,-3.1,23498,6.0,23.7,14.9,47.7,49.8,48.0,0.5,0.7,0.1,0.9,4.3,46.3,89.5,2.3,3.7,72.3,9.6,1508,21.2,8938,65.3,10.9,77900,8131,2.61,15694,32054,26.2,365,5868,-9.0,1312,0,0.0,0.0,0.0,0.0,0.0,0.0,0,169162,150978,6268,15388,10,512.09,45.9
13207,Monroe County,GA,27051,26461,2.2,26424,5.1,20.9,16.8,49.6,73.9,23.7,0.3,1.0,0.0,1.1,2.3,72.0,88.6,1.7,2.7,79.5,18.7,2069,27.2,10954,76.3,9.5,148300,9550,2.66,22888,48630,12.9,507,6593,2.5,1875,2943,15.2,0.0,0.0,0.0,0.0,26.8,118057,0,114402,4563,23756,77,395.66,66.8
13209,Montgomery County,GA,8991,9123,-1.4,9123,5.7,22.2,15.5,48.3,71.4,26.8,0.1,0.4,0.0,1.2,6.0,66.5,92.1,3.8,5.2,82.3,15.5,562,21.4,3886,69.4,5.1,74300,3185,2.6,16460,32702,24.5,111,924,-6.1,544,0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,24737,2753,2877,11,239.52,38.1
13211,Morgan County,GA,17956,17868,0.5,17868,5.2,23.0,18.2,51.5,74.0,23.2,0.7,0.8,0.0,1.3,3.0,71.7,92.7,1.8,2.1,81.7,22.7,1357,27.2,7497,77.1,5.0,175700,6513,2.71,25933,47729,15.4,445,5451,-0.2,1820,2113,0.0,0.0,0.0,0.0,0.0,31.7,239487,54916,276447,15202,40310,52,347.35,51.4
13213,Murray County,GA,39410,39628,-0.6,39628,6.4,25.3,13.3,50.3,95.8,1.4,0.9,0.5,0.2,1.2,14.0,83.3,87.2,8.1,13.1,69.3,9.6,2122,24.8,15777,68.9,6.9,94100,14092,2.79,16449,34888,22.4,395,6831,1.8,1756,2625,0.0,0.0,0.0,0.0,0.0,0.0,1605675,89355,218860,5374,24649,22,344.47,115.0
13215,Muscogee County,GA,200887,190545,5.4,189885,7.6,24.3,12.0,50.8,47.9,46.1,0.5,2.5,0.2,2.8,7.5,42.4,74.6,5.4,9.1,85.4,22.6,20679,19.0,83846,52.6,29.8,133300,72243,2.53,22856,41339,19.6,4256,75855,-0.3,13691,15413,37.4,0.0,0.0,0.0,2.5,35.8,2111391,1173616,2889210,15482,428162,585,216.39,877.5
13217,Newton County,GA,103675,99958,3.7,99958,6.7,27.1,11.9,52.3,53.6,43.0,0.4,1.1,0.1,1.9,4.9,50.0,82.5,5.7,6.2,84.5,19.4,7341,31.4,38351,73.5,8.1,125600,33840,2.93,21484,50580,15.2,1306,17729,0.8,8657,9515,33.4,0.0,0.0,0.0,0.0,33.4,2205094,226621,679365,7096,93483,181,272.16,367.3
13219,Oconee County,GA,35093,32815,6.9,32808,5.3,26.8,13.5,51.1,89.0,5.4,0.3,3.9,0.0,1.3,4.6,84.9,91.7,5.0,7.4,91.3,43.1,2131,23.7,13147,78.9,6.6,238200,11485,2.88,33801,75004,9.3,1000,9398,6.4,3547,4300,0.0,0.0,1.2,0.0,1.4,21.4,0,72919,326375,10357,38870,299,184.29,178.0
13221,Oglethorpe County,GA,14673,14899,-1.5,14899,5.3,21.6,18.0,50.7,79.5,17.7,0.3,0.7,0.0,1.8,3.9,76.1,89.7,1.6,3.0,79.0,18.0,1117,27.9,6487,77.0,4.8,120800,5201,2.8,20493,45729,16.4,168,1046,4.9,980,1296,0.0,0.0,0.0,0.0,0.0,21.3,0,8455,69636,4988,1816,27,439.01,33.9
13223,Paulding County,GA,148987,142324,4.7,142324,6.5,27.8,9.5,51.2,78.4,18.0,0.4,1.1,0.1,2.1,5.7,73.8,87.0,4.1,6.4,88.5,23.4,10479,37.7,53105,82.1,5.8,135500,47881,2.99,24168,61837,11.4,1716,15576,1.9,10643,11811,14.6,0.0,0.0,0.0,0.0,30.6,255438,176471,973010,7607,108987,930,312.22,455.8
13225,Peach County,GA,26922,27696,-2.8,27695,6.0,22.3,13.3,51.7,51.5,45.1,0.5,1.0,0.1,1.8,7.3,45.3,85.4,5.9,9.5,82.7,19.2,2354,22.7,11273,66.6,15.6,120000,9525,2.62,19431,39844,24.6,456,5767,-4.6,1823,1757,0.0,0.0,0.0,0.0,3.6,0.0,1057803,0,317396,12122,28726,161,150.27,184.3
13227,Pickens County,GA,29997,29422,2.0,29431,4.9,20.9,20.3,50.7,95.8,1.7,0.5,0.8,0.0,1.3,3.1,93.1,89.3,2.8,3.9,80.8,22.5,2768,28.5,13688,78.9,7.0,166300,11083,2.63,26686,51383,11.9,643,5890,-0.4,2864,4125,0.0,0.0,0.0,0.0,0.0,26.4,104755,112023,320506,10541,27773,53,232.06,126.8
13229,Pierce County,GA,18991,18758,1.2,18758,6.6,25.4,15.6,50.4,87.8,9.3,0.8,0.6,0.1,1.3,5.1,83.5,86.8,2.3,4.9,77.6,11.8,1398,26.6,7961,73.3,5.9,79600,6970,2.67,20001,39067,20.5,322,2930,-4.5,1152,1064,0.0,0.0,0.0,0.0,0.0,25.6,0,0,99714,5586,8687,38,316.49,59.3
13231,Pike County,GA,17784,17869,-0.5,17869,5.0,24.9,14.6,50.5,87.3,10.5,0.3,0.5,0.0,1.5,1.6,86.0,87.4,1.1,1.8,85.1,17.0,1400,33.2,6819,84.2,4.8,152800,6140,2.86,22191,53865,11.2,240,1463,7.0,1352,1762,0.0,0.0,0.0,0.0,0.0,19.8,0,16741,33873,1970,2432,26,216.09,82.7
13233,Polk County,GA,41133,41475,-0.8,41475,6.8,26.0,14.9,50.9,83.6,13.0,0.7,0.8,0.2,1.6,13.0,72.1,85.5,8.1,13.1,72.7,13.1,2804,26.6,16940,70.8,10.5,107900,14645,2.78,18336,39208,23.4,584,9161,-1.3,2581,2391,0.0,0.0,0.0,0.0,0.0,35.8,698637,0,314659,7592,35178,10,310.33,133.6
13235,Pulaski County,GA,11483,11999,-4.3,12010,4.5,19.7,18.9,56.8,65.6,31.7,0.4,1.1,0.1,1.1,3.5,62.7,90.9,2.2,5.9,77.5,9.6,932,24.0,5136,68.0,5.7,87300,4034,2.54,17781,41550,15.7,173,1895,-0.5,671,685,0.0,0.0,0.0,0.0,0.0,0.0,0,21369,84491,8619,13668,17,249.03,48.2
13237,Putnam County,GA,21192,21218,-0.1,21218,5.9,21.3,21.5,51.5,70.4,27.3,0.4,0.6,0.3,0.9,6.6,65.0,89.6,4.7,8.0,84.5,18.7,2025,28.2,12735,77.1,5.1,140600,8457,2.49,26321,44764,14.0,396,4444,1.8,1733,2259,0.0,0.0,0.0,0.0,1.1,0.0,316112,75508,204112,10073,19813,35,344.64,61.6
13239,Quitman County,GA,2315,2513,-7.9,2513,4.5,17.6,27.7,50.6,51.3,47.5,0.3,0.2,0.0,0.7,1.4,50.4,84.5,0.3,1.7,72.3,3.2,223,22.0,2008,77.3,1.7,62300,932,2.57,14201,31068,26.4,38,231,-8.7,136,213,0.0,0.0,0.0,0.0,0.0,29.6,0,0,2769,1045,0,5,151.24,16.6
13241,Rabun County,GA,16243,16276,-0.2,16276,4.2,18.3,25.5,50.6,95.2,1.6,0.5,0.9,0.1,1.7,8.4,87.7,92.9,6.8,9.5,85.2,26.6,1503,21.9,12460,73.2,8.0,168300,6997,2.28,22260,35423,21.5,454,3987,0.6,1707,2338,0.0,0.0,0.0,0.0,0.0,31.2,138701,0,234433,14153,41073,47,369.99,44.0
13243,Randolph County,GA,7313,7719,-5.3,7719,5.7,20.6,20.9,53.4,37.7,60.9,0.1,0.5,0.1,0.7,2.1,36.3,88.2,3.0,2.9,72.3,17.4,576,19.4,4100,71.2,3.4,70300,3020,2.38,18094,30023,25.4,132,1384,-4.4,423,481,0.0,0.0,0.0,0.0,0.0,0.0,0,41661,44341,6087,3852,0,428.24,18.0
13245,Richmond County,GA,201368,200549,0.4,200549,7.2,23.7,12.6,51.6,39.5,55.5,0.4,1.8,0.3,2.6,4.6,36.4,80.7,3.3,5.9,83.7,20.5,20693,20.0,87076,54.5,25.6,100900,72281,2.66,20526,37749,25.1,4313,85077,-0.1,12458,14147,38.1,0.3,2.8,0.0,2.4,36.1,5256290,916435,2505076,12695,395411,730,324.33,618.4
13247,Rockdale County,GA,87754,85215,3.0,85215,6.0,25.6,12.8,52.7,44.4,51.0,0.5,1.9,0.1,2.1,10.0,36.4,81.4,10.5,11.3,86.2,26.0,6602,32.3,33286,69.0,19.0,149900,29317,2.89,23461,52579,14.7,1927,28615,2.8,7816,8647,34.8,0.0,0.0,0.0,2.9,29.1,1778787,515574,1450095,17720,196568,133,129.79,656.5
13249,Schley County,GA,5163,5010,3.1,5010,5.1,27.7,14.7,52.6,76.9,21.5,0.1,0.8,0.0,0.9,4.4,73.0,88.8,2.2,7.7,73.0,14.2,267,27.6,2159,64.4,7.1,93000,1829,2.73,19037,38425,22.3,58,763,-1.5,296,0,0.0,0.0,0.0,0.0,0.0,0.0,215937,0,18573,4503,879,0,166.91,30.0
13251,Screven County,GA,14085,14593,-3.5,14593,6.6,22.7,16.8,51.2,56.2,41.7,0.4,0.5,0.0,1.3,1.7,55.1,88.2,0.4,1.8,78.9,13.0,946,28.7,6650,70.8,5.9,77000,5165,2.72,18640,34848,27.0,213,2384,-5.8,906,1171,0.0,0.0,0.0,0.0,0.0,0.0,183823,17545,93578,6219,8297,10,645.1,22.6
13253,Seminole County,GA,8686,8729,-0.5,8729,5.6,21.8,21.8,52.0,64.6,33.0,0.2,0.8,0.0,1.3,2.9,62.3,95.2,1.4,1.6,81.2,12.2,644,22.6,4785,77.0,3.2,71200,3317,2.63,17641,30521,26.0,187,1559,7.1,623,760,23.7,0.0,0.0,0.0,0.0,0.0,0,48751,76470,8485,5449,4,235.23,37.1
13255,Spalding County,GA,63988,64073,-0.1,64073,6.6,24.5,16.1,51.7,63.7,33.2,0.4,0.9,0.1,1.7,4.5,60.0,83.4,2.7,4.9,76.6,14.8,5072,27.8,26983,63.1,15.7,113900,22997,2.74,19783,41534,21.5,1117,16590,-5.0,4635,5329,0.0,0.0,2.5,0.0,0.0,36.9,2285175,604327,661569,10492,77353,141,196.47,326.1
13257,Stephens County,GA,25480,26175,-2.7,26175,5.8,22.4,18.3,51.8,85.1,11.3,0.4,0.9,0.1,2.2,3.0,82.7,89.9,2.0,2.9,80.4,14.2,1844,22.1,12506,74.7,8.8,106600,9227,2.7,18557,37898,19.8,544,7966,2.4,1620,1962,0.0,0.0,0.0,0.0,0.0,21.7,535710,0,274713,10895,26220,25,179.13,146.1
13259,Stewart County,GA,5744,6058,-5.2,6058,4.4,15.4,15.3,38.9,45.1,51.5,0.6,1.0,0.0,1.7,24.5,27.6,80.7,13.6,14.8,63.1,10.0,330,29.4,2336,63.3,6.7,50600,1851,2.74,13238,23451,30.7,62,787,9.3,316,232,0.0,0.0,0.0,0.0,0.0,28.9,0,2608,23878,5203,2689,0,458.73,13.2
13261,Sumter County,GA,31232,32817,-4.8,32819,6.5,24.0,14.8,52.6,44.0,52.8,0.6,1.4,0.2,1.0,5.3,40.0,83.8,3.4,7.2,76.2,18.5,1955,19.9,13849,58.2,21.4,90300,11493,2.63,17879,33796,32.3,629,8951,-4.7,1824,2484,23.6,0.0,0.0,0.0,0.0,26.8,411966,238965,326121,10016,33712,11,482.7,68.0
13263,Talbot County,GA,6390,6863,-6.9,6865,4.5,18.8,19.1,52.3,41.3,56.6,0.4,0.2,0.0,1.5,2.1,40.1,92.1,0.8,2.8,76.7,12.3,541,31.5,3363,75.9,4.8,76500,2682,2.49,16993,32424,21.8,57,538,-1.5,506,777,46.3,0.0,0.0,0.0,0.0,0.0,0,0,4663,710,0,10,391.39,17.5
13265,Taliaferro County,GA,1693,1717,-1.4,1717,6.5,18.5,22.4,51.1,40.5,56.9,0.2,0.8,0.0,1.6,4.0,37.5,85.8,1.6,2.6,68.3,9.3,104,27.9,1005,73.2,4.6,68300,704,2.49,14381,25465,30.0,17,45,-25.0,104,0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,1710,925,0,2,194.61,8.8
13267,Tattnall County,GA,25224,25519,-1.2,25520,5.9,21.2,12.5,42.3,68.1,29.5,0.6,0.5,0.1,1.1,10.5,58.8,82.7,5.4,11.3,75.1,11.6,1968,24.2,9860,71.3,5.5,86100,7885,2.62,15280,37587,27.4,289,3016,-1.4,1224,1241,0.0,0.0,2.2,0.0,7.7,27.6,0,152023,102403,4457,9522,17,479.4,53.2
13269,Taylor County,GA,8442,8906,-5.2,8906,5.1,21.0,18.2,52.5,60.1,38.2,0.1,0.8,0.0,0.8,2.3,58.4,84.7,1.4,1.9,76.4,10.1,668,28.2,4502,69.3,4.8,60800,3681,2.24,17078,27455,28.2,120,855,-6.7,561,765,0.0,0.0,0.0,0.0,0.0,31.9,0,21407,46384,5359,1590,11,376.69,23.6
13271,Telfair County,GA,16518,16500,0.1,16500,4.2,17.7,15.3,40.7,61.3,36.6,0.3,0.8,0.1,1.0,14.7,49.4,95.3,10.8,12.3,73.9,10.9,1021,20.5,7208,64.8,9.7,58300,5567,2.27,12489,26634,30.5,190,3171,-1.2,686,1139,0.0,0.0,0.0,0.0,0.0,12.6,0,30505,77349,5817,11149,0,437.3,37.7
13273,Terrell County,GA,9132,9507,-3.9,9315,6.9,23.6,17.7,52.5,37.2,60.3,0.6,0.4,0.2,1.3,2.6,35.6,85.3,1.2,2.4,65.6,8.7,668,22.1,4157,63.4,8.7,78800,3351,2.66,16836,32628,31.6,164,1705,-0.5,660,550,0.0,0.0,0.0,0.0,0.0,45.5,0,0,68284,6657,0,3,335.44,27.8
13275,Thomas County,GA,44959,44719,0.5,44720,6.5,24.1,16.8,52.6,60.5,36.8,0.5,0.9,0.0,1.3,3.4,57.8,87.0,2.5,4.1,81.8,18.1,3525,20.1,20352,56.5,13.3,127000,17377,2.51,19983,34035,26.5,1051,14947,-2.9,3142,3741,0.0,1.3,0.0,0.0,0.0,29.8,657550,575289,627509,13852,49874,71,544.6,82.1
13277,Tift County,GA,40704,40122,1.5,40118,6.6,25.1,14.0,51.9,66.6,30.1,0.4,1.5,0.1,1.3,11.3,56.6,87.1,5.7,11.7,77.5,16.0,1993,18.9,16402,61.1,16.3,117300,13691,2.84,18933,34591,27.9,1017,15454,-1.1,2986,3604,11.1,0.0,0.0,0.0,2.2,28.0,547460,612216,721588,17119,92037,59,258.92,154.9
13279,Toombs County,GA,27282,27223,0.2,27223,7.7,27.3,15.2,52.6,70.8,26.0,0.7,0.9,0.2,1.5,11.2,61.1,92.6,5.0,10.0,79.2,15.2,1863,20.4,12089,62.4,15.6,88100,10310,2.6,18716,31189,26.9,673,9231,-2.1,2010,2972,10.9,0.0,10.2,0.0,4.6,33.2,0,665035,386338,13914,42329,23,364.01,74.8
13281,Towns County,GA,11098,10471,6.0,10471,3.7,13.8,32.2,52.2,96.9,1.2,0.3,0.7,0.0,0.8,2.6,94.7,87.4,3.1,4.1,86.8,22.7,1303,20.7,7887,84.8,5.8,164000,4261,2.29,20419,36570,16.3,285,2731,-0.9,1108,1499,0.0,0.0,0.0,0.0,0.0,30.6,0,6174,102261,9426,31033,103,166.56,62.9
13283,Treutlen County,GA,6778,6885,-1.6,6885,6.3,24.5,15.0,49.7,66.1,32.3,0.3,0.3,0.0,1.1,2.9,63.7,92.8,0.5,1.2,74.4,12.3,342,26.0,2982,68.0,4.5,64300,2515,2.52,19410,37894,25.8,82,571,2.0,425,421,0.0,0.0,0.0,0.0,0.0,0.0,0,0,30428,4407,1792,0,199.44,34.5
13285,Troup County,GA,69469,67044,3.6,67044,6.7,25.3,13.7,51.8,60.7,35.4,0.4,1.8,0.2,1.5,3.7,57.8,82.0,4.2,5.9,81.8,18.6,4638,20.9,28250,60.9,17.0,121300,24441,2.7,21443,41161,23.6,1410,33030,2.0,5252,5768,25.8,0.7,1.7,0.0,0.0,31.0,2470774,0,798823,12600,88719,133,413.99,161.9
13287,Turner County,GA,8153,8930,-8.7,8930,6.0,26.3,18.6,50.9,58.3,39.4,0.5,0.8,0.2,0.8,4.5,55.0,91.5,3.4,4.4,72.1,9.8,491,24.8,3807,64.7,10.7,83800,3166,2.61,17609,28326,22.0,153,1392,1.2,576,817,0.0,0.0,0.0,0.0,0.0,0.0,0,103211,64546,6881,6479,65,285.39,31.3
13289,Twiggs County,GA,8320,9023,-7.8,9023,5.5,19.1,19.6,51.1,57.0,40.9,0.4,0.3,0.0,1.4,1.9,55.7,94.2,0.5,0.8,70.3,10.8,559,28.0,4190,80.0,2.2,54700,3056,2.85,17952,31234,28.7,75,1484,110.8,541,788,0.0,0.0,0.0,0.0,0.0,0.0,0,0,30340,2969,1349,1,358.4,25.2
13291,Union County,GA,21984,21356,2.9,21356,3.3,16.8,31.3,51.6,96.7,0.9,0.5,0.6,0.0,1.3,3.1,94.0,89.3,2.0,5.2,84.7,19.6,2544,25.4,14255,78.3,4.3,198300,9141,2.3,22156,40009,17.7,531,4895,0.8,2055,2666,0.0,0.0,0.0,0.0,0.0,18.8,0,38051,246740,11809,21565,87,321.93,66.3
13293,Upson County,GA,26256,27153,-3.3,27153,6.4,22.4,17.8,52.3,69.5,28.0,0.4,0.7,0.0,1.3,2.5,67.7,84.6,1.8,2.6,77.6,11.4,1945,22.0,12103,67.0,9.8,86600,10341,2.55,17978,35329,20.5,446,5903,-0.2,1667,1804,0.0,0.0,0.0,0.0,0.0,0.0,526494,0,208661,7575,22893,22,323.44,84.0
13295,Walker County,GA,68218,68756,-0.8,68756,5.5,22.7,16.6,50.7,93.0,4.5,0.3,0.5,0.1,1.5,2.0,91.3,83.8,1.1,2.4,79.1,14.0,5925,25.9,30098,72.6,8.9,104700,26191,2.57,20865,39963,16.7,707,9999,-1.8,4151,5297,0.0,0.0,0.0,0.0,0.5,21.7,2060559,0,344223,5332,25369,84,446.38,154.0
13297,Walton County,GA,87615,83768,4.6,83768,6.2,25.9,14.2,51.3,79.6,17.0,0.4,1.4,0.1,1.5,3.9,76.5,86.9,4.4,6.4,83.1,18.4,5764,31.3,32544,75.1,9.3,157100,29520,2.84,22824,52369,13.8,1520,15244,1.6,7448,8041,0.0,0.0,0.0,0.0,0.0,22.6,591825,260436,797195,9577,58350,271,325.68,257.2
13299,Ware County,GA,35515,36306,-2.2,36312,6.9,23.8,16.2,50.5,67.3,29.3,0.5,1.1,0.1,1.7,3.7,64.3,78.2,3.4,5.8,80.4,13.9,2528,18.9,16408,65.3,12.7,79600,13460,2.48,18842,34572,24.3,849,11477,1.5,1868,2353,0.0,0.0,0.0,0.0,0.0,0.0,0,762673,621068,17285,55465,94,892.46,40.7
13301,Warren County,GA,5520,5834,-5.4,5834,5.8,21.5,20.3,53.1,38.2,59.9,0.4,0.4,0.0,1.1,1.1,37.6,88.3,0.9,2.0,73.2,7.3,333,26.7,2946,65.9,7.5,66700,2208,2.55,17884,27796,31.6,65,599,3.6,344,349,0.0,0.0,0.0,0.0,0.0,14.0,0,0,23192,3954,749,0,284.3,20.5
13303,Washington County,GA,20635,21187,-2.6,21187,6.1,22.3,16.0,49.6,45.5,52.7,0.2,0.6,0.0,1.0,2.2,43.9,89.3,1.0,2.2,76.2,11.1,1210,22.9,9055,72.5,7.5,82300,7119,2.7,17515,33652,25.0,336,5366,-2.3,1231,1492,0.0,0.0,4.2,0.0,0.0,0.0,0,69978,213695,10248,16524,53,678.45,31.2
13305,Wayne County,GA,29949,30099,-0.5,30099,6.8,24.4,14.7,48.1,76.2,20.7,0.6,0.6,0.1,1.9,6.3,71.0,83.8,2.9,5.6,81.3,11.4,2611,23.4,12118,69.1,6.5,80400,10171,2.76,17270,35830,22.7,538,5671,-1.5,1769,2102,0.0,0.0,0.0,0.0,0.0,24.0,663428,0,310344,10703,32909,4,641.78,46.9
13307,Webster County,GA,2649,2801,-5.4,2799,3.5,21.3,19.7,50.0,55.6,42.5,0.3,0.3,0.0,1.3,3.7,52.8,88.8,0.2,2.0,77.5,11.2,110,24.9,1504,79.7,2.6,48800,1129,2.45,19082,35718,22.5,29,346,-0.6,148,175,0.0,0.0,0.0,0.0,0.0,23.4,0,3477,4748,2095,0,0,209.12,13.4
13309,Wheeler County,GA,7995,7421,7.7,7421,4.3,16.9,12.8,34.8,60.2,38.4,0.2,0.3,0.1,0.9,5.4,55.8,96.4,1.0,1.1,74.8,8.5,445,21.0,2594,66.6,7.2,54200,2096,2.03,8948,24382,31.3,67,1011,3.9,352,325,0.0,0.0,0.0,0.0,0.0,0.0,0,8175,18141,2674,0,0,295.48,25.1
13311,White County,GA,27970,27144,3.0,27144,4.8,21.3,20.6,51.0,94.9,2.4,0.6,0.6,0.0,1.5,2.9,92.3,92.4,2.0,2.6,85.2,19.3,2222,30.3,15994,74.3,7.2,169600,11788,2.29,22059,40670,20.1,584,5191,2.8,2482,3143,1.3,0.0,0.0,0.0,0.0,0.0,103902,40427,280664,11284,51128,38,240.69,112.8
13313,Whitfield County,GA,103542,102599,0.9,102599,7.1,27.0,12.7,50.3,90.8,4.4,1.4,1.6,0.2,1.6,33.3,60.1,84.4,17.8,30.0,69.1,14.0,5376,20.1,39642,65.7,19.5,122800,34450,2.95,19497,40471,20.5,2175,46606,4.1,5738,7978,0.0,0.0,2.9,0.0,6.2,23.2,7524935,1351910,1440223,15535,144781,99,290.46,353.2
13315,Wilcox County,GA,8847,9255,-4.4,9255,5.1,18.8,16.0,41.1,62.2,35.7,0.3,0.7,0.0,1.1,4.1,58.7,82.4,1.7,4.2,75.9,8.6,609,26.7,3480,75.6,3.1,71200,2705,2.6,13228,32928,27.8,92,470,3.1,491,695,0.0,0.0,0.0,0.0,0.0,11.2,0,0,27365,3157,612,0,377.71,24.5
13317,Wilkes County,GA,9940,10593,-6.2,10593,5.8,21.7,21.4,52.2,54.9,42.6,0.2,0.8,0.0,1.6,3.9,51.7,89.7,1.5,4.3,76.2,14.5,630,25.5,5155,72.1,7.3,95200,4083,2.47,17120,28983,27.3,197,2235,-8.8,612,732,0.0,0.0,0.0,0.0,0.0,0.0,174306,19021,73407,7168,7075,3,469.49,22.6
13319,Wilkinson County,GA,9326,9563,-2.5,9563,6.3,22.7,17.9,51.9,59.0,38.6,0.4,0.5,0.0,1.5,2.7,56.8,93.2,1.5,2.1,79.7,8.2,613,23.1,4439,78.2,3.7,71600,3348,2.81,17228,36173,21.3,149,2049,1.7,651,681,0.0,0.0,0.0,0.0,0.0,0.0,521536,13316,24250,2418,1377,1,447.31,21.4
13321,Worth County,GA,20940,21679,-3.4,21679,6.0,22.7,16.9,52.0,69.2,28.9,0.4,0.5,0.1,1.0,2.1,67.6,87.2,1.7,2.5,71.4,8.1,1811,26.8,9196,74.1,6.2,75400,7851,2.74,18551,35792,20.2,282,2578,3.1,1265,1593,18.4,0.0,0.0,0.0,0.0,0.0,0,116373,132224,6203,6544,13,570.7,38.0
15000,Hawaii,,1419561,1360301,4.4,1360301,6.4,21.7,16.1,49.4,26.7,2.5,0.4,37.5,10.0,23.0,10.1,23.0,84.9,17.9,25.4,90.4,30.1,112625,26.0,530106,57.6,38.1,503100,449771,2.96,29305,67402,11.2,31622,502530,2.1,98490,120374,0.9,1.3,47.2,9.5,3.6,31.0,8799266,8894672,17611851,13793,8042210,3066,6422.63,211.8
15001,Hawaii County,HI,194190,185079,4.9,185079,6.2,22.0,17.5,50.0,34.3,0.9,0.6,22.0,12.7,29.4,12.3,30.6,87.0,10.9,18.7,91.0,25.6,15729,25.4,85163,65.7,19.0,309800,64909,2.83,24635,51250,18.3,3923,50266,3.4,16499,18900,0.0,1.5,31.9,9.1,3.9,26.4,290120,732242,2566012,14816,874735,958,4028.42,45.9
15003,Honolulu County,HI,991788,953207,4.0,953207,6.5,21.5,15.8,49.2,23.1,3.1,0.4,42.4,9.4,21.6,9.5,19.6,84.6,19.6,27.8,90.3,32.1,82157,27.2,343017,55.5,44.2,556300,309803,3.0,30361,72764,9.8,21173,347954,2.1,60220,74069,1.1,0.0,56.6,9.1,3.3,32.1,8201881,7377106,11518349,12817,4123825,1578,600.74,1586.7
15005,Kalawao County,HI,89,90,-1.1,90,0.0,0.0,29.2,52.8,28.1,0.0,0.0,7.9,48.3,15.7,1.1,27.0,90.1,19.7,33.8,87.7,41.5,3,10.0,113,0.0,25.3,0,46,1.39,45515,59375,14.7,1,0,0.0,0,0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,11.99,7.5
15007,Kauai County,HI,70475,67090,5.0,67091,6.4,22.3,17.4,49.9,33.7,0.7,0.6,31.3,9.1,24.6,10.8,30.1,87.5,15.1,20.9,90.1,25.1,4680,21.4,30346,62.6,25.1,484500,22390,2.99,26658,62052,11.2,1986,25186,1.1,6621,8316,0.0,3.0,35.5,10.2,5.0,31.8,0,209395,1052671,16730,591483,192,619.96,108.2
15009,Maui County,HI,163019,154835,5.3,154834,6.2,22.3,15.1,49.7,35.9,0.9,0.6,28.7,10.7,23.2,11.0,31.3,82.8,17.2,20.7,90.2,25.7,10056,20.8,71467,58.1,37.1,523700,52623,2.93,29517,63512,10.6,4409,60720,-2.1,15150,20097,0.6,1.7,30.3,10.5,3.9,30.0,262749,575929,2474819,17437,2452167,338,1161.52,133.3
16000,Idaho,,1634464,1567652,4.3,1567582,7.0,26.4,14.3,49.9,93.5,0.8,1.7,1.4,0.2,2.3,12.0,82.8,82.8,5.9,10.4,88.8,25.1,122955,20.0,685099,69.8,14.9,162100,579797,2.68,22568,46767,15.5,43124,509986,3.3,115043,151671,0.2,0.9,0.8,0.0,2.6,23.5,18010976,14286715,20526631,13691,2415951,8797,82643.12,19.0
16001,Ada County,ID,426236,392365,8.6,392365,6.2,25.1,12.6,49.9,92.4,1.3,0.8,2.6,0.2,2.7,7.7,85.5,82.5,5.9,8.4,93.6,36.0,29195,19.6,167215,68.1,16.8,183600,151600,2.6,27452,55210,13.1,12216,174796,2.2,33207,42344,0.4,1.0,1.3,0.0,2.1,25.4,4942388,6006918,5855102,15720,795953,3968,1052.58,372.8
16003,Adams County,ID,3861,3976,-2.9,3976,4.2,17.0,24.9,48.5,96.4,0.2,1.0,0.5,0.1,1.8,3.2,93.6,88.3,1.0,2.1,92.8,21.9,545,19.3,2636,81.6,4.7,150500,1707,2.27,21555,35434,16.6,115,455,7.3,360,492,0.0,0.0,0.0,0.0,0.0,18.1,0,0,19965,5627,0,4,1363.06,2.9
16005,Bannock County,ID,83347,82839,0.6,82839,7.3,26.8,12.8,50.2,91.6,0.9,3.7,1.4,0.3,2.2,8.0,85.0,80.6,3.1,6.4,91.8,26.8,5638,18.8,33380,68.8,21.5,142600,30271,2.68,21327,43534,15.5,1953,23611,-0.6,5073,6616,0.0,0.5,0.4,0.0,1.5,25.0,0,386587,1099246,13706,117808,162,1111.99,74.5
16007,Bear Lake County,ID,5957,5986,-0.5,5986,7.3,27.6,19.6,50.3,97.4,0.3,0.9,0.5,0.0,1.0,4.2,93.7,85.7,1.3,3.3,90.7,16.1,440,20.0,3987,81.3,5.5,129700,2442,2.42,21853,44964,12.9,117,938,2.4,420,645,0.0,0.0,0.0,0.0,0.0,0.0,0,23383,58739,10031,0,35,974.79,6.1
16009,Benewah County,ID,9118,9285,-1.8,9285,5.7,22.2,21.2,49.5,86.6,0.4,8.5,0.4,0.1,4.1,3.3,84.5,89.5,2.3,3.3,87.4,13.4,1019,21.7,4614,75.2,6.0,136000,3888,2.34,20198,39049,14.7,228,2190,2.8,540,596,0.0,0.0,0.0,0.0,0.0,26.2,0,6085,93862,10111,0,14,776.62,12.0
16011,Bingham County,ID,45269,45607,-0.7,45607,8.6,31.7,12.9,49.8,89.4,0.5,7.5,0.7,0.2,1.8,17.8,74.4,85.9,7.1,16.0,84.6,17.3,2887,21.1,16225,74.8,9.7,135400,14650,3.08,18872,47941,15.2,819,9700,1.3,2685,3193,0.0,2.5,1.0,0.0,3.6,20.0,624524,0,339940,7822,24298,88,2093.98,21.8
16013,Blaine County,ID,21482,21378,0.5,21376,5.2,23.2,15.8,49.2,95.5,0.3,1.5,1.0,0.2,1.4,20.7,76.9,85.1,13.6,20.5,90.6,44.7,1347,16.9,15121,70.1,30.4,375000,9207,2.28,35524,64042,8.3,1339,10413,10.2,3337,4416,0.0,0.0,0.0,0.0,2.4,23.7,0,285858,356031,16414,153302,89,2643.59,8.1
16015,Boise County,ID,6824,7028,-2.9,7028,3.2,18.6,21.3,48.4,95.3,0.5,1.3,0.5,0.4,2.1,3.6,92.3,84.6,2.2,4.1,89.2,24.1,758,31.5,5339,78.3,1.0,195600,2994,2.29,24324,41056,17.0,151,491,-1.0,564,813,0.0,0.0,0.0,0.0,0.0,27.2,0,0,18745,2465,5741,32,1899.24,3.7
16017,Bonner County,ID,41585,40877,1.7,40877,4.9,20.3,21.4,50.0,95.9,0.3,0.9,0.7,0.1,2.2,2.9,93.4,86.5,1.9,2.3,90.7,21.1,4676,23.3,24580,73.1,11.8,222200,17388,2.32,23221,41414,15.2,1398,10977,0.0,3687,5642,0.0,0.0,0.7,0.0,0.0,20.6,498636,149654,485307,11788,63260,55,1734.57,23.6
16019,Bonneville County,ID,108623,104304,4.1,104234,8.9,31.3,12.1,50.4,94.9,0.7,1.1,1.0,0.1,2.1,12.5,83.8,84.8,5.6,10.5,90.5,26.0,6919,19.2,40718,73.0,18.8,154700,36066,2.9,22657,50872,11.4,3244,44031,1.7,7757,10995,0.0,0.8,0.9,0.0,1.9,21.8,0,1881605,1871454,19405,153475,398,1866.08,55.9
16021,Boundary County,ID,10979,10972,0.1,10972,5.1,22.9,20.5,49.4,94.5,0.5,2.2,0.7,0.1,2.0,4.2,91.0,91.7,2.7,4.3,84.9,15.4,1263,20.1,5247,74.4,9.3,174300,4144,2.59,19877,37003,16.5,355,2340,4.5,871,1133,0.0,0.0,0.0,0.0,0.0,29.1,0,19692,86256,7945,0,51,1268.56,8.6
16023,Butte County,ID,2622,2893,-9.4,2891,4.9,25.6,19.6,49.5,96.1,0.2,1.0,0.3,0.2,2.3,5.8,90.6,88.7,2.6,3.4,89.2,17.9,266,21.0,1351,79.5,11.8,110300,1022,2.68,20995,41131,15.7,59,0,0.0,189,95,0.0,0.0,0.0,0.0,0.0,0.0,0,5209,18069,6500,0,5,2231.67,1.3
16025,Camas County,ID,1039,1117,-7.0,1117,5.7,24.4,18.6,48.8,94.1,0.5,1.3,0.5,0.1,3.5,7.5,87.3,86.0,11.2,16.8,84.3,22.3,133,25.1,836,67.7,0.7,163000,464,2.73,21830,41154,15.5,27,0,0.0,87,73,0.0,0.0,0.0,0.0,0.0,56.2,0,0,0,0,1518,3,1074.49,1.0
16027,Canyon County,ID,203143,188923,7.5,188923,7.9,29.9,12.5,50.6,93.7,0.8,1.7,1.0,0.3,2.5,24.6,71.3,82.1,8.4,18.1,82.7,16.8,13416,23.6,71326,69.3,11.4,122800,63442,2.98,17755,42105,20.4,3627,45609,5.7,11596,14561,0.2,0.7,0.6,0.0,5.9,22.4,0,992925,2176039,12171,140865,1130,587.37,321.6
16029,Caribou County,ID,6837,6963,-1.8,6963,7.4,28.6,16.8,49.8,97.1,0.2,0.6,0.6,0.2,1.2,5.3,92.2,89.0,2.8,3.3,88.7,17.5,478,18.7,3217,84.1,3.4,116300,2644,2.56,23586,53586,7.8,193,2639,0.2,451,511,0.0,0.0,0.0,0.0,0.0,26.2,443222,94559,68364,9967,0,9,1764.15,3.9
16031,Cassia County,ID,23540,22958,2.5,22952,8.3,32.3,13.5,49.3,95.3,0.6,1.6,0.7,0.1,1.6,26.6,71.0,83.5,9.7,19.4,78.0,15.6,1340,16.3,8434,69.0,8.7,125900,7653,2.96,17801,42039,15.9,644,7301,5.7,1486,2218,0.0,0.0,0.0,0.0,6.6,24.7,371255,335892,318904,15216,33455,46,2565.08,8.9
16033,Clark County,ID,867,982,-11.7,982,5.9,28.0,14.8,47.3,93.5,0.8,2.2,1.0,0.0,2.4,42.6,54.0,70.9,34.8,37.8,70.1,11.4,41,14.0,533,59.5,13.8,111700,304,2.41,20032,33200,14.9,18,75,-9.6,53,112,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,3,1764.19,0.6
16035,Clearwater County,ID,8562,8761,-2.3,8761,4.0,16.3,25.4,45.2,94.4,0.5,2.2,0.6,0.1,2.1,3.6,91.3,84.9,2.0,4.8,84.9,15.5,1041,22.8,4479,80.1,7.3,138300,3545,2.19,20256,40134,12.5,229,1867,-1.5,478,927,0.0,0.0,0.0,0.0,0.0,15.1,0,13677,69845,8489,0,19,2457.27,3.6
16037,Custer County,ID,4140,4366,-5.2,4368,4.3,17.5,23.8,48.7,97.1,0.2,0.7,0.4,0.1,1.5,4.1,93.2,91.6,1.9,2.6,89.6,26.3,547,22.3,3090,83.5,4.9,150600,1870,2.26,23965,39541,16.1,167,681,9.7,440,318,0.0,0.0,0.0,0.0,0.0,0.0,0,0,35092,8542,11270,0,4920.94,0.9
16039,Elmore County,ID,26094,27038,-3.5,27038,8.0,26.4,11.8,47.8,88.6,3.2,1.6,2.8,0.4,3.4,16.2,74.1,79.5,9.9,15.1,84.0,16.9,4308,17.4,12193,62.4,12.2,136800,9555,2.7,20646,42842,16.3,431,3936,3.0,1198,1852,0.0,0.0,0.0,0.0,6.5,19.8,0,53448,241226,8319,26980,57,3074.74,8.8
16041,Franklin County,ID,13021,12786,1.8,12786,8.0,34.0,13.6,49.3,97.2,0.3,0.8,0.2,0.1,1.5,6.9,91.1,91.2,2.9,7.5,92.0,17.4,785,23.0,4650,80.9,5.8,156800,4150,3.07,17620,44962,12.2,281,1928,2.3,958,1047,0.0,0.0,0.0,0.0,0.0,16.4,0,49543,113519,9319,5841,35,663.65,19.3
16043,Fremont County,ID,12867,13242,-2.8,13242,6.9,28.4,16.0,47.8,96.2,0.8,1.1,0.3,0.1,1.4,12.4,85.2,91.2,5.7,12.1,87.9,19.7,953,22.8,8651,82.5,5.2,147600,4549,2.76,19475,44520,12.4,272,1377,-3.6,1081,1438,0.0,0.0,0.0,0.0,0.0,0.0,0,76724,68167,5412,10050,65,1863.53,7.1
16045,Gem County,ID,16866,16719,0.9,16719,5.7,23.6,21.4,50.3,95.0,0.2,0.9,1.4,0.1,2.4,8.2,87.6,82.8,4.4,8.4,86.3,15.8,1656,30.1,7100,74.6,8.3,150400,6323,2.62,20250,44432,18.2,337,2154,-1.0,1238,1753,0.0,0.0,0.0,0.0,0.0,0.0,0,13552,113895,6914,9205,37,560.9,29.8
16047,Gooding County,ID,15064,15464,-2.6,15464,6.9,28.2,16.4,48.7,94.8,0.5,1.8,0.9,0.2,1.8,28.6,68.6,88.0,15.8,20.5,74.6,12.1,1125,18.8,6059,70.5,6.1,123800,5552,2.73,18373,37050,20.8,348,2498,0.5,848,1141,0.0,0.0,0.0,0.0,3.4,34.3,0,118908,88226,6158,0,13,728.97,21.2
16049,Idaho County,ID,16215,16267,-0.3,16267,5.2,20.0,24.0,47.8,94.0,0.4,3.0,0.5,0.1,2.1,3.1,91.5,86.4,1.2,2.3,88.9,14.8,1877,17.6,8648,78.2,5.1,150900,6534,2.4,19168,37349,17.5,478,3292,4.0,1209,1617,0.0,0.0,0.0,0.0,0.0,23.5,0,64841,97645,6395,14650,1,8477.35,1.9
16051,Jefferson County,ID,27021,26140,3.4,26140,8.8,34.8,11.1,49.7,96.0,0.4,1.3,0.5,0.2,1.6,10.3,87.2,86.8,4.2,10.2,89.4,22.0,1587,23.7,8878,83.8,5.8,157500,8058,3.26,19598,52023,13.1,430,3769,12.1,2037,2929,0.0,1.0,0.0,0.0,0.0,0.0,0,0,92388,4058,7387,79,1093.5,23.9
16053,Jerome County,ID,22818,22374,2.0,22374,9.2,30.8,12.1,49.3,94.8,0.6,2.4,0.5,0.2,1.5,34.0,63.4,87.9,17.1,24.4,70.2,13.4,1339,17.8,8238,63.5,7.8,135200,7676,2.9,17182,40126,18.3,524,5770,4.3,1101,1719,0.0,0.0,0.0,0.0,0.0,0.0,764164,103712,300421,15013,14045,57,597.19,37.5
16055,Kootenai County,ID,147326,138494,6.4,138494,6.1,23.6,17.0,50.6,94.7,0.4,1.4,0.9,0.2,2.4,4.3,91.1,83.2,2.3,3.3,92.1,23.3,13296,20.8,66130,70.6,15.5,188800,55679,2.5,24685,49002,13.4,4345,44971,2.0,10934,15155,0.2,1.2,0.6,0.0,1.8,24.1,992158,843286,2175172,16242,303725,1047,1244.13,111.3
16057,Latah County,ID,38411,37244,3.1,37244,5.8,18.5,11.8,48.5,93.3,1.1,0.9,1.9,0.2,2.7,4.1,89.8,70.4,3.8,6.2,95.3,44.1,2141,18.0,16330,56.7,34.2,189100,14941,2.31,22322,41735,20.4,885,8299,-1.2,2444,3444,0.0,0.0,0.0,0.0,0.0,26.2,0,0,361668,9697,55179,136,1076.0,34.6
16059,Lemhi County,ID,7726,7936,-2.6,7936,4.0,18.2,27.3,49.3,95.8,0.5,1.2,0.6,0.0,2.0,3.1,93.3,86.6,1.5,2.8,90.4,23.8,1004,15.1,4746,71.3,6.6,186900,3832,2.0,23998,34122,23.3,289,1651,7.7,685,1013,0.0,0.0,0.0,0.0,0.0,27.3,0,0,122983,15806,7704,11,4563.39,1.7
16061,Lewis County,ID,3838,3821,0.4,3821,5.3,23.0,24.1,49.8,90.0,0.4,6.0,0.5,0.2,2.8,4.0,86.8,85.5,2.5,4.7,88.3,16.2,468,19.5,1868,74.1,6.8,116600,1660,2.28,19910,36000,17.9,121,763,6.4,310,438,0.0,0.0,0.0,0.0,0.0,0.0,0,0,29657,8193,0,10,478.8,8.0
16063,Lincoln County,ID,5316,5206,2.1,5208,7.0,30.9,12.3,48.5,95.6,0.5,1.7,0.5,0.2,1.6,30.2,66.8,85.7,13.8,23.4,74.5,11.8,292,29.7,1958,71.7,3.9,120300,1617,3.21,16530,42433,16.6,87,635,4.3,284,383,0.0,0.0,0.0,0.0,0.0,0.0,0,0,16924,3721,2350,4,1201.41,4.3
16065,Madison County,ID,38038,37536,1.3,37536,10.0,27.0,6.0,49.7,95.6,0.7,0.5,1.1,0.4,1.8,7.0,89.4,60.7,4.6,10.1,94.9,33.7,960,17.1,12708,49.1,43.8,169600,10323,3.53,15133,32059,35.8,757,14065,5.5,2421,2942,0.0,0.0,0.0,0.0,0.0,15.2,0,161967,407686,10971,32041,386,469.21,80.0
16067,Minidoka County,ID,20323,20063,1.3,20069,8.2,28.9,15.5,49.4,94.5,0.8,2.2,0.6,0.0,1.9,33.7,63.6,86.7,12.4,27.6,75.7,9.9,1387,16.1,7787,72.8,9.7,108500,6994,2.86,19597,43266,13.6,403,4355,3.7,1151,1796,0.0,0.0,0.0,0.0,0.0,17.8,381084,347045,162891,8722,18923,29,757.59,26.5
16069,Nez Perce County,ID,40007,39265,1.9,39265,6.2,21.7,18.9,50.5,90.1,0.5,5.8,0.9,0.1,2.5,3.7,87.4,85.4,1.9,4.3,90.0,21.1,4190,16.3,17417,69.3,19.1,165900,16019,2.41,24257,46503,11.1,1110,16434,2.3,2152,3205,0.0,1.2,0.0,0.0,0.8,27.0,0,0,702969,18133,64508,55,848.09,46.3
16071,Oneida County,ID,4184,4286,-2.4,4286,6.7,28.0,19.3,50.4,97.4,0.3,0.5,0.6,0.1,1.1,4.1,93.7,92.0,1.5,4.4,93.1,13.2,417,20.4,1935,81.2,3.6,126100,1579,2.67,18920,40842,16.1,88,692,1.8,319,0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,24106,5834,2135,18,1200.06,3.6
16073,Owyhee County,ID,11353,11526,-1.5,11526,6.4,26.6,16.3,49.1,91.7,0.8,4.5,0.7,0.2,2.0,26.5,68.2,84.8,10.3,21.2,75.4,8.2,922,27.2,4769,64.2,5.4,121200,3911,2.9,15945,32175,24.2,181,1612,5.6,635,999,0.0,0.0,0.0,0.0,4.0,21.6,0,34609,50935,4653,4150,16,7665.51,1.5
16075,Payette County,ID,22836,22623,0.9,22623,6.9,27.1,17.0,50.5,94.4,0.4,1.6,1.0,0.1,2.5,16.7,79.2,85.1,5.0,11.0,85.4,16.4,2002,18.0,9070,74.6,8.4,132700,8056,2.79,19165,43649,20.0,483,4326,0.5,1366,2215,0.0,0.0,0.0,0.0,1.9,21.9,0,133096,145621,6401,12757,110,406.87,55.6
16077,Power County,ID,7617,7817,-2.6,7817,9.9,30.5,13.9,49.1,92.9,1.0,3.1,0.5,0.1,2.4,31.1,64.3,89.8,13.4,26.9,80.3,15.9,478,17.3,2936,70.8,5.0,125600,2568,2.99,17684,44212,13.9,150,2027,-3.1,372,493,0.0,0.0,0.0,0.0,0.0,0.0,0,0,50445,6572,2596,8,1404.24,5.6
16079,Shoshone County,ID,12390,12765,-2.9,12765,5.2,19.7,21.7,49.5,94.9,0.3,1.8,0.5,0.2,2.3,3.4,92.1,80.2,1.7,2.3,84.8,13.5,1605,18.7,6976,68.4,12.1,123200,5714,2.17,20487,38440,17.4,355,4166,-0.4,768,1217,0.0,0.0,0.0,0.0,0.0,18.2,0,25007,623117,48689,11068,7,2629.67,4.9
16081,Teton County,ID,10341,10170,1.7,10170,7.8,27.8,8.6,48.2,97.0,0.4,0.7,0.5,0.2,1.2,17.7,80.4,83.3,10.2,16.1,87.8,34.4,420,26.0,5503,72.1,13.7,222700,3583,2.82,22436,53931,11.7,418,1882,5.1,1293,1459,0.0,0.0,0.0,0.0,0.0,0.0,0,0,84074,9987,10730,28,449.46,22.6
16083,Twin Falls County,ID,80914,77230,4.8,77230,7.7,27.6,14.8,50.7,94.5,0.7,1.3,1.4,0.2,1.8,15.2,80.8,81.6,8.5,14.4,83.7,16.3,5629,16.6,31772,66.8,13.8,148900,28166,2.72,20588,43886,15.0,2455,27449,8.0,5099,7234,0.0,0.0,0.6,0.0,3.7,22.7,970292,497639,1259106,17270,112044,361,1921.21,40.2
16085,Valley County,ID,9826,9862,-0.4,9862,4.3,18.3,21.6,48.1,96.5,0.2,1.1,0.5,0.1,1.6,4.4,92.9,78.6,2.2,7.2,92.4,34.3,1131,15.4,11906,77.8,8.6,221200,3519,2.7,25785,50473,9.5,567,2927,1.4,1224,2058,0.0,0.0,0.0,0.0,0.0,10.4,0,20494,135620,15201,43204,99,3664.52,2.7
16087,Washington County,ID,10021,10198,-1.7,10198,5.0,23.4,22.7,50.1,94.9,0.4,1.5,1.0,0.2,2.0,17.2,79.2,86.8,7.5,14.1,81.8,16.7,1034,22.9,4543,76.3,7.9,122700,3938,2.52,20380,37453,15.0,218,1664,-12.7,635,992,0.0,0.0,0.0,0.0,0.0,0.0,0,63380,76253,7645,0,17,1452.98,7.0
17000,Illinois,,12880580,12831587,0.4,12830632,6.1,23.2,13.9,50.9,77.5,14.7,0.6,5.3,0.1,1.8,16.7,62.3,86.8,13.8,22.3,87.3,31.4,727919,28.0,5307222,67.5,32.9,182300,4772723,2.63,29666,56797,14.1,315364,5209070,1.7,928461,1123817,9.5,0.5,5.3,0.1,5.0,30.5,257760713,231082768,165450520,12947,25469026,20579,55518.93,231.1
17001,Adams County,IL,66988,67103,-0.2,67103,6.2,22.5,18.7,51.1,93.6,3.7,0.2,0.8,0.0,1.7,1.4,92.4,87.6,1.5,2.9,89.7,21.3,5862,16.6,29967,72.0,16.2,104200,26912,2.43,24217,45073,14.4,1833,31182,3.5,3874,5561,0.0,0.5,1.5,0.0,0.0,24.6,0,0,928289,13888,0,83,855.2,78.5
17003,Alexander County,IL,7492,8238,-9.1,8238,6.4,22.9,18.2,49.7,60.3,36.6,0.5,0.3,0.1,2.2,2.1,58.8,86.7,1.3,2.5,74.6,8.4,678,25.6,3953,65.8,14.2,54400,2860,2.62,13619,26972,31.6,107,1037,-6.3,416,383,0.0,0.0,0.0,0.0,0.0,43.1,0,0,22853,2785,0,0,235.51,35.0
17005,Bond County,IL,17269,17768,-2.8,17768,4.5,19.4,16.5,47.3,90.8,6.5,0.6,0.8,0.0,1.3,3.5,87.8,86.7,1.5,3.4,86.3,19.1,1458,23.6,7094,74.7,10.4,103300,6373,2.65,23195,48163,14.6,303,3825,-0.5,1069,1349,0.0,0.0,0.0,0.0,0.0,26.9,0,217636,104527,5708,13125,12,380.28,46.7
17007,Boone County,IL,53869,54167,-0.6,54165,5.7,26.1,14.0,50.2,93.1,2.7,0.6,1.4,0.1,2.1,20.6,74.4,89.6,11.3,19.0,85.8,19.3,3404,30.1,19973,82.5,12.7,158800,17938,3.0,25888,60893,11.3,847,15398,15.7,3056,3425,1.3,0.0,0.0,0.0,0.0,27.8,5553679,146167,454857,8556,40186,11,280.72,193.0
17009,Brown County,IL,6832,6937,-1.5,6937,3.8,15.0,13.0,35.6,78.5,19.2,1.2,0.3,0.0,0.7,6.2,74.0,82.5,2.8,5.5,81.5,12.2,454,18.9,2442,78.2,9.2,83600,2105,2.47,20555,42194,12.3,116,2988,9.1,334,373,0.0,0.0,0.0,0.0,0.0,0.0,0,0,30018,4597,0,0,305.61,22.7
17011,Bureau County,IL,33840,34978,-3.3,34978,5.0,21.8,19.9,51.0,96.6,0.9,0.4,0.9,0.0,1.1,8.6,88.7,90.3,3.6,7.5,89.2,17.4,2803,20.4,15651,75.7,12.1,101200,13998,2.44,26705,48977,11.6,768,9484,-2.7,1982,2918,0.0,0.0,0.0,0.0,0.0,28.7,0,977575,331951,9525,27440,15,869.03,40.2
17013,Calhoun County,IL,4956,5089,-2.6,5089,5.2,20.4,22.8,49.9,98.8,0.3,0.2,0.3,0.0,0.4,1.1,97.7,90.9,1.6,1.6,89.0,14.4,444,39.6,2835,81.5,5.7,112300,2061,2.41,26924,50436,11.9,93,605,-1.1,339,0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,22307,4376,5376,12,253.83,20.0
17015,Carroll County,IL,14715,15388,-4.4,15387,4.5,19.1,23.6,50.0,96.6,1.1,0.4,0.6,0.0,1.3,3.4,93.6,89.0,3.3,4.9,88.9,15.1,1395,23.8,8412,76.5,11.3,100100,6671,2.24,27118,47985,13.7,399,3198,-5.6,1051,1669,0.0,0.0,0.0,0.0,0.0,0.0,320789,301803,88717,5593,12957,17,444.81,34.6
17017,Cass County,IL,13156,13638,-3.5,13642,6.4,24.5,16.4,49.3,93.5,3.8,0.8,0.6,0.1,1.2,18.9,76.5,87.1,10.3,16.9,86.0,13.0,982,22.2,5781,72.2,8.5,76100,5134,2.59,22257,45734,14.8,254,4471,1.4,690,1166,0.0,0.0,0.0,0.0,0.0,0.0,0,331272,115401,8480,8121,8,375.82,36.3
17019,Champaign County,IL,207133,201081,3.0,201081,5.5,19.2,11.1,50.1,73.8,12.8,0.3,10.2,0.1,2.7,5.7,69.1,72.9,11.7,15.9,93.6,42.4,10682,17.6,89194,54.9,35.6,149500,79137,2.35,25713,45808,22.3,4133,67335,-0.9,11532,13525,8.8,0.0,0.0,0.0,1.9,28.3,3248908,2575981,2347059,12163,374499,1458,996.27,201.8
17021,Christian County,IL,33892,34800,-2.6,34800,5.5,21.2,18.6,49.1,96.5,1.6,0.2,0.7,0.0,1.0,1.6,95.1,89.3,1.5,2.1,88.2,13.5,3129,24.6,15533,74.7,10.6,82400,14138,2.32,23915,45145,14.9,718,8699,-0.8,1960,2949,0.0,0.0,0.0,0.0,0.0,30.7,392440,0,369948,10703,29295,29,709.38,49.1
17023,Clark County,IL,16180,16335,-0.9,16335,5.8,22.8,18.7,50.8,98.1,0.5,0.2,0.3,0.0,0.8,1.4,96.8,88.6,1.0,2.0,89.5,17.6,1459,21.8,7739,75.6,7.6,87800,6568,2.44,24296,47405,12.3,334,3763,-5.5,1089,1452,0.0,0.0,0.0,0.0,0.0,21.4,664438,176069,109618,6513,17035,7,501.42,32.6
17025,Clay County,IL,13520,13815,-2.1,13815,6.5,22.9,18.8,50.7,97.6,0.5,0.2,0.7,0.0,0.9,1.5,96.3,92.6,0.9,1.7,87.7,14.0,1054,19.6,6353,79.6,7.3,75300,5486,2.45,22279,40640,15.6,364,4555,1.3,1026,732,0.0,0.0,0.0,0.0,0.0,41.8,737102,168802,114775,8375,0,4,468.32,29.5
17027,Clinton County,IL,37857,37762,0.3,37762,5.5,21.5,16.0,48.2,94.3,3.7,0.4,0.5,0.1,1.1,3.1,91.6,89.3,1.6,3.6,88.7,20.3,3558,25.3,15541,82.4,7.4,127300,14051,2.55,27802,61720,8.9,880,8679,-1.9,2248,2876,0.0,0.0,0.0,0.0,0.0,0.0,0,281952,383207,10581,32422,85,474.09,79.7
17029,Coles County,IL,53320,53873,-1.0,53873,4.9,18.0,15.0,51.7,93.0,4.1,0.3,1.0,0.0,1.6,2.3,91.1,75.8,1.9,4.1,90.0,24.2,3785,17.0,23434,62.0,24.9,90200,21046,2.33,21970,37040,22.0,1186,17476,-0.7,2671,3872,2.6,0.0,0.0,0.0,0.0,25.6,0,382885,635068,12150,75603,16,508.29,106.0
17031,Cook County,IL,5246456,5195060,1.0,5194675,6.5,22.6,12.9,51.5,65.8,24.4,0.8,7.2,0.1,1.8,25.0,43.0,86.5,21.1,34.5,84.5,34.7,213855,31.7,2175146,58.3,53.8,231200,1933335,2.65,30183,54548,16.9,129972,2286711,2.3,447401,510931,16.4,0.6,6.9,0.1,7.2,32.3,77932858,83964561,60585557,11571,13094372,7753,945.33,5495.1
17033,Crawford County,IL,19393,19817,-2.1,19817,5.4,19.8,18.3,48.4,93.1,4.9,0.4,0.6,0.0,1.0,2.2,91.3,87.0,1.1,3.0,89.2,17.1,1805,18.0,8637,79.9,7.0,76600,7731,2.41,25214,46216,14.4,427,6607,-0.9,1196,1597,0.0,0.0,0.0,0.0,0.0,26.4,0,90886,164186,8419,15266,5,443.63,44.7
17035,Cumberland County,IL,10833,11048,-1.9,11048,5.4,22.8,17.6,49.9,97.6,0.5,0.1,0.7,0.0,1.1,1.0,96.7,88.7,1.1,1.6,88.8,13.8,982,23.6,4838,80.8,5.0,83800,4184,2.59,22952,43958,13.9,178,1657,-5.2,742,626,0.0,0.0,0.0,0.0,0.0,0.0,0,0,22877,2119,3098,0,346.02,31.9
17037,DeKalb County,IL,105462,105160,0.3,105160,5.8,21.7,11.1,50.5,87.4,7.6,0.4,2.8,0.1,1.8,10.9,77.6,78.3,6.9,11.8,91.1,29.8,5687,26.1,41003,60.2,29.8,173000,37844,2.59,23696,53375,19.0,1959,26056,-0.2,5934,7815,2.1,0.0,2.1,0.0,2.2,31.3,1435916,249685,1090171,10351,128175,45,631.31,166.6
17039,De Witt County,IL,16284,16561,-1.7,16561,5.5,21.6,18.1,50.1,97.2,0.8,0.2,0.5,0.0,1.2,2.3,95.1,88.1,1.1,2.0,92.6,16.8,1373,21.8,7502,77.0,11.1,107100,6802,2.38,26704,51051,14.0,397,4445,-3.3,866,1165,0.0,0.0,0.0,0.0,0.0,0.0,0,248857,188199,11527,13923,25,397.51,41.7
17041,Douglas County,IL,19889,19982,-0.5,19980,6.7,25.5,16.3,50.4,97.2,0.6,0.3,0.7,0.0,1.1,7.3,90.4,89.3,4.3,19.0,83.8,16.2,1403,20.8,8374,78.3,10.9,99300,7509,2.62,23732,52741,10.3,586,6396,5.8,1504,1871,0.0,0.0,0.0,0.0,0.0,0.0,699883,290117,218438,11222,24490,25,416.67,48.0
17043,DuPage County,IL,932708,916896,1.7,916924,5.9,23.4,13.5,51.0,81.1,5.2,0.4,11.4,0.1,1.8,14.1,68.1,88.2,18.4,26.3,92.1,46.3,42246,28.9,357407,74.4,27.7,286500,336028,2.71,38570,78487,6.9,33329,583086,1.5,77413,101546,2.3,0.0,8.4,0.0,4.0,26.1,16862490,49574946,18043391,19550,2226207,1341,327.5,2799.8
17045,Edgar County,IL,17841,18576,-4.0,18576,5.0,21.1,20.4,51.5,98.2,0.5,0.2,0.2,0.0,0.8,1.0,97.3,85.5,1.0,1.8,86.0,18.2,1640,23.3,8741,73.4,9.5,72900,7893,2.28,23368,42133,18.4,347,5966,5.3,992,1251,0.0,0.0,0.0,0.0,0.0,0.0,521758,126747,197055,10476,12036,45,623.37,29.8
17047,Edwards County,IL,6617,6721,-1.5,6721,5.7,23.0,19.2,51.1,97.7,0.6,0.2,0.4,0.0,1.0,1.2,96.9,91.3,0.6,1.4,86.8,10.5,556,22.5,3158,79.9,5.0,65800,2728,2.43,20898,39075,11.4,145,1983,-5.6,481,500,0.0,0.0,0.0,0.0,0.0,22.2,0,147064,40643,6229,2538,0,222.42,30.2
17049,Effingham County,IL,34320,34242,0.2,34242,6.5,23.7,16.8,50.2,98.0,0.5,0.2,0.5,0.0,0.8,1.9,96.4,90.0,0.9,2.2,90.9,20.0,2605,17.8,14714,78.3,12.5,115200,13544,2.5,27051,52108,9.1,1185,21580,21.8,2732,3422,0.0,0.0,0.0,0.0,0.0,0.0,890285,0,857847,25050,85192,25,478.78,71.5
17051,Fayette County,IL,21870,22142,-1.2,22140,5.2,21.7,17.1,46.9,93.6,4.7,0.2,0.4,0.0,1.1,1.7,92.2,88.1,1.6,2.7,84.2,13.1,1712,22.7,9216,80.5,7.5,82900,8124,2.57,21523,44722,17.0,479,4800,-0.9,1363,2194,0.0,0.0,0.0,0.0,0.0,0.0,174590,322619,227314,10846,18286,4,716.48,30.9
17053,Ford County,IL,13688,14081,-2.8,14081,5.4,22.8,19.8,50.5,97.2,1.0,0.3,0.4,0.0,1.0,2.9,94.6,89.0,0.8,2.3,88.6,16.3,1164,21.8,6334,76.6,9.9,89600,5651,2.4,25448,48866,10.5,374,3971,-1.0,974,1500,0.0,0.0,0.0,0.0,0.0,31.2,0,323108,112302,7990,11430,11,485.62,29.0
17055,Franklin County,IL,39411,39989,-1.4,39561,5.8,22.1,19.5,50.9,97.4,0.5,0.4,0.4,0.0,1.2,1.6,96.1,87.4,0.8,2.2,87.1,13.1,3774,24.0,18546,75.6,9.2,64300,16110,2.42,20394,36273,19.1,763,6837,-5.4,2278,3165,0.0,0.0,0.0,0.0,0.0,21.4,223186,72726,362193,9236,34169,7,408.89,96.8
17057,Fulton County,IL,36007,37069,-2.9,37069,5.1,20.2,18.9,47.8,94.2,3.9,0.6,0.4,0.0,0.9,2.7,92.2,87.6,1.7,3.2,86.4,14.5,3195,27.0,16180,75.5,10.9,80600,14610,2.37,22318,45130,13.3,662,6412,-8.3,1774,2540,0.0,0.0,0.0,0.0,0.0,28.8,0,0,288858,7843,29399,44,865.6,42.8
17059,Gallatin County,IL,5291,5589,-5.3,5589,4.6,19.9,22.8,51.5,97.3,0.8,0.3,0.1,0.0,1.5,1.9,95.4,89.4,0.3,0.4,81.3,12.0,457,24.5,2725,78.3,5.7,61100,2369,2.32,23862,40330,17.2,102,911,6.4,293,548,0.0,0.0,0.0,0.0,0.0,0.0,0,23177,21882,3684,0,0,323.07,17.3
17061,Greene County,IL,13434,13886,-3.3,13886,5.8,22.0,18.3,49.7,97.8,1.1,0.2,0.1,0.0,0.7,1.0,96.9,88.5,0.6,1.8,88.6,12.9,1086,28.9,6341,75.8,7.1,75200,5790,2.33,22307,43502,13.2,254,1740,-5.3,791,1080,0.0,0.0,0.0,0.0,0.0,0.0,0,151301,95884,7009,0,27,543.02,25.6
17063,Grundy County,IL,50425,50063,0.7,50063,6.3,25.9,12.9,50.1,96.0,1.5,0.4,0.8,0.0,1.2,9.3,87.4,90.2,3.9,7.4,91.7,20.2,3472,29.0,20337,76.2,13.8,182200,18082,2.75,28725,64541,9.0,1075,14102,-2.1,2796,3673,0.0,0.0,1.3,0.0,2.4,33.3,2082448,438450,522618,11097,56309,194,418.04,119.8
17065,Hamilton County,IL,8296,8457,-1.9,8457,5.5,22.3,20.2,51.0,97.9,0.6,0.3,0.2,0.0,0.9,1.6,96.6,90.3,0.3,3.8,83.8,15.7,713,26.5,4062,76.7,5.7,72800,3512,2.36,21960,38417,17.1,194,1370,1.6,556,1013,0.0,0.0,0.0,0.0,0.0,0.0,0,0,41922,5145,2759,0,434.67,19.5
17067,Hancock County,IL,18564,19104,-2.8,19104,5.0,20.6,23.1,50.6,98.0,0.4,0.3,0.3,0.1,0.9,1.5,96.7,89.8,1.2,2.2,90.6,18.4,1750,23.2,9221,78.3,9.6,81600,8101,2.3,23714,43925,13.6,378,2737,-1.5,1326,2125,0.0,0.0,0.0,0.0,0.0,30.1,193240,200539,106493,5676,10926,5,793.73,24.1
17069,Hardin County,IL,4129,4320,-4.4,4320,4.7,20.0,23.3,49.4,96.7,0.7,0.7,0.7,0.1,1.0,1.6,95.2,90.9,0.8,1.1,83.2,12.2,381,20.9,2459,79.5,6.5,72600,1800,2.33,22366,37071,23.6,65,785,-2.0,242,446,0.0,0.0,0.0,0.0,0.0,0.0,0,0,14363,3219,1016,0,177.53,24.3
17071,Henderson County,IL,6916,7328,-5.6,7331,3.5,18.3,23.6,51.0,97.8,0.4,0.3,0.3,0.1,1.1,1.5,96.5,86.3,1.8,2.4,88.4,15.7,831,23.3,3821,79.6,3.2,83700,3202,2.22,25902,49389,11.3,119,680,4.3,394,604,0.0,0.0,0.0,0.0,0.0,0.0,0,0,26145,3462,1914,6,378.87,19.3
17073,Henry County,IL,49635,50485,-1.7,50486,5.4,22.6,18.5,50.2,95.9,1.9,0.3,0.5,0.0,1.4,5.4,91.0,90.2,2.4,4.4,89.7,19.8,4338,22.8,22107,78.1,10.1,109800,20393,2.43,27117,52940,10.5,1077,13024,-1.4,2815,3237,0.0,0.0,0.0,0.0,0.0,0.0,0,0,477578,9644,42009,43,822.99,61.3
17075,Iroquois County,IL,28879,29718,-2.8,29718,5.5,22.2,20.4,51.1,96.7,1.1,0.3,0.6,0.0,1.3,6.5,90.6,89.7,3.6,6.3,88.3,14.6,2385,24.4,13438,75.3,10.8,96500,11892,2.42,25098,47079,13.7,702,6237,-3.5,2161,2722,0.0,0.0,0.0,0.0,0.0,23.7,338655,614888,265444,8843,20770,28,1117.32,26.6
17077,Jackson County,IL,59677,60218,-0.9,60218,5.0,18.0,13.0,49.8,77.7,14.9,0.5,3.9,0.1,2.9,4.2,74.5,76.1,5.6,8.7,89.7,35.1,4349,18.5,28615,53.4,32.6,100600,23567,2.33,20527,33479,30.4,1310,17040,2.8,3149,4209,0.0,0.0,4.1,0.0,0.0,28.3,177351,0,684089,11751,108315,130,584.08,103.1
17079,Jasper County,IL,9623,9698,-0.8,9698,6.1,22.9,18.2,50.0,98.4,0.3,0.2,0.3,0.0,0.8,1.4,97.1,87.7,1.0,1.5,91.5,16.2,733,24.4,4329,84.0,4.8,88100,3904,2.46,24174,52233,6.6,203,1620,-3.6,838,1127,0.0,0.0,0.0,0.0,0.0,19.9,0,257191,82642,8592,3246,0,494.51,19.6
17081,Jefferson County,IL,38534,38825,-0.7,38827,6.3,21.8,17.6,48.6,87.9,8.9,0.3,1.1,0.0,1.7,2.3,86.1,83.9,1.3,3.2,86.8,15.9,3407,19.6,16818,72.7,12.6,86300,15288,2.4,22620,42981,16.5,956,17619,3.6,2331,2846,3.0,0.0,0.0,0.0,0.0,18.6,0,0,567630,14157,67783,7,571.17,68.0
17083,Jersey County,IL,22571,22985,-1.8,22985,5.0,21.6,17.6,51.3,97.3,0.7,0.3,0.5,0.0,1.2,1.3,96.3,88.0,1.3,1.6,88.3,16.2,2436,29.0,10034,79.9,8.5,117900,8752,2.5,25467,53954,7.6,424,4645,-2.4,1307,2278,0.0,0.0,0.0,0.0,0.0,30.6,0,0,250326,11186,26668,25,369.27,62.2
17085,Jo Daviess County,IL,22254,22677,-1.9,22678,4.3,19.3,24.6,49.8,97.7,0.6,0.2,0.5,0.0,0.9,3.1,94.8,90.2,3.1,4.2,91.9,23.7,2271,21.5,13596,78.3,9.0,138000,9616,2.33,29675,50817,9.5,719,6736,-4.5,1991,2655,0.0,0.0,0.0,0.0,0.0,23.0,419517,120531,310735,14017,81271,28,601.09,37.7
17087,Johnson County,IL,12601,12582,0.2,12582,4.8,18.5,19.3,44.3,89.9,8.5,0.3,0.3,0.0,1.0,3.3,87.2,86.5,1.4,2.5,83.4,15.1,1352,26.3,5552,81.3,6.9,89800,4362,2.45,18763,40760,14.1,165,1289,-7.8,729,713,0.0,0.0,0.0,0.0,0.0,37.7,0,16727,65543,4788,6806,0,343.92,36.6
17089,Kane County,IL,527306,515302,2.3,515269,6.7,27.1,11.7,50.2,87.0,6.1,1.0,4.0,0.1,1.8,31.3,58.1,87.8,18.1,31.4,82.8,31.7,24660,29.3,184014,75.4,20.1,223100,170358,3.01,30082,69530,11.1,12318,180958,0.9,31570,38586,4.1,0.6,4.5,0.0,7.6,29.9,9879494,9589573,5688267,11482,680888,1283,520.06,990.8
17091,Kankakee County,IL,111375,113449,-1.8,113449,6.0,24.1,14.9,50.9,81.2,15.5,0.4,1.1,0.0,1.8,9.9,72.3,87.5,4.7,8.3,86.4,17.1,8404,23.4,45154,68.9,18.4,145900,41245,2.62,23779,50102,16.4,2369,37103,0.8,6232,8399,0.0,0.0,0.0,0.0,0.0,28.1,3418939,0,1258509,11264,0,127,676.56,167.7
17093,Kendall County,IL,121350,114735,5.8,114736,7.3,29.8,9.0,50.6,87.6,6.7,0.5,3.3,0.0,1.9,16.9,71.9,88.9,9.3,17.3,92.5,34.2,5821,33.3,41183,83.6,9.0,210800,38075,3.05,31276,81765,4.8,2008,21251,0.0,7348,8311,3.1,0.0,0.0,0.0,9.3,32.8,685730,1299755,1064021,10957,99906,283,320.34,358.2
17095,Knox County,IL,52069,52919,-1.6,52919,5.0,20.0,19.6,49.7,88.3,8.0,0.4,0.9,0.0,2.4,5.6,83.7,88.4,2.2,4.9,85.9,17.0,4757,19.2,23894,68.4,17.5,81100,21481,2.25,22093,40667,16.7,1079,15413,-0.5,2337,3333,0.0,0.0,0.0,0.0,0.0,32.0,0,0,681371,13120,68325,27,716.4,73.9
17097,Lake County,IL,705186,703409,0.3,703462,5.9,25.4,12.2,50.1,82.3,7.5,0.9,7.2,0.1,2.0,21.0,63.3,87.4,18.1,27.8,88.9,41.9,35286,29.7,261366,75.9,19.3,254800,241072,2.84,38018,77469,9.0,19636,324805,2.0,52367,68418,3.8,0.4,5.8,0.0,5.3,28.6,16381499,26053269,20336251,28949,1299296,1341,443.67,1585.6
17099,LaSalle County,IL,111241,113922,-2.4,113924,5.4,22.1,17.6,49.8,95.2,2.3,0.3,0.9,0.0,1.2,8.9,86.9,88.6,3.3,6.4,88.4,15.9,9116,22.9,49869,75.8,13.5,125200,44257,2.5,25709,52640,12.2,2715,37250,-5.1,5827,8452,0.0,0.0,3.3,0.0,0.0,27.1,2244000,1208180,1739926,15466,158601,147,1135.12,100.4
17101,Lawrence County,IL,16519,16903,-2.3,16833,5.1,18.8,17.0,44.0,88.1,10.1,0.3,0.4,0.0,1.0,3.7,85.0,80.9,2.6,7.8,76.1,8.4,1239,19.1,6944,78.1,8.2,65900,4872,2.26,14147,40145,13.3,278,3416,4.5,809,1242,0.0,0.0,0.0,0.0,0.0,0.0,0,82733,81715,4923,0,42,372.18,45.2
17103,Lee County,IL,34735,36031,-3.6,36031,5.1,20.3,17.5,47.2,92.1,5.3,0.3,0.9,0.0,1.3,5.8,87.0,87.4,2.3,5.1,86.4,16.0,2900,22.2,15038,73.9,15.9,112100,13504,2.45,25409,50060,10.7,712,10140,-0.5,1935,2448,0.0,0.0,0.0,0.0,0.0,26.3,1098190,0,366468,10426,34957,21,724.9,49.7
17105,Livingston County,IL,37903,38950,-2.7,38950,5.6,21.6,17.0,49.6,92.2,5.5,0.3,0.7,0.0,1.3,4.5,88.2,86.4,1.5,3.8,86.1,14.5,2815,21.5,15829,73.9,14.1,110200,14446,2.37,24952,54614,10.3,879,11604,-1.2,1969,2551,0.0,0.0,2.5,0.0,0.0,26.8,1261471,0,396450,10438,38283,22,1044.29,37.3
17107,Logan County,IL,29746,30305,-1.8,30305,4.7,19.0,17.1,49.4,89.3,8.1,0.3,0.8,0.0,1.4,3.4,86.6,77.6,1.8,4.7,85.8,16.2,2276,20.9,12033,69.0,16.3,97200,10963,2.13,21445,47133,13.8,601,7477,-1.0,1436,1823,0.0,0.0,0.0,0.0,0.0,23.8,631562,0,275457,9219,30369,13,618.06,49.0
17109,McDonough County,IL,31880,32612,-2.2,32612,4.8,16.6,14.9,50.5,90.3,5.4,0.3,2.2,0.0,1.8,2.7,88.1,70.6,3.4,5.9,91.7,33.3,2407,15.5,14390,61.0,25.9,86400,12620,2.18,20042,36031,23.1,680,9442,0.1,1570,2554,0.0,0.0,0.0,0.0,0.0,0.0,248754,0,338109,10221,52785,8,589.41,55.3
17111,McHenry County,IL,307283,308826,-0.5,308760,5.5,25.0,12.1,50.1,93.8,1.4,0.5,2.8,0.1,1.4,12.4,82.2,91.3,9.4,14.3,92.1,32.4,17482,33.7,117051,82.3,11.5,220500,108852,2.82,32341,76145,7.7,7693,84168,-2.4,21914,28523,0.7,0.3,3.3,0.0,3.0,29.9,5291243,2391154,3578581,11372,365565,558,603.17,511.9
17113,McLean County,IL,174061,169572,2.6,169572,6.1,22.1,11.4,51.3,84.4,7.7,0.3,5.3,0.0,2.2,4.8,80.3,80.0,6.0,7.5,94.4,42.8,10227,17.9,71417,67.3,29.2,157200,64016,2.54,30460,62089,14.2,3730,77572,0.7,9321,12693,5.4,0.0,3.9,0.0,1.4,29.8,2578827,5309346,2231369,13607,336104,246,1183.38,143.3
17115,Macon County,IL,108350,110768,-2.2,110768,6.2,22.4,17.9,52.2,78.9,17.1,0.3,1.2,0.0,2.6,2.1,77.2,84.0,2.1,3.4,88.1,22.3,9711,18.2,50353,69.2,17.4,93300,45142,2.36,26232,46559,17.6,2456,46406,-2.2,5900,7840,0.0,0.0,2.3,0.0,0.7,32.5,9590836,0,1450614,13342,170857,53,580.69,190.8
17117,Macoupin County,IL,46453,47765,-2.7,47765,5.1,21.5,18.7,50.6,97.2,1.1,0.3,0.4,0.0,1.0,1.0,96.3,87.8,0.8,2.3,89.1,15.9,4417,27.7,21539,76.7,9.1,93900,19254,2.41,24658,49590,12.4,913,8536,-5.4,2553,3653,0.0,0.0,0.0,0.0,0.0,37.4,180436,350368,326048,6760,26082,47,862.91,55.4
17119,Madison County,IL,266560,269328,-1.0,269282,5.9,22.2,15.7,51.1,88.5,8.3,0.3,0.9,0.1,1.9,3.1,85.7,86.8,2.4,3.3,90.9,24.4,23227,24.3,118186,72.5,16.3,124600,107238,2.45,27407,53633,14.0,5856,83255,-0.5,14059,18588,3.1,0.0,0.0,0.0,2.8,30.9,18978164,1643600,3104222,11622,382660,525,715.58,376.3
17121,Marion County,IL,38571,39437,-2.2,39437,6.3,23.0,18.4,51.1,93.3,4.1,0.3,0.6,0.0,1.6,1.8,91.8,85.8,0.9,2.5,86.7,13.9,3473,21.6,18118,75.0,10.7,70300,15893,2.41,21887,41010,18.1,924,10863,-1.5,2139,3236,0.0,0.0,0.0,0.0,0.0,0.0,689705,0,345728,8734,36765,0,572.36,68.9
17123,Marshall County,IL,12014,12640,-5.0,12640,4.9,19.9,21.8,50.7,97.5,0.5,0.3,0.8,0.0,0.9,3.3,94.6,90.7,2.0,3.4,90.8,17.0,1118,25.5,5896,82.0,7.3,100600,5021,2.42,25975,51504,11.0,280,2752,-2.5,628,1057,0.0,0.0,0.0,0.0,0.0,0.0,0,0,78465,6085,9228,1,386.79,32.7
17125,Mason County,IL,13898,14666,-5.2,14666,4.8,21.1,19.8,50.4,97.6,0.5,0.3,0.4,0.0,1.2,1.1,96.6,85.5,1.1,1.8,85.4,14.2,1209,25.9,7028,77.4,7.2,82100,6310,2.27,23199,42260,16.3,295,2377,-3.9,727,651,0.0,0.0,0.0,0.0,0.0,30.3,0,192326,98760,6563,10399,1,539.24,27.2
17127,Massac County,IL,14905,15429,-3.4,15429,5.8,21.9,20.3,52.4,91.3,5.8,0.4,0.4,0.0,2.1,2.6,89.0,91.9,0.6,1.9,83.4,16.7,1263,20.5,7076,75.6,9.2,80200,6053,2.48,22047,43615,16.3,229,3279,-9.2,809,1395,0.0,0.0,0.0,0.0,0.0,23.7,0,0,75936,5025,0,2,237.22,65.0
17129,Menard County,IL,12570,12705,-1.1,12705,5.3,22.4,18.1,51.3,97.0,1.2,0.3,0.3,0.0,1.2,1.4,95.8,90.0,0.4,1.6,92.5,22.1,1135,27.0,5658,80.8,10.3,119100,5071,2.47,28330,58190,9.8,216,1248,-3.7,806,1128,0.0,0.0,0.0,0.0,0.0,0.0,0,128740,68939,5507,6909,24,314.44,40.4
17131,Mercer County,IL,15945,16434,-3.0,16434,4.9,21.8,20.5,50.6,98.1,0.6,0.1,0.3,0.0,0.8,2.1,96.2,90.7,1.0,2.1,90.5,14.7,1471,27.8,7367,78.7,7.7,98100,6716,2.4,26620,53136,10.1,280,2441,2.3,930,1344,0.0,0.0,0.0,0.0,0.0,33.1,0,0,85284,5191,5605,6,561.2,29.3
17133,Monroe County,IL,33722,32957,2.3,32957,5.2,22.8,16.0,50.3,98.0,0.4,0.2,0.5,0.0,0.8,1.6,96.6,87.8,0.8,3.2,92.8,25.9,2703,29.7,13764,81.1,12.1,193900,12506,2.63,31758,68482,5.4,788,8083,3.6,2116,3221,0.0,0.0,0.0,0.0,0.0,28.1,0,0,405724,12507,35946,118,385.01,85.6
17135,Montgomery County,IL,29359,30104,-2.5,30104,5.1,20.5,18.4,47.7,95.2,3.4,0.2,0.4,0.0,0.8,1.7,93.6,83.5,1.3,2.7,85.1,12.1,2871,23.0,13054,75.3,9.9,79500,11192,2.19,19917,41952,14.1,707,7262,-1.2,1558,2543,0.0,0.0,0.0,0.0,0.0,31.2,305556,254264,401515,13479,36376,24,703.69,42.8
17137,Morgan County,IL,34929,35551,-1.7,35547,5.2,20.1,18.3,49.4,91.0,6.4,0.3,0.5,0.0,1.7,2.3,89.1,81.0,1.8,3.0,88.1,20.7,2997,18.8,15411,69.9,16.9,91000,13926,2.32,24337,46809,14.4,843,12331,-2.5,1971,2795,0.0,0.0,0.0,0.0,0.0,25.3,0,425549,403082,11399,44423,2,568.79,62.5
17139,Moultrie County,IL,14837,14846,-0.1,14846,6.1,24.4,19.0,51.0,98.2,0.5,0.2,0.3,0.0,0.8,1.3,97.1,92.3,1.4,9.6,85.0,14.1,1037,22.1,6349,78.7,8.2,95400,5676,2.54,23786,46622,12.8,320,4928,12.9,1018,1186,0.0,0.0,0.0,0.0,0.0,0.0,541212,95187,118718,8275,0,40,335.94,44.2
17141,Ogle County,IL,52085,53497,-2.6,53497,5.2,23.1,17.2,50.3,96.7,1.1,0.4,0.6,0.1,1.2,9.6,87.7,90.4,4.9,7.2,88.9,19.9,4112,24.0,22545,76.1,12.9,149500,20745,2.53,26635,54541,11.3,1056,12693,-2.4,3326,4622,0.0,0.0,0.0,0.0,0.0,0.0,1137608,0,454312,8257,43365,38,758.57,70.5
17143,Peoria County,IL,187319,186494,0.4,186494,7.0,23.8,15.0,51.6,74.9,18.1,0.4,3.7,0.0,2.9,4.6,71.2,83.6,5.0,7.4,89.9,28.9,12756,19.4,83555,65.5,23.2,123200,75892,2.39,28438,50712,17.2,4567,108908,-1.8,9452,13447,0.0,0.0,2.8,0.0,1.2,29.7,4951288,1609825,2425913,13250,343149,174,619.21,301.2
17145,Perry County,IL,21672,22350,-3.0,22350,4.9,19.4,17.3,45.6,88.6,8.8,0.4,0.5,0.1,1.7,3.1,86.1,85.9,1.8,3.0,84.5,14.3,1880,28.1,9465,76.7,11.9,78000,7982,2.51,19716,42078,18.4,424,4380,0.8,1053,1445,0.0,0.0,0.0,0.0,0.0,19.8,369043,42904,168280,7452,15379,50,441.76,50.6
17147,Piatt County,IL,16431,16727,-1.8,16729,5.2,22.2,18.1,50.3,97.6,0.6,0.2,0.5,0.0,1.1,1.1,96.7,90.2,1.3,1.8,92.7,26.5,1324,23.7,7344,82.4,7.9,120800,6546,2.52,31190,63027,6.2,335,2133,-7.4,1090,1407,0.0,0.0,0.0,0.0,0.0,0.0,0,263944,118815,7220,9981,20,439.2,38.1
17149,Pike County,IL,16022,16430,-2.5,16430,5.6,22.0,19.8,49.9,96.7,1.9,0.2,0.3,0.0,0.9,1.2,95.6,85.1,0.6,2.4,86.1,13.5,1146,24.8,7936,77.9,6.7,74700,6708,2.35,21344,39845,16.6,375,2995,-4.3,1075,1444,0.0,0.0,0.0,0.0,0.0,0.0,0,265271,136472,8233,13705,20,831.38,19.8
17151,Pope County,IL,4276,4470,-4.3,4470,3.4,15.6,21.3,47.1,91.2,6.7,0.7,0.3,0.0,1.0,1.9,89.6,88.8,2.5,3.4,87.6,13.5,435,30.4,2468,81.1,5.5,98900,1736,2.33,20448,38371,17.0,53,245,8.9,206,0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,9223,2245,1219,0,368.77,12.1
17153,Pulaski County,IL,5815,6161,-5.6,6161,5.1,21.9,20.2,51.9,64.7,32.3,0.5,0.2,0.1,2.2,1.9,63.6,89.0,1.7,2.5,80.2,12.0,552,28.4,3129,78.1,11.6,55300,2419,2.45,19867,33717,18.8,98,652,-9.4,323,264,0.0,0.0,0.0,0.0,0.0,0.0,0,0,31840,4941,0,3,199.19,30.9
17155,Putnam County,IL,5814,6006,-3.2,6006,4.7,20.2,19.8,49.1,97.6,0.9,0.3,0.3,0.0,1.0,4.7,93.1,90.5,1.5,4.5,88.8,14.1,615,21.9,3114,79.6,7.9,126500,2471,2.39,27074,54196,14.2,131,1089,-8.5,365,493,0.0,0.0,0.0,0.0,0.0,16.8,0,0,21663,3619,2266,13,160.16,37.5
17157,Randolph County,IL,32869,33476,-1.8,33476,5.0,19.5,17.2,45.0,88.1,10.1,0.2,0.4,0.1,1.0,2.8,85.8,90.1,1.1,2.6,82.2,11.8,3052,23.0,13814,76.0,9.2,92100,11889,2.5,21976,47427,12.4,677,10556,0.4,1471,2250,0.0,0.0,0.0,0.0,0.0,33.6,532245,166393,332305,10123,26776,21,575.5,58.2
17159,Richland County,IL,16061,16233,-1.1,16233,5.8,22.0,20.0,50.6,97.2,0.6,0.2,0.8,0.0,1.1,1.5,95.9,88.9,1.6,3.7,90.6,20.4,1469,17.5,7478,74.9,10.2,78100,6620,2.41,23621,44070,14.2,461,5183,-1.1,1149,1481,0.0,0.0,0.0,0.0,0.0,21.6,94581,250335,161489,10346,14233,4,359.99,45.1
17161,Rock Island County,IL,146063,147546,-1.0,147546,6.1,22.1,17.6,50.8,84.7,9.8,0.6,2.3,0.1,2.6,12.4,73.7,85.9,7.4,11.5,87.4,21.8,12099,18.9,65775,70.2,22.0,113800,60456,2.37,26455,48702,13.3,3263,63252,2.5,6652,9360,5.1,0.0,0.0,0.0,2.9,29.4,3714268,1437502,1711386,11636,224219,241,427.64,345.0
17163,St. Clair County,IL,265729,270063,-1.6,270056,6.4,24.1,13.8,51.8,65.7,30.2,0.3,1.4,0.1,2.2,3.8,62.5,87.8,2.7,4.8,89.5,25.3,29633,23.6,118323,67.2,20.1,123700,102885,2.57,26234,50578,17.6,5325,77072,-1.5,14000,17080,13.5,0.2,2.7,0.0,1.5,33.3,2324457,1661620,3087185,11818,615352,762,657.76,410.6
17165,Saline County,IL,24612,24913,-1.2,24913,6.0,21.7,19.2,50.7,92.9,4.1,0.4,0.6,0.1,1.9,1.7,91.7,87.2,1.3,2.3,84.9,14.6,2136,22.9,11608,72.2,9.2,70500,10174,2.38,21596,37800,19.1,583,7199,-5.5,1528,1937,0.0,0.0,0.0,0.0,0.0,25.7,92440,0,271186,10427,28274,0,379.82,65.6
17167,Sangamon County,IL,198997,197465,0.8,197465,6.0,23.0,15.5,52.0,83.2,12.4,0.2,1.9,0.0,2.3,2.2,81.4,84.4,3.5,5.2,92.0,32.5,15997,18.9,90538,70.0,19.1,126200,82807,2.35,29974,55449,14.2,5074,81996,-1.3,12256,17195,6.0,0.0,0.0,0.0,0.0,28.1,0,1841290,2862623,14768,366849,431,868.3,227.4
17169,Schuyler County,IL,7330,7544,-2.8,7544,4.9,20.3,19.7,47.3,95.4,3.5,0.2,0.4,0.0,0.6,1.8,93.9,89.1,1.1,1.8,88.9,18.6,841,25.2,3435,81.0,5.2,76600,3056,2.31,23656,48138,15.9,155,1201,-2.0,486,508,0.0,0.0,0.0,0.0,0.0,0.0,0,0,53090,7647,0,0,437.27,17.3
17171,Scott County,IL,5204,5355,-2.8,5355,5.1,22.3,18.6,51.9,98.1,0.5,0.2,0.2,0.0,1.0,1.2,97.0,89.6,0.6,1.1,89.8,13.7,427,24.3,2441,75.9,9.1,82900,2113,2.48,24471,49669,12.3,84,577,-8.0,309,449,0.0,0.0,0.0,0.0,0.0,0.0,0,0,34894,6686,1714,0,250.91,21.3
17173,Shelby County,IL,22048,22363,-1.4,22363,5.3,21.4,20.6,50.6,98.4,0.4,0.2,0.3,0.0,0.7,1.0,97.4,90.5,0.6,1.5,89.8,14.4,2239,23.3,10467,81.2,5.5,86100,8991,2.45,23069,47188,11.8,444,4035,-1.3,1299,1699,0.0,0.0,0.0,0.0,0.0,0.0,0,157299,140900,6477,14065,32,758.52,29.5
17175,Stark County,IL,5813,5994,-3.0,5994,4.9,20.4,24.4,50.7,97.5,0.6,0.2,0.4,0.0,1.2,1.1,96.5,91.9,0.7,1.6,87.9,16.7,484,26.8,2663,82.0,6.8,88300,2416,2.41,26843,54203,11.1,117,998,4.7,357,0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,57253,9404,1352,3,288.08,20.8
17177,Stephenson County,IL,46435,47711,-2.7,47711,5.6,21.9,20.5,51.6,86.8,9.6,0.2,0.7,0.0,2.6,3.5,83.8,86.7,1.9,3.6,89.5,17.9,3913,20.4,21926,71.8,18.5,101800,19408,2.4,23350,43472,15.9,1087,15212,-0.9,2958,3662,2.3,0.0,0.0,0.0,1.1,0.0,905092,0,480551,10285,44798,8,564.52,84.5
17179,Tazewell County,IL,135707,135394,0.2,135394,6.0,23.1,17.0,50.6,96.2,1.3,0.3,0.9,0.0,1.3,2.2,94.2,88.6,1.7,2.9,91.7,23.6,10732,20.5,58058,76.0,14.0,132000,54428,2.45,28037,56067,9.1,2799,44972,-1.0,6333,9910,0.9,0.0,0.0,0.0,0.0,27.9,5145678,1225115,1758134,13424,353944,637,648.97,208.6
17181,Union County,IL,17447,17808,-2.0,17808,5.3,21.0,19.9,50.1,96.3,1.1,0.7,0.4,0.0,1.5,5.1,91.8,89.0,2.8,6.0,83.9,20.1,1591,24.5,7914,75.7,9.1,87500,6852,2.47,21719,41848,19.5,342,3382,0.9,1076,1445,0.0,0.0,0.0,0.0,4.9,0.0,176076,20504,145142,8009,10029,13,413.46,43.1
17183,Vermilion County,IL,79728,81625,-2.3,81625,6.7,24.0,17.4,50.3,83.1,13.5,0.4,0.8,0.0,2.2,4.7,79.3,87.5,2.1,4.7,85.7,13.9,7337,20.8,36008,70.6,14.3,75300,31575,2.51,21225,41400,19.6,1460,23526,-2.3,4382,5845,0.0,0.0,0.0,0.0,0.0,28.4,2576404,0,757887,9367,84980,6,898.37,90.9
17185,Wabash County,IL,11549,11947,-3.3,11947,5.8,22.0,18.9,50.6,96.7,0.9,0.2,0.8,0.0,1.3,1.5,95.5,91.7,2.7,2.5,89.3,16.8,918,21.5,5529,78.7,9.0,80900,4785,2.45,24096,47365,12.7,267,2824,-3.2,837,1104,0.0,0.0,0.0,0.0,0.0,13.2,0,89502,109214,8966,10150,1,223.25,53.5
17187,Warren County,IL,17874,17710,0.9,17707,6.0,21.6,18.4,51.2,93.7,2.4,0.5,1.8,0.1,1.5,9.4,85.1,89.1,5.5,10.0,87.8,20.9,1299,18.6,7673,73.4,11.9,81500,6972,2.37,21832,43536,15.8,353,5693,1.1,874,1350,0.0,0.0,0.0,0.0,0.0,29.2,0,219765,133722,7602,14251,6,542.41,32.6
17189,Washington County,IL,14337,14716,-2.6,14716,4.5,20.7,18.4,49.9,97.7,0.8,0.1,0.4,0.1,0.9,1.6,96.2,89.3,1.0,3.1,89.7,20.5,1446,24.0,6570,80.6,5.3,107900,5882,2.44,26325,52832,10.2,385,4671,-14.7,1009,0,0.0,0.0,0.0,0.0,0.0,0.0,409194,270495,197317,13400,12325,20,562.57,26.2
17191,Wayne County,IL,16543,16760,-1.3,16760,5.7,22.5,19.8,50.7,97.6,0.6,0.2,0.7,0.0,0.9,1.3,96.4,90.8,1.0,2.3,86.4,11.8,1454,21.7,7886,79.1,6.1,75700,7063,2.34,22526,43605,14.7,378,3472,-1.5,1259,1653,0.0,0.0,0.0,0.0,0.0,23.8,0,126570,146263,8814,0,1,713.81,23.5
17193,White County,IL,14374,14665,-2.0,14665,6.5,21.7,21.8,51.4,97.9,0.6,0.3,0.3,0.0,0.8,1.3,96.9,87.4,1.4,1.5,85.4,14.3,1374,24.9,7125,78.6,8.8,72200,6240,2.28,25375,42914,15.6,381,3410,-0.2,1187,1249,0.0,0.0,0.0,0.0,0.0,0.0,0,400258,123142,8392,11408,1,494.77,29.6
17195,Whiteside County,IL,56876,58498,-2.8,58498,5.4,22.4,18.9,50.7,95.6,1.7,0.4,0.5,0.0,1.6,11.8,84.9,91.5,2.8,6.0,87.4,16.2,5000,19.7,25773,75.6,13.9,99400,23370,2.44,24525,47667,12.0,1244,17674,-1.5,2802,4063,0.0,0.0,0.0,0.0,0.0,23.7,1022531,926845,570627,9676,60604,19,684.25,85.5
17197,Will County,IL,685419,677560,1.2,677560,6.1,26.7,11.2,50.4,80.6,11.8,0.4,5.4,0.1,1.8,16.6,65.3,91.3,11.7,19.9,90.5,32.3,34224,32.8,239824,82.9,12.3,219400,222652,3.02,30377,76147,8.0,14384,204956,4.5,43952,53097,6.9,0.0,5.2,0.0,5.3,29.4,13628202,11061791,6841452,10211,1404940,1185,836.91,809.6
17199,Williamson County,IL,67008,66362,1.0,66357,5.9,21.9,17.6,50.3,92.7,4.3,0.4,1.0,0.0,1.6,2.4,90.7,86.7,1.8,2.9,88.9,22.5,6348,20.9,30801,72.0,17.0,93700,26819,2.41,23605,43125,15.6,1595,22792,2.1,4286,5881,0.0,0.0,0.0,0.0,1.0,27.7,681388,0,987511,15370,118603,115,420.15,157.9
17201,Winnebago County,IL,288542,295264,-2.3,295266,6.2,23.8,15.6,51.2,81.4,12.9,0.5,2.6,0.0,2.6,12.0,70.8,86.8,7.6,12.4,86.2,21.2,21278,21.7,125536,66.9,25.8,123400,113449,2.55,24495,47072,17.5,6481,116977,-0.6,18184,23683,7.0,0.3,2.7,0.0,2.4,28.9,7913361,2624724,3851993,12943,452187,139,513.36,575.2
17203,Woodford County,IL,39187,38664,1.4,38664,6.1,24.6,16.3,50.4,97.3,0.7,0.3,0.7,0.0,1.1,1.8,95.7,88.6,1.1,2.3,93.0,27.6,2681,23.1,15367,81.6,8.6,158600,14362,2.63,30926,66639,8.8,759,8969,-5.9,2370,2365,0.0,0.0,0.0,0.0,0.0,0.0,963346,0,278287,7329,26023,75,527.8,73.3
18000,Indiana,,6596855,6484192,1.7,6483802,6.4,24.0,14.3,50.7,86.1,9.6,0.4,2.0,0.1,1.9,6.6,80.3,84.9,4.7,8.2,87.2,23.2,455105,23.2,2829532,70.0,18.5,122800,2481793,2.55,24635,48248,15.4,143515,2555979,1.7,390233,482847,4.6,0.5,1.8,0.0,1.8,26.8,221877814,67634947,78745589,12408,11669759,17816,35826.11,181.0
18001,Adams County,IN,34791,34387,1.2,34387,9.4,31.3,14.4,50.5,98.2,0.4,0.3,0.3,0.0,0.7,4.4,94.1,90.1,0.7,16.8,84.3,14.7,1778,21.5,13098,78.9,14.4,116100,12127,2.8,20160,46695,18.1,713,11483,2.9,3001,3173,0.0,0.0,0.0,0.0,0.0,18.6,2127689,0,369895,10928,27069,79,339.03,101.4
18003,Allen County,IN,365918,355327,3.0,355329,7.2,26.3,13.1,51.2,80.9,12.1,0.5,3.5,0.1,2.8,7.2,74.9,86.6,6.2,9.7,89.0,26.3,23407,20.3,154477,69.8,20.5,112700,138212,2.55,25279,49370,15.3,9044,161708,1.8,22540,27292,0.0,0.3,1.9,0.0,0.0,27.1,19741940,0,4774175,13667,550450,1115,657.31,540.6
18005,Bartholomew County,IN,80217,76786,4.5,76794,6.6,24.3,14.9,50.1,90.2,2.3,0.5,5.4,0.1,1.5,6.4,84.6,83.9,7.6,9.6,89.1,26.5,5460,19.1,33548,70.9,14.6,134900,30041,2.56,27359,54165,12.2,1827,43638,-2.8,4130,5856,0.8,0.0,2.7,0.0,0.0,28.8,4843890,747332,1075239,14399,139684,254,406.91,188.7
18007,Benton County,IN,8700,8854,-1.7,8854,6.1,25.3,16.2,50.3,97.6,1.0,0.2,0.3,0.0,1.0,5.4,92.6,84.2,1.6,4.7,88.9,16.0,638,24.9,3921,74.4,8.4,84300,3444,2.53,23049,48711,11.1,188,1443,2.9,625,0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,50891,5852,2561,2,406.42,21.8
18009,Blackford County,IN,12401,12766,-2.9,12766,6.1,22.3,19.8,50.4,97.3,0.6,0.2,0.3,0.0,1.4,1.6,95.9,83.8,0.9,1.6,86.0,9.8,1135,24.4,5996,75.0,10.8,70400,5190,2.41,20322,39225,16.0,232,2718,-2.5,621,891,0.0,0.0,0.0,0.0,0.0,0.0,397083,158855,97872,7389,8038,3,165.08,77.3
18011,Boone County,IN,61915,56638,9.3,56640,6.6,27.0,12.6,50.5,94.4,1.5,0.3,2.3,0.0,1.4,2.6,92.1,89.4,3.4,4.4,93.5,41.0,3333,24.1,25212,76.8,13.7,179000,21908,2.62,37482,67255,7.5,1414,20400,15.5,4861,5662,0.0,0.0,0.0,0.0,0.0,23.2,0,386393,484483,8970,54490,526,422.91,133.9
18013,Brown County,IN,14962,15242,-1.8,15242,4.1,19.5,21.1,50.2,97.3,0.6,0.4,0.4,0.0,1.3,1.6,95.9,87.6,0.9,3.4,87.1,21.1,1704,35.9,8506,83.0,2.7,157400,5889,2.54,25833,51568,14.6,349,1982,0.4,1423,1952,0.0,0.0,0.0,0.0,0.0,27.4,0,4299,61518,4180,19753,48,311.98,48.9
18015,Carroll County,IN,19923,20155,-1.2,20155,5.3,23.2,17.7,50.3,97.7,0.6,0.3,0.2,0.0,1.1,4.1,94.3,88.4,2.5,4.6,87.7,16.0,1694,25.7,9434,78.8,7.3,103900,7995,2.5,24531,50542,10.7,380,4464,4.6,1234,1448,0.0,0.0,0.0,0.0,0.0,0.0,0,0,102111,5153,18411,24,372.22,54.1
18017,Cass County,IN,38438,38966,-1.4,38966,6.5,24.1,16.2,50.0,93.7,2.0,1.0,1.7,0.2,1.4,13.8,81.8,86.8,8.3,13.4,83.1,13.7,3138,20.1,16337,75.9,11.4,81900,14827,2.54,21700,41940,16.5,742,12379,-1.8,1760,2706,0.0,0.0,0.0,0.0,0.0,16.6,1302002,438966,340870,8714,33801,12,412.16,94.5
18019,Clark County,IN,114262,110232,3.7,110232,6.3,23.0,14.3,50.9,88.9,7.4,0.4,1.0,0.1,2.2,5.2,84.3,88.4,3.7,5.2,86.2,18.9,8935,24.1,48986,71.6,17.9,127400,42502,2.58,24312,50496,12.2,2405,44691,4.8,6448,8622,0.0,0.5,0.0,0.0,1.0,26.1,2114873,1062039,1729530,16414,197472,531,372.86,295.6
18021,Clay County,IN,26562,26887,-1.2,26890,6.1,23.1,16.6,50.8,97.7,0.6,0.3,0.4,0.0,1.0,1.3,96.5,87.9,0.5,1.5,86.6,14.0,1990,27.0,11694,76.2,7.1,91300,10230,2.59,21474,46430,15.8,469,5735,-1.7,1461,2069,0.0,0.0,0.0,0.0,0.0,24.4,0,0,312395,11737,18422,14,357.54,75.2
18023,Clinton County,IN,32776,33224,-1.3,33224,6.9,26.3,15.8,50.5,97.8,0.6,0.4,0.3,0.0,0.9,14.9,83.4,84.7,6.5,12.5,84.7,13.0,2051,22.1,13248,72.1,12.7,97300,11745,2.76,21554,48953,13.9,577,9225,1.5,1634,2280,0.0,0.0,0.0,0.0,1.4,26.2,2283489,0,223595,6579,25067,24,405.07,82.0
18025,Crawford County,IN,10655,10713,-0.5,10713,5.3,22.4,17.2,49.3,97.7,0.5,0.4,0.2,0.1,1.1,1.4,96.5,91.1,0.7,1.0,80.8,12.1,814,33.2,5455,82.0,3.7,83300,4237,2.49,20504,39700,19.6,125,1346,4.4,683,1204,0.0,0.0,0.0,0.0,0.0,0.0,0,0,40720,3752,0,0,305.64,35.1
18027,Daviess County,IN,32729,31654,3.4,31648,8.2,29.2,14.5,50.2,96.9,1.0,0.4,0.7,0.1,0.9,4.6,92.7,90.6,2.2,14.7,77.5,12.4,1942,21.0,12481,75.8,7.8,105500,11160,2.81,21416,47165,12.9,865,10143,-0.8,2132,2346,0.0,0.0,0.0,0.0,0.0,17.6,643418,153709,381537,12667,25851,4,429.49,73.7
18029,Dearborn County,IN,49506,50047,-1.1,50047,5.5,23.6,15.3,50.2,97.4,0.7,0.2,0.5,0.1,1.1,1.2,96.4,88.6,1.1,2.2,89.0,17.6,3727,29.3,20238,77.0,11.5,160400,18556,2.66,27058,56946,9.1,908,13630,-2.5,2967,3964,0.0,0.0,0.0,0.0,0.0,18.7,786076,0,509651,10256,0,65,305.03,164.1
18031,Decatur County,IN,26524,25740,3.0,25740,6.0,24.8,15.4,50.6,97.0,0.5,0.2,1.3,0.0,0.9,1.8,95.5,85.0,1.9,2.2,87.1,13.7,1959,23.2,11231,70.6,12.0,112000,9792,2.61,22046,48047,14.1,624,11818,7.4,1591,2125,0.0,0.0,0.0,0.0,0.0,25.9,1869737,0,315023,12582,29861,50,372.57,69.1
18033,DeKalb County,IN,42383,42223,0.4,42223,6.0,24.7,14.8,50.2,97.5,0.5,0.3,0.6,0.0,1.0,2.7,95.1,88.1,1.1,2.8,87.9,16.3,3081,21.0,17624,78.7,14.6,107800,16032,2.61,22827,47247,12.4,985,18643,4.1,2496,2751,0.0,0.0,0.0,0.0,0.0,21.7,3818858,0,408899,9774,47475,94,362.82,116.4
18035,Delaware County,IN,117074,117671,-0.5,117671,5.1,18.9,16.0,51.9,89.2,7.1,0.3,1.2,0.1,2.1,2.1,87.4,73.1,2.0,2.9,86.9,22.5,8635,20.1,52512,63.8,21.0,89600,46325,2.36,20854,37474,22.3,2321,37892,2.9,5564,7848,2.0,0.0,0.0,0.0,0.0,27.1,1280555,424060,1516815,13156,160815,98,392.12,300.1
18037,Dubois County,IN,42345,41889,1.1,41889,6.1,24.1,15.9,50.6,97.9,0.5,0.3,0.5,0.1,0.7,6.7,91.8,91.0,3.6,7.9,86.9,18.9,3188,19.8,17595,78.2,12.3,133200,15890,2.59,25589,54780,8.3,1295,25617,1.4,2740,3595,0.0,0.0,0.0,0.0,0.0,26.1,0,530645,763441,18509,58781,124,427.27,98.0
18039,Elkhart County,IN,201971,197561,2.2,197559,7.5,27.9,13.3,50.5,89.7,6.2,0.6,1.2,0.1,2.3,15.1,75.9,85.5,8.5,18.1,80.5,18.2,11289,19.4,77933,71.6,18.6,121700,70130,2.78,21109,45693,16.7,4853,112276,3.0,12323,16077,2.5,0.0,1.9,0.0,2.0,22.6,15779841,3231392,2416879,12182,272416,270,463.17,426.5
18041,Fayette County,IN,23468,24302,-3.4,24277,5.3,22.6,18.4,50.5,96.9,1.6,0.2,0.3,0.0,1.0,0.9,96.0,83.9,0.7,2.3,77.3,8.9,2146,25.0,10816,72.0,14.9,81700,9536,2.48,18757,37391,23.0,435,5696,-1.0,1158,1494,0.0,0.0,0.0,0.0,0.0,25.8,486488,85936,208881,8604,21624,11,215.01,112.9
18043,Floyd County,IN,76179,74580,2.1,74578,5.8,23.2,14.5,51.4,91.1,5.5,0.3,1.1,0.0,2.0,2.9,88.7,87.7,2.8,4.2,88.0,22.6,6110,22.7,32300,71.8,17.3,150400,29087,2.54,27185,53961,13.3,1777,26086,-3.4,5001,0,0.0,0.0,0.0,0.0,0.0,0.0,1558350,1420463,787397,10813,0,142,147.94,504.1
18045,Fountain County,IN,16658,17238,-3.4,17240,5.8,22.6,19.2,50.2,97.7,0.4,0.4,0.3,0.1,1.1,2.6,95.4,84.9,1.3,2.8,85.5,11.9,1261,25.7,7801,76.5,6.7,88800,6925,2.44,23063,45884,11.9,322,4348,-4.3,941,1276,0.0,0.0,0.0,0.0,0.0,0.0,498444,124764,142465,8336,12013,2,395.66,43.6
18047,Franklin County,IN,22934,23087,-0.7,23087,5.7,24.7,15.6,49.8,98.1,0.4,0.2,0.6,0.0,0.7,1.1,97.1,91.0,0.8,1.9,85.4,18.1,1464,31.4,9563,79.4,7.1,150100,8551,2.67,24085,49516,13.5,409,5187,-1.5,1608,1848,0.0,0.0,0.0,0.0,0.0,16.7,0,18626,171270,7407,28470,35,384.43,60.1
18049,Fulton County,IN,20500,20836,-1.6,20836,6.1,23.9,17.6,50.0,96.5,0.8,0.8,0.6,0.0,1.2,5.1,92.2,85.3,2.9,7.5,84.1,12.7,1634,22.7,9653,76.5,7.3,95600,8221,2.49,21226,40168,15.5,473,5391,-1.8,1392,2171,0.0,0.0,0.0,0.0,0.0,26.0,524323,62128,200781,9931,0,15,368.39,56.6
18051,Gibson County,IN,33759,33503,0.8,33503,6.0,23.2,16.5,50.1,95.4,2.1,0.3,0.4,0.0,1.8,1.6,94.1,87.7,1.0,2.0,90.1,16.1,2474,21.2,14729,77.8,9.9,104400,13094,2.5,24258,49329,11.5,705,17450,4.5,1698,2360,0.0,0.0,0.0,0.0,0.0,24.2,0,0,442605,13501,38501,121,487.49,68.7
18053,Grant County,IN,68569,70063,-2.1,70061,5.5,20.8,17.7,52.2,89.1,7.3,0.4,0.8,0.0,2.4,4.0,85.6,85.6,1.5,2.9,85.7,16.8,5887,18.9,30288,69.7,14.6,80100,26981,2.39,20516,39747,18.6,1327,29170,1.6,3248,4581,2.5,1.0,1.2,0.0,0.0,0.0,1670123,0,765826,11121,88055,68,414.07,169.2
18055,Greene County,IN,32726,33164,-1.3,33165,5.4,22.6,18.0,50.1,97.9,0.3,0.4,0.4,0.0,1.0,1.3,96.8,87.7,0.7,1.2,84.6,12.1,3065,29.4,15051,78.4,6.8,88800,12894,2.53,22235,43980,14.0,579,4991,-4.1,1830,2325,0.0,0.0,0.0,0.0,0.0,0.0,0,0,226084,6924,19511,0,542.5,61.1
18057,Hamilton County,IN,302623,274569,10.2,274569,6.8,28.5,10.4,51.2,88.2,4.1,0.2,5.6,0.1,1.8,3.8,84.9,86.9,7.2,9.3,96.3,55.1,15778,26.5,116286,79.2,15.9,215600,103234,2.73,39521,82468,5.1,8081,114197,3.6,24778,28209,1.8,0.0,3.1,0.0,1.4,27.6,1569925,2779456,3295421,12582,437156,3684,394.27,696.4
18059,Hancock County,IN,71978,70045,2.8,70002,5.5,24.1,15.1,50.9,95.2,2.3,0.3,0.9,0.0,1.3,2.1,93.4,88.4,1.5,2.2,92.6,26.3,5381,26.3,28881,80.2,12.8,155400,26071,2.68,28111,62981,7.6,1333,19756,2.2,4837,6449,0.0,0.6,0.0,0.0,0.0,27.5,1256037,519932,568518,8584,66306,395,306.02,228.8
18061,Harrison County,IN,39299,39364,-0.2,39364,5.4,22.6,16.0,50.1,97.5,0.6,0.3,0.4,0.0,1.1,1.8,96.0,91.3,1.1,2.0,87.6,14.9,3337,30.2,16665,81.2,6.8,122100,14499,2.67,23244,50510,13.2,651,8805,2.0,2575,3701,2.1,0.0,1.0,0.0,1.3,27.1,410685,98576,400931,10862,0,84,484.52,81.2
18063,Hendricks County,IN,156056,145412,7.3,145448,6.0,25.9,12.3,50.2,89.4,6.0,0.3,2.5,0.1,1.7,3.5,86.4,87.9,4.2,5.7,93.5,32.2,10552,25.9,58326,82.4,11.2,159800,52946,2.75,29830,68297,5.0,2954,51362,2.4,10069,11771,2.4,0.0,3.8,0.0,0.9,25.0,2819422,2520749,2088672,15496,227647,1145,406.91,357.4
18065,Henry County,IN,48995,49462,-0.9,49462,4.9,20.9,18.0,48.3,95.4,2.7,0.2,0.4,0.0,1.4,1.6,93.9,84.2,0.9,2.0,85.8,14.9,4313,27.3,21139,73.3,14.8,94200,18367,2.5,20309,40679,17.0,831,10567,0.9,2424,2846,0.0,0.0,1.1,0.0,0.0,29.3,1026569,180241,455036,9706,36185,18,391.88,126.2
18067,Howard County,IN,82982,82752,0.3,82752,6.1,23.0,18.0,51.7,88.6,7.3,0.4,1.1,0.0,2.6,3.1,86.0,83.8,2.0,4.2,88.8,20.0,7482,20.4,38688,70.5,17.3,98500,34544,2.36,24071,43590,16.7,1753,30882,3.8,4233,5748,0.0,0.0,0.0,0.0,0.0,28.8,2923185,319544,1194698,14264,150481,140,293.06,282.4
18069,Huntington County,IN,36706,37124,-1.1,37124,5.8,22.4,15.9,50.8,97.2,0.6,0.5,0.6,0.0,1.1,2.1,95.4,85.5,1.5,2.3,88.5,16.9,2703,20.8,15879,77.4,10.4,97100,14138,2.52,22601,46148,12.0,872,12923,3.0,1912,2795,0.0,0.0,0.0,0.0,0.0,19.1,1478637,0,328017,8651,44268,53,382.65,97.0
18071,Jackson County,IN,43705,42380,3.1,42376,6.9,24.2,15.3,50.2,95.9,1.0,0.3,1.3,0.2,1.2,6.4,90.1,85.7,5.6,7.1,86.2,14.5,2815,20.3,18524,73.0,12.5,117100,16713,2.52,22568,46501,13.0,1000,17926,-0.6,2167,3274,0.0,0.0,0.0,0.0,0.0,19.9,2585502,0,529531,12572,58429,178,509.31,83.2
18073,Jasper County,IN,33475,33478,0.0,33478,5.9,24.5,15.8,50.2,97.3,0.9,0.3,0.4,0.1,1.0,5.9,91.7,88.4,2.3,5.3,87.2,14.9,2515,26.6,13349,79.6,9.9,146200,11924,2.71,24297,57500,7.7,744,8589,-1.2,1789,2557,0.0,0.0,0.0,0.0,0.0,0.0,601064,163377,405489,12531,33940,51,559.63,59.8
18075,Jay County,IN,21179,21253,-0.3,21253,7.0,26.1,16.5,50.7,98.1,0.4,0.2,0.5,0.0,0.9,3.0,95.3,89.7,1.1,4.6,84.1,10.0,1392,20.6,9194,76.0,9.3,79300,8179,2.57,19236,40235,14.7,401,6162,-5.0,1330,1163,0.0,0.0,0.0,0.0,0.0,26.6,835131,413695,139539,6543,0,21,383.91,55.4
18077,Jefferson County,IN,32494,32428,0.2,32428,5.4,21.3,16.3,51.8,95.6,2.0,0.3,0.8,0.0,1.4,2.5,93.4,85.5,2.0,3.4,83.9,17.8,2668,22.0,14320,72.6,13.8,111500,12668,2.38,21524,43795,13.6,678,11028,1.7,1755,2651,0.0,0.0,0.0,0.0,0.0,0.0,1476978,0,382708,11801,43158,29,360.63,89.9
18079,Jennings County,IN,28000,28525,-1.8,28525,6.2,24.2,14.8,49.8,97.5,0.9,0.2,0.3,0.0,1.1,2.3,95.3,84.7,1.2,2.8,85.3,9.6,2203,25.5,12063,75.9,6.3,89700,10632,2.63,20109,44128,16.7,404,6280,-1.2,1454,2546,0.0,0.0,1.1,0.0,0.0,0.0,377163,0,223798,7956,16079,47,376.58,75.7
18081,Johnson County,IN,147538,139867,5.5,139654,6.5,25.4,13.8,50.7,93.7,1.9,0.3,2.5,0.1,1.5,3.4,90.8,85.9,3.8,5.7,91.0,26.8,9895,26.1,58738,72.6,17.4,144300,52239,2.66,28575,61231,10.6,3046,43122,1.5,9184,11957,0.0,0.0,3.1,0.0,0.8,26.6,1609901,682332,2072896,15169,208425,668,320.43,435.8
18083,Knox County,IN,37938,38440,-1.3,38440,6.2,21.2,16.7,49.3,94.5,3.1,0.3,0.8,0.0,1.2,1.8,92.9,83.8,1.3,2.1,86.2,14.1,2712,19.6,16974,67.4,16.2,84100,14738,2.4,21047,42119,14.0,917,13149,-3.9,1875,2411,0.0,0.0,1.9,0.0,0.0,23.7,774300,321523,471778,12463,56801,34,516.03,74.5
18085,Kosciusko County,IN,78564,77356,1.6,77358,6.5,24.7,15.0,50.1,96.1,1.1,0.4,1.2,0.1,1.2,8.0,88.6,87.6,4.1,10.6,85.8,20.3,4941,20.9,37557,77.7,10.9,132200,29705,2.56,24881,50859,11.9,1914,34469,2.2,4896,6674,0.0,0.0,0.0,0.0,0.0,23.4,5705256,0,794883,10423,92258,261,531.38,145.6
18087,LaGrange County,IN,38436,37130,3.5,37128,9.6,33.6,12.6,49.6,98.2,0.5,0.3,0.4,0.0,0.7,3.9,94.5,91.3,1.9,40.0,62.1,10.3,1778,22.5,14378,78.9,6.7,160200,11833,3.13,19356,47617,16.5,802,11359,7.5,3429,3596,0.0,0.0,0.0,0.0,0.0,21.1,1602328,104569,276916,7498,33861,121,379.62,97.8
18089,Lake County,IN,490228,496031,-1.2,496005,6.3,24.4,14.6,51.6,70.9,25.3,0.5,1.5,0.1,1.8,18.1,54.7,87.5,6.7,14.5,87.0,19.8,32821,27.6,210362,69.6,21.7,136600,182080,2.68,23918,49035,17.8,9843,167680,2.0,27379,34165,18.6,0.5,2.5,0.0,6.7,31.1,21914467,3348813,7102425,14455,1069166,908,498.96,994.1
18091,LaPorte County,IN,111444,111467,0.0,111467,5.9,22.0,15.8,48.2,85.5,11.4,0.4,0.6,0.0,2.1,6.1,80.1,85.2,3.0,5.3,86.5,17.3,8961,22.3,48769,72.7,17.2,122800,42690,2.41,22852,47538,16.5,2299,35042,1.5,5747,7314,0.0,0.0,1.0,0.0,1.3,0.0,2364020,856204,1363592,12355,389663,125,598.3,186.3
18093,Lawrence County,IN,45704,46129,-0.9,46134,5.6,22.3,18.2,50.5,97.3,0.5,0.4,0.6,0.0,1.1,1.6,95.9,89.6,1.4,2.7,84.1,13.7,4192,26.0,20923,78.3,9.2,98200,18592,2.44,22169,42627,15.2,838,11748,0.7,2470,3615,0.0,0.0,1.1,0.0,1.5,19.4,716454,0,481647,10481,42970,42,449.17,102.7
18095,Madison County,IN,130069,131636,-1.2,131636,5.7,22.1,16.9,50.1,88.7,8.5,0.4,0.6,0.1,1.8,3.7,85.6,84.0,2.0,3.2,87.0,16.7,10329,25.7,58789,69.9,15.4,92800,50637,2.46,21527,43120,17.3,2233,35209,1.9,6466,8275,0.0,0.4,0.8,0.0,0.6,24.2,1046853,574203,1234877,9433,155130,92,451.92,291.3
18097,Marion County,IN,934243,903389,3.4,903393,7.6,24.9,11.3,51.8,66.3,27.8,0.5,2.6,0.1,2.7,9.8,57.9,82.0,8.5,12.4,84.5,27.4,57036,22.7,419350,55.8,31.0,118000,360072,2.49,24124,42334,20.4,22741,508703,1.5,58749,69266,11.9,0.6,2.4,0.0,2.2,28.0,24333886,15780255,12951290,14748,2248380,1195,396.3,2279.6
18099,Marshall County,IN,47107,47051,0.1,47051,6.3,25.5,16.1,50.5,96.9,0.9,0.3,0.7,0.1,1.1,9.4,88.2,87.8,4.2,10.8,84.4,16.6,3264,21.3,19961,77.9,11.4,124600,17581,2.63,21933,45709,15.2,1038,16068,2.6,2921,3975,0.0,0.0,0.0,0.0,0.0,26.0,1239448,0,550984,11839,50494,83,443.63,106.1
18101,Martin County,IN,10203,10378,-1.7,10334,6.1,23.2,17.1,49.4,98.2,0.2,0.3,0.3,0.0,0.9,0.8,97.5,85.5,0.8,2.4,82.9,10.8,925,25.4,4742,80.5,6.1,88500,4146,2.45,22817,44740,14.6,182,2206,-18.9,619,814,0.0,0.0,0.0,0.0,0.0,24.7,0,51087,81212,8044,0,8,335.74,30.8
18103,Miami County,IN,35954,36903,-2.6,36903,5.1,21.6,15.9,46.3,92.0,4.8,0.9,0.4,0.0,1.9,2.8,89.5,85.7,1.2,4.7,83.3,10.6,3454,24.0,15314,75.3,8.4,84100,13210,2.64,20475,42023,17.2,561,6767,-3.5,1675,2311,0.0,0.0,0.0,0.0,0.0,31.8,711346,0,235379,6423,25837,10,373.84,98.7
18105,Monroe County,IN,143339,137959,3.9,137974,4.5,16.1,11.4,50.2,87.3,3.5,0.3,6.4,0.1,2.4,3.3,84.5,67.7,7.9,9.9,91.9,43.4,7448,18.2,60112,54.0,34.6,156300,53914,2.32,23032,40052,25.1,2901,49288,0.6,8760,10571,1.8,0.0,2.3,0.0,1.5,25.2,1799286,683154,1530793,11968,287796,521,394.51,349.7
18107,Montgomery County,IN,38146,38126,0.1,38124,6.3,23.3,16.6,49.6,96.6,1.0,0.4,0.6,0.0,1.3,4.5,92.5,86.5,2.6,4.6,87.8,17.8,2793,21.1,16540,72.2,13.3,108300,14590,2.53,22679,46797,16.8,857,12985,1.4,2103,2644,0.0,0.0,1.1,0.0,0.0,24.1,2768351,368625,429214,11343,48487,45,504.61,75.6
18109,Morgan County,IN,69693,68939,1.1,68894,5.6,23.6,15.1,50.4,97.5,0.5,0.3,0.6,0.0,1.1,1.4,96.3,84.0,1.4,2.2,87.4,16.1,5557,29.2,27951,76.5,7.6,141200,25621,2.67,25781,55354,11.5,1163,12330,-0.2,4485,5569,0.0,0.0,1.5,0.0,0.0,0.0,0,185002,586949,8378,59095,129,403.97,170.5
18111,Newton County,IN,14156,14244,-0.6,14244,5.1,22.2,17.7,49.0,97.4,0.7,0.4,0.3,0.1,1.1,5.9,92.2,87.6,2.0,3.0,85.4,8.5,986,30.5,6028,76.6,5.3,112000,5374,2.6,25594,50262,11.2,257,2497,-2.5,767,761,0.0,0.0,0.0,0.0,0.0,0.0,197474,121634,96674,6901,7984,22,401.76,35.5
18113,Noble County,IN,47618,47536,0.2,47536,6.4,25.7,14.6,50.1,97.3,0.8,0.4,0.5,0.0,1.0,10.1,87.7,83.8,4.9,12.0,83.3,13.2,3335,23.5,20190,76.1,12.3,112700,17722,2.64,21889,47117,14.2,867,15213,0.4,2504,3211,0.0,0.0,0.0,0.0,1.9,26.1,2454544,0,357295,7491,35884,87,410.84,115.7
18115,Ohio County,IN,6035,6128,-1.5,6128,4.7,20.0,19.6,50.2,98.1,0.5,0.2,0.4,0.0,0.8,1.2,97.1,88.8,0.2,1.5,85.4,13.1,553,32.4,2793,74.4,14.3,137900,2422,2.49,25443,50377,8.3,89,1194,-4.5,348,357,0.0,0.0,0.0,0.0,0.0,0.0,0,0,23731,4068,0,20,86.14,71.1
18117,Orange County,IN,19626,19840,-1.1,19840,5.5,23.4,17.5,50.2,96.9,1.1,0.4,0.4,0.0,1.2,1.3,95.7,87.8,0.4,1.6,80.4,12.6,1416,26.7,9095,74.6,6.1,88100,7688,2.54,18576,38826,17.9,390,7570,0.2,1167,1461,0.0,0.0,0.0,0.0,0.0,0.0,201749,52770,153183,7812,0,1,398.39,49.8
18119,Owen County,IN,20969,21583,-2.8,21575,4.7,21.8,17.3,49.7,97.5,0.5,0.4,0.5,0.0,1.1,1.3,96.4,87.9,1.1,2.5,83.2,11.0,2049,32.5,9982,78.7,4.4,101900,8552,2.47,21318,43950,14.0,290,2904,-9.2,1415,1797,0.0,0.0,0.0,0.0,0.0,18.6,0,0,106333,4750,10444,18,385.29,56.0
18121,Parke County,IN,17233,17354,-0.7,17339,6.0,21.6,17.1,53.1,95.9,2.6,0.4,0.2,0.0,0.8,1.3,94.7,87.7,1.2,6.3,82.8,13.7,1398,25.9,8063,83.8,3.3,87600,5893,2.66,20534,43870,13.3,255,2053,3.0,1046,0,0.0,0.0,0.0,0.0,0.0,0.0,137612,24541,84463,4932,0,26,444.66,39.0
18123,Perry County,IN,19454,19338,0.6,19338,5.5,20.9,16.6,46.2,95.5,2.9,0.3,0.5,0.0,0.8,1.3,94.3,86.7,0.4,2.2,84.0,10.9,1406,22.6,8522,79.9,9.0,97300,7411,2.4,20934,47596,10.9,367,4954,0.2,876,1275,0.0,0.0,0.0,0.0,0.0,27.7,600192,12925,153361,8097,0,48,381.73,50.7
18125,Pike County,IN,12624,12844,-1.7,12845,5.4,21.9,19.0,49.6,98.1,0.6,0.3,0.2,0.0,0.8,1.3,96.9,91.2,0.4,0.9,85.8,11.2,1066,25.2,5752,83.1,5.6,85800,5149,2.44,22245,40680,12.7,196,2411,-2.2,581,684,0.0,0.0,0.0,0.0,0.0,0.0,0,64738,55934,4449,5609,20,334.24,38.4
18127,Porter County,IN,167076,164347,1.7,164343,5.5,22.8,14.4,50.9,92.8,3.8,0.4,1.5,0.0,1.6,9.5,84.1,87.6,3.7,6.6,91.4,25.4,11934,26.8,67059,77.4,16.9,165700,61502,2.63,28669,62794,10.4,3448,51077,1.4,9095,12407,1.4,0.3,1.5,0.0,3.1,29.2,7318767,1463085,1956275,12188,211334,448,418.15,393.0
18129,Posey County,IN,25540,25910,-1.4,25910,5.8,22.8,16.2,50.3,97.3,1.0,0.2,0.4,0.0,1.1,1.1,96.3,90.8,1.1,2.8,92.1,20.5,1914,23.2,11331,85.0,6.4,127900,10050,2.53,29187,58750,9.9,488,8892,-3.5,1402,1953,0.0,0.0,0.0,0.0,0.0,25.1,0,346707,268383,10225,17130,55,409.57,63.3
18131,Pulaski County,IN,12967,13402,-3.2,13402,5.4,22.8,17.8,49.3,97.2,0.9,0.4,0.2,0.0,1.1,2.9,94.5,91.0,0.8,2.0,85.3,13.1,884,23.9,6043,80.0,6.4,94900,5058,2.58,21641,44764,14.0,323,3519,-0.3,800,929,0.0,0.0,0.0,0.0,0.0,22.6,0,262911,112778,8175,0,13,433.65,30.9
18133,Putnam County,IN,37618,37952,-0.9,37963,4.7,19.6,15.2,47.0,93.3,4.2,0.4,1.0,0.0,1.1,1.9,91.8,80.6,1.8,3.6,85.9,16.2,2769,28.5,14828,79.1,7.8,125800,12414,2.6,21520,50821,9.7,683,10907,5.3,1961,2731,0.0,0.0,0.0,0.0,0.0,0.0,675972,43013,310811,8367,45904,65,480.53,79.0
18135,Randolph County,IN,25384,26171,-3.0,26171,5.9,23.6,18.6,50.8,97.4,0.7,0.4,0.3,0.0,1.2,3.2,94.5,86.8,0.9,2.7,85.2,12.4,1971,22.5,11651,73.4,8.1,76200,10429,2.46,21592,40904,17.4,491,6033,2.3,1431,2182,0.0,0.0,0.0,0.0,0.0,27.7,577384,113276,273327,10588,0,6,452.38,57.9
18137,Ripley County,IN,28497,28818,-1.1,28818,6.0,24.3,16.9,50.7,97.6,0.4,0.3,0.7,0.0,1.0,1.7,96.2,91.2,1.4,2.5,86.3,15.9,2351,26.3,12108,76.2,11.4,132000,10761,2.62,22059,47537,9.4,642,10321,-3.0,1748,2715,0.0,0.0,0.0,0.0,0.0,0.0,757369,44459,255352,9347,18675,86,446.43,64.6
18139,Rush County,IN,16892,17392,-2.9,17392,5.6,23.3,17.4,50.6,97.4,1.0,0.2,0.4,0.0,1.0,1.4,96.2,85.1,0.5,2.2,87.1,15.1,1398,26.3,7469,71.9,11.4,104700,6874,2.47,23396,47401,15.4,357,3635,-2.9,1095,1605,0.0,0.0,0.0,0.0,0.0,24.5,523330,162347,113360,6468,0,10,408.12,42.6
18141,St. Joseph County,IN,267618,266929,0.3,266931,6.5,24.0,14.3,51.5,81.1,13.2,0.5,2.3,0.1,2.7,8.2,74.2,83.2,5.7,9.6,87.8,26.5,18001,20.2,115587,69.5,20.0,115100,101947,2.49,23509,44582,17.7,5782,112678,0.3,15389,20374,6.5,0.0,1.7,0.1,1.9,26.7,8011023,0,3683417,13831,439711,428,457.85,583.0
18143,Scott County,IN,23712,24181,-1.9,24181,5.9,23.0,15.8,50.8,97.7,0.4,0.3,0.6,0.1,0.9,1.8,96.3,85.4,1.2,2.0,78.7,11.5,1620,26.7,10443,73.2,9.6,101400,8914,2.66,20481,42898,19.0,399,5761,7.9,1156,1981,0.0,0.0,0.0,0.0,0.0,10.8,978675,0,241227,10156,30721,26,190.4,127.0
18145,Shelby County,IN,44579,44393,0.4,44436,5.8,23.1,15.6,50.6,96.4,1.2,0.3,0.8,0.2,1.1,3.9,93.0,86.3,2.4,4.4,85.6,14.8,3476,24.0,19091,71.1,14.2,125000,17171,2.55,24459,51440,12.9,907,14624,-2.6,2774,3706,0.0,0.0,0.0,0.0,0.0,23.5,2354852,291027,487648,11094,46357,59,411.15,108.1
18147,Spencer County,IN,20801,20952,-0.7,20952,5.5,22.6,18.0,49.3,97.6,0.8,0.3,0.4,0.0,0.9,2.8,95.2,90.5,2.0,3.8,86.5,15.5,1873,26.8,8931,82.1,6.7,113300,7984,2.58,23641,52991,12.6,395,5190,2.0,1203,1276,0.0,0.0,0.0,0.0,0.0,21.9,0,181067,166048,8215,16299,36,396.74,52.8
18149,Starke County,IN,23074,23363,-1.2,23363,5.8,23.2,16.8,50.4,97.6,0.4,0.5,0.3,0.0,1.2,3.4,94.5,87.8,1.8,3.2,82.2,12.3,1825,28.9,10999,81.1,5.7,96900,8964,2.58,19773,40126,16.9,304,2836,-3.0,1159,1470,0.0,0.0,0.0,0.0,0.0,29.7,243732,61452,156674,6730,0,36,309.13,75.6
18151,Steuben County,IN,34308,34183,0.4,34185,4.9,21.1,17.2,49.3,97.2,0.9,0.3,0.6,0.0,1.0,3.2,94.3,84.9,2.0,3.7,88.7,19.4,2665,22.5,19529,77.3,9.4,123000,13514,2.44,23975,48080,11.5,971,13140,4.5,2162,3523,0.0,0.0,0.9,0.0,0.8,18.2,1147951,97221,575134,17170,57024,98,308.94,110.7
18153,Sullivan County,IN,21050,21475,-2.0,21475,5.1,20.3,16.3,45.7,93.5,4.7,0.3,0.3,0.0,1.2,1.8,92.0,87.6,1.0,1.8,85.3,13.2,1449,23.8,8860,72.2,8.2,77600,7764,2.46,19821,43510,17.9,338,4619,1.2,913,1281,0.0,0.0,0.0,0.0,0.0,28.5,0,201464,146923,6894,14252,2,447.14,48.0
18155,Switzerland County,IN,10452,10613,-1.5,10613,6.1,24.8,16.3,48.9,97.7,0.8,0.3,0.2,0.0,0.9,1.7,96.2,88.2,1.8,5.0,82.5,9.9,882,32.4,5083,76.3,6.3,110800,4099,2.54,20019,44143,22.2,131,1814,-2.4,555,620,0.0,0.0,0.0,0.0,0.0,0.0,0,3944,19919,2074,0,54,220.63,48.1
18157,Tippecanoe County,IN,183074,172780,6.0,172780,6.2,20.8,10.3,48.9,85.4,4.9,0.4,7.2,0.1,2.0,8.0,78.1,72.0,10.4,14.4,90.7,35.7,9517,17.6,73901,54.2,32.5,130900,66667,2.43,23691,44246,21.6,3369,64443,1.3,8694,9383,0.0,0.8,4.4,0.0,3.4,30.5,0,413344,2079578,12769,315997,1055,499.81,345.7
18159,Tipton County,IN,15415,15936,-3.3,15936,4.3,21.4,19.3,50.1,98.0,0.5,0.3,0.5,0.0,0.8,2.6,95.6,90.1,1.8,3.2,88.7,16.4,1525,24.4,6969,77.2,8.3,108300,6622,2.36,25093,52686,9.4,305,3162,3.2,1019,1240,0.0,0.0,0.0,0.0,0.0,23.5,362143,141637,136038,8473,9837,7,260.54,61.2
18161,Union County,IN,7246,7516,-3.6,7516,4.5,22.8,16.9,50.7,97.3,0.7,0.3,0.3,0.0,1.4,1.4,95.9,88.6,0.8,1.8,85.4,18.4,588,23.8,3225,76.1,9.1,103200,2943,2.49,20883,44161,12.7,111,884,7.3,542,0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,31015,4366,3006,3,161.22,46.6
18163,Vanderburgh County,IN,182006,179703,1.3,179703,6.4,22.0,15.2,51.6,86.5,9.4,0.3,1.3,0.1,2.5,2.5,84.4,84.2,2.5,4.0,89.2,22.6,13397,18.9,83400,63.6,26.2,112900,73963,2.34,24378,43540,15.9,4981,109426,1.3,9388,12530,2.9,0.0,1.5,0.0,1.2,25.7,6447599,2907819,3025844,17308,516819,322,233.48,769.7
18165,Vermillion County,IN,15693,16212,-3.2,16212,5.3,22.2,18.6,50.6,98.1,0.4,0.3,0.2,0.0,0.9,1.1,97.2,91.1,0.3,2.2,89.1,13.0,1544,24.4,7480,78.2,7.6,75100,6466,2.45,22875,42524,15.8,262,3360,-7.9,771,1119,0.0,0.0,3.6,0.0,0.0,22.7,0,0,184550,11296,16305,1,256.88,63.1
18167,Vigo County,IN,108175,107848,0.3,107848,5.9,20.7,14.5,49.3,88.2,7.2,0.4,2.0,0.0,2.2,2.6,85.9,84.4,3.3,5.6,86.6,21.2,7960,19.9,46443,63.9,21.2,91600,39597,2.49,21192,40692,20.0,2491,45346,-2.5,4768,7034,4.8,0.0,3.2,0.0,0.6,23.0,3565934,584135,1668183,15780,195501,321,403.31,267.4
18169,Wabash County,IN,32252,32888,-1.9,32888,5.2,21.6,19.4,51.4,96.8,0.8,0.7,0.5,0.0,1.2,2.4,94.6,85.7,1.6,3.4,86.1,17.0,2489,19.2,14098,76.2,12.1,95000,12703,2.41,21201,45286,15.1,756,10901,0.6,1702,2571,0.0,0.0,0.0,0.0,0.0,30.7,1045382,168937,325620,9889,30325,24,412.43,79.7
18171,Warren County,IN,8352,8508,-1.8,8508,5.7,22.5,18.7,50.3,98.3,0.3,0.2,0.5,0.1,0.6,1.4,97.0,88.4,1.1,1.6,82.5,16.0,673,26.7,3680,76.6,6.2,99500,3283,2.55,27390,52317,7.1,119,1349,-8.8,518,680,0.0,0.0,0.0,0.0,0.0,28.7,93073,118293,24040,2812,8420,19,364.68,23.3
18173,Warrick County,IN,61149,59689,2.4,59689,5.7,24.6,16.1,50.6,94.7,1.6,0.3,2.0,0.0,1.4,1.7,93.2,90.5,2.5,3.6,92.4,27.2,4677,23.1,24936,83.3,10.6,146300,22454,2.65,29927,62351,9.0,1109,13443,0.3,3646,5024,0.0,0.0,0.0,0.0,0.0,30.3,0,412340,331226,5794,36854,304,384.82,155.1
18175,Washington County,IN,27878,28262,-1.4,28262,5.7,23.6,15.4,50.1,98.1,0.4,0.2,0.3,0.0,0.9,1.4,96.9,88.6,0.7,2.3,80.1,11.9,2041,29.6,12192,80.3,5.3,101500,10631,2.61,21370,41986,15.1,435,4305,-1.3,1718,2057,0.0,0.0,0.0,0.0,0.0,30.5,248328,16287,190711,6844,0,32,513.73,55.0
18177,Wayne County,IN,67671,69003,-1.9,68917,6.2,22.5,17.9,51.5,91.0,5.0,0.4,0.8,0.1,2.7,2.7,88.7,81.8,2.0,5.0,83.4,17.4,5746,19.6,31144,66.8,17.1,94100,28185,2.34,21114,38350,21.8,1527,25456,1.0,3583,4610,2.2,0.0,0.9,0.0,0.0,17.4,2483052,325246,1004328,14748,107213,85,401.74,171.5
18179,Wells County,IN,27862,27636,0.8,27636,6.5,24.1,17.0,50.7,97.6,0.6,0.3,0.5,0.0,1.0,2.5,95.3,87.0,1.2,3.2,90.7,15.7,1840,21.4,11707,78.3,12.4,112500,10904,2.49,24269,48136,10.7,619,9553,-2.4,1585,2311,0.0,0.0,0.0,0.0,0.0,0.0,699092,0,221300,7969,19285,36,368.09,75.1
18181,White County,IN,24453,24643,-0.8,24643,6.2,23.4,18.8,50.3,97.0,0.8,0.6,0.4,0.1,1.1,7.7,90.2,86.9,3.5,6.0,89.2,15.4,2075,23.3,12966,76.6,6.4,109800,9541,2.54,23666,51444,10.8,601,6867,-4.5,1420,2582,0.0,0.0,0.0,0.0,0.0,21.3,715246,235098,283389,11911,24469,31,505.13,48.8
18183,Whitley County,IN,33403,33292,0.3,33292,5.8,23.4,16.0,50.1,97.4,0.5,0.4,0.4,0.1,1.2,2.0,95.7,90.2,1.0,2.2,90.4,16.7,2628,24.0,14453,81.7,9.2,126300,13094,2.51,24613,51914,8.2,672,10185,-2.4,2141,2734,0.0,0.0,0.0,0.0,0.0,0.0,2107506,0,343476,10547,28272,94,335.57,99.2
19000,Iowa,,3107126,3046869,2.0,3046355,6.3,23.4,15.8,50.3,92.1,3.4,0.5,2.2,0.1,1.7,5.6,87.1,84.8,4.5,7.2,91.0,25.7,226175,18.8,1362124,72.2,18.4,124300,1226547,2.42,27027,51843,12.4,80581,1305216,0.9,203763,259931,0.8,0.2,1.1,0.1,0.9,25.5,97592051,41068338,39234649,13172,4737719,10256,55857.13,54.5
19001,Adair County,IA,7454,7682,-3.0,7682,4.8,22.1,22.1,50.9,98.2,0.4,0.2,0.5,0.0,0.8,1.7,96.8,89.9,1.1,1.1,90.7,16.3,790,22.7,3674,77.1,9.3,90900,3295,2.26,25564,47892,9.5,187,1663,-0.2,626,745,0.0,0.0,0.0,0.0,0.0,0.0,0,29361,49644,6546,4128,8,569.27,13.5
19003,Adams County,IA,3875,4029,-3.8,4029,6.5,21.4,22.0,49.9,97.8,0.4,0.4,0.6,0.0,0.7,1.1,96.9,87.6,0.6,1.2,90.4,13.7,353,21.2,2010,78.5,4.7,85200,1745,2.2,23707,45871,11.3,118,884,1.0,321,443,0.0,0.0,0.0,0.0,0.0,0.0,0,14217,32586,7950,0,1,423.44,9.5
19005,Allamakee County,IA,14038,14328,-2.0,14330,6.1,22.5,21.3,48.8,96.4,1.4,0.6,0.5,0.3,0.9,5.7,91.5,87.3,4.3,8.0,89.0,14.9,1282,23.6,7650,79.5,9.3,114400,5862,2.36,24926,48831,12.6,396,4517,7.0,1179,1648,0.0,0.0,0.0,0.0,0.0,22.8,0,154490,128662,8922,8456,41,639.08,22.4
19007,Appanoose County,IA,12661,12887,-1.8,12887,6.0,22.4,21.4,50.6,97.4,0.7,0.3,0.4,0.1,1.2,1.5,96.2,86.6,1.0,2.3,88.3,18.3,1045,19.0,6578,72.5,12.0,77600,5534,2.28,21599,39208,15.2,312,3437,4.3,919,1428,0.0,0.0,0.0,0.0,0.0,0.0,151576,23061,133534,10331,7996,6,497.29,25.9
19009,Audubon County,IA,5794,6119,-5.3,6119,4.6,20.2,24.3,51.6,98.2,0.4,0.2,0.5,0.0,0.7,1.1,97.3,89.9,0.6,1.2,90.3,16.6,557,18.2,2997,80.4,7.4,71100,2684,2.18,30919,48313,9.5,181,1176,-0.3,494,456,0.0,0.0,0.0,0.0,0.0,0.0,0,47778,37302,6083,0,5,442.96,13.8
19011,Benton County,IA,25680,26076,-1.5,26076,5.7,23.8,16.9,50.3,97.9,0.6,0.2,0.3,0.0,1.0,1.3,96.7,92.6,1.1,2.0,91.9,18.8,2160,23.7,11079,80.4,8.4,131500,10079,2.55,26624,56669,8.4,566,4366,-1.8,1828,2420,0.0,0.0,0.0,0.0,0.0,31.2,176791,213218,176434,6645,9616,28,716.27,36.4
19013,Black Hawk County,IA,132897,131090,1.4,131090,6.1,21.5,14.8,51.1,86.2,9.0,0.3,2.0,0.2,2.2,4.2,82.7,82.9,4.8,7.7,89.5,25.3,9095,15.8,56890,67.8,24.1,123600,52276,2.4,24273,45747,17.0,3203,68753,2.4,7189,9739,4.1,0.0,0.0,0.0,0.6,29.1,5880301,1278450,1929430,15224,194601,314,565.77,231.7
19015,Boone County,IA,26433,26306,0.5,26306,5.6,22.7,17.0,49.7,96.8,1.2,0.4,0.5,0.0,1.1,2.4,94.6,85.3,0.9,2.9,92.0,20.3,2277,21.1,11793,75.6,14.9,117300,10574,2.41,27149,51826,10.1,553,6824,2.0,1747,2180,0.0,0.0,0.0,0.0,0.0,0.0,161292,0,210610,8009,16172,44,571.57,46.0
19017,Bremer County,IA,24721,24276,1.8,24276,5.1,21.8,18.4,50.8,97.0,1.0,0.1,0.9,0.0,1.0,1.4,95.8,87.5,0.6,2.2,93.8,28.3,1914,19.2,10136,81.3,12.8,145300,9258,2.46,28727,61216,7.3,607,9369,6.7,1591,2419,0.0,0.0,0.0,0.0,0.0,30.5,699712,105620,268428,11358,16655,74,435.48,55.7
19019,Buchanan County,IA,21038,20958,0.4,20958,6.8,26.6,16.2,50.2,97.8,0.5,0.2,0.4,0.0,1.0,1.4,96.6,91.0,1.0,6.0,90.6,17.1,1511,20.9,8990,78.1,7.8,122200,8187,2.52,27038,55553,9.9,490,5218,1.1,1508,1874,0.0,0.0,0.0,0.0,0.0,18.0,640836,624511,214820,10242,11530,27,571.02,36.7
19021,Buena Vista County,IA,20578,20260,1.6,20260,7.3,25.3,14.6,49.4,85.9,2.9,0.6,8.4,0.9,1.2,24.8,62.6,82.7,18.6,29.5,78.7,20.0,1207,13.7,8299,68.0,17.9,97700,7615,2.53,22899,46951,12.8,556,9218,3.4,1260,1704,0.0,0.0,0.0,0.0,0.0,26.6,1578035,0,260846,13408,25523,8,574.92,35.2
19023,Butler County,IA,15006,14867,0.9,14867,6.1,23.6,21.0,50.5,98.1,0.3,0.1,0.4,0.0,0.9,1.1,97.1,91.1,0.6,2.0,90.9,15.0,1007,22.9,6731,79.6,7.8,100400,6189,2.37,25269,52026,9.8,333,2594,-7.5,1115,0,0.0,0.0,0.0,0.0,0.0,0.0,0,288359,79082,5407,0,21,580.13,25.6
19025,Calhoun County,IA,9866,10177,-3.1,9670,5.6,20.6,22.3,48.6,96.4,1.9,0.4,0.3,0.0,0.9,2.0,94.6,83.8,0.7,1.9,90.5,19.1,928,19.6,5088,79.0,9.9,72200,4356,2.15,25766,44484,13.4,284,2197,-2.7,732,846,0.0,0.0,0.0,0.0,0.0,0.0,0,200683,103509,10402,0,12,569.97,17.0
19027,Carroll County,IA,20562,20816,-1.2,20816,6.5,24.1,19.2,51.4,97.5,0.8,0.3,0.5,0.0,0.9,2.3,95.5,87.3,0.8,2.7,91.3,18.8,1447,14.1,9419,75.4,14.5,105700,8626,2.35,25430,48361,9.6,879,10604,-0.8,1856,2755,0.0,0.0,0.0,0.0,0.0,23.7,794027,1350539,298050,14338,20787,26,569.44,36.6
19029,Cass County,IA,13448,13956,-3.6,13956,5.7,22.6,21.5,50.7,97.6,0.5,0.5,0.3,0.4,0.8,2.4,95.7,88.5,1.0,2.5,92.8,19.0,1155,17.3,6564,71.8,16.0,88100,6081,2.21,25448,43481,11.4,478,4709,-2.1,1179,1682,0.0,0.0,0.0,0.0,0.0,0.0,0,151451,178171,12846,11638,12,564.27,24.7
19031,Cedar County,IA,18411,18497,-0.5,18499,5.1,22.9,18.4,50.5,97.4,0.5,0.2,0.7,0.0,1.1,1.8,95.9,89.3,1.3,2.9,92.1,19.5,1620,25.2,8116,78.8,9.0,132800,7665,2.37,26567,58088,8.0,465,4282,-2.4,1258,0,0.0,0.0,0.0,0.0,0.0,0.0,178789,221842,131334,7317,9509,29,579.44,31.9
19033,Cerro Gordo County,IA,43254,44151,-2.0,44151,5.6,20.5,19.7,51.0,95.7,1.4,0.3,1.1,0.0,1.5,4.3,91.6,87.6,2.1,3.8,92.0,21.0,3999,15.7,22238,71.6,16.8,110800,19967,2.14,27291,44795,13.2,1399,20910,-3.4,3031,3952,0.0,0.0,0.0,0.0,1.8,22.2,1357504,650482,887071,20200,83915,86,568.31,77.7
19035,Cherokee County,IA,11836,12072,-2.0,12072,6.0,21.0,22.4,50.4,97.0,0.9,0.3,0.6,0.2,1.0,3.2,94.2,86.9,0.9,3.2,91.6,19.6,1163,15.3,5791,74.9,12.8,80200,5354,2.17,26330,48977,9.7,354,4379,-3.2,812,796,0.0,0.0,0.0,0.0,0.0,0.0,279270,114673,139445,11935,8706,6,576.91,20.9
19037,Chickasaw County,IA,12264,12439,-1.4,12439,6.1,23.8,19.4,50.0,98.3,0.6,0.1,0.3,0.0,0.7,2.3,96.2,91.6,1.8,4.2,88.8,13.8,1116,21.3,5664,80.1,10.0,95900,5364,2.27,24139,43971,10.3,418,3942,0.8,954,1078,0.0,0.0,0.0,0.0,0.0,16.4,278276,210062,103931,8537,7433,5,504.38,24.7
19039,Clarke County,IA,9217,9286,-0.7,9286,6.5,24.3,17.6,49.8,96.4,0.9,0.7,0.7,0.1,1.3,12.1,85.2,88.2,5.5,8.8,87.3,14.3,695,21.9,4132,71.0,9.2,84900,3672,2.49,23472,43216,13.7,189,3154,-3.1,598,752,0.0,0.0,0.0,0.0,0.0,22.5,416569,6297,95388,10579,84923,1,431.17,21.5
19041,Clay County,IA,16515,16667,-0.9,16667,5.7,22.8,19.6,50.9,97.3,0.7,0.3,0.7,0.0,1.0,3.2,94.3,87.8,2.2,3.7,93.1,18.4,1360,15.2,8112,74.2,19.2,105400,7148,2.28,29060,49035,8.9,608,7313,-4.3,1305,2262,0.0,0.0,0.0,0.0,0.0,24.3,0,425115,298664,17960,23407,14,567.24,29.4
19043,Clayton County,IA,17692,18129,-2.4,18129,5.7,22.2,20.9,49.7,97.9,0.7,0.1,0.3,0.1,0.8,1.9,96.2,87.6,1.4,3.4,91.6,15.5,1575,21.4,9032,78.2,11.2,102400,7707,2.29,25074,47494,12.5,537,4851,-5.9,1382,1725,0.0,0.0,0.0,0.0,0.0,0.0,206396,564637,163572,9249,53722,28,778.54,23.3
19045,Clinton County,IA,48051,49116,-2.2,49116,6.1,22.7,18.3,50.9,94.0,3.2,0.3,0.6,0.0,1.8,2.9,91.5,87.7,1.5,2.3,90.0,17.7,4259,19.2,21792,74.4,16.8,110300,20008,2.4,25966,49559,14.0,1181,27036,1.2,2677,3491,0.0,0.0,0.9,0.0,0.0,0.0,3914945,190114,635654,12950,54058,102,694.92,70.7
19047,Crawford County,IA,17228,17096,0.8,17096,7.2,25.5,16.9,49.0,93.8,2.3,1.2,1.7,0.2,0.8,27.3,68.5,88.2,12.8,22.5,78.9,14.7,1161,15.1,6985,75.9,11.8,83100,6300,2.65,22748,46548,15.8,460,6534,2.5,924,1394,0.0,0.0,0.0,0.0,0.0,27.8,1266847,121956,162386,9840,12931,11,714.19,23.9
19049,Dallas County,IA,77400,66137,17.0,66135,8.2,28.6,11.2,51.0,92.7,1.8,0.4,3.6,0.1,1.4,6.3,87.0,86.9,6.6,8.6,94.4,43.6,3902,20.5,29884,77.4,17.5,184100,26262,2.63,35844,73847,6.4,1718,34419,1.1,5486,6613,0.6,0.0,2.2,0.0,1.1,19.9,574183,218271,905710,15813,110369,661,588.45,112.4
19051,Davis County,IA,8781,8753,0.3,8753,8.0,28.9,17.5,50.6,98.3,0.2,0.2,0.3,0.0,0.9,1.2,97.2,89.3,0.8,14.4,85.5,16.4,717,22.8,3578,80.2,6.4,99700,3115,2.76,22210,45040,21.2,170,1451,2.4,748,848,0.0,0.0,0.0,0.0,0.0,0.0,0,17902,71612,8351,3054,4,502.19,17.4
19053,Decatur County,IA,8263,8457,-2.3,8457,5.1,21.8,18.3,49.8,95.3,2.0,0.5,0.9,0.2,1.2,2.6,93.0,80.5,1.5,5.9,85.0,18.4,612,21.0,3847,70.1,14.1,77700,3106,2.43,18845,36326,19.5,130,1697,-3.2,655,869,0.0,0.0,0.0,0.0,0.0,0.0,0,76650,39590,4746,4323,2,531.88,15.9
19055,Delaware County,IA,17398,17764,-2.1,17764,5.7,23.8,18.1,50.0,98.4,0.4,0.1,0.3,0.0,0.7,1.1,97.4,89.8,0.8,2.3,91.0,15.5,1200,22.0,8026,78.8,8.1,125300,7129,2.44,26261,54076,8.4,496,5725,3.6,1312,1568,0.0,0.0,0.0,0.0,0.0,29.5,326438,302380,171404,9791,9038,5,577.76,30.7
19057,Des Moines County,IA,40255,40325,-0.2,40325,6.0,23.0,18.8,50.9,90.4,5.9,0.3,0.9,0.1,2.5,2.9,88.0,86.9,1.5,2.6,91.1,18.9,3575,15.9,18463,73.1,16.2,93900,16993,2.33,24408,42451,13.8,1107,19430,1.1,2359,3407,0.9,0.0,0.0,0.0,0.0,26.0,0,0,616900,15182,68773,41,416.12,96.9
19059,Dickinson County,IA,16935,16667,1.6,16667,4.9,19.1,24.2,50.2,97.9,0.4,0.3,0.6,0.0,0.9,1.7,96.4,85.9,1.0,1.9,93.3,25.4,1737,16.7,13191,75.6,15.1,159700,7981,2.07,31790,56136,7.8,770,6877,7.1,1818,2088,0.0,0.0,0.0,0.0,0.0,25.6,647529,0,255190,15386,54611,134,380.61,43.8
19061,Dubuque County,IA,96370,93653,2.9,93653,6.1,23.1,16.2,50.6,93.7,3.0,0.2,1.4,0.3,1.4,2.2,91.9,86.4,1.9,3.1,91.4,27.1,7057,17.3,40369,73.0,22.0,145900,37366,2.41,26254,51475,10.9,2772,53122,0.3,6130,8102,1.1,0.0,0.7,0.0,0.0,21.7,4711245,1847726,1433461,15538,145685,276,608.31,154.0
19063,Emmet County,IA,9990,10302,-3.0,10302,5.6,21.6,19.2,49.3,93.8,1.0,1.5,0.6,0.1,3.0,10.4,86.9,85.5,5.1,8.0,88.4,15.3,770,16.4,4752,79.8,9.2,82200,4119,2.31,27908,48601,12.5,317,3639,-3.1,720,791,0.0,0.0,0.0,0.0,0.0,0.0,331366,103865,92665,8961,7910,48,395.88,26.0
19065,Fayette County,IA,20343,20880,-2.6,20880,5.8,21.2,20.4,49.9,96.6,1.2,0.2,0.8,0.1,1.1,2.2,94.6,87.1,0.9,2.6,88.9,18.4,1717,21.1,9522,77.6,10.3,85400,8328,2.4,23391,45542,11.5,553,6298,0.6,1412,1891,0.0,0.0,0.0,0.0,0.0,0.0,157746,304189,157244,7716,14582,24,730.81,28.6
19067,Floyd County,IA,16077,16303,-1.4,16303,5.7,23.1,20.7,50.9,95.0,2.0,0.3,1.7,0.1,0.9,2.3,93.1,88.1,1.4,5.1,90.5,15.9,1523,19.6,7516,72.9,10.8,90200,7007,2.26,24590,43826,12.6,414,4552,5.4,1202,1159,0.0,0.0,0.0,0.0,0.0,0.0,461397,121913,149138,9192,13656,21,500.63,32.6
19069,Franklin County,IA,10436,10680,-2.3,10680,5.7,22.8,20.1,49.8,96.7,0.9,0.5,0.7,0.1,1.2,11.8,86.2,89.6,5.0,10.1,85.2,15.1,809,19.4,4860,73.7,10.8,87500,4358,2.4,26102,48355,11.1,334,3131,2.3,795,1385,0.0,0.0,0.0,0.0,0.0,19.4,260008,154569,65933,6207,4424,3,581.97,18.4
19071,Fremont County,IA,7022,7441,-5.6,7441,5.4,22.0,21.6,50.6,97.6,0.7,0.2,0.3,0.0,1.1,2.6,95.3,89.5,0.7,1.5,91.7,20.5,776,22.7,3445,77.5,5.7,94100,2965,2.4,26930,50520,10.2,187,2210,-1.2,517,588,0.0,0.0,0.0,0.0,0.0,0.0,0,105476,102932,13599,14804,10,511.15,14.6
19073,Greene County,IA,9200,9337,-1.5,9336,5.3,22.9,21.4,51.1,97.4,0.6,0.4,0.4,0.0,1.2,2.9,94.8,86.4,1.2,1.9,88.8,17.4,821,18.8,4533,76.0,10.8,78200,3969,2.29,26205,45865,13.0,261,2697,-2.4,716,746,0.0,0.0,0.0,0.0,0.0,23.1,0,144862,87923,9258,3859,6,569.57,16.4
19075,Grundy County,IA,12375,12453,-0.6,12453,6.0,23.4,19.8,50.9,98.3,0.5,0.1,0.3,0.1,0.8,1.2,97.1,92.0,0.4,2.3,93.9,20.7,894,20.7,5549,81.9,9.2,123700,5073,2.42,31164,56827,7.0,308,3285,5.0,836,0,0.0,0.0,0.0,0.0,0.0,0.0,143848,269850,109363,9049,4346,19,501.86,24.8
19077,Guthrie County,IA,10722,10954,-2.1,10954,5.3,22.2,21.7,50.2,98.0,0.3,0.3,0.4,0.0,1.0,2.3,95.8,90.9,1.1,2.1,91.4,17.1,898,27.3,5749,80.4,8.4,97100,4641,2.29,28030,50609,10.3,323,2650,0.0,1015,1129,0.0,0.0,0.0,0.0,0.0,0.0,0,0,91301,8262,8345,10,590.62,18.5
19079,Hamilton County,IA,15117,15673,-3.5,15673,5.6,23.0,19.4,50.7,95.4,0.8,0.4,2.1,0.0,1.3,5.4,90.6,85.0,2.2,6.0,89.7,18.0,1323,17.6,7184,71.0,15.7,91400,6395,2.39,24510,43589,12.3,383,4304,0.5,1059,1551,0.0,0.0,0.0,0.0,0.0,23.9,1162374,558307,149277,9607,12245,5,576.75,27.2
19081,Hancock County,IA,11027,11341,-2.8,11341,5.4,22.7,20.2,49.8,97.5,0.7,0.3,0.5,0.0,1.0,3.5,94.1,88.5,1.8,2.9,90.7,16.6,798,20.8,5308,80.1,9.6,85300,4648,2.37,25814,50105,10.4,309,3197,0.5,839,1275,0.0,0.0,0.0,0.0,0.0,0.0,266775,171681,119314,10549,4144,20,571.01,19.9
19083,Hardin County,IA,17311,17534,-1.3,17534,5.2,21.0,21.2,50.0,96.3,1.5,0.3,0.6,0.0,1.3,4.1,92.6,88.8,2.5,4.0,91.7,19.7,1485,17.7,8175,74.4,14.0,89900,7061,2.35,25153,49342,8.6,565,5394,-1.7,1290,1812,0.0,0.0,0.0,0.0,0.0,21.0,743136,1191033,161778,9242,11447,7,569.31,30.8
19085,Harrison County,IA,14324,14937,-4.1,14928,5.5,22.6,19.1,50.3,97.9,0.4,0.3,0.4,0.0,1.0,1.4,96.7,89.6,0.9,1.8,91.1,17.7,1099,25.8,6747,77.2,9.1,108200,5996,2.41,26184,54583,9.6,357,3060,-3.5,1037,1378,0.0,0.0,0.0,0.0,0.0,19.2,0,130170,100916,6546,10399,29,696.85,21.4
19087,Henry County,IA,20217,20145,0.4,20145,5.9,22.3,17.6,48.8,92.4,2.6,0.3,2.9,0.1,1.6,4.7,88.2,87.1,3.3,4.4,91.3,20.0,1575,18.5,8274,74.0,14.9,103700,7493,2.53,22687,46376,17.9,514,7980,-38.8,1336,1547,0.0,0.0,0.0,0.0,0.0,23.4,889862,90587,214737,10665,22246,20,434.33,46.4
19089,Howard County,IA,9449,9566,-1.2,9566,6.8,25.2,19.7,50.2,97.8,0.8,0.2,0.3,0.1,0.9,1.4,96.5,88.6,1.1,6.0,87.1,11.6,694,17.6,4365,79.8,7.9,91800,3884,2.39,24286,46429,11.6,256,2808,-4.7,829,1115,0.0,0.0,0.0,0.0,0.0,0.0,272970,143611,83186,8789,4842,1,473.25,20.2
19091,Humboldt County,IA,9640,9814,-1.8,9815,5.5,22.9,20.3,51.0,97.7,0.7,0.2,0.4,0.0,1.0,4.0,94.1,87.3,2.0,3.2,90.5,18.2,934,17.2,4684,76.7,11.7,84900,4222,2.28,26746,47897,10.2,324,3394,-0.1,724,1151,0.0,0.0,0.0,0.0,0.0,24.8,289818,183078,82011,8520,7477,24,434.35,22.6
19093,Ida County,IA,7042,7089,-0.7,7089,7.1,23.8,21.6,50.1,97.8,0.4,0.4,0.4,0.0,1.0,2.0,95.8,89.8,0.5,2.8,89.4,19.6,626,15.7,3430,73.3,14.2,76400,3182,2.19,25869,43449,14.4,248,2865,0.3,560,956,0.0,0.0,0.0,0.0,0.0,19.4,372971,147075,61131,8758,0,11,431.51,16.4
19095,Iowa County,IA,16375,16355,0.1,16355,5.9,23.3,18.0,50.5,97.9,0.7,0.2,0.4,0.0,0.8,2.5,95.7,87.1,1.4,3.7,93.2,21.0,1044,22.5,7267,79.7,13.1,138000,6745,2.37,28068,58008,10.9,487,7775,1.5,1241,1264,0.0,0.0,0.0,0.0,0.0,24.1,1478930,80218,213413,13512,25049,23,586.46,27.9
19097,Jackson County,IA,19482,19848,-1.8,19848,5.4,22.3,19.8,50.3,96.9,0.6,0.3,0.4,0.7,1.1,1.3,95.8,88.9,0.8,2.3,89.2,14.5,1788,23.2,9458,76.2,11.3,110000,8479,2.3,24493,46467,10.5,545,4892,0.1,1515,2345,0.0,0.0,0.0,0.0,0.0,21.3,247956,109127,209951,10547,14490,35,636.04,31.2
19099,Jasper County,IA,36872,36842,0.1,36842,5.5,22.5,18.0,49.0,96.0,1.9,0.4,0.6,0.0,1.0,1.9,94.3,85.2,1.1,2.7,91.5,17.8,2818,22.0,16160,71.3,16.8,113100,14826,2.34,24905,50513,11.8,746,8706,4.7,2261,2847,0.0,0.0,0.0,0.0,0.0,20.9,170755,0,273960,7492,30110,33,730.42,50.4
19101,Jefferson County,IA,17325,16843,2.9,16843,4.3,16.8,18.8,46.1,85.6,1.9,0.3,10.8,0.1,1.5,2.9,83.1,87.9,12.0,11.1,95.0,31.2,1561,14.7,7542,71.9,15.4,92400,6919,2.21,27593,48814,12.4,670,6855,0.2,1927,2308,0.0,0.0,0.0,0.0,0.0,0.0,246631,114630,333485,21471,16610,14,435.51,38.7
19103,Johnson County,IA,142287,130882,8.7,130882,6.2,20.4,9.9,50.2,85.4,5.9,0.3,6.0,0.0,2.4,5.5,80.6,73.4,9.3,13.3,94.8,51.1,6630,18.2,58783,59.7,34.8,186000,54005,2.33,29592,53424,17.7,3186,59466,3.6,8843,9323,1.8,0.0,2.4,0.0,1.6,26.7,0,567646,1653057,13168,258762,1080,614.04,213.1
19105,Jones County,IA,20454,20638,-0.9,20638,5.2,21.8,18.5,48.1,96.2,2.3,0.3,0.6,0.0,0.7,1.6,94.7,87.9,1.0,2.8,91.4,17.2,1948,24.3,8907,80.2,12.2,122100,8063,2.38,26762,55041,8.3,503,4877,0.5,1346,2193,0.0,0.0,0.0,0.0,0.0,29.9,180765,144654,257667,12629,9765,15,575.62,35.9
19107,Keokuk County,IA,10231,10511,-2.7,10511,6.3,23.2,20.1,49.8,98.3,0.5,0.2,0.2,0.0,0.8,1.6,96.8,89.8,0.5,1.8,88.2,13.4,788,24.0,4886,80.6,8.3,75700,4354,2.36,22243,42167,13.2,250,1685,-10.1,705,1099,0.0,0.0,0.0,0.0,0.0,21.6,0,122304,66877,6236,0,0,579.18,18.1
19109,Kossuth County,IA,15222,15543,-2.1,15543,5.5,21.9,22.5,49.8,97.7,0.6,0.3,0.5,0.0,0.8,2.0,96.1,90.5,1.0,2.4,92.2,18.3,1433,15.5,7481,80.5,10.7,91100,6728,2.25,29127,51812,8.7,571,5699,2.7,1401,1822,0.0,0.0,0.0,0.0,0.0,25.8,474756,318352,195827,12670,11502,19,972.72,16.0
19111,Lee County,IA,35286,35862,-1.6,35862,6.2,21.6,18.6,50.1,94.0,3.1,0.3,0.6,0.0,2.0,3.4,91.0,89.2,2.0,2.7,90.0,15.8,3552,17.9,16173,73.9,13.5,83100,14241,2.44,22649,42469,15.1,912,13010,-1.4,1914,2661,0.0,0.0,2.3,0.0,0.0,27.8,0,396254,420758,11745,36970,22,517.52,69.3
19113,Linn County,IA,217751,211226,3.1,211226,6.3,23.8,14.3,50.6,90.6,4.5,0.3,2.2,0.1,2.4,2.9,88.1,84.1,2.9,4.7,93.8,31.2,16870,18.5,94663,73.0,24.3,144300,86052,2.42,29943,57260,9.7,5415,115744,0.9,12912,16967,0.7,0.0,0.0,0.0,0.6,27.1,8229178,2506126,3592845,17502,353610,838,716.88,294.6
19115,Louisa County,IA,11161,11387,-2.0,11387,5.3,23.2,16.6,49.3,95.1,1.0,0.5,2.1,0.2,1.2,16.2,79.8,90.3,8.1,15.0,83.3,13.5,815,23.0,5006,78.6,7.3,95400,4381,2.56,24272,50583,12.2,217,2887,1.3,621,941,0.0,0.0,0.0,0.0,0.0,0.0,0,0,56465,4798,4530,9,401.77,28.3
19117,Lucas County,IA,8701,8898,-2.2,8898,5.6,23.3,21.0,49.6,98.5,0.3,0.2,0.3,0.0,0.7,1.3,97.3,86.0,5.8,10.2,89.9,11.3,656,24.1,4204,77.5,9.1,82700,3734,2.32,21126,43288,17.0,179,2772,0.5,622,788,0.0,0.0,0.0,0.0,0.0,0.0,0,1472,84344,8919,0,3,430.59,20.7
19119,Lyon County,IA,11683,11581,0.9,11581,7.3,28.1,16.9,49.8,98.3,0.3,0.3,0.3,0.1,0.7,2.7,95.9,92.5,1.1,2.0,89.1,17.6,689,18.1,4965,82.3,5.5,105700,4425,2.6,23683,52152,8.0,389,3344,-2.2,983,1328,0.0,0.0,0.0,0.0,0.0,13.2,100917,215272,91091,8113,0,55,587.65,19.7
19121,Madison County,IA,15609,15679,-0.4,15679,5.8,26.0,16.3,50.2,97.6,0.5,0.4,0.5,0.0,1.0,1.5,96.4,89.3,1.4,1.8,94.2,21.5,1365,26.5,6684,76.8,10.8,160700,6092,2.52,27685,57581,8.9,354,2450,-6.8,1271,1304,0.0,0.0,0.0,0.0,0.0,30.5,0,0,80594,5253,7596,55,561.01,27.9
19123,Mahaska County,IA,22370,22381,0.0,22381,6.1,23.7,16.9,49.6,95.9,1.3,0.4,1.2,0.0,1.1,1.9,94.3,84.7,1.5,2.4,90.5,21.5,1481,17.9,9726,70.5,14.1,100900,9073,2.4,23788,47967,15.9,576,6881,0.3,1442,1977,0.0,0.0,0.0,0.0,0.0,25.4,1618526,0,242911,10995,16819,64,570.86,39.2
19125,Marion County,IA,33365,33309,0.2,33309,6.1,24.1,16.4,50.1,96.3,1.0,0.2,1.4,0.0,1.0,1.9,94.7,83.6,2.3,2.9,92.4,25.0,2484,20.3,13984,75.8,13.9,132000,12691,2.48,25477,54723,9.2,810,15685,1.1,2134,3254,0.0,0.0,0.0,0.0,0.0,20.0,1856906,0,333092,10201,28951,125,554.53,60.1
19127,Marshall County,IA,40866,40648,0.5,40648,7.0,24.9,17.5,49.5,92.4,2.0,0.8,2.8,0.2,1.8,19.9,73.9,86.0,12.1,18.4,85.2,19.3,3538,17.3,16718,73.4,17.1,105400,15350,2.58,24117,51555,12.1,792,14459,-0.1,1875,2532,0.0,0.0,0.0,0.0,0.0,28.8,1848040,298112,407694,10434,40400,10,572.5,71.0
19129,Mills County,IA,14831,15059,-1.5,15059,5.7,24.2,15.8,49.9,96.9,0.6,0.5,0.7,0.1,1.3,2.6,94.5,90.0,0.8,2.4,92.1,24.0,1347,25.2,6088,83.7,9.0,149400,5375,2.67,27101,63076,7.0,294,2089,-3.4,926,1101,0.0,0.0,0.0,0.0,0.0,32.7,0,23046,78569,5187,5388,3,437.44,34.4
19131,Mitchell County,IA,10779,10772,0.1,10776,5.6,23.9,21.5,50.5,98.3,0.6,0.1,0.3,0.0,0.7,1.2,97.2,91.9,1.4,5.5,91.0,15.7,895,16.6,4916,81.4,6.5,108100,4389,2.39,24518,51078,7.1,326,3097,-3.1,864,1225,0.0,0.0,0.0,0.0,0.0,0.0,252014,228655,93053,8627,5070,25,469.13,23.0
19133,Monona County,IA,8996,9243,-2.7,9243,5.1,21.4,24.6,50.6,97.0,0.5,1.1,0.3,0.1,1.0,2.0,95.2,88.4,0.9,2.6,89.7,14.3,965,21.3,4715,70.7,11.3,77800,3981,2.26,24557,42025,9.0,233,2086,5.2,646,829,0.0,0.0,0.0,0.0,0.0,16.4,0,77612,99152,10868,7234,7,694.07,13.3
19135,Monroe County,IA,8001,7970,0.4,7970,5.5,23.6,19.0,49.8,97.3,0.6,0.1,0.8,0.0,1.2,2.4,95.2,84.8,4.3,5.1,86.7,19.3,645,25.1,3892,75.5,7.9,95200,3361,2.34,24508,45997,11.8,173,1895,1.8,553,521,0.0,0.0,0.0,0.0,0.0,21.1,0,46184,62488,8256,0,82,433.72,18.4
19137,Montgomery County,IA,10421,10740,-3.0,10740,5.7,22.6,20.8,51.1,97.7,0.4,0.5,0.4,0.0,1.0,3.5,94.5,88.3,1.3,3.2,87.4,15.1,897,18.7,5200,71.8,13.1,79600,4553,2.28,22868,44281,16.1,308,3056,1.7,731,952,0.0,0.0,0.0,0.0,0.0,14.3,180839,150731,88288,8071,7599,13,424.1,25.3
19139,Muscatine County,IA,42903,42747,0.4,42745,6.7,25.4,15.0,50.2,94.6,2.2,0.6,1.1,0.0,1.4,17.2,78.5,88.1,6.0,14.4,84.6,16.2,2866,18.0,17996,74.9,15.4,124400,16410,2.58,25038,51425,14.4,940,19720,1.0,2085,3523,0.8,0.0,0.0,0.0,3.3,32.1,0,377484,448581,10566,44245,51,437.47,97.7
19141,O'Brien County,IA,14056,14398,-2.4,14398,6.0,23.6,20.6,49.8,97.1,0.9,0.2,0.7,0.0,0.9,4.5,93.3,86.3,2.8,4.5,91.1,18.9,1117,16.7,6635,74.9,16.3,93000,6098,2.27,28086,48185,11.3,506,5345,1.3,984,1337,0.0,0.0,0.0,0.0,0.0,21.5,304999,322652,169740,12093,9778,22,573.04,25.1
19143,Osceola County,IA,6218,6462,-3.8,6462,6.0,23.2,20.2,49.4,97.5,0.4,0.4,0.6,0.1,1.0,6.8,91.3,87.0,4.5,6.4,86.3,15.6,493,18.9,2968,74.9,5.0,75600,2676,2.33,24653,48659,8.6,183,1526,3.2,468,566,0.0,0.0,0.0,0.0,0.0,0.0,0,0,40538,6291,0,1,398.68,16.2
19145,Page County,IA,15496,15943,-2.8,15932,5.6,20.6,20.8,47.8,94.2,2.4,0.7,1.2,0.1,1.4,2.9,91.7,81.4,2.0,3.4,89.3,17.4,1590,16.4,7186,73.2,11.4,77700,6415,2.27,23496,43010,13.9,416,5313,0.3,919,1305,0.0,0.0,0.0,0.0,0.0,20.2,348217,116438,163001,10243,12573,11,534.94,29.8
19147,Palo Alto County,IA,9099,9421,-3.4,9421,5.9,22.0,21.4,50.3,97.0,0.9,0.4,0.5,0.1,1.1,2.1,95.2,88.8,1.3,2.1,90.0,16.5,782,16.9,4617,77.2,12.0,83400,3948,2.28,25055,44663,9.2,278,2802,0.5,733,937,0.0,0.0,0.0,0.0,0.0,0.0,401373,132484,65829,6988,34628,2,563.84,16.7
19149,Plymouth County,IA,24874,24981,-0.4,24986,5.9,25.1,17.6,50.3,97.2,0.5,0.5,0.6,0.1,1.0,4.1,93.6,89.2,1.8,4.9,92.5,20.9,2025,17.1,10668,79.3,9.4,129800,9867,2.49,27942,58888,6.4,703,9761,0.4,1700,2137,0.0,0.0,0.0,0.0,0.0,0.0,0,243010,299650,12330,21970,37,862.89,29.0
19151,Pocahontas County,IA,7138,7310,-2.4,7310,5.7,22.6,22.3,50.2,96.9,0.9,0.5,0.2,0.2,1.2,3.4,94.0,88.8,1.8,2.5,92.6,17.8,668,17.7,3771,79.4,7.1,60600,3227,2.19,25556,44073,14.2,222,2021,-1.8,539,764,0.0,0.0,0.0,0.0,0.0,0.0,0,86944,79888,10492,0,4,577.24,12.7
19153,Polk County,IA,459862,430635,6.8,430640,7.2,25.2,11.7,50.8,86.5,6.7,0.4,4.2,0.1,2.2,8.0,79.2,82.2,8.5,12.5,91.8,34.9,26762,19.0,192980,69.2,23.7,154400,173164,2.48,30442,59018,11.8,11914,243983,2.0,30761,37950,1.9,0.3,2.1,0.1,1.8,28.0,7519907,6697167,6714418,16130,825244,3350,573.8,750.5
19155,Pottawattamie County,IA,93128,93149,0.0,93158,6.5,23.7,15.7,50.9,95.2,1.6,0.7,0.8,0.1,1.7,7.2,88.7,85.1,3.3,6.2,89.3,19.1,7373,20.8,39589,70.2,18.7,126300,36460,2.49,25847,51304,13.8,1986,30845,-3.1,4975,7088,0.0,0.0,0.0,0.0,1.2,24.1,0,2256650,1503395,16784,451451,122,950.28,98.0
19157,Poweshiek County,IA,18668,18914,-1.3,18914,5.2,20.4,19.2,51.1,94.8,1.4,0.3,1.8,0.1,1.5,3.0,92.2,83.2,3.1,4.6,92.6,24.1,1296,17.0,8953,72.9,15.0,117600,7488,2.28,25318,50349,12.8,549,9458,2.9,1275,1781,0.0,0.0,0.0,0.0,0.0,21.4,462194,118099,241342,12932,17021,123,584.93,32.3
19159,Ringgold County,IA,5051,5131,-1.6,5131,5.8,23.3,25.3,50.8,98.1,0.4,0.3,0.4,0.1,0.8,2.0,96.4,91.0,0.7,10.0,88.5,17.6,401,18.0,2605,76.5,5.7,78500,2074,2.39,23324,44551,13.1,144,1022,3.9,470,553,0.0,0.0,0.0,0.0,0.0,12.1,0,26024,63578,12562,0,2,535.5,9.6
19161,Sac County,IA,10035,10350,-3.0,10350,5.4,22.0,22.3,50.9,98.2,0.3,0.2,0.4,0.1,0.9,2.8,95.7,89.3,1.2,2.8,91.4,19.1,943,17.7,5407,81.4,8.2,79700,4435,2.25,26350,48093,8.7,353,2624,-0.1,845,1187,0.0,0.0,0.0,0.0,0.0,21.5,0,164976,92468,8983,0,5,575.01,18.0
19163,Scott County,IA,171387,165224,3.7,165224,6.6,24.1,14.4,51.0,86.7,7.5,0.4,2.5,0.1,2.8,6.3,81.3,86.3,3.4,5.6,92.3,31.6,12299,18.0,73040,69.0,24.8,143600,67049,2.44,28948,52735,13.1,4408,82196,2.6,10040,14132,0.0,0.3,0.0,0.0,1.3,27.0,5745095,0,2852978,17574,423931,365,458.09,360.7
19165,Shelby County,IA,11948,12167,-1.8,12167,5.6,22.7,22.4,50.8,97.7,0.5,0.4,0.4,0.1,0.8,2.3,95.6,90.1,2.0,2.8,90.9,18.2,1041,18.5,5561,77.7,11.0,104700,5083,2.33,26387,48783,10.8,398,5209,-1.4,972,1388,0.0,0.0,0.0,0.0,0.0,19.5,0,158609,135125,10996,8692,16,590.78,20.6
19167,Sioux County,IA,34681,33704,2.9,33704,7.4,26.9,14.5,49.8,96.6,1.0,0.5,1.1,0.0,0.7,9.8,87.9,85.9,6.3,9.5,88.6,23.4,1830,12.8,12582,80.0,10.2,131200,11623,2.72,24324,57227,8.2,1233,17949,-0.3,2577,3659,0.0,0.0,0.0,0.0,0.0,18.3,1152404,753139,394422,12319,31746,112,768.33,43.9
19169,Story County,IA,94073,89542,5.1,89542,4.9,17.1,10.7,48.1,88.2,2.8,0.3,7.0,0.0,1.7,3.1,85.5,67.8,8.3,9.3,95.5,47.7,4787,17.8,38103,55.0,37.2,162200,35196,2.34,25986,50516,20.9,2006,30774,3.6,5377,7365,0.0,0.0,2.1,0.0,0.0,23.6,1970829,432009,968345,11361,151011,539,572.82,156.3
19171,Tama County,IA,17451,17767,-1.8,17767,6.0,24.1,19.2,50.9,88.3,0.6,8.0,0.4,0.1,2.6,8.4,82.7,91.2,2.8,10.5,89.9,16.1,1496,21.6,7753,74.7,8.5,101300,6794,2.53,25311,51670,11.5,341,3564,-0.1,1130,0,0.0,0.0,0.0,0.0,0.0,0.0,0,154880,112481,6366,0,17,721.01,24.6
19173,Taylor County,IA,6143,6317,-2.8,6317,6.3,23.1,21.1,49.3,98.2,0.4,0.3,0.3,0.1,0.8,7.5,91.0,89.9,3.4,8.1,90.0,13.8,511,21.0,3091,76.2,7.1,66400,2764,2.22,23793,43804,14.5,134,1594,1.9,556,722,0.0,0.0,0.0,0.0,0.0,0.0,0,40979,25098,3906,0,4,531.9,11.9
19175,Union County,IA,12516,12534,-0.1,12534,6.1,23.1,18.9,51.3,97.1,1.0,0.3,0.6,0.0,1.0,2.8,94.6,88.7,1.0,2.0,91.5,16.5,1014,15.0,5907,73.2,12.0,91600,5339,2.29,23007,44838,16.1,334,5025,-6.8,800,0,0.0,0.0,0.0,0.0,0.0,0.0,214327,384667,153754,12759,11160,7,423.65,29.6
19177,Van Buren County,IA,7468,7570,-1.3,7570,6.7,23.3,20.8,49.2,98.1,0.3,0.2,0.5,0.0,0.9,1.3,96.9,89.4,0.8,5.2,87.2,14.4,668,23.4,3623,85.8,6.1,69700,3023,2.45,21368,43181,16.5,155,1859,-5.8,660,0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,36920,4810,0,0,484.79,15.6
19179,Wapello County,IA,35212,35625,-1.2,35625,6.0,22.4,17.0,50.6,94.4,2.2,0.8,0.9,0.2,1.3,10.0,85.4,84.9,6.8,10.5,84.6,16.2,2638,17.4,16019,72.8,14.4,78800,14534,2.38,22699,41425,19.1,758,14912,4.9,1763,2850,0.0,0.0,0.0,0.0,0.0,19.1,1840383,0,500711,14167,41514,22,431.83,82.5
19181,Warren County,IA,47956,46228,3.7,46225,6.0,25.2,14.9,50.8,97.2,0.7,0.3,0.6,0.1,1.1,2.5,94.9,85.2,1.2,2.2,95.3,26.7,3826,24.8,19162,78.7,13.6,154100,17378,2.58,29088,62535,7.3,773,7742,-1.4,3431,4047,0.0,0.0,0.0,0.0,0.0,26.0,0,628117,328428,7415,25116,360,569.83,81.1
19183,Washington County,IA,22070,21704,1.7,21704,6.6,24.8,18.5,50.8,96.9,0.9,0.3,0.5,0.1,1.2,5.6,91.7,88.1,2.7,8.7,89.5,20.8,1573,21.1,9540,75.7,14.2,121800,8948,2.4,26459,54554,9.8,705,6828,0.3,1780,2559,0.0,0.0,0.0,0.0,0.0,15.9,0,185719,195045,9221,114716,24,568.84,38.2
19185,Wayne County,IA,6395,6403,-0.1,6403,7.0,24.2,22.3,51.6,97.6,0.7,0.3,0.4,0.0,1.0,1.7,96.2,87.6,0.8,2.4,88.4,14.1,569,25.2,3181,82.7,6.9,62300,2589,2.42,22127,40024,12.4,146,1381,-0.1,523,483,0.0,0.0,0.0,0.0,0.0,0.0,0,27010,49159,7824,0,0,525.44,12.2
19187,Webster County,IA,36955,38013,-2.8,38013,5.8,21.4,17.2,48.2,92.7,4.2,0.4,0.9,0.0,1.8,4.3,88.8,84.0,2.2,3.3,88.8,19.2,3109,15.4,17035,68.5,18.5,84300,15458,2.28,24203,41624,15.8,1032,15629,2.1,2082,2884,0.0,0.0,0.0,0.0,0.0,0.0,1909417,0,577547,15022,61910,20,715.62,53.1
19189,Winnebago County,IA,10559,10866,-2.8,10866,5.2,21.4,20.4,51.4,96.0,1.4,0.3,1.0,0.0,1.3,3.9,92.5,88.0,3.2,6.0,91.9,18.6,835,16.3,5183,76.1,15.3,91900,4591,2.23,24547,45603,11.4,329,6152,8.3,794,1102,0.0,0.0,0.0,0.0,0.0,14.3,1094325,169959,114958,10672,6386,6,400.49,27.1
19191,Winneshiek County,IA,20768,21058,-1.4,21056,4.3,18.9,18.1,50.5,97.0,0.8,0.1,1.2,0.0,0.8,2.1,95.2,87.0,2.1,3.6,93.8,26.5,1485,16.2,8813,77.3,12.8,151500,8042,2.32,25062,53122,8.4,619,9585,-2.1,1859,2878,0.0,0.0,0.0,0.0,0.0,25.6,288679,167268,289636,13909,21459,47,689.87,30.5
19193,Woodbury County,IA,102271,102177,0.1,102172,7.3,26.0,13.8,50.5,88.9,2.8,2.6,2.7,0.2,2.8,15.2,75.7,82.8,8.3,14.7,85.4,20.3,7107,17.7,41510,67.7,19.1,97900,38654,2.57,23269,45856,15.7,2692,45624,1.2,5654,7392,0.9,0.0,0.9,0.0,2.0,25.8,2827480,1739995,1511955,14913,158358,151,872.83,117.1
19195,Worth County,IA,7624,7598,0.3,7598,5.1,21.7,19.8,50.2,97.3,0.9,0.3,0.5,0.0,1.0,2.7,95.0,91.6,1.1,2.7,92.5,16.3,706,20.1,3523,81.1,7.1,96900,3197,2.33,26187,50476,11.5,172,1790,-3.7,530,432,0.0,0.0,0.0,0.0,0.0,28.2,248922,0,28655,3759,4736,4,400.12,19.0
19197,Wright County,IA,12840,13229,-2.9,13229,5.7,23.1,21.3,49.6,97.2,0.8,0.4,0.4,0.1,1.1,10.2,87.7,91.3,4.5,9.0,88.8,16.0,938,15.6,6494,77.4,14.4,71700,5367,2.4,25827,45205,11.0,390,3908,-8.2,868,1529,0.0,0.0,0.0,0.0,0.0,20.1,863324,291061,100154,7681,7591,12,580.42,22.8
20000,Kansas,,2904021,2853132,1.8,2853118,6.9,24.9,14.3,50.2,86.8,6.3,1.2,2.8,0.1,2.8,11.4,76.8,83.2,6.7,11.0,89.8,30.3,211113,19.0,1248813,67.5,17.7,128400,1110440,2.51,26929,51332,13.7,73816,1150401,1.4,190838,237040,2.4,0.9,2.0,0.0,2.4,27.5,76751828,45863865,34538332,12444,4192347,7459,81758.72,34.9
20001,Allen County,KS,12909,13371,-3.5,13371,6.0,23.3,19.0,51.1,93.7,2.2,0.9,0.5,0.0,2.5,3.3,91.1,85.8,1.3,1.0,88.6,16.1,1218,15.4,6262,74.9,9.3,63300,5505,2.35,20552,40554,17.0,386,4451,-0.7,917,926,0.0,0.0,0.0,0.0,0.0,28.4,434704,37176,121694,9077,12409,13,500.3,26.7
20003,Anderson County,KS,7883,8102,-2.7,8102,6.2,25.2,20.6,50.6,96.3,0.6,0.8,0.7,0.1,1.7,1.7,94.7,80.6,0.1,4.2,87.4,19.0,625,25.2,3713,76.4,6.8,96300,3308,2.38,22139,41713,12.8,211,1495,4.4,611,1003,0.0,0.0,0.0,0.0,0.0,15.3,0,53525,87242,11102,5600,11,579.65,14.0
20005,Atchison County,KS,16513,16924,-2.4,16924,6.4,23.4,16.3,51.3,90.8,5.2,0.7,0.6,0.0,2.6,2.9,88.3,87.0,0.7,1.7,91.7,21.6,1163,20.0,6947,72.7,14.0,87000,6216,2.5,21909,45212,17.1,361,5750,-2.9,852,1186,0.0,0.0,0.0,0.0,0.0,38.3,0,0,130130,7912,14931,2,431.17,39.3
20007,Barber County,KS,4897,4861,0.7,4861,6.9,22.5,20.3,48.8,96.3,0.6,0.9,0.6,0.0,1.6,3.6,93.2,88.3,1.0,2.2,92.0,19.8,444,13.6,2744,72.7,8.2,61900,2187,2.22,26229,45920,10.6,220,1500,-0.1,474,843,0.0,0.0,0.0,0.0,3.3,37.2,0,35570,70317,14910,2727,0,1134.07,4.3
20009,Barton County,KS,27385,27674,-1.0,27674,6.9,24.5,17.3,50.5,95.3,1.8,0.9,0.4,0.1,1.5,14.3,82.2,85.4,6.7,13.2,86.0,18.3,1890,17.0,12617,71.4,9.0,75300,11491,2.36,25800,44981,13.9,976,11464,1.8,2275,3046,0.0,0.0,0.0,0.0,0.0,18.8,561411,0,339355,12254,35379,58,895.4,30.9
20011,Bourbon County,KS,14772,15173,-2.6,15173,6.8,25.0,18.5,50.6,92.4,3.3,1.0,0.7,0.0,2.6,2.3,90.7,85.0,1.1,2.2,87.5,22.0,1183,16.8,7101,72.6,12.2,78400,5636,2.6,19340,39591,19.3,354,4837,2.6,1022,1507,0.0,0.0,0.0,0.0,0.0,24.4,178967,554890,120585,8136,16285,2,635.47,23.9
20013,Brown County,KS,9815,9984,-1.7,9984,7.0,25.4,19.0,51.2,85.8,1.6,9.3,0.4,0.0,2.9,3.8,83.7,86.0,1.4,2.2,90.9,18.2,833,16.5,4749,66.9,11.0,77100,4104,2.39,21046,39968,19.0,266,3406,-2.0,693,862,0.0,0.0,0.0,0.0,0.0,24.1,91416,87482,67859,6771,7611,2,570.87,17.5
20015,Butler County,KS,66227,65880,0.5,65880,6.0,26.0,14.0,49.8,93.6,1.9,1.1,1.0,0.1,2.3,4.5,89.8,84.1,1.8,3.2,92.8,26.7,5508,22.0,26400,76.1,9.4,127800,24270,2.63,27329,56454,8.4,1303,13342,1.7,4026,5455,0.0,1.0,0.7,0.0,0.0,24.3,0,130113,567483,9024,57370,143,1429.86,46.1
20017,Chase County,KS,2692,2790,-3.5,2790,4.5,21.1,23.1,49.6,96.1,1.3,0.9,0.3,0.0,1.4,4.0,92.3,82.2,1.8,4.6,90.2,23.6,280,22.1,1498,73.5,3.9,81100,1149,2.28,21775,36815,13.1,73,497,21.2,228,329,0.0,0.0,0.0,0.0,0.0,0.0,0,0,10868,3815,2283,0,773.06,3.6
20019,Chautauqua County,KS,3481,3669,-5.1,3669,5.5,20.5,25.8,48.3,89.2,0.9,5.1,0.2,0.1,4.5,3.0,87.0,86.0,1.1,2.2,87.1,16.3,362,24.1,2137,76.5,2.8,46500,1565,2.24,21245,39529,15.2,69,450,-12.3,316,412,0.0,0.0,0.0,0.0,0.0,0.0,0,0,15764,4176,0,0,638.88,5.7
20021,Cherokee County,KS,20787,21603,-3.8,21603,5.7,24.3,17.7,50.4,90.5,0.8,4.0,0.4,0.3,4.0,2.3,88.6,87.4,0.9,2.6,86.1,14.9,1753,19.8,9807,75.9,5.2,71600,7936,2.65,19580,39746,18.4,350,5269,1.4,1074,1473,0.0,2.2,0.0,0.0,0.0,0.0,512058,205501,121743,5686,8639,9,587.57,36.8
20023,Cheyenne County,KS,2693,2726,-1.2,2726,5.1,20.6,26.5,50.8,97.4,0.1,0.3,1.2,0.0,0.9,7.1,90.5,91.1,3.0,3.3,89.2,21.7,256,13.1,1502,74.0,5.0,76700,1343,1.98,23677,37875,11.2,106,505,-2.9,242,310,0.0,0.0,0.0,0.0,0.0,13.9,0,54578,12191,4422,937,0,1019.89,2.7
20025,Clark County,KS,2144,2215,-3.2,2215,7.4,27.1,20.8,51.0,93.5,0.7,1.4,1.4,0.1,2.9,9.8,84.2,87.6,4.1,7.9,92.1,26.2,179,13.3,1131,72.4,5.1,59800,932,2.29,25385,41129,12.7,59,0,0.0,209,283,0.0,0.0,0.0,0.0,0.0,0.0,0,0,9889,4775,0,0,974.63,2.3
20027,Clay County,KS,8317,8535,-2.6,8535,6.4,23.2,21.9,50.3,97.0,0.7,0.5,0.4,0.1,1.4,2.6,94.7,89.0,0.7,2.9,95.2,20.7,962,18.1,4048,76.6,10.4,85700,3407,2.45,24503,45233,14.0,264,2411,-9.5,616,647,0.0,0.0,0.0,0.0,0.0,0.0,0,99290,76023,8756,5547,22,645.3,13.2
20029,Cloud County,KS,9385,9533,-1.6,9533,6.6,22.6,21.1,50.8,96.1,0.9,0.6,0.7,0.0,1.7,3.5,93.1,86.4,2.1,3.7,89.7,16.6,828,15.2,4624,76.2,10.6,66100,4022,2.18,20467,38534,16.3,309,2872,-1.5,665,978,0.0,0.0,0.0,0.0,0.0,39.6,0,91801,109669,11776,13731,1,715.34,13.3
20031,Coffey County,KS,8433,8601,-2.0,8601,4.7,22.4,19.3,50.3,96.3,0.8,0.8,0.6,0.0,1.5,2.8,93.8,85.2,0.9,1.4,92.1,19.9,708,20.3,4003,76.5,6.5,98200,3501,2.39,27627,51793,9.1,242,0,0.0,642,885,0.0,0.0,0.0,0.0,0.0,21.5,0,52345,102988,12228,4869,21,626.95,13.7
20033,Comanche County,KS,1954,1891,3.3,1891,7.6,26.6,22.9,51.1,97.3,0.3,0.6,0.3,0.1,1.5,5.0,92.5,92.8,2.0,3.7,92.1,23.9,140,11.1,1036,75.5,8.6,54100,791,2.33,21041,39375,6.4,83,458,5.3,158,0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,10297,5608,1452,0,788.3,2.4
20035,Cowley County,KS,35963,36311,-1.0,36311,6.6,23.9,17.0,49.9,89.2,3.0,2.4,1.9,0.3,3.3,10.2,80.5,78.3,3.8,8.3,88.0,20.0,2923,18.5,15984,68.8,10.1,80600,13867,2.47,21519,41878,17.6,764,11038,-1.8,2028,2632,0.0,0.0,0.0,0.0,1.7,21.5,2025397,0,317199,9291,34235,35,1125.75,32.3
20037,Crawford County,KS,39290,39134,0.4,39134,6.2,21.9,14.8,49.9,92.0,2.3,1.1,1.7,0.3,2.6,5.1,87.7,79.6,3.4,5.6,90.2,27.2,2511,16.4,17886,60.9,14.7,83800,15370,2.42,20974,37378,20.6,903,13979,-1.4,2158,2989,0.0,0.0,0.0,0.0,2.6,28.5,757221,0,395361,10204,51852,135,589.76,66.4
20039,Decatur County,KS,2908,2961,-1.8,2961,6.4,20.2,27.1,49.4,97.0,0.9,0.3,0.3,0.0,1.5,2.0,95.0,86.7,1.0,3.2,90.1,19.9,300,13.8,1806,82.0,8.1,53500,1482,1.91,27154,39333,10.1,102,598,-10.1,286,408,0.0,0.0,0.0,0.0,0.0,0.0,0,60478,17169,5793,1538,0,893.52,3.3
20041,Dickinson County,KS,19394,19754,-1.8,19754,6.3,24.1,18.4,50.1,95.6,1.0,0.8,0.4,0.1,2.1,4.5,91.6,86.7,1.2,2.8,90.8,18.5,2146,22.1,9120,73.4,8.8,106700,7845,2.47,23895,48890,10.9,474,5013,-2.5,1217,1967,0.0,0.0,0.0,0.0,0.0,25.7,317310,232637,191407,10143,15310,26,847.07,23.3
20043,Doniphan County,KS,7874,7945,-0.9,7945,5.7,21.8,17.5,49.4,92.3,3.4,1.5,0.6,0.0,2.2,2.8,89.9,85.5,1.3,1.6,90.0,17.5,564,19.2,3556,74.1,8.6,83300,3161,2.3,22713,46512,12.3,145,1411,-1.9,471,640,0.0,0.0,0.0,0.0,0.0,0.0,0,0,25238,3241,1516,3,393.41,20.2
20045,Douglas County,KS,116585,110826,5.2,110826,5.2,19.0,10.3,50.1,84.3,4.6,2.7,4.6,0.1,3.7,5.8,79.7,71.6,6.5,9.9,95.1,49.6,5957,20.1,48278,52.0,31.7,180300,43398,2.38,26342,49508,19.0,2635,36252,-1.7,7712,10251,2.2,1.2,1.8,0.0,0.0,31.2,976469,0,1202225,10601,213749,347,455.87,243.1
20047,Edwards County,KS,3030,3037,-0.2,3037,6.6,23.8,19.3,50.3,95.0,1.6,1.7,0.4,0.0,1.4,19.7,77.9,91.3,11.9,19.0,85.6,22.3,229,19.7,1625,75.3,2.9,56500,1269,2.29,24714,46551,12.9,96,647,-0.5,212,342,0.0,0.0,0.0,0.0,0.0,0.0,0,74694,12379,3987,0,1,621.89,4.9
20049,Elk County,KS,2694,2882,-6.5,2882,4.1,20.1,27.2,50.4,94.2,0.1,1.7,0.5,0.1,3.3,3.8,91.0,87.8,2.2,5.1,89.2,18.0,311,33.3,1750,80.2,6.2,52100,1271,2.14,20322,34089,18.5,72,337,-4.5,295,443,0.0,0.0,0.0,0.0,0.0,0.0,0,0,7998,2680,0,0,644.27,4.5
20051,Ellis County,KS,29013,28452,2.0,28452,6.9,21.9,13.8,49.7,95.5,1.0,0.4,1.4,0.1,1.6,5.7,90.3,76.2,2.6,7.1,92.7,32.3,1997,13.1,13060,62.9,23.6,138400,11824,2.32,24291,43085,16.2,1140,12848,-3.1,2814,3551,0.0,0.0,0.0,0.0,0.0,18.5,0,144903,497467,18264,72165,69,899.91,31.6
20053,Ellsworth County,KS,6392,6497,-1.6,6497,5.0,18.0,19.5,42.8,92.1,5.1,0.9,0.5,0.0,1.5,5.9,86.5,84.3,2.2,3.9,89.7,20.8,557,16.5,3210,77.0,5.9,73300,2528,2.15,22789,45865,6.9,163,1701,-4.0,458,553,0.0,0.0,0.0,0.0,0.0,15.2,0,23009,31852,5066,4554,3,715.85,9.1
20055,Finney County,KS,37184,36776,1.1,36776,9.5,31.1,9.4,49.0,89.4,3.3,1.4,4.3,0.1,1.5,48.2,43.7,85.1,20.9,39.1,70.6,17.9,1452,15.2,13328,64.7,17.9,109700,12515,2.91,21629,47945,16.0,977,14375,3.4,2168,2728,0.0,0.0,0.0,0.0,17.6,21.9,0,0,504229,12364,54895,14,1301.97,28.2
20057,Ford County,KS,34795,33848,2.8,33848,9.6,30.3,10.4,48.3,91.6,3.0,1.6,1.8,0.3,1.7,52.9,41.5,84.2,25.4,45.3,69.7,16.7,1519,14.3,12129,61.9,19.9,88800,11103,3.02,19994,51178,15.5,774,15597,1.3,1739,2235,0.0,0.0,0.0,0.0,6.1,26.3,0,0,395737,12121,40272,43,1098.27,30.8
20059,Franklin County,KS,25611,25996,-1.5,25992,6.3,24.8,15.4,50.3,94.6,1.4,0.9,0.5,0.0,2.5,3.9,91.4,83.8,1.2,2.5,90.7,20.2,1891,24.5,11104,70.9,12.2,119700,9909,2.56,22979,49543,13.1,575,9031,-5.5,1544,2331,0.0,0.0,0.0,0.0,0.0,23.1,384080,168701,234280,8921,27910,31,571.76,45.5
20061,Geary County,KS,36713,34362,6.8,34362,11.4,30.2,7.6,46.8,69.6,18.8,1.4,3.5,0.8,5.7,15.0,58.1,74.8,7.3,13.7,91.0,20.8,4795,16.6,15114,46.6,30.0,136500,12532,2.78,21408,46908,12.1,576,8061,-0.7,1168,1524,16.7,0.0,4.7,0.0,0.0,0.0,0,70826,295149,9992,51976,141,384.62,89.3
20063,Gove County,KS,2727,2695,1.2,2695,6.8,23.8,23.2,49.0,98.0,0.6,0.1,0.4,0.0,0.9,2.7,95.6,90.5,0.4,2.0,92.8,20.3,232,12.8,1396,79.5,2.8,71500,1201,2.31,26233,44866,10.3,133,927,3.7,311,0,0.0,0.0,0.0,0.0,0.0,0.0,0,104789,17068,6552,2010,15,1071.67,2.5
20065,Graham County,KS,2566,2597,-1.2,2597,6.6,20.0,25.4,50.4,90.6,4.4,0.8,0.8,0.0,3.4,3.2,88.5,85.1,0.9,1.9,93.9,22.9,209,16.9,1481,82.5,5.4,63800,1192,2.14,28146,47500,11.2,108,741,-3.0,287,0,0.0,0.0,0.0,0.0,0.0,0.0,0,23088,30166,11710,1339,0,898.52,2.9
20067,Grant County,KS,7816,7829,-0.2,7829,8.3,32.0,11.2,49.1,94.9,0.9,2.3,0.5,0.0,1.4,46.4,51.4,85.1,14.6,32.6,76.0,17.8,219,11.4,2920,73.8,3.9,90900,2793,2.79,26370,53213,13.0,228,2457,2.5,496,617,0.0,0.0,0.0,0.0,27.2,33.1,0,253106,66963,8998,7133,4,574.8,13.6
20069,Gray County,KS,6082,6006,1.3,6006,7.5,29.2,14.4,50.2,97.5,0.7,0.5,0.3,0.0,1.0,14.2,83.9,88.7,9.7,15.6,77.3,20.2,239,17.6,2403,75.8,5.9,105900,2066,2.86,25537,57808,11.2,221,1726,2.4,630,755,0.0,0.0,0.0,0.0,0.0,0.0,0,112701,34787,6032,1277,18,868.87,6.9
20071,Greeley County,KS,1301,1247,4.3,1247,7.7,24.6,20.9,50.9,97.2,0.5,1.0,0.3,0.0,0.9,17.6,80.4,91.4,3.2,9.7,91.7,21.9,88,12.0,631,80.3,3.0,78500,493,2.39,32650,52847,5.4,45,316,-0.9,131,0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,9621,7406,0,3,778.45,1.6
20073,Greenwood County,KS,6328,6689,-5.4,6689,5.1,21.3,23.6,50.2,95.3,0.5,1.5,0.3,0.0,2.3,4.0,92.0,87.6,0.3,1.3,90.6,16.5,585,25.2,4036,76.3,3.5,56800,2855,2.27,22280,38346,16.1,189,1201,3.3,551,900,0.0,0.0,0.0,0.0,0.0,33.3,0,14147,53316,7684,2983,0,1143.3,5.9
20075,Hamilton County,KS,2603,2690,-3.2,2690,8.4,29.9,11.9,48.6,95.4,0.5,1.9,0.4,0.3,1.5,33.7,63.3,81.6,13.2,25.2,81.9,12.6,182,11.2,1225,75.2,6.7,75100,1076,2.44,24510,43357,11.2,60,564,1.6,191,373,0.0,0.0,0.0,0.0,0.0,0.0,0,34386,25434,9816,636,0,996.51,2.7
20077,Harper County,KS,5818,6034,-3.6,6034,6.9,23.8,21.7,49.6,95.7,0.5,1.4,0.4,0.2,1.7,7.1,89.8,86.4,2.2,5.0,87.7,16.9,469,14.6,3167,73.1,5.4,66100,2595,2.22,22820,38313,16.5,218,1874,9.7,516,929,0.0,0.0,0.0,0.0,0.0,0.0,0,90981,50209,8746,4388,6,801.27,7.5
20079,Harvey County,KS,34820,34684,0.4,34684,6.9,25.2,17.9,50.9,94.0,1.9,0.9,0.9,0.0,2.4,11.5,83.6,85.5,4.7,9.0,89.3,26.3,2228,17.1,14610,72.3,11.8,111600,13287,2.51,23775,50287,12.8,794,13314,4.2,2361,2919,0.0,2.5,1.5,0.0,3.0,27.8,0,90787,274715,8170,29446,73,539.75,64.3
20081,Haskell County,KS,4106,4256,-3.5,4256,7.6,28.9,12.1,50.2,95.3,0.9,1.2,1.1,0.2,1.2,28.8,68.5,85.0,16.7,33.6,72.7,17.7,146,15.2,1660,74.3,4.7,103300,1411,2.96,25114,52415,10.4,119,768,-4.5,353,0,0.0,0.0,0.0,0.0,0.0,0.0,0,147070,13723,3400,0,1,577.52,7.4
20083,Hodgeman County,KS,1916,1916,0.0,1916,7.4,22.7,23.2,50.6,97.0,0.9,0.2,0.5,0.0,1.5,6.5,90.5,92.5,5.4,7.6,90.9,22.6,163,17.6,970,79.5,3.0,76500,821,2.34,30440,52375,5.2,52,301,1.0,184,323,0.0,0.0,0.0,0.0,0.0,0.0,0,0,5906,3052,209,0,859.99,2.2
20085,Jackson County,KS,13539,13462,0.6,13462,6.5,25.8,17.2,49.5,86.7,0.9,8.5,0.5,0.0,3.4,4.7,84.0,86.9,1.2,3.3,94.3,17.7,1335,24.8,5783,76.3,7.7,118200,5273,2.51,24117,54546,9.4,252,2861,-3.1,757,1112,0.0,0.0,0.0,0.0,0.0,0.0,0,34453,91112,6822,0,7,656.22,20.5
20087,Jefferson County,KS,18855,19124,-1.4,19126,5.3,23.5,17.2,49.4,96.0,0.8,1.1,0.2,0.0,1.9,2.6,93.8,89.1,0.4,2.3,91.9,21.3,1694,28.5,8218,84.9,4.5,125800,7421,2.52,26280,56875,7.7,307,2156,-5.3,1195,1528,0.0,0.0,0.0,0.0,0.0,35.9,0,9597,71260,3880,4409,34,532.57,35.9
20089,Jewell County,KS,3043,3077,-1.1,3077,4.6,19.5,27.3,48.8,97.7,0.3,0.8,0.4,0.0,0.9,2.4,95.4,90.6,1.0,2.5,91.9,14.7,356,15.7,2022,79.4,4.6,56500,1454,2.08,23134,39884,12.5,85,500,5.5,269,0,0.0,0.0,0.0,0.0,0.0,0.0,0,16800,14347,4502,1152,2,909.78,3.4
20091,Johnson County,KS,574272,544179,5.5,544179,6.7,25.3,12.7,51.0,87.5,5.0,0.4,4.7,0.0,2.4,7.4,80.7,84.7,8.1,11.2,95.6,51.7,33775,20.7,233182,70.1,22.7,210900,216304,2.53,38827,74717,6.5,17242,314916,3.3,46526,57046,2.1,0.8,3.3,0.0,1.9,28.3,7847699,16252012,9255321,17598,1082977,2689,473.38,1149.6
20093,Kearny County,KS,3915,3977,-1.6,3977,8.1,29.2,14.1,49.7,95.4,0.8,1.5,0.6,0.1,1.7,29.7,66.7,84.3,13.2,25.6,79.0,17.2,212,17.6,1547,73.0,6.1,91700,1301,2.97,22292,52264,10.1,84,610,-4.7,318,219,0.0,0.0,0.0,0.0,0.0,0.0,0,19843,7593,1835,1234,0,870.54,4.6
20095,Kingman County,KS,7698,7858,-2.0,7858,5.4,21.9,21.6,49.8,96.7,0.3,0.8,0.6,0.0,1.6,3.1,93.9,88.7,0.8,2.5,88.1,19.3,768,23.4,3814,71.4,3.9,86700,3223,2.37,24026,47466,12.5,210,1940,-6.4,648,859,0.0,0.0,0.0,0.0,0.0,0.0,0,57048,43185,5556,4451,11,863.36,9.1
20097,Kiowa County,KS,2513,2553,-1.6,2553,6.5,20.7,18.9,50.3,95.8,0.9,1.1,0.8,0.0,1.3,6.5,89.8,84.3,2.4,3.9,91.4,20.0,158,13.9,1226,65.2,14.3,102800,1065,2.21,23232,44650,12.3,96,757,3.6,229,327,0.0,0.0,0.0,0.0,0.0,0.0,0,71471,14583,5385,856,2,722.64,3.5
20099,Labette County,KS,20960,21607,-3.0,21607,6.4,23.6,18.1,50.5,88.6,4.6,2.2,0.5,0.1,4.0,4.4,85.1,87.5,1.1,3.8,89.7,20.4,1628,17.0,10046,71.1,8.8,66100,8703,2.38,22394,40916,15.3,472,8916,1.2,1190,1658,0.0,1.6,0.0,0.0,3.3,24.5,410239,0,204285,9305,14150,5,645.3,33.5
20101,Lane County,KS,1687,1750,-3.6,1750,5.6,21.3,23.5,50.3,95.0,0.8,1.4,0.2,0.1,2.5,6.4,89.9,89.2,1.7,4.7,90.9,22.7,133,14.6,981,77.8,5.6,58200,808,1.96,31694,53021,10.3,66,368,-6.1,207,391,0.0,0.0,0.0,0.0,0.0,0.0,0,12245,13628,7841,0,0,717.46,2.4
20103,Leavenworth County,KS,78797,76227,3.4,76227,6.6,24.3,12.7,46.7,85.0,9.6,0.9,1.4,0.2,2.9,6.9,79.2,79.4,3.5,6.1,92.1,28.7,9799,22.4,29088,67.4,13.9,165800,26358,2.69,27017,63435,10.7,1208,13833,3.6,3682,4202,0.0,1.9,0.0,0.0,0.0,29.7,107742,13167,492953,6697,48348,220,462.83,164.7
20105,Lincoln County,KS,3167,3241,-2.3,3241,6.3,24.3,20.7,50.0,97.3,0.5,0.7,0.3,0.0,1.3,2.4,95.1,86.8,2.1,4.0,92.1,19.7,393,18.7,1856,78.9,5.3,63500,1414,2.22,23686,40811,12.8,86,483,-13.8,258,0,0.0,0.0,0.0,0.0,0.0,0.0,0,24095,11148,3413,763,1,719.4,4.5
20107,Linn County,KS,9502,9656,-1.6,9656,5.0,23.3,20.9,50.5,96.3,0.8,0.7,0.4,0.0,1.8,2.3,94.1,91.2,0.6,1.5,89.0,14.2,928,34.4,5446,81.0,3.1,98000,4234,2.24,26224,45519,12.9,180,1187,2.8,697,642,0.0,0.0,0.0,0.0,0.0,0.0,0,4347,47786,4981,1271,42,594.06,16.3
20109,Logan County,KS,2794,2756,1.4,2756,5.9,22.3,19.7,49.2,94.8,1.0,0.8,1.3,0.0,2.1,4.9,90.6,85.4,3.1,4.1,90.9,15.6,216,17.3,1446,70.8,8.5,72700,1282,2.12,25328,41765,12.8,109,662,-11.4,260,0,0.0,0.0,0.0,0.0,0.0,0.0,0,53606,78581,29856,3502,1,1072.99,2.6
20111,Lyon County,KS,33212,33690,-1.4,33690,6.1,22.4,13.7,51.1,90.7,2.8,1.3,2.7,0.1,2.4,20.7,72.0,75.3,9.4,17.1,86.8,24.1,2074,17.1,15184,58.9,24.9,93100,13170,2.46,19789,38981,21.1,825,11075,-2.0,1733,2301,0.0,0.0,0.0,0.0,5.3,24.6,0,0,470739,13179,51039,17,847.47,39.8
20113,McPherson County,KS,29241,29180,0.2,29180,6.2,23.2,19.0,50.7,95.4,1.2,0.6,0.8,0.1,1.9,3.8,92.2,86.4,1.8,4.8,88.5,25.7,1951,14.0,12846,78.3,12.3,124600,11540,2.42,27462,54167,8.2,904,13564,-2.4,2449,3170,0.0,0.0,0.0,0.0,0.0,25.2,4222628,0,382204,13167,29843,124,898.27,32.5
20115,Marion County,KS,12208,12660,-3.6,12660,5.0,21.6,22.3,50.0,96.0,1.2,0.8,0.3,0.1,1.7,3.2,93.3,85.7,1.4,4.6,89.0,20.8,952,18.5,5928,80.8,7.6,83000,4861,2.41,22269,45830,12.0,291,2661,-2.3,926,935,0.0,0.0,0.0,0.0,0.0,0.0,0,106706,69995,5743,5621,17,944.29,13.4
20117,Marshall County,KS,10006,10117,-1.1,10117,6.2,23.1,21.2,50.1,96.9,0.3,0.6,0.6,0.1,1.5,2.3,94.9,89.9,1.0,1.9,92.8,15.0,831,15.3,4881,76.1,8.0,81700,4345,2.27,25262,44032,12.2,373,4300,2.9,777,1074,0.0,0.0,0.0,0.0,0.0,0.0,257714,128934,185982,18309,8833,45,900.18,11.2
20119,Meade County,KS,4357,4575,-4.8,4575,5.5,27.1,17.6,49.0,95.7,0.8,1.0,0.6,0.0,1.8,16.9,79.4,87.9,8.4,15.9,85.8,23.8,345,14.7,1991,71.7,5.4,85500,1714,2.55,21990,51000,9.5,130,932,-8.9,379,267,0.0,0.0,0.0,0.0,0.0,18.7,0,108345,20284,4602,1456,1,978.09,4.7
20121,Miami County,KS,32822,32783,0.1,32787,6.1,25.7,15.2,50.4,95.7,1.3,0.7,0.4,0.0,1.7,3.1,93.0,86.4,0.9,1.8,93.5,23.9,2365,28.6,13322,79.3,10.2,162500,12334,2.6,28412,58936,9.5,706,6446,0.2,2442,3211,0.0,0.0,0.0,0.0,0.0,31.9,0,72680,251725,8183,23967,50,575.66,57.0
20123,Mitchell County,KS,6284,6373,-1.4,6373,6.1,21.8,22.5,48.8,97.8,0.3,0.4,0.3,0.1,1.1,2.0,96.0,84.4,0.6,2.9,93.4,23.8,419,9.6,3294,70.4,9.6,74600,2804,2.14,26911,46667,9.7,245,2690,-0.3,602,642,0.0,0.0,0.0,0.0,0.0,15.9,0,73323,98777,15654,5081,4,701.79,9.1
20125,Montgomery County,KS,34065,35471,-4.0,35471,6.9,23.9,18.1,50.7,85.2,5.8,3.4,0.6,0.2,4.7,6.3,80.1,82.1,3.2,4.4,88.2,17.9,2672,15.9,16455,70.1,11.8,71200,14000,2.41,21332,39669,19.4,820,12923,-4.2,1935,2912,0.0,0.0,3.3,0.0,0.0,28.4,3979668,0,364610,10599,43496,1,643.53,55.1
20127,Morris County,KS,5698,5923,-3.8,5923,5.7,21.2,23.6,50.5,96.5,0.6,0.6,0.3,0.0,1.9,4.4,92.5,89.1,0.6,2.3,89.3,17.4,767,23.4,3192,78.4,5.6,81900,2503,2.32,24680,47445,8.3,140,1218,3.8,463,0,0.0,0.0,0.0,0.0,0.0,0.0,0,9155,44988,7570,4614,2,695.28,8.5
20129,Morton County,KS,3110,3233,-3.8,3233,6.9,25.9,18.2,49.2,92.9,0.9,1.4,2.4,0.3,2.2,21.1,73.3,88.8,10.2,18.8,85.0,17.5,144,12.5,1454,70.4,5.3,82100,1186,2.61,22378,46607,11.3,111,914,1.3,233,240,0.0,0.0,0.0,0.0,0.0,39.6,0,54820,28557,9251,2290,0,729.73,4.4
20131,Nemaha County,KS,10148,10178,-0.3,10178,7.0,25.5,20.1,49.3,96.9,0.7,0.7,0.2,0.1,1.4,1.7,95.7,90.0,1.0,1.2,90.0,19.5,657,13.9,4570,79.2,9.2,95200,4117,2.36,24550,47122,11.5,359,4585,2.2,758,828,0.0,0.0,0.0,0.0,0.0,14.6,243056,79569,106838,10528,4229,19,717.43,14.2
20133,Neosho County,KS,16416,16512,-0.6,16512,7.1,24.8,18.4,50.3,94.5,1.3,1.4,0.8,0.0,1.9,5.2,90.3,85.4,2.1,3.7,89.8,16.2,1494,16.7,7729,73.5,6.5,68900,6508,2.45,21163,42071,20.7,452,5105,-4.2,1120,1663,0.0,0.0,0.0,0.0,0.0,16.6,291019,180154,199840,12360,13085,5,571.47,28.9
20135,Ness County,KS,3105,3107,-0.1,3107,5.9,23.2,23.8,50.8,96.6,0.7,1.3,0.3,0.0,1.2,9.8,88.1,88.1,1.9,8.3,91.0,19.0,289,11.3,1732,82.5,4.9,57200,1340,2.26,30223,48800,12.7,143,1070,3.8,303,378,0.0,0.0,0.0,0.0,0.0,0.0,0,42438,16086,5433,1541,1,1074.75,2.9
20137,Norton County,KS,5560,5671,-2.0,5671,5.2,19.0,19.4,44.4,94.1,3.1,0.4,0.8,0.0,1.5,5.3,89.1,82.1,2.2,5.1,87.7,15.4,556,14.6,2530,74.6,9.4,66000,2248,2.13,22942,46029,9.4,176,1791,3.8,442,705,0.0,0.0,0.0,0.0,0.0,0.0,0,40003,36977,6796,5399,5,878.13,6.5
20139,Osage County,KS,15936,16295,-2.2,16295,5.6,23.8,18.5,50.0,96.4,0.5,0.8,0.3,0.0,1.9,2.7,94.1,89.9,0.9,2.5,90.6,20.6,1583,28.8,7490,78.2,7.3,99000,6558,2.45,24789,50205,10.6,265,2618,-6.1,1070,1278,0.0,0.0,0.0,0.0,0.0,31.5,0,19408,70601,4327,0,17,705.52,23.1
20141,Osborne County,KS,3756,3858,-2.6,3858,5.4,20.5,24.8,49.6,97.3,0.3,0.6,0.5,0.0,1.3,1.8,95.9,88.8,0.9,1.6,88.5,18.0,320,15.0,2188,79.4,5.9,51200,1727,2.16,26313,37925,17.3,154,1139,-3.2,350,563,0.0,0.0,0.0,0.0,0.0,0.0,0,86231,38522,10001,1421,0,892.5,4.3
20143,Ottawa County,KS,6065,6091,-0.4,6091,5.9,23.9,18.0,47.9,96.8,0.9,0.5,0.2,0.0,1.5,3.1,94.1,88.3,1.0,1.9,92.3,21.0,493,26.0,2774,81.0,5.7,93400,2408,2.47,26614,58396,9.5,132,893,4.4,490,609,0.0,0.0,0.0,0.0,0.0,35.6,0,47967,19295,3232,1533,5,720.73,8.5
20145,Pawnee County,KS,6916,6973,-0.8,6973,4.9,19.3,19.0,44.4,91.5,5.1,0.7,0.4,0.1,2.2,7.8,84.7,83.8,2.2,5.7,90.0,22.9,646,13.3,3163,72.3,10.4,73700,2545,2.36,23230,44078,6.3,168,2023,-4.6,399,463,0.0,0.0,0.0,0.0,0.0,0.0,0,93781,48480,7574,5749,0,754.26,9.2
20147,Phillips County,KS,5533,5642,-1.9,5642,6.5,23.5,21.4,50.7,97.0,0.5,0.5,0.8,0.0,1.2,3.0,94.4,92.7,0.9,1.5,91.8,18.3,390,13.8,3051,77.8,6.4,64400,2388,2.29,23772,43059,10.0,245,1773,3.1,515,641,0.0,0.0,0.0,0.0,0.0,0.0,0,33908,46642,8776,3679,18,885.88,6.4
20149,Pottawatomie County,KS,22897,21604,6.0,21604,8.2,29.3,13.2,50.2,94.0,1.4,0.9,1.0,0.1,2.6,5.2,89.7,89.7,2.2,3.7,94.6,29.3,1553,21.6,9042,78.0,6.6,153700,7974,2.72,24892,56854,9.0,561,8174,1.1,1693,2463,0.0,0.0,0.0,0.0,0.0,0.0,329645,160957,283927,14582,11780,220,841.02,25.7
20151,Pratt County,KS,9850,9656,2.0,9656,7.2,24.4,17.9,50.1,94.8,1.4,1.0,0.8,0.0,2.0,6.8,88.9,86.7,2.6,5.0,88.6,23.4,769,14.7,4481,69.2,10.5,79000,4074,2.29,26209,46035,11.6,387,3515,1.8,758,1333,0.0,0.0,0.0,0.0,0.0,18.8,0,108263,170163,18089,15023,3,735.05,13.1
20153,Rawlins County,KS,2584,2519,2.6,2519,5.7,19.8,26.6,48.8,97.8,0.5,0.2,0.4,0.0,1.1,4.8,93.3,93.8,2.5,5.3,91.4,23.3,260,16.0,1456,70.0,5.6,66700,1224,2.04,26897,43482,11.5,104,630,3.1,232,296,0.0,0.0,0.0,0.0,0.0,30.4,0,83478,16263,6413,727,3,1069.42,2.4
20155,Reno County,KS,63794,64511,-1.1,64511,6.0,23.2,18.0,49.6,92.9,3.4,0.8,0.6,0.1,2.2,9.0,84.8,80.9,2.5,7.1,88.7,19.8,4952,17.5,28323,68.2,14.2,90600,25693,2.39,23382,43798,12.4,1629,22442,-6.2,3872,5199,0.0,0.0,0.6,0.0,0.0,30.9,908658,573283,828616,13150,83362,47,1255.35,51.4
20157,Republic County,KS,4803,4980,-3.6,4980,5.5,19.2,27.4,51.0,97.5,0.7,0.2,0.6,0.0,1.0,1.5,96.4,91.6,0.6,2.1,94.4,19.8,543,15.1,2873,80.3,6.6,49200,2274,2.12,25531,39572,12.5,190,1374,-2.4,404,348,0.0,0.0,0.0,0.0,0.0,0.0,0,97433,43742,8902,3130,25,717.37,6.9
20159,Rice County,KS,10015,10083,-0.7,10083,6.7,23.8,17.5,49.8,94.1,1.8,1.1,0.5,0.1,2.4,11.1,84.1,83.6,3.8,9.3,89.9,20.9,800,17.6,4548,73.1,6.8,74200,3914,2.44,23068,45336,14.9,269,2596,0.0,628,724,0.0,0.0,0.0,0.0,0.0,0.0,0,64016,46889,4671,6640,23,726.24,13.9
20161,Riley County,KS,75194,71131,5.7,71115,6.9,17.6,7.9,46.6,84.0,6.9,0.8,4.8,0.2,3.2,8.1,77.1,74.9,6.4,8.3,95.4,45.0,5064,16.2,29713,42.5,39.7,170400,25895,2.47,22948,43962,23.2,1568,20159,-0.4,3140,3595,0.8,1.1,1.9,0.0,0.0,28.7,0,93235,728603,10498,125435,294,609.77,116.6
20163,Rooks County,KS,5155,5181,-0.5,5181,6.3,23.3,20.6,50.9,97.3,0.6,0.3,0.4,0.1,1.3,2.5,95.1,89.5,1.0,2.8,91.5,20.9,468,14.0,2760,74.9,6.6,62500,2349,2.15,23768,42449,18.3,199,1508,4.1,581,427,0.0,0.0,0.0,0.0,0.0,52.9,0,120294,56427,10991,0,3,890.53,5.8
20165,Rush County,KS,3197,3307,-3.3,3307,4.3,19.5,24.2,50.4,97.1,0.4,0.8,0.2,0.0,1.5,3.3,94.2,88.0,0.9,3.6,90.7,19.4,315,21.6,1861,75.0,4.2,57300,1529,2.07,24175,42610,12.8,99,1105,10.9,292,199,0.0,0.0,0.0,0.0,0.0,0.0,0,27743,30704,9689,901,1,717.76,4.6
20167,Russell County,KS,6956,6970,-0.2,6970,6.3,21.6,22.4,49.9,95.4,1.1,1.0,0.9,0.0,1.6,2.5,93.1,85.2,0.7,3.2,90.6,21.8,619,14.3,3887,75.3,8.5,65000,3317,2.06,24683,37111,14.6,276,2011,4.3,805,0,0.0,0.0,0.0,0.0,0.0,0.0,0,70326,67979,10110,10038,1,886.26,7.9
20169,Saline County,KS,55755,55606,0.3,55606,6.8,24.2,15.7,50.3,90.0,3.6,0.8,2.5,0.1,3.0,10.9,80.3,84.0,5.1,9.5,89.0,23.9,4288,15.0,24221,67.1,16.4,119500,22173,2.44,24935,47215,17.4,1566,27280,0.7,3472,0,0.0,0.0,0.0,0.0,0.0,0.0,0,816434,1064587,19676,96095,65,720.23,77.2
20171,Scott County,KS,5080,4936,2.9,4936,6.4,25.9,17.8,49.5,96.9,0.6,1.0,0.6,0.1,0.7,17.5,80.4,85.7,13.4,19.9,86.4,23.4,314,18.8,2193,73.3,2.8,104800,2121,2.28,26274,50605,11.3,191,1345,7.5,434,0,0.0,0.0,0.0,0.0,0.0,0.0,0,131534,46785,10344,0,6,717.54,6.9
20173,Sedgwick County,KS,508803,498365,2.1,498365,7.6,26.5,12.8,50.4,81.0,9.5,1.4,4.4,0.1,3.6,13.9,68.9,83.5,8.4,13.6,88.6,28.7,36325,18.2,214408,64.9,21.2,124000,192651,2.57,25603,49865,15.3,11751,221272,2.8,30510,38736,4.0,1.1,3.1,0.0,2.7,27.9,21117142,12449361,6574213,13838,846879,1225,997.51,499.6
20175,Seward County,KS,23465,22952,2.2,22952,9.8,31.3,8.8,48.5,89.1,4.2,1.5,3.0,0.2,1.9,59.1,32.9,81.0,32.2,56.5,63.3,12.6,774,14.5,8101,63.9,16.6,90000,7429,3.05,19015,50185,19.4,556,9890,-0.7,1297,1640,0.0,2.0,0.0,0.0,0.0,19.2,0,197478,314598,13898,32249,62,639.5,35.9
20177,Shawnee County,KS,178406,177934,0.3,177934,6.7,24.3,16.1,51.5,84.4,8.8,1.4,1.4,0.1,3.9,11.6,74.8,83.0,4.6,8.4,90.3,28.6,16162,17.9,79466,64.4,21.6,120300,72584,2.4,26057,48451,16.7,4259,75553,-0.9,9615,12500,2.7,0.8,1.9,0.0,3.0,31.4,0,915256,2310142,13295,0,243,544.02,327.1
20179,Sheridan County,KS,2539,2556,-0.7,2556,4.8,23.4,22.7,48.8,97.9,0.2,0.5,0.2,0.1,1.2,3.8,94.6,88.8,0.7,2.7,90.8,22.4,241,10.8,1261,78.3,5.0,77900,1099,2.29,26841,48674,12.9,105,685,1.3,272,0,0.0,0.0,0.0,0.0,0.0,0.0,0,88426,18361,7482,768,0,895.96,2.9
20181,Sherman County,KS,6110,6010,1.7,6010,7.0,23.8,18.3,50.0,95.3,1.0,0.6,1.1,0.1,1.8,12.2,84.0,83.0,2.4,7.9,88.9,15.7,471,12.4,3123,54.5,16.7,74200,2727,2.17,21476,38634,16.8,259,2014,3.7,435,727,0.0,0.0,0.0,0.0,0.0,37.6,0,119079,110618,18781,11006,0,1056.07,5.7
20183,Smith County,KS,3769,3853,-2.2,3853,5.2,19.8,26.3,50.1,97.1,0.5,0.5,0.2,0.1,1.8,1.7,95.5,92.3,0.4,1.1,89.2,16.7,456,13.1,2245,79.7,5.1,60800,1726,2.15,26811,45556,15.4,146,945,0.2,336,488,0.0,0.0,0.0,0.0,0.0,0.0,0,71095,23598,5980,1422,6,895.47,4.3
20185,Stafford County,KS,4297,4437,-3.2,4437,5.3,24.0,20.5,49.1,95.4,0.7,1.9,0.5,0.0,1.4,13.1,84.0,89.0,6.2,11.3,87.9,19.1,355,19.5,2307,81.5,4.1,60900,1884,2.28,23240,43292,15.1,129,643,-0.9,398,446,0.0,0.0,0.0,0.0,0.0,22.0,0,18054,15895,3613,1152,7,792.05,5.6