Skip to content

Instantly share code, notes, and snippets.

@Matthew-Mitchell
Last active November 10, 2016 23:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Matthew-Mitchell/4871ba8826bd9a1a44444af0f6c297ea to your computer and use it in GitHub Desktop.
Save Matthew-Mitchell/4871ba8826bd9a1a44444af0f6c297ea to your computer and use it in GitHub Desktop.
Primaries VS General Election 2012
license: gpl-3.0

A D3 Example...

Here's a visualization of Primary and General Election data that I scraped from the web. This was part of an analysis to see how strong of a relationship has existed historically concerning turnouts for the presidential primary and the subsequent general election. Specifically, this graph depicts the percentage of each county's population that voted in the Republican primary versus the percentage of that county's population that voted for Mitt Romney come the general election. Interesting relationships exist here where certain regions such as New England depict radically different correlations between these two statistics.

<!DOCTYPE html>
<html>
<meta charset="utf-8">
<!-- Example based on http://bl.ocks.org/mbostock/3887118 -->
<!-- Tooltip example from http://www.d3noob.org/2013/01/adding-tooltips-to-d3js-graph.html -->
<style>
body {
font: 11px sans-serif;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.dot {
stroke: #000;
}
.tooltip {
position: absolute;
width: 265px;
height: 50px;
pointer-events: none;
}
</style>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script>
var margin = {top: 20, right: 120, bottom: 30, left: 40},
width = 1100 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom;
/*
* value accessor - returns the value to encode for a given data object.
* scale - maps value to a visual display encoding, such as a pixel position.
* map function - maps from data value to display value
* axis - sets up axis
*/
// setup x
var xValue = function(d) { return d.Rep_Primary_Percent;}, // data -> value
xScale = d3.scale.linear().range([0, width]), // value -> display
xMap = function(d) { return xScale(xValue(d));}, // data -> display
xAxis = d3.svg.axis().scale(xScale).orient("bottom");
// setup y
var yValue = function(d) { return d["Romney_Percent_Pop"];}, // data -> value
yScale = d3.scale.linear().range([height, 0]), // value -> display
yMap = function(d) { return yScale(yValue(d));}, // data -> display
yAxis = d3.svg.axis().scale(yScale).orient("left");
// setup fill color
var cValue = function(d) { return d.State;},
color = d3.scale.category10();
// add the graph canvas to the body of the webpage
var svg = d3.select("body").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
// add the tooltip area to the webpage
var tooltip = d3.select("body").append("div")
.attr("class", "tooltip")
.attr("width", "500px")
.attr("height", "500px")
.style("background-color", "white")
.style("opacity", 0);
// load data
d3.csv("interactive_scatter_data.csv", function(error, data) {
// change string (from CSV) into number format
data.forEach(function(d) {
d.Rep_Primary_Percent = +d.Rep_Primary_Percent;
d["Romney_Percent_Pop"] = +d["Romney_Percent_Pop"];
// console.log(d);
});
// don't want dots overlapping axis, so add in buffer to data domain
xScale.domain([d3.min(data, xValue)-0.01, d3.max(data, xValue)]);
yScale.domain([d3.min(data, yValue)-0.01, d3.max(data, yValue)]);
// x-axis
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis)
.append("text")
.attr("class", "label")
.attr("x", width-35)
.attr("y", -6)
.style("text-anchor", "end")
.text("Percent of Population Voting in Republican Primary");
// y-axis
svg.append("g")
.attr("class", "y axis")
.call(yAxis)
.append("text")
.attr("class", "label")
.attr("transform", "rotate(-90)")
.attr("y", 6)
.attr("dy", ".71em")
.style("text-anchor", "end")
.text("Percent of Population Voting Republican in General Election");
// draw dots
svg.selectAll(".dot")
.data(data)
.enter().append("circle")
.attr("class", "dot")
.attr("r", 3.5)
.attr("cx", xMap)
.attr("cy", yMap)
.style("fill", function(d) { return color(d.BEA_Region);})
.on("mouseover", function(d) {
tooltip.transition()
.duration(200)
.style("opacity", .9);
tooltip.html(d["County"] + ' , ' + d.State + "<br/>" + "Percent Voting Republican in Primary: " + Math.round(xValue(d)*1000)/10 + "%" + "<br/>"
+ "Percent Voting Republican in General Election: " + Math.round(yValue(d)*1000)/10 + "%")
.style("left", (d3.event.pageX + 5) + "px")
.style("top", (d3.event.pageY - 58) + "px")
.style("bottom", (d3.event.pageY) + "px");
})
.on("mouseout", function(d) {
tooltip.transition()
.duration(500)
.style("opacity", 0);
});
// draw legend
var legend = svg.selectAll(".legend")
.data(color.domain())
.enter().append("g")
.attr("class", "legend")
.attr("transform", function(d, i) { return "translate(0," + (200 + i * 20) + ")"; });
// draw legend colored rectangles
legend.append("rect")
.attr("x", width - 18)
.attr("width", 18)
.attr("height", 18)
.style("fill", color);
// draw legend text
legend.append("text")
.attr("x", width - 24)
.attr("y", 9)
.attr("dy", ".35em")
.style("text-anchor", "end")
.text(function(d) { return d;})
});
</script>
</body>
</html>
State County Id Romney_Percent_Pop Pop_Estimate Rep_Primary_Percent BEA_Region
0 AL Autauga 0500000US01001 0.318116871222 54590 0.203169078586 5
1 AL Baldwin 0500000US01003 0.358966522218 183226 0.198858240643 5
2 AL Barbour 0500000US01005 0.201645491281 27469 0.0538425133787 5
3 AL Bibb 0500000US01007 0.269269620976 22769 0.146427159735 5
4 AL Blount 0500000US01009 0.360926460864 57466 0.187397765635 5
5 AL Bullock 0500000US01011 0.115966230634 10779 0.0178124130253 5
6 AL Butler 0500000US01013 0.245103714424 20730 0.0794018330921 5
7 AL Calhoun 0500000US01015 0.256903779894 117834 0.137388190166 5
8 AL Chambers 0500000US01017 0.221923571345 34228 0.0737407970083 5
9 AL Cherokee 0500000US01019 0.28915383725 25917 0.114326503839 5
10 AL Chilton 0500000US01021 0.31895622664 43611 0.167985141363 5
11 AL Choctaw 0500000US01023 0.299898829311 13838 0.029484029484 5
12 AL Clarke 0500000US01025 0.289622787954 25768 0.16299285936 5
13 AL Clay 0500000US01027 0.347266415968 13828 0.11332079838 5
14 AL Cleburne 0500000US01029 0.353505535055 14905 0.279168064408 5
15 AL Coffee 0500000US01031 0.292959212264 49966 0.170636032502 5
16 AL Colbert 0500000US01033 0.255844704413 54451 0.0911645332501 5
17 AL Conecuh 0500000US01035 0.260388231726 13188 0.0241128298453 5
18 AL Coosa 0500000US01037 0.267846085803 11305 0.130561698364 5
19 AL Covington 0500000US01039 0.321350157395 37803 0.215194561278 5
20 AL Crenshaw 0500000US01041 0.309641400043 13971 0.128766731086 5
21 AL Cullman 0500000US01043 0.347375097944 80403 0.222715570315 5
22 AL Dale 0500000US01045 0.261425522153 50129 0.158311556185 5
23 AL Dallas 0500000US01047 0.144221059396 43572 0.0174882952355 5
24 AL DeKalb 0500000US01049 0.258157267897 70949 0.102129698798 5
25 AL Elmore 0500000US01051 0.33055590571 79330 0.191226522123 5
26 AL Escambia 0500000US01053 0.242983054404 38122 0.106290331042 5
27 AL Etowah 0500000US01055 0.278976580998 104317 0.10818946097 5
28 AL Fayette 0500000US01057 0.350426854057 17219 0.107381381033 5
29 AL Franklin 0500000US01059 0.238978019202 31664 0.0500568468924 5
30 AL Geneva 0500000US01061 0.342672494303 26769 0.226978968209 5
31 AL Greene 0500000US01063 0.0881217602294 9067 0.0174258299327 5
32 AL Hale 0500000US01065 0.203492063492 15750 0.0206984126984 5
33 AL Henry 0500000US01067 0.324457308249 17275 0.195484804631 5
34 AL Houston 0500000US01069 0.287938970422 101459 0.139534196079 5
35 AL Jackson 0500000US01071 0.270688263669 53279 0.070496818634 5
36 AL Jefferson 0500000US01073 0.214761930797 658464 0.110857996793 5
37 AL Lamar 0500000US01075 0.375732102253 14513 0.0844070833046 5
38 AL Lauderdale 0500000US01077 0.258321805291 92528 0.0964140584472 5
39 AL Lawrence 0500000US01079 0.259312404826 34148 0.0793897153567 5
40 AL Lee 0500000US01081 0.227490102031 140938 0.103556173637 5
41 AL Limestone 0500000US01083 0.303229988117 83313 0.166300577341 5
42 AL Lowndes 0500000US01085 0.15516631281 11304 0.0387473460722 5
43 AL Macon 0500000US01087 0.0623173376072 21214 0.0227208447252 5
44 AL Madison 0500000US01089 0.270957775181 334661 0.16547491342 5
45 AL Marengo 0500000US01091 0.254483715147 20909 0.0293653450667 5
46 AL Marion 0500000US01093 0.316438758526 30641 0.169021898763 5
47 AL Marshall 0500000US01095 0.27704953261 93070 0.159750725261 5
48 AL Mobile 0500000US01097 0.229363783874 412297 0.118169668952 5
49 AL Monroe 0500000US01099 0.249206280172 22993 0.0752402905232 5
50 AL Montgomery 0500000US01101 0.166900634766 229376 0.0975777762277 5
51 AL Morgan 0500000US01103 0.295893740049 119330 0.163395625576 5
52 AL Perry 0500000US01105 0.142897862233 10525 0.0311638954869 5
53 AL Pickens 0500000US01107 0.260561946452 19646 0.0632698768197 5
54 AL Pike 0500000US01109 0.24241221374 32750 0.13065648855 5
55 AL Randolph 0500000US01111 0.316026791577 22843 0.100118198135 5
56 AL Russell 0500000US01113 0.153435425859 53938 0.0596981719752 5
57 AL St. Clair 0500000US01115 0.347192625404 83530 0.170094576799 5
58 AL Shelby 0500000US01117 0.364905217761 195237 0.184836890548 5
59 AL Sumter 0500000US01119 0.115955812422 13669 0.0176311361475 5
60 AL Talladega 0500000US01121 0.233800520719 82194 0.104143854783 5
61 AL Tallapoosa 0500000US01123 0.296215149035 41534 0.138151875572 5
62 AL Tuscaloosa 0500000US01125 0.235274434503 194254 0.105362051747 5
63 AL Walker 0500000US01127 0.32280350961 67016 0.140951414588 5
64 AL Washington 0500000US01129 0.330269431838 17407 0.0421094961797 5
65 AL Wilcox 0500000US01131 0.143174440458 11706 0.0238339313173 5
66 AL Winston 0500000US01133 0.340127701375 24432 0.24095448592 5
67 AR Ashley 0500000US05003 0.223098436569 21811 0.0150841318601 5
68 AR Baxter 0500000US05005 0.330731872327 41387 0.0773431270689 5
69 AR Benton 0500000US05007 0.240857009026 222028 0.100473814114 5
70 AR Boone 0500000US05009 0.300901922661 37032 0.0759883344135 5
71 AR Bradley 0500000US05011 0.184013900956 11510 0.0227628149435 5
72 AR Calhoun 0500000US05013 0.27135678392 5373 0.0191699236925 5
73 AR Carroll 0500000US05015 0.224040115662 27321 0.0717396874199 5
74 AR Chicot 0500000US05017 0.142018879156 11759 0.0109703206055 5
75 AR Clark 0500000US05019 0.1884164859 23050 0.0479826464208 5
76 AR Clay 0500000US05021 0.201802140041 15981 0.00688317376885 5
77 AR Cleburne 0500000US05023 0.336221904136 25849 0.114163023715 5
78 AR Cleveland 0500000US05025 0.266321243523 8685 0.0480138169257 5
79 AR Columbia 0500000US05027 0.23494562571 24644 0.0833468592761 5
80 AR Conway 0500000US05029 0.212752912324 21203 0.0336744800264 5
81 AR Craighead 0500000US05031 0.207260958132 96709 0.0243824256274 5
82 AR Crawford 0500000US05033 0.245257013134 61670 0.0670342143668 5
83 AR Crittenden 0500000US05035 0.122328025604 50618 0.00780354814493 5
84 AR Cross 0500000US05037 0.238555698396 17891 0.0145883405064 5
85 AR Dallas 0500000US05039 0.204875646393 8122 0.0508495444472 5
86 AR Desha 0500000US05041 0.139839034205 12922 0.00495279368519 5
87 AR Drew 0500000US05043 0.208595218909 18615 0.0313188289014 5
88 AR Faulkner 0500000US05045 0.234353292887 113730 0.0664908115713 5
89 AR Franklin 0500000US05047 0.255715074544 18110 0.059249033683 5
90 AR Fulton 0500000US05049 0.23973660678 12301 0.0225997886351 5
91 AR Garland 0500000US05051 0.260065039637 96249 0.0820891645627 5
92 AR Grant 0500000US05053 0.270501904549 17852 0.0398274703114 5
93 AR Greene 0500000US05055 0.214712012126 42224 0.0151809397499 5
94 AR Hempstead 0500000US05057 0.18999467802 22548 0.0297143870853 5
95 AR Hot Spring 0500000US05059 0.214686013753 33011 0.030898791312 5
96 AR Howard 0500000US05061 0.207541696882 13790 0.0200870195794 5
97 AR Independence 0500000US05063 0.238543147763 36572 0.0214371650443 5
98 AR Izard 0500000US05065 0.262303511092 13614 0.0366534449831 5
99 AR Jackson 0500000US05067 0.171372658653 17885 0.0105675146771 5
100 AR Jefferson 0500000US05069 0.123835181425 76836 0.0226456348587 5
101 AR Johnson 0500000US05071 0.197425060656 25554 0.0297800735697 5
102 AR Lafayette 0500000US05073 0.224730900499 7618 0.0526384877921 5
103 AR Lawrence 0500000US05075 0.204170035809 17314 0.0235069885642 5
104 AR Lee 0500000US05077 0.122722914669 10430 0.00191754554171 5
105 AR Lincoln 0500000US05079 0.155219877179 14167 0.00359991529611 5
106 AR Little River 0500000US05081 0.259029690848 13068 0.0162228344047 5
107 AR Logan 0500000US05083 0.227183249821 22352 0.0552523264137 5
108 AR Lonoke 0500000US05085 0.261636933533 68274 0.0613557137417 5
109 AR Madison 0500000US05087 0.271915273702 15674 0.085236697716 5
110 AR Marion 0500000US05089 0.285483484921 16712 0.0451771182384 5
111 AR Miller 0500000US05091 0.244470528666 43449 0.0568252433888 5
112 AR Mississippi 0500000US05093 0.142256618091 46388 0.0113175821333 5
113 AR Monroe 0500000US05095 0.19459791283 8145 0.010190300798 5
114 AR Montgomery 0500000US05097 0.250502485983 9453 0.0669628689305 5
115 AR Nevada 0500000US05099 0.221703876486 9003 0.00899700099967 5
116 AR Newton 0500000US05101 0.302679217958 8286 0.0539464156408 5
117 AR Ouachita 0500000US05103 0.213022321773 25894 0.0425967405577 5
118 AR Perry 0500000US05105 0.247767214059 10413 0.0425429751272 5
119 AR Phillips 0500000US05107 0.119698789615 21646 0.00235609350457 5
120 AR Pike 0500000US05109 0.252819465412 11261 0.0182932244028 5
121 AR Poinsett 0500000US05111 0.202685056721 24506 0.0144046355994 5
122 AR Polk 0500000US05113 0.289749208668 20535 0.0773313854395 5
123 AR Pope 0500000US05115 0.238193782032 61853 0.0638449226392 5
124 AR Prairie 0500000US05117 0.248181083266 8659 0.0147823074258 5
125 AR Pulaski 0500000US05119 0.179693881545 383185 0.03571120999 5
126 AR Randolph 0500000US05121 0.205591373944 17992 0.0163405958204 5
127 AR Saint Francis 0500000US05123 0.11702089786 28089 0.00377371924953 5
128 AR Saline 0500000US05125 0.306628960539 107498 0.094876183743 5
129 AR Scott 0500000US05127 0.23545210385 11170 0.0572963294539 5
130 AR Searcy 0500000US05129 0.331328259268 8146 0.182789098944 5
131 AR Sebastian 0500000US05131 0.231789816765 125795 0.0710362097063 5
132 AR Sevier 0500000US05133 0.184650724467 16978 0.0135469431028 5
133 AR Sharp 0500000US05135 0.284755179998 17278 0.0347262414631 5
134 AR Stone 0500000US05137 0.302323717949 12480 0.0391826923077 5
135 AR Union 0500000US05139 0.257152473915 41594 0.0537817954513 5
136 AR Van Buren 0500000US05141 0.253265981536 17223 0.0591650699646 5
137 AR Washington 0500000US05143 0.19391640571 204057 0.0611789843034 5
138 AR White 0500000US05145 0.259781578298 77007 0.0721622709624 5
139 AR Woodruff 0500000US05147 0.168961718535 7262 0.00261635912972 5
140 AR Yell 0500000US05149 0.18340670812 22033 0.0448872146326 5
141 AZ Apache 0500000US04001 0.114468429724 71618 0.0343349437292 6
142 AZ Cochise 0500000US04003 0.203953690569 131118 0.0852743330435 6
143 AZ Coconino 0500000US04005 0.144525449403 134011 0.0534657602734 6
144 AZ Gila 0500000US04007 0.215678568755 53436 0.0896025151583 6
145 AZ Graham 0500000US04009 0.217593964704 37115 0.0854371547892 6
146 AZ Greenlee 0500000US04011 0.185055865922 8592 0.0486499068901 6
147 AZ La Paz 0500000US04012 0.156647116325 20460 0.0592864125122 6
148 AZ Maricopa 0500000US04013 0.170449206483 3841819 0.0725749963754 6
149 AZ Mohave 0500000US04015 0.230806695293 201216 0.0752375556616 6
150 AZ Navajo 0500000US04017 0.178327049295 107415 0.0714518456454 6
151 AZ Pima 0500000US04019 0.166074442841 981048 0.071721261345 6
152 AZ Pinal 0500000US04021 0.160019436768 368374 0.0549930233947 6
153 AZ Santa Cruz 0500000US04023 0.0899972373929 47057 0.0317274794398 6
154 AZ Yavapai 0500000US04025 0.295271677395 211280 0.137826580841 6
155 AZ Yuma 0500000US04027 0.0992770593626 196420 0.0383260360452 6
156 CA Alameda 0500000US06001 0.0688585051111 1515136 0.0262662889668 8
157 CA Alpine 0500000US06003 0.197159565581 1197 0.134502923977 8
158 CA Amador 0500000US06005 0.235753627794 37764 0.130176888042 8
159 CA Butte 0500000US06007 0.160435436459 220101 0.0743749460475 8
160 CA Calaveras 0500000US06009 0.231546794999 45507 0.119212428857 8
161 CA Colusa 0500000US06011 0.165080406958 21329 0.0948942753997 8
162 CA Contra Costa 0500000US06013 0.106979060821 1052047 0.0529548584807 8
163 CA Del Norte 0500000US06015 0.14935429534 28496 0.0702905670971 8
164 CA El Dorado 0500000US06017 0.275220155065 180441 0.11159880515 8
165 CA Fresno 0500000US06019 0.0979487747134 930517 0.0428890605975 8
166 CA Glenn 0500000US06021 0.199729325451 28078 0.102713868509 8
167 CA Humboldt 0500000US06023 0.116537742802 134317 0.0558306096771 8
168 CA Imperial 0500000US06025 0.0550185316479 173487 0.0240248548883 8
169 CA Inyo 0500000US06027 0.191674786186 18474 0.130616000866 8
170 CA Kern 0500000US06029 0.118977111445 839153 0.05109795234 8
171 CA Kings 0500000US06031 0.113066020976 151982 0.0511442144464 8
172 CA Lake 0500000US06033 0.100590428838 64360 0.0538222498446 8
173 CA Lassen 0500000US06035 0.209685803396 34628 0.111441607947 8
174 CA Los Angeles 0500000US06037 0.0710973875673 9840024 0.0243196561309 8
175 CA Madera 0500000US06039 0.126083059456 150615 0.0581416193606 8
176 CA Marin 0500000US06041 0.0923686199107 252759 0.0453752388639 8
177 CA Mariposa 0500000US06043 0.243720112131 18193 0.13681086132 8
178 CA Mendocino 0500000US06045 0.0585656051246 87577 0.0351918882812 8
179 CA Merced 0500000US06047 0.0912760629958 256398 0.033990124728 8
180 CA Modoc 0500000US06049 0.291147197486 9545 0.157988475642 8
181 CA Mono 0500000US06051 0.155278189126 14181 0.0827163105564 8
182 CA Monterey 0500000US06053 0.0602764542923 416199 0.0381740465498 8
183 CA Napa 0500000US06055 0.0852360879365 136644 0.0426802494072 8
184 CA Nevada 0500000US06057 0.159316287898 98521 0.0947919732849 8
185 CA Orange 0500000US06059 0.179225902099 3021840 0.0711007200911 8
186 CA Placer 0500000US06061 0.212697886733 350074 0.0908065151939 8
187 CA Plumas 0500000US06063 0.2629730001 19926 0.155023587273 8
188 CA Riverside 0500000US06065 0.132343539527 2192982 0.0488485541605 8
189 CA Sacramento 0500000US06067 0.110864570415 1422348 0.0471867644205 8
190 CA San Benito 0500000US06069 0.109109921214 55467 0.0449095858799 8
191 CA San Bernardino 0500000US06071 0.120266786998 2041029 0.0419611872247 8
192 CA San Diego 0500000US06073 0.13902467344 3100500 0.0596639251734 8
193 CA San Francisco 0500000US06075 0.0528056155641 807755 0.0115171060532 8
194 CA San Joaquin 0500000US06077 0.0971448366607 687036 0.0424548349723 8
195 CA San Luis Obispo 0500000US06079 0.209165522118 270121 0.114637514299 8
196 CA San Mateo 0500000US06081 0.0779885271838 721183 0.032822459764 8
197 CA Santa Barbara 0500000US06083 0.139510946803 423594 0.0755015415705 8
198 CA Santa Clara 0500000US06085 0.0762399539698 1788393 0.0390713897896 8
199 CA Santa Cruz 0500000US06087 0.065304566593 262340 0.0336700465045 8
200 CA Shasta 0500000US06089 0.194498376413 177693 0.0906169629642 8
201 CA Sierra 0500000US06091 0.333860259248 3163 0.190009484666 8
202 CA Siskiyou 0500000US06093 0.220356815078 44673 0.121258925973 8
203 CA Solano 0500000US06095 0.116762310814 414209 0.0476522721621 8
204 CA Sonoma 0500000US06097 0.094457406672 483456 0.0467736464125 8
205 CA Stanislaus 0500000US06099 0.135016452637 515115 0.0560826223271 8
206 CA Sutter 0500000US06101 0.132917613486 94615 0.0604978069017 8
207 CA Tehama 0500000US06103 0.170743670886 63200 0.0942246835443 8
208 CA Trinity 0500000US06105 0.176878697145 13693 0.103921711824 8
209 CA Tulare 0500000US06107 0.0954700063592 441877 0.034964481066 8
210 CA Tuolumne 0500000US06109 0.24291277964 55205 0.107417806358 8
211 CA Ventura 0500000US06111 0.150607563983 822794 0.0583888555337 8
212 CA Yolo 0500000US06113 0.094985388778 200873 0.0426936422516 8
213 CA Yuba 0500000US06115 0.121061956702 72244 0.0476440950114 8
214 DE Kent 0500000US10001 0.19740148048 162785 0.0330251558805 2
215 DE New Castle 0500000US10003 0.150511891636 539665 0.0246745666293 2
216 DE Sussex 0500000US10005 0.263636869502 197681 0.0500756268938 2
217 HI Honolulu 0500000US15003 0.0913459273567 955215 0.00758782054302 8
218 HI Kauai 0500000US15007 0.0912043866315 67113 0.00691371269352 8
219 HI Maui 0500000US15009 0.0747206929268 154937 0.00709320562551 8
220 IA Adair 0500000US19001 0.276612480336 7628 0.0352648138437 4
221 IA Adams 0500000US19003 0.273901167122 4027 0.0449466103799 4
222 IA Allamakee 0500000US19005 0.226111305565 14285 0.0328316415821 4
223 IA Appanoose 0500000US19007 0.245216985534 12858 0.0378752527609 4
224 IA Audubon 0500000US19009 0.296198782294 6077 0.0366957380286 4
225 IA Benton 0500000US19011 0.266280141299 26044 0.0398940254953 4
226 IA Black Hawk 0500000US19013 0.199307567084 130843 0.0277966723478 4
227 IA Boone 0500000US19015 0.248442485944 26324 0.0487008053487 4
228 IA Bremer 0500000US19017 0.262739771137 24294 0.0386103564666 4
229 IA Buchanan 0500000US19019 0.211692395655 20988 0.0218696397942 4
230 IA Buena Vista 0500000US19021 0.224981449419 20215 0.0348256245362 4
231 IA Butler 0500000US19023 0.275454728505 14899 0.0370494664071 4
232 IA Calhoun 0500000US19025 0.290861513688 9936 0.0438808373591 4
233 IA Carroll 0500000US19027 0.268758132138 20751 0.0340706471977 4
234 IA Cass 0500000US19029 0.303786512802 13865 0.0486116119726 4
235 IA Cedar 0500000US19031 0.244497452022 18446 0.0385991542882 4
236 IA Cerro Gordo 0500000US19033 0.228750311912 44083 0.0351155774335 4
237 IA Cherokee 0500000US19035 0.304387644659 12011 0.0447090167347 4
238 IA Chickasaw 0500000US19037 0.228543798856 12409 0.0282859215086 4
239 IA Clarke 0500000US19039 0.228731423649 9286 0.0395218608658 4
240 IA Clay 0500000US19041 0.296354135384 16649 0.0439065409334 4
241 IA Clayton 0500000US19043 0.229618963226 18056 0.0334514842712 4
242 IA Clinton 0500000US19045 0.192016138892 49074 0.028243061499 4
243 IA Crawford 0500000US19047 0.209590643275 17100 0.0262573099415 4
244 IA Dallas 0500000US19049 0.31226771348 66997 0.0644506470439 4
245 IA Davis 0500000US19051 0.244666207846 8718 0.0339527414545 4
246 IA Decatur 0500000US19053 0.232044858029 8382 0.0410403245049 4
247 IA Delaware 0500000US19055 0.261159076802 17721 0.0306980418712 4
248 IA Des Moines 0500000US19057 0.201897288169 40268 0.0335253799543 4
249 IA Dickinson 0500000US19059 0.352306591966 16778 0.0410656812493 4
250 IA Dubuque 0500000US19061 0.226763777512 93776 0.0279282545641 4
251 IA Emmet 0500000US19063 0.243496053785 10263 0.0227029133782 4
252 IA Fayette 0500000US19065 0.214607064229 20894 0.0339331865607 4
253 IA Floyd 0500000US19067 0.213897803012 16204 0.0316588496667 4
254 IA Franklin 0500000US19069 0.264600938967 10650 0.0428169014085 4
255 IA Fremont 0500000US19071 0.267326732673 7373 0.0330937203309 4
256 IA Greene 0500000US19073 0.255051590714 9304 0.0486887360275 4
257 IA Grundy 0500000US19075 0.338267235138 12431 0.0505993081812 4
258 IA Guthrie 0500000US19077 0.289876316995 10915 0.052496564361 4
259 IA Hamilton 0500000US19079 0.255283719739 15614 0.0486742666837 4
260 IA Hancock 0500000US19081 0.292049469965 11320 0.0469081272085 4
261 IA Hardin 0500000US19083 0.265861891413 17479 0.0474283425825 4
262 IA Harrison 0500000US19085 0.273554387384 14838 0.0436716538617 4
263 IA Henry 0500000US19087 0.248246220729 20242 0.0366564568719 4
264 IA Howard 0500000US19089 0.18739548495 9568 0.0286371237458 4
265 IA Humboldt 0500000US19091 0.315644734162 9818 0.0433896924017 4
266 IA Ida 0500000US19093 0.319977505975 7113 0.0433009981724 4
267 IA Jackson 0500000US19097 0.210582117433 19807 0.0277174736204 4
268 IA Jasper 0500000US19099 0.24082774353 36823 0.0442386551883 4
269 IA Jefferson 0500000US19101 0.204216544577 16791 0.0500268000715 4
270 IA Johnson 0500000US19103 0.178960243719 131627 0.0354638486025 4
271 IA Jones 0500000US19105 0.227786909021 20686 0.035047858455 4
272 IA Keokuk 0500000US19107 0.270992366412 10480 0.0398854961832 4
273 IA Kossuth 0500000US19109 0.316827852998 15510 0.0373952288846 4
274 IA Lee 0500000US19111 0.189893959318 35741 0.0168713802076 4
275 IA Linn 0500000US19113 0.223760816026 211954 0.0411881823415 4
276 IA Louisa 0500000US19115 0.211041229909 11448 0.0324947589099 4
277 IA Lucas 0500000US19117 0.252215864468 8913 0.0444294850219 4
278 IA Lyon 0500000US19119 0.427170265852 11623 0.0464596059537 4
279 IA Madison 0500000US19121 0.287396033269 15630 0.0623800383877 4
280 IA Mahaska 0500000US19123 0.28619828816 22432 0.0630349500713 4
281 IA Marion 0500000US19125 0.293818138253 33388 0.0520845812867 4
282 IA Marshall 0500000US19127 0.207330901203 40568 0.0415845000986 4
283 IA Mills 0500000US19129 0.280210274155 15028 0.0355336704818 4
284 IA Mitchell 0500000US19131 0.245609144132 10761 0.0307592231205 4
285 IA Monona 0500000US19133 0.276455312703 9242 0.0370049772776 4
286 IA Monroe 0500000US19135 0.253415214939 7979 0.0335881689435 4
287 IA Montgomery 0500000US19137 0.280018674136 10710 0.034827264239 4
288 IA Muscatine 0500000US19139 0.190783776826 42729 0.0287158604227 4
289 IA O'Brien 0500000US19141 0.367710809677 14302 0.0411131310306 4
290 IA Osceola 0500000US19143 0.346951504756 6413 0.0431935131764 4
291 IA Page 0500000US19145 0.272795874733 15902 0.0367249402591 4
292 IA Palo Alto 0500000US19147 0.281748564135 9402 0.0293554562859 4
293 IA Plymouth 0500000US19149 0.344305728393 24911 0.0505399221228 4
294 IA Pocahontas 0500000US19151 0.326809908307 7307 0.0518680717121 4
295 IA Polk 0500000US19153 0.222386646009 431811 0.050573051636 4
296 IA Pottawattamie 0500000US19155 0.234403457157 92793 0.0294095459787 4
297 IA Poweshiek 0500000US19157 0.233428631936 18888 0.0375370605676 4
298 IA Ringgold 0500000US19159 0.26664064025 5123 0.0353308608237 4
299 IA Sac 0500000US19161 0.299408169205 10307 0.0440477345493 4
300 IA Scott 0500000US19163 0.231049615552 165432 0.0360873349775 4
301 IA Shelby 0500000US19165 0.321023194604 12158 0.0407139332127 4
302 IA Sioux 0500000US19167 0.425183562293 33776 0.0612861203221 4
303 IA Story 0500000US19169 0.217944146032 89734 0.0469275859763 4
304 IA Tama 0500000US19171 0.229685562944 17746 0.0370224275893 4
305 IA Taylor 0500000US19173 0.267005721551 6292 0.0373490146217 4
306 IA Union 0500000US19175 0.223552894212 12525 0.0366467065868 4
307 IA Van Buren 0500000US19177 0.272042300066 7565 0.0475875743556 4
308 IA Wapello 0500000US19179 0.191176055742 35449 0.0239216903157 4
309 IA Warren 0500000US19181 0.281818378425 46239 0.0545643288133 4
310 IA Washington 0500000US19183 0.25453710085 21765 0.0438777854353 4
311 IA Wayne 0500000US19185 0.248430634024 6372 0.041117388575 4
312 IA Webster 0500000US19187 0.223063728724 37895 0.0308747855918 4
313 IA Winnebago 0500000US19189 0.268240740741 10800 0.0398148148148 4
314 IA Winneshiek 0500000US19191 0.219559739457 21033 0.0327580468787 4
315 IA Woodbury 0500000US19193 0.217130301722 101948 0.0335759406756 4
316 IA Worth 0500000US19195 0.229916897507 7581 0.0247988392033 4
317 IA Wright 0500000US19197 0.25119562742 13173 0.0354513019054 4
318 ID Ada 0500000US16001 0.246786391568 394961 0.0206906504693 7
319 ID Adams 0500000US16003 0.355382293763 3976 0.0545774647887 7
320 ID Bannock 0500000US16005 0.25440763344 82584 0.0246900125932 7
321 ID Bear Lake 0500000US16007 0.41642964698 5977 0.0575539568345 7
322 ID Benewah 0500000US16009 0.280739699362 9247 0.0308208067481 7
323 ID Bingham 0500000US16011 0.296610169492 45312 0.0566295903955 7
324 ID Blaine 0500000US16013 0.184730103644 21323 0.0178211321109 7
325 ID Boise 0500000US16015 0.325634445395 7014 0.0414884516681 7
326 ID Bonner 0500000US16017 0.27856197618 40806 0.0255354604715 7
327 ID Bonneville 0500000US16019 0.310394808835 104177 0.0367451548806 7
328 ID Boundary 0500000US16021 0.289030118817 10857 0.0329741180805 7
329 ID Butte 0500000US16023 0.35396039604 2828 0.0746110325318 7
330 ID Camas 0500000US16025 0.315047021944 1276 0.0611285266458 7
331 ID Canyon 0500000US16027 0.234265771188 189396 0.0209560919977 7
332 ID Caribou 0500000US16029 0.379511059371 6872 0.0570430733411 7
333 ID Cassia 0500000US16031 0.313417788103 22813 0.069872441152 7
334 ID Clark 0500000US16033 0.301282051282 780 0.152564102564 7
335 ID Clearwater 0500000US16035 0.292775665399 8679 0.0271920728194 7
336 ID Custer 0500000US16037 0.402028584601 4338 0.0435684647303 7
337 ID Elmore 0500000US16039 0.196098293003 26655 0.0164697054962 7
338 ID Franklin 0500000US16041 0.407802810268 12739 0.0780281026768 7
339 ID Fremont 0500000US16043 0.373923645508 13123 0.0650765830984 7
340 ID Gem 0500000US16045 0.316734255725 16768 0.0400763358779 7
341 ID Gooding 0500000US16047 0.241143080838 15327 0.0336660794676 7
342 ID Idaho County 0500000US16049 0.358988590811 16215 0.0292938637064 7
343 ID Jefferson 0500000US16051 0.381457208944 25940 0.0762914417887 7
344 ID Jerome 0500000US16053 0.216982836495 22140 0.0241192411924 7
345 ID Kootenai 0500000US16055 0.282903014747 139083 0.00841224304911 7
346 ID Latah 0500000US16057 0.203104509568 37365 0.0260671751639 7
347 ID Lemhi 0500000US16059 0.383806386214 7892 0.0487835783071 7
348 ID Lewis 0500000US16061 0.307228915663 3818 0.0180722891566 7
349 ID Lincoln 0500000US16063 0.220824462938 5167 0.042771434101 7
350 ID Madison 0500000US16065 0.360349494787 37311 0.0758221436038 7
351 ID Minidoka 0500000US16067 0.273343713898 19909 0.0425435732583 7
352 ID Nez Perce 0500000US16069 0.25409167389 39226 0.0063988171111 7
353 ID Oneida 0500000US16071 0.433899905571 4236 0.0712936732767 7
354 ID Owyhee 0500000US16073 0.243400993118 11479 0.0383308650579 7
355 ID Payette 0500000US16075 0.265499248253 22614 0.0322808879455 7
356 ID Power 0500000US16077 0.242322145912 7717 0.0449656602307 7
357 ID Shoshone 0500000US16079 0.210908806752 12797 0.010705634133 7
358 ID Teton 0500000US16081 0.245628060358 10007 0.037773558509 7
359 ID Twin Falls 0500000US16083 0.256385985841 77122 0.0266201602656 7
360 ID Valley 0500000US16085 0.272031042581 9793 0.0280812825488 7
361 ID Washington 0500000US16087 0.308359621451 10144 0.0484029968454 7
362 IL Adams 0500000US17001 0.303600703449 67098 0.115457986825 3
363 IL Alexander 0500000US17003 0.182275684301 8147 0.0530256536148 3
364 IL Bond 0500000US17005 0.230323161806 17762 0.0756671545997 3
365 IL Boone 0500000US17007 0.20472470032 54141 0.114127925232 3
366 IL Brown 0500000US17009 0.218573701721 6913 0.0836105887458 3
367 IL Bureau 0500000US17011 0.234237599862 34798 0.121616184838 3
368 IL Calhoun 0500000US17013 0.284106614018 5065 0.0600197433366 3
369 IL Carroll 0500000US17015 0.23151649498 15338 0.174012257139 3
370 IL Cass 0500000US17017 0.199484156227 13570 0.0657332350774 3
371 IL Champaign 0500000US17019 0.174617157134 200931 0.0876669105315 3
372 IL Christian 0500000US17021 0.254934635828 34805 0.0695877029162 3
373 IL Clark 0500000US17023 0.314193114413 16353 0.156056992601 3
374 IL Clay 0500000US17025 0.302574486549 13828 0.105221290136 3
375 IL Clinton 0500000US17027 0.27764400815 37793 0.0798560580002 3
376 IL Coles 0500000US17029 0.216511744873 53683 0.111785853995 3
377 IL Cook 0500000US17031 0.0921958020862 5197677 0.0377539812497 3
378 IL Crawford 0500000US17033 0.281994235728 19777 0.132375992314 3
379 IL Cumberland 0500000US17035 0.317457442955 11044 0.141072075335 3
380 IL DeKalb 0500000US17037 0.180366342301 104820 0.0969948483114 3
381 IL DeWitt 0500000US17039 0.276295133438 16562 0.219599082236 3
382 IL Douglas 0500000US17041 0.267781796263 19908 0.16515973478 3
383 IL DuPage 0500000US17043 0.210463004894 918608 0.114030141257 3
384 IL Edgar 0500000US17045 0.276832496084 18513 0.1315291957 3
385 IL Edwards 0500000US17047 0.35898968764 6691 0.142729039008 3
386 IL Effingham 0500000US17049 0.364615564248 34258 0.137281802791 3
387 IL Fayette 0500000US17051 0.269450230957 22082 0.092292364822 3
388 IL Ford 0500000US17053 0.300818796725 14045 0.189889640441 3
389 IL Franklin 0500000US17055 0.25945138924 39518 0.0791031934815 3
390 IL Fulton 0500000US17057 0.179026196977 36989 0.070210062451 3
391 IL Gallatin 0500000US17059 0.266809728183 5592 0.0548998569385 3
392 IL Greene 0500000US17061 0.249204512583 13828 0.108403239803 3
393 IL Grundy 0500000US17063 0.224543813916 49870 0.0968117104472 3
394 IL Hamilton 0500000US17065 0.304389086595 8430 0.11221826809 3
395 IL Hancock 0500000US17067 0.25232125059 19063 0.183811572155 3
396 IL Hardin 0500000US17069 0.35573580533 4315 0.152723059096 3
397 IL Henderson 0500000US17071 0.211408934708 7275 0.0981443298969 3
398 IL Henry 0500000US17073 0.229544642503 50378 0.0891262058835 3
399 IL Iroquois 0500000US17075 0.307016066557 29689 0.181582404257 3
400 IL Jackson 0500000US17077 0.152186958261 59992 0.0601913588478 3
401 IL Jasper 0500000US17079 0.361697743896 9707 0.136087359637 3
402 IL Jefferson 0500000US17081 0.252004729105 38908 0.100724786676 3
403 IL Jersey 0500000US17083 0.262958280657 22939 0.0796024238197 3
404 IL JoDaviess 0500000US17085 0.243965935666 22663 0.165953315978 3
405 IL Johnson 0500000US17087 0.312890223662 12653 0.183987987039 3
406 IL Kane 0500000US17089 0.173827081848 514891 0.0793799075921 3
407 IL Kankakee 0500000US17091 0.204250242997 113170 0.0677653088274 3
408 IL Kendall 0500000US17093 0.20202055574 114226 0.0964929175494 3
409 IL Knox 0500000US17095 0.173308284944 52698 0.0791301377661 3
410 IL Lake 0500000US17097 0.183391274837 701282 0.0844710116615 3
411 IL LaSalle 0500000US17099 0.204128843853 113688 0.0884526071353 3
412 IL Lawrence 0500000US17101 0.229645964954 16778 0.0832041959709 3
413 IL Lee 0500000US17103 0.224886801945 35778 0.140700989435 3
414 IL Livingston 0500000US17105 0.250494820451 38903 0.167699149166 3
415 IL Logan 0500000US17107 0.258768742982 30278 0.131712794768 3
416 IL McDonough 0500000US17109 0.18859002702 32568 0.103874969295 3
417 IL McHenry 0500000US17111 0.231981126871 308163 0.106446912835 3
418 IL McLean 0500000US17113 0.233592041912 169689 0.126166103872 3
419 IL Macon 0500000US17115 0.228377865012 110558 0.0851951012138 3
420 IL Macoupin 0500000US17117 0.22864268947 47712 0.0645120724346 3
421 IL Madison 0500000US17119 0.225182995391 268586 0.0692366690743 3
422 IL Marion 0500000US17121 0.23472112719 39319 0.0704239680562 3
423 IL Marshall 0500000US17123 0.261558048858 12567 0.128033739158 3
424 IL Mason 0500000US17125 0.223080076524 14636 0.0789833287784 3
425 IL Massac 0500000US17127 0.278334417697 15370 0.111581001952 3
426 IL Menard 0500000US17129 0.309868007542 12728 0.127278441232 3
427 IL Mercer 0500000US17131 0.235917422812 16421 0.127276048962 3
428 IL Monroe 0500000US17133 0.329636699694 33003 0.0921431385026 3
429 IL Montgomery 0500000US17135 0.22587316943 29977 0.0742902892217 3
430 IL Morgan 0500000US17137 0.224004051317 35544 0.12319941481 3
431 IL Moultrie 0500000US17139 0.254715710051 14844 0.111021288063 3
432 IL Ogle 0500000US17141 0.251208362996 53378 0.163250777474 3
433 IL Peoria 0500000US17143 0.196444186932 186399 0.0878545485759 3
434 IL Perry 0500000US17145 0.246646026832 22287 0.0698613541526 3
435 IL Piatt 0500000US17147 0.324479884885 16679 0.181905390011 3
436 IL Pike 0500000US17149 0.295266488197 16436 0.129776101241 3
437 IL Pope 0500000US17151 0.343487156172 4399 0.154353262105 3
438 IL Pulaski 0500000US17153 0.255772064844 6107 0.100049123956 3
439 IL Putnam 0500000US17155 0.251340482574 5968 0.105563002681 3
440 IL Randolph 0500000US17157 0.248373459659 33353 0.0637124096783 3
441 IL Richland 0500000US17159 0.293554168469 16181 0.103763673444 3
442 IL Rock Island 0500000US17161 0.168727627725 147504 0.0622694977763 3
443 IL St. Clair 0500000US17163 0.184510902917 268873 0.0576889460824 3
444 IL Saline 0500000US17165 0.272392392392 24975 0.0889289289289 3
445 IL Sangamon 0500000US17167 0.253861267812 197474 0.100808207663 3
446 IL Schuyler 0500000US17169 0.274969995999 7499 0.138685158021 3
447 IL Scott 0500000US17171 0.298008267569 5322 0.212701991732 3
448 IL Shelby 0500000US17173 0.306372109697 22316 0.119241799606 3
449 IL Stark 0500000US17175 0.255223132208 5983 0.131539361524 3
450 IL Stephenson 0500000US17177 0.183918202474 47532 0.117331481949 3
451 IL Tazewell 0500000US17179 0.260841265967 135201 0.12547244473 3
452 IL Union 0500000US17181 0.278161694477 17799 0.120456205405 3
453 IL Vermilion 0500000US17183 0.182757816432 81463 0.0814725703694 3
454 IL Wabash 0500000US17185 0.29099287809 11935 0.0930875576037 3
455 IL Warren 0500000US17187 0.195226541782 17723 0.128251424702 3
456 IL Washington 0500000US17189 0.325823577457 14692 0.203307922679 3
457 IL Wayne 0500000US17191 0.357744963233 16727 0.125007472948 3
458 IL White 0500000US17193 0.322007353943 14686 0.0993463162195 3
459 IL Whiteside 0500000US17195 0.148561643836 58400 0.0756849315068 3
460 IL Will 0500000US17197 0.17466639318 677669 0.0767469074135 3
461 IL Williamson 0500000US17199 0.269540966307 66335 0.102525062184 3
462 IL Winnebago 0500000US17201 0.182459167281 294433 0.0761871121783 3
463 IL Woodford 0500000US17203 0.334236885584 38736 0.172139611731 3
464 IN Adams 0500000US18001 0.260198584864 34343 0.116326471188 3
465 IN Allen 0500000US18003 0.237056807327 355940 0.100752935888 3
466 IN Bartholomew 0500000US18005 0.233941808867 77297 0.127572868287 3
467 IN Benton 0500000US18007 0.26417876588 8816 0.171846642468 3
468 IN Blackford 0500000US18009 0.212682467431 12742 0.0942552189609 3
469 IN Boone 0500000US18011 0.330975133309 56823 0.219013427661 3
470 IN Brown 0500000US18013 0.285224952243 15181 0.157762993215 3
471 IN Carroll 0500000US18015 0.248346182542 20105 0.151007212136 3
472 IN Cass 0500000US18017 0.216900321543 38875 0.111099678457 3
473 IN Clark 0500000US18019 0.230899182561 110100 0.0616439600363 3
474 IN Clay 0500000US18021 0.262561320054 26908 0.11186264308 3
475 IN Clinton 0500000US18023 0.191024443172 33179 0.142168238946 3
476 IN Crawford 0500000US18025 0.225939076808 10702 0.0868996449262 3
477 IN Daviess 0500000US18027 0.241678268574 31604 0.1110618909 3
478 IN Dearborn 0500000US18029 0.308412151331 49904 0.104460564283 3
479 IN Decatur 0500000US18031 0.276230017073 25772 0.146205183921 3
480 IN DeKalb 0500000US18033 0.250746127244 42218 0.121677957269 3
481 IN Delaware 0500000US18035 0.180752432764 117459 0.0805898228318 3
482 IN Dubois 0500000US18037 0.277509227289 41995 0.0746517442553 3
483 IN Elkhart 0500000US18039 0.213647875528 198214 0.0966833826067 3
484 IN Fayette 0500000US18041 0.208257638315 24220 0.0948389760528 3
485 IN Floyd 0500000US18043 0.266323507728 74601 0.0723582793796 3
486 IN Fountain 0500000US18045 0.270741343249 17212 0.151986985824 3
487 IN Franklin 0500000US18047 0.321144192487 23108 0.11887657954 3
488 IN Fulton 0500000US18049 0.255996532126 20762 0.115306810519 3
489 IN Gibson 0500000US18051 0.283727607142 33437 0.0935490624159 3
490 IN Grant 0500000US18053 0.216752997739 69886 0.107389176659 3
491 IN Greene 0500000US18055 0.256024461129 33032 0.0934548316784 3
492 IN Hamilton 0500000US18057 0.328651420872 276098 0.153373077675 3
493 IN Hancock 0500000US18059 0.326033993522 69778 0.168477170455 3
494 IN Harrison 0500000US18061 0.271827528004 39102 0.0887678379623 3
495 IN Hendricks 0500000US18063 0.303729092405 145880 0.131841239375 3
496 IN Henry 0500000US18065 0.219436625423 49381 0.125615115125 3
497 IN Howard 0500000US18067 0.244639023567 82914 0.119135489785 3
498 IN Huntington 0500000US18069 0.292429463709 37144 0.150010768899 3
499 IN Jackson 0500000US18071 0.245650021219 42414 0.0891922478427 3
500 IN Jasper 0500000US18073 0.238394917438 33369 0.141808265156 3
501 IN Jay 0500000US18075 0.217440172341 21353 0.106963892661 3
502 IN Jefferson 0500000US18077 0.218331743639 32501 0.0803052213778 3
503 IN Jennings 0500000US18079 0.215416064568 28373 0.090226623903 3
504 IN Johnson 0500000US18081 0.279476980426 140033 0.14278063028 3
505 IN Knox 0500000US18083 0.250364659304 38392 0.0781933736195 3
506 IN Kosciusko 0500000US18085 0.29165373474 77328 0.139897579143 3
507 IN LaGrange 0500000US18087 0.167015341702 37284 0.0847012123163 3
508 IN Lake 0500000US18089 0.138111584516 495230 0.038258990772 3
509 IN LaPorte 0500000US18091 0.167144204428 111335 0.056666816365 3
510 IN Lawrence 0500000US18093 0.25193470768 46131 0.131971992803 3
511 IN Madison 0500000US18095 0.203856938222 131244 0.0990140501661 3
512 IN Marion 0500000US18097 0.150498322342 904535 0.0811997324592 3
513 IN Marshall 0500000US18099 0.239345307684 47045 0.108959506855 3
514 IN Martin 0500000US18101 0.316699029126 10300 0.0984466019417 3
515 IN Miami 0500000US18103 0.221519674355 36850 0.109769335142 3
516 IN Monroe 0500000US18105 0.117741655076 138048 0.0600298446917 3
517 IN Montgomery 0500000US18107 0.255659957599 38207 0.177480566388 3
518 IN Morgan 0500000US18109 0.283791809714 69033 0.160763692727 3
519 IN Newton 0500000US18111 0.231776885696 14199 0.136347630115 3
520 IN Noble 0500000US18113 0.224619849833 47547 0.11550676173 3
521 IN Ohio 0500000US18115 0.288363696045 6093 0.0905957656327 3
522 IN Orange 0500000US18117 0.232751664313 19828 0.125781722816 3
523 IN Owen 0500000US18119 0.234536440717 21583 0.106009359218 3
524 IN Parke 0500000US18121 0.245087241319 17251 0.146194423512 3
525 IN Perry 0500000US18123 0.175340065952 19408 0.0431265457543 3
526 IN Pike 0500000US18125 0.282278776558 12849 0.0818740758036 3
527 IN Porter 0500000US18127 0.208028664241 164386 0.0888396822114 3
528 IN Posey 0500000US18129 0.287422600619 25840 0.0878095975232 3
529 IN Pulaski 0500000US18131 0.251287793953 13395 0.140276222471 3
530 IN Putnam 0500000US18133 0.236978549809 37995 0.122016054744 3
531 IN Randolph 0500000US18135 0.238228420367 26101 0.158844488717 3
532 IN Ripley 0500000US18137 0.260748379904 28702 0.116089471117 3
533 IN Rush 0500000US18139 0.267047092051 17349 0.18542855496 3
534 IN St. Joseph 0500000US18141 0.19706880072 266785 0.068669527897 3
535 IN Scott 0500000US18143 0.18877890534 24044 0.0467476293462 3
536 IN Shelby 0500000US18145 0.246922471025 44435 0.12751209632 3
537 IN Spencer 0500000US18147 0.263270956655 20948 0.0865476417796 3
538 IN Starke 0500000US18149 0.20326040326 23310 0.0779922779923 3
539 IN Steuben 0500000US18151 0.250381052878 34116 0.145532887795 3
540 IN Sullivan 0500000US18153 0.229290425184 21379 0.0591702137612 3
541 IN Switzerland 0500000US18155 0.178133028832 10509 0.05871158055 3
542 IN Tippecanoe 0500000US18157 0.165638685184 173317 0.0740896738346 3
543 IN Tipton 0500000US18159 0.29986806559 15917 0.189420116856 3
544 IN Union 0500000US18161 0.271445831655 7449 0.100013424621 3
545 IN Vanderburgh 0500000US18163 0.219943210289 179610 0.105489672067 3
546 IN Vermillion 0500000US18165 0.211168639053 16224 0.0659516765286 3
547 IN Vigo 0500000US18167 0.179657715319 107805 0.0590232363991 3
548 IN Wabash 0500000US18169 0.259968296549 32804 0.143762955737 3
549 IN Warren 0500000US18171 0.279976442874 8490 0.150647820966 3
550 IN Warrick 0500000US18173 0.257364653019 59643 0.10520932884 3
551 IN Washington 0500000US18175 0.231943753995 28162 0.0841204459911 3
552 IN Wayne 0500000US18177 0.208163146649 68797 0.115121298894 3
553 IN Wells 0500000US18179 0.334393178451 27677 0.175055099902 3
554 IN White 0500000US18181 0.242564602633 24612 0.139566065334 3
555 IN Whitley 0500000US18183 0.308629716555 33234 0.144039236926 3
556 KS Allen 0500000US20001 0.244013768333 13364 0.0 4
557 KS Anderson 0500000US20003 0.278452764691 8066 0.0 4
558 KS Atchison 0500000US20005 0.22760175626 16854 0.0135872789842 4
559 KS Barber 0500000US20007 0.360180809534 4867 0.0195192110129 4
560 KS Barton 0500000US20009 0.331397880679 27556 0.00979822906082 4
561 KS Bourbon 0500000US20011 0.267065073041 15060 0.0 4
562 KS Brown 0500000US20013 0.274844408753 9962 0.0174663722144 4
563 KS Butler 0500000US20015 0.27059880878 65647 0.00885036635337 4
564 KS Chase 0500000US20017 0.307388809182 2788 0.0297704447633 4
565 KS Chautauqua 0500000US20019 0.328680897646 3654 0.0 4
566 KS Cherokee 0500000US20021 0.24836206496 21521 0.0 4
567 KS Cheyenne 0500000US20023 0.424743024963 2724 0.0363436123348 4
568 KS Clark 0500000US20025 0.359872611465 2198 0.0222929936306 4
569 KS Clay 0500000US20027 0.317655317655 8547 0.020826020826 4
570 KS Cloud 0500000US20029 0.304462496044 9479 0.0143475050111 4
571 KS Coffey 0500000US20031 0.334385595697 8553 0.0211621653221 4
572 KS Comanche 0500000US20033 0.399366085578 1893 0.0295826730058 4
573 KS Cowley 0500000US20035 0.218759480405 36259 0.0 4
574 KS Crawford 0500000US20037 0.191143025068 39133 0.00807502619273 4
575 KS Decatur 0500000US20039 0.414766927526 2939 0.030622660769 4
576 KS Dickinson 0500000US20041 0.288829302843 19766 0.0147728422544 4
577 KS Doniphan 0500000US20043 0.302231748834 7931 0.0 4
578 KS Douglas 0500000US20045 0.153304583472 111073 0.00707642721453 4
579 KS Edwards 0500000US20047 0.346904998345 3021 0.0155577623304 4
580 KS Elk 0500000US20049 0.364145658263 2856 0.0 4
581 KS Ellis 0500000US20051 0.317510955302 28525 0.00929009640666 4
582 KS Ellsworth 0500000US20053 0.294117647059 6477 0.0149760691678 4
583 KS Finney 0500000US20055 0.139532342657 36608 0.00743006993007 4
584 KS Ford 0500000US20057 0.161868050408 33725 0.00587101556709 4
585 KS Franklin 0500000US20059 0.265974687452 25916 0.0147013427998 4
586 KS Geary 0500000US20061 0.12436235708 34110 0.0048959249487 4
587 KS Gove 0500000US20063 0.416817033562 2771 0.0202093107182 4
588 KS Graham 0500000US20065 0.398930072602 2617 0.0324799388613 4
589 KS Grant 0500000US20067 0.222847639759 7817 0.0120250735576 4
590 KS Gray 0500000US20069 0.262119692411 5982 0.0123704446673 4
591 KS Greeley 0500000US20071 0.436790923825 1234 0.0380875202593 4
592 KS Greenwood 0500000US20073 0.298467087466 6654 0.0234445446348 4
593 KS Hamilton 0500000US20075 0.255271084337 2656 0.0214608433735 4
594 KS Harper 0500000US20077 0.287262420807 5998 0.0 4
595 KS Harvey 0500000US20079 0.241582783756 34572 0.0149542982761 4
596 KS Haskell 0500000US20081 0.267882520133 4222 0.0213169114164 4
597 KS Hodgeman 0500000US20083 0.439712673166 1949 0.0266803488969 4
598 KS Jackson 0500000US20085 0.259383628087 13401 0.0 4
599 KS Jefferson 0500000US20087 0.244116411011 19036 0.0109791973104 4
600 KS Jewell 0500000US20089 0.39546191248 3085 0.0291734197731 4
601 KS Johnson 0500000US20091 0.284668324647 546046 0.0127150459851 4
602 KS Kearny 0500000US20093 0.268218623482 3952 0.0172064777328 4
603 KS Kingman 0500000US20095 0.301041137633 7876 0.0 4
604 KS Kiowa 0500000US20097 0.38753495805 2503 0.011586096684 4
605 KS Labette 0500000US20099 0.216371558357 21574 0.0273013812923 4
606 KS Lane 0500000US20101 0.4393757503 1666 0.0270108043217 4
607 KS Leavenworth 0500000US20103 0.220551608421 76286 0.00981831528721 4
608 KS Lincoln 0500000US20105 0.354320987654 3240 0.0 4
609 KS Linn 0500000US20107 0.320295433267 9613 0.0379694164153 4
610 KS Logan 0500000US20109 0.391901663051 2766 0.0162689804772 4
611 KS Lyon 0500000US20111 0.186435210979 34103 0.010878808316 4
612 KS McPherson 0500000US20113 0.287558203232 29208 0.0172213092303 4
613 KS Marion 0500000US20115 0.307600477517 12565 0.0141663350577 4
614 KS Marshall 0500000US20117 0.309729247248 10083 0.0173559456511 4
615 KS Meade 0500000US20119 0.309502664298 4504 0.0142095914742 4
616 KS Miami 0500000US20121 0.298838566951 32546 0.0146561789467 4
617 KS Mitchell 0500000US20123 0.360591287938 6359 0.0218587828275 4
618 KS Montgomery 0500000US20125 0.239343702903 35167 0.0144169249581 4
619 KS Morris 0500000US20127 0.295757985466 5917 0.020618556701 4
620 KS Morton 0500000US20129 0.327408793265 3207 0.021515434986 4
621 KS Nemaha 0500000US20131 0.381317600787 10170 0.0125860373648 4
622 KS Neosho 0500000US20133 0.254105811769 16501 0.0 4
623 KS Ness 0500000US20135 0.38362346873 3102 0.0157962604771 4
624 KS Norton 0500000US20137 0.3278543655 5658 0.0235065394132 4
625 KS Osage 0500000US20139 0.266012269939 16300 0.0126380368098 4
626 KS Osborne 0500000US20141 0.375908618899 3852 0.0316718587747 4
627 KS Ottawa 0500000US20143 0.370552549598 6099 0.0277094605673 4
628 KS Pawnee 0500000US20145 0.260331173506 6945 0.0233261339093 4
629 KS Phillips 0500000US20147 0.37927944076 5579 0.0333393081197 4
630 KS Pottawatomie 0500000US20149 0.309528214616 21620 0.0231729879741 4
631 KS Pratt 0500000US20151 0.282316442606 9670 0.0189245087901 4
632 KS Rawlins 0500000US20153 0.47240704501 2555 0.0520547945205 4
633 KS Reno 0500000US20155 0.23930003419 64346 0.00920026108849 4
634 KS Republic 0500000US20157 0.422557905337 4965 0.0263846928499 4
635 KS Rice 0500000US20159 0.261089610003 10077 0.0124044854619 4
636 KS Riley 0500000US20161 0.15511560332 71927 0.00996844022412 4
637 KS Rooks 0500000US20163 0.414793467819 5205 0.0201729106628 4
638 KS Rush 0500000US20165 0.352851011649 3262 0.022378908645 4
639 KS Russell 0500000US20167 0.361680623737 6926 0.0192030031764 4
640 KS Saline 0500000US20169 0.246823923738 55493 0.012524102139 4
641 KS Scott 0500000US20171 0.34934318555 4872 0.0 4
642 KS Sedgwick 0500000US20173 0.210056290765 497062 0.00587049502879 4
643 KS Seward 0500000US20175 0.151870681789 23013 0.0152957024291 4
644 KS Shawnee 0500000US20177 0.209502048535 177688 0.00961235423889 4
645 KS Sheridan 0500000US20179 0.443403590945 2562 0.0269320843091 4
646 KS Sherman 0500000US20181 0.325878064944 6036 0.0281643472498 4
647 KS Smith 0500000US20183 0.416688396349 3835 0.0544980443286 4
648 KS Stafford 0500000US20185 0.31423374261 4398 0.0288767621646 4
649 KS Stanton 0500000US20187 0.259545454545 2200 0.0409090909091 4
650 KS Stevens 0500000US20189 0.30605361264 5633 0.0236108645482 4
651 KS Sumner 0500000US20191 0.25675 24000 0.0155833333333 4
652 KS Thomas 0500000US20193 0.347466259231 7854 0.0208810797046 4
653 KS Trego 0500000US20195 0.413167618408 2977 0.0171313402754 4
654 KS Wabaunsee 0500000US20197 0.316401816118 7048 0.019721906924 4
655 KS Wallace 0500000US20199 0.465517241379 1508 0.025198938992 4
656 KS Washington 0500000US20201 0.39614192215 5806 0.0206682741991 4
657 KS Wichita 0500000US20203 0.366681554265 2239 0.0267976775346 4
658 KS Wilson 0500000US20205 0.300170794193 9368 0.0 4
659 KS Woodson 0500000US20207 0.311084264573 3311 0.0380549682875 4
660 KS Wyandotte 0500000US20209 0.0971107748261 157274 0.00291847349212 4
661 KY Adair 0500000US21001 0.313173556378 18651 0.0640180151198 5
662 KY Allen 0500000US21003 0.259109311741 20007 0.0544809316739 5
663 KY Anderson 0500000US21005 0.318160619345 21442 0.0414606846376 5
664 KY Ballard 0500000US21007 0.32014997581 8268 0.0128205128205 5
665 KY Barren 0500000US21009 0.258637429255 42229 0.0380544175803 5
666 KY Bath 0500000US21011 0.195027861123 11665 0.0115730818688 5
667 KY Bell 0500000US21013 0.249082584839 28613 0.0298815223849 5
668 KY Boone 0500000US21015 0.300822404234 119406 0.0731872770213 5
669 KY Bourbon 0500000US21017 0.234553089382 20004 0.0213457308538 5
670 KY Boyd 0500000US21019 0.220491105798 49358 0.0367113740427 5
671 KY Boyle 0500000US21021 0.270803304623 28445 0.0226753383723 5
672 KY Bracken 0500000US21023 0.239043355325 8488 0.0249764373233 5
673 KY Breathitt 0500000US21025 0.238327826462 13922 0.00718287602356 5
674 KY Breckinridge 0500000US21027 0.250398644608 20068 0.0253637632051 5
675 KY Bullitt 0500000US21029 0.286251696202 74431 0.0234176619957 5
676 KY Butler 0500000US21031 0.291496705366 12748 0.0342798870411 5
677 KY Caldwell 0500000US21033 0.3008399476 12977 0.0166448331664 5
678 KY Calloway 0500000US21035 0.253723318458 37198 0.0143556105167 5
679 KY Campbell 0500000US21037 0.268977685061 90119 0.0604977862604 5
680 KY Carlisle 0500000US21039 0.361149380043 5081 0.0135800039362 5
681 KY Carroll 0500000US21041 0.18422265229 10851 0.0140079255368 5
682 KY Carter 0500000US21043 0.191309705008 27594 0.0204754656809 5
683 KY Casey 0500000US21045 0.306806806807 15984 0.0673173173173 5
684 KY Christian 0500000US21047 0.182781259326 73722 0.00995632240037 5
685 KY Clark 0500000US21049 0.279313739277 35555 0.024581634088 5
686 KY Clay 0500000US21051 0.282874547703 21833 0.105619933129 5
687 KY Clinton 0500000US21053 0.348399062866 10244 0.228524014057 5
688 KY Crittenden 0500000US21055 0.304581053535 9321 0.103422379573 5
689 KY Cumberland 0500000US21057 0.323173399446 6857 0.122940061251 5
690 KY Daviess 0500000US21059 0.259453423085 96711 0.0243922614801 5
691 KY Edmonson 0500000US21061 0.266205419652 12141 0.0517255580265 5
692 KY Elliott 0500000US21063 0.144841780293 7774 0.00205814252637 5
693 KY Estill 0500000US21065 0.255956851232 14647 0.078309551444 5
694 KY Fayette 0500000US21067 0.204851633947 296766 0.0361665419893 5
695 KY Fleming 0500000US21069 0.262226847034 14415 0.0261533125217 5
696 KY Floyd 0500000US21071 0.247984995184 39454 0.00577888173569 5
697 KY Franklin 0500000US21073 0.229660519444 49399 0.0424704953542 5
698 KY Fulton 0500000US21075 0.210861201539 6758 0.0110979579757 5
699 KY Gallatin 0500000US21077 0.206507694115 8513 0.0259602960179 5
700 KY Garrard 0500000US21079 0.31434998816 16892 0.113663272555 5
701 KY Grant 0500000US21081 0.229469675485 24683 0.0378803224892 5
702 KY Graves 0500000US21083 0.287607526882 37200 0.0229301075269 5
703 KY Grayson 0500000US21085 0.248486729784 25772 0.0376765481918 5
704 KY Green 0500000US21087 0.321336988239 11309 0.0943496330356 5
705 KY Greenup 0500000US21089 0.239829911706 36922 0.0444179621906 5
706 KY Hancock 0500000US21091 0.257568700512 8588 0.0209594783419 5
707 KY Hardin 0500000US21093 0.223484159865 104513 0.0197678757667 5
708 KY Harlan 0500000US21095 0.296234166381 29210 0.0311194796303 5
709 KY Harrison 0500000US21097 0.242585591822 18781 0.0269953676588 5
710 KY Hart 0500000US21099 0.232848232848 18278 0.0177809388336 5
711 KY Henderson 0500000US21101 0.222596964587 46254 0.0156743200588 5
712 KY Henry 0500000US21103 0.255379828883 15428 0.0455016852476 5
713 KY Hickman 0500000US21105 0.293900184843 4869 0.0197165742452 5
714 KY Hopkins 0500000US21107 0.291761745324 46891 0.0107483312363 5
715 KY Jackson 0500000US21109 0.323933209647 13475 0.165565862709 5
716 KY Jefferson 0500000US21111 0.200213143393 741285 0.0354330655551 5
717 KY Jessamine 0500000US21113 0.292893745755 48591 0.0404395875779 5
718 KY Johnson 0500000US21115 0.303997600583 23339 0.117314366511 5
719 KY Kenton 0500000US21117 0.258788439653 159926 0.0651426284657 5
720 KY Knott 0500000US21119 0.252321603128 16368 0.00580400782014 5
721 KY Knox 0500000US21121 0.265639706344 31874 0.031561774487 5
722 KY LaRue 0500000US21123 0.275908289242 14175 0.0165784832451 5
723 KY Laurel 0500000US21125 0.308213479139 58891 0.0435890034131 5
724 KY Lawrence 0500000US21127 0.251431808169 15889 0.0497828686513 5
725 KY Lee 0500000US21129 0.252458179032 7831 0.0352445409271 5
726 KY Leslie 0500000US21131 0.392207103729 11318 0.0557518996289 5
727 KY Letcher 0500000US21133 0.279873438527 24336 0.0213675213675 5
728 KY Lewis 0500000US21135 0.239470084239 13889 0.114119087047 5
729 KY Lincoln 0500000US21137 0.260062421466 24671 0.0434518260306 5
730 KY Livingston 0500000US21139 0.3258782572 9479 0.0131870450469 5
731 KY Logan 0500000US21141 0.257559919361 26786 0.0239677443441 5
732 KY Lyon 0500000US21143 0.289347408829 8336 0.0269913627639 5
733 KY McCracken 0500000US21145 0.304753043107 65558 0.032444552915 5
734 KY McCreary 0500000US21147 0.250714128763 18204 0.0508130081301 5
735 KY McLean 0500000US21149 0.28312748587 9554 0.016223571279 5
736 KY Madison 0500000US21151 0.25402168947 83174 0.0421285497872 5
737 KY Magoffin 0500000US21153 0.256330788419 13229 0.0215435785018 5
738 KY Marion 0500000US21155 0.191223832528 19872 0.00689412238325 5
739 KY Marshall 0500000US21157 0.331347752684 31393 0.0261841811869 5
740 KY Martin 0500000US21159 0.245863615278 12934 0.0596876449668 5
741 KY Mason 0500000US21161 0.239897113461 17495 0.034009717062 5
742 KY Meade 0500000US21163 0.227958176611 28979 0.0189102453501 5
743 KY Menifee 0500000US21165 0.23440214816 6331 0.0187963986732 5
744 KY Mercer 0500000US21167 0.320443546493 21283 0.0245266174881 5
745 KY Metcalfe 0500000US21169 0.265634306135 10074 0.0675004963272 5
746 KY Monroe 0500000US21171 0.344347826087 10925 0.186544622426 5
747 KY Montgomery 0500000US21173 0.241279179394 26517 0.0199871780367 5
748 KY Morgan 0500000US21175 0.21736940567 13898 0.00669161030364 5
749 KY Muhlenberg 0500000US21177 0.24720532501 31399 0.0164336443836 5
750 KY Nelson 0500000US21179 0.245356321839 43500 0.0234022988506 5
751 KY Nicholas 0500000US21181 0.223209249859 7092 0.0162154540327 5
752 KY Ohio 0500000US21183 0.269864442127 23975 0.024275286757 5
753 KY Oldham 0500000US21185 0.334327418526 60357 0.0930629421608 5
754 KY Owen 0500000US21187 0.273321067157 10870 0.0388224471021 5
755 KY Owsley 0500000US21189 0.268471872376 4764 0.0512174643157 5
756 KY Pendleton 0500000US21191 0.240741994449 14771 0.029991198971 5
757 KY Perry 0500000US21193 0.280951881749 28617 0.0234126568124 5
758 KY Pike 0500000US21195 0.271071246937 64887 0.0143017861821 5
759 KY Powell 0500000US21197 0.215698686501 12638 0.0146383921507 5
760 KY Pulaski 0500000US21199 0.328558965818 63045 0.0987707193275 5
761 KY Robertson 0500000US21201 0.257219013772 2251 0.01999111506 5
762 KY Rockcastle 0500000US21203 0.294207138678 17090 0.143417203043 5
763 KY Rowan 0500000US21205 0.172797738855 23351 0.0161020941287 5
764 KY Russell 0500000US21207 0.36134836579 17562 0.176460539802 5
765 KY Scott 0500000US21209 0.268560293152 47211 0.0382537967846 5
766 KY Shelby 0500000US21211 0.278815683678 42286 0.0587428463321 5
767 KY Simpson 0500000US21213 0.251399873001 17323 0.0159325751891 5
768 KY Spencer 0500000US21215 0.334169827838 17135 0.063320688649 5
769 KY Taylor 0500000US21217 0.308028065595 24514 0.0348372358652 5
770 KY Todd 0500000US21219 0.260343168698 12472 0.00986209108403 5
771 KY Trigg 0500000US21221 0.316482285394 14282 0.0240162442235 5
772 KY Trimble 0500000US21223 0.241590214067 8829 0.0231056744818 5
773 KY Union 0500000US21225 0.263607257204 14992 0.0102721451441 5
774 KY Warren 0500000US21227 0.231871830701 113787 0.0234736832854 5
775 KY Washington 0500000US21229 0.298692419451 11701 0.0233313392018 5
776 KY Wayne 0500000US21231 0.254046784188 20819 0.102454488688 5
777 KY Webster 0500000US21233 0.264870024967 13618 0.00866500220297 5
778 KY Whitley 0500000US21235 0.286161763061 35756 0.123112204945 5
779 KY Wolfe 0500000US21237 0.211290764593 7298 0.00685119210743 5
780 KY Woodford 0500000US21239 0.290497846823 24847 0.0410914798567 5
781 LA Acadia 0500000US22001 0.323497427407 61611 0.0294103325705 5
782 LA Allen 0500000US22003 0.252331002331 25740 0.0214063714064 5
783 LA Ascension 0500000US22005 0.314416565255 107647 0.0512601373006 5
784 LA Assumption 0500000US22007 0.260794991638 23321 0.0292869087946 5
785 LA Avoyelles 0500000US22009 0.25443053071 41925 0.0157185450209 5
786 LA Beauregard 0500000US22011 0.311564129886 35662 0.0443048623184 5
787 LA Bienville 0500000US22013 0.254401900503 14312 0.0518446059251 5
788 LA Bossier 0500000US22015 0.297141207046 117742 0.0534643542661 5
789 LA Caddo 0500000US22017 0.205428089579 254970 0.04128328823 5
790 LA Calcasieu 0500000US22019 0.269589770523 192307 0.0425049530178 5
791 LA Caldwell 0500000US22021 0.359754892271 10118 0.0419055149239 5
792 LA Cameron 0500000US22023 0.47014710124 6934 0.0341794058264 5
793 LA Catahoula 0500000US22025 0.263618022865 10409 0.0272840810837 5
794 LA Claiborne 0500000US22027 0.213904683745 17059 0.0375754733572 5
795 LA Concordia 0500000US22029 0.264255236618 20624 0.0692882079131 5
796 LA DeSoto 0500000US22031 0.275444839858 26695 0.036973215958 5
797 LA East Baton Rouge 0500000US22033 0.209786153909 439662 0.0433628560121 5
798 LA East Carroll 0500000US22035 0.144998707676 7738 0.0220987335229 5
799 LA East Feliciana 0500000US22037 0.266492198301 20252 0.0661663045625 5
800 LA Evangeline 0500000US22039 0.299390979435 33989 0.0233899202683 5
801 LA Franklin 0500000US22041 0.303852466931 20714 0.0451385536352 5
802 LA Grant 0500000US22043 0.32119370493 22049 0.0414531271259 5
803 LA Iberia 0500000US22045 0.284113318917 73527 0.0402301195479 5
804 LA Iberville 0500000US22047 0.217785898281 33386 0.0395375307015 5
805 LA Jackson 0500000US22049 0.316594694633 16210 0.0529302899445 5
806 LA Jefferson 0500000US22051 0.236476961262 432706 0.0431794336108 5
807 LA Jeff Davis 0500000US22053 0.317612356878 31529 0.0280693964287 5
808 LA Lafayette 0500000US22055 0.293269013818 221602 0.042025793991 5
809 LA Lafourche 0500000US22057 0.293738919474 96453 0.0344001741781 5
810 LA LaSalle 0500000US22059 0.385849056604 14840 0.0433288409704 5
811 LA Lincoln 0500000US22061 0.230560986615 46543 0.0434222117182 5
812 LA Livingston 0500000US22063 0.354842735896 128192 0.0466019720419 5
813 LA Madison 0500000US22065 0.165111863287 12113 0.0296375794601 5
814 LA Morehouse 0500000US22067 0.236295844836 27893 0.0386476893844 5
815 LA Natchitoches 0500000US22069 0.230182076381 39434 0.0552315260942 5
816 LA Orleans 0500000US22071 0.0819168909835 341407 0.0229022837845 5
817 LA Ouachita 0500000US22073 0.266188407305 153752 0.0563830063999 5
818 LA Plaquemines 0500000US22075 0.278596037898 23220 0.0289405684755 5
819 LA Pointe Coupee 0500000US22077 0.286928706016 22821 0.0259848385259 5
820 LA Rapides 0500000US22079 0.282457939311 131655 0.0404770042915 5
821 LA Red River 0500000US22081 0.273820026467 9068 0.049294221438 5
822 LA Richland 0500000US22083 0.351984604282 20785 0.0379119557373 5
823 LA Sabine 0500000US22085 0.318771893674 24265 0.0413352565423 5
824 LA St. Bernard 0500000US22087 0.236375775447 35947 0.0169416084791 5
825 LA St. Charles 0500000US22089 0.302603345803 52663 0.070713783871 5
826 LA St. Helena 0500000US22091 0.248154150909 11106 0.0288132540969 5
827 LA St. James 0500000US22093 0.23700973701 21978 0.024388024388 5
828 LA St. John the Baptist 0500000US22095 0.166590148882 45741 0.0182986817079 5
829 LA St. Landry 0500000US22097 0.256344450546 83774 0.0234320911023 5
830 LA St. Martin 0500000US22099 0.299046672908 52343 0.0328792770762 5
831 LA St. Mary 0500000US22101 0.255742838722 54285 0.0306530349084 5
832 LA St. Tammany 0500000US22103 0.361571262106 234283 0.0744100084086 5
833 LA Tangipahoa 0500000US22105 0.260566459586 121209 0.0402362860844 5
834 LA Tensas 0500000US22107 0.237039892079 5189 0.0408556561958 5
835 LA Terrebonne 0500000US22109 0.264180681676 111666 0.0356867802196 5
836 LA Union 0500000US22111 0.334069721204 22633 0.0483806830734 5
837 LA Vermilion 0500000US22113 0.325786943712 58041 0.0277562412777 5
838 LA Vernon 0500000US22115 0.235652477591 51542 0.0263862481083 5
839 LA Washington 0500000US22117 0.243912812334 47025 0.03447102605 5
840 LA Webster 0500000US22119 0.276921955486 41156 0.0379531538536 5
841 LA West Baton Rouge 0500000US22121 0.291392959407 23748 0.0303183425973 5
842 LA West Carroll 0500000US22123 0.313109519289 11587 0.0399585742643 5
843 LA West Feliciana 0500000US22125 0.20911717496 15575 0.0539325842697 5
844 LA Winn 0500000US22127 0.297971509223 15233 0.0363027637366 5
845 MA Abington 0500000US25023 0.00817711497819 495407 0.0706429259175 1
846 MA Bridgewater 0500000US25023 0.0122909042464 495407 0.0706429259175 1
847 MA Brockton 0500000US25023 0.0174967249151 495407 0.0706429259175 1
848 MA Carver 0500000US25023 0.00627161101882 495407 0.0706429259175 1
849 MA Duxbury 0500000US25023 0.0107487379064 495407 0.0706429259175 1
850 MA East Bridgewater 0500000US25023 0.0078057031895 495407 0.0706429259175 1
851 MA Halifax 0500000US25023 0.00416828991112 495407 0.0706429259175 1
852 MA Hanover 0500000US25023 0.00991104283952 495407 0.0706429259175 1
853 MA Hanson 0500000US25023 0.0060536084472 495407 0.0706429259175 1
854 MA Hingham 0500000US25023 0.0145960795871 495407 0.0706429259175 1
855 MA Hull 0500000US25023 0.00487881681123 495407 0.0706429259175 1
856 MA Kingston 0500000US25023 0.00751705163633 495407 0.0706429259175 1
857 MA Lakeville 0500000US25023 0.00666320823081 495407 0.0706429259175 1
858 MA Marion 0500000US25023 0.00293899763225 495407 0.0706429259175 1
859 MA Marshfield 0500000US25023 0.0158778539665 495407 0.0706429259175 1
860 MA Mattapoisett 0500000US25023 0.00374439602186 495407 0.0706429259175 1
861 MA Middleborough 0500000US25023 0.0121697917066 495407 0.0706429259175 1
862 MA Norwell 0500000US25023 0.00743630994314 495407 0.0706429259175 1
863 MA Pembroke 0500000US25023 0.0102400652393 495407 0.0706429259175 1
864 MA Plymouth 0500000US25023 0.0287803765389 495407 0.0706429259175 1
865 MA Plympton 0500000US25023 0.00187320728209 495407 0.0706429259175 1
866 MA Rochester 0500000US25023 0.00343959613005 495407 0.0706429259175 1
867 MA Rockland 0500000US25023 0.00805196535374 495407 0.0706429259175 1
868 MA Scituate 0500000US25023 0.0114229310446 495407 0.0706429259175 1
869 MA Wareham 0500000US25023 0.00934988807183 495407 0.0706429259175 1
870 MA West Bridgewater 0500000US25023 0.00437821831343 495407 0.0706429259175 1
871 MA Whitman 0500000US25023 0.00737171658858 495407 0.0706429259175 1
872 MA Acton 0500000US25017 0.00255446224955 1507558 0.0605509041775 1
873 MA Arlington 0500000US25017 0.00441707715391 1507558 0.0605509041775 1
874 MA Ashby 0500000US25017 0.000637454744693 1507558 0.0605509041775 1
875 MA Ashland 0500000US25017 0.00225994621766 1507558 0.0605509041775 1
876 MA Ayer 0500000US25017 0.00103279608479 1507558 0.0605509041775 1
877 MA Bedford 0500000US25017 0.00202048611065 1507558 0.0605509041775 1
878 MA Belmont 0500000US25017 0.00313619774496 1507558 0.0605509041775 1
879 MA Billerica 0500000US25017 0.00658349463172 1507558 0.0605509041775 1
880 MA Boxborough 0500000US25017 0.000752209865226 1507558 0.0605509041775 1
881 MA Burlington 0500000US25017 0.00410398803893 1507558 0.0605509041775 1
882 MA Cambridge 0500000US25017 0.0035421522754 1507558 0.0605509041775 1
883 MA Carlisle 0500000US25017 0.000874261554116 1507558 0.0605509041775 1
884 MA Chelmsford 0500000US25017 0.00632413479282 1507558 0.0605509041775 1
885 MA Concord 0500000US25017 0.00232760530606 1507558 0.0605509041775 1
886 MA Dracut 0500000US25017 0.00532384160344 1507558 0.0605509041775 1
887 MA Dunstable 0500000US25017 0.000685877425611 1507558 0.0605509041775 1
888 MA Everett 0500000US25017 0.00237602798698 1507558 0.0605509041775 1
889 MA Framingham 0500000US25017 0.00592879345272 1507558 0.0605509041775 1
890 MA Groton 0500000US25017 0.00186128825558 1507558 0.0605509041775 1
891 MA Holliston 0500000US25017 0.00232296203529 1507558 0.0605509041775 1
892 MA Hopkinton 0500000US25017 0.00287484793288 1507558 0.0605509041775 1
893 MA Hudson 0500000US25017 0.00277468594906 1507558 0.0605509041775 1
894 MA Lexington 0500000US25017 0.00350699608241 1507558 0.0605509041775 1
895 MA Lincoln 0500000US25017 0.00069980723793 1507558 0.0605509041775 1
896 MA Littleton 0500000US25017 0.00156345560171 1507558 0.0605509041775 1
897 MA Lowell 0500000US25017 0.00702195205757 1507558 0.0605509041775 1
898 MA Malden 0500000US25017 0.00379023559956 1507558 0.0605509041775 1
899 MA Marlborough 0500000US25017 0.00455504862831 1507558 0.0605509041775 1
900 MA Maynard 0500000US25017 0.0013419052534 1507558 0.0605509041775 1
901 MA Medford 0500000US25017 0.00550161254161 1507558 0.0605509041775 1
902 MA Melrose 0500000US25017 0.0039374936155 1507558 0.0605509041775 1
903 MA Natick 0500000US25017 0.00448208294474 1507558 0.0605509041775 1
904 MA Newton 0500000US25017 0.00806204471072 1507558 0.0605509041775 1
905 MA North Reading 0500000US25017 0.0030784885225 1507558 0.0605509041775 1
906 MA Pepperell 0500000US25017 0.00227254938118 1507558 0.0605509041775 1
907 MA Reading 0500000US25017 0.00440447399039 1507558 0.0605509041775 1
908 MA Sherborn 0500000US25017 0.000782059463052 1507558 0.0605509041775 1
909 MA Shirley 0500000US25017 0.000983046755083 1507558 0.0605509041775 1
910 MA Somerville 0500000US25017 0.00322707318723 1507558 0.0605509041775 1
911 MA Stoneham 0500000US25017 0.00370135013048 1507558 0.0605509041775 1
912 MA Stow 0500000US25017 0.00121454696934 1507558 0.0605509041775 1
913 MA Sudbury 0500000US25017 0.00287949120366 1507558 0.0605509041775 1
914 MA Tewksbury 0500000US25017 0.00552681886866 1507558 0.0605509041775 1
915 MA Townsend 0500000US25017 0.00180755897949 1507558 0.0605509041775 1
916 MA Tyngsborough 0500000US25017 0.00222943329544 1507558 0.0605509041775 1
917 MA Wakefield 0500000US25017 0.00451458584015 1507558 0.0605509041775 1
918 MA Waltham 0500000US25017 0.00584786787639 1507558 0.0605509041775 1
919 MA Watertown 0500000US25017 0.00299557297298 1507558 0.0605509041775 1
920 MA Wayland 0500000US25017 0.00197339007852 1507558 0.0605509041775 1
921 MA Westford 0500000US25017 0.00417562707372 1507558 0.0605509041775 1
922 MA Weston 0500000US25017 0.00209544176741 1507558 0.0605509041775 1
923 MA Wilmington 0500000US25017 0.00426981913797 1507558 0.0605509041775 1
924 MA Winchester 0500000US25017 0.00371594326719 1507558 0.0605509041775 1
925 MA Woburn 0500000US25017 0.00577556551721 1507558 0.0605509041775 1
926 MA Acushnet 0500000US25005 0.00397821186393 548739 0.0453895203366 1
927 MA Attleboro 0500000US25005 0.0153187580981 548739 0.0453895203366 1
928 MA Berkley 0500000US25005 0.00307249894759 548739 0.0453895203366 1
929 MA Dartmouth 0500000US25005 0.0108685549961 548739 0.0453895203366 1
930 MA Dighton 0500000US25005 0.00335678710644 548739 0.0453895203366 1
931 MA Easton 0500000US25005 0.0112293822746 548739 0.0453895203366 1
932 MA Fairhaven 0500000US25005 0.00561651349731 548739 0.0453895203366 1
933 MA Fall River 0500000US25005 0.0133451422261 548739 0.0453895203366 1
934 MA Freetown 0500000US25005 0.0040839087435 548739 0.0453895203366 1
935 MA Mansfield 0500000US25005 0.0106699177569 548739 0.0453895203366 1
936 MA New Bedford 0500000US25005 0.0137424167045 548739 0.0453895203366 1
937 MA North Attleborough 0500000US25005 0.013359721106 548739 0.0453895203366 1
938 MA Norton 0500000US25005 0.00810767960724 548739 0.0453895203366 1
939 MA Raynham 0500000US25005 0.00666437049308 548739 0.0453895203366 1
940 MA Rehoboth 0500000US25005 0.0059153805361 548739 0.0453895203366 1
941 MA Seekonk 0500000US25005 0.0061632214951 548739 0.0453895203366 1
942 MA Somerset 0500000US25005 0.00669535061295 548739 0.0453895203366 1
943 MA Swansea 0500000US25005 0.00595729481593 548739 0.0453895203366 1
944 MA Taunton 0500000US25005 0.0160057878153 548739 0.0453895203366 1
945 MA Westport 0500000US25005 0.00614499789517 548739 0.0453895203366 1
946 MA Adams 0500000US25003 0.00625066862287 130866 0.0302599605704 1
947 MA Alford 0500000US25003 0.000489049867804 130866 0.0302599605704 1
948 MA Becket 0500000US25003 0.00197912368377 130866 0.0302599605704 1
949 MA Cheshire 0500000US25003 0.00376721226293 130866 0.0302599605704 1
950 MA Clarksburg 0500000US25003 0.00177280577079 130866 0.0302599605704 1
951 MA Dalton 0500000US25003 0.00678556691578 130866 0.0302599605704 1
952 MA Egremont 0500000US25003 0.00115385203185 130866 0.0302599605704 1
953 MA Florida 0500000US25003 0.000970458331423 130866 0.0302599605704 1
954 MA Great Barrington 0500000US25003 0.00454663548974 130866 0.0302599605704 1
955 MA Hancock 0500000US25003 0.00108507939419 130866 0.0302599605704 1
956 MA Hinsdale 0500000US25003 0.00226949704278 130866 0.0302599605704 1
957 MA Lanesborough 0500000US25003 0.00328580379931 130866 0.0302599605704 1
958 MA Lee 0500000US25003 0.0054483211835 130866 0.0302599605704 1
959 MA Lenox 0500000US25003 0.00515794782449 130866 0.0302599605704 1
960 MA Monterey 0500000US25003 0.00074121620589 130866 0.0302599605704 1
961 MA Mount Washington 0500000US25003 0.000145186679504 130866 0.0302599605704 1
962 MA New Ashford 0500000US25003 0.000305656167377 130866 0.0302599605704 1
963 MA New Marlborough 0500000US25003 0.00183393700426 130866 0.0302599605704 1
964 MA North Adams 0500000US25003 0.00874176638699 130866 0.0302599605704 1
965 MA Otis 0500000US25003 0.00237647670136 130866 0.0302599605704 1
966 MA Peru 0500000US25003 0.00103923096908 130866 0.0302599605704 1
967 MA Pittsfield 0500000US25003 0.0309018385218 130866 0.0302599605704 1
968 MA Richmond 0500000US25003 0.00172695734568 130866 0.0302599605704 1
969 MA Sandisfield 0500000US25003 0.0011767762444 130866 0.0302599605704 1
970 MA Savoy 0500000US25003 0.000787064630997 130866 0.0302599605704 1
971 MA Sheffield 0500000US25003 0.00384362630477 130866 0.0302599605704 1
972 MA Stockbridge 0500000US25003 0.00172695734568 130866 0.0302599605704 1
973 MA Tyringham 0500000US25003 0.000649519355677 130866 0.0302599605704 1
974 MA Washington 0500000US25003 0.000527256888726 130866 0.0302599605704 1
975 MA West Stockbridge 0500000US25003 0.00123026607369 130866 0.0302599605704 1
976 MA Williamstown 0500000US25003 0.00489049867804 130866 0.0302599605704 1
977 MA Windsor 0500000US25003 0.000970458331423 130866 0.0302599605704 1
978 MA Agawam 0500000US25013 0.0148037373511 464072 0.0415689806754 1
979 MA Blandford 0500000US25013 0.000749883638746 464072 0.0415689806754 1
980 MA Brimfield 0500000US25013 0.00235739281836 464072 0.0415689806754 1
981 MA Chester 0500000US25013 0.000657225602924 464072 0.0415689806754 1
982 MA Chicopee 0500000US25013 0.017749400955 464072 0.0415689806754 1
983 MA East Longmeadow 0500000US25013 0.00974633246565 464072 0.0415689806754 1
984 MA Granville 0500000US25013 0.00108172869727 464072 0.0415689806754 1
985 MA Hampden 0500000US25013 0.00338094088848 464072 0.0415689806754 1
986 MA Holland 0500000US25013 0.00148683824924 464072 0.0415689806754 1
987 MA Holyoke 0500000US25013 0.00784145563619 464072 0.0415689806754 1
988 MA Longmeadow 0500000US25013 0.00789101691117 464072 0.0415689806754 1
989 MA Ludlow 0500000US25013 0.00925502939199 464072 0.0415689806754 1
990 MA Monson 0500000US25013 0.0043786309021 464072 0.0415689806754 1
991 MA Montgomery 0500000US25013 0.00059042562361 464072 0.0415689806754 1
992 MA Palmer 0500000US25013 0.00534830802117 464072 0.0415689806754 1
993 MA Russell 0500000US25013 0.000831767484356 464072 0.0415689806754 1
994 MA Southwick 0500000US25013 0.00596890137737 464072 0.0415689806754 1
995 MA Springfield 0500000US25013 0.0223499801755 464072 0.0415689806754 1
996 MA Tolland 0500000US25013 0.000333999896568 464072 0.0415689806754 1
997 MA Wales 0500000US25013 0.00093519971039 464072 0.0415689806754 1
998 MA Westfield 0500000US25013 0.0176222655105 464072 0.0415689806754 1
999 MA West Springfield 0500000US25013 0.011138357841 464072 0.0415689806754 1
1000 MA Wilbraham 0500000US25013 0.00933475839956 464072 0.0415689806754 1
1001 MA Amesbury 0500000US25009 0.00462574550883 744961 0.0663981067465 1
1002 MA Andover 0500000US25009 0.0121523140138 744961 0.0663981067465 1
1003 MA Beverly 0500000US25009 0.0111468922534 744961 0.0663981067465 1
1004 MA Boxford 0500000US25009 0.00407001171873 744961 0.0663981067465 1
1005 MA Danvers 0500000US25009 0.00937498741545 744961 0.0663981067465 1
1006 MA Essex 0500000US25009 0.00129134276828 744961 0.0663981067465 1
1007 MA Georgetown 0500000US25009 0.00345924149049 744961 0.0663981067465 1
1008 MA Gloucester 0500000US25009 0.00739770269853 744961 0.0663981067465 1
1009 MA Groveland 0500000US25009 0.00279209247195 744961 0.0663981067465 1
1010 MA Hamilton 0500000US25009 0.00295854413855 744961 0.0663981067465 1
1011 MA Haverhill 0500000US25009 0.0157833765794 744961 0.0663981067465 1
1012 MA Ipswich 0500000US25009 0.00502308174522 744961 0.0663981067465 1
1013 MA Lawrence 0500000US25009 0.00464319608678 744961 0.0663981067465 1
1014 MA Lynn 0500000US25009 0.0113603262453 744961 0.0663981067465 1
1015 MA Lynnfield 0500000US25009 0.00593185415075 744961 0.0663981067465 1
1016 MA Manchester 0500000US25009 0.00206587995882 744961 0.0663981067465 1
1017 MA Marblehead 0500000US25009 0.00727823335718 744961 0.0663981067465 1
1018 MA Merrimac 0500000US25009 0.00222427751251 744961 0.0663981067465 1
1019 MA Methuen 0500000US25009 0.013649036661 744961 0.0663981067465 1
1020 MA Middleton 0500000US25009 0.00355857554959 744961 0.0663981067465 1
1021 MA Nahant 0500000US25009 0.00120408987853 744961 0.0663981067465 1
1022 MA Newbury 0500000US25009 0.00281893951495 744961 0.0663981067465 1
1023 MA Newburyport 0500000US25009 0.00544860737676 744961 0.0663981067465 1
1024 MA North Andover 0500000US25009 0.0107280783826 744961 0.0663981067465 1
1025 MA Peabody 0500000US25009 0.0155927625741 744961 0.0663981067465 1
1026 MA Rockport 0500000US25009 0.00224172809046 744961 0.0663981067465 1
1027 MA Rowley 0500000US25009 0.00259745141021 744961 0.0663981067465 1
1028 MA Salem 0500000US25009 0.00756415436513 744961 0.0663981067465 1
1029 MA Salisbury 0500000US25009 0.00260147846666 744961 0.0663981067465 1
1030 MA Saugus 0500000US25009 0.00880180304741 744961 0.0663981067465 1
1031 MA Swampscott 0500000US25009 0.00429821158423 744961 0.0663981067465 1
1032 MA Topsfield 0500000US25009 0.00290485005255 744961 0.0663981067465 1
1033 MA Wenham 0500000US25009 0.00169807546972 744961 0.0663981067465 1
1034 MA West Newbury 0500000US25009 0.00180814834602 744961 0.0663981067465 1
1035 MA Amherst 0500000US25015 0.0117847025496 158850 0.0374756059175 1
1036 MA Belchertown 0500000US25015 0.0181680830973 158850 0.0374756059175 1
1037 MA Chesterfield 0500000US25015 0.00143531633617 158850 0.0374756059175 1
1038 MA Cummington 0500000US25015 0.000875039345294 158850 0.0374756059175 1
1039 MA Easthampton 0500000US25015 0.0155051935788 158850 0.0374756059175 1
1040 MA Goshen 0500000US25015 0.00124645892351 158850 0.0374756059175 1
1041 MA Granby 0500000US25015 0.00988353792886 158850 0.0374756059175 1
1042 MA Hadley 0500000US25015 0.00557758892037 158850 0.0374756059175 1
1043 MA Hatfield 0500000US25015 0.00401636764243 158850 0.0374756059175 1
1044 MA Huntington 0500000US25015 0.00301542335537 158850 0.0374756059175 1
1045 MA Middlefield 0500000US25015 0.000484734025811 158850 0.0374756059175 1
1046 MA Northampton 0500000US25015 0.0137173434057 158850 0.0374756059175 1
1047 MA Pelham 0500000US25015 0.000830972615675 158850 0.0374756059175 1
1048 MA Plainfield 0500000US25015 0.000522505508341 158850 0.0374756059175 1
1049 MA Southampton 0500000US25015 0.0099716713881 158850 0.0374756059175 1
1050 MA South Hadley 0500000US25015 0.0204721435316 158850 0.0374756059175 1
1051 MA Ware 0500000US25015 0.0112244255587 158850 0.0374756059175 1
1052 MA Westhampton 0500000US25015 0.00242367012905 158850 0.0374756059175 1
1053 MA Williamsburg 0500000US25015 0.00203966005666 158850 0.0374756059175 1
1054 MA Worthington 0500000US25015 0.0013094113944 158850 0.0374756059175 1
1055 MA Aquinnah 0500000US25007 0.0022917797479 16581 0.0581991435981 1
1056 MA Chilmark 0500000US25007 0.00765936915747 16581 0.0581991435981 1
1057 MA Edgartown 0500000US25007 0.0498763645136 16581 0.0581991435981 1
1058 MA Gosnold 0500000US25007 0.00217115976117 16581 0.0581991435981 1
1059 MA Oak Bluffs 0500000US25007 0.0479464447259 16581 0.0581991435981 1
1060 MA Tisbury 0500000US25007 0.0358844460527 16581 0.0581991435981 1
1061 MA West Tisbury 0500000US25007 0.0223750075387 16581 0.0581991435981 1
1062 MA Ashburnham 0500000US25027 0.00191297885464 799277 0.0603095047149 1
1063 MA Athol 0500000US25027 0.00258984056841 799277 0.0603095047149 1
1064 MA Auburn 0500000US25027 0.0051496539998 799277 0.0603095047149 1
1065 MA Barre 0500000US25027 0.0016001961773 799277 0.0603095047149 1
1066 MA Berlin 0500000US25027 0.00103843848878 799277 0.0603095047149 1
1067 MA Blackstone 0500000US25027 0.00253604194791 799277 0.0603095047149 1
1068 MA Bolton 0500000US25027 0.00182289744356 799277 0.0603095047149 1
1069 MA Boylston 0500000US25027 0.00167776628128 799277 0.0603095047149 1
1070 MA Brookfield 0500000US25027 0.0010672144951 799277 0.0603095047149 1
1071 MA Charlton 0500000US25027 0.00457913839633 799277 0.0603095047149 1
1072 MA Clinton 0500000US25027 0.00306652136869 799277 0.0603095047149 1
1073 MA Douglas 0500000US25027 0.00318037426324 799277 0.0603095047149 1
1074 MA Dudley 0500000US25027 0.00318287652466 799277 0.0603095047149 1
1075 MA East Brookfield 0500000US25027 0.000828248529609 799277 0.0603095047149 1
1076 MA Fitchburg 0500000US25027 0.00697380257408 799277 0.0603095047149 1
1077 MA Gardner 0500000US25027 0.00415750734727 799277 0.0603095047149 1
1078 MA Grafton 0500000US25027 0.00553875565042 799277 0.0603095047149 1
1079 MA Hardwick 0500000US25027 0.000699382066543 799277 0.0603095047149 1
1080 MA Harvard 0500000US25027 0.00170404002617 799277 0.0603095047149 1
1081 MA Holden 0500000US25027 0.00662348597545 799277 0.0603095047149 1
1082 MA Hopedale 0500000US25027 0.00191047659322 799277 0.0603095047149 1
1083 MA Hubbardston 0500000US25027 0.00172781150965 799277 0.0603095047149 1
1084 MA Lancaster 0500000US25027 0.00239466417775 799277 0.0603095047149 1
1085 MA Leicester 0500000US25027 0.00333676560191 799277 0.0603095047149 1
1086 MA Leominster 0500000US25027 0.0106846562581 799277 0.0603095047149 1
1087 MA Lunenburg 0500000US25027 0.00380093509509 799277 0.0603095047149 1
1088 MA Mendon 0500000US25027 0.00230208050526 799277 0.0603095047149 1
1089 MA Milford 0500000US25027 0.00688622342442 799277 0.0603095047149 1
1090 MA Millbury 0500000US25027 0.00408118837399 799277 0.0603095047149 1
1091 MA Millville 0500000US25027 0.00101716926672 799277 0.0603095047149 1
1092 MA New Braintree 0500000US25027 0.00032154059231 799277 0.0603095047149 1
1093 MA Northborough 0500000US25027 0.00484437810671 799277 0.0603095047149 1
1094 MA Northbridge 0500000US25027 0.00509460424859 799277 0.0603095047149 1
1095 MA North Brookfield 0500000US25027 0.00159018713162 799277 0.0603095047149 1
1096 MA Oakham 0500000US25027 0.000761938602012 799277 0.0603095047149 1
1097 MA Oxford 0500000US25027 0.00407993724328 799277 0.0603095047149 1
1098 MA Paxton 0500000US25027 0.0016940309805 799277 0.0603095047149 1
1099 MA Petersham 0500000US25027 0.00042288217977 799277 0.0603095047149 1
1100 MA Phillipston 0500000US25027 0.000586780302699 799277 0.0603095047149 1
1101 MA Princeton 0500000US25027 0.00143629805437 799277 0.0603095047149 1
1102 MA Royalston 0500000US25027 0.000334051899404 799277 0.0603095047149 1
1103 MA Rutland 0500000US25027 0.00291388342214 799277 0.0603095047149 1
1104 MA Shrewsbury 0500000US25027 0.0102017198043 799277 0.0603095047149 1
1105 MA Southborough 0500000US25027 0.00348064563349 799277 0.0603095047149 1
1106 MA Southbridge 0500000US25027 0.00286634045519 799277 0.0603095047149 1
1107 MA Spencer 0500000US25027 0.00348439902562 799277 0.0603095047149 1
1108 MA Sterling 0500000US25027 0.00333676560191 799277 0.0603095047149 1
1109 MA Sturbridge 0500000US25027 0.00327170680503 799277 0.0603095047149 1
1110 MA Sutton 0500000US25027 0.00386224049985 799277 0.0603095047149 1
1111 MA Templeton 0500000US25027 0.00231584294306 799277 0.0603095047149 1
1112 MA Upton 0500000US25027 0.0026674106724 799277 0.0603095047149 1
1113 MA Uxbridge 0500000US25027 0.00466421528456 799277 0.0603095047149 1
1114 MA Warren 0500000US25027 0.0012536329708 799277 0.0603095047149 1
1115 MA Webster 0500000US25027 0.00389226763688 799277 0.0603095047149 1
1116 MA Westborough 0500000US25027 0.00477681704841 799277 0.0603095047149 1
1117 MA West Boylston 0500000US25027 0.00260610526764 799277 0.0603095047149 1
1118 MA West Brookfield 0500000US25027 0.00118857417391 799277 0.0603095047149 1
1119 MA Westminster 0500000US25027 0.00280878844255 799277 0.0603095047149 1
1120 MA Winchendon 0500000US25027 0.00241843566123 799277 0.0603095047149 1
1121 MA Worcester 0500000US25027 0.0214631473194 799277 0.0603095047149 1
1122 MA Ashfield 0500000US25011 0.00261578704416 71489 0.0479654212536 1
1123 MA Bernardston 0500000US25011 0.0046021066178 71489 0.0479654212536 1
1124 MA Buckland 0500000US25011 0.00352501783491 71489 0.0479654212536 1
1125 MA Charlemont 0500000US25011 0.00232203555792 71489 0.0479654212536 1
1126 MA Colrain 0500000US25011 0.00324525451468 71489 0.0479654212536 1
1127 MA Conway 0500000US25011 0.00402859181133 71489 0.0479654212536 1
1128 MA Deerfield 0500000US25011 0.0117360712837 71489 0.0479654212536 1
1129 MA Erving 0500000US25011 0.00279763320231 71489 0.0479654212536 1
1130 MA Gill 0500000US25011 0.00296549119445 71489 0.0479654212536 1
1131 MA Greenfield 0500000US25011 0.0264516219278 71489 0.0479654212536 1
1132 MA Hawley 0500000US25011 0.000909230790751 71489 0.0479654212536 1
1133 MA Heath 0500000US25011 0.00173453258543 71489 0.0479654212536 1
1134 MA Leverett 0500000US25011 0.00255983438011 71489 0.0479654212536 1
1135 MA Leyden 0500000US25011 0.00160863909133 71489 0.0479654212536 1
1136 MA Monroe 0500000US25011 0.000293751486243 71489 0.0479654212536 1
1137 MA Montague 0500000US25011 0.0122116689281 71489 0.0479654212536 1
1138 MA New Salem 0500000US25011 0.00286757403237 71489 0.0479654212536 1
1139 MA Northfield 0500000US25011 0.00661640252347 71489 0.0479654212536 1
1140 MA Orange 0500000US25011 0.0185343199653 71489 0.0479654212536 1
1141 MA Rowe 0500000US25011 0.00128691127306 71489 0.0479654212536 1
1142 MA Shelburne 0500000US25011 0.00316132551861 71489 0.0479654212536 1
1143 MA Shutesbury 0500000US25011 0.0021821538978 71489 0.0479654212536 1
1144 MA Sunderland 0500000US25011 0.00565121906867 71489 0.0479654212536 1
1145 MA Warwick 0500000US25011 0.00152471009526 71489 0.0479654212536 1
1146 MA Wendell 0500000US25011 0.000979171620809 71489 0.0479654212536 1
1147 MA Whately 0500000US25011 0.00421043796948 71489 0.0479654212536 1
1148 MA Avon 0500000US25021 0.0016828403846 672078 0.0706168034067 1
1149 MA Bellingham 0500000US25021 0.0016649853142 672078 0.0706168034067 1
1150 MA Braintree 0500000US25021 0.0137141819848 672078 0.0706168034067 1
1151 MA Brookline 0500000US25021 0.00850645312002 672078 0.0706168034067 1
1152 MA Canton 0500000US25021 0.00855853040867 672078 0.0706168034067 1
1153 MA Cohasset 0500000US25021 0.00386115897262 672078 0.0706168034067 1
1154 MA Dedham 0500000US25021 0.00850942896509 672078 0.0706168034067 1
1155 MA Dover 0500000US25021 0.00298179675573 672078 0.0706168034067 1
1156 MA Foxborough 0500000US25021 0.00713905231238 672078 0.0706168034067 1
1157 MA Franklin 0500000US25021 0.0127202497329 672078 0.0706168034067 1
1158 MA Holbrook 0500000US25021 0.00357398992379 672078 0.0706168034067 1
1159 MA Medfield 0500000US25021 0.00574933266674 672078 0.0706168034067 1
1160 MA Medway 0500000US25021 0.00523599939293 672078 0.0706168034067 1
1161 MA Millis 0500000US25021 0.00332104309321 672078 0.0706168034067 1
1162 MA Milton 0500000US25021 0.00910906174581 672078 0.0706168034067 1
1163 MA Needham 0500000US25021 0.00969083945613 672078 0.0706168034067 1
1164 MA Norfolk 0500000US25021 0.00475986418243 672078 0.0706168034067 1
1165 MA Norwood 0500000US25021 0.00936200857639 672078 0.0706168034067 1
1166 MA Plainville 0500000US25021 0.00337609622693 672078 0.0706168034067 1
1167 MA Quincy 0500000US25021 0.022045060246 672078 0.0706168034067 1
1168 MA Randolph 0500000US25021 0.00528212499144 672078 0.0706168034067 1
1169 MA Sharon 0500000US25021 0.00544430854752 672078 0.0706168034067 1
1170 MA Stoughton 0500000US25021 0.00831897488089 672078 0.0706168034067 1
1171 MA Walpole 0500000US25021 0.0110939504046 672078 0.0706168034067 1
1172 MA Wellesley 0500000US25021 0.00914179604153 672078 0.0706168034067 1
1173 MA Westwood 0500000US25021 0.00676855960171 672078 0.0706168034067 1
1174 MA Weymouth 0500000US25021 0.0183624519773 672078 0.0706168034067 1
1175 MA Wrentham 0500000US25021 0.00525980615345 672078 0.0706168034067 1
1176 MA Barnstable 0500000US25001 0.0568926169215 216021 0.106346142273 1
1177 MA Bourne 0500000US25001 0.0243124511043 216021 0.106346142273 1
1178 MA Brewster 0500000US25001 0.0127209854597 216021 0.106346142273 1
1179 MA Chatham 0500000US25001 0.0105452710616 216021 0.106346142273 1
1180 MA Dennis 0500000US25001 0.0196462380972 216021 0.106346142273 1
1181 MA Eastham 0500000US25001 0.00669379365895 216021 0.106346142273 1
1182 MA Falmouth 0500000US25001 0.0376352299082 216021 0.106346142273 1
1183 MA Harwich 0500000US25001 0.0166974507108 216021 0.106346142273 1
1184 MA Mashpee 0500000US25001 0.0187852106971 216021 0.106346142273 1
1185 MA Orleans 0500000US25001 0.00889728313451 216021 0.106346142273 1
1186 MA Provincetown 0500000US25001 0.000972127709806 216021 0.106346142273 1
1187 MA Sandwich 0500000US25001 0.0300526337717 216021 0.106346142273 1
1188 MA Truro 0500000US25001 0.00184704264863 216021 0.106346142273 1
1189 MA Wellfleet 0500000US25001 0.00286546215414 216021 0.106346142273 1
1190 MA Yarmouth 0500000US25001 0.0302100258771 216021 0.106346142273 1
1191 MA Boston 0500000US25025 0.0665657237661 724502 0.0192283803219 1
1192 MA Chelsea 0500000US25025 0.00208419024378 724502 0.0192283803219 1
1193 MA Revere 0500000US25025 0.00767423692412 724502 0.0192283803219 1
1194 MA Winthrop 0500000US25025 0.00493442392154 724502 0.0192283803219 1
1195 MA Nantucket 0500000US25019 0.214341769668 10194 0.0598391210516 1
1196 MD Allegany 0500000US24001 0.243258088285 74645 0.0855382142139 2
1197 MD Anne Arundel 0500000US24003 0.219444614679 538473 0.0573250655093 2
1198 MD Baltimore 0500000US24005 0.179218102408 807318 0.0397612836577 2
1199 MD Baltimore City 0500000US24510 0.0410879666927 620644 0.00668982540716 2
1200 MD Calvert 0500000US24009 0.252472570798 88774 0.0613242616081 2
1201 MD Caroline 0500000US24011 0.232919537439 32947 0.062555012596 2
1202 MD Carroll 0500000US24013 0.322632721272 167249 0.0831694060951 2
1203 MD Cecil 0500000US24015 0.234004885816 101109 0.0675310803193 2
1204 MD Charles 0500000US24017 0.160678961572 147107 0.0352668465811 2
1205 MD Dorchester 0500000US24019 0.230703101013 32570 0.0649677617439 2
1206 MD Frederick 0500000US24021 0.236886813393 234268 0.0783205559445 2
1207 MD Garrett 0500000US24023 0.302603145051 30079 0.114265766814 2
1208 MD Harford 0500000US24025 0.283199400153 245396 0.0740109863241 2
1209 MD Howard 0500000US24027 0.187386551012 288676 0.052103396195 2
1210 MD Kent 0500000US24029 0.224583828775 20184 0.0807570352755 2
1211 MD Montgomery 0500000US24031 0.113805158675 974824 0.0280307009265 2
1212 MD Prince George's 0500000US24033 0.0372479758921 865443 0.00930390562983 2
1213 MD Queen Anne's 0500000US24035 0.310665219025 47894 0.0925168079509 2
1214 MD St. Mary's 0500000US24037 0.237813660829 105528 0.0673091501782 2
1215 MD Somerset 0500000US24039 0.178244072419 26402 0.0493901977123 2
1216 MD Talbot 0500000US24041 0.276638584221 37746 0.0964075663646 2
1217 MD Washington 0500000US24043 0.230677161521 147882 0.0803816556444 2
1218 MD Wicomico 0500000US24045 0.203517283202 98940 0.0560137457045 2
1219 MD Worcester 0500000US24047 0.278882446788 51398 0.0784855441846 2
1220 MI Alcona 0500000US26001 0.326327332541 10943 0.143653477109 3
1221 MI Alger 0500000US26003 0.244360507817 9531 0.0936942608331 3
1222 MI Allegan 0500000US26005 0.260088359964 111589 0.121239548701 3
1223 MI Alpena 0500000US26007 0.246537396122 29602 0.100331058712 3
1224 MI Antrim 0500000US26009 0.33498349835 23634 0.162096978929 3
1225 MI Arenac 0500000US26011 0.254137412237 15952 0.0896439317954 3
1226 MI Baraga 0500000US26013 0.211852861035 8808 0.125113533152 3
1227 MI Barry 0500000US26015 0.28103427906 59249 0.128542253878 3
1228 MI Bay 0500000US26017 0.220517870913 107633 0.0950544907231 3
1229 MI Benzie 0500000US26019 0.288880027344 17554 0.155406175231 3
1230 MI Berrien 0500000US26021 0.243743580911 156759 0.114443189865 3
1231 MI Branch 0500000US26023 0.213156723063 44920 0.0961264470169 3
1232 MI Calhoun 0500000US26025 0.208271168503 136063 0.0880988953646 3
1233 MI Cass 0500000US26027 0.241547737159 52412 0.117129664962 3
1234 MI Charlevoix 0500000US26029 0.306904094869 26057 0.131097209963 3
1235 MI Cheboygan 0500000US26031 0.278068333651 26195 0.129604886429 3
1236 MI Chippewa 0500000US26033 0.21269816799 38919 0.0949407744289 3
1237 MI Clare 0500000US26035 0.225973354029 30924 0.0952011382745 3
1238 MI Clinton 0500000US26037 0.274065414353 75274 0.127759917103 3
1239 MI Crawford 0500000US26039 0.265174587435 14119 0.136482753736 3
1240 MI Delta 0500000US26041 0.25712744437 37075 0.0937019554956 3
1241 MI Dickinson 0500000US26043 0.292475081793 26286 0.122612797687 3
1242 MI Eaton 0500000US26045 0.242840322267 107861 0.118050082977 3
1243 MI Emmet 0500000US26047 0.312600993933 32799 0.135309003323 3
1244 MI Genesee 0500000US26049 0.168823779732 425337 0.0770424392893 3
1245 MI Gladwin 0500000US26051 0.2588203295 25736 0.104911408144 3
1246 MI Gogebic 0500000US26053 0.211327238142 16297 0.0843713566914 3
1247 MI Grand Traverse 0500000US26055 0.30328178046 87483 0.143902243865 3
1248 MI Gratiot 0500000US26057 0.194520547945 42340 0.0821209258385 3
1249 MI Hillsdale 0500000US26059 0.251560589485 46617 0.11171890083 3
1250 MI Houghton 0500000US26061 0.220159369096 36519 0.08748870451 3
1251 MI Huron 0500000US26063 0.263204145329 33001 0.121450865125 3
1252 MI Ingham 0500000US26065 0.161255922907 281323 0.0844118682084 3
1253 MI Ionia 0500000US26067 0.223214703269 64149 0.0820277790768 3
1254 MI Iosco 0500000US26069 0.26684698609 25880 0.1078438949 3
1255 MI Iron 0500000US26071 0.272366309031 11837 0.123764467348 3
1256 MI Isabella 0500000US26073 0.153876841535 70186 0.0627048129257 3
1257 MI Jackson 0500000US26075 0.226498686485 160257 0.102741221912 3
1258 MI Kalamazoo 0500000US26077 0.210048503414 250704 0.0943503095284 3
1259 MI Kalkaska 0500000US26079 0.284197086646 17231 0.134350879229 3
1260 MI Kent 0500000US26081 0.2607229481 605244 0.11992849165 3
1261 MI Keweenaw 0500000US26083 0.357011070111 2168 0.150830258303 3
1262 MI Lake 0500000US26085 0.215455254267 11543 0.103179416096 3
1263 MI Lapeer 0500000US26087 0.267697966737 88626 0.124331460294 3
1264 MI Leelanau 0500000US26089 0.345204594732 21677 0.183235687595 3
1265 MI Lenawee 0500000US26091 0.223783015279 99878 0.100843028495 3
1266 MI Livingston 0500000US26093 0.330254626317 181678 0.152280408195 3
1267 MI Luce 0500000US26095 0.227769347496 6590 0.132928679818 3
1268 MI Mackinac 0500000US26097 0.304737975592 11144 0.146536252692 3
1269 MI Macomb 0500000US26099 0.227967530284 841769 0.103868163356 3
1270 MI Manistee 0500000US26101 0.231729487335 24753 0.117884700844 3
1271 MI Marquette 0500000US26103 0.202581202179 67178 0.0730149751407 3
1272 MI Mason 0500000US26105 0.264369419643 28672 0.116455078125 3
1273 MI Mecosta 0500000US26107 0.213635411088 42947 0.100146692435 3
1274 MI Menominee 0500000US26109 0.231479555759 24041 0.0819849423901 3
1275 MI Midland 0500000US26111 0.285895108903 83744 0.122480416507 3
1276 MI Missaukee 0500000US26113 0.312144529943 14945 0.143994647039 3
1277 MI Monroe 0500000US26115 0.234250776602 151944 0.0968514715948 3
1278 MI Montcalm 0500000US26117 0.215035434127 63357 0.105497419385 3
1279 MI Montmorency 0500000US26119 0.301575857452 9709 0.147698012154 3
1280 MI Muskegon 0500000US26121 0.179802625833 171755 0.07713894792 3
1281 MI Newaygo 0500000US26123 0.256775975431 48517 0.124410000618 3
1282 MI Oakland 0500000US26125 0.245656314281 1207097 0.121899897026 3
1283 MI Oceana 0500000US26127 0.234231866647 26636 0.119349752215 3
1284 MI Ogemaw 0500000US26129 0.250853557258 21674 0.106579311618 3
1285 MI Ontonagon 0500000US26131 0.284350290915 6703 0.124421900642 3
1286 MI Osceola 0500000US26133 0.261432342672 23486 0.125734480116 3
1287 MI Oscoda 0500000US26135 0.265013204731 8709 0.132162131129 3
1288 MI Otsego 0500000US26137 0.289886246122 24175 0.122192347466 3
1289 MI Ottawa 0500000US26139 0.334181660279 264835 0.16344516397 3
1290 MI Presque Isle 0500000US26141 0.28381208857 13368 0.118940754039 3
1291 MI Roscommon 0500000US26143 0.274103161942 24447 0.141653372602 3
1292 MI Saginaw 0500000US26145 0.213561847243 200017 0.0865726413255 3
1293 MI St. Clair 0500000US26147 0.239762421922 162978 0.10940740468 3
1294 MI St. Joseph 0500000US26149 0.211615617967 61314 0.0851681508302 3
1295 MI Sanilac 0500000US26151 0.254339149805 43096 0.114836643772 3
1296 MI Schoolcraft 0500000US26153 0.253341218214 8455 0.092489651094 3
1297 MI Shiawassee 0500000US26155 0.226726513451 70402 0.101275531945 3
1298 MI Tuscola 0500000US26157 0.261022008055 55616 0.116441311853 3
1299 MI Van Buren 0500000US26159 0.21195288185 76149 0.0955626469159 3
1300 MI Washtenaw 0500000US26161 0.163003959423 346010 0.0863067541401 3
1301 MI Wayne 0500000US26163 0.117195957791 1822469 0.0649887597539 3
1302 MI Wexford 0500000US26165 0.243836789625 32694 0.113629412125 3
1303 MN Aitkin 0500000US27001 0.280403315601 16166 0.0115056290981 4
1304 MN Anoka 0500000US27003 0.281713498307 331649 0.00953116095631 4
1305 MN Becker 0500000US27005 0.282331288344 32600 0.00831288343558 4
1306 MN Beltrami 0500000US27007 0.215824599122 44652 0.0118247782854 4
1307 MN Benton 0500000US27009 0.28135373444 38560 0.00739107883817 4
1308 MN Big Stone 0500000US27011 0.26380952381 5250 0.00933333333333 4
1309 MN Blue Earth 0500000US27013 0.233095279024 63991 0.00818865152912 4
1310 MN Brown 0500000US27015 0.308008691603 25772 0.0102436753065 4
1311 MN Carlton 0500000US27017 0.186551099026 35304 0.00637321549966 4
1312 MN Carver 0500000US27019 0.341032236878 91355 0.0120737781183 4
1313 MN Cass 0500000US27021 0.314071320874 28519 0.013114064308 4
1314 MN Chippewa 0500000US27023 0.240691165734 12327 0.00949136042833 4
1315 MN Chisago 0500000US27025 0.303161080596 53526 0.0113963307551 4
1316 MN Clay 0500000US27027 0.219217130156 58937 0.00486960652901 4
1317 MN Clearwater 0500000US27029 0.272024907749 8672 0.0118773062731 4
1318 MN Cook 0500000US27031 0.234537072609 5206 0.0121014214368 4
1319 MN Cottonwood 0500000US27033 0.284269181312 11665 0.00960137162452 4
1320 MN Crow Wing 0500000US27035 0.310535660018 62521 0.0102205658899 4
1321 MN Dakota 0500000US27037 0.274166777237 399443 0.0107825146517 4
1322 MN Dodge 0500000US27039 0.275123312242 20071 0.0111105575208 4
1323 MN Douglas 0500000US27041 0.329167473111 36167 0.00837780296956 4
1324 MN Faribault 0500000US27043 0.282139419772 14546 0.00749346899491 4
1325 MN Fillmore 0500000US27045 0.235296934866 20880 0.00876436781609 4
1326 MN Freeborn 0500000US27047 0.223483391048 31188 0.00830447608054 4
1327 MN Goodhue 0500000US27049 0.281423370319 46144 0.00929698335645 4
1328 MN Grant 0500000US27051 0.290558510638 6016 0.0151263297872 4
1329 MN Hennepin 0500000US27053 0.207309943793 1158039 0.00911540975736 4
1330 MN Houston 0500000US27055 0.260565233409 19001 0.010420504184 4
1331 MN Hubbard 0500000US27057 0.32505399568 20372 0.0134498331043 4
1332 MN Isanti 0500000US27059 0.307204504789 38004 0.0103410167351 4
1333 MN Itasca 0500000US27061 0.233064014916 45052 0.00799076622569 4
1334 MN Jackson 0500000US27063 0.296310717415 10273 0.00807943151952 4
1335 MN Kanabec 0500000US27065 0.265702860658 16255 0.0110119963088 4
1336 MN Kandiyohi 0500000US27067 0.266642941874 42150 0.0100830367734 4
1337 MN Kittson 0500000US27069 0.240818121839 4547 0.00967670991863 4
1338 MN Koochiching 0500000US27071 0.21372150756 13293 0.00744752877454 4
1339 MN Lac Qui Parle 0500000US27073 0.267679558011 7240 0.00718232044199 4
1340 MN Lake 0500000US27075 0.240575168218 10849 0.00728177712232 4
1341 MN Lake of the Woods 0500000US27077 0.323347363209 4039 0.00817033919287 4
1342 MN Le Sueur 0500000US27079 0.278042099193 27744 0.00850634371396 4
1343 MN Lincoln 0500000US27081 0.271272974813 5876 0.00953029271613 4
1344 MN Lyon 0500000US27083 0.256475071945 25714 0.00805008944544 4
1345 MN McLeod 0500000US27085 0.303036110275 36527 0.0127303090864 4
1346 MN Mahnomen 0500000US27087 0.160051451672 5442 0.00459389930173 4
1347 MN Marshall 0500000US27089 0.251187335092 9475 0.00580474934037 4
1348 MN Martin 0500000US27091 0.321175278622 20727 0.0117238384716 4
1349 MN Meeker 0500000US27093 0.297179950133 23262 0.0100163356547 4
1350 MN Mille Lacs 0500000US27095 0.267305029995 26004 0.00596062144285 4
1351 MN Morrison 0500000US27097 0.306243028969 33173 0.00931480420824 4
1352 MN Mower 0500000US27099 0.177374408795 39115 0.00710724785888 4
1353 MN Murray 0500000US27101 0.288147295742 8690 0.0119677790564 4
1354 MN Nicollet 0500000US27103 0.251277188045 32689 0.00783138058674 4
1355 MN Nobles 0500000US27105 0.214576795166 21349 0.0067450466064 4
1356 MN Norman 0500000US27107 0.203649205415 6796 0.00676868746321 4
1357 MN Olmsted 0500000US27109 0.254880386417 144507 0.0104078003142 4
1358 MN Otter Tail 0500000US27111 0.328680225162 57381 0.0113975009149 4
1359 MN Pennington 0500000US27113 0.236845878136 13950 0.0118996415771 4
1360 MN Pine 0500000US27115 0.231531592477 29564 0.00936950345014 4
1361 MN Pipestone 0500000US27117 0.296560402685 9536 0.0178271812081 4
1362 MN Polk 0500000US27119 0.242315280341 31426 0.00719149748616 4
1363 MN Pope 0500000US27121 0.286208781199 10978 0.00883585352523 4
1364 MN Ramsey 0500000US27123 0.169899292404 510885 0.00644567759868 4
1365 MN Red Lake 0500000US27125 0.238536585366 4100 0.00609756097561 4
1366 MN Redwood 0500000US27127 0.285517930776 16006 0.010933399975 4
1367 MN Renville 0500000US27129 0.265061010669 15653 0.00696352136971 4
1368 MN Rice 0500000US27131 0.224088762837 64171 0.0106590204298 4
1369 MN Rock 0500000US27133 0.2920997921 9620 0.0177754677755 4
1370 MN Roseau 0500000US27135 0.281455473987 15665 0.0121289498883 4
1371 MN St. Louis 0500000US27137 0.198226330252 200150 0.00815888083937 4
1372 MN Scott 0500000US27139 0.308526348813 130689 0.00961060226951 4
1373 MN Sherburne 0500000US27141 0.314460579507 88558 0.0107951850764 4
1374 MN Sibley 0500000US27143 0.308973599315 15189 0.0100730792021 4
1375 MN Stearns 0500000US27145 0.286180949656 150307 0.0081832516117 4
1376 MN Steele 0500000US27147 0.27113678677 36524 0.00862446610448 4
1377 MN Stevens 0500000US27149 0.284802306425 9712 0.0103995057661 4
1378 MN Swift 0500000US27151 0.230233510856 9764 0.0103441212618 4
1379 MN Todd 0500000US27153 0.271113263124 24783 0.00936125569947 4
1380 MN Traverse 0500000US27155 0.242321780783 3549 0.0140884756269 4
1381 MN Wabasha 0500000US27157 0.279580329081 21636 0.00989092253651 4
1382 MN Wadena 0500000US27159 0.300043453071 13808 0.0139049826188 4
1383 MN Waseca 0500000US27161 0.268007753156 19089 0.01100110011 4
1384 MN Washington 0500000US27163 0.289614235865 238721 0.00835703603789 4
1385 MN Watonwan 0500000US27165 0.225194596045 11177 0.0073364945871 4
1386 MN Wilkin 0500000US27167 0.286148238153 6584 0.00987241798299 4
1387 MN Winona 0500000US27169 0.222994891319 51481 0.0079252539772 4
1388 MN Wright 0500000US27171 0.332379326102 124737 0.0109430241228 4
1389 MN Yellow Medicine 0500000US27173 0.270927874867 10357 0.010041517814 4
1390 MO Adair 0500000US29001 0.221125988568 25542 0.0315558687652 4
1391 MO Andrew 0500000US29003 0.317175239756 17205 0.0486486486486 4
1392 MO Atchison 0500000US29005 0.335805084746 5664 0.0617937853107 4
1393 MO Audrain 0500000US29007 0.24148026701 25617 0.0345473708865 4
1394 MO Barry 0500000US29009 0.275560538117 35680 0.11014573991 4
1395 MO Barton 0500000US29011 0.355326681687 12428 0.0724975860959 4
1396 MO Bates 0500000US29013 0.295242016115 17003 0.0309357172264 4
1397 MO Benton 0500000US29015 0.319068398086 19021 0.0550444245834 4
1398 MO Bollinger 0500000US29017 0.330454435386 12389 0.0330131568327 4
1399 MO Boone 0500000US29019 0.228724902919 163266 0.040326828611 4
1400 MO Buchanan 0500000US29021 0.209281981113 89162 0.0470604068998 4
1401 MO Butler 0500000US29023 0.286221723687 42792 0.0226911572256 4
1402 MO Caldwell 0500000US29025 0.292840249409 9302 0.0471941517953 4
1403 MO Callaway 0500000US29027 0.265914803995 44157 0.0430282854361 4
1404 MO Camden 0500000US29029 0.345041275068 43731 0.0624271112026 4
1405 MO Cape Girardeau 0500000US29031 0.334826265028 75690 0.0485136741974 4
1406 MO Carroll 0500000US29033 0.331070158422 9279 0.0506520099149 4
1407 MO Carter 0500000US29035 0.317751004016 6225 0.034859437751 4
1408 MO Cass 0500000US29037 0.311004688412 99394 0.0389460128378 4
1409 MO Cedar 0500000US29039 0.313822537838 13941 0.0639839322861 4
1410 MO Chariton 0500000US29041 0.309575976286 7759 0.044593375435 4
1411 MO Christian 0500000US29043 0.354506027829 77474 0.0888427085216 4
1412 MO Clark 0500000US29045 0.244281276476 7082 0.0412312905959 4
1413 MO Clay 0500000US29047 0.252787685545 222048 0.0277957919009 4
1414 MO Clinton 0500000US29049 0.2853966259 20687 0.0378015178615 4
1415 MO Cole 0500000US29051 0.32300528933 75813 0.0970018334586 4
1416 MO Cooper 0500000US29053 0.278588530384 17542 0.042982556151 4
1417 MO Crawford 0500000US29055 0.259928089525 24753 0.0252898638549 4
1418 MO Dade 0500000US29057 0.370631161183 7811 0.10139546793 4
1419 MO Dallas 0500000US29059 0.296701337296 16825 0.0563447251114 4
1420 MO Daviess 0500000US29061 0.273588298765 8341 0.0486752187987 4
1421 MO DeKalb 0500000US29063 0.237303929182 12878 0.0389035564529 4
1422 MO Dent 0500000US29065 0.3131131773 15595 0.0600833600513 4
1423 MO Douglas 0500000US29067 0.339590942294 13690 0.0769905040175 4
1424 MO Dunklin 0500000US29069 0.214232092587 31970 0.0246793869252 4
1425 MO Franklin 0500000US29071 0.288554810726 101440 0.0535883280757 4
1426 MO Gasconade 0500000US29073 0.322889182058 15160 0.0539577836412 4
1427 MO Gentry 0500000US29075 0.293223091688 6773 0.0485752251587 4
1428 MO Greene 0500000US29077 0.278542175274 275671 0.0755792230594 4
1429 MO Grundy 0500000US29079 0.295436817473 10256 0.0558697347894 4
1430 MO Harrison 0500000US29081 0.294798337265 8901 0.0419054038872 4
1431 MO Henry 0500000US29083 0.280156517046 22234 0.0369254295224 4
1432 MO Hickory 0500000US29085 0.296734352104 9554 0.0724303956458 4
1433 MO Holt 0500000US29087 0.356404958678 4840 0.0634297520661 4
1434 MO Howard 0500000US29089 0.296456692913 10160 0.0464566929134 4
1435 MO Howell 0500000US29091 0.286164145797 40330 0.0538308951153 4
1436 MO Iron 0500000US29093 0.213197008426 10563 0.0332291962511 4
1437 MO Jackson 0500000US29095 0.181174046945 672784 0.0302325857928 4
1438 MO Jasper 0500000US29097 0.269071961405 116493 0.0329805224348 4
1439 MO Jefferson 0500000US29099 0.246871397991 218628 0.0379457343067 4
1440 MO Johnson 0500000US29101 0.240729552149 52964 0.0275092515671 4
1441 MO Knox 0500000US29103 0.293116030163 4111 0.046703964972 4
1442 MO LaClede 0500000US29105 0.307939279579 35507 0.0773650266145 4
1443 MO Lafayette 0500000US29107 0.294488851493 33278 0.0405973916702 4
1444 MO Lawrence 0500000US29109 0.296091703623 38559 0.0651987862756 4
1445 MO Lewis 0500000US29111 0.262373811624 10203 0.039694207586 4
1446 MO Lincoln 0500000US29113 0.272241959078 52637 0.0378441020575 4
1447 MO Linn 0500000US29115 0.262946005684 12668 0.0341806125671 4
1448 MO Livingston 0500000US29117 0.265861428192 15068 0.0398194850013 4
1449 MO McDonald 0500000US29119 0.247888550283 22970 0.0423595994776 4
1450 MO Macon 0500000US29121 0.302601081638 15532 0.0512490342519 4
1451 MO Madison 0500000US29123 0.261634506243 12334 0.0311334522458 4
1452 MO Maries 0500000US29125 0.346280087527 9140 0.0564551422319 4
1453 MO Marion 0500000US29127 0.276138382747 28703 0.0403442148904 4
1454 MO Mercer 0500000US29129 0.333510496944 3763 0.0608557002392 4
1455 MO Miller 0500000US29131 0.326283135928 24822 0.0483844976231 4
1456 MO Mississippi 0500000US29133 0.210526315789 14231 0.0204483170543 4
1457 MO Moniteau 0500000US29135 0.301725797139 15587 0.0442676589466 4
1458 MO Monroe 0500000US29137 0.288868859847 8876 0.0457413249211 4
1459 MO Montgomery 0500000US29139 0.286183400378 12181 0.0522945570971 4
1460 MO Morgan 0500000US29141 0.27994530983 20479 0.053322916158 4
1461 MO New Madrid 0500000US29143 0.228115015974 18780 0.0161874334398 4
1462 MO Newton 0500000US29145 0.311743320643 58314 0.0476043488699 4
1463 MO Nodaway 0500000US29147 0.239991418151 23305 0.0304226560824 4
1464 MO Oregon 0500000US29149 0.265135507579 10885 0.043729903537 4
1465 MO Osage 0500000US29151 0.384643140651 13857 0.0601861874865 4
1466 MO Ozark 0500000US29153 0.318444995864 9672 0.0752688172043 4
1467 MO Pemiscot 0500000US29155 0.196631671041 18288 0.0225831146107 4
1468 MO Perry 0500000US29157 0.298588433583 18986 0.0385020541452 4
1469 MO Pettis 0500000US29159 0.257825135572 42044 0.031300542289 4
1470 MO Phelps 0500000US29161 0.265320691578 44825 0.0427663134412 4
1471 MO Pike 0500000US29163 0.2463658878 18574 0.0361796059007 4
1472 MO Platte 0500000US29165 0.286009356124 89567 0.031931403307 4
1473 MO Polk 0500000US29167 0.298115031416 31035 0.0613178669244 4
1474 MO Pulaski 0500000US29169 0.176133281674 51620 0.0253583882216 4
1475 MO Putnam 0500000US29171 0.336213826367 4976 0.0747588424437 4
1476 MO Ralls 0500000US29173 0.31682682879 10198 0.0442243577172 4
1477 MO Randolph 0500000US29175 0.262604380022 25388 0.0427761146999 4
1478 MO Ray 0500000US29177 0.247843907437 23422 0.0332166339339 4
1479 MO Reynolds 0500000US29179 0.288386710566 6682 0.0297815025441 4
1480 MO Ripley 0500000US29181 0.266027007818 14070 0.0362473347548 4
1481 MO St. Charles 0500000US29183 0.306996215639 360695 0.0549744243752 4
1482 MO St. Clair 0500000US29185 0.311461879707 9693 0.0687093779016 4
1483 MO St. Francois 0500000US29187 0.20304693008 65246 0.0202464518898 4
1484 MO St. Louis County 0500000US29189 0.223292468476 999147 0.0364290740001 4
1485 MO St. Louis City 0500000US29510 0.0710049697514 318527 0.012143397577 4
1486 MO Ste. Genevieve 0500000US29186 0.224454776929 18066 0.0244658474482 4
1487 MO Saline 0500000US29195 0.21935261708 23232 0.0323261019284 4
1488 MO Schuyler 0500000US29197 0.267000227428 4397 0.0436661360018 4
1489 MO Scotland 0500000US29199 0.257278546356 4843 0.046871773694 4
1490 MO Scott 0500000US29201 0.296565625638 39192 0.0272759746887 4
1491 MO Shannon 0500000US29203 0.268823599381 8407 0.0456762221958 4
1492 MO Shelby 0500000US29205 0.345764854614 6328 0.0515170670038 4
1493 MO Stoddard 0500000US29207 0.317570731055 29902 0.0236104608387 4
1494 MO Stone 0500000US29209 0.368493493493 31968 0.0938125625626 4
1495 MO Sullivan 0500000US29211 0.241487925604 6667 0.0416979151042 4
1496 MO Taney 0500000US29213 0.304539111559 51596 0.0728738661912 4
1497 MO Texas 0500000US29215 0.294814241486 25840 0.0551470588235 4
1498 MO Vernon 0500000US29217 0.27464452715 20958 0.0411298788052 4
1499 MO Warren 0500000US29219 0.28205918619 32440 0.043803945746 4
1500 MO Washington 0500000US29221 0.199363057325 25120 0.0267117834395 4
1501 MO Wayne 0500000US29223 0.28191014579 13444 0.0368193989884 4
1502 MO Webster 0500000US29225 0.29577425863 36183 0.0588397866401 4
1503 MO Worth 0500000US29227 0.309412861137 2146 0.0731593662628 4
1504 MO Wright 0500000US29229 0.311285500747 18732 0.0618727311552 4
1505 MS Adams 0500000US28001 0.171096909635 32391 0.0581643048995 5
1506 MS Alcorn 0500000US28003 0.29780970643 37027 0.0875847354633 5
1507 MS Amite 0500000US28005 0.334348123906 13139 0.124743131136 5
1508 MS Attala 0500000US28007 0.228847537781 19454 0.102035571091 5
1509 MS Benton 0500000US28009 0.232664756447 8725 0.0808022922636 5
1510 MS Bolivar 0500000US28011 0.126931277199 34239 0.0458541429364 5
1511 MS Calhoun 0500000US28013 0.265785412333 14903 0.105482117694 5
1512 MS Carroll 0500000US28015 0.374585425945 10553 0.133800814934 5
1513 MS Chickasaw 0500000US28017 0.206266468095 17458 0.0847176079734 5
1514 MS Choctaw 0500000US28019 0.297789795439 8506 0.140606630614 5
1515 MS Claiborne 0500000US28021 0.0628034293978 9681 0.0185931205454 5
1516 MS Clarke 0500000US28023 0.264561361457 16688 0.131771332694 5
1517 MS Clay 0500000US28025 0.181020695003 20633 0.0847186545825 5
1518 MS Coahoma 0500000US28027 0.0902716579179 26099 0.0188896126288 5
1519 MS Copiah 0500000US28029 0.194857454645 29324 0.0849133815305 5
1520 MS Covington 0500000US28031 0.26988912166 19571 0.100710234531 5
1521 MS DeSoto 0500000US28033 0.262473999604 161536 0.103766343106 5
1522 MS Forrest 0500000US28035 0.203494388283 75378 0.0968452333572 5
1523 MS Franklin 0500000US28037 0.335816263191 8055 0.122160148976 5
1524 MS George 0500000US28039 0.369945524603 22579 0.136188493733 5
1525 MS Greene 0500000US28041 0.315496098105 14352 0.101379598662 5
1526 MS Grenada 0500000US28043 0.273234030887 21886 0.100886411405 5
1527 MS Hancock 0500000US28045 0.291958041958 44044 0.114794296612 5
1528 MS Harrison 0500000US28047 0.205443623412 188110 0.0927010791558 5
1529 MS Hinds 0500000US28049 0.10737410437 246335 0.0567885196988 5
1530 MS Holmes 0500000US28051 0.0658093403447 19207 0.0268131410423 5
1531 MS Humphreys 0500000US28053 0.113735503777 9399 0.0503245026067 5
1532 MS Issaquena 0500000US28055 0.194087403599 1556 0.0661953727506 5
1533 MS Itawamba 0500000US28057 0.296421539252 23362 0.11535827412 5
1534 MS Jackson 0500000US28059 0.238556981998 139430 0.115455784265 5
1535 MS Jasper 0500000US28061 0.246169200963 17033 0.0890036987025 5
1536 MS Jefferson 0500000US28063 0.0556631796461 7743 0.0216970166602 5
1537 MS Jeff Davis 0500000US28065 0.197266256875 12364 0.0845195729537 5
1538 MS Jones 0500000US28067 0.304046089468 67868 0.127379619261 5
1539 MS Kemper 0500000US28069 0.1721682225 10391 0.0752574343182 5
1540 MS Lafayette 0500000US28071 0.205354516034 47586 0.0850880511075 5
1541 MS Lamar 0500000US28073 0.31435768262 55580 0.142893127024 5
1542 MS Lauderdale 0500000US28075 0.215974265623 80204 0.111864744901 5
1543 MS Lawrence 0500000US28077 0.323644014963 12832 0.118220074813 5
1544 MS Leake 0500000US28079 0.181768026143 23563 0.077367058524 5
1545 MS Lee 0500000US28081 0.264359944735 83235 0.122376404157 5
1546 MS Leflore 0500000US28083 0.0967511492111 32196 0.0373648900485 5
1547 MS Lincoln 0500000US28085 0.267804878049 34850 0.110129124821 5
1548 MS Lowndes 0500000US28087 0.208092776584 59584 0.104021213749 5
1549 MS Madison 0500000US28089 0.298562017574 95481 0.13585949037 5
1550 MS Marion 0500000US28091 0.265497948527 26810 0.131741887355 5
1551 MS Marshall 0500000US28093 0.174072773441 37019 0.0711526513412 5
1552 MS Monroe 0500000US28095 0.261730602514 36912 0.0980981794538 5
1553 MS Montgomery 0500000US28097 0.234032762746 10866 0.0942389103626 5
1554 MS Neshoba 0500000US28099 0.261842193922 29682 0.107843137255 5
1555 MS Newton 0500000US28101 0.272467376769 21687 0.129847374003 5
1556 MS Noxubee 0500000US28103 0.11510728868 11511 0.0419598644775 5
1557 MS Oktibbeha 0500000US28105 0.162742703112 47486 0.0730531103904 5
1558 MS Panola 0500000US28107 0.220014419611 34675 0.0731362653208 5
1559 MS Pearl River 0500000US28109 0.283362559496 55886 0.127008553126 5
1560 MS Perry 0500000US28111 0.336416468855 12217 0.120815257428 5
1561 MS Pike 0500000US28113 0.198163771712 40300 0.0807444168734 5
1562 MS Pontotoc 0500000US28115 0.313830852413 29962 0.121987851278 5
1563 MS Prentiss 0500000US28117 0.278718878033 25384 0.0812716671919 5
1564 MS Quitman 0500000US28119 0.136580589891 8171 0.0363480602129 5
1565 MS Rankin 0500000US28121 0.325870996792 142136 0.161071086846 5
1566 MS Scott 0500000US28123 0.203070159889 28207 0.087283298472 5
1567 MS Sharkey 0500000US28125 0.139607032058 4835 0.0523267838676 5
1568 MS Simpson 0500000US28127 0.27019944679 27476 0.119777260154 5
1569 MS Smith 0500000US28129 0.368280060883 16425 0.13503805175 5
1570 MS Stone 0500000US28131 0.278869570142 17657 0.126465424478 5
1571 MS Sunflower 0500000US28133 0.0994526171741 29230 0.0350667122819 5
1572 MS Tallahatchie 0500000US28135 0.162495085834 15262 0.0511728475953 5
1573 MS Tate 0500000US28137 0.233240027992 28580 0.0986354093772 5
1574 MS Tippah 0500000US28139 0.299841593121 22095 0.115320208192 5
1575 MS Tishomingo 0500000US28141 0.310121085168 19573 0.111275736985 5
1576 MS Tunica 0500000US28143 0.0809070548712 10716 0.0265024262785 5
1577 MS Union 0500000US28145 0.285519779209 27175 0.119337626495 5
1578 MS Walthall 0500000US28147 0.260434923726 15405 0.0888023369036 5
1579 MS Warren 0500000US28149 0.19393213408 48419 0.0881678679857 5
1580 MS Washington 0500000US28151 0.0954714761811 51010 0.0388943344442 5
1581 MS Wayne 0500000US28153 0.292955574829 20754 0.118868651826 5
1582 MS Webster 0500000US28155 0.362527061602 10162 0.192580200748 5
1583 MS Wilkinson 0500000US28157 0.130394763755 9778 0.0284311720188 5
1584 MS Winston 0500000US28159 0.26863256785 19160 0.103079331942 5
1585 MS Yalobusha 0500000US28161 0.25784771092 12647 0.106191191587 5
1586 MS Yazoo 0500000US28163 0.161587526577 28220 0.075584691708 5
1587 MT Beaverhead 0500000US30001 0.352297355873 9228 0.207087126138 7
1588 MT Beaverhead 0500000US30001 0.352297355873 9228 0.207087126138 7
1589 MT Big Horn 0500000US30003 0.128573648229 12872 0.0588875077688 7
1590 MT Big Horn 0500000US30003 0.128573648229 12872 0.0588875077688 7
1591 MT Blaine 0500000US30005 0.179459625422 6514 0.10392999693 7
1592 MT Blaine 0500000US30005 0.179459625422 6514 0.10392999693 7
1593 MT Broadwater 0500000US30007 0.385650224215 5575 0.186188340807 7
1594 MT Broadwater 0500000US30007 0.385650224215 5575 0.186188340807 7
1595 MT Carbon 0500000US30009 0.349308939047 10057 0.18504524212 7
1596 MT Carbon 0500000US30009 0.349308939047 10057 0.18504524212 7
1597 MT Carter 0500000US30011 0.531347962382 1276 0.387931034483 7
1598 MT Carter 0500000US30011 0.531347962382 1276 0.387931034483 7
1599 MT Cascade 0500000US30013 0.222023926743 81248 0.128926250492 7
1600 MT Cascade 0500000US30013 0.222023926743 81248 0.128926250492 7
1601 MT Chouteau 0500000US30015 0.301325073137 5811 0.244364136982 7
1602 MT Chouteau 0500000US30015 0.301325073137 5811 0.244364136982 7
1603 MT Custer 0500000US30017 0.286434307193 11706 0.138305142662 7
1604 MT Custer 0500000US30017 0.286434307193 11706 0.138305142662 7
1605 MT Daniels 0500000US30019 0.423875432526 1734 0.186851211073 7
1606 MT Daniels 0500000US30019 0.423875432526 1734 0.186851211073 7
1607 MT Dawson 0500000US30021 0.335180669475 9022 0.192196852139 7
1608 MT Dawson 0500000US30021 0.335180669475 9022 0.192196852139 7
1609 MT Deer Lodge 0500000US30023 0.154252452301 9277 0.0752398404657 7
1610 MT Deer Lodge 0500000US30023 0.154252452301 9277 0.0752398404657 7
1611 MT Fallon 0500000US30025 0.368076040642 3051 0.198295640774 7
1612 MT Fallon 0500000US30025 0.368076040642 3051 0.198295640774 7
1613 MT Fergus 0500000US30027 0.368732076128 11507 0.197879551577 7
1614 MT Fergus 0500000US30027 0.368732076128 11507 0.197879551577 7
1615 MT Flathead 0500000US30029 0.304440071674 90967 0.160871524839 7
1616 MT Flathead 0500000US30029 0.304440071674 90967 0.160871524839 7
1617 MT Gallatin 0500000US30031 0.266230531664 90339 0.122959076368 7
1618 MT Gallatin 0500000US30031 0.266230531664 90339 0.122959076368 7
1619 MT Garfield 0500000US30033 0.565454545455 1100 0.37 7
1620 MT Garfield 0500000US30033 0.565454545455 1100 0.37 7
1621 MT Glacier 0500000US30035 0.103635821785 13422 0.0549098495008 7
1622 MT Glacier 0500000US30035 0.103635821785 13422 0.0549098495008 7
1623 MT Golden Valley 0500000US30037 0.456436931079 769 0.31599479844 7
1624 MT Golden Valley 0500000US30037 0.456436931079 769 0.31599479844 7
1625 MT Granite 0500000US30039 0.359065844956 3083 0.227375932533 7
1626 MT Granite 0500000US30039 0.359065844956 3083 0.227375932533 7
1627 MT Hill 0500000US30041 0.193909760475 16157 0.0847310763137 7
1628 MT Hill 0500000US30041 0.193909760475 16157 0.0847310763137 7
1629 MT Jefferson 0500000US30043 0.355809859155 11360 0.191021126761 7
1630 MT Jefferson 0500000US30043 0.355809859155 11360 0.191021126761 7
1631 MT Judith Basin 0500000US30045 0.415204678363 2052 0.249512670565 7
1632 MT Judith Basin 0500000US30045 0.415204678363 2052 0.249512670565 7
1633 MT Lake 0500000US30047 0.246023477113 28794 0.162151837188 7
1634 MT Lake 0500000US30047 0.246023477113 28794 0.162151837188 7
1635 MT Lewis and Clark 0500000US30049 0.262848404591 63432 0.115872115021 7
1636 MT Lewis and Clark 0500000US30049 0.262848404591 63432 0.115872115021 7
1637 MT Liberty 0500000US30051 0.300085984523 2326 0.207652622528 7
1638 MT Liberty 0500000US30051 0.300085984523 2326 0.207652622528 7
1639 MT Lincoln 0500000US30053 0.308512810044 19594 0.153720526692 7
1640 MT Lincoln 0500000US30053 0.308512810044 19594 0.153720526692 7
1641 MT McCone 0500000US30055 0.410398230088 1808 0.223451327434 7
1642 MT McCone 0500000US30055 0.410398230088 1808 0.223451327434 7
1643 MT Madison 0500000US30057 0.405176899063 7688 0.238293444329 7
1644 MT Madison 0500000US30057 0.405176899063 7688 0.238293444329 7
1645 MT Meagher 0500000US30059 0.352631578947 1900 0.232105263158 7
1646 MT Meagher 0500000US30059 0.352631578947 1900 0.232105263158 7
1647 MT Mineral 0500000US30061 0.288365453248 4203 0.193195336664 7
1648 MT Mineral 0500000US30061 0.288365453248 4203 0.193195336664 7
1649 MT Missoula 0500000US30063 0.212838887772 109402 0.0898795268825 7
1650 MT Missoula 0500000US30063 0.212838887772 109402 0.0898795268825 7
1651 MT Musselshell 0500000US30065 0.389819447466 4597 0.21187731129 7
1652 MT Musselshell 0500000US30065 0.389819447466 4597 0.21187731129 7
1653 MT Park 0500000US30067 0.296199297349 15655 0.179495368892 7
1654 MT Park 0500000US30067 0.296199297349 15655 0.179495368892 7
1655 MT Petroleum 0500000US30069 0.424028268551 566 0.183745583039 7
1656 MT Petroleum 0500000US30069 0.424028268551 566 0.183745583039 7
1657 MT Phillips 0500000US30071 0.401617891982 4203 0.308827028313 7
1658 MT Phillips 0500000US30071 0.401617891982 4203 0.308827028313 7
1659 MT Pondera 0500000US30073 0.271026517 6147 0.237676915569 7
1660 MT Pondera 0500000US30073 0.271026517 6147 0.237676915569 7
1661 MT Powder River 0500000US30075 0.508236729713 1639 0.323978035387 7
1662 MT Powder River 0500000US30075 0.508236729713 1639 0.323978035387 7
1663 MT Powell 0500000US30077 0.254421961228 7067 0.14022923447 7
1664 MT Powell 0500000US30077 0.254421961228 7067 0.14022923447 7
1665 MT Prairie 0500000US30079 0.434199497066 1193 0.309304274937 7
1666 MT Prairie 0500000US30079 0.434199497066 1193 0.309304274937 7
1667 MT Ravalli 0500000US30081 0.317952916077 40311 0.194611892536 7
1668 MT Ravalli 0500000US30081 0.317952916077 40311 0.194611892536 7
1669 MT Richland 0500000US30083 0.349262122277 9961 0.149784158217 7
1670 MT Richland 0500000US30083 0.349262122277 9961 0.149784158217 7
1671 MT Roosevelt 0500000US30085 0.143457096497 10477 0.0637587095543 7
1672 MT Roosevelt 0500000US30085 0.143457096497 10477 0.0637587095543 7
1673 MT Rosebud 0500000US30087 0.219738689126 9261 0.10009718173 7
1674 MT Rosebud 0500000US30087 0.219738689126 9261 0.10009718173 7
1675 MT Sanders 0500000US30089 0.347692846511 11421 0.220208388057 7
1676 MT Sanders 0500000US30089 0.347692846511 11421 0.220208388057 7
1677 MT Sheridan 0500000US30091 0.348999129678 3447 0.157238178126 7
1678 MT Sheridan 0500000US30091 0.348999129678 3447 0.157238178126 7
1679 MT Silver Bow 0500000US30093 0.157300081958 34164 0.0830406275612 7
1680 MT Silver Bow 0500000US30093 0.157300081958 34164 0.0830406275612 7
1681 MT Stillwater 0500000US30095 0.355870712401 9096 0.190963060686 7
1682 MT Stillwater 0500000US30095 0.355870712401 9096 0.190963060686 7
1683 MT Sweet Grass 0500000US30097 0.432668669762 3661 0.323135755258 7
1684 MT Sweet Grass 0500000US30097 0.432668669762 3661 0.323135755258 7
1685 MT Teton 0500000US30099 0.343801381125 6082 0.210785925682 7
1686 MT Teton 0500000US30099 0.343801381125 6082 0.210785925682 7
1687 MT Toole 0500000US30101 0.276391554702 5210 0.185028790787 7
1688 MT Toole 0500000US30101 0.276391554702 5210 0.185028790787 7
1689 MT Treasure 0500000US30103 0.454154727794 698 0.276504297994 7
1690 MT Treasure 0500000US30103 0.454154727794 698 0.276504297994 7
1691 MT Valley 0500000US30105 0.314832278055 7423 0.161390273474 7
1692 MT Valley 0500000US30105 0.314832278055 7423 0.161390273474 7
1693 MT Wheatland 0500000US30107 0.322128851541 2142 0.204948646125 7
1694 MT Wheatland 0500000US30107 0.322128851541 2142 0.204948646125 7
1695 MT Wibaux 0500000US30109 0.46829810901 899 0.246941045606 7
1696 MT Wibaux 0500000US30109 0.46829810901 899 0.246941045606 7
1697 MT Yellowstone 0500000US30111 0.272762853345 148191 0.139772320856 7
1698 MT Yellowstone 0500000US30111 0.272762853345 148191 0.139772320856 7
1699 NC Alamance 0500000US37001 0.249467486935 151170 0.0956671297215 5
1700 NC Alexander 0500000US37003 0.32979413195 37014 0.186659101961 5
1701 NC Alleghany 0500000US37005 0.305176619387 11069 0.132712982203 5
1702 NC Anson 0500000US37007 0.154500168546 26699 0.0456945953032 5
1703 NC Ashe 0500000US37009 0.302852503782 27099 0.16498763792 5
1704 NC Avery 0500000US37011 0.320404153803 17815 0.237833286556 5
1705 NC Beaufort 0500000US37013 0.292751672206 47542 0.115098228934 5
1706 NC Bertie 0500000US37015 0.16006655574 21035 0.0264321369147 5
1707 NC Bladen 0500000US37017 0.227564286123 34922 0.0463318252105 5
1708 NC Brunswick 0500000US37019 0.320472550382 107925 0.132304841325 5
1709 NC Buncombe 0500000US37021 0.227736401674 239000 0.100008368201 5
1710 NC Burke 0500000US37023 0.243434888407 90821 0.111527069731 5
1711 NC Cabarrus 0500000US37025 0.275370524003 178396 0.122939976233 5
1712 NC Caldwell 0500000US37027 0.279647970131 82493 0.156570860558 5
1713 NC Camden 0500000US37029 0.300551931761 9965 0.0626191670848 5
1714 NC Carteret 0500000US37031 0.370368139727 66415 0.163758187157 5
1715 NC Caswell 0500000US37033 0.231674782977 23615 0.0628837603218 5
1716 NC Catawba 0500000US37035 0.287845085311 154201 0.149201367047 5
1717 NC Chatham 0500000US37037 0.259452860899 63896 0.108895705521 5
1718 NC Cherokee 0500000US37039 0.336983592148 27304 0.141114854966 5
1719 NC Chowan 0500000US37041 0.261180438449 14825 0.093018549747 5
1720 NC Clay 0500000US37043 0.373711583924 10575 0.148179669031 5
1721 NC Cleveland 0500000US37045 0.259883542752 97890 0.100858106037 5
1722 NC Columbus 0500000US37047 0.223269457752 57612 0.0514823300701 5
1723 NC Craven 0500000US37049 0.25901811397 102904 0.0963713752624 5
1724 NC Cumberland 0500000US37051 0.157176454378 319329 0.0556510683339 5
1725 NC Currituck 0500000US37053 0.313848882882 23677 0.0979009165012 5
1726 NC Dare 0500000US37055 0.29695170346 34019 0.0877744789676 5
1727 NC Davidson 0500000US37057 0.300901443786 162628 0.137590082889 5
1728 NC Davie 0500000US37059 0.353738192944 41183 0.217589782192 5
1729 NC Duplin 0500000US37061 0.193642112459 58510 0.0667578191762 5
1730 NC Durham 0500000US37063 0.123758276609 269283 0.0518562256065 5
1731 NC Edgecombe 0500000US37065 0.150996391304 56253 0.0399445362914 5
1732 NC Forsyth 0500000US37067 0.225339245463 351368 0.105018100681 5
1733 NC Franklin 0500000US37069 0.239457582272 60470 0.0987927898131 5
1734 NC Gaston 0500000US37071 0.270574091938 206291 0.117077332506 5
1735 NC Gates 0500000US37073 0.209793686304 12069 0.0371198939432 5
1736 NC Graham 0500000US37075 0.312913529546 8766 0.166666666667 5
1737 NC Granville 0500000US37077 0.206683873563 59666 0.0664867763886 5
1738 NC Greene 0500000US37079 0.205414757318 21386 0.0453567754606 5
1739 NC Guilford 0500000US37081 0.21235518081 489576 0.102292596042 5
1740 NC Halifax 0500000US37083 0.158813742161 54693 0.044996617483 5
1741 NC Harnett 0500000US37085 0.216945456434 115559 0.0808331674729 5
1742 NC Haywood 0500000US37087 0.263990494781 58915 0.100381906136 5
1743 NC Henderson 0500000US37089 0.308321682915 106577 0.177524231307 5
1744 NC Hertford 0500000US37091 0.122364933741 24525 0.0201834862385 5
1745 NC Hoke 0500000US37093 0.141889039014 47368 0.0345803073805 5
1746 NC Hyde 0500000US37095 0.203614457831 5810 0.0426850258176 5
1747 NC Iredell 0500000US37097 0.307435437994 159614 0.137995413936 5
1748 NC Jackson 0500000US37099 0.205677128923 39985 0.0823058646993 5
1749 NC Johnston 0500000US37101 0.285036837313 169122 0.111860077341 5
1750 NC Jones 0500000US37103 0.278489747634 10144 0.0773856466877 5
1751 NC Lee 0500000US37105 0.224618149146 57876 0.0842318059299 5
1752 NC Lenoir 0500000US37107 0.231809607222 59372 0.0683487165667 5
1753 NC Lincoln 0500000US37109 0.322656690412 78052 0.162647978271 5
1754 NC McDowell 0500000US37111 0.261140542225 44926 0.121622223212 5
1755 NC Macon 0500000US37113 0.319887623836 33815 0.145497560254 5
1756 NC Madison 0500000US37115 0.259516572586 20727 0.0983741014136 5
1757 NC Martin 0500000US37117 0.24541114495 24298 0.0589348917606 5
1758 NC Mecklenburg 0500000US37119 0.183941057729 926873 0.0845984293425 5
1759 NC Mitchell 0500000US37121 0.371838599652 15539 0.295450157668 5
1760 NC Montgomery 0500000US37123 0.230308929022 27741 0.0890378861613 5
1761 NC Moore 0500000US37125 0.332178363566 88314 0.166292999977 5
1762 NC Nash 0500000US37127 0.248772829557 95545 0.102412475797 5
1763 NC New Hanover 0500000US37129 0.259706015467 203276 0.107184320825 5
1764 NC Northampton 0500000US37131 0.158203925498 21959 0.0285076733913 5
1765 NC Onslow 0500000US37133 0.179614759069 176461 0.0616793512448 5
1766 NC Orange 0500000US37135 0.15973663387 133958 0.0635796294361 5
1767 NC Pamlico 0500000US37137 0.306732597946 13145 0.103461392164 5
1768 NC Pasquotank 0500000US37139 0.177948755888 40551 0.0443145668418 5
1769 NC Pender 0500000US37141 0.273952752302 52447 0.101664537533 5
1770 NC Perquimans 0500000US37143 0.284329804682 13414 0.078500074549 5
1771 NC Person 0500000US37145 0.266186867402 39322 0.0741569604801 5
1772 NC Pitt 0500000US37147 0.211573613733 167951 0.0687879202863 5
1773 NC Polk 0500000US37149 0.305062297655 20386 0.123663298342 5
1774 NC Randolph 0500000US37151 0.317253899186 141568 0.153226717902 5
1775 NC Richmond 0500000US37153 0.198163405424 46608 0.0453355647099 5
1776 NC Robeson 0500000US37155 0.127635902031 133920 0.0237455197133 5
1777 NC Rockingham 0500000US37157 0.268452993652 93264 0.09881626351 5
1778 NC Rowan 0500000US37159 0.279486789831 138189 0.132239179674 5
1779 NC Rutherford 0500000US37161 0.278697031699 67446 0.101963051923 5
1780 NC Sampson 0500000US37163 0.226438304315 63408 0.101185970225 5
1781 NC Scotland 0500000US37165 0.159901836431 36266 0.0364804500083 5
1782 NC Stanly 0500000US37167 0.32564598522 60489 0.160177883582 5
1783 NC Stokes 0500000US37169 0.320642046417 47224 0.152126037608 5
1784 NC Surry 0500000US37171 0.268561950211 73551 0.112357411864 5
1785 NC Swain 0500000US37173 0.212647374062 13995 0.075026795284 5
1786 NC Transylvania 0500000US37175 0.290083777609 32825 0.169078446306 5
1787 NC Tyrrell 0500000US37177 0.21273185253 4367 0.0325166017861 5
1788 NC Union 0500000US37179 0.299915185723 201617 0.129770803057 5
1789 NC Vance 0500000US37181 0.163911205542 45183 0.0389527034504 5
1790 NC Wake 0500000US37183 0.257221670699 905573 0.108353495522 5
1791 NC Warren 0500000US37185 0.149137104506 20860 0.0318791946309 5
1792 NC Washington 0500000US37187 0.199847153229 13085 0.0431792128391 5
1793 NC Watauga 0500000US37189 0.276382991214 51103 0.133651644718 5
1794 NC Wayne 0500000US37191 0.224932404284 122419 0.0834837729437 5
1795 NC Wilkes 0500000US37193 0.294665415433 69265 0.176351692774 5
1796 NC Wilson 0500000US37195 0.220982473463 81020 0.086447790669 5
1797 NC Yadkin 0500000US37197 0.326763214304 38254 0.190725152925 5
1798 NC Yancey 0500000US37199 0.294655888627 17814 0.152745031997 5
1799 NE Adams 0500000US31001 0.263107447522 31299 0.107319722675 4
1800 NE Antelope 0500000US31003 0.388429752066 6655 0.157024793388 4
1801 NE Arthur 0500000US31005 0.463265306122 490 0.230612244898 4
1802 NE Banner 0500000US31007 0.435732647815 778 0.185089974293 4
1803 NE Blaine 0500000US31009 0.458904109589 584 0.217465753425 4
1804 NE Boone 0500000US31011 0.390279554175 5473 0.269139411657 4
1805 NE Box Butte 0500000US31013 0.246364037021 11345 0.10603790216 4
1806 NE Boyd 0500000US31015 0.420740740741 2025 0.213827160494 4
1807 NE Brown 0500000US31017 0.407791391769 3183 0.20766572416 4
1808 NE Buffalo 0500000US31019 0.288754586661 46330 0.112389380531 4
1809 NE Burt 0500000US31021 0.295211597598 6829 0.153023868795 4
1810 NE Butler 0500000US31023 0.327022168963 8345 0.145116836429 4
1811 NE Cass 0500000US31025 0.295589751725 25214 0.106726421829 4
1812 NE Cedar 0500000US31027 0.366867264676 8807 0.112069944362 4
1813 NE Chase 0500000US31029 0.396821392533 3964 0.17961654894 4
1814 NE Cherry 0500000US31031 0.446871723174 5722 0.282943026914 4
1815 NE Cheyenne 0500000US31033 0.312213588364 10038 0.0926479378362 4
1816 NE Clay 0500000US31035 0.340618747114 6497 0.150223179929 4
1817 NE Colfax 0500000US31037 0.195637615995 10453 0.0790203769253 4
1818 NE Cuming 0500000US31039 0.312691466083 9140 0.149671772429 4
1819 NE Custer 0500000US31041 0.389856933236 10904 0.167369772561 4
1820 NE Dakota 0500000US31043 0.146053955628 20869 0.0407781877426 4
1821 NE Dawes 0500000US31045 0.265366172624 9176 0.11649956408 4
1822 NE Dawson 0500000US31047 0.221288169119 24267 0.0895042650513 4
1823 NE Deuel 0500000US31049 0.388888888889 1962 0.148827726809 4
1824 NE Dixon 0500000US31051 0.291708458709 5982 0.0972918756269 4
1825 NE Dodge 0500000US31053 0.244247062039 36590 0.11587865537 4
1826 NE Douglas 0500000US31055 0.209000696547 518271 0.0723308848074 4
1827 NE Dundy 0500000US31057 0.39629258517 1996 0.132264529058 4
1828 NE Fillmore 0500000US31059 0.336117266064 5867 0.138571672064 4
1829 NE Franklin 0500000US31061 0.347309136421 3196 0.146745932416 4
1830 NE Frontier 0500000US31063 0.373189751207 2693 0.15744522837 4
1831 NE Furnas 0500000US31065 0.359000406339 4922 0.138764729785 4
1832 NE Gage 0500000US31067 0.246296546445 22209 0.129136836418 4
1833 NE Garden 0500000US31069 0.41223272004 2011 0.194927896569 4
1834 NE Garfield 0500000US31071 0.361823361823 2106 0.171415004748 4
1835 NE Gosper 0500000US31073 0.362376237624 2020 0.174257425743 4
1836 NE Grant 0500000US31075 0.529605263158 608 0.325657894737 4
1837 NE Greeley 0500000US31077 0.326043737575 2515 0.0811133200795 4
1838 NE Hall 0500000US31079 0.21151650449 58681 0.083774986793 4
1839 NE Hamilton 0500000US31081 0.393799472296 9096 0.205584872471 4
1840 NE Harlan 0500000US31083 0.365019011407 3419 0.173150043872 4
1841 NE Hayes 0500000US31085 0.45612343298 1037 0.219864995178 4
1842 NE Hitchcock 0500000US31087 0.478260869565 2898 0.161835748792 4
1843 NE Holt 0500000US31089 0.363697446727 10418 0.167402572471 4
1844 NE Hooker 0500000US31091 0.478955007257 689 0.245283018868 4
1845 NE Howard 0500000US31093 0.300285986654 6294 0.111693676517 4
1846 NE Jefferson 0500000US31095 0.284733227681 7572 0.110935023772 4
1847 NE Johnson 0500000US31097 0.235736314572 5188 0.121626831149 4
1848 NE Kearney 0500000US31099 0.35937979736 6514 0.155971753147 4
1849 NE Keith 0500000US31101 0.366489618542 8284 0.152100434573 4
1850 NE Keya Paha 0500000US31103 0.528301886792 742 0.299191374663 4
1851 NE Kimball 0500000US31105 0.322512536289 3789 0.187648456057 4
1852 NE Knox 0500000US31107 0.332793709528 8648 0.119680851064 4
1853 NE Lancaster 0500000US31109 0.213588199354 286425 0.0888993628349 4
1854 NE Lincoln 0500000US31111 0.291201811554 36212 0.121258146471 4
1855 NE Logan 0500000US31113 0.491712707182 724 0.263812154696 4
1856 NE Loup 0500000US31115 0.543071161049 534 0.275280898876 4
1857 NE McPherson 0500000US31117 0.681034482759 348 0.362068965517 4
1858 NE Madison 0500000US31119 0.284013116263 34766 0.125985157913 4
1859 NE Merrick 0500000US31121 0.318421390924 7779 0.161074688263 4
1860 NE Morrill 0500000US31123 0.332064890847 4993 0.154015621871 4
1861 NE Nance 0500000US31125 0.29436997319 3730 0.0906166219839 4
1862 NE Nemaha 0500000US31127 0.273947951274 7224 0.126661129568 4
1863 NE Nuckolls 0500000US31129 0.348106904232 4490 0.115144766147 4
1864 NE Otoe 0500000US31131 0.268675694577 15729 0.116727064658 4
1865 NE Pawnee 0500000US31133 0.325826371231 2753 0.152924082819 4
1866 NE Perkins 0500000US31135 0.384458771632 2947 0.175432643366 4
1867 NE Phelps 0500000US31137 0.367160278746 9184 0.14862804878 4
1868 NE Pierce 0500000US31139 0.374360392753 7231 0.160558705573 4
1869 NE Platte 0500000US31141 0.309457990371 32195 0.134461872962 4
1870 NE Polk 0500000US31143 0.351145038168 5371 0.142431576988 4
1871 NE Red Willow 0500000US31145 0.350040860801 11013 0.141741578135 4
1872 NE Richardson 0500000US31147 0.288090963495 8355 0.124236983842 4
1873 NE Rock 0500000US31149 0.434415584416 1540 0.257142857143 4
1874 NE Saline 0500000US31151 0.176355231825 14278 0.0617033197927 4
1875 NE Sarpy 0500000US31153 0.252915383313 159413 0.0815617295955 4
1876 NE Saunders 0500000US31155 0.324942017781 20696 0.133069192114 4
1877 NE Scotts Bluff 0500000US31157 0.255925071264 36835 0.0924664042351 4
1878 NE Seward 0500000US31159 0.29571402953 16729 0.099707095463 4
1879 NE Sheridan 0500000US31161 0.370029455081 5432 0.161450662739 4
1880 NE Sherman 0500000US31163 0.293329077561 3133 0.127353973827 4
1881 NE Sioux 0500000US31165 0.493660855784 1262 0.240095087163 4
1882 NE Stanton 0500000US31167 0.316826844763 6139 0.145137644568 4
1883 NE Thayer 0500000US31169 0.356689124158 5195 0.143407122233 4
1884 NE Thomas 0500000US31171 0.43321299639 831 0.243080625752 4
1885 NE Thurston 0500000US31173 0.118827606122 6926 0.0449032630667 4
1886 NE Valley 0500000US31175 0.380148079593 4322 0.158954187876 4
1887 NE Washington 0500000US31177 0.339438641651 20201 0.13217167467 4
1888 NE Wayne 0500000US31179 0.261265981974 9542 0.123244602809 4
1889 NE Webster 0500000US31181 0.332626557116 3773 0.131195335277 4
1890 NE Wheeler 0500000US31183 0.475862068966 725 0.222068965517 4
1891 NE York 0500000US31185 0.350695709186 13727 0.161579369127 4
1892 NH Acworth 0500000US33019 0.00486975697156 43534 0.16474479717 1
1893 NH Charlestown 0500000US33019 0.0196627923003 43534 0.16474479717 1
1894 NH Claremont 0500000US33019 0.0493177746129 43534 0.16474479717 1
1895 NH Cornish 0500000US33019 0.0090733679423 43534 0.16474479717 1
1896 NH Croydon 0500000US33019 0.00535213855837 43534 0.16474479717 1
1897 NH Goshen 0500000US33019 0.00464005145404 43534 0.16474479717 1
1898 NH Grantham 0500000US33019 0.0190885285065 43534 0.16474479717 1
1899 NH Langdon 0500000US33019 0.00376717048744 43534 0.16474479717 1
1900 NH Lempster 0500000US33019 0.00725869435384 43534 0.16474479717 1
1901 NH Newport 0500000US33019 0.030091422796 43534 0.16474479717 1
1902 NH Plainfield 0500000US33019 0.010497542151 43534 0.16474479717 1
1903 NH Springfield 0500000US33019 0.00914227959756 43534 0.16474479717 1
1904 NH Sunapee 0500000US33019 0.0246933431341 43534 0.16474479717 1
1905 NH Unity 0500000US33019 0.0082464280792 43534 0.16474479717 1
1906 NH Washington 0500000US33019 0.00721275325033 43534 0.16474479717 1
1907 NH Albany 0500000US33003 0.00328720085425 47761 0.237746278344 1
1908 NH Bartlett 0500000US33003 0.0162056908356 47761 0.237746278344 1
1909 NH Brookfield 0500000US33003 0.00525533384979 47761 0.237746278344 1
1910 NH Chatham 0500000US33003 0.00230313435648 47761 0.237746278344 1
1911 NH Conway 0500000US33003 0.0448901823664 47761 0.237746278344 1
1912 NH Eaton 0500000US33003 0.00249157262201 47761 0.237746278344 1
1913 NH Effingham 0500000US33003 0.00822847092816 47761 0.237746278344 1
1914 NH Freedom 0500000US33003 0.0100081656582 47761 0.237746278344 1
1915 NH Harts Location 0500000US33003 0.00018843826553 47761 0.237746278344 1
1916 NH Jackson 0500000US33003 0.00542283453027 47761 0.237746278344 1
1917 NH Madison 0500000US33003 0.0124788006951 47761 0.237746278344 1
1918 NH Moultonborough 0500000US33003 0.0381482799774 47761 0.237746278344 1
1919 NH Ossipee 0500000US33003 0.0239107221373 47761 0.237746278344 1
1920 NH Sandwich 0500000US33003 0.00843784677875 47761 0.237746278344 1
1921 NH Tamworth 0500000US33003 0.0150331860723 47761 0.237746278344 1
1922 NH Tuftonboro 0500000US33003 0.020602583698 47761 0.237746278344 1
1923 NH Wakefield 0500000US33003 0.0303176231653 47761 0.237746278344 1
1924 NH Wolfeboro 0500000US33003 0.0502502041415 47761 0.237746278344 1
1925 NH Alexandria 0500000US33009 0.0048547508007 88985 0.161858740237 1
1926 NH Ashland 0500000US33009 0.00586615721751 88985 0.161858740237 1
1927 NH Bath 0500000US33009 0.00305669494859 88985 0.161858740237 1
1928 NH Benton 0500000US33009 0.00107883351127 88985 0.161858740237 1
1929 NH Bethlehem 0500000US33009 0.00600101140642 88985 0.161858740237 1
1930 NH Bridgewater 0500000US33009 0.00395572287464 88985 0.161858740237 1
1931 NH Bristol 0500000US33009 0.00922627409114 88985 0.161858740237 1
1932 NH Campton 0500000US33009 0.0085969545429 88985 0.161858740237 1
1933 NH Canaan 0500000US33009 0.00796763499466 88985 0.161858740237 1
1934 NH Dorchester 0500000US33009 0.00109007136034 88985 0.161858740237 1
1935 NH Easton 0500000US33009 0.000707984491768 88985 0.161858740237 1
1936 NH Ellsworth 0500000US33009 0.000213519132438 88985 0.161858740237 1
1937 NH Enfield 0500000US33009 0.0094735067708 88985 0.161858740237 1
1938 NH Franconia 0500000US33009 0.00310164634489 88985 0.161858740237 1
1939 NH Grafton 0500000US33009 0.00353992245884 88985 0.161858740237 1
1940 NH Groton 0500000US33009 0.00174186660673 88985 0.161858740237 1
1941 NH Hanover 0500000US33009 0.0194077653537 88985 0.161858740237 1
1942 NH Haverhill 0500000US33009 0.0109569028488 88985 0.161858740237 1
1943 NH Hebron 0500000US33009 0.0024948024948 88985 0.161858740237 1
1944 NH Holderness 0500000US33009 0.0061471034444 88985 0.161858740237 1
1945 NH Landaff 0500000US33009 0.00122492554925 88985 0.161858740237 1
1946 NH Lebanon 0500000US33009 0.0231499690959 88985 0.161858740237 1
1947 NH Lincoln 0500000US33009 0.00378715513851 88985 0.161858740237 1
1948 NH Lisbon 0500000US33009 0.00361858740237 88985 0.161858740237 1
1949 NH Littleton 0500000US33009 0.0145305388549 88985 0.161858740237 1
1950 NH Lyman 0500000US33009 0.0015732988706 88985 0.161858740237 1
1951 NH Lyme 0500000US33009 0.00307917064674 88985 0.161858740237 1
1952 NH Monroe 0500000US33009 0.00300050570321 88985 0.161858740237 1
1953 NH Orange 0500000US33009 0.000809125133449 88985 0.161858740237 1
1954 NH Orford 0500000US33009 0.00268584592909 88985 0.161858740237 1
1955 NH Piermont 0500000US33009 0.00180929370119 88985 0.161858740237 1
1956 NH Plymouth 0500000US33009 0.0124852503231 88985 0.161858740237 1
1957 NH Rumney 0500000US33009 0.00492217789515 88985 0.161858740237 1
1958 NH Sugar Hill 0500000US33009 0.00171939090858 88985 0.161858740237 1
1959 NH Thornton 0500000US33009 0.00686632578524 88985 0.161858740237 1
1960 NH Warren 0500000US33009 0.00231499690959 88985 0.161858740237 1
1961 NH Waterville 0500000US33009 0.00117997415295 88985 0.161858740237 1
1962 NH Wentworth 0500000US33009 0.00292184075968 88985 0.161858740237 1
1963 NH Woodstock 0500000US33009 0.00345001966624 88985 0.161858740237 1
1964 NH Allenstown 0500000US33013 0.00668520260048 146742 0.202239304357 1
1965 NH Andover 0500000US33013 0.00389118316501 146742 0.202239304357 1
1966 NH Boscawen 0500000US33013 0.00522004606725 146742 0.202239304357 1
1967 NH Bow 0500000US33013 0.0160281310054 146742 0.202239304357 1
1968 NH Bradford 0500000US33013 0.00310749478677 146742 0.202239304357 1
1969 NH Canterbury 0500000US33013 0.00428643469491 146742 0.202239304357 1
1970 NH Chichester 0500000US33013 0.00534271033515 146742 0.202239304357 1
1971 NH Concord 0500000US33013 0.0494200706001 146742 0.202239304357 1
1972 NH Danbury 0500000US33013 0.00213299532513 146742 0.202239304357 1
1973 NH Dunbarton 0500000US33013 0.00652846492483 146742 0.202239304357 1
1974 NH Epsom 0500000US33013 0.00908397050606 146742 0.202239304357 1
1975 NH Franklin 0500000US33013 0.0106990500334 146742 0.202239304357 1
1976 NH Henniker 0500000US33013 0.00687601368388 146742 0.202239304357 1
1977 NH Hill 0500000US33013 0.00181951997383 146742 0.202239304357 1
1978 NH Hooksett 0500000US33013 0.0270406563901 146742 0.202239304357 1
1979 NH Hopkinton 0500000US33013 0.0100243965599 146742 0.202239304357 1
1980 NH Loudon 0500000US33013 0.0105354976762 146742 0.202239304357 1
1981 NH Newbury 0500000US33013 0.00463398345395 146742 0.202239304357 1
1982 NH New London 0500000US33013 0.0094315192651 146742 0.202239304357 1
1983 NH Northfield 0500000US33013 0.00690327241008 146742 0.202239304357 1
1984 NH Pembroke 0500000US33013 0.0117825843998 146742 0.202239304357 1
1985 NH Pittsfield 0500000US33013 0.00637854193074 146742 0.202239304357 1
1986 NH Salisbury 0500000US33013 0.00263728175982 146742 0.202239304357 1
1987 NH Sutton 0500000US33013 0.00371400144471 146742 0.202239304357 1
1988 NH Warner 0500000US33013 0.00472938899565 146742 0.202239304357 1
1989 NH Webster 0500000US33013 0.00338008204877 146742 0.202239304357 1
1990 NH Wilmot 0500000US33013 0.00246010003953 146742 0.202239304357 1
1991 NH Alstead 0500000US33005 0.00496718802687 77106 0.155642881228 1
1992 NH Chesterfield 0500000US33005 0.0118149041579 77106 0.155642881228 1
1993 NH Dublin 0500000US33005 0.00486343475216 77106 0.155642881228 1
1994 NH Fitzwilliam 0500000US33005 0.0071330376365 77106 0.155642881228 1
1995 NH Gilsum 0500000US33005 0.00249007859311 77106 0.155642881228 1
1996 NH Harrisville 0500000US33005 0.00269758514253 77106 0.155642881228 1
1997 NH Hinsdale 0500000US33005 0.0065364563069 77106 0.155642881228 1
1998 NH Jaffrey 0500000US33005 0.0160169117838 77106 0.155642881228 1
1999 NH Keene 0500000US33005 0.046585220346 77106 0.155642881228 1
2000 NH Marlborough 0500000US33005 0.00451326745 77106 0.155642881228 1
2001 NH Marlow 0500000US33005 0.00199725053822 77106 0.155642881228 1
2002 NH Nelson 0500000US33005 0.00194537390086 77106 0.155642881228 1
2003 NH Richmond 0500000US33005 0.0042149767852 77106 0.155642881228 1
2004 NH Rindge 0500000US33005 0.0222550774259 77106 0.155642881228 1
2005 NH Roxbury 0500000US33005 0.000531735532903 77106 0.155642881228 1
2006 NH Stoddard 0500000US33005 0.00437060669727 77106 0.155642881228 1
2007 NH Sullivan 0500000US33005 0.00191943558219 77106 0.155642881228 1
2008 NH Surry 0500000US33005 0.00284024589526 77106 0.155642881228 1
2009 NH Swanzey 0500000US33005 0.0194148315306 77106 0.155642881228 1
2010 NH Troy 0500000US33005 0.00535626280704 77106 0.155642881228 1
2011 NH Walpole 0500000US33005 0.0102845433559 77106 0.155642881228 1
2012 NH Westmoreland 0500000US33005 0.00533032448837 77106 0.155642881228 1
2013 NH Winchester 0500000US33005 0.00820947786165 77106 0.155642881228 1
2014 NH Alton 0500000US33001 0.035660897585 60206 0.222685446633 1
2015 NH Barnstead 0500000US33001 0.0208284888549 60206 0.222685446633 1
2016 NH Belmont 0500000US33001 0.0301631066671 60206 0.222685446633 1
2017 NH Center Harbor 0500000US33001 0.00674351393549 60206 0.222685446633 1
2018 NH Gilford 0500000US33001 0.0406603992958 60206 0.222685446633 1
2019 NH Gilmanton 0500000US33001 0.0191176959107 60206 0.222685446633 1
2020 NH Laconia 0500000US33001 0.0640467727469 60206 0.222685446633 1
2021 NH Meredith 0500000US33001 0.0346809288111 60206 0.222685446633 1
2022 NH New Hampton 0500000US33001 0.0105637311896 60206 0.222685446633 1
2023 NH Sanbornton 0500000US33001 0.0151646015347 60206 0.222685446633 1
2024 NH Tilton 0500000US33001 0.0141680231206 60206 0.222685446633 1
2025 NH Amherst 0500000US33011 0.00973819561657 401101 0.187897811274 1
2026 NH Antrim 0500000US33011 0.00163300515332 401101 0.187897811274 1
2027 NH Bedford 0500000US33011 0.0199201697328 401101 0.187897811274 1
2028 NH Bennington 0500000US33011 0.00090500896283 401101 0.187897811274 1
2029 NH Brookline 0500000US33011 0.00404636238753 401101 0.187897811274 1
2030 NH Deering 0500000US33011 0.00125903450752 401101 0.187897811274 1
2031 NH Francestown 0500000US33011 0.00111941879975 401101 0.187897811274 1
2032 NH Goffstown 0500000US33011 0.0121066763733 401101 0.187897811274 1
2033 NH Greenfield 0500000US33011 0.000982296229628 401101 0.187897811274 1
2034 NH Greenville 0500000US33011 0.00105709035879 401101 0.187897811274 1
2035 NH Hancock 0500000US33011 0.00115930900197 401101 0.187897811274 1
2036 NH Hillsborough 0500000US33011 0.00302417595568 401101 0.187897811274 1
2037 NH Hollis 0500000US33011 0.00694338832364 401101 0.187897811274 1
2038 NH Hudson 0500000US33011 0.0128994941424 401101 0.187897811274 1
2039 NH Litchfield 0500000US33011 0.00673895103727 401101 0.187897811274 1
2040 NH Lyndeborough 0500000US33011 0.00119670606655 401101 0.187897811274 1
2041 NH Manchester 0500000US33011 0.0518797011227 401101 0.187897811274 1
2042 NH Mason 0500000US33011 0.001186733516 401101 0.187897811274 1
2043 NH Merrimack 0500000US33011 0.0191423107896 401101 0.187897811274 1
2044 NH Milford 0500000US33011 0.00940660831063 401101 0.187897811274 1
2045 NH Mont Vernon 0500000US33011 0.00193218166995 401101 0.187897811274 1
2046 NH Nashua 0500000US33011 0.0436448675022 401101 0.187897811274 1
2047 NH New Boston 0500000US33011 0.0043280869407 401101 0.187897811274 1
2048 NH New Ipswich 0500000US33011 0.00420841633404 401101 0.187897811274 1
2049 NH Pelham 0500000US33011 0.0104312878801 401101 0.187897811274 1
2050 NH Peterborough 0500000US33011 0.00326351716899 401101 0.187897811274 1
2051 NH Sharon 0500000US33011 0.000226875525117 401101 0.187897811274 1
2052 NH Temple 0500000US33011 0.00102966584476 401101 0.187897811274 1
2053 NH Weare 0500000US33011 0.00646221275938 401101 0.187897811274 1
2054 NH Wilton 0500000US33011 0.0025479866667 401101 0.187897811274 1
2055 NH Windsor 0500000US33011 0.000164547084151 401101 0.187897811274 1
2056 NH Atkinson 0500000US33015 0.00909514925373 295872 0.211716553104 1
2057 NH Auburn 0500000US33015 0.00674616050184 295872 0.211716553104 1
2058 NH Brentwood 0500000US33015 0.00439717174995 295872 0.211716553104 1
2059 NH Candia 0500000US33015 0.00516439541423 295872 0.211716553104 1
2060 NH Chester 0500000US33015 0.00548210036773 295872 0.211716553104 1
2061 NH Danville 0500000US33015 0.00458306294614 295872 0.211716553104 1
2062 NH Deerfield 0500000US33015 0.00501906229721 295872 0.211716553104 1
2063 NH Derry 0500000US33015 0.0280830899849 295872 0.211716553104 1
2064 NH East Kingston 0500000US33015 0.0030959333766 295872 0.211716553104 1
2065 NH Epping 0500000US33015 0.00573558836254 295872 0.211716553104 1
2066 NH Exeter 0500000US33015 0.0122147415098 295872 0.211716553104 1
2067 NH Fremont 0500000US33015 0.00466417910448 295872 0.211716553104 1
2068 NH Greenland 0500000US33015 0.00391723447978 295872 0.211716553104 1
2069 NH Hampstead 0500000US33015 0.0108729450573 295872 0.211716553104 1
2070 NH Hampton 0500000US33015 0.0160272009518 295872 0.211716553104 1
2071 NH Hampton Falls 0500000US33015 0.00309931321653 295872 0.211716553104 1
2072 NH Kensington 0500000US33015 0.00249770170885 295872 0.211716553104 1
2073 NH Kingston 0500000US33015 0.00626622323167 295872 0.211716553104 1
2074 NH Londonderry 0500000US33015 0.024655932295 295872 0.211716553104 1
2075 NH New Castle 0500000US33015 0.001416152931 295872 0.211716553104 1
2076 NH Newfields 0500000US33015 0.00176089660394 295872 0.211716553104 1
2077 NH Newington 0500000US33015 0.00100719229937 295872 0.211716553104 1
2078 NH Newmarket 0500000US33015 0.00639803698897 295872 0.211716553104 1
2079 NH Newton 0500000US33015 0.00471487670344 295872 0.211716553104 1
2080 NH North Hampton 0500000US33015 0.00526579061216 295872 0.211716553104 1
2081 NH Northwood 0500000US33015 0.0040186296777 295872 0.211716553104 1
2082 NH Nottingham 0500000US33015 0.00466079926455 295872 0.211716553104 1
2083 NH Plaistow 0500000US33015 0.00806767791477 295872 0.211716553104 1
2084 NH Portsmouth 0500000US33015 0.013816785637 295872 0.211716553104 1
2085 NH Raymond 0500000US33015 0.00889573869782 295872 0.211716553104 1
2086 NH Rye 0500000US33015 0.00633044019035 295872 0.211716553104 1
2087 NH Salem 0500000US33015 0.0280019738265 295872 0.211716553104 1
2088 NH Sandown 0500000US33015 0.00649605234696 295872 0.211716553104 1
2089 NH Seabrook 0500000US33015 0.00747282608696 295872 0.211716553104 1
2090 NH South Hampton 0500000US33015 0.00108830845771 295872 0.211716553104 1
2091 NH Stratham 0500000US33015 0.00809471663422 295872 0.211716553104 1
2092 NH Windham 0500000US33015 0.0176562837984 295872 0.211716553104 1
2093 NH Barrington 0500000US33017 0.0184192384119 123295 0.143801451803 1
2094 NH Dover 0500000US33017 0.0499776957703 123295 0.143801451803 1
2095 NH Durham 0500000US33017 0.0179812644471 123295 0.143801451803 1
2096 NH Farmington 0500000US33017 0.0115900888114 123295 0.143801451803 1
2097 NH Lee 0500000US33017 0.00746988928991 123295 0.143801451803 1
2098 NH Madbury 0500000US33017 0.00377955310434 123295 0.143801451803 1
2099 NH Middleton 0500000US33017 0.0035605661219 123295 0.143801451803 1
2100 NH Milton 0500000US33017 0.00911634697271 123295 0.143801451803 1
2101 NH New Durham 0500000US33017 0.00721034916258 123295 0.143801451803 1
2102 NH Rochester 0500000US33017 0.0552820471228 123295 0.143801451803 1
2103 NH Rollinsford 0500000US33017 0.00551522770591 123295 0.143801451803 1
2104 NH Somersworth 0500000US33017 0.0174459629344 123295 0.143801451803 1
2105 NH Strafford 0500000US33017 0.00984630358084 123295 0.143801451803 1
2106 NH Berlin 0500000US33007 0.0379654417133 32872 0.143982720857 1
2107 NH Carroll 0500000US33007 0.00687515210514 32872 0.143982720857 1
2108 NH Clarksville 0500000US33007 0.00252494524215 32872 0.143982720857 1
2109 NH Colebrook 0500000US33007 0.015393039669 32872 0.143982720857 1
2110 NH Columbia 0500000US33007 0.00556704794354 32872 0.143982720857 1
2111 NH Dalton 0500000US33007 0.00730104648333 32872 0.143982720857 1
2112 NH Dixville 0500000US33007 0.000152105135069 32872 0.143982720857 1
2113 NH Dummer 0500000US33007 0.0024032611341 32872 0.143982720857 1
2114 NH Errol 0500000US33007 0.00292041859333 32872 0.143982720857 1
2115 NH Gorham 0500000US33007 0.0159406181553 32872 0.143982720857 1
2116 NH Jefferson 0500000US33007 0.00946093940131 32872 0.143982720857 1
2117 NH Lancaster 0500000US33007 0.0225724020443 32872 0.143982720857 1
2118 NH Milan 0500000US33007 0.00860915064493 32872 0.143982720857 1
2119 NH Millsfield 0500000US33007 0.000486736432222 32872 0.143982720857 1
2120 NH Northumberland 0500000US33007 0.0111340958871 32872 0.143982720857 1
2121 NH Pittsburg 0500000US33007 0.0096434655634 32872 0.143982720857 1
2122 NH Randolph 0500000US33007 0.00234241908007 32872 0.143982720857 1
2123 NH Shelburne 0500000US33007 0.00358968118764 32872 0.143982720857 1
2124 NH Stark 0500000US33007 0.00404599659284 32872 0.143982720857 1
2125 NH Stewartstown 0500000US33007 0.00587125821368 32872 0.143982720857 1
2126 NH Stratford 0500000US33007 0.00319420783646 32872 0.143982720857 1
2127 NH Wentworth's Location 0500000US33007 0.00039547335118 32872 0.143982720857 1
2128 NH Whitefield 0500000US33007 0.0145412509126 32872 0.143982720857 1
2129 NJ Atlantic 0500000US34001 0.15276127725 274402 0.0288882734091 2
2130 NJ Atlantic 0500000US34001 0.15276127725 274402 0.0288882734091 2
2131 NJ Bergen 0500000US34003 0.171228775195 906781 0.0227364710994 2
2132 NJ Bergen 0500000US34003 0.171228775195 906781 0.0227364710994 2
2133 NJ Burlington 0500000US34005 0.176145636883 449117 0.0279927056869 2
2134 NJ Burlington 0500000US34005 0.176145636883 449117 0.0279927056869 2
2135 NJ Camden 0500000US34007 0.123289724721 513660 0.0124362418721 2
2136 NJ Camden 0500000US34007 0.123289724721 513660 0.0124362418721 2
2137 NJ Cape May 0500000US34009 0.262798106963 96987 0.065874807964 2
2138 NJ Cape May 0500000US34009 0.262798106963 96987 0.065874807964 2
2139 NJ Cumberland 0500000US34011 0.119638667891 156864 0.016147745818 2
2140 NJ Cumberland 0500000US34011 0.119638667891 156864 0.016147745818 2
2141 NJ Essex 0500000US34013 0.0785810879771 783840 0.00929909165136 2
2142 NJ Essex 0500000US34013 0.0785810879771 783840 0.00929909165136 2
2143 NJ Gloucester 0500000US34015 0.204433232589 288187 0.0251364565369 2
2144 NJ Gloucester 0500000US34015 0.204433232589 288187 0.0251364565369 2
2145 NJ Hudson 0500000US34017 0.0598590995828 636194 0.00682810589223 2
2146 NJ Hudson 0500000US34017 0.0598590995828 636194 0.00682810589223 2
2147 NJ Hunterdon 0500000US34019 0.288907465858 127996 0.0763383230726 2
2148 NJ Hunterdon 0500000US34019 0.288907465858 127996 0.0763383230726 2
2149 NJ Mercer 0500000US34021 0.117767613974 366442 0.0149355150338 2
2150 NJ Mercer 0500000US34021 0.117767613974 366442 0.0149355150338 2
2151 NJ Middlesex 0500000US34023 0.126342680726 811064 0.0135377726049 2
2152 NJ Middlesex 0500000US34023 0.126342680726 811064 0.0135377726049 2
2153 NJ Monmouth 0500000US34025 0.223080015828 629263 0.0317466623653 2
2154 NJ Monmouth 0500000US34025 0.223080015828 629263 0.0317466623653 2
2155 NJ Morris 0500000US34027 0.231553158031 493472 0.059551504442 2
2156 NJ Morris 0500000US34027 0.231553158031 493472 0.059551504442 2
2157 NJ Ocean 0500000US34029 0.240630876049 575961 0.0406277508373 2
2158 NJ Ocean 0500000US34029 0.240630876049 575961 0.0406277508373 2
2159 NJ Passaic 0500000US34031 0.118322243726 500168 0.0211728859103 2
2160 NJ Passaic 0500000US34031 0.118322243726 500168 0.0211728859103 2
2161 NJ Salem 0500000US34033 0.215340797188 66007 0.0280273304347 2
2162 NJ Salem 0500000US34033 0.215340797188 66007 0.0280273304347 2
2163 NJ Somerset 0500000US34035 0.19514599104 323650 0.0416035841186 2
2164 NJ Somerset 0500000US34035 0.19514599104 323650 0.0416035841186 2
2165 NJ Sussex 0500000US34037 0.249828815403 148962 0.0716290060552 2
2166 NJ Sussex 0500000US34037 0.249828815403 148962 0.0716290060552 2
2167 NJ Union 0500000US34039 0.123898408413 536383 0.0175527561463 2
2168 NJ Union 0500000US34039 0.123898408413 536383 0.0175527561463 2
2169 NJ Warren 0500000US34041 0.227628862178 108488 0.0649749281026 2
2170 NJ Warren 0500000US34041 0.227628862178 108488 0.0649749281026 2
2171 NM Bernalillo 0500000US35001 0.157483336456 661924 0.042302439555 6
2172 NM Bernalillo 0500000US35001 0.157483336456 661924 0.042302439555 6
2173 NM Catron 0500000US35003 0.399891481281 3686 0.156809549647 6
2174 NM Catron 0500000US35003 0.399891481281 3686 0.156809549647 6
2175 NM Chaves 0500000US35005 0.20309750088 65343 0.0762438210673 6
2176 NM Chaves 0500000US35005 0.20309750088 65343 0.0762438210673 6
2177 NM Cibola 0500000US35006 0.108672553402 27293 0.0274062946543 6
2178 NM Cibola 0500000US35006 0.108672553402 27293 0.0274062946543 6
2179 NM Colfax 0500000US35007 0.202952842662 13614 0.0545027177905 6
2180 NM Colfax 0500000US35007 0.202952842662 13614 0.0545027177905 6
2181 NM Curry 0500000US35009 0.190224735452 48101 0.0741148832665 6
2182 NM Curry 0500000US35009 0.190224735452 48101 0.0741148832665 6
2183 NM DeBaca 0500000US35011 0.283228612856 2069 0.0647655872402 6
2184 NM DeBaca 0500000US35011 0.283228612856 2069 0.0647655872402 6
2185 NM Dona Ana 0500000US35013 0.129256587833 208794 0.0237650507198 6
2186 NM Dona Ana 0500000US35013 0.129256587833 208794 0.0237650507198 6
2187 NM Eddy 0500000US35015 0.233661743616 53693 0.0500251429423 6
2188 NM Eddy 0500000US35015 0.233661743616 53693 0.0500251429423 6
2189 NM Grant 0500000US35017 0.178569015607 29602 0.0434767921086 6
2190 NM Grant 0500000US35017 0.178569015607 29602 0.0434767921086 6
2191 NM Guadalupe 0500000US35019 0.111278195489 4655 0.0272824919441 6
2192 NM Guadalupe 0500000US35019 0.111278195489 4655 0.0272824919441 6
2193 NM Harding 0500000US35021 0.532679738562 612 0.328431372549 6
2194 NM Harding 0500000US35021 0.532679738562 612 0.328431372549 6
2195 NM Hidalgo 0500000US35023 0.182541301244 4903 0.0456863145013 6
2196 NM Hidalgo 0500000US35023 0.182541301244 4903 0.0456863145013 6
2197 NM Lea 0500000US35025 0.192979743312 64670 0.0508736663059 6
2198 NM Lea 0500000US35025 0.192979743312 64670 0.0508736663059 6
2199 NM Lincoln 0500000US35027 0.29060665362 20440 0.12133072407 6
2200 NM Lincoln 0500000US35027 0.29060665362 20440 0.12133072407 6
2201 NM Los Alamos 0500000US35028 0.266326077299 18008 0.0886272767659 6
2202 NM Los Alamos 0500000US35028 0.266326077299 18008 0.0886272767659 6
2203 NM Luna 0500000US35029 0.145218981003 25162 0.0404975757094 6
2204 NM Luna 0500000US35029 0.145218981003 25162 0.0404975757094 6
2205 NM McKinley 0500000US35031 0.0753950589806 71888 0.0191269752949 6
2206 NM McKinley 0500000US35031 0.0753950589806 71888 0.0191269752949 6
2207 NM Mora 0500000US35033 0.122360248447 4830 0.0412008281573 6
2208 NM Mora 0500000US35033 0.122360248447 4830 0.0412008281573 6
2209 NM Otero 0500000US35035 0.190398279731 64176 0.072721889803 6
2210 NM Otero 0500000US35035 0.190398279731 64176 0.072721889803 6
2211 NM Quay 0500000US35037 0.244975435462 8956 0.0830728003573 6
2212 NM Quay 0500000US35037 0.244975435462 8956 0.0830728003573 6
2213 NM Rio Arriba 0500000US35039 0.0839033854879 40201 0.0174622521828 6
2214 NM Rio Arriba 0500000US35039 0.0839033854879 40201 0.0174622521828 6
2215 NM Roosevelt 0500000US35041 0.203225806452 19840 0.0634576612903 6
2216 NM Roosevelt 0500000US35041 0.203225806452 19840 0.0634576612903 6
2217 NM Sandoval 0500000US35043 0.183729113037 131302 0.0443100638223 6
2218 NM Sandoval 0500000US35043 0.183729113037 131302 0.0443100638223 6
2219 NM San Juan 0500000US35045 0.223786936236 128600 0.0712130637636 6
2220 NM San Juan 0500000US35045 0.223786936236 128600 0.0712130637636 6
2221 NM San Miguel 0500000US35047 0.0780496150556 29225 0.0184088964927 6
2222 NM San Miguel 0500000US35047 0.0780496150556 29225 0.0184088964927 6
2223 NM Santa Fe 0500000US35049 0.105021184531 144209 0.0244228862276 6
2224 NM Santa Fe 0500000US35049 0.105021184531 144209 0.0244228862276 6
2225 NM Sierra 0500000US35051 0.244897959184 11956 0.0886584141853 6
2226 NM Sierra 0500000US35051 0.244897959184 11956 0.0886584141853 6
2227 NM Socorro 0500000US35053 0.151207756543 17843 0.049655327019 6
2228 NM Socorro 0500000US35053 0.151207756543 17843 0.049655327019 6
2229 NM Taos 0500000US35055 0.0826849733028 32775 0.0232494279176 6
2230 NM Taos 0500000US35055 0.0826849733028 32775 0.0232494279176 6
2231 NM Torrance 0500000US35057 0.216211237335 16285 0.0690205710777 6
2232 NM Torrance 0500000US35057 0.216211237335 16285 0.0690205710777 6
2233 NM Union 0500000US35059 0.27600896861 4460 0.0896860986547 6
2234 NM Union 0500000US35059 0.27600896861 4460 0.0896860986547 6
2235 NM Valencia 0500000US35061 0.167883211679 76172 0.0391613716326 6
2236 NM Valencia 0500000US35061 0.167883211679 76172 0.0391613716326 6
2237 NV Carson City 0500000US32510 0.224594085242 55184 0.0314946361264 8
2238 NV Churchill 0500000US32001 0.284959037895 24779 0.0308729165826 8
2239 NV Clark 0500000US32003 0.147445764802 1954773 0.00869359255525 8
2240 NV Douglas 0500000US32005 0.345630737844 47056 0.0429913294798 8
2241 NV Elko 0500000US32007 0.244499623471 49133 0.0171778641646 8
2242 NV Esmeralda 0500000US32009 0.346069868996 916 0.0633187772926 8
2243 NV Eureka 0500000US32011 0.366500829187 1809 0.0547263681592 8
2244 NV Humboldt 0500000US32013 0.230755254073 16511 0.0172612197929 8
2245 NV Lander 0500000US32015 0.274734828725 5751 0.0318205529473 8
2246 NV Lincoln 0500000US32017 0.320143884892 5282 0.0312381673608 8
2247 NV Lyon 0500000US32019 0.261018977933 51797 0.026545938954 8
2248 NV Mineral 0500000US32021 0.22891055532 4718 0.0218312844426 8
2249 NV Nye 0500000US32023 0.241227369238 43801 0.0226250542225 8
2250 NV Pershing 0500000US32027 0.173997316237 6707 0.0228119874758 8
2251 NV Storey 0500000US32029 0.329426433915 4010 0.0468827930175 8
2252 NV Washoe 0500000US32031 0.208883675742 422010 0.0158692921969 8
2253 NV White Pine 0500000US32033 0.260961171867 9967 0.0233771445771 8
2254 NY Albany 0500000US36001 0.138021286587 304511 0.00888966244241 2
2255 NY Allegany 0500000US36003 0.196756557528 48837 0.0169134058194 2
2256 NY Bronx 0500000US36005 0.0189733720726 1386364 0.000975934170247 2
2257 NY Brooklyn 0500000US36047 0.0432316913011 2512740 0.00186211068395 2
2258 NY Broome 0500000US36007 0.174452803009 199928 0.0200472169981 2
2259 NY Cattaraugus 0500000US36009 0.192176234314 80166 0.0126861761844 2
2260 NY Cayuga 0500000US36011 0.14194459723 79996 0.0165883294165 2
2261 NY Chautauqua 0500000US36013 0.191643325731 134599 0.0130461593325 2
2262 NY Chemung 0500000US36015 0.182554432918 88779 0.0211874429764 2
2263 NY Chenango 0500000US36017 0.176926123985 50490 0.0191919191919 2
2264 NY Clinton 0500000US36019 0.122529066225 82054 0.0075316255149 2
2265 NY Columbia 0500000US36021 0.178018797411 62881 0.0173979421447 2
2266 NY Cortland 0500000US36023 0.15946454209 49453 0.012941580895 2
2267 NY Delaware 0500000US36025 0.18986019101 47851 0.0207101210006 2
2268 NY Dutchess 0500000US36027 0.175989182316 297291 0.0141780275891 2
2269 NY Erie 0500000US36029 0.173649490725 919542 0.0080822844416 2
2270 NY Essex 0500000US36031 0.165229336793 39309 0.0191559184919 2
2271 NY Franklin 0500000US36033 0.10151263105 51698 0.0080660760571 2
2272 NY Fulton 0500000US36035 0.177228223563 55358 0.0220383684382 2
2273 NY Genesee 0500000US36037 0.228380450727 59992 0.0154353913855 2
2274 NY Greene 0500000US36039 0.20225153699 49122 0.0165099140914 2
2275 NY Hamilton 0500000US36041 0.341675284385 4835 0.0694932781799 2
2276 NY Herkimer 0500000US36043 0.192151996898 64475 0.0182861574254 2
2277 NY Jefferson 0500000US36045 0.139123672133 117011 0.0101272529933 2
2278 NY Lewis 0500000US36049 0.187827950632 27062 0.0151134432045 2
2279 NY Livingston 0500000US36051 0.202560760561 65215 0.0158245802346 2
2280 NY Madison 0500000US36053 0.172807870973 72977 0.0166079723749 2
2281 NY Manhattan 0500000US36061 0.0452798992945 1596735 0.00332929384024 2
2282 NY Monroe 0500000US36055 0.167532286175 744746 0.0128741879782 2
2283 NY Montgomery 0500000US36057 0.172353823088 50025 0.0136131934033 2
2284 NY Nassau 0500000US36059 0.159020013266 1338712 0.012204267983 2
2285 NY Niagara 0500000US36063 0.187136643057 215869 0.0113402109613 2
2286 NY Oneida 0500000US36065 0.177689300833 234336 0.0150467704493 2
2287 NY Onondaga 0500000US36067 0.156178206226 466179 0.0137329223324 2
2288 NY Ontario 0500000US36069 0.20419946532 107728 0.0167458785088 2
2289 NY Orange 0500000US36071 0.163517459398 372951 0.0133288287201 2
2290 NY Orleans 0500000US36073 0.18783579486 42995 0.0121874636586 2
2291 NY Oswego 0500000US36075 0.151595592151 122055 0.014411535783 2
2292 NY Otsego 0500000US36077 0.16938870742 62147 0.014980610488 2
2293 NY Putnam 0500000US36079 0.225030591162 99702 0.0151150428276 2
2294 NY Queens 0500000US36081 0.0461711993872 2235008 0.00270245117691 2
2295 NY Rensselaer 0500000US36083 0.170822254553 159464 0.00983921135805 2
2296 NY Rockland 0500000US36087 0.16966068504 312011 0.00923685382887 2
2297 NY Saint Lawrence 0500000US36089 0.124165625558 112060 0.0121988220596 2
2298 NY Saratoga 0500000US36091 0.213021762073 219832 0.0192510644492 2
2299 NY Schenectady 0500000US36093 0.159310139448 154466 0.0121709631893 2
2300 NY Schoharie 0500000US36095 0.20998252445 32617 0.0166477603704 2
2301 NY Schuyler 0500000US36097 0.213404071026 18472 0.0304244261585 2
2302 NY Seneca 0500000US36099 0.153090126324 35306 0.0169093071999 2
2303 NY Staten Island 0500000US36085 0.141809750328 468374 0.00790394001375 2
2304 NY Steuben 0500000US36101 0.206329804429 98992 0.0229917569096 2
2305 NY Suffolk 0500000US36103 0.173783805516 1492360 0.0120714840923 2
2306 NY Sullivan 0500000US36105 0.144142746315 77340 0.0100853374709 2
2307 NY Tioga 0500000US36107 0.220847122408 51067 0.0243993185423 2
2308 NY Tompkins 0500000US36109 0.100443044206 101570 0.0111942502707 2
2309 NY Ulster 0500000US36111 0.149795086458 182516 0.0100155602796 2
2310 NY Warren 0500000US36113 0.191339421613 65700 0.0216894977169 2
2311 NY Washington 0500000US36115 0.162483361856 63108 0.0166222982823 2
2312 NY Wayne 0500000US36117 0.195932645813 93476 0.0172343703197 2
2313 NY Westchester 0500000US36119 0.114401085214 950227 0.00873896447901 2
2314 NY Wyoming 0500000US36121 0.231065285565 42092 0.0142544901644 2
2315 NY Yates 0500000US36123 0.16843517021 25351 0.0219715198611 2
2316 OH Adams 0500000US39001 0.234574393493 28524 0.144509886411 3
2317 OH Allen 0500000US39003 0.271514625892 106079 0.150830984455 3
2318 OH Ashland 0500000US39005 0.286168073229 53203 0.128225851926 3
2319 OH Ashtabula 0500000US39007 0.176670419308 101262 0.0882660820446 3
2320 OH Athens 0500000US39009 0.12568119891 64592 0.0489534307654 3
2321 OH Auglaize 0500000US39011 0.365785692515 45934 0.150084904428 3
2322 OH Belmont 0500000US39013 0.233934627112 70182 0.074762759682 3
2323 OH Brown 0500000US39015 0.261294944701 44666 0.13079299691 3
2324 OH Butler 0500000US39017 0.277766154298 368029 0.102709297365 3
2325 OH Carroll 0500000US39019 0.248959345081 28828 0.121305675038 3
2326 OH Champaign 0500000US39021 0.296433395028 39982 0.152418588365 3
2327 OH Clark 0500000US39023 0.225024949739 138278 0.104246517884 3
2328 OH Clermont 0500000US39025 0.316523491088 197543 0.14665667728 3
2329 OH Clinton 0500000US39027 0.278456393349 42161 0.13045231375 3
2330 OH Columbiana 0500000US39029 0.230283090764 107598 0.0997044554732 3
2331 OH Coshocton 0500000US39031 0.225379609544 36880 0.118790672451 3
2332 OH Crawford 0500000US39033 0.265020745937 43623 0.144304609953 3
2333 OH Cuyahoga 0500000US39035 0.144343924684 1278024 0.0657123809882 3
2334 OH Darke 0500000US39037 0.336232378354 52776 0.184724117023 3
2335 OH Defiance 0500000US39039 0.254906991661 38975 0.151327774214 3
2336 OH Delaware 0500000US39041 0.33808339161 174454 0.165075034106 3
2337 OH Erie 0500000US39043 0.216433620959 76952 0.0923302838133 3
2338 OH Fairfield 0500000US39045 0.274630828395 146138 0.142303849786 3
2339 OH Fayette 0500000US39047 0.223151636653 28931 0.133178943002 3
2340 OH Franklin 0500000US39049 0.178110363825 1167484 0.0834795166358 3
2341 OH Fulton 0500000US39051 0.270223994371 42635 0.179148586842 3
2342 OH Gallia 0500000US39053 0.191469378502 30877 0.157625416977 3
2343 OH Geauga 0500000US39055 0.322019575333 93485 0.17940846125 3
2344 OH Greene 0500000US39057 0.300631113526 161936 0.174698646379 3
2345 OH Guernsey 0500000US39059 0.219967046135 40056 0.109097263831 3
2346 OH Hamilton 0500000US39061 0.23541898047 801350 0.099497098646 3
2347 OH Hancock 0500000US39063 0.294191330304 75043 0.17034233706 3
2348 OH Hardin 0500000US39065 0.229381604452 31986 0.139529794285 3
2349 OH Harrison 0500000US39067 0.248830446327 15818 0.110759893792 3
2350 OH Henry 0500000US39069 0.287155703462 28246 0.176520569284 3
2351 OH Highland 0500000US39071 0.253877663736 43454 0.130459796566 3
2352 OH Hocking 0500000US39073 0.209383085932 29372 0.0898474737846 3
2353 OH Holmes 0500000US39075 0.201477612291 42501 0.0961624432366 3
2354 OH Huron 0500000US39077 0.215016435232 59628 0.0918192795331 3
2355 OH Jackson 0500000US39079 0.230910846864 33134 0.145349188145 3
2356 OH Jefferson 0500000US39081 0.241250018026 69343 0.110436525677 3
2357 OH Knox 0500000US39083 0.277557533187 60791 0.163445246829 3
2358 OH Lake 0500000US39085 0.248615539885 229873 0.111061325167 3
2359 OH Lawrence 0500000US39087 0.230153264682 62441 0.119616918371 3
2360 OH Licking 0500000US39089 0.262461251392 166135 0.140765040479 3
2361 OH Logan 0500000US39091 0.290793609219 45816 0.145473197136 3
2362 OH Lorain 0500000US39093 0.192937417804 301108 0.0795462093335 3
2363 OH Lucas 0500000US39095 0.1543524676 441198 0.0629581276434 3
2364 OH Madison 0500000US39097 0.236387198297 43213 0.130724550482 3
2365 OH Mahoning 0500000US39099 0.174959723434 238352 0.0627978787675 3
2366 OH Marion 0500000US39101 0.2095498692 66514 0.100264605948 3
2367 OH Medina 0500000US39103 0.287024034723 172334 0.134506249492 3
2368 OH Meigs 0500000US39105 0.244337390128 23664 0.174526707235 3
2369 OH Mercer 0500000US39107 0.396588851368 40866 0.155018842069 3
2370 OH Miami 0500000US39109 0.327790603661 102657 0.144724665634 3
2371 OH Monroe 0500000US39111 0.241160842019 14679 0.073642618707 3
2372 OH Montgomery 0500000US39113 0.226254886805 535626 0.105448577926 3
2373 OH Morgan 0500000US39115 0.208482914506 15042 0.146788990826 3
2374 OH Morrow 0500000US39117 0.276887806276 34895 0.140535893394 3
2375 OH Muskingum 0500000US39119 0.218917158938 85996 0.104376947765 3
2376 OH Noble 0500000US39121 0.238885474288 14643 0.120603701427 3
2377 OH Ottawa 0500000US39123 0.249077090119 41445 0.116009168778 3
2378 OH Paulding 0500000US39125 0.26882491548 19522 0.131082880852 3
2379 OH Perry 0500000US39127 0.207781411074 36086 0.102560549798 3
2380 OH Pickaway 0500000US39129 0.245774710996 55795 0.137359978493 3
2381 OH Pike 0500000US39131 0.193180231746 28652 0.0678486667597 3
2382 OH Portage 0500000US39133 0.213831912544 161178 0.0874995346759 3
2383 OH Preble 0500000US39135 0.312547348485 42240 0.156723484848 3
2384 OH Putnam 0500000US39137 0.393758165191 34445 0.165219915808 3
2385 OH Richland 0500000US39139 0.265975250632 124286 0.125742239673 3
2386 OH Ross 0500000US39141 0.187571551691 77741 0.0888205708699 3
2387 OH Sandusky 0500000US39143 0.221738272904 60842 0.121379967785 3
2388 OH Scioto 0500000US39145 0.189871337934 79122 0.0794469300574 3
2389 OH Seneca 0500000US39147 0.230001765848 56630 0.141515098005 3
2390 OH Shelby 0500000US39149 0.338337486578 49359 0.144208756255 3
2391 OH Stark 0500000US39151 0.231521886723 375593 0.101817659009 3
2392 OH Summit 0500000US39153 0.200631981513 541788 0.077618921054 3
2393 OH Trumbull 0500000US39155 0.178835106839 209942 0.0724057120538 3
2394 OH Tuscarawas 0500000US39157 0.23148748541 92532 0.0817879220162 3
2395 OH Union 0500000US39159 0.305773397503 52153 0.134335512818 3
2396 OH Van Wert 0500000US39161 0.327443765621 28808 0.180366564843 3
2397 OH Vinton 0500000US39163 0.208852728223 13397 0.101963126073 3
2398 OH Warren 0500000US39165 0.350116821334 213146 0.142292137783 3
2399 OH Washington 0500000US39167 0.274019853929 61751 0.131188158896 3
2400 OH Wayne 0500000US39169 0.256882174383 114644 0.146191689055 3
2401 OH Williams 0500000US39171 0.261070965351 37779 0.194208422669 3
2402 OH Wood 0500000US39173 0.229671931186 126254 0.117810128788 3
2403 OH Wyandot 0500000US39175 0.267568284275 22626 0.139308759834 3
2404 OK Adair 0500000US40001 0.194125500668 22470 0.0389853137517 6
2405 OK Alfalfa 0500000US40003 0.273308470964 5631 0.127863612147 6
2406 OK Atoka 0500000US40005 0.250053067289 14133 0.0275949904479 6
2407 OK Beaver 0500000US40007 0.368176123143 5587 0.135851082871 6
2408 OK Beckham 0500000US40009 0.244060571073 22519 0.0397442159954 6
2409 OK Blaine 0500000US40011 0.265139423528 10651 0.0966106468876 6
2410 OK Bryan 0500000US40013 0.216218760296 42494 0.0306866851791 6
2411 OK Caddo 0500000US40015 0.192497364215 29403 0.0347923681257 6
2412 OK Canadian 0500000US40017 0.306236511062 116299 0.112571905175 6
2413 OK Carter 0500000US40019 0.256559460538 47603 0.0475810348087 6
2414 OK Cherokee 0500000US40021 0.17281882752 47165 0.041853069013 6
2415 OK Choctaw 0500000US40023 0.235433693646 15172 0.0230029000791 6
2416 OK Cimarron 0500000US40025 0.44145246838 2451 0.175030599755 6
2417 OK Cleveland 0500000US40027 0.230048723446 256550 0.0842408887156 6
2418 OK Coal 0500000US40029 0.289366745682 5906 0.0298002031832 6
2419 OK Comanche 0500000US40031 0.143435065515 123101 0.0358242418827 6
2420 OK Cotton 0500000US40033 0.291038729541 6171 0.0309512234646 6
2421 OK Craig 0500000US40035 0.238037796542 14922 0.0517356922665 6
2422 OK Creek 0500000US40037 0.271169960248 69934 0.0918580375783 6
2423 OK Custer 0500000US40039 0.269803864699 27583 0.0676503643549 6
2424 OK Delaware 0500000US40041 0.243298170909 41332 0.072582986548 6
2425 OK Dewey 0500000US40043 0.370471204188 4775 0.0952879581152 6
2426 OK Ellis 0500000US40045 0.384615384615 4095 0.145299145299 6
2427 OK Garfield 0500000US40047 0.251791876825 60272 0.104094770374 6
2428 OK Garvin 0500000US40049 0.251974809799 27471 0.057551599869 6
2429 OK Grady 0500000US40051 0.282511296257 52451 0.0758040838116 6
2430 OK Grant 0500000US40053 0.369047619048 4536 0.141754850088 6
2431 OK Greer 0500000US40055 0.217299919159 6185 0.0282942603072 6
2432 OK Harmon 0500000US40057 0.228185595568 2888 0.0225069252078 6
2433 OK Harper 0500000US40059 0.343409586057 3672 0.133986928105 6
2434 OK Haskell 0500000US40061 0.240498393543 12761 0.0254682234935 6
2435 OK Hughes 0500000US40063 0.206074698445 13762 0.028266240372 6
2436 OK Jackson 0500000US40065 0.226907706946 26275 0.0504662226451 6
2437 OK Jefferson 0500000US40067 0.253219550039 6445 0.0259115593483 6
2438 OK Johnston 0500000US40069 0.241726092521 10938 0.0384896690437 6
2439 OK Kay 0500000US40071 0.248401313515 46288 0.0959427929485 6
2440 OK Kingfisher 0500000US40073 0.301369863014 14965 0.117206815904 6
2441 OK Kiowa 0500000US40075 0.245090754697 9421 0.0407600042458 6
2442 OK Latimer 0500000US40077 0.23605730246 11099 0.0214433732769 6
2443 OK LeFlore 0500000US40079 0.22319002717 50056 0.0315047147195 6
2444 OK Lincoln 0500000US40081 0.27977481968 34106 0.0884301882367 6
2445 OK Logan 0500000US40083 0.292911247678 41982 0.115763898814 6
2446 OK Love 0500000US40085 0.259038706933 9404 0.0327520204168 6
2447 OK McClain 0500000US40087 0.322241884483 34471 0.0898726465725 6
2448 OK McCurtain 0500000US40089 0.230298093169 33144 0.0202751629254 6
2449 OK McIntosh 0500000US40091 0.221948090398 20266 0.0394749827297 6
2450 OK Major 0500000US40093 0.357001190004 7563 0.168848340606 6
2451 OK Marshall 0500000US40095 0.237352605553 15774 0.0392417902878 6
2452 OK Mayes 0500000US40097 0.234050823575 41162 0.0663961906613 6
2453 OK Murray 0500000US40099 0.267904903418 13460 0.0376671619614 6
2454 OK Muskogee 0500000US40101 0.189594393714 70635 0.0430381538897 6
2455 OK Noble 0500000US40103 0.301906412478 11540 0.119670710572 6
2456 OK Nowata 0500000US40105 0.266491013456 10627 0.0778206455255 6
2457 OK Okfuskee 0500000US40107 0.190772760797 12203 0.0385970662952 6
2458 OK Okmulgee 0500000US40111 0.193915011315 39770 0.0464671863213 6
2459 OK Osage 0500000US40113 0.235424973767 47650 0.0714165792235 6
2460 OK Ottawa 0500000US40115 0.202410770194 31940 0.0355353788353 6
2461 OK Pawnee 0500000US40117 0.255113739214 16573 0.0724069269293 6
2462 OK Payne 0500000US40119 0.213510534846 77125 0.0769400324149 6
2463 OK Pittsburg 0500000US40121 0.236668861093 45570 0.034693877551 6
2464 OK Pontotoc 0500000US40123 0.238287301672 37438 0.044526951226 6
2465 OK Pottawatomie 0500000US40125 0.233078821976 69676 0.0638813938802 6
2466 OK Pushmataha 0500000US40127 0.269630535418 11449 0.0241942527732 6
2467 OK Roger Mills 0500000US40129 0.381185426862 3678 0.0774877650897 6
2468 OK Rogers 0500000US40131 0.316335558594 87031 0.105663499213 6
2469 OK Seminole 0500000US40133 0.191068756399 25394 0.0400882098133 6
2470 OK Sequoyah 0500000US40135 0.228227440696 41945 0.0318512337585 6
2471 OK Stephens 0500000US40137 0.287794327506 44848 0.0634810916875 6
2472 OK Texas 0500000US40139 0.238021338506 20620 0.0742483026188 6
2473 OK Tillman 0500000US40141 0.227164515725 7981 0.0301967172034 6
2474 OK Tulsa 0500000US40143 0.240434583502 602692 0.0994571024669 6
2475 OK Wagoner 0500000US40145 0.285327165478 73067 0.101824352991 6
2476 OK Washington 0500000US40147 0.306522930036 51112 0.129715135389 6
2477 OK Washita 0500000US40149 0.299758953168 11616 0.0578512396694 6
2478 OK Woods 0500000US40151 0.311749227777 8741 0.116233840522 6
2479 OK Woodward 0500000US40153 0.293396599446 20232 0.0928232502966 6
2480 OR Baker 0500000US41001 0.35371613224 16092 0.148272433507 8
2481 OR Benton 0500000US41003 0.17452427457 85501 0.0658003999953 8
2482 OR Clackamas 0500000US41005 0.232103943203 377206 0.0786944004072 8
2483 OR Clatsop 0500000US41007 0.191566850113 37068 0.0884590482357 8
2484 OR Columbia 0500000US41009 0.215848490379 49317 0.0692864529473 8
2485 OR Coos 0500000US41011 0.228768450991 62937 0.0938239827129 8
2486 OR Crook 0500000US41013 0.320775281964 21102 0.13775945408 8
2487 OR Curry 0500000US41015 0.294351951307 22344 0.140529896169 8
2488 OR Deschutes 0500000US41017 0.255972911055 158884 0.102930439818 8
2489 OR Douglas 0500000US41019 0.28482833757 107391 0.132133977708 8
2490 OR Gilliam 0500000US41021 0.334558823529 1904 0.161764705882 8
2491 OR Grant 0500000US41023 0.386641325007 7366 0.20173771382 8
2492 OR Harney 0500000US41025 0.35317298546 7359 0.185487158581 8
2493 OR Hood River 0500000US41027 0.153104876841 22207 0.0792542891881 8
2494 OR Jackson 0500000US41029 0.230702361833 203613 0.0869541728672 8
2495 OR Jefferson 0500000US41031 0.210429504277 21746 0.093304515773 8
2496 OR Josephine 0500000US41033 0.286025461058 82636 0.145360375623 8
2497 OR Klamath 0500000US41035 0.281145440844 66350 0.141582516956 8
2498 OR Lake 0500000US41037 0.35518640629 7886 0.190717727619 8
2499 OR Lane 0500000US41039 0.173337237133 351794 0.0621812765425 8
2500 OR Lincoln 0500000US41041 0.187489128544 45992 0.0718385806227 8
2501 OR Linn 0500000US41043 0.243704597377 116871 0.0783941268578 8
2502 OR Malheur 0500000US41045 0.217374504943 31057 0.123514827575 8
2503 OR Marion 0500000US41047 0.185277956568 315391 0.0621704487446 8
2504 OR Morrow 0500000US41049 0.226448950296 11146 0.0975237753454 8
2505 OR Multnomah 0500000US41051 0.0976068700737 737110 0.0336869666671 8
2506 OR Polk 0500000US41053 0.230317569717 75448 0.0757342805641 8
2507 OR Sherman 0500000US41055 0.363002680965 1865 0.192493297587 8
2508 OR Tillamook 0500000US41057 0.224518888097 25254 0.108220479924 8
2509 OR Umatilla 0500000US41059 0.203372623474 75846 0.0818105107718 8
2510 OR Union 0500000US41061 0.296377093884 25670 0.140163615115 8
2511 OR Wallowa 0500000US41063 0.402997982127 6938 0.241279907754 8
2512 OR Wasco 0500000US41065 0.205152709752 25113 0.0814717477004 8
2513 OR Washington 0500000US41067 0.162745525725 531818 0.0538642919194 8
2514 OR Wheeler 0500000US41069 0.421134421134 1287 0.241647241647 8
2515 OR Yamhill 0500000US41071 0.21903974011 99119 0.0851905285566 8
2516 PA Adams 0500000US42001 0.261366327256 101352 0.0895591601547 2
2517 PA Allegheny 0500000US42003 0.21171613982 1224772 0.0512168795498 2
2518 PA Armstrong 0500000US42005 0.278944620115 68942 0.0944707145136 2
2519 PA Beaver 0500000US42007 0.246861336115 170614 0.0555991888122 2
2520 PA Bedford 0500000US42009 0.332306763285 49680 0.100362318841 2
2521 PA Berks 0500000US42011 0.196687375637 411094 0.0600276335826 2
2522 PA Blair 0500000US42013 0.24777201828 127133 0.0940983064979 2
2523 PA Bradford 0500000US42015 0.220779842882 62628 0.0883470652104 2
2524 PA Bucks 0500000US42017 0.249208214426 625485 0.0664572291901 2
2525 PA Butler 0500000US42019 0.323007839257 183946 0.0876887782284 2
2526 PA Cambria 0500000US42021 0.233515927567 143305 0.0574439133317 2
2527 PA Cameron 0500000US42023 0.249901146698 5058 0.0954922894425 2
2528 PA Carbon 0500000US42025 0.195235096235 65101 0.0642540053148 2
2529 PA Centre 0500000US42027 0.219156076432 153758 0.0671119551503 2
2530 PA Chester 0500000US42029 0.246783091915 499548 0.0741009872925 2
2531 PA Clarion 0500000US42031 0.255757545448 39991 0.0978220099522 2
2532 PA Clearfield 0500000US42033 0.248604104423 81668 0.0774966939315 2
2533 PA Clinton 0500000US42035 0.176791217748 39261 0.0584294847304 2
2534 PA Columbia 0500000US42037 0.200719574824 66984 0.0629254747402 2
2535 PA Crawford 0500000US42039 0.22032500113 88492 0.0784025674637 2
2536 PA Cumberland 0500000US42041 0.273528136872 235314 0.114442829581 2
2537 PA Dauphin 0500000US42043 0.212168381917 267891 0.093388728998 2
2538 PA Delaware 0500000US42045 0.188360882775 558874 0.0761191252411 2
2539 PA Elk 0500000US42047 0.221975547982 31981 0.0629123542103 2
2540 PA Erie 0500000US42049 0.164543634294 280181 0.0584764848437 2
2541 PA Fayette 0500000US42051 0.18876813182 136914 0.0340724834568 2
2542 PA Forest 0500000US42053 0.180193110647 7664 0.0670668058455 2
2543 PA Franklin 0500000US42055 0.288002995574 149554 0.0864370060313 2
2544 PA Fulton 0500000US42057 0.32234135815 14829 0.090970395846 2
2545 PA Greene 0500000US42059 0.206790283317 38614 0.0484798259699 2
2546 PA Huntingdon 0500000US42061 0.260238183362 45931 0.0845398532581 2
2547 PA Indiana 0500000US42063 0.239001443913 88648 0.0753429293385 2
2548 PA Jefferson 0500000US42065 0.272757541453 45051 0.114869814211 2
2549 PA Juniata 0500000US42067 0.276556925073 24664 0.114498864742 2
2550 PA Lackawanna 0500000US42069 0.162022458281 214353 0.0409278153327 2
2551 PA Lancaster 0500000US42071 0.248818552335 519913 0.0827753874206 2
2552 PA Lawrence 0500000US42073 0.230125983386 90885 0.0615833195797 2
2553 PA Lebanon 0500000US42075 0.254607794697 133578 0.096812349339 2
2554 PA Lehigh 0500000US42077 0.188742449988 350165 0.0531263832765 2
2555 PA Luzerne 0500000US42079 0.180839481524 320555 0.0512361373243 2
2556 PA Lycoming 0500000US42081 0.261835856656 116447 0.0974864101265 2
2557 PA McKean 0500000US42083 0.218498998872 43451 0.0710455455571 2
2558 PA Mercer 0500000US42085 0.208664594673 116474 0.0607775125779 2
2559 PA Mifflin 0500000US42087 0.254700818092 46694 0.0891549235448 2
2560 PA Monroe 0500000US42089 0.148217259339 169346 0.039038418386 2
2561 PA Montgomery 0500000US42091 0.212409018285 799886 0.0598660309094 2
2562 PA Montour 0500000US42093 0.254124869813 18243 0.0786603080634 2
2563 PA Northampton 0500000US42095 0.199120056198 297519 0.0433115196004 2
2564 PA Northumberland 0500000US42097 0.19605891509 94441 0.0669624421597 2
2565 PA Perry 0500000US42099 0.273219628311 45791 0.113712301544 2
2566 PA Philadelphia 0500000US42101 0.0601909410799 1525811 0.0124025845927 2
2567 PA Pike 0500000US42103 0.221338161812 57437 0.0511516966415 2
2568 PA Potter 0500000US42105 0.297664032978 17466 0.122981793198 2
2569 PA Schuylkill 0500000US42107 0.217365734951 147935 0.106857741576 2
2570 PA Snyder 0500000US42109 0.253659767794 39620 0.0954820797577 2
2571 PA Somerset 0500000US42111 0.308289755017 77638 0.0994100826915 2
2572 PA Sullivan 0500000US42113 0.288083062142 6453 0.123353479002 2
2573 PA Susquehanna 0500000US42115 0.248662296449 43171 0.102082416437 2
2574 PA Tioga 0500000US42117 0.251871390889 42081 0.0969796345144 2
2575 PA Union 0500000US42119 0.219450872197 44944 0.0782751868993 2
2576 PA Venango 0500000US42121 0.23563291716 54865 0.0958899116012 2
2577 PA Warren 0500000US42123 0.226251411818 41613 0.0734385889025 2
2578 PA Washington 0500000US42125 0.242670116778 207916 0.0621308605398 2
2579 PA Wayne 0500000US42127 0.239603051684 52299 0.0881087592497 2
2580 PA Westmoreland 0500000US42129 0.283462646316 364877 0.0684723893257 2
2581 PA Wyoming 0500000US42131 0.219304773041 28221 0.105772297225 2
2582 PA York 0500000US42133 0.256745033699 434579 0.0949723755635 2
2583 RI Barrington 0500000US44001 0.0768133986666 49796 0.0183950518114 1
2584 RI Bristol 0500000US44001 0.0743834846172 49796 0.0183950518114 1
2585 RI Warren 0500000US44001 0.0338782231505 49796 0.0183950518114 1
2586 RI Burrillville 0500000US44007 0.00484369172508 627414 0.00891596298457 1
2587 RI Central Falls 0500000US44007 0.000811266564023 627414 0.00891596298457 1
2588 RI Cranston 0500000US44007 0.0206849066167 627414 0.00891596298457 1
2589 RI Cumberland 0500000US44007 0.0113099165782 627414 0.00891596298457 1
2590 RI East Providence 0500000US44007 0.0091486641994 627414 0.00891596298457 1
2591 RI Foster 0500000US44007 0.00173410220365 627414 0.00891596298457 1
2592 RI Glocester 0500000US44007 0.00383319466891 627414 0.00891596298457 1
2593 RI Johnston 0500000US44007 0.00861791416832 627414 0.00891596298457 1
2594 RI Lincoln 0500000US44007 0.00734443286251 627414 0.00891596298457 1
2595 RI North Providence 0500000US44007 0.00858444344564 627414 0.00891596298457 1
2596 RI North Smithfield 0500000US44007 0.00453767368914 627414 0.00891596298457 1
2597 RI Pawtucket 0500000US44007 0.00831827150813 627414 0.00891596298457 1
2598 RI Providence 0500000US44007 0.010960864756 627414 0.00891596298457 1
2599 RI Scituate 0500000US44007 0.00450420296646 627414 0.00891596298457 1
2600 RI Smithfield 0500000US44007 0.00694756572215 627414 0.00891596298457 1
2601 RI Woonsocket 0500000US44007 0.00631162199122 627414 0.00891596298457 1
2602 RI Charlestown 0500000US44009 0.0127316641935 126692 0.0208852966249 1
2603 RI Exeter 0500000US44009 0.0116187288858 126692 0.0208852966249 1
2604 RI Hopkinton 0500000US44009 0.0120054936381 126692 0.0208852966249 1
2605 RI Narragansett 0500000US44009 0.025202854166 126692 0.0208852966249 1
2606 RI New Shoreham 0500000US44009 0.00217851166609 126692 0.0208852966249 1
2607 RI North Kingstown 0500000US44009 0.0508714046664 126692 0.0208852966249 1
2608 RI Richmond 0500000US44009 0.0118634167903 126692 0.0208852966249 1
2609 RI South Kingstown 0500000US44009 0.0371373093802 126692 0.0208852966249 1
2610 RI Westerly 0500000US44009 0.0310832570328 126692 0.0208852966249 1
2611 RI Coventry 0500000US44003 0.041886960606 166066 0.0166138764106 1
2612 RI East Greenwich 0500000US44003 0.0212204786049 166066 0.0166138764106 1
2613 RI Warwick 0500000US44003 0.0903315549239 166066 0.0166138764106 1
2614 RI West Greenwich 0500000US44003 0.00717786904002 166066 0.0166138764106 1
2615 RI West Warwick 0500000US44003 0.0247672612094 166066 0.0166138764106 1
2616 RI Jamestown 0500000US44005 0.0146540125814 82503 0.0231264317661 1
2617 RI Little Compton 0500000US44005 0.0109571773148 82503 0.0231264317661 1
2618 RI Middletown 0500000US44005 0.0335745366835 82503 0.0231264317661 1
2619 RI Newport 0500000US44005 0.0356593093584 82503 0.0231264317661 1
2620 RI Portsmouth 0500000US44005 0.0504102881107 82503 0.0231264317661 1
2621 RI Tiverton 0500000US44005 0.0528344423839 82503 0.0231264317661 1
2622 SD Aurora 0500000US46003 0.294937637564 2726 0.0759354365371 4
2623 SD Beadle 0500000US46005 0.243495279761 17372 0.0469145751784 4
2624 SD Bennett 0500000US46007 0.182400932401 3432 0.0230186480186 4
2625 SD Bon Homme 0500000US46009 0.259906263315 7041 0.048572645931 4
2626 SD Brookings 0500000US46011 0.194507866012 31973 0.0253651518469 4
2627 SD Brown 0500000US46013 0.227558667469 36562 0.0445544554455 4
2628 SD Brule 0500000US46015 0.28628724217 5236 0.0231092436975 4
2629 SD Buffalo 0500000US46017 0.0851282051282 1950 0.0189743589744 4
2630 SD Butte 0500000US46019 0.303102153725 10122 0.106105512745 4
2631 SD Campbell 0500000US46021 0.434108527132 1419 0.124031007752 4
2632 SD Charles Mix 0500000US46023 0.244220444834 9127 0.072751177824 4
2633 SD Clark 0500000US46025 0.292088694224 3653 0.074185600876 4
2634 SD Clay 0500000US46027 0.153658885866 13966 0.0257768867249 4
2635 SD Codington 0500000US46029 0.245418560328 27284 0.025656062161 4
2636 SD Corson 0500000US46031 0.127286208601 4046 0.0244686109738 4
2637 SD Custer 0500000US46033 0.37255140528 8219 0.13906801314 4
2638 SD Davison 0500000US46035 0.243632450161 19513 0.124122379952 4
2639 SD Day 0500000US46037 0.2326811211 5673 0.0398378283095 4
2640 SD Deuel 0500000US46039 0.268510054845 4376 0.0712979890311 4
2641 SD Dewey 0500000US46041 0.123740201568 5358 0.026875699888 4
2642 SD Douglas 0500000US46043 0.445855614973 2992 0.203542780749 4
2643 SD Edmunds 0500000US46045 0.312098765432 4050 0.0340740740741 4
2644 SD Fall River 0500000US46047 0.321001707456 7028 0.140722822994 4
2645 SD Faulk 0500000US46049 0.322240943555 2374 0.101937657961 4
2646 SD Grant 0500000US46051 0.277717094484 7324 0.0826051338067 4
2647 SD Gregory 0500000US46053 0.354504822395 4251 0.0409315455187 4
2648 SD Haakon 0500000US46055 0.507559395248 1852 0.142548596112 4
2649 SD Hamlin 0500000US46057 0.306893617021 5875 0.0626382978723 4
2650 SD Hand 0500000US46059 0.36593989393 3394 0.0545079552151 4
2651 SD Hanson 0500000US46061 0.483363042187 3366 0.106060606061 4
2652 SD Harding 0500000US46063 0.46671543526 1367 0.229700073153 4
2653 SD Hughes 0500000US46065 0.305848570089 17064 0.154946085326 4
2654 SD Hutchinson 0500000US46067 0.336537141288 7283 0.107922559385 4
2655 SD Hyde 0500000US46069 0.369519832985 1437 0.121781489214 4
2656 SD Jackson 0500000US46071 0.215520052168 3067 0.037495924356 4
2657 SD Jerauld 0500000US46073 0.262823644358 2047 0.14606741573 4
2658 SD Jones 0500000US46075 0.452029520295 1084 0.275830258303 4
2659 SD Kingsbury 0500000US46077 0.281256057375 5159 0.0850940104671 4
2660 SD Lake 0500000US46079 0.300862372404 11364 0.0300950369588 4
2661 SD Lawrence 0500000US46081 0.291941985621 24063 0.101068029755 4
2662 SD Lincoln 0500000US46083 0.302097436467 45055 0.0712684496726 4
2663 SD Lyman 0500000US46085 0.248667377399 3752 0.0850213219616 4
2664 SD McCook 0500000US46087 0.29595851216 5592 0.0772532188841 4
2665 SD McPherson 0500000US46089 0.370623742455 2485 0.12152917505 4
2666 SD Marshall 0500000US46091 0.191967177715 4631 0.0278557546966 4
2667 SD Meade 0500000US46093 0.296983029541 25456 0.0812774984287 4
2668 SD Mellette 0500000US46095 0.185221195916 2057 0.036947010209 4
2669 SD Miner 0500000US46097 0.268921775899 2365 0.0448202959831 4
2670 SD Minnehaha 0500000US46099 0.236758990736 170342 0.0431543600521 4
2671 SD Moody 0500000US46101 0.237102255175 6474 0.0189990732159 4
2672 SD Pennington 0500000US46103 0.278832477282 101240 0.0826649545634 4
2673 SD Perkins 0500000US46105 0.416955017301 2890 0.0955017301038 4
2674 SD Potter 0500000US46107 0.442200257843 2327 0.306832831972 4
2675 SD Roberts 0500000US46109 0.18537113605 10158 0.0183106910809 4
2676 SD Sanborn 0500000US46111 0.291896478574 2357 0.0364870598218 4
2677 SD Shannon 0500000US46113 0.0137396769714 13683 0.00197325147994 4
2678 SD Spink 0500000US46115 0.257596791609 6483 0.0647848218417 4
2679 SD Stanley 0500000US46117 0.36156462585 2940 0.177551020408 4
2680 SD Sully 0500000US46119 0.442112879884 1382 0.215629522431 4
2681 SD Todd 0500000US46121 0.0512820512821 9711 0.00823808052724 4
2682 SD Tripp 0500000US46123 0.339693295292 5608 0.0499286733238 4
2683 SD Turner 0500000US46125 0.325383509108 8344 0.0590843720038 4
2684 SD Union 0500000US46127 0.326771927384 14377 0.0408986575781 4
2685 SD Walworth 0500000US46129 0.318023148999 5443 0.0769796068345 4
2686 SD Yankton 0500000US46135 0.243514308639 22434 0.0534010876348 4
2687 SD Ziebach 0500000US46137 0.112303290415 2796 0.0150214592275 4
2688 TN Anderson 0500000US47001 0.252415410653 75039 0.103306280734 5
2689 TN Bedford 0500000US47003 0.222503328895 45060 0.0764092321349 5
2690 TN Benton 0500000US47005 0.234470158343 16420 0.063946406821 5
2691 TN Bledsoe 0500000US47007 0.234299891456 12898 0.118855636533 5
2692 TN Blount 0500000US47009 0.287741904035 123086 0.118080041597 5
2693 TN Bradley 0500000US47011 0.276300275121 99229 0.104666982435 5
2694 TN Campbell 0500000US47013 0.211720692116 40629 0.077678505501 5
2695 TN Cannon 0500000US47015 0.23976226716 13797 0.0938609842719 5
2696 TN Carroll 0500000US47017 0.253422733975 28486 0.0739661588149 5
2697 TN Carter 0500000US47019 0.269350437156 57531 0.108897811615 5
2698 TN Cheatham 0500000US47021 0.262537401222 39103 0.0863872337161 5
2699 TN Chester 0500000US47023 0.274130141407 17043 0.0827905885114 5
2700 TN Claiborne 0500000US47025 0.237845433255 32025 0.0687900078064 5
2701 TN Clay 0500000US47027 0.222774802346 7842 0.0608263198164 5
2702 TN Cocke 0500000US47029 0.237405629929 35631 0.103589570879 5
2703 TN Coffee 0500000US47031 0.246211189526 52853 0.0949425765803 5
2704 TN Crockett 0500000US47033 0.259627926134 14567 0.108327040571 5
2705 TN Cumberland 0500000US47035 0.332199344543 56144 0.163472499288 5
2706 TN Davidson 0500000US47037 0.150154264814 629113 0.0559422552069 5
2707 TN Decatur 0500000US47039 0.244885782475 11732 0.0774803954995 5
2708 TN DeKalb 0500000US47041 0.220245071923 18770 0.0712306872669 5
2709 TN Dickson 0500000US47043 0.227084339289 49704 0.0825486882343 5
2710 TN Dyer 0500000US47045 0.259481090129 38234 0.0745671391955 5
2711 TN Fayette 0500000US47047 0.33051863435 38370 0.118608287725 5
2712 TN Fentress 0500000US47049 0.29200334355 17945 0.0896071329061 5
2713 TN Franklin 0500000US47051 0.250219662208 40972 0.101654788636 5
2714 TN Gibson 0500000US47053 0.259769326935 49594 0.0909787474291 5
2715 TN Giles 0500000US47055 0.23485852101 29439 0.0740514283773 5
2716 TN Grainger 0500000US47057 0.241852032017 22613 0.0954318312475 5
2717 TN Greene 0500000US47059 0.250658133954 68755 0.116500618137 5
2718 TN Grundy 0500000US47061 0.181950403607 13751 0.0609410224711 5
2719 TN Hamblen 0500000US47063 0.232136003071 62528 0.0951893551689 5
2720 TN Hamilton 0500000US47065 0.237007563282 337023 0.0959459740136 5
2721 TN Hancock 0500000US47067 0.22592099423 6759 0.0868471667406 5
2722 TN Hardeman 0500000US47069 0.17886956202 27193 0.0526973853565 5
2723 TN Hardin 0500000US47071 0.303459422019 25987 0.0880055412322 5
2724 TN Hawkins 0500000US47073 0.253433230498 56725 0.124354341119 5
2725 TN Haywood 0500000US47075 0.158517645799 18673 0.0457344829433 5
2726 TN Henderson 0500000US47077 0.266499012035 27835 0.169103646488 5
2727 TN Henry 0500000US47079 0.253695268197 32271 0.0739053639491 5
2728 TN Hickman 0500000US47081 0.194273109759 24481 0.0739757362853 5
2729 TN Houston 0500000US47083 0.188537313433 8375 0.0637611940299 5
2730 TN Humphreys 0500000US47085 0.20778163664 18428 0.0691881918819 5
2731 TN Jackson 0500000US47087 0.206489675516 11526 0.0838105153566 5
2732 TN Jefferson 0500000US47089 0.252944257969 51541 0.103296404804 5
2733 TN Johnson 0500000US47091 0.253365569537 18199 0.108522446288 5
2734 TN Knox 0500000US47093 0.245635458337 433207 0.105330707953 5
2735 TN Lake 0500000US47095 0.149485861183 7780 0.0321336760925 5
2736 TN Lauderdale 0500000US47097 0.166210571799 27772 0.0443252196457 5
2737 TN Lawrence 0500000US47099 0.257785011609 41779 0.0764738265636 5
2738 TN Lewis 0500000US47101 0.258589211618 12050 0.0885477178423 5
2739 TN Lincoln 0500000US47103 0.294068178405 33295 0.0917555188467 5
2740 TN Loudon 0500000US47105 0.343740995348 48586 0.158008479809 5
2741 TN McMinn 0500000US47107 0.247644529384 52325 0.116502627807 5
2742 TN McNairy 0500000US47109 0.269605015192 26001 0.085842852198 5
2743 TN Macon 0500000US47111 0.236200314395 22265 0.0924320682686 5
2744 TN Madison 0500000US47113 0.224432514085 97976 0.0751408508206 5
2745 TN Marion 0500000US47115 0.222395685495 28184 0.076036048822 5
2746 TN Marshall 0500000US47117 0.223083210724 30585 0.0768023540951 5
2747 TN Maury 0500000US47119 0.255641326499 80965 0.114555672204 5
2748 TN Meigs 0500000US47121 0.233242134063 11696 0.115082079343 5
2749 TN Monroe 0500000US47123 0.262242614145 44680 0.0874216651746 5
2750 TN Montgomery 0500000US47125 0.174190530097 173138 0.0541302313761 5
2751 TN Moore 0500000US47127 0.323358009135 6349 0.120018900614 5
2752 TN Morgan 0500000US47129 0.213326021387 21882 0.0621058404168 5
2753 TN Obion 0500000US47131 0.277860092683 31721 0.0732637684814 5
2754 TN Overton 0500000US47133 0.216515426497 22040 0.0907894736842 5
2755 TN Perry 0500000US47135 0.200865580448 7856 0.068482688391 5
2756 TN Pickett 0500000US47137 0.334181675803 5108 0.195575567737 5
2757 TN Polk 0500000US47139 0.245165910719 16756 0.00901169730246 5
2758 TN Putnam 0500000US47141 0.238901513052 72172 0.0796153632988 5
2759 TN Rhea 0500000US47143 0.244931954615 31817 0.112707043404 5
2760 TN Roane 0500000US47145 0.272437855147 54027 0.0989135062099 5
2761 TN Robertson 0500000US47147 0.266710007106 66143 0.0872352327533 5
2762 TN Rutherford 0500000US47149 0.230574455584 263815 0.0860603074124 5
2763 TN Scott 0500000US47151 0.2305370337 22196 0.105018922328 5
2764 TN Sequatchie 0500000US47153 0.249841247442 14173 0.101601636915 5
2765 TN Sevier 0500000US47155 0.28795805715 90218 0.14105832539 5
2766 TN Shelby 0500000US47157 0.145825913967 929437 0.0524919924643 5
2767 TN Smith 0500000US47159 0.234483478624 19157 0.0855561935585 5
2768 TN Stewart 0500000US47161 0.223420298597 13262 0.0866385160609 5
2769 TN Sullivan 0500000US47163 0.277823520026 156675 0.0869251635551 5
2770 TN Sumner 0500000US47165 0.285218912447 161206 0.11222907336 5
2771 TN Tipton 0500000US47167 0.268603165241 61038 0.077574625643 5
2772 TN Trousdale 0500000US47169 0.205698224096 7827 0.0770410118819 5
2773 TN Unicoi 0500000US47171 0.274949417619 18287 0.146224093618 5
2774 TN Union 0500000US47173 0.223056468012 19179 0.0752385421555 5
2775 TN Van Buren 0500000US47175 0.249279538905 5552 0.0833933717579 5
2776 TN Warren 0500000US47177 0.201347851233 39767 0.0730002263183 5
2777 TN Washington 0500000US47179 0.266908173233 122840 0.101098990557 5
2778 TN Wayne 0500000US47181 0.249838377902 17015 0.0668233911255 5
2779 TN Weakley 0500000US47183 0.24714096891 34802 0.0664329636228 5
2780 TN White 0500000US47185 0.239415381046 25863 0.0852955960252 5
2781 TN Williamson 0500000US47187 0.369602388384 184225 0.146413353237 5
2782 TN Wilson 0500000US47189 0.314749864768 114618 0.110436406149 5
2783 TX Anderson 0500000US48001 0.209974428942 58269 0.0798194580309 6
2784 TX Andrews 0500000US48003 0.242303078768 15006 0.072637611622 6
2785 TX Angelina 0500000US48005 0.234558058925 86550 0.123720392837 6
2786 TX Aransas 0500000US48007 0.291949895259 23391 0.139840109444 6
2787 TX Archer 0500000US48009 0.402392665474 8944 0.158989266547 6
2788 TX Armstrong 0500000US48011 0.454945054945 1820 0.195604395604 6
2789 TX Atascosa 0500000US48013 0.16524361846 45091 0.0583264953095 6
2790 TX Austin 0500000US48015 0.326378119273 28372 0.153778373044 6
2791 TX Bailey 0500000US48017 0.188275084555 7096 0.0997745208568 6
2792 TX Bandera 0500000US48019 0.362504273087 20477 0.212579967769 6
2793 TX Bastrop 0500000US48021 0.189387082393 74023 0.0665739027059 6
2794 TX Baylor 0500000US48023 0.34997301673 3706 0.0596330275229 6
2795 TX Bee 0500000US48025 0.135710500888 32083 0.0466913941963 6
2796 TX Bell 0500000US48027 0.159175251084 310155 0.0544082797311 6
2797 TX Bexar 0500000US48029 0.139844595797 1719902 0.037681798149 6
2798 TX Blanco 0500000US48031 0.348872901679 10425 0.182637889688 6
2799 TX Borden 0500000US48033 0.504672897196 642 0.172897196262 6
2800 TX Bosque 0500000US48035 0.324224356851 18114 0.140885502926 6
2801 TX Bowie 0500000US48037 0.268656716418 92460 0.0912827168505 6
2802 TX Brazoria 0500000US48039 0.225242421442 313813 0.0727630786487 6
2803 TX Brazos 0500000US48041 0.191419311958 194087 0.0680571084101 6
2804 TX Brewster 0500000US48043 0.215258855586 9175 0.059727520436 6
2805 TX Briscoe 0500000US48045 0.344086021505 1674 0.231780167264 6
2806 TX Brooks 0500000US48047 0.0700663349917 7236 0.0 6
2807 TX Brown 0500000US48049 0.312851807039 38018 0.133357883108 6
2808 TX Burleson 0500000US48051 0.272202797203 17160 0.0822843822844 6
2809 TX Burnet 0500000US48053 0.298700693895 42946 0.141386857915 6
2810 TX Caldwell 0500000US48055 0.157737471168 38152 0.0480708743971 6
2811 TX Calhoun 0500000US48057 0.193999812787 21366 0.045118412431 6
2812 TX Callahan 0500000US48059 0.323644700836 13521 0.158937948377 6
2813 TX Cameron 0500000US48061 0.0614929315779 405819 0.0130772585808 6
2814 TX Camp 0500000US48063 0.232302849302 12389 0.0599725562999 6
2815 TX Carson 0500000US48065 0.394207562349 6215 0.177152051488 6
2816 TX Cass 0500000US48067 0.288451391637 30324 0.0770017148133 6
2817 TX Castro 0500000US48069 0.184118236473 7984 0.0953156312625 6
2818 TX Chambers 0500000US48071 0.340287020427 34562 0.148139575256 6
2819 TX Cherokee 0500000US48073 0.242473860722 50690 0.111895837443 6
2820 TX Childress 0500000US48075 0.236270753512 7047 0.095785440613 6
2821 TX Clay 0500000US48077 0.398022019033 10718 0.169341295018 6
2822 TX Cochran 0500000US48079 0.209912536443 3087 0.208292840946 6
2823 TX Coke 0500000US48081 0.368708308065 3298 0.165858095816 6
2824 TX Coleman 0500000US48083 0.341045707157 8817 0.0850629465805 6
2825 TX Collin 0500000US48085 0.248463060184 788580 0.0613292246823 6
2826 TX Collingsworth 0500000US48087 0.315409836066 3050 0.084262295082 6
2827 TX Colorado 0500000US48089 0.289405311778 20784 0.144389915319 6
2828 TX Comal 0500000US48091 0.360517502409 108985 0.127815754462 6
2829 TX Comanche 0500000US48093 0.283963963964 13875 0.134630630631 6
2830 TX Concho 0500000US48095 0.194696783698 4073 0.100908421311 6
2831 TX Cooke 0500000US48097 0.309704114295 38427 0.137325318136 6
2832 TX Coryell 0500000US48099 0.14780530319 75728 0.0654843650961 6
2833 TX Cottle 0500000US48101 0.345625 1600 0.14875 6
2834 TX Crane 0500000US48103 0.225969259004 4359 0.10874053682 6
2835 TX Crockett 0500000US48105 0.260834014718 3669 0.00408830744072 6
2836 TX Crosby 0500000US48107 0.185573770492 6100 0.0660655737705 6
2837 TX Culberson 0500000US48109 0.123218776194 2386 0.00838222967309 6
2838 TX Dallam 0500000US48111 0.185328185328 6734 0.0653400653401 6
2839 TX Dallas 0500000US48113 0.12371270512 2379214 0.0317600686613 6
2840 TX Dawson 0500000US48115 0.188285735048 13761 0.0797180437468 6
2841 TX Deaf Smith 0500000US48117 0.157821011673 19275 0.0643320363165 6
2842 TX Delta 0500000US48119 0.290839694656 5240 0.176526717557 6
2843 TX Denton 0500000US48121 0.233713211186 667934 0.0546565978076 6
2844 TX De Witt 0500000US48123 0.253720976384 20156 0.0802738638619 6
2845 TX Dickens 0500000US48125 0.330554397666 2399 0.124635264694 6
2846 TX Dimmit 0500000US48127 0.0757907300577 10054 0.00278496120947 6
2847 TX Donley 0500000US48129 0.352135815991 3652 0.13882803943 6
2848 TX Duval 0500000US48131 0.0828187124609 11821 0.0 6
2849 TX Eastland 0500000US48133 0.293914358227 18519 0.0875857227712 6
2850 TX Ector 0500000US48135 0.173207036536 138193 0.0803079750783 6
2851 TX Edwards 0500000US48137 0.316856154226 2023 0.306969846762 6
2852 TX Ellis 0500000US48139 0.262858020733 149712 0.09092791493 6
2853 TX El Paso 0500000US48141 0.0705479238312 801115 0.0144111644396 6
2854 TX Erath 0500000US48143 0.27034457478 38192 0.113269794721 6
2855 TX Falls 0500000US48145 0.189006533003 17756 0.10768191034 6
2856 TX Fannin 0500000US48147 0.240440546845 33867 0.0839460241533 6
2857 TX Fayette 0500000US48149 0.329763407582 24557 0.129453923525 6
2858 TX Fisher 0500000US48151 0.276053494827 3963 0.0302800908403 6
2859 TX Floyd 0500000US48153 0.236527411089 6439 0.114769374126 6
2860 TX Foard 0500000US48155 0.271798900236 1273 0.0 6
2861 TX Fort Bend 0500000US48157 0.197438681156 587666 0.0625338202312 6
2862 TX Franklin 0500000US48159 0.325309166431 10593 0.185499858397 6
2863 TX Freestone 0500000US48161 0.287504457236 19631 0.0720798736692 6
2864 TX Frio 0500000US48163 0.0902982913409 17265 0.0107153200116 6
2865 TX Gaines 0500000US48165 0.19826997496 17572 0.101809697246 6
2866 TX Galveston 0500000US48167 0.234209933282 292874 0.0783920730416 6
2867 TX Garza 0500000US48169 0.200476568705 6295 0.127720413026 6
2868 TX Gillespie 0500000US48171 0.415909916455 24777 0.192719053961 6
2869 TX Glasscock 0500000US48173 0.419123505976 1255 0.141832669323 6
2870 TX Goliad 0500000US48175 0.317596566524 7223 0.151183718676 6
2871 TX Gonzales 0500000US48177 0.213068325494 19773 0.0708036210995 6
2872 TX Gray 0500000US48179 0.282785623158 22731 0.156658308037 6
2873 TX Grayson 0500000US48181 0.256189852538 120641 0.0961364710173 6
2874 TX Gregg 0500000US48183 0.236021111395 121451 0.0919136112506 6
2875 TX Grimes 0500000US48185 0.231177533504 26564 0.0977262460473 6
2876 TX Guadalupe 0500000US48187 0.249793474554 131945 0.0876198416007 6
2877 TX Hale 0500000US48189 0.177495643515 36153 0.0645036373192 6
2878 TX Hall 0500000US48191 0.249325741684 3337 0.0476475876536 6
2879 TX Hamilton 0500000US48193 0.34540719697 8448 0.209872159091 6
2880 TX Hansford 0500000US48195 0.321634269258 5556 0.130129589633 6
2881 TX Hardeman 0500000US48197 0.285160038797 4124 0.0630455868089 6
2882 TX Hardin 0500000US48199 0.325595904362 54497 0.136943317981 6
2883 TX Harris 0500000US48201 0.142589313055 4101752 0.0391910578699 6
2884 TX Harrison 0500000US48203 0.264880681646 65958 0.13046180903 6
2885 TX Hartley 0500000US48205 0.282626766417 6015 0.0999168744805 6
2886 TX Haskell 0500000US48207 0.241385163809 5891 0.0314038363605 6
2887 TX Hays 0500000US48209 0.199269234653 158464 0.0633708602585 6
2888 TX Hemphill 0500000US48211 0.336008283717 3863 0.212529122444 6
2889 TX Henderson 0500000US48213 0.269889762978 78558 0.0600575371063 6
2890 TX Hidalgo 0500000US48215 0.0513487003433 774820 0.00826127358612 6
2891 TX Hill 0500000US48217 0.260212662847 35079 0.127255623022 6
2892 TX Hockley 0500000US48219 0.241125804768 22988 0.130285366278 6
2893 TX Hood 0500000US48221 0.358495729169 51161 0.135943394382 6
2894 TX Hopkins 0500000US48223 0.280266757866 35088 0.078317373461 6
2895 TX Houston 0500000US48225 0.248341272542 23512 0.134356924124 6
2896 TX Howard 0500000US48227 0.115440776477 34927 0.0622727402869 6
2897 TX Hudspeth 0500000US48229 0.138244790138 3407 0.000293513354858 6
2898 TX Hunt 0500000US48231 0.244034669304 85955 0.112710139026 6
2899 TX Hutchinson 0500000US48233 0.30906693343 21992 0.121316842488 6
2900 TX Irion 0500000US48235 0.418546365915 1596 0.325187969925 6
2901 TX Jack 0500000US48237 0.28580923895 9027 0.0819762933422 6
2902 TX Jackson 0500000US48239 0.27730017762 14075 0.0910124333925 6
2903 TX Jasper 0500000US48241 0.277959835308 35703 0.0836064196286 6
2904 TX Jeff Davis 0500000US48243 0.309184993532 2319 0.0827943078913 6
2905 TX Jefferson 0500000US48245 0.171738326968 251627 0.0456071884178 6
2906 TX Jim Hogg 0500000US48247 0.0677192315009 5257 0.00190222560396 6
2907 TX Jim Wells 0500000US48249 0.112034914907 41014 0.0214073243283 6
2908 TX Johnson 0500000US48251 0.248779552039 151174 0.070481696588 6
2909 TX Jones 0500000US48253 0.211451556836 20137 0.0519441823509 6
2910 TX Karnes 0500000US48255 0.189006427424 14936 0.021625602571 6
2911 TX Kaufman 0500000US48257 0.239918750302 103385 0.0830971610969 6
2912 TX Kendall 0500000US48259 0.428715365239 33745 0.203822788561 6
2913 TX Kenedy 0500000US48261 0.184035476718 451 0.039911308204 6
2914 TX Kent 0500000US48263 0.402895054282 829 0.086851628468 6
2915 TX Kerr 0500000US48265 0.348197861287 49469 0.177949827164 6
2916 TX Kimble 0500000US48267 0.364212366179 4577 0.29276818877 6
2917 TX King 0500000US48269 0.612334801762 227 0.237885462555 6
2918 TX Kinney 0500000US48271 0.246222719642 3574 0.0688304420817 6
2919 TX Kleberg 0500000US48273 0.127047768207 31925 0.0408457321848 6
2920 TX Knox 0500000US48275 0.312415836251 3713 0.0498249394021 6
2921 TX Lamar 0500000US48277 0.257619622035 49740 0.136248492159 6
2922 TX Lamb 0500000US48279 0.218348099457 13996 0.0844527007716 6
2923 TX Lampasas 0500000US48281 0.281443766699 19837 0.0899329535716 6
2924 TX La Salle 0500000US48283 0.0976642335766 6850 0.0 6
2925 TX La Vaca 0500000US48285 0.352275675956 19269 0.107945404536 6
2926 TX Lee 0500000US48287 0.271472485082 16591 0.0692544150443 6
2927 TX Leon 0500000US48289 0.345397278184 16827 0.210732750936 6
2928 TX Liberty 0500000US48291 0.228701329597 75662 0.101332240755 6
2929 TX Limestone 0500000US48293 0.226466809422 23350 0.0896359743041 6
2930 TX Lipscomb 0500000US48295 0.314079422383 3324 0.20036101083 6
2931 TX Live Oak 0500000US48297 0.273555439875 11526 0.0812077043207 6
2932 TX Llano 0500000US48299 0.395500915511 19115 0.199947685064 6
2933 TX Loving 0500000US48301 0.635294117647 85 0.105882352941 6
2934 TX Lubbock 0500000US48303 0.226820531798 278339 0.0869443376602 6
2935 TX Lynn 0500000US48305 0.233944954128 5886 0.101257220523 6
2936 TX Madison 0500000US48313 0.222810890361 13590 0.0980132450331 6
2937 TX Marion 0500000US48315 0.258915022762 10544 0.0613619119879 6
2938 TX Martin 0500000US48317 0.278517901749 4804 0.105537052456 6
2939 TX Mason 0500000US48319 0.392659627954 3978 0.162393162393 6
2940 TX Matagorda 0500000US48321 0.218972526123 36653 0.0395874826072 6
2941 TX Maverick 0500000US48323 0.0401241983477 54107 0.00118284140684 6
2942 TX McCulloch 0500000US48307 0.292114478928 8281 0.180533751962 6
2943 TX McLennan 0500000US48309 0.204090765729 234626 0.0913709478063 6
2944 TX McMullen 0500000US48311 0.626436781609 696 0.113505747126 6
2945 TX Medina 0500000US48325 0.239431415593 46009 0.0959377513095 6
2946 TX Menard 0500000US48327 0.297043010753 2232 0.224014336918 6
2947 TX Midland 0500000US48329 0.256022878271 138472 0.08313594084 6
2948 TX Milam 0500000US48331 0.221862217002 24691 0.120367745332 6
2949 TX Mills 0500000US48333 0.385655737705 4880 0.235245901639 6
2950 TX Mitchell 0500000US48335 0.187253122665 9367 0.0438774420839 6
2951 TX Montague 0500000US48337 0.33130668288 19737 0.181081218017 6
2952 TX Montgomery 0500000US48339 0.300698827724 458339 0.0983813291036 6
2953 TX Moore 0500000US48341 0.182265104526 21765 0.0597748679072 6
2954 TX Morris 0500000US48343 0.249806411646 12914 0.0350007743534 6
2955 TX Motley 0500000US48345 0.466608846487 1153 0.220294882914 6
2956 TX Nacogdoches 0500000US48347 0.215168530636 64647 0.124986464956 6
2957 TX Navarro 0500000US48349 0.227026121201 47739 0.113848216343 6
2958 TX Newton 0500000US48351 0.306081269134 14372 0.0283885332591 6
2959 TX Nolan 0500000US48353 0.216962394068 15104 0.048530190678 6
2960 TX Nueces 0500000US48355 0.143228371427 340568 0.0397659204623 6
2961 TX Ochiltree 0500000US48357 0.26352530541 10314 0.144076013186 6
2962 TX Oldham 0500000US48359 0.3837890625 2048 0.123046875 6
2963 TX Orange 0500000US48361 0.283831069424 82306 0.100855344689 6
2964 TX Palo Pinto 0500000US48363 0.263905747947 28010 0.146911817208 6
2965 TX Panola 0500000US48365 0.33345930965 23814 0.120391366423 6
2966 TX Parker 0500000US48367 0.333675740455 116820 0.10755863722 6
2967 TX Parmer 0500000US48369 0.197109712937 10172 0.0794337396775 6
2968 TX Pecos 0500000US48371 0.16196002579 15510 0.035718891038 6
2969 TX Polk 0500000US48373 0.307312902802 45618 0.114625805603 6
2970 TX Potter 0500000US48375 0.156111941469 121099 0.0446576767769 6
2971 TX Presidio 0500000US48377 0.0656420942954 7678 0.00156290700703 6
2972 TX Rains 0500000US48379 0.297467201166 10976 0.110969387755 6
2973 TX Randall 0500000US48381 0.341613675778 121090 0.100990998431 6
2974 TX Reagan 0500000US48383 0.199763593381 3384 0.193853427896 6
2975 TX Real 0500000US48385 0.371617558629 3326 0.180998196031 6
2976 TX Red River 0500000US48387 0.277373974209 12795 0.109730363423 6
2977 TX Reeves 0500000US48389 0.0870939291489 13606 0.0 6
2978 TX Refugio 0500000US48391 0.225652883569 7352 0.0563112078346 6
2979 TX Roberts 0500000US48393 0.411290322581 992 0.226814516129 6
2980 TX Robertson 0500000US48395 0.266088214027 16596 0.0856230416968 6
2981 TX Rockwall 0500000US48397 0.344105956901 78749 0.105321972343 6
2982 TX Runnels 0500000US48399 0.296285687005 10473 0.123364842929 6
2983 TX Rusk 0500000US48401 0.26167521753 53211 0.112871398771 6
2984 TX Sabine 0500000US48403 0.350122157489 10642 0.102800225522 6
2985 TX San Augustine 0500000US48405 0.277478084963 8898 0.04012137559 6
2986 TX San Jacinto 0500000US48407 0.268295445963 26482 0.0746544822899 6
2987 TX San Patricio 0500000US48409 0.18352919574 65352 0.0512149589913 6
2988 TX San Saba 0500000US48411 0.315554083154 6037 0.267185688256 6
2989 TX Schleicher 0500000US48413 0.234746017433 3327 0.0718364893297 6
2990 TX Scurry 0500000US48415 0.244497181845 16855 0.122752892317 6
2991 TX Shackelford 0500000US48417 0.364016736402 3346 0.222952779438 6
2992 TX Shelby 0500000US48419 0.268338411062 25602 0.137489258652 6
2993 TX Sherman 0500000US48421 0.298684210526 3040 0.203289473684 6
2994 TX Smith 0500000US48423 0.294995970261 209691 0.128036014898 6
2995 TX Somervell 0500000US48425 0.338465182378 8444 0.175153955471 6
2996 TX Starr 0500000US48427 0.025294832627 60882 0.000328504319832 6
2997 TX Stephens 0500000US48429 0.302374228637 9561 0.115887459471 6
2998 TX Sterling 0500000US48431 0.375306623058 1223 0.257563368765 6
2999 TX Stonewall 0500000US48433 0.350380096752 1447 0.0566689702833 6
3000 TX Sutton 0500000US48435 0.269221440699 4123 0.0601503759398 6
3001 TX Swisher 0500000US48437 0.211617195496 7816 0.0324974411464 6
3002 TX Tarrant 0500000US48439 0.192148752361 1814667 0.0484942967498 6
3003 TX Taylor 0500000US48441 0.249975271067 131425 0.0836218375499 6
3004 TX Terrell 0500000US48443 0.357642357642 1001 0.0749250749251 6
3005 TX Terry 0500000US48445 0.207149112332 12561 0.105803678051 6
3006 TX Throckmorton 0500000US48447 0.430504305043 1626 0.39790897909 6
3007 TX Titus 0500000US48449 0.18917147761 32045 0.0473708846934 6
3008 TX Tom Green 0500000US48451 0.24221707083 110434 0.0792962312331 6
3009 TX Travis 0500000US48453 0.13480608634 1034842 0.0403201648174 6
3010 TX Trinity 0500000US48455 0.313631964607 14466 0.095050463155 6
3011 TX Tyler 0500000US48457 0.272160088733 21638 0.156252888437 6
3012 TX Upshur 0500000US48459 0.303356522622 39386 0.136266693749 6
3013 TX Upton 0500000US48461 0.288484848485 3300 0.0312121212121 6
3014 TX Uvalde 0500000US48463 0.17121888477 26434 0.0470606037679 6
3015 TX Val Verde 0500000US48465 0.115525546544 48578 0.0212030137099 6
3016 TX Van Zandt 0500000US48467 0.300721808521 52507 0.139962290742 6
3017 TX Victoria 0500000US48469 0.225765013534 87188 0.0872482451714 6
3018 TX Walker 0500000US48471 0.141874360609 67447 0.0817086008273 6
3019 TX Waller 0500000US48473 0.21350305404 42894 0.0798713106728 6
3020 TX Ward 0500000US48475 0.220831387202 10705 0.0543671181691 6
3021 TX Washington 0500000US48477 0.322647793505 33628 0.181069346973 6
3022 TX Webb 0500000US48479 0.0442393736018 250320 0.00474592521572 6
3023 TX Wharton 0500000US48481 0.236920759118 41153 0.11590892523 6
3024 TX Wheeler 0500000US48483 0.346878463243 5414 0.258219431105 6
3025 TX Wichita 0500000US48485 0.227112098245 131019 0.0572359734084 6
3026 TX Wilbarger 0500000US48487 0.219760612594 13451 0.0614824176641 6
3027 TX Willacy 0500000US48489 0.064367920666 21983 0.00564072237638 6
3028 TX Williamson 0500000US48491 0.227330305703 426296 0.074427158594 6
3029 TX Wilson 0500000US48493 0.283843810321 42999 0.079001837252 6
3030 TX Winkler 0500000US48495 0.186492924198 7137 0.0662743449629 6
3031 TX Wise 0500000US48497 0.289430675136 59351 0.0813465653485 6
3032 TX Wood 0500000US48499 0.341474467527 41927 0.175090037446 6
3033 TX Yoakum 0500000US48501 0.214448092953 7918 0.135135135135 6
3034 TX Young 0500000US48503 0.338904616725 18368 0.149825783972 6
3035 TX Zapata 0500000US48505 0.0708577137149 14014 0.0014985014985 6
3036 TX Zavala 0500000US48507 0.0488385944014 11753 0.0 6
3037 VA Accomack 0500000US51001 0.245471393555 33454 0.0357505828899 5
3038 VA Albemarle 0500000US51003 0.23383659684 99484 0.0431124602951 5
3039 VA Alleghany 0500000US51005 0.220592747131 16297 0.019451432779 5
3040 VA Amelia 0500000US51007 0.341170901057 12674 0.029745936563 5
3041 VA Amherst 0500000US51009 0.274449707439 32301 0.0279248320485 5
3042 VA Appomattox 0500000US51011 0.357142857143 14952 0.0338416265383 5
3043 VA Arlington 0500000US51013 0.164690520717 209077 0.0364602514863 5
3044 VA Augusta 0500000US51015 0.320572343949 73662 0.0365860280742 5
3045 VA Bath 0500000US51017 0.270316146828 4713 0.0360704434543 5
3046 VA Bedford 0500000US51019 0.425905454545 68750 0.0442327272727 5
3047 VA Bland 0500000US51021 0.314047165666 6827 0.0339827156877 5
3048 VA Botetourt 0500000US51023 0.377063554454 33074 0.0388825058959 5
3049 VA Brunswick 0500000US51025 0.170676951416 17372 0.0151968685241 5
3050 VA Buchanan 0500000US51027 0.267375680279 24071 0.00814257820614 5
3051 VA Buckingham 0500000US51029 0.209068010076 17071 0.0268877042938 5
3052 VA Campbell 0500000US51031 0.322773144515 54797 0.0331405003924 5
3053 VA Caroline 0500000US51033 0.215643633813 28510 0.0272886706419 5
3054 VA Carroll 0500000US51035 0.278468771883 29989 0.0364133515622 5
3055 VA Charles City 0500000US51036 0.193191253806 7226 0.0190977027401 5
3056 VA Charlotte 0500000US51037 0.263908815559 12546 0.0299697114618 5
3057 VA Chesterfield 0500000US51041 0.287710440367 316895 0.0394263083987 5
3058 VA Clarke 0500000US51043 0.303683801174 14143 0.0516863466026 5
3059 VA Craig 0500000US51045 0.338796760509 5186 0.0376012340918 5
3060 VA Culpeper 0500000US51047 0.246278841643 46894 0.0375101292276 5
3061 VA Cumberland 0500000US51049 0.255049743744 9951 0.0348708672495 5
3062 VA Dickenson 0500000US51051 0.269194432198 15877 0.0139824903949 5
3063 VA Dinwiddie 0500000US51053 0.242390603738 27926 0.0193726276588 5
3064 VA Essex 0500000US51057 0.233782569632 11130 0.0329739442947 5
3065 VA Fairfax 0500000US51059 0.160353211475 1083770 0.0363352002731 5
3066 VA Fauquier 0500000US51061 0.31994808764 65495 0.0477288342622 5
3067 VA Floyd 0500000US51063 0.305933979565 15268 0.0306523447734 5
3068 VA Fluvanna 0500000US51065 0.259349877665 25749 0.0339819022098 5
3069 VA Franklin 0500000US51067 0.297882596586 56012 0.031850317789 5
3070 VA Frederick 0500000US51069 0.291477990229 78397 0.0343252930597 5
3071 VA Giles 0500000US51071 0.271735961281 17149 0.0252492856726 5
3072 VA Gloucester 0500000US51073 0.329621683279 36821 0.0506504440401 5
3073 VA Goochland 0500000US51075 0.39300334946 21496 0.0663379233346 5
3074 VA Grayson 0500000US51077 0.309044093981 15535 0.0237528162214 5
3075 VA Greene 0500000US51079 0.301197637241 18453 0.042161166206 5
3076 VA Greensville 0500000US51081 0.145625463841 12127 0.01599736126 5
3077 VA Halifax 0500000US51083 0.240702822357 36140 0.0215550636414 5
3078 VA Hanover 0500000US51085 0.399343763755 99964 0.0520287303429 5
3079 VA Henrico 0500000US51087 0.228350066325 307576 0.0384327775899 5
3080 VA Henry 0500000US51089 0.259027996517 53971 0.0205851290508 5
3081 VA Highland 0500000US51091 0.398791540785 2317 0.0699179974104 5
3082 VA Isle of Wight 0500000US51093 0.334761634506 35240 0.0421963677639 5
3083 VA James City 0500000US51095 0.341056783041 66939 0.0785341878427 5
3084 VA King and Queen 0500000US51097 0.267365097589 6968 0.0309988518944 5
3085 VA King George 0500000US51099 0.278149879944 23739 0.0350056868444 5
3086 VA King William 0500000US51101 0.34329487422 15861 0.0371351112792 5
3087 VA Lancaster 0500000US51103 0.329698355466 11371 0.0820508310615 5
3088 VA Lee 0500000US51105 0.268136947665 25528 0.0158257599499 5
3089 VA Loudoun 0500000US51107 0.237456346435 314980 0.0343101149279 5
3090 VA Louisa 0500000US51109 0.27830003325 33083 0.0353353686183 5
3091 VA Lunenburg 0500000US51111 0.231266552422 12838 0.0220439320766 5
3092 VA Madison 0500000US51113 0.291183119819 13270 0.0432554634514 5
3093 VA Mathews 0500000US51115 0.389068600112 8965 0.0639152258784 5
3094 VA Mecklenburg 0500000US51117 0.241335873172 32548 0.0241489492442 5
3095 VA Middlesex 0500000US51119 0.333394748964 10855 0.062091202211 5
3096 VA Montgomery 0500000US51121 0.212425275274 94179 0.0209388504868 5
3097 VA Nelson 0500000US51125 0.262933333333 15000 0.0456666666667 5
3098 VA New Kent 0500000US51127 0.392524377031 18460 0.0540628385699 5
3099 VA Northampton 0500000US51131 0.215667311412 12408 0.0355415860735 5
3100 VA Northumberland 0500000US51133 0.347727823069 12389 0.0720800710308 5
3101 VA Nottoway 0500000US51135 0.21474015748 15875 0.0248818897638 5
3102 VA Orange 0500000US51137 0.274914498141 33625 0.0380966542751 5
3103 VA Page 0500000US51139 0.263915467177 24038 0.0216324153424 5
3104 VA Patrick 0500000US51141 0.303678496192 18513 0.0267919840112 5
3105 VA Pittsylvania 0500000US51143 0.304415805932 63318 0.0216210240374 5
3106 VA Powhatan 0500000US51145 0.399671463772 28003 0.0510659572189 5
3107 VA Prince Edward 0500000US51147 0.171699178868 23017 0.0209410435765 5
3108 VA Prince George 0500000US51149 0.259628467498 36013 0.0259906145003 5
3109 VA Prince William 0500000US51153 0.18408162154 404011 0.0280190390856 5
3110 VA Pulaski 0500000US51155 0.255728584129 34869 0.0189279876108 5
3111 VA Rappahannock 0500000US51157 0.310080645161 7440 0.0432795698925 5
3112 VA Richmond 0500000US51159 0.233918128655 9234 0.0283734026424 5
3113 VA Roanoke 0500000US51161 0.360740868963 92432 0.0393586636663 5
3114 VA Rockbridge 0500000US51163 0.263809992396 22357 0.0378852261037 5
3115 VA Rockingham 0500000US51165 0.316595287677 76353 0.0294552931777 5
3116 VA Russell 0500000US51167 0.284190039273 28773 0.0103569318458 5
3117 VA Scott 0500000US51169 0.322579246347 23061 0.0234161571484 5
3118 VA Shenandoah 0500000US51171 0.297699401084 42076 0.0357448426657 5
3119 VA Smyth 0500000US51173 0.260910195309 32103 0.0180356975984 5
3120 VA Southampton 0500000US51175 0.254791128338 18576 0.0327842377261 5
3121 VA Spotsylvania 0500000US51177 0.258990346265 122854 0.0300193725886 5
3122 VA Stafford 0500000US51179 0.250521452961 129446 0.0330253542018 5
3123 VA Surry 0500000US51181 0.239124212936 6988 0.0344876931883 5
3124 VA Sussex 0500000US51183 0.16709384043 12095 0.0219925589086 5
3125 VA Tazewell 0500000US51185 0.308678588949 44846 0.0186415733845 5
3126 VA Warren 0500000US51187 0.26259749248 37567 0.0341256954242 5
3127 VA Washington 0500000US51191 0.331699914063 54691 0.0253058089997 5
3128 VA Westmoreland 0500000US51193 0.235630867873 17468 0.0308564231738 5
3129 VA Wise 0500000US51195 0.266942288629 41361 0.0109765237784 5
3130 VA Wythe 0500000US51197 0.285039208301 29203 0.0185939800705 5
3131 VA York 0500000US51199 0.308108025587 65503 0.0622261575806 5
3132 VA Alexandria 0500000US51510 0.143974860514 140337 0.0364479787939 5
3133 VA Bedford City 0500000US51515 0.250204817303 6103 0.0304768146813 5
3134 VA Bristol 0500000US51520 0.269115906914 17747 0.030878458331 5
3135 VA Buena Vista 0500000US51530 0.234166791436 6679 0.0351849079203 5
3136 VA Charlottesville 0500000US51540 0.111075122042 43223 0.0171899220323 5
3137 VA Chesapeake 0500000US51550 0.241205377341 223233 0.0323742457432 5
3138 VA Colonial Heights 0500000US51570 0.340697807873 17426 0.047916905773 5
3139 VA Covington 0500000US51580 0.165170252414 5903 0.016771133322 5
3140 VA Danville 0500000US51590 0.179599397939 43185 0.0183860136622 5
3141 VA Emporia 0500000US51595 0.152103004292 5825 0.0236909871245 5
3142 VA Fairfax City 0500000US51600 0.209668897499 22712 0.0440736174709 5
3143 VA Falls Church 0500000US51610 0.17406504065 12300 0.039918699187 5
3144 VA Franklin City 0500000US51620 0.175360450123 8531 0.0334075723831 5
3145 VA Fredericksburg 0500000US51630 0.162602278197 24932 0.024667094497 5
3146 VA Galax 0500000US51640 0.19187554019 6942 0.0207433016422 5
3147 VA Hampton 0500000US51650 0.139614900597 137471 0.0267838307716 5
3148 VA Harrisonburg 0500000US51660 0.133841730726 49043 0.0143751401831 5
3149 VA Hopewell 0500000US51670 0.166081507489 22501 0.0233322963424 5
3150 VA Lexington 0500000US51678 0.163948497854 6990 0.0278969957082 5
3151 VA Lynchburg 0500000US51680 0.261073000515 75657 0.0425737208718 5
3152 VA Manassas 0500000US51683 0.170334449042 37943 0.031231057112 5
3153 VA Manassas Park 0500000US51685 0.117704212645 14409 0.014296620168 5
3154 VA Martinsville 0500000US51690 0.166883210625 13854 0.0256243684135 5
3155 VA Newport News 0500000US51700 0.150549408011 180831 0.0282860792674 5
3156 VA Norfolk 0500000US51710 0.0879056678296 243056 0.0185389375288 5
3157 VA Norton 0500000US51720 0.225384034248 3971 0.0146058927222 5
3158 VA Petersburg 0500000US51730 0.0473530689505 32226 0.00902997579594 5
3159 VA Poquoson 0500000US51735 0.438645747316 12110 0.067382328654 5
3160 VA Portsmouth 0500000US51740 0.129528323555 95786 0.0231975445263 5
3161 VA Radford 0500000US51750 0.152625522379 16511 0.0176246138938 5
3162 VA Richmond City 0500000US51760 0.0960905389875 205348 0.0203313399692 5
3163 VA Roanoke City 0500000US51770 0.145913874015 96742 0.0206735440657 5
3164 VA Salem 0500000US51775 0.29400613101 24792 0.0340432397548 5
3165 VA Staunton 0500000US51790 0.219902953233 23906 0.0337153852589 5
3166 VA Suffolk 0500000US51800 0.211100028498 84216 0.0262420442671 5
3167 VA Virginia Beach 0500000US51810 0.225485065798 439528 0.0404342840502 5
3168 VA Waynesboro 0500000US51820 0.227722301474 21030 0.0360437470281 5
3169 VA Williamsburg 0500000US51830 0.188498627437 14207 0.0448370521574 5
3170 VA Winchester 0500000US51840 0.187732624383 26330 0.0280288644132 5
3171 VT Addison 0500000US50001 0.00912696256859 36814 0.0952626718096 1
3172 VT Bridport 0500000US50001 0.00752431140327 36814 0.0952626718096 1
3173 VT Bristol 0500000US50001 0.0137719345901 36814 0.0952626718096 1
3174 VT Cornwall 0500000US50001 0.00491660781225 36814 0.0952626718096 1
3175 VT Ferrisburg 0500000US50001 0.0139620796436 36814 0.0952626718096 1
3176 VT Goshen 0500000US50001 0.000950725267561 36814 0.0952626718096 1
3177 VT Granville 0500000US50001 0.000570435160537 36814 0.0952626718096 1
3178 VT Hancock 0500000US50001 0.00127668821644 36814 0.0952626718096 1
3179 VT Leicester 0500000US50001 0.00478078991688 36814 0.0952626718096 1
3180 VT Lincoln 0500000US50001 0.00491660781225 36814 0.0952626718096 1
3181 VT Middlebury 0500000US50001 0.0179551257674 36814 0.0952626718096 1
3182 VT Monkton 0500000US50001 0.00896398109415 36814 0.0952626718096 1
3183 VT New Haven 0500000US50001 0.00874667246156 36814 0.0952626718096 1
3184 VT Orwell 0500000US50001 0.00746998424512 36814 0.0952626718096 1
3185 VT Panton 0500000US50001 0.00331395664693 36814 0.0952626718096 1
3186 VT Ripton 0500000US50001 0.00157548758624 36814 0.0952626718096 1
3187 VT Salisbury 0500000US50001 0.00464497202151 36814 0.0952626718096 1
3188 VT Shoreham 0500000US50001 0.00545987939371 36814 0.0952626718096 1
3189 VT Starksboro 0500000US50001 0.00624762318683 36814 0.0952626718096 1
3190 VT Vergennes 0500000US50001 0.00847503667083 36814 0.0952626718096 1
3191 VT Waltham 0500000US50001 0.00206443200956 36814 0.0952626718096 1
3192 VT Weybridge 0500000US50001 0.00344977454229 36814 0.0952626718096 1
3193 VT Whiting 0500000US50001 0.00146683326995 36814 0.0952626718096 1
3194 VT Albany 0500000US50019 0.00547834399588 27198 0.0880579454372 1
3195 VT Barton 0500000US50019 0.0143392896537 27198 0.0880579454372 1
3196 VT Brownington 0500000US50019 0.00551511140525 27198 0.0880579454372 1
3197 VT Charleston 0500000US50019 0.00621369218325 27198 0.0880579454372 1
3198 VT Coventry 0500000US50019 0.00672843591441 27198 0.0880579454372 1
3199 VT Craftsbury 0500000US50019 0.00555187881462 27198 0.0880579454372 1
3200 VT Derby 0500000US50019 0.0311787631443 27198 0.0880579454372 1
3201 VT Glover 0500000US50019 0.0058092506802 27198 0.0880579454372 1
3202 VT Greensboro 0500000US50019 0.0037135083462 27198 0.0880579454372 1
3203 VT Holland 0500000US50019 0.00444885653357 27198 0.0880579454372 1
3204 VT Irasburg 0500000US50019 0.00860357379219 27198 0.0880579454372 1
3205 VT Jay 0500000US50019 0.00253695124642 27198 0.0880579454372 1
3206 VT Lowell 0500000US50019 0.00525773953967 27198 0.0880579454372 1
3207 VT Morgan 0500000US50019 0.00643429663946 27198 0.0880579454372 1
3208 VT Newport 0500000US50019 0.0204059121994 27198 0.0880579454372 1
3209 VT Newport Town 0500000US50019 0.00992720052945 27198 0.0880579454372 1
3210 VT Troy 0500000US50019 0.00867710861093 27198 0.0880579454372 1
3211 VT Westfield 0500000US50019 0.00411794984925 27198 0.0880579454372 1
3212 VT Westmore 0500000US50019 0.00338260166189 27198 0.0880579454372 1
3213 VT Alburg 0500000US50013 0.0446530147895 7032 0.150881683732 1
3214 VT Grand Isle 0500000US50013 0.0637087599545 7032 0.150881683732 1
3215 VT Isle La Motte 0500000US50013 0.0160693970421 7032 0.150881683732 1
3216 VT North Hero 0500000US50013 0.035409556314 7032 0.150881683732 1
3217 VT South Hero 0500000US50013 0.049345847554 7032 0.150881683732 1
3218 VT Andover 0500000US50027 0.00208454784744 56607 0.0978324235519 1
3219 VT Baltimore 0500000US50027 0.000812620347307 56607 0.0978324235519 1
3220 VT Barnard 0500000US50027 0.00325048138923 56607 0.0978324235519 1
3221 VT Bethel 0500000US50027 0.00540569187556 56607 0.0978324235519 1
3222 VT Bridgewater 0500000US50027 0.0027911742364 56607 0.0978324235519 1
3223 VT Cavendish 0500000US50027 0.00461073718798 56607 0.0978324235519 1
3224 VT Chester 0500000US50027 0.00863850760507 56607 0.0978324235519 1
3225 VT Hartford 0500000US50027 0.0248202519123 56607 0.0978324235519 1
3226 VT Hartland 0500000US50027 0.00927447135513 56607 0.0978324235519 1
3227 VT Ludlow 0500000US50027 0.00771989329942 56607 0.0978324235519 1
3228 VT Norwich 0500000US50027 0.00517603829915 56607 0.0978324235519 1
3229 VT Plymouth 0500000US50027 0.00243786104192 56607 0.0978324235519 1
3230 VT Pomfret 0500000US50027 0.00284417121557 56607 0.0978324235519 1
3231 VT Reading 0500000US50027 0.00180189729185 56607 0.0978324235519 1
3232 VT Rochester 0500000US50027 0.00305615913226 56607 0.0978324235519 1
3233 VT Royalton 0500000US50027 0.00627130920204 56607 0.0978324235519 1
3234 VT Sharon 0500000US50027 0.00356846326426 56607 0.0978324235519 1
3235 VT Springfield 0500000US50027 0.0236543183705 56607 0.0978324235519 1
3236 VT Stockbridge 0500000US50027 0.00210221350716 56607 0.0978324235519 1
3237 VT Weathersfield 0500000US50027 0.00899182079955 56607 0.0978324235519 1
3238 VT Weston 0500000US50027 0.00229653576413 56607 0.0978324235519 1
3239 VT West Windsor 0500000US50027 0.00386877947957 56607 0.0978324235519 1
3240 VT Windsor 0500000US50027 0.00717225784797 56607 0.0978324235519 1
3241 VT Woodstock 0500000US50027 0.00897415513982 56607 0.0978324235519 1
3242 VT Arlington 0500000US50003 0.0126520681265 36990 0.0955393349554 1
3243 VT Bennington 0500000US50003 0.0473911868072 36990 0.0955393349554 1
3244 VT Dorset 0500000US50003 0.011462557448 36990 0.0955393349554 1
3245 VT Landgrove 0500000US50003 0.000540686672074 36990 0.0955393349554 1
3246 VT Manchester 0500000US50003 0.0229791835631 36990 0.0955393349554 1
3247 VT Peru 0500000US50003 0.0014868883482 36990 0.0955393349554 1
3248 VT Pownal 0500000US50003 0.0137064071371 36990 0.0955393349554 1
3249 VT Readsboro 0500000US50003 0.00329818869965 36990 0.0955393349554 1
3250 VT Rupert 0500000US50003 0.0037037037037 36990 0.0955393349554 1
3251 VT Sandgate 0500000US50003 0.0022168153555 36990 0.0955393349554 1
3252 VT Searsburg 0500000US50003 0.000567721005677 36990 0.0955393349554 1
3253 VT Shaftsbury 0500000US50003 0.0181941065153 36990 0.0955393349554 1
3254 VT Stamford 0500000US50003 0.00475804271425 36990 0.0955393349554 1
3255 VT Sunderland 0500000US50003 0.00446066504461 36990 0.0955393349554 1
3256 VT Winhall 0500000US50003 0.00510948905109 36990 0.0955393349554 1
3257 VT Woodford 0500000US50003 0.00121654501217 36990 0.0955393349554 1
3258 VT Athens 0500000US50025 0.00124125479576 44310 0.0826224328594 1
3259 VT Brattleboro 0500000US50025 0.0206499661476 44310 0.0826224328594 1
3260 VT Brookline 0500000US50025 0.00171518844505 44310 0.0826224328594 1
3261 VT Dover 0500000US50025 0.00668020762807 44310 0.0826224328594 1
3262 VT Dummerston 0500000US50025 0.00528097494922 44310 0.0826224328594 1
3263 VT Grafton 0500000US50025 0.00255021439856 44310 0.0826224328594 1
3264 VT Guilford 0500000US50025 0.00589031821259 44310 0.0826224328594 1
3265 VT Halifax 0500000US50025 0.00306928458587 44310 0.0826224328594 1
3266 VT Jamaica 0500000US50025 0.00268562401264 44310 0.0826224328594 1
3267 VT Londonderry 0500000US50025 0.0075378018506 44310 0.0826224328594 1
3268 VT Marlboro 0500000US50025 0.001647483638 44310 0.0826224328594 1
3269 VT Newfane 0500000US50025 0.00451365380275 44310 0.0826224328594 1
3270 VT Putney 0500000US50025 0.00424283457459 44310 0.0826224328594 1
3271 VT Rockingham 0500000US50025 0.0112164296998 44310 0.0826224328594 1
3272 VT Stratton 0500000US50025 0.00157977883096 44310 0.0826224328594 1
3273 VT Townshend 0500000US50025 0.00431053938163 44310 0.0826224328594 1
3274 VT Vernon 0500000US50025 0.0111712931618 44310 0.0826224328594 1
3275 VT Wardsboro 0500000US50025 0.00293387497179 44310 0.0826224328594 1
3276 VT Westminster 0500000US50025 0.00762807492665 44310 0.0826224328594 1
3277 VT Whitingham 0500000US50025 0.00510042879711 44310 0.0826224328594 1
3278 VT Wilmington 0500000US50025 0.0073798239675 44310 0.0826224328594 1
3279 VT Windham 0500000US50025 0.00157977883096 44310 0.0826224328594 1
3280 VT Bakersfield 0500000US50011 0.00397049296805 47853 0.0895241677638 1
3281 VT Berkshire 0500000US50011 0.00457651557896 47853 0.0895241677638 1
3282 VT Enosburgh 0500000US50011 0.00831713790149 47853 0.0895241677638 1
3283 VT Fairfax 0500000US50011 0.0172611957453 47853 0.0895241677638 1
3284 VT Fairfield 0500000US50011 0.0063945834117 47853 0.0895241677638 1
3285 VT Fletcher 0500000US50011 0.00386600631099 47853 0.0895241677638 1
3286 VT Franklin 0500000US50011 0.00545420349821 47853 0.0895241677638 1
3287 VT Georgia 0500000US50011 0.0191837502351 47853 0.0895241677638 1
3288 VT Highgate 0500000US50011 0.0113263536246 47853 0.0895241677638 1
3289 VT Montgomery 0500000US50011 0.00363613566548 47853 0.0895241677638 1
3290 VT Richford 0500000US50011 0.00537061417257 47853 0.0895241677638 1
3291 VT St. Albans 0500000US50011 0.0157147932209 47853 0.0895241677638 1
3292 VT St. Albans Town 0500000US50011 0.0239692391282 47853 0.0895241677638 1
3293 VT Sheldon 0500000US50011 0.00591394478925 47853 0.0895241677638 1
3294 VT Swanton 0500000US50011 0.019789772846 47853 0.0895241677638 1
3295 VT Barnet 0500000US50005 0.011645813282 31170 0.0942893808149 1
3296 VT Burke 0500000US50005 0.00920757138274 31170 0.0942893808149 1
3297 VT Danville 0500000US50005 0.0152390118704 31170 0.0942893808149 1
3298 VT Groton 0500000US50005 0.00676932948348 31170 0.0942893808149 1
3299 VT Hardwick 0500000US50005 0.0123195380173 31170 0.0942893808149 1
3300 VT Kirby 0500000US50005 0.00250240615977 31170 0.0942893808149 1
3301 VT Lyndon 0500000US50005 0.0277831247995 31170 0.0942893808149 1
3302 VT Newark 0500000US50005 0.00356111645813 31170 0.0942893808149 1
3303 VT Peacham 0500000US50005 0.00436316971447 31170 0.0942893808149 1
3304 VT Ryegate 0500000US50005 0.00644850818094 31170 0.0942893808149 1
3305 VT St. Johnsbury 0500000US50005 0.034680782804 31170 0.0942893808149 1
3306 VT Sheffield 0500000US50005 0.00298363811357 31170 0.0942893808149 1
3307 VT Stannard 0500000US50005 0.000609560474816 31170 0.0942893808149 1
3308 VT Sutton 0500000US50005 0.00535771575233 31170 0.0942893808149 1
3309 VT Walden 0500000US50005 0.00506897658004 31170 0.0942893808149 1
3310 VT Waterford 0500000US50005 0.0104587744626 31170 0.0942893808149 1
3311 VT Wheelock 0500000US50005 0.00423484119346 31170 0.0942893808149 1
3312 VT Barre 0500000US50023 0.01762470149 59462 0.0992230331977 1
3313 VT Barre Town 0500000US50023 0.0291614812822 59462 0.0992230331977 1
3314 VT Berlin 0500000US50023 0.00716423934614 59462 0.0992230331977 1
3315 VT Cabot 0500000US50023 0.0037166593791 59462 0.0992230331977 1
3316 VT Calais 0500000US50023 0.0034980323568 59462 0.0992230331977 1
3317 VT Duxbury 0500000US50023 0.00309441323871 59462 0.0992230331977 1
3318 VT East Montpelier 0500000US50023 0.00676062022804 59462 0.0992230331977 1
3319 VT Fayston 0500000US50023 0.00317850055498 59462 0.0992230331977 1
3320 VT Marshfield 0500000US50023 0.00425481820322 59462 0.0992230331977 1
3321 VT Middlesex 0500000US50023 0.00363257206283 59462 0.0992230331977 1
3322 VT Montpelier 0500000US50023 0.0117722242777 59462 0.0992230331977 1
3323 VT Moretown 0500000US50023 0.00438935790925 59462 0.0992230331977 1
3324 VT Northfield 0500000US50023 0.0115199623289 59462 0.0992230331977 1
3325 VT Plainfield 0500000US50023 0.00198446066395 59462 0.0992230331977 1
3326 VT Roxbury 0500000US50023 0.0015303891561 59462 0.0992230331977 1
3327 VT Waitsfield 0500000US50023 0.00398573879116 59462 0.0992230331977 1
3328 VT Warren 0500000US50023 0.00331304026101 59462 0.0992230331977 1
3329 VT Waterbury 0500000US50023 0.010998620968 59462 0.0992230331977 1
3330 VT Woodbury 0500000US50023 0.00264034173085 59462 0.0992230331977 1
3331 VT Worcester 0500000US50023 0.00186673842118 59462 0.0992230331977 1
3332 VT Belvidere 0500000US50015 0.00232928772833 24471 0.0864288341302 1
3333 VT Cambridge 0500000US50015 0.020922724858 24471 0.0864288341302 1
3334 VT Eden 0500000US50015 0.00596624576029 24471 0.0864288341302 1
3335 VT Elmore 0500000US50015 0.00531241060848 24471 0.0864288341302 1
3336 VT Hyde Park 0500000US50015 0.0158146377345 24471 0.0864288341302 1
3337 VT Johnson 0500000US50015 0.0136079440971 24471 0.0864288341302 1
3338 VT Morristown 0500000US50015 0.0272976175882 24471 0.0864288341302 1
3339 VT Stowe 0500000US50015 0.0326917575906 24471 0.0864288341302 1
3340 VT Waterville 0500000US50015 0.00400474030485 24471 0.0864288341302 1
3341 VT Wolcott 0500000US50015 0.00903109803441 24471 0.0864288341302 1
3342 VT Benson 0500000US50021 0.00258121073394 61599 0.122226010163 1
3343 VT Brandon 0500000US50021 0.00922092891118 61599 0.122226010163 1
3344 VT Castleton 0500000US50021 0.0112988847222 61599 0.122226010163 1
3345 VT Chittenden 0500000US50021 0.00467540057468 61599 0.122226010163 1
3346 VT Clarendon 0500000US50021 0.00905858861345 61599 0.122226010163 1
3347 VT Danby 0500000US50021 0.00383123102648 61599 0.122226010163 1
3348 VT Fair Haven 0500000US50021 0.00647737787951 61599 0.122226010163 1
3349 VT Hubbardton 0500000US50021 0.00228899819802 61599 0.122226010163 1
3350 VT Ira 0500000US50021 0.00155846685823 61599 0.122226010163 1
3351 VT Killington 0500000US50021 0.00413967759217 61599 0.122226010163 1
3352 VT Mendon 0500000US50021 0.00425331580058 61599 0.122226010163 1
3353 VT Middletown Springs 0500000US50021 0.00264614685303 61599 0.122226010163 1
3354 VT Mount Holly 0500000US50021 0.00477280475332 61599 0.122226010163 1
3355 VT Mount Tabor 0500000US50021 0.000519488952743 61599 0.122226010163 1
3356 VT Pawlet 0500000US50021 0.0041234435624 61599 0.122226010163 1
3357 VT Pittsfield 0500000US50021 0.00188314745369 61599 0.122226010163 1
3358 VT Pittsford 0500000US50021 0.00883131219663 61599 0.122226010163 1
3359 VT Poultney 0500000US50021 0.00759752593386 61599 0.122226010163 1
3360 VT Proctor 0500000US50021 0.00477280475332 61599 0.122226010163 1
3361 VT Rutland 0500000US50021 0.0394162242894 61599 0.122226010163 1
3362 VT Rutland Town 0500000US50021 0.0167048166366 61599 0.122226010163 1
3363 VT Shrewsbury 0500000US50021 0.00402603938376 61599 0.122226010163 1
3364 VT Sudbury 0500000US50021 0.00165587103687 61599 0.122226010163 1
3365 VT Tinmouth 0500000US50021 0.00176950924528 61599 0.122226010163 1
3366 VT Wallingford 0500000US50021 0.00691569668339 61599 0.122226010163 1
3367 VT Wells 0500000US50021 0.00379876296693 61599 0.122226010163 1
3368 VT West Haven 0500000US50021 0.000714297310021 61599 0.122226010163 1
3369 VT West Rutland 0500000US50021 0.00634750564133 61599 0.122226010163 1
3370 VT Bloomfield 0500000US50009 0.00633312222926 6316 0.131412286257 1
3371 VT Brighton 0500000US50009 0.0353071564281 6316 0.131412286257 1
3372 VT Brunswick 0500000US50009 0.00348321722609 6316 0.131412286257 1
3373 VT Canaan 0500000US50009 0.0239075364155 6316 0.131412286257 1
3374 VT Concord 0500000US50009 0.0351488283724 6316 0.131412286257 1
3375 VT East Haven 0500000US50009 0.00807473084231 6316 0.131412286257 1
3376 VT Granby 0500000US50009 0.00237492083597 6316 0.131412286257 1
3377 VT Guildhall 0500000US50009 0.0102913236225 6316 0.131412286257 1
3378 VT Lemington 0500000US50009 0.00364154528182 6316 0.131412286257 1
3379 VT Lunenburg 0500000US50009 0.0384737175427 6316 0.131412286257 1
3380 VT Maidstone 0500000US50009 0.00823305889804 6316 0.131412286257 1
3381 VT Norton 0500000US50009 0.00696643445218 6316 0.131412286257 1
3382 VT Victory 0500000US50009 0.00284990500317 6316 0.131412286257 1
3383 VT Bolton 0500000US50007 0.00102746719763 156696 0.0871560218512 1
3384 VT Burlington 0500000US50007 0.0165352019196 156696 0.0871560218512 1
3385 VT Charlotte 0500000US50007 0.0041928319804 156696 0.0871560218512 1
3386 VT Colchester 0500000US50007 0.0162607852147 156696 0.0871560218512 1
3387 VT Essex 0500000US50007 0.0232296931638 156696 0.0871560218512 1
3388 VT Hinesburg 0500000US50007 0.00416092306121 156696 0.0871560218512 1
3389 VT Huntington 0500000US50007 0.00148057385 156696 0.0871560218512 1
3390 VT Jericho 0500000US50007 0.00654771021596 156696 0.0871560218512 1
3391 VT Milton 0500000US50007 0.012546587022 156696 0.0871560218512 1
3392 VT Richmond 0500000US50007 0.00414815949354 156696 0.0871560218512 1
3393 VT St. George 0500000US50007 0.00065732373513 156696 0.0871560218512 1
3394 VT Shelburne 0500000US50007 0.00895364272221 156696 0.0871560218512 1
3395 VT South Burlington 0500000US50007 0.0175371419819 156696 0.0871560218512 1
3396 VT Underhill 0500000US50007 0.00360570786746 156696 0.0871560218512 1
3397 VT Westford 0500000US50007 0.00239955072242 156696 0.0871560218512 1
3398 VT Williston 0500000US50007 0.0108298871701 156696 0.0871560218512 1
3399 VT Winooski 0500000US50007 0.00352274467759 156696 0.0871560218512 1
3400 VT Bradford 0500000US50017 0.0143547273982 28980 0.083988957902 1
3401 VT Braintree 0500000US50017 0.00638371290545 28980 0.083988957902 1
3402 VT Brookfield 0500000US50017 0.00745341614907 28980 0.083988957902 1
3403 VT Chelsea 0500000US50017 0.00962732919255 28980 0.083988957902 1
3404 VT Corinth 0500000US50017 0.00828157349896 28980 0.083988957902 1
3405 VT Fairlee 0500000US50017 0.00527950310559 28980 0.083988957902 1
3406 VT Newbury 0500000US50017 0.0129399585921 28980 0.083988957902 1
3407 VT Orange 0500000US50017 0.00855762594893 28980 0.083988957902 1
3408 VT Randolph 0500000US50017 0.0228778467909 28980 0.083988957902 1
3409 VT Strafford 0500000US50017 0.00393374741201 28980 0.083988957902 1
3410 VT Thetford 0500000US50017 0.0107660455487 28980 0.083988957902 1
3411 VT Topsham 0500000US50017 0.0071773636991 28980 0.083988957902 1
3412 VT Tunbridge 0500000US50017 0.00824706694272 28980 0.083988957902 1
3413 VT Vershire 0500000US50017 0.00355417529331 28980 0.083988957902 1
3414 VT Washington 0500000US50017 0.00672877846791 28980 0.083988957902 1
3415 VT West Fairlee 0500000US50017 0.00320910973085 28980 0.083988957902 1
3416 VT Williamstown 0500000US50017 0.0189440993789 28980 0.083988957902 1
3417 WI Adams 0500000US55001 0.222174370753 20898 0.12264331515 3
3418 WI Ashland 0500000US55003 0.174765717123 16113 0.116117420716 3
3419 WI Barron 0500000US55005 0.248746785232 45882 0.122924022492 3
3420 WI Bayfield 0500000US55007 0.238559490649 15078 0.162488393686 3
3421 WI Brown 0500000US55009 0.260487836283 248526 0.136802588059 3
3422 WI Buffalo 0500000US55011 0.24748966332 13544 0.136813349084 3
3423 WI Burnett 0500000US55013 0.292439464194 15528 0.125257599176 3
3424 WI Calumet 0500000US55015 0.296548202614 48960 0.173345588235 3
3425 WI Chippewa 0500000US55017 0.246480228344 62362 0.122173759661 3
3426 WI Clark 0500000US55019 0.213637676972 34610 0.127593181162 3
3427 WI Columbia 0500000US55021 0.229945579193 56596 0.137341861616 3
3428 WI Crawford 0500000US55023 0.183726089824 16677 0.110931222642 3
3429 WI Dane 0500000US55025 0.170192850836 490379 0.11880198785 3
3430 WI Dodge 0500000US55027 0.283859771695 88741 0.154404390304 3
3431 WI Door 0500000US55029 0.290937141217 27872 0.192164179104 3
3432 WI Douglas 0500000US55031 0.175101790142 43963 0.0910993335305 3
3433 WI Dunn 0500000US55033 0.233168904723 43788 0.102950580068 3
3434 WI Eau Claire 0500000US55035 0.234639016897 98952 0.132397526073 3
3435 WI Florence 0500000US55037 0.366250557289 4486 0.159830584039 3
3436 WI Fond du Lac 0500000US55039 0.298581371767 101577 0.166789726021 3
3437 WI Forest 0500000US55041 0.232026492896 9361 0.132464480291 3
3438 WI Grant 0500000US55043 0.200861815689 51055 0.103084908432 3
3439 WI Green 0500000US55045 0.213260869565 36800 0.130380434783 3
3440 WI Green Lake 0500000US55047 0.30313680235 19064 0.158885858162 3
3441 WI Iowa 0500000US55049 0.181427125506 23712 0.127361673414 3
3442 WI Iron 0500000US55051 0.299096687855 5978 0.153730344597 3
3443 WI Jackson 0500000US55053 0.190839694656 20436 0.102661969074 3
3444 WI Jefferson 0500000US55055 0.280462322838 83751 0.15172356151 3
3445 WI Juneau 0500000US55057 0.202239616494 26701 0.109321748249 3
3446 WI Kenosha 0500000US55059 0.210022058868 166373 0.11415914842 3
3447 WI Kewaunee 0500000US55061 0.278932038835 20600 0.151504854369 3
3448 WI La Crosse 0500000US55063 0.22412350285 114718 0.128593594728 3
3449 WI Lafayette 0500000US55065 0.196780708007 16836 0.124316939891 3
3450 WI Langlade 0500000US55067 0.291213473009 19951 0.144554157686 3
3451 WI Lincoln 0500000US55069 0.259282479972 28710 0.155520724486 3
3452 WI Manitowoc 0500000US55071 0.265560012797 81266 0.152831442424 3
3453 WI Marathon 0500000US55073 0.272812050044 134041 0.143262136212 3
3454 WI Marinette 0500000US55075 0.254388068291 41704 0.133991943219 3
3455 WI Marquette 0500000US55077 0.244565924769 15366 0.131003514252 3
3456 WI Menominee 0500000US55078 0.0418811417876 4274 0.0311183902667 3
3457 WI Milwaukee 0500000US55079 0.167370249233 946584 0.094389932642 3
3458 WI Monroe 0500000US55081 0.21552533882 44714 0.119380954511 3
3459 WI Oconto 0500000US55083 0.28409332483 37632 0.14025297619 3
3460 WI Oneida 0500000US55085 0.302672846873 36029 0.195509173166 3
3461 WI Outagamie 0500000US55087 0.267534803736 176777 0.147536161378 3
3462 WI Ozaukee 0500000US55089 0.416422728482 86429 0.247613648197 3
3463 WI Pepin 0500000US55091 0.240412979351 7458 0.126977742022 3
3464 WI Pierce 0500000US55093 0.25422359336 40842 0.0950492140444 3
3465 WI Polk 0500000US55095 0.273846781875 44094 0.117544337098 3
3466 WI Portage 0500000US55097 0.237037142816 70027 0.138703642881 3
3467 WI Price 0500000US55099 0.274308747613 14141 0.187893359734 3
3468 WI Racine 0500000US55101 0.252138198376 195024 0.1332964148 3
3469 WI Richland 0500000US55103 0.198390677026 18020 0.138956714761 3
3470 WI Rock 0500000US55105 0.190151911996 160356 0.119315772406 3
3471 WI Rusk 0500000US55107 0.250374914792 14670 0.155691888207 3
3472 WI St. Croix 0500000US55109 0.30196887261 84363 0.150018372983 3
3473 WI Sauk 0500000US55111 0.207076332058 61953 0.138201539877 3
3474 WI Sawyer 0500000US55113 0.267551266586 16580 0.138781664656 3
3475 WI Shawano 0500000US55115 0.26343854615 41820 0.145839311334 3
3476 WI Sheboygan 0500000US55117 0.297130277265 115377 0.158593133813 3
3477 WI Taylor 0500000US55119 0.271290776017 20631 0.136542096845 3
3478 WI Trempealeau 0500000US55121 0.197657089384 28853 0.103906006308 3
3479 WI Vernon 0500000US55123 0.198980789218 29827 0.114258892949 3
3480 WI Vilas 0500000US55125 0.359951603146 21489 0.207687654149 3
3481 WI Walworth 0500000US55127 0.283080832763 102310 0.150649985339 3
3482 WI Washburn 0500000US55129 0.29522431259 15893 0.157364877619 3
3483 WI Washington 0500000US55131 0.414965109223 131840 0.215291262136 3
3484 WI Waukesha 0500000US55133 0.414550726125 389740 0.214060655822 3
3485 WI Waupaca 0500000US55135 0.26708287989 52377 0.143918132005 3
3486 WI Waushara 0500000US55137 0.266965194382 24565 0.137187054753 3
3487 WI Winnebago 0500000US55139 0.251958271451 166984 0.154793273607 3
3488 WI Wood 0500000US55141 0.263905833143 74591 0.155206392192 3
3489 WV Barbour 0500000US54001 0.230937348227 16472 0.0885138416707 5
3490 WV Berkeley 0500000US54003 0.210286371037 104410 0.0601858059573 5
3491 WV Boone 0500000US54005 0.219929317139 24617 0.0262014055328 5
3492 WV Braxton 0500000US54007 0.185259101232 14531 0.0394329364806 5
3493 WV Brooke 0500000US54009 0.208734024395 24021 0.0464177178302 5
3494 WV Cabell 0500000US54011 0.184736076475 96240 0.0496259351621 5
3495 WV Calhoun 0500000US54013 0.16918429003 7613 0.0367791934848 5
3496 WV Clay 0500000US54015 0.207485156913 9432 0.0414546225615 5
3497 WV Doddridge 0500000US54017 0.258745550509 8147 0.181048238615 5
3498 WV Fayette 0500000US54019 0.18052173913 46000 0.0285434782609 5
3499 WV Gilmer 0500000US54021 0.18323089412 8623 0.0415168734779 5
3500 WV Grant 0500000US54023 0.316455696203 11929 0.150305977031 5
3501 WV Greenbrier 0500000US54025 0.221325761835 35572 0.0558304284269 5
3502 WV Hampshire 0500000US54027 0.23176831575 23791 0.0732629986129 5
3503 WV Hancock 0500000US54029 0.234000130745 30594 0.0578544812708 5
3504 WV Hardy 0500000US54031 0.253234617596 13912 0.0623921794135 5
3505 WV Harrison 0500000US54033 0.228469090329 68959 0.0574399280732 5
3506 WV Jackson 0500000US54035 0.25200301308 29206 0.10490995001 5
3507 WV Jefferson 0500000US54037 0.207115510318 53545 0.0482024465403 5
3508 WV Kanawha 0500000US54039 0.213099516025 192572 0.0521830795754 5
3509 WV Lewis 0500000US54041 0.265360912807 16389 0.106046738666 5
3510 WV Lincoln 0500000US54043 0.199686837985 21714 0.0320991065672 5
3511 WV Logan 0500000US54045 0.224224827435 36508 0.0150104086776 5
3512 WV Marion 0500000US54049 0.212203329791 56460 0.0476620616366 5
3513 WV Marshall 0500000US54051 0.188161125087 32993 0.0698633043373 5
3514 WV Mason 0500000US54053 0.209455987079 27242 0.0909991924235 5
3515 WV McDowell 0500000US54047 0.178958390239 21966 0.0109259765092 5
3516 WV Mercer 0500000US54055 0.247481968161 62251 0.0416700133331 5
3517 WV Mineral 0500000US54057 0.274056116083 28049 0.0857784591251 5
3518 WV Mingo 0500000US54059 0.231170292573 26660 0.0145536384096 5
3519 WV Monongalia 0500000US54061 0.172915564683 96417 0.0435089247747 5
3520 WV Monroe 0500000US54063 0.263971023063 13528 0.0753252513306 5
3521 WV Morgan 0500000US54065 0.2574970012 17507 0.102530416405 5
3522 WV Nicholas 0500000US54067 0.222243425823 26201 0.0466012747605 5
3523 WV Ohio 0500000US54069 0.238720743901 44307 0.0806870246236 5
3524 WV Pendleton 0500000US54071 0.27224106444 7666 0.0628750326115 5
3525 WV Pleasants 0500000US54073 0.236566186107 7630 0.0741808650066 5
3526 WV Pocahontas 0500000US54075 0.247657142857 8750 0.100571428571 5
3527 WV Preston 0500000US54077 0.234262495892 33471 0.0905560037047 5
3528 WV Putnam 0500000US54079 0.286130075458 55660 0.098778296802 5
3529 WV Raleigh 0500000US54081 0.258395475067 78852 0.0515015472024 5
3530 WV Randolph 0500000US54083 0.209461530602 29361 0.0481591226457 5
3531 WV Ritchie 0500000US54085 0.278029063613 10391 0.145510537966 5
3532 WV Roane 0500000US54087 0.199744692287 14884 0.0830421929589 5
3533 WV Summers 0500000US54089 0.214870049953 13813 0.0415550568305 5
3534 WV Taylor 0500000US54091 0.22659719344 16889 0.0677956066079 5
3535 WV Tucker 0500000US54093 0.30384020256 7109 0.0855253903503 5
3536 WV Tyler 0500000US54095 0.249346974314 9188 0.106007836308 5
3537 WV Upshur 0500000US54097 0.242792234614 24210 0.139446509707 5
3538 WV Wayne 0500000US54099 0.205166418281 42273 0.0367373973931 5
3539 WV Webster 0500000US54101 0.186503603407 9158 0.0234767416466 5
3540 WV Wetzel 0500000US54103 0.208701440155 16526 0.0486506111582 5
3541 WV Wirt 0500000US54105 0.246489859594 5769 0.0889235569423 5
3542 WV Wood 0500000US54107 0.253123740427 86835 0.0879829561813 5
3543 WV Wyoming 0500000US54109 0.24298631063 23668 0.0340966706101 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment