421c5b3553
The one radical view whose data is fully real today (brief §4.5). Renders every officeholder in the mirror as coverage: teal is the federal + state tier (the roof, every state), amber is county + municipal depth (the foundation, so far only Florida). Click Florida to descend into its 67 counties, shaded by local officeholder count. Self-contained: inlined US state + FL county geometry, hand-rolled lng/lat projection, vanilla JS — no external requests, no build deps. Instrument aesthetic: dark ground, mono readout, breathing amber to invite the drill-down. viz/coverage.json is generated from the tree. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
515 lines
135 KiB
HTML
515 lines
135 KiB
HTML
<style>
|
|
:root{
|
|
--ground:#0a0f16; --panel:#0f1620; --panel2:#0c121b;
|
|
--line:#26333f; --line-soft:#1a232f;
|
|
--ink:#e8eef3; --muted:#8494a3; --muted2:#5d6b7a;
|
|
--teal:#43d6c4; --teal-dim:#1c5f59; --teal-deep:#123f3b;
|
|
--amber:#f4b24e; --amber-dim:#7a5a24;
|
|
--mono:ui-monospace,"SF Mono","JetBrains Mono",Menlo,Consolas,monospace;
|
|
--sans:system-ui,-apple-system,"Segoe UI",Roboto,sans-serif;
|
|
}
|
|
*{box-sizing:border-box}
|
|
.board{
|
|
background:var(--ground); color:var(--ink);
|
|
font-family:var(--mono); min-height:100vh;
|
|
display:grid; grid-template-columns:1fr 340px; gap:0;
|
|
--edge:radial-gradient(120% 120% at 50% 0%,#0d141d 0%,#080c12 70%);
|
|
}
|
|
@media(max-width:820px){ .board{grid-template-columns:1fr} }
|
|
|
|
/* ---- stage ---- */
|
|
.stage{position:relative; padding:28px 20px 20px; background:var(--edge); overflow:hidden}
|
|
.eyebrow{font-size:11px; letter-spacing:.28em; text-transform:uppercase; color:var(--teal);
|
|
display:flex; align-items:center; gap:10px}
|
|
.eyebrow::before{content:""; width:7px; height:7px; border-radius:50%; background:var(--teal);
|
|
box-shadow:0 0 10px var(--teal)}
|
|
h1{font-family:var(--sans); font-weight:640; font-size:clamp(22px,3vw,32px);
|
|
letter-spacing:-.01em; margin:.5rem 0 .15rem; text-wrap:balance; line-height:1.05}
|
|
.sub{color:var(--muted); font-size:13px; max-width:60ch; line-height:1.5; margin:0}
|
|
.mapwrap{position:absolute; inset:96px 12px 56px; }
|
|
svg{width:100%; height:100%; display:block}
|
|
.region{stroke:var(--line); stroke-width:.5; cursor:default;
|
|
transition:fill .25s, filter .25s, opacity .5s}
|
|
.region.lit{fill:var(--teal-deep)}
|
|
.region.lit:hover{fill:var(--teal-dim)}
|
|
.region.deep{fill:var(--amber-dim); cursor:pointer}
|
|
.region.county{cursor:default}
|
|
.booting .region{opacity:0}
|
|
@keyframes breathe{0%,100%{filter:drop-shadow(0 0 2px rgba(244,178,78,.35))}
|
|
50%{filter:drop-shadow(0 0 9px rgba(244,178,78,.8))}}
|
|
.region.deep.pulse{animation:breathe 3.4s ease-in-out infinite}
|
|
@media(prefers-reduced-motion:reduce){
|
|
.region{transition:none} .region.deep.pulse{animation:none}
|
|
.booting .region{opacity:1}
|
|
}
|
|
.stagefoot{position:absolute; left:20px; right:20px; bottom:18px;
|
|
font-size:10.5px; color:var(--muted2); letter-spacing:.02em; line-height:1.5}
|
|
|
|
/* ---- rail ---- */
|
|
.rail{background:var(--panel); border-left:1px solid var(--line);
|
|
padding:24px 20px; display:flex; flex-direction:column; gap:20px}
|
|
.rail h2{font-size:11px; letter-spacing:.24em; text-transform:uppercase;
|
|
color:var(--muted); margin:0 0 12px; font-weight:500}
|
|
.totals{display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--line-soft);
|
|
border:1px solid var(--line-soft)}
|
|
.tile{background:var(--panel2); padding:12px 12px 11px}
|
|
.tile .n{font-size:22px; font-variant-numeric:tabular-nums; letter-spacing:-.01em}
|
|
.tile .k{font-size:10px; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); margin-top:3px}
|
|
.tile.federal .n{color:var(--teal)} .tile.deep .n{color:var(--amber)}
|
|
|
|
.readout{border:1px solid var(--line); background:var(--panel2); min-height:150px;
|
|
padding:14px 15px; display:flex; flex-direction:column; gap:9px}
|
|
.readout .cursor{color:var(--teal)}
|
|
.ro-name{font-family:var(--sans); font-size:17px; font-weight:600; letter-spacing:-.01em}
|
|
.ro-tier{font-size:10px; letter-spacing:.16em; text-transform:uppercase}
|
|
.ro-tier.roof{color:var(--teal)} .ro-tier.ground{color:var(--amber)}
|
|
.ro-rows{display:flex; flex-direction:column; gap:5px; margin-top:2px}
|
|
.ro-row{display:flex; justify-content:space-between; font-size:12.5px;
|
|
border-bottom:1px dotted var(--line-soft); padding-bottom:4px}
|
|
.ro-row span:first-child{color:var(--muted)}
|
|
.ro-row span:last-child{font-variant-numeric:tabular-nums}
|
|
.ro-hint{color:var(--muted2); font-size:11px; line-height:1.5}
|
|
.ro-cta{color:var(--amber); font-size:11px; letter-spacing:.04em}
|
|
|
|
.legend{display:flex; flex-direction:column; gap:9px; font-size:12px}
|
|
.lg{display:flex; align-items:flex-start; gap:10px; color:var(--muted)}
|
|
.sw{width:13px; height:13px; border-radius:3px; margin-top:1px; flex:none;
|
|
border:1px solid rgba(255,255,255,.08)}
|
|
.sw.roof{background:var(--teal-dim)} .sw.ground{background:var(--amber-dim)}
|
|
.sw.scale{background:linear-gradient(90deg,#2a2416,var(--amber))}
|
|
.lg b{color:var(--ink); font-weight:600}
|
|
|
|
.backbtn{font-family:var(--mono); font-size:11px; letter-spacing:.12em; text-transform:uppercase;
|
|
color:var(--teal); background:transparent; border:1px solid var(--teal-dim);
|
|
padding:8px 12px; cursor:pointer; align-self:flex-start; transition:background .2s}
|
|
.backbtn:hover{background:var(--teal-deep)}
|
|
.backbtn:focus-visible{outline:2px solid var(--teal); outline-offset:2px}
|
|
.region:focus-visible{outline:none; stroke:var(--teal); stroke-width:1.5}
|
|
.hidden{display:none}
|
|
.ledger{font-size:10.5px; color:var(--muted2); border-top:1px solid var(--line-soft);
|
|
padding-top:12px; line-height:1.6}
|
|
.ledger b{color:var(--muted)}
|
|
</style>
|
|
|
|
<div class="board booting" id="board">
|
|
<section class="stage">
|
|
<div class="eyebrow">Republic OS · coverage</div>
|
|
<h1 id="title">The roof over fifty states. The foundation under one.</h1>
|
|
<p class="sub" id="subtitle">Every current officeholder in the mirror, as a map. Teal is the federal and state tier — the roof, present everywhere. Amber is county and municipal depth — the foundation, so far only under Florida. Hover a region; click Florida to descend.</p>
|
|
<div class="mapwrap"><svg id="map" preserveAspectRatio="xMidYMid meet"></svg></div>
|
|
<div class="stagefoot" id="stagefoot">Alaska, Hawaii & Puerto Rico are mirrored at the federal and state tier but omitted from this projection. County depth is real only for Florida — the other 3,000+ counties are the frontier.</div>
|
|
</section>
|
|
|
|
<aside class="rail">
|
|
<div>
|
|
<h2>The mirror, counted</h2>
|
|
<div class="totals">
|
|
<div class="tile federal"><div class="n" id="t-fed">—</div><div class="k">Federal</div></div>
|
|
<div class="tile"><div class="n" id="t-state">—</div><div class="k">State</div></div>
|
|
<div class="tile"><div class="n" id="t-county">—</div><div class="k">County</div></div>
|
|
<div class="tile deep"><div class="n" id="t-muni">—</div><div class="k">Municipal</div></div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="readout" id="readout">
|
|
<div class="ro-name"><span class="cursor">▸ </span>Readout</div>
|
|
<div class="ro-hint">Hover any region to print its coverage here.</div>
|
|
</div>
|
|
|
|
<button class="backbtn hidden" id="back">◂ back to the nation</button>
|
|
|
|
<div class="legend" id="legend">
|
|
<h2 style="margin-bottom:2px">Legend</h2>
|
|
<div class="lg"><span class="sw roof"></span><span><b>Roof</b> — mapped at federal + state tier. Every state.</span></div>
|
|
<div class="lg"><span class="sw ground"></span><span><b>Foundation</b> — county + municipal depth. Click to descend.</span></div>
|
|
</div>
|
|
|
|
<div class="ledger" id="ledger">
|
|
<b>233</b> federal bodies also mirrored — the House, the Senate, 49 committees, 181 subcommittees, each with its leadership. The Speaker is no longer just a district seat.
|
|
</div>
|
|
</aside>
|
|
</div>
|
|
|
|
<script>
|
|
const STATES = {"type":"FeatureCollection","features":[{"type":"Feature","id":"01","properties":{"name":"Alabama"},"geometry":{"type":"Polygon","coordinates":[[[-87.359,35.001],[-85.607,34.985],[-85.431,34.125],[-85.185,32.86],[-85.07,32.58],[-84.96,32.422],[-85.004,32.323],[-84.889,32.263],[-85.059,32.137],[-85.054,32.011],[-85.141,31.841],[-85.043,31.54],[-85.114,31.277],[-85.004,31.003],[-85.497,30.998],[-87.6,30.998],[-87.633,30.866],[-87.409,30.674],[-87.447,30.51],[-87.37,30.428],[-87.518,30.28],[-87.655,30.247],[-87.907,30.412],[-87.934,30.658],[-88.011,30.685],[-88.104,30.499],[-88.137,30.318],[-88.394,30.368],[-88.471,31.896],[-88.241,33.796],[-88.099,34.892],[-88.203,34.996],[-87.359,35.001]]]}},{"type":"Feature","id":"02","properties":{"name":"Alaska"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-131.602,55.118],[-131.569,55.282],[-131.356,55.184],[-131.388,55.014],[-131.646,55.036],[-131.602,55.118]]],[[[-131.832,55.425],[-131.646,55.304],[-131.75,55.129],[-131.832,55.189],[-131.832,55.425]]],[[[-132.977,56.438],[-132.736,56.46],[-132.632,56.421],[-132.665,56.274],[-132.878,56.241],[-133.07,56.334],[-132.977,56.438]]],[[[-133.596,56.35],[-133.163,56.317],[-133.053,56.126],[-132.621,55.912],[-132.473,55.781],[-132.462,55.671],[-132.358,55.649],[-132.341,55.507],[-132.166,55.364],[-132.144,55.238],[-132.029,55.277],[-131.98,55.178],[-131.958,54.789],[-132.029,54.702],[-132.309,54.718],[-132.385,54.915],[-132.484,54.899],[-132.686,55.047],[-132.747,54.997],[-132.916,55.047],[-132.889,54.899],[-132.73,54.937],[-132.626,54.882],[-132.676,54.68],[-132.867,54.702],[-133.157,54.959],[-133.24,55.091],[-133.223,55.228],[-133.453,55.217],[-133.453,55.321],[-133.278,55.332],[-133.103,55.425],[-133.179,55.589],[-133.388,55.622],[-133.42,55.885],[-133.497,56.016],[-133.639,55.923],[-133.694,56.071],[-133.546,56.142],[-133.667,56.312],[-133.596,56.35]]],[[[-133.738,55.556],[-133.546,55.49],[-133.415,55.573],[-133.283,55.534],[-133.42,55.386],[-133.634,55.43],[-133.738,55.556]]],[[[-133.908,56.931],[-134.05,57.029],[-133.886,57.095],[-133.344,57.002],[-133.103,57.008],[-132.933,56.821],[-132.621,56.668],[-132.654,56.553],[-132.818,56.493],[-133.042,56.52],[-133.201,56.449],[-133.42,56.493],[-133.661,56.449],[-133.711,56.684],[-133.689,56.838],[-133.869,56.843],[-133.908,56.931]]],[[[-134.116,56.482],[-134.253,56.558],[-134.401,56.723],[-134.417,56.849],[-134.297,56.909],[-134.171,56.849],[-134.143,56.953],[-133.749,56.772],[-133.711,56.597],[-133.848,56.575],[-133.935,56.378],[-133.837,56.323],[-133.957,56.093],[-134.11,56.142],[-134.132,56.0],[-134.231,56.071],[-134.291,56.35],[-134.116,56.482]]],[[[-134.636,56.285],[-134.669,56.17],[-134.806,56.235],[-135.178,56.679],[-135.414,56.81],[-135.332,56.914],[-135.425,57.166],[-135.688,57.369],[-135.419,57.566],[-135.299,57.484],[-135.063,57.418],[-134.85,57.407],[-134.844,57.249],[-134.636,56.728],[-134.636,56.285]]],[[[-134.713,58.223],[-134.373,58.147],[-134.176,58.158],[-134.187,58.081],[-133.902,57.807],[-134.1,57.851],[-134.149,57.758],[-133.935,57.615],[-133.869,57.364],[-134.083,57.298],[-134.154,57.21],[-134.499,57.029],[-134.603,57.035],[-134.647,57.227],[-134.576,57.342],[-134.609,57.511],[-134.729,57.72],[-134.707,57.829],[-134.784,58.097],[-134.916,58.212],[-134.954,58.41],[-134.713,58.223]]],[[[-135.858,57.331],[-135.715,57.331],[-135.567,57.15],[-135.633,57.024],[-135.858,56.997],[-135.825,57.194],[-135.858,57.331]]],[[[-136.279,58.207],[-135.978,58.201],[-135.781,58.289],[-135.496,58.169],[-135.649,58.037],[-135.595,57.988],[-135.452,58.136],[-135.107,58.086],[-134.916,57.977],[-135.025,57.78],[-134.937,57.763],[-134.822,57.5],[-135.085,57.462],[-135.573,57.676],[-135.556,57.457],[-135.71,57.369],[-135.89,57.407],[-136.0,57.544],[-136.208,57.637],[-136.367,57.829],[-136.57,57.917],[-136.559,58.076],[-136.422,58.13],[-136.378,58.267],[-136.279,58.207]]],[[[-147.08,60.201],[-147.502,59.949],[-147.534,59.85],[-147.874,59.784],[-147.803,59.938],[-147.436,60.097],[-147.206,60.272],[-147.08,60.201]]],[[[-147.562,60.578],[-147.617,60.37],[-147.759,60.157],[-147.956,60.228],[-147.792,60.474],[-147.562,60.578]]],[[[-147.786,70.245],[-147.682,70.201],[-147.162,70.158],[-146.888,70.185],[-146.51,70.185],[-146.099,70.147],[-145.858,70.169],[-145.623,70.086],[-145.196,69.993],[-144.621,69.971],[-144.462,70.026],[-144.078,70.059],[-143.914,70.13],[-143.498,70.141],[-143.503,70.092],[-143.257,70.119],[-142.748,70.043],[-142.403,69.917],[-142.079,69.856],[-142.008,69.802],[-141.712,69.791],[-141.433,69.698],[-141.378,69.637],[-141.209,69.687],[-141.0,69.648],[-141.0,60.305],[-140.535,60.222],[-140.475,60.31],[-139.987,60.184],[-139.697,60.343],[-139.089,60.359],[-139.199,60.091],[-139.045,59.998],[-138.7,59.91],[-138.623,59.768],[-137.605,59.242],[-137.446,58.908],[-137.265,59.001],[-136.827,59.16],[-136.581,59.165],[-136.466,59.286],[-136.476,59.467],[-136.301,59.467],[-136.257,59.626],[-135.945,59.664],[-135.48,59.801],[-135.025,59.565],[-135.069,59.423],[-134.959,59.28],[-134.702,59.248],[-134.379,59.034],[-134.401,58.974],[-134.253,58.859],[-133.842,58.727],[-133.174,58.152],[-133.075,57.999],[-132.867,57.845],[-132.56,57.506],[-132.254,57.216],[-132.369,57.095],[-132.051,57.051],[-132.128,56.876],[-131.87,56.805],[-131.838,56.602],[-131.58,56.613],[-131.087,56.405],[-130.78,56.367],[-130.622,56.268],[-130.468,56.241],[-130.424,56.142],[-130.101,56.115],[-130.003,55.994],[-130.151,55.77],[-130.129,55.584],[-129.986,55.277],[-130.096,55.2],[-130.337,54.921],[-130.687,54.718],[-130.786,54.822],[-130.917,54.789],[-131.011,54.997],[-130.983,55.085],[-131.093,55.189],[-130.863,55.299],[-130.928,55.337],[-131.158,55.2],[-131.284,55.288],[-131.427,55.238],[-131.843,55.458],[-131.701,55.699],[-131.963,55.616],[-131.974,55.496],[-132.183,55.589],[-132.226,55.704],[-132.084,55.83],[-132.128,55.956],[-132.325,55.852],[-132.522,56.076],[-132.643,56.033],[-132.719,56.219],[-132.528,56.339],[-132.341,56.339],[-132.396,56.487],[-132.298,56.679],[-132.451,56.673],[-132.769,56.838],[-132.993,57.035],[-133.519,57.177],[-133.508,57.577],[-133.678,57.626],[-133.639,57.791],[-133.815,57.835],[-134.072,58.054],[-134.143,58.169],[-134.587,58.207],[-135.074,58.503],[-135.283,59.193],[-135.381,59.034],[-135.337,58.892],[-135.14,58.618],[-135.189,58.574],[-135.058,58.349],[-135.085,58.201],[-135.277,58.234],[-135.43,58.399],[-135.633,58.426],[-135.918,58.382],[-135.912,58.618],[-136.088,58.815],[-136.246,58.755],[-136.876,58.963],[-136.931,58.903],[-136.586,58.837],[-136.318,58.673],[-136.214,58.667],[-136.181,58.536],[-136.044,58.382],[-136.389,58.295],[-136.592,58.349],[-136.597,58.212],[-136.86,58.317],[-136.948,58.393],[-137.112,58.393],[-137.566,58.59],[-137.901,58.766],[-137.933,58.87],[-138.12,59.023],[-138.634,59.133],[-138.919,59.248],[-139.418,59.379],[-139.746,59.505],[-139.719,59.642],[-139.626,59.598],[-139.516,59.686],[-139.626,59.883],[-139.489,59.992],[-139.555,60.042],[-139.801,59.834],[-140.316,59.697],[-140.929,59.746],[-141.444,59.872],[-141.466,59.971],[-141.707,59.949],[-141.964,60.02],[-142.539,60.086],[-142.874,60.091],[-143.624,60.036],[-143.892,59.998],[-144.232,60.14],[-144.654,60.206],[-144.785,60.294],[-144.834,60.442],[-145.125,60.431],[-145.223,60.299],[-145.738,60.474],[-145.82,60.551],[-146.351,60.409],[-146.609,60.239],[-146.718,60.398],[-146.609,60.485],[-146.455,60.463],[-145.952,60.578],[-146.017,60.666],[-146.253,60.622],[-146.346,60.737],[-146.565,60.754],[-146.784,61.044],[-146.866,60.973],[-147.173,60.934],[-147.272,60.973],[-147.376,60.88],[-147.759,60.913],[-147.775,60.809],[-148.033,60.781],[-148.153,60.819],[-148.066,61.006],[-148.175,61.0],[-148.351,60.803],[-148.11,60.737],[-148.088,60.595],[-147.94,60.442],[-148.027,60.277],[-148.219,60.332],[-148.274,60.25],[-148.088,60.217],[-147.984,59.998],[-148.252,59.954],[-148.4,59.998],[-148.635,59.938],[-148.756,59.987],[-149.068,59.982],[-149.057,60.064],[-149.205,60.009],[-149.287,59.905],[-149.419,59.998],[-149.583,59.866],[-149.512,59.806],[-149.742,59.73],[-149.95,59.719],[-150.032,59.615],[-150.256,59.521],[-150.41,59.554],[-150.58,59.445],[-150.717,59.45],[-151.001,59.226],[-151.308,59.209],[-151.407,59.28],[-151.593,59.16],[-151.976,59.253],[-151.889,59.423],[-151.637,59.483],[-151.472,59.472],[-151.423,59.538],[-151.127,59.669],[-151.116,59.779],[-151.505,59.631],[-151.828,59.719],[-151.867,59.779],[-151.702,60.031],[-151.423,60.212],[-151.379,60.359],[-151.297,60.387],[-151.264,60.546],[-151.407,60.721],[-151.062,60.787],[-150.404,61.039],[-150.246,60.94],[-150.043,60.913],[-149.742,61.017],[-150.076,61.154],[-150.207,61.258],[-150.47,61.247],[-150.656,61.296],[-150.711,61.252],[-151.023,61.181],[-151.166,61.044],[-151.478,61.011],[-151.801,60.852],[-151.834,60.748],[-152.08,60.694],[-152.135,60.578],[-152.31,60.507],[-152.392,60.305],[-152.732,60.173],[-152.568,60.069],[-152.705,59.916],[-153.022,59.888],[-153.05,59.691],[-153.345,59.62],[-153.439,59.702],[-153.586,59.549],[-153.762,59.543],[-153.729,59.434],[-154.118,59.368],[-154.194,59.067],[-153.751,59.05],[-153.4,58.968],[-153.302,58.87],[-153.444,58.711],[-153.68,58.612],[-153.899,58.607],[-153.921,58.519],[-154.063,58.486],[-153.997,58.377],[-154.145,58.212],[-154.463,58.059],[-154.644,58.059],[-154.819,58.004],[-154.989,58.015],[-155.12,57.955],[-155.082,57.873],[-155.328,57.829],[-155.377,57.709],[-155.547,57.785],[-155.733,57.55],[-156.046,57.566],[-156.024,57.44],[-156.21,57.473],[-156.341,57.418],[-156.341,57.249],[-156.549,56.986],[-156.884,56.953],[-157.157,56.832],[-157.201,56.767],[-157.377,56.86],[-157.672,56.608],[-157.754,56.679],[-157.919,56.657],[-157.957,56.515],[-158.127,56.46],[-158.329,56.482],[-158.488,56.339],[-158.209,56.296],[-158.51,55.978],[-159.376,55.874],[-159.617,55.594],[-159.677,55.655],[-159.644,55.83],[-159.814,55.857],[-160.027,55.792],[-160.06,55.72],[-160.394,55.605],[-160.537,55.474],[-160.581,55.567],[-160.668,55.458],[-160.865,55.529],[-161.232,55.359],[-161.506,55.364],[-161.468,55.496],[-161.588,55.622],[-161.698,55.518],[-161.687,55.408],[-162.054,55.074],[-162.18,55.156],[-162.218,55.03],[-162.47,55.052],[-162.508,55.249],[-162.662,55.293],[-162.717,55.222],[-162.58,55.134],[-162.645,54.997],[-162.848,54.926],[-163.001,55.08],[-163.188,55.091],[-163.22,55.03],[-163.034,54.943],[-163.374,54.8],[-163.144,54.762],[-163.138,54.696],[-163.33,54.746],[-163.587,54.614],[-164.086,54.62],[-164.332,54.532],[-164.354,54.466],[-164.639,54.39],[-164.847,54.417],[-164.918,54.603],[-164.71,54.663],[-164.551,54.888],[-164.343,54.893],[-163.894,55.041],[-163.533,55.047],[-163.396,54.904],[-163.292,55.008],[-163.314,55.129],[-163.105,55.184],[-162.881,55.184],[-162.58,55.447],[-162.246,55.682],[-161.807,55.89],[-161.293,55.983],[-161.079,55.94],[-160.871,56.0],[-160.816,55.912],[-160.931,55.814],[-160.805,55.737],[-160.767,55.857],[-160.509,55.868],[-160.438,55.792],[-160.279,55.764],[-160.274,55.857],[-160.537,55.94],[-160.559,55.994],[-160.383,56.252],[-160.148,56.4],[-159.83,56.542],[-159.326,56.668],[-158.959,56.849],[-158.784,56.783],[-158.642,56.81],[-158.702,56.925],[-158.658,57.035],[-158.379,57.265],[-157.995,57.413],[-157.689,57.61],[-157.705,57.72],[-157.459,58.497],[-157.075,58.705],[-157.119,58.87],[-158.039,58.634],[-158.329,58.662],[-158.401,58.76],[-158.565,58.804],[-158.62,58.914],[-158.768,58.864],[-158.861,58.694],[-158.702,58.481],[-158.894,58.388],[-159.063,58.421],[-159.392,58.76],[-159.617,58.93],[-159.732,58.93],[-159.808,58.804],[-159.907,58.782],[-160.055,58.886],[-160.235,58.903],[-160.318,59.072],[-160.854,58.881],[-161.336,58.744],[-161.375,58.667],[-161.753,58.552],[-161.939,58.656],[-161.769,58.777],[-161.829,59.061],[-161.955,59.363],[-161.703,59.489],[-161.911,59.741],[-162.092,59.883],[-162.235,60.091],[-162.448,60.179],[-162.503,59.998],[-162.76,59.96],[-163.171,59.845],[-163.664,59.795],[-163.932,59.806],[-164.162,59.866],[-164.19,60.025],[-164.387,60.075],[-164.699,60.294],[-164.962,60.338],[-165.269,60.578],[-165.061,60.688],[-165.017,60.891],[-165.176,60.847],[-165.198,60.973],[-165.121,61.077],[-165.324,61.17],[-165.345,61.071],[-165.592,61.11],[-165.625,61.28],[-165.816,61.301],[-165.921,61.416],[-165.915,61.559],[-166.107,61.493],[-166.14,61.63],[-165.904,61.663],[-166.096,61.816],[-165.756,61.827],[-165.756,62.013],[-165.674,62.139],[-165.044,62.539],[-164.913,62.66],[-164.82,62.638],[-164.874,62.808],[-164.633,63.098],[-164.425,63.213],[-164.036,63.262],[-163.735,63.213],[-163.314,63.038],[-163.04,63.06],[-162.662,63.229],[-162.273,63.487],[-162.076,63.514],[-162.026,63.448],[-161.555,63.448],[-161.139,63.503],[-160.767,63.772],[-160.767,63.837],[-160.953,64.089],[-160.975,64.237],[-161.265,64.396],[-161.375,64.533],[-161.079,64.495],[-160.8,64.61],[-160.783,64.719],[-161.145,64.922],[-161.413,64.763],[-161.665,64.79],[-161.9,64.703],[-162.169,64.681],[-162.235,64.62],[-162.541,64.533],[-162.634,64.385],[-162.788,64.325],[-162.859,64.5],[-163.045,64.538],[-163.177,64.401],[-163.253,64.467],[-163.598,64.566],[-164.305,64.56],[-164.809,64.451],[-165.0,64.434],[-165.411,64.5],[-166.189,64.577],[-166.392,64.637],[-166.485,64.735],[-166.413,64.872],[-166.693,64.987],[-166.638,65.113],[-166.463,65.179],[-166.518,65.338],[-166.797,65.338],[-167.027,65.382],[-167.476,65.415],[-167.711,65.497],[-168.073,65.579],[-168.106,65.683],[-167.542,65.82],[-166.83,66.05],[-166.331,66.187],[-166.046,66.11],[-165.756,66.094],[-165.69,66.203],[-165.866,66.22],[-165.882,66.313],[-165.187,66.466],[-164.403,66.581],[-163.982,66.592],[-163.752,66.554],[-163.872,66.39],[-163.828,66.275],[-163.916,66.192],[-163.768,66.061],[-163.494,66.083],[-163.149,66.061],[-162.749,66.088],[-162.634,66.039],[-162.371,66.028],[-162.141,66.077],[-161.84,66.023],[-161.55,66.242],[-161.342,66.253],[-161.199,66.209],[-161.128,66.335],[-161.528,66.395],[-161.911,66.346],[-161.873,66.51],[-162.174,66.685],[-162.503,66.74],[-162.602,66.899],[-162.344,66.937],[-162.015,66.778],[-162.076,66.652],[-161.917,66.554],[-161.572,66.439],[-161.49,66.559],[-161.884,66.718],[-161.714,67.003],[-161.851,67.052],[-162.24,66.992],[-162.64,67.008],[-162.7,67.058],[-162.903,67.008],[-163.741,67.129],[-163.757,67.255],[-164.009,67.534],[-164.212,67.638],[-164.535,67.726],[-165.192,67.967],[-165.493,68.06],[-165.795,68.082],[-166.244,68.246],[-166.682,68.339],[-166.704,68.372],[-166.375,68.421],[-166.227,68.575],[-166.216,68.882],[-165.329,68.86],[-164.256,68.931],[-163.976,68.986],[-163.533,69.139],[-163.111,69.374],[-163.023,69.61],[-162.842,69.813],[-162.47,69.982],[-162.311,70.108],[-161.851,70.311],[-161.78,70.256],[-161.397,70.24],[-160.838,70.344],[-160.487,70.453],[-159.649,70.793],[-159.332,70.809],[-159.299,70.76],[-158.976,70.798],[-158.658,70.788],[-158.034,70.831],[-157.42,70.979],[-156.812,71.286],[-156.566,71.352],[-156.522,71.297],[-155.586,71.171],[-155.509,71.083],[-155.832,70.968],[-155.98,70.963],[-155.974,70.809],[-155.503,70.859],[-155.476,70.941],[-155.262,71.018],[-155.191,70.974],[-155.032,71.149],[-154.567,70.99],[-154.644,70.87],[-154.353,70.837],[-154.183,70.766],[-153.932,70.881],[-153.488,70.886],[-153.236,70.924],[-152.59,70.886],[-152.261,70.842],[-152.42,70.607],[-151.817,70.547],[-151.774,70.486],[-151.188,70.382],[-151.182,70.432],[-150.76,70.497],[-150.355,70.492],[-150.35,70.437],[-150.114,70.432],[-149.868,70.508],[-149.462,70.519],[-149.178,70.486],[-148.789,70.404],[-148.608,70.421],[-148.351,70.306],[-148.203,70.349],[-147.962,70.316],[-147.786,70.245]]],[[[-152.94,58.026],[-152.946,57.982],[-153.291,58.048],[-153.044,58.306],[-152.82,58.327],[-152.666,58.563],[-152.497,58.355],[-152.354,58.426],[-152.08,58.311],[-152.08,58.152],[-152.48,58.13],[-152.655,58.059],[-152.94,58.026]]],[[[-153.959,57.539],[-153.674,57.67],[-153.932,57.698],[-153.937,57.813],[-153.723,57.889],[-153.57,57.835],[-153.548,57.72],[-153.46,57.796],[-153.455,57.966],[-153.269,57.889],[-153.236,57.999],[-153.072,57.933],[-152.874,57.933],[-152.721,57.993],[-152.469,57.889],[-152.469,57.599],[-152.152,57.621],[-152.36,57.429],[-152.743,57.506],[-152.601,57.38],[-152.71,57.276],[-152.907,57.325],[-152.913,57.128],[-153.214,57.073],[-153.313,56.991],[-153.499,57.068],[-153.696,56.86],[-153.849,56.838],[-154.014,56.745],[-154.074,56.969],[-154.304,56.849],[-154.315,56.92],[-154.523,56.991],[-154.539,57.194],[-154.742,57.276],[-154.627,57.511],[-154.227,57.659],[-153.981,57.648],[-153.959,57.539]]],[[[-154.534,56.602],[-154.742,56.4],[-154.808,56.432],[-154.534,56.602]]],[[[-155.635,55.923],[-155.476,55.912],[-155.531,55.704],[-155.794,55.731],[-155.837,55.803],[-155.635,55.923]]],[[[-159.89,55.282],[-159.951,55.069],[-160.257,54.893],[-160.109,55.162],[-160.005,55.134],[-159.89,55.282]]],[[[-160.52,55.359],[-160.334,55.359],[-160.34,55.249],[-160.526,55.129],[-160.69,55.211],[-160.794,55.134],[-160.854,55.321],[-160.8,55.381],[-160.52,55.359]]],[[[-162.256,54.981],[-162.235,54.893],[-162.35,54.839],[-162.437,54.932],[-162.256,54.981]]],[[[-162.415,63.635],[-162.563,63.536],[-162.612,63.624],[-162.415,63.635]]],[[[-162.804,54.488],[-162.591,54.45],[-162.612,54.368],[-162.782,54.373],[-162.804,54.488]]],[[[-165.548,54.296],[-165.477,54.181],[-165.63,54.132],[-165.685,54.253],[-165.548,54.296]]],[[[-165.74,54.154],[-166.046,54.045],[-166.112,54.121],[-165.981,54.22],[-165.74,54.154]]],[[[-166.364,60.359],[-166.134,60.398],[-166.085,60.327],[-165.882,60.343],[-165.685,60.277],[-165.647,59.992],[-165.751,59.899],[-166.008,59.845],[-166.063,59.746],[-166.441,59.856],[-166.616,59.85],[-166.994,59.992],[-167.125,59.992],[-167.345,60.075],[-167.421,60.206],[-167.312,60.239],[-166.939,60.206],[-166.764,60.31],[-166.578,60.321],[-166.496,60.392],[-166.364,60.359]]],[[[-166.375,54.012],[-166.211,53.935],[-166.545,53.749],[-166.539,53.716],[-166.118,53.853],[-166.112,53.776],[-166.282,53.683],[-166.556,53.623],[-166.583,53.53],[-166.879,53.431],[-167.136,53.426],[-167.306,53.332],[-167.624,53.25],[-167.794,53.338],[-167.46,53.442],[-167.355,53.426],[-167.104,53.513],[-167.164,53.612],[-167.021,53.716],[-166.808,53.667],[-166.786,53.732],[-167.016,53.754],[-167.142,53.825],[-167.032,53.946],[-166.643,54.017],[-166.561,53.88],[-166.375,54.012]]],[[[-168.79,53.157],[-168.407,53.349],[-168.385,53.431],[-168.237,53.524],[-168.007,53.568],[-167.887,53.519],[-167.843,53.387],[-168.27,53.245],[-168.5,53.037],[-168.686,52.966],[-168.79,53.157]]],[[[-169.749,52.894],[-169.705,52.796],[-169.963,52.79],[-169.99,52.856],[-169.749,52.894]]],[[[-170.149,57.221],[-170.286,57.128],[-170.313,57.221],[-170.149,57.221]]],[[[-170.669,52.697],[-170.603,52.604],[-170.79,52.538],[-170.817,52.637],[-170.669,52.697]]],[[[-171.743,63.717],[-170.948,63.569],[-170.488,63.695],[-170.28,63.684],[-170.094,63.613],[-170.045,63.492],[-169.645,63.426],[-169.519,63.366],[-168.999,63.339],[-168.686,63.295],[-168.856,63.147],[-169.108,63.18],[-169.376,63.153],[-169.513,63.087],[-169.639,62.939],[-169.831,63.076],[-170.056,63.169],[-170.264,63.18],[-170.362,63.284],[-170.866,63.416],[-171.102,63.421],[-171.463,63.306],[-171.737,63.366],[-171.852,63.487],[-171.743,63.717]]],[[[-172.433,52.39],[-172.416,52.275],[-172.608,52.254],[-172.57,52.352],[-172.433,52.39]]],[[[-173.627,52.149],[-173.495,52.106],[-173.123,52.111],[-173.106,52.078],[-173.55,52.029],[-173.627,52.149]]],[[[-174.322,52.281],[-174.328,52.38],[-174.185,52.418],[-173.983,52.319],[-174.059,52.226],[-174.18,52.232],[-174.141,52.128],[-174.333,52.117],[-174.738,52.007],[-174.968,52.04],[-174.903,52.117],[-174.656,52.106],[-174.322,52.281]]],[[[-176.469,51.854],[-176.288,51.87],[-176.288,51.744],[-176.518,51.761],[-176.803,51.613],[-176.913,51.81],[-176.792,51.815],[-176.776,51.963],[-176.628,51.969],[-176.628,51.859],[-176.469,51.854]]],[[[-177.154,51.947],[-177.044,51.898],[-177.121,51.728],[-177.274,51.678],[-177.28,51.783],[-177.154,51.947]]],[[[-178.123,51.919],[-177.953,51.914],[-177.8,51.793],[-177.964,51.651],[-178.123,51.919]]],[[[-187.108,52.993],[-187.294,52.927],[-187.305,52.823],[-188.905,52.763],[-188.642,52.927],[-188.642,53.004],[-187.108,52.993]]]]}},{"type":"Feature","id":"04","properties":{"name":"Arizona"},"geometry":{"type":"Polygon","coordinates":[[[-109.043,37.0],[-109.048,31.332],[-111.074,31.332],[-112.247,31.704],[-114.815,32.493],[-114.722,32.717],[-114.525,32.756],[-114.47,32.843],[-114.525,33.029],[-114.662,33.035],[-114.728,33.407],[-114.525,33.55],[-114.498,33.698],[-114.536,33.933],[-114.415,34.108],[-114.257,34.174],[-114.136,34.306],[-114.333,34.448],[-114.47,34.711],[-114.634,34.875],[-114.634,35.001],[-114.574,35.138],[-114.596,35.324],[-114.678,35.516],[-114.739,36.102],[-114.372,36.14],[-114.251,36.02],[-114.152,36.025],[-114.048,36.195],[-114.048,37.0],[-110.499,37.006],[-109.043,37.0]]]}},{"type":"Feature","id":"05","properties":{"name":"Arkansas"},"geometry":{"type":"Polygon","coordinates":[[[-94.474,36.502],[-90.153,36.496],[-90.065,36.305],[-90.218,36.184],[-90.377,35.998],[-89.731,35.998],[-89.764,35.812],[-89.912,35.757],[-89.944,35.604],[-90.131,35.439],[-90.114,35.198],[-90.213,35.023],[-90.311,34.996],[-90.251,34.908],[-90.41,34.831],[-90.481,34.662],[-90.585,34.618],[-90.569,34.421],[-90.75,34.366],[-90.744,34.3],[-90.952,34.136],[-90.892,34.026],[-91.073,33.867],[-91.231,33.561],[-91.056,33.429],[-91.144,33.347],[-91.089,33.139],[-91.166,33.002],[-93.608,33.019],[-94.041,33.019],[-94.041,33.55],[-94.184,33.594],[-94.381,33.544],[-94.485,33.637],[-94.43,35.396],[-94.616,36.502],[-94.474,36.502]]]}},{"type":"Feature","id":"06","properties":{"name":"California"},"geometry":{"type":"Polygon","coordinates":[[[-123.233,42.006],[-122.379,42.012],[-121.037,41.995],[-120.002,41.995],[-119.996,40.265],[-120.002,38.999],[-118.715,38.101],[-117.499,37.219],[-116.54,36.502],[-115.85,35.971],[-114.634,35.001],[-114.634,34.875],[-114.47,34.711],[-114.333,34.448],[-114.136,34.306],[-114.257,34.174],[-114.415,34.108],[-114.536,33.933],[-114.498,33.698],[-114.525,33.55],[-114.728,33.407],[-114.662,33.035],[-114.525,33.029],[-114.47,32.843],[-114.525,32.756],[-114.722,32.717],[-116.048,32.624],[-117.126,32.537],[-117.247,32.668],[-117.252,32.876],[-117.329,33.123],[-117.472,33.298],[-117.784,33.539],[-118.184,33.763],[-118.26,33.703],[-118.414,33.741],[-118.392,33.84],[-118.567,34.043],[-118.802,33.999],[-119.219,34.147],[-119.279,34.267],[-119.558,34.415],[-119.876,34.41],[-120.139,34.475],[-120.473,34.448],[-120.648,34.579],[-120.61,34.859],[-120.67,34.903],[-120.632,35.1],[-120.895,35.248],[-120.906,35.45],[-121.004,35.461],[-121.168,35.637],[-121.283,35.675],[-121.333,35.784],[-121.716,36.195],[-121.897,36.316],[-121.935,36.639],[-121.859,36.611],[-121.787,36.803],[-121.93,36.978],[-122.105,36.956],[-122.335,37.115],[-122.417,37.241],[-122.401,37.362],[-122.516,37.521],[-122.516,37.783],[-122.33,37.783],[-122.406,38.15],[-122.488,38.112],[-122.505,37.931],[-122.702,37.893],[-122.938,38.03],[-122.976,38.265],[-123.129,38.452],[-123.332,38.567],[-123.441,38.698],[-123.737,38.956],[-123.688,39.032],[-123.825,39.366],[-123.765,39.553],[-123.852,39.832],[-124.11,40.106],[-124.362,40.259],[-124.411,40.44],[-124.159,40.878],[-124.11,41.026],[-124.159,41.141],[-124.066,41.442],[-124.148,41.716],[-124.257,41.782],[-124.214,42.001],[-123.233,42.006]]]}},{"type":"Feature","id":"08","properties":{"name":"Colorado"},"geometry":{"type":"Polygon","coordinates":[[[-107.92,41.004],[-105.729,40.998],[-104.053,41.004],[-102.054,41.004],[-102.054,40.002],[-102.043,36.995],[-103.001,37.0],[-104.338,36.995],[-106.868,36.995],[-107.421,37.0],[-109.043,37.0],[-109.043,38.167],[-109.059,38.276],[-109.053,39.125],[-109.048,40.998],[-107.92,41.004]]]}},{"type":"Feature","id":"09","properties":{"name":"Connecticut"},"geometry":{"type":"Polygon","coordinates":[[[-73.054,42.039],[-71.799,42.023],[-71.799,42.006],[-71.799,41.415],[-71.86,41.322],[-71.947,41.338],[-72.385,41.261],[-72.906,41.283],[-73.13,41.146],[-73.371,41.102],[-73.656,40.987],[-73.727,41.102],[-73.481,41.212],[-73.552,41.294],[-73.486,42.05],[-73.054,42.039]]]}},{"type":"Feature","id":"10","properties":{"name":"Delaware"},"geometry":{"type":"Polygon","coordinates":[[[-75.414,39.804],[-75.507,39.684],[-75.611,39.618],[-75.589,39.459],[-75.441,39.312],[-75.403,39.065],[-75.19,38.808],[-75.091,38.797],[-75.047,38.452],[-75.693,38.463],[-75.787,39.722],[-75.617,39.832],[-75.414,39.804]]]}},{"type":"Feature","id":"11","properties":{"name":"District of Columbia"},"geometry":{"type":"Polygon","coordinates":[[[-77.035,38.994],[-76.909,38.895],[-77.041,38.791],[-77.117,38.934],[-77.035,38.994]]]}},{"type":"Feature","id":"12","properties":{"name":"Florida"},"geometry":{"type":"Polygon","coordinates":[[[-85.497,30.998],[-85.004,31.003],[-84.867,30.713],[-83.498,30.647],[-82.216,30.57],[-82.167,30.357],[-82.047,30.362],[-82.003,30.565],[-82.041,30.751],[-81.948,30.828],[-81.718,30.746],[-81.444,30.707],[-81.384,30.275],[-81.258,29.787],[-80.968,29.146],[-80.524,28.462],[-80.59,28.412],[-80.568,28.095],[-80.382,27.739],[-80.091,27.021],[-80.031,26.797],[-80.037,26.567],[-80.146,25.74],[-80.239,25.723],[-80.338,25.466],[-80.305,25.384],[-80.497,25.197],[-80.573,25.241],[-80.76,25.165],[-81.077,25.121],[-81.17,25.225],[-81.127,25.378],[-81.351,25.822],[-81.526,25.904],[-81.68,25.844],[-81.8,26.09],[-81.833,26.293],[-82.041,26.517],[-82.09,26.665],[-82.058,26.879],[-82.173,26.917],[-82.145,26.791],[-82.249,26.758],[-82.567,27.301],[-82.693,27.438],[-82.392,27.837],[-82.589,27.815],[-82.72,27.689],[-82.852,27.887],[-82.677,28.434],[-82.644,28.889],[-82.764,28.998],[-82.802,29.146],[-82.994,29.179],[-83.219,29.42],[-83.399,29.519],[-83.41,29.667],[-83.536,29.721],[-83.64,29.886],[-84.024,30.105],[-84.358,30.056],[-84.342,29.902],[-84.451,29.93],[-84.867,29.743],[-85.311,29.7],[-85.3,29.809],[-85.404,29.94],[-85.924,30.236],[-86.297,30.362],[-86.631,30.395],[-86.91,30.373],[-87.518,30.28],[-87.37,30.428],[-87.447,30.51],[-87.409,30.674],[-87.633,30.866],[-87.6,30.998],[-85.497,30.998]]]}},{"type":"Feature","id":"13","properties":{"name":"Georgia"},"geometry":{"type":"Polygon","coordinates":[[[-83.109,35.001],[-83.323,34.788],[-83.339,34.684],[-83.005,34.47],[-82.901,34.486],[-82.748,34.267],[-82.715,34.152],[-82.556,33.944],[-82.326,33.818],[-82.195,33.632],[-81.926,33.462],[-81.937,33.347],[-81.762,33.161],[-81.493,33.008],[-81.428,32.843],[-81.417,32.63],[-81.28,32.558],[-81.121,32.29],[-81.116,32.12],[-80.886,32.033],[-81.132,31.693],[-81.176,31.518],[-81.28,31.364],[-81.291,31.206],[-81.4,31.134],[-81.444,30.707],[-81.718,30.746],[-81.948,30.828],[-82.041,30.751],[-82.003,30.565],[-82.047,30.362],[-82.167,30.357],[-82.216,30.57],[-83.498,30.647],[-84.867,30.713],[-85.004,31.003],[-85.114,31.277],[-85.043,31.54],[-85.141,31.841],[-85.054,32.011],[-85.059,32.137],[-84.889,32.263],[-85.004,32.323],[-84.96,32.422],[-85.07,32.58],[-85.185,32.86],[-85.431,34.125],[-85.607,34.985],[-84.32,34.99],[-83.619,34.985],[-83.109,35.001]]]}},{"type":"Feature","id":"15","properties":{"name":"Hawaii"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-155.635,18.948],[-155.881,19.036],[-155.92,19.124],[-155.887,19.348],[-156.062,19.731],[-155.925,19.857],[-155.827,20.033],[-155.898,20.148],[-155.876,20.268],[-155.596,20.126],[-155.284,20.022],[-155.093,19.868],[-155.093,19.737],[-154.808,19.523],[-154.983,19.348],[-155.295,19.266],[-155.514,19.134],[-155.635,18.948]]],[[[-156.588,21.03],[-156.473,20.893],[-156.325,20.953],[-156.002,20.794],[-156.051,20.652],[-156.38,20.58],[-156.445,20.608],[-156.462,20.783],[-156.632,20.821],[-156.697,20.92],[-156.588,21.03]]],[[[-156.982,21.21],[-157.081,21.106],[-157.311,21.106],[-157.24,21.221],[-156.982,21.21]]],[[[-157.952,21.698],[-157.842,21.462],[-157.897,21.325],[-158.11,21.303],[-158.253,21.583],[-158.127,21.588],[-157.952,21.698]]],[[[-159.469,22.229],[-159.354,22.218],[-159.299,22.114],[-159.332,21.966],[-159.447,21.873],[-159.764,21.988],[-159.726,22.152],[-159.469,22.229]]]]}},{"type":"Feature","id":"16","properties":{"name":"Idaho"},"geometry":{"type":"Polygon","coordinates":[[[-116.048,49.0],[-116.048,47.976],[-115.724,47.697],[-115.719,47.423],[-115.527,47.302],[-115.325,47.259],[-115.303,47.187],[-114.93,46.919],[-114.886,46.809],[-114.624,46.705],[-114.613,46.64],[-114.322,46.645],[-114.465,46.273],[-114.492,46.037],[-114.388,45.884],[-114.569,45.774],[-114.498,45.67],[-114.547,45.561],[-114.333,45.457],[-114.087,45.594],[-113.988,45.703],[-113.807,45.605],[-113.835,45.522],[-113.736,45.331],[-113.572,45.128],[-113.451,45.057],[-113.457,44.865],[-113.342,44.783],[-113.134,44.772],[-113.002,44.449],[-112.887,44.394],[-112.783,44.487],[-112.471,44.482],[-112.241,44.569],[-112.104,44.52],[-111.869,44.564],[-111.819,44.509],[-111.617,44.547],[-111.387,44.756],[-111.228,44.58],[-111.047,44.476],[-111.047,42.001],[-112.164,41.995],[-114.043,41.995],[-117.028,42.001],[-117.028,43.83],[-116.896,44.159],[-116.979,44.241],[-117.17,44.257],[-117.241,44.394],[-117.039,44.75],[-116.935,44.783],[-116.831,44.931],[-116.847,45.024],[-116.732,45.144],[-116.672,45.32],[-116.464,45.615],[-116.546,45.752],[-116.781,45.824],[-116.918,45.993],[-116.924,46.169],[-117.055,46.344],[-117.039,46.426],[-117.044,47.762],[-117.033,49.0],[-116.048,49.0]]]}},{"type":"Feature","id":"17","properties":{"name":"Illinois"},"geometry":{"type":"Polygon","coordinates":[[[-90.64,42.51],[-88.789,42.494],[-87.803,42.494],[-87.836,42.302],[-87.682,42.077],[-87.524,41.71],[-87.529,39.35],[-87.639,39.169],[-87.513,38.956],[-87.496,38.78],[-87.622,38.638],[-87.655,38.506],[-87.836,38.293],[-87.951,38.276],[-87.923,38.15],[-88.0,38.101],[-88.06,37.866],[-88.027,37.8],[-88.159,37.657],[-88.066,37.482],[-88.477,37.389],[-88.515,37.285],[-88.422,37.154],[-88.548,37.071],[-88.915,37.225],[-89.03,37.214],[-89.183,37.039],[-89.134,36.984],[-89.293,36.995],[-89.517,37.28],[-89.435,37.345],[-89.517,37.537],[-89.517,37.69],[-89.84,37.904],[-89.95,37.882],[-90.059,38.013],[-90.355,38.216],[-90.35,38.375],[-90.18,38.632],[-90.207,38.725],[-90.109,38.846],[-90.251,38.917],[-90.47,38.961],[-90.585,38.868],[-90.662,38.928],[-90.728,39.257],[-91.062,39.47],[-91.368,39.728],[-91.494,40.034],[-91.505,40.237],[-91.418,40.38],[-91.401,40.56],[-91.122,40.67],[-91.095,40.823],[-90.963,40.922],[-90.947,41.097],[-91.111,41.239],[-91.045,41.415],[-90.656,41.464],[-90.344,41.59],[-90.311,41.743],[-90.18,41.809],[-90.142,42.001],[-90.169,42.127],[-90.394,42.225],[-90.421,42.329],[-90.64,42.51]]]}},{"type":"Feature","id":"18","properties":{"name":"Indiana"},"geometry":{"type":"Polygon","coordinates":[[[-85.99,41.76],[-84.807,41.76],[-84.807,41.694],[-84.802,40.5],[-84.818,39.103],[-84.895,39.06],[-84.813,38.786],[-84.988,38.78],[-85.174,38.687],[-85.431,38.731],[-85.42,38.534],[-85.59,38.452],[-85.656,38.326],[-85.831,38.276],[-85.924,38.024],[-86.039,37.959],[-86.264,38.052],[-86.302,38.167],[-86.521,38.041],[-86.505,37.931],[-86.729,37.893],[-86.795,37.992],[-87.047,37.893],[-87.129,37.789],[-87.381,37.937],[-87.513,37.904],[-87.6,37.975],[-87.682,37.904],[-87.934,37.893],[-88.027,37.8],[-88.06,37.866],[-88.0,38.101],[-87.923,38.15],[-87.951,38.276],[-87.836,38.293],[-87.655,38.506],[-87.622,38.638],[-87.496,38.78],[-87.513,38.956],[-87.639,39.169],[-87.529,39.35],[-87.524,41.71],[-87.425,41.645],[-87.118,41.645],[-86.823,41.76],[-85.99,41.76]]]}},{"type":"Feature","id":"19","properties":{"name":"Iowa"},"geometry":{"type":"Polygon","coordinates":[[[-91.368,43.501],[-91.215,43.501],[-91.204,43.354],[-91.056,43.255],[-91.177,43.134],[-91.144,42.91],[-91.067,42.751],[-90.711,42.636],[-90.64,42.51],[-90.421,42.329],[-90.394,42.225],[-90.169,42.127],[-90.142,42.001],[-90.18,41.809],[-90.311,41.743],[-90.344,41.59],[-90.656,41.464],[-91.045,41.415],[-91.111,41.239],[-90.947,41.097],[-90.963,40.922],[-91.095,40.823],[-91.122,40.67],[-91.401,40.56],[-91.418,40.38],[-91.527,40.412],[-91.73,40.615],[-91.834,40.61],[-93.258,40.582],[-94.633,40.571],[-95.766,40.588],[-95.881,40.719],[-95.827,40.977],[-95.925,41.201],[-95.92,41.453],[-96.095,41.541],[-96.122,41.678],[-96.062,41.798],[-96.128,41.973],[-96.265,42.039],[-96.446,42.488],[-96.632,42.707],[-96.544,42.855],[-96.511,43.052],[-96.435,43.123],[-96.561,43.222],[-96.528,43.397],[-96.582,43.479],[-96.451,43.501],[-91.368,43.501]]]}},{"type":"Feature","id":"20","properties":{"name":"Kansas"},"geometry":{"type":"Polygon","coordinates":[[[-101.906,40.002],[-95.306,40.002],[-95.208,39.909],[-94.885,39.832],[-95.109,39.542],[-94.983,39.443],[-94.824,39.207],[-94.611,39.158],[-94.616,37.0],[-100.088,37.0],[-102.043,36.995],[-102.054,40.002],[-101.906,40.002]]]}},{"type":"Feature","id":"21","properties":{"name":"Kentucky"},"geometry":{"type":"Polygon","coordinates":[[[-83.903,38.769],[-83.679,38.632],[-83.52,38.704],[-83.142,38.627],[-83.033,38.725],[-82.89,38.758],[-82.846,38.589],[-82.731,38.561],[-82.594,38.424],[-82.622,38.123],[-82.501,37.931],[-82.342,37.783],[-82.293,37.668],[-82.101,37.553],[-81.97,37.537],[-82.353,37.269],[-82.72,37.121],[-82.72,37.044],[-82.868,36.978],[-82.879,36.891],[-83.071,36.852],[-83.137,36.743],[-83.673,36.6],[-83.69,36.584],[-84.544,36.595],[-85.289,36.628],[-85.486,36.617],[-86.593,36.655],[-87.852,36.633],[-88.071,36.677],[-88.055,36.496],[-89.298,36.507],[-89.419,36.496],[-89.364,36.622],[-89.216,36.579],[-89.134,36.984],[-89.183,37.039],[-89.03,37.214],[-88.915,37.225],[-88.548,37.071],[-88.422,37.154],[-88.515,37.285],[-88.477,37.389],[-88.066,37.482],[-88.159,37.657],[-88.027,37.8],[-87.934,37.893],[-87.682,37.904],[-87.6,37.975],[-87.513,37.904],[-87.381,37.937],[-87.129,37.789],[-87.047,37.893],[-86.795,37.992],[-86.729,37.893],[-86.505,37.931],[-86.521,38.041],[-86.302,38.167],[-86.264,38.052],[-86.039,37.959],[-85.924,38.024],[-85.831,38.276],[-85.656,38.326],[-85.59,38.452],[-85.42,38.534],[-85.431,38.731],[-85.174,38.687],[-84.988,38.78],[-84.813,38.786],[-84.895,39.06],[-84.818,39.103],[-84.435,39.103],[-84.232,38.895],[-84.216,38.808],[-83.903,38.769]]]}},{"type":"Feature","id":"22","properties":{"name":"Louisiana"},"geometry":{"type":"Polygon","coordinates":[[[-93.608,33.019],[-91.166,33.002],[-91.073,32.887],[-91.144,32.843],[-91.155,32.641],[-91.007,32.515],[-90.985,32.219],[-91.106,31.989],[-91.341,31.846],[-91.401,31.622],[-91.5,31.644],[-91.516,31.277],[-91.637,31.266],[-91.566,31.069],[-91.637,30.998],[-89.747,30.998],[-89.846,30.669],[-89.682,30.45],[-89.643,30.286],[-89.523,30.181],[-89.818,30.045],[-89.84,29.946],[-89.599,29.88],[-89.495,30.039],[-89.287,29.88],[-89.304,29.754],[-89.424,29.7],[-89.649,29.749],[-89.621,29.656],[-89.698,29.513],[-89.506,29.387],[-89.2,29.349],[-89.09,29.201],[-89.002,29.179],[-89.161,29.009],[-89.336,29.042],[-89.484,29.218],[-89.851,29.311],[-89.851,29.48],[-90.032,29.426],[-90.021,29.283],[-90.103,29.152],[-90.235,29.13],[-90.333,29.278],[-90.563,29.283],[-90.645,29.13],[-90.799,29.086],[-90.963,29.179],[-91.095,29.19],[-91.221,29.437],[-91.445,29.546],[-91.533,29.53],[-91.62,29.738],[-91.883,29.71],[-91.889,29.836],[-92.146,29.716],[-92.113,29.623],[-92.31,29.535],[-92.617,29.579],[-92.973,29.716],[-93.225,29.776],[-93.767,29.727],[-93.839,29.689],[-93.926,29.787],[-93.691,30.143],[-93.767,30.335],[-93.696,30.439],[-93.729,30.576],[-93.63,30.68],[-93.526,30.937],[-93.543,31.151],[-93.817,31.556],[-93.822,31.775],[-94.041,31.994],[-94.041,33.019],[-93.608,33.019]]]}},{"type":"Feature","id":"23","properties":{"name":"Maine"},"geometry":{"type":"Polygon","coordinates":[[[-70.704,43.058],[-70.824,43.129],[-70.808,43.228],[-70.967,43.343],[-71.033,44.657],[-71.082,45.303],[-70.649,45.44],[-70.72,45.511],[-70.556,45.665],[-70.386,45.736],[-70.419,45.796],[-70.26,45.889],[-70.31,46.065],[-70.211,46.327],[-70.058,46.415],[-69.997,46.694],[-69.225,47.461],[-69.044,47.428],[-69.033,47.242],[-68.902,47.176],[-68.579,47.286],[-68.376,47.286],[-68.234,47.357],[-67.954,47.198],[-67.79,47.067],[-67.779,45.944],[-67.801,45.676],[-67.456,45.605],[-67.505,45.49],[-67.418,45.38],[-67.489,45.281],[-67.347,45.128],[-67.16,45.161],[-66.98,44.805],[-67.188,44.646],[-67.308,44.706],[-67.407,44.597],[-67.549,44.624],[-67.566,44.531],[-67.752,44.542],[-68.048,44.328],[-68.119,44.476],[-68.223,44.487],[-68.174,44.328],[-68.404,44.252],[-68.458,44.378],[-68.568,44.312],[-68.825,44.312],[-68.831,44.46],[-68.984,44.427],[-68.957,44.323],[-69.099,44.104],[-69.072,44.044],[-69.258,43.923],[-69.444,43.967],[-69.554,43.841],[-69.707,43.825],[-69.833,43.72],[-69.986,43.742],[-70.03,43.852],[-70.255,43.677],[-70.195,43.567],[-70.359,43.529],[-70.37,43.436],[-70.556,43.321],[-70.704,43.058]]]}},{"type":"Feature","id":"24","properties":{"name":"Maryland"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.995,37.953],[-76.017,37.953],[-76.044,37.953],[-75.995,37.953]]],[[[-79.478,39.722],[-75.787,39.722],[-75.693,38.463],[-75.047,38.452],[-75.244,38.03],[-75.398,38.013],[-75.672,37.953],[-75.885,37.909],[-75.88,38.074],[-75.962,38.139],[-75.847,38.211],[-76.0,38.375],[-76.049,38.304],[-76.258,38.32],[-76.329,38.501],[-76.263,38.501],[-76.258,38.736],[-76.192,38.83],[-76.279,39.147],[-76.17,39.333],[-76.0,39.366],[-75.973,39.558],[-76.099,39.536],[-76.104,39.438],[-76.367,39.312],[-76.444,39.197],[-76.46,38.906],[-76.559,38.769],[-76.515,38.539],[-76.384,38.38],[-76.4,38.26],[-76.318,38.139],[-76.362,38.057],[-76.592,38.216],[-76.92,38.293],[-77.019,38.446],[-77.205,38.359],[-77.276,38.479],[-77.128,38.632],[-77.041,38.791],[-76.909,38.895],[-77.035,38.994],[-77.117,38.934],[-77.249,39.027],[-77.457,39.076],[-77.457,39.224],[-77.567,39.306],[-77.72,39.322],[-77.835,39.602],[-78.005,39.602],[-78.174,39.695],[-78.268,39.618],[-78.432,39.624],[-78.47,39.514],[-78.766,39.585],[-78.963,39.438],[-79.095,39.47],[-79.292,39.301],[-79.489,39.207],[-79.478,39.722]]]]}},{"type":"Feature","id":"25","properties":{"name":"Massachusetts"},"geometry":{"type":"Polygon","coordinates":[[[-70.918,42.888],[-70.819,42.872],[-70.781,42.696],[-70.824,42.554],[-70.983,42.422],[-70.989,42.269],[-70.77,42.247],[-70.638,42.088],[-70.66,41.962],[-70.551,41.93],[-70.54,41.814],[-70.26,41.716],[-69.937,41.809],[-70.008,41.672],[-70.485,41.552],[-70.66,41.546],[-70.764,41.639],[-70.928,41.612],[-70.934,41.541],[-71.12,41.497],[-71.197,41.678],[-71.224,41.71],[-71.328,41.782],[-71.383,42.017],[-71.531,42.017],[-71.799,42.006],[-71.799,42.023],[-73.054,42.039],[-73.486,42.05],[-73.508,42.088],[-73.267,42.746],[-72.457,42.729],[-71.295,42.696],[-71.186,42.789],[-70.918,42.888]]]}},{"type":"Feature","id":"26","properties":{"name":"Michigan"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-83.454,41.732],[-84.807,41.694],[-84.807,41.76],[-85.99,41.76],[-86.823,41.76],[-86.62,41.891],[-86.483,42.116],[-86.357,42.253],[-86.264,42.444],[-86.209,42.718],[-86.231,43.014],[-86.527,43.594],[-86.434,43.814],[-86.499,44.076],[-86.269,44.345],[-86.22,44.569],[-86.253,44.69],[-86.089,44.739],[-86.067,44.903],[-85.809,44.947],[-85.612,45.128],[-85.629,44.767],[-85.525,44.75],[-85.393,44.931],[-85.388,45.238],[-85.305,45.314],[-85.032,45.364],[-85.119,45.577],[-84.938,45.758],[-84.714,45.769],[-84.462,45.654],[-84.216,45.637],[-84.095,45.495],[-83.909,45.484],[-83.597,45.353],[-83.487,45.358],[-83.317,45.144],[-83.454,45.029],[-83.323,44.882],[-83.273,44.712],[-83.334,44.339],[-83.536,44.246],[-83.586,44.055],[-83.827,43.989],[-83.958,43.759],[-83.909,43.671],[-83.668,43.589],[-83.482,43.715],[-83.263,43.972],[-82.917,44.071],[-82.748,43.994],[-82.644,43.852],[-82.54,43.436],[-82.523,43.228],[-82.414,42.976],[-82.518,42.614],[-82.682,42.559],[-82.687,42.691],[-82.797,42.652],[-82.923,42.351],[-83.126,42.236],[-83.186,42.006],[-83.438,41.814],[-83.454,41.732]]],[[[-85.508,45.731],[-85.492,45.61],[-85.623,45.588],[-85.568,45.758],[-85.508,45.731]]],[[[-87.589,45.095],[-87.743,45.199],[-87.65,45.342],[-87.885,45.364],[-87.792,45.5],[-87.781,45.676],[-87.989,45.796],[-88.104,45.922],[-88.531,46.021],[-88.663,45.988],[-89.09,46.136],[-90.12,46.338],[-90.229,46.508],[-90.415,46.568],[-90.027,46.673],[-89.851,46.793],[-89.413,46.842],[-89.128,46.99],[-88.997,46.996],[-88.887,47.1],[-88.575,47.248],[-88.416,47.374],[-88.181,47.456],[-87.956,47.385],[-88.351,47.078],[-88.444,46.974],[-88.438,46.788],[-88.247,46.93],[-87.902,46.908],[-87.633,46.809],[-87.392,46.536],[-87.261,46.486],[-87.009,46.53],[-86.949,46.47],[-86.697,46.437],[-86.16,46.667],[-85.881,46.689],[-85.508,46.678],[-85.256,46.755],[-85.064,46.76],[-85.026,46.481],[-84.829,46.443],[-84.632,46.486],[-84.55,46.421],[-84.418,46.503],[-84.128,46.53],[-84.122,46.18],[-83.991,46.032],[-83.794,45.993],[-83.772,46.092],[-83.58,46.092],[-83.476,45.988],[-83.564,45.911],[-84.111,45.977],[-84.374,45.933],[-84.659,46.054],[-84.741,45.944],[-84.703,45.851],[-84.829,45.873],[-85.015,46.01],[-85.338,46.092],[-85.503,46.097],[-85.661,45.966],[-85.924,45.933],[-86.209,45.961],[-86.324,45.906],[-86.352,45.796],[-86.664,45.703],[-86.647,45.835],[-86.784,45.862],[-86.839,45.725],[-87.069,45.72],[-87.173,45.659],[-87.326,45.424],[-87.611,45.123],[-87.589,45.095]]],[[[-88.805,47.976],[-89.057,47.85],[-89.189,47.834],[-89.178,47.938],[-88.548,48.173],[-88.668,48.009],[-88.805,47.976]]]]}},{"type":"Feature","id":"27","properties":{"name":"Minnesota"},"geometry":{"type":"Polygon","coordinates":[[[-92.015,46.705],[-92.091,46.749],[-92.294,46.667],[-92.294,46.076],[-92.354,46.015],[-92.639,45.933],[-92.869,45.72],[-92.886,45.577],[-92.771,45.566],[-92.645,45.44],[-92.76,45.287],[-92.738,45.117],[-92.809,44.75],[-92.546,44.569],[-92.338,44.553],[-92.234,44.443],[-91.927,44.334],[-91.878,44.202],[-91.593,44.033],[-91.434,43.994],[-91.242,43.775],[-91.27,43.616],[-91.215,43.501],[-91.368,43.501],[-96.451,43.501],[-96.451,45.298],[-96.681,45.413],[-96.856,45.605],[-96.582,45.818],[-96.561,45.933],[-96.599,46.333],[-96.719,46.437],[-96.802,46.656],[-96.785,46.924],[-96.823,46.968],[-96.856,47.609],[-97.053,47.949],[-97.13,48.14],[-97.163,48.546],[-97.097,48.683],[-97.229,49.0],[-95.153,49.0],[-95.153,49.384],[-94.956,49.373],[-94.824,49.296],[-94.693,48.776],[-94.589,48.715],[-94.26,48.699],[-94.222,48.65],[-93.839,48.628],[-93.795,48.518],[-93.466,48.546],[-93.466,48.589],[-93.209,48.644],[-92.984,48.622],[-92.727,48.54],[-92.655,48.436],[-92.508,48.447],[-92.371,48.223],[-92.305,48.316],[-92.053,48.359],[-92.009,48.266],[-91.713,48.201],[-91.713,48.113],[-91.566,48.042],[-91.264,48.08],[-91.084,48.179],[-90.837,48.239],[-90.75,48.091],[-90.58,48.124],[-90.377,48.091],[-90.142,48.113],[-89.873,47.987],[-89.616,48.009],[-89.638,47.954],[-89.972,47.828],[-90.437,47.73],[-90.739,47.626],[-91.171,47.368],[-91.357,47.209],[-91.642,47.029],[-92.091,46.788],[-92.015,46.705]]]}},{"type":"Feature","id":"28","properties":{"name":"Mississippi"},"geometry":{"type":"Polygon","coordinates":[[[-88.471,34.996],[-88.203,34.996],[-88.099,34.892],[-88.241,33.796],[-88.471,31.896],[-88.394,30.368],[-88.504,30.324],[-88.745,30.346],[-88.844,30.412],[-89.085,30.368],[-89.419,30.253],[-89.523,30.181],[-89.643,30.286],[-89.682,30.45],[-89.846,30.669],[-89.747,30.998],[-91.637,30.998],[-91.566,31.069],[-91.637,31.266],[-91.516,31.277],[-91.5,31.644],[-91.401,31.622],[-91.341,31.846],[-91.106,31.989],[-90.985,32.219],[-91.007,32.515],[-91.155,32.641],[-91.144,32.843],[-91.073,32.887],[-91.166,33.002],[-91.089,33.139],[-91.144,33.347],[-91.056,33.429],[-91.231,33.561],[-91.073,33.867],[-90.892,34.026],[-90.952,34.136],[-90.744,34.3],[-90.75,34.366],[-90.569,34.421],[-90.585,34.618],[-90.481,34.662],[-90.41,34.831],[-90.251,34.908],[-90.311,34.996],[-88.471,34.996]]]}},{"type":"Feature","id":"29","properties":{"name":"Missouri"},"geometry":{"type":"Polygon","coordinates":[[[-91.834,40.61],[-91.73,40.615],[-91.527,40.412],[-91.418,40.38],[-91.505,40.237],[-91.494,40.034],[-91.368,39.728],[-91.062,39.47],[-90.728,39.257],[-90.662,38.928],[-90.585,38.868],[-90.47,38.961],[-90.251,38.917],[-90.109,38.846],[-90.207,38.725],[-90.18,38.632],[-90.35,38.375],[-90.355,38.216],[-90.059,38.013],[-89.95,37.882],[-89.84,37.904],[-89.517,37.69],[-89.517,37.537],[-89.435,37.345],[-89.517,37.28],[-89.293,36.995],[-89.134,36.984],[-89.216,36.579],[-89.364,36.622],[-89.419,36.496],[-89.484,36.496],[-89.539,36.496],[-89.534,36.25],[-89.731,35.998],[-90.377,35.998],[-90.218,36.184],[-90.065,36.305],[-90.153,36.496],[-94.474,36.502],[-94.616,36.502],[-94.616,37.0],[-94.611,39.158],[-94.824,39.207],[-94.983,39.443],[-95.109,39.542],[-94.885,39.832],[-95.208,39.909],[-95.306,40.002],[-95.553,40.265],[-95.766,40.588],[-94.633,40.571],[-93.258,40.582],[-91.834,40.61]]]}},{"type":"Feature","id":"30","properties":{"name":"Montana"},"geometry":{"type":"Polygon","coordinates":[[[-104.048,49.0],[-104.042,47.861],[-104.048,45.944],[-104.042,44.997],[-104.058,44.997],[-105.915,45.002],[-109.081,45.002],[-111.053,45.002],[-111.047,44.476],[-111.228,44.58],[-111.387,44.756],[-111.617,44.547],[-111.819,44.509],[-111.869,44.564],[-112.104,44.52],[-112.241,44.569],[-112.471,44.482],[-112.783,44.487],[-112.887,44.394],[-113.002,44.449],[-113.134,44.772],[-113.342,44.783],[-113.457,44.865],[-113.451,45.057],[-113.572,45.128],[-113.736,45.331],[-113.835,45.522],[-113.807,45.605],[-113.988,45.703],[-114.087,45.594],[-114.333,45.457],[-114.547,45.561],[-114.498,45.67],[-114.569,45.774],[-114.388,45.884],[-114.492,46.037],[-114.465,46.273],[-114.322,46.645],[-114.613,46.64],[-114.624,46.705],[-114.886,46.809],[-114.93,46.919],[-115.303,47.187],[-115.325,47.259],[-115.527,47.302],[-115.719,47.423],[-115.724,47.697],[-116.048,47.976],[-116.048,49.0],[-111.502,48.995],[-109.453,49.0],[-104.048,49.0]]]}},{"type":"Feature","id":"31","properties":{"name":"Nebraska"},"geometry":{"type":"Polygon","coordinates":[[[-103.325,43.003],[-101.627,42.998],[-98.499,42.998],[-98.467,42.948],[-97.952,42.767],[-97.831,42.866],[-97.689,42.844],[-97.218,42.844],[-96.692,42.658],[-96.626,42.516],[-96.446,42.488],[-96.265,42.039],[-96.128,41.973],[-96.062,41.798],[-96.122,41.678],[-96.095,41.541],[-95.92,41.453],[-95.925,41.201],[-95.827,40.977],[-95.881,40.719],[-95.766,40.588],[-95.553,40.265],[-95.306,40.002],[-101.906,40.002],[-102.054,40.002],[-102.054,41.004],[-104.053,41.004],[-104.053,43.003],[-103.325,43.003]]]}},{"type":"Feature","id":"32","properties":{"name":"Nevada"},"geometry":{"type":"Polygon","coordinates":[[[-117.028,42.001],[-114.043,41.995],[-114.048,37.0],[-114.048,36.195],[-114.152,36.025],[-114.251,36.02],[-114.372,36.14],[-114.739,36.102],[-114.678,35.516],[-114.596,35.324],[-114.574,35.138],[-114.634,35.001],[-115.85,35.971],[-116.54,36.502],[-117.499,37.219],[-118.715,38.101],[-120.002,38.999],[-119.996,40.265],[-120.002,41.995],[-118.698,41.99],[-117.028,42.001]]]}},{"type":"Feature","id":"33","properties":{"name":"New Hampshire"},"geometry":{"type":"Polygon","coordinates":[[[-71.082,45.303],[-71.033,44.657],[-70.967,43.343],[-70.808,43.228],[-70.824,43.129],[-70.704,43.058],[-70.819,42.872],[-70.918,42.888],[-71.186,42.789],[-71.295,42.696],[-72.457,42.729],[-72.544,42.806],[-72.533,42.954],[-72.446,43.008],[-72.457,43.151],[-72.38,43.573],[-72.205,43.77],[-72.117,43.994],[-72.029,44.076],[-72.035,44.323],[-71.701,44.416],[-71.536,44.586],[-71.63,44.75],[-71.493,44.914],[-71.504,45.013],[-71.361,45.27],[-71.131,45.243],[-71.082,45.303]]]}},{"type":"Feature","id":"34","properties":{"name":"New Jersey"},"geometry":{"type":"Polygon","coordinates":[[[-74.237,41.141],[-73.902,40.998],[-74.023,40.708],[-74.187,40.642],[-74.275,40.489],[-74.001,40.412],[-73.979,40.297],[-74.1,39.761],[-74.412,39.361],[-74.614,39.246],[-74.795,38.994],[-74.888,39.158],[-75.179,39.24],[-75.535,39.459],[-75.556,39.607],[-75.562,39.629],[-75.507,39.684],[-75.414,39.804],[-75.146,39.887],[-75.129,39.963],[-74.823,40.128],[-74.773,40.215],[-75.058,40.418],[-75.069,40.544],[-75.195,40.577],[-75.206,40.692],[-75.053,40.867],[-75.135,40.971],[-74.883,41.179],[-74.828,41.289],[-74.697,41.36],[-74.237,41.141]]]}},{"type":"Feature","id":"35","properties":{"name":"New Mexico"},"geometry":{"type":"Polygon","coordinates":[[[-107.421,37.0],[-106.868,36.995],[-104.338,36.995],[-103.001,37.0],[-103.001,36.502],[-103.04,36.502],[-103.045,34.015],[-103.067,33.002],[-103.067,32.0],[-106.616,32.0],[-106.644,31.901],[-106.529,31.786],[-108.21,31.786],[-108.21,31.332],[-109.048,31.332],[-109.043,37.0],[-107.421,37.0]]]}},{"type":"Feature","id":"36","properties":{"name":"New York"},"geometry":{"type":"Polygon","coordinates":[[[-73.344,45.013],[-73.333,44.805],[-73.388,44.619],[-73.295,44.438],[-73.322,44.246],[-73.437,44.044],[-73.349,43.77],[-73.404,43.688],[-73.245,43.523],[-73.278,42.833],[-73.267,42.746],[-73.508,42.088],[-73.486,42.05],[-73.552,41.294],[-73.481,41.212],[-73.727,41.102],[-73.656,40.987],[-73.229,40.905],[-73.141,40.966],[-72.774,40.966],[-72.588,40.998],[-72.281,41.157],[-72.259,41.042],[-72.101,40.993],[-72.467,40.845],[-73.24,40.626],[-73.563,40.582],[-73.776,40.593],[-73.935,40.544],[-74.023,40.708],[-73.902,40.998],[-74.237,41.141],[-74.697,41.36],[-74.74,41.431],[-74.894,41.437],[-75.075,41.606],[-75.053,41.754],[-75.173,41.869],[-75.25,41.864],[-75.359,42.001],[-79.763,42.001],[-79.763,42.253],[-79.763,42.269],[-79.149,42.554],[-79.051,42.691],[-78.854,42.784],[-78.93,42.954],[-79.012,42.987],[-79.073,43.26],[-78.487,43.375],[-77.966,43.37],[-77.758,43.343],[-77.534,43.233],[-77.391,43.277],[-76.959,43.271],[-76.696,43.343],[-76.416,43.523],[-76.236,43.529],[-76.23,43.803],[-76.137,43.961],[-76.362,44.071],[-76.312,44.197],[-75.912,44.367],[-75.765,44.515],[-75.283,44.849],[-74.828,45.019],[-74.149,44.991],[-73.344,45.013]]]}},{"type":"Feature","id":"37","properties":{"name":"North Carolina"},"geometry":{"type":"Polygon","coordinates":[[[-80.979,36.562],[-80.294,36.546],[-79.511,36.54],[-75.869,36.551],[-75.754,36.151],[-76.033,36.19],[-76.071,36.14],[-76.411,36.08],[-76.46,36.025],[-76.685,36.009],[-76.674,35.938],[-76.4,35.987],[-76.362,35.943],[-76.06,35.993],[-75.962,35.899],[-75.781,35.938],[-75.715,35.697],[-75.776,35.582],[-75.896,35.571],[-76.148,35.324],[-76.482,35.313],[-76.537,35.144],[-76.394,34.974],[-76.279,34.941],[-76.493,34.662],[-76.674,34.694],[-76.991,34.667],[-77.211,34.607],[-77.556,34.415],[-77.829,34.163],[-77.972,33.846],[-78.18,33.917],[-78.541,33.851],[-79.675,34.804],[-80.798,34.82],[-80.781,34.935],[-80.935,35.105],[-81.039,35.045],[-81.044,35.149],[-82.277,35.198],[-82.551,35.16],[-82.764,35.067],[-83.109,35.001],[-83.619,34.985],[-84.32,34.99],[-84.292,35.226],[-84.095,35.248],[-84.018,35.412],[-83.772,35.56],[-83.498,35.565],[-83.252,35.719],[-82.994,35.773],[-82.775,35.998],[-82.638,36.064],[-82.611,35.965],[-82.216,36.157],[-82.036,36.118],[-81.91,36.305],[-81.724,36.354],[-81.68,36.589],[-80.979,36.562]]]}},{"type":"Feature","id":"38","properties":{"name":"North Dakota"},"geometry":{"type":"Polygon","coordinates":[[[-97.229,49.0],[-97.097,48.683],[-97.163,48.546],[-97.13,48.14],[-97.053,47.949],[-96.856,47.609],[-96.823,46.968],[-96.785,46.924],[-96.802,46.656],[-96.719,46.437],[-96.599,46.333],[-96.561,45.933],[-104.048,45.944],[-104.042,47.861],[-104.048,49.0],[-97.229,49.0]]]}},{"type":"Feature","id":"39","properties":{"name":"Ohio"},"geometry":{"type":"Polygon","coordinates":[[[-80.519,41.979],[-80.519,40.637],[-80.666,40.582],[-80.595,40.473],[-80.601,40.319],[-80.738,40.078],[-80.831,39.711],[-81.22,39.388],[-81.346,39.344],[-81.455,39.41],[-81.57,39.268],[-81.685,39.273],[-81.811,39.081],[-81.784,38.966],[-81.888,38.873],[-82.036,39.027],[-82.222,38.786],[-82.173,38.632],[-82.293,38.578],[-82.331,38.446],[-82.594,38.424],[-82.731,38.561],[-82.846,38.589],[-82.89,38.758],[-83.033,38.725],[-83.142,38.627],[-83.52,38.704],[-83.679,38.632],[-83.903,38.769],[-84.216,38.808],[-84.232,38.895],[-84.435,39.103],[-84.818,39.103],[-84.802,40.5],[-84.807,41.694],[-83.454,41.732],[-83.065,41.595],[-82.934,41.513],[-82.835,41.59],[-82.616,41.431],[-82.479,41.382],[-82.014,41.513],[-81.74,41.486],[-81.444,41.672],[-81.012,41.853],[-80.519,41.979],[-80.519,41.979]]]}},{"type":"Feature","id":"40","properties":{"name":"Oklahoma"},"geometry":{"type":"Polygon","coordinates":[[[-100.088,37.0],[-94.616,37.0],[-94.616,36.502],[-94.43,35.396],[-94.485,33.637],[-94.868,33.747],[-94.967,33.862],[-95.224,33.961],[-95.29,33.873],[-95.547,33.878],[-95.602,33.933],[-95.838,33.835],[-95.936,33.889],[-96.15,33.84],[-96.347,33.687],[-96.424,33.774],[-96.632,33.846],[-96.851,33.846],[-96.922,33.961],[-97.174,33.736],[-97.256,33.862],[-97.371,33.824],[-97.459,33.906],[-97.694,33.982],[-97.87,33.851],[-97.946,33.988],[-98.089,34.004],[-98.171,34.114],[-98.362,34.158],[-98.488,34.065],[-98.571,34.147],[-98.768,34.136],[-98.987,34.223],[-99.189,34.212],[-99.261,34.404],[-99.578,34.415],[-99.699,34.382],[-99.923,34.574],[-100.0,34.563],[-100.0,36.502],[-101.813,36.502],[-103.001,36.502],[-103.001,37.0],[-102.043,36.995],[-100.088,37.0]]]}},{"type":"Feature","id":"41","properties":{"name":"Oregon"},"geometry":{"type":"Polygon","coordinates":[[[-123.211,46.174],[-123.118,46.185],[-122.905,46.081],[-122.812,45.961],[-122.762,45.659],[-122.247,45.55],[-121.809,45.709],[-121.535,45.725],[-121.218,45.67],[-121.185,45.605],[-120.637,45.747],[-120.506,45.698],[-120.21,45.725],[-119.964,45.824],[-119.525,45.911],[-119.126,45.933],[-118.989,45.999],[-116.918,45.993],[-116.781,45.824],[-116.546,45.752],[-116.464,45.615],[-116.672,45.32],[-116.732,45.144],[-116.847,45.024],[-116.831,44.931],[-116.935,44.783],[-117.039,44.75],[-117.241,44.394],[-117.17,44.257],[-116.979,44.241],[-116.896,44.159],[-117.028,43.83],[-117.028,42.001],[-118.698,41.99],[-120.002,41.995],[-121.037,41.995],[-122.379,42.012],[-123.233,42.006],[-124.214,42.001],[-124.356,42.116],[-124.433,42.439],[-124.416,42.663],[-124.553,42.839],[-124.455,43.003],[-124.383,43.271],[-124.236,43.556],[-124.17,43.808],[-124.06,44.657],[-124.077,44.772],[-123.978,45.144],[-123.94,45.659],[-123.995,45.944],[-123.945,46.114],[-123.545,46.262],[-123.37,46.147],[-123.211,46.174]]]}},{"type":"Feature","id":"42","properties":{"name":"Pennsylvania"},"geometry":{"type":"Polygon","coordinates":[[[-79.763,42.253],[-79.763,42.001],[-75.359,42.001],[-75.25,41.864],[-75.173,41.869],[-75.053,41.754],[-75.075,41.606],[-74.894,41.437],[-74.74,41.431],[-74.697,41.36],[-74.828,41.289],[-74.883,41.179],[-75.135,40.971],[-75.053,40.867],[-75.206,40.692],[-75.195,40.577],[-75.069,40.544],[-75.058,40.418],[-74.773,40.215],[-74.823,40.128],[-75.129,39.963],[-75.146,39.887],[-75.414,39.804],[-75.617,39.832],[-75.787,39.722],[-79.478,39.722],[-80.519,39.722],[-80.519,40.637],[-80.519,41.979],[-80.519,41.979],[-80.332,42.034],[-79.763,42.269],[-79.763,42.253]]]}},{"type":"Feature","id":"44","properties":{"name":"Rhode Island"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.197,41.678],[-71.12,41.497],[-71.317,41.475],[-71.197,41.678]]],[[[-71.531,42.017],[-71.383,42.017],[-71.328,41.782],[-71.224,41.71],[-71.345,41.727],[-71.449,41.579],[-71.482,41.371],[-71.86,41.322],[-71.799,41.415],[-71.799,42.006],[-71.531,42.017]]]]}},{"type":"Feature","id":"45","properties":{"name":"South Carolina"},"geometry":{"type":"Polygon","coordinates":[[[-82.764,35.067],[-82.551,35.16],[-82.277,35.198],[-81.044,35.149],[-81.039,35.045],[-80.935,35.105],[-80.781,34.935],[-80.798,34.82],[-79.675,34.804],[-78.541,33.851],[-78.717,33.802],[-78.936,33.637],[-79.149,33.38],[-79.188,33.172],[-79.357,33.008],[-79.582,33.008],[-79.631,32.887],[-79.867,32.756],[-79.998,32.613],[-80.206,32.553],[-80.431,32.4],[-80.453,32.328],[-80.661,32.246],[-80.886,32.033],[-81.116,32.12],[-81.121,32.29],[-81.28,32.558],[-81.417,32.63],[-81.428,32.843],[-81.493,33.008],[-81.762,33.161],[-81.937,33.347],[-81.926,33.462],[-82.195,33.632],[-82.326,33.818],[-82.556,33.944],[-82.715,34.152],[-82.748,34.267],[-82.901,34.486],[-83.005,34.47],[-83.339,34.684],[-83.323,34.788],[-83.109,35.001],[-82.764,35.067]]]}},{"type":"Feature","id":"46","properties":{"name":"South Dakota"},"geometry":{"type":"Polygon","coordinates":[[[-104.048,45.944],[-96.561,45.933],[-96.582,45.818],[-96.856,45.605],[-96.681,45.413],[-96.451,45.298],[-96.451,43.501],[-96.582,43.479],[-96.528,43.397],[-96.561,43.222],[-96.435,43.123],[-96.511,43.052],[-96.544,42.855],[-96.632,42.707],[-96.446,42.488],[-96.626,42.516],[-96.692,42.658],[-97.218,42.844],[-97.689,42.844],[-97.831,42.866],[-97.952,42.767],[-98.467,42.948],[-98.499,42.998],[-101.627,42.998],[-103.325,43.003],[-104.053,43.003],[-104.058,44.997],[-104.042,44.997],[-104.048,45.944]]]}},{"type":"Feature","id":"47","properties":{"name":"Tennessee"},"geometry":{"type":"Polygon","coordinates":[[[-88.055,36.496],[-88.071,36.677],[-87.852,36.633],[-86.593,36.655],[-85.486,36.617],[-85.289,36.628],[-84.544,36.595],[-83.69,36.584],[-83.673,36.6],[-81.68,36.589],[-81.724,36.354],[-81.91,36.305],[-82.036,36.118],[-82.216,36.157],[-82.611,35.965],[-82.638,36.064],[-82.775,35.998],[-82.994,35.773],[-83.252,35.719],[-83.498,35.565],[-83.772,35.56],[-84.018,35.412],[-84.095,35.248],[-84.292,35.226],[-84.32,34.99],[-85.607,34.985],[-87.359,35.001],[-88.203,34.996],[-88.471,34.996],[-90.311,34.996],[-90.213,35.023],[-90.114,35.198],[-90.131,35.439],[-89.944,35.604],[-89.912,35.757],[-89.764,35.812],[-89.731,35.998],[-89.534,36.25],[-89.539,36.496],[-89.484,36.496],[-89.419,36.496],[-89.298,36.507],[-88.055,36.496]]]}},{"type":"Feature","id":"48","properties":{"name":"Texas"},"geometry":{"type":"Polygon","coordinates":[[[-101.813,36.502],[-100.0,36.502],[-100.0,34.563],[-99.923,34.574],[-99.699,34.382],[-99.578,34.415],[-99.261,34.404],[-99.189,34.212],[-98.987,34.223],[-98.768,34.136],[-98.571,34.147],[-98.488,34.065],[-98.362,34.158],[-98.171,34.114],[-98.089,34.004],[-97.946,33.988],[-97.87,33.851],[-97.694,33.982],[-97.459,33.906],[-97.371,33.824],[-97.256,33.862],[-97.174,33.736],[-96.922,33.961],[-96.851,33.846],[-96.632,33.846],[-96.424,33.774],[-96.347,33.687],[-96.15,33.84],[-95.936,33.889],[-95.838,33.835],[-95.602,33.933],[-95.547,33.878],[-95.29,33.873],[-95.224,33.961],[-94.967,33.862],[-94.868,33.747],[-94.485,33.637],[-94.381,33.544],[-94.184,33.594],[-94.041,33.55],[-94.041,33.019],[-94.041,31.994],[-93.822,31.775],[-93.817,31.556],[-93.543,31.151],[-93.526,30.937],[-93.63,30.68],[-93.729,30.576],[-93.696,30.439],[-93.767,30.335],[-93.691,30.143],[-93.926,29.787],[-93.839,29.689],[-94.003,29.683],[-94.523,29.546],[-94.709,29.623],[-94.742,29.787],[-94.874,29.672],[-94.967,29.7],[-95.016,29.557],[-94.912,29.497],[-94.896,29.311],[-95.082,29.113],[-95.383,28.867],[-95.985,28.604],[-96.046,28.648],[-96.226,28.582],[-96.232,28.642],[-96.478,28.599],[-96.593,28.725],[-96.665,28.697],[-96.402,28.44],[-96.593,28.358],[-96.774,28.407],[-96.802,28.226],[-97.026,28.04],[-97.256,27.695],[-97.404,27.333],[-97.514,27.361],[-97.541,27.229],[-97.426,27.262],[-97.481,26.999],[-97.557,26.988],[-97.563,26.841],[-97.47,26.758],[-97.442,26.457],[-97.333,26.353],[-97.305,26.161],[-97.218,25.992],[-97.524,25.888],[-97.65,26.019],[-97.886,26.068],[-98.198,26.057],[-98.467,26.222],[-98.669,26.238],[-98.823,26.37],[-99.031,26.413],[-99.173,26.539],[-99.266,26.841],[-99.447,27.021],[-99.425,27.175],[-99.507,27.339],[-99.48,27.481],[-99.606,27.64],[-99.71,27.657],[-99.88,27.799],[-99.934,27.98],[-100.082,28.144],[-100.296,28.281],[-100.4,28.582],[-100.498,28.664],[-100.63,28.905],[-100.674,29.103],[-100.8,29.245],[-101.013,29.371],[-101.063,29.459],[-101.26,29.535],[-101.413,29.754],[-101.851,29.804],[-102.114,29.793],[-102.339,29.869],[-102.388,29.765],[-102.629,29.732],[-102.81,29.524],[-102.919,29.19],[-102.98,29.185],[-103.116,28.987],[-103.281,28.982],[-103.527,29.135],[-104.146,29.382],[-104.267,29.513],[-104.508,29.639],[-104.677,29.924],[-104.688,30.181],[-104.858,30.39],[-104.896,30.57],[-105.006,30.685],[-105.395,30.855],[-105.603,31.085],[-105.773,31.167],[-105.954,31.364],[-106.205,31.469],[-106.381,31.731],[-106.529,31.786],[-106.644,31.901],[-106.616,32.0],[-103.067,32.0],[-103.067,33.002],[-103.045,34.015],[-103.04,36.502],[-103.001,36.502],[-101.813,36.502]]]}},{"type":"Feature","id":"49","properties":{"name":"Utah"},"geometry":{"type":"Polygon","coordinates":[[[-112.164,41.995],[-111.047,42.001],[-111.047,40.998],[-109.048,40.998],[-109.053,39.125],[-109.059,38.276],[-109.043,38.167],[-109.043,37.0],[-110.499,37.006],[-114.048,37.0],[-114.043,41.995],[-112.164,41.995]]]}},{"type":"Feature","id":"50","properties":{"name":"Vermont"},"geometry":{"type":"Polygon","coordinates":[[[-71.504,45.013],[-71.493,44.914],[-71.63,44.75],[-71.536,44.586],[-71.701,44.416],[-72.035,44.323],[-72.029,44.076],[-72.117,43.994],[-72.205,43.77],[-72.38,43.573],[-72.457,43.151],[-72.446,43.008],[-72.533,42.954],[-72.544,42.806],[-72.457,42.729],[-73.267,42.746],[-73.278,42.833],[-73.245,43.523],[-73.404,43.688],[-73.349,43.77],[-73.437,44.044],[-73.322,44.246],[-73.295,44.438],[-73.388,44.619],[-73.333,44.805],[-73.344,45.013],[-72.309,45.002],[-71.504,45.013]]]}},{"type":"Feature","id":"51","properties":{"name":"Virginia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.398,38.013],[-75.244,38.03],[-75.376,37.86],[-75.513,37.8],[-75.595,37.57],[-75.803,37.197],[-75.973,37.121],[-76.028,37.258],[-75.94,37.564],[-75.672,37.953],[-75.398,38.013]]],[[[-76.017,37.953],[-75.995,37.953],[-76.044,37.953],[-76.017,37.953]]],[[[-78.35,39.465],[-77.829,39.131],[-77.72,39.322],[-77.567,39.306],[-77.457,39.224],[-77.457,39.076],[-77.249,39.027],[-77.117,38.934],[-77.041,38.791],[-77.128,38.632],[-77.249,38.589],[-77.326,38.446],[-77.282,38.342],[-77.013,38.375],[-76.964,38.216],[-76.614,38.15],[-76.515,38.024],[-76.236,37.888],[-76.362,37.608],[-76.247,37.389],[-76.384,37.285],[-76.4,37.159],[-76.274,37.082],[-76.411,36.962],[-76.619,37.121],[-76.668,37.066],[-76.488,36.951],[-75.995,36.924],[-75.869,36.551],[-79.511,36.54],[-80.294,36.546],[-80.979,36.562],[-81.68,36.589],[-83.673,36.6],[-83.137,36.743],[-83.071,36.852],[-82.879,36.891],[-82.868,36.978],[-82.72,37.044],[-82.72,37.121],[-82.353,37.269],[-81.97,37.537],[-81.986,37.455],[-81.849,37.285],[-81.68,37.203],[-81.554,37.208],[-81.362,37.34],[-81.225,37.236],[-80.968,37.291],[-80.513,37.482],[-80.475,37.422],[-80.3,37.51],[-80.294,37.69],[-80.185,37.849],[-79.998,37.997],[-79.922,38.178],[-79.724,38.364],[-79.648,38.594],[-79.478,38.457],[-79.314,38.413],[-79.21,38.495],[-78.996,38.851],[-78.87,38.764],[-78.404,39.169],[-78.35,39.465]]]]}},{"type":"Feature","id":"53","properties":{"name":"Washington"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-117.033,49.0],[-117.044,47.762],[-117.039,46.426],[-117.055,46.344],[-116.924,46.169],[-116.918,45.993],[-118.989,45.999],[-119.126,45.933],[-119.525,45.911],[-119.964,45.824],[-120.21,45.725],[-120.506,45.698],[-120.637,45.747],[-121.185,45.605],[-121.218,45.67],[-121.535,45.725],[-121.809,45.709],[-122.247,45.55],[-122.762,45.659],[-122.812,45.961],[-122.905,46.081],[-123.118,46.185],[-123.211,46.174],[-123.37,46.147],[-123.545,46.262],[-123.726,46.3],[-123.874,46.24],[-124.066,46.327],[-124.027,46.464],[-123.896,46.536],[-124.099,46.744],[-124.236,47.286],[-124.318,47.357],[-124.427,47.741],[-124.624,47.888],[-124.707,48.184],[-124.597,48.381],[-124.394,48.288],[-123.984,48.162],[-123.704,48.168],[-123.425,48.118],[-123.162,48.168],[-123.036,48.08],[-122.801,48.086],[-122.636,47.867],[-122.516,47.883],[-122.494,47.587],[-122.423,47.319],[-122.324,47.346],[-122.423,47.576],[-122.395,47.801],[-122.231,48.031],[-122.362,48.124],[-122.373,48.288],[-122.472,48.469],[-122.423,48.6],[-122.488,48.754],[-122.647,48.776],[-122.795,48.891],[-122.757,49.0],[-117.033,49.0]]],[[[-122.718,48.31],[-122.587,48.354],[-122.609,48.151],[-122.768,48.228],[-122.718,48.31]]],[[[-123.025,48.584],[-122.916,48.715],[-122.768,48.557],[-122.812,48.42],[-123.042,48.458],[-123.025,48.584]]]]}},{"type":"Feature","id":"54","properties":{"name":"West Virginia"},"geometry":{"type":"Polygon","coordinates":[[[-80.519,40.637],[-80.519,39.722],[-79.478,39.722],[-79.489,39.207],[-79.292,39.301],[-79.095,39.47],[-78.963,39.438],[-78.766,39.585],[-78.47,39.514],[-78.432,39.624],[-78.268,39.618],[-78.174,39.695],[-78.005,39.602],[-77.835,39.602],[-77.72,39.322],[-77.829,39.131],[-78.35,39.465],[-78.404,39.169],[-78.87,38.764],[-78.996,38.851],[-79.21,38.495],[-79.314,38.413],[-79.478,38.457],[-79.648,38.594],[-79.724,38.364],[-79.922,38.178],[-79.998,37.997],[-80.185,37.849],[-80.294,37.69],[-80.3,37.51],[-80.475,37.422],[-80.513,37.482],[-80.968,37.291],[-81.225,37.236],[-81.362,37.34],[-81.554,37.208],[-81.68,37.203],[-81.849,37.285],[-81.986,37.455],[-81.97,37.537],[-82.101,37.553],[-82.293,37.668],[-82.342,37.783],[-82.501,37.931],[-82.622,38.123],[-82.594,38.424],[-82.331,38.446],[-82.293,38.578],[-82.173,38.632],[-82.222,38.786],[-82.036,39.027],[-81.888,38.873],[-81.784,38.966],[-81.811,39.081],[-81.685,39.273],[-81.57,39.268],[-81.455,39.41],[-81.346,39.344],[-81.22,39.388],[-80.831,39.711],[-80.738,40.078],[-80.601,40.319],[-80.595,40.473],[-80.666,40.582],[-80.519,40.637]]]}},{"type":"Feature","id":"55","properties":{"name":"Wisconsin"},"geometry":{"type":"Polygon","coordinates":[[[-90.415,46.568],[-90.229,46.508],[-90.12,46.338],[-89.09,46.136],[-88.663,45.988],[-88.531,46.021],[-88.104,45.922],[-87.989,45.796],[-87.781,45.676],[-87.792,45.5],[-87.885,45.364],[-87.65,45.342],[-87.743,45.199],[-87.589,45.095],[-87.628,44.975],[-87.819,44.953],[-87.984,44.723],[-88.044,44.564],[-87.929,44.537],[-87.776,44.641],[-87.611,44.838],[-87.403,44.914],[-87.239,45.166],[-87.031,45.221],[-87.047,45.09],[-87.19,44.969],[-87.469,44.553],[-87.546,44.323],[-87.54,44.159],[-87.644,44.104],[-87.737,43.879],[-87.704,43.688],[-87.792,43.562],[-87.912,43.249],[-87.885,43.003],[-87.765,42.784],[-87.803,42.494],[-88.789,42.494],[-90.64,42.51],[-90.711,42.636],[-91.067,42.751],[-91.144,42.91],[-91.177,43.134],[-91.056,43.255],[-91.204,43.354],[-91.215,43.501],[-91.27,43.616],[-91.242,43.775],[-91.434,43.994],[-91.593,44.033],[-91.878,44.202],[-91.927,44.334],[-92.234,44.443],[-92.338,44.553],[-92.546,44.569],[-92.809,44.75],[-92.738,45.117],[-92.76,45.287],[-92.645,45.44],[-92.771,45.566],[-92.886,45.577],[-92.869,45.72],[-92.639,45.933],[-92.354,46.015],[-92.294,46.076],[-92.294,46.667],[-92.091,46.749],[-92.015,46.705],[-91.79,46.694],[-91.095,46.864],[-90.837,46.957],[-90.75,46.886],[-90.886,46.755],[-90.558,46.585],[-90.415,46.568]]]}},{"type":"Feature","id":"56","properties":{"name":"Wyoming"},"geometry":{"type":"Polygon","coordinates":[[[-109.081,45.002],[-105.915,45.002],[-104.058,44.997],[-104.053,43.003],[-104.053,41.004],[-105.729,40.998],[-107.92,41.004],[-109.048,40.998],[-111.047,40.998],[-111.047,42.001],[-111.047,44.476],[-111.053,45.002],[-109.081,45.002]]]}},{"type":"Feature","id":"72","properties":{"name":"Puerto Rico"},"geometry":{"type":"Polygon","coordinates":[[[-66.448,17.984],[-66.771,18.006],[-66.925,17.93],[-66.985,17.973],[-67.21,17.957],[-67.155,18.192],[-67.27,18.362],[-67.095,18.516],[-66.958,18.488],[-66.41,18.488],[-65.84,18.433],[-65.632,18.368],[-65.627,18.203],[-65.731,18.187],[-65.835,18.017],[-66.235,17.93],[-66.448,17.984]]]}}]};
|
|
const FL = {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Marion"},"geometry":{"type":"Polygon","coordinates":[[[-82.312,28.96],[-82.427,29.021],[-82.536,29.045],[-82.535,29.215],[-82.403,29.216],[-82.405,29.279],[-82.405,29.33],[-82.407,29.485],[-82.225,29.484],[-82.213,29.432],[-82.106,29.436],[-82.056,29.471],[-81.843,29.521],[-81.776,29.487],[-81.741,29.371],[-81.681,29.324],[-81.676,29.311],[-81.668,29.301],[-81.656,29.3],[-81.648,29.29],[-81.642,29.277],[-81.641,29.132],[-81.639,29.063],[-81.659,28.96],[-81.842,28.961],[-81.843,28.96],[-81.954,28.96],[-82.312,28.96]]]},"id":"12083"},{"type":"Feature","properties":{"name":"Monroe"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-80.251,25.342],[-80.255,25.336],[-80.26,25.325],[-80.268,25.321],[-80.288,25.283],[-80.308,25.258],[-80.351,25.191],[-80.354,25.184],[-80.35,25.169],[-80.359,25.154],[-80.377,25.13],[-80.4,25.109],[-80.428,25.096],[-80.431,25.089],[-80.443,25.076],[-80.462,25.07],[-80.474,25.06],[-80.494,25.039],[-80.489,25.031],[-80.495,25.023],[-80.538,24.99],[-80.566,24.958],[-80.572,24.954],[-80.588,24.951],[-80.596,24.948],[-80.612,24.938],[-80.636,24.913],[-80.659,24.897],[-80.661,24.9],[-80.66,24.905],[-80.651,24.908],[-80.641,24.914],[-80.624,24.931],[-80.623,24.936],[-80.624,24.939],[-80.622,24.944],[-80.597,24.958],[-80.581,24.965],[-80.578,24.963],[-80.571,24.962],[-80.559,24.972],[-80.544,25.0],[-80.543,25.007],[-80.546,25.015],[-80.524,25.017],[-80.509,25.028],[-80.501,25.041],[-80.496,25.047],[-80.489,25.05],[-80.481,25.057],[-80.461,25.079],[-80.465,25.087],[-80.47,25.089],[-80.482,25.092],[-80.495,25.102],[-80.484,25.109],[-80.477,25.107],[-80.476,25.099],[-80.464,25.093],[-80.45,25.089],[-80.445,25.093],[-80.434,25.106],[-80.433,25.115],[-80.448,25.148],[-80.446,25.151],[-80.413,25.137],[-80.403,25.142],[-80.395,25.151],[-80.387,25.171],[-80.388,25.183],[-80.392,25.192],[-80.387,25.198],[-80.37,25.206],[-80.359,25.207],[-80.35,25.211],[-80.337,25.231],[-80.334,25.254],[-80.336,25.262],[-80.343,25.268],[-80.368,25.282],[-80.364,25.287],[-80.339,25.29],[-80.335,25.286],[-80.329,25.287],[-80.316,25.294],[-80.293,25.314],[-80.29,25.325],[-80.276,25.344],[-80.265,25.354],[-80.257,25.361],[-80.255,25.381],[-80.251,25.391],[-80.246,25.399],[-80.226,25.406],[-80.219,25.411],[-80.214,25.417],[-80.207,25.434],[-80.199,25.459],[-80.192,25.473],[-80.19,25.486],[-80.192,25.495],[-80.189,25.508],[-80.179,25.519],[-80.175,25.518],[-80.174,25.483],[-80.184,25.469],[-80.204,25.412],[-80.222,25.397],[-80.238,25.362],[-80.24,25.347],[-80.25,25.343],[-80.251,25.342]]],[[[-81.583,24.659],[-81.581,24.669],[-81.563,24.693],[-81.558,24.692],[-81.542,24.681],[-81.535,24.68],[-81.519,24.688],[-81.516,24.7],[-81.512,24.704],[-81.491,24.71],[-81.477,24.711],[-81.474,24.706],[-81.469,24.704],[-81.459,24.707],[-81.454,24.711],[-81.452,24.715],[-81.453,24.736],[-81.457,24.74],[-81.451,24.747],[-81.441,24.735],[-81.439,24.727],[-81.436,24.724],[-81.432,24.723],[-81.423,24.732],[-81.422,24.738],[-81.427,24.746],[-81.431,24.747],[-81.431,24.752],[-81.425,24.753],[-81.403,24.749],[-81.393,24.743],[-81.39,24.738],[-81.389,24.731],[-81.386,24.726],[-81.36,24.709],[-81.346,24.708],[-81.319,24.701],[-81.315,24.692],[-81.314,24.681],[-81.31,24.665],[-81.298,24.657],[-81.298,24.654],[-81.303,24.652],[-81.333,24.64],[-81.395,24.621],[-81.402,24.624],[-81.403,24.64],[-81.414,24.647],[-81.432,24.646],[-81.449,24.64],[-81.47,24.642],[-81.481,24.645],[-81.482,24.647],[-81.478,24.65],[-81.476,24.653],[-81.481,24.66],[-81.499,24.665],[-81.503,24.661],[-81.506,24.655],[-81.509,24.644],[-81.509,24.632],[-81.511,24.625],[-81.519,24.62],[-81.546,24.615],[-81.603,24.586],[-81.664,24.573],[-81.675,24.564],[-81.685,24.559],[-81.692,24.56],[-81.733,24.556],[-81.766,24.552],[-81.786,24.547],[-81.81,24.545],[-81.813,24.546],[-81.814,24.564],[-81.811,24.57],[-81.801,24.571],[-81.794,24.586],[-81.774,24.585],[-81.748,24.59],[-81.739,24.59],[-81.735,24.584],[-81.73,24.582],[-81.716,24.588],[-81.715,24.592],[-81.705,24.598],[-81.699,24.598],[-81.694,24.592],[-81.687,24.593],[-81.679,24.598],[-81.669,24.608],[-81.656,24.616],[-81.637,24.621],[-81.615,24.643],[-81.615,24.651],[-81.598,24.655],[-81.588,24.656],[-81.583,24.659]]],[[[-82.151,24.576],[-82.143,24.593],[-82.135,24.597],[-82.125,24.597],[-82.104,24.588],[-82.101,24.585],[-82.099,24.573],[-82.104,24.561],[-82.117,24.549],[-82.159,24.548],[-82.165,24.552],[-82.164,24.563],[-82.151,24.576]]],[[[-81.25,24.673],[-81.246,24.676],[-81.243,24.674],[-81.245,24.669],[-81.282,24.654],[-81.278,24.66],[-81.26,24.675],[-81.25,24.673]]],[[[-80.91,24.781],[-80.906,24.77],[-80.912,24.765],[-80.939,24.768],[-81.016,24.72],[-81.024,24.717],[-81.029,24.721],[-81.032,24.727],[-81.034,24.727],[-81.065,24.715],[-81.071,24.712],[-81.076,24.704],[-81.079,24.697],[-81.078,24.692],[-81.108,24.689],[-81.124,24.705],[-81.125,24.708],[-81.107,24.713],[-81.105,24.711],[-81.099,24.712],[-81.067,24.724],[-81.051,24.738],[-81.042,24.743],[-81.037,24.743],[-81.035,24.74],[-81.022,24.733],[-81.017,24.735],[-80.994,24.744],[-80.986,24.753],[-80.96,24.764],[-80.91,24.782],[-80.91,24.781]]],[[[-81.318,24.757],[-81.305,24.757],[-81.291,24.737],[-81.288,24.721],[-81.303,24.714],[-81.311,24.727],[-81.319,24.729],[-81.327,24.728],[-81.35,24.747],[-81.357,24.757],[-81.343,24.756],[-81.328,24.762],[-81.325,24.767],[-81.318,24.757]]],[[[-80.891,24.792],[-80.885,24.792],[-80.884,24.79],[-80.893,24.786],[-80.907,24.784],[-80.891,24.792]]],[[[-80.788,24.824],[-80.79,24.818],[-80.796,24.812],[-80.822,24.813],[-80.846,24.803],[-80.85,24.803],[-80.851,24.804],[-80.846,24.807],[-80.83,24.814],[-80.815,24.828],[-80.793,24.844],[-80.781,24.841],[-80.788,24.824]]],[[[-80.729,24.865],[-80.72,24.865],[-80.703,24.881],[-80.692,24.886],[-80.69,24.882],[-80.703,24.869],[-80.712,24.863],[-80.761,24.836],[-80.767,24.836],[-80.745,24.851],[-80.741,24.857],[-80.732,24.865],[-80.729,24.865]]],[[[-80.873,25.805],[-80.873,25.364],[-80.858,25.177],[-80.859,25.176],[-80.874,25.174],[-80.875,25.174],[-80.875,25.174],[-80.876,25.174],[-80.879,25.173],[-80.879,25.172],[-80.892,25.166],[-80.899,25.162],[-80.9,25.162],[-80.9,25.162],[-80.901,25.156],[-80.902,25.154],[-80.902,25.154],[-80.9,25.151],[-80.899,25.148],[-80.901,25.14],[-80.901,25.14],[-80.901,25.14],[-80.902,25.14],[-80.907,25.14],[-80.916,25.141],[-80.916,25.141],[-80.931,25.137],[-80.937,25.136],[-80.939,25.135],[-80.941,25.135],[-80.943,25.134],[-80.943,25.134],[-80.955,25.135],[-80.956,25.136],[-80.956,25.136],[-80.957,25.136],[-80.959,25.136],[-80.967,25.134],[-80.968,25.134],[-80.968,25.134],[-80.968,25.134],[-80.97,25.134],[-80.971,25.134],[-80.971,25.134],[-80.972,25.134],[-80.972,25.134],[-80.972,25.134],[-80.973,25.133],[-80.977,25.132],[-80.992,25.127],[-80.994,25.126],[-80.999,25.124],[-81.0,25.124],[-81.01,25.125],[-81.023,25.129],[-81.025,25.129],[-81.033,25.129],[-81.038,25.129],[-81.049,25.128],[-81.049,25.128],[-81.049,25.128],[-81.05,25.128],[-81.051,25.128],[-81.08,25.119],[-81.095,25.127],[-81.112,25.145],[-81.121,25.152],[-81.134,25.156],[-81.141,25.164],[-81.142,25.183],[-81.142,25.183],[-81.143,25.184],[-81.147,25.193],[-81.155,25.208],[-81.155,25.208],[-81.156,25.208],[-81.168,25.219],[-81.171,25.222],[-81.172,25.222],[-81.172,25.224],[-81.171,25.234],[-81.171,25.236],[-81.171,25.245],[-81.171,25.246],[-81.17,25.249],[-81.17,25.25],[-81.169,25.25],[-81.168,25.253],[-81.162,25.29],[-81.159,25.299],[-81.152,25.306],[-81.149,25.318],[-81.152,25.325],[-81.148,25.333],[-81.14,25.341],[-81.134,25.343],[-81.121,25.339],[-81.118,25.345],[-81.117,25.355],[-81.128,25.381],[-81.141,25.381],[-81.151,25.387],[-81.151,25.399],[-81.147,25.404],[-81.147,25.408],[-81.169,25.464],[-81.179,25.475],[-81.192,25.485],[-81.208,25.505],[-81.21,25.517],[-81.203,25.534],[-81.204,25.539],[-81.209,25.549],[-81.226,25.558],[-81.233,25.573],[-81.233,25.587],[-81.241,25.599],[-81.241,25.614],[-81.254,25.638],[-81.269,25.657],[-81.277,25.665],[-81.29,25.688],[-81.329,25.717],[-81.335,25.716],[-81.346,25.721],[-81.346,25.737],[-81.344,25.748],[-81.347,25.754],[-81.355,25.76],[-81.359,25.766],[-81.362,25.773],[-81.345,25.782],[-81.34,25.787],[-81.342,25.795],[-81.345,25.803],[-80.873,25.805]]]]},"id":"12087"},{"type":"Feature","properties":{"name":"Orange"},"geometry":{"type":"Polygon","coordinates":[[[-81.657,28.553],[-81.658,28.683],[-81.625,28.786],[-81.593,28.786],[-81.414,28.785],[-81.46,28.644],[-81.46,28.64],[-81.458,28.64],[-81.365,28.64],[-81.358,28.639],[-81.331,28.64],[-81.329,28.639],[-81.328,28.611],[-81.327,28.61],[-80.987,28.613],[-80.881,28.504],[-80.863,28.347],[-81.31,28.348],[-81.514,28.347],[-81.532,28.347],[-81.657,28.347],[-81.657,28.553]]]},"id":"12095"},{"type":"Feature","properties":{"name":"St. Lucie"},"geometry":{"type":"Polygon","coordinates":[[[-80.678,27.206],[-80.679,27.449],[-80.679,27.456],[-80.68,27.558],[-80.321,27.557],[-80.312,27.525],[-80.301,27.5],[-80.293,27.5],[-80.266,27.421],[-80.254,27.38],[-80.234,27.341],[-80.227,27.323],[-80.199,27.263],[-80.285,27.264],[-80.286,27.206],[-80.481,27.206],[-80.482,27.206],[-80.678,27.206]]]},"id":"12111"},{"type":"Feature","properties":{"name":"Sumter"},"geometry":{"type":"Polygon","coordinates":[[[-81.954,28.96],[-81.954,28.821],[-81.958,28.345],[-82.056,28.313],[-82.055,28.478],[-82.054,28.521],[-82.208,28.572],[-82.263,28.668],[-82.171,28.79],[-82.312,28.96],[-81.954,28.96]]]},"id":"12119"},{"type":"Feature","properties":{"name":"Union"},"geometry":{"type":"Polygon","coordinates":[[[-82.419,29.923],[-82.53,29.941],[-82.576,29.991],[-82.458,30.136],[-82.143,30.143],[-82.307,29.956],[-82.419,29.923]]]},"id":"12125"},{"type":"Feature","properties":{"name":"Alachua"},"geometry":{"type":"Polygon","coordinates":[[[-82.557,29.512],[-82.656,29.565],[-82.658,29.828],[-82.659,29.83],[-82.53,29.941],[-82.419,29.923],[-82.273,29.843],[-82.133,29.836],[-82.056,29.718],[-82.051,29.716],[-82.05,29.71],[-82.055,29.67],[-82.056,29.471],[-82.106,29.436],[-82.213,29.432],[-82.225,29.484],[-82.407,29.485],[-82.557,29.48],[-82.557,29.512]]]},"id":"12001"},{"type":"Feature","properties":{"name":"Calhoun"},"geometry":{"type":"Polygon","coordinates":[[[-85.39,30.201],[-85.384,30.567],[-85.172,30.564],[-85.168,30.608],[-84.933,30.606],[-84.99,30.525],[-84.983,30.442],[-85.059,30.263],[-85.116,30.2],[-85.386,30.201],[-85.39,30.201]]]},"id":"12013"},{"type":"Feature","properties":{"name":"Columbia"},"geometry":{"type":"Polygon","coordinates":[[[-82.584,30.592],[-82.569,30.591],[-82.565,30.591],[-82.553,30.59],[-82.545,30.589],[-82.536,30.589],[-82.525,30.588],[-82.46,30.584],[-82.458,30.136],[-82.576,29.991],[-82.53,29.941],[-82.659,29.83],[-82.8,29.932],[-82.795,30.337],[-82.681,30.343],[-82.646,30.408],[-82.727,30.559],[-82.69,30.598],[-82.689,30.598],[-82.584,30.592]]]},"id":"12023"},{"type":"Feature","properties":{"name":"Gadsden"},"geometry":{"type":"Polygon","coordinates":[[[-84.865,30.712],[-84.863,30.711],[-84.606,30.7],[-84.606,30.7],[-84.539,30.697],[-84.535,30.697],[-84.381,30.69],[-84.283,30.685],[-84.378,30.573],[-84.42,30.464],[-84.646,30.388],[-84.781,30.46],[-84.782,30.519],[-84.883,30.533],[-84.933,30.606],[-84.865,30.712]]]},"id":"12039"},{"type":"Feature","properties":{"name":"Highlands"},"geometry":{"type":"Polygon","coordinates":[[[-80.943,27.211],[-81.169,27.21],[-81.168,27.122],[-81.268,27.121],[-81.267,27.032],[-81.562,27.034],[-81.564,27.341],[-81.563,27.647],[-81.142,27.643],[-81.214,27.529],[-80.971,27.218],[-80.952,27.225],[-80.943,27.211]]]},"id":"12055"},{"type":"Feature","properties":{"name":"Holmes"},"geometry":{"type":"Polygon","coordinates":[[[-85.6,30.831],[-85.619,30.744],[-85.736,30.746],[-85.822,30.791],[-85.844,30.703],[-86.038,30.705],[-86.035,30.993],[-85.498,30.997],[-85.498,30.997],[-85.6,30.831]]]},"id":"12059"},{"type":"Feature","properties":{"name":"Leon"},"geometry":{"type":"Polygon","coordinates":[[[-84.04,30.674],[-84.007,30.672],[-83.977,30.522],[-84.041,30.484],[-84.041,30.484],[-84.041,30.463],[-84.075,30.434],[-84.075,30.413],[-84.075,30.382],[-84.076,30.37],[-84.076,30.274],[-84.241,30.274],[-84.248,30.303],[-84.713,30.3],[-84.646,30.388],[-84.42,30.464],[-84.378,30.573],[-84.283,30.685],[-84.281,30.685],[-84.084,30.676],[-84.057,30.675],[-84.047,30.674],[-84.042,30.674],[-84.04,30.674]]]},"id":"12073"},{"type":"Feature","properties":{"name":"Nassau"},"geometry":{"type":"Polygon","coordinates":[[[-81.906,30.822],[-81.869,30.793],[-81.84,30.786],[-81.827,30.789],[-81.807,30.79],[-81.759,30.771],[-81.741,30.763],[-81.733,30.75],[-81.72,30.745],[-81.637,30.734],[-81.624,30.736],[-81.606,30.718],[-81.545,30.713],[-81.444,30.71],[-81.433,30.703],[-81.427,30.698],[-81.431,30.669],[-81.443,30.601],[-81.443,30.555],[-81.434,30.523],[-81.443,30.51],[-81.5,30.564],[-81.543,30.524],[-81.625,30.586],[-81.722,30.572],[-81.792,30.506],[-82.049,30.273],[-82.05,30.362],[-82.016,30.497],[-82.017,30.519],[-82.005,30.563],[-82.013,30.596],[-82.038,30.633],[-82.049,30.655],[-82.05,30.676],[-82.023,30.782],[-82.0,30.788],[-81.906,30.822]]]},"id":"12089"},{"type":"Feature","properties":{"name":"Okaloosa"},"geometry":{"type":"Polygon","coordinates":[[[-86.394,30.493],[-86.394,30.467],[-86.395,30.433],[-86.397,30.379],[-86.4,30.379],[-86.412,30.38],[-86.429,30.381],[-86.455,30.383],[-86.456,30.383],[-86.457,30.383],[-86.471,30.384],[-86.474,30.384],[-86.506,30.382],[-86.529,30.387],[-86.633,30.396],[-86.751,30.392],[-86.8,30.386],[-86.786,30.997],[-86.728,30.997],[-86.727,30.997],[-86.725,30.997],[-86.688,30.995],[-86.678,30.995],[-86.665,30.995],[-86.568,30.995],[-86.563,30.995],[-86.52,30.993],[-86.513,30.994],[-86.458,30.994],[-86.455,30.994],[-86.405,30.994],[-86.392,30.994],[-86.389,30.994],[-86.389,30.994],[-86.394,30.493]]]},"id":"12091"},{"type":"Feature","properties":{"name":"Osceola"},"geometry":{"type":"Polygon","coordinates":[[[-80.863,28.347],[-80.863,28.347],[-80.863,28.347],[-80.869,27.823],[-80.873,27.642],[-81.142,27.643],[-81.131,27.649],[-81.208,27.821],[-81.302,27.862],[-81.309,27.922],[-81.379,28.012],[-81.375,28.085],[-81.455,28.085],[-81.456,28.143],[-81.524,28.143],[-81.524,28.201],[-81.551,28.249],[-81.657,28.259],[-81.657,28.347],[-81.532,28.347],[-81.514,28.347],[-81.31,28.348],[-80.863,28.347]]]},"id":"12097"},{"type":"Feature","properties":{"name":"Palm Beach"},"geometry":{"type":"Polygon","coordinates":[[[-80.117,26.328],[-80.121,26.328],[-80.13,26.328],[-80.131,26.328],[-80.134,26.328],[-80.154,26.328],[-80.297,26.334],[-80.297,26.334],[-80.881,26.334],[-80.886,26.725],[-80.886,26.959],[-80.385,26.958],[-80.375,26.958],[-80.247,26.957],[-80.08,26.971],[-80.067,26.928],[-80.046,26.859],[-80.031,26.796],[-80.032,26.772],[-80.036,26.771],[-80.037,26.766],[-80.033,26.715],[-80.033,26.701],[-80.036,26.676],[-80.035,26.612],[-80.039,26.569],[-80.05,26.51],[-80.061,26.445],[-80.071,26.336],[-80.072,26.335],[-80.075,26.321],[-80.088,26.321],[-80.089,26.324],[-80.092,26.326],[-80.098,26.323],[-80.1,26.328],[-80.117,26.328]]]},"id":"12099"},{"type":"Feature","properties":{"name":"Pasco"},"geometry":{"type":"Polygon","coordinates":[[[-82.679,28.433],[-82.601,28.434],[-82.253,28.435],[-82.253,28.478],[-82.055,28.478],[-82.056,28.313],[-82.106,28.259],[-82.106,28.172],[-82.644,28.173],[-82.65,28.173],[-82.651,28.173],[-82.805,28.172],[-82.798,28.188],[-82.763,28.219],[-82.764,28.22],[-82.764,28.244],[-82.759,28.254],[-82.746,28.261],[-82.733,28.292],[-82.735,28.3],[-82.731,28.325],[-82.716,28.346],[-82.706,28.368],[-82.706,28.401],[-82.697,28.42],[-82.684,28.428],[-82.679,28.433]]]},"id":"12101"},{"type":"Feature","properties":{"name":"Putnam"},"geometry":{"type":"Polygon","coordinates":[[[-81.524,29.632],[-81.524,29.625],[-81.524,29.622],[-81.521,29.5],[-81.479,29.399],[-81.434,29.399],[-81.451,29.378],[-81.508,29.365],[-81.518,29.362],[-81.522,29.362],[-81.541,29.357],[-81.561,29.352],[-81.681,29.324],[-81.741,29.371],[-81.776,29.487],[-81.843,29.521],[-82.056,29.471],[-82.055,29.67],[-82.05,29.71],[-82.051,29.716],[-82.056,29.718],[-82.049,29.719],[-81.939,29.747],[-81.797,29.837],[-81.581,29.84],[-81.525,29.759],[-81.524,29.632]]]},"id":"12107"},{"type":"Feature","properties":{"name":"St. Johns"},"geometry":{"type":"Polygon","coordinates":[[[-81.601,30.131],[-81.434,30.106],[-81.437,30.252],[-81.38,30.253],[-81.356,30.163],[-81.309,29.969],[-81.295,29.929],[-81.289,29.915],[-81.277,29.9],[-81.27,29.883],[-81.265,29.858],[-81.263,29.821],[-81.257,29.785],[-81.241,29.739],[-81.229,29.715],[-81.213,29.671],[-81.324,29.626],[-81.524,29.622],[-81.524,29.625],[-81.524,29.632],[-81.525,29.759],[-81.581,29.84],[-81.601,29.956],[-81.689,30.029],[-81.68,30.121],[-81.651,30.122],[-81.624,30.134],[-81.601,30.131]]]},"id":"12109"},{"type":"Feature","properties":{"name":"Santa Rosa"},"geometry":{"type":"Polygon","coordinates":[[[-86.919,30.371],[-87.233,30.349],[-87.134,30.42],[-87.125,30.5],[-87.259,30.611],[-87.269,30.712],[-87.309,30.727],[-87.314,30.847],[-87.287,30.925],[-87.163,30.999],[-87.163,30.999],[-87.069,30.999],[-87.064,30.999],[-87.054,30.999],[-87.04,31.0],[-87.036,30.999],[-87.027,30.999],[-86.888,30.998],[-86.873,30.998],[-86.832,30.997],[-86.83,30.997],[-86.786,30.997],[-86.786,30.997],[-86.8,30.386],[-86.851,30.381],[-86.91,30.372],[-86.919,30.371]]]},"id":"12113"},{"type":"Feature","properties":{"name":"Sarasota"},"geometry":{"type":"Polygon","coordinates":[[[-82.172,27.033],[-82.255,27.033],[-82.256,26.945],[-82.3,26.946],[-82.323,26.946],[-82.326,26.946],[-82.339,26.946],[-82.34,26.946],[-82.376,26.946],[-82.401,26.985],[-82.419,27.021],[-82.446,27.061],[-82.46,27.1],[-82.465,27.111],[-82.469,27.114],[-82.477,27.141],[-82.512,27.208],[-82.54,27.254],[-82.545,27.261],[-82.559,27.269],[-82.57,27.279],[-82.569,27.299],[-82.576,27.309],[-82.598,27.336],[-82.624,27.362],[-82.643,27.39],[-82.643,27.39],[-82.252,27.386],[-82.254,27.209],[-82.056,27.208],[-82.057,27.032],[-82.172,27.033]]]},"id":"12115"},{"type":"Feature","properties":{"name":"Seminole"},"geometry":{"type":"Polygon","coordinates":[[[-81.21,28.802],[-81.195,28.792],[-81.183,28.797],[-81.179,28.782],[-81.106,28.829],[-80.987,28.613],[-81.327,28.61],[-81.328,28.611],[-81.329,28.639],[-81.331,28.64],[-81.358,28.639],[-81.365,28.64],[-81.458,28.64],[-81.46,28.64],[-81.46,28.644],[-81.414,28.785],[-81.375,28.863],[-81.376,28.866],[-81.373,28.87],[-81.372,28.869],[-81.37,28.871],[-81.369,28.873],[-81.367,28.873],[-81.366,28.875],[-81.367,28.877],[-81.367,28.878],[-81.367,28.879],[-81.25,28.833],[-81.23,28.833],[-81.226,28.833],[-81.223,28.827],[-81.225,28.822],[-81.216,28.814],[-81.216,28.808],[-81.21,28.802]]]},"id":"12117"},{"type":"Feature","properties":{"name":"Volusia"},"geometry":{"type":"Polygon","coordinates":[[[-81.179,28.782],[-81.183,28.797],[-81.195,28.792],[-81.21,28.802],[-81.216,28.808],[-81.216,28.814],[-81.225,28.822],[-81.223,28.827],[-81.226,28.833],[-81.23,28.833],[-81.25,28.833],[-81.367,28.879],[-81.355,28.984],[-81.502,29.098],[-81.531,29.177],[-81.612,29.203],[-81.642,29.277],[-81.648,29.29],[-81.656,29.3],[-81.668,29.301],[-81.676,29.311],[-81.681,29.324],[-81.561,29.352],[-81.541,29.357],[-81.522,29.362],[-81.518,29.362],[-81.508,29.365],[-81.451,29.378],[-81.434,29.399],[-81.417,29.261],[-81.15,29.266],[-81.156,29.411],[-81.102,29.427],[-81.047,29.308],[-80.995,29.206],[-80.966,29.148],[-80.944,29.111],[-80.907,29.064],[-80.894,29.036],[-80.878,29.011],[-80.787,28.875],[-80.732,28.791],[-80.968,28.79],[-80.964,28.613],[-80.987,28.613],[-81.106,28.829],[-81.179,28.782]]]},"id":"12127"},{"type":"Feature","properties":{"name":"Walton"},"geometry":{"type":"Polygon","coordinates":[[[-85.993,30.389],[-85.995,30.312],[-85.995,30.291],[-85.996,30.269],[-86.0,30.271],[-86.09,30.304],[-86.223,30.344],[-86.299,30.363],[-86.364,30.375],[-86.397,30.379],[-86.395,30.433],[-86.394,30.467],[-86.394,30.493],[-86.389,30.994],[-86.375,30.994],[-86.369,30.994],[-86.365,30.994],[-86.305,30.994],[-86.289,30.994],[-86.187,30.994],[-86.18,30.994],[-86.175,30.994],[-86.169,30.994],[-86.163,30.994],[-86.056,30.993],[-86.052,30.993],[-86.035,30.993],[-86.038,30.705],[-85.844,30.703],[-85.915,30.636],[-85.858,30.497],[-85.993,30.389]]]},"id":"12131"},{"type":"Feature","properties":{"name":"Baker"},"geometry":{"type":"Polygon","coordinates":[[[-82.05,30.362],[-82.049,30.273],[-82.049,30.187],[-82.049,30.143],[-82.143,30.143],[-82.458,30.136],[-82.46,30.584],[-82.46,30.584],[-82.419,30.582],[-82.375,30.579],[-82.287,30.573],[-82.258,30.572],[-82.25,30.571],[-82.215,30.567],[-82.214,30.567],[-82.212,30.5],[-82.206,30.456],[-82.21,30.425],[-82.204,30.401],[-82.19,30.376],[-82.172,30.36],[-82.165,30.358],[-82.125,30.367],[-82.05,30.362],[-82.05,30.362]]]},"id":"12003"},{"type":"Feature","properties":{"name":"Bay"},"geometry":{"type":"Polygon","coordinates":[[[-85.996,30.269],[-85.995,30.291],[-85.995,30.312],[-85.993,30.389],[-85.853,30.441],[-85.488,30.437],[-85.486,30.568],[-85.435,30.568],[-85.384,30.567],[-85.39,30.201],[-85.388,29.927],[-85.389,29.924],[-85.405,29.938],[-85.426,29.95],[-85.46,29.96],[-85.469,29.958],[-85.488,29.961],[-85.509,29.971],[-85.541,29.996],[-85.572,30.026],[-85.581,30.038],[-85.588,30.056],[-85.601,30.056],[-85.618,30.065],[-85.637,30.073],[-85.653,30.078],[-85.697,30.097],[-85.73,30.118],[-85.75,30.137],[-85.775,30.156],[-85.811,30.178],[-85.878,30.216],[-85.923,30.238],[-85.996,30.269]]]},"id":"12005"},{"type":"Feature","properties":{"name":"Broward"},"geometry":{"type":"Polygon","coordinates":[[[-80.279,25.971],[-80.295,25.971],[-80.295,25.957],[-80.327,25.957],[-80.44,25.957],[-80.68,25.957],[-80.68,25.979],[-80.873,25.979],[-80.873,26.0],[-80.88,26.259],[-80.881,26.334],[-80.297,26.334],[-80.297,26.334],[-80.154,26.328],[-80.134,26.328],[-80.131,26.328],[-80.13,26.328],[-80.121,26.328],[-80.117,26.328],[-80.1,26.328],[-80.098,26.323],[-80.092,26.326],[-80.089,26.324],[-80.088,26.321],[-80.075,26.321],[-80.075,26.319],[-80.08,26.264],[-80.086,26.249],[-80.089,26.232],[-80.101,26.148],[-80.105,26.096],[-80.107,26.093],[-80.109,26.088],[-80.11,26.087],[-80.112,26.053],[-80.118,25.986],[-80.118,25.975],[-80.118,25.975],[-80.124,25.974],[-80.134,25.974],[-80.134,25.975],[-80.142,25.975],[-80.144,25.975],[-80.247,25.972],[-80.279,25.971]]]},"id":"12011"},{"type":"Feature","properties":{"name":"Charlotte"},"geometry":{"type":"Polygon","coordinates":[[[-82.376,26.946],[-82.34,26.946],[-82.339,26.946],[-82.326,26.946],[-82.323,26.946],[-82.3,26.946],[-82.256,26.945],[-82.255,27.033],[-82.172,27.033],[-82.057,27.032],[-81.562,27.034],[-81.566,26.77],[-82.062,26.77],[-82.061,26.774],[-82.061,26.789],[-82.055,26.802],[-82.058,26.822],[-82.059,26.839],[-82.057,26.859],[-82.059,26.877],[-82.067,26.882],[-82.091,26.889],[-82.093,26.907],[-82.09,26.923],[-82.083,26.928],[-82.068,26.928],[-82.062,26.931],[-82.061,26.939],[-82.063,26.95],[-82.076,26.958],[-82.108,26.958],[-82.113,26.956],[-82.117,26.954],[-82.125,26.946],[-82.137,26.926],[-82.162,26.925],[-82.169,26.923],[-82.175,26.917],[-82.173,26.897],[-82.156,26.852],[-82.147,26.79],[-82.151,26.783],[-82.173,26.779],[-82.179,26.773],[-82.209,26.772],[-82.222,26.772],[-82.232,26.783],[-82.233,26.784],[-82.234,26.783],[-82.242,26.774],[-82.251,26.756],[-82.26,26.717],[-82.264,26.726],[-82.265,26.757],[-82.269,26.785],[-82.272,26.79],[-82.282,26.811],[-82.289,26.828],[-82.302,26.842],[-82.352,26.908],[-82.376,26.946]]]},"id":"12015"},{"type":"Feature","properties":{"name":"Lee"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-82.256,26.703],[-82.255,26.708],[-82.247,26.706],[-82.243,26.694],[-82.246,26.689],[-82.247,26.683],[-82.237,26.662],[-82.218,26.626],[-82.214,26.603],[-82.197,26.56],[-82.187,26.528],[-82.178,26.502],[-82.166,26.49],[-82.149,26.478],[-82.132,26.477],[-82.12,26.474],[-82.088,26.455],[-82.077,26.466],[-82.063,26.47],[-82.038,26.457],[-82.016,26.455],[-82.014,26.454],[-82.014,26.452],[-82.063,26.425],[-82.075,26.422],[-82.083,26.422],[-82.098,26.425],[-82.127,26.436],[-82.149,26.455],[-82.173,26.468],[-82.177,26.472],[-82.181,26.476],[-82.186,26.489],[-82.201,26.556],[-82.206,26.567],[-82.222,26.59],[-82.239,26.636],[-82.249,26.654],[-82.263,26.673],[-82.268,26.683],[-82.264,26.698],[-82.256,26.703]]],[[[-81.69,26.317],[-81.846,26.33],[-81.869,26.379],[-81.902,26.411],[-81.903,26.416],[-81.912,26.427],[-81.924,26.437],[-81.938,26.445],[-81.957,26.452],[-81.964,26.458],[-81.967,26.463],[-81.966,26.465],[-81.97,26.477],[-81.981,26.481],[-81.997,26.485],[-82.009,26.484],[-82.014,26.491],[-82.009,26.505],[-82.025,26.513],[-82.044,26.52],[-82.067,26.513],[-82.072,26.493],[-82.095,26.484],[-82.106,26.484],[-82.112,26.541],[-82.119,26.561],[-82.122,26.579],[-82.138,26.637],[-82.15,26.654],[-82.182,26.682],[-82.18,26.697],[-82.174,26.702],[-82.152,26.704],[-82.139,26.703],[-82.126,26.7],[-82.119,26.691],[-82.106,26.667],[-82.1,26.663],[-82.093,26.666],[-82.087,26.685],[-82.085,26.702],[-82.08,26.717],[-82.067,26.743],[-82.062,26.77],[-81.566,26.77],[-81.564,26.513],[-81.562,26.423],[-81.66,26.421],[-81.69,26.317]]]]},"id":"12071"},{"type":"Feature","properties":{"name":"Madison"},"geometry":{"type":"Polygon","coordinates":[[[-83.309,30.634],[-83.309,30.634],[-83.273,30.628],[-83.244,30.473],[-83.171,30.385],[-83.247,30.261],[-83.25,30.26],[-83.367,30.26],[-83.469,30.26],[-83.469,30.304],[-83.82,30.304],[-83.807,30.372],[-83.722,30.434],[-83.731,30.492],[-83.604,30.582],[-83.612,30.651],[-83.612,30.651],[-83.449,30.642],[-83.44,30.642],[-83.43,30.641],[-83.429,30.642],[-83.39,30.639],[-83.379,30.639],[-83.358,30.637],[-83.341,30.636],[-83.341,30.636],[-83.312,30.635],[-83.309,30.634]]]},"id":"12079"},{"type":"Feature","properties":{"name":"Manatee"},"geometry":{"type":"Polygon","coordinates":[[[-82.643,27.39],[-82.675,27.424],[-82.692,27.437],[-82.691,27.444],[-82.708,27.488],[-82.715,27.5],[-82.725,27.514],[-82.743,27.531],[-82.746,27.539],[-82.742,27.539],[-82.708,27.524],[-82.711,27.502],[-82.707,27.498],[-82.69,27.496],[-82.686,27.497],[-82.687,27.508],[-82.684,27.513],[-82.675,27.52],[-82.662,27.523],[-82.651,27.523],[-82.646,27.534],[-82.632,27.552],[-82.612,27.571],[-82.613,27.583],[-82.613,27.583],[-82.612,27.585],[-82.596,27.594],[-82.585,27.596],[-82.571,27.609],[-82.566,27.616],[-82.559,27.639],[-82.554,27.645],[-82.55,27.646],[-82.525,27.645],[-82.525,27.645],[-82.054,27.646],[-82.056,27.338],[-82.056,27.208],[-82.254,27.209],[-82.252,27.386],[-82.643,27.39]]]},"id":"12081"},{"type":"Feature","properties":{"name":"Citrus"},"geometry":{"type":"Polygon","coordinates":[[[-82.536,29.045],[-82.427,29.021],[-82.312,28.96],[-82.171,28.79],[-82.263,28.668],[-82.418,28.666],[-82.418,28.695],[-82.646,28.694],[-82.645,28.698],[-82.653,28.706],[-82.656,28.712],[-82.653,28.719],[-82.656,28.728],[-82.662,28.737],[-82.651,28.747],[-82.645,28.767],[-82.643,28.783],[-82.643,28.79],[-82.649,28.796],[-82.65,28.805],[-82.653,28.831],[-82.639,28.843],[-82.643,28.86],[-82.64,28.876],[-82.645,28.889],[-82.656,28.899],[-82.673,28.9],[-82.689,28.906],[-82.703,28.933],[-82.709,28.936],[-82.724,28.954],[-82.736,28.974],[-82.738,28.996],[-82.759,28.993],[-82.69,29.034],[-82.613,29.009],[-82.536,29.045]]]},"id":"12017"},{"type":"Feature","properties":{"name":"Dixie"},"geometry":{"type":"Polygon","coordinates":[[[-83.412,29.667],[-83.373,29.666],[-83.319,29.823],[-82.921,29.824],[-82.95,29.754],[-82.937,29.591],[-82.984,29.471],[-83.069,29.344],[-83.166,29.289],[-83.17,29.29],[-83.177,29.314],[-83.178,29.328],[-83.177,29.329],[-83.176,29.345],[-83.19,29.363],[-83.201,29.374],[-83.202,29.394],[-83.218,29.42],[-83.241,29.433],[-83.264,29.436],[-83.272,29.432],[-83.295,29.438],[-83.307,29.46],[-83.308,29.469],[-83.312,29.476],[-83.323,29.477],[-83.331,29.476],[-83.35,29.489],[-83.357,29.5],[-83.37,29.5],[-83.379,29.504],[-83.384,29.513],[-83.4,29.517],[-83.402,29.523],[-83.4,29.533],[-83.405,29.578],[-83.405,29.596],[-83.399,29.613],[-83.404,29.641],[-83.412,29.667]]]},"id":"12029"},{"type":"Feature","properties":{"name":"Duval"},"geometry":{"type":"Polygon","coordinates":[[[-82.049,30.273],[-81.792,30.506],[-81.722,30.572],[-81.625,30.586],[-81.543,30.524],[-81.5,30.564],[-81.443,30.51],[-81.447,30.504],[-81.44,30.498],[-81.426,30.497],[-81.411,30.482],[-81.407,30.422],[-81.397,30.401],[-81.396,30.34],[-81.392,30.303],[-81.386,30.274],[-81.38,30.253],[-81.437,30.252],[-81.434,30.106],[-81.601,30.131],[-81.624,30.134],[-81.651,30.122],[-81.68,30.121],[-81.711,30.191],[-82.049,30.187],[-82.049,30.273]]]},"id":"12031"},{"type":"Feature","properties":{"name":"Gilchrist"},"geometry":{"type":"Polygon","coordinates":[[[-82.659,29.83],[-82.658,29.828],[-82.656,29.565],[-82.937,29.591],[-82.95,29.754],[-82.921,29.824],[-82.893,29.827],[-82.876,29.867],[-82.88,29.887],[-82.864,29.91],[-82.8,29.932],[-82.659,29.83]]]},"id":"12041"},{"type":"Feature","properties":{"name":"Glades"},"geometry":{"type":"Polygon","coordinates":[[[-80.943,27.211],[-80.871,27.155],[-80.886,26.959],[-80.945,26.769],[-81.566,26.77],[-81.562,27.034],[-81.267,27.032],[-81.268,27.121],[-81.168,27.122],[-81.169,27.21],[-80.943,27.211]]]},"id":"12043"},{"type":"Feature","properties":{"name":"Gulf"},"geometry":{"type":"Polygon","coordinates":[[[-85.116,30.2],[-85.154,30.091],[-85.114,30.023],[-85.025,29.971],[-85.012,29.873],[-85.04,29.779],[-85.109,29.777],[-85.217,29.695],[-85.227,29.694],[-85.26,29.681],[-85.291,29.684],[-85.319,29.681],[-85.344,29.672],[-85.348,29.667],[-85.345,29.655],[-85.353,29.66],[-85.369,29.681],[-85.38,29.698],[-85.398,29.74],[-85.414,29.8],[-85.418,29.829],[-85.417,29.843],[-85.414,29.853],[-85.406,29.866],[-85.392,29.871],[-85.399,29.859],[-85.405,29.83],[-85.406,29.802],[-85.396,29.762],[-85.378,29.71],[-85.364,29.694],[-85.354,29.685],[-85.345,29.685],[-85.318,29.691],[-85.311,29.698],[-85.301,29.797],[-85.303,29.808],[-85.305,29.811],[-85.311,29.814],[-85.315,29.822],[-85.315,29.831],[-85.313,29.832],[-85.317,29.839],[-85.325,29.845],[-85.332,29.846],[-85.337,29.849],[-85.347,29.872],[-85.364,29.899],[-85.385,29.921],[-85.389,29.924],[-85.388,29.927],[-85.39,30.201],[-85.386,30.201],[-85.116,30.2]]]},"id":"12045"},{"type":"Feature","properties":{"name":"Hardee"},"geometry":{"type":"Polygon","coordinates":[[[-82.054,27.646],[-81.563,27.647],[-81.564,27.341],[-82.056,27.338],[-82.054,27.646]]]},"id":"12049"},{"type":"Feature","properties":{"name":"Hendry"},"geometry":{"type":"Polygon","coordinates":[[[-80.88,26.259],[-81.269,26.253],[-81.272,26.423],[-81.272,26.517],[-81.564,26.513],[-81.566,26.77],[-80.945,26.769],[-80.886,26.959],[-80.886,26.725],[-80.881,26.334],[-80.88,26.259]]]},"id":"12051"},{"type":"Feature","properties":{"name":"Hernando"},"geometry":{"type":"Polygon","coordinates":[[[-82.055,28.478],[-82.253,28.478],[-82.253,28.435],[-82.601,28.434],[-82.679,28.433],[-82.678,28.434],[-82.675,28.442],[-82.68,28.457],[-82.672,28.465],[-82.665,28.484],[-82.664,28.489],[-82.666,28.497],[-82.67,28.501],[-82.669,28.52],[-82.668,28.528],[-82.664,28.53],[-82.657,28.545],[-82.662,28.55],[-82.662,28.554],[-82.657,28.568],[-82.654,28.591],[-82.664,28.607],[-82.657,28.624],[-82.659,28.637],[-82.654,28.668],[-82.646,28.694],[-82.418,28.695],[-82.418,28.666],[-82.263,28.668],[-82.208,28.572],[-82.054,28.521],[-82.055,28.478]]]},"id":"12053"},{"type":"Feature","properties":{"name":"Indian River"},"geometry":{"type":"Polygon","coordinates":[[[-80.869,27.823],[-80.509,27.822],[-80.447,27.861],[-80.447,27.86],[-80.384,27.74],[-80.352,27.643],[-80.351,27.628],[-80.344,27.616],[-80.331,27.598],[-80.325,27.569],[-80.321,27.557],[-80.68,27.558],[-80.777,27.559],[-80.778,27.643],[-80.873,27.642],[-80.869,27.823]]]},"id":"12061"},{"type":"Feature","properties":{"name":"Jackson"},"geometry":{"type":"Polygon","coordinates":[[[-85.154,31.001],[-85.152,31.001],[-85.152,31.001],[-85.146,31.001],[-85.058,31.001],[-85.055,31.001],[-85.052,31.001],[-85.031,31.001],[-85.03,31.001],[-85.028,31.001],[-85.024,31.001],[-85.002,31.001],[-84.999,30.971],[-84.984,30.935],[-84.96,30.911],[-84.942,30.888],[-84.896,30.751],[-84.865,30.712],[-84.933,30.606],[-85.168,30.608],[-85.172,30.564],[-85.384,30.567],[-85.435,30.568],[-85.432,30.785],[-85.482,30.83],[-85.6,30.831],[-85.498,30.997],[-85.488,30.997],[-85.154,31.001]]]},"id":"12063"},{"type":"Feature","properties":{"name":"Lake"},"geometry":{"type":"Polygon","coordinates":[[[-81.657,28.347],[-81.819,28.362],[-81.958,28.345],[-81.954,28.821],[-81.954,28.96],[-81.843,28.96],[-81.842,28.961],[-81.659,28.96],[-81.639,29.063],[-81.641,29.132],[-81.642,29.277],[-81.612,29.203],[-81.531,29.177],[-81.502,29.098],[-81.355,28.984],[-81.367,28.879],[-81.367,28.878],[-81.367,28.877],[-81.366,28.875],[-81.367,28.873],[-81.369,28.873],[-81.37,28.871],[-81.372,28.869],[-81.373,28.87],[-81.376,28.866],[-81.375,28.863],[-81.414,28.785],[-81.593,28.786],[-81.625,28.786],[-81.658,28.683],[-81.657,28.553],[-81.657,28.347]]]},"id":"12069"},{"type":"Feature","properties":{"name":"Wakulla"},"geometry":{"type":"Polygon","coordinates":[[[-84.076,30.274],[-84.076,30.095],[-84.083,30.092],[-84.087,30.092],[-84.095,30.095],[-84.103,30.094],[-84.114,30.085],[-84.125,30.091],[-84.136,30.083],[-84.157,30.073],[-84.168,30.071],[-84.179,30.073],[-84.199,30.088],[-84.202,30.088],[-84.203,30.086],[-84.208,30.085],[-84.237,30.086],[-84.246,30.093],[-84.247,30.101],[-84.256,30.104],[-84.269,30.098],[-84.273,30.092],[-84.274,30.083],[-84.27,30.075],[-84.271,30.068],[-84.277,30.06],[-84.29,30.057],[-84.298,30.057],[-84.315,30.069],[-84.342,30.064],[-84.359,30.058],[-84.366,30.025],[-84.362,29.988],[-84.36,29.985],[-84.348,29.984],[-84.343,29.975],[-84.341,29.961],[-84.544,30.011],[-84.669,30.125],[-84.713,30.3],[-84.248,30.303],[-84.241,30.274],[-84.076,30.274]]]},"id":"12129"},{"type":"Feature","properties":{"name":"Martin"},"geometry":{"type":"Polygon","coordinates":[[[-80.385,26.958],[-80.886,26.959],[-80.677,27.122],[-80.678,27.206],[-80.482,27.206],[-80.481,27.206],[-80.286,27.206],[-80.285,27.264],[-80.199,27.263],[-80.193,27.25],[-80.161,27.193],[-80.153,27.169],[-80.16,27.163],[-80.15,27.144],[-80.139,27.112],[-80.117,27.072],[-80.094,27.019],[-80.08,26.971],[-80.247,26.957],[-80.375,26.958],[-80.385,26.958]]]},"id":"12085"},{"type":"Feature","properties":{"name":"Okeechobee"},"geometry":{"type":"Polygon","coordinates":[[[-80.68,27.558],[-80.679,27.456],[-80.679,27.449],[-80.678,27.206],[-80.677,27.122],[-80.886,26.959],[-80.871,27.155],[-80.943,27.211],[-80.952,27.225],[-80.971,27.218],[-81.214,27.529],[-81.142,27.643],[-80.873,27.642],[-80.778,27.643],[-80.777,27.559],[-80.68,27.558]]]},"id":"12093"},{"type":"Feature","properties":{"name":"Polk"},"geometry":{"type":"Polygon","coordinates":[[[-81.819,28.362],[-81.657,28.347],[-81.657,28.259],[-81.551,28.249],[-81.524,28.201],[-81.524,28.143],[-81.456,28.143],[-81.455,28.085],[-81.375,28.085],[-81.379,28.012],[-81.309,27.922],[-81.302,27.862],[-81.208,27.821],[-81.131,27.649],[-81.142,27.643],[-81.563,27.647],[-82.054,27.646],[-82.054,27.851],[-82.056,28.08],[-82.056,28.172],[-82.106,28.172],[-82.106,28.259],[-82.056,28.313],[-81.958,28.345],[-81.819,28.362]]]},"id":"12105"},{"type":"Feature","properties":{"name":"Suwannee"},"geometry":{"type":"Polygon","coordinates":[[[-83.247,30.261],[-83.171,30.385],[-83.079,30.438],[-83.002,30.429],[-82.795,30.337],[-82.8,29.932],[-82.864,29.91],[-82.88,29.887],[-82.963,29.993],[-83.161,30.11],[-83.226,30.115],[-83.247,30.261]]]},"id":"12121"},{"type":"Feature","properties":{"name":"Washington"},"geometry":{"type":"Polygon","coordinates":[[[-85.435,30.568],[-85.486,30.568],[-85.488,30.437],[-85.853,30.441],[-85.993,30.389],[-85.858,30.497],[-85.915,30.636],[-85.844,30.703],[-85.822,30.791],[-85.736,30.746],[-85.619,30.744],[-85.6,30.831],[-85.482,30.83],[-85.432,30.785],[-85.435,30.568]]]},"id":"12133"},{"type":"Feature","properties":{"name":"Bradford"},"geometry":{"type":"Polygon","coordinates":[[[-82.049,29.719],[-82.056,29.718],[-82.133,29.836],[-82.273,29.843],[-82.419,29.923],[-82.307,29.956],[-82.143,30.143],[-82.049,30.143],[-82.046,29.747],[-82.049,29.719]]]},"id":"12007"},{"type":"Feature","properties":{"name":"Clay"},"geometry":{"type":"Polygon","coordinates":[[[-82.049,30.187],[-81.711,30.191],[-81.68,30.121],[-81.689,30.029],[-81.601,29.956],[-81.581,29.84],[-81.797,29.837],[-81.939,29.747],[-82.049,29.719],[-82.046,29.747],[-82.049,30.143],[-82.049,30.187]]]},"id":"12019"},{"type":"Feature","properties":{"name":"DeSoto"},"geometry":{"type":"Polygon","coordinates":[[[-82.057,27.032],[-82.056,27.208],[-82.056,27.338],[-81.564,27.341],[-81.562,27.034],[-82.057,27.032]]]},"id":"12027"},{"type":"Feature","properties":{"name":"Flagler"},"geometry":{"type":"Polygon","coordinates":[[[-81.213,29.671],[-81.212,29.667],[-81.164,29.555],[-81.124,29.474],[-81.102,29.427],[-81.156,29.411],[-81.15,29.266],[-81.417,29.261],[-81.434,29.399],[-81.479,29.399],[-81.521,29.5],[-81.524,29.622],[-81.324,29.626],[-81.213,29.671]]]},"id":"12035"},{"type":"Feature","properties":{"name":"Hamilton"},"geometry":{"type":"Polygon","coordinates":[[[-83.187,30.627],[-83.174,30.626],[-83.163,30.626],[-83.156,30.626],[-83.137,30.624],[-82.879,30.609],[-82.877,30.609],[-82.699,30.598],[-82.699,30.598],[-82.69,30.598],[-82.727,30.559],[-82.646,30.408],[-82.681,30.343],[-82.795,30.337],[-83.002,30.429],[-83.079,30.438],[-83.171,30.385],[-83.244,30.473],[-83.273,30.628],[-83.309,30.634],[-83.309,30.634],[-83.256,30.631],[-83.187,30.627]]]},"id":"12047"},{"type":"Feature","properties":{"name":"Lafayette"},"geometry":{"type":"Polygon","coordinates":[[[-83.367,30.26],[-83.25,30.26],[-83.247,30.261],[-83.226,30.115],[-83.161,30.11],[-82.963,29.993],[-82.88,29.887],[-82.876,29.867],[-82.893,29.827],[-82.921,29.824],[-83.319,29.823],[-83.371,29.888],[-83.367,30.26]]]},"id":"12067"},{"type":"Feature","properties":{"name":"Liberty"},"geometry":{"type":"Polygon","coordinates":[[[-84.544,30.011],[-85.008,30.014],[-85.025,29.971],[-85.114,30.023],[-85.154,30.091],[-85.116,30.2],[-85.059,30.263],[-84.983,30.442],[-84.99,30.525],[-84.933,30.606],[-84.883,30.533],[-84.782,30.519],[-84.781,30.46],[-84.646,30.388],[-84.713,30.3],[-84.669,30.125],[-84.544,30.011]]]},"id":"12077"},{"type":"Feature","properties":{"name":"Miami-Dade"},"geometry":{"type":"Polygon","coordinates":[[[-80.44,25.957],[-80.327,25.957],[-80.295,25.957],[-80.295,25.971],[-80.279,25.971],[-80.247,25.972],[-80.144,25.975],[-80.142,25.975],[-80.134,25.975],[-80.134,25.974],[-80.124,25.974],[-80.118,25.975],[-80.118,25.975],[-80.118,25.916],[-80.121,25.883],[-80.12,25.841],[-80.122,25.818],[-80.127,25.791],[-80.128,25.772],[-80.137,25.75],[-80.144,25.741],[-80.153,25.703],[-80.154,25.683],[-80.152,25.677],[-80.155,25.665],[-80.161,25.665],[-80.177,25.685],[-80.17,25.711],[-80.164,25.722],[-80.166,25.729],[-80.173,25.738],[-80.185,25.746],[-80.198,25.744],[-80.229,25.733],[-80.24,25.724],[-80.245,25.717],[-80.25,25.688],[-80.266,25.658],[-80.267,25.652],[-80.277,25.637],[-80.288,25.63],[-80.297,25.622],[-80.301,25.613],[-80.306,25.593],[-80.306,25.575],[-80.302,25.568],[-80.314,25.539],[-80.325,25.536],[-80.329,25.533],[-80.339,25.499],[-80.339,25.479],[-80.337,25.466],[-80.328,25.443],[-80.32,25.437],[-80.326,25.423],[-80.326,25.398],[-80.32,25.391],[-80.31,25.39],[-80.307,25.384],[-80.31,25.373],[-80.335,25.339],[-80.352,25.33],[-80.362,25.327],[-80.374,25.317],[-80.383,25.301],[-80.386,25.288],[-80.419,25.263],[-80.438,25.253],[-80.447,25.248],[-80.463,25.236],[-80.468,25.233],[-80.468,25.232],[-80.47,25.23],[-80.483,25.217],[-80.488,25.208],[-80.488,25.207],[-80.488,25.207],[-80.495,25.199],[-80.496,25.2],[-80.498,25.2],[-80.499,25.2],[-80.503,25.203],[-80.503,25.203],[-80.508,25.206],[-80.508,25.207],[-80.508,25.207],[-80.513,25.217],[-80.515,25.218],[-80.515,25.218],[-80.52,25.221],[-80.523,25.22],[-80.526,25.219],[-80.53,25.216],[-80.541,25.218],[-80.542,25.222],[-80.541,25.225],[-80.541,25.23],[-80.548,25.237],[-80.558,25.239],[-80.571,25.239],[-80.589,25.224],[-80.588,25.208],[-80.585,25.201],[-80.585,25.201],[-80.594,25.193],[-80.602,25.188],[-80.61,25.182],[-80.61,25.182],[-80.619,25.177],[-80.619,25.177],[-80.634,25.177],[-80.64,25.177],[-80.64,25.177],[-80.641,25.176],[-80.642,25.176],[-80.646,25.174],[-80.646,25.174],[-80.646,25.174],[-80.649,25.17],[-80.649,25.169],[-80.657,25.168],[-80.661,25.168],[-80.67,25.167],[-80.674,25.167],[-80.68,25.167],[-80.684,25.166],[-80.688,25.165],[-80.695,25.158],[-80.701,25.147],[-80.704,25.139],[-80.715,25.141],[-80.722,25.145],[-80.729,25.144],[-80.735,25.144],[-80.738,25.143],[-80.743,25.143],[-80.746,25.149],[-80.746,25.155],[-80.752,25.164],[-80.758,25.167],[-80.795,25.172],[-80.796,25.172],[-80.815,25.165],[-80.817,25.164],[-80.823,25.162],[-80.826,25.161],[-80.827,25.16],[-80.827,25.161],[-80.827,25.162],[-80.827,25.163],[-80.828,25.165],[-80.83,25.168],[-80.838,25.175],[-80.844,25.176],[-80.846,25.177],[-80.846,25.177],[-80.858,25.177],[-80.873,25.364],[-80.873,25.805],[-80.873,25.979],[-80.68,25.979],[-80.68,25.957],[-80.44,25.957]]]},"id":"12086"},{"type":"Feature","properties":{"name":"Pinellas"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-82.822,27.964],[-82.83,27.968],[-82.829,28.02],[-82.823,28.031],[-82.823,28.045],[-82.826,28.053],[-82.832,28.063],[-82.836,28.073],[-82.833,28.082],[-82.831,28.085],[-82.826,28.084],[-82.823,28.068],[-82.818,28.058],[-82.813,28.037],[-82.815,28.013],[-82.821,28.008],[-82.822,28.002],[-82.817,27.992],[-82.815,27.974],[-82.822,27.964]]],[[[-82.679,27.696],[-82.679,27.695],[-82.694,27.7],[-82.714,27.699],[-82.719,27.692],[-82.723,27.671],[-82.722,27.664],[-82.716,27.651],[-82.713,27.647],[-82.698,27.639],[-82.705,27.625],[-82.733,27.613],[-82.737,27.617],[-82.737,27.623],[-82.738,27.627],[-82.739,27.637],[-82.738,27.707],[-82.74,27.718],[-82.746,27.731],[-82.754,27.736],[-82.761,27.745],[-82.77,27.768],[-82.783,27.784],[-82.79,27.792],[-82.82,27.814],[-82.829,27.822],[-82.847,27.854],[-82.849,27.863],[-82.851,27.886],[-82.848,27.91],[-82.841,27.937],[-82.831,27.962],[-82.825,27.96],[-82.822,27.957],[-82.831,27.931],[-82.838,27.909],[-82.832,27.909],[-82.821,27.927],[-82.809,27.953],[-82.805,27.96],[-82.798,27.991],[-82.793,28.011],[-82.793,28.032],[-82.783,28.056],[-82.784,28.106],[-82.782,28.12],[-82.781,28.128],[-82.787,28.145],[-82.791,28.152],[-82.799,28.152],[-82.808,28.155],[-82.805,28.172],[-82.651,28.173],[-82.649,28.039],[-82.649,27.966],[-82.717,27.958],[-82.721,27.956],[-82.724,27.948],[-82.722,27.942],[-82.721,27.94],[-82.72,27.937],[-82.72,27.936],[-82.71,27.928],[-82.692,27.925],[-82.685,27.916],[-82.671,27.913],[-82.628,27.91],[-82.634,27.904],[-82.632,27.891],[-82.61,27.874],[-82.568,27.884],[-82.568,27.882],[-82.567,27.858],[-82.598,27.858],[-82.595,27.843],[-82.589,27.836],[-82.587,27.817],[-82.607,27.799],[-82.623,27.78],[-82.631,27.754],[-82.625,27.733],[-82.626,27.727],[-82.634,27.711],[-82.64,27.704],[-82.653,27.7],[-82.663,27.702],[-82.663,27.702],[-82.667,27.704],[-82.669,27.705],[-82.67,27.705],[-82.671,27.706],[-82.672,27.706],[-82.672,27.706],[-82.672,27.706],[-82.673,27.706],[-82.674,27.706],[-82.677,27.706],[-82.679,27.696]]]]},"id":"12103"},{"type":"Feature","properties":{"name":"Taylor"},"geometry":{"type":"Polygon","coordinates":[[[-83.857,30.273],[-83.829,30.288],[-83.82,30.304],[-83.469,30.304],[-83.469,30.26],[-83.367,30.26],[-83.371,29.888],[-83.319,29.823],[-83.373,29.666],[-83.412,29.667],[-83.413,29.668],[-83.415,29.671],[-83.436,29.677],[-83.445,29.677],[-83.448,29.675],[-83.455,29.676],[-83.483,29.69],[-83.484,29.699],[-83.494,29.708],[-83.513,29.716],[-83.538,29.723],[-83.547,29.732],[-83.555,29.743],[-83.566,29.761],[-83.579,29.768],[-83.585,29.776],[-83.586,29.785],[-83.583,29.787],[-83.582,29.792],[-83.586,29.812],[-83.595,29.828],[-83.605,29.836],[-83.619,29.842],[-83.638,29.886],[-83.66,29.9],[-83.679,29.919],[-83.686,29.924],[-83.757,29.958],[-83.789,29.977],[-83.829,29.983],[-83.845,29.998],[-83.932,30.039],[-83.934,30.041],[-83.932,30.044],[-83.933,30.046],[-83.96,30.065],[-83.992,30.084],[-83.916,30.245],[-83.857,30.273]]]},"id":"12123"},{"type":"Feature","properties":{"name":"Franklin"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-84.777,29.707],[-84.73,29.739],[-84.717,29.749],[-84.697,29.77],[-84.694,29.765],[-84.695,29.762],[-84.714,29.741],[-84.765,29.7],[-84.777,29.692],[-84.799,29.682],[-84.854,29.665],[-84.885,29.652],[-84.958,29.613],[-85.036,29.589],[-85.051,29.587],[-85.055,29.592],[-85.069,29.605],[-85.095,29.622],[-85.097,29.625],[-85.095,29.628],[-85.067,29.61],[-85.038,29.6],[-85.024,29.597],[-85.017,29.604],[-84.988,29.61],[-84.968,29.617],[-84.933,29.637],[-84.926,29.645],[-84.92,29.649],[-84.896,29.657],[-84.862,29.673],[-84.813,29.687],[-84.798,29.699],[-84.777,29.707]]],[[[-85.156,29.68],[-85.137,29.684],[-85.135,29.687],[-85.114,29.689],[-85.094,29.685],[-85.084,29.679],[-85.077,29.671],[-85.091,29.649],[-85.097,29.633],[-85.125,29.628],[-85.143,29.635],[-85.163,29.65],[-85.185,29.664],[-85.204,29.673],[-85.223,29.678],[-85.22,29.68],[-85.209,29.682],[-85.185,29.683],[-85.169,29.682],[-85.156,29.68]]],[[[-84.544,30.011],[-84.341,29.961],[-84.339,29.946],[-84.337,29.943],[-84.334,29.924],[-84.336,29.913],[-84.343,29.9],[-84.349,29.897],[-84.379,29.893],[-84.405,29.901],[-84.424,29.903],[-84.434,29.906],[-84.444,29.914],[-84.452,29.929],[-84.47,29.925],[-84.495,29.914],[-84.512,29.917],[-84.536,29.91],[-84.577,29.888],[-84.603,29.876],[-84.613,29.868],[-84.648,29.847],[-84.656,29.838],[-84.656,29.834],[-84.67,29.829],[-84.684,29.831],[-84.692,29.829],[-84.73,29.807],[-84.756,29.789],[-84.763,29.789],[-84.824,29.758],[-84.837,29.756],[-84.868,29.742],[-84.882,29.734],[-84.888,29.722],[-84.892,29.723],[-84.902,29.736],[-84.89,29.756],[-84.877,29.773],[-84.894,29.785],[-84.904,29.786],[-84.915,29.783],[-84.921,29.773],[-84.938,29.75],[-84.947,29.745],[-84.964,29.742],[-84.969,29.727],[-84.977,29.721],[-84.993,29.715],[-85.037,29.711],[-85.072,29.719],[-85.102,29.719],[-85.121,29.716],[-85.153,29.708],[-85.177,29.7],[-85.217,29.695],[-85.109,29.777],[-85.04,29.779],[-85.012,29.873],[-85.025,29.971],[-85.008,30.014],[-84.544,30.011]]]]},"id":"12037"},{"type":"Feature","properties":{"name":"Hillsborough"},"geometry":{"type":"Polygon","coordinates":[[[-82.644,28.173],[-82.106,28.172],[-82.056,28.172],[-82.056,28.08],[-82.054,27.851],[-82.054,27.646],[-82.525,27.645],[-82.525,27.645],[-82.55,27.646],[-82.554,27.645],[-82.537,27.673],[-82.514,27.706],[-82.495,27.719],[-82.482,27.72],[-82.478,27.723],[-82.476,27.73],[-82.477,27.735],[-82.482,27.743],[-82.478,27.746],[-82.458,27.753],[-82.435,27.764],[-82.432,27.768],[-82.434,27.774],[-82.419,27.794],[-82.418,27.803],[-82.411,27.811],[-82.403,27.813],[-82.393,27.838],[-82.397,27.852],[-82.403,27.883],[-82.414,27.901],[-82.432,27.901],[-82.452,27.908],[-82.46,27.912],[-82.46,27.917],[-82.462,27.92],[-82.478,27.928],[-82.49,27.92],[-82.491,27.915],[-82.487,27.895],[-82.488,27.864],[-82.48,27.853],[-82.472,27.847],[-82.469,27.843],[-82.472,27.823],[-82.475,27.821],[-82.49,27.823],[-82.511,27.828],[-82.554,27.848],[-82.553,27.863],[-82.539,27.865],[-82.533,27.871],[-82.53,27.878],[-82.539,27.885],[-82.543,27.891],[-82.542,27.894],[-82.536,27.898],[-82.531,27.904],[-82.534,27.933],[-82.541,27.949],[-82.554,27.967],[-82.589,27.971],[-82.62,27.97],[-82.649,27.966],[-82.649,28.039],[-82.651,28.173],[-82.65,28.173],[-82.644,28.173]]]},"id":"12057"},{"type":"Feature","properties":{"name":"Jefferson"},"geometry":{"type":"Polygon","coordinates":[[[-84.007,30.672],[-83.88,30.666],[-83.88,30.666],[-83.855,30.664],[-83.821,30.663],[-83.811,30.662],[-83.744,30.658],[-83.677,30.655],[-83.674,30.655],[-83.612,30.651],[-83.604,30.582],[-83.731,30.492],[-83.722,30.434],[-83.807,30.372],[-83.82,30.304],[-83.829,30.288],[-83.857,30.273],[-83.916,30.245],[-83.992,30.084],[-84.001,30.096],[-84.024,30.103],[-84.049,30.103],[-84.063,30.101],[-84.076,30.095],[-84.076,30.274],[-84.076,30.37],[-84.075,30.382],[-84.075,30.413],[-84.075,30.434],[-84.041,30.463],[-84.041,30.484],[-84.041,30.484],[-83.977,30.522],[-84.007,30.672],[-84.007,30.672]]]},"id":"12065"},{"type":"Feature","properties":{"name":"Brevard"},"geometry":{"type":"Polygon","coordinates":[[[-80.631,28.655],[-80.617,28.635],[-80.584,28.598],[-80.575,28.585],[-80.567,28.562],[-80.561,28.531],[-80.536,28.479],[-80.525,28.459],[-80.527,28.452],[-80.563,28.438],[-80.574,28.428],[-80.588,28.411],[-80.596,28.391],[-80.603,28.364],[-80.607,28.336],[-80.608,28.311],[-80.604,28.258],[-80.59,28.178],[-80.566,28.096],[-80.548,28.049],[-80.509,27.97],[-80.447,27.862],[-80.447,27.861],[-80.509,27.822],[-80.869,27.823],[-80.863,28.347],[-80.863,28.347],[-80.863,28.347],[-80.881,28.504],[-80.987,28.613],[-80.964,28.613],[-80.968,28.79],[-80.732,28.791],[-80.713,28.762],[-80.713,28.762],[-80.713,28.761],[-80.71,28.757],[-80.709,28.755],[-80.672,28.709],[-80.663,28.698],[-80.648,28.679],[-80.648,28.678],[-80.647,28.678],[-80.646,28.676],[-80.641,28.67],[-80.639,28.666],[-80.631,28.655]]]},"id":"12009"},{"type":"Feature","properties":{"name":"Levy"},"geometry":{"type":"Polygon","coordinates":[[[-82.405,29.33],[-82.405,29.279],[-82.403,29.216],[-82.535,29.215],[-82.536,29.045],[-82.613,29.009],[-82.69,29.034],[-82.759,28.993],[-82.761,28.993],[-82.764,29.0],[-82.759,29.007],[-82.754,29.026],[-82.76,29.054],[-82.783,29.065],[-82.781,29.074],[-82.817,29.076],[-82.824,29.099],[-82.809,29.105],[-82.801,29.105],[-82.799,29.111],[-82.799,29.115],[-82.806,29.13],[-82.805,29.147],[-82.827,29.158],[-82.858,29.162],[-82.887,29.162],[-82.923,29.17],[-82.932,29.168],[-82.945,29.168],[-82.975,29.171],[-82.98,29.172],[-82.987,29.18],[-82.992,29.181],[-82.996,29.178],[-83.018,29.151],[-83.019,29.141],[-83.03,29.134],[-83.053,29.131],[-83.057,29.146],[-83.068,29.153],[-83.061,29.171],[-83.061,29.176],[-83.065,29.184],[-83.079,29.197],[-83.088,29.216],[-83.075,29.248],[-83.077,29.255],[-83.089,29.267],[-83.107,29.269],[-83.126,29.279],[-83.128,29.283],[-83.146,29.289],[-83.15,29.29],[-83.161,29.287],[-83.166,29.289],[-83.069,29.344],[-82.984,29.471],[-82.937,29.591],[-82.656,29.565],[-82.557,29.512],[-82.557,29.48],[-82.407,29.485],[-82.405,29.33]]]},"id":"12075"},{"type":"Feature","properties":{"name":"Collier"},"geometry":{"type":"Polygon","coordinates":[[[-81.564,26.513],[-81.272,26.517],[-81.272,26.423],[-81.269,26.253],[-80.88,26.259],[-80.873,26.0],[-80.873,25.979],[-80.873,25.805],[-81.345,25.803],[-81.349,25.817],[-81.353,25.822],[-81.362,25.824],[-81.386,25.84],[-81.394,25.852],[-81.418,25.865],[-81.424,25.868],[-81.429,25.865],[-81.441,25.864],[-81.458,25.869],[-81.472,25.882],[-81.474,25.888],[-81.488,25.888],[-81.501,25.884],[-81.509,25.884],[-81.513,25.886],[-81.512,25.897],[-81.516,25.9],[-81.528,25.902],[-81.541,25.9],[-81.577,25.889],[-81.585,25.889],[-81.615,25.894],[-81.623,25.897],[-81.64,25.898],[-81.645,25.898],[-81.654,25.894],[-81.664,25.886],[-81.673,25.857],[-81.678,25.845],[-81.685,25.847],[-81.69,25.853],[-81.713,25.898],[-81.718,25.902],[-81.727,25.907],[-81.732,25.932],[-81.738,25.942],[-81.746,25.95],[-81.75,25.96],[-81.748,25.994],[-81.751,25.998],[-81.757,26.0],[-81.762,26.006],[-81.802,26.088],[-81.809,26.152],[-81.815,26.173],[-81.817,26.207],[-81.821,26.237],[-81.833,26.295],[-81.845,26.328],[-81.846,26.33],[-81.69,26.317],[-81.66,26.421],[-81.562,26.423],[-81.564,26.513]]]},"id":"12021"},{"type":"Feature","properties":{"name":"Escambia"},"geometry":{"type":"Polygon","coordinates":[[[-86.919,30.371],[-87.155,30.328],[-87.206,30.321],[-87.268,30.315],[-87.283,30.319],[-87.295,30.324],[-87.32,30.318],[-87.35,30.313],[-87.42,30.297],[-87.518,30.28],[-87.452,30.3],[-87.45,30.311],[-87.451,30.346],[-87.451,30.367],[-87.441,30.391],[-87.427,30.408],[-87.419,30.41],[-87.431,30.491],[-87.448,30.513],[-87.45,30.514],[-87.45,30.515],[-87.394,30.625],[-87.394,30.642],[-87.397,30.654],[-87.407,30.672],[-87.449,30.699],[-87.481,30.717],[-87.498,30.72],[-87.503,30.722],[-87.533,30.743],[-87.624,30.846],[-87.635,30.866],[-87.622,30.898],[-87.601,30.936],[-87.594,30.976],[-87.599,30.997],[-87.599,30.997],[-87.571,30.998],[-87.549,30.998],[-87.48,30.998],[-87.48,30.998],[-87.479,30.998],[-87.467,30.998],[-87.467,30.998],[-87.462,30.998],[-87.462,30.998],[-87.459,30.998],[-87.456,30.998],[-87.45,30.998],[-87.432,30.998],[-87.426,30.998],[-87.368,30.998],[-87.364,30.998],[-87.356,30.998],[-87.334,30.998],[-87.312,30.998],[-87.304,30.998],[-87.302,30.998],[-87.291,30.998],[-87.289,30.998],[-87.266,30.998],[-87.261,30.998],[-87.26,30.998],[-87.258,30.998],[-87.257,30.998],[-87.256,30.998],[-87.255,30.998],[-87.163,30.999],[-87.287,30.925],[-87.314,30.847],[-87.309,30.727],[-87.269,30.712],[-87.259,30.611],[-87.125,30.5],[-87.134,30.42],[-87.233,30.349],[-86.919,30.371]]]},"id":"12033"}]};
|
|
const COV = {
|
|
"states": {
|
|
"VT": {
|
|
"state": 184
|
|
},
|
|
"VA": {
|
|
"state": 142
|
|
},
|
|
"SD": {
|
|
"state": 109
|
|
},
|
|
"SC": {
|
|
"state": 174
|
|
},
|
|
"UT": {
|
|
"state": 106
|
|
},
|
|
"GA": {
|
|
"state": 237
|
|
},
|
|
"MS": {
|
|
"state": 177
|
|
},
|
|
"MT": {
|
|
"state": 153
|
|
},
|
|
"MO": {
|
|
"state": 195
|
|
},
|
|
"MA": {
|
|
"state": 205
|
|
},
|
|
"AK": {
|
|
"state": 63
|
|
},
|
|
"KY": {
|
|
"state": 141
|
|
},
|
|
"AL": {
|
|
"state": 146
|
|
},
|
|
"NH": {
|
|
"state": 416
|
|
},
|
|
"MN": {
|
|
"state": 204
|
|
},
|
|
"MI": {
|
|
"state": 151
|
|
},
|
|
"OK": {
|
|
"state": 150
|
|
},
|
|
"IN": {
|
|
"state": 154
|
|
},
|
|
"CO": {
|
|
"state": 103
|
|
},
|
|
"CA": {
|
|
"state": 124
|
|
},
|
|
"IA": {
|
|
"state": 152
|
|
},
|
|
"CT": {
|
|
"state": 191
|
|
},
|
|
"FL": {
|
|
"state": 162,
|
|
"municipal": 2124,
|
|
"county": 1058
|
|
},
|
|
"WV": {
|
|
"state": 136
|
|
},
|
|
"RI": {
|
|
"state": 117
|
|
},
|
|
"WY": {
|
|
"state": 96
|
|
},
|
|
"TX": {
|
|
"state": 185
|
|
},
|
|
"PR": {
|
|
"state": 81
|
|
},
|
|
"PA": {
|
|
"state": 256
|
|
},
|
|
"NC": {
|
|
"state": 173
|
|
},
|
|
"ND": {
|
|
"state": 144
|
|
},
|
|
"NM": {
|
|
"state": 115
|
|
},
|
|
"NJ": {
|
|
"state": 123
|
|
},
|
|
"ME": {
|
|
"state": 189
|
|
},
|
|
"AR": {
|
|
"state": 140
|
|
},
|
|
"NV": {
|
|
"state": 67
|
|
},
|
|
"MD": {
|
|
"state": 191
|
|
},
|
|
"KS": {
|
|
"state": 169
|
|
},
|
|
"NE": {
|
|
"state": 4
|
|
},
|
|
"HI": {
|
|
"state": 79
|
|
},
|
|
"DE": {
|
|
"state": 65
|
|
},
|
|
"AZ": {
|
|
"state": 93
|
|
},
|
|
"NY": {
|
|
"state": 216
|
|
},
|
|
"ID": {
|
|
"state": 108
|
|
},
|
|
"OH": {
|
|
"state": 136
|
|
},
|
|
"OR": {
|
|
"state": 93
|
|
},
|
|
"IL": {
|
|
"state": 179
|
|
},
|
|
"LA": {
|
|
"state": 147
|
|
},
|
|
"WI": {
|
|
"state": 135
|
|
},
|
|
"WA": {
|
|
"state": 151
|
|
},
|
|
"TN": {
|
|
"state": 134
|
|
},
|
|
"_US": {
|
|
"federal": 542
|
|
}
|
|
},
|
|
"fl_counties": {
|
|
"miami-dade": 216,
|
|
"palm-beach": 211,
|
|
"broward": 183,
|
|
"pinellas": 146,
|
|
"polk": 105,
|
|
"volusia": 101,
|
|
"brevard": 97,
|
|
"orange": 92,
|
|
"duval": 80,
|
|
"lake": 79,
|
|
"okaloosa": 63,
|
|
"jackson": 61,
|
|
"alachua": 56,
|
|
"levy": 55,
|
|
"lee": 51,
|
|
"gadsden": 51,
|
|
"pasco": 48,
|
|
"seminole": 47,
|
|
"bay": 46,
|
|
"sumter": 45,
|
|
"putnam": 45,
|
|
"manatee": 45,
|
|
"washington": 44,
|
|
"marion": 43,
|
|
"sarasota": 40,
|
|
"collier": 38,
|
|
"martin": 38,
|
|
"monroe": 37,
|
|
"holmes": 36,
|
|
"bradford": 35,
|
|
"indian-river": 35,
|
|
"santa-rosa": 34,
|
|
"flagler": 34,
|
|
"st-lucie": 33,
|
|
"walton": 33,
|
|
"hamilton": 32,
|
|
"hillsborough": 30,
|
|
"nassau": 30,
|
|
"madison": 30,
|
|
"st-johns": 30,
|
|
"clay": 30,
|
|
"citrus": 28,
|
|
"calhoun": 28,
|
|
"highlands": 26,
|
|
"dixie": 26,
|
|
"hardee": 26,
|
|
"franklin": 26,
|
|
"escambia": 26,
|
|
"columbia": 25,
|
|
"union": 25,
|
|
"baker": 24,
|
|
"gulf": 24,
|
|
"desoto": 23,
|
|
"hernando": 23,
|
|
"hendry": 23,
|
|
"leon": 22,
|
|
"wakulla": 22,
|
|
"taylor": 22,
|
|
"suwannee": 22,
|
|
"jefferson": 21,
|
|
"charlotte": 21,
|
|
"osceola": 21,
|
|
"glades": 21,
|
|
"gilchrist": 20,
|
|
"liberty": 19,
|
|
"okeechobee": 17,
|
|
"lafayette": 16
|
|
},
|
|
"fl_municipalities": 411,
|
|
"bodies": {
|
|
"senate": 1,
|
|
"executive": 1,
|
|
"house": 1,
|
|
"committee": 49,
|
|
"subcommittee": 181
|
|
},
|
|
"totals": {
|
|
"federal": 542,
|
|
"state": 7561,
|
|
"county": 1058,
|
|
"municipal": 2124
|
|
}
|
|
};
|
|
|
|
const NAME2ABBR = {"Alabama":"AL","Alaska":"AK","Arizona":"AZ","Arkansas":"AR","California":"CA","Colorado":"CO","Connecticut":"CT","Delaware":"DE","District of Columbia":"DC","Florida":"FL","Georgia":"GA","Hawaii":"HI","Idaho":"ID","Illinois":"IL","Indiana":"IN","Iowa":"IA","Kansas":"KS","Kentucky":"KY","Louisiana":"LA","Maine":"ME","Maryland":"MD","Massachusetts":"MA","Michigan":"MI","Minnesota":"MN","Mississippi":"MS","Missouri":"MO","Montana":"MT","Nebraska":"NE","Nevada":"NV","New Hampshire":"NH","New Jersey":"NJ","New Mexico":"NM","New York":"NY","North Carolina":"NC","North Dakota":"ND","Ohio":"OH","Oklahoma":"OK","Oregon":"OR","Pennsylvania":"PA","Rhode Island":"RI","South Carolina":"SC","South Dakota":"SD","Tennessee":"TN","Texas":"TX","Utah":"UT","Vermont":"VT","Virginia":"VA","Washington":"WA","West Virginia":"WV","Wisconsin":"WI","Wyoming":"WY","Puerto Rico":"PR"};
|
|
const OMIT = new Set(["Alaska","Hawaii","Puerto Rico"]);
|
|
const slug = s => s.toLowerCase().replace(/[^a-z0-9]+/g,"-").replace(/^-|-$/g,"");
|
|
|
|
const W=960, H=600, PAD=18;
|
|
const map = document.getElementById("map");
|
|
map.setAttribute("viewBox",`0 0 ${W} ${H}`);
|
|
|
|
function eachRing(geom, fn){
|
|
const polys = geom.type==="Polygon" ? [geom.coordinates] : geom.coordinates;
|
|
polys.forEach(poly=>poly.forEach(fn));
|
|
}
|
|
function fitProjection(features){
|
|
let minx=1e9,miny=1e9,maxx=-1e9,maxy=-1e9;
|
|
features.forEach(f=>eachRing(f.geometry,ring=>ring.forEach(([lng,lat])=>{
|
|
if(lng<minx)minx=lng; if(lng>maxx)maxx=lng; if(lat<miny)miny=lat; if(lat>maxy)maxy=lat;
|
|
})));
|
|
const midLat=(miny+maxy)/2, kx=Math.cos(midLat*Math.PI/180);
|
|
const px0=minx*kx, px1=maxx*kx;
|
|
const sw=(px1-px0), sh=(maxy-miny);
|
|
const s=Math.min((W-2*PAD)/sw,(H-2*PAD)/sh);
|
|
const ox=(W-sw*s)/2, oy=(H-sh*s)/2;
|
|
return ([lng,lat])=>[ox+(lng*kx-px0)*s, oy+(maxy-lat)*s];
|
|
}
|
|
function pathFor(geom, proj){
|
|
let d="";
|
|
eachRing(geom, ring=>{
|
|
ring.forEach(([lng,lat],i)=>{ const[x,y]=proj([lng,lat]); d+=(i?"L":"M")+x.toFixed(1)+" "+y.toFixed(1); });
|
|
d+="Z";
|
|
});
|
|
return d;
|
|
}
|
|
|
|
const readout=document.getElementById("readout");
|
|
function printRoof(name){
|
|
const ab=NAME2ABBR[name]; const st=(COV.states[ab]||{});
|
|
readout.innerHTML=`
|
|
<div class="ro-name"><span class="cursor">▸ </span>${name}</div>
|
|
<div class="ro-tier roof">Roof · federal + state tier</div>
|
|
<div class="ro-rows">
|
|
<div class="ro-row"><span>State legislators</span><span>${(st.state||0).toLocaleString()}</span></div>
|
|
<div class="ro-row"><span>Federal delegation</span><span>mapped</span></div>
|
|
<div class="ro-row"><span>County / municipal</span><span>frontier</span></div>
|
|
</div>`;
|
|
}
|
|
function printDeep(){
|
|
const nCounty=COV.totals.county.toLocaleString(), nMuni=COV.totals.municipal.toLocaleString();
|
|
readout.innerHTML=`
|
|
<div class="ro-name"><span class="cursor">▸ </span>Florida</div>
|
|
<div class="ro-tier ground">Foundation · mapped to the ground</div>
|
|
<div class="ro-rows">
|
|
<div class="ro-row"><span>State legislators</span><span>${(COV.states.FL.state||0).toLocaleString()}</span></div>
|
|
<div class="ro-row"><span>County officeholders</span><span>${nCounty}</span></div>
|
|
<div class="ro-row"><span>Municipal officeholders</span><span>${nMuni}</span></div>
|
|
<div class="ro-row"><span>Counties · municipalities</span><span>67 · 411</span></div>
|
|
</div>
|
|
<div class="ro-cta">click to descend into the 67 counties ▸</div>`;
|
|
}
|
|
function printCounty(name,count){
|
|
readout.innerHTML=`
|
|
<div class="ro-name"><span class="cursor">▸ </span>${name} County</div>
|
|
<div class="ro-tier ground">Florida · foundation</div>
|
|
<div class="ro-rows">
|
|
<div class="ro-row"><span>Local officeholders mapped</span><span>${count.toLocaleString()}</span></div>
|
|
</div>
|
|
<div class="ro-hint">County commission, cities, sheriff, school board — each a sourced file.</div>`;
|
|
}
|
|
|
|
let countyMax=1;
|
|
Object.values(COV.fl_counties).forEach(v=>{ if(v>countyMax)countyMax=v; });
|
|
function countyFill(c){
|
|
const t=Math.sqrt(c/countyMax);
|
|
const a=[42,36,22], b=[244,178,78];
|
|
const mix=a.map((x,i)=>Math.round(x+(b[i]-x)*t));
|
|
return `rgb(${mix[0]},${mix[1]},${mix[2]})`;
|
|
}
|
|
|
|
function renderNation(){
|
|
const feats=STATES.features.filter(f=>!OMIT.has(f.properties.name));
|
|
const proj=fitProjection(feats);
|
|
map.innerHTML="";
|
|
feats.forEach((f,i)=>{
|
|
const name=f.properties.name, isFL=name==="Florida";
|
|
const p=document.createElementNS("http://www.w3.org/2000/svg","path");
|
|
p.setAttribute("d",pathFor(f.geometry,proj));
|
|
p.setAttribute("class","region "+(isFL?"deep pulse":"lit"));
|
|
p.setAttribute("tabindex","0");
|
|
p.style.transitionDelay=(i*8)+"ms";
|
|
const enter=()=> isFL?printDeep():printRoof(name);
|
|
p.addEventListener("mouseenter",enter); p.addEventListener("focus",enter);
|
|
if(isFL){ p.addEventListener("click",descend); p.addEventListener("keydown",e=>{if(e.key==="Enter")descend();}); }
|
|
map.appendChild(p);
|
|
});
|
|
}
|
|
function descend(){
|
|
document.getElementById("title").textContent="Florida, to the ground.";
|
|
document.getElementById("subtitle").textContent="Sixty-seven counties, shaded by how many local officeholders the mirror holds — county commissions, city councils, sheriffs, school boards. Darkest are the thinnest. Hover to read each.";
|
|
document.getElementById("back").classList.remove("hidden");
|
|
document.getElementById("legend").innerHTML='<h2 style="margin-bottom:2px">Legend</h2><div class="lg"><span class="sw scale"></span><span><b>Local officeholders</b> per county — dim (few) to bright (many).</span></div>';
|
|
document.getElementById("stagefoot").textContent="Every shaded county resolves to sourced files. Depth follows the network: it grows where people are watching.";
|
|
const proj=fitProjection(FL.features);
|
|
map.innerHTML="";
|
|
FL.features.forEach((f,i)=>{
|
|
const name=f.properties.name, count=COV.fl_counties[slug(name)]||0;
|
|
const p=document.createElementNS("http://www.w3.org/2000/svg","path");
|
|
p.setAttribute("d",pathFor(f.geometry,proj));
|
|
p.setAttribute("class","region county"); p.setAttribute("tabindex","0");
|
|
p.setAttribute("fill",countyFill(count));
|
|
p.style.transitionDelay=(i*6)+"ms";
|
|
const enter=()=>printCounty(name,count);
|
|
p.addEventListener("mouseenter",enter); p.addEventListener("focus",enter);
|
|
map.appendChild(p);
|
|
});
|
|
printCounty("St. Lucie",COV.fl_counties["st-lucie"]||0);
|
|
}
|
|
document.getElementById("back").addEventListener("click",()=>{
|
|
document.getElementById("title").textContent="The roof over fifty states. The foundation under one.";
|
|
document.getElementById("subtitle").textContent="Every current officeholder in the mirror, as a map. Teal is the federal and state tier — the roof, present everywhere. Amber is county and municipal depth — the foundation, so far only under Florida. Hover a region; click Florida to descend.";
|
|
document.getElementById("back").classList.add("hidden");
|
|
document.getElementById("legend").innerHTML='<h2 style="margin-bottom:2px">Legend</h2><div class="lg"><span class="sw roof"></span><span><b>Roof</b> — mapped at federal + state tier. Every state.</span></div><div class="lg"><span class="sw ground"></span><span><b>Foundation</b> — county + municipal depth. Click to descend.</span></div>';
|
|
document.getElementById("stagefoot").innerHTML="Alaska, Hawaii & Puerto Rico are mirrored at the federal and state tier but omitted from this projection. County depth is real only for Florida — the other 3,000+ counties are the frontier.";
|
|
renderNation();
|
|
});
|
|
|
|
// totals
|
|
document.getElementById("t-fed").textContent=COV.totals.federal.toLocaleString();
|
|
document.getElementById("t-state").textContent=COV.totals.state.toLocaleString();
|
|
document.getElementById("t-county").textContent=COV.totals.county.toLocaleString();
|
|
document.getElementById("t-muni").textContent=COV.totals.municipal.toLocaleString();
|
|
|
|
renderNation();
|
|
requestAnimationFrame(()=>requestAnimationFrame(()=>document.getElementById("board").classList.remove("booting")));
|
|
</script>
|