-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcovid_cases.csv
We can't make this file beautiful and searchable because it's too large.
3194 lines (3194 loc) · 707 KB
/
covid_cases.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
countyFIPS,County Name,State,StateFIPS,As_of_1/22/2020,As_of_1/31/2020,As_of_2/1/2020,As_of_2/29/2020,As_of_3/1/2020,As_of_3/31/2020,As_of_4/1/2020,As_of_4/30/2020,As_of_5/1/2020,As_of_5/31/2020,As_of_6/1/2020,As_of_6/30/2020,As_of_7/1/2020,As_of_7/31/2020,As_of_8/1/2020,As_of_8/31/2020,As_of_9/1/2020,As_of_9/30/2020,As_of_10/1/2020,As_of_10/31/2020,As_of_11/1/2020,As_of_11/30/2020,As_of_12/1/2020,As_of_12/31/2020,As_of_1/1/2021,As_of_1/31/2021,As_of_2/1/2021,As_of_2/28/2021,As_of_3/1/2021,As_of_3/31/2021,As_of_4/1/2021,As_of_4/30/2021,As_of_5/1/2021,As_of_5/31/2021,As_of_6/1/2021,As_of_6/30/2021,As_of_7/1/2021,As_of_7/31/2021,As_of_8/1/2021,As_of_8/31/2021,As_of_9/1/2021,As_of_9/30/2021,As_of_10/1/2021,As_of_10/31/2021,As_of_11/1/2021,As_of_11/30/2021,As_of_12/1/2021,As_of_12/31/2021
0,Statewide Unallocated,AL,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
1001,Autauga County ,AL,1,0,0,0,0,0,7,10,42,42,220,233,537,553,1015,1030,1442,1452,1791,1798,2159,2173,2780,2818,4190,4239,5669,5683,6264,6270,6589,6595,6904,6907,7142,7150,7257,7257,7579,7593,8758,8798,9744,9761,10228,10258,10526,10527,11018
1003,Baldwin County ,AL,1,0,0,0,0,0,19,23,174,175,288,292,680,703,3101,3142,4545,4568,5640,5997,6940,6966,8890,9051,13601,13823,18126,18211,19732,19758,20505,20523,20941,20966,21620,21661,22027,22027,25421,25565,33090,33270,36447,36491,37372,37425,38104,38123,39911
1005,Barbour County ,AL,1,0,0,0,0,0,0,0,39,42,164,172,325,326,598,602,757,764,896,898,1060,1061,1178,1189,1514,1517,1951,1956,2115,2116,2227,2227,2300,2302,2334,2337,2346,2346,2517,2523,3060,3086,3490,3495,3596,3601,3699,3700,3860
1007,Bibb County ,AL,1,0,0,0,0,0,3,3,42,42,75,76,170,174,363,368,554,558,664,672,873,878,1196,1204,1834,1854,2307,2309,2450,2450,2542,2543,2594,2596,2664,2665,2693,2693,2915,2919,3479,3510,4131,4146,4276,4281,4345,4348,4533
1009,Blount County ,AL,1,0,0,0,0,0,5,5,37,39,62,63,208,218,767,792,1287,1303,1629,1634,2074,2095,2997,3061,4641,4693,5713,5720,6097,6102,6444,6446,6613,6616,6864,6887,6987,6987,7385,7398,8595,8631,9818,9842,10371,10408,10729,10739,11256
1011,Bullock County ,AL,1,0,0,0,0,0,2,2,13,14,209,209,365,367,437,443,551,559,610,612,653,655,701,701,859,888,1086,1089,1169,1169,1207,1207,1228,1230,1233,1233,1249,1249,1265,1265,1384,1392,1503,1507,1527,1526,1525,1525,1676
1013,Butler County ,AL,1,0,0,0,0,0,1,1,53,65,410,414,607,607,753,757,866,871,917,919,1022,1024,1178,1186,1508,1522,1812,1827,1961,1968,2098,2103,2152,2154,2219,2220,2262,2262,2406,2412,2814,2831,3203,3208,3346,3353,3439,3442,3613
1015,Calhoun County ,AL,1,0,0,0,0,0,9,11,93,93,157,164,276,278,1450,1480,2567,2619,3569,3587,4861,4892,6430,6598,9494,9584,12011,12062,13275,13300,14224,14227,14438,14447,14622,14637,14776,14776,15416,15450,17858,17999,21573,21599,22326,22350,22598,22610,23411
1017,Chambers County ,AL,1,0,0,0,0,0,36,45,290,290,355,358,590,595,859,861,1033,1041,1179,1181,1389,1392,1779,1827,2341,2366,3203,3210,3410,3413,3488,3489,3541,3544,3665,3671,3736,3736,3958,3974,4732,4768,5467,5479,5781,5786,5785,5790,6171
1019,Cherokee County ,AL,1,0,0,0,0,0,2,2,15,15,37,38,74,77,238,243,405,417,620,624,783,787,1034,1051,1414,1429,1704,1707,1770,1770,1806,1810,1836,1837,1862,1864,1874,1874,2000,2004,2444,2481,2932,2942,3066,3069,3183,3186,3385
1021,Chilton County ,AL,1,0,0,0,0,0,11,13,52,52,100,103,214,219,699,713,1194,1213,1609,1610,1938,1946,2274,2289,2970,3004,3544,3553,3870,3876,4034,4041,4224,4235,4430,4437,4481,4481,4778,4788,5641,5674,6445,6459,6753,6796,7042,7061,7424
1023,Choctaw County ,AL,1,0,0,0,0,0,3,4,43,49,153,153,192,193,276,276,326,326,352,357,395,395,427,431,490,491,535,535,550,551,584,584,600,600,613,613,624,624,644,644,683,688,764,771,901,903,932,932,1026
1025,Clarke County ,AL,1,0,0,0,0,0,0,2,32,34,144,146,265,267,492,499,992,995,1109,1125,1394,1406,1598,1610,2390,2418,3227,3228,3436,3436,3478,3478,3502,3502,3521,3526,3533,3533,3718,3721,4184,4203,4655,4670,4777,4778,4848,4853,4944
1027,Clay County ,AL,1,0,0,0,0,0,2,3,21,21,27,28,53,58,198,204,373,379,592,594,772,776,920,928,1141,1150,1328,1330,1443,1444,1481,1483,1530,1532,1578,1581,1603,1603,1664,1665,2003,2015,2312,2318,2458,2468,2511,2511,2658
1029,Cleburne County ,AL,1,0,0,0,0,0,5,6,12,12,15,15,29,29,111,113,206,211,408,414,583,590,778,788,1026,1036,1281,1286,1377,1378,1452,1454,1482,1482,1504,1506,1542,1542,1613,1614,1878,1898,2400,2413,2491,2495,2545,2547,2649
1031,Coffee County ,AL,1,0,0,0,0,0,0,0,111,117,235,238,357,358,714,720,1087,1096,1393,1394,1865,1878,2483,2500,3594,3643,4915,4922,5245,5249,5384,5387,5479,5483,5605,5609,5673,5673,6393,6410,7999,8051,9030,9045,9263,9278,9425,9428,9782
1033,Colbert County ,AL,1,0,0,0,0,0,4,4,29,33,182,186,372,377,1058,1067,1466,1472,1684,1696,2151,2307,3296,3320,4660,4701,5736,5745,6004,6004,6170,6175,6278,6279,6347,6349,6431,6431,6712,6734,7687,7744,8608,8620,9122,9129,9341,9347,9822
1035,Conecuh County ,AL,1,0,0,0,0,0,0,1,9,9,41,41,180,182,371,377,485,488,538,538,577,577,688,700,837,839,1007,1010,1067,1067,1086,1087,1098,1100,1119,1122,1142,1142,1215,1218,1552,1571,1829,1830,1886,1892,1931,1931,1983
1037,Coosa County ,AL,1,0,0,0,0,0,4,4,29,29,39,40,55,55,96,96,135,137,174,174,222,223,354,366,517,519,678,681,888,889,944,944,1067,1068,1100,1100,1123,1123,1191,1193,1414,1421,1729,1737,1814,1816,1855,1855,1948
1039,Covington County ,AL,1,0,0,0,0,0,2,3,36,38,80,81,316,317,775,787,1096,1104,1416,1424,1886,1892,2204,2250,2913,2931,3581,3589,3957,3960,4041,4043,4105,4105,4217,4218,4296,4296,4788,4797,5690,5726,6518,6537,6745,6750,6943,6947,7139
1041,Crenshaw County ,AL,1,0,0,0,0,0,1,1,19,19,75,75,126,127,286,294,472,474,543,543,620,621,720,722,954,960,1312,1313,1443,1448,1502,1503,1513,1514,1540,1542,1584,1584,1687,1693,2081,2098,2405,2405,2505,2510,2607,2613,2736
1043,Cullman County ,AL,1,0,0,0,0,0,8,9,55,57,141,147,408,411,1131,1154,1644,1664,1922,1923,2781,2831,4515,4624,7079,7194,8551,8574,8891,8897,9380,9390,9600,9610,9843,9857,10008,10008,10550,10566,12451,12536,14848,14888,15693,15706,16067,16081,16977
1045,Dale County ,AL,1,0,0,0,0,0,0,1,27,27,113,122,244,247,766,781,1103,1110,1418,1421,1906,1926,2362,2390,3325,3371,4290,4310,4640,4642,4760,4763,4802,4807,4902,4905,4946,4946,5653,5681,7495,7593,8693,8705,8939,8945,9024,9030,9393
1047,Dallas County ,AL,1,0,0,0,0,0,2,3,38,42,272,279,814,826,1332,1338,1615,1642,1799,1799,1906,1907,2268,2315,2769,2821,3224,3228,3403,3403,3515,3516,3530,3534,3597,3599,3622,3622,3745,3745,4290,4327,4739,4747,5203,5207,5295,5296,5561
1049,DeKalb County ,AL,1,0,0,0,0,0,4,6,76,76,246,249,583,609,1661,1684,2152,2166,2461,2481,3658,3691,4922,4981,6900,6978,8133,8139,8446,8459,8697,8699,8802,8806,8896,8908,9028,9028,9521,9540,10913,10973,12294,12314,12724,12729,12985,13008,13538
1051,Elmore County ,AL,1,0,0,0,0,0,12,15,86,88,350,362,822,829,1604,1622,2195,2230,2739,2759,3309,3314,4129,4211,6435,6542,8602,8640,9376,9385,9953,9978,10002,10013,10233,10241,10315,10315,10916,10938,12878,12923,14620,14636,15466,15495,15912,15917,16730
1053,Escambia County ,AL,1,0,0,0,0,0,1,1,28,29,62,72,258,263,1011,1020,1404,1434,1620,1623,1766,1768,1989,2023,2661,2682,3523,3548,3774,3776,3861,3862,3925,3925,3968,3977,4035,4035,4458,4483,5719,5773,6623,6632,6842,6855,6956,6958,7263
1055,Etowah County ,AL,1,0,0,0,0,0,8,10,139,139,255,260,615,634,1908,1938,2806,2834,3575,3616,4512,4530,6439,6561,10031,10110,12515,12550,13176,13184,13647,13647,13772,13785,13981,14013,14241,14241,14977,14993,17143,17254,19496,19523,19894,19907,20026,20034,20687
1057,Fayette County ,AL,1,0,0,0,0,0,1,1,6,6,16,16,69,70,171,175,315,323,473,473,608,608,925,946,1430,1441,1856,1858,2002,2007,2063,2063,2117,2119,2147,2150,2201,2201,2273,2274,2493,2498,2820,2829,3007,3010,3300,3308,3417
1059,Franklin County ,AL,1,0,0,0,0,0,3,3,58,78,554,562,847,856,1174,1177,1565,1567,1794,1808,2120,2185,2564,2574,3270,3300,3842,3846,3991,3991,4185,4186,4233,4234,4273,4278,4326,4326,4592,4609,5229,5263,5839,5859,6086,6098,6338,6347,6561
1061,Geneva County ,AL,1,0,0,0,0,0,0,0,9,9,42,43,63,67,220,226,438,442,650,662,971,975,1243,1250,1677,1691,2258,2266,2396,2399,2446,2447,2468,2469,2559,2561,2593,2593,2846,2856,3683,3707,4481,4485,4590,4595,4643,4648,4760
1063,Greene County ,AL,1,0,0,0,0,0,3,4,54,54,94,95,164,166,242,242,285,285,306,306,351,351,428,435,672,679,801,806,876,882,904,904,921,922,928,930,937,937,991,992,1139,1144,1224,1225,1277,1278,1302,1302,1367
1065,Hale County ,AL,1,0,0,0,0,0,1,1,47,50,170,175,290,298,455,457,559,564,653,656,793,796,978,981,1440,1468,1958,1961,2097,2105,2162,2165,2213,2217,2252,2254,2274,2274,2356,2360,2692,2699,2938,2938,3135,3137,3184,3186,3309
1067,Henry County ,AL,1,0,0,0,0,0,0,0,24,24,78,80,130,131,245,250,376,383,514,518,744,747,875,889,1247,1268,1675,1684,1824,1824,1867,1869,1883,1884,1934,1935,1953,1953,2140,2149,2644,2661,3049,3053,3143,3149,3207,3204,3321
1069,Houston County ,AL,1,0,0,0,0,0,8,9,90,90,219,221,439,449,1278,1313,2061,2088,2954,2962,4300,4320,5377,5410,7279,7371,9471,9499,10086,10104,10332,10342,10487,10501,10714,10721,10840,10840,12082,12124,14705,14832,16985,17003,17472,17500,17741,17742,18474
1071,Jackson County ,AL,1,0,0,0,0,0,8,8,48,49,78,81,214,242,759,795,1318,1322,1611,1624,2321,2347,3298,3404,5097,5183,6245,6251,6492,6495,6724,6733,6790,6790,6866,6870,7040,7040,7406,7417,8236,8308,9479,9511,10058,10059,10170,10177,10637
1073,Jefferson County ,AL,1,0,0,0,0,0,282,305,886,929,1826,1859,4258,4436,11382,11680,16426,16679,20221,20308,24285,24472,33064,33526,52339,53058,66884,67010,70986,71073,74710,74789,76128,76175,80195,80260,81290,81290,85558,85730,101002,101613,112407,112597,115555,115628,116186,116268,126583
1075,Lamar County ,AL,1,0,0,0,0,0,1,1,11,11,26,26,72,72,196,196,291,295,382,386,530,533,689,701,1056,1065,1248,1249,1328,1328,1384,1390,1408,1409,1450,1452,1476,1476,1514,1515,1710,1718,2017,2023,2321,2325,2519,2531,2613
1077,Lauderdale County ,AL,1,0,0,0,0,0,12,12,38,50,164,166,412,446,1021,1036,1437,1456,1759,1772,2465,2743,4223,4267,6478,6566,8180,8191,8603,8607,9140,9144,9376,9386,9511,9520,9645,9645,10265,10283,11982,12073,13701,13737,14636,14653,14991,15018,15863
1079,Lawrence County ,AL,1,0,0,0,0,0,3,3,12,13,49,50,103,104,300,303,476,480,636,644,916,941,1316,1334,2044,2082,2647,2654,2829,2834,2926,2928,2992,2994,3076,3081,3144,3144,3261,3269,3746,3768,4142,4154,4562,4574,4831,4836,5071
1081,Lee County ,AL,1,0,0,0,0,0,75,83,391,391,547,550,1188,1211,2565,2597,4564,4769,6017,6043,6702,6715,7814,7872,10320,10450,13829,13878,14961,14967,15417,15433,15784,15792,16115,16135,16332,16332,17238,17271,20152,20243,22831,22863,25237,25284,25590,25623,26975
1083,Limestone County ,AL,1,0,0,0,0,0,22,23,44,44,105,108,407,413,1167,1177,1687,1712,2157,2174,3031,3108,4333,4404,6822,6879,8676,8706,9359,9363,9744,9753,9920,9927,10118,10126,10209,10209,10736,10769,12630,12722,14745,14820,15728,15751,16153,16165,17088
1085,Lowndes County ,AL,1,0,0,0,0,0,1,1,65,67,246,252,462,463,557,557,619,624,659,659,726,728,802,809,945,951,1232,1233,1310,1311,1362,1363,1383,1383,1412,1412,1421,1421,1454,1457,1603,1612,1710,1711,1765,1769,1782,1782,1876
1087,Macon County ,AL,1,0,0,0,0,0,1,2,37,37,82,85,168,172,310,314,435,440,483,485,558,565,745,755,999,1009,1288,1294,1420,1420,1537,1537,1587,1586,1622,1623,1635,1635,1706,1713,1955,1970,2231,2238,2416,2421,2450,2451,2614
1089,Madison County ,AL,1,0,0,0,0,0,100,107,225,225,337,343,1047,1084,4812,4911,6473,6570,8005,8056,9680,9787,13596,13723,22197,22590,29680,29781,32405,32425,33533,33577,34485,34520,35344,35369,35846,35846,37546,37619,43897,44199,50469,50828,52782,52833,53315,53322,57750
1091,Marengo County ,AL,1,0,0,0,0,0,4,5,49,52,168,171,278,287,511,512,639,651,728,732,1061,1066,1231,1234,1793,1812,2188,2189,2358,2364,2496,2502,2481,2485,2502,2503,2509,2509,2624,2626,2997,3010,3275,3280,3391,3390,3423,3424,3509
1093,Marion County ,AL,1,0,0,0,0,0,9,11,75,78,122,122,205,208,552,558,791,794,976,981,1121,1127,1436,1447,2087,2112,2613,2617,2818,2819,3062,3063,3088,3089,3178,3188,3286,3286,3456,3467,4094,4119,4853,4861,5242,5250,5413,5416,5560
1095,Marshall County ,AL,1,0,0,0,0,0,6,6,317,328,691,700,1505,1548,2871,2927,3622,3639,3983,3995,4537,4570,6353,6473,9189,9271,10780,10789,11261,11262,11854,11865,12147,12158,12338,12348,12493,12493,13138,13157,15572,15739,17951,17996,18582,18598,18790,18787,19507
1097,Mobile County ,AL,1,0,0,0,0,0,53,57,1057,1099,2238,2271,3660,3724,8135,8522,12259,12318,13558,13619,17261,17298,19951,20103,25858,26151,33060,33159,36108,36139,37492,37515,40747,40767,41551,41590,42393,42393,49062,49299,63554,64054,71192,71276,72932,73006,74241,74271,78903
1099,Monroe County ,AL,1,0,0,0,0,0,1,3,13,13,39,43,195,198,432,434,545,547,592,592,667,668,790,830,1215,1226,1569,1576,1661,1661,1705,1706,1755,1757,1790,1790,1826,1826,2028,2037,2760,2792,3219,3235,3327,3332,3374,3376,3538
1101,Montgomery County ,AL,1,0,0,0,0,0,31,35,337,355,1693,1758,3839,3890,6139,6189,7992,8053,8894,8918,10654,10702,12435,12552,16116,16240,20921,20966,22565,22586,23743,23779,24232,24249,24871,24896,25124,25124,26218,26272,30330,30491,33411,33457,34232,34281,34492,34509,37879
1103,Morgan County ,AL,1,0,0,0,0,0,19,19,68,71,278,287,966,993,2160,2189,2910,2934,3349,3362,4474,4523,6861,6964,10627,10817,13001,13025,13659,13667,14131,14138,14229,14240,14520,14529,14666,14666,15180,15195,17485,17589,20017,20120,21819,21862,22459,22477,23831
1105,Perry County ,AL,1,0,0,0,0,0,0,0,9,10,38,42,135,145,440,442,517,519,543,543,604,606,690,691,867,879,1027,1029,1055,1056,1079,1080,1075,1075,1081,1083,1087,1087,1108,1111,1245,1251,1367,1368,1404,1409,1418,1418,1457
1107,Pickens County ,AL,1,0,0,0,0,0,4,4,48,50,116,118,205,212,361,366,563,564,672,674,916,929,1257,1265,1734,1756,2095,2104,2246,2246,2323,2326,2334,2334,2356,2358,2372,2372,2468,2472,2790,2794,3084,3094,3241,3249,3339,3343,3467
1109,Pike County ,AL,1,0,0,0,0,0,4,7,66,69,203,206,404,407,652,658,963,985,1220,1224,1379,1385,1599,1615,2023,2029,2746,2747,2933,2934,3042,3044,3090,3089,3132,3134,3150,3150,3330,3333,3989,4019,4651,4655,5018,5022,5123,5120,5433
1111,Randolph County ,AL,1,0,0,0,0,0,2,5,62,62,125,127,171,172,394,396,519,523,672,678,859,865,1049,1055,1245,1262,1518,1522,1636,1637,1752,1753,1791,1791,1846,1848,1882,1882,2014,2024,2511,2528,3144,3162,3310,3312,3348,3351,3616
1113,Russell County ,AL,1,0,0,0,0,0,1,2,57,60,171,175,474,489,1186,1212,1627,1637,1790,1796,2004,2006,2238,2266,2793,2824,3751,3760,4047,4049,4230,4231,4374,4378,4505,4514,4560,4560,4812,4818,5516,5533,6130,6145,6978,6987,7088,7092,7466
1115,St. Clair County ,AL,1,0,0,0,0,0,15,17,72,73,123,128,302,314,1226,1248,1844,1877,2379,2389,3206,3240,4325,4419,6467,6577,8159,8179,8822,8827,9350,9360,9561,9575,10034,10084,10201,10201,10767,10794,13231,13321,15585,15613,16650,16670,16904,16918,17891
1117,Shelby County ,AL,1,0,0,0,0,0,86,89,320,320,514,522,1077,1103,3061,3109,4561,4677,6164,6221,7716,7788,10616,10796,15668,15877,20216,20271,21929,21968,23048,23077,23325,23341,25401,25437,25725,25725,27285,27380,32121,32350,36609,36673,37837,37905,38351,38372,41228
1119,Sumter County ,AL,1,0,0,0,0,0,1,3,64,68,224,224,276,277,364,364,403,406,434,436,487,488,586,586,849,857,930,934,984,985,1025,1026,1039,1040,1056,1056,1062,1062,1103,1104,1182,1191,1250,1253,1340,1340,1392,1393,1473
1121,Talladega County ,AL,1,0,0,0,0,0,7,8,61,61,112,117,265,275,983,1005,1764,1787,2190,2192,2797,2808,3593,3701,5165,5211,6837,6852,7517,7523,7987,7999,8167,8173,8373,8387,8482,8482,8976,8989,10713,10817,13191,13227,13984,14000,14209,14221,15004
1123,Tallapoosa County ,AL,1,0,0,0,0,0,13,14,285,286,427,427,567,570,845,848,1053,1063,1173,1178,1398,1403,1843,1872,2368,2383,3325,3334,3585,3588,3847,3848,3990,3994,4077,4078,4153,4153,4543,4550,5577,5627,6778,6794,7145,7162,7273,7278,7750
1125,Tuscaloosa County ,AL,1,0,0,0,0,0,29,30,208,210,769,799,1986,2071,3873,3927,5877,5949,9029,9040,10734,10792,13246,13366,18468,18745,22421,22519,24110,24184,25059,25082,25603,25622,26031,26067,26229,26229,27206,27241,30178,30360,34266,34333,35264,35337,36052,36077,37677
1127,Walker County ,AL,1,0,0,0,0,0,32,32,95,97,353,370,855,880,1466,1475,1914,1937,2369,2376,2949,2966,3710,3735,5259,5296,6158,6165,6518,6524,7058,7067,7200,7203,7284,7296,7371,7371,7812,7819,9158,9200,10723,10749,11423,11450,12067,12081,12635
1129,Washington County ,AL,1,0,0,0,0,0,3,3,34,35,68,71,101,103,306,309,522,523,560,562,768,774,922,932,1184,1199,1474,1476,1566,1566,1639,1639,1666,1666,1687,1689,1706,1706,1859,1863,2290,2317,2460,2472,2522,2526,2569,2569,2616
1131,Wilcox County ,AL,1,0,0,0,0,0,3,3,66,67,148,150,280,282,410,412,514,517,532,534,573,576,642,648,883,890,1137,1142,1218,1218,1249,1249,1262,1263,1271,1272,1272,1272,1322,1322,1446,1455,1616,1637,1711,1714,1776,1776,1852
1133,Winston County ,AL,1,0,0,0,0,0,2,2,15,15,89,90,231,235,430,438,576,589,751,753,964,981,1351,1375,1968,1977,2379,2383,2467,2468,2717,2717,2733,2733,2786,2793,2838,2838,2997,3002,3577,3599,4319,4326,4678,4682,4780,4779,4949
0,Statewide Unallocated,AK,2,0,0,0,0,0,17,16,5,10,21,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,8,8,13,10,15,15,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0
2013,Aleutians East Borough ,AK,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,3,3,16,16,11,11,28,28,88,89,56,56,362,362,59,59,62,62,62,62,373,373,92,96,118,118,123,124,134,134,138
2016,Aleutians West Census Area ,AK,2,0,0,0,0,0,0,0,0,0,0,0,0,0,87,87,7,7,8,8,99,99,13,108,191,198,325,332,572,577,656,657,693,693,705,705,728,728,774,774,256,259,319,320,340,340,348,348,365
2020,Municipality of Anchorage,AK,2,0,0,0,0,0,61,63,176,180,217,232,455,478,1701,1777,3135,3164,4576,4638,8162,8419,16707,16899,22775,22922,25359,25403,26561,26601,28247,28311,29985,30023,30598,30604,30957,30993,32816,32916,37382,37646,46580,46821,55897,56034,59855,59947,63056
2050,Bethel Census Area ,AK,2,0,0,0,0,0,0,0,1,1,3,3,11,11,21,21,63,63,116,120,444,478,1701,1750,2443,2504,3333,3357,3583,3583,3783,3783,3869,3866,3895,3895,3916,3916,4020,4026,4417,4428,5114,5174,5994,6004,6770,6792,6945
2060,Bristol Bay Borough ,AK,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,428,431,500,505,573,573,608,608,608,608,608,608,608,608,608,608,608,608,608,608,608
2068,Denali Borough ,AK,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,5,11,11,27,31,44,44,55,55,63,63,68,68,84,85,97,98,107,107,108,108,111,111,135,137,176,176,208,208,231,231,238
2070,Dillingham Census Area ,AK,2,0,0,0,0,0,0,0,0,0,1,0,17,17,0,1,5,5,9,9,58,59,97,98,118,118,145,145,179,201,184,184,206,206,207,207,210,210,243,244,344,357,581,587,877,877,932,934,974
2090,Fairbanks North Star Borough ,AK,2,0,0,0,0,0,28,35,81,81,85,85,142,147,412,424,678,683,1173,1188,2210,2250,3449,3464,4861,4897,5794,5808,6167,6182,6574,6598,7520,7560,7941,7948,7999,7999,8181,8190,9010,9040,12582,12643,15372,15378,16631,16651,17206
2100,Haines Borough ,AK,2,0,0,0,0,0,0,0,0,0,0,0,5,5,4,4,5,5,5,5,7,7,10,17,14,14,16,16,17,18,19,19,27,24,24,24,24,24,24,24,124,124,202,202,218,218,225,225,264
2105,Hoonah-Angoon Census Area ,AK,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
2110,City and Borough of Juneau,AK,2,0,0,0,0,0,5,5,27,27,33,33,45,45,143,145,253,254,373,376,564,576,845,852,1034,1042,1149,1154,1224,1224,1272,1277,1356,1359,1426,1426,1469,1470,1661,1670,2121,2141,2937,2969,3604,3614,3839,3842,4274
2122,Kenai Peninsula Borough ,AK,2,0,0,0,0,0,7,7,18,18,41,49,153,161,459,461,589,589,633,634,1039,1080,2557,2586,3590,3599,3865,3869,3959,3963,4082,4089,4394,4398,4507,4508,4553,4553,5049,5069,6548,6592,8453,8473,10671,10705,11401,11416,11792
2130,Ketchikan Gateway Borough ,AK,2,0,0,0,0,0,13,13,16,16,16,16,21,29,46,47,59,61,66,67,83,89,195,196,240,242,282,283,325,325,376,379,423,425,640,643,655,656,704,711,1038,1045,1332,1333,1591,1592,1953,1974,2230
2150,Kodiak Island Borough ,AK,2,0,0,0,0,0,0,0,1,1,1,1,3,3,15,15,14,57,67,69,112,120,273,280,903,909,1026,1029,998,998,1070,1071,1100,1100,1060,1060,1062,1062,1203,1209,1486,1497,1993,1994,2437,2440,2544,2544,2642
2158,Kusilvak Census Area ,AK,2,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,8,8,14,14,239,250,374,374,767,767,1123,1123,1197,1202,1219,1220,1277,1277,1310,1311,1403,1403,1486,1486,1508,1508,1508,1508,1508,1508,1508,1508,1508
2164,Lake and Peninsula Borough ,AK,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,121,121,121,121
2170,Matanuska-Susitna Borough ,AK,2,0,0,0,0,0,2,3,21,21,24,28,81,83,273,283,486,486,634,638,1465,1493,3545,3695,6438,6473,7551,7558,8602,8634,9918,9960,11292,11324,11673,11679,11793,11797,12107,12133,13655,13723,17794,17895,21882,21953,23929,23978,24964
2180,Nome Census Area ,AK,2,0,0,0,0,0,0,0,1,1,3,3,8,9,17,17,43,45,75,77,133,137,228,229,275,275,309,310,324,324,336,336,345,345,367,375,404,405,433,438,885,892,1051,1053,1552,1610,2183,2200,2373
2185,North Slope Borough ,AK,2,0,0,0,0,0,0,0,0,0,1,1,4,4,17,17,46,46,136,138,267,269,447,462,795,800,941,941,997,1000,972,972,1059,1062,1004,1003,1081,1082,1099,1101,1246,1267,2115,2127,2472,2483,2637,2638,2688
2188,Northwest Arctic Borough ,AK,2,0,0,0,0,0,0,0,0,0,2,2,4,4,19,28,66,66,114,119,249,256,358,358,398,398,574,576,560,560,570,570,611,612,593,593,599,599,635,641,840,849,1209,1230,1787,1803,2217,2232,2376
2195,Petersburg Borough ,AK,2,0,0,0,0,0,0,0,4,4,4,4,4,4,6,6,7,7,7,7,15,15,18,18,22,22,38,38,73,100,140,145,161,161,167,167,167,167,177,177,179,179,179,179,179,179,179,179,179
2198,Prince of Wales - Hyder Census Area ,AK,2,0,0,0,0,0,0,0,2,2,2,2,2,2,5,5,25,25,31,31,34,34,45,45,65,65,67,67,69,69,76,77,101,101,148,154,181,181,203,203,251,251,251,251,251,251,251,251,251
2220,City and Borough of Sitka,AK,2,0,0,0,0,0,0,0,1,1,2,2,14,15,31,31,38,38,66,53,77,80,186,193,265,247,295,296,307,307,324,324,338,338,357,357,367,367,753,761,901,902,1005,1006,1081,1081,1117,1119,1264
2230,Municipality of Skagway,AK,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,7,7,16,15,15,15,19,19,19,19,21,21,21,21,22,22,26,26,30,30,30,30,30,30,30,30,30
2240,Southeast Fairbanks Census Area ,AK,2,0,0,0,0,0,0,0,1,1,3,3,18,18,14,14,18,18,48,49,97,99,296,296,422,424,453,455,474,479,613,616,672,673,735,735,704,765,794,795,783,784,963,963,1189,1189,1285,1287,1321
2261,Valdez-Cordova Census Area ,AK,2,0,0,0,0,0,0,0,0,0,0,0,20,21,86,89,73,73,121,123,169,170,267,270,354,356,433,437,476,480,551,554,629,630,669,669,682,682,885,891,655,660,850,850,1054,1054,1124,1124,1142
2275,City and Borough of Wrangell,AK,2,0,0,0,0,0,0,0,0,0,0,0,3,3,5,5,11,11,13,13,13,13,14,14,18,18,19,19,20,22,24,25,45,45,50,50,58,58,65,65,71,71,71,71,71,71,71,71,71
2282,City and Borough of Yakutat,AK,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,63,63,63,63
2290,Yukon-Koyukuk Census Area ,AK,2,0,0,0,0,0,0,0,1,1,1,1,3,2,43,46,71,71,81,84,120,120,177,177,217,217,271,271,331,331,345,348,358,358,365,365,367,367,375,376,429,430,583,586,724,724,796,796,824
0,Statewide Unallocated,AZ,4,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,1,1,1,1,1,1,1,1,1,1,1,1,2744,1,1,1,1,1,1
4001,Apache County ,AZ,4,0,0,0,0,0,16,17,449,478,1526,1526,2337,2381,2994,3054,3338,3341,3554,3569,4003,4003,5392,5492,7438,7594,9607,9638,10464,10464,10959,11026,11315,11317,11409,11409,11491,11497,11742,11742,12408,12449,13087,13137,14251,14348,15290,15327,16261
4003,Cochise County ,AZ,4,0,0,0,0,0,4,4,39,39,76,76,614,657,1503,1523,1816,1824,1911,1912,2204,2205,3639,3781,7480,7585,10452,10469,11229,11229,11600,11610,11908,11913,12081,12084,12206,12208,12359,12359,13111,13148,14231,14380,15778,15997,18062,18114,20079
4005,Coconino County ,AZ,4,0,0,0,0,0,81,85,486,498,1151,1155,1885,1941,2947,2964,3324,3334,4166,4198,5375,5405,7520,7575,11126,11344,15228,15274,16579,16579,17076,17091,17717,17730,17864,17864,18051,18056,18521,18521,19845,19869,21291,21430,23206,23391,25351,25395,28085
4007,Gila County ,AZ,4,0,0,0,0,0,1,1,13,13,31,31,292,309,809,822,1106,1113,1346,1372,1983,1989,3003,3076,4517,4552,6023,6031,6399,6399,6546,6554,6881,6893,6937,6937,7089,7103,7346,7346,8189,8246,8984,9013,9750,9815,11088,11161,12198
4009,Graham County ,AZ,4,0,0,0,0,0,2,2,16,17,32,32,96,108,451,478,714,717,851,868,1246,1281,2215,2242,3228,3287,5117,5126,5290,5290,5365,5368,5547,5549,5622,5625,5594,5596,5680,5680,6251,6294,6952,6991,7630,7712,8501,8555,8971
4011,Greenlee County ,AZ,4,0,0,0,0,0,1,1,2,2,6,6,18,18,55,55,58,58,59,59,102,104,228,239,400,403,523,525,559,559,564,564,571,571,574,574,577,577,609,609,721,732,947,970,1115,1134,1369,1372,1489
4012,La Paz County ,AZ,4,0,0,0,0,0,2,2,14,14,79,79,342,345,469,472,498,498,544,545,627,628,867,883,1464,1523,2247,2250,2398,2398,2444,2448,2459,2461,2480,2480,2495,2495,2570,2570,2682,2693,3003,3030,3194,3213,3396,3407,3652
4013,Maricopa County ,AZ,4,0,1,1,1,1,788,871,3972,4156,9937,9937,48592,52266,117293,119295,133728,134004,141856,142287,158761,159781,205658,213121,318827,325404,472760,475261,511055,511055,524386,524547,537105,537899,550599,550602,560181,560446,580692,580692,640037,643584,692629,696815,737103,741940,800696,802164,870996
4015,Mohave County ,AZ,4,0,0,0,0,0,7,8,117,122,403,403,1071,1142,2918,2990,3615,3639,4004,4017,4440,4453,6199,6477,12573,12892,19395,19641,21218,21218,22122,22141,22659,22678,23077,23077,23764,23809,25428,25428,28339,28465,31131,31362,33431,33602,36025,36153,39143
4017,Navajo County ,AZ,4,0,0,0,0,0,91,102,712,741,1873,1873,3625,3703,5202,5255,5598,5602,5801,5802,6494,6538,8163,8283,11296,11559,14482,14565,15647,15647,15765,15765,16193,16204,16444,16444,16694,16715,17223,17223,18538,18586,19648,19766,21477,21682,24534,24597,26994
4019,Pima County ,AZ,4,0,0,0,0,0,202,217,1241,1267,2382,2382,8004,8387,16167,16475,21221,21286,25628,25706,28598,28824,39859,40803,69522,70563,101457,101961,109601,109601,112677,112707,115133,115239,116917,116910,117731,117783,120075,120075,127294,127751,134906,135546,143800,144959,159621,159859,173038
4021,Pinal County ,AZ,4,0,0,0,0,0,62,65,397,417,865,865,3574,3777,7990,8153,9550,9616,10642,10672,12117,12174,16699,17124,27649,28137,42322,42456,46149,46149,49475,49540,51316,51392,52876,52877,54003,54041,56367,56367,63084,63233,68584,69034,73511,73791,80703,81466,89280
4023,Santa Cruz County ,AZ,4,0,0,0,0,0,2,3,33,33,330,330,1771,1802,2599,2608,2728,2732,2849,2857,3044,3065,3974,4025,6002,6082,7428,7439,7632,7632,7818,7821,7919,7919,8039,8039,8085,8088,8200,8200,8484,8500,8774,8808,9062,9107,9858,9869,10476
4025,Yavapai County ,AZ,4,0,0,0,0,0,21,24,79,82,297,297,771,771,1733,1778,2311,2321,2566,2583,3022,3029,5530,5666,11319,11530,16236,16325,17062,17062,18334,18334,18692,18718,19288,19288,19595,19607,20824,20824,23611,23708,26036,26220,28355,28619,32544,32734,36447
4027,Yuma County ,AZ,4,0,0,0,0,0,9,12,78,82,1131,1131,6212,6485,10880,11078,12230,12257,12730,12765,13930,13994,17871,18352,27366,27812,35127,35184,36445,36445,36752,36756,37082,37088,37243,37244,37319,37326,37533,37533,39329,39405,40636,40723,41554,41680,42742,42770,44378
0,Statewide Unallocated,AR,5,0,0,0,0,0,7,9,168,160,188,189,721,706,1554,1555,904,897,1911,1970,2111,1640,2494,2502,2819,2828,2907,2913,3416,3290,2791,2796,2827,2827,2906,2900,2958,2964,3363,3363,3033,3033,3033,3033,3033,3033,3033,3033,3033
5001,Arkansas County ,AR,5,0,0,0,0,0,1,1,2,2,6,7,28,31,189,194,283,284,426,432,709,726,960,973,1314,1324,1774,1777,1993,1993,2076,2077,2094,2095,2125,2126,2219,2228,2555,2555,3094,3109,3385,3392,3492,3495,3539,3539,3671
5003,Ashley County ,AR,5,0,0,0,0,0,1,2,15,15,19,19,71,74,230,238,388,388,436,443,563,573,860,871,1273,1291,1640,1648,1827,1827,1901,1901,1992,1996,2036,2036,2062,2062,2177,2177,2689,2728,3096,3100,3173,3180,3225,3231,3390
5005,Baxter County ,AR,5,0,0,0,0,0,3,3,5,5,12,12,20,20,60,60,138,139,366,383,749,776,1416,1435,2065,2114,2635,2646,2891,2891,3070,3073,3155,3156,3203,3204,3445,3483,4505,4505,5395,5419,5685,5696,5858,5867,6143,6151,6638
5007,Benton County ,AR,5,0,0,0,0,0,38,40,101,101,578,607,2723,2752,4458,4495,5364,5394,6699,6767,8509,8619,12091,12288,17758,18355,25105,25180,27243,27257,28151,28176,28768,28802,29392,29395,29891,29924,32569,32569,37639,37839,40730,40812,42253,42334,43913,43975,46614
5009,Boone County ,AR,5,0,0,0,0,0,2,3,4,4,6,6,26,27,157,162,365,369,752,774,1088,1099,1793,1831,2571,2593,3334,3346,3638,3641,3742,3742,3802,3804,3871,3871,4059,4079,4779,4779,5615,5648,6021,6033,6242,6251,6466,6474,6979
5011,Bradley County ,AR,5,0,0,0,0,0,1,1,11,11,22,22,52,52,138,142,295,295,342,344,373,373,504,516,940,957,1250,1252,1322,1322,1356,1356,1382,1381,1411,1412,1460,1466,1597,1597,1775,1786,1921,1927,1960,1962,2018,2020,2085
5013,Calhoun County ,AR,5,0,0,0,0,0,0,0,0,0,0,0,0,0,12,13,23,23,36,36,57,59,150,153,234,239,346,350,398,398,409,409,410,411,412,412,422,423,466,466,532,536,580,582,594,594,605,606,632
5015,Carroll County ,AR,5,0,0,0,0,0,0,1,5,5,24,25,168,168,331,337,469,470,710,725,1039,1049,1433,1463,2073,2110,2580,2590,2718,2718,2749,2751,2800,2800,2814,2815,2887,2907,3245,3245,3867,3900,4196,4198,4299,4301,4409,4416,4601
5017,Chicot County ,AR,5,0,0,0,0,0,2,2,9,9,15,15,134,139,506,522,962,962,1007,1009,1055,1056,1191,1195,1410,1418,1551,1556,1587,1587,1610,1610,1613,1612,1620,1620,1629,1629,1665,1665,1841,1849,1988,1990,2020,2022,2035,2035,2089
5019,Clark County ,AR,5,0,0,0,0,0,24,26,30,30,39,39,56,57,152,152,233,236,357,367,520,530,838,841,1371,1388,1837,1847,2036,2036,2081,2081,2101,2102,2122,2122,2214,2217,2431,2431,2805,2838,3118,3129,3252,3261,3370,3374,3680
5021,Clay County ,AR,5,0,0,0,0,0,0,0,3,3,4,4,54,59,102,105,182,182,314,324,510,517,890,914,1317,1332,1564,1573,1693,1693,1723,1723,1751,1755,1791,1791,1807,1809,1925,1925,2255,2278,2600,2611,2708,2708,2809,2814,2970
5023,Cleburne County ,AR,5,0,0,0,0,0,61,63,72,72,73,74,85,92,178,179,257,257,338,343,475,500,734,752,1236,1286,1761,1765,1885,1885,1945,1946,1972,1973,2013,2013,2074,2077,2467,2467,3141,3174,3543,3556,3744,3752,3973,3990,4289
5025,Cleveland County ,AR,5,0,0,0,0,0,4,4,11,11,19,19,25,26,63,67,136,137,186,187,254,257,362,379,571,577,796,802,922,922,938,938,950,950,960,960,997,997,1113,1113,1280,1281,1352,1356,1430,1430,1441,1441,1522
5027,Columbia County ,AR,5,0,0,0,0,0,2,2,13,13,22,22,83,84,184,186,295,297,500,520,745,757,1100,1127,1567,1591,1930,1942,2259,2259,2321,2322,2338,2340,2361,2361,2407,2411,2579,2579,2994,3024,3290,3297,3385,3385,3413,3414,3610
5029,Conway County ,AR,5,0,0,0,0,0,2,3,13,13,14,14,55,60,134,134,206,210,273,279,359,360,682,695,1306,1343,1983,1989,2145,2150,2189,2190,2215,2217,2248,2248,2266,2266,2421,2421,2794,2814,3078,3083,3166,3167,3261,3273,3518
5031,Craighead County ,AR,5,0,0,0,0,0,10,13,74,80,220,228,451,453,1088,1104,1869,1881,3076,3124,4821,4938,7172,7235,10077,10176,12141,12188,12831,12847,13081,13089,13355,13364,13599,13607,13819,13839,15170,15170,18470,18586,20795,20857,21541,21566,22206,22260,25478
5033,Crawford County ,AR,5,0,0,0,0,0,3,3,4,4,29,30,159,166,436,436,921,931,1465,1503,2148,2189,3081,3126,4451,4542,6196,6215,6781,6782,6978,6981,7056,7060,7128,7131,7250,7255,7713,7713,9011,9070,10332,10356,10760,10792,11051,11058,11536
5035,Crittenden County ,AR,5,0,0,0,0,0,29,31,187,188,380,386,746,749,1172,1191,1643,1648,1970,1983,2513,2532,3271,3288,4319,4360,5360,5377,5754,5755,5869,5877,6021,6031,6146,6146,6186,6188,6423,6423,7567,7619,8516,8537,8798,8807,8997,9004,9952
5037,Cross County ,AR,5,0,0,0,0,0,1,1,17,21,52,52,85,86,157,162,279,280,453,461,612,616,864,881,1394,1424,1819,1821,1900,1900,1919,1921,1941,1943,1963,1963,1988,1993,2161,2161,2528,2552,2828,2839,2979,2985,3040,3046,3176
5039,Dallas County ,AR,5,0,0,0,0,0,0,0,1,1,1,1,10,10,56,56,127,127,166,167,181,188,302,303,482,490,668,669,736,738,756,756,759,758,761,761,788,788,931,931,1053,1058,1120,1121,1139,1139,1145,1147,1191
5041,Desha County ,AR,5,0,0,0,0,0,2,2,16,16,19,19,47,47,142,144,243,243,300,307,424,431,564,574,953,967,1206,1218,1332,1334,1357,1357,1361,1361,1367,1367,1378,1380,1476,1476,1679,1690,1828,1836,1904,1906,1947,1948,2039
5043,Drew County ,AR,5,0,0,0,0,0,2,3,15,15,20,20,65,65,155,155,304,305,359,359,440,440,743,763,1448,1463,1864,1870,1953,1953,1984,1984,1995,1997,2015,2015,2072,2075,2247,2247,2535,2553,2782,2792,2886,2891,2951,2958,3074
5045,Faulkner County ,AR,5,0,0,0,0,0,36,36,76,76,102,102,477,492,1175,1190,1693,1703,2566,2596,3500,3543,4832,4907,7618,7817,10624,10680,11767,11781,12195,12207,12437,12453,12811,12817,13127,13161,14996,14996,17637,17735,18985,19017,19563,19582,20304,20364,22254
5047,Franklin County ,AR,5,0,0,0,0,0,0,0,2,2,4,4,21,21,104,105,166,168,293,304,569,575,799,803,1088,1111,1502,1509,1630,1632,1676,1677,1689,1689,1702,1703,1719,1718,1838,1838,2323,2342,2653,2658,2724,2728,2810,2812,2907
5049,Fulton County ,AR,5,0,0,0,0,0,0,0,1,1,7,7,12,15,27,27,70,71,177,186,343,348,549,561,884,895,1024,1026,1076,1080,1100,1100,1121,1121,1148,1148,1178,1179,1336,1336,1512,1518,1649,1652,1707,1709,1884,1893,2035
5051,Garland County ,AR,5,0,0,0,0,0,31,33,116,117,136,136,248,253,814,837,1428,1434,1949,1977,2620,2645,3872,3910,5782,5898,8370,8411,9726,9730,10030,10034,10124,10126,10326,10328,10564,10578,12024,12024,14479,14591,15607,15628,15977,15995,16180,16184,16762
5053,Grant County ,AR,5,0,0,0,0,0,3,3,14,14,18,18,40,41,124,124,191,191,272,274,379,382,609,624,1071,1101,1386,1390,1580,1582,1635,1635,1644,1644,1694,1695,1787,1792,2081,2081,2606,2623,2823,2825,2878,2878,2912,2919,3063
5055,Greene County ,AR,5,0,0,0,0,0,4,4,16,16,64,64,114,119,293,359,634,635,909,928,1628,1666,2953,3044,4431,4463,5498,5543,5894,5895,6009,6012,6093,6101,6171,6171,6268,6278,6811,6811,8459,8517,9640,9680,10054,10073,10407,10437,11173
5057,Hempstead County ,AR,5,0,0,0,0,0,1,1,5,5,18,18,50,50,200,207,330,330,382,393,584,593,866,882,1220,1240,1632,1642,1924,1924,1980,1982,1997,1998,2012,2012,2077,2078,2209,2209,2574,2586,2838,2847,2948,2956,3020,3025,3233
5059,Hot Spring County ,AR,5,0,0,0,0,0,4,4,19,19,32,32,426,429,1436,1451,1717,1719,1921,1928,2275,2297,2948,2954,3636,3661,4399,4421,4848,4856,4998,5006,5077,5083,5187,5189,5369,5395,5957,5957,6931,6962,7367,7376,7629,7645,7774,7779,8139
5061,Howard County ,AR,5,0,0,0,0,0,4,4,13,13,21,21,89,94,291,294,425,425,485,493,617,625,814,836,1106,1113,1352,1359,1579,1590,1641,1641,1653,1653,1665,1665,1684,1686,1790,1790,2110,2130,2330,2334,2433,2435,2542,2544,2703
5063,Independence County ,AR,5,0,0,0,0,0,4,4,9,10,31,31,55,55,331,345,765,770,1148,1162,1493,1528,2088,2125,2751,2809,3454,3464,3663,3668,3715,3720,3751,3755,3794,3795,3967,3979,4481,4481,5298,5327,5990,6011,6373,6384,6883,6915,7365
5065,Izard County ,AR,5,0,0,0,0,0,0,0,5,6,16,16,20,23,43,44,102,105,253,260,621,673,998,1007,1298,1334,1557,1558,1653,1653,1660,1660,1677,1677,1686,1686,1712,1719,1948,1948,2204,2207,2375,2382,2531,2536,2706,2715,2945
5067,Jackson County ,AR,5,0,0,0,0,0,0,0,1,1,3,3,27,27,57,58,183,184,359,380,899,907,1807,1820,2821,2831,3066,3082,3172,3175,3207,3211,3218,3218,3228,3228,3262,3264,3388,3388,3718,3724,4024,4031,4296,4315,4554,4564,4753
5069,Jefferson County ,AR,5,0,0,0,0,0,40,49,169,176,521,523,700,706,1293,1315,2104,2112,3393,3413,4289,4302,5207,5238,6718,6797,8061,8089,8611,8611,8742,8744,8858,8858,8965,8969,9245,9273,10250,10250,11652,11687,12193,12207,12333,12339,12469,12472,13031
5071,Johnson County ,AR,5,0,0,0,0,0,3,6,31,31,43,48,227,236,612,617,765,765,859,866,1055,1063,1274,1278,1823,1885,2505,2514,2755,2758,2879,2879,2907,2907,2936,2936,2975,2975,3207,3207,3871,3930,4429,4444,4620,4630,4687,4695,4893
5073,Lafayette County ,AR,5,0,0,0,0,0,0,0,7,8,9,9,18,19,48,49,68,70,117,118,192,201,266,267,342,345,445,455,534,535,541,541,546,546,554,554,561,561,599,599,734,740,814,819,849,850,863,864,899
5075,Lawrence County ,AR,5,0,0,0,0,0,1,2,59,59,84,84,99,100,179,182,249,250,461,471,873,884,1171,1181,1574,1587,1907,1920,2047,2047,2069,2069,2105,2107,2130,2131,2161,2162,2295,2295,2699,2717,3135,3145,3288,3305,3478,3482,3706
5077,Lee County ,AR,5,0,0,0,0,0,0,1,3,3,20,21,651,746,882,885,1003,1004,1065,1068,1113,1113,1194,1197,1430,1449,1597,1597,1642,1642,1656,1658,1668,1668,1699,1699,1707,1709,1771,1771,1931,1936,2037,2043,2114,2144,2193,2194,2295
5079,Lincoln County ,AR,5,0,0,0,0,0,6,6,814,815,982,983,1038,1040,1165,1168,1604,1608,2025,2026,2335,2337,2464,2477,2820,2828,3051,3054,3156,3156,3178,3180,3200,3200,3207,3207,3258,3257,3344,3344,3548,3556,3616,3616,3651,3654,3697,3699,3907
5081,Little River County ,AR,5,0,0,0,0,0,0,0,0,0,6,6,38,38,149,152,281,284,362,366,478,489,645,651,821,827,1036,1043,1171,1174,1222,1222,1235,1235,1254,1254,1273,1273,1356,1356,1671,1685,1945,1950,2052,2059,2124,2125,2203
5083,Logan County ,AR,5,0,0,0,0,0,0,0,2,2,6,7,46,46,139,141,365,365,421,425,611,615,960,975,1419,1453,1974,1981,2175,2175,2206,2206,2228,2229,2249,2249,2289,2293,2496,2496,3063,3086,3448,3457,3624,3633,3731,3735,3866
5085,Lonoke County ,AR,5,0,0,0,0,0,6,6,41,41,48,49,138,144,405,416,726,728,1230,1263,1865,1877,2735,2778,4133,4235,5963,5993,6802,6811,7049,7052,7262,7271,7472,7475,7739,7793,8882,8882,10656,10727,11626,11642,11983,11995,12371,12393,13353
5087,Madison County ,AR,5,0,0,0,0,0,0,0,1,1,23,23,192,194,253,254,296,296,365,370,442,444,629,640,1025,1048,1340,1343,1405,1405,1436,1437,1450,1451,1463,1463,1492,1499,1687,1687,2123,2151,2409,2415,2477,2479,2631,2650,2896
5089,Marion County ,AR,5,0,0,0,0,0,0,0,1,1,2,2,6,6,23,23,45,46,102,105,176,180,442,448,629,655,867,870,961,961,1032,1032,1052,1054,1067,1067,1134,1139,1515,1515,1902,1920,2075,2086,2136,2137,2286,2293,2555
5091,Miller County ,AR,5,0,0,0,0,0,1,7,34,34,44,45,114,118,451,457,602,612,857,867,1583,1613,2158,2178,2749,2783,3376,3398,4027,4027,4212,4214,4280,4291,4405,4405,4463,4465,4702,4702,5437,5473,6190,6219,6484,6501,6663,6675,6932
5093,Mississippi County ,AR,5,0,0,0,0,0,0,0,19,20,75,76,168,180,677,752,1349,1352,1708,1728,2391,2412,3225,3265,4393,4411,5250,5284,5671,5673,5747,5751,5826,5830,5893,5894,5923,5925,6114,6114,6929,6966,7951,7972,8315,8324,8658,8677,9442
5095,Monroe County ,AR,5,0,0,0,0,0,0,0,4,4,5,5,12,13,49,51,94,95,135,139,227,230,309,310,475,486,732,735,828,828,862,862,867,868,871,871,889,890,961,961,1088,1089,1170,1172,1193,1193,1204,1204,1252
5097,Montgomery County ,AR,5,0,0,0,0,0,0,0,1,1,2,2,4,5,25,25,101,104,155,160,186,188,310,314,492,508,654,657,729,729,750,751,753,753,758,758,767,767,816,816,985,999,1103,1105,1132,1132,1159,1160,1194
5099,Nevada County ,AR,5,0,0,0,0,0,1,1,1,1,6,7,101,102,129,129,162,162,224,226,331,335,464,468,594,598,717,719,792,792,817,817,820,821,830,830,892,892,962,962,1096,1102,1301,1303,1374,1374,1412,1412,1497
5101,Newton County ,AR,5,0,0,0,0,0,1,1,3,3,3,3,5,6,91,93,120,120,248,250,322,324,444,450,553,557,647,648,693,693,707,707,719,719,732,732,764,771,919,919,1079,1085,1149,1148,1171,1172,1219,1223,1350
5103,Ouachita County ,AR,5,0,0,0,0,0,0,0,6,7,10,10,20,20,75,76,158,158,269,270,395,401,776,794,1370,1393,1964,1974,2217,2219,2291,2291,2305,2305,2343,2343,2445,2451,2683,2683,3102,3117,3352,3354,3409,3412,3463,3469,3813
5105,Perry County ,AR,5,0,0,0,0,0,2,2,7,7,14,14,29,32,49,49,62,62,89,90,150,152,260,263,438,446,678,682,806,806,824,824,836,836,846,846,868,877,1099,1099,1324,1337,1448,1459,1516,1516,1583,1590,1697
5107,Phillips County ,AR,5,0,0,0,0,0,0,0,4,4,21,22,142,143,270,273,405,407,515,529,777,781,957,960,1264,1272,1607,1611,1701,1701,1737,1737,1805,1813,1852,1852,1877,1878,2142,2142,2704,2734,3108,3114,3202,3207,3242,3242,3484
5109,Pike County ,AR,5,0,0,0,0,0,2,2,3,3,5,5,7,7,77,77,176,177,234,234,274,276,387,390,685,701,877,879,975,975,997,997,1012,1012,1016,1016,1043,1044,1156,1156,1412,1434,1643,1644,1709,1711,1756,1757,1842
5111,Poinsett County ,AR,5,0,0,0,0,0,5,5,22,23,33,33,58,59,151,156,489,489,675,693,1166,1203,1673,1689,2406,2418,2927,2939,3077,3078,3114,3115,3158,3159,3185,3185,3211,3218,3490,3490,4222,4252,4734,4749,4923,4935,5102,5122,5632
5113,Polk County ,AR,5,0,0,0,0,0,4,5,7,7,19,21,74,75,125,128,224,225,268,272,370,374,816,830,1255,1275,1656,1664,1892,1894,1961,1962,1984,1985,2010,2010,2041,2042,2152,2152,2532,2581,2862,2870,2982,2985,3009,3012,3090
5115,Pope County ,AR,5,0,0,0,0,0,6,6,43,43,148,161,433,442,1161,1174,1774,1776,2166,2180,2811,2835,3730,3761,5448,5584,7188,7204,7737,7738,7860,7867,8017,8023,8090,8090,8168,8171,8701,8701,10592,10682,11611,11641,11965,11979,12290,12301,12918
5117,Prairie County ,AR,5,0,0,0,0,0,0,0,2,2,2,2,20,21,59,63,115,115,154,158,240,248,360,361,545,554,790,797,872,873,887,887,891,892,910,910,917,918,988,988,1185,1201,1270,1270,1279,1279,1288,1288,1355
5119,Pulaski County ,AR,5,0,0,0,0,0,103,113,518,527,888,903,2036,2080,4733,4803,7072,7121,9509,9612,12350,12467,16905,17100,24662,25209,33841,34046,37387,37413,38317,38340,39003,39024,39819,39830,41195,41312,46884,46884,54063,54257,57351,57441,58766,58841,60246,60331,65856
5121,Randolph County ,AR,5,0,0,0,0,0,3,3,17,18,26,26,48,50,164,170,311,311,442,448,686,693,989,1007,1455,1473,1834,1843,2010,2010,2061,2061,2099,2101,2178,2179,2213,2218,2335,2335,2694,2717,3150,3169,3337,3344,3455,3462,3730
5123,St. Francis County ,AR,5,0,0,0,0,0,2,2,83,84,672,676,812,814,1112,1117,1345,1348,1542,1547,1785,1794,2058,2067,2728,2758,3315,3319,3442,3444,3513,3519,3578,3586,3611,3611,3652,3654,3856,3856,4262,4276,4658,4673,4821,4825,4884,4885,5175
5125,Saline County ,AR,5,0,0,0,0,0,11,14,67,67,112,113,275,292,855,868,1576,1591,2130,2197,3014,3056,4889,4996,7563,7751,10403,10448,11427,11430,11724,11734,11858,11867,12144,12153,12648,12692,14454,14454,16807,16912,18058,18094,18519,18539,18939,18971,20387
5127,Scott County ,AR,5,0,0,0,0,0,1,1,1,1,1,1,11,12,41,41,86,86,106,111,232,233,382,388,588,611,869,870,927,927,928,928,933,933,943,943,975,978,1073,1073,1259,1272,1655,1664,1722,1729,1759,1759,1835
5129,Searcy County ,AR,5,0,0,0,0,0,4,4,6,6,7,7,7,7,25,25,100,101,148,151,208,212,297,309,503,510,615,616,662,662,671,671,680,680,717,717,760,765,975,975,1133,1142,1230,1231,1247,1250,1314,1316,1441
5131,Sebastian County ,AR,5,0,0,0,0,0,8,8,13,13,40,43,468,476,1689,1724,2877,2900,3812,3856,5045,5104,7045,7122,9514,9788,13555,13589,14583,14588,15036,15049,15179,15184,15322,15327,15582,15599,16622,16622,19555,19684,21564,21612,22387,22451,23192,23217,24355
5133,Sevier County ,AR,5,0,0,0,0,0,2,3,11,12,210,225,700,706,929,933,1157,1159,1207,1208,1394,1409,1715,1736,2079,2096,2343,2355,2706,2709,2778,2778,2788,2789,2800,2800,2834,2840,2934,2934,3315,3339,3686,3697,3912,3926,4084,4100,4240
5135,Sharp County ,AR,5,0,0,0,0,0,0,0,7,7,46,46,53,53,99,102,149,149,239,242,379,384,701,728,1134,1158,1445,1448,1522,1522,1550,1551,1590,1592,1615,1615,1654,1659,1902,1902,2300,2318,2698,2705,2897,2915,3149,3159,3371
5137,Stone County ,AR,5,0,0,0,0,0,5,5,7,7,9,9,14,14,52,52,193,196,365,367,408,409,480,486,765,770,924,925,964,964,982,982,987,987,993,993,1111,1113,1255,1255,1458,1462,1611,1615,1722,1726,1924,1933,2051
5139,Union County ,AR,5,0,0,0,0,0,8,9,50,54,173,173,248,249,428,430,691,692,911,924,1161,1187,1568,1585,2428,2523,3331,3337,3708,3727,3938,3939,4011,4011,4050,4051,4129,4131,4332,4332,4873,4928,5495,5513,5790,5798,5968,5985,6542
5141,Van Buren County ,AR,5,0,0,0,0,0,19,20,28,28,28,28,33,33,50,50,118,120,176,178,215,215,386,396,743,771,1117,1118,1194,1196,1245,1247,1298,1300,1337,1338,1394,1398,1587,1587,1847,1858,2101,2109,2181,2186,2294,2305,2499
5143,Washington County ,AR,5,0,0,0,0,0,22,22,86,87,509,562,3578,3634,5896,5952,6900,6921,9645,9763,11804,11881,15548,15692,21420,21805,27660,27719,29386,29397,30202,30228,30785,30805,31195,31202,31634,31669,33907,33907,39948,40314,43298,43400,44599,44652,45716,45812,47853
5145,White County ,AR,5,0,0,0,0,0,11,15,34,34,44,44,86,87,250,254,528,533,898,925,1580,1622,3050,3084,4748,4893,6496,6576,7567,7578,7799,7801,7944,7953,8133,8133,8391,8407,9570,9570,11691,11780,12754,12779,13250,13281,13895,13925,14744
5147,Woodruff County ,AR,5,0,0,0,0,0,1,1,1,1,1,1,6,6,18,19,27,27,55,57,131,136,203,205,362,367,552,560,623,623,633,634,645,645,651,651,654,654,695,695,921,930,1062,1064,1100,1103,1141,1141,1194
5149,Yell County ,AR,5,0,0,0,0,0,0,0,3,3,141,162,616,644,1004,1012,1162,1166,1259,1260,1363,1368,1657,1667,2390,2423,3048,3056,3355,3359,3406,3406,3424,3425,3448,3448,3465,3466,3608,3608,4088,4125,4516,4521,4666,4672,4775,4783,4981
0,Statewide Unallocated,CA,6,0,0,0,0,0,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,237,138,47,54,45,10,10,10,10,10,11,11,14,14,0,1210,2422,2047,1153,789,0,1936,6708
6001,Alameda County ,CA,6,4,5,8,14,16,664,704,1913,1971,3816,3842,7103,7313,13681,13878,19075,19199,21697,21773,24306,24385,32024,32808,55553,56314,75241,75444,80979,81053,83864,83964,86641,86706,88259,88283,89755,89859,97633,97889,109054,109341,115176,115176,119190,119223,122404,122487,141077
6003,Alpine County ,CA,6,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,11,11,52,55,70,70,74,74,81,81,86,86,88,88,88,88,89,89,91,91,92,92,102,102,105,105,108,108,113
6005,Amador County ,CA,6,1,1,1,0,0,5,5,8,8,10,10,31,34,171,189,274,275,298,300,372,372,723,874,2694,2714,3290,3294,3482,3484,3584,3587,3649,3649,3686,3690,3765,3769,3967,3991,4593,4602,5104,5104,5531,5535,5718,5721,5989
6007,Butte County ,CA,6,0,0,0,0,0,13,15,23,23,69,70,271,292,1146,1162,2329,2409,2947,2961,3273,3278,4401,4500,8105,8265,10656,10691,11284,11296,11618,11631,12104,12119,12496,12506,12734,12742,13481,13533,16014,16138,18835,18911,20730,20742,21597,21636,22850
6009,Calaveras County ,CA,6,2,2,2,0,0,6,6,13,13,17,18,56,58,143,147,261,270,311,313,348,349,546,578,1222,1247,1771,1784,1912,1914,2004,2008,2099,2102,2174,2178,2209,2214,2343,2347,3019,3035,3585,3585,4068,4079,4374,4383,4724
6011,Colusa County ,CA,6,0,0,0,0,0,3,3,3,3,8,9,89,94,373,376,474,475,534,534,573,575,828,857,1367,1383,1772,1774,1871,1872,1886,1887,1922,1922,1948,1948,1964,1966,2037,2040,2278,2285,2402,2402,2496,2496,2596,2599,2679
6013,Contra Costa County ,CA,6,8,8,8,20,20,465,491,990,1009,1689,1704,3960,4123,10312,10497,14726,14865,17423,17478,19645,19717,25916,26419,43170,43752,58594,58779,63251,63322,65794,65882,68116,68171,69707,69741,71213,71287,78039,78228,89813,89832,95367,95367,99037,99104,101740,101816,114168
6015,Del Norte County ,CA,6,0,0,0,0,0,0,1,4,4,45,45,59,59,89,89,116,117,143,147,188,189,397,403,769,774,870,871,995,997,1173,1181,1304,1308,1394,1395,1442,1443,1688,1705,2852,2886,3468,3468,3595,3596,3724,3722,3872
6017,El Dorado County ,CA,6,0,0,0,0,1,31,31,57,59,112,113,275,289,788,795,1009,1019,1223,1232,1490,1503,3066,3195,6604,6703,8559,8579,9110,9114,9423,9442,9960,9979,10259,10262,10449,10462,11305,11334,13574,13632,14887,14887,15875,15887,16608,16620,17620
6019,Fresno County ,CA,6,4,6,6,0,0,212,236,1051,1102,3093,3154,9439,9786,21338,21673,27692,27816,30730,30824,33897,34017,43524,44469,71624,72463,90790,90967,95815,95888,99118,99182,100827,100881,101953,101970,102634,102668,105817,105970,117448,117940,128450,128450,138575,138683,144496,144506,151357
6021,Glenn County ,CA,6,2,3,3,0,0,3,3,7,7,19,20,156,165,374,381,473,480,603,607,704,710,1059,1082,1650,1679,2114,2117,2243,2243,2338,2338,2373,2376,2421,2421,2438,2439,2487,2489,2844,2853,3234,3234,3464,3467,3559,3559,3695
6023,Humboldt County ,CA,6,3,4,4,1,1,49,51,60,60,112,113,159,160,262,264,414,425,516,518,591,592,1009,1038,1895,1928,2843,2854,3181,3187,3460,3463,3853,3867,4300,4309,4547,4551,5278,5339,7082,7127,8242,8242,8925,8936,9579,9590,10379
6025,Imperial County ,CA,6,5,5,5,3,3,91,95,551,580,3729,3819,8081,8212,10320,10379,11318,11337,11979,12013,13239,13280,16821,17048,23562,23728,26534,26555,27166,27174,27575,27604,28201,28214,28552,28557,28722,28731,29368,29382,30380,30444,31669,31669,33341,33356,35109,35146,38240
6027,Inyo County ,CA,6,0,0,0,0,0,10,10,19,19,20,20,33,34,68,72,182,182,196,197,250,251,327,342,723,730,1104,1108,1308,1311,1377,1377,1399,1399,1404,1404,1416,1416,1464,1465,1556,1561,1746,1746,2316,2317,2533,2533,2824
6029,Kern County ,CA,6,7,8,8,2,2,246,279,1194,1237,2823,2892,8901,9564,24700,24993,29947,30040,32251,32306,34499,34592,43079,43836,69340,70059,88013,88215,93070,93130,94934,94973,95968,96000,96785,96801,97380,97401,99826,99949,108408,108878,117957,117957,126240,126419,131718,131763,137538
6031,Kings County ,CA,6,13,14,14,1,1,21,21,227,246,1224,1238,2723,2787,4695,4799,6345,6391,7937,7993,8896,8906,11867,12015,16837,16956,20965,21035,22064,22074,22573,22577,22781,22791,22942,22943,23062,23070,23802,23840,26433,26621,29336,29336,31879,31887,33100,33169,34709
6033,Lake County ,CA,6,0,0,0,0,0,1,1,9,9,31,32,87,94,229,235,358,363,593,595,746,746,1081,1105,2025,2047,2896,2902,3192,3195,3353,3359,3452,3460,3530,3530,3631,3637,4422,4448,5388,5425,6191,6191,6676,6679,6902,6902,7115
6035,Lassen County ,CA,6,0,0,0,0,0,0,0,0,0,6,6,236,244,632,635,718,720,747,747,786,792,2328,2431,4568,4577,4944,4947,5113,5113,5133,5133,5160,5160,5205,5207,5277,5283,5349,5353,5731,5747,6360,6360,6777,6781,7013,7008,7103
6037,Los Angeles County ,CA,6,375,401,416,121,130,6386,7038,29415,30390,61799,62336,118223,121271,201852,203888,244963,246114,272802,274020,310861,312294,421220,431590,828328,839164,1121514,1123876,1169277,1169768,1184961,1185450,1196502,1196776,1202431,1202533,1209523,1210124,1264511,1266723,1348267,1350826,1394841,1394841,1429150,1430294,1461203,1463024,1675080
6039,Madera County ,CA,6,3,3,3,2,2,43,44,77,78,244,249,930,987,2789,2859,3940,3969,4632,4656,5167,5179,6815,6958,11411,11521,14760,14802,15581,15598,16065,16075,16395,16400,16533,16537,16713,16717,17277,17315,18842,18929,20929,20929,22819,22842,24158,24183,25263
6041,Marin County ,CA,6,6,6,6,2,4,129,136,249,252,529,529,2990,3066,5375,5417,6239,6269,6771,6792,7185,7205,7933,7998,10112,10200,12413,12441,13182,13206,13616,13625,13890,13894,14047,14051,14175,14187,15007,15038,16215,16234,16931,16931,17472,17476,18032,18068,21398
6043,Mariposa County ,CA,6,0,0,0,0,0,0,0,15,15,16,16,32,34,61,61,73,73,78,78,84,84,147,151,270,274,355,357,376,376,393,393,421,422,435,435,441,441,489,492,733,743,967,967,1270,1275,1415,1421,1557
6045,Mendocino County ,CA,6,0,0,0,0,0,4,4,11,11,31,31,86,89,309,316,637,643,885,894,1059,1061,1553,1588,2503,2520,3254,3268,3576,3579,3687,3689,3770,3776,3957,3964,4133,4136,4537,4566,5818,5844,6869,6869,7434,7447,7971,7976,8556
6047,Merced County ,CA,6,2,3,3,1,1,29,33,192,199,393,394,1738,1844,5799,5963,8141,8216,9007,9020,9789,9821,12494,12731,19864,20157,26384,26459,28485,28526,29841,29877,30644,30664,31069,31073,31288,31300,32196,32232,35667,35803,39194,39194,41774,41804,43311,43326,45363
6049,Modoc County ,CA,6,0,0,0,0,0,0,0,0,0,0,0,1,1,6,6,13,18,29,29,51,52,129,133,266,269,313,313,341,341,353,354,366,366,378,378,412,413,418,419,436,437,468,468,520,520,591,591,602
6051,Mono County ,CA,6,1,1,1,0,1,26,26,31,31,39,39,47,49,148,149,163,163,169,169,261,262,551,576,907,910,1132,1132,1178,1180,1229,1230,1239,1241,1255,1255,1258,1258,1294,1300,1400,1405,1540,1540,1718,1718,1875,1883,2164
6053,Monterey County ,CA,6,1,1,1,0,0,71,76,255,263,695,711,2204,2276,5502,5614,8295,8378,10154,10209,11805,11867,16461,16772,29443,30050,39738,39799,41859,41868,42430,42456,42808,42824,43056,43059,43215,43224,43932,43963,45585,45642,46917,46964,47755,47775,48623,48662,50252
6055,Napa County ,CA,6,1,2,2,1,1,34,35,79,81,143,145,463,484,1159,1176,1496,1508,1771,1774,2187,2205,3532,3637,6265,6371,8552,8568,9074,9085,9451,9466,9788,9802,9919,9920,10057,10063,10573,10594,11647,11678,12432,12432,12921,12929,13316,13325,15153
6057,Nevada County ,CA,6,4,5,5,0,0,34,35,41,41,50,50,155,158,339,344,462,465,554,559,684,690,1580,1661,2873,2908,3659,3678,4023,4029,4347,4359,4675,4686,4827,4833,4975,4982,5752,5807,7502,7566,8469,8469,9102,9119,9739,9694,10540
6059,Orange County ,CA,6,8,10,13,57,59,1271,1335,3771,3901,9041,9196,23030,24022,43243,43657,50372,50566,55627,55813,62080,62321,85616,87633,173410,176075,235397,235940,246578,246704,250533,250661,253317,253383,254622,254646,256034,256130,267028,267642,285758,286261,297306,297306,305178,305492,312886,312449,354967
6061,Placer County ,CA,6,3,4,4,7,7,117,120,172,174,263,270,926,966,2272,2326,3146,3179,3702,3723,4664,4711,8074,8362,15204,15456,19377,19428,20534,20570,21552,21592,22611,22636,23250,23256,23834,23853,25803,25884,30881,31046,34377,34377,36782,36822,38368,38373,41833
6063,Plumas County ,CA,6,0,0,0,0,0,1,1,4,4,4,4,12,12,33,34,42,43,51,51,92,95,244,249,487,492,619,621,642,642,671,671,687,688,706,708,722,722,770,774,1025,1041,1289,1298,1718,1721,1898,1901,2002
6065,Riverside County ,CA,6,60,62,64,13,15,1102,1183,4756,4832,9583,9727,23723,24757,44759,45300,53813,53992,60245,60574,69655,69996,98731,101112,198320,201260,271586,272176,283058,283167,286657,286776,289528,289594,291239,291260,292909,293008,303925,304557,329264,330094,347171,347171,359407,359499,371440,371689,408874
6067,Sacramento County ,CA,6,1,2,2,10,16,584,608,1120,1142,1519,1530,4289,4571,12745,12966,18738,18919,23050,23171,26832,26979,40439,41514,68797,69668,88100,88294,94572,94654,99020,99155,103338,103470,106311,106356,108573,108726,117605,117895,138455,139219,149895,149895,157994,158157,163802,163873,178782
6069,San Benito County ,CA,6,4,6,6,0,0,29,29,52,52,95,96,283,298,706,719,1154,1164,1350,1355,1469,1475,2024,2068,3903,3984,5450,5468,5747,5748,5872,5878,6017,6018,6062,6062,6115,6126,6286,6292,6714,6732,7053,7053,7401,7407,7671,7683,8519
6071,San Bernardino County ,CA,6,76,89,90,21,21,701,745,2585,2672,6329,6438,18902,19865,39796,40320,49410,49666,55696,56002,66622,67039,104615,107956,213675,216251,276285,276697,285570,285641,288600,288709,291130,291202,292746,292771,294349,294455,303837,304324,326141,326843,341169,341169,351694,351754,363751,364079,400714
6073,San Diego County ,CA,6,0,0,0,13,16,1511,1581,4463,4604,8540,8633,17390,17966,32261,32608,40162,40560,48848,49123,58931,59336,87976,90387,172922,176551,248185,248943,264065,264253,270931,271167,277303,277452,280655,280711,283103,283257,300132,300890,335195,336328,356454,356454,371603,372630,386270,386056,449631
6075,City and County of San Francisco,CA,6,11,14,15,10,12,704,744,1820,1849,2694,2719,4040,4117,7302,7402,9779,9877,11462,11498,12719,12773,16370,16650,24706,24998,31930,32030,34204,34236,35280,35330,36206,36232,36703,36720,37174,37209,42007,42176,47514,47654,50386,50386,52428,52437,54231,54277,68666
6077,San Joaquin County ,CA,6,7,7,7,6,6,228,235,590,598,1148,1186,5266,5624,14630,14825,18677,18794,20449,20514,22439,22505,27923,28665,48435,49120,62731,62865,66781,66827,69654,69742,71785,71850,73079,73096,74022,74069,77695,77832,87589,87984,94349,94592,99015,99062,102192,102265,109162
6079,San Luis Obispo County ,CA,6,14,16,16,2,2,113,115,229,231,319,324,800,834,2044,2078,3094,3118,3727,3747,4444,4487,6661,6783,11979,12245,18038,18116,19541,19562,20345,20365,20931,20942,21203,21211,21337,21346,22196,22228,25666,25826,27904,27904,29200,29220,30288,30225,33538
6081,San Mateo County ,CA,6,5,5,5,24,29,716,740,1431,1457,2388,2412,3682,3736,6486,6581,8723,8800,10379,10425,11697,11756,15507,15840,27034,27464,37074,37212,39566,39608,40813,40858,41866,41894,42360,42368,42824,42854,45359,45450,49381,49478,51761,51761,53324,53351,54729,54765,63770
6083,Santa Barbara County ,CA,6,0,0,0,0,0,256,266,634,648,2038,2065,4090,4200,7107,7187,8652,8712,9631,9651,10436,10459,12406,12560,19263,19654,29657,29798,32344,32378,33395,33420,34148,34164,34416,34420,34613,34623,35946,36002,39240,39372,42423,42423,44141,44170,45700,45673,51356
6085,Santa Clara County ,CA,6,21,25,27,69,73,1364,1395,2450,2468,3203,3219,5571,5743,12536,12774,18488,18664,22182,22315,26014,26163,38610,39815,75133,76398,102806,103157,110146,110293,113805,113928,117018,117073,118161,118183,119075,119130,124057,124225,134797,135185,141218,141218,146003,146106,151082,151240,172314
6087,Santa Cruz County ,CA,6,1,1,1,8,8,79,82,139,140,229,229,465,483,1307,1334,1909,1935,2499,2514,3029,3047,5067,5226,10074,10267,14436,14476,15359,15368,15773,15779,16027,16033,16156,16158,16268,16273,16844,16868,18450,18473,19461,19461,20258,20268,21257,21281,23643
6089,Shasta County ,CA,6,0,0,0,2,2,20,21,37,37,57,57,209,217,487,491,631,634,1283,1344,2587,2631,5805,5977,8523,8635,10395,10413,10962,10968,11335,11343,11828,11858,12347,12349,12604,12616,13200,13243,15542,15667,18912,18912,21124,21163,22409,22375,23290
6091,Sierra County ,CA,6,1,1,1,0,0,0,0,0,0,1,1,1,1,3,3,6,6,6,6,7,7,19,19,34,34,46,46,49,49,53,53,54,54,55,55,61,61,73,74,98,103,131,131,180,180,195,195,213
6093,Siskiyou County ,CA,6,0,0,0,0,0,4,4,5,5,10,11,34,34,95,96,137,139,156,162,243,243,706,729,1048,1055,1320,1322,1482,1484,1551,1552,1740,1749,1918,1918,1946,1949,2054,2062,2480,2502,3053,3053,3271,3273,3391,3397,3496
6095,Solano County ,CA,6,16,20,20,17,18,112,118,315,338,627,634,1829,1931,4265,4316,5580,5624,6458,6492,7820,7881,11195,11427,20546,20942,28203,28286,29874,29902,30917,30946,32130,32170,32917,32928,33548,33581,36136,36186,41175,41271,43789,43789,45356,45380,46496,46516,50708
6097,Sonoma County ,CA,6,10,11,11,6,6,146,149,281,289,631,641,1477,1549,3724,3796,6113,6171,7918,7990,10046,10120,13081,13333,20251,20510,26159,26209,28088,28131,29096,29128,29640,29655,30175,30191,31089,31130,33409,33485,37436,37541,39488,39488,41259,41283,42732,42767,48159
6099,Stanislaus County ,CA,6,16,20,20,2,2,96,103,452,465,895,912,4049,4255,11572,11785,15282,15353,16626,16656,18021,18067,23070,23561,36280,36758,46906,47035,50460,50514,52886,52964,54847,54914,56181,56200,57008,57036,59416,59551,67225,67509,73840,73840,78558,78625,81379,81429,85499
6101,Sutter County ,CA,6,7,7,7,0,0,20,21,30,30,46,47,221,243,874,893,1418,1440,1704,1710,1928,1941,3856,3973,6707,6768,8360,8376,8844,8849,9122,9126,9321,9328,9485,9486,9642,9653,10263,10298,11920,11964,13155,13155,13848,13859,14239,14224,14872
6103,Tehama County ,CA,6,0,0,0,0,0,1,1,1,1,10,10,100,104,278,281,437,446,629,647,1014,1018,1864,1915,3221,3265,4318,4332,4582,4585,4769,4778,4939,4947,5066,5066,5119,5119,5274,5282,6222,6263,7452,7452,8421,8430,8744,8729,8993
6105,Trinity County ,CA,6,0,0,0,0,0,0,0,0,0,1,1,2,2,6,6,18,18,22,22,53,53,200,203,288,289,303,303,328,328,338,338,342,342,342,342,352,352,371,371,482,483,625,625,728,730,801,801,833
6107,Tulare County ,CA,6,7,7,7,2,2,111,120,975,1045,2459,2496,5371,5525,11100,11228,14625,14720,16455,16518,18165,18208,22469,22827,35437,35991,45239,45373,47708,47744,48669,48683,49143,49158,49599,49606,49808,49821,50797,50839,55729,56068,62247,62247,67442,67490,69969,69999,72526
6109,Tuolumne County ,CA,6,0,0,0,0,0,3,3,3,3,5,5,47,51,154,155,207,211,233,233,308,315,1187,1223,3006,3018,3551,3555,3897,3900,3969,3974,4029,4030,4080,4080,4131,4133,4573,4591,5540,5567,6369,6369,7169,7201,7661,7667,8139
6111,Ventura County ,CA,6,7,8,8,6,6,299,310,680,703,1514,1531,4267,4414,8673,8785,11298,11410,13413,13468,15182,15253,21744,22428,44194,45484,71721,72033,77689,77761,79576,79620,80461,80494,81084,81087,81589,81622,84393,84541,90449,90596,94850,94850,97498,97564,99600,99738,111906
6113,Yolo County ,CA,6,3,3,3,2,2,56,58,178,181,230,234,719,752,1852,1873,2531,2559,2874,2887,3386,3403,5323,5461,9063,9169,12160,12173,12917,12929,13355,13368,13788,13809,14042,14047,14217,14228,15180,15231,17258,17353,18640,18640,19722,19732,20425,20444,22441
6115,Yuba County ,CA,6,2,2,2,0,0,8,9,19,19,30,30,92,105,502,515,903,917,1109,1111,1319,1327,2251,2306,4021,4089,5156,5166,5495,5498,5713,5724,5875,5885,6062,6069,6214,6224,6793,6826,7389,7389,7389,7389,9780,9780,10394,10409,10416
0,Statewide Unallocated,CO,8,0,0,0,0,0,129,139,158,201,14,14,17,17,18,18,20,20,21,21,23,23,27,25,27,27,38,38,49,49,57,57,66,66,72,72,75,76,82,82,89,90,96,95,80,80,80,80,80
8001,Adams County ,CO,8,0,0,0,0,0,181,212,1585,1665,3258,3291,4185,4226,5957,6018,7507,7578,9359,9491,14830,15538,29665,30241,39917,40304,45735,45807,48413,48560,51362,51495,56204,56387,59771,59799,60888,60926,62435,62435,66413,66580,70792,70930,76999,77272,84894,85081,96127
8003,Alamosa County ,CO,8,0,0,0,0,0,1,4,10,10,76,78,191,197,224,224,238,238,244,245,339,360,612,629,935,948,1166,1171,1278,1286,1347,1351,1454,1459,1685,1686,1725,1726,1795,1795,1910,1924,2147,2173,2530,2548,2944,2952,3128
8005,Arapahoe County ,CO,8,0,0,0,0,0,333,381,2472,2557,4394,4416,5202,5234,6877,6932,8096,8141,9417,9481,13313,13956,27228,27727,37961,38334,45027,45154,48463,48640,51970,52135,57632,57834,61469,61516,62799,62849,64431,64431,68794,69043,73954,74128,81023,81285,89653,89881,105938
8007,Archuleta County ,CO,8,0,0,0,0,0,1,1,8,8,8,8,8,8,32,33,48,48,54,54,68,68,242,243,485,487,604,604,649,650,748,749,898,900,986,986,1032,1042,1145,1145,1255,1263,1365,1371,1536,1547,1912,1921,2080
8009,Baca County ,CO,8,0,0,0,0,0,3,3,10,10,12,12,14,14,14,14,16,16,18,18,33,37,106,107,189,194,264,264,271,272,278,278,288,288,315,315,323,323,331,331,359,360,397,398,464,465,565,566,592
8011,Bent County ,CO,8,0,0,0,0,0,0,0,0,0,2,2,4,4,5,5,11,11,11,11,18,18,185,197,1037,1126,1290,1290,1478,1479,1484,1484,1522,1522,1542,1542,1547,1545,1550,1550,1561,1562,1620,1622,1746,1748,1892,1894,1960
8013,Boulder County ,CO,8,0,0,0,0,0,107,114,580,618,980,984,1384,1401,1872,1890,2300,2315,4435,4478,5756,5988,11111,11329,14624,14729,17224,17263,18799,18888,20593,20668,22855,22909,23675,23684,23993,24008,24731,24731,26363,26481,28558,28628,31363,31484,34796,34883,41051
8014,City and County of Broomfield,CO,8,0,0,0,0,0,20,21,150,157,240,242,298,301,398,406,535,540,659,674,1041,1091,2046,2087,2804,2837,3420,3426,3737,3759,4187,4203,4665,4687,4875,4883,5004,5002,5165,5165,5619,5646,6174,6198,6818,6838,7649,7663,9033
8015,Chaffee County ,CO,8,0,0,0,0,0,17,17,66,67,72,76,77,77,286,286,316,316,336,336,422,433,658,663,1020,1072,1312,1314,1442,1454,1503,1504,1626,1632,1726,1729,1773,1773,1837,1837,1950,1956,2089,2103,2345,2346,2705,2711,2974
8017,Cheyenne County ,CO,8,0,0,0,0,0,0,0,0,0,5,5,5,5,8,8,9,9,14,14,15,15,62,63,89,89,120,121,125,125,126,126,127,127,130,130,130,130,132,132,146,146,160,160,186,187,237,237,250
8019,Clear Creek County ,CO,8,0,0,0,0,0,4,6,13,13,16,17,19,19,26,27,35,35,40,40,86,93,190,193,279,282,344,345,362,363,402,403,435,437,464,464,477,477,505,505,580,589,699,702,792,795,896,898,1037
8021,Conejos County ,CO,8,0,0,0,0,0,0,0,0,0,2,2,13,13,23,23,31,31,35,37,74,82,173,173,315,318,407,405,441,442,460,460,508,512,675,676,737,738,763,763,792,794,887,893,1030,1034,1137,1139,1203
8023,Costilla County ,CO,8,0,0,0,0,0,3,3,3,3,6,6,21,21,22,22,32,32,32,32,38,42,84,84,161,163,178,178,187,187,203,203,208,208,246,246,251,251,256,256,268,270,338,339,392,392,432,433,441
8025,Crowley County ,CO,8,0,0,0,0,0,1,1,2,3,64,64,70,70,72,72,73,73,74,74,96,99,1239,1241,1647,1660,1817,1816,1981,2048,2140,2141,2174,2179,2206,2206,2212,2213,2218,2218,2226,2228,2304,2310,2399,2399,2473,2476,2516
8027,Custer County ,CO,8,0,0,0,0,0,0,0,2,2,2,2,2,2,10,10,17,17,17,18,22,24,72,76,148,148,160,160,164,164,173,175,190,190,206,206,227,227,239,239,258,258,312,312,404,405,467,467,498
8029,Delta County ,CO,8,0,0,0,0,0,1,1,44,46,69,69,83,83,104,105,166,165,189,191,214,217,647,673,1580,1610,2333,2336,2470,2473,2542,2544,2669,2671,2774,2775,2936,2943,3123,3123,3237,3240,3475,3493,4113,4141,4592,4601,4807
8031,City and County of Denver,CO,8,0,0,0,0,0,539,586,3001,3092,5775,5802,7091,7149,9623,9693,11265,11307,13359,13474,18937,19878,36704,37106,47645,48023,55734,55835,59584,59779,64378,64542,70444,70636,73118,73145,74367,74392,76110,76110,80760,81008,85836,86035,93165,93343,102490,102726,121626
8033,Dolores County ,CO,8,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,3,3,3,3,19,21,52,52,62,62,68,68,69,69,77,79,111,111,130,130,132,132,149,150,191,191,239,239,260,262,291
8035,Douglas County ,CO,8,0,0,0,0,0,141,158,478,502,720,724,951,964,1616,1624,2004,2023,2659,2687,4211,4458,10782,11037,15646,15783,18920,19029,21327,21402,23752,23895,27809,27891,29540,29557,30512,30538,31390,31390,34065,34189,37247,37372,41226,41337,45954,46070,53438
8037,Eagle County ,CO,8,0,0,0,0,0,227,295,544,544,587,587,692,693,1026,1041,1182,1184,1262,1265,1492,1521,2390,2403,3374,3392,4390,4402,5065,5088,5738,5756,6215,6230,6323,6323,6359,6360,6527,6527,7220,7260,7899,7914,8466,8496,9284,9308,12251
8039,Elbert County ,CO,8,0,0,0,0,0,5,5,29,30,53,53,57,57,85,85,121,121,162,163,232,246,608,624,987,996,1156,1160,1286,1288,1421,1427,1662,1669,1810,1811,1888,1886,1949,1949,2106,2115,2421,2438,2781,2786,3030,3036,3413
8041,El Paso County ,CO,8,0,0,0,0,0,286,314,934,964,1732,1748,2374,2431,4473,4541,6018,6048,6962,7027,10612,11214,27197,27829,41222,41556,47777,47842,51975,52145,56607,56922,63886,64179,70400,70525,73368,73451,76231,76231,82521,82854,91824,92151,103628,103992,115170,115469,127966
8043,Fremont County ,CO,8,0,0,0,0,0,2,2,22,22,26,26,36,37,102,110,157,157,177,176,754,839,2827,2859,4662,4681,5171,5178,5460,5473,5647,5651,6032,6083,6443,6448,6551,6553,6645,6645,6850,6865,7476,7499,8784,8831,10038,10079,10703
8045,Garfield County ,CO,8,0,0,0,0,0,33,34,93,93,139,143,298,300,691,705,844,845,956,958,1219,1239,2246,2280,3875,3916,4815,4831,5096,5110,5414,5439,5760,5770,5953,5960,6182,6192,6472,6472,6745,6755,7245,7263,8090,8110,8814,8834,10215
8047,Gilpin County ,CO,8,0,0,0,0,0,0,0,1,1,3,3,7,7,13,16,17,18,19,19,30,30,87,87,125,125,149,149,168,168,188,188,224,230,269,270,284,285,291,291,327,330,402,402,460,468,532,538,631
8049,Grand County ,CO,8,0,0,0,0,0,4,4,5,5,14,14,21,21,42,43,63,66,76,83,154,159,398,415,660,671,974,975,1271,1272,1335,1338,1451,1455,1485,1485,1506,1507,1533,1533,1672,1682,2012,2025,2175,2179,2311,2316,2633
8051,Gunnison County ,CO,8,0,0,0,0,0,82,84,164,164,177,177,187,188,246,246,291,291,297,296,313,322,473,476,696,714,1054,1056,1203,1203,1252,1258,1322,1324,1352,1351,1396,1397,1427,1427,1560,1570,1737,1746,1846,1850,2002,2003,2209
8053,Hinsdale County ,CO,8,0,0,0,0,0,1,1,3,3,3,3,3,3,3,3,3,3,3,3,3,4,8,8,13,14,15,15,17,17,17,17,17,18,18,18,20,20,33,33,47,47,53,53,59,59,65,65,70
8055,Huerfano County ,CO,8,0,0,0,0,0,1,1,2,2,3,3,4,4,6,6,9,9,24,24,34,38,168,179,276,276,293,293,309,310,335,335,385,387,425,428,433,436,455,455,487,487,570,571,687,692,843,845,948
8057,Jackson County ,CO,8,0,0,0,0,0,0,0,0,0,0,0,2,2,8,8,9,9,9,9,9,9,21,22,33,33,45,45,51,51,52,52,56,57,63,63,67,67,67,67,69,69,93,93,114,115,124,125,129
8059,Jefferson County ,CO,8,0,0,0,0,0,304,356,1338,1373,2221,2244,2682,2711,3874,3915,4792,4834,5845,5902,9007,9533,20710,21156,29565,29776,34593,34665,37202,37323,40391,40529,45079,45266,47963,47981,48913,48950,50205,50205,53556,53744,58191,58370,64800,64997,73357,73548,85302
8061,Kiowa County ,CO,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,6,24,26,75,75,88,89,91,91,92,92,93,93,95,95,95,95,95,95,109,109,122,122,234,234,265,266,280
8063,Kit Carson County ,CO,8,0,0,0,0,0,2,4,21,21,26,26,32,33,42,43,74,75,80,81,137,139,301,303,436,438,504,504,535,536,586,587,606,606,628,628,646,647,664,664,739,748,843,855,1000,1002,1153,1159,1285
8065,Lake County ,CO,8,0,0,0,0,0,1,2,18,19,31,31,51,51,70,70,80,80,98,99,135,143,276,281,426,433,534,535,659,659,699,699,773,776,809,812,834,835,845,845,916,917,961,959,1056,1058,1146,1150,1304
8067,La Plata County ,CO,8,0,0,0,0,0,23,23,62,63,81,82,112,116,197,198,240,241,263,266,386,395,1378,1388,2226,2245,2707,2702,2968,2980,3330,3347,3835,3844,4033,4036,4138,4151,4305,4305,4715,4737,5284,5318,6015,6043,6971,6995,7882
8069,Larimer County ,CO,8,0,0,0,0,0,99,107,363,377,583,589,736,747,1359,1376,1953,1976,2636,2662,4274,4555,10253,10427,15099,15232,18065,18115,20072,20153,22286,22407,25434,25541,26978,26997,27706,27728,28782,28782,31620,31731,35270,35415,40298,40429,45299,45418,51350
8071,Las Animas County ,CO,8,0,0,0,0,0,0,0,3,3,5,5,9,9,15,15,20,20,25,25,82,85,251,266,506,512,917,915,994,997,1040,1041,1106,1111,1148,1148,1169,1171,1268,1268,1482,1495,1648,1646,1897,1908,2227,2233,2409
8073,Lincoln County ,CO,8,0,0,0,0,0,1,1,3,3,3,3,4,4,6,6,8,8,11,13,25,25,144,153,783,783,957,956,997,998,1005,1005,1020,1022,1031,1031,1035,1035,1045,1045,1091,1094,1218,1229,1331,1332,1382,1383,1446
8075,Logan County ,CO,8,0,0,0,0,0,6,6,282,282,614,619,637,638,647,647,688,691,882,889,1271,1321,2241,2247,3238,3249,3624,3629,3713,3740,3830,3835,3933,3940,4015,4015,4057,4061,4072,4072,4177,4184,4409,4429,4796,4806,5084,5098,5413
8077,Mesa County ,CO,8,0,0,0,0,0,14,14,46,46,54,55,96,96,255,260,408,416,643,663,1550,1757,5923,6036,9055,9239,12111,12162,13299,13355,13712,13724,14335,14422,15825,15848,17168,17246,18260,18260,19382,19467,21564,21665,24650,24716,28096,28183,30857
8079,Mineral County ,CO,8,0,0,0,0,0,2,2,2,2,2,2,7,7,18,18,19,19,20,20,21,21,36,36,42,44,61,61,62,62,86,86,87,88,93,93,93,93,99,99,100,100,115,116,129,129,148,148,153
8081,Moffat County ,CO,8,0,0,0,0,0,3,3,6,6,7,7,13,13,24,25,34,34,43,43,72,77,305,319,541,543,620,625,669,672,699,700,746,750,836,842,1012,1031,1214,1214,1283,1289,1694,1712,1999,2007,2179,2179,2307
8083,Montezuma County ,CO,8,0,0,0,0,0,1,1,16,16,45,46,71,71,107,108,124,126,141,145,219,229,720,733,1231,1242,1630,1636,1728,1731,1798,1803,1882,1885,1996,1998,2088,2091,2174,2174,2379,2391,2637,2662,3383,3423,3927,3945,4257
8085,Montrose County ,CO,8,0,0,0,0,0,13,13,96,98,172,177,207,207,274,278,343,344,385,385,484,493,1115,1146,2114,2134,3024,3026,3244,3250,3328,3330,3422,3430,3594,3595,3738,3744,4024,4024,4273,4281,4685,4721,5764,5822,6699,6710,7092
8087,Morgan County ,CO,8,0,0,0,0,0,4,5,372,384,629,630,652,653,674,676,713,716,755,755,892,913,1667,1681,2119,2136,2366,2366,2423,2434,2535,2540,2623,2630,2710,2710,2750,2754,2778,2778,2894,2904,3125,3131,3526,3547,4000,4013,4296
8089,Otero County ,CO,8,0,0,0,0,0,3,3,10,10,19,19,22,22,52,54,82,82,98,100,168,182,663,709,1619,1648,1788,1788,1860,1865,1885,1886,1964,1965,2053,2054,2085,2087,2103,2103,2157,2160,2349,2356,2739,2744,3224,3232,3386
8091,Ouray County ,CO,8,0,0,0,0,0,0,0,5,5,8,8,11,11,12,12,24,24,26,28,40,40,117,118,154,155,209,210,257,258,275,275,283,283,288,288,294,294,314,314,352,355,385,390,465,470,514,514,623
8093,Park County ,CO,8,0,0,0,0,0,3,3,11,13,23,23,27,27,41,41,43,43,58,58,106,107,238,238,384,384,486,489,551,551,609,610,734,737,805,810,831,832,878,878,1018,1020,1186,1197,1489,1495,1718,1720,2011
8095,Phillips County ,CO,8,0,0,0,0,0,1,1,5,5,13,14,16,16,19,19,19,19,33,33,58,61,187,189,278,286,325,325,337,337,350,352,375,375,392,393,400,400,403,403,420,425,471,471,532,534,582,583,624
8097,Pitkin County ,CO,8,0,0,0,0,0,30,33,51,51,58,58,99,99,166,168,197,198,223,225,293,298,501,513,1045,1045,1831,1834,2010,2018,2432,2456,2579,2579,2600,2600,2616,2622,2682,2682,2824,2828,3002,3008,3160,3167,3315,3316,4497
8099,Prowers County ,CO,8,0,0,0,0,0,0,0,1,1,14,14,20,21,47,48,85,85,94,94,197,202,627,657,1004,1007,1126,1130,1161,1161,1169,1169,1204,1206,1265,1265,1277,1278,1296,1296,1368,1373,1485,1491,1729,1729,1932,1938,2046
8101,Pueblo County ,CO,8,0,0,0,0,0,21,22,139,146,295,297,390,393,597,611,868,875,1129,1146,2227,2436,8594,8856,13218,13328,14339,14353,15007,15046,15830,15876,17799,17906,19094,19101,19588,19599,19935,19935,20846,20907,22587,22702,26105,26265,29628,29710,32077
8103,Rio Blanco County ,CO,8,0,0,0,0,0,0,0,1,1,1,1,4,4,6,7,23,23,25,25,30,31,145,148,267,269,399,400,471,473,523,526,562,563,585,585,620,623,698,698,744,748,848,855,1059,1070,1209,1214,1296
8105,Rio Grande County ,CO,8,0,0,0,0,0,5,5,7,7,33,35,76,76,87,87,94,94,96,96,127,132,239,243,384,393,624,624,701,702,756,758,785,786,844,844,904,907,953,953,1037,1046,1231,1240,1556,1561,1850,1857,1993
8107,Routt County ,CO,8,0,0,0,0,0,17,19,55,55,62,62,73,75,99,106,134,134,159,159,221,230,662,685,1042,1058,1622,1630,1887,1890,2069,2076,2180,2186,2253,2253,2288,2290,2429,2429,2672,2691,3087,3094,3456,3481,3844,3854,4481
8109,Saguache County ,CO,8,0,0,0,0,0,1,1,3,3,81,89,102,102,106,106,111,111,111,111,142,147,217,222,255,256,292,292,319,320,334,334,363,365,399,400,452,456,475,475,493,494,578,578,698,703,801,803,853
8111,San Juan County ,CO,8,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,6,6,6,6,7,10,19,19,27,27,42,42,43,43,44,45,48,50,49,49,47,47,47,47,86,86,87,90,97,97,104,104,126
8113,San Miguel County ,CO,8,0,0,0,0,0,4,4,19,19,23,23,37,39,73,76,93,93,94,94,104,110,211,213,394,394,673,682,820,821,849,849,872,872,888,889,923,923,952,952,1037,1039,1123,1096,1190,1195,1275,1275,1677
8115,Sedgwick County ,CO,8,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,12,12,15,15,43,46,109,112,126,134,189,189,191,191,201,201,209,213,235,235,236,236,236,236,261,262,277,278,333,333,355,356,369
8117,Summit County ,CO,8,0,0,0,0,0,20,23,128,130,226,231,269,274,322,322,363,364,465,471,751,778,1517,1553,2134,2143,2646,2675,3029,3036,3392,3405,3677,3676,3735,3735,3771,3771,3952,3952,4305,4314,4539,4540,4853,4878,5405,5429,7469
8119,Teller County ,CO,8,0,0,0,0,0,7,7,28,28,32,33,41,41,110,112,162,162,177,177,240,263,646,653,990,994,1181,1183,1269,1275,1419,1425,1651,1656,1828,1830,1921,1921,1994,1994,2109,2118,2448,2467,2961,2971,3338,3342,3606
8121,Washington County ,CO,8,0,0,0,0,0,1,1,7,7,41,41,45,45,47,47,53,53,65,67,104,106,235,251,347,347,363,364,380,387,436,436,449,449,463,463,473,473,477,477,487,487,530,532,688,693,749,751,780
8123,Weld County ,CO,8,0,0,0,0,0,255,293,1776,1802,2488,2501,2802,2823,3503,3525,4060,4085,4784,4834,6394,6766,14026,14297,19925,20100,23586,23640,25465,25562,27476,27578,30521,30639,32578,32604,33462,33498,34448,34448,37539,37702,41930,42091,47692,47885,53129,53254,58890
8125,Yuma County ,CO,8,0,0,0,0,0,2,2,8,8,35,40,52,52,62,62,63,63,125,126,223,227,332,338,549,552,663,663,709,712,839,843,876,878,939,944,969,969,980,980,1009,1015,1081,1083,1263,1268,1373,1376,1495
0,Statewide Unallocated,CT,9,0,0,0,0,0,77,185,462,371,234,234,204,209,243,243,110,107,151,129,141,141,702,654,665,665,822,832,973,973,1089,1099,1167,1167,1185,1183,1178,1178,1192,1192,1263,1255,1329,1329,1356,1358,1428,1437,1880
9001,Fairfield County ,CT,9,0,0,0,0,0,1870,1986,11294,11612,15549,15709,16703,16717,17793,17793,18903,18939,20225,20264,24155,24155,38305,38756,56288,56288,72026,72987,80243,81025,89598,90096,98131,98131,99995,100048,100516,100529,101695,101695,106173,106300,110289,110458,112576,112708,116232,116384,140261
9003,Hartford County ,CT,9,0,0,0,0,0,393,469,5601,5931,10296,10445,11662,11691,12645,12645,13504,13529,14801,14874,18184,18184,28895,29049,46680,46680,63211,64265,69982,70543,75802,76038,81660,81660,83987,84050,84527,84528,85924,85924,90924,91190,95412,95624,98714,98902,103069,103381,124545
9005,Litchfield County ,CT,9,0,0,0,0,0,121,131,963,1014,1397,1400,1490,1490,1597,1597,1709,1713,1884,1890,2305,2305,4503,4547,7476,7476,9883,10057,11103,11204,12872,12995,14323,14323,14592,14594,14694,14693,14864,14864,15635,15682,16474,16515,17159,17216,18524,18590,22448
9007,Middlesex County ,CT,9,0,0,0,0,0,56,66,657,687,1104,1154,1304,1304,1377,1377,1455,1466,1599,1604,2018,2018,3717,3753,6566,6566,9202,9366,10386,10494,11552,11611,12547,12547,12780,12786,12867,12869,13077,13077,13817,13838,14445,14465,14935,14970,15746,15802,18868
9009,New Haven County ,CT,9,0,0,0,0,0,517,611,7536,7900,11323,11479,12359,12368,13041,13041,13675,13711,14477,14520,17352,17352,29455,30143,47375,47375,63085,63937,71194,71998,80806,81318,89526,89526,91876,91939,92394,92403,93680,93680,98738,98889,102606,102740,105535,105766,110214,110417,133669
9011,New London County ,CT,9,0,0,0,0,0,27,29,564,603,1078,1078,1268,1268,1402,1402,1577,1587,2053,2087,3803,3803,6051,6148,10618,10618,16753,17127,19123,19308,20674,20759,21907,21907,22467,22488,22578,22587,22975,22975,24595,24663,26361,26428,27543,27645,29782,29881,36134
9013,Tolland County ,CT,9,0,0,0,0,0,56,61,437,446,836,845,913,913,1019,1019,1145,1147,1363,1370,1780,1780,3054,3068,4900,4900,6841,7008,7787,7861,8614,8653,9350,9350,9579,9590,9651,9654,9827,9827,10363,10382,10947,10967,11373,11396,12030,12074,14589
9015,Windham County ,CT,9,0,0,0,0,0,11,19,186,200,384,388,610,612,693,693,801,807,997,1004,1469,1469,2613,2636,5140,5140,8200,8375,9155,9220,9881,9899,10622,10622,10880,10885,10947,10946,11101,11101,11564,11585,12482,12540,13392,13454,14667,14819,17794
0,Statewide Unallocated,DE,10,0,0,0,0,0,0,0,25,24,51,55,42,42,192,221,285,289,491,491,91,91,111,94,136,136,182,183,194,194,204,206,215,216,226,226,227,227,229,229,238,238,319,329,421,427,420,421,706
10001,Kent County ,DE,10,0,0,0,0,0,34,41,759,773,1436,1440,1689,1699,2183,2183,2624,2639,2963,2969,3570,3606,5095,5192,9173,9329,12821,12918,14388,14388,15527,15595,17378,17413,18113,18118,18234,18243,18507,18507,20649,20730,23603,23764,26056,26234,28171,28307,34199
10003,New Castle County ,DE,10,0,0,0,0,0,197,226,1734,1829,3758,3838,5066,5079,6843,6843,8190,8250,10368,10520,13186,13259,20023,20503,33211,33433,44340,44570,49523,49523,55327,55599,61647,61787,64555,64566,65053,65059,65889,65889,69966,70118,76411,76690,81667,82126,87086,87424,101913
10005,Sussex County ,DE,10,0,0,0,0,0,88,101,2216,2292,4253,4272,4682,4690,5630,5630,6330,6335,6791,6807,8099,8170,10451,10556,14936,15166,20728,20824,22694,22694,23744,23788,25165,25205,25972,25984,26230,26241,26650,26650,28999,29094,32630,32816,35419,35610,37513,37610,43548
0,Statewide Unallocated,DC,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
11001,District of Columbia ,DC,11,0,0,0,0,0,586,586,4323,4658,8801,8857,10327,10365,12205,12205,13992,14049,15326,15358,17266,17369,21552,21685,28983,29252,36872,37008,40598,40684,44513,44656,47697,47855,48898,49000,49335,49362,50398,50398,55431,55570,61153,61331,64240,64470,66912,67047,94286
0,Statewide Unallocated,FL,12,0,0,0,0,0,2,3,7,8,84,84,145,167,570,601,1000,1027,1730,1742,1940,1925,2768,2797,3010,3010,3334,3338,3469,3469,3561,3568,3497,3454,3034,3031,10044,12931,38198,51349,90124,111516,37313,3017,3362,3362,6830,9096,56512
12001,Alachua County ,FL,12,0,0,0,0,0,87,92,267,273,380,382,1197,1245,3526,3590,5196,5251,8293,8352,10582,10706,12864,12911,15866,15866,20655,20692,22354,22371,23378,23440,24635,24678,25439,25484,25425,25425,27770,27770,33855,33855,38161,38582,39540,39540,40067,40067,43279
12003,Baker County ,FL,12,0,0,0,0,0,9,9,20,22,29,29,63,72,356,371,1153,1164,1484,1492,1795,1805,2030,2046,2470,2470,3034,3047,3298,3300,3360,3364,3480,3484,3538,3542,3607,3607,4333,4333,5372,5372,5895,5926,5972,5972,6007,6007,6152
12005,Bay County ,FL,12,0,0,0,0,0,8,13,72,72,98,99,384,408,3475,3620,5363,5399,6124,6146,6866,6879,8471,8543,11907,11907,16615,16673,18665,18672,19476,19476,20008,20028,20555,20577,19965,19965,23314,23314,28558,28558,30947,31272,31780,31780,31948,31948,32985
12007,Bradford County ,FL,12,0,0,0,0,0,2,3,46,47,51,51,83,84,325,332,738,753,1129,1135,1239,1241,1412,1417,2180,2180,2656,2661,2849,2851,2921,2923,2998,2999,3048,3049,3063,3063,3674,3674,4664,4664,5247,5281,5335,5335,5349,5349,5490
12009,Brevard County ,FL,12,0,0,0,0,0,37,47,285,289,422,424,1793,1962,5420,5521,7234,7378,9049,9154,11743,11780,15556,15744,21034,21034,29345,29518,33990,34070,37190,37326,40904,41041,42856,42963,43207,43207,51525,51525,68833,68833,78479,79247,80672,80672,81580,81580,88645
12011,Broward County ,FL,12,0,0,0,0,0,1219,1348,4953,5144,7123,7196,15624,16155,55411,56797,71121,72245,77220,77433,86235,86961,107524,108325,137610,137610,172864,173652,194992,195217,214599,215488,235971,236592,244552,245036,245828,245828,268398,268398,320837,320837,346392,349793,356758,356758,360509,360509,439975
12013,Calhoun County ,FL,12,0,0,0,0,0,1,1,8,8,61,61,76,77,281,287,570,571,620,622,727,731,870,875,1233,1233,1530,1532,1608,1608,1658,1660,1688,1688,1705,1707,1720,1720,1997,1997,2620,2620,2934,2969,3010,3010,3012,3012,3088
12015,Charlotte County ,FL,12,0,0,0,0,0,24,26,236,244,458,461,775,793,1946,1984,2677,2713,3082,3097,3715,3741,5087,5150,7410,7410,9719,9745,10684,10698,11556,11605,12716,12750,13361,13413,13425,13425,14618,14618,18626,18626,22131,22505,23242,23242,23556,23556,24777
12017,Citrus County ,FL,12,0,0,0,0,0,19,23,99,99,121,122,291,323,1205,1228,2095,2124,2783,2793,3275,3308,4753,4790,6663,6663,8676,8696,9756,9763,10314,10335,10978,11007,11360,11401,11482,11482,12753,12753,16555,16555,19766,20018,20392,20392,20669,20669,21313
12019,Clay County ,FL,12,0,0,0,0,0,41,53,273,276,382,383,713,729,2808,2853,4092,4127,5151,5193,6155,6200,8019,8107,11261,11261,15387,15429,16716,16719,17368,17390,18413,18467,19206,19265,19630,19630,23725,23725,29161,29161,32716,33208,33810,33810,34033,34033,35827
12021,Collier County ,FL,12,0,0,0,0,0,146,158,596,610,1539,1580,4225,4376,9581,9662,11609,11796,12751,12789,14587,14664,17757,17911,22506,22506,27810,27867,30283,30300,32516,32637,35358,35451,37009,37102,36319,36319,39899,39899,48574,48574,55035,55729,56733,56733,57365,57365,62065
12023,Columbia County ,FL,12,0,0,0,0,0,3,3,58,64,144,147,287,296,2476,2550,3340,3379,3836,3852,4284,4300,4789,4821,6007,6007,7235,7242,7676,7683,7846,7858,8086,8093,8247,8265,8315,8315,9398,9398,12993,12993,14576,14702,14869,14869,14979,14979,15424
12027,DeSoto County ,FL,12,0,0,0,0,0,7,7,29,30,182,182,604,634,1264,1285,1489,1493,1571,1573,1676,1685,2411,2417,2898,2898,3372,3376,3798,3798,4076,4083,4299,4301,4426,4435,4440,4440,4630,4630,5610,5610,6689,6774,6894,6894,6954,6954,7077
12029,Dixie County ,FL,12,0,0,0,0,0,0,0,7,7,51,54,68,69,252,264,719,735,834,834,903,910,963,965,1115,1115,1394,1395,1492,1493,1553,1555,1602,1605,1625,1626,1638,1638,1828,1828,2376,2376,2851,2877,2949,2949,2966,2966,3013
12031,Duval County ,FL,12,0,0,0,0,0,207,239,1012,1025,1644,1654,6207,6480,21038,21322,26460,26683,30548,30666,35256,35429,43978,44450,61321,61321,81927,82216,88774,88825,92562,92715,97248,97495,100502,100837,101623,101623,124371,124371,149122,149122,160562,161997,164483,164483,165515,165515,176849
12033,Escambia County ,FL,12,0,0,0,0,0,94,96,506,532,815,828,1952,2046,7738,7908,11183,11256,12353,12393,13642,13704,16729,16872,22349,22349,30942,31029,33681,33713,34845,34879,35929,35962,36590,36633,33139,33139,36240,36240,45904,45904,52171,52736,53639,53639,54028,54028,57127
12035,Flagler County ,FL,12,0,0,0,0,0,18,24,133,134,189,189,310,323,901,919,1312,1323,1751,1762,2157,2181,2746,2764,3724,3724,5294,5312,5965,5971,6685,6697,7197,7220,7480,7500,7540,7540,9004,9004,12032,12032,13930,14072,14356,14356,14558,14558,15519
12037,Franklin County ,FL,12,0,0,0,0,0,0,0,2,2,2,2,6,6,108,116,544,549,627,628,773,784,830,830,900,900,1235,1240,1279,1279,1295,1296,1315,1315,1358,1359,1333,1333,1453,1453,1913,1913,2186,2202,2226,2226,2228,2228,2265
12039,Gadsden County ,FL,12,0,0,0,0,0,1,1,95,103,273,276,379,389,1347,1437,2324,2361,2833,2840,3068,3072,3312,3334,3988,3988,5092,5100,5433,5435,5537,5541,5643,5647,5765,5770,5815,5815,6323,6323,7641,7641,8413,8498,8630,8630,8701,8701,9563
12041,Gilchrist County ,FL,12,0,0,0,0,0,0,0,5,5,12,15,97,102,309,329,464,468,513,513,611,614,763,766,1014,1014,1223,1225,1403,1412,1488,1491,1601,1604,1634,1636,1646,1646,1858,1858,2539,2539,3051,3092,3144,3144,3179,3179,3241
12043,Glades County ,FL,12,0,0,0,0,0,3,3,6,6,30,32,164,164,389,391,456,458,542,545,610,610,672,675,769,769,870,870,903,903,925,925,951,952,980,982,992,992,1031,1031,1218,1218,1385,1395,1445,1445,1458,1458,1504
12045,Gulf County ,FL,12,0,0,0,0,0,0,1,1,1,1,1,23,23,336,373,824,827,875,879,943,956,1061,1068,1333,1333,1697,1701,1868,1868,1916,1917,1954,1954,1976,1979,1977,1977,2269,2269,2695,2695,2931,2947,2972,2972,2979,2979,3036
12047,Hamilton County ,FL,12,0,0,0,0,0,0,0,6,7,233,239,334,345,570,574,699,703,859,861,907,910,978,982,1277,1277,1501,1502,1569,1569,1589,1592,1623,1624,1641,1647,1634,1634,1765,1765,2347,2347,2644,2671,2739,2739,2756,2756,2829
12049,Hardee County ,FL,12,0,0,0,0,0,0,1,18,22,99,101,430,440,833,841,1097,1104,1366,1375,1617,1625,1765,1773,2110,2110,2583,2587,2794,2794,2903,2906,3111,3117,3260,3275,3351,3351,3752,3752,4894,4894,5852,5939,6071,6071,6099,6099,6298
12051,Hendry County ,FL,12,0,0,0,0,0,4,4,83,92,415,431,953,980,1632,1649,1975,1979,2076,2077,2238,2242,2497,2508,3291,3291,4051,4054,4309,4310,4466,4470,4701,4703,4857,4868,4920,4920,5203,5203,6426,6426,7813,7855,7977,7977,8023,8023,8452
12053,Hernando County ,FL,12,0,0,0,0,0,24,28,90,92,115,115,373,408,1674,1707,2615,2685,3175,3194,3772,3812,5005,5052,7336,7336,9948,9971,11295,11310,12385,12432,13726,13768,14525,14590,14855,14855,17145,17145,23770,23770,27646,28021,28524,28524,28723,28723,30097
12055,Highlands County ,FL,12,0,0,0,0,0,17,21,81,84,129,130,350,365,1163,1197,1823,1838,2177,2186,2679,2706,3780,3802,4975,4975,6488,6504,7230,7252,7655,7685,8441,8457,8767,8778,8776,8776,9465,9465,12493,12493,15319,15554,15931,15931,16073,16073,16972
12057,Hillsborough County ,FL,12,0,0,0,0,0,305,362,1124,1163,2201,2251,10752,11465,29116,29589,37136,37458,42248,42380,48287,48669,58293,58749,77118,77118,100764,100990,111441,111550,121553,122188,135278,135705,142735,143236,145214,145214,162939,162939,205706,205706,232856,235699,241473,241473,245205,245205,268504
12059,Holmes County ,FL,12,0,0,0,0,0,1,1,10,10,19,19,177,181,422,433,622,640,756,756,932,932,1166,1169,1683,1683,2083,2084,2178,2178,2212,2214,2240,2241,2279,2282,2277,2277,2447,2447,3143,3143,3721,3751,3842,3842,3857,3857,3944
12061,Indian River County ,FL,12,0,0,0,0,0,33,35,90,91,130,133,697,739,2204,2270,2835,2858,3254,3279,3896,3927,5016,5041,6875,6875,9795,9842,11041,11048,11729,11738,12416,12438,12819,12845,12922,12922,14411,14411,18847,18847,21565,21802,22148,22148,22274,22274,23344
12063,Jackson County ,FL,12,0,0,0,0,0,2,4,14,14,251,256,363,365,1566,1588,2336,2385,2833,2840,3147,3162,3883,3903,4649,4649,5665,5669,5909,5909,6060,6063,6173,6180,6300,6309,6393,6393,7154,7154,8761,8761,9800,9909,10104,10104,10158,10158,10460
12065,Jefferson County ,FL,12,0,0,0,0,0,0,0,28,28,29,29,49,51,229,337,500,502,560,562,680,682,774,785,994,994,1296,1297,1404,1404,1432,1432,1485,1485,1520,1522,1504,1504,1623,1623,2091,2091,2400,2418,2470,2470,2497,2497,2634
12067,Lafayette County ,FL,12,0,0,0,0,0,0,0,1,2,8,8,32,32,102,110,1204,1204,1233,1233,1279,1279,1323,1329,1422,1422,1531,1532,1590,1590,1606,1606,1616,1616,1623,1623,1630,1630,1725,1725,2004,2004,2155,2165,2213,2213,2224,2224,2250
12069,Lake County ,FL,12,0,0,0,0,0,66,71,227,233,301,304,1302,1410,4516,4612,6396,6538,7542,7567,8680,8729,10671,10743,15559,15559,21824,21864,24611,24635,26679,26776,29290,29369,30960,31065,31095,31095,35650,35650,45262,45262,51932,52933,54454,54454,55332,55332,59574
12071,Lee County ,FL,12,0,0,0,0,0,206,235,1021,1067,1908,1943,5588,5869,15416,15551,18673,18824,20516,20586,23589,23685,30113,30457,40635,40635,52653,52820,57737,57763,62713,62902,69446,69651,73462,73701,72609,72609,79160,79160,103302,103302,121291,122583,124961,124961,126166,126166,135363
12073,Leon County ,FL,12,0,0,0,0,0,26,32,219,226,404,405,1114,1149,4171,4294,6321,6475,10645,10710,12394,12430,14994,15253,19574,19574,26503,26543,29154,29169,30307,30345,31566,31656,32797,32831,32289,32289,35497,35497,43402,43402,49079,49560,50660,50660,51071,51071,56648
12075,Levy County ,FL,12,0,0,0,0,0,2,2,19,19,32,34,174,181,575,583,911,921,1044,1046,1151,1159,1411,1422,1851,1851,2552,2558,2875,2880,3094,3112,3405,3410,3555,3571,3620,3620,4117,4117,5672,5672,6768,6850,6972,6972,7071,7071,7276
12077,Liberty County ,FL,12,0,0,0,0,0,0,0,3,6,213,213,222,222,370,384,433,436,517,518,539,539,595,603,750,750,993,994,1040,1043,1055,1055,1070,1071,1082,1084,1086,1086,1212,1212,1595,1595,1774,1787,1827,1827,1834,1834,1895
12079,Madison County ,FL,12,0,0,0,0,0,0,2,55,58,69,69,195,200,604,618,868,877,1017,1017,1083,1084,1267,1271,1540,1540,1834,1836,1995,1996,2032,2034,2050,2050,2087,2094,2084,2084,2235,2235,2893,2893,3494,3531,3583,3583,3644,3644,3803
12081,Manatee County ,FL,12,0,0,0,0,0,53,70,580,591,1045,1057,2856,3015,8517,8655,10426,10490,11579,11619,13463,13550,16860,17006,22332,22332,28589,28702,31909,31962,34769,34922,38128,38237,39793,39913,39565,39565,43140,43140,54605,54605,62779,63538,64820,64820,65448,65448,69705
12083,Marion County ,FL,12,0,0,0,0,0,25,30,175,178,248,250,672,727,4892,5069,8496,8582,9774,9806,10926,10977,13044,13176,17799,17799,24510,24577,27628,27663,29044,29105,30759,30845,31868,31939,32123,32123,36115,36115,47244,47244,54999,55600,56776,56776,57299,57299,59663
12085,Martin County ,FL,12,0,0,0,0,0,28,33,191,197,651,652,2055,2112,3591,3626,4484,4484,4927,4942,5407,5425,6262,6288,7839,7839,9630,9650,10594,10606,11371,11405,12183,12215,12680,12714,12721,12721,14412,14412,17003,17003,19444,19661,20133,20133,20361,20361,22335
12086,Miami-Dade County ,FL,12,0,0,0,0,0,2123,2202,12063,12389,18000,18139,36820,37961,118462,121207,156910,159059,170400,170882,185891,186809,229618,231761,298873,298873,372120,373423,410717,410952,445464,447042,483371,484514,500323,501423,501540,501540,542481,542481,620499,620499,656813,661638,671987,671987,679200,679200,847746
12087,Monroe County ,FL,12,0,0,0,0,0,27,30,79,79,108,109,259,270,1300,1325,1734,1743,1847,1855,2304,2334,3381,3392,4226,4226,5369,5372,5857,5861,6428,6450,6898,6916,7091,7091,6811,6811,7374,7374,9111,9111,10135,10264,10520,10520,10796,10796,12359
12089,Nassau County ,FL,12,0,0,0,0,0,10,11,56,57,76,76,182,196,1054,1079,1704,1728,2127,2139,2498,2504,3196,3221,4775,4775,6986,7012,7721,7727,7976,7984,8310,8329,8615,8648,8434,8434,10715,10715,13272,13272,14683,14801,15037,15037,15202,15202,15804
12091,Okaloosa County ,FL,12,0,0,0,0,0,39,44,154,156,223,232,666,704,2765,2850,4154,4199,5036,5082,6499,6545,8885,8993,12857,12857,16707,16730,18871,18900,19749,19771,20418,20448,20864,20890,20955,20955,22795,22795,28732,28732,33377,33768,34397,34397,34767,34767,36157
12093,Okeechobee County ,FL,12,0,0,0,0,0,0,1,11,12,83,84,377,383,893,920,1243,1248,1575,1576,1750,1763,2036,2050,2430,2430,3273,3283,3562,3564,3749,3760,3974,3977,4162,4180,4244,4244,4568,4568,5935,5935,7216,7321,7384,7384,7413,7413,7685
12095,Orange County ,FL,12,0,0,0,0,0,373,458,1385,1413,2002,2031,10314,10874,29011,29466,35902,36400,40329,40485,46434,46725,58325,58862,76458,76458,103337,103649,114322,114434,123683,124227,136327,136673,142541,143001,143397,143397,163417,163417,199787,199787,220938,223297,228046,228046,230196,230196,261112
12097,Osceola County ,FL,12,0,0,0,0,0,110,140,478,486,701,703,2026,2164,8470,8649,11134,11260,12556,12605,14287,14380,18354,18598,25344,25344,33608,33722,36802,36839,39604,39766,44050,44174,46052,46245,46436,46436,52011,52011,62666,62666,69396,70069,71584,71584,72567,72567,81135
12099,Palm Beach County ,FL,12,0,0,0,0,0,551,616,2963,3041,5996,6135,14150,14447,33274,33854,41965,42387,46552,46698,52447,52779,65372,65936,82890,82890,107242,107619,120735,120868,131581,132098,143129,143471,148277,148656,148184,148184,162883,162883,197754,197754,217721,220108,225002,225002,227656,227656,268242
12101,Pasco County ,FL,12,0,0,0,0,0,40,51,249,252,386,388,1992,2133,6299,6394,8048,8135,9322,9371,10972,11063,14899,15041,21932,21932,29608,29693,33377,33426,36391,36511,40692,40808,42754,42888,43160,43160,49223,49223,65142,65142,76559,77645,79142,79142,79942,79942,85229
12103,Pinellas County ,FL,12,0,0,0,0,0,167,233,729,748,1297,1313,6487,6861,16356,16604,19929,20026,22181,22266,25986,26214,33058,33246,44975,44975,59475,59716,66571,66646,72243,72557,78803,78971,81289,81438,80558,80558,89699,89699,114284,114284,130021,131581,134378,134378,135724,135724,145832
12105,Polk County ,FL,12,0,0,0,0,0,73,91,483,500,1027,1038,3836,4048,12488,12735,17011,17159,20032,20120,23164,23306,27611,27822,37403,37403,50474,50702,57096,57150,61175,61390,67607,67819,70908,71145,71953,71953,81132,81132,107867,107867,124445,125879,128415,128415,129823,129823,140400
12107,Putnam County ,FL,12,0,0,0,0,0,13,13,106,108,152,153,339,381,1301,1317,1780,1790,2141,2145,2402,2412,2748,2783,3990,3990,5463,5486,5842,5843,6051,6051,6436,6444,6703,6719,6820,6820,7950,7950,10360,10360,12419,12540,12778,12778,12853,12853,13094
12109,St. Johns County ,FL,12,0,0,0,0,0,79,90,208,210,260,260,948,989,3216,3264,4332,4389,5391,5423,6599,6639,8832,8931,13072,13072,18328,18397,20095,20105,21337,21337,22392,22434,23228,23280,23546,23546,27916,27916,33917,33917,39103,39717,40677,40677,41253,41253,44005
12111,St. Lucie County ,FL,12,0,0,0,0,0,38,47,247,249,471,473,1724,1812,5002,5106,6992,7120,8091,8120,9129,9179,10795,10875,14278,14278,19510,19617,22145,22193,23985,24060,26025,26094,27378,27468,27945,27945,31750,31750,40193,40193,46238,46783,47749,47749,48091,48091,52135
12113,Santa Rosa County ,FL,12,0,0,0,0,0,44,46,154,157,245,247,593,617,3336,3399,4671,4714,5354,5378,5994,6021,7483,7550,11180,11180,15486,15513,17108,17118,17744,17763,18141,18159,18522,18556,18565,18565,20209,20209,26301,26301,31444,31805,32381,32381,32645,32645,34032
12115,Sarasota County ,FL,12,0,0,0,0,0,76,99,352,365,635,639,1482,1601,5588,5672,7207,7239,8189,8233,9745,9811,13763,13917,18607,18607,24759,24833,27038,27065,29359,29465,32385,32479,33627,33703,32493,32493,35675,35675,46212,46212,53676,54239,55233,55233,55941,55941,60423
12117,Seminole County ,FL,12,0,0,0,0,0,103,128,379,385,490,491,2566,2682,6487,6566,8029,8173,9097,9107,10411,10470,12940,13072,18083,18083,24153,24227,27237,27262,30052,30154,33689,33775,35243,35360,35999,35999,42086,42086,53437,53437,60059,60718,62054,62054,63170,63170,71009
12119,Sumter County ,FL,12,0,0,0,0,0,51,57,181,217,253,253,345,368,1077,1091,1852,1881,2313,2397,2945,2960,3467,3503,5085,5085,7104,7119,8017,8021,8790,8812,9263,9270,9487,9504,9515,9515,10297,10297,12311,12311,13990,14162,14530,14530,14760,14760,15405
12121,Suwannee County ,FL,12,0,0,0,0,0,3,6,130,139,167,168,499,532,1131,1155,2439,2455,2739,2745,3015,3022,3281,3294,4015,4015,4844,4847,5115,5120,5215,5222,5319,5321,5387,5391,5423,5423,5887,5887,7772,7772,8983,9071,9202,9202,9267,9267,9466
12123,Taylor County ,FL,12,0,0,0,0,0,0,0,3,3,22,22,79,80,330,360,1200,1207,1329,1338,1488,1496,1645,1650,1967,1967,2491,2496,2640,2642,2695,2695,2720,2720,2751,2753,2754,2754,2907,2907,3787,3787,4423,4495,4590,4590,4605,4605,4765
12125,Union County ,FL,12,0,0,0,0,0,1,1,4,5,32,32,62,62,215,218,594,603,969,980,1139,1147,1229,1238,1439,1439,1664,1665,1741,1741,1774,1775,1815,1817,1841,1847,1878,1878,2174,2174,2716,2716,3014,3035,3061,3061,3079,3079,3164
12127,Volusia County ,FL,12,0,0,0,0,0,80,93,452,500,736,741,2105,2219,6834,6959,9283,9417,10945,10991,12927,13008,16506,16633,22291,22291,30961,31125,34546,34565,38265,38413,42709,42824,44745,44897,45057,45057,53212,53212,65192,65192,72575,73507,75711,75711,76793,76793,82954
12129,Wakulla County ,FL,12,0,0,0,0,0,1,2,23,23,34,35,60,65,572,598,888,896,1142,1147,1327,1334,1618,1657,2106,2106,2960,2962,3163,3164,3248,3250,3412,3414,3518,3525,3559,3559,3956,3956,5263,5263,6238,6297,6404,6404,6450,6450,6803
12131,Walton County ,FL,12,0,0,0,0,0,18,18,38,38,117,117,245,257,1205,1239,1638,1662,1977,1989,2496,2526,3690,3715,4891,4891,6294,6299,7039,7043,7315,7335,7736,7739,7907,7917,7107,7107,7801,7801,10161,10161,11565,11692,11936,11936,12039,12039,12464
12133,Washington County ,FL,12,0,0,0,0,0,1,1,12,12,57,58,112,112,495,558,1006,1009,1084,1084,1248,1255,1525,1536,1971,1971,2462,2468,2626,2626,2673,2673,2719,2722,2749,2751,2742,2742,2991,2991,3880,3880,4458,4489,4548,4548,4558,4558,4707
0,Statewide Unallocated,GA,13,0,0,0,0,0,183,485,976,1089,3710,3639,6032,6520,17321,17555,18703,18633,18747,18747,16864,17017,19159,19287,24741,25023,27562,27648,27358,27420,26321,26169,25989,26080,26286,26281,25931,25934,26787,26787,31733,32008,35691,35798,36861,36578,35121,35036,40506
13001,Appling County ,GA,13,0,0,0,0,0,1,1,70,72,159,161,259,265,555,586,886,892,1040,1043,1179,1179,1233,1234,1451,1470,1707,1702,1837,1840,1873,1879,1915,1916,1926,1926,1942,1942,2024,2024,2436,2462,2763,2765,2775,2777,2805,2808,2839
13003,Atkinson County ,GA,13,0,0,0,0,0,0,0,8,9,48,51,149,152,283,289,406,408,444,446,486,486,526,527,639,647,740,741,760,760,767,767,781,782,794,794,803,804,846,846,1026,1029,1131,1135,1177,1178,1190,1192,1210
13005,Bacon County ,GA,13,0,0,0,0,0,5,6,24,25,123,129,240,248,404,410,517,523,598,599,637,637,663,663,800,811,993,995,1016,1016,1259,1261,1287,1287,1290,1290,1299,1303,1366,1366,1666,1677,1860,1860,1897,1916,1957,1958,2005
13007,Baker County ,GA,13,0,0,0,0,0,4,4,23,23,34,34,43,43,55,58,71,71,84,84,92,92,107,107,129,130,151,151,158,158,160,160,161,161,163,163,164,164,183,183,220,222,236,236,242,242,243,244,248
13009,Baldwin County ,GA,13,0,0,0,0,0,5,7,215,226,345,348,505,531,917,943,1679,1705,2127,2127,2331,2337,2525,2527,2905,2940,3470,3488,3716,3720,3784,3786,3831,3832,3873,3873,3889,3890,3947,3947,4604,4661,5153,5157,5250,5256,5302,5304,5506
13011,Banks County ,GA,13,0,0,0,0,0,2,2,24,25,85,85,136,139,235,241,377,385,488,498,573,574,764,773,1144,1159,1442,1446,1550,1552,1595,1596,1631,1631,1660,1660,1667,1668,1713,1713,1991,1991,2320,2330,2407,2410,2462,2469,2588
13013,Barrow County ,GA,13,0,0,0,0,0,19,20,133,141,326,329,527,527,1061,1096,1734,1772,2219,2240,2662,2672,3218,3260,4810,4944,7308,7317,8003,8015,8391,8401,8710,8728,8905,8906,8996,9000,9263,9263,10909,10966,12478,12512,13010,13039,13298,13310,14384
13015,Bartow County ,GA,13,0,0,0,0,0,137,147,313,323,478,482,704,723,1545,1583,2431,2450,2938,2960,3714,3714,4509,4544,6567,6663,8992,9032,10210,10232,10847,10867,11196,11206,11350,11351,11393,11391,11644,11644,13202,13326,14944,14975,15424,15446,15701,15708,17028
13017,Ben Hill County ,GA,13,0,0,0,0,0,3,3,25,26,74,76,165,168,335,343,619,632,791,791,884,887,944,948,1201,1216,1427,1428,1465,1465,1480,1480,1490,1490,1506,1507,1505,1506,1535,1535,1771,1777,1831,1833,1853,1854,1870,1871,1889
13019,Berrien County ,GA,13,0,0,0,0,0,1,2,17,17,46,49,117,120,256,259,380,382,455,460,502,503,586,594,795,800,952,954,1010,1012,1039,1042,1056,1056,1073,1073,1086,1087,1140,1140,1397,1408,1498,1500,1529,1530,1550,1550,1581
13021,Bibb County ,GA,13,0,0,0,0,0,20,23,305,312,453,467,898,955,3052,3107,5404,5430,6089,6097,6692,6707,7364,7411,9346,9456,11735,11767,12801,12806,13091,13098,13324,13331,13457,13460,13606,13612,14189,14189,17617,17737,19713,19755,20155,20177,20409,20417,21700
13023,Bleckley County ,GA,13,0,0,0,0,0,1,1,16,19,45,45,62,62,127,129,352,352,435,438,514,514,549,550,640,646,752,754,780,780,791,791,800,800,806,806,810,810,830,830,982,985,1082,1086,1094,1094,1103,1104,1131
13025,Brantley County ,GA,13,0,0,0,0,0,0,0,22,22,56,57,95,98,219,224,308,310,346,347,473,473,549,550,665,671,800,801,868,869,898,899,929,932,956,957,972,972,1035,1035,1641,1664,1898,1900,1884,1888,1902,1902,1931
13027,Brooks County ,GA,13,0,0,0,0,0,2,2,58,59,68,69,157,158,364,370,478,478,523,524,553,553,595,600,773,781,865,867,899,900,929,930,940,940,956,956,962,962,1017,1017,1262,1271,1363,1366,1383,1384,1399,1399,1436
13029,Bryan County ,GA,13,0,0,0,0,0,7,9,52,54,74,75,130,137,530,546,857,866,1154,1159,1309,1309,1436,1445,1762,1769,2190,2194,2491,2491,2610,2611,2718,2725,2793,2795,2845,2847,2981,2981,4008,4043,4502,4514,4601,4606,4660,4659,4818
13031,Bulloch County ,GA,13,0,0,0,0,0,2,2,37,40,60,65,355,396,1055,1093,2003,2049,2890,2895,3106,3128,3305,3306,3729,3755,4597,4602,5052,5054,5154,5156,5251,5254,5294,5294,5233,5237,5451,5451,7247,7301,7854,7864,7899,7909,7972,7979,8217
13033,Burke County ,GA,13,0,0,0,0,0,8,8,85,86,121,122,144,146,390,400,654,658,813,826,899,901,1002,1008,1162,1178,1547,1551,1668,1670,1720,1723,1774,1776,1804,1804,1820,1820,1870,1870,2096,2101,2259,2261,2291,2296,2314,2314,2379
13035,Butts County ,GA,13,0,0,0,0,0,8,8,141,151,228,228,275,280,460,463,566,569,661,669,747,749,892,895,1275,1299,1782,1789,1980,1986,2108,2115,2309,2322,2358,2360,2398,2398,2460,2460,2883,2892,3236,3243,3355,3359,3413,3413,3707
13037,Calhoun County ,GA,13,0,0,0,0,0,9,10,99,103,132,132,163,163,189,193,225,225,246,247,268,268,273,275,314,322,424,426,447,448,450,443,446,446,454,454,448,448,463,463,572,574,609,607,617,618,613,613,620
13039,Camden County ,GA,13,0,0,0,0,0,4,5,33,33,62,63,132,138,607,634,1019,1023,1303,1306,1455,1459,1762,1762,2221,2249,2805,2809,3063,3063,3136,3140,3202,3204,3261,3262,3330,3334,3919,3919,5121,5146,5738,5752,5947,5955,6078,6081,6274
13043,Candler County ,GA,13,0,0,0,0,0,1,1,7,7,13,13,40,43,211,223,353,356,465,466,547,550,580,580,611,615,699,699,724,724,736,735,744,745,776,776,794,794,825,825,1017,1021,1102,1102,1109,1109,1110,1110,1136
13045,Carroll County ,GA,13,0,0,0,0,0,123,133,358,375,525,526,724,732,1687,1701,2320,2336,2807,2819,3417,3428,4123,4138,5246,5285,6449,6475,6996,6999,7229,7241,7402,7404,7485,7485,7538,7538,7722,7722,8699,8734,9753,9769,9987,10003,10168,10181,11113
13047,Catoosa County ,GA,13,0,0,0,0,0,4,4,46,46,135,140,315,316,527,539,860,877,1202,1212,1488,1493,2062,2084,3245,3303,4489,4495,5129,5135,5376,5385,5647,5657,5832,5832,5898,5902,6054,6054,7004,7038,8000,8015,8340,8355,8587,8593,9052
13049,Charlton County ,GA,13,0,0,0,0,0,1,1,8,11,32,32,52,57,348,377,561,572,638,638,648,649,694,698,842,844,971,975,1015,1017,1043,1044,1067,1072,1243,1243,1289,1297,1398,1398,1576,1579,1672,1676,1733,1736,1743,1743,1760
13051,Chatham County ,GA,13,0,0,0,0,0,32,39,226,230,501,516,1365,1414,4808,4911,7065,7129,8511,8548,9530,9547,10634,10681,12842,12939,16510,16535,18580,18608,19485,19506,20132,20151,20509,20515,20703,20719,21853,21853,28707,28960,32124,32178,32972,33037,33466,33487,35376
13053,Chattahoochee County ,GA,13,0,0,0,0,0,1,2,12,12,70,124,411,419,594,660,1152,1192,1666,1678,1804,1804,1992,1998,2163,2163,2401,2402,2667,2668,2924,2965,3334,3334,3618,3618,3860,3860,4219,4219,4373,4375,4684,4685,5160,5160,5356,5360,5521
13055,Chattooga County ,GA,13,0,0,0,0,0,3,3,15,15,24,24,61,63,175,187,558,584,784,792,974,976,1130,1140,1557,1571,1959,1960,2091,2092,2174,2174,2230,2232,2256,2255,2256,2255,2310,2310,2829,2862,3521,3541,3666,3673,3726,3733,3883
13057,Cherokee County ,GA,13,0,0,0,0,0,78,85,467,474,909,910,1330,1360,2743,2791,4856,4895,6118,6159,7318,7364,9191,9247,12782,13070,18012,18074,20282,20312,21578,21619,22278,22303,22688,22696,22874,22881,23363,23363,27137,27312,30240,30282,31530,31572,31992,32016,34981
13059,Clarke County ,GA,13,0,0,0,0,0,51,54,150,155,283,293,565,593,1665,1694,2916,3070,5084,5105,5848,5865,6688,6725,8494,8580,11136,11162,11991,12003,12432,12436,12744,12752,12893,12894,12951,12951,13266,13266,15179,15276,16955,16987,17366,17385,17656,17665,19324
13061,Clay County ,GA,13,0,0,0,0,0,5,5,22,23,39,39,56,56,72,76,111,113,121,121,124,124,126,126,145,147,171,171,179,180,182,182,183,183,185,186,186,186,188,188,217,216,231,231,232,232,233,234,241
13063,Clayton County ,GA,13,0,0,0,0,0,112,128,713,726,1221,1234,1972,2053,4413,4468,6478,6529,7107,7114,8417,8467,9830,9883,13278,13481,17868,17932,21096,21133,22342,22371,23605,23640,24344,24355,24665,24669,25579,25579,29881,30087,33868,33951,35010,35085,35662,35731,41735
13065,Clinch County ,GA,13,0,0,0,0,0,1,1,8,8,59,59,108,108,169,172,288,294,379,380,458,461,490,490,563,565,667,668,699,700,718,718,735,736,740,740,744,744,770,770,924,934,1049,1051,1004,1004,1010,1010,1042
13067,Cobb County ,GA,13,0,0,0,0,0,287,304,1615,1676,3027,3052,4963,5181,11206,11436,16966,17097,19740,19829,22342,22375,26408,26605,36865,37510,50687,50928,55404,55520,58198,58278,60424,60507,61678,61686,62214,62245,64027,64027,73137,73530,81664,81829,84650,84817,86810,86907,100598
13069,Coffee County ,GA,13,0,0,0,0,0,9,9,138,141,272,277,544,569,1299,1324,1793,1797,2070,2079,2303,2305,2642,2652,3412,3456,3976,3982,4151,4153,4198,4199,4230,4226,4249,4248,4278,4279,4558,4558,5578,5600,6119,6137,6292,6297,6366,6368,6458
13071,Colquitt County ,GA,13,0,0,0,0,0,20,21,185,187,467,481,980,1007,1454,1473,1758,1770,1895,1898,2142,2142,2212,2225,2537,2546,3038,3039,3297,3306,3458,3466,3519,3520,3588,3589,3673,3673,3885,3885,4683,4759,5351,5362,5494,5508,5558,5558,5803
13073,Columbia County ,GA,13,0,0,0,0,0,24,24,160,162,248,251,498,517,1793,1848,3142,3179,3777,3796,4477,4500,5395,5411,7233,7381,9668,9726,10501,10523,10750,10764,11028,11043,11169,11169,11253,11255,11530,11530,13128,13209,14323,14338,14673,14695,14841,14854,15480
13075,Cook County ,GA,13,0,0,0,0,0,1,1,23,25,45,45,139,147,394,397,510,510,551,553,609,614,768,778,995,1012,1100,1100,1138,1138,1150,1152,1162,1162,1167,1167,1181,1181,1229,1229,1536,1546,1650,1651,1664,1665,1681,1681,1698
13077,Coweta County ,GA,13,0,0,0,0,0,41,42,195,211,417,421,676,705,1296,1313,2249,2266,2628,2637,3013,3018,3653,3675,5273,5370,7139,7170,8025,8044,8398,8409,8645,8655,8826,8827,8897,8898,9109,9109,10735,10783,12293,12305,12692,12729,13039,13056,15672
13079,Crawford County ,GA,13,0,0,0,0,0,0,0,15,17,28,28,44,48,88,89,151,152,167,168,196,196,230,231,363,368,461,466,501,501,518,519,525,525,520,520,521,521,544,544,683,690,804,805,832,832,833,833,869
13081,Crisp County ,GA,13,0,0,0,0,0,16,19,166,167,232,236,273,274,358,361,466,474,571,573,660,664,721,721,970,981,1257,1259,1313,1315,1403,1404,1437,1437,1454,1454,1464,1464,1486,1486,1690,1699,1822,1825,1852,1852,1862,1863,1910
13083,Dade County ,GA,13,0,0,0,0,0,1,1,14,15,28,36,67,67,107,109,196,200,286,286,374,376,495,496,717,723,957,957,1097,1098,1167,1167,1210,1210,1248,1250,1240,1239,1268,1268,1554,1563,1733,1738,1806,1807,1850,1854,1975
13085,Dawson County ,GA,13,0,0,0,0,0,10,11,61,61,109,109,144,146,290,295,670,680,830,838,926,927,1128,1138,1679,1720,2369,2371,2540,2544,2630,2634,2706,2707,2763,2763,2776,2780,2833,2833,3470,3496,4023,4031,4154,4158,4238,4245,4586
13087,Decatur County ,GA,13,0,0,0,0,0,8,8,82,87,186,199,253,256,604,630,990,992,1165,1173,1310,1315,1384,1384,1603,1626,1967,1972,2053,2053,2108,2106,2144,2145,2160,2162,2177,2180,2269,2269,2880,2898,3331,3348,3462,3462,3476,3476,3577
13089,DeKalb County ,GA,13,0,0,0,0,0,360,373,2023,2068,3734,3799,5914,6033,12127,12348,16555,16650,18859,18938,21587,21678,26008,26174,35415,35976,46905,47091,51714,51812,55107,55219,57610,57676,58760,58774,59245,59245,60968,60968,69029,69399,76556,76753,79830,79959,81537,81605,93270
13091,Dodge County ,GA,13,0,0,0,0,0,2,3,26,28,51,52,104,107,186,188,325,331,431,434,638,638,716,716,834,844,1035,1040,1076,1076,1078,1073,1082,1082,1090,1090,1091,1091,1104,1104,1348,1353,1498,1499,1524,1525,1535,1536,1567
13093,Dooly County ,GA,13,0,0,0,0,0,8,10,129,129,179,182,210,210,239,242,285,285,340,340,379,379,424,424,533,539,689,690,724,724,781,781,784,784,805,803,803,804,816,816,940,943,1050,1051,1079,1080,1085,1085,1110
13095,Dougherty County ,GA,13,0,0,0,0,0,466,490,1505,1530,1771,1780,1907,1916,2571,2589,2985,2993,3159,3163,3312,3318,3438,3451,4004,4069,4967,4978,5275,5277,5389,5391,5540,5542,5638,5641,5688,5694,5862,5862,7329,7375,8685,8724,9075,9087,9155,9157,9567
13097,Douglas County ,GA,13,0,0,0,0,0,51,56,319,329,543,547,946,981,2245,2279,3167,3179,3595,3621,4197,4204,4965,5028,6828,6986,9605,9674,10858,10873,11434,11450,11916,11934,12233,12235,12327,12330,12751,12751,14870,14951,16895,16919,17532,17556,17852,17866,21068
13099,Early County ,GA,13,0,0,0,0,0,32,34,214,214,238,241,261,264,342,346,414,418,502,506,558,558,615,616,709,711,907,910,974,974,1000,1000,1010,1010,1029,1029,1042,1042,1084,1084,1422,1428,1511,1513,1540,1544,1544,1544,1566
13101,Echols County ,GA,13,0,0,0,0,0,0,0,5,5,117,119,184,185,215,215,235,237,241,241,246,246,259,264,315,316,345,345,354,354,355,355,358,358,361,361,362,362,362,362,385,385,402,402,406,406,414,414,415
13103,Effingham County ,GA,13,0,0,0,0,0,5,5,35,36,74,75,142,156,614,626,1068,1080,1453,1464,1860,1863,2095,2099,2449,2468,3134,3135,3590,3598,3666,3666,3793,3798,3863,3866,3916,3914,4123,4123,5844,5897,6792,6801,6948,6960,7066,7079,7282
13105,Elbert County ,GA,13,0,0,0,0,0,0,0,23,24,75,75,104,107,318,323,471,479,677,698,767,769,928,930,1149,1167,1407,1410,1477,1477,1512,1512,1526,1527,1532,1532,1539,1539,1563,1563,1725,1730,1952,1961,2033,2037,2070,2071,2135
13107,Emanuel County ,GA,13,0,0,0,0,0,1,1,21,21,27,27,116,119,391,409,758,771,1064,1083,1211,1216,1279,1281,1427,1454,1633,1634,1693,1694,1713,1713,1733,1734,1757,1757,1779,1779,1835,1835,2322,2353,2640,2643,2681,2684,2702,2700,2740
13109,Evans County ,GA,13,0,0,0,0,0,0,0,4,4,5,5,24,27,202,210,365,373,430,432,487,489,520,520,588,589,678,678,736,736,748,747,758,758,773,773,776,776,854,854,1017,1025,1132,1132,1116,1117,1125,1125,1158
13111,Fannin County ,GA,13,0,0,0,0,0,4,6,29,30,44,46,100,101,266,270,446,465,681,686,838,838,992,998,1283,1298,1803,1811,1974,1974,2050,2054,2119,2122,2145,2146,2197,2199,2284,2284,2680,2683,3060,3069,3171,3178,3254,3261,3379
13113,Fayette County ,GA,13,0,0,0,0,0,48,48,176,178,235,235,345,353,918,949,1573,1585,1877,1896,2172,2193,2702,2742,3795,3858,5152,5180,6143,6156,6415,6423,6643,6652,6783,6782,6832,6834,7030,7030,8324,8382,9394,9413,9702,9721,9953,9965,12035
13115,Floyd County ,GA,13,0,0,0,0,0,50,70,144,145,265,269,524,545,1206,1243,2277,2313,3219,3259,4103,4114,5066,5090,6758,6847,8547,8576,9317,9328,9782,9790,9969,9977,10064,10064,10085,10083,10276,10276,12254,12623,14926,14974,15426,15451,15689,15717,16921
13117,Forsyth County ,GA,13,0,0,0,0,0,47,50,296,306,512,523,844,855,1858,1898,3091,3154,4114,4160,4888,4906,6233,6302,9345,9533,14251,14332,16115,16134,17148,17168,17846,17862,18178,18185,18348,18351,18795,18795,22202,22366,25704,25741,26738,26800,27568,27596,30833
13119,Franklin County ,GA,13,0,0,0,0,0,3,3,18,19,46,102,196,197,350,354,554,563,758,765,959,962,1182,1188,1654,1671,2114,2118,2266,2268,2303,2303,2340,2343,2369,2370,2384,2384,2477,2477,2824,2837,3179,3185,3276,3277,3321,3325,3425
13121,Fulton County ,GA,13,0,0,0,0,0,599,638,2808,2889,4524,4626,7146,7444,17646,17858,24891,25063,27684,27790,31655,31753,37469,37784,50873,51701,68223,68471,74386,74538,78422,78562,81700,81826,83450,83463,84188,84213,86985,86985,98298,98757,107869,108037,111338,111525,113590,113748,137001
13123,Gilmer County ,GA,13,0,0,0,0,0,1,1,68,69,153,155,185,190,484,491,750,751,827,830,1062,1064,1219,1221,1612,1629,2149,2165,2357,2357,2428,2422,2476,2478,2514,2514,2572,2575,2615,2615,3049,3061,3368,3380,3501,3507,3562,3564,3675
13125,Glascock County ,GA,13,0,0,0,0,0,0,0,0,0,1,1,7,8,21,22,33,34,39,39,51,52,63,63,89,90,129,129,140,140,143,143,145,145,146,146,146,146,148,148,166,166,182,182,186,187,187,187,198
13127,Glynn County ,GA,13,0,0,0,0,0,17,19,55,58,115,124,818,870,2250,2281,3041,3053,3486,3494,3786,3792,4151,4156,4774,4807,5778,5806,6343,6352,6477,6460,6679,6679,6803,6804,6844,6845,7183,7183,10778,10943,12189,12204,12347,12353,12434,12443,12905
13129,Gordon County ,GA,13,0,0,0,0,0,16,18,92,113,163,164,393,407,985,1001,1527,1534,1870,1880,2451,2455,3086,3109,4076,4124,5226,5235,6050,6055,6359,6369,6491,6493,6534,6534,6554,6553,6669,6669,7561,7613,8428,8449,8686,8701,8819,8822,9252
13131,Grady County ,GA,13,0,0,0,0,0,1,2,63,63,110,112,205,210,394,400,667,669,785,796,871,871,918,918,1078,1086,1409,1413,1479,1480,1506,1507,1542,1543,1593,1594,1623,1625,1726,1726,2049,2064,2320,2326,2395,2399,2436,2437,2534
13133,Greene County ,GA,13,0,0,0,0,0,7,8,54,54,68,68,97,97,236,247,435,445,509,509,582,584,645,646,948,959,1286,1292,1432,1433,1470,1469,1498,1501,1513,1514,1520,1520,1553,1553,1938,1945,2132,2137,2193,2196,2226,2226,2453
13135,Gwinnett County ,GA,13,0,0,0,0,0,242,257,1786,1844,3780,3874,8247,8536,17130,17511,24252,24477,27647,27733,31102,31218,36754,37061,51509,52473,73712,73988,80406,80546,83483,83585,86241,86322,87512,87531,88020,88039,89765,89765,97408,97703,107095,107311,111882,112098,114401,114501,127002
13137,Habersham County ,GA,13,0,0,0,0,0,2,2,256,326,520,530,695,704,1011,1026,1341,1363,1674,1700,1906,1909,2315,2360,3533,3600,4334,4342,4543,4548,4586,4588,4641,4644,4674,4674,4697,4698,4769,4769,5338,5363,6154,6168,6398,6408,6536,6541,6809
13139,Hall County ,GA,13,0,0,0,0,0,67,71,1331,1481,2467,2505,3227,3287,5372,5482,7714,7801,9373,9498,10837,10845,12425,12541,17469,17708,22545,22579,23821,23849,24425,24443,24956,24966,25301,25307,25550,25564,26101,26101,29138,29254,32764,32831,33950,34018,34674,34722,36630
13141,Hancock County ,GA,13,0,0,0,0,0,0,0,45,51,195,196,216,217,280,281,359,360,394,397,417,419,479,515,632,641,754,755,806,806,823,823,833,833,842,843,845,846,859,859,932,939,992,994,998,998,1005,1005,1113
13143,Haralson County ,GA,13,0,0,0,0,0,5,6,28,29,43,45,73,79,189,191,332,333,487,493,672,673,889,894,1232,1242,1495,1498,1624,1625,1674,1676,1714,1713,1720,1720,1732,1736,1780,1780,2007,2016,2288,2299,2384,2386,2408,2410,2547
13145,Harris County ,GA,13,0,0,0,0,0,3,3,59,59,91,101,334,340,607,616,725,728,799,799,855,857,956,961,1281,1304,1795,1804,1992,1995,2112,2113,2159,2159,2238,2239,2259,2260,2356,2356,2741,2751,3037,3047,3180,3181,3235,3235,3494
13147,Hart County ,GA,13,0,0,0,0,0,3,3,10,11,30,33,59,64,255,263,412,420,521,522,600,601,737,742,1137,1160,1536,1539,1647,1651,1684,1684,1708,1707,1718,1719,1751,1752,1805,1805,2032,2033,2218,2221,2298,2302,2327,2329,2428
13149,Heard County ,GA,13,0,0,0,0,0,1,2,10,11,34,34,51,52,128,129,171,172,197,199,240,241,290,291,421,427,536,540,594,594,613,613,638,643,652,652,655,655,681,681,888,906,1018,1019,1031,1033,1044,1045,1140
13151,Henry County ,GA,13,0,0,0,0,0,86,95,492,492,690,693,1224,1266,2895,2954,4417,4442,5281,5307,6359,6395,7685,7743,11112,11318,15439,15500,17147,17177,18259,18283,19118,19143,19602,19607,19785,19789,20667,20667,24917,25050,27993,28055,28927,28977,29438,29495,34499
13153,Houston County ,GA,13,0,0,0,0,0,30,44,223,234,366,375,642,680,1714,1746,2629,2647,3163,3166,3723,3740,4318,4342,6118,6241,8729,8748,9399,9403,9745,9758,10047,10056,10179,10181,10240,10250,10566,10566,13735,13854,15533,15559,15966,15983,16234,16239,17119
13155,Irwin County ,GA,13,0,0,0,0,0,3,5,15,15,28,30,64,64,152,153,221,222,305,313,360,361,415,417,548,559,644,644,666,668,673,674,682,682,691,691,775,777,791,791,852,857,888,888,897,898,905,906,914
13157,Jackson County ,GA,13,0,0,0,0,0,8,10,93,97,184,195,385,388,912,936,1497,1523,2024,2035,2457,2473,3180,3213,5086,5188,7392,7406,7986,7995,8314,8319,8495,8503,8591,8591,8637,8639,8874,8874,10699,10734,12352,12375,12848,12867,13070,13083,13934
13159,Jasper County ,GA,13,0,0,0,0,0,2,2,21,22,36,39,68,69,121,123,190,190,221,221,249,249,286,287,401,404,569,570,635,635,662,662,675,678,686,686,689,689,707,707,847,851,983,986,1021,1026,1045,1047,1159
13161,Jeff Davis County ,GA,13,0,0,0,0,0,0,0,17,20,37,37,110,114,349,366,641,645,724,725,809,811,837,840,958,973,1156,1160,1229,1229,1271,1275,1295,1296,1305,1305,1322,1325,1361,1361,1623,1642,1795,1795,1808,1808,1816,1816,1830
13163,Jefferson County ,GA,13,0,0,0,0,0,2,2,14,14,43,43,98,114,417,422,661,671,804,805,857,857,953,955,1134,1148,1436,1439,1538,1538,1553,1556,1580,1580,1590,1591,1602,1602,1619,1619,1726,1738,1822,1824,1855,1856,1864,1865,1894
13165,Jenkins County ,GA,13,0,0,0,0,0,1,1,16,16,19,20,105,117,225,230,314,322,429,435,472,472,487,487,520,529,675,676,702,702,716,716,726,727,729,729,736,736,756,756,846,845,892,893,896,898,900,900,900
13167,Johnson County ,GA,13,0,0,0,0,0,1,1,49,51,77,77,90,92,215,221,336,342,415,416,439,439,465,466,548,553,704,707,779,779,780,779,787,787,793,793,796,796,813,813,936,939,1005,1004,1022,1024,1025,1025,1056
13169,Jones County ,GA,13,0,0,0,0,0,3,4,28,29,37,40,75,91,253,258,452,459,560,565,654,657,747,751,1030,1053,1379,1385,1519,1520,1550,1553,1575,1575,1597,1598,1622,1623,1680,1680,2128,2152,2509,2510,2566,2572,2629,2631,2797
13171,Lamar County ,GA,13,0,0,0,0,0,3,4,38,38,67,71,119,122,219,221,323,325,372,374,430,432,554,560,794,812,1147,1149,1249,1253,1293,1294,1342,1344,1365,1365,1370,1370,1428,1428,1968,1989,2221,2226,2279,2282,2318,2318,2462
13173,Lanier County ,GA,13,0,0,0,0,0,0,1,8,9,21,24,134,138,210,210,247,265,295,297,320,320,338,338,402,404,454,454,478,479,488,488,496,496,509,509,510,510,527,527,675,678,752,754,776,775,784,784,813
13175,Laurens County ,GA,13,0,0,0,0,0,13,14,60,62,106,108,176,188,706,727,1342,1350,1661,1671,2031,2038,2230,2234,2706,2725,3394,3405,3592,3602,3639,3641,3707,3707,3744,3743,3768,3768,3936,3936,4893,4925,5629,5649,5801,5812,5866,5870,6242
13177,Lee County ,GA,13,0,0,0,0,0,90,94,317,321,361,361,389,391,501,506,641,641,700,703,755,756,821,825,1094,1115,1452,1456,1539,1539,1574,1568,1592,1593,1610,1610,1624,1625,1704,1704,2230,2251,2527,2534,2606,2614,2650,2651,2777
13179,Liberty County ,GA,13,0,0,0,0,0,5,7,37,37,82,82,122,128,575,594,930,932,1125,1129,1287,1287,1485,1493,1805,1820,2403,2410,2721,2722,3113,3117,3422,3425,3587,3587,3630,3630,3898,3898,5473,5513,6238,6265,6564,6575,6662,6663,6873
13181,Lincoln County ,GA,13,0,0,0,0,0,4,4,12,12,16,16,38,40,124,125,196,196,213,213,237,241,282,282,334,336,447,452,486,486,498,499,510,510,524,524,535,535,543,543,623,626,662,662,686,688,701,701,725
13183,Long County ,GA,13,0,0,0,0,0,1,1,5,5,16,16,45,46,114,114,183,184,252,252,278,279,314,319,438,454,574,575,645,645,687,638,665,666,689,689,699,699,770,770,1114,1121,1292,1297,1369,1373,1400,1404,1437
13185,Lowndes County ,GA,13,0,0,0,0,0,23,24,155,156,302,316,1234,1254,2894,2931,3492,3496,3920,3942,4522,4535,5215,5241,6104,6146,6905,6911,7304,7318,7573,7582,7783,7785,7920,7924,8040,8046,8249,8249,9893,9941,10731,10742,10942,10965,11104,11112,11521
13187,Lumpkin County ,GA,13,0,0,0,0,0,7,7,44,46,99,99,139,141,291,301,701,719,926,930,1063,1064,1268,1286,1882,1922,2509,2512,2657,2658,2715,2718,2788,2789,2844,2844,2861,2861,2940,2940,3654,3678,4344,4347,4444,4445,4553,4556,4834
13189,McDuffie County ,GA,13,0,0,0,0,0,3,3,45,45,67,67,99,101,280,286,517,521,605,607,698,703,788,791,988,1000,1447,1452,1575,1577,1615,1620,1675,1676,1710,1710,1731,1732,1768,1768,1964,1977,2174,2183,2238,2241,2283,2286,2408
13191,McIntosh County ,GA,13,0,0,0,0,0,1,1,4,5,15,15,43,45,145,147,248,248,293,294,316,316,362,363,450,457,534,538,595,597,668,668,695,696,701,701,701,700,719,719,1219,1240,1376,1378,1387,1389,1396,1397,1439
13193,Macon County ,GA,13,0,0,0,0,0,2,2,75,80,101,102,115,118,171,174,204,206,234,235,255,255,294,296,369,374,524,525,576,576,598,598,618,618,626,626,631,631,643,643,765,766,825,825,841,841,849,849,899
13195,Madison County ,GA,13,0,0,0,0,0,3,3,24,24,54,55,97,103,321,326,535,540,704,706,812,815,1020,1032,1605,1624,2347,2356,2587,2596,2678,2680,2736,2740,2776,2776,2786,2786,2857,2857,3444,3455,4066,4073,4208,4217,4263,4267,4494
13197,Marion County ,GA,13,0,0,0,0,0,0,0,37,37,57,57,79,82,136,142,170,171,192,192,205,205,220,220,259,260,343,343,376,376,384,384,397,398,406,406,410,410,442,442,567,568,641,644,658,658,668,669,694
13199,Meriwether County ,GA,13,0,0,0,0,0,6,7,54,54,85,86,184,190,347,347,484,488,546,546,599,599,636,638,850,863,1269,1277,1421,1427,1470,1473,1519,1521,1559,1559,1578,1578,1615,1615,1899,1915,2134,2136,2188,2190,2226,2226,2491
13201,Miller County ,GA,13,0,0,0,0,0,4,4,30,30,41,42,47,48,125,129,212,216,266,270,316,316,353,357,440,442,569,575,614,615,658,659,679,681,685,685,685,685,694,694,890,894,960,960,984,985,1002,1002,1015
13205,Mitchell County ,GA,13,0,0,0,0,0,34,39,310,318,409,413,450,451,604,609,710,714,811,818,849,849,894,896,1138,1147,1403,1406,1471,1472,1497,1498,1534,1534,1549,1549,1553,1553,1632,1632,1919,1931,2127,2128,2177,2177,2183,2185,2251
13207,Monroe County ,GA,13,0,0,0,0,0,5,6,23,24,120,121,165,167,408,416,593,593,699,700,771,774,915,919,1271,1288,1623,1628,1773,1773,1828,1830,1863,1863,1902,1902,1925,1926,1983,1983,2406,2415,2686,2688,2756,2762,2822,2823,2994
13209,Montgomery County ,GA,13,0,0,0,0,0,0,0,2,2,9,10,31,32,124,128,217,217,311,317,370,370,393,393,531,538,664,665,705,705,710,707,717,720,731,731,738,738,798,798,986,993,1106,1107,1142,1143,1149,1150,1162
13211,Morgan County ,GA,13,0,0,0,0,0,2,2,27,27,37,38,52,54,191,216,415,419,485,487,539,540,586,589,791,801,1025,1030,1123,1124,1165,1167,1188,1191,1207,1208,1215,1215,1269,1269,1570,1581,1777,1787,1872,1883,1909,1909,2121
13213,Murray County ,GA,13,0,0,0,0,0,5,5,31,32,91,94,218,224,520,527,713,716,840,844,1093,1105,1770,1790,2654,2708,3557,3573,3880,3884,4012,4025,4168,4170,4238,4240,4238,4239,4365,4365,5074,5128,5911,5943,6251,6259,6382,6390,6712
13215,Muscogee County ,GA,13,0,0,0,0,0,19,22,302,314,616,632,1706,1752,4201,4259,5466,5484,6048,6070,6414,6419,6938,6958,8860,8983,11723,11774,12822,12843,13658,13680,14300,14314,14710,14710,14860,14870,15442,15442,18039,18089,20157,20208,20775,20803,21161,21185,22717
13217,Newton County ,GA,13,0,0,0,0,0,31,34,196,200,352,361,612,624,1533,1566,2306,2325,2610,2617,2918,2925,3398,3415,4667,4748,6262,6288,6873,6880,7180,7191,7485,7495,7650,7652,7702,7707,7956,7956,9447,9471,10736,10760,11122,11153,11431,11446,13457
13219,Oconee County ,GA,13,0,0,0,0,0,16,17,64,65,115,115,158,161,378,387,552,560,761,766,871,877,1044,1056,1716,1763,2502,2506,2737,2743,2963,2964,3050,3051,3082,3082,3096,3096,3194,3194,3699,3709,4220,4232,4404,4412,4548,4555,4973
13221,Oglethorpe County ,GA,13,0,0,0,0,0,1,1,48,49,61,62,91,91,181,184,281,281,335,339,430,432,501,503,732,750,1029,1033,1114,1114,1164,1165,1189,1189,1214,1214,1222,1222,1242,1242,1426,1429,1627,1631,1693,1701,1734,1735,1832
13223,Paulding County ,GA,13,0,0,0,0,0,31,33,186,190,328,328,613,637,1370,1401,2269,2300,2806,2827,3245,3251,4031,4074,6013,6125,8659,8705,9842,9868,10366,10372,10735,10750,10968,10969,11117,11132,11489,11489,13428,13533,15681,15716,16401,16442,16849,16878,19775
13225,Peach County ,GA,13,0,0,0,0,0,7,7,46,52,72,73,106,112,308,318,567,572,670,674,802,805,946,950,1212,1224,1588,1595,1754,1755,1802,1801,1849,1853,1892,1893,1903,1904,1948,1948,2364,2382,2598,2602,2646,2652,2707,2708,2865
13227,Pickens County ,GA,13,0,0,0,0,0,7,7,25,25,48,48,93,95,274,276,521,525,619,621,816,820,1034,1042,1524,1558,2106,2116,2346,2348,2443,2448,2527,2528,2578,2579,2598,2599,2653,2653,3017,3028,3461,3468,3597,3602,3667,3669,3914
13229,Pierce County ,GA,13,0,0,0,0,0,3,7,52,52,100,100,172,180,373,376,519,520,612,614,688,688,740,741,885,892,1113,1116,1181,1182,1214,1215,1257,1260,1282,1282,1304,1306,1387,1387,1846,1860,2158,2160,2085,2091,2122,2123,2165
13231,Pike County ,GA,13,0,0,0,0,0,2,2,40,40,54,54,90,91,186,187,277,280,333,343,395,395,468,472,630,653,882,887,977,977,1023,1024,1062,1063,1088,1089,1104,1104,1162,1162,1531,1550,1818,1822,1859,1861,1901,1903,2022
13233,Polk County ,GA,13,0,0,0,0,0,15,16,57,59,119,124,207,207,637,664,1216,1220,1490,1498,1748,1751,2015,2024,2570,2599,3432,3443,3729,3735,3869,3870,3933,3934,3971,3971,3975,3977,4051,4051,5024,5087,6156,6171,6362,6373,6478,6483,6889
13235,Pulaski County ,GA,13,0,0,0,0,0,3,4,30,31,42,42,50,51,81,85,223,223,313,314,340,340,381,382,434,440,533,535,591,591,601,602,608,608,613,613,617,617,622,622,750,761,858,858,885,886,897,899,919
13237,Putnam County ,GA,13,0,0,0,0,0,0,1,40,41,90,93,151,157,364,377,611,616,695,699,817,821,907,908,1179,1182,1514,1519,1675,1675,1739,1739,1794,1795,1811,1811,1832,1834,1952,1952,2305,2320,2538,2544,2593,2595,2638,2638,2847
13239,Quitman County ,GA,13,0,0,0,0,0,0,0,4,5,12,12,17,17,29,29,31,31,33,34,41,41,44,44,50,50,73,73,76,76,81,81,81,81,82,81,81,81,84,84,104,104,119,119,120,120,123,123,125
13241,Rabun County ,GA,13,0,0,0,0,0,2,2,13,13,20,23,43,46,186,190,278,283,344,366,435,437,580,593,1029,1044,1345,1352,1427,1428,1468,1471,1529,1530,1569,1569,1591,1591,1621,1621,1760,1763,2020,2026,2120,2134,2193,2195,2260
13243,Randolph County ,GA,13,0,0,0,0,0,4,4,159,161,179,179,197,200,257,259,312,314,331,331,340,340,346,347,359,360,419,420,452,453,463,463,467,467,474,474,479,479,488,488,538,539,578,579,602,602,606,606,628
13245,Richmond County ,GA,13,0,0,0,0,0,40,41,406,412,595,599,987,1034,3482,3588,6040,6062,7147,7180,8115,8160,9530,9569,12608,12871,16936,17083,18682,18702,19187,19207,19889,19924,20313,20315,20472,20474,20923,20923,23322,23473,25814,25860,26485,26543,26878,26898,28338
13247,Rockdale County ,GA,13,0,0,0,0,0,45,47,186,191,285,285,465,478,1122,1152,1651,1665,1865,1872,2169,2175,2592,2606,3615,3669,4901,4919,5474,5491,5775,5778,6017,6023,6175,6176,6258,6258,6539,6539,7584,7623,8639,8666,8966,8983,9189,9196,11066
13249,Schley County ,GA,13,0,0,0,0,0,4,4,15,15,16,16,25,25,49,50,94,95,105,105,109,109,125,127,155,156,182,182,202,202,205,207,212,212,211,211,211,211,227,227,276,276,304,307,328,329,343,343,353
13251,Screven County ,GA,13,0,0,0,0,0,1,2,15,15,51,55,92,94,167,172,293,295,417,420,452,454,469,469,524,531,713,715,784,785,798,798,812,812,822,823,835,835,885,885,1159,1162,1329,1331,1342,1344,1362,1361,1376
13253,Seminole County ,GA,13,0,0,0,0,0,5,5,29,30,45,45,50,50,135,144,285,292,361,366,396,396,478,481,564,565,676,677,715,715,729,731,751,751,749,749,755,756,782,782,1091,1096,1185,1189,1208,1209,1219,1219,1246
13255,Spalding County ,GA,13,0,0,0,0,0,15,17,208,214,275,277,405,428,837,846,1172,1182,1341,1347,1629,1631,1939,1955,2571,2605,3302,3311,3617,3621,3859,3861,4049,4056,4182,4186,4250,4250,4430,4430,5517,5573,6525,6541,6742,6759,6914,6924,7771
13257,Stephens County ,GA,13,0,0,0,0,0,4,5,78,81,143,143,234,238,542,547,845,853,1083,1094,1293,1293,1514,1543,2170,2203,2693,2698,2854,2858,2929,2932,2976,2977,3007,3011,3043,3043,3079,3079,3534,3552,4312,4331,4525,4528,4588,4592,4717
13259,Stewart County ,GA,13,0,0,0,0,0,1,1,24,24,52,52,127,130,245,247,355,356,521,521,568,568,574,575,611,611,668,668,761,761,778,778,791,791,817,825,949,954,1053,1053,1081,1083,1296,1306,1327,1328,1381,1386,1428
13261,Sumter County ,GA,13,0,0,0,0,0,35,38,380,382,475,487,555,558,717,724,856,861,934,935,967,967,1036,1043,1313,1331,1659,1664,1760,1761,1783,1783,1802,1804,1833,1833,1853,1855,1911,1911,2395,2406,2678,2694,2745,2760,2822,2829,2983
13263,Talbot County ,GA,13,0,0,0,0,0,1,1,24,24,38,39,73,77,122,126,154,155,166,166,176,180,201,201,243,246,332,333,363,363,377,377,384,384,401,401,404,404,415,415,494,495,567,567,583,585,590,590,664
13265,Taliaferro County ,GA,13,0,0,0,0,0,0,0,0,0,1,1,2,2,12,12,19,19,22,22,31,31,37,37,49,49,90,91,95,95,100,100,101,101,102,102,102,102,104,104,121,122,126,126,128,128,128,128,131
13267,Tattnall County ,GA,13,0,0,0,0,0,2,2,9,9,27,27,140,141,394,407,676,685,840,844,954,955,1017,1017,1274,1302,1644,1644,1781,1782,1822,1824,1842,1843,1864,1864,1886,1886,2017,2017,2475,2496,2729,2730,2673,2674,2701,2702,2745
13269,Taylor County ,GA,13,0,0,0,0,0,2,2,17,17,22,22,28,29,69,69,157,160,213,214,237,237,277,281,348,356,443,443,487,487,498,501,510,511,515,515,519,518,527,527,650,652,730,730,752,753,766,767,812
13271,Telfair County ,GA,13,0,0,0,0,0,0,0,27,28,37,37,119,119,251,251,348,349,391,393,495,495,520,521,576,580,664,664,694,695,706,707,721,721,729,729,735,735,762,762,876,878,939,940,961,961,969,969,988
13273,Terrell County ,GA,13,0,0,0,0,0,40,46,183,184,213,213,227,228,289,291,319,320,329,329,341,341,351,351,446,450,506,506,539,539,556,556,566,567,578,580,586,586,597,597,690,693,787,787,824,824,824,825,851
13275,Thomas County ,GA,13,0,0,0,0,0,10,14,186,190,324,329,453,464,943,982,1407,1413,1497,1500,1619,1625,1745,1752,2331,2363,3242,3250,3430,3431,3489,3487,3544,3546,3637,3636,3696,3702,3979,3979,5088,5132,5940,5947,6035,6038,6056,6062,6238
13277,Tift County ,GA,13,0,0,0,0,0,20,28,117,122,256,266,750,756,1220,1241,1501,1511,1803,1805,1981,1984,2303,2323,2881,2921,3283,3284,3360,3361,3394,3396,3422,3424,3464,3465,3484,3485,3618,3618,4511,4545,4774,4774,4860,4863,4890,4891,5004
13279,Toombs County ,GA,13,0,0,0,0,0,3,3,31,31,56,56,249,254,592,622,1072,1080,1331,1343,1518,1523,1647,1652,2105,2148,2637,2638,2780,2781,2856,2858,2916,2926,2967,2968,2988,2991,3170,3170,3971,4000,4324,4336,4390,4399,4420,4420,4501
13281,Towns County ,GA,13,0,0,0,0,0,0,0,19,19,24,24,45,45,107,111,209,213,341,342,455,455,555,563,726,738,900,904,1017,1017,1057,1057,1093,1100,1122,1122,1150,1150,1182,1182,1371,1381,1511,1513,1537,1540,1566,1567,1619
13283,Treutlen County ,GA,13,0,0,0,0,0,0,0,3,3,10,10,23,26,89,96,208,214,261,263,310,310,331,331,402,404,567,567,622,623,625,622,624,625,635,635,642,642,672,672,797,801,866,868,888,888,892,892,904
13285,Troup County ,GA,13,0,0,0,0,0,18,19,148,150,313,319,1432,1507,2158,2159,2589,2602,2822,2833,3068,3069,3305,3316,4010,4046,5156,5168,5544,5556,5776,5780,5922,5932,6026,6027,6070,6084,6411,6411,7616,7654,8369,8378,8517,8532,8608,8613,9717
13287,Turner County ,GA,13,0,0,0,0,0,4,5,68,68,118,125,177,177,222,224,277,279,306,306,338,339,375,378,460,470,569,569,581,582,594,594,597,597,611,612,618,619,634,634,726,730,784,784,803,806,814,814,841
13289,Twiggs County ,GA,13,0,0,0,0,0,2,2,8,8,17,17,26,26,93,93,165,165,197,199,222,224,251,252,358,372,464,465,493,494,506,506,511,511,512,512,512,511,524,524,666,667,737,737,748,748,759,760,804
13291,Union County ,GA,13,0,0,0,0,0,0,1,30,30,46,46,71,75,197,205,480,488,777,779,911,912,1075,1089,1384,1415,1773,1777,1914,1914,1990,1990,2036,2038,2077,2077,2114,2118,2174,2174,2643,2666,3051,3057,3117,3120,3176,3183,3354
13293,Upson County ,GA,13,0,0,0,0,0,5,6,216,223,281,283,358,367,471,481,661,664,799,804,843,843,942,946,1188,1210,1593,1596,1705,1706,1765,1768,1810,1811,1836,1836,1842,1842,1874,1874,2352,2387,2676,2681,2725,2726,2753,2756,2972
13295,Walker County ,GA,13,0,0,0,0,0,1,2,51,51,142,167,322,329,539,548,1025,1046,1569,1591,1941,1952,2588,2599,3796,3852,5085,5097,5919,5922,6215,6225,6487,6498,6682,6684,6756,6765,6958,6958,8012,8059,9153,9173,9491,9508,9801,9814,10375
13297,Walton County ,GA,13,0,0,0,0,0,9,13,126,129,265,265,408,422,900,934,1466,1506,1836,1847,2388,2394,2886,2913,4602,4721,6703,6728,7359,7381,7805,7811,8058,8063,8153,8154,8206,8205,8371,8371,9568,9590,10730,10748,11028,11047,11267,11287,12452
13299,Ware County ,GA,13,0,0,0,0,0,10,12,121,128,228,228,445,456,1055,1073,1340,1347,1509,1512,1764,1765,1910,1911,2176,2192,2721,2728,2869,2873,2935,2941,3007,3009,3060,3061,3095,3095,3216,3216,3971,4009,4435,4437,4513,4522,4566,4566,4603
13301,Warren County ,GA,13,0,0,0,0,0,3,4,12,12,18,18,23,23,53,55,117,120,152,153,169,170,187,187,222,223,338,341,362,362,367,367,375,375,388,388,392,392,403,403,448,449,501,501,510,510,517,517,539
13303,Washington County ,GA,13,0,0,0,0,0,4,4,42,43,74,74,110,125,400,410,614,616,676,685,792,792,982,984,1171,1187,1480,1487,1593,1593,1614,1599,1613,1614,1641,1642,1651,1651,1676,1676,2016,2032,2312,2315,2359,2361,2369,2369,2436
13305,Wayne County ,GA,13,0,0,0,0,0,0,0,13,13,19,20,74,80,559,615,957,967,1140,1145,1262,1268,1465,1474,1800,1827,2336,2349,2560,2560,2657,2662,2737,2739,2776,2779,2802,2802,2886,2886,3868,3900,4379,4387,4372,4376,4393,4393,4478
13307,Webster County ,GA,13,0,0,0,0,0,1,1,10,10,13,13,22,22,36,36,38,38,43,43,44,44,46,46,64,66,87,87,97,97,102,102,106,106,107,107,107,107,113,113,129,129,158,158,171,171,175,175,184
13309,Wheeler County ,GA,13,0,0,0,0,0,1,1,4,5,13,13,49,53,83,83,149,149,336,340,369,369,369,369,390,400,440,440,453,453,453,453,459,459,462,462,461,461,487,487,561,569,595,595,608,609,613,613,627
13311,White County ,GA,13,0,0,0,0,0,3,3,59,63,101,103,143,144,292,299,517,529,848,873,1021,1022,1305,1319,2020,2068,2681,2689,2866,2868,2912,2911,2973,2974,3006,3006,3022,3022,3102,3102,3785,3811,4360,4365,4458,4463,4548,4553,4725
13313,Whitfield County ,GA,13,0,0,0,0,0,10,14,103,111,374,391,1118,1165,3061,3135,3989,4002,4625,4651,5646,5701,7640,7695,10831,10952,13454,13472,14175,14175,14557,14572,14817,14823,14956,14959,15020,15022,15226,15226,17106,17178,18692,18719,19229,19239,19460,19485,20371
13315,Wilcox County ,GA,13,0,0,0,0,0,1,1,89,90,111,116,126,127,161,164,222,224,247,248,259,259,288,290,377,378,431,431,458,458,472,472,476,476,478,478,484,484,490,490,576,580,629,629,640,640,643,643,656
13317,Wilkes County ,GA,13,0,0,0,0,0,2,2,25,25,33,33,56,59,176,176,225,225,267,267,315,317,367,370,455,458,603,603,644,646,666,666,669,669,676,676,696,696,707,707,761,763,860,862,883,883,890,890,925
13319,Wilkinson County ,GA,13,0,0,0,0,0,1,1,35,35,69,69,75,77,172,178,289,289,341,341,372,374,413,413,530,544,654,655,703,704,723,723,730,730,735,735,741,741,757,757,986,997,1089,1089,1105,1105,1110,1109,1146
13321,Worth County ,GA,13,0,0,0,0,0,28,28,153,159,211,222,317,317,418,421,498,504,535,536,610,612,647,650,875,880,1097,1098,1140,1140,1166,1166,1190,1190,1201,1201,1202,1202,1232,1232,1562,1576,1727,1728,1767,1768,1775,1775,1801
0,Statewide Unallocated,HI,15,0,0,0,0,0,15,20,9,9,10,10,17,0,23,23,25,25,33,33,76,79,217,217,286,286,724,730,838,841,947,951,1049,1053,1241,1242,1367,1372,1749,1749,2149,2157,2422,2429,2397,2714,2900,2924,3356
15001,Hawaii County ,HI,15,0,0,0,0,0,15,18,73,73,81,81,87,87,115,115,364,383,730,736,1274,1300,1599,1605,1691,1691,2162,2169,2244,2245,2479,2487,2692,2700,2949,2968,3265,3267,3950,3950,7634,7698,10006,10097,11032,11109,11703,11708,13117
15003,City and County of Honolulu,HI,15,0,0,0,0,0,157,182,399,400,421,421,652,659,1755,1842,7691,7848,11197,11296,13133,13186,15330,15362,16059,16059,20923,20980,21949,21966,23063,23134,24832,24901,27127,27157,27874,27909,30406,30406,44764,45055,55098,55310,57766,57942,59534,59621,80084
15005,Kalawao County ,HI,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
15007,Kauai County ,HI,15,0,0,0,0,0,12,12,20,20,20,20,38,38,47,47,57,57,59,59,64,65,113,113,125,125,178,179,183,183,191,191,243,260,321,324,361,368,539,539,1290,1327,2255,2268,2614,2657,3087,3122,3969
15009,Maui County ,HI,15,0,0,0,0,0,25,26,116,116,119,119,123,125,170,170,335,340,391,391,524,524,666,671,790,790,1866,1885,2345,2353,3001,3031,3533,3554,4638,4641,4891,4891,5281,5281,7665,7720,9425,9468,9899,9942,10361,10397,12406
0,Statewide Unallocated,ID,16,0,0,0,0,0,0,9,0,0,0,0,0,1,7,7,4,4,1,1,0,0,5,1,1,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
16001,Ada County ,ID,16,0,0,0,0,0,195,226,681,689,812,818,2169,2288,7828,8004,11176,11267,13116,13256,17326,17451,25701,26141,38262,38262,44483,44483,46715,46799,49189,49279,51610,51610,52800,52875,53585,53621,55326,55326,60873,61059,71208,71882,81082,81515,85403,85590,89225
16003,Adams County ,ID,16,0,0,0,0,0,1,1,3,3,3,3,11,11,18,18,25,25,28,28,65,65,109,113,260,260,310,310,330,330,333,333,336,336,341,341,343,343,358,358,390,394,456,457,526,529,549,550,568
16005,Bannock County ,ID,16,0,0,0,0,0,4,4,11,11,28,32,102,104,301,302,619,624,1085,1105,2732,2732,4486,4561,6440,6440,7364,7364,7888,7899,8414,8441,8713,8713,8840,8848,8885,8887,9077,9077,9885,9947,11815,11900,13410,13503,14226,14267,14698
16007,Bear Lake County ,ID,16,0,0,0,0,0,0,0,0,0,0,0,1,2,6,6,30,30,46,46,77,77,190,194,274,274,328,328,349,349,367,367,381,381,391,391,395,395,421,421,470,475,597,599,698,703,728,728,754
16009,Benewah County ,ID,16,0,0,0,0,0,0,0,0,0,8,12,21,21,50,51,111,116,151,151,182,188,275,286,433,433,534,534,610,613,646,646,670,670,697,698,767,767,794,794,879,881,1052,1054,1169,1195,1503,1529,1766
16011,Bingham County ,ID,16,0,0,0,0,0,2,2,4,4,6,8,40,43,176,179,451,451,960,977,1664,1664,2768,2808,3649,3649,4057,4057,4241,4251,4658,4666,4804,4804,4850,4852,4857,4856,4913,4913,5207,5233,6060,6090,6806,6845,7203,7211,7417
16013,Blaine County ,ID,16,0,0,0,0,0,192,256,497,497,512,512,535,535,568,569,604,604,683,687,911,916,1285,1297,1562,1562,1946,1946,2162,2168,2266,2268,2363,2363,2386,2388,2399,2401,2442,2442,2561,2566,2791,2800,3028,3037,3184,3200,3540
16015,Boise County ,ID,16,0,0,0,0,0,0,0,0,0,0,0,4,4,38,38,61,62,70,72,87,87,141,143,240,240,288,288,308,309,322,327,354,354,365,365,379,379,410,410,472,482,612,623,785,789,818,820,839
16017,Bonner County ,ID,16,0,0,0,0,0,1,1,4,4,6,6,32,33,145,152,213,215,340,355,523,527,978,1002,1960,1960,2691,2691,2972,2976,3098,3104,3221,3221,3306,3310,3389,3390,3476,3476,3910,3937,4639,4677,5677,5723,6456,6489,6745
16019,Bonneville County ,ID,16,0,0,0,0,0,2,2,28,28,47,47,115,117,685,709,1777,1817,2841,2882,4719,4764,7662,7783,10383,10383,11456,11456,12151,12198,14097,14157,14807,14807,14983,14990,15046,15047,15291,15291,16079,16142,18076,18153,19965,20084,21549,21628,22500
16021,Boundary County ,ID,16,0,0,0,0,0,0,0,0,0,0,0,1,1,33,33,43,44,58,59,203,203,353,355,568,568,729,729,820,820,843,845,861,861,872,872,896,896,910,910,1000,1018,1173,1178,1520,1540,1702,1708,1743
16023,Butte County ,ID,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,12,33,33,104,104,124,124,162,162,185,185,200,200,205,206,209,209,211,212,212,212,213,213,240,245,298,301,356,359,386,386,389
16025,Camas County ,ID,16,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,4,4,36,37,41,41,53,54,56,56,65,65,69,70,71,71,71,71,72,72,72,72,73,73,77,77,95,96,106,106,108,108,109
16027,Canyon County ,ID,16,0,0,0,0,0,53,68,255,258,303,310,856,900,4706,4778,7222,7261,8296,8328,10335,10417,15479,15724,20597,20597,23743,23743,24695,24721,25587,25631,26441,26441,27135,27189,27663,27670,28363,28363,31759,31894,36509,36777,42010,42164,43400,43483,45084
16029,Caribou County ,ID,16,0,0,0,0,0,0,0,1,1,1,1,11,11,23,23,40,40,125,131,306,306,442,446,534,534,610,610,626,628,657,660,689,689,701,702,713,713,721,721,778,784,904,909,1001,1007,1054,1058,1091
16031,Cassia County ,ID,16,0,0,0,0,0,1,1,13,13,63,75,240,248,461,472,581,584,757,772,1461,1469,2166,2170,2537,2537,2764,2764,2861,2862,2901,2905,2935,2935,2949,2950,2974,2975,3021,3021,3195,3209,3535,3547,3863,3877,3975,3982,4066
16033,Clark County ,ID,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,21,35,35,40,40,48,49,53,53,54,54,53,53,56,57,59,59,59,59,59,59,59,59,60,60,73,73,83,83,89,89,93
16035,Clearwater County ,ID,16,0,0,0,0,0,0,0,0,0,0,0,1,1,15,15,21,21,52,53,149,149,539,560,825,825,974,974,1001,1001,1029,1029,1045,1045,1069,1073,1085,1085,1099,1099,1334,1345,1548,1554,1614,1617,1681,1685,1760
16037,Custer County ,ID,16,0,0,0,0,0,2,2,2,2,2,2,4,4,7,7,36,37,71,71,97,98,146,150,203,203,227,227,231,232,242,242,246,246,255,255,257,257,262,262,275,275,341,343,373,376,402,402,415
16039,Elmore County ,ID,16,0,0,0,0,0,3,3,30,30,31,31,60,61,197,200,281,288,361,370,577,581,903,916,1347,1347,1511,1511,1609,1610,1772,1777,1978,1978,2068,2072,2130,2131,2220,2220,2636,2655,3546,3587,4122,4149,4367,4373,4508
16041,Franklin County ,ID,16,0,0,0,0,0,0,0,0,0,2,8,25,25,47,47,57,57,129,129,384,384,690,708,916,916,1015,1015,1075,1076,1147,1147,1179,1179,1199,1199,1225,1226,1257,1257,1327,1327,1470,1476,1600,1606,1745,1753,1833
16043,Fremont County ,ID,16,0,0,0,0,0,1,1,2,2,3,3,7,7,45,50,113,115,217,217,496,504,725,731,871,871,949,949,1009,1014,1083,1087,1125,1125,1136,1137,1143,1143,1177,1177,1260,1264,1403,1406,1505,1512,1627,1631,1749
16045,Gem County ,ID,16,0,0,0,0,0,3,4,13,13,17,17,26,26,150,151,210,212,340,345,448,452,980,1011,1416,1416,1644,1644,1698,1698,1732,1733,1752,1752,1809,1811,1842,1843,1907,1907,2151,2174,2483,2491,2797,2803,2893,2895,2971
16047,Gooding County ,ID,16,0,0,0,0,0,0,1,11,11,47,49,65,65,131,134,231,232,304,312,631,636,950,961,1147,1147,1238,1238,1269,1269,1286,1288,1299,1299,1317,1317,1337,1340,1370,1370,1603,1618,2049,2064,2271,2275,2354,2357,2431
16049,Idaho County ,ID,16,0,0,0,0,0,1,1,3,3,3,3,4,5,29,29,42,43,210,213,380,380,752,771,1024,1024,1143,1143,1162,1164,1174,1174,1193,1193,1266,1275,1342,1343,1381,1381,1620,1624,1854,1866,2114,2132,2299,2307,2380
16051,Jefferson County ,ID,16,0,0,0,0,0,3,3,5,5,7,7,18,18,131,135,352,362,607,618,1021,1025,1550,1580,2067,2067,2263,2263,2447,2455,2816,2832,2977,2977,3017,3018,3030,3033,3096,3096,3294,3300,3673,3682,4134,4158,4434,4443,4610
16053,Jerome County ,ID,16,0,0,0,0,0,2,4,54,54,169,174,239,243,414,420,601,603,783,791,1189,1198,1893,1905,2217,2217,2421,2421,2503,2504,2535,2535,2587,2587,2627,2630,2650,2653,2711,2711,3120,3144,3823,3858,4258,4266,4378,4384,4494
16055,Kootenai County ,ID,16,0,0,0,0,0,30,31,62,62,68,73,261,286,1538,1574,2187,2200,2743,2773,4444,4509,7483,7660,12612,12612,15710,15710,16641,16674,17185,17213,17776,17776,18554,18605,19078,19090,19760,19760,21877,22107,25375,25532,28942,29090,30876,30945,32238
16057,Latah County ,ID,16,0,0,0,0,0,0,1,5,5,7,7,20,24,78,79,242,245,538,547,982,982,1697,1730,2154,2154,2501,2501,2730,2755,2917,2922,3100,3100,3196,3199,3219,3219,3275,3275,3615,3629,4145,4161,4552,4573,4725,4733,4882
16059,Lemhi County ,ID,16,0,0,0,0,0,0,0,1,1,1,1,2,2,12,12,70,70,107,109,284,290,431,431,462,462,475,475,495,497,516,516,523,523,532,532,534,534,547,547,617,624,736,737,845,852,953,958,1017
16061,Lewis County ,ID,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,35,35,85,85,205,210,342,342,368,368,379,379,385,385,391,391,412,414,438,438,454,454,559,560,692,696,773,779,831,833,857
16063,Lincoln County ,ID,16,0,0,0,0,0,2,5,27,27,33,33,36,36,50,50,67,67,94,94,237,240,355,357,434,434,476,476,485,486,494,494,501,501,511,511,512,512,513,513,548,548,626,627,683,689,743,748,780
16065,Madison County ,ID,16,0,0,0,0,0,4,4,11,11,21,21,35,35,131,132,240,252,847,892,2718,2751,4238,4276,5248,5248,5862,5862,6337,6353,6867,6890,7149,7149,7277,7286,7343,7347,7462,7462,7760,7770,8138,8160,8656,8692,9077,9101,9362
16067,Minidoka County ,ID,16,0,0,0,0,0,1,1,10,10,50,56,185,188,419,428,550,556,725,733,1257,1260,1762,1765,2062,2062,2229,2229,2278,2279,2314,2315,2334,2334,2341,2343,2357,2357,2405,2405,2576,2586,2914,2926,3152,3167,3248,3249,3313
16069,Nez Perce County ,ID,16,0,0,0,0,0,9,10,60,60,82,82,96,97,130,130,298,301,461,465,924,924,2266,2342,3027,3027,3289,3289,3357,3362,3479,3484,3585,3585,3678,3684,3755,3757,3898,3898,4756,4780,5699,5714,6133,6160,6375,6387,6610
16071,Oneida County ,ID,16,0,0,0,0,0,0,0,0,0,0,0,2,3,8,8,21,21,26,26,64,64,140,147,250,250,311,311,329,330,347,347,356,356,363,364,365,365,378,378,403,405,463,464,546,547,587,587,608
16073,Owyhee County ,ID,16,0,0,0,0,0,1,1,8,8,8,8,41,41,227,232,304,305,333,335,405,406,697,705,886,886,972,972,1005,1005,1038,1038,1058,1058,1077,1079,1090,1090,1111,1111,1210,1211,1439,1448,1649,1654,1702,1701,1752
16075,Payette County ,ID,16,0,0,0,0,0,1,3,16,16,23,23,102,111,323,326,672,690,910,919,1171,1174,1635,1657,2062,2062,2314,2314,2377,2378,2453,2453,2536,2536,2584,2590,2630,2631,2668,2668,2993,3022,3538,3559,4108,4122,4243,4244,4346
16077,Power County ,ID,16,0,0,0,0,0,0,0,2,2,5,6,17,17,41,42,119,119,250,254,376,376,462,467,546,546,601,601,626,628,648,649,653,653,657,657,660,659,674,674,743,748,884,891,1054,1062,1107,1108,1129
16079,Shoshone County ,ID,16,0,0,0,0,0,0,0,0,0,0,0,0,0,67,73,197,197,216,216,287,288,507,521,840,840,964,964,1002,1003,1047,1050,1091,1091,1146,1156,1197,1197,1302,1302,1488,1503,1725,1735,1985,2002,2123,2130,2212
16081,Teton County ,ID,16,0,0,0,0,0,2,3,9,9,11,11,17,20,57,58,126,126,185,192,302,305,562,565,723,723,997,997,1074,1085,1158,1166,1209,1209,1227,1228,1232,1232,1251,1251,1362,1369,1517,1520,1652,1654,1724,1732,1867
16083,Twin Falls County ,ID,16,0,0,0,0,0,6,17,181,191,419,425,599,614,1199,1206,1685,1689,2376,2424,4316,4363,6848,6891,7946,7946,8750,8750,9007,9014,9138,9140,9440,9440,9662,9679,9797,9808,10279,10279,11968,12070,14376,14489,15907,15948,16535,16560,17042
16085,Valley County ,ID,16,0,0,0,0,0,2,2,2,2,2,2,13,14,46,46,84,84,97,97,127,129,247,253,482,482,715,715,794,795,826,826,835,835,847,848,876,876,915,915,1080,1086,1292,1307,1488,1496,1568,1573,1640
16087,Washington County ,ID,16,0,0,0,0,0,0,0,1,1,38,38,102,107,183,189,278,284,368,374,481,484,769,781,994,994,1157,1157,1174,1174,1198,1198,1214,1214,1227,1229,1240,1240,1244,1244,1375,1401,1679,1690,1872,1874,1913,1914,1949
0,Statewide Unallocated,IL,17,0,0,0,0,0,17,25,370,363,203,211,49,51,69,62,63,80,119,91,69,73,195,198,164,173,110,107,83,82,87,93,102,114,87,84,54,59,55,57,106,109,218,252,284,284,284,284,284
17001,Adams County ,IL,17,0,0,0,0,0,2,2,40,40,44,44,87,93,393,410,771,786,1199,1209,2218,2223,4775,4838,6477,6592,7701,7717,8003,8006,8075,8087,8322,8325,8611,8615,8803,8820,9796,9828,11634,11753,12849,12862,13357,13367,14399,14429,16399
17003,Alexander County ,IL,17,0,0,0,0,0,0,0,3,3,8,8,22,22,35,36,44,44,85,87,153,154,261,265,341,343,415,416,448,448,456,457,464,464,470,470,476,475,497,497,610,614,685,685,758,758,802,805,896
17005,Bond County ,IL,17,0,0,0,0,0,2,2,6,6,12,12,13,13,48,49,144,154,342,349,539,544,1050,1086,1554,1555,1808,1809,1909,1910,1939,1939,2016,2018,2082,2082,2087,2091,2139,2139,2313,2320,2475,2480,2597,2597,2730,2742,3079
17007,Boone County ,IL,17,0,0,0,0,0,0,0,98,113,452,463,586,595,722,727,865,873,1153,1160,2130,2171,3962,3998,5070,5095,5719,5724,5923,5926,6112,6125,6568,6582,6790,6791,6845,6846,6970,6971,7280,7297,7702,7709,8049,8058,8719,8771,10069
17009,Brown County ,IL,17,0,0,0,0,0,0,0,0,1,10,10,10,10,13,13,20,20,69,70,125,127,322,330,451,454,641,641,663,663,680,680,695,696,723,723,750,750,814,814,983,988,1036,1039,1074,1074,1113,1116,1225
17011,Bureau County ,IL,17,0,0,0,0,0,1,2,10,10,15,15,29,29,123,132,370,378,671,685,1003,1022,2145,2163,2813,2834,3118,3121,3307,3308,3421,3425,3624,3630,3765,3765,3792,3793,3870,3874,4056,4077,4314,4325,4502,4510,4881,4900,5791
17013,Calhoun County ,IL,17,0,0,0,0,0,0,0,1,1,1,1,1,1,6,7,26,26,62,64,84,84,251,262,381,382,453,453,478,478,504,504,515,515,518,518,531,531,545,545,600,600,651,657,705,707,790,807,1005
17015,Carroll County ,IL,17,0,0,0,0,0,2,3,9,9,15,15,21,21,43,44,134,135,238,242,503,506,1073,1084,1333,1338,1502,1504,1576,1576,1641,1644,1730,1732,1773,1773,1786,1788,2054,2055,2138,2145,2281,2287,2385,2387,2639,2648,3013
17017,Cass County ,IL,17,0,0,0,0,0,0,0,33,34,73,73,129,130,192,198,299,299,404,409,476,476,966,992,1586,1596,1832,1834,1888,1890,1926,1927,1970,1971,2015,2016,2039,2044,2120,2120,2303,2316,2557,2566,2678,2678,2764,2769,3157
17019,Champaign County ,IL,17,0,0,0,0,0,26,33,130,143,640,645,860,880,1486,1513,2462,2498,4818,4879,6705,6824,10906,11030,13832,13946,16327,16378,18105,18115,19028,19058,20272,20304,20976,20981,21153,21157,21752,21796,24149,24317,26246,26288,27382,27407,29881,30062,38365
17021,Christian County ,IL,17,0,0,0,0,0,13,14,30,29,35,35,43,43,101,111,232,244,565,595,899,912,1903,1914,2600,2631,3119,3124,3305,3305,3411,3417,3596,3601,3802,3820,3844,3844,3982,3995,4398,4429,5028,5046,5450,5453,5809,5835,6821
17023,Clark County ,IL,17,0,0,0,0,0,1,1,5,5,11,11,14,14,66,66,116,116,183,184,334,334,805,815,1212,1223,1590,1592,1686,1686,1721,1727,1777,1779,1825,1825,1850,1851,1917,1917,2183,2196,2578,2583,2700,2703,2965,2981,3307
17025,Clay County ,IL,17,0,0,0,0,0,0,0,2,2,2,2,2,2,12,13,80,84,159,173,341,350,844,873,1198,1221,1374,1375,1428,1429,1456,1457,1479,1480,1488,1488,1505,1506,1573,1577,2007,2042,2474,2479,2639,2642,2888,2902,3416
17027,Clinton County ,IL,17,0,0,0,0,0,7,8,106,110,186,186,236,237,330,333,715,740,1222,1239,1899,1919,3337,3380,4485,4511,5318,5325,5571,5571,5672,5674,5732,5735,5777,5777,5796,5797,5956,5962,6500,6533,6883,6902,7179,7180,7451,7472,8359
17029,Coles County ,IL,17,0,0,0,0,0,0,0,22,22,127,127,164,170,367,385,974,986,1508,1522,2155,2178,3327,3369,4294,4324,4896,4900,5196,5203,5427,5433,5631,5635,5736,5736,5779,5779,5904,5915,6588,6658,7548,7579,8036,8045,8633,8685,9816
17031,Cook County ,IL,17,0,2,2,2,3,4496,5152,36513,38668,77925,78495,90536,90911,105493,106131,126577,126992,145462,146152,189660,193102,306369,310722,393652,396204,453634,454485,474397,474885,497885,499429,534462,535614,553716,553926,557001,557124,564726,565230,592050,593219,619576,620602,642900,643512,677347,678881,835356
17033,Crawford County ,IL,17,0,0,0,0,0,1,1,10,10,11,11,18,18,29,29,78,80,466,472,680,684,1122,1150,1578,1587,1893,1895,2007,2007,2063,2064,2103,2106,2137,2138,2145,2145,2215,2218,2741,2762,3165,3181,3366,3370,3535,3539,3894
17035,Cumberland County ,IL,17,0,0,0,0,0,1,1,3,3,10,10,11,12,46,46,140,140,219,221,318,323,621,631,937,942,1128,1130,1192,1192,1266,1266,1288,1288,1298,1298,1303,1304,1316,1319,1486,1525,1826,1830,1925,1928,2074,2079,2359
17037,DeKalb County ,IL,17,0,0,0,0,0,9,14,95,105,416,418,550,558,808,827,1110,1127,1622,1649,2701,2779,5028,5160,6643,6687,7845,7853,8265,8276,8651,8673,9667,9691,10050,10052,10156,10159,10315,10319,10938,10984,11813,11836,12354,12362,13397,13480,16126
17039,De Witt County ,IL,17,0,0,0,0,0,0,0,3,3,4,4,6,6,27,27,43,44,129,133,295,303,628,637,915,923,1208,1208,1279,1280,1326,1331,1436,1442,1563,1564,1573,1575,1618,1621,1804,1813,1995,2003,2112,2114,2398,2417,2973
17041,Douglas County ,IL,17,0,0,0,0,0,3,8,14,16,28,28,52,52,103,102,222,223,318,326,816,825,1369,1385,1854,1864,2120,2124,2444,2450,2517,2520,2565,2568,2601,2601,2609,2610,2658,2659,2859,2870,3124,3131,3323,3324,3525,3557,4224
17043,DuPage County ,IL,17,0,0,0,0,0,356,392,3081,3256,7707,7765,9032,9083,11267,11380,14615,14679,17786,17873,25201,25681,45446,47179,61805,62300,72454,72610,76765,76871,81889,82163,88752,88941,91860,91893,92565,92579,94126,94210,99590,99854,105071,105273,110027,110185,117788,118195,145197
17045,Edgar County ,IL,17,0,0,0,0,0,0,0,0,0,1,1,10,10,25,25,83,84,116,118,173,175,820,843,1344,1347,1508,1508,1542,1543,1633,1633,1679,1683,1748,1749,1772,1772,1811,1811,2020,2048,2416,2431,2636,2643,2896,2912,3503
17047,Edwards County ,IL,17,0,0,0,0,0,0,0,0,0,2,2,2,2,12,13,39,42,68,70,115,116,227,228,397,401,491,491,523,523,541,541,566,566,574,574,584,584,646,646,841,844,996,999,1049,1049,1138,1141,1268
17049,Effingham County ,IL,17,0,0,0,0,0,0,0,5,5,7,7,12,12,83,95,535,549,883,896,1316,1330,2801,2860,3860,3906,4391,4394,4492,4494,4576,4580,4697,4700,4749,4750,4771,4773,4842,4849,5232,5284,6309,6324,6730,6735,7180,7207,7989
17051,Fayette County ,IL,17,0,0,0,0,0,1,2,16,16,21,21,23,23,53,54,169,172,437,449,731,735,1722,1812,2664,2671,3012,3012,3064,3064,3097,3100,3150,3150,3200,3200,3227,3228,3277,3278,3536,3566,4143,4164,4381,4383,4652,4670,5212
17053,Ford County ,IL,17,0,0,0,0,0,1,1,9,9,20,20,31,33,38,39,70,71,108,109,220,222,760,781,1227,1253,1436,1436,1584,1587,1640,1644,1735,1742,1844,1845,1893,1892,1957,1958,2171,2191,2370,2372,2498,2498,2658,2668,3153
17055,Franklin County ,IL,17,0,0,0,0,0,1,1,8,8,12,12,14,22,116,118,343,345,552,556,1093,1110,2077,2109,3362,3391,3992,3997,4145,4146,4264,4268,4378,4388,4520,4519,4553,4554,4943,4963,6057,6114,7059,7086,7362,7364,7681,7690,8593
17057,Fulton County ,IL,17,0,0,0,0,0,0,0,3,3,11,11,15,15,24,25,86,89,190,197,641,657,1485,1510,2342,2352,2691,2695,2852,2853,3300,3324,3781,3801,4037,4037,4052,4052,4123,4128,4490,4508,4984,5000,5325,5328,5612,5634,6804
17059,Gallatin County ,IL,17,0,0,0,0,0,0,0,2,2,2,2,2,2,42,43,63,63,75,76,115,117,193,196,330,333,410,410,437,437,451,452,457,457,462,462,470,470,514,516,653,654,771,771,798,799,824,824,918
17061,Greene County ,IL,17,0,0,0,0,0,0,0,3,3,5,5,9,9,17,19,115,115,235,238,336,342,829,850,1115,1129,1313,1317,1379,1379,1402,1404,1429,1431,1449,1450,1456,1457,1563,1566,1840,1852,2018,2018,2064,2064,2172,2180,2602
17063,Grundy County ,IL,17,0,0,0,0,0,4,4,35,37,98,99,162,167,269,274,481,483,687,698,1104,1125,2813,2882,3859,3912,4673,4686,5120,5125,5412,5428,5752,5770,5958,5964,5995,5994,6080,6092,6582,6614,7129,7141,7496,7506,8190,8241,9883
17065,Hamilton County ,IL,17,0,0,0,0,0,0,0,2,2,2,2,5,5,19,20,45,45,74,74,148,148,387,399,601,602,751,751,788,788,805,807,825,828,839,839,844,846,923,929,1096,1107,1307,1311,1353,1353,1413,1423,1548
17067,Hancock County ,IL,17,0,0,0,0,0,0,0,6,6,17,17,18,19,28,30,138,140,228,231,359,369,964,981,1316,1324,1591,1595,1671,1672,1699,1700,1739,1741,1788,1788,1823,1827,1956,1967,2292,2313,2640,2648,2779,2783,3038,3041,3389
17069,Hardin County ,IL,17,0,0,0,0,0,0,0,1,1,1,1,1,1,16,16,18,19,39,40,59,59,156,160,217,219,318,318,344,345,360,361,382,382,389,389,391,391,399,399,514,520,567,568,622,622,669,671,760
17071,Henderson County ,IL,17,0,0,0,0,0,0,0,4,5,8,8,8,8,9,9,45,45,71,72,136,137,290,299,397,399,476,477,498,498,519,519,522,522,529,529,529,529,534,534,590,592,680,683,719,719,811,817,893
17073,Henry County ,IL,17,0,0,0,0,0,2,3,45,49,69,69,84,88,194,195,465,468,679,684,886,888,2728,2746,3692,3704,4179,4183,4329,4330,4507,4522,4859,4867,5059,5059,5079,5081,5178,5180,5633,5680,6359,6376,6722,6727,7304,7348,8783
17075,Iroquois County ,IL,17,0,0,0,0,0,2,2,27,31,132,132,157,157,240,245,298,306,368,368,556,572,1719,1744,2323,2347,2672,2674,2771,2771,2846,2847,2945,2956,3088,3090,3158,3160,3319,3324,3627,3656,4060,4066,4291,4291,4636,4661,5471
17077,Jackson County ,IL,17,0,0,0,0,0,4,4,107,120,286,289,332,332,616,631,929,951,1276,1281,1646,1660,2711,2752,3650,3666,4400,4418,4610,4611,4742,4748,4934,4941,5075,5076,5117,5121,5534,5544,6821,6871,7848,7876,8155,8159,8390,8409,9627
17079,Jasper County ,IL,17,0,0,0,0,0,0,0,44,44,45,45,46,46,50,51,129,132,212,213,286,294,652,675,894,899,1077,1079,1109,1110,1131,1132,1148,1148,1156,1156,1167,1167,1170,1170,1337,1349,1559,1559,1630,1630,1729,1738,1963
17081,Jefferson County ,IL,17,0,0,0,0,0,0,0,83,85,101,101,107,107,176,184,457,462,641,650,990,1017,1908,1941,2926,2960,3715,3718,3976,3980,4070,4075,4214,4222,4409,4409,4446,4449,4717,4722,5460,5485,6207,6240,6646,6652,6957,6961,7593
17083,Jersey County ,IL,17,0,0,0,0,0,0,0,12,12,24,24,35,35,62,65,276,278,398,400,492,495,1298,1320,1972,1993,2356,2366,2496,2496,2558,2564,2674,2678,2709,2709,2723,2724,2814,2820,3068,3076,3281,3284,3413,3413,3716,3729,4352
17085,Jo Daviess County ,IL,17,0,0,0,0,0,1,3,13,13,32,32,42,44,110,112,176,177,275,282,574,584,1083,1094,1388,1388,1551,1552,1605,1605,1682,1688,1792,1796,1826,1826,1830,1830,1840,1841,1943,1950,2092,2097,2213,2215,2581,2604,2907
17087,Johnson County ,IL,17,0,0,0,0,0,0,0,4,4,8,9,20,20,53,55,116,117,163,168,400,408,724,737,982,1005,1298,1299,1347,1347,1372,1373,1412,1412,1466,1466,1483,1483,1578,1580,1921,1938,2190,2190,2346,2346,2457,2463,2768
17089,Kane County ,IL,17,0,0,0,0,0,128,142,1526,1677,6338,6404,7703,7733,9069,9138,11204,11285,13285,13344,18390,18650,31955,32533,41511,41786,48243,48339,50746,50800,52886,53004,57181,57295,59184,59196,59547,59559,60263,60305,63399,63595,66595,66733,69300,69350,73556,73777,87544
17091,Kankakee County ,IL,17,0,0,0,0,0,42,51,338,350,910,915,1272,1285,1659,1672,2237,2256,2776,2788,3798,3867,8689,8836,10678,10737,11878,11896,12496,12502,13011,13032,13845,13877,14442,14444,14601,14604,14778,14785,15680,15731,17127,17194,18142,18160,19495,19541,22800
17093,Kendall County ,IL,17,0,0,0,0,0,19,27,266,281,798,804,956,963,1262,1277,1653,1660,2054,2060,3026,3083,6318,6495,8449,8527,10343,10376,11059,11077,11686,11719,12727,12756,13234,13238,13306,13311,13552,13564,14543,14587,15696,15724,16487,16509,17831,17901,22163
17095,Knox County ,IL,17,0,0,0,0,0,1,1,46,47,100,101,130,132,241,251,458,459,704,718,1447,1467,2840,2890,4059,4086,4792,4801,5017,5018,5135,5139,5448,5461,5615,5616,5660,5663,5750,5760,6148,6169,6869,6903,7465,7474,7895,7913,8961
17097,Lake County ,IL,17,0,0,0,0,0,389,477,3509,3766,8331,8408,9719,9752,11855,11952,14594,14639,17151,17246,22278,22618,37596,38073,48300,48576,55958,56107,59517,59589,62242,62368,65949,66075,68071,68090,68451,68463,69445,69512,73680,73912,78007,78147,81342,81410,86885,87188,102740
17099,LaSalle County ,IL,17,0,0,0,0,0,5,6,53,54,153,153,216,219,480,497,1256,1273,1758,1768,2736,2776,6161,6274,8363,8423,10088,10104,10798,10810,11283,11318,12175,12212,12710,12713,12795,12801,13005,13011,13719,13774,14660,14685,15209,15220,16093,16155,19377
17101,Lawrence County ,IL,17,0,0,0,0,0,0,0,3,3,4,4,7,7,40,40,137,136,263,267,370,379,1082,1118,1985,1989,2223,2226,2296,2300,2371,2372,2399,2400,2408,2408,2410,2410,2458,2459,2730,2741,3137,3149,3381,3383,3492,3500,3905
17103,Lee County ,IL,17,0,0,0,0,0,0,0,24,23,81,81,97,97,136,146,244,243,394,412,907,926,2019,2046,2707,2729,3214,3219,3352,3353,3714,3725,4079,4094,4189,4189,4192,4196,4243,4244,4386,4406,4645,4659,4862,4862,5101,5148,6002
17105,Livingston County ,IL,17,0,0,0,0,0,3,5,20,20,34,34,43,45,85,92,193,199,408,418,753,769,2268,2312,3140,3160,3932,3943,4198,4206,4412,4420,4720,4731,4878,4878,4908,4908,4956,4957,5277,5293,5781,5791,6041,6043,6325,6348,7378
17107,Logan County ,IL,17,0,0,0,0,0,0,0,7,7,10,11,14,15,79,85,263,265,469,473,657,666,1736,1784,2705,2720,3218,3225,3310,3309,3465,3476,3774,3786,3949,3951,3997,4002,4118,4129,4559,4575,4818,4828,4989,4990,5255,5280,6271
17109,McDonough County ,IL,17,0,0,0,0,0,0,0,18,18,88,89,100,101,123,125,203,215,490,498,823,828,1607,1609,1978,1996,2231,2240,2327,2328,2427,2441,2732,2743,2895,2895,2940,2945,3097,3106,3383,3391,3619,3623,3800,3801,4060,4062,4793
17111,McHenry County ,IL,17,0,0,0,0,0,63,69,621,666,1566,1585,2032,2061,2866,2909,3855,3881,4653,4683,7115,7265,14350,14655,19128,19297,22765,22837,24315,24336,25586,25658,27928,28000,29057,29061,29205,29211,29743,29783,31560,31639,33528,33608,35439,35474,39086,39266,47429
17113,McLean County ,IL,17,0,0,0,0,0,19,18,95,97,220,220,260,261,536,552,1788,1869,3325,3346,4422,4500,8603,8711,11621,11751,13873,13913,14601,14621,15644,15719,17645,17689,18479,18484,18562,18571,18965,19002,20551,20665,22287,22337,23355,23367,25233,25399,30806
17115,Macon County ,IL,17,0,0,0,0,0,2,2,106,109,193,194,232,231,434,450,942,988,1636,1672,3629,3685,6602,6669,7959,8004,9117,9126,9457,9461,9879,9900,10494,10517,10931,10934,11013,11017,11234,11254,12912,12998,14766,14812,15516,15533,16601,16716,20029
17117,Macoupin County ,IL,17,0,0,0,0,0,0,0,30,31,45,45,51,52,127,131,349,352,567,576,871,877,2276,2321,3273,3297,4136,4146,4350,4352,4496,4502,4643,4645,4765,4766,4802,4809,5022,5027,5757,5807,6651,6676,7120,7127,7564,7591,8621
17119,Madison County ,IL,17,0,0,0,0,0,16,25,333,335,580,594,932,947,2099,2137,4040,4102,5828,5888,7643,7751,14607,14832,21054,21241,26173,26251,27987,28026,29202,29259,30146,30187,30817,30819,31139,31161,32738,32824,35930,36060,38863,38956,40581,40620,42614,42746,48925
17121,Marion County ,IL,17,0,0,0,0,0,2,2,33,34,50,50,65,66,130,132,272,278,573,595,1187,1207,2523,2558,3548,3566,4178,4181,4262,4262,4364,4365,4434,4437,4495,4495,4530,4537,4855,4873,5893,5926,6663,6691,7006,7013,7489,7505,8466
17123,Marshall County ,IL,17,0,0,0,0,0,1,1,4,4,5,5,8,8,18,21,51,53,111,113,176,174,414,421,578,583,748,753,838,839,919,925,1021,1025,1081,1081,1083,1084,1115,1118,1252,1260,1366,1369,1430,1431,1540,1548,1947
17125,Mason County ,IL,17,0,0,0,0,0,0,0,12,12,18,18,22,22,42,42,86,87,161,167,350,361,733,749,1026,1037,1222,1227,1286,1286,1349,1353,1466,1471,1535,1535,1553,1558,1649,1652,1846,1859,2043,2055,2166,2167,2276,2289,2732
17127,Massac County ,IL,17,0,0,0,0,0,0,1,4,4,7,7,11,13,33,34,65,65,117,121,167,172,603,610,893,908,1123,1125,1271,1272,1307,1307,1326,1327,1357,1357,1363,1363,1466,1466,1739,1756,2043,2052,2202,2203,2317,2325,2636
17129,Menard County ,IL,17,0,0,0,0,0,1,1,8,9,20,20,25,25,44,45,70,70,128,129,191,193,473,486,729,738,961,963,1036,1038,1138,1141,1206,1207,1244,1245,1255,1255,1289,1297,1454,1456,1649,1656,1744,1744,1912,1917,2297
17131,Mercer County ,IL,17,0,0,0,0,0,0,0,8,8,17,17,20,20,65,68,100,103,141,145,325,339,766,773,1069,1075,1209,1210,1280,1280,1320,1322,1414,1421,1487,1487,1499,1499,1525,1526,1721,1744,1958,1962,2083,2086,2302,2307,2813
17133,Monroe County ,IL,17,0,0,0,0,0,3,3,70,71,95,96,127,127,261,270,454,461,690,697,1051,1068,2087,2126,3135,3176,3812,3829,4065,4066,4202,4212,4340,4343,4373,4373,4399,4402,4538,4539,4872,4883,5145,5150,5299,5305,5579,5604,6409
17135,Montgomery County ,IL,17,0,0,0,0,0,2,2,26,26,39,39,44,44,138,141,252,251,389,398,681,687,1159,1189,2166,2191,3257,3271,3495,3500,3595,3600,3682,3684,3775,3776,3800,3801,3871,3877,4269,4311,4754,4758,4995,4996,5349,5379,6225
17137,Morgan County ,IL,17,0,0,0,0,0,4,5,22,24,36,36,128,128,184,189,481,495,674,680,1059,1064,2225,2243,3007,3032,3365,3369,3587,3588,3695,3699,3828,3830,3922,3923,3965,3971,4167,4171,4590,4601,4927,4934,5163,5165,5350,5374,6078
17139,Moultrie County ,IL,17,0,0,0,0,0,0,0,5,5,11,11,17,18,52,52,161,162,222,230,490,496,908,929,1260,1268,1433,1435,1491,1494,1530,1534,1591,1595,1624,1624,1637,1637,1691,1692,1876,1901,2160,2168,2433,2438,2617,2631,2968
17141,Ogle County ,IL,17,0,0,0,0,0,1,1,119,122,206,211,261,261,368,371,476,483,748,758,1400,1428,2881,2923,4102,4130,4800,4807,5020,5021,5416,5438,5969,5986,6170,6172,6230,6234,6311,6315,6658,6686,7268,7294,7702,7708,8531,8614,10095
17143,Peoria County ,IL,17,0,0,0,0,0,8,10,86,93,233,238,487,499,1252,1280,2406,2414,3555,3583,4995,5083,9273,9446,13172,13315,15821,15865,16897,16906,18587,18760,22433,22512,23389,23389,23474,23480,23798,23815,24845,24922,26268,26306,27207,27224,28841,28901,34968
17145,Perry County ,IL,17,0,0,0,0,0,0,0,21,24,41,41,51,54,101,101,291,294,358,360,495,507,1112,1128,2185,2218,2879,2889,3054,3058,3113,3113,3139,3140,3195,3195,3203,3204,3318,3324,3830,3858,4211,4216,4376,4379,4536,4544,4918
17147,Piatt County ,IL,17,0,0,0,0,0,0,0,7,7,11,11,19,20,37,40,79,80,143,145,287,290,791,808,1046,1058,1230,1232,1327,1328,1390,1392,1447,1449,1521,1521,1526,1526,1568,1571,1763,1783,1949,1956,2053,2055,2321,2342,2995
17149,Pike County ,IL,17,0,0,0,0,0,0,0,1,1,1,1,2,2,13,13,72,73,139,144,432,441,1021,1041,1395,1402,1637,1639,1691,1692,1734,1735,1780,1782,1800,1800,1833,1835,2041,2044,2371,2384,2594,2596,2676,2676,2874,2883,3651
17151,Pope County ,IL,17,0,0,0,0,0,0,0,0,0,1,1,1,1,7,7,19,19,30,30,44,45,101,105,196,200,264,264,282,282,302,302,312,313,326,326,331,331,347,349,415,420,515,520,565,565,588,594,698
17153,Pulaski County ,IL,17,0,0,0,0,0,0,0,18,20,56,56,74,76,90,90,121,125,183,187,246,247,426,438,560,563,646,646,670,669,673,673,683,683,695,696,703,703,748,749,913,925,1007,1009,1064,1064,1088,1092,1201
17155,Putnam County ,IL,17,0,0,0,0,0,0,0,0,0,1,1,1,1,7,7,20,20,63,64,103,107,246,250,319,321,375,375,415,416,432,432,464,466,486,486,487,488,494,494,520,521,550,551,568,568,638,643,800
17157,Randolph County ,IL,17,0,0,0,0,0,3,7,156,164,270,269,285,287,417,422,739,748,958,966,1394,1403,2276,2305,3324,3346,3861,3867,3963,3963,4037,4045,4115,4115,4147,4147,4171,4172,4362,4366,4968,4983,5405,5415,5592,5592,5736,5744,6414
17159,Richland County ,IL,17,0,0,0,0,0,0,0,3,3,3,3,4,4,12,12,63,65,220,227,352,355,801,818,1309,1328,1601,1601,1635,1635,1682,1688,1728,1732,1761,1762,1769,1769,1831,1839,2227,2247,2706,2720,2846,2847,3131,3151,3500
17161,Rock Island County ,IL,17,0,0,0,0,0,11,17,377,389,658,661,925,947,1549,1564,2212,2228,3071,3112,4469,4522,8685,8750,11014,11067,12426,12439,13065,13069,13673,13735,14602,14635,15201,15202,15258,15259,15452,15457,16771,16834,18093,18140,19171,19176,20690,20727,24347
17163,St. Clair County ,IL,17,0,0,0,0,0,43,53,475,492,1137,1152,1874,1906,3507,3569,5264,5347,6747,6796,8342,8405,13579,13762,19050,19325,23677,23770,25440,25497,26612,26648,27540,27583,28131,28140,28553,28580,30377,30462,33433,33570,35452,35514,36600,36638,38391,38527,44184
17165,Saline County ,IL,17,0,0,0,0,0,1,1,3,3,7,7,9,9,102,105,164,164,362,372,646,653,1123,1133,1764,1790,2138,2138,2297,2298,2432,2438,2547,2549,2589,2589,2607,2611,2744,2754,3412,3440,4207,4223,4398,4398,4533,4543,5066
17167,Sangamon County ,IL,17,0,0,0,0,0,14,17,178,195,351,350,426,431,953,986,1784,1804,2479,2521,4548,4638,10253,10383,13219,13322,15262,15298,16128,16152,16973,17021,18303,18338,19002,19008,19155,19160,19840,19928,22699,22807,25019,25099,26070,26083,27406,27539,34120
17169,Schuyler County ,IL,17,0,0,0,0,0,0,0,2,1,13,13,13,13,15,15,21,23,50,53,101,101,278,290,543,552,659,660,677,677,687,687,727,730,777,777,783,783,819,822,911,915,997,1003,1113,1113,1169,1171,1331
17171,Scott County ,IL,17,0,0,0,0,0,0,0,0,0,0,0,0,0,9,10,46,46,80,80,116,116,233,244,327,332,422,422,449,449,456,457,476,476,485,486,492,492,521,522,659,663,701,702,718,718,752,757,918
17173,Shelby County ,IL,17,0,0,0,0,0,0,0,10,10,16,16,18,18,53,56,201,210,408,415,760,770,1388,1407,1793,1798,2048,2049,2139,2140,2206,2210,2271,2272,2317,2319,2328,2328,2379,2384,2652,2678,3260,3271,3569,3576,3856,3873,4443
17175,Stark County ,IL,17,0,0,0,0,0,0,0,1,1,3,3,3,3,7,7,24,24,56,56,98,102,269,274,449,454,504,504,541,541,554,555,627,628,644,644,648,648,671,672,729,729,781,782,826,830,890,896,1025
17177,Stephenson County ,IL,17,0,0,0,0,0,3,3,35,45,206,209,270,274,313,313,380,381,548,552,1221,1242,2489,2509,3242,3259,3750,3759,4096,4098,4279,4291,4626,4636,4808,4808,4838,4840,4902,4909,5129,5135,5587,5601,6035,6050,7135,7181,8366
17179,Tazewell County ,IL,17,0,0,0,0,0,4,4,45,41,73,73,127,137,335,361,1089,1109,1809,1839,2965,3034,6947,7094,10431,10553,12662,12692,13521,13538,14468,14571,16540,16569,17140,17141,17245,17251,17571,17585,18821,18877,20045,20075,20849,20860,22332,22399,27221
17181,Union County ,IL,17,0,0,0,0,0,0,0,17,19,154,155,188,191,276,296,426,432,524,530,817,821,1195,1209,1697,1713,2103,2103,2185,2185,2225,2226,2239,2241,2266,2266,2303,2303,2531,2538,2804,2815,2990,2993,3113,3113,3274,3291,3643
17183,Vermilion County ,IL,17,0,0,0,0,0,0,1,17,17,40,40,65,66,189,200,341,344,830,882,1933,1974,3974,4057,6429,6519,8025,8040,8564,8568,8877,8893,9267,9303,9920,9924,10053,10054,10314,10338,11908,11997,13591,13625,14707,14722,16226,16351,19220
17185,Wabash County ,IL,17,0,0,0,0,0,0,0,1,1,2,5,22,22,29,30,108,108,162,164,259,264,580,608,1048,1054,1247,1248,1300,1300,1333,1334,1341,1341,1350,1351,1371,1375,1514,1513,1796,1813,2083,2091,2184,2185,2241,2248,2446
17187,Warren County ,IL,17,0,0,0,0,0,0,0,62,70,117,117,136,138,179,180,258,258,334,338,568,570,1101,1120,1496,1504,1624,1628,1664,1664,1687,1692,1771,1773,1829,1830,1848,1848,1870,1871,2019,2036,2318,2324,2480,2483,2607,2613,3031
17189,Washington County ,IL,17,0,0,0,0,0,1,1,10,10,18,18,19,20,56,56,114,115,219,224,346,353,712,726,1225,1241,1523,1524,1583,1584,1613,1614,1635,1636,1647,1648,1651,1651,1713,1714,1924,1931,2082,2084,2143,2144,2240,2243,2478
17191,Wayne County ,IL,17,0,0,0,0,0,0,0,2,2,9,9,14,14,40,43,111,112,300,310,540,546,911,925,1336,1349,1577,1586,1674,1674,1708,1709,1752,1754,1802,1802,1821,1821,1927,1937,2358,2360,2839,2854,3091,3091,3257,3266,3606
17193,White County ,IL,17,0,0,0,0,0,0,0,2,2,2,2,4,5,56,57,123,125,176,182,294,299,619,639,1122,1134,1482,1482,1608,1609,1652,1654,1680,1683,1702,1702,1707,1707,1841,1846,2252,2262,2718,2725,2829,2830,2889,2893,3148
17195,Whiteside County ,IL,17,0,0,0,0,0,5,5,84,87,140,142,186,191,304,307,507,511,784,795,1738,1804,3767,3808,4828,4882,5571,5573,5926,5930,6314,6364,7059,7075,7187,7187,7206,7209,7262,7265,7536,7562,8047,8063,8406,8407,9098,9143,10595
17197,Will County ,IL,17,0,0,0,0,0,228,322,2492,2617,5566,5613,6686,6744,8443,8502,11546,11619,14239,14331,20358,20657,39020,40092,52293,52662,61289,61416,65037,65092,68489,68663,73834,74000,76635,76648,77030,77069,78451,78561,83451,83684,88467,88614,92651,92761,99357,99777,120815
17199,Williamson County ,IL,17,0,0,0,0,0,1,1,31,32,67,67,115,120,301,315,908,927,1426,1442,2040,2062,3659,3717,5316,5370,6522,6534,6796,6800,7051,7053,7320,7328,7524,7525,7646,7648,8293,8331,10072,10150,11713,11742,12201,12207,12729,12774,14491
17201,Winnebago County ,IL,17,0,0,0,0,0,15,18,442,485,2251,2290,3030,3046,3641,3663,4248,4278,6300,6455,11425,11638,19150,19376,24019,24182,27231,27291,28340,28351,29299,29362,32195,32302,33883,33893,34193,34205,34868,34921,37042,37155,39593,39707,42040,42113,47028,47279,54367
17203,Woodford County ,IL,17,0,0,0,0,0,3,3,13,14,19,21,33,33,87,91,278,281,432,441,746,781,1792,1839,2786,2828,3447,3459,3675,3679,4013,4043,4604,4618,4803,4803,4859,4863,4944,4948,5288,5305,5615,5630,5864,5873,6373,6386,7505
0,Statewide Unallocated,IN,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
18001,Adams County ,IN,18,0,0,0,0,0,1,1,7,7,15,17,45,45,74,79,385,387,498,512,972,1000,2085,2130,2893,2923,3357,3359,3501,3505,3670,3671,3728,3734,3778,3780,3792,3792,3886,3886,4414,4438,4878,4893,5244,5265,5681,5723,6258
18003,Allen County ,IN,18,0,0,0,0,0,30,39,560,588,1618,1662,2649,2677,3510,3557,5005,5035,6440,6488,9523,9673,19608,19871,28059,28321,33740,33824,35858,35913,37837,37910,39995,40066,41445,41478,41875,41889,43249,43249,48857,49183,54906,55073,58844,59175,65862,66340,75061
18005,Bartholomew County ,IN,18,0,0,0,0,0,13,13,250,261,511,515,578,578,723,727,1077,1085,1218,1224,1586,1612,3569,3634,5485,5541,6855,6871,7469,7477,7725,7739,8025,8035,8154,8157,8202,8202,8318,8318,9358,9432,10886,10939,11811,11852,12753,12837,14569
18007,Benton County ,IN,18,0,0,0,0,0,0,0,8,8,30,31,47,48,59,60,80,81,87,87,120,123,394,411,745,753,888,890,919,920,939,939,982,982,995,1000,1043,1055,1105,1105,1249,1268,1457,1459,1521,1523,1639,1655,1871
18009,Blackford County ,IN,18,0,0,0,0,0,0,0,8,8,25,26,35,37,51,51,80,80,132,134,294,298,607,612,902,906,1151,1151,1217,1217,1312,1315,1355,1355,1366,1366,1375,1377,1393,1393,1518,1528,1763,1768,1990,2000,2200,2210,2444
18011,Boone County ,IN,18,0,0,0,0,0,22,29,189,189,315,315,421,422,613,626,862,866,1023,1031,1425,1440,2695,2722,4472,4560,5731,5750,6102,6110,6385,6391,6647,6657,6864,6878,7044,7049,7255,7255,7821,7844,8586,8607,9036,9076,9728,9792,11056
18013,Brown County ,IN,18,0,0,0,0,0,3,3,15,16,33,33,38,38,68,69,89,90,102,103,159,160,381,394,739,752,905,906,949,950,972,972,1009,1012,1032,1032,1044,1044,1064,1064,1228,1232,1380,1384,1491,1504,1741,1743,1976
18015,Carroll County ,IN,18,0,0,0,0,0,2,2,22,24,93,93,108,109,128,139,255,257,283,285,379,386,753,769,1333,1355,1660,1664,1767,1767,1815,1816,1877,1879,1928,1930,1943,1943,1990,1990,2244,2250,2493,2500,2650,2663,2905,2921,3279
18017,Cass County ,IN,18,0,0,0,0,0,1,1,1164,1214,1587,1587,1636,1636,1740,1743,1875,1875,1964,1987,2397,2407,3118,3161,4200,4248,5034,5043,5448,5449,5622,5629,5761,5766,5956,5959,6040,6041,6115,6115,6603,6635,7294,7301,7611,7624,8063,8107,8894
18019,Clark County ,IN,18,0,0,0,0,0,33,38,293,316,504,505,616,622,1023,1062,1773,1784,2310,2334,3289,3329,5496,5568,8403,8566,11177,11227,11967,11986,12442,12460,12849,12858,13145,13157,13269,13270,13644,13644,15942,16036,17836,17904,18910,18963,20007,20093,21919
18021,Clay County ,IN,18,0,0,0,0,0,1,1,20,20,51,51,59,59,93,94,229,233,315,317,545,554,1351,1366,1876,1887,2285,2293,2410,2414,2472,2472,2579,2581,2634,2635,2688,2691,2760,2760,3385,3411,4023,4037,4306,4322,4598,4606,5082
18023,Clinton County ,IN,18,0,0,0,0,0,1,1,38,45,232,233,279,279,341,349,553,555,648,655,1040,1059,1933,1981,3208,3244,3819,3826,3959,3963,4069,4076,4253,4257,4344,4347,4462,4466,4589,4589,5012,5024,5454,5468,5839,5857,6204,6227,6965
18025,Crawford County ,IN,18,0,0,0,0,0,1,1,17,17,24,24,29,29,40,41,65,65,112,115,177,178,326,331,592,604,834,841,908,909,960,963,986,987,1021,1022,1026,1026,1064,1064,1282,1289,1501,1516,1614,1624,1683,1685,1842
18027,Daviess County ,IN,18,0,0,0,0,0,0,0,47,47,88,92,138,139,235,240,497,503,686,691,995,1012,1677,1705,2281,2303,2765,2768,2855,2855,2878,2879,2939,2940,3006,3006,3053,3055,3100,3100,3591,3624,4341,4371,4716,4725,5022,5044,5495
18029,Dearborn County ,IN,18,0,0,0,0,0,14,17,104,117,168,168,203,204,441,441,581,582,686,695,1135,1157,2419,2450,3843,3885,5042,5067,5479,5483,5603,5607,5770,5774,5880,5881,5915,5919,6049,6049,6795,6826,7868,7912,8304,8329,8879,8913,9855
18031,Decatur County ,IN,18,0,0,0,0,0,47,48,200,200,224,224,243,246,314,314,424,430,490,490,630,646,1442,1450,2152,2181,2599,2603,2761,2761,2814,2819,2876,2879,2943,2943,2957,2957,2991,2991,3483,3516,4000,4021,4259,4269,4611,4639,5216
18033,DeKalb County ,IN,18,0,0,0,0,0,1,2,20,20,37,37,157,159,221,221,345,347,503,504,894,916,1936,1978,2981,3018,3595,3601,3856,3857,3979,3980,4216,4217,4362,4364,4420,4424,4588,4588,5150,5186,5949,5974,6463,6512,7642,7697,8840
18035,Delaware County ,IN,18,0,0,0,0,0,18,22,176,182,385,385,425,426,615,628,1179,1234,2046,2069,3381,3399,5264,5311,7667,7724,9407,9441,9850,9852,10126,10152,10523,10545,10903,10910,11005,11007,11198,11198,12479,12557,14442,14489,15231,15279,16498,16593,18594
18037,Dubois County ,IN,18,0,0,0,0,0,3,3,23,23,199,199,259,260,605,616,839,848,1021,1043,1621,1635,2538,2575,4614,4705,5665,5674,5904,5911,6032,6032,6133,6134,6196,6196,6228,6228,6302,6302,6969,7005,7928,7962,8328,8342,8753,8780,9402
18039,Elkhart County ,IN,18,0,0,0,0,0,20,23,287,293,1322,1322,3041,3085,4521,4566,5693,5702,6849,6894,10224,10404,18168,18359,22743,22888,24783,24814,25477,25487,26416,26477,28112,28178,29286,29304,29572,29574,29918,29918,31311,31429,34423,34539,36412,36540,39730,39927,43635
18041,Fayette County ,IN,18,0,0,0,0,0,9,10,28,28,77,78,95,96,149,150,422,427,537,539,1030,1048,1727,1746,2325,2350,2689,2695,2849,2853,2890,2890,2918,2919,2975,2975,2986,2987,3011,3011,3371,3414,4006,4028,4222,4232,4524,4568,5296
18043,Floyd County ,IN,18,0,0,0,0,0,21,21,178,182,318,318,362,363,658,665,1082,1087,1426,1439,2016,2038,3388,3427,5114,5207,6692,6710,7211,7218,7431,7446,7617,7623,7740,7744,7837,7840,8082,8082,9379,9442,10677,10717,11238,11259,11915,11953,13116
18045,Fountain County ,IN,18,0,0,0,0,0,1,1,11,12,21,21,28,29,61,62,95,97,132,134,386,403,878,899,1521,1547,1903,1907,2016,2017,2061,2064,2115,2116,2164,2166,2259,2268,2374,2374,2720,2756,3232,3239,3395,3403,3693,3710,4206
18047,Franklin County ,IN,18,0,0,0,0,0,35,39,97,97,110,110,124,124,191,197,284,286,325,326,416,417,786,800,1229,1261,1551,1555,1612,1612,1649,1651,1683,1684,1717,1717,1724,1724,1751,1751,2026,2040,2496,2509,2696,2703,2895,2919,3309
18049,Fulton County ,IN,18,0,0,0,0,0,1,1,27,30,49,49,66,66,134,139,207,209,249,250,431,442,903,922,1387,1413,1683,1691,1783,1783,1866,1870,1937,1938,1982,1983,2044,2046,2096,2096,2373,2389,2858,2896,3207,3228,3569,3617,3943
18051,Gibson County ,IN,18,0,0,0,0,0,4,4,7,7,17,17,41,44,194,196,318,319,562,575,1011,1040,2075,2113,3016,3062,3861,3872,4017,4017,4207,4214,4334,4337,4425,4426,4477,4481,4677,4677,5481,5557,6296,6315,6667,6689,7024,7050,7779
18053,Grant County ,IN,18,0,0,0,0,0,7,9,129,138,211,213,285,285,492,496,957,968,1321,1334,1894,1907,3451,3515,5404,5462,6562,6574,6839,6842,7057,7064,7357,7371,7596,7599,7677,7680,7808,7808,8624,8661,9814,9855,10679,10770,12162,12252,13709
18055,Greene County ,IN,18,0,0,0,0,0,2,3,56,90,169,169,184,184,233,235,374,374,437,439,627,642,1130,1153,1937,1974,2487,2493,2621,2621,2680,2680,2753,2755,2848,2849,2881,2885,2968,2968,3407,3428,4029,4050,4319,4335,4648,4671,5212
18057,Hamilton County ,IN,18,0,0,0,0,0,127,179,755,794,1159,1162,1463,1484,2408,2446,3945,3988,5029,5062,6985,7118,14400,14654,23956,24289,30330,30430,32101,32144,33490,33567,35218,35275,36214,36241,36757,36768,37504,37504,40826,40992,44739,44869,46826,46977,50379,50624,57908
18059,Hancock County ,IN,18,0,0,0,0,0,26,33,218,227,338,340,418,429,597,608,835,835,966,971,1370,1385,2961,2994,5166,5268,6991,7018,7428,7433,7714,7729,8187,8197,8479,8487,8630,8632,8824,8824,9844,9904,11166,11233,11864,11905,12928,13013,15058
18061,Harrison County ,IN,18,0,0,0,0,0,15,15,129,129,194,194,208,208,268,282,488,488,604,609,883,891,1561,1599,2636,2696,3659,3683,3999,4001,4213,4218,4317,4319,4387,4389,4421,4423,4572,4572,5401,5428,6176,6212,6574,6583,6887,6910,7655
18063,Hendricks County ,IN,18,0,0,0,0,0,70,91,667,701,1169,1171,1366,1366,1710,1731,2357,2368,2823,2836,3691,3714,6855,6996,11514,11709,14946,15001,15871,15883,16416,16448,17093,17117,17545,17557,17817,17822,18232,18232,20313,20392,22859,22939,24166,24259,26014,26131,29233
18065,Henry County ,IN,18,0,0,0,0,0,1,4,39,40,182,184,235,235,356,358,616,630,842,856,1484,1569,2675,2701,4257,4310,5222,5229,5433,5436,5530,5531,5656,5663,5868,5872,5920,5920,5986,5986,6833,6884,7849,7886,8337,8361,9058,9112,10047
18067,Howard County ,IN,18,0,0,0,0,0,16,20,172,176,408,415,542,543,786,798,1087,1094,1349,1371,1819,1836,3838,3914,6662,6733,8589,8610,9066,9067,9434,9461,9790,9804,10180,10189,10402,10415,10756,10756,12439,12538,14185,14225,14984,15058,16450,16595,18477
18069,Huntington County ,IN,18,0,0,0,0,0,2,2,9,9,28,28,70,70,118,118,171,171,257,263,531,555,1421,1431,2445,2480,3065,3079,3443,3448,3675,3682,3852,3854,4006,4009,4042,4044,4218,4218,5471,5522,6120,6137,6510,6548,7481,7554,8591
18071,Jackson County ,IN,18,0,0,0,0,0,8,10,138,157,389,392,454,455,543,547,703,704,783,789,1290,1303,2424,2482,3760,3792,4389,4399,4649,4651,4802,4829,4983,4989,5069,5071,5100,5102,5190,5190,5916,5979,6730,6737,7069,7096,7532,7589,8684
18073,Jasper County ,IN,18,0,0,0,0,0,8,9,33,33,67,68,107,109,197,199,324,325,405,408,800,821,1593,1622,2475,2495,2989,2995,3163,3165,3329,3341,3593,3601,3810,3817,3910,3916,4029,4029,4336,4358,4952,4973,5436,5490,6056,6080,7014
18075,Jay County ,IN,18,0,0,0,0,0,0,1,15,16,52,53,67,67,80,81,135,136,199,205,422,430,1074,1114,1510,1520,1730,1733,1786,1787,1839,1840,1900,1906,2008,2008,2025,2027,2046,2046,2321,2322,2654,2671,2896,2914,3233,3253,3702
18077,Jefferson County ,IN,18,0,0,0,0,0,1,1,26,29,45,45,64,65,145,148,208,212,255,255,441,449,1335,1348,2162,2188,2753,2758,2948,2949,3013,3015,3274,3274,3340,3341,3366,3366,3472,3472,4143,4189,4848,4869,5183,5195,5713,5763,6754
18079,Jennings County ,IN,18,0,0,0,0,0,15,17,75,78,130,130,169,169,206,208,272,275,321,322,430,445,991,1008,1700,1712,2048,2057,2154,2156,2229,2232,2279,2285,2338,2343,2358,2358,2408,2408,2971,3042,3698,3711,3955,3981,4422,4462,5039
18081,Johnson County ,IN,18,0,0,0,0,0,101,118,579,616,1105,1115,1232,1235,1615,1631,2071,2076,2422,2448,3605,3640,7178,7315,12155,12366,15600,15655,16398,16411,17111,17143,17821,17851,18291,18304,18590,18594,18966,18966,21625,21770,24148,24225,25408,25513,27366,27504,30873
18083,Knox County ,IN,18,0,0,0,0,0,2,3,20,20,28,28,62,62,125,126,346,350,545,553,941,958,1982,2001,2914,2941,3433,3435,3574,3576,3607,3609,3703,3707,3749,3749,3791,3798,3933,3933,4968,4980,5672,5703,6468,6473,6859,6888,7708
18085,Kosciusko County ,IN,18,0,0,0,0,0,5,5,34,36,135,150,484,495,796,814,1048,1054,1321,1327,2320,2365,4860,4937,6833,6903,8222,8234,8581,8582,8862,8885,9336,9342,9588,9592,9673,9676,9831,9831,10470,10542,11726,11749,12586,12636,13996,14138,15858
18087,LaGrange County ,IN,18,0,0,0,0,0,2,2,25,25,81,84,456,459,542,542,602,602,653,660,878,882,1526,1544,2045,2063,2350,2355,2414,2414,2472,2472,2623,2631,2722,2725,2743,2743,2789,2789,2916,2918,3326,3347,3671,3715,4218,4237,4705
18089,Lake County ,IN,18,0,0,0,0,0,146,180,1846,1929,3616,3639,4847,4872,7101,7101,9203,9233,10834,10931,15786,16078,29244,29705,39901,40299,46513,46620,48464,48502,50057,50135,52911,53014,55046,55101,56175,56270,57144,57144,60090,60258,64355,64488,67118,67380,71598,71960,84637
18091,LaPorte County ,IN,18,0,0,0,0,0,8,11,218,224,433,434,534,539,829,829,1189,1193,1536,1562,2600,2627,5026,5107,7561,7658,9376,9392,9771,9782,10269,10312,11549,11595,12301,12313,12459,12463,12605,12605,13343,13374,14611,14645,15374,15465,16937,17032,19369
18093,Lawrence County ,IN,18,0,0,0,0,0,9,11,99,99,163,165,229,231,317,325,456,465,532,537,1092,1099,1915,1977,3299,3340,4015,4023,4183,4187,4264,4264,4431,4445,4683,4689,4782,4785,4964,4964,6264,6301,7161,7176,7530,7548,7942,7992,8852
18095,Madison County ,IN,18,0,0,0,0,0,38,46,420,428,586,593,642,643,812,833,1313,1343,1751,1785,2832,2880,5530,5604,8994,9097,11301,11337,11774,11779,12096,12114,12509,12514,12931,12946,13243,13248,13634,13634,15715,15819,17825,17903,19006,19102,20783,20914,23854
18097,Marion County ,IN,18,0,0,0,0,0,964,1117,5530,5754,9853,9900,11329,11387,14425,14578,18631,18734,21843,21953,27627,27861,46309,47064,70801,71677,86603,86856,90846,90913,93789,93884,98488,98658,102099,102174,103743,103770,106151,106151,117885,118404,131082,131414,136798,137189,144385,144825,163539
18099,Marshall County ,IN,18,0,0,0,0,0,3,3,29,30,108,111,409,412,731,739,895,895,1029,1030,1602,1641,3204,3233,4469,4521,5172,5187,5426,5428,5616,5632,5919,5931,6189,6188,6254,6255,6362,6362,6797,6841,7513,7528,8098,8145,8940,9010,10086
18101,Martin County ,IN,18,0,0,0,0,0,0,0,7,7,11,11,22,22,42,42,118,118,170,172,214,215,384,384,592,602,769,770,802,802,819,819,865,873,910,911,921,921,928,928,1102,1108,1328,1329,1409,1415,1519,1523,1624
18103,Miami County ,IN,18,0,0,0,0,0,3,3,104,107,140,140,180,180,247,256,322,323,444,447,761,785,1819,1836,2730,2764,3345,3352,3578,3580,3686,3691,3786,3791,3891,3893,3985,3986,4078,4078,4779,4811,5622,5643,6012,6028,6505,6538,7196
18105,Monroe County ,IN,18,0,0,0,0,0,30,33,123,126,166,166,244,256,661,674,1155,1185,2713,2730,3548,3562,5729,5831,8007,8080,9690,9715,10333,10338,10912,10958,11731,11767,12070,12076,12271,12277,12630,12630,13592,13620,14728,14774,15434,15502,16419,16467,18212
18107,Montgomery County ,IN,18,0,0,0,0,0,6,6,67,88,241,244,285,287,335,336,427,428,514,515,721,738,1585,1645,2842,2891,3582,3600,3869,3872,4085,4091,4217,4222,4288,4294,4426,4433,4616,4616,5234,5258,5959,5977,6357,6381,6934,6990,7940
18109,Morgan County ,IN,18,0,0,0,0,0,32,41,152,156,277,280,318,320,410,412,608,610,752,760,1086,1093,2379,2455,4271,4368,5681,5704,6100,6108,6295,6302,6522,6531,6696,6705,6801,6805,6965,6965,7977,8020,9090,9115,9569,9607,10296,10344,11617
18111,Newton County ,IN,18,0,0,0,0,0,1,1,46,60,78,78,94,95,108,109,146,147,176,176,263,278,595,609,831,833,947,951,967,967,1005,1007,1059,1065,1112,1114,1172,1172,1239,1239,1292,1296,1494,1501,1623,1643,1799,1808,2036
18113,Noble County ,IN,18,0,0,0,0,0,2,3,69,71,232,237,434,447,617,624,808,814,939,940,1348,1361,2744,2792,4048,4084,4835,4853,5094,5097,5255,5258,5530,5536,5750,5750,5831,5832,6039,6039,6721,6767,7583,7604,8152,8205,9099,9186,10208
18115,Ohio County ,IN,18,0,0,0,0,0,1,1,4,4,13,13,14,14,43,45,73,73,79,79,148,151,245,246,396,400,506,508,533,537,548,548,562,562,577,577,579,579,584,584,697,701,817,818,858,859,918,921,1000
18117,Orange County ,IN,18,0,0,0,0,0,3,3,76,101,128,130,133,133,158,161,242,244,291,292,453,457,733,741,1227,1248,1662,1665,1716,1716,1741,1743,1807,1817,1877,1878,1890,1891,1931,1931,2501,2522,2815,2823,2985,2999,3261,3271,3660
18119,Owen County ,IN,18,0,0,0,0,0,11,12,23,23,34,34,43,45,73,78,143,147,173,175,234,240,670,688,1325,1346,1735,1744,1824,1824,1885,1885,1948,1953,2086,2087,2140,2141,2250,2250,2568,2581,2946,2970,3187,3203,3479,3500,3967
18121,Parke County ,IN,18,0,0,0,0,0,0,0,12,12,17,17,22,22,45,45,85,85,117,120,291,296,660,677,1179,1189,1350,1350,1406,1407,1440,1442,1467,1468,1490,1494,1512,1515,1582,1582,1909,1932,2253,2261,2350,2355,2485,2500,2713
18123,Perry County ,IN,18,0,0,0,0,0,0,0,10,10,33,33,118,120,170,170,207,207,237,240,473,515,883,887,1205,1223,1649,1656,1743,1743,1785,1786,1832,1833,1869,1871,1883,1883,1929,1929,2278,2292,2590,2602,2682,2683,2863,2883,3226
18125,Pike County ,IN,18,0,0,0,0,0,0,0,1,2,6,6,6,8,37,41,101,102,177,219,379,383,549,552,934,949,1228,1234,1276,1276,1290,1291,1324,1326,1367,1368,1385,1385,1434,1434,1732,1750,2180,2188,2307,2313,2451,2456,2776
18127,Porter County ,IN,18,0,0,0,0,0,21,27,238,240,539,543,680,685,1130,1144,1730,1744,2244,2275,3937,4025,8919,9047,12819,12969,15208,15244,15983,16001,16621,16670,18426,18474,19215,19230,19418,19430,19637,19637,20585,20633,22113,22159,23174,23258,25196,25380,29159
18129,Posey County ,IN,18,0,0,0,0,0,4,4,11,12,16,16,32,35,154,154,214,219,371,381,837,855,1303,1316,1906,1941,2465,2469,2608,2609,2660,2662,2707,2707,2727,2727,2749,2753,2854,2854,3275,3305,3656,3668,3796,3800,4040,4054,4463
18131,Pulaski County ,IN,18,0,0,0,0,0,0,0,23,25,46,46,59,63,70,71,102,102,116,116,196,200,452,472,851,859,1000,1002,1066,1066,1110,1110,1156,1157,1189,1190,1211,1211,1242,1242,1392,1413,1716,1721,1868,1878,2067,2078,2363
18133,Putnam County ,IN,18,0,0,0,0,0,7,11,66,71,137,137,165,165,216,217,438,440,597,606,832,844,1388,1413,2462,2496,3051,3063,3306,3314,3482,3489,3567,3573,3700,3701,3750,3752,3877,3877,4771,4777,5536,5551,5895,5910,6368,6396,7059
18135,Randolph County ,IN,18,0,0,0,0,0,3,3,15,15,47,48,76,76,100,102,206,208,267,268,541,550,1380,1408,1881,1901,2223,2225,2297,2297,2349,2353,2431,2432,2478,2478,2495,2495,2523,2523,2789,2805,3276,3288,3554,3574,3875,3913,4497
18137,Ripley County ,IN,18,0,0,0,0,0,31,33,92,93,108,108,112,112,185,186,245,245,310,314,553,566,1559,1608,2478,2515,3075,3096,3272,3273,3308,3312,3373,3377,3442,3443,3484,3485,3530,3530,3990,4011,4684,4715,5062,5078,5505,5533,6276
18139,Rush County ,IN,18,0,0,0,0,0,4,5,31,32,47,47,56,57,71,71,176,177,202,204,341,344,662,674,1254,1283,1650,1656,1710,1711,1741,1743,1787,1790,1819,1820,1830,1831,1856,1856,2034,2046,2508,2518,2743,2759,3067,3114,3536
18141,St. Joseph County ,IN,18,0,0,0,0,0,49,57,634,642,1274,1286,1830,1849,3010,3071,5168,5197,6782,6876,10491,10679,17834,18148,24264,24478,27992,28039,29980,30029,32242,32371,35043,35121,36781,36811,37076,37079,37455,37455,39447,39603,42692,42808,44933,45162,49004,49255,55466
18143,Scott County ,IN,18,0,0,0,0,0,1,1,46,47,120,120,154,154,243,244,321,323,402,406,610,614,1202,1215,1919,1940,2335,2346,2510,2510,2569,2569,2647,2648,2691,2691,2714,2714,2841,2841,3494,3557,4186,4202,4442,4460,4834,4863,5514
18145,Shelby County ,IN,18,0,0,0,0,0,15,19,201,213,373,373,414,416,500,508,1074,1082,1179,1182,1526,1537,2702,2750,4202,4250,5216,5235,5532,5536,5666,5668,5837,5844,5969,5972,6029,6034,6129,6129,6827,6863,7794,7819,8313,8332,9156,9235,10620
18147,Spencer County ,IN,18,0,0,0,0,0,0,0,5,5,20,20,30,31,110,110,161,162,272,288,462,464,929,944,1507,1523,2015,2016,2174,2176,2257,2260,2300,2302,2338,2338,2348,2348,2399,2399,2859,2886,3262,3274,3422,3427,3576,3595,3944
18149,Starke County ,IN,18,0,0,0,0,0,1,1,16,16,39,39,68,73,157,161,212,214,276,280,511,532,982,993,1558,1564,1807,1809,1883,1884,1953,1959,2114,2122,2254,2255,2285,2287,2311,2311,2500,2518,2918,2939,3237,3252,3494,3519,4000
18151,Steuben County ,IN,18,0,0,0,0,0,1,2,23,25,83,84,123,123,193,195,279,287,400,414,740,756,1585,1612,2643,2685,3193,3205,3387,3389,3516,3525,3791,3800,3954,3958,4029,4029,4134,4134,4550,4565,5155,5199,5750,5794,6565,6627,7452
18153,Sullivan County ,IN,18,0,0,0,0,0,2,3,16,16,36,36,44,44,69,74,294,295,343,347,500,505,1072,1082,1655,1694,1969,1972,2035,2037,2066,2067,2102,2106,2133,2134,2159,2163,2233,2233,2641,2665,3169,3189,3329,3334,3464,3473,3776
18155,Switzerland County ,IN,18,0,0,0,0,0,3,3,14,14,20,20,24,25,40,43,66,66,70,71,111,112,275,276,497,509,700,702,754,755,766,767,778,779,804,804,820,820,849,849,1056,1075,1297,1299,1366,1367,1457,1469,1654
18157,Tippecanoe County ,IN,18,0,0,0,0,0,14,18,110,115,402,414,633,640,1053,1085,1587,1592,2655,2690,4424,4502,9484,9651,15018,15179,18513,18570,20007,20031,20913,20968,22207,22233,22692,22701,23006,23015,23591,23591,25453,25542,27109,27175,28189,28317,30347,30495,34574
18159,Tipton County ,IN,18,0,0,0,0,0,4,5,18,20,25,25,30,30,97,102,190,192,237,239,306,309,645,661,1077,1105,1382,1382,1468,1469,1584,1587,1620,1623,1656,1658,1678,1679,1743,1743,1938,1948,2156,2167,2306,2316,2488,2500,2731
18161,Union County ,IN,18,0,0,0,0,0,0,0,7,7,9,9,13,13,28,28,86,87,105,105,158,160,325,325,530,537,663,663,699,699,718,718,732,732,755,755,756,756,765,765,873,878,1044,1045,1106,1109,1212,1234,1441
18163,Vanderburgh County ,IN,18,0,0,0,0,0,18,20,135,143,274,282,413,430,1620,1679,2591,2609,3909,3970,6594,6699,10551,10677,15554,15793,20131,20187,21255,21257,21762,21785,22203,22220,22485,22491,22654,22672,23441,23441,27445,27610,30984,31091,32493,32558,34336,34477,37846
18165,Vermillion County ,IN,18,0,0,0,0,0,1,1,7,7,10,10,13,13,30,34,95,96,134,137,301,307,693,707,1227,1275,1532,1538,1605,1606,1641,1641,1674,1674,1720,1722,1761,1764,1820,1820,2081,2094,2428,2434,2621,2632,2812,2821,3101
18167,Vigo County ,IN,18,0,0,0,0,0,8,8,64,64,169,169,222,224,425,454,1264,1343,1913,1938,3039,3080,6442,6520,9304,9402,11021,11052,11608,11625,11995,12012,12361,12380,12561,12569,12667,12676,12920,12920,14301,14387,16679,16758,17658,17733,18851,18918,20959
18169,Wabash County ,IN,18,0,0,0,0,0,1,1,42,51,78,79,107,107,152,155,213,214,279,280,555,570,1845,1881,2613,2635,3131,3136,3316,3319,3424,3425,3520,3524,3589,3594,3628,3631,3720,3720,4336,4371,4999,5013,5425,5452,6084,6141,6870
18171,Warren County ,IN,18,0,0,0,0,0,2,2,11,11,12,12,14,14,19,19,39,39,42,43,116,116,268,270,537,547,706,707,760,760,777,777,806,806,832,832,853,858,882,882,1018,1026,1174,1176,1225,1227,1326,1342,1538
18173,Warrick County ,IN,18,0,0,0,0,0,8,8,94,94,166,166,196,201,470,488,770,779,1430,1449,2174,2214,3502,3538,5266,5328,6993,7015,7415,7419,7597,7605,7750,7754,7828,7828,7885,7890,8153,8153,9564,9648,10868,10910,11354,11370,12055,12117,13390
18175,Washington County ,IN,18,0,0,0,0,0,6,9,43,44,50,50,64,64,104,107,225,229,270,273,426,428,848,865,1432,1450,1947,1956,2110,2112,2226,2234,2374,2380,2438,2438,2466,2466,2556,2556,2964,2981,3396,3412,3630,3638,3855,3871,4254
18177,Wayne County ,IN,18,0,0,0,0,0,2,3,34,35,82,85,127,128,304,313,887,897,1145,1153,2100,2118,3854,3907,5615,5684,6713,6717,7021,7023,7173,7178,7360,7369,7505,7506,7557,7557,7637,7637,8827,8970,10662,10715,11480,11520,12295,12361,13727
18179,Wells County ,IN,18,0,0,0,0,0,2,2,5,5,32,32,67,68,124,129,227,228,290,296,567,586,1394,1416,1945,1960,2423,2433,2608,2608,2797,2808,2923,2925,2966,2966,2987,2990,3073,3073,3467,3501,4004,4018,4307,4322,4758,4812,5329
18181,White County ,IN,18,0,0,0,0,0,2,2,47,51,235,237,257,258,341,344,440,442,491,493,686,692,1403,1436,2321,2351,2795,2810,2974,2974,3028,3033,3113,3117,3239,3246,3345,3347,3410,3410,3650,3665,3993,4001,4260,4304,4705,4730,5313
18183,Whitley County ,IN,18,0,0,0,0,0,2,3,19,20,42,43,79,81,143,144,213,213,295,295,552,573,1497,1523,2474,2500,3219,3229,3491,3494,3646,3653,3899,3902,4032,4035,4075,4075,4186,4186,4740,4785,5396,5411,5750,5776,6449,6515,7343
0,Statewide Unallocated,IA,19,0,0,0,0,0,0,0,24,63,3,2,7,3,2,5,19,14,9,4,25,40,670,696,669,748,1064,1064,964,965,1016,1018,1000,1002,965,963,964,963,8,8,7,7,13,13,72,72,48,51,7886
19001,Adair County ,IA,19,0,0,0,0,0,1,1,1,1,9,9,15,15,20,20,49,49,74,76,215,221,441,442,603,608,705,706,808,808,837,837,860,860,872,872,876,876,901,901,918,918,989,989,1062,1062,1148,1185,1327
19003,Adams County ,IA,19,0,0,0,0,0,0,0,0,0,7,7,8,8,15,15,22,22,34,38,84,87,170,171,262,266,308,308,318,318,319,320,337,337,344,344,348,348,350,350,368,368,455,455,519,519,575,589,639
19005,Allamakee County ,IA,19,0,0,0,0,0,7,7,89,90,120,120,123,126,147,149,174,183,265,265,419,430,818,831,1177,1181,1327,1329,1407,1409,1484,1485,1498,1498,1521,1522,1529,1530,1564,1564,1627,1627,1845,1845,1963,1963,2044,2100,2317
19007,Appanoose County ,IA,19,0,0,0,0,0,1,1,2,3,14,14,20,20,40,40,84,85,144,144,261,281,794,799,967,972,1145,1145,1227,1227,1254,1254,1276,1276,1286,1286,1291,1291,1289,1289,1351,1351,1629,1629,1849,1849,2056,2105,2284
19009,Audubon County ,IA,19,0,0,0,0,0,1,1,1,2,12,12,17,17,28,28,39,39,90,92,187,191,296,300,369,381,434,434,470,470,486,488,499,499,516,516,534,536,536,536,561,561,615,615,682,682,750,777,846
19011,Benton County ,IA,19,0,0,0,0,0,7,7,31,31,43,43,58,58,127,130,200,204,340,346,695,724,1710,1719,1976,1983,2176,2178,2375,2376,2473,2477,2535,2540,2577,2577,2614,2616,2642,2642,2811,2811,3359,3359,3662,3662,4064,4163,4621
19013,Black Hawk County ,IA,19,0,0,0,0,0,7,7,1140,1195,1744,1748,2087,2111,2953,2971,3788,3802,4547,4578,6240,6430,10905,10975,12747,12803,14370,14377,14874,14879,15279,15297,15698,15714,15916,15925,16293,16313,16850,16850,18159,18159,19654,19654,20474,20474,22004,22356,24320
19015,Boone County ,IA,19,0,0,0,0,0,1,1,12,16,62,65,135,136,226,227,344,346,528,533,772,797,1372,1383,1889,1918,2284,2285,2414,2414,2519,2521,2607,2614,2677,2678,2685,2686,2737,2737,2883,2883,3287,3287,3572,3572,3909,3978,4318
19017,Bremer County ,IA,19,0,0,0,0,0,0,0,51,51,69,69,87,88,179,182,299,332,508,514,761,781,1956,1967,2259,2269,2535,2537,2666,2670,2760,2763,2813,2816,2866,2868,2891,2894,2946,2946,3077,3077,3389,3389,3610,3610,3956,4043,4369
19019,Buchanan County ,IA,19,0,0,0,0,0,2,2,17,18,33,33,44,46,103,105,174,175,295,300,524,551,1176,1188,1438,1445,1652,1653,1755,1756,1840,1843,1899,1900,1922,1922,1943,1943,1978,1978,2150,2150,2568,2568,2819,2819,3063,3147,3515
19021,Buena Vista County ,IA,19,0,0,0,0,0,0,0,4,5,754,810,1695,1695,1782,1782,1826,1826,2004,2028,2337,2355,3059,3074,3699,3726,4007,4007,4107,4108,4183,4188,4239,4238,4256,4256,4274,4273,4323,4323,4485,4485,4824,4824,4938,4938,5025,5036,5164
19023,Butler County ,IA,19,0,0,0,0,0,1,1,9,9,15,16,45,47,106,111,203,210,279,281,420,435,1024,1026,1267,1282,1536,1536,1578,1579,1610,1612,1631,1633,1658,1658,1667,1669,1691,1691,1827,1827,1965,1965,2111,2111,2331,2376,2572
19025,Calhoun County ,IA,19,0,0,0,0,0,0,0,0,1,2,2,44,45,81,81,126,129,193,198,342,347,1061,1076,1173,1173,1248,1248,1285,1286,1324,1325,1348,1350,1388,1388,1392,1393,1448,1448,1500,1500,1782,1782,1897,1897,1976,1996,2099
19027,Carroll County ,IA,19,0,0,0,0,0,1,1,2,2,10,11,82,83,174,175,387,394,704,711,1238,1260,1988,1996,2362,2390,2596,2596,2659,2659,2734,2735,2832,2837,2868,2867,2873,2873,2872,2872,2981,2981,3324,3324,3491,3491,3689,3740,3904
19029,Cass County ,IA,19,0,0,0,0,0,0,0,1,1,12,12,17,17,40,42,112,112,181,183,468,479,816,820,1038,1055,1180,1180,1265,1266,1331,1331,1369,1372,1389,1389,1391,1391,1421,1421,1479,1479,1731,1731,2116,2116,2335,2362,2483
19031,Cedar County ,IA,19,0,0,0,0,0,9,9,29,30,46,48,75,75,116,117,155,155,254,262,530,542,1086,1102,1389,1397,1588,1592,1695,1702,1790,1791,1878,1880,1912,1912,1924,1924,1943,1943,2052,2052,2344,2344,2527,2527,2658,2701,2990
19033,Cerro Gordo County ,IA,19,0,0,0,0,0,7,8,14,14,29,29,100,102,567,574,824,834,1073,1080,1578,1601,3573,3591,4319,4352,4813,4814,4976,4977,5112,5119,5328,5335,5499,5500,5550,5554,5648,5648,5899,5899,6521,6521,7087,7087,7986,8147,8837
19035,Cherokee County ,IA,19,0,0,0,0,0,0,0,2,2,28,31,71,72,97,97,140,140,257,275,437,446,860,901,1229,1239,1409,1409,1442,1442,1543,1545,1583,1582,1591,1591,1599,1599,1622,1622,1684,1684,1874,1874,1963,1963,2123,2179,2320
19037,Chickasaw County ,IA,19,0,0,0,0,0,0,0,5,5,10,10,25,27,48,48,108,110,274,279,386,391,858,866,1034,1039,1150,1150,1185,1186,1212,1212,1229,1232,1244,1244,1251,1251,1260,1260,1319,1319,1465,1465,1614,1614,1796,1846,2074
19039,Clarke County ,IA,19,0,0,0,0,0,0,0,2,2,55,56,124,125,172,178,239,240,269,270,368,368,488,490,681,688,849,850,944,944,974,975,988,990,1005,1005,1013,1013,1026,1026,1125,1125,1344,1344,1438,1438,1612,1639,1781
19041,Clay County ,IA,19,0,0,0,0,0,1,1,4,4,16,17,120,125,168,168,236,236,343,359,579,595,1182,1192,1537,1550,1752,1755,1830,1830,2014,2029,2143,2144,2160,2161,2168,2168,2179,2179,2241,2241,2656,2656,2836,2836,2955,2978,3120
19043,Clayton County ,IA,19,0,0,0,0,0,1,2,14,15,34,34,38,39,91,94,180,180,268,273,537,557,1119,1125,1373,1390,1556,1557,1597,1598,1627,1627,1682,1682,1705,1704,1712,1712,1732,1732,1808,1808,2032,2032,2184,2184,2453,2525,2777
19045,Clinton County ,IA,19,0,0,0,0,0,5,6,48,49,61,64,93,98,280,294,827,837,1143,1156,1607,1634,3320,3340,4127,4143,4693,4699,4986,4987,5196,5210,5476,5482,5597,5597,5617,5617,5658,5658,5851,5851,6505,6505,7052,7052,7742,8116,9000
19047,Crawford County ,IA,19,0,0,0,0,0,1,1,21,24,517,526,666,666,707,708,832,836,1112,1117,1402,1411,1746,1773,2109,2129,2381,2388,2511,2513,2591,2594,2633,2639,2675,2674,2687,2687,2735,2735,2978,2978,3282,3282,3410,3410,3538,3556,3727
19049,Dallas County ,IA,19,0,0,0,0,0,25,27,318,408,902,907,1176,1189,1736,1752,2380,2384,2834,2872,3672,3766,6375,6429,7870,7958,9322,9338,10111,10114,10672,10692,11050,11058,11247,11248,11302,11302,11506,11506,12085,12085,13358,13358,14280,14280,15360,15603,16903
19051,Davis County ,IA,19,0,0,0,0,0,0,0,1,1,22,24,37,37,48,48,83,83,130,130,199,205,471,474,637,639,713,713,756,757,786,787,807,807,849,849,853,853,885,885,957,957,1079,1079,1169,1169,1248,1271,1359
19053,Decatur County ,IA,19,0,0,0,0,0,0,0,0,0,1,1,9,10,20,21,44,44,67,67,171,174,318,320,425,430,509,509,560,561,582,583,596,596,611,611,620,620,664,664,694,694,779,779,836,836,1022,1049,1153
19055,Delaware County ,IA,19,0,0,0,0,0,0,0,5,5,15,16,41,41,83,87,216,222,453,468,859,877,1446,1449,1626,1635,1789,1790,1850,1850,1947,1958,2073,2076,2108,2108,2111,2111,2133,2133,2247,2247,2440,2440,2635,2635,2958,3042,3301
19057,Des Moines County ,IA,19,0,0,0,0,0,1,1,16,16,62,65,84,84,137,137,568,569,820,831,1557,1638,2915,2917,3521,3543,4040,4042,4257,4260,4350,4353,4487,4495,4645,4647,4689,4697,4817,4817,5348,5348,6365,6365,6793,6793,7105,7157,7459
19059,Dickinson County ,IA,19,0,0,0,0,0,1,1,6,6,20,21,240,245,369,371,424,424,542,556,825,844,1395,1403,1704,1716,1909,1910,2015,2015,2258,2285,2467,2470,2491,2491,2495,2495,2511,2511,2584,2584,2859,2859,3032,3032,3149,3179,3378
19061,Dubuque County ,IA,19,0,0,0,0,0,21,22,102,109,343,346,505,529,1460,1489,2031,2041,3412,3486,5700,5828,9243,9276,10582,10641,11825,11830,12367,12381,12720,12757,13278,13289,13446,13451,13536,13536,13627,13627,14020,14020,15013,15013,16204,16204,18549,19035,20629
19063,Emmet County ,IA,19,0,0,0,0,0,0,0,0,0,15,15,75,75,178,178,221,221,276,285,463,469,765,768,1006,1019,1114,1114,1143,1143,1225,1234,1323,1324,1351,1352,1359,1360,1373,1373,1403,1403,1567,1567,1690,1690,1786,1803,1940
19065,Fayette County ,IA,19,0,0,0,0,0,2,2,20,21,27,27,33,34,76,77,138,142,238,241,434,445,1042,1059,1396,1408,1695,1695,1769,1770,1819,1821,1843,1843,1854,1854,1874,1875,1889,1889,2048,2048,2365,2365,2646,2646,2866,2906,3150
19067,Floyd County ,IA,19,0,0,0,0,0,0,0,0,1,19,19,65,66,107,109,215,216,357,360,480,483,1054,1065,1277,1283,1434,1434,1470,1470,1525,1525,1588,1590,1623,1623,1638,1638,1652,1652,1739,1739,2041,2041,2293,2293,2569,2617,2784
19069,Franklin County ,IA,19,0,0,0,0,0,0,0,2,3,13,13,74,77,208,211,295,295,352,353,403,411,740,743,896,908,1056,1056,1089,1089,1115,1116,1152,1155,1225,1225,1236,1237,1292,1292,1387,1387,1558,1558,1666,1666,1839,1882,2001
19071,Fremont County ,IA,19,0,0,0,0,0,0,0,0,0,4,4,7,7,32,34,59,59,125,127,219,223,358,366,466,469,531,531,554,554,584,590,619,619,626,626,627,627,649,649,691,691,785,785,883,883,961,991,1063
19073,Greene County ,IA,19,0,0,0,0,0,0,0,5,7,13,13,28,28,37,38,53,53,106,109,205,209,526,532,645,648,702,702,725,725,753,753,772,773,780,780,781,781,800,800,860,860,1068,1068,1183,1183,1278,1288,1354
19075,Grundy County ,IA,19,0,0,0,0,0,0,0,11,11,19,19,33,34,71,72,128,130,229,230,361,373,863,871,1083,1095,1241,1242,1315,1316,1338,1340,1358,1359,1366,1366,1377,1377,1397,1397,1460,1460,1639,1639,1697,1697,1837,1864,2005
19077,Guthrie County ,IA,19,0,0,0,0,0,1,1,12,13,50,51,64,64,124,125,173,173,267,273,425,427,754,764,945,952,1054,1057,1085,1085,1151,1160,1200,1201,1224,1224,1234,1234,1253,1253,1311,1311,1463,1463,1571,1571,1684,1698,1829
19079,Hamilton County ,IA,19,0,0,0,0,0,0,0,7,7,37,42,184,185,237,237,279,280,335,337,498,504,1119,1144,1471,1489,1645,1647,1735,1735,1760,1760,1789,1789,1809,1809,1820,1820,1892,1892,1989,1989,2220,2220,2390,2390,2601,2628,2771
19081,Hancock County ,IA,19,0,0,0,0,0,3,3,3,3,16,16,47,47,109,114,155,156,199,205,397,410,868,873,1173,1184,1345,1345,1372,1373,1407,1408,1460,1459,1496,1496,1505,1506,1540,1540,1591,1591,1760,1760,1897,1897,2159,2229,2386
19083,Hardin County ,IA,19,0,0,0,0,0,1,1,8,9,17,17,63,63,156,161,230,231,311,315,524,549,1157,1172,1450,1456,1605,1606,1688,1689,1758,1762,1839,1842,1865,1868,1884,1884,1925,1925,2076,2076,2538,2538,2718,2718,2851,2898,3157
19085,Harrison County ,IA,19,0,0,0,0,0,9,10,16,16,23,23,49,51,89,92,147,148,269,290,727,740,1077,1087,1430,1443,1613,1613,1669,1669,1708,1710,1783,1786,1798,1798,1801,1801,1828,1828,1889,1889,2092,2092,2214,2214,2346,2410,2671
19087,Henry County ,IA,19,0,0,0,0,0,3,5,32,32,71,71,81,82,109,110,279,288,778,778,1157,1176,1829,1839,2474,2483,2719,2719,2792,2792,2836,2839,2895,2897,2939,2940,2953,2953,3017,3017,3208,3208,3616,3616,3948,3948,4187,4271,4471
19089,Howard County ,IA,19,0,0,0,0,0,0,0,10,10,12,12,22,27,47,47,133,133,192,193,288,293,559,564,712,727,902,903,988,990,1021,1022,1040,1041,1047,1047,1051,1051,1055,1055,1089,1089,1203,1203,1312,1312,1479,1508,1659
19091,Humboldt County ,IA,19,0,0,0,0,0,0,0,4,4,17,18,48,48,86,87,152,152,194,196,390,395,772,785,977,983,1085,1085,1125,1125,1174,1175,1185,1186,1194,1194,1203,1204,1260,1260,1352,1352,1558,1558,1714,1714,1854,1886,2107
19093,Ida County ,IA,19,0,0,0,0,0,0,0,0,0,14,14,21,22,29,29,40,43,128,135,239,247,490,502,693,699,780,781,806,807,875,875,903,903,912,913,917,917,937,937,1004,1004,1126,1126,1206,1206,1311,1350,1434
19095,Iowa County ,IA,19,0,0,0,0,0,4,5,19,20,33,33,47,49,84,88,114,116,227,230,470,477,966,980,1133,1139,1310,1313,1384,1384,1437,1438,1474,1475,1497,1496,1500,1500,1491,1491,1611,1611,1920,1920,2126,2126,2299,2351,2586
19097,Jackson County ,IA,19,0,0,0,0,0,1,1,5,5,12,12,23,25,131,134,208,214,358,370,735,761,1449,1467,1768,1785,1993,1993,2092,2094,2147,2151,2201,2202,2244,2245,2252,2252,2259,2259,2331,2331,2596,2596,2763,2763,3094,3261,3697
19099,Jasper County ,IA,19,0,0,0,0,0,6,7,130,155,260,260,315,317,448,450,586,588,872,884,1259,1304,2210,2244,2847,2895,3397,3405,3843,3845,4028,4034,4120,4121,4204,4204,4216,4218,4542,4542,4794,4794,5459,5459,5844,5844,6209,6309,6842
19101,Jefferson County ,IA,19,0,0,0,0,0,0,0,6,6,27,30,53,53,75,75,117,120,140,142,272,281,715,726,1017,1031,1234,1237,1278,1278,1300,1300,1319,1318,1332,1333,1337,1338,1355,1355,1518,1518,1867,1867,2047,2047,2234,2289,2549
19103,Johnson County ,IA,19,0,0,0,0,0,73,76,461,475,613,615,1134,1173,1868,1887,3840,3978,5188,5205,6150,6235,9583,9663,11089,11166,12460,12479,13065,13079,13545,13575,14339,14352,14569,14571,14641,14646,14795,14795,15545,15545,17348,17348,18168,18168,19818,20187,22283
19105,Jones County ,IA,19,0,0,0,0,0,4,4,21,22,36,36,53,55,119,122,170,172,289,298,551,574,2326,2338,2581,2587,2780,2784,2847,2847,2897,2897,2953,2955,3008,3008,3011,3012,3013,3013,3143,3143,3477,3477,3749,3749,4056,4146,4442
19107,Keokuk County ,IA,19,0,0,0,0,0,1,1,2,3,14,14,19,19,28,30,60,64,119,121,198,213,602,616,788,792,868,869,914,914,935,936,952,953,962,964,971,971,1004,1004,1057,1057,1285,1285,1412,1412,1509,1531,1635
19109,Kossuth County ,IA,19,0,0,0,0,0,1,1,2,2,9,10,32,32,76,77,121,122,289,292,506,519,1071,1086,1549,1558,1854,1854,1974,1974,2073,2076,2143,2144,2159,2160,2163,2164,2221,2221,2342,2342,2625,2625,2750,2750,2894,2934,3225
19111,Lee County ,IA,19,0,0,0,0,0,0,0,8,9,25,27,48,49,87,89,414,427,653,671,1050,1088,2045,2058,2846,2872,3364,3365,3534,3536,3636,3639,3710,3712,3791,3793,3841,3852,3969,3969,4598,4598,5454,5454,5703,5703,5911,5982,6381
19113,Linn County ,IA,19,0,0,0,0,0,90,94,669,673,953,955,1197,1206,1979,2008,2975,3002,4173,4219,6402,6629,14355,14355,16555,16631,18504,18525,19394,19411,19869,19921,20605,20613,21047,21057,21280,21286,21567,21567,23295,23295,27380,27380,29729,29729,32218,32940,37058
19115,Louisa County ,IA,19,0,0,0,0,0,0,0,269,274,344,344,359,360,377,377,396,396,436,439,553,562,863,868,1065,1070,1180,1181,1222,1222,1248,1248,1277,1276,1292,1291,1299,1300,1307,1307,1408,1408,1657,1657,1715,1715,1770,1789,1986
19117,Lucas County ,IA,19,0,0,0,0,0,0,0,0,0,17,17,30,30,41,42,95,97,156,159,217,218,325,329,570,581,677,677,705,709,746,746,766,766,779,779,780,780,783,783,836,836,1038,1038,1145,1145,1245,1262,1367
19119,Lyon County ,IA,19,0,0,0,0,0,0,0,13,13,23,24,39,40,98,99,150,151,388,390,591,598,1033,1053,1257,1259,1396,1396,1452,1452,1505,1507,1568,1569,1586,1586,1599,1599,1612,1612,1658,1658,1829,1829,1949,1949,2065,2105,2229
19121,Madison County ,IA,19,0,0,0,0,0,0,1,5,8,28,29,37,37,93,96,164,165,236,247,383,396,686,695,962,973,1294,1296,1411,1412,1503,1505,1570,1573,1639,1640,1647,1647,1680,1680,1810,1810,2044,2044,2211,2211,2350,2376,2550
19123,Mahaska County ,IA,19,0,0,0,0,0,2,2,10,14,94,95,115,115,133,134,218,220,428,436,768,785,1269,1279,1732,1745,2025,2027,2140,2141,2196,2198,2272,2280,2317,2319,2328,2329,2351,2351,2502,2502,2938,2938,3325,3325,3660,3739,4022
19125,Marion County ,IA,19,0,0,0,0,0,0,0,8,10,32,32,65,67,144,147,481,488,775,779,1105,1142,2054,2068,2701,2714,3169,3188,3389,3391,3507,3510,3585,3591,3649,3649,3661,3662,3723,3723,4048,4048,4768,4768,5162,5162,5587,5690,6089
19127,Marshall County ,IA,19,0,0,0,0,0,8,8,467,500,894,896,1012,1013,1370,1375,1639,1647,1795,1804,2191,2243,3486,3512,4006,4032,4384,4385,4607,4609,4736,4739,4799,4802,4860,4860,4884,4884,4936,4936,5241,5241,6078,6078,6476,6476,6698,6766,7135
19129,Mills County ,IA,19,0,0,0,0,0,0,0,2,2,19,19,32,34,75,77,128,129,200,205,451,473,1048,1064,1271,1285,1401,1401,1477,1479,1552,1555,1606,1610,1628,1628,1642,1642,1647,1647,1747,1747,1913,1913,2050,2050,2213,2258,2494
19131,Mitchell County ,IA,19,0,0,0,0,0,0,2,2,3,4,4,22,29,76,76,108,108,196,196,305,322,799,803,1040,1048,1179,1179,1198,1199,1245,1248,1255,1255,1265,1265,1267,1267,1273,1273,1326,1326,1537,1537,1664,1664,1824,1846,1978
19133,Monona County ,IA,19,0,0,0,0,0,5,5,7,9,24,25,70,71,89,90,107,107,162,167,260,270,438,439,543,550,724,723,761,762,792,794,825,824,827,827,836,836,867,867,891,891,1015,1015,1104,1104,1232,1254,1335
19135,Monroe County ,IA,19,0,0,0,0,0,0,0,0,0,38,38,50,50,66,66,106,110,162,164,276,278,444,447,649,670,836,836,890,890,916,917,950,950,958,958,964,964,1014,1014,1057,1057,1232,1232,1362,1362,1429,1446,1541
19137,Montgomery County ,IA,19,0,0,0,0,0,1,1,1,1,7,8,10,10,42,42,76,79,100,100,206,211,463,483,761,770,921,921,964,964,979,983,1023,1024,1035,1035,1036,1036,1069,1069,1096,1096,1313,1313,1482,1482,1620,1633,1713
19139,Muscatine County ,IA,19,0,0,0,0,0,16,18,336,346,557,557,612,619,798,809,962,968,1131,1140,1575,1598,2895,2939,3562,3577,4007,4012,4207,4210,4438,4456,4692,4693,4861,4862,4889,4892,4956,4956,5225,5225,6117,6117,6400,6400,6652,6728,7269
19141,O'Brien County ,IA,19,0,0,0,0,0,0,2,8,9,29,31,81,85,115,116,197,201,408,423,788,819,1297,1305,1589,1591,1724,1723,1796,1798,1923,1929,1985,1986,1998,1998,1998,1998,2016,2016,2057,2057,2155,2155,2302,2302,2413,2470,2687
19143,Osceola County ,IA,19,0,0,0,0,0,0,0,9,10,33,33,51,56,77,77,99,99,180,181,313,318,525,536,611,614,653,654,678,678,715,717,776,776,789,789,789,789,795,795,814,814,865,865,971,971,1049,1060,1124
19145,Page County ,IA,19,0,0,0,0,0,2,2,6,7,13,13,20,20,69,69,112,113,192,208,431,441,1140,1152,1358,1371,1515,1515,1767,1767,1854,1859,1916,1917,1934,1935,1945,1945,1957,1957,2069,2069,2306,2306,2554,2554,2733,2766,2887
19147,Palo Alto County ,IA,19,0,0,0,0,0,0,0,0,0,6,7,30,31,74,74,113,117,211,218,338,353,655,657,808,817,934,935,1003,1003,1066,1076,1117,1118,1135,1135,1135,1136,1152,1152,1189,1189,1371,1371,1435,1435,1507,1523,1633
19149,Plymouth County ,IA,19,0,0,0,0,0,0,0,12,14,131,133,300,303,432,439,741,745,1186,1213,1808,1836,2765,2772,3344,3363,3564,3565,3662,3663,3843,3856,3994,3995,4023,4023,4033,4034,4057,4057,4165,4165,4484,4484,4674,4674,4891,4938,5193
19151,Pocahontas County ,IA,19,0,0,0,0,0,0,0,1,3,11,13,73,77,113,113,130,131,166,168,255,265,558,564,718,724,791,791,807,807,829,830,852,852,858,858,858,858,870,870,893,893,1042,1042,1129,1129,1209,1224,1293
19153,Polk County ,IA,19,0,0,0,0,0,76,81,985,1176,4225,4240,6025,6066,9446,9538,13315,13414,16140,16235,20180,20684,33646,33940,41187,41554,47919,47988,51468,51506,54432,54595,56881,56948,58008,58012,58332,58342,59215,59215,62499,62499,71109,71109,75692,75692,80473,81845,88873
19155,Pottawattamie County ,IA,19,0,0,0,0,0,4,5,33,37,260,266,683,691,1146,1171,1631,1635,2216,2244,3499,3556,6319,6445,8244,8302,9328,9333,9793,9797,10292,10335,10954,10980,11176,11176,11240,11244,11393,11393,12196,12196,13607,13607,14649,14649,15905,16227,17651
19157,Poweshiek County ,IA,19,0,0,0,0,0,5,6,56,57,90,90,104,104,136,141,183,183,320,332,506,526,994,998,1196,1210,1387,1389,1468,1468,1510,1512,1539,1539,1566,1566,1572,1572,1598,1598,1667,1667,1950,1950,2164,2164,2373,2424,2693
19159,Ringgold County ,IA,19,0,0,0,0,0,0,0,0,0,4,4,14,14,21,21,31,31,53,53,104,104,214,220,360,365,466,466,500,501,527,529,540,544,559,559,565,565,571,571,604,604,641,641,690,690,771,787,867
19161,Sac County ,IA,19,0,0,0,0,0,0,0,0,1,18,19,62,63,79,79,114,114,268,277,424,431,860,875,1035,1042,1141,1142,1173,1174,1232,1239,1294,1295,1308,1308,1309,1310,1333,1333,1377,1377,1509,1509,1605,1605,1716,1761,1866
19163,Scott County ,IA,19,0,0,0,0,0,18,21,226,230,359,361,619,644,1544,1563,2212,2245,3107,3136,5100,5223,11261,11350,14063,14159,16221,16243,17026,17033,18003,18101,19569,19605,20231,20235,20328,20332,20530,20530,21668,21668,23792,23792,24987,24987,26682,27168,30754
19165,Shelby County ,IA,19,0,0,0,0,0,3,3,9,9,37,37,103,106,153,156,215,215,274,278,423,426,765,773,946,949,1100,1099,1150,1150,1241,1241,1295,1300,1312,1313,1317,1318,1322,1322,1400,1400,1627,1627,1828,1828,1965,2006,2173
19167,Sioux County ,IA,19,0,0,0,0,0,4,4,9,11,271,282,450,455,583,588,895,899,1736,1765,2609,2654,3709,3728,4336,4355,4628,4630,4768,4769,4957,4963,5101,5102,5160,5161,5178,5178,5205,5205,5289,5289,5522,5522,5741,5741,6115,6235,6515
19169,Story County ,IA,19,0,0,0,0,0,2,4,27,31,115,116,680,704,1086,1093,2362,2454,3488,3512,4195,4251,6792,6851,7982,8023,9010,9012,9522,9530,10054,10079,10480,10498,10689,10691,10728,10728,10925,10925,11355,11355,12364,12364,13019,13019,13846,14016,14761
19171,Tama County ,IA,19,0,0,0,0,0,11,14,266,270,403,403,441,445,533,534,622,623,753,762,1029,1047,1543,1549,1751,1758,1938,1939,2011,2014,2051,2052,2084,2085,2109,2109,2127,2127,2138,2138,2230,2230,2547,2547,2669,2669,2799,2835,3064
19173,Taylor County ,IA,19,0,0,0,0,0,1,1,1,1,56,56,78,79,93,93,113,113,137,148,266,271,466,468,543,547,611,612,638,638,643,643,654,655,664,664,668,668,671,671,697,697,750,750,810,810,987,1010,1072
19175,Union County ,IA,19,0,0,0,0,0,0,0,1,1,8,9,25,26,67,67,92,92,142,148,281,291,772,782,1023,1033,1144,1145,1185,1185,1220,1223,1257,1267,1291,1292,1301,1301,1295,1295,1329,1329,1538,1538,1654,1654,1924,1980,2203
19177,Van Buren County ,IA,19,0,0,0,0,0,1,2,8,8,9,9,19,19,29,29,100,100,119,122,196,201,358,361,453,455,514,513,535,536,546,546,556,556,563,562,565,565,573,573,635,635,776,776,851,851,933,964,1074
19179,Wapello County ,IA,19,0,0,0,0,0,1,1,10,17,589,597,700,700,823,827,1084,1087,1341,1350,1621,1652,2561,2573,3120,3141,3588,3595,3993,4000,4219,4222,4266,4267,4326,4327,4344,4345,4401,4401,4662,4662,5441,5441,6049,6049,6450,6580,7103
19181,Warren County ,IA,19,0,0,0,0,0,3,4,22,25,132,134,243,249,501,510,778,781,969,978,1366,1424,2818,2841,3758,3819,4745,4756,5079,5085,5377,5388,5685,5695,5809,5810,5848,5851,5943,5943,6286,6286,7261,7261,7871,7871,8471,8652,9366
19183,Washington County ,IA,19,0,0,0,0,0,24,34,141,144,189,189,226,228,284,285,336,340,486,494,715,725,1418,1466,1874,1886,2273,2274,2385,2385,2447,2448,2512,2514,2553,2556,2574,2575,2610,2610,2781,2781,3448,3448,3706,3706,3915,3957,4297
19185,Wayne County ,IA,19,0,0,0,0,0,0,0,0,1,1,1,8,8,15,15,50,52,88,89,158,161,301,302,373,383,425,426,449,449,514,515,527,530,543,543,548,549,566,566,592,592,677,677,769,769,845,861,973
19187,Webster County ,IA,19,0,0,0,0,0,1,1,5,5,39,42,160,161,684,685,1006,1032,1318,1330,2038,2043,3586,3642,4423,4453,4770,4770,4919,4920,5041,5042,5101,5102,5133,5136,5195,5202,5463,5463,5904,5904,6628,6628,7012,7012,7329,7429,8075
19189,Winnebago County ,IA,19,0,0,0,0,0,0,0,2,2,11,11,23,26,71,71,160,160,324,326,532,539,931,933,1099,1104,1246,1247,1291,1292,1339,1340,1398,1402,1436,1436,1446,1447,1470,1470,1546,1546,1763,1763,1889,1889,2171,2225,2429
19191,Winneshiek County ,IA,19,0,0,0,0,0,3,3,15,17,24,24,28,31,74,77,217,221,342,346,528,543,978,987,1381,1386,1653,1653,1818,1818,1891,1895,1960,1961,1972,1972,2003,2004,2013,2013,2060,2060,2234,2234,2363,2363,2596,2680,3014
19193,Woodbury County ,IA,19,0,0,0,0,0,4,4,742,922,2748,2761,3156,3172,3617,3627,4131,4148,5607,5705,7631,7676,10388,10435,12235,12307,13255,13258,13715,13719,14524,14554,15040,15054,15200,15203,15253,15254,15378,15378,15980,15980,17979,17979,19487,19487,20521,20748,21804
19195,Worth County ,IA,19,0,0,0,0,0,0,0,1,1,3,3,13,15,56,59,79,80,110,111,157,160,363,370,521,528,628,628,659,660,679,679,732,732,755,756,762,763,764,764,847,847,998,998,1100,1100,1218,1230,1324
19197,Wright County ,IA,19,0,0,0,0,0,1,1,3,3,167,176,370,370,439,439,519,520,597,603,786,802,1246,1270,1528,1530,1689,1689,1731,1731,1769,1769,1819,1821,1853,1854,1866,1866,1912,1912,2039,2039,2274,2274,2478,2478,2665,2704,2920
0,Statewide Unallocated,KS,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,1,1,0,0,0,0,0,0,0,0,0
20001,Allen County ,KS,20,0,0,0,0,0,0,0,0,0,0,0,4,4,14,14,28,28,61,61,123,123,374,374,653,683,967,980,1119,1127,1213,1213,1239,1239,1245,1245,1258,1258,1358,1358,1554,1572,1778,1789,1910,1931,2148,2222,2691
20003,Anderson County ,KS,20,0,0,0,0,0,0,0,0,0,1,1,4,4,27,27,35,35,80,80,215,215,385,385,564,594,758,763,809,813,829,829,836,836,842,842,852,852,881,881,951,962,1062,1068,1116,1120,1192,1209,1414
20005,Atchison County ,KS,20,0,0,0,0,0,1,1,9,10,20,22,32,34,59,59,166,166,308,308,537,537,873,873,1251,1268,1432,1449,1531,1531,1569,1569,1614,1614,1634,1634,1540,1540,1693,1693,1976,2012,2248,2273,2422,2424,2569,2605,2978
20007,Barber County ,KS,20,0,0,0,0,0,0,0,1,1,1,1,1,1,4,4,4,4,9,9,74,74,197,197,283,291,359,362,365,365,369,369,374,374,374,374,374,374,381,381,412,411,452,460,498,502,611,621,691
20009,Barton County ,KS,20,0,0,0,0,0,1,2,9,9,42,44,55,55,92,92,278,278,507,507,797,797,1706,1706,2201,2229,2496,2505,2572,2572,2595,2595,2606,2606,2623,2623,2615,2615,2706,2706,2934,2961,3493,3544,3921,3945,4335,4358,4732
20011,Bourbon County ,KS,20,0,0,0,0,0,3,3,6,6,8,8,19,27,57,57,92,92,209,217,307,307,564,564,927,971,1211,1216,1277,1280,1333,1333,1404,1404,1427,1427,1441,1441,1688,1688,2111,2136,2337,2352,2462,2471,2637,2659,2947
20013,Brown County ,KS,20,0,0,0,0,0,0,0,0,0,6,6,11,11,36,36,68,68,137,137,258,258,760,760,1023,1057,1176,1179,1209,1212,1232,1232,1235,1235,1241,1241,1243,1243,1289,1289,1397,1408,1482,1485,1585,1603,1828,1848,2030
20015,Butler County ,KS,20,0,0,0,0,0,3,5,15,15,34,37,58,59,215,215,474,474,985,985,1572,1572,3468,3468,5314,5493,6765,6804,7190,7205,7380,7380,7487,7487,7592,7592,7664,7664,7921,7921,8980,9060,10270,10328,11014,11037,11730,11821,12935
20017,Chase County ,KS,20,0,0,0,0,0,0,0,1,1,3,3,4,4,6,6,65,75,82,82,98,98,163,163,208,212,232,232,242,243,250,250,259,259,274,274,278,278,288,288,302,304,323,322,368,369,410,418,468
20019,Chautauqua County ,KS,20,0,0,0,0,0,1,1,4,4,4,4,4,4,5,5,9,9,19,19,31,31,81,81,181,189,234,236,258,258,265,265,267,267,267,267,271,271,301,301,341,351,438,446,511,512,554,560,643
20021,Cherokee County ,KS,20,0,0,0,0,0,3,3,8,8,9,10,28,31,70,70,261,261,511,511,703,703,1130,1130,1709,1764,2191,2209,2355,2359,2414,2414,2470,2470,2494,2494,2619,2619,2985,2985,3299,3316,3490,3503,3662,3665,3816,3837,4076
20023,Cheyenne County ,KS,20,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,7,7,68,68,137,137,208,208,275,284,337,338,352,353,358,358,362,362,368,368,371,371,376,376,385,386,418,418,437,439,477,480,513
20025,Clark County ,KS,20,0,0,0,0,0,0,0,1,1,32,32,34,34,44,44,47,47,52,52,75,75,140,140,191,195,230,230,238,242,247,247,252,252,252,252,250,250,253,253,282,285,318,318,332,333,354,354,380
20027,Clay County ,KS,20,0,0,0,0,0,0,1,4,4,5,5,6,7,18,18,33,33,52,52,115,115,453,453,647,647,787,799,806,806,786,786,799,799,803,803,815,815,863,863,942,975,1138,1147,1255,1259,1349,1342,1435
20029,Cloud County ,KS,20,0,0,0,0,0,0,0,4,4,5,5,18,18,29,29,59,59,71,71,170,170,613,613,853,859,952,952,966,967,973,973,982,982,986,986,1004,1004,1019,1019,1130,1140,1221,1226,1390,1394,1620,1663,1822
20031,Coffey County ,KS,20,0,0,0,0,0,14,16,48,48,50,50,53,53,67,67,81,81,124,124,177,177,309,309,508,523,621,625,710,712,723,723,726,726,741,741,751,751,781,781,878,893,1103,1123,1203,1216,1362,1388,1649
20033,Comanche County ,KS,20,0,0,0,0,0,0,0,0,0,2,2,2,2,3,3,9,9,12,12,22,22,82,82,150,150,153,154,157,158,167,167,167,167,169,169,172,172,176,176,196,198,206,208,296,302,331,334,360
20035,Cowley County ,KS,20,0,0,0,0,0,0,0,2,2,5,10,70,71,151,151,255,255,389,389,583,583,1631,1631,2544,2663,3467,3491,3800,3805,3895,3895,3942,3942,3998,3998,4008,4008,4161,4161,4633,4671,5215,5263,5628,5642,6255,6332,6985
20037,Crawford County ,KS,20,0,0,0,0,0,3,3,5,6,6,6,256,263,380,380,599,599,1098,1098,1527,1527,2427,2427,3379,3454,4199,4222,4502,4514,4638,4638,4719,4719,4752,4752,4885,4885,5539,5539,6184,6245,6573,6589,6731,6742,7086,7164,7876
20039,Decatur County ,KS,20,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,6,6,25,25,128,128,201,201,231,231,252,252,259,259,264,264,269,269,268,268,281,281,281,281,293,298,319,322,364,365,434,447,526
20041,Dickinson County ,KS,20,0,0,0,0,0,0,0,2,2,3,4,8,8,37,37,75,75,208,208,345,345,731,731,1239,1274,1606,1625,1685,1685,1709,1709,1744,1744,1778,1778,1825,1825,1971,1971,2254,2289,2621,2654,2929,2937,3147,3192,3527
20043,Doniphan County ,KS,20,0,0,0,0,0,1,1,3,3,13,17,26,26,42,42,65,65,114,114,211,211,516,516,723,738,894,901,939,942,959,959,967,967,1015,1015,1044,1044,1146,1146,1256,1262,1328,1333,1381,1383,1522,1550,1775
20045,Douglas County ,KS,20,0,0,0,0,0,24,30,50,51,66,67,156,188,663,663,1375,1420,2340,2391,2961,2961,4737,4737,6482,6482,8005,8096,8533,8533,8540,8540,8795,8795,8925,8925,8977,8977,9369,9369,10413,10554,11519,11587,12219,12251,12847,12958,14599
20047,Edwards County ,KS,20,0,0,0,0,0,0,0,3,4,5,5,6,7,10,10,24,24,51,51,83,83,158,158,221,225,237,238,252,254,259,259,263,263,267,267,267,267,270,270,284,285,314,322,370,378,444,449,480
20049,Elk County ,KS,20,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,6,6,15,15,58,58,106,114,159,159,174,175,178,178,179,179,180,180,181,181,187,187,219,220,256,257,302,303,349,364,388
20051,Ellis County ,KS,20,0,0,0,0,0,0,0,8,8,10,10,21,23,130,130,417,417,1026,1026,1447,1447,2404,2404,3210,3231,3463,3477,3677,3681,3721,3721,3734,3734,3752,3752,3764,3764,3796,3796,4020,4052,4357,4379,4586,4604,4858,4894,5210
20053,Ellsworth County ,KS,20,0,0,0,0,0,0,0,0,0,2,2,3,4,18,18,25,25,58,58,330,330,711,711,1048,1059,1162,1168,1206,1208,1215,1215,1221,1221,1220,1220,1226,1226,1224,1224,1279,1282,1339,1340,1396,1403,1474,1499,1602
20055,Finney County ,KS,20,0,0,0,0,0,1,1,317,386,1481,1502,1570,1574,1737,1737,1884,1888,2169,2210,3105,3105,4626,4628,5482,5482,5881,5897,5961,5961,5356,5356,5407,5407,5598,5598,5870,5870,5957,5957,6357,6397,6815,6842,7285,7320,7857,7896,8414
20057,Ford County ,KS,20,0,0,0,0,0,0,0,675,702,1738,1790,2006,2008,2106,2106,2333,2333,2902,2902,3491,3491,4650,4650,5138,5182,5459,5462,5569,5577,5684,5684,5743,5743,5768,5768,5789,5789,5875,5875,6399,6456,6855,6876,7177,7196,7422,7456,7851
20059,Franklin County ,KS,20,0,0,0,0,0,7,7,14,14,34,35,69,72,150,150,262,262,393,393,594,594,1113,1113,1757,1835,2264,2296,2432,2438,2495,2495,2544,2544,2578,2578,2601,2601,2824,2824,3124,3176,3614,3634,3798,3806,4062,4112,4773
20061,Geary County ,KS,20,0,0,0,0,0,0,0,12,13,17,18,57,70,179,179,295,295,427,427,573,573,992,992,1759,1841,2718,2740,3017,3025,3166,3166,3366,3366,3449,3449,3650,3650,3945,3945,4234,4278,4583,4594,4780,4784,5022,5041,5435
20063,Gove County ,KS,20,0,0,0,0,0,1,1,1,1,1,1,1,1,3,3,11,11,37,37,199,199,301,301,332,335,370,372,376,376,385,385,386,386,386,386,388,388,391,391,397,401,447,449,477,477,553,562,625
20065,Graham County ,KS,20,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,20,20,35,35,58,58,163,163,204,206,244,244,249,249,262,262,265,265,265,265,265,265,268,268,284,286,310,314,322,323,340,345,390
20067,Grant County ,KS,20,0,0,0,0,0,0,0,4,5,17,17,46,46,80,80,134,134,274,274,473,473,739,766,912,912,950,950,964,964,935,935,941,941,946,946,950,950,981,981,1050,1059,1123,1129,1259,1272,1445,1464,1602
20069,Gray County ,KS,20,0,0,0,0,0,0,0,4,5,22,22,26,26,64,64,90,90,127,127,208,208,448,448,523,523,545,545,600,600,556,556,563,563,566,566,586,586,636,636,677,682,765,774,877,882,942,944,972
20071,Greeley County ,KS,20,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,4,4,9,9,46,46,88,88,93,95,102,102,102,102,104,104,104,104,104,104,104,104,104,104,122,123,128,128,161,166,189,202,235
20073,Greenwood County ,KS,20,0,0,0,0,0,0,0,3,3,8,8,11,11,15,15,28,28,49,49,108,108,203,227,452,452,557,557,557,557,551,551,556,556,567,567,575,575,621,621,795,825,937,941,974,974,1055,1058,1195
20075,Hamilton County ,KS,20,0,0,0,0,0,0,0,2,2,18,20,32,33,41,41,44,44,46,46,72,72,159,159,187,188,199,199,199,201,202,202,202,202,210,210,210,210,212,212,222,228,253,254,282,288,321,325,353
20077,Harper County ,KS,20,0,0,0,0,0,0,0,1,1,2,2,2,2,8,8,112,112,120,120,165,165,320,320,427,434,573,574,599,599,618,618,616,616,617,617,624,624,635,635,685,689,820,841,918,920,1027,1063,1281
20079,Harvey County ,KS,20,0,0,0,0,0,1,2,7,7,13,13,39,39,165,165,291,291,361,361,649,649,1842,1842,2623,2707,3269,3269,3402,3403,3547,3547,3613,3613,3678,3678,3710,3710,3797,3797,4127,4196,4629,4661,5107,5139,5547,5608,6383
20081,Haskell County ,KS,20,0,0,0,0,0,0,0,7,7,21,21,23,24,39,39,59,59,126,126,178,178,264,264,361,364,401,401,407,407,418,418,418,418,419,419,416,416,425,425,476,478,520,521,572,575,636,658,715
20083,Hodgeman County ,KS,20,0,0,0,0,0,0,0,0,0,4,5,9,9,11,11,14,14,24,24,45,45,140,140,161,162,178,181,199,203,210,210,211,211,213,213,213,213,213,213,223,223,226,226,236,238,257,263,296
20085,Jackson County ,KS,20,0,0,0,0,0,1,1,2,2,94,98,109,112,143,143,204,204,246,246,352,352,697,697,1018,1039,1259,1264,1330,1330,1381,1381,1398,1398,1411,1411,1419,1419,1479,1479,1709,1743,1877,1891,2051,2068,2331,2361,2672
20087,Jefferson County ,KS,20,0,0,0,0,0,1,1,9,9,22,22,26,26,61,61,120,120,198,198,299,299,731,731,1173,1206,1521,1532,1611,1618,1669,1669,1710,1710,1742,1742,1763,1763,1844,1844,2105,2136,2434,2454,2601,2608,2788,2842,3238
20089,Jewell County ,KS,20,0,0,0,0,0,0,0,4,4,4,4,4,4,9,9,14,14,17,17,29,29,85,85,150,161,186,186,198,199,207,207,210,210,213,213,216,216,217,217,225,230,315,324,416,420,563,582,627
20091,Johnson County ,KS,20,0,0,0,0,0,134,143,464,471,829,877,1722,1870,4995,5014,8240,8240,11575,11575,15817,15817,27420,27420,38865,39696,49641,50030,54224,54370,56159,56159,57888,57888,59144,59144,59916,59916,63147,63147,69476,70061,74792,75105,78177,78348,82542,83128,92698
20093,Kearny County ,KS,20,0,0,0,0,0,0,0,16,19,45,45,48,48,54,54,73,73,100,100,160,160,369,369,503,507,548,548,560,560,561,561,567,567,573,573,573,573,583,583,634,644,684,687,786,792,878,917,994
20095,Kingman County ,KS,20,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,43,43,100,100,151,151,388,388,557,564,671,674,727,727,741,741,752,752,772,772,778,778,806,806,892,909,1022,1031,1193,1202,1298,1320,1449
20097,Kiowa County ,KS,20,0,0,0,0,0,0,0,1,1,2,2,3,3,6,6,9,9,27,27,65,65,108,108,175,178,248,248,266,266,238,238,238,238,238,238,236,236,240,240,272,274,317,325,385,390,420,426,467
20099,Labette County ,KS,20,0,0,0,0,0,1,1,22,22,22,22,57,61,109,109,186,186,246,246,414,414,875,875,1922,1993,2428,2439,2598,2608,2722,2722,2734,2734,2751,2751,2774,2774,2996,2996,3290,3330,3432,3443,3529,3538,3943,3994,4390
20101,Lane County ,KS,20,0,0,0,0,0,0,0,0,0,3,3,5,5,5,5,7,7,14,14,28,28,77,77,109,109,120,121,124,124,125,125,126,126,128,128,128,128,132,132,140,141,158,159,169,169,198,205,224
20103,Leavenworth County ,KS,20,0,0,0,0,0,24,25,356,372,1079,1093,1162,1173,1422,1422,1721,1721,2258,2258,2687,2687,3817,3817,5044,5118,6186,6247,6765,6783,7051,7051,7188,7188,7255,7255,7324,7324,7950,7950,9071,9162,9924,9972,10384,10410,11139,11227,12255
20105,Lincoln County ,KS,20,0,0,0,0,0,0,0,0,0,0,0,1,1,6,6,8,8,14,14,24,24,94,94,208,217,248,249,254,254,257,257,263,263,265,265,266,266,271,271,286,287,304,305,362,364,398,403,448
20107,Linn County ,KS,20,0,0,0,0,0,5,5,5,5,10,10,15,15,33,33,58,58,83,83,127,127,308,308,518,534,710,716,747,749,777,777,810,810,822,822,833,833,941,941,1134,1155,1452,1476,1602,1606,1680,1702,1938
20109,Logan County ,KS,20,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,29,29,124,124,238,238,273,276,287,289,291,292,292,292,289,289,289,289,305,305,308,308,323,326,363,369,425,427,525,529,614
20111,Lyon County ,KS,20,0,0,0,0,0,10,12,200,210,403,419,489,492,644,644,855,870,1080,1088,1316,1316,2657,2657,3366,3404,3862,3879,4089,4099,4209,4209,4261,4261,4299,4299,4326,4326,4431,4431,4794,4833,5209,5227,5483,5490,5837,5900,6591
20113,McPherson County ,KS,20,0,0,0,0,0,3,5,22,22,27,28,72,74,131,131,196,196,270,270,455,455,1447,1522,2348,2385,2929,2944,3106,3108,3201,3201,3256,3256,3291,3291,3342,3342,3408,3408,3696,3726,4129,4159,4497,4523,4899,4945,5464
20115,Marion County ,KS,20,0,0,0,0,0,0,0,5,5,7,7,11,11,51,51,68,68,102,102,190,190,454,454,687,701,951,955,1021,1024,1045,1045,1095,1095,1113,1113,1120,1120,1135,1135,1225,1247,1440,1464,1653,1661,1897,1939,2226
20117,Marshall County ,KS,20,0,0,0,0,0,0,0,0,0,0,0,1,1,9,9,17,17,30,30,96,96,667,667,855,855,999,1020,1070,1070,1076,1076,1084,1084,1124,1124,1138,1138,1190,1190,1302,1316,1391,1391,1463,1466,1728,1781,1972
20119,Meade County ,KS,20,0,0,0,0,0,0,0,5,6,29,30,30,30,44,44,72,72,136,136,171,171,314,314,400,400,478,478,493,493,502,502,513,513,517,517,514,514,514,514,554,559,592,600,700,700,749,755,829
20121,Miami County ,KS,20,0,0,0,0,0,0,0,5,5,7,7,31,34,122,122,211,211,412,412,583,583,1073,1073,1818,1880,2482,2502,2629,2637,2669,2669,2741,2741,2773,2773,2806,2806,2996,2996,3353,3443,4090,4122,4369,4379,4648,4710,5360
20123,Mitchell County ,KS,20,0,0,0,0,0,2,2,3,3,4,4,4,4,27,27,32,32,46,46,66,66,228,228,401,401,555,555,565,565,561,561,561,561,564,564,569,569,578,578,605,615,713,714,791,793,879,884,931
20125,Montgomery County ,KS,20,0,0,0,0,0,5,6,17,17,19,19,36,36,140,140,228,228,435,435,722,722,1158,1158,2244,2316,2995,3017,3265,3285,3395,3395,3449,3449,3472,3472,3483,3483,3666,3666,4474,4586,5145,5177,5375,5378,5589,5638,6135
20127,Morris County ,KS,20,0,0,0,0,0,2,2,3,3,5,5,5,5,9,9,21,21,41,41,86,86,205,205,404,404,530,530,573,573,569,569,581,581,590,590,591,591,635,635,697,703,743,744,778,779,833,859,979
20129,Morton County ,KS,20,0,0,0,0,0,0,0,3,3,5,6,7,7,9,9,10,10,17,17,63,63,164,164,201,201,233,233,253,254,254,254,255,255,267,267,269,269,276,276,287,288,316,317,387,391,450,450,487
20131,Nemaha County ,KS,20,0,0,0,0,0,0,0,1,1,15,16,24,28,46,46,56,56,128,128,357,357,1046,1085,1345,1354,1416,1420,1472,1474,1502,1502,1510,1510,1516,1516,1531,1531,1579,1579,1700,1710,1829,1837,1933,1936,2189,2221,2462
20133,Neosho County ,KS,20,0,0,0,0,0,1,1,2,2,2,2,29,30,51,51,88,88,173,173,280,280,690,718,1192,1229,1590,1604,1740,1740,1771,1771,1800,1800,1805,1805,1820,1820,2005,2005,2251,2276,2448,2451,2615,2634,2952,3023,3384
20135,Ness County ,KS,20,0,0,0,0,0,0,0,0,0,1,3,4,4,5,5,26,26,92,92,169,169,278,278,323,323,340,348,364,364,369,369,371,371,372,372,372,372,380,380,409,411,474,474,491,494,537,542,590
20137,Norton County ,KS,20,0,0,0,0,0,0,0,0,1,2,2,4,4,22,22,23,23,35,35,715,715,1092,1092,1193,1193,1200,1200,1214,1214,1203,1203,1205,1205,1206,1206,1210,1210,1239,1239,1299,1299,1330,1340,1453,1463,1579,1587,1679
20139,Osage County ,KS,20,0,0,0,0,0,3,3,5,5,7,7,13,13,37,37,66,66,114,114,174,174,535,535,816,836,1067,1090,1187,1189,1207,1207,1232,1232,1258,1258,1267,1267,1345,1345,1593,1637,1879,1892,2003,2009,2217,2248,2630
20141,Osborne County ,KS,20,0,0,0,0,0,0,0,2,2,2,2,2,2,4,4,4,4,11,11,38,38,91,91,181,195,297,297,297,297,288,288,289,289,290,290,293,293,297,297,315,320,365,370,416,418,498,513,580
20143,Ottawa County ,KS,20,0,0,0,0,0,1,1,4,4,4,4,6,6,30,30,43,43,58,58,123,123,250,250,417,421,527,533,548,548,549,549,551,551,552,552,560,560,580,580,633,637,686,688,741,744,837,846,901
20145,Pawnee County ,KS,20,0,0,0,0,0,0,0,0,0,0,0,3,3,7,7,171,171,385,385,438,438,675,675,982,1012,1107,1109,1132,1133,1144,1144,1165,1165,1172,1172,1178,1178,1178,1178,1206,1211,1322,1333,1489,1497,1568,1570,1659
20147,Phillips County ,KS,20,0,0,0,0,0,0,0,1,1,2,2,3,3,43,43,51,51,122,122,211,211,435,435,578,585,654,659,704,704,712,712,713,713,714,714,711,711,720,720,746,747,796,800,903,910,983,989,1079
20149,Pottawatomie County ,KS,20,0,0,0,0,0,2,2,13,13,27,27,68,74,108,108,145,145,278,278,405,405,691,691,1109,1151,1502,1527,1746,1755,1852,1852,1886,1886,1919,1919,2005,2005,2165,2165,2462,2490,2666,2669,2827,2830,3155,3178,3644
20151,Pratt County ,KS,20,0,0,0,0,0,0,1,1,1,2,2,11,11,33,33,43,43,74,74,192,192,500,500,683,686,785,787,802,802,812,812,814,814,815,815,815,815,839,839,969,1004,1149,1153,1237,1245,1361,1366,1475
20153,Rawlins County ,KS,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,44,44,120,120,180,239,306,306,336,346,346,346,298,298,300,300,324,324,333,333,335,335,338,339,372,379,429,430,533,547,591
20155,Reno County ,KS,20,0,0,0,0,0,7,8,34,36,51,51,74,74,229,229,775,775,1155,1155,2376,2376,5137,5137,6938,7041,8019,8059,8295,8299,8350,8350,8490,8490,8552,8552,8602,8602,8770,8770,9526,9636,10586,10664,11343,11383,12522,12686,13839
20157,Republic County ,KS,20,0,0,0,0,0,0,0,4,4,4,4,9,9,27,27,36,36,49,49,86,86,338,349,578,578,665,668,676,676,659,659,661,661,669,669,671,671,678,678,713,739,859,862,888,888,942,947,1014
20159,Rice County ,KS,20,0,0,0,0,0,0,0,3,3,4,4,4,4,26,26,44,44,84,84,160,160,468,468,783,820,996,1006,1052,1054,1064,1064,1074,1074,1078,1078,1075,1075,1095,1095,1173,1187,1373,1386,1471,1477,1572,1588,1813
20161,Riley County ,KS,20,0,0,0,0,0,2,4,46,48,63,64,205,219,449,449,922,922,1857,1857,2177,2177,3709,3709,4917,4917,5934,6002,6148,6148,5788,5788,6002,6002,6131,6131,6321,6321,6716,6716,7092,7136,7561,7581,7794,7809,8162,8215,8763
20163,Rooks County ,KS,20,0,0,0,0,0,0,0,6,6,7,7,8,8,16,16,29,29,99,99,164,164,368,368,461,533,602,608,632,634,656,656,654,654,656,656,659,659,663,663,679,689,754,760,795,800,861,875,1015
20165,Rush County ,KS,20,0,0,0,0,0,0,0,0,0,0,0,1,1,6,6,20,20,66,66,108,108,264,323,343,343,418,418,424,425,431,431,431,431,433,433,434,434,441,441,459,463,490,490,515,515,556,562,608
20167,Russell County ,KS,20,0,0,0,0,0,0,0,0,0,0,0,0,1,11,11,22,22,97,97,209,209,551,551,727,727,798,799,839,842,854,854,858,858,859,859,865,865,889,889,927,936,1015,1022,1152,1162,1319,1328,1476
20169,Saline County ,KS,20,0,0,0,0,0,1,1,21,21,28,28,94,106,327,327,460,476,776,776,1166,1166,2503,2503,4436,4552,5542,5606,5951,5963,6086,6086,6216,6216,6293,6293,6362,6362,6689,6689,7269,7334,7910,7948,8514,8554,9143,9209,9999
20171,Scott County ,KS,20,0,0,0,0,0,0,0,0,1,13,14,16,16,26,26,86,86,105,105,187,187,362,362,507,515,557,559,569,569,576,576,585,585,600,600,604,604,614,614,644,652,684,688,792,793,884,896,955
20173,Sedgwick County ,KS,20,0,0,0,0,0,58,64,372,384,575,601,1260,1368,4196,4196,7306,7306,9102,9102,13138,13138,27966,27966,39423,40608,49884,50270,53571,53679,54799,54799,56132,56132,57272,57272,58027,58027,59910,59910,66503,67400,76285,76848,81588,81797,86516,87331,96411
20175,Seward County ,KS,20,0,0,0,0,0,0,0,500,514,866,872,1011,1011,1169,1188,1341,1377,1669,1731,2162,2162,2952,3006,3552,3552,3749,3760,3859,3859,3834,3834,3858,3858,3873,3873,3879,3879,3946,3946,4134,4160,4424,4442,4651,4660,4981,5051,5444
20177,Shawnee County ,KS,20,0,0,0,0,0,17,18,117,121,291,328,646,669,1398,1398,2186,2199,2804,2804,3769,3769,7855,7855,11608,11929,15147,15278,16327,16362,16896,16896,17380,17380,17569,17569,17754,17754,18545,18545,21761,22135,24484,24607,25698,25750,27318,27574,31041
20179,Sheridan County ,KS,20,0,0,0,0,0,0,0,2,2,2,2,4,5,7,7,8,8,28,28,201,201,320,320,383,388,422,422,426,426,432,432,432,432,436,436,437,437,439,439,453,453,473,473,501,505,562,567,619
20181,Sherman County ,KS,20,0,0,0,0,0,0,0,4,4,7,7,7,7,14,14,18,18,42,42,243,243,451,451,544,545,603,604,625,625,619,619,633,633,653,653,662,662,673,673,705,722,762,762,828,844,1079,1095,1187
20183,Smith County ,KS,20,0,0,0,0,0,0,0,2,2,2,2,3,3,3,3,4,4,8,8,28,28,144,144,208,216,252,252,264,264,269,269,270,270,271,271,279,279,288,288,292,294,333,339,404,405,473,473,505
20185,Stafford County ,KS,20,0,0,0,0,0,1,1,1,1,1,1,1,1,3,3,32,32,59,59,93,93,209,209,280,280,332,332,335,335,337,337,339,339,344,344,344,344,364,364,395,401,523,525,608,610,737,756,852
20187,Stanton County ,KS,20,0,0,0,0,0,0,0,4,4,9,9,10,10,23,23,43,43,67,67,105,105,148,148,161,161,174,175,184,184,184,184,184,184,185,185,186,186,197,197,230,231,255,264,287,289,316,323,342