Skip to content

Instantly share code, notes, and snippets.

@simzou
Last active January 7, 2026 19:24
Show Gist options
  • Select an option

  • Save simzou/6459889 to your computer and use it in GitHub Desktop.

Select an option

Save simzou/6459889 to your computer and use it in GitHub Desktop.
US Map of Nielsen Media Markets

This is the map of Nielen Designated Marketing Areas using D3.js. Hover over for data related to each area.

See map here

See code here

###Credits

###Notes

  • Some areas are shaped really strangely (such as a slice of Nevada being part of the Denver media market) but that is really how they are divided
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>US Map of Nielsen Media Markets</title>
<style>
.background {
fill: none;
pointer-events: all;
}
.graticule {
fill: none;
stroke: #777;
stroke-width: .5;
stroke-opacity: .7;
}
#dma-borders {
fill: none;
stroke: black;
stroke-width: 0.7;
stroke-linejoin: round;
stroke-linecap: round;
pointer-events: none;
}
#textbox {
position: absolute;
top: 400px;
left: 50px;
width: 275px;
height: 100px;
}
#textbox text p {
font-family: Arial, Helvetica;
font-size: .8em;
margin: 0;
}
</style>
</head>
<body>
<div id="textbox"></div>
<script src="http://d3js.org/d3.v3.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script>
var width = 960,
height = 500;
// sets the type of view
var projection = d3.geo.albersUsa()
.scale(1070) // size, bigger is bigger
.translate([width / 2, height / 2]);
//creates a new geographic path generator
var path = d3.geo.path().projection(projection);
var xScale = d3.scale.linear()
.domain([0, 7])
.range([0, 500]);
var xAxis = d3.svg.axis()
.scale(xScale)
.orient("bottom")
.tickSize(13)
.tickFormat(d3.format("0.0f"));
//set svg window
var svg = d3.select("body")
.append("svg")
.attr("width", width)
.attr("height", height)
var graticule = d3.geo.graticule()
.extent([[-98 - 45, 38 - 45], [-98 + 45, 38 + 45]])
.step([5, 5]);
// adding a blank background
svg.append("rect")
.datum(graticule)
.attr("class", "background")
.attr("width", width)
.attr("height", height)
// .on("click", clicked);
//declare g as our appended svg
var g = svg.append("g");
var defaultFill = "#aaa";
d3.json("nielsentopo.json", function(error, dma) {
var nielsen = dma.objects.nielsen_dma.geometries;
// adding data from tv json (number of TVs, etc) to map json
d3.json("tv.json", function(error, tv){
for (var i = 0; i < nielsen.length; i++){
var dma_code = nielsen[i].id;
for (key in tv[dma_code]){
nielsen[i].properties[key] = tv[dma_code][key];
}
}
dma.objects.nielsen_dma.geometries = nielsen;
g.append("g")
.attr("id", "dmas")
.selectAll("path")
.data(topojson.feature(dma, dma.objects.nielsen_dma).features)
.enter()
.append("path")
.attr("d", path)
//.on("click", clicked)
.on("mouseover", function(d){
d3.select(this)
.attr("fill", "orange");
var prop = d.properties;
var string = "<p><strong>Market Area Name</strong>: " + prop.dma1 + "</p>";
string += "<p><strong>Homes with TVs</strong>: " + numberWithCommas(prop["TV Homes"]) + "</p>";
string += "<p><strong>% with Cable</strong>: " + prop.cableperc + "%</p>";
string += "<p><strong>Nielsen Rank</strong>: " + prop.Rank + "</p>";
d3.select("#textbox")
.html("")
.append("text")
.html(string)
})
.on("mouseout", function(d){
d3.select(this)
.attr("fill", defaultFill)
})
.attr("opacity", 0.9)
.attr("fill", defaultFill);
// add dma borders
g.append("path", ".graticule")
.datum(topojson.mesh(dma, dma.objects.nielsen_dma, function(a, b) {
return true;
}))
.attr("id", "dma-borders")
.attr("d", path);
})
})
// via http://stackoverflow.com/a/2901298
function numberWithCommas(x) {
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
<
{
"type": "Topology",
"transform": {
"scale": [
0.00577894299429943,
0.002484260626062607
],
"translate": [
-124.732975,
24.544237
]
},
"objects": {
"nielsen_dma": {
"type": "GeometryCollection",
"geometries": [
{
"type": "Polygon",
"arcs": [
[
0,
1,
2,
3,
4,
5,
6,
7
]
],
"id": 662,
"properties": {
"name": "dma:",
"latitude": 32.404348,
"tvperc": 89.2,
"dma": 662,
"dma1": "Abilene-Sweetwater, TX",
"cableperc": 38.2,
"adsperc": 51.8,
"longitude": -99.8293625
}
},
{
"type": "Polygon",
"arcs": [
[
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18
]
],
"id": 525,
"properties": {
"name": "dma:",
"latitude": 31.5279975,
"tvperc": 92.7,
"dma": 525,
"dma1": "Albany, GA",
"cableperc": 50.9,
"adsperc": 42.6,
"longitude": -83.7121235
}
},
{
"type": "Polygon",
"arcs": [
[
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30
]
],
"id": 532,
"properties": {
"name": "dma:",
"latitude": 43.049266,
"tvperc": 92.1,
"dma": 532,
"dma1": "Albany-Schenectady-Troy, NY",
"cableperc": 75.3,
"adsperc": 17.2,
"longitude": -73.8438695
}
},
{
"type": "Polygon",
"arcs": [
[
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45
]
],
"id": 790,
"properties": {
"name": "dma:",
"latitude": 34.4952755,
"tvperc": 83.3,
"dma": 790,
"dma1": "Albuquerque-Santa Fe, NM",
"cableperc": 38.9,
"adsperc": 44.8,
"longitude": -106.526644
}
},
{
"type": "Polygon",
"arcs": [
[
46,
47,
48,
49,
50,
51,
52,
53,
54
]
],
"id": 644,
"properties": {
"name": "dma:",
"latitude": 31.322628,
"tvperc": 92.4,
"dma": 644,
"dma1": "Alexandria, LA",
"cableperc": 54.4,
"adsperc": 38.8,
"longitude": -92.61795
}
},
{
"type": "Polygon",
"arcs": [
[
55,
56,
57
]
],
"id": 583,
"properties": {
"name": "dma:",
"latitude": 44.856283,
"tvperc": 90.3,
"dma": 583,
"dma1": "Alpena, MI",
"cableperc": 58,
"adsperc": 32.6,
"longitude": -83.5733565
}
},
{
"type": "Polygon",
"arcs": [
[
58,
59,
-44,
60,
61,
62,
63,
64,
65,
66
]
],
"id": 634,
"properties": {
"name": "dma:",
"latitude": 35.4797235,
"tvperc": 91,
"dma": 634,
"dma1": "Amarillo, TX",
"cableperc": 44.6,
"adsperc": 47,
"longitude": -102.063253
}
},
{
"type": "Polygon",
"arcs": [
[
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79
]
],
"id": 524,
"properties": {
"name": "dma:",
"latitude": 33.9253975,
"tvperc": 93.9,
"dma": 524,
"dma1": "Atlanta, GA",
"cableperc": 55.7,
"adsperc": 38.7,
"longitude": -84.3335135
}
},
{
"type": "Polygon",
"arcs": [
[
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92
]
],
"id": 520,
"properties": {
"name": "dma:",
"latitude": 33.2388275,
"tvperc": 89.8,
"dma": 520,
"dma1": "Augusta, GA",
"cableperc": 56.3,
"adsperc": 34.1,
"longitude": -81.9064505
}
},
{
"type": "Polygon",
"arcs": [
[
93,
94,
95,
96,
97,
98,
99,
100
]
],
"id": 635,
"properties": {
"name": "dma:",
"latitude": 30.331427,
"tvperc": 87.9,
"dma": 635,
"dma1": "Austin, TX",
"cableperc": 61.6,
"adsperc": 27.3,
"longitude": -98.0272995
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
101,
102,
103,
104,
105,
106
]
]
],
"id": 800,
"properties": {
"name": "dma:",
"latitude": 35.291006,
"tvperc": 85.7,
"dma": 800,
"dma1": "Bakersfield, CA",
"cableperc": 50.5,
"adsperc": 35.8,
"longitude": -119.05459
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
107,
108,
109,
110,
111
]
],
[
[
112
]
],
[
[
113
]
],
[
[
114
]
],
[
[
115
]
],
[
[
116
]
],
[
[
117
]
],
[
[
118
]
],
[
[
119
]
]
],
"id": 512,
"properties": {
"name": "dma:",
"latitude": 38.972515,
"tvperc": 95.1,
"dma": 512,
"dma1": "Baltimore, MD",
"cableperc": 74.1,
"adsperc": 21.6,
"longitude": -76.506469
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
120,
121,
122,
123,
124,
125,
126
]
],
[
[
127
]
],
[
[
128
]
],
[
[
129
]
],
[
[
130
]
],
[
[
131
]
],
[
[
132
]
],
[
[
133
]
],
[
[
134
]
],
[
[
135
]
],
[
[
136
]
],
[
[
137
]
],
[
[
138
]
],
[
[
139
]
]
],
"id": 537,
"properties": {
"name": "dma:",
"latitude": 45.3356845,
"tvperc": 84.6,
"dma": 537,
"dma1": "Bangor, ME",
"cableperc": 40.5,
"adsperc": 44.5,
"longitude": -68.751059
}
},
{
"type": "Polygon",
"arcs": [
[
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150
]
],
"id": 716,
"properties": {
"name": "dma:",
"latitude": 30.4278165,
"tvperc": 94.2,
"dma": 716,
"dma1": "Baton Rouge, LA",
"cableperc": 69.4,
"adsperc": 25.5,
"longitude": -91.140946
}
},
{
"type": "Polygon",
"arcs": [
[
151,
152,
153,
154,
155
]
],
"id": 692,
"properties": {
"name": "dma:",
"latitude": 30.3724315,
"tvperc": 92.1,
"dma": 692,
"dma1": "Beaumont-Port Arthur, TX",
"cableperc": 50.4,
"adsperc": 42.2,
"longitude": -94.1330155
}
},
{
"type": "Polygon",
"arcs": [
[
156,
157,
158,
159,
160
]
],
"id": 821,
"properties": {
"name": "dma:",
"latitude": 44.001647,
"tvperc": 82.6,
"dma": 821,
"dma1": "Bend, OR",
"cableperc": 60.5,
"adsperc": 22.8,
"longitude": -120.9495205
}
},
{
"type": "Polygon",
"arcs": [
[
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177
]
],
"id": 756,
"properties": {
"name": "dma:",
"latitude": 45.8919365,
"tvperc": 85.5,
"dma": 756,
"dma1": "Billings, MT",
"cableperc": 51.9,
"adsperc": 34.2,
"longitude": -108.195493
}
},
{
"type": "Polygon",
"arcs": [
[
178,
179,
180,
181
]
],
"id": 746,
"properties": {
"name": "dma:",
"latitude": 30.651123,
"tvperc": 92.3,
"dma": 746,
"dma1": "Biloxi-Gulfport, MS",
"cableperc": 68.1,
"adsperc": 25.2,
"longitude": -88.868398
}
},
{
"type": "Polygon",
"arcs": [
[
182,
183,
184,
-24,
185,
186,
187,
188,
189
]
],
"id": 502,
"properties": {
"name": "dma:",
"latitude": 42.2963485,
"tvperc": 91.4,
"dma": 502,
"dma1": "Binghamton, NY",
"cableperc": 72.8,
"adsperc": 19.3,
"longitude": -75.4931575
}
},
{
"type": "Polygon",
"arcs": [
[
190,
191,
192,
193,
194,
195,
196,
197,
198,
199
]
],
"id": 630,
"properties": {
"name": "dma:",
"latitude": 33.5031,
"tvperc": 93.4,
"dma": 630,
"dma1": "Birmingham (Anniston and Tuscaloosa), AL",
"cableperc": 48.7,
"adsperc": 45.3,
"longitude": -86.869635
}
},
{
"type": "Polygon",
"arcs": [
[
200,
201,
202,
203,
204,
205,
206,
207
]
],
"id": 559,
"properties": {
"name": "dma:",
"latitude": 37.6001745,
"tvperc": 95.7,
"dma": 559,
"dma1": "Bluefield-Beckley-Oak Hill, WV",
"cableperc": 63.1,
"adsperc": 33.4,
"longitude": -80.978172
}
},
{
"type": "Polygon",
"arcs": [
[
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224
]
],
"id": 757,
"properties": {
"name": "dma:",
"latitude": 43.632029,
"tvperc": 70.7,
"dma": 757,
"dma1": "Boise, ID",
"cableperc": 24.7,
"adsperc": 46.2,
"longitude": -117.0232835
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
-30,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234
]
],
[
[
235
]
],
[
[
236
]
],
[
[
237
]
],
[
[
238
]
],
[
[
239
]
],
[
[
240
]
],
[
[
241
]
],
[
[
242
]
],
[
[
243
]
],
[
[
244
]
],
[
[
245
]
],
[
[
246
]
],
[
[
247
]
],
[
[
248
]
],
[
[
249
]
],
[
[
250
]
],
[
[
251
]
],
[
[
252
]
],
[
[
253
]
],
[
[
254
]
],
[
[
255
]
]
],
"id": 506,
"properties": {
"name": "dma:",
"latitude": 42.501023,
"tvperc": 98.8,
"dma": 506,
"dma1": "Boston, MA (Manchester, NH)",
"cableperc": 87.2,
"adsperc": 12.8,
"longitude": -71.460493
}
},
{
"type": "Polygon",
"arcs": [
[
256,
257,
258,
259,
260,
261,
262,
263,
264
]
],
"id": 736,
"properties": {
"name": "dma:",
"latitude": 37.0341725,
"tvperc": 90.8,
"dma": 736,
"dma1": "Bowling Green, KY",
"cableperc": 71,
"adsperc": 20.6,
"longitude": -85.99226
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
265,
266,
267,
268,
269,
270,
271,
272,
273
],
[
274
],
[
275
]
],
[
[
276
]
],
[
[
277
]
],
[
[
278,
-267
]
],
[
[
279
]
]
],
"id": 514,
"properties": {
"name": "dma:",
"latitude": 42.42369,
"tvperc": 92.3,
"dma": 514,
"dma1": "Buffalo, NY",
"cableperc": 62.2,
"adsperc": 30.7,
"longitude": -78.6800405
}
},
{
"type": "Polygon",
"arcs": [
[
-28,
280,
281,
282,
283,
284,
285,
286,
287,
-227,
288
]
],
"id": 523,
"properties": {
"name": "dma:",
"latitude": 44.071301,
"tvperc": 90.8,
"dma": 523,
"dma1": "Burlington, VT-Plattsburgh, NY",
"cableperc": 52.5,
"adsperc": 38.7,
"longitude": -73.0368725
}
},
{
"type": "Polygon",
"arcs": [
[
289,
290,
291,
292,
293,
294,
295,
296,
297,
298,
299,
-162,
300
]
],
"id": 754,
"properties": {
"name": "dma:",
"latitude": 45.979098,
"tvperc": 81.9,
"dma": 754,
"dma1": "Butte-Bozeman, MT",
"cableperc": 42.5,
"adsperc": 39.6,
"longitude": -112.3609785
}
},
{
"type": "Polygon",
"arcs": [
[
301,
302,
-174,
303,
304,
305,
306,
307,
308,
309,
310
]
],
"id": 767,
"properties": {
"name": "dma:",
"latitude": 43.412869,
"tvperc": 91.3,
"dma": 767,
"dma1": "Casper-Riverton, WY",
"cableperc": 60.3,
"adsperc": 31.6,
"longitude": -107.4728085
}
},
{
"type": "Polygon",
"arcs": [
[
311,
312,
313,
314,
315,
316,
317,
318
]
],
"id": 637,
"properties": {
"name": "dma:",
"latitude": 42.331217,
"tvperc": 86.5,
"dma": 637,
"dma1": "Cedar Rapids-Waterloo-Iowa City & Dubuque, IA",
"cableperc": 55.4,
"adsperc": 31.6,
"longitude": -91.7493605
}
},
{
"type": "Polygon",
"arcs": [
[
319,
320,
321,
322,
323,
324,
325,
326,
327,
328,
329
]
],
"id": 648,
"properties": {
"name": "dma:",
"latitude": 39.9606635,
"tvperc": 92.1,
"dma": 648,
"dma1": "Champaign & Springfield-Decatur, IL",
"cableperc": 57.4,
"adsperc": 35.2,
"longitude": -89.0627055
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
330,
331,
-88,
332,
333,
334,
335
]
],
[
[
336
]
],
[
[
337
]
],
[
[
338
]
],
[
[
339
]
]
],
"id": 519,
"properties": {
"name": "dma:",
"latitude": 33.181204,
"tvperc": 92,
"dma": 519,
"dma1": "Charleston, SC",
"cableperc": 63.7,
"adsperc": 28.9,
"longitude": -80.042272
}
},
{
"type": "Polygon",
"arcs": [
[
340,
341,
342,
343,
344,
345,
346,
347,
348,
349,
350,
351,
352,
-205,
353,
354,
355,
356,
357
]
],
"id": 564,
"properties": {
"name": "dma:",
"latitude": 38.376208,
"tvperc": 94.4,
"dma": 564,
"dma1": "Charleston-Huntington, WV",
"cableperc": 53.7,
"adsperc": 41.2,
"longitude": -82.039491
}
},
{
"type": "Polygon",
"arcs": [
[
358,
359,
360,
361,
362,
363,
364,
365,
366
]
],
"id": 517,
"properties": {
"name": "dma:",
"latitude": 35.477172,
"tvperc": 92.6,
"dma": 517,
"dma1": "Charlotte, NC",
"cableperc": 58.5,
"adsperc": 34.8,
"longitude": -80.76953
}
},
{
"type": "Polygon",
"arcs": [
[
367,
368,
369,
370,
371
]
],
"id": 584,
"properties": {
"name": "dma:",
"latitude": 38.1802125,
"tvperc": 86.2,
"dma": 584,
"dma1": "Charlottesville, VA",
"cableperc": 51.3,
"adsperc": 35.5,
"longitude": -78.4610955
}
},
{
"type": "Polygon",
"arcs": [
[
372,
373,
374,
375,
376,
-72,
377
]
],
"id": 575,
"properties": {
"name": "dma:",
"latitude": 35.204094,
"tvperc": 91.2,
"dma": 575,
"dma1": "Chattanooga, TN",
"cableperc": 58.6,
"adsperc": 33.2,
"longitude": -84.7884855
}
},
{
"type": "Polygon",
"arcs": [
[
378,
379,
380,
381,
382
]
],
"id": 759,
"properties": {
"name": "dma:",
"latitude": 41.8048825,
"tvperc": 92.2,
"dma": 759,
"dma1": "Cheyenne, WY-Scottsbluff, NE",
"cableperc": 61.6,
"adsperc": 30.8,
"longitude": -104.3206125
}
},
{
"type": "Polygon",
"arcs": [
[
383,
384,
-324,
385,
386,
387,
388,
389,
390,
391,
392
]
],
"id": 602,
"properties": {
"name": "dma:",
"latitude": 41.615065,
"tvperc": 89.2,
"dma": 602,
"dma1": "Chicago, IL",
"cableperc": 62,
"adsperc": 28.2,
"longitude": -87.8455645
}
},
{
"type": "Polygon",
"arcs": [
[
393,
394,
395,
396,
397,
398,
399,
400,
401,
402
]
],
"id": 868,
"properties": {
"name": "dma:",
"latitude": 40.3359675,
"tvperc": 85.4,
"dma": 868,
"dma1": "Chico-Redding, CA",
"cableperc": 32.3,
"adsperc": 53.6,
"longitude": -122.350166
}
},
{
"type": "Polygon",
"arcs": [
[
403,
404,
405,
406,
407,
408,
409,
410,
411,
412,
-344
]
],
"id": 515,
"properties": {
"name": "dma:",
"latitude": 39.0338655,
"tvperc": 85.7,
"dma": 515,
"dma1": "Cincinnati, OH",
"cableperc": 58.7,
"adsperc": 27.4,
"longitude": -84.357866
}
},
{
"type": "Polygon",
"arcs": [
[
413,
414,
415,
416,
417,
418,
419,
420,
421,
422,
-351
]
],
"id": 598,
"properties": {
"name": "dma:",
"latitude": 38.93329,
"tvperc": 95.4,
"dma": 598,
"dma1": "Clarksburg-Weston, WV",
"cableperc": 54.2,
"adsperc": 42,
"longitude": -80.309074
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
423,
424,
425,
426,
427,
428,
429,
430,
431
]
],
[
[
432
]
],
[
[
433
]
]
],
"id": 510,
"properties": {
"name": "dma:",
"latitude": 41.0958885,
"tvperc": 94.2,
"dma": 510,
"dma1": "Cleveland-Akron (Canton), OH",
"cableperc": 70.2,
"adsperc": 24.2,
"longitude": -81.71123
}
},
{
"type": "Polygon",
"arcs": [
[
-62,
434,
435,
436,
437,
438,
439,
440,
441
]
],
"id": 752,
"properties": {
"name": "dma:",
"latitude": 38.061384,
"tvperc": 86.5,
"dma": 752,
"dma1": "Colorado Springs-Pueblo, CO",
"cableperc": 43.6,
"adsperc": 43.5,
"longitude": -104.0271685
}
},
{
"type": "Polygon",
"arcs": [
[
442,
-84,
443,
444,
445,
-366,
446,
447,
448,
449,
450,
451
]
],
"id": 546,
"properties": {
"name": "dma:",
"latitude": 33.896366,
"tvperc": 88.6,
"dma": 546,
"dma1": "Columbia, SC",
"cableperc": 50.5,
"adsperc": 38.8,
"longitude": -80.9102195
}
},
{
"type": "Polygon",
"arcs": [
[
452,
453,
454,
455,
456,
457,
458,
459,
460,
461
]
],
"id": 604,
"properties": {
"name": "dma:",
"latitude": 38.8629485,
"tvperc": 85.6,
"dma": 604,
"dma1": "Columbia-Jefferson City, MO",
"cableperc": 33.4,
"adsperc": 52.5,
"longitude": -92.26804
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
462,
463,
-79,
464,
465,
466,
467,
468,
-11,
469,
470,
471
]
],
[
[
472
]
]
],
"id": 522,
"properties": {
"name": "dma:",
"latitude": 32.2969995,
"tvperc": 93.2,
"dma": 522,
"dma1": "Columbus, GA",
"cableperc": 66.6,
"adsperc": 27.2,
"longitude": -84.8353915
}
},
{
"type": "Polygon",
"arcs": [
[
473,
474,
-427,
475,
476,
477,
478,
479,
480,
481,
-346,
482,
-412,
483,
484,
485
]
],
"id": 535,
"properties": {
"name": "dma:",
"latitude": 39.9719715,
"tvperc": 89.4,
"dma": 535,
"dma1": "Columbus, OH",
"cableperc": 67.1,
"adsperc": 22.4,
"longitude": -82.734151
}
},
{
"type": "Polygon",
"arcs": [
[
486,
487,
488,
489,
490,
491,
492,
493,
494,
-193
]
],
"id": 673,
"properties": {
"name": "dma:",
"latitude": 33.9623585,
"tvperc": 90,
"dma": 673,
"dma1": "Columbus-Tupelo-West Point, MS",
"cableperc": 31.6,
"adsperc": 59.3,
"longitude": -88.939003
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
495,
496,
497,
498,
499
],
[
500
]
],
[
[
501
]
],
[
[
502
]
],
[
[
503
]
],
[
[
504
]
],
[
[
505
]
],
[
[
506,
507
]
],
[
[
508
]
],
[
[
509
]
],
[
[
510
]
]
],
"id": 600,
"properties": {
"name": "dma:",
"latitude": 27.6933695,
"tvperc": 90.8,
"dma": 600,
"dma1": "Corpus Christi, TX",
"cableperc": 59.4,
"adsperc": 32,
"longitude": -97.8595055
}
},
{
"type": "Polygon",
"arcs": [
[
511,
512,
513,
514,
-8,
515,
516,
517,
518,
519,
520,
521,
522,
523
]
],
"id": 623,
"properties": {
"name": "dma:",
"latitude": 32.702473,
"tvperc": 83.9,
"dma": 623,
"dma1": "Dallas-Ft. Worth, TX",
"cableperc": 48.5,
"adsperc": 36.2,
"longitude": -97.098903
}
},
{
"type": "Polygon",
"arcs": [
[
-312,
524,
525,
526,
527,
528,
529,
530,
531
]
],
"id": 682,
"properties": {
"name": "dma:",
"latitude": 41.5680725,
"tvperc": 87.7,
"dma": 682,
"dma1": "Davenport, IA-Rock Island-Moline, IL",
"cableperc": 54.1,
"adsperc": 34,
"longitude": -90.4412815
}
},
{
"type": "Polygon",
"arcs": [
[
-410,
532,
533,
534,
535,
536,
-485,
537
]
],
"id": 542,
"properties": {
"name": "dma:",
"latitude": 40.1392235,
"tvperc": 85.4,
"dma": 542,
"dma1": "Dayton, OH",
"cableperc": 60.8,
"adsperc": 24.7,
"longitude": -84.3547855
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
538,
539,
540,
541
]
],
[
[
542,
543,
-308,
544,
545,
-381,
546,
547,
548,
549,
550,
551,
-439,
552,
553,
-39,
554,
555,
556,
557,
558,
559
]
],
[
[
560,
561
]
],
[
[
562,
563,
564,
565
]
],
[
[
566
]
]
],
"id": 751,
"properties": {
"name": "dma:",
"latitude": 40.9981425,
"tvperc": 89.6,
"dma": 751,
"dma1": "Denver, CO",
"cableperc": 48.9,
"adsperc": 41.1,
"longitude": -108.925452
}
},
{
"type": "Polygon",
"arcs": [
[
567,
568,
569,
570,
571,
572,
573,
-314,
574,
575,
576,
577,
578
]
],
"id": 679,
"properties": {
"name": "dma:",
"latitude": 41.8822865,
"tvperc": 83,
"dma": 679,
"dma1": "Des Moines-Ames, IA",
"cableperc": 45.2,
"adsperc": 38.4,
"longitude": -93.6950785
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
579,
580,
581,
582,
583,
584,
585
]
],
[
[
586
]
],
[
[
587
]
],
[
[
588
]
],
[
[
589
]
],
[
[
590
]
],
[
[
591
]
],
[
[
592
]
],
[
[
593
]
],
[
[
594
]
],
[
[
595
]
]
],
"id": 505,
"properties": {
"name": "dma:",
"latitude": 42.7069935,
"tvperc": 89.9,
"dma": 505,
"dma1": "Detroit, MI",
"cableperc": 69.8,
"adsperc": 20.6,
"longitude": -83.2883905
}
},
{
"type": "Polygon",
"arcs": [
[
596,
597,
598,
-471,
599,
-9,
600,
601,
602
]
],
"id": 606,
"properties": {
"name": "dma:",
"latitude": 31.2429535,
"tvperc": 91.2,
"dma": 606,
"dma1": "Dothan, AL",
"cableperc": 54.3,
"adsperc": 37.5,
"longitude": -85.412413
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
603,
604,
605,
606,
607,
608,
609,
610
],
[
611
]
],
[
[
612
]
],
[
[
613
]
],
[
[
614
]
],
[
[
615
]
],
[
[
616
]
]
],
"id": 676,
"properties": {
"name": "dma:",
"latitude": 47.169647,
"tvperc": 81.6,
"dma": 676,
"dma1": "Duluth, MN-Superior, WI",
"cableperc": 37.3,
"adsperc": 44.6,
"longitude": -91.7104225
}
},
{
"type": "Polygon",
"arcs": [
[
617,
-32,
618
]
],
"id": 765,
"properties": {
"name": "dma:",
"latitude": 31.840946,
"tvperc": 72,
"dma": 765,
"dma1": "El Paso, TX",
"cableperc": 41.6,
"adsperc": 31.1,
"longitude": -105.6619505
}
},
{
"type": "Polygon",
"arcs": [
[
619,
-271,
620,
621,
622,
623,
624,
625,
-189,
626
]
],
"id": 565,
"properties": {
"name": "dma:",
"latitude": 42.0595215,
"tvperc": 94.6,
"dma": 565,
"dma1": "Elmira, NY",
"cableperc": 68.5,
"adsperc": 26.6,
"longitude": -77.1441155
}
},
{
"type": "Polygon",
"arcs": [
[
627,
628,
629,
630,
631,
632
]
],
"id": 516,
"properties": {
"name": "dma:",
"latitude": 41.8794375,
"tvperc": 86.9,
"dma": 516,
"dma1": "Erie, PA",
"cableperc": 54.8,
"adsperc": 32.8,
"longitude": -79.717601
}
},
{
"type": "Polygon",
"arcs": [
[
633,
634,
635,
636,
637,
638,
639,
640,
641
]
],
"id": 801,
"properties": {
"name": "dma:",
"latitude": 43.6937855,
"tvperc": 86.2,
"dma": 801,
"dma1": "Eugene, OR",
"cableperc": 51.3,
"adsperc": 35.4,
"longitude": -123.1256445
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
642,
643,
644,
-403
]
],
[
[
645
]
],
[
[
646
]
]
],
"id": 802,
"properties": {
"name": "dma:",
"latitude": 41.001389,
"tvperc": 83.9,
"dma": 802,
"dma1": "Eureka, CA",
"cableperc": 58.6,
"adsperc": 26.4,
"longitude": -123.908896
}
},
{
"type": "Polygon",
"arcs": [
[
647,
648,
649,
650,
651,
-262,
652,
653,
654
]
],
"id": 649,
"properties": {
"name": "dma:",
"latitude": 37.8233245,
"tvperc": 89.9,
"dma": 649,
"dma1": "Evansville, IN",
"cableperc": 49.3,
"adsperc": 40.9,
"longitude": -87.5662395
}
},
{
"type": "Polygon",
"arcs": [
[
655,
656,
657,
658,
659,
660
]
],
"id": 724,
"properties": {
"name": "dma:",
"latitude": 47.659799,
"tvperc": 89.2,
"dma": 724,
"dma1": "Fargo-Valley City, ND",
"cableperc": 54.9,
"adsperc": 34.8,
"longitude": -97.1383975
}
},
{
"type": "Polygon",
"arcs": [
[
661,
-585,
662,
663,
664,
665,
666,
667
]
],
"id": 513,
"properties": {
"name": "dma:",
"latitude": 43.643882,
"tvperc": 90.2,
"dma": 513,
"dma1": "Flint-Saginaw-Bay City, MI",
"cableperc": 59.6,
"adsperc": 31,
"longitude": -83.847331
}
},
{
"type": "Polygon",
"arcs": [
[
668,
669,
670,
671,
672,
673,
674,
675,
676
]
],
"id": 866,
"properties": {
"name": "dma:",
"latitude": 36.846642,
"tvperc": 80.4,
"dma": 866,
"dma1": "Fresno-Visalia, CA",
"cableperc": 34.7,
"adsperc": 46.4,
"longitude": -119.613123
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
677,
678,
679,
680,
681
],
[
682
]
],
[
[
683
]
],
[
[
684
]
],
[
[
685
]
],
[
[
686
]
],
[
[
687
]
],
[
[
688
]
],
[
[
689
]
],
[
[
690
]
],
[
[
691,
692
]
],
[
[
693
]
],
[
[
694
]
],
[
[
695
]
],
[
[
696
]
],
[
[
697
]
],
[
[
698
]
],
[
[
699
]
],
[
[
700
]
],
[
[
701
]
]
],
"id": 571,
"properties": {
"name": "dma:",
"latitude": 26.5720265,
"tvperc": 94.9,
"dma": 571,
"dma1": "Ft. Myers-Naples, FL",
"cableperc": 62.5,
"adsperc": 33.5,
"longitude": -81.6230635
}
},
{
"type": "Polygon",
"arcs": [
[
702,
703,
704,
705,
706,
707,
708,
709,
710,
711
]
],
"id": 670,
"properties": {
"name": "dma:",
"latitude": 35.5031505,
"tvperc": 89.5,
"dma": 670,
"dma1": "Ft. Smith-Fayetteville-Springdale-Rogers, AR",
"cableperc": 51.1,
"adsperc": 38.7,
"longitude": -94.202877
}
},
{
"type": "Polygon",
"arcs": [
[
712,
713,
714,
715,
716,
717,
718,
719
]
],
"id": 509,
"properties": {
"name": "dma:",
"latitude": 41.0334615,
"tvperc": 79,
"dma": 509,
"dma1": "Ft. Wayne, IN",
"cableperc": 45.1,
"adsperc": 34.3,
"longitude": -85.1430895
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
720,
721,
722,
723,
724,
725
]
],
[
[
726
]
],
[
[
727
]
],
[
[
728
]
],
[
[
729
]
],
[
[
730
]
],
[
[
731
]
],
[
[
732,
733
]
],
[
[
734,
-733
]
]
],
"id": 592,
"properties": {
"name": "dma:",
"latitude": 29.4735495,
"tvperc": 89.8,
"dma": 592,
"dma1": "Gainesville, FL",
"cableperc": 56.6,
"adsperc": 33.9,
"longitude": -82.7294775
}
},
{
"type": "Polygon",
"arcs": [
[
735,
736,
737,
738,
739,
740,
-168,
741
]
],
"id": 798,
"properties": {
"name": "dma:",
"latitude": 46.836368,
"tvperc": 93.8,
"dma": 798,
"dma1": "Glendive, MT",
"cableperc": 68.6,
"adsperc": 26,
"longitude": -105.065505
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
742
]
],
[
[
743,
744,
745,
-37,
746
]
]
],
"id": 773,
"properties": {
"name": "dma:",
"latitude": 38.425681,
"tvperc": 84.9,
"dma": 773,
"dma1": "Grand Junction-Montrose, CO",
"cableperc": 52.8,
"adsperc": 32.5,
"longitude": -108.2153545
}
},
{
"type": "Polygon",
"arcs": [
[
747,
748,
749,
750,
751,
752,
753,
754,
755
]
],
"id": 563,
"properties": {
"name": "dma:",
"latitude": 42.7892405,
"tvperc": 86.4,
"dma": 563,
"dma1": "Grand Rapids-Kalamazoo-Battle Creek, MI",
"cableperc": 55.2,
"adsperc": 31.6,
"longitude": -85.624075
}
},
{
"type": "Polygon",
"arcs": [
[
756,
757,
758,
759,
760,
761,
762,
763,
764,
765,
-164,
766
]
],
"id": 755,
"properties": {
"name": "dma:",
"latitude": 47.838823,
"tvperc": 88,
"dma": 755,
"dma1": "Great Falls, MT",
"cableperc": 47.3,
"adsperc": 41.2,
"longitude": -109.9362935
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
767,
768,
769,
770,
771,
772,
773
]
],
[
[
774
]
],
[
[
775
]
],
[
[
776
]
],
[
[
777
]
],
[
[
778
]
]
],
"id": 658,
"properties": {
"name": "dma:",
"latitude": 44.7644785,
"tvperc": 80,
"dma": 658,
"dma1": "Green Bay-Appleton, WI",
"cableperc": 49.7,
"adsperc": 30.6,
"longitude": -88.2017
}
},
{
"type": "Polygon",
"arcs": [
[
779,
780,
781,
782,
783,
784,
785,
-362
]
],
"id": 518,
"properties": {
"name": "dma:",
"latitude": 35.994693,
"tvperc": 91.9,
"dma": 518,
"dma1": "Greensboro-High Point-Winston Salem, NC",
"cableperc": 58.9,
"adsperc": 33.5,
"longitude": -80.4077355
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
786,
787,
788,
789,
790
]
],
[
[
791
]
],
[
[
792
]
],
[
[
793
]
],
[
[
794
]
],
[
[
795
]
],
[
[
796
]
],
[
[
797
]
],
[
[
798
]
],
[
[
799
]
],
[
[
800,
801
]
],
[
[
802
]
],
[
[
803
]
],
[
[
804
]
],
[
[
805
]
],
[
[
806
]
],
[
[
807
]
],
[
[
808
],
[
809
]
],
[
[
810
]
],
[
[
811
]
],
[
[
812
]
],
[
[
813
]
],
[
[
814
]
],
[
[
815
]
],
[
[
816
]
]
],
"id": 545,
"properties": {
"name": "dma:",
"latitude": 35.342169,
"tvperc": 89,
"dma": 545,
"dma1": "Greenville-New Bern-Washington, NC",
"cableperc": 53.7,
"adsperc": 35.7,
"longitude": -76.9754245
}
},
{
"type": "Polygon",
"arcs": [
[
817,
818,
819,
820,
821,
-359,
822,
823,
824,
825,
-82,
826,
-74,
827
]
],
"id": 567,
"properties": {
"name": "dma:",
"latitude": 35.0526635,
"tvperc": 92.8,
"dma": 567,
"dma1": "Greenville-Spartanburg, SC-Asheville, NC-Anderson,SC",
"cableperc": 46,
"adsperc": 47.2,
"longitude": -82.697701
}
},
{
"type": "Polygon",
"arcs": [
[
828,
829,
830,
831,
832,
833,
834,
835,
836,
837,
838,
839,
840,
-490,
841
]
],
"id": 647,
"properties": {
"name": "dma:",
"latitude": 33.585109,
"tvperc": 92.8,
"dma": 647,
"dma1": "Greenwood-Greenville, MS",
"cableperc": 58.9,
"adsperc": 35.1,
"longitude": -90.4836365
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
842,
-500,
843
]
],
[
[
844
]
],
[
[
845
]
],
[
[
846
]
]
],
"id": 636,
"properties": {
"name": "dma:",
"latitude": 26.311933,
"tvperc": 69.7,
"dma": 636,
"dma1": "Harlingen-Weslaco-Brownsville-McAllen, TX",
"cableperc": 41,
"adsperc": 29.3,
"longitude": -98.157698
}
},
{
"type": "Polygon",
"arcs": [
[
847,
848,
849,
850,
851,
852,
853,
854
]
],
"id": 566,
"properties": {
"name": "dma:",
"latitude": 40.2836345,
"tvperc": 92.5,
"dma": 566,
"dma1": "Harrisburg-Lancaster-Lebanon-York, PA",
"cableperc": 68,
"adsperc": 25,
"longitude": -76.882001
}
},
{
"type": "Polygon",
"arcs": [
[
855,
856,
857,
858,
859,
860
]
],
"id": 569,
"properties": {
"name": "dma:",
"latitude": 38.4231645,
"tvperc": 91.8,
"dma": 569,
"dma1": "Harrisonburg, VA",
"cableperc": 58.4,
"adsperc": 33.9,
"longitude": -79.0679395
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
861,
862
],
[
863
]
],
[
[
864
]
]
],
"id": 533,
"properties": {
"name": "dma:",
"latitude": 41.612664,
"tvperc": 98.3,
"dma": 533,
"dma1": "Hartford & New Haven, CT",
"cableperc": 84.1,
"adsperc": 15.1,
"longitude": -72.659358
}
},
{
"type": "Polygon",
"arcs": [
[
865,
866,
867,
868,
-180,
869,
870,
871,
872
]
],
"id": 710,
"properties": {
"name": "dma:",
"latitude": 31.5670435,
"tvperc": 90.7,
"dma": 710,
"dma1": "Hattiesburg-Laurel, MS",
"cableperc": 49.3,
"adsperc": 42.9,
"longitude": -89.2449615
}
},
{
"type": "Polygon",
"arcs": [
[
-299,
873,
874,
875,
876,
-757,
877
]
],
"id": 766,
"properties": {
"name": "dma:",
"latitude": 47.1878,
"tvperc": 82.6,
"dma": 766,
"dma1": "Helena, MT",
"cableperc": 54.8,
"adsperc": 28.3,
"longitude": -112.3319335
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
878,
879,
880,
881,
-100,
882,
883,
884,
885,
886,
-152
]
],
[
[
887
]
],
[
[
888
]
],
[
[
889
]
],
[
[
890
]
],
[
[
891
]
],
[
[
892,
893
]
],
[
[
894
]
],
[
[
895
]
],
[
[
896
]
],
[
[
897
]
],
[
[
898
]
]
],
"id": 618,
"properties": {
"name": "dma:",
"latitude": 29.606092,
"tvperc": 83,
"dma": 618,
"dma1": "Houston, TX",
"cableperc": 56.2,
"adsperc": 27.6,
"longitude": -95.6464085
}
},
{
"type": "Polygon",
"arcs": [
[
899,
900,
901,
902,
903,
-195,
904
]
],
"id": 691,
"properties": {
"name": "dma:",
"latitude": 34.7953925,
"tvperc": 93.1,
"dma": 691,
"dma1": "Huntsville-Decatur (Florence), AL",
"cableperc": 56.8,
"adsperc": 36.6,
"longitude": -86.8583345
}
},
{
"type": "Polygon",
"arcs": [
[
905,
906,
907,
908,
909,
910,
911,
-217,
912,
913,
914,
915,
-295,
916,
917,
-292,
918,
-290,
919,
-177,
920,
-175,
921
]
],
"id": 758,
"properties": {
"name": "dma:",
"latitude": 43.641669,
"tvperc": 79.8,
"dma": 758,
"dma1": "Idaho Falls-Pocatello, ID",
"cableperc": 32.7,
"adsperc": 47.7,
"longitude": -112.6765315
}
},
{
"type": "Polygon",
"arcs": [
[
922,
923,
924,
925,
926,
927,
-384,
928,
929,
930,
-715,
931,
932,
933,
934,
-408
]
],
"id": 527,
"properties": {
"name": "dma:",
"latitude": 39.84288,
"tvperc": 86.4,
"dma": 527,
"dma1": "Indianapolis, IN",
"cableperc": 58.1,
"adsperc": 28.9,
"longitude": -86.1652105
}
},
{
"type": "Polygon",
"arcs": [
[
935,
-143,
936,
937,
938,
939,
940,
941,
942,
943,
944,
-833,
945,
946,
947,
-829,
948,
949,
-872
]
],
"id": 718,
"properties": {
"name": "dma:",
"latitude": 32.1874215,
"tvperc": 91.6,
"dma": 718,
"dma1": "Jackson, MS",
"cableperc": 40.7,
"adsperc": 51.5,
"longitude": -90.485657
}
},
{
"type": "Polygon",
"arcs": [
[
950,
951,
952,
953,
954,
955
]
],
"id": 639,
"properties": {
"name": "dma:",
"latitude": 35.5707925,
"tvperc": 91.6,
"dma": 639,
"dma1": "Jackson, TN",
"cableperc": 59.7,
"adsperc": 32.6,
"longitude": -88.530231
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
-723,
956,
957,
958,
959,
960,
961,
962,
963,
964,
965,
966,
967,
968,
969
]
],
[
[
970,
971
]
],
[
[
972,
-971
]
],
[
[
973
]
],
[
[
974
]
],
[
[
975
]
],
[
[
976,
977
]
],
[
[
978,
979
]
],
[
[
-979,
980
]
],
[
[
981
]
]
],
"id": 561,
"properties": {
"name": "dma:",
"latitude": 30.427575,
"tvperc": 92.1,
"dma": 561,
"dma1": "Jacksonville, FL",
"cableperc": 58.4,
"adsperc": 34.3,
"longitude": -82.006576
}
},
{
"type": "Polygon",
"arcs": [
[
982,
983,
984,
985,
986,
987,
988,
989,
-855,
990
]
],
"id": 574,
"properties": {
"name": "dma:",
"latitude": 40.673069,
"tvperc": 95.9,
"dma": 574,
"dma1": "Johnstown-Altoona, PA",
"cableperc": 59.7,
"adsperc": 36.6,
"longitude": -78.328162
}
},
{
"type": "Polygon",
"arcs": [
[
991,
992,
993,
994,
995,
996,
997,
998,
999
]
],
"id": 734,
"properties": {
"name": "dma:",
"latitude": 36.0989355,
"tvperc": 91.3,
"dma": 734,
"dma1": "Jonesboro, AR",
"cableperc": 60.5,
"adsperc": 31.8,
"longitude": -91.1294975
}
},
{
"type": "Polygon",
"arcs": [
[
1000,
1001,
1002,
1003,
1004,
1005
]
],
"id": 603,
"properties": {
"name": "dma:",
"latitude": 37.2695535,
"tvperc": 81,
"dma": 603,
"dma1": "Joplin, MO-Pittsburg, KS",
"cableperc": 36.1,
"adsperc": 45.5,
"longitude": -95.0098365
}
},
{
"type": "Polygon",
"arcs": [
[
1006,
1007,
-577,
1008,
1009,
-458,
1010,
1011,
1012,
1013
]
],
"id": 616,
"properties": {
"name": "dma:",
"latitude": 39.3042305,
"tvperc": 87.2,
"dma": 616,
"dma1": "Kansas City, MO",
"cableperc": 62.7,
"adsperc": 24.7,
"longitude": -94.208994
}
},
{
"type": "Polygon",
"arcs": [
[
1014,
1015,
1016,
1017,
1018,
1019,
1020,
1021,
1022,
1023,
1024,
1025,
1026,
1027,
-818,
1028,
-376,
1029
]
],
"id": 557,
"properties": {
"name": "dma:",
"latitude": 36.112655,
"tvperc": 92.3,
"dma": 557,
"dma1": "Knoxville, TN",
"cableperc": 57.9,
"adsperc": 34.9,
"longitude": -84.0422025
}
},
{
"type": "Polygon",
"arcs": [
[
1030,
1031,
1032,
1033,
1034,
1035,
1036,
1037,
1038,
1039,
-317,
1040,
1041
]
],
"id": 702,
"properties": {
"name": "dma:",
"latitude": 44.313217,
"tvperc": 86.5,
"dma": 702,
"dma1": "La Crosse-Eau Claire, WI",
"cableperc": 54,
"adsperc": 32.9,
"longitude": -91.197266
}
},
{
"type": "Polygon",
"arcs": [
[
-927,
1042,
1043
]
],
"id": 582,
"properties": {
"name": "dma:",
"latitude": 40.3451955,
"tvperc": 93.1,
"dma": 582,
"dma1": "Lafayette, IN",
"cableperc": 66.4,
"adsperc": 27.3,
"longitude": -87.113428
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
1044,
-54,
1045,
-149,
1046,
1047
]
],
[
[
1048
]
]
],
"id": 642,
"properties": {
"name": "dma:",
"latitude": 30.2379905,
"tvperc": 92.5,
"dma": 642,
"dma1": "Lafayette, LA",
"cableperc": 58.3,
"adsperc": 34.7,
"longitude": -92.1119525
}
},
{
"type": "Polygon",
"arcs": [
[
1049,
1050,
-154,
1051,
-1048
]
],
"id": 643,
"properties": {
"name": "dma:",
"latitude": 30.2390885,
"tvperc": 92.5,
"dma": 643,
"dma1": "Lake Charles, LA",
"cableperc": 64.7,
"adsperc": 29.3,
"longitude": -93.2619725
}
},
{
"type": "Polygon",
"arcs": [
[
1052,
1053,
-664,
1054,
-583,
1055,
1056,
1057
]
],
"id": 551,
"properties": {
"name": "dma:",
"latitude": 42.4074535,
"tvperc": 86.9,
"dma": 551,
"dma1": "Lansing, MI",
"cableperc": 53.1,
"adsperc": 34.2,
"longitude": -84.602594
}
},
{
"type": "Polygon",
"arcs": [
[
1058,
1059,
1060,
-496,
-843
]
],
"id": 749,
"properties": {
"name": "dma:",
"latitude": 27.388155,
"tvperc": 80.7,
"dma": 749,
"dma1": "Laredo, TX",
"cableperc": 53.2,
"adsperc": 28.6,
"longitude": -99.5051385
}
},
{
"type": "Polygon",
"arcs": [
[
1061,
1062,
1063,
1064,
1065,
1066,
1067,
1068,
1069,
1070
]
],
"id": 839,
"properties": {
"name": "dma:",
"latitude": 37.082759,
"tvperc": 91.9,
"dma": 839,
"dma1": "Las Vegas, NV",
"cableperc": 63.1,
"adsperc": 29.8,
"longitude": -116.121556
}
},
{
"type": "Polygon",
"arcs": [
[
1071,
1072,
1073,
1074,
-405,
1075,
1076,
-341,
1077,
1078,
-356,
1079,
1080,
1081,
1082,
1083,
1084,
1085,
1086,
1087,
1088,
1089,
1090,
1091,
1092,
-265
]
],
"id": 541,
"properties": {
"name": "dma:",
"latitude": 37.584915,
"tvperc": 91.6,
"dma": 541,
"dma1": "Lexington, KY",
"cableperc": 49,
"adsperc": 42.8,
"longitude": -83.9929735
}
},
{
"type": "Polygon",
"arcs": [
[
1093,
1094,
1095
]
],
"id": 558,
"properties": {
"name": "dma:",
"latitude": 40.782607,
"tvperc": 92.4,
"dma": 558,
"dma1": "Lima, OH",
"cableperc": 73.8,
"adsperc": 18.8,
"longitude": -84.138823
}
},
{
"type": "Polygon",
"arcs": [
[
1096,
1097,
1098,
1099,
-551,
1100,
1101,
1102,
1103,
1104,
1105,
1106,
1107
]
],
"id": 722,
"properties": {
"name": "dma:",
"latitude": 41.282784,
"tvperc": 89.6,
"dma": 722,
"dma1": "Lincoln & Hastings-Kearney, NE",
"cableperc": 49.8,
"adsperc": 40.2,
"longitude": -99.257628
}
},
{
"type": "Polygon",
"arcs": [
[
1108,
1109,
-703,
1110,
1111,
1112,
1113,
1114,
1115,
1116,
-838,
1117,
-836,
1118,
1119,
1120,
1121,
1122
]
],
"id": 693,
"properties": {
"name": "dma:",
"latitude": 34.647081,
"tvperc": 91.6,
"dma": 693,
"dma1": "Little Rock-Pine Bluff, AR",
"cableperc": 43.3,
"adsperc": 48.7,
"longitude": -92.670434
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
1123,
-104,
1124,
-102,
1125,
-675,
1126,
1127,
1128,
1129,
1130,
1131,
1132,
1133,
1134
]
],
[
[
1135
]
],
[
[
1136
]
],
[
[
1137
]
],
[
[
1138
]
],
[
[
1139
]
]
],
"id": 803,
"properties": {
"name": "dma:",
"latitude": 35.132844,
"tvperc": 87.1,
"dma": 803,
"dma1": "Los Angeles, CA",
"cableperc": 52.6,
"adsperc": 35.3,
"longitude": -116.858513
}
},
{
"type": "Polygon",
"arcs": [
[
-652,
1140,
-923,
-407,
1141,
-1074,
1142,
1143,
-263
]
],
"id": 529,
"properties": {
"name": "dma:",
"latitude": 38.1524665,
"tvperc": 89.8,
"dma": 529,
"dma1": "Louisville, KY",
"cableperc": 62.1,
"adsperc": 28.2,
"longitude": -85.7750445
}
},
{
"type": "Polygon",
"arcs": [
[
-5,
1144,
1145,
1146,
-59,
1147
]
],
"id": 651,
"properties": {
"name": "dma:",
"latitude": 33.4181475,
"tvperc": 83.3,
"dma": 651,
"dma1": "Lubbock, TX",
"cableperc": 44.6,
"adsperc": 39.4,
"longitude": -101.791018
}
},
{
"type": "Polygon",
"arcs": [
[
1148,
1149,
1150,
-77,
1151,
-92,
1152,
1153,
1154,
-13,
1155,
-468,
1156
],
[
-473
]
],
"id": 503,
"properties": {
"name": "dma:",
"latitude": 32.6218675,
"tvperc": 93.4,
"dma": 503,
"dma1": "Macon, GA",
"cableperc": 49.6,
"adsperc": 44.3,
"longitude": -83.3190475
}
},
{
"type": "Polygon",
"arcs": [
[
-319,
1157,
-1039,
1158,
1159,
1160,
1161,
-774,
1162,
1163,
1164,
-525
]
],
"id": 669,
"properties": {
"name": "dma:",
"latitude": 43.370746,
"tvperc": 81.6,
"dma": 669,
"dma1": "Madison, WI",
"cableperc": 49.6,
"adsperc": 32.4,
"longitude": -89.9627745
}
},
{
"type": "Polygon",
"arcs": [
[
1165,
1166,
1167,
1168,
1169
]
],
"id": 737,
"properties": {
"name": "dma:",
"latitude": 43.876563,
"tvperc": 88.9,
"dma": 737,
"dma1": "Mankato, MN",
"cableperc": 66.8,
"adsperc": 22.6,
"longitude": -94.4376415
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
1170
]
],
[
[
1171,
-770,
1172,
1173,
1174,
-607,
1175,
1176
]
],
[
[
1177
]
]
],
"id": 553,
"properties": {
"name": "dma:",
"latitude": 46.8707415,
"tvperc": 95,
"dma": 553,
"dma1": "Marquette, MI",
"cableperc": 66.5,
"adsperc": 28.9,
"longitude": -87.8765355
}
},
{
"type": "Polygon",
"arcs": [
[
1178,
-642,
1179,
-640,
1180,
-160,
1181,
1182,
1183,
1184,
1185,
-395,
1186,
-644
]
],
"id": 813,
"properties": {
"name": "dma:",
"latitude": 42.3097025,
"tvperc": 87.6,
"dma": 813,
"dma1": "Medford-Klamath Falls, OR",
"cableperc": 39.9,
"adsperc": 48.1,
"longitude": -121.9634415
}
},
{
"type": "Polygon",
"arcs": [
[
-840,
1187,
-1116,
1188,
-996,
1189,
1190,
1191,
1192,
1193,
1194,
1195,
-952,
1196,
-492,
1197
]
],
"id": 640,
"properties": {
"name": "dma:",
"latitude": 35.1946395,
"tvperc": 90.8,
"dma": 640,
"dma1": "Memphis, TN",
"cableperc": 50,
"adsperc": 41.3,
"longitude": -89.757956
}
},
{
"type": "Polygon",
"arcs": [
[
-866,
1198,
-487,
-192,
1199,
1200,
1201,
1202,
1203,
1204
]
],
"id": 711,
"properties": {
"name": "dma:",
"latitude": 32.3468715,
"tvperc": 87.1,
"dma": 711,
"dma1": "Meridian, MS",
"cableperc": 34.6,
"adsperc": 53.7,
"longitude": -88.5817905
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
1205,
1206,
1207
],
[
1208
]
],
[
[
1209,
1210,
1211
]
],
[
[
1212,
1213
]
],
[
[
1214
]
],
[
[
1215
]
],
[
[
1216
]
],
[
[
1217
]
],
[
[
1218,
1219
]
],
[
[
1220,
1221
]
],
[
[
1222
]
],
[
[
-1222,
1223,
1224
]
],
[
[
1225
]
],
[
[
1226
]
],
[
[
1227
]
],
[
[
1228,
1229
]
],
[
[
1230,
-1230
]
],
[
[
1231
]
],
[
[
1232
]
],
[
[
1233
]
],
[
[
1234
]
],
[
[
1235
]
],
[
[
1236
]
],
[
[
1237
]
],
[
[
1238
]
],
[
[
1239
]
],
[
[
1240
]
],
[
[
1241
]
],
[
[
1242
]
],
[
[
1243
]
],
[
[
1244
]
],
[
[
1245
]
],
[
[
1246
]
],
[
[
1247
]
],
[
[
1248
]
],
[
[
1249
]
],
[
[
1250
]
],
[
[
1251
]
],
[
[
1252
]
],
[
[
1253
]
],
[
[
1254
]
],
[
[
1255
]
],
[
[
1256
]
],
[
[
1257
]
],
[
[
1258
]
],
[
[
1259
]
],
[
[
1260
]
],
[
[
1261
]
],
[
[
1262
]
],
[
[
1263
]
],
[
[
1264
]
],
[
[
1265
]
],
[
[
1266
]
],
[
[
1267
]
],
[
[
1268
]
],
[
[
1269
]
],
[
[
1270
]
],
[
[
1271
]
],
[
[
1272
]
],
[
[
1273
]
],
[
[
1274
]
],
[
[
1275
]
],
[
[
1276
]
],
[
[
1277
]
],
[
[
1278
]
],
[
[
1279
]
],
[
[
1280
]
],
[
[
1281
]
],
[
[
1282
]
],
[
[
1283
]
],
[
[
1284
]
]
],
"id": 528,
"properties": {
"name": "dma:",
"latitude": 25.439022,
"tvperc": 93.9,
"dma": 528,
"dma1": "Miami-Fort Lauderdale, FL",
"cableperc": 69.9,
"adsperc": 26.5,
"longitude": -80.940626
}
},
{
"type": "Polygon",
"arcs": [
[
-772,
1285,
1286,
-1164,
1287
]
],
"id": 617,
"properties": {
"name": "dma:",
"latitude": 43.1921015,
"tvperc": 77.7,
"dma": 617,
"dma1": "Milwaukee, WI",
"cableperc": 61,
"adsperc": 17.6,
"longitude": -88.358241
}
},
{
"type": "Polygon",
"arcs": [
[
1288,
1289,
-659,
1290,
-604,
1291,
-1034,
1292,
-1032,
1293,
1294,
1295,
-1166,
1296,
1297
]
],
"id": 613,
"properties": {
"name": "dma:",
"latitude": 46.0197555,
"tvperc": 81.9,
"dma": 613,
"dma1": "Minneapolis-St. Paul, MN",
"cableperc": 54.9,
"adsperc": 27.5,
"longitude": -94.199023
}
},
{
"type": "Polygon",
"arcs": [
[
1298,
1299,
1300,
1301,
1302,
1303,
1304,
1305,
1306,
1307,
-166,
1308,
-765,
1309,
-656,
1310
]
],
"id": 687,
"properties": {
"name": "dma:",
"latitude": 46.8731805,
"tvperc": 90.2,
"dma": 687,
"dma1": "Minot-Bismarck-Dickinson(Williston), ND",
"cableperc": 60.4,
"adsperc": 30.2,
"longitude": -102.71806
}
},
{
"type": "Polygon",
"arcs": [
[
1311,
1312,
1313,
1314,
1315,
1316,
-763,
1317,
-761,
1318,
1319,
-875,
1320,
-297,
1321,
1322,
1323,
1324,
1325
]
],
"id": 762,
"properties": {
"name": "dma:",
"latitude": 47.229117,
"tvperc": 83.3,
"dma": 762,
"dma1": "Missoula, MT",
"cableperc": 37.1,
"adsperc": 46.5,
"longitude": -114.464452
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
-182,
1326,
-868,
1327,
-1204,
1328,
1329,
1330,
1331,
1332
]
],
[
[
1333
]
],
[
[
1334
]
],
[
[
1335
]
],
[
[
1336
]
],
[
[
1337
]
]
],
"id": 686,
"properties": {
"name": "dma:",
"latitude": 31.1061175,
"tvperc": 91,
"dma": 686,
"dma1": "Mobile, AL-Pensacola (Ft. Walton Beach), FL",
"cableperc": 51.7,
"adsperc": 39.8,
"longitude": -87.6151775
}
},
{
"type": "Polygon",
"arcs": [
[
-49,
1338,
1339,
1340,
1341,
1342,
-1120,
1343,
1344,
1345,
1346,
-942,
1347,
-940,
1348,
-938,
1349,
-141,
1350,
-51,
1351
]
],
"id": 628,
"properties": {
"name": "dma:",
"latitude": 32.1842885,
"tvperc": 92.4,
"dma": 628,
"dma1": "Monroe, LA-El Dorado, AR",
"cableperc": 46,
"adsperc": 47,
"longitude": -91.9321725
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
1352,
1353,
1354,
1355,
1356,
-669,
1357,
1358
]
]
],
"id": 828,
"properties": {
"name": "dma:",
"latitude": 36.537526,
"tvperc": 90.1,
"dma": 828,
"dma1": "Monterey-Salinas, CA",
"cableperc": 52.8,
"adsperc": 38.5,
"longitude": -121.265832
}
},
{
"type": "Polygon",
"arcs": [
[
-1330,
1359,
-1202,
1360,
-199,
1361,
1362,
1363,
-598,
1364
]
],
"id": 698,
"properties": {
"name": "dma:",
"latitude": 32.0506805,
"tvperc": 93.9,
"dma": 698,
"dma1": "Montgomery-Selma, AL",
"cableperc": 64,
"adsperc": 30.4,
"longitude": -86.7675715
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
1365,
1366,
1367,
1368,
-335,
1369,
1370,
-448,
1371,
-364,
1372,
1373
]
]
],
"id": 570,
"properties": {
"name": "dma:",
"latitude": 34.2987775,
"tvperc": 91.3,
"dma": 570,
"dma1": "Myrtle Beach-Florence, SC",
"cableperc": 66.6,
"adsperc": 25.2,
"longitude": -79.419767
}
},
{
"type": "Polygon",
"arcs": [
[
-654,
1374,
-260,
1375,
-258,
1376,
1377,
-1016,
1378,
1379,
-374,
1380,
-902,
1381,
-954,
1382,
1383,
1384
]
],
"id": 659,
"properties": {
"name": "dma:",
"latitude": 36.07259,
"tvperc": 92.5,
"dma": 659,
"dma1": "Nashville, TN",
"cableperc": 56.7,
"adsperc": 36.5,
"longitude": -86.631128
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
-147,
1385,
-145,
1386,
1387
]
],
[
[
1388
]
],
[
[
1389
]
],
[
[
1390
]
],
[
[
1391
]
],
[
[
1392
]
],
[
[
1393
]
],
[
[
1394
]
],
[
[
1395
]
],
[
[
1396
]
],
[
[
1397
]
],
[
[
1398
]
],
[
[
1399
]
],
[
[
1400
]
],
[
[
1401
]
],
[
[
1402
]
],
[
[
1403
]
],
[
[
1404
]
],
[
[
1405
]
],
[
[
1406
]
],
[
[
1407,
1408
]
],
[
[
1409
]
],
[
[
1410
]
],
[
[
1411
]
],
[
[
1412
]
],
[
[
1413
]
],
[
[
1414
]
],
[
[
1415
]
],
[
[
1416
]
],
[
[
1417
]
],
[
[
1418
]
],
[
[
1419
]
],
[
[
1420
]
],
[
[
1421
]
],
[
[
1422
]
],
[
[
1423,
1424
]
],
[
[
1425
]
],
[
[
1426,
1427
]
],
[
[
1428
]
],
[
[
1429
]
],
[
[
1430,
1431,
1432
]
],
[
[
1433,
1434
]
],
[
[
1435
]
],
[
[
1436,
1437
]
],
[
[
1438
]
],
[
[
1439
]
],
[
[
1440
]
],
[
[
1441
]
],
[
[
1442
]
],
[
[
1443
]
],
[
[
1444,
1445
]
],
[
[
1446,
1447
]
],
[
[
1448
]
],
[
[
1449,
1450
]
],
[
[
1451
]
],
[
[
1452
]
],
[
[
1453
]
],
[
[
1454
]
],
[
[
1455
]
],
[
[
1456,
1457
]
],
[
[
1458
]
],
[
[
1459
]
],
[
[
1460
]
],
[
[
1461
]
],
[
[
1462
]
],
[
[
1463
]
],
[
[
1464
]
],
[
[
1465
]
],
[
[
1466
]
],
[
[
1467
]
],
[
[
1468
],
[
1469
]
],
[
[
1470
]
],
[
[
1471
]
],
[
[
-1433,
1472
]
],
[
[
1473
]
],
[
[
1474
]
],
[
[
1475
]
],
[
[
1476
]
],
[
[
1477
]
],
[
[
1478,
1479
]
],
[
[
1480
]
],
[
[
1481,
1482,
1483
]
],
[
[
1484,
1485,
1486
]
],
[
[
1487
]
],
[
[
1488
]
],
[
[
1489,
1490
]
],
[
[
1491
]
],
[
[
1492
]
],
[
[
1493
]
],
[
[
1494
]
],
[
[
1495
]
],
[
[
1496
]
],
[
[
1497
]
],
[
[
1498
]
],
[
[
1499
]
],
[
[
1500
]
],
[
[
1501
]
],
[
[
1502
]
],
[
[
1503
]
],
[
[
1504
]
],
[
[
1505
]
],
[
[
1506
]
],
[
[
1507
]
],
[
[
1508,
1509
]
],
[
[
1510
]
],
[
[
1511
]
],
[
[
1512
]
],
[
[
1513
]
],
[
[
1514
]
],
[
[
1515
]
],
[
[
1516
]
],
[
[
1517
]
],
[
[
1518
]
]
],
"id": 622,
"properties": {
"name": "dma:",
"latitude": 29.9723295,
"tvperc": 92.2,
"dma": 622,
"dma1": "New Orleans, LA",
"cableperc": 60.2,
"adsperc": 33.5,
"longitude": -90.0824885
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
1519,
1520,
1521,
1522,
1523,
1524,
1525,
1526,
1527,
-22,
1528,
-862,
1529
],
[
1530
]
],
[
[
1531
]
],
[
[
1532
]
],
[
[
1533
]
],
[
[
1534
]
],
[
[
1535
]
],
[
[
1536
]
],
[
[
1537
]
],
[
[
1538
]
],
[
[
1539
]
],
[
[
1540
]
],
[
[
1541
]
],
[
[
1542
]
],
[
[
1543
]
],
[
[
1544
]
],
[
[
1545
]
],
[
[
1546
]
],
[
[
1547
]
],
[
[
1548
]
],
[
[
1549
]
],
[
[
1550
]
],
[
[
1551
]
],
[
[
1552
]
],
[
[
1553
]
],
[
[
1554
]
],
[
[
1555
]
],
[
[
1556
]
],
[
[
1557
]
],
[
[
1558
]
],
[
[
1559
]
]
],
"id": 501,
"properties": {
"name": "dma:",
"latitude": 40.839717,
"tvperc": 96.8,
"dma": 501,
"dma1": "New York, NY",
"cableperc": 84.2,
"adsperc": 13.8,
"longitude": -73.6072985
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
1560
]
],
[
[
1561
]
],
[
[
1562
]
],
[
[
1563
]
],
[
[
1564
]
],
[
[
1565
]
],
[
[
1566
]
],
[
[
1567
]
],
[
[
1568
]
],
[
[
1569
]
],
[
[
1570,
1571,
1572,
1573
]
],
[
[
1574
]
],
[
[
1575
]
],
[
[
1576
]
],
[
[
1577
]
],
[
[
1578
]
]
],
"id": 544,
"properties": {
"name": "dma:",
"latitude": 36.608336,
"tvperc": 92.1,
"dma": 544,
"dma1": "Norfolk-Portsmouth-Newport News, VA",
"cableperc": 69.5,
"adsperc": 23.1,
"longitude": -76.3720915
}
},
{
"type": "Polygon",
"arcs": [
[
-550,
1579,
1580,
1581,
-1101
]
],
"id": 740,
"properties": {
"name": "dma:",
"latitude": 41.394995,
"tvperc": 91,
"dma": 740,
"dma1": "North Platte, NE",
"cableperc": 61.9,
"adsperc": 30.4,
"longitude": -100.836179
}
},
{
"type": "Polygon",
"arcs": [
[
1582,
-619,
-46,
1583,
-1146,
1584,
1585,
1586,
1587,
1588,
1589,
1590
]
],
"id": 633,
"properties": {
"name": "dma:",
"latitude": 30.781491,
"tvperc": 94.2,
"dma": 633,
"dma1": "Odessa-Midland, TX",
"cableperc": 62.8,
"adsperc": 32.4,
"longitude": -103.077288
}
},
{
"type": "Polygon",
"arcs": [
[
1591,
1592,
1593,
1594,
1595,
1596,
1597,
1598,
1599,
1600,
1601,
1602,
1603
]
],
"id": 650,
"properties": {
"name": "dma:",
"latitude": 35.667342,
"tvperc": 84,
"dma": 650,
"dma1": "Oklahoma City, OK",
"cableperc": 53.4,
"adsperc": 30.8,
"longitude": -97.9919705
}
},
{
"type": "Polygon",
"arcs": [
[
1604,
1605,
1606,
1607,
1608,
1609,
1610,
-1107,
1611
]
],
"id": 652,
"properties": {
"name": "dma:",
"latitude": 41.1056295,
"tvperc": 89.1,
"dma": 652,
"dma1": "Omaha, NE",
"cableperc": 67.8,
"adsperc": 21.7,
"longitude": -96.150686
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
1612,
1613,
1614,
1615,
1616,
-725,
1617,
-969,
1618,
-967,
1619
]
],
[
[
1620
]
],
[
[
1621
]
],
[
[
1622
]
],
[
[
1623
]
],
[
[
1624
]
],
[
[
1625
]
],
[
[
1626
]
]
],
"id": 534,
"properties": {
"name": "dma:",
"latitude": 28.6562235,
"tvperc": 94.2,
"dma": 534,
"dma1": "Orlando-Daytona Beach-Melbourne, FL",
"cableperc": 69.1,
"adsperc": 26.2,
"longitude": -81.4963015
}
},
{
"type": "Polygon",
"arcs": [
[
-576,
1627,
1628,
1629,
1630,
-460,
1631,
-1009
]
],
"id": 631,
"properties": {
"name": "dma:",
"latitude": 40.384083,
"tvperc": 87,
"dma": 631,
"dma1": "Ottumwa, IA-Kirksville, MO",
"cableperc": 48.6,
"adsperc": 38.8,
"longitude": -92.545142
}
},
{
"type": "Polygon",
"arcs": [
[
1632,
-1195,
1633,
-1193,
1634,
-1191,
1635,
-994,
1636,
1637,
1638,
1639,
1640,
1641,
1642,
-648,
1643,
-1384
]
],
"id": 632,
"properties": {
"name": "dma:",
"latitude": 37.2352865,
"tvperc": 91.2,
"dma": 632,
"dma1": "Paducah, KY-Cape Girardeau, MO-Harrisburg, IL",
"cableperc": 36.6,
"adsperc": 55.2,
"longitude": -89.497325
}
},
{
"type": "Polygon",
"arcs": [
[
1644,
1645,
-1133,
1646
]
],
"id": 804,
"properties": {
"name": "dma:",
"latitude": 33.72988,
"tvperc": 96.3,
"dma": 804,
"dma1": "Palm Springs, CA",
"cableperc": 75,
"adsperc": 22.6,
"longitude": -116.2354255
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
1647,
-1332,
1648,
1649,
1650,
1651
]
],
[
[
1652
]
],
[
[
1653
]
],
[
[
1654
]
]
],
"id": 656,
"properties": {
"name": "dma:",
"latitude": 30.293713,
"tvperc": 90,
"dma": 656,
"dma1": "Panama City, FL",
"cableperc": 63,
"adsperc": 27.8,
"longitude": -85.3696325
}
},
{
"type": "Polygon",
"arcs": [
[
1655,
-348,
1656,
-481,
1657,
1658,
1659,
1660
]
],
"id": 597,
"properties": {
"name": "dma:",
"latitude": 39.336078,
"tvperc": 94.4,
"dma": 597,
"dma1": "Parkersburg, WV",
"cableperc": 72,
"adsperc": 23.4,
"longitude": -81.4306435
}
},
{
"type": "Polygon",
"arcs": [
[
-528,
1661,
-387,
1662,
-322,
1663,
1664,
1665
]
],
"id": 675,
"properties": {
"name": "dma:",
"latitude": 40.6826125,
"tvperc": 89.4,
"dma": 675,
"dma1": "Peoria-Bloomington, IL",
"cableperc": 59.5,
"adsperc": 30.4,
"longitude": -89.343186
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
1666,
1667,
1668,
-851,
1669,
1670,
1671,
-1524,
1672,
1673,
-1521,
1674
]
],
[
[
1675,
1676
]
],
[
[
1677
]
],
[
[
1678
]
],
[
[
1679
]
],
[
[
1680
]
],
[
[
1681
],
[
1682
]
],
[
[
1683
]
],
[
[
1684
]
],
[
[
1685
]
],
[
[
1686
]
],
[
[
1687
]
],
[
[
1688
]
],
[
[
1689
]
],
[
[
1690
]
],
[
[
1691
]
],
[
[
1692
]
]
],
"id": 504,
"properties": {
"name": "dma:",
"latitude": 39.8995855,
"tvperc": 94.7,
"dma": 504,
"dma1": "Philadelphia, PA",
"cableperc": 79.1,
"adsperc": 17,
"longitude": -75.3874975
}
},
{
"type": "Polygon",
"arcs": [
[
1693,
1694,
1695,
-1130,
1696,
-1069,
1697,
-1067,
1698,
1699,
1700,
-34,
1701,
1702
]
],
"id": 753,
"properties": {
"name": "dma:",
"latitude": 34.7133875,
"tvperc": 86.5,
"dma": 753,
"dma1": "Phoenix, AZ",
"cableperc": 48.2,
"adsperc": 38.8,
"longitude": -111.899851
}
},
{
"type": "Polygon",
"arcs": [
[
1703,
1704,
1705,
1706,
1707,
-986,
1708,
1709,
1710,
1711,
1712
]
],
"id": 508,
"properties": {
"name": "dma:",
"latitude": 40.409733,
"tvperc": 94.5,
"dma": 508,
"dma1": "Pittsburgh, PA",
"cableperc": 71.4,
"adsperc": 23.5,
"longitude": -79.6590145
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
1713,
1714,
1715,
-209,
1716,
-1183,
1717,
-158,
1718,
-637,
1719,
-635,
1720
],
[
1721
]
],
[
[
1722,
1723,
-213,
1724,
-211,
1725,
1726,
1727
]
]
],
"id": 820,
"properties": {
"name": "dma:",
"latitude": 44.191309,
"tvperc": 87.6,
"dma": 820,
"dma1": "Portland, OR",
"cableperc": 56.8,
"adsperc": 31,
"longitude": -120.4498885
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
-229,
1728,
1729,
1730,
1731,
-124,
1732,
1733,
-121,
1734
]
],
[
[
1735
]
],
[
[
1736
]
],
[
[
1737
]
],
[
[
1738
]
],
[
[
1739
]
],
[
[
1740
]
],
[
[
1741
]
],
[
[
1742
]
],
[
[
1743
]
],
[
[
1744
]
],
[
[
1745
]
],
[
[
1746
]
],
[
[
1747
]
],
[
[
1748
]
],
[
[
1749
]
],
[
[
1750
]
],
[
[
1751
]
],
[
[
1752
]
],
[
[
1753
]
],
[
[
1754
]
],
[
[
1755
]
],
[
[
1756
]
],
[
[
1757
]
],
[
[
1758
]
],
[
[
1759
]
],
[
[
1760
]
],
[
[
1761
]
],
[
[
1762
]
],
[
[
1763
]
],
[
[
1764
]
],
[
[
1765
]
],
[
[
1766
]
],
[
[
1767
]
]
],
"id": 500,
"properties": {
"name": "dma:",
"latitude": 44.366668,
"tvperc": 91.3,
"dma": 500,
"dma1": "Portland-Auburn, ME",
"cableperc": 67.9,
"adsperc": 23.7,
"longitude": -70.1830055
}
},
{
"type": "Polygon",
"arcs": [
[
1768,
-126
]
],
"id": 552,
"properties": {
"name": "dma:",
"latitude": 46.519615,
"tvperc": 91,
"dma": 552,
"dma1": "Presque Isle, ME",
"cableperc": 56.2,
"adsperc": 35.9,
"longitude": -68.9025615
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
1769,
-232
]
],
[
[
1770
]
],
[
[
1771
]
],
[
[
1772
],
[
1773
],
[
1774
]
],
[
[
1775
]
],
[
[
1776
]
],
[
[
1777
]
],
[
[
1778
]
],
[
[
1779
]
]
],
"id": 521,
"properties": {
"name": "dma:",
"latitude": 41.620932,
"tvperc": 93.9,
"dma": 521,
"dma1": "Providence, RI-New Bedford, MA",
"cableperc": 84.8,
"adsperc": 9.5,
"longitude": -71.351281
}
},
{
"type": "Polygon",
"arcs": [
[
1780,
-462,
1781,
-1630,
1782,
-530,
1783,
-1665,
1784,
1785,
-330,
1786
]
],
"id": 717,
"properties": {
"name": "dma:",
"latitude": 40.066065,
"tvperc": 86.9,
"dma": 717,
"dma1": "Quincy, IL-Hannibal, MO-Keokuk, IA",
"cableperc": 41,
"adsperc": 46.4,
"longitude": -91.1726125
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
-1374,
1787,
-785,
1788,
1789,
1790,
1791,
1792,
1793,
1794,
-787,
1795,
1796,
1797,
-1366
]
]
],
"id": 560,
"properties": {
"name": "dma:",
"latitude": 35.72255,
"tvperc": 89.9,
"dma": 560,
"dma1": "Raleigh-Durham (Fayetteville), NC",
"cableperc": 55.6,
"adsperc": 35.1,
"longitude": -78.4212995
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
1798,
1799,
-541,
1800,
1801,
1802,
-740,
1803,
-1305,
1804,
1805,
-1581,
1806,
-548,
1807,
-379,
-562,
1808
]
],
[
[
-172,
1809,
1810,
-305,
1811
]
]
],
"id": 764,
"properties": {
"name": "dma:",
"latitude": 43.7649485,
"tvperc": 89.7,
"dma": 764,
"dma1": "Rapid City, SD",
"cableperc": 61.9,
"adsperc": 28.3,
"longitude": -104.4792695
}
},
{
"type": "Polygon",
"arcs": [
[
1812,
1813,
1814,
1815,
1816,
1817,
1818,
1819,
1820,
-397,
1821,
-1185,
1822,
1823,
1824,
-563,
1825,
-1062,
1826,
1827
]
],
"id": 811,
"properties": {
"name": "dma:",
"latitude": 39.4852355,
"tvperc": 89.3,
"dma": 811,
"dma1": "Reno, NV",
"cableperc": 46.8,
"adsperc": 43,
"longitude": -118.959289
}
},
{
"type": "Polygon",
"arcs": [
[
-1573,
1828,
-1793,
1829,
1830,
1831,
1832,
1833,
1834,
1835,
1836,
1837,
1838,
1839,
1840
]
],
"id": 556,
"properties": {
"name": "dma:",
"latitude": 37.4686305,
"tvperc": 91.5,
"dma": 556,
"dma1": "Richmond-Petersburg, VA",
"cableperc": 56.1,
"adsperc": 35.6,
"longitude": -77.5349825
}
},
{
"type": "Polygon",
"arcs": [
[
-201,
1841,
-207,
1842,
-421,
1843,
1844,
1845,
1846,
-371,
1847,
-1831,
1848,
1849,
1850,
1851,
1852,
1853,
-782,
1854,
1855
]
],
"id": 573,
"properties": {
"name": "dma:",
"latitude": 37.6408795,
"tvperc": 90.1,
"dma": 573,
"dma1": "Roanoke-Lynchburg, VA",
"cableperc": 40.6,
"adsperc": 49.8,
"longitude": -79.9113685
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
1856,
1857,
-269,
1858,
1859,
1860
]
],
[
[
1861
]
],
[
[
1862
]
],
[
[
1863
]
]
],
"id": 538,
"properties": {
"name": "dma:",
"latitude": 42.9137715,
"tvperc": 87.6,
"dma": 538,
"dma1": "Rochester, MN-Mason City, IA-Austin, MN",
"cableperc": 69.5,
"adsperc": 18.6,
"longitude": -77.387152
}
},
{
"type": "Polygon",
"arcs": [
[
-574,
1864,
1865,
1866,
1867,
-1042,
1868,
-315
]
],
"id": 611,
"properties": {
"name": "dma:",
"latitude": 43.552183,
"tvperc": 89,
"dma": 611,
"dma1": "Rochester, NY",
"cableperc": 57,
"adsperc": 32.4,
"longitude": -92.850969
}
},
{
"type": "Polygon",
"arcs": [
[
1869,
-389,
1870,
-526
]
],
"id": 610,
"properties": {
"name": "dma:",
"latitude": 42.0453555,
"tvperc": 89.6,
"dma": 610,
"dma1": "Rockford, IL",
"cableperc": 59.7,
"adsperc": 30.4,
"longitude": -89.316059
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
1871,
1872,
1873,
1874,
-399,
1875,
1876,
1877,
-1818,
1878,
-1816,
1879,
-1814,
1880,
1881,
-673,
1882,
-671,
1883,
1884,
1885
]
],
[
[
1886
]
],
[
[
1887
]
],
[
[
1888
]
],
[
[
1889
]
]
],
"id": 862,
"properties": {
"name": "dma:",
"latitude": 38.7885185,
"tvperc": 90.9,
"dma": 862,
"dma1": "Sacramento-Stockton-Modesto, CA",
"cableperc": 52.2,
"adsperc": 39.6,
"longitude": -120.9905465
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
1890,
1891,
1892
]
],
[
[
1893
]
],
[
[
1894
]
],
[
[
1895
]
],
[
[
1896
]
],
[
[
1897
]
]
],
"id": 576,
"properties": {
"name": "dma:",
"latitude": 38.4437985,
"tvperc": 93.5,
"dma": 576,
"dma1": "Salisbury, MD",
"cableperc": 74.5,
"adsperc": 19.5,
"longitude": -75.548586
}
},
{
"type": "Polygon",
"arcs": [
[
1898,
1899,
-1064,
-565,
1900,
-1824,
1901,
1902,
-908,
1903,
-906,
1904,
-302,
1905,
-310,
1906,
1907,
1908
]
],
"id": 770,
"properties": {
"name": "dma:",
"latitude": 40.23193,
"tvperc": 82.5,
"dma": 770,
"dma1": "Salt Lake City, UT",
"cableperc": 42.7,
"adsperc": 40,
"longitude": -112.26407
}
},
{
"type": "Polygon",
"arcs": [
[
-1590,
1909,
1910,
1911,
-2,
1912,
1913,
-96,
1914,
1915
]
],
"id": 661,
"properties": {
"name": "dma:",
"latitude": 31.186904,
"tvperc": 95.4,
"dma": 661,
"dma1": "San Angelo, TX",
"cableperc": 57.3,
"adsperc": 39,
"longitude": -100.740601
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
-1060,
1916,
-1591,
-1916,
1917,
-94,
1918,
1919,
1920,
-498,
1921
]
]
],
"id": 641,
"properties": {
"name": "dma:",
"latitude": 29.2651455,
"tvperc": 87.8,
"dma": 641,
"dma1": "San Antonio, TX",
"cableperc": 58.5,
"adsperc": 29.4,
"longitude": -99.1607395
}
},
{
"type": "Polygon",
"arcs": [
[
1922,
1923
],
[
1924
],
[
1925
]
],
"id": 825,
"properties": {
"name": "dma:",
"latitude": 33.0195915,
"tvperc": 93.8,
"dma": 825,
"dma1": "San Diego, CA",
"cableperc": 80.6,
"adsperc": 13.7,
"longitude": -116.8402815
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
1926,
-1874,
1927,
-1872,
1928,
-401
]
],
[
[
1929,
1930,
-1885,
1931,
1932
],
[
1933
]
],
[
[
1934
]
],
[
[
1935
]
],
[
[
1936
]
]
],
"id": 807,
"properties": {
"name": "dma:",
"latitude": 38.4477155,
"tvperc": 92.6,
"dma": 807,
"dma1": "San Francisco-Oakland-San Jose, CA",
"cableperc": 65,
"adsperc": 28.3,
"longitude": -122.6193155
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
1937,
1938,
1939,
1940,
1941,
1942,
1943,
1944
]
],
[
[
1945
]
],
[
[
1946
]
],
[
[
1947
]
]
],
"id": 855,
"properties": {
"name": "dma:",
"latitude": 34.844663,
"tvperc": 92.4,
"dma": 855,
"dma1": "Santa Barbara-Santa Maria-San Luis Obispo, CA",
"cableperc": 58.4,
"adsperc": 34.8,
"longitude": -120.4100205
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
-90,
1948,
-331,
1949,
1950,
-962,
1951,
-15,
1952,
-1154,
1953
]
],
[
[
1954
]
],
[
[
1955
]
],
[
[
1956
]
],
[
[
1957
]
],
[
[
1958
]
],
[
[
1959
]
],
[
[
1960
]
],
[
[
1961
]
],
[
[
1962
]
],
[
[
1963
]
],
[
[
1964
]
],
[
[
1965
]
],
[
[
1966
]
],
[
[
1967
]
]
],
"id": 507,
"properties": {
"name": "dma:",
"latitude": 32.168191,
"tvperc": 95.2,
"dma": 507,
"dma1": "Savannah, GA",
"cableperc": 58.7,
"adsperc": 37.3,
"longitude": -81.6330685
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
1968,
1969,
1970,
1971,
-1714,
1972
]
],
[
[
1973
]
],
[
[
1974
]
],
[
[
1975
]
],
[
[
1976
]
],
[
[
1977
]
],
[
[
1978
]
],
[
[
1979
]
],
[
[
1980
]
],
[
[
1981
]
],
[
[
1982
]
],
[
[
1983
]
],
[
[
1984
]
],
[
[
1985
]
],
[
[
1986
]
],
[
[
1987
]
],
[
[
1988
]
],
[
[
1989
]
],
[
[
1990
]
],
[
[
1991
]
],
[
[
1992
]
],
[
[
1993
]
],
[
[
1994
]
],
[
[
1995
]
],
[
[
1996
]
],
[
[
1997
]
],
[
[
1998
]
],
[
[
1999
]
],
[
[
2000
]
],
[
[
2001
]
],
[
[
2002
]
],
[
[
2003
]
],
[
[
2004
]
],
[
[
2005
]
],
[
[
2006
]
],
[
[
2007
]
],
[
[
2008
]
],
[
[
2009
]
]
],
"id": 819,
"properties": {
"name": "dma:",
"latitude": 47.621239,
"tvperc": 93.8,
"dma": 819,
"dma1": "Seattle-Tacoma, WA",
"cableperc": 72.8,
"adsperc": 21.3,
"longitude": -121.842349
}
},
{
"type": "Polygon",
"arcs": [
[
2010,
2011,
-1599,
2012,
-1597,
2013,
2014,
2015,
-706,
2016,
2017
]
],
"id": 657,
"properties": {
"name": "dma:",
"latitude": 34.181478,
"tvperc": 86.9,
"dma": 657,
"dma1": "Sherman, TX-Ada, OK",
"cableperc": 39.9,
"adsperc": 47.8,
"longitude": -96.2499835
}
},
{
"type": "Polygon",
"arcs": [
[
2018,
2019,
-2018,
2020,
2021,
-1109,
2022,
-1122,
2023,
-1342,
2024,
-1340,
2025,
-47,
2026,
2027
]
],
"id": 612,
"properties": {
"name": "dma:",
"latitude": 32.820852,
"tvperc": 91.7,
"dma": 612,
"dma1": "Shreveport, LA",
"cableperc": 37.3,
"adsperc": 55.2,
"longitude": -94.0138375
}
},
{
"type": "Polygon",
"arcs": [
[
-571,
2028,
-1605,
2029,
-1105,
2030,
2031,
2032,
2033,
-1169,
2034
]
],
"id": 624,
"properties": {
"name": "dma:",
"latitude": 42.621459,
"tvperc": 86.5,
"dma": 624,
"dma1": "Sioux City, IA",
"cableperc": 54.1,
"adsperc": 32.8,
"longitude": -96.376337
}
},
{
"type": "Polygon",
"arcs": [
[
-1806,
2035,
-1303,
2036,
2037,
2038,
-1299,
2039,
2040,
-1289,
2041,
-2032,
2042,
-1103,
2043
]
],
"id": 725,
"properties": {
"name": "dma:",
"latitude": 44.0133785,
"tvperc": 89.5,
"dma": 725,
"dma1": "Sioux Falls (Mitchell), SD",
"cableperc": 63.3,
"adsperc": 26.5,
"longitude": -98.735199
}
},
{
"type": "Polygon",
"arcs": [
[
2044,
2045,
-748,
2046,
-717,
2047,
-930,
2048,
2049
]
],
"id": 588,
"properties": {
"name": "dma:",
"latitude": 41.576527,
"tvperc": 79.9,
"dma": 588,
"dma1": "South Bend-Elkhart, IN",
"cableperc": 40.8,
"adsperc": 39.6,
"longitude": -86.062314
}
},
{
"type": "Polygon",
"arcs": [
[
2050,
2051,
-215,
2052,
-1723,
2053,
2054,
2055,
2056,
2057,
-1969,
2058,
-1316,
2059,
-1314,
2060,
-1312,
2061,
2062,
-1324,
2063
]
],
"id": 881,
"properties": {
"name": "dma:",
"latitude": 47.0398515,
"tvperc": 85.2,
"dma": 881,
"dma1": "Spokane, WA",
"cableperc": 40.5,
"adsperc": 45,
"longitude": -117.603633
}
},
{
"type": "Polygon",
"arcs": [
[
-992,
2064,
-1112,
2065,
-711,
2066,
2067,
2068,
2069,
2070,
2071,
-455,
2072,
2073,
2074,
-1640,
2075,
-1638,
2076
]
],
"id": 619,
"properties": {
"name": "dma:",
"latitude": 37.1293385,
"tvperc": 81.9,
"dma": 619,
"dma1": "Springfield, MO",
"cableperc": 30.8,
"adsperc": 51.7,
"longitude": -92.5469955
}
},
{
"type": "Polygon",
"arcs": [
[
-234,
2077,
-20,
2078
]
],
"id": 543,
"properties": {
"name": "dma:",
"latitude": 42.3856895,
"tvperc": 94.8,
"dma": 543,
"dma1": "Springfield-Holyoke, MA",
"cableperc": 81.5,
"adsperc": 14,
"longitude": -72.6017095
}
},
{
"type": "Polygon",
"arcs": [
[
2079,
-1609,
2080,
-1007,
2081,
2082
]
],
"id": 638,
"properties": {
"name": "dma:",
"latitude": 40.055305,
"tvperc": 86.6,
"dma": 638,
"dma1": "St. Joseph, MO",
"cableperc": 57.8,
"adsperc": 29.4,
"longitude": -94.8792055
}
},
{
"type": "Polygon",
"arcs": [
[
-1781,
2083,
-328,
2084,
2085,
-1642,
2086,
-2074,
2087,
-453
]
],
"id": 609,
"properties": {
"name": "dma:",
"latitude": 38.434253,
"tvperc": 89.9,
"dma": 609,
"dma1": "St. Louis, MO",
"cableperc": 50.5,
"adsperc": 39.7,
"longitude": -90.169254
}
},
{
"type": "Polygon",
"arcs": [
[
2088,
2089,
2090,
2091,
2092,
-183,
2093,
-625,
2094,
-1860
]
],
"id": 555,
"properties": {
"name": "dma:",
"latitude": 42.9849975,
"tvperc": 91.1,
"dma": 555,
"dma1": "Syracuse, NY",
"cableperc": 74.9,
"adsperc": 16.7,
"longitude": -76.1014455
}
},
{
"type": "Polygon",
"arcs": [
[
-1651,
2095,
-602,
2096,
2097,
2098,
2099,
2100,
-959,
2101,
2102,
2103
]
],
"id": 530,
"properties": {
"name": "dma:",
"latitude": 30.462299,
"tvperc": 93,
"dma": 530,
"dma1": "Tallahassee, FL-Thomasville, GA",
"cableperc": 55.1,
"adsperc": 38.6,
"longitude": -83.675708
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
2104,
-678,
2105,
2106,
2107,
2108,
2109,
-1615
]
],
[
[
2110
]
],
[
[
2111
]
],
[
[
2112
]
],
[
[
2113
]
],
[
[
2114
]
],
[
[
2115
]
],
[
[
2116
]
],
[
[
2117
]
],
[
[
2118
]
],
[
[
2119
]
],
[
[
-2121
]
],
[
[
2121
]
],
[
[
2122
]
],
[
[
2123
]
],
[
[
2124,
2125,
2126
]
],
[
[
-2126,
2127,
2128
]
],
[
[
2129,
2130
]
],
[
[
2131
]
],
[
[
2132
]
],
[
[
2133
]
],
[
[
2134
]
],
[
[
2135
]
],
[
[
2136
]
],
[
[
2137
]
],
[
[
2138
]
],
[
[
2139
]
],
[
[
2140
]
],
[
[
2141
]
],
[
[
2142
]
],
[
[
2143
]
],
[
[
2144
]
],
[
[
2145
]
],
[
[
2146
]
],
[
[
2147
]
],
[
[
2148
]
],
[
[
2149
]
],
[
[
2150
]
],
[
[
2151
]
],
[
[
2152
]
],
[
[
2153,
2154
]
],
[
[
2155,
-2155,
2156
]
],
[
[
2157
]
],
[
[
2158
]
],
[
[
2159
]
]
],
"id": 539,
"properties": {
"name": "dma:",
"latitude": 27.9989465,
"tvperc": 92.8,
"dma": 539,
"dma1": "Tampa-St. Petersburg (Sarasota), FL",
"cableperc": 78.9,
"adsperc": 14.7,
"longitude": -81.8973955
}
},
{
"type": "Polygon",
"arcs": [
[
2160,
-326,
2161,
2162,
-925,
2163,
-650,
2164
]
],
"id": 581,
"properties": {
"name": "dma:",
"latitude": 39.2814045,
"tvperc": 88.6,
"dma": 581,
"dma1": "Terre Haute, IN",
"cableperc": 38.8,
"adsperc": 50.6,
"longitude": -87.6904085
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
2165,
-719,
2166,
-1057,
2167,
-581,
2168,
2169,
-429,
2170,
-474,
2171
]
],
[
[
2172
]
],
[
[
2173
]
],
[
[
2174
]
],
[
[
2175
]
],
[
[
2176
]
]
],
"id": 547,
"properties": {
"name": "dma:",
"latitude": 41.384993,
"tvperc": 88.4,
"dma": 547,
"dma1": "Toledo, OH",
"cableperc": 63.6,
"adsperc": 25.1,
"longitude": -83.7585085
}
},
{
"type": "Polygon",
"arcs": [
[
2177,
2178,
-1097,
2179,
-2082,
-1014,
2180,
2181
]
],
"id": 605,
"properties": {
"name": "dma:",
"latitude": 39.0201515,
"tvperc": 88.8,
"dma": 605,
"dma1": "Topeka, KS",
"cableperc": 58,
"adsperc": 31.3,
"longitude": -96.5557205
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
2182,
-1177
]
],
[
[
2183
]
],
[
[
2184
]
],
[
[
2185
]
],
[
[
2186
]
],
[
[
2187
]
],
[
[
2188
]
],
[
[
2189
]
],
[
[
2190
]
],
[
[
-58,
2191,
-667,
2192,
-750,
2193
]
],
[
[
2194
]
],
[
[
2195
]
],
[
[
2196
]
],
[
[
2197
]
]
],
"id": 540,
"properties": {
"name": "dma:",
"latitude": 45.119199,
"tvperc": 86.9,
"dma": 540,
"dma1": "Traverse City-Cadillac, MI",
"cableperc": 45.5,
"adsperc": 41.7,
"longitude": -84.9520115
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
-1856,
2198,
-780,
-361,
2199,
-821,
2200,
2201,
-1027,
2202,
-1025,
2203,
-1023,
2204,
2205,
2206,
-203,
2207
]
],
[
[
2208,
2209
]
]
],
"id": 531,
"properties": {
"name": "dma:",
"latitude": 36.732483,
"tvperc": 93.6,
"dma": 531,
"dma1": "Tri-Cities, TN-VA",
"cableperc": 56.5,
"adsperc": 37.5,
"longitude": -82.468517
}
},
{
"type": "Polygon",
"arcs": [
[
2210,
2211,
-1703
]
],
"id": 789,
"properties": {
"name": "dma:",
"latitude": 31.923023,
"tvperc": 87.1,
"dma": 789,
"dma1": "Tucson (Sierra Vista), AZ",
"cableperc": 48.3,
"adsperc": 39.3,
"longitude": -111.1907555
}
},
{
"type": "Polygon",
"arcs": [
[
2212,
2213,
2214,
2215,
-1595,
2216,
-1593,
2217,
2218,
2219,
-1001,
2220,
-708,
2221
]
],
"id": 671,
"properties": {
"name": "dma:",
"latitude": 35.9900205,
"tvperc": 87.7,
"dma": 671,
"dma1": "Tulsa, OK",
"cableperc": 50.1,
"adsperc": 37.6,
"longitude": -95.7685615
}
},
{
"type": "Polygon",
"arcs": [
[
2222,
2223,
2224,
2225,
-910,
2226
]
],
"id": 760,
"properties": {
"name": "dma:",
"latitude": 42.994495,
"tvperc": 80.9,
"dma": 760,
"dma1": "Twin Falls, ID",
"cableperc": 34.4,
"adsperc": 47.2,
"longitude": -114.043651
}
},
{
"type": "Polygon",
"arcs": [
[
-886,
2227,
2228,
2229,
2230,
2231,
2232,
-2019,
2233,
2234
]
],
"id": 709,
"properties": {
"name": "dma:",
"latitude": 32.1070105,
"tvperc": 91.3,
"dma": 709,
"dma1": "Tyler-Longview(Lufkin & Nacogdoches), TX",
"cableperc": 38,
"adsperc": 53.7,
"longitude": -94.8806935
}
},
{
"type": "Polygon",
"arcs": [
[
2235,
-2092,
2236,
2237,
2238,
-26,
2239
]
],
"id": 526,
"properties": {
"name": "dma:",
"latitude": 43.205527,
"tvperc": 92.5,
"dma": 526,
"dma1": "Utica, NY",
"cableperc": 75.7,
"adsperc": 17.4,
"longitude": -75.026249
}
},
{
"type": "Polygon",
"arcs": [
[
2240,
2241,
2242,
-894
]
],
"id": 626,
"properties": {
"name": "dma:",
"latitude": 28.805652,
"tvperc": 90.7,
"dma": 626,
"dma1": "Victoria, TX",
"cableperc": 60.6,
"adsperc": 30.9,
"longitude": -96.973793
}
},
{
"type": "Polygon",
"arcs": [
[
-2229,
2243,
-884,
2244,
-98,
2245,
2246,
-514,
2247
]
],
"id": 625,
"properties": {
"name": "dma:",
"latitude": 31.0795205,
"tvperc": 91.3,
"dma": 625,
"dma1": "Waco-Temple-Bryan, TX",
"cableperc": 52.9,
"adsperc": 38.8,
"longitude": -97.3521605
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
-1838,
2248,
-1836,
2249,
2250,
2251,
2252,
2253,
-1711,
2254,
-983,
2255,
-853,
2256,
-111,
2257,
2258
]
],
[
[
2259
]
],
[
[
2260
]
]
],
"id": 511,
"properties": {
"name": "dma:",
"latitude": 39.127683,
"tvperc": 94.1,
"dma": 511,
"dma1": "Washington, DC (Hagerstown, MD)",
"cableperc": 69.7,
"adsperc": 25.1,
"longitude": -77.904362
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
-282,
2261,
-2238,
2262,
-2090,
2263
],
[
2264
],
[
2265
]
],
[
[
2266
]
],
[
[
2267
]
],
[
[
2268
]
],
[
[
2269
]
],
[
[
2270
]
],
[
[
2271
]
],
[
[
2272
]
],
[
[
2273
]
]
],
"id": 549,
"properties": {
"name": "dma:",
"latitude": 44.217164,
"tvperc": 93,
"dma": 549,
"dma1": "Watertown, NY",
"cableperc": 69.8,
"adsperc": 23.8,
"longitude": -75.4894475
}
},
{
"type": "Polygon",
"arcs": [
[
-1162,
2274,
-1160,
2275,
-1037,
2276,
-609,
2277,
-1174,
2278,
-768
]
],
"id": 705,
"properties": {
"name": "dma:",
"latitude": 44.9711405,
"tvperc": 84.1,
"dma": 705,
"dma1": "Wausau-Rhinelander, WI",
"cableperc": 46,
"adsperc": 38.5,
"longitude": -89.6752625
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
2279
]
],
[
[
2280,
-1614,
2281,
2282,
2283
]
],
[
[
2284
]
],
[
[
2285
]
],
[
[
2286
]
],
[
[
2287
]
],
[
[
2288
]
]
],
"id": 548,
"properties": {
"name": "dma:",
"latitude": 27.096694,
"tvperc": 96.8,
"dma": 548,
"dma1": "West Palm Beach-Ft. Pierce, FL",
"cableperc": 71.6,
"adsperc": 26.8,
"longitude": -80.6271745
}
},
{
"type": "Polygon",
"arcs": [
[
2289,
-425,
2290,
2291,
2292,
-1704,
2293,
-417,
2294,
-1660,
2295,
2296,
-479,
2297
]
],
"id": 554,
"properties": {
"name": "dma:",
"latitude": 39.96655,
"tvperc": 93.2,
"dma": 554,
"dma1": "Wheeling, WV-Steubenville, OH",
"cableperc": 69.8,
"adsperc": 24.6,
"longitude": -81.0435735
}
},
{
"type": "Polygon",
"arcs": [
[
-66,
2298,
2299,
2300,
-517,
2301,
-6,
2302
]
],
"id": 627,
"properties": {
"name": "dma:",
"latitude": 33.9059285,
"tvperc": 90.7,
"dma": 627,
"dma1": "Wichita Falls, TX-Lawton, OK",
"cableperc": 42.5,
"adsperc": 48.8,
"longitude": -99.039775
}
},
{
"type": "Polygon",
"arcs": [
[
-2219,
2303,
-63,
2304,
-1099,
2305,
-2178,
2306,
2307
]
],
"id": 678,
"properties": {
"name": "dma:",
"latitude": 38.672948,
"tvperc": 88.4,
"dma": 678,
"dma1": "Wichita-Hutchinson, KS Plus",
"cableperc": 60.7,
"adsperc": 28.1,
"longitude": -99.005353
}
},
{
"type": "Polygon",
"arcs": [
[
2308,
2309,
2310,
-1526,
2311,
-1671,
2312,
-849,
2313,
-989
]
],
"id": 577,
"properties": {
"name": "dma:",
"latitude": 41.2488125,
"tvperc": 94.4,
"dma": 577,
"dma1": "Wilkes Barre-Scranton, PA",
"cableperc": 61.8,
"adsperc": 33.2,
"longitude": -76.530153
}
},
{
"type": "MultiPolygon",
"arcs": [
[
[
-1368,
2314,
-1797,
2315,
-790,
2316
]
],
[
[
2317
]
],
[
[
2318
]
],
[
[
2319
]
],
[
[
2320
]
],
[
[
2321
]
],
[
[
2322
]
],
[
[
2323
]
],
[
[
2324
]
],
[
[
2325
]
],
[
[
2326
]
],
[
[
2327
]
],
[
[
2328
]
],
[
[
2329
]
],
[
[
2330
]
],
[
[
2331
]
],
[
[
2332
]
],
[
[
2333,
2334
]
],
[
[
2335,
2336
]
],
[
[
2337
]
]
],
"id": 550,
"properties": {
"name": "dma:",
"latitude": 34.3480385,
"tvperc": 92.1,
"dma": 550,
"dma1": "Wilmington, NC",
"cableperc": 62.4,
"adsperc": 30.2,
"longitude": -78.294559
}
},
{
"type": "Polygon",
"arcs": [
[
-1716,
2338,
-1971,
2339,
2340,
2341,
-2055,
2342,
-1727,
2343
]
],
"id": 810,
"properties": {
"name": "dma:",
"latitude": 46.29578,
"tvperc": 85.4,
"dma": 810,
"dma1": "Yakima-Pasco-Richland-Kennewick, WA",
"cableperc": 37.6,
"adsperc": 48.3,
"longitude": -119.748852
}
},
{
"type": "Polygon",
"arcs": [
[
2344,
-1706,
2345,
-2292,
2346,
-432,
2347
]
],
"id": 536,
"properties": {
"name": "dma:",
"latitude": 41.0505515,
"tvperc": 89,
"dma": 536,
"dma1": "Youngstown, OH",
"cableperc": 64,
"adsperc": 25.4,
"longitude": -80.543523
}
},
{
"type": "Polygon",
"arcs": [
[
-2212,
2348,
-1924,
2349,
2350,
2351,
-1694
]
],
"id": 771,
"properties": {
"name": "dma:",
"latitude": 32.751631,
"tvperc": 81.3,
"dma": 771,
"dma1": "Yuma, AZ-El Centro, CA",
"cableperc": 38.3,
"adsperc": 43.8,
"longitude": -114.7199745
}
},
{
"type": "Polygon",
"arcs": [
[
2352,
-477,
2353
]
],
"id": 596,
"properties": {
"name": "dma:",
"latitude": 39.961236,
"tvperc": 94.3,
"dma": 596,
"dma1": "Zanesville, OH",
"cableperc": 70.3,
"adsperc": 24.1,
"longitude": -81.9657085
}
}
]
}
},
"arcs": [
[
[
4510,
2881
],
[
-59,
-92
],
[
-39,
4
],
[
-14,
-29
],
[
-54,
23
],
[
-13,
44
]
],
[
[
4331,
2831
],
[
-92,
2
],
[
0,
201
]
],
[
[
4239,
3034
],
[
-164,
2
]
],
[
[
4075,
3036
],
[
2,
353
]
],
[
[
4077,
3389
],
[
113,
0
],
[
0,
175
]
],
[
[
4190,
3564
],
[
181,
0
],
[
0,
-178
]
],
[
[
4371,
3386
],
[
155,
-1
]
],
[
[
4526,
3385
],
[
0,
-176
],
[
18,
-1
],
[
0,
-86
],
[
-78,
-89
],
[
44,
-152
]
],
[
[
6938,
2773
],
[
-26,
1
]
],
[
[
6912,
2774
],
[
-7,
67
],
[
49,
8
]
],
[
[
6954,
2849
],
[
-9,
120
],
[
27,
19
],
[
18,
-38
],
[
72,
16
]
],
[
[
7062,
2966
],
[
-7,
48
]
],
[
[
7055,
3014
],
[
61,
-1
],
[
0,
-71
],
[
74,
0
],
[
31,
-31
]
],
[
[
7221,
2911
],
[
29,
16
]
],
[
[
7250,
2927
],
[
0,
-58
],
[
36,
0
]
],
[
[
7286,
2869
],
[
5,
-46
],
[
-5,
-114
]
],
[
[
7286,
2709
],
[
-12,
2
],
[
4,
-38
]
],
[
[
7278,
2673
],
[
-65,
0
],
[
-20,
-15
],
[
-6,
-49
],
[
-232,
21
],
[
1,
72
]
],
[
[
6956,
2702
],
[
-19,
1
],
[
1,
70
]
],
[
[
8948,
7325
],
[
12,
-41
],
[
-10,
-105
],
[
-10,
1
],
[
12,
-28
],
[
-9,
-109
]
],
[
[
8943,
7043
],
[
-81,
4
],
[
-1,
-29
]
],
[
[
8861,
7018
],
[
-70,
40
],
[
-12,
40
],
[
-13,
-33
]
],
[
[
8766,
7065
],
[
-80,
43
]
],
[
[
8686,
7108
],
[
19,
59
]
],
[
[
8705,
7167
],
[
-49,
68
]
],
[
[
8656,
7235
],
[
14,
44
],
[
-3,
81
],
[
-20,
14
],
[
9,
170
],
[
-27,
22
],
[
16,
59
],
[
-14,
235
]
],
[
[
8631,
7860
],
[
99,
20
]
],
[
[
8730,
7880
],
[
5,
-61
],
[
-14,
-17
],
[
21,
-47
],
[
29,
-5
],
[
-2,
-21
],
[
117,
25
],
[
-9,
-89
],
[
22,
17
],
[
10,
-30
],
[
-1,
-96
]
],
[
[
8908,
7556
],
[
75,
-6
],
[
-8,
-76
]
],
[
[
8975,
7474
],
[
-22,
3
],
[
11,
-153
]
],
[
[
8964,
7324
],
[
-16,
1
]
],
[
[
3583,
3001
],
[
-407,
1
],
[
7,
423
],
[
-95,
-110
],
[
-71,
0
],
[
0,
-401
]
],
[
[
3017,
2914
],
[
-158,
0
],
[
0,
-181
],
[
-145,
-1
],
[
0,
1425
]
],
[
[
2714,
4157
],
[
-59,
-89
],
[
-80,
5
],
[
4,
402
],
[
-30,
1
],
[
0,
537
]
],
[
[
2549,
5013
],
[
166,
1
]
],
[
[
2715,
5014
],
[
0,
195
]
],
[
[
2715,
5209
],
[
22,
59
]
],
[
[
2737,
5268
],
[
202,
4
],
[
46,
-1
]
],
[
[
2985,
5271
],
[
0,
-257
],
[
305,
-2
],
[
-9,
20
]
],
[
[
3281,
5032
],
[
4,
123
],
[
78,
124
]
],
[
[
3363,
5279
],
[
20,
-17
]
],
[
[
3383,
5262
],
[
9,
-83
],
[
-4,
-167
]
],
[
[
3388,
5012
],
[
198,
0
]
],
[
[
3586,
5012
],
[
0,
-330
],
[
37,
-1
],
[
0,
-35
],
[
75,
0
],
[
-3,
-277
],
[
-45,
-3
],
[
0,
-60
],
[
-38,
9
],
[
-46,
-49
],
[
-1,
-216
],
[
32,
0
],
[
0,
-210
],
[
18,
-1
],
[
0,
-105
],
[
22,
0
],
[
-1,
-66
],
[
37,
0
],
[
-1,
-35
],
[
80,
0
]
],
[
[
3752,
3633
],
[
-2,
-405
],
[
-21,
11
]
],
[
[
3729,
3239
],
[
-13,
-48
],
[
-32,
-21
],
[
-17,
42
],
[
-47,
2
],
[
16,
-2
],
[
0,
-211
],
[
-53,
0
]
],
[
[
5424,
2745
],
[
76,
-7
]
],
[
[
5500,
2738
],
[
40,
71
],
[
-44,
75
],
[
61,
0
]
],
[
[
5557,
2884
],
[
0,
36
],
[
44,
-1
],
[
-3,
-71
]
],
[
[
5598,
2848
],
[
38,
-59
],
[
14,
-60
],
[
14,
0
],
[
2,
-40
]
],
[
[
5666,
2689
],
[
14,
29
]
],
[
[
5680,
2718
],
[
40,
-44
],
[
-24,
-136
]
],
[
[
5696,
2538
],
[
-73,
0
]
],
[
[
5623,
2538
],
[
-7,
47
],
[
-19,
15
]
],
[
[
5597,
2600
],
[
-23,
-44
],
[
-180,
-10
],
[
4,
164
],
[
17,
0
],
[
9,
35
]
],
[
[
7069,
8315
],
[
87,
1
],
[
21,
-72
],
[
-22,
21
],
[
-14,
-29
],
[
26,
-49
],
[
8,
-68
],
[
-9,
-81
]
],
[
[
7166,
8038
],
[
-98,
-2
]
],
[
[
7068,
8036
],
[
1,
279
]
],
[
[
4190,
3933
],
[
-437,
-1
]
],
[
[
3753,
3932
],
[
-1,
-299
]
],
[
[
3586,
5012
],
[
340,
-1
]
],
[
[
3926,
5011
],
[
1,
160
]
],
[
[
3927,
5171
],
[
83,
-1
],
[
1,
-158
]
],
[
[
4011,
5012
],
[
268,
3
]
],
[
[
4279,
5015
],
[
1,
-1118
],
[
-8,
2
],
[
-1,
-159
]
],
[
[
4271,
3740
],
[
-81,
0
]
],
[
[
4190,
3740
],
[
0,
193
]
],
[
[
6762,
3447
],
[
2,
156
]
],
[
[
6764,
3603
],
[
-24,
-10
],
[
-18,
3
]
],
[
[
6722,
3596
],
[
43,
69
],
[
9,
79
],
[
-9,
12
],
[
41,
36
]
],
[
[
6806,
3792
],
[
-22,
251
]
],
[
[
6784,
4043
],
[
106,
19
],
[
45,
-21
],
[
6,
110
],
[
43,
-5
],
[
32,
-97
],
[
16,
50
],
[
-14,
91
]
],
[
[
7018,
4190
],
[
73,
84
],
[
19,
-4
]
],
[
[
7110,
4270
],
[
22,
-63
],
[
72,
1
],
[
-35,
-73
],
[
-27,
-135
],
[
12,
-14
],
[
6,
-90
],
[
42,
21
]
],
[
[
7202,
3917
],
[
22,
-90
],
[
36,
-32
],
[
-36,
-75
]
],
[
[
7224,
3720
],
[
0,
-119
],
[
-50,
-122
],
[
-94,
-22
]
],
[
[
7080,
3457
],
[
-4,
26
],
[
-35,
2
],
[
0,
-102
],
[
-14,
-7
],
[
-14,
-97
]
],
[
[
7013,
3279
],
[
-51,
78
],
[
-118,
-5
]
],
[
[
6844,
3352
],
[
-9,
95
],
[
-62,
0
]
],
[
[
6773,
3447
],
[
-11,
0
]
],
[
[
7224,
3720
],
[
24,
62
],
[
49,
6
]
],
[
[
7297,
3788
],
[
-5,
24
],
[
19,
27
],
[
27,
-7
],
[
4,
-37
],
[
10,
19
],
[
41,
-23
]
],
[
[
7393,
3791
],
[
23,
83
],
[
25,
7
]
],
[
[
7441,
3881
],
[
45,
-44
]
],
[
[
7486,
3837
],
[
-17,
-76
],
[
6,
-22
],
[
60,
-72
]
],
[
[
7535,
3667
],
[
-32,
-66
]
],
[
[
7503,
3601
],
[
100,
-126
],
[
-17,
-46
]
],
[
[
7586,
3429
],
[
-7,
16
]
],
[
[
7579,
3445
],
[
-50,
-61
],
[
-30,
-83
],
[
-25,
121
]
],
[
[
7474,
3422
],
[
-39,
-55
],
[
-13,
-105
],
[
-53,
-51
],
[
-15,
-82
],
[
-21,
-10
]
],
[
[
7333,
3119
],
[
-6,
63
],
[
-44,
26
]
],
[
[
7283,
3208
],
[
31,
54
],
[
5,
46
],
[
-15,
24
],
[
-5,
80
],
[
-32,
62
],
[
-15,
101
]
],
[
[
7252,
3575
],
[
-33,
18
],
[
11,
77
],
[
-6,
50
]
],
[
[
4774,
2046
],
[
-30,
63
],
[
-52,
-60
],
[
-43,
89
],
[
-23,
-42
],
[
-5,
39
],
[
-47,
76
],
[
-20,
-40
],
[
-30,
81
],
[
0,
145
]
],
[
[
4524,
2397
],
[
-155,
0
]
],
[
[
4369,
2397
],
[
0,
178
]
],
[
[
4369,
2575
],
[
180,
-8
]
],
[
[
4549,
2567
],
[
1,
44
],
[
91,
2
],
[
15,
-50
],
[
96,
-71
],
[
20,
-112
],
[
33,
40
]
],
[
[
4805,
2420
],
[
38,
-95
],
[
18,
-9
],
[
-26,
-55
]
],
[
[
4835,
2261
],
[
25,
-6
],
[
13,
-74
],
[
-52,
-133
]
],
[
[
4821,
2048
],
[
-47,
-2
]
],
[
[
1145,
4509
],
[
35,
-58
],
[
-19,
-35
]
],
[
[
1161,
4416
],
[
-6,
-108
],
[
-81,
-108
]
],
[
[
1074,
4200
],
[
-38,
36
],
[
4,
-17
],
[
-22,
-25
],
[
14,
-31
],
[
-29,
20
],
[
9,
-59
]
],
[
[
1012,
4124
],
[
-102,
45
],
[
0,
71
]
],
[
[
910,
4240
],
[
-15,
4
],
[
1,
37
],
[
-44,
34
],
[
-12,
71
],
[
-21,
0
],
[
-15,
70
],
[
-19,
0
],
[
0,
70
]
],
[
[
785,
4526
],
[
369,
1
],
[
-9,
-18
]
],
[
[
8469,
6109
],
[
15,
-467
]
],
[
[
8484,
5642
],
[
-21,
-33
],
[
-21,
-96
],
[
-12,
27
],
[
7,
24
],
[
-15,
-25
],
[
2,
-33
],
[
-29,
69
],
[
-10,
-12
],
[
-10,
48
],
[
37,
18
],
[
-15,
3
],
[
10,
15
],
[
-6,
7
],
[
-9,
-20
],
[
0,
24
],
[
-8,
-26
],
[
-1,
38
],
[
46,
-31
],
[
9,
14
],
[
6,
36
],
[
-11,
32
],
[
8,
-34
],
[
-13,
-37
],
[
-21,
23
],
[
10,
21
],
[
-15,
-5
],
[
18,
22
],
[
-5,
16
],
[
-16,
-41
],
[
-8,
55
],
[
-5,
-39
],
[
-5,
4
],
[
6,
32
],
[
-4,
6
],
[
2,
-15
],
[
-11,
-17
],
[
6,
37
],
[
9,
15
],
[
14,
-49
],
[
8,
21
],
[
-9,
-8
],
[
-2,
34
],
[
22,
11
],
[
-7,
22
],
[
-11,
-13
],
[
3,
14
],
[
-2,
14
],
[
-2,
-34
],
[
-4,
-4
],
[
-2,
-12
],
[
2,
16
],
[
2,
3
],
[
1,
12
],
[
-4,
-15
],
[
-8,
31
],
[
43,
73
],
[
-11,
23
],
[
4,
-15
],
[
-23,
-31
],
[
9,
32
],
[
-6,
-18
],
[
-6,
19
],
[
-7,
-49
],
[
-8,
39
],
[
22,
50
],
[
-7,
16
],
[
53,
17
],
[
-27,
16
],
[
31,
23
],
[
-11,
12
],
[
16,
33
],
[
-30,
-47
],
[
10,
58
],
[
-26,
-24
],
[
-6,
-17
],
[
12,
-17
],
[
-20,
-29
],
[
-8,
14
],
[
-1,
-25
],
[
-4,
10
],
[
6,
40
],
[
-5,
-4
],
[
-6,
-67
],
[
-6,
37
],
[
-4,
0
],
[
-2,
7
],
[
-1,
1
],
[
-1,
1
],
[
-9,
-11
],
[
13,
-5
],
[
2,
-15
],
[
-20,
-3
],
[
7,
-32
],
[
-13,
30
],
[
-5,
-7
],
[
19,
-27
],
[
-8,
-17
],
[
-10,
5
],
[
6,
22
],
[
-2,
5
],
[
-1,
-10
],
[
-6,
-11
],
[
-2,
17
],
[
-17,
3
],
[
12,
-15
],
[
-8,
-22
],
[
1,
-11
],
[
9,
25
],
[
-2,
-29
],
[
22,
-4
],
[
2,
-21
],
[
-2,
-10
],
[
-19,
21
],
[
2,
-17
],
[
24,
-23
],
[
-11,
-14
],
[
-16,
37
],
[
-3,
-2
],
[
-1,
6
],
[
-8,
2
],
[
29,
-57
],
[
-27,
15
],
[
3,
-17
],
[
5,
7
],
[
2,
-13
],
[
3,
5
],
[
4,
-15
],
[
3,
3
],
[
-10,
-31
],
[
10,
5
],
[
-12,
-15
],
[
5,
-36
]
],
[
[
8341,
5703
],
[
-15,
3
],
[
-17,
23
],
[
2,
86
],
[
-84,
141
],
[
14,
61
]
],
[
[
8241,
6017
],
[
-35,
59
],
[
16,
33
]
],
[
[
8222,
6109
],
[
247,
0
]
],
[
[
8375,
5941
],
[
-4,
3
],
[
-1,
7
],
[
6,
-6
],
[
-1,
-4
]
],
[
[
8396,
5823
],
[
-5,
6
],
[
4,
12
],
[
3,
-17
],
[
-2,
-1
]
],
[
[
8369,
5754
],
[
1,
40
],
[
10,
41
],
[
10,
-48
],
[
-6,
17
],
[
-3,
-25
],
[
1,
27
],
[
-4,
3
],
[
-9,
-55
]
],
[
[
8345,
5780
],
[
2,
3
],
[
0,
-3
],
[
-2,
0
]
],
[
[
8401,
5765
],
[
3,
15
],
[
11,
-8
],
[
-9,
4
],
[
-5,
-11
]
],
[
[
8374,
5686
],
[
-1,
9
],
[
1,
13
],
[
3,
-15
],
[
-3,
-7
]
],
[
[
8406,
5513
],
[
-3,
3
],
[
-9,
25
],
[
-1,
6
],
[
-1,
8
],
[
14,
-42
]
],
[
[
8399,
5543
],
[
-1,
5
],
[
4,
3
],
[
1,
-3
],
[
-4,
-5
]
],
[
[
9598,
7978
],
[
-14,
-22
],
[
-28,
14
],
[
24,
81
],
[
-17,
70
],
[
-28,
-7
],
[
4,
-50
]
],
[
[
9539,
8064
],
[
-37,
2
],
[
-30,
38
],
[
-7,
76
]
],
[
[
9465,
8180
],
[
-20,
12
],
[
-2,
94
]
],
[
[
9443,
8286
],
[
-44,
6
],
[
-24,
211
]
],
[
[
9375,
8503
],
[
27,
21
],
[
-3,
30
],
[
27,
39
],
[
-10,
51
],
[
14,
51
],
[
-9,
18
],
[
17,
64
],
[
23,
27
],
[
6,
64
]
],
[
[
9467,
8868
],
[
208,
-1
],
[
0,
-71
],
[
67,
-6
],
[
0,
-323
]
],
[
[
9742,
8467
],
[
121,
44
],
[
54,
-44
],
[
1,
-31
],
[
-15,
-5
],
[
15,
-45
],
[
-12,
-39
],
[
25,
-62
],
[
10,
26
],
[
21,
-13
],
[
31,
-100
],
[
-14,
21
],
[
-1,
-19
],
[
-18,
13
],
[
7,
-27
],
[
-16,
21
],
[
13,
-28
],
[
-3,
-28
],
[
11,
40
],
[
6,
-31
],
[
8,
14
],
[
-6,
23
],
[
19,
-36
],
[
-45,
-72
],
[
-32,
32
],
[
-2,
-50
],
[
-4,
29
],
[
-5,
-28
],
[
-1,
10
],
[
-12,
0
],
[
-1,
13
],
[
-6,
2
],
[
1,
-51
],
[
-16,
16
],
[
-9,
-30
],
[
-4,
47
],
[
-11,
-37
],
[
4,
27
],
[
-2,
0
],
[
1,
6
],
[
-1,
0
],
[
-1,
4
],
[
-3,
2
],
[
-15,
-91
],
[
-1,
40
],
[
-6,
-33
],
[
-5,
39
],
[
-4,
-1
],
[
-8,
-9
],
[
13,
-34
],
[
-18,
-26
],
[
-6,
57
],
[
-16,
-1
],
[
2,
16
],
[
-13,
16
],
[
10,
7
],
[
-8,
7
],
[
-9,
-13
],
[
14,
-15
],
[
-2,
-21
],
[
-16,
29
],
[
8,
-32
],
[
-14,
0
],
[
-13,
-25
],
[
1,
41
],
[
-14,
-1
],
[
8,
-44
],
[
-19,
5
],
[
6,
-68
],
[
-36,
42
],
[
-15,
-9
],
[
10,
76
],
[
-6,
24
],
[
-1,
-37
],
[
-32,
-17
],
[
8,
-34
],
[
-12,
-34
],
[
-18,
-1
],
[
-25,
44
]
],
[
[
9884,
8034
],
[
-1,
6
],
[
1,
2
],
[
2,
-6
],
[
-2,
-2
]
],
[
[
9889,
8012
],
[
-4,
15
],
[
2,
3
],
[
-2,
3
],
[
5,
6
],
[
-1,
-27
]
],
[
[
9759,
7921
],
[
-15,
47
],
[
10,
34
],
[
19,
5
],
[
14,
-43
],
[
-21,
-17
],
[
-6,
36
],
[
7,
-52
],
[
-8,
-10
]
],
[
[
9656,
7925
],
[
3,
20
],
[
-5,
0
],
[
11,
45
],
[
3,
-11
],
[
-12,
-54
]
],
[
[
9700,
7891
],
[
-10,
30
],
[
10,
21
],
[
-10,
14
],
[
22,
-27
],
[
-7,
-11
],
[
10,
0
],
[
4,
-7
],
[
-3,
-5
],
[
-2,
10
],
[
-14,
2
],
[
11,
-13
],
[
-11,
-14
]
],
[
[
9654,
7938
],
[
-1,
4
],
[
0,
1
],
[
2,
-4
],
[
-1,
-1
]
],
[
[
9652,
7930
],
[
-2,
3
],
[
2,
8
],
[
3,
-6
],
[
-3,
-5
]
],
[
[
9776,
7933
],
[
1,
6
],
[
3,
-5
],
[
-2,
1
],
[
-2,
-2
]
],
[
[
9771,
7926
],
[
-1,
10
],
[
6,
-5
],
[
-2,
-5
],
[
-3,
0
]
],
[
[
9761,
7910
],
[
-2,
1
],
[
0,
4
],
[
4,
-4
],
[
-2,
-1
]
],
[
[
9692,
7911
],
[
-1,
2
],
[
1,
1
],
[
0,
-3
]
],
[
[
9744,
7883
],
[
-3,
12
],
[
-1,
-10
],
[
-9,
11
],
[
15,
11
],
[
-2,
-24
]
],
[
[
9754,
7871
],
[
2,
12
],
[
4,
-7
],
[
-5,
-1
],
[
-1,
-4
]
],
[
[
5712,
2616
],
[
13,
-3
],
[
-2,
-26
],
[
17,
27
]
],
[
[
5740,
2614
],
[
-11,
38
],
[
27,
75
]
],
[
[
5756,
2727
],
[
41,
22
],
[
21,
-22
],
[
97,
12
]
],
[
[
5915,
2739
],
[
-3,
-347
]
],
[
[
5912,
2392
],
[
29,
-81
]
],
[
[
5941,
2311
],
[
-89,
-69
],
[
-8,
-55
],
[
13,
-40
]
],
[
[
5857,
2147
],
[
-34,
-101
]
],
[
[
5823,
2046
],
[
-35,
-32
],
[
1,
-26
],
[
-23,
28
],
[
-24,
-13
],
[
-1,
45
],
[
-18,
0
],
[
7,
42
],
[
-45,
-10
],
[
44,
94
]
],
[
[
5729,
2174
],
[
27,
4
],
[
14,
-69
],
[
50,
-34
],
[
1,
41
],
[
-24,
47
],
[
2,
50
],
[
-42,
24
],
[
-2,
51
],
[
-20,
12
],
[
-9,
74
],
[
-20,
22
],
[
4,
83
]
],
[
[
5710,
2479
],
[
-14,
59
]
],
[
[
5696,
2538
],
[
16,
78
]
],
[
[
5257,
2019
],
[
-1,
132
],
[
-14,
0
],
[
-1,
91
],
[
-26,
-1
],
[
-24,
152
],
[
34,
1
],
[
-21,
209
]
],
[
[
5204,
2603
],
[
195,
70
],
[
-4,
-145
],
[
-32,
-115
]
],
[
[
5363,
2413
],
[
7,
-194
]
],
[
[
5370,
2219
],
[
-39,
-99
],
[
15,
-48
]
],
[
[
5346,
2072
],
[
-89,
-53
]
],
[
[
477,
7774
],
[
19,
22
],
[
17,
76
],
[
-13,
117
],
[
106,
1
],
[
21,
-1
]
],
[
[
627,
7989
],
[
1,
-102
],
[
20,
-2
],
[
0,
-69
],
[
42,
-1
],
[
0,
-35
],
[
63,
0
],
[
1,
-35
],
[
20,
0
],
[
0,
-35
],
[
63,
0
]
],
[
[
837,
7710
],
[
0,
-35
]
],
[
[
837,
7675
],
[
-365,
2
]
],
[
[
472,
7677
],
[
5,
97
]
],
[
[
2359,
8243
],
[
-10,
13
],
[
8,
22
],
[
12,
-14
],
[
1,
112
],
[
21,
0
],
[
-1,
70
],
[
22,
26
],
[
2,
242
],
[
-48,
0
],
[
-12,
33
],
[
12,
54
],
[
-32,
12
]
],
[
[
2334,
8813
],
[
-45,
151
],
[
-24,
12
],
[
7,
20
],
[
-10,
8
]
],
[
[
2262,
9004
],
[
21,
0
],
[
0,
35
],
[
66,
5
],
[
0,
31
],
[
13,
0
],
[
0,
-32
],
[
56,
-44
],
[
51,
-89
],
[
71,
28
],
[
41,
-22
],
[
205,
22
],
[
4,
141
],
[
-22,
0
],
[
3,
69
],
[
70,
18
],
[
0,
108
],
[
58,
1
],
[
20,
-52
],
[
36,
79
],
[
128,
8
],
[
53,
42
]
],
[
[
3136,
9352
],
[
29,
83
],
[
15,
-10
],
[
0,
-36
]
],
[
[
3180,
9389
],
[
16,
0
],
[
-6,
-207
],
[
22,
0
],
[
0,
-70
]
],
[
[
3212,
9112
],
[
15,
0
]
],
[
[
3227,
9112
],
[
0,
-129
],
[
81,
-11
],
[
7,
-70
],
[
15,
0
],
[
7,
-36
],
[
80,
-12
],
[
44,
29
],
[
0,
-52
],
[
-30,
0
],
[
3,
-139
]
],
[
[
3434,
8692
],
[
-9,
0
]
],
[
[
3425,
8692
],
[
-17,
-458
]
],
[
[
3408,
8234
],
[
-497,
1
]
],
[
[
2911,
8235
],
[
29,
-115
]
],
[
[
2940,
8120
],
[
34,
-15
],
[
60,
-94
],
[
9,
-113
]
],
[
[
3043,
7898
],
[
-243,
1
],
[
0,
-35
],
[
-42,
0
],
[
0,
-36
],
[
-21,
0
],
[
1,
-35
],
[
-32,
0
],
[
1,
-35
],
[
-39,
-2
],
[
-39,
60
],
[
-43,
-64
],
[
-12,
11
],
[
0,
52
],
[
-34,
20
]
],
[
[
2540,
7835
],
[
0,
50
],
[
-11,
0
],
[
-4,
58
],
[
-27,
61
]
],
[
[
2498,
8004
],
[
0,
47
],
[
-64,
15
]
],
[
[
2434,
8066
],
[
0,
34
],
[
-67,
0
]
],
[
[
2367,
8100
],
[
-6,
-73
],
[
-1,
122
],
[
-1,
94
]
],
[
[
6288,
2352
],
[
-15,
-28
],
[
-22,
24
],
[
-20,
-14
],
[
-22,
37
],
[
-76,
-53
],
[
-9,
244
]
],
[
[
6124,
2562
],
[
88,
1
]
],
[
[
6212,
2563
],
[
0,
35
],
[
71,
0
]
],
[
[
6283,
2598
],
[
5,
-246
]
],
[
[
8390,
7146
],
[
-8,
44
],
[
74,
4
],
[
-4,
124
]
],
[
[
8452,
7318
],
[
103,
8
],
[
-21,
-173
]
],
[
[
8534,
7153
],
[
119,
82
],
[
52,
-68
]
],
[
[
8686,
7108
],
[
15,
-13
]
],
[
[
8701,
7095
],
[
-122,
-129
],
[
-18,
6
],
[
-17,
54
]
],
[
[
8544,
7026
],
[
-208,
1
]
],
[
[
8336,
7027
],
[
4,
113
]
],
[
[
8340,
7140
],
[
50,
6
]
],
[
[
6345,
3319
],
[
-20,
18
],
[
2,
65
]
],
[
[
6327,
3402
],
[
-30,
-2
]
],
[
[
6297,
3400
],
[
12,
219
],
[
57,
-4
],
[
-1,
200
],
[
-45,
15
]
],
[
[
6320,
3830
],
[
6,
106
]
],
[
[
6326,
3936
],
[
294,
-8
],
[
30,
-82
],
[
20,
34
],
[
60,
7
],
[
57,
130
]
],
[
[
6787,
4017
],
[
19,
-225
]
],
[
[
6806,
3792
],
[
-41,
-36
],
[
9,
-12
],
[
-9,
-79
],
[
-43,
-69
],
[
42,
7
],
[
-2,
-156
]
],
[
[
6762,
3447
],
[
-145,
-2
]
],
[
[
6617,
3445
],
[
-4,
-69
],
[
25,
-72
],
[
-59,
-36
],
[
-53,
0
],
[
0,
70
],
[
-69,
15
],
[
-18,
-158
]
],
[
[
6439,
3195
],
[
-57,
20
],
[
-1,
36
],
[
-38,
-1
],
[
2,
69
]
],
[
[
7592,
5086
],
[
-9,
-43
],
[
-54,
-10
],
[
-27,
-38
]
],
[
[
7502,
4995
],
[
-20,
25
],
[
-33,
-33
],
[
-16,
10
]
],
[
[
7433,
4997
],
[
-21,
73
]
],
[
[
7412,
5070
],
[
27,
50
],
[
-19,
10
],
[
-25,
76
],
[
51,
90
]
],
[
[
7446,
5296
],
[
-10,
22
],
[
42,
12
],
[
-7,
68
],
[
31,
6
],
[
9,
86
],
[
17,
32
],
[
89,
-74
]
],
[
[
7617,
5448
],
[
48,
76
],
[
30,
-89
],
[
53,
7
]
],
[
[
7748,
5442
],
[
-52,
-124
],
[
-7,
-26
],
[
13,
-25
],
[
-18,
-26
],
[
5,
-23
],
[
-82,
-54
],
[
-15,
23
],
[
2,
-33
]
],
[
[
7594,
5154
],
[
-22,
-23
],
[
20,
-45
]
],
[
[
1131,
7025
],
[
-5,
823
],
[
-102,
3
],
[
0,
-35
],
[
-146,
-1
],
[
-2,
417
]
],
[
[
876,
8232
],
[
247,
-15
],
[
3,
-37
]
],
[
[
1126,
8180
],
[
-16,
-12
],
[
6,
-34
],
[
-41,
-18
],
[
37,
-47
]
],
[
[
1112,
8069
],
[
-33,
-126
],
[
53,
-8
]
],
[
[
1132,
7935
],
[
38,
75
],
[
66,
1
],
[
18,
-23
],
[
0,
-35
],
[
46,
0
],
[
-1,
73
],
[
28,
98
],
[
36,
62
]
],
[
[
1363,
8186
],
[
1,
57
],
[
28,
99
]
],
[
[
1392,
8342
],
[
60,
0
],
[
6,
-64
],
[
28,
-1
],
[
30,
46
],
[
221,
-10
]
],
[
[
1737,
8313
],
[
-12,
-142
],
[
-33,
-49
],
[
-23,
20
],
[
-38,
-77
]
],
[
[
1631,
8065
],
[
14,
-47
]
],
[
[
1645,
8018
],
[
-11,
-56
],
[
51,
-91
],
[
-9,
-24
]
],
[
[
1676,
7847
],
[
14,
-23
],
[
-4,
-49
],
[
49,
-21
],
[
4,
-87
]
],
[
[
1739,
7667
],
[
31,
-46
],
[
-5,
-58
]
],
[
[
1765,
7563
],
[
24,
-3
]
],
[
[
1789,
7560
],
[
3,
-27
],
[
0,
-24
]
],
[
[
1792,
7509
],
[
-123,
0
],
[
9,
-484
]
],
[
[
1678,
7025
],
[
-343,
1
]
],
[
[
1335,
7026
],
[
-204,
-1
]
],
[
[
8975,
7474
],
[
3,
61
],
[
72,
-12
]
],
[
[
9050,
7523
],
[
0,
-39
],
[
48,
18
],
[
-4,
-20
],
[
24,
-1
],
[
-2,
126
],
[
34,
67
],
[
6,
-26
],
[
16,
8
],
[
14,
49
],
[
22,
5
]
],
[
[
9208,
7710
],
[
-2,
27
]
],
[
[
9206,
7737
],
[
47,
-78
],
[
23,
1
],
[
3,
-27
],
[
26,
14
],
[
-3,
-74
]
],
[
[
9302,
7573
],
[
29,
-54
],
[
-18,
-69
],
[
13,
-3
],
[
-3,
31
],
[
25,
-31
],
[
-22,
-52
],
[
5,
-38
],
[
-9,
-3
],
[
9,
1
],
[
7,
-45
],
[
-8,
23
],
[
-4,
-24
],
[
43,
-24
],
[
-12,
-25
],
[
-46,
-5
],
[
16,
-26
],
[
-18,
-19
],
[
5,
-16
],
[
-12,
14
],
[
4,
-43
],
[
-25,
25
],
[
23,
-74
],
[
17,
13
],
[
-10,
20
],
[
7,
2
],
[
29,
-40
],
[
-4,
-20
],
[
24,
-62
],
[
-19,
-1
],
[
30,
-31
],
[
8,
-59
],
[
-12,
-3
]
],
[
[
9374,
6935
],
[
-5,
-9
],
[
-7,
-5
],
[
5,
10
],
[
-4,
1
],
[
-2,
-12
],
[
-7,
4
],
[
6,
-9
],
[
-5,
-12
],
[
3,
9
],
[
-10,
17
],
[
-1,
-33
],
[
-8,
19
],
[
0,
-33
],
[
-14,
-5
]
],
[
[
9325,
6877
],
[
-13,
65
],
[
-19,
-4
],
[
10,
33
],
[
-19,
94
],
[
-49,
-44
]
],
[
[
9235,
7021
],
[
-133,
18
]
],
[
[
9102,
7039
],
[
0,
53
],
[
-23,
9
],
[
9,
51
],
[
-17,
13
],
[
14,
128
],
[
-9,
24
]
],
[
[
9076,
7317
],
[
-112,
7
]
],
[
[
9348,
7452
],
[
-3,
0
],
[
1,
3
],
[
-2,
3
],
[
5,
0
],
[
-1,
-6
]
],
[
[
9302,
7152
],
[
2,
5
],
[
2,
2
],
[
-2,
-6
],
[
-2,
-1
]
],
[
[
9300,
7155
],
[
0,
3
],
[
0,
1
],
[
1,
-1
],
[
-1,
-3
]
],
[
[
9296,
7151
],
[
-1,
1
],
[
2,
4
],
[
1,
-1
],
[
-2,
-4
]
],
[
[
9309,
7141
],
[
-2,
2
],
[
4,
5
],
[
-2,
-3
],
[
0,
-4
]
],
[
[
9374,
6935
],
[
45,
-27
],
[
49,
33
],
[
5,
51
],
[
-14,
-12
],
[
-4,
59
],
[
-27,
14
],
[
15,
5
],
[
29,
-45
],
[
9,
-57
],
[
-5,
4
],
[
-2,
-19
],
[
8,
11
],
[
2,
-37
],
[
-1,
-22
],
[
-3,
39
],
[
-8,
-19
],
[
9,
-5
],
[
-4,
-21
],
[
-44,
-7
],
[
-32,
5
],
[
-9,
-14
],
[
-5,
-24
],
[
-7,
11
],
[
-28,
-23
],
[
13,
54
],
[
-9,
9
],
[
8,
6
],
[
10,
31
]
],
[
[
9468,
6983
],
[
-1,
3
],
[
3,
1
],
[
0,
-1
],
[
-2,
-3
]
],
[
[
9471,
6842
],
[
-3,
4
],
[
4,
7
],
[
1,
15
],
[
3,
15
],
[
-5,
-41
]
],
[
[
9399,
6869
],
[
-1,
6
],
[
4,
1
],
[
-1,
-7
],
[
-2,
0
]
],
[
[
9392,
6857
],
[
-1,
2
],
[
0,
2
],
[
1,
-4
]
],
[
[
9380,
6844
],
[
-4,
3
],
[
4,
8
],
[
-3,
-9
],
[
3,
-2
]
],
[
[
9349,
6830
],
[
-1,
3
],
[
2,
1
],
[
-1,
-4
]
],
[
[
9352,
6827
],
[
-2,
4
],
[
4,
1
],
[
0,
-2
],
[
-2,
-3
]
],
[
[
9334,
6804
],
[
1,
12
],
[
12,
15
],
[
3,
-2
],
[
-16,
-25
]
],
[
[
9337,
6745
],
[
-10,
21
],
[
40,
52
],
[
16,
-54
],
[
10,
30
],
[
0,
-30
],
[
-56,
-19
]
],
[
[
9327,
6802
],
[
0,
6
],
[
4,
-3
],
[
0,
-2
],
[
-4,
-1
]
],
[
[
9315,
6794
],
[
8,
11
],
[
1,
-5
],
[
-3,
-6
],
[
-6,
0
]
],
[
[
9307,
6789
],
[
4,
9
],
[
3,
-4
],
[
-2,
0
],
[
-5,
-5
]
],
[
[
9469,
6720
],
[
-18,
1
],
[
-18,
14
],
[
27,
13
],
[
2,
34
],
[
16,
-46
],
[
-9,
-16
]
],
[
[
9427,
6740
],
[
-2,
3
],
[
-2,
7
],
[
5,
-3
],
[
1,
-2
],
[
-2,
-5
]
],
[
[
9332,
6724
],
[
-3,
1
],
[
-2,
3
],
[
3,
2
],
[
2,
-6
]
],
[
[
6838,
4955
],
[
-15,
-92
],
[
-23,
-3
]
],
[
[
6800,
4860
],
[
-6,
47
],
[
-25,
40
],
[
-27,
1
],
[
-36,
-46
]
],
[
[
6706,
4902
],
[
-27,
85
],
[
-47,
-63
]
],
[
[
6632,
4924
],
[
-30,
22
],
[
-16,
68
]
],
[
[
6586,
5014
],
[
-46,
28
],
[
10,
17
],
[
-10,
10
]
],
[
[
6540,
5069
],
[
21,
77
],
[
36,
27
]
],
[
[
6597,
5173
],
[
24,
-30
],
[
65,
4
],
[
13,
26
],
[
-5,
22
],
[
68,
-11
]
],
[
[
6762,
5184
],
[
-7,
-49
],
[
11,
-71
],
[
35,
9
],
[
44,
67
],
[
21,
-23
],
[
2,
-28
]
],
[
[
6868,
5089
],
[
-40,
-116
],
[
10,
-18
]
],
[
[
7782,
7135
],
[
106,
114
],
[
17,
56
],
[
34,
37
],
[
-16,
78
],
[
11,
19
]
],
[
[
7934,
7439
],
[
0,
2
]
],
[
[
7934,
7441
],
[
-1,
6
],
[
-10,
11
],
[
-21,
6
],
[
1,
71
],
[
94,
44
],
[
91,
-3
]
],
[
[
8088,
7576
],
[
-1,
-93
],
[
16,
0
],
[
-8,
-38
],
[
8,
-6
],
[
-9,
-144
],
[
-18,
-54
],
[
59,
-25
]
],
[
[
8135,
7216
],
[
-5,
-190
]
],
[
[
8130,
7026
],
[
24,
0
]
],
[
[
8154,
7026
],
[
2,
-209
],
[
-78,
-2
],
[
-26,
58
]
],
[
[
8052,
6873
],
[
-131,
2
]
],
[
[
7921,
6875
],
[
7,
151
],
[
-146,
0
],
[
0,
109
]
],
[
[
7927,
7410
],
[
1,
1
],
[
-2,
1
],
[
0,
-1
],
[
1,
-1
]
],
[
[
7931,
7394
],
[
0,
7
],
[
-1,
1
],
[
0,
-1
],
[
1,
-7
]
],
[
[
7903,
7461
],
[
-2,
0
],
[
0,
2
],
[
2,
-2
]
],
[
[
7923,
7412
],
[
-12,
13
],
[
3,
30
],
[
17,
-9
],
[
-8,
-19
],
[
0,
-15
]
],
[
[
7934,
7439
],
[
-1,
3
],
[
0,
1
],
[
1,
-2
]
],
[
[
7921,
7412
],
[
-1,
1
],
[
1,
1
],
[
0,
-2
]
],
[
[
8730,
7880
],
[
-44,
-8
]
],
[
[
8686,
7872
],
[
-18,
343
]
],
[
[
8668,
8215
],
[
-15,
17
],
[
565,
8
]
],
[
[
9218,
8240
],
[
-13,
-8
],
[
7,
-36
]
],
[
[
9212,
8196
],
[
-23,
-62
],
[
16,
-66
]
],
[
[
9205,
8068
],
[
-7,
-34
],
[
-32,
-39
]
],
[
[
9166,
7995
],
[
32,
-61
],
[
23,
-2
],
[
17,
-72
],
[
-3,
-62
],
[
-35,
-9
]
],
[
[
9200,
7789
],
[
8,
-79
]
],
[
[
9050,
7523
],
[
-67,
9
],
[
-75,
24
]
],
[
[
2310,
8136
],
[
-23,
-45
],
[
8,
-42
],
[
-141,
11
],
[
-18,
-48
],
[
-68,
15
]
],
[
[
2068,
8027
],
[
-11,
-51
],
[
-27,
37
],
[
-22,
130
]
],
[
[
2008,
8143
],
[
-37,
4
]
],
[
[
1971,
8147
],
[
-23,
45
],
[
4,
66
]
],
[
[
1952,
8258
],
[
-40,
78
],
[
-14,
108
]
],
[
[
1898,
8444
],
[
-12,
0
],
[
5,
33
]
],
[
[
1891,
8477
],
[
-23,
37
],
[
7,
30
]
],
[
[
1875,
8544
],
[
53,
32
],
[
53,
76
],
[
0,
74
],
[
43,
0
],
[
0,
207
],
[
-44,
28
],
[
-2,
150
],
[
-28,
0
],
[
0,
170
]
],
[
[
1950,
9281
],
[
58,
-5
],
[
12,
-40
]
],
[
[
2020,
9236
],
[
0,
-125
],
[
45,
0
],
[
1,
-140
],
[
45,
2
],
[
0,
-55
],
[
37,
-17
],
[
0,
-95
],
[
50,
60
],
[
69,
0
]
],
[
[
2267,
8866
],
[
8,
85
],
[
44,
-59
],
[
-2,
-36
],
[
17,
-43
]
],
[
[
2359,
8243
],
[
1,
-216
],
[
-50,
109
]
],
[
[
2658,
7407
],
[
-31,
27
],
[
-35,
182
]
],
[
[
2592,
7616
],
[
-52,
0
],
[
0,
219
]
],
[
[
3043,
7898
],
[
-4,
92
],
[
-34,
67
]
],
[
[
3005,
8057
],
[
235,
2
]
],
[
[
3240,
8059
],
[
-1,
-431
]
],
[
[
3239,
7628
],
[
193,
2
]
],
[
[
3432,
7630
],
[
1,
-358
],
[
-68,
-2
],
[
1,
-70
],
[
-16,
-57
],
[
-42,
6
],
[
10,
51
],
[
-340,
1
]
],
[
[
2978,
7201
],
[
0,
-69
]
],
[
[
2978,
7132
],
[
-263,
1
],
[
-5,
173
]
],
[
[
2710,
7306
],
[
-15,
19
],
[
-37,
82
]
],
[
[
5899,
7231
],
[
29,
-51
],
[
-33,
0
],
[
0,
-35
],
[
-40,
0
],
[
0,
-281
],
[
-81,
1
],
[
-1,
-71
],
[
-20,
1
],
[
0,
-106
]
],
[
[
5753,
6689
],
[
-160,
0
]
],
[
[
5593,
6689
],
[
0,
140
],
[
20,
0
],
[
0,
142
],
[
-81,
0
],
[
-1,
140
],
[
-40,
0
],
[
-4,
281
]
],
[
[
5487,
7392
],
[
81,
0
],
[
0,
123
],
[
82,
0
],
[
0,
116
]
],
[
[
5650,
7631
],
[
150,
0
]
],
[
[
5800,
7631
],
[
1,
-60
]
],
[
[
5801,
7571
],
[
26,
-38
],
[
-21,
-77
],
[
20,
-127
],
[
62,
-46
]
],
[
[
5888,
7283
],
[
11,
-52
]
],
[
[
5907,
6137
],
[
2,
35
],
[
102,
-2
]
],
[
[
6011,
6170
],
[
2,
103
],
[
66,
-3
]
],
[
[
6079,
6270
],
[
0,
80
],
[
198,
-15
],
[
0,
135
],
[
39,
0
]
],
[
[
6316,
6470
],
[
-2,
152
]
],
[
[
6314,
6622
],
[
124,
6
]
],
[
[
6438,
6628
],
[
-1,
-454
]
],
[
[
6437,
6174
],
[
-70,
-1
],
[
-12,
-284
],
[
-61,
-1
],
[
0,
-105
]
],
[
[
6294,
5783
],
[
-77,
0
]
],
[
[
6217,
5783
],
[
0,
123
],
[
-58,
0
],
[
0,
53
],
[
-68,
0
],
[
0,
71
]
],
[
[
6091,
6030
],
[
-133,
-2
]
],
[
[
5958,
6028
],
[
-12,
94
],
[
-39,
15
]
],
[
[
7625,
3271
],
[
-27,
11
],
[
-45,
132
]
],
[
[
7553,
3414
],
[
26,
31
]
],
[
[
7586,
3429
],
[
0,
25
],
[
68,
84
]
],
[
[
7654,
3538
],
[
13,
-31
],
[
27,
12
],
[
8,
65
],
[
21,
20
],
[
18,
109
],
[
25,
50
],
[
62,
-47
]
],
[
[
7828,
3716
],
[
25,
16
],
[
43,
-98
],
[
17,
0
]
],
[
[
7913,
3634
],
[
-14,
-38
],
[
-10,
-34
],
[
-5,
-75
],
[
-20,
54
],
[
17,
-68
],
[
-46,
-46
],
[
6,
2
],
[
1,
-19
],
[
-14,
-6
],
[
7,
29
],
[
-19,
-22
],
[
-9,
-26
],
[
7,
-19
],
[
-29,
-14
],
[
-10,
-23
],
[
8,
-2
],
[
-31,
-3
],
[
7,
-45
],
[
-90,
-88
],
[
-44,
80
]
],
[
[
7789,
3334
],
[
-1,
8
],
[
4,
1
],
[
0,
-5
],
[
-3,
-4
]
],
[
[
7774,
3313
],
[
10,
14
],
[
2,
7
],
[
4,
-5
],
[
-16,
-16
]
],
[
[
7767,
3305
],
[
-3,
5
],
[
9,
3
],
[
-1,
-3
],
[
-5,
-5
]
],
[
[
7745,
3259
],
[
12,
14
],
[
2,
5
],
[
-1,
4
],
[
2,
-4
],
[
0,
-2
],
[
-5,
-7
],
[
-10,
-10
]
],
[
[
7187,
5485
],
[
-18,
16
]
],
[
[
7169,
5501
],
[
-17,
73
],
[
-31,
15
]
],
[
[
7121,
5589
],
[
-10,
97
],
[
22,
13
],
[
39,
-41
]
],
[
[
7172,
5658
],
[
3,
167
]
],
[
[
7175,
5825
],
[
10,
-22
]
],
[
[
7185,
5803
],
[
70,
-5
],
[
10,
169
],
[
80,
7
],
[
1,
35
],
[
20,
-2
],
[
1,
36
],
[
19,
-2
],
[
-1,
-37
]
],
[
[
7385,
6004
],
[
36,
-4
],
[
-1,
-53
]
],
[
[
7420,
5947
],
[
23,
-20
],
[
-5,
-70
],
[
29,
-28
]
],
[
[
7467,
5829
],
[
49,
65
],
[
8,
-61
]
],
[
[
7524,
5833
],
[
38,
-9
],
[
5,
-67
],
[
-9,
-21
]
],
[
[
7558,
5736
],
[
12,
-31
]
],
[
[
7570,
5705
],
[
65,
76
],
[
29,
-54
],
[
-41,
-108
]
],
[
[
7623,
5619
],
[
9,
-60
],
[
29,
-42
],
[
-44,
-69
]
],
[
[
7446,
5296
],
[
-29,
-66
],
[
-120,
-137
]
],
[
[
7297,
5093
],
[
-28,
25
],
[
-6,
67
]
],
[
[
7263,
5185
],
[
-86,
102
],
[
-2,
36
],
[
24,
50
]
],
[
[
7199,
5373
],
[
29,
6
],
[
-11,
41
]
],
[
[
7217,
5420
],
[
-42,
24
],
[
12,
41
]
],
[
[
7483,
4221
],
[
14,
6
],
[
7,
48
],
[
-69,
6
],
[
13,
161
],
[
-23,
-2
],
[
-8,
58
],
[
-20,
36
],
[
11,
52
],
[
-19,
2
]
],
[
[
7389,
4588
],
[
-8,
64
],
[
39,
95
]
],
[
[
7420,
4747
],
[
25,
-1
],
[
5,
102
]
],
[
[
7450,
4848
],
[
57,
-5
],
[
18,
-75
],
[
-20,
-10
],
[
-32,
-99
],
[
38,
-50
],
[
110,
23
],
[
-3,
-80
],
[
65,
-53
],
[
39,
-105
],
[
10,
-36
],
[
-4,
-92
]
],
[
[
7728,
4266
],
[
68,
14
],
[
38,
-54
],
[
-19,
-20
],
[
-8,
-72
]
],
[
[
7807,
4134
],
[
-55,
-4
],
[
27,
-76
],
[
-9,
-34
]
],
[
[
7770,
4020
],
[
-79,
-66
],
[
-21,
100
]
],
[
[
7670,
4054
],
[
-25,
-22
],
[
-1,
-29
],
[
-31,
-3
],
[
-1,
24
],
[
-23,
-33
],
[
0,
34
]
],
[
[
7589,
4025
],
[
-95,
11
],
[
-11,
185
]
],
[
[
8028,
5669
],
[
44,
-121
],
[
-44,
-43
],
[
-5,
-14
]
],
[
[
8023,
5491
],
[
28,
-21
],
[
-50,
-149
]
],
[
[
8001,
5321
],
[
-26,
-12
]
],
[
[
7975,
5309
],
[
-33,
127
]
],
[
[
7942,
5436
],
[
86,
233
]
],
[
[
6771,
4203
],
[
-45,
1
]
],
[
[
6726,
4204
],
[
-4,
213
]
],
[
[
6722,
4417
],
[
74,
12
],
[
35,
88
],
[
39,
-8
]
],
[
[
6870,
4509
],
[
43,
32
],
[
44,
-79
],
[
22,
-115
],
[
-16,
-23
],
[
26,
-33
]
],
[
[
6989,
4291
],
[
54,
35
],
[
11,
-29
],
[
48,
10
],
[
-54,
-103
],
[
-30,
-14
]
],
[
[
6784,
4043
],
[
-13,
160
]
],
[
[
3698,
7028
],
[
-1,
-123
],
[
-118,
0
]
],
[
[
3579,
6905
],
[
-1,
-280
]
],
[
[
3578,
6625
],
[
-211,
-2
],
[
-1,
265
],
[
109,
-1
],
[
-1,
385
],
[
105,
1
]
],
[
[
3579,
7273
],
[
0,
-246
]
],
[
[
3579,
7027
],
[
119,
1
]
],
[
[
6532,
6589
],
[
0,
-30
],
[
-20,
0
],
[
0,
-41
],
[
-74,
0
]
],
[
[
6438,
6518
],
[
0,
110
]
],
[
[
6314,
6622
],
[
-1,
48
]
],
[
[
6313,
6670
],
[
-118,
-3
],
[
0,
-72
],
[
-20,
-1
],
[
0,
72
],
[
-20,
0
]
],
[
[
6155,
6666
],
[
-1,
211
],
[
40,
0
]
],
[
[
6194,
6877
],
[
0,
211
],
[
40,
0
],
[
0,
137
]
],
[
[
6234,
7225
],
[
157,
0
]
],
[
[
6391,
7225
],
[
-2,
-106
],
[
25,
-68
],
[
16,
-113
],
[
27,
-56
],
[
155,
48
]
],
[
[
6612,
6930
],
[
0,
-132
],
[
-21,
0
],
[
-50,
-79
],
[
0,
-130
]
],
[
[
6541,
6589
],
[
-9,
0
]
],
[
[
229,
6696
],
[