Skip to content

Instantly share code, notes, and snippets.

@oller
Forked from jefffriesen/README.md
Last active February 1, 2017 11:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oller/da646d7f4c8e78f5c229a9e4001ec415 to your computer and use it in GitHub Desktop.
Save oller/da646d7f4c8e78f5c229a9e4001ec415 to your computer and use it in GitHub Desktop.
Chrome SVG Performance Regression

An example of the Chrome performance regression handling complex SVGs

Steps to recreate

<!DOCTYPE html>
<meta charset="utf-8">
<style>
.zip {
fill: white;
stroke: #CCC;
stroke-width: .5px;
cursor: pointer;
}
.zip:hover {
fill: red;
}
</style>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/queue.v1.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script>
var width = 960,
height = 500;
var path = d3.geo.path();
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
queue()
.defer(d3.json, "zips_us_topo.json")
.await(ready);
function ready(error, us) {
svg.append("g")
.attr("class", "counties")
.selectAll("path")
.data(topojson.feature(us, us.objects.zip_codes_for_the_usa).features)
.enter().append("path")
.attr("class", "zip")
.attr("data-zip", function(d) {return d.properties.zip; })
.attr("data-state", function(d) {return d.properties.state; })
.attr("data-name", function(d) {return d.properties.name; })
.attr("d", path);
}
</script>
</body>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"zip_codes_for_the_usa":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"name":"MT MEADOWS AREA","zip":"00012","state":"CA"},"arcs":[[0,1,2]]},{"type":"Polygon","properties":{"name":"WEST PIMA COUNTY","zip":"00014","state":"AZ"},"arcs":[[3,4,5,6,7]]},{"type":"Polygon","properties":{"name":"CORONADO NTL FOREST","zip":"00015","state":"AZ"},"arcs":[[8,9,10,11,12,13,14,15,16,17,18]]},{"type":"Polygon","properties":{"name":"SEQUOIA NATIONAL FOREST","zip":"00016","state":"CA"},"arcs":[[19,20,21,22]]},{"type":"Polygon","properties":{"name":"NORTHEAST FRESNO COUNTY","zip":"00017","state":"CA"},"arcs":[[23,24,25,26,27,28,29]]},{"type":"Polygon","properties":{"name":"LOS PADRES NTL FOREST","zip":"00018","state":"CA"},"arcs":[[30,31,32,33,34,35,36,37]]},{"type":"Polygon","properties":{"name":"LASSEN NTL FOREST","zip":"00019","state":"CA"},"arcs":[[38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54]]},{"type":"Polygon","properties":{"name":"SIERRA NATIONAL FOREST","zip":"00020","state":"CA"},"arcs":[[55,56,57,58,59,60,-26]]},{"type":"Polygon","properties":{"name":"JACKSON ST FOREST","zip":"00022","state":"CA"},"arcs":[[61,62,63,64,65,66]]},{"type":"Polygon","properties":{"name":"EAST TULARE COUNTY","zip":"00026","state":"CA"},"arcs":[[67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84]]},{"type":"Polygon","properties":{"name":"PIKE NTL FOREST","zip":"00027","state":"CO"},"arcs":[[85,86,87,88,89,90,91,92,93]]},{"type":"MultiPolygon","properties":{"name":"PLUMAS NTL FOREST","zip":"00028","state":"CA"},"arcs":[[[94,95,96,97,98,99,100,101,102,103,104,105,106,107,108]],[[109,110,111,112,113,114]]]},{"type":"Polygon","properties":{"name":"TAHOE NATIONAL FOREST","zip":"00029","state":"CA"},"arcs":[[115,116,117]]},{"type":"Polygon","properties":{"name":"LASSEN NATIONAL FOREST","zip":"00031","state":"CA"},"arcs":[[118,119,120,121]]},{"type":"Polygon","properties":{"name":"LOS PADRES NTL FOREST","zip":"00032","state":"CA"},"arcs":[[122,123,124,125,126,127,128,-32,129,130,131]]},{"type":"Polygon","properties":{"name":"TAHOE NATIONAL FOREST","zip":"00033","state":"CA"},"arcs":[[132,133,134,135,136,137,138,139,140,141,142,143]]},{"type":"Polygon","properties":{"name":"KLAMATH NATIONAL FOREST","zip":"00034","state":"CA"},"arcs":[[144,145,146,147,148,149,150,151,152]]},{"type":"Polygon","properties":{"name":"MODOC/SHASTA/KLAMATH FOR","zip":"00035","state":"CA"},"arcs":[[153,154,155,156,157,158,159,160,161]]},{"type":"Polygon","properties":{"name":"WEST TEHAMA COUNTY","zip":"00037","state":"CA"},"arcs":[[162,163,164,165,166,167,168,169,170]]},{"type":"Polygon","properties":{"name":"EAST TEHAMA COUNTY","zip":"00038","state":"CA"},"arcs":[[171,172,173,174,175,176,177,178,-101]]},{"type":"Polygon","properties":{"name":"SOUTHEAST TRINITY COUNTY","zip":"00039","state":"CA"},"arcs":[[179,180,181,182,183,184,185,186,187,-166,188,189,190],[191]]},{"type":"Polygon","properties":{"name":"YOSEMITE NTL PARK","zip":"00040","state":"CA"},"arcs":[[192,193,194,195,196,197,198]]},{"type":"Polygon","properties":{"name":"WEST BROWARD COUNTY","zip":"00041","state":"FL"},"arcs":[[199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214]]},{"type":"Polygon","properties":{"name":"SOUTHWEST BREVARD CNTY","zip":"00042","state":"FL"},"arcs":[[215,216,217,218,219,220,221,222,223]]},{"type":"Polygon","properties":{"name":"EVERGLADES","zip":"00043","state":"FL"},"arcs":[[224,225,226,227,228,229,230,-204,231,232,233,234,235,236,237,238]]},{"type":"Polygon","properties":{"name":"SOUTH ALPINE COUNTY","zip":"00044","state":"CA"},"arcs":[[239,240,241,242,243,244]]},{"type":"Polygon","properties":{"name":"SOUTHEAST MARION CNTY","zip":"00045","state":"FL"},"arcs":[[245,246,247,248,249,250]]},{"type":"Polygon","properties":{"name":"WEST GLENN COUNTY","zip":"00047","state":"CA"},"arcs":[[251,252,253,254,-164,255]]},{"type":"Polygon","properties":{"name":"MENDOCINO NTL FOREST","zip":"00048","state":"CA"},"arcs":[[256,257,258,259,260,-254,261,262,263,264]]},{"type":"Polygon","properties":{"name":"SIX RIVERS NATIONAL FORE","zip":"00049","state":"CA"},"arcs":[[265,266,267,268,269,270,271]]},{"type":"Polygon","properties":{"name":"SIX RIVERS NTL FOREST","zip":"00050","state":"CA"},"arcs":[[272,273,-268,274,275,276,277]]},{"type":"Polygon","properties":{"name":"ELDORADO NTL FOREST","zip":"00051","state":"CA"},"arcs":[[278,279,280,281,282,283,284,285,286,287]]},{"type":"Polygon","properties":{"name":"ELDORADO NTL FOREST","zip":"00052","state":"CA"},"arcs":[[288,289,290,291,292,293,294]]},{"type":"Polygon","properties":{"name":"SOUTHWEST PALM BEACH CO","zip":"00053","state":"FL"},"arcs":[[295,296,-208,297,298,299,300,301,302,303,304,305]]},{"type":"MultiPolygon","properties":{"name":"SIX RIVERS NTL FOREST","zip":"00054","state":"CA"},"arcs":[[[306,307,308,309,310]],[[311,312,313,314,315,316,317,318,319]]]},{"type":"Polygon","properties":{"name":"TRINITY NTL FOREST","zip":"00055","state":"CA"},"arcs":[[320,321,-277,322,323,324]]},{"type":"Polygon","properties":{"name":"SNAKE RIV BIRDS OF PREY","zip":"00056","state":"ID"},"arcs":[[325,326,327,328,329]]},{"type":"MultiPolygon","properties":{"name":"CHANNEL ISLANDS NATIONAL PK","zip":"00057","state":"CA"},"arcs":[[[330]],[[331]]]},{"type":"Polygon","properties":{"name":"YOSEMITE NTL PARK","zip":"00058","state":"CA"},"arcs":[[332,333,334,-58,335,336]]},{"type":"Polygon","properties":{"name":"VOYAGEURS NATL PARK","zip":"00059","state":"MN"},"arcs":[[337,338,339,340,341]]},{"type":"Polygon","properties":{"name":"SUPERIOR NATIONAL FOREST","zip":"00060","state":"MN"},"arcs":[[342,343,344,345,346,347]]},{"type":"Polygon","properties":{"name":"BENTON LAKE NWR","zip":"00063","state":"MT"},"arcs":[[348,349,350,351]]},{"type":"MultiPolygon","properties":{"name":"SANDOVAL COUNTY","zip":"00064","state":"NM"},"arcs":[[[352,353,354,355,356,357,358,359,360,361,362,363,364,365]],[[366,367,368,369,370,371,372,373]]]},{"type":"Polygon","properties":{"name":"PLUMAS NATIONAL PARK","zip":"00065","state":"CA"},"arcs":[[374,375,376,377,378,379,380,-139,381,382,383]]},{"type":"Polygon","properties":{"name":"WHITE SANDS MISSILE RNGE","zip":"00066","state":"NM"},"arcs":[[384,385,386,387,388,389]]},{"type":"Polygon","properties":{"name":"N CENTRAL COMANCHE CNTY","zip":"00067","state":"OK"},"arcs":[[390,391,392,393,394,395,396,397,398,399,400]]},{"type":"Polygon","properties":{"name":"SIUSLAW NTL FOREST","zip":"00068","state":"OR"},"arcs":[[401,402,403,404,405]]},{"type":"MultiPolygon","properties":{"name":"WILLAMETTE NATIONAL FOR","zip":"00069","state":"OR"},"arcs":[[[406,407,408,409,410,411,412,413,414]],[[415,416,417,418,419,420,421]]]},{"type":"Polygon","properties":{"name":"MT HOOD NATIONAL FOREST","zip":"00070","state":"OR"},"arcs":[[422,423,424,425,426,427,428,429,430,431]]},{"type":"Polygon","properties":{"name":"UINTA NTL FOREST","zip":"00071","state":"UT"},"arcs":[[432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449]]},{"type":"Polygon","properties":{"name":"NATIONAL FOREST/PARK","zip":"00072","state":"WA"},"arcs":[[450,451,452,453,454,455,456]]},{"type":"Polygon","properties":{"name":"USDOE HANFORD SITE","zip":"00073","state":"WA"},"arcs":[[457,458,459,460,461]]},{"type":"Polygon","properties":{"name":"YAKIMA INDIAN RES","zip":"00074","state":"WA"},"arcs":[[462,463,464,465,466,467,468,469,470,471,472,473,474]]},{"type":"MultiPolygon","properties":{"name":"YELLOWSTONE NATL PARK","zip":"00075","state":"MT"},"arcs":[[[475,476,477,478,479]],[[480,481,482,483,484]]]},{"type":"Polygon","properties":{"name":"OKANOGAN NATL PARK","zip":"00076","state":"WA"},"arcs":[[485,-455,486,487,488,489,490]]},{"type":"Polygon","properties":{"name":"WILLAMETTE NATL FOREST","zip":"00077","state":"OR"},"arcs":[[491,492,-412,493,494,495,496,497,498,499,500,501,502,503,504]]},{"type":"Polygon","properties":{"name":"YELOWSTONE","zip":"00078","state":"ID"},"arcs":[[505,506,-477,507]]},{"type":"Polygon","properties":{"name":"LAKE MEMPHREMAGOG","zip":"00082","state":"VT"},"arcs":[[508,509,510]]},{"type":"Polygon","properties":{"name":"CENTRAL PARK","zip":"00083","state":"NY"},"arcs":[[511,512,513,514,515,516,517,518,519]]},{"type":"Polygon","properties":{"name":"HOFFMAN FOREST","zip":"00084","state":"NC"},"arcs":[[520,521,522,523]]},{"type":"Polygon","properties":{"name":"NW INDIAN RIVER COUNTY","zip":"00087","state":"FL"},"arcs":[[524,525,526,527,-217,528]]},{"type":"MultiPolygon","properties":{"name":"EVERGLADES-MONROE COUNTY","zip":"00097","state":"FL"},"arcs":[[[529,530,531,-230]],[[532]]]},{"type":"MultiPolygon","properties":{"name":"EVERGLADES-S MONROE CNTY","zip":"00098","state":"FL"},"arcs":[[[-530,-229,533]],[[534]]]},{"type":"MultiPolygon","properties":{"name":"WASATCH NATIONAL FOREST","zip":"00100","state":"UT"},"arcs":[[[535,536,537,538,539,540,541,542,543,544,545]],[[546,547,548,549]]]},{"type":"Polygon","properties":{"name":"MARSH ISLAND","zip":"00116","state":"LA"},"arcs":[[550]]},{"type":"Polygon","properties":{"name":"CHANDELEUR ISLANDS","zip":"00122","state":"LA"},"arcs":[[551]]},{"type":"Polygon","properties":{"name":"NORTHWEST AROOSTOOK","zip":"00125","state":"ME"},"arcs":[[552,553,554,555,556,557,558,559,560,561,562,563,564],[565]]},{"type":"Polygon","properties":{"name":"NORTH FRANKLIN COUNTY","zip":"00126","state":"ME"},"arcs":[[566,567,568,569,570,571]]},{"type":"Polygon","properties":{"name":"EAST HANCOCK COUNTY","zip":"00127","state":"ME"},"arcs":[[572,573,574,575,576,577,578,579,580,581,582]]},{"type":"Polygon","properties":{"name":"NORTH OXFORD COUNTY","zip":"00128","state":"ME"},"arcs":[[583,584,585,-569,586]]},{"type":"Polygon","properties":{"name":"NORTH PENOBSCOT COUNTY","zip":"00130","state":"ME"},"arcs":[[587,588,589,590,591,592,593,594,595,596,597],[598]]},{"type":"Polygon","properties":{"name":"NORTH SOMERSET COUNTY","zip":"00132","state":"ME"},"arcs":[[599,600,601,-558,602,603]]},{"type":"Polygon","properties":{"name":"WEST CENTRAL SOMERSET CO","zip":"00133","state":"ME"},"arcs":[[604,605,606,607,608,609,-571,610,611,612,613]]},{"type":"Polygon","properties":{"name":"NORTHERN WASHINGTON CO","zip":"00134","state":"ME"},"arcs":[[614,615,616,617,618,619,620,621,622,-583]]},{"type":"Polygon","properties":{"name":"NORTHERN PISCATAQUIS CNT","zip":"00135","state":"ME"},"arcs":[[623,624,625,-603,-557,626,-589,627,628,629,630,631]]},{"type":"Polygon","properties":{"name":"CENTRAL AROOSTOOK CNTY","zip":"00137","state":"ME"},"arcs":[[632,633,634,635,636,-554,637,638,639,640,641]]},{"type":"Polygon","properties":{"name":"SOUTH AROOSTOOK CNTY","zip":"00138","state":"ME"},"arcs":[[642,643,644,645,646,647,648]]},{"type":"Polygon","properties":{"name":"TWPS D-E-6-FRANKLIN CNTY","zip":"00139","state":"ME"},"arcs":[[649,650,651,652,653]]},{"type":"Polygon","properties":{"name":"WYMAN TWP-FRANKLIN CNTY","zip":"00140","state":"ME"},"arcs":[[654,-608,655]]},{"type":"Polygon","properties":{"name":"T3 R1 NBPP-PENOBSCOT CO","zip":"00141","state":"ME"},"arcs":[[656,657,658,-581]]},{"type":"Polygon","properties":{"name":"E CENTRAL SOMERSET CNTY","zip":"00145","state":"ME"},"arcs":[[659,660,661,662,663,664]]},{"type":"Polygon","properties":{"name":"EAST CENTRAL FRANKLIN","zip":"00147","state":"ME"},"arcs":[[665,666,667,668,669]]},{"type":"Polygon","properties":{"name":"NE AROOSTOOK COUNTY","zip":"00148","state":"ME"},"arcs":[[670,671,672,-564,673,674,675]]},{"type":"Polygon","properties":{"name":"S CENTRAL WASHINGTON CO","zip":"00151","state":"ME"},"arcs":[[676,677,678,679,680,681]]},{"type":"Polygon","properties":{"name":"ASSATEAGUE ISLAND NTL SE","zip":"00152","state":"MD"},"arcs":[[682,683]]},{"type":"MultiPolygon","properties":{"name":"SUPERIOR NATIONAL FOREST","zip":"00160","state":"MN"},"arcs":[[[684,685,686,687,688,689,690,691]],[[692,693,694]]]},{"type":"Polygon","properties":{"name":"SUPERIOR NATIONAL FOREST","zip":"00161","state":"MN"},"arcs":[[695,696,697,-346,698,-688]]},{"type":"Polygon","properties":{"name":"NORTHWEST BELTRAMI CNTY","zip":"00164","state":"MN"},"arcs":[[699,700,701]]},{"type":"Polygon","properties":{"name":"BELTRAMI ISL STATE FOR","zip":"00165","state":"MN"},"arcs":[[702,703,-700,704,705,706,707]]},{"type":"Polygon","properties":{"name":"RED LAKE INDIAN RES","zip":"00166","state":"MN"},"arcs":[[708,709,-703,710,711,712,713,714,715]]},{"type":"Polygon","properties":{"name":"BEANS PURCHASE","zip":"00168","state":"NH"},"arcs":[[716,717,718,719,720,721,722]]},{"type":"Polygon","properties":{"name":"SUCCESS","zip":"00169","state":"NH"},"arcs":[[723,724,725,726]]},{"type":"Polygon","properties":{"name":"SECOND COLLEGE GRANT","zip":"00170","state":"NH"},"arcs":[[727,728,729,730]]},{"type":"Polygon","properties":{"name":"HADLEYS PURCHASE","zip":"00172","state":"NH"},"arcs":[[731,732,733]]},{"type":"Polygon","properties":{"name":"CUTTS GRANT","zip":"00173","state":"NH"},"arcs":[[734,735,736,737,-733]]},{"type":"Polygon","properties":{"name":"BEANS GRANT","zip":"00174","state":"NH"},"arcs":[[738,739,740,741,-736]]},{"type":"Polygon","properties":{"name":"SARGENTS PURCHASE","zip":"00176","state":"NH"},"arcs":[[742,743,-734,-738,744,745,746]]},{"type":"Polygon","properties":{"name":"PINKHAM GRANT","zip":"00177","state":"NH"},"arcs":[[747,-747,748,749,-717]]},{"type":"Polygon","properties":{"name":"CHANDLERS PURCHASE","zip":"00179","state":"NH"},"arcs":[[-737,-742,750,751,752,-745]]},{"type":"Polygon","properties":{"name":"THOMPSON/MESERVES PURCH","zip":"00180","state":"NH"},"arcs":[[-753,753,754,755,756,-749,-746]]},{"type":"Polygon","properties":{"name":"LOW AND BURBANKS GRANT","zip":"00181","state":"NH"},"arcs":[[757,758,759,760,-754,-752]]},{"type":"Polygon","properties":{"name":"CRAWFORDS PURCHASE","zip":"00182","state":"NH"},"arcs":[[761,-758,-751,-741]]},{"type":"Polygon","properties":{"name":"GREENS GRANT","zip":"00183","state":"NH"},"arcs":[[-750,-757,762,-718]]},{"type":"Polygon","properties":{"name":"MARTINS LOCATION","zip":"00184","state":"NH"},"arcs":[[-756,763,-719,-763]]},{"type":"Polygon","properties":{"name":"KILKENNY","zip":"00185","state":"NH"},"arcs":[[764,765,766,767,768]]},{"type":"Polygon","properties":{"name":"ERVINGS LOCATION","zip":"00186","state":"NH"},"arcs":[[769,770,771]]},{"type":"Polygon","properties":{"name":"DIX GRANT","zip":"00187","state":"NH"},"arcs":[[772,773,774,-729]]},{"type":"Polygon","properties":{"name":"PADRE ISLAND NTL SEASHOR","zip":"00188","state":"TX"},"arcs":[[775,776]]},{"type":"Polygon","properties":{"name":"WARNERS GRANT","zip":"00190","state":"VT"},"arcs":[[777,778,779,780]]},{"type":"Polygon","properties":{"name":"WEST WARREN GORE","zip":"00191","state":"VT"},"arcs":[[781,782,783,-778]]},{"type":"Polygon","properties":{"name":"LEWIS MCD","zip":"00192","state":"VT"},"arcs":[[784,785,786,787]]},{"type":"Polygon","properties":{"name":"B M GOLDWATER A F RANGE","zip":"00197","state":"AZ"},"arcs":[[788,789,790,-5,791,792,793,794,795,796,797,798,799,800,801]]},{"type":"Polygon","properties":{"name":"TONTO NATIONAL FOREST","zip":"00199","state":"AZ"},"arcs":[[802,803,804,805]]},{"type":"Polygon","properties":{"name":"AGAWAM","zip":"01001","state":"MA"},"arcs":[[806,807,808,809,810]]},{"type":"Polygon","properties":{"name":"AMHERST","zip":"01002","state":"MA"},"arcs":[[811,812,813,814,815,816,817,818]]},{"type":"Polygon","properties":{"name":"BARRE","zip":"01005","state":"MA"},"arcs":[[819,820,821,822,823,824,825]]},{"type":"Polygon","properties":{"name":"BELCHERTOWN","zip":"01007","state":"MA"},"arcs":[[826,827,828,829,-812,830,831]]},{"type":"Polygon","properties":{"name":"BLANDFORD","zip":"01008","state":"MA"},"arcs":[[832,833,834,835,836]]},{"type":"Polygon","properties":{"name":"BRIMFIELD","zip":"01010","state":"MA"},"arcs":[[837,838,839,840,841,842,843,844]]},{"type":"Polygon","properties":{"name":"CHESTER","zip":"01011","state":"MA"},"arcs":[[845,-836,846,847,848,849]]},{"type":"Polygon","properties":{"name":"CHESTERFIELD","zip":"01012","state":"MA"},"arcs":[[850,851,852,853]]},{"type":"Polygon","properties":{"name":"CHICOPEE","zip":"01013","state":"MA"},"arcs":[[854,855,856,857,858]]},{"type":"Polygon","properties":{"name":"CHICOPEE","zip":"01020","state":"MA"},"arcs":[[859,860,-857,861,862,863,864,865]]},{"type":"Polygon","properties":{"name":"CHICOPEE","zip":"01022","state":"MA"},"arcs":[[866,867,-865]]},{"type":"Polygon","properties":{"name":"CUMMINGTON","zip":"01026","state":"MA"},"arcs":[[868,-853,869,870,871,872,873,874,875,876]]},{"type":"Polygon","properties":{"name":"EASTHAMPTON","zip":"01027","state":"MA"},"arcs":[[877,-851,878,879,880,881,882,883,884]]},{"type":"Polygon","properties":{"name":"EAST LONGMEADOW","zip":"01028","state":"MA"},"arcs":[[885,886,887,888,889,890,891,892]]},{"type":"Polygon","properties":{"name":"FEEDING HILLS","zip":"01030","state":"MA"},"arcs":[[893,894,895,896,897,-809]]},{"type":"Polygon","properties":{"name":"GILBERTVILLE","zip":"01031","state":"MA"},"arcs":[[898,899,-820,900]]},{"type":"Polygon","properties":{"name":"GOSHEN","zip":"01032","state":"MA"},"arcs":[[901,-877,902]]},{"type":"Polygon","properties":{"name":"GRANBY","zip":"01033","state":"MA"},"arcs":[[903,-813,-830,904,-867,-864]]},{"type":"Polygon","properties":{"name":"GRANVILLE","zip":"01034","state":"MA"},"arcs":[[905,906,-834,907,908,909,910,911,912]]},{"type":"Polygon","properties":{"name":"HADLEY","zip":"01035","state":"MA"},"arcs":[[913,914,915,-815,916,-883]]},{"type":"Polygon","properties":{"name":"HAMPDEN","zip":"01036","state":"MA"},"arcs":[[917,918,919,-891,920]]},{"type":"Polygon","properties":{"name":"HATFIELD","zip":"01038","state":"MA"},"arcs":[[921,922,923,-915]]},{"type":"Polygon","properties":{"name":"HAYDENVILLE","zip":"01039","state":"MA"},"arcs":[[924,925,926,927,928,929]]},{"type":"Polygon","properties":{"name":"HOLYOKE","zip":"01040","state":"MA"},"arcs":[[930,931,-884,932,-862,-856,933]]},{"type":"Polygon","properties":{"name":"HUNTINGTON","zip":"01050","state":"MA"},"arcs":[[934,935,936,-870,-852,-878,937,938,939,-837,-846]]},{"type":"Polygon","properties":{"name":"LEEDS","zip":"01053","state":"MA"},"arcs":[[940,-926,941,-880]]},{"type":"Polygon","properties":{"name":"LEVERETT","zip":"01054","state":"MA"},"arcs":[[942,943,944,945,-817]]},{"type":"Polygon","properties":{"name":"LUDLOW","zip":"01056","state":"MA"},"arcs":[[-868,-905,-829,946,947,948,-866]]},{"type":"Polygon","properties":{"name":"MONSON","zip":"01057","state":"MA"},"arcs":[[949,950,-839,951,952,-918]]},{"type":"Polygon","properties":{"name":"NORTHAMPTON","zip":"01060","state":"MA"},"arcs":[[-882,953,954,-922,-914]]},{"type":"Polygon","properties":{"name":"FLORENCE","zip":"01062","state":"MA"},"arcs":[[-881,-942,-925,-954]]},{"type":"Polygon","properties":{"name":"OAKHAM","zip":"01068","state":"MA"},"arcs":[[955,-825,956,957,958]]},{"type":"Polygon","properties":{"name":"PALMER","zip":"01069","state":"MA"},"arcs":[[959,960,-827,961,962,-840,-951]]},{"type":"Polygon","properties":{"name":"PLAINFIELD","zip":"01070","state":"MA"},"arcs":[[963,-875,964,965,966]]},{"type":"Polygon","properties":{"name":"RUSSELL","zip":"01071","state":"MA"},"arcs":[[967,-908,-833,-940]]},{"type":"Polygon","properties":{"name":"SHUTESBURY","zip":"01072","state":"MA"},"arcs":[[968,-818,-946,969]]},{"type":"Polygon","properties":{"name":"SOUTHAMPTON","zip":"01073","state":"MA"},"arcs":[[970,-938,-885,-932]]},{"type":"Polygon","properties":{"name":"SOUTH HADLEY","zip":"01075","state":"MA"},"arcs":[[-917,-814,-904,-863,-933]]},{"type":"Polygon","properties":{"name":"SOUTHWICK","zip":"01077","state":"MA"},"arcs":[[971,-896,972,973,974,-910]]},{"type":"Polygon","properties":{"name":"THREE RIVERS","zip":"01080","state":"MA"},"arcs":[[975,-947,-828,-961]]},{"type":"Polygon","properties":{"name":"WALES","zip":"01081","state":"MA"},"arcs":[[976,977,-952,-838]]},{"type":"Polygon","properties":{"name":"WARE","zip":"01082","state":"MA"},"arcs":[[978,-962,-832,979,980,-899,981,982]]},{"type":"Polygon","properties":{"name":"WEST CHESTERFIELD","zip":"01084","state":"MA"},"arcs":[[983,-871,-937]]},{"type":"Polygon","properties":{"name":"WESTFIELD","zip":"01085","state":"MA"},"arcs":[[-968,-939,-971,-931,984,-897,-972,-909]]},{"type":"Polygon","properties":{"name":"WEST HATFIELD","zip":"01088","state":"MA"},"arcs":[[-955,-930,985,-923]]},{"type":"Polygon","properties":{"name":"WEST SPRINGFIELD","zip":"01089","state":"MA"},"arcs":[[986,-810,-898,-985,-934,-855,987,988]]},{"type":"Polygon","properties":{"name":"WEST WARREN","zip":"01092","state":"MA"},"arcs":[[989,-841,-963,-979]]},{"type":"Polygon","properties":{"name":"WILBRAHAM","zip":"01095","state":"MA"},"arcs":[[990,991,992,-948,-976,-960,-950,-921,-890]]},{"type":"Polygon","properties":{"name":"WILLIAMSBURG","zip":"01096","state":"MA"},"arcs":[[-879,-854,-869,-902,993,994,-927,-941]]},{"type":"Polygon","properties":{"name":"WORTHINGTON","zip":"01098","state":"MA"},"arcs":[[-936,995,996,-872,-984]]},{"type":"Polygon","properties":{"name":"SPRINGFIELD","zip":"01104","state":"MA"},"arcs":[[-989,997,-858,-861,998,999,1000]]},{"type":"Polygon","properties":{"name":"SPRINGFIELD","zip":"01105","state":"MA"},"arcs":[[-987,-1001,1001,1002,1003,-811]]},{"type":"Polygon","properties":{"name":"LONGMEADOW","zip":"01106","state":"MA"},"arcs":[[-1004,1004,-886,1005,1006,-807]]},{"type":"Polygon","properties":{"name":"SPRINGFIELD","zip":"01107","state":"MA"},"arcs":[[-859,-998,-988]]},{"type":"Polygon","properties":{"name":"SPRINGFIELD","zip":"01108","state":"MA"},"arcs":[[-1005,-1003,1007,1008,-887]]},{"type":"Polygon","properties":{"name":"SPRINGFIELD","zip":"01109","state":"MA"},"arcs":[[-1000,1009,1010,-1008,-1002]]},{"type":"Polygon","properties":{"name":"SPRINGFIELD","zip":"01118","state":"MA"},"arcs":[[1011,-888,-1009,-1011,1012,1013]]},{"type":"Polygon","properties":{"name":"SPRINGFIELD","zip":"01119","state":"MA"},"arcs":[[1014,1015,-1013,-1010]]},{"type":"Polygon","properties":{"name":"SPRINGFIELD","zip":"01128","state":"MA"},"arcs":[[1016,-991,-889,-1012]]},{"type":"Polygon","properties":{"name":"SPRINGFIELD","zip":"01129","state":"MA"},"arcs":[[-1017,-1014,-1016,1017,-992]]},{"type":"Polygon","properties":{"name":"INDIAN ORCHARD","zip":"01151","state":"MA"},"arcs":[[-1015,-999,-860,-949,-993,-1018]]},{"type":"Polygon","properties":{"name":"PITTSFIELD","zip":"01201","state":"MA"},"arcs":[[1018,1019,1020,1021,1022,1023,1024,1025,1026]]},{"type":"Polygon","properties":{"name":"ADAMS","zip":"01220","state":"MA"},"arcs":[[1027,1028,1029,1030,1031]]},{"type":"Polygon","properties":{"name":"ASHLEY FALLS","zip":"01222","state":"MA"},"arcs":[[1032,1033,1034]]},{"type":"Polygon","properties":{"name":"BECKET","zip":"01223","state":"MA"},"arcs":[[1035,-849,1036,1037,-1019,1038,1039]]},{"type":"Polygon","properties":{"name":"BERKSHIRE","zip":"01224","state":"MA"},"arcs":[[1040,-1026,1041,1042]]},{"type":"Polygon","properties":{"name":"CHESHIRE","zip":"01225","state":"MA"},"arcs":[[1043,-1029,1044,1045,1046,-1043]]},{"type":"Polygon","properties":{"name":"DALTON","zip":"01226","state":"MA"},"arcs":[[-1041,-1047,1047,1048,-1039,-1027]]},{"type":"Polygon","properties":{"name":"GREAT BARRINGTON","zip":"01230","state":"MA"},"arcs":[[1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060]]},{"type":"Polygon","properties":{"name":"HINSDALE","zip":"01235","state":"MA"},"arcs":[[1061,-1040,-1049,1062,-873,-997]]},{"type":"Polygon","properties":{"name":"HOUSATONIC","zip":"01236","state":"MA"},"arcs":[[1063,1064,-1054]]},{"type":"Polygon","properties":{"name":"LANESBORO","zip":"01237","state":"MA"},"arcs":[[-1042,-1025,1065,1066,1067,-1030,-1044]]},{"type":"Polygon","properties":{"name":"LEE","zip":"01238","state":"MA"},"arcs":[[1068,1069,-1037,-848,1070,1071,-1056]]},{"type":"Polygon","properties":{"name":"LENOX","zip":"01240","state":"MA"},"arcs":[[1072,1073,-1020,-1038,-1070,1074]]},{"type":"Polygon","properties":{"name":"MIDDLEFIELD","zip":"01243","state":"MA"},"arcs":[[-1062,-996,-935,-850,-1036]]},{"type":"Polygon","properties":{"name":"MONTEREY","zip":"01245","state":"MA"},"arcs":[[-1072,1075,-1057]]},{"type":"Polygon","properties":{"name":"NORTH ADAMS","zip":"01247","state":"MA"},"arcs":[[1076,1077,-1032,1078,1079,1080,1081,1082]]},{"type":"Polygon","properties":{"name":"OTIS","zip":"01253","state":"MA"},"arcs":[[-907,1083,-1058,-1076,-1071,-847,-835]]},{"type":"Polygon","properties":{"name":"RICHMOND","zip":"01254","state":"MA"},"arcs":[[1084,1085,-1021,-1074]]},{"type":"Polygon","properties":{"name":"SANDISFIELD","zip":"01255","state":"MA"},"arcs":[[1086,1087,1088,1089,-1059,-1084,-906]]},{"type":"Polygon","properties":{"name":"SAVOY","zip":"01256","state":"MA"},"arcs":[[1090,-966,1091,-1045,-1028,-1078,1092]]},{"type":"Polygon","properties":{"name":"SHEFFIELD","zip":"01257","state":"MA"},"arcs":[[1093,1094,1095,-1061,1096,-1034]]},{"type":"Polygon","properties":{"name":"SOUTH EGREMONT","zip":"01258","state":"MA"},"arcs":[[1097,1098,1099,1100,-1050,-1096]]},{"type":"Polygon","properties":{"name":"SOUTHFIELD","zip":"01259","state":"MA"},"arcs":[[1101,1102,-1035,-1097,-1060,-1090]]},{"type":"Polygon","properties":{"name":"STOCKBRIDGE","zip":"01262","state":"MA"},"arcs":[[-1055,-1065,1103,-1075,-1069]]},{"type":"Polygon","properties":{"name":"WEST STOCKBRIDGE","zip":"01266","state":"MA"},"arcs":[[-1053,1104,1105,1106,-1085,-1073,-1104,-1064]]},{"type":"Polygon","properties":{"name":"WILLIAMSTOWN","zip":"01267","state":"MA"},"arcs":[[-1068,1107,1108,1109,-1079,-1031]]},{"type":"Polygon","properties":{"name":"WINDSOR","zip":"01270","state":"MA"},"arcs":[[-1046,-1092,-965,-874,-1063,-1048]]},{"type":"Polygon","properties":{"name":"GREENFIELD","zip":"01301","state":"MA"},"arcs":[[1110,1111,1112,1113,1114]]},{"type":"Polygon","properties":{"name":"ASHFIELD","zip":"01330","state":"MA"},"arcs":[[-876,-964,1115,1116,1117,1118,-994,-903]]},{"type":"Polygon","properties":{"name":"ATHOL","zip":"01331","state":"MA"},"arcs":[[1119,-822,1120,1121,1122,1123,1124,1125]]},{"type":"Polygon","properties":{"name":"BERNARDSTON","zip":"01337","state":"MA"},"arcs":[[1126,-1113,1127,1128,1129,1130]]},{"type":"Polygon","properties":{"name":"BUCKLAND","zip":"01338","state":"MA"},"arcs":[[1131,1132,-1117]]},{"type":"Polygon","properties":{"name":"CHARLEMONT","zip":"01339","state":"MA"},"arcs":[[1133,1134,1135,1136,-1132,-1116,-967,-1091]]},{"type":"Polygon","properties":{"name":"COLRAIN","zip":"01340","state":"MA"},"arcs":[[1137,1138,1139,1140,1141,1142,-1128,-1112,1143]]},{"type":"Polygon","properties":{"name":"CONWAY","zip":"01341","state":"MA"},"arcs":[[1144,-928,-995,-1119,1145,1146]]},{"type":"Polygon","properties":{"name":"DEERFIELD","zip":"01342","state":"MA"},"arcs":[[1147,1148,1149,-1147,1150,-1115,1151]]},{"type":"Polygon","properties":{"name":"DRURY","zip":"01343","state":"MA"},"arcs":[[-1093,-1077,1152,-1134]]},{"type":"Polygon","properties":{"name":"ERVING","zip":"01344","state":"MA"},"arcs":[[1153,1154,1155,1156,1157]]},{"type":"Polygon","properties":{"name":"HEATH","zip":"01346","state":"MA"},"arcs":[[1158,-1138,1159,-1136]]},{"type":"Polygon","properties":{"name":"TURNERS FALLS","zip":"01349","state":"MA"},"arcs":[[1160,1161,1162,1163,-1155]]},{"type":"Polygon","properties":{"name":"MONROE BRIDGE","zip":"01350","state":"MA"},"arcs":[[1164,-1082,1165,1166]]},{"type":"Polygon","properties":{"name":"MONTAGUE","zip":"01351","state":"MA"},"arcs":[[1167,-1148,1168,-1162,1169,-944]]},{"type":"Polygon","properties":{"name":"NEW SALEM","zip":"01355","state":"MA"},"arcs":[[-969,1170,1171,-1122,1172,-980,-831,-819]]},{"type":"Polygon","properties":{"name":"NORTHFIELD","zip":"01360","state":"MA"},"arcs":[[-1164,1173,-1131,1174,1175,1176,1177,-1156]]},{"type":"Polygon","properties":{"name":"ORANGE","zip":"01364","state":"MA"},"arcs":[[1178,-1158,1179,1180,-1123,-1172]]},{"type":"Polygon","properties":{"name":"PETERSHAM","zip":"01366","state":"MA"},"arcs":[[-1121,-821,-900,-981,-1173]]},{"type":"Polygon","properties":{"name":"ROWE","zip":"01367","state":"MA"},"arcs":[[-1165,1181,-1139,-1159,-1135,-1153,-1083]]},{"type":"Polygon","properties":{"name":"ROYALSTON","zip":"01368","state":"MA"},"arcs":[[1182,1183,-1124,-1181,1184,1185,1186]]},{"type":"Polygon","properties":{"name":"SHELBURNE FALLS","zip":"01370","state":"MA"},"arcs":[[-1146,-1118,-1133,-1137,-1160,-1144,-1111,-1151]]},{"type":"Polygon","properties":{"name":"SOUTH DEERFIELD","zip":"01373","state":"MA"},"arcs":[[-986,-929,-1145,-1150,1187,-924]]},{"type":"Polygon","properties":{"name":"SUNDERLAND","zip":"01375","state":"MA"},"arcs":[[-916,-1188,-1149,-1168,-943,-816]]},{"type":"Polygon","properties":{"name":"TURNERS FALLS","zip":"01376","state":"MA"},"arcs":[[-1127,-1174,-1163,-1169,-1152,-1114]]},{"type":"Polygon","properties":{"name":"WARWICK","zip":"01378","state":"MA"},"arcs":[[-1157,-1178,1188,-1185,-1180]]},{"type":"Polygon","properties":{"name":"WENDELL","zip":"01379","state":"MA"},"arcs":[[-1170,-1161,-1154,-1179,-1171,-970,-945]]},{"type":"Polygon","properties":{"name":"FITCHBURG","zip":"01420","state":"MA"},"arcs":[[1189,1190,1191,1192,1193]]},{"type":"Polygon","properties":{"name":"ASHBURNHAM","zip":"01430","state":"MA"},"arcs":[[1194,1195,1196,1197,1198,1199,-1191]]},{"type":"Polygon","properties":{"name":"ASHBY","zip":"01431","state":"MA"},"arcs":[[1200,1201,1202,1203,-1192,-1200]]},{"type":"Polygon","properties":{"name":"AYER","zip":"01432","state":"MA"},"arcs":[[1204,1205,1206,1207,1208]]},{"type":"Polygon","properties":{"name":"BALDWINVILLE","zip":"01436","state":"MA"},"arcs":[[-1184,1209,1210,1211,-1125]]},{"type":"Polygon","properties":{"name":"GARDNER","zip":"01440","state":"MA"},"arcs":[[1212,-1211,1213,-1196,1214,1215]]},{"type":"Polygon","properties":{"name":"GROTON","zip":"01450","state":"MA"},"arcs":[[1216,1217,-1208,1218,1219,1220,1221,1222]]},{"type":"Polygon","properties":{"name":"HARVARD","zip":"01451","state":"MA"},"arcs":[[1223,1224,1225,1226,-1205,1227]]},{"type":"Polygon","properties":{"name":"HUBBARDSTON","zip":"01452","state":"MA"},"arcs":[[1228,1229,-823,-1120,1230,-1216,1231]]},{"type":"Polygon","properties":{"name":"LEOMINSTER","zip":"01453","state":"MA"},"arcs":[[1232,1233,-1194,1234,1235,1236]]},{"type":"Polygon","properties":{"name":"LITTLETON","zip":"01460","state":"MA"},"arcs":[[-1209,-1218,1237,1238,1239,-1228]]},{"type":"Polygon","properties":{"name":"LUNENBURG","zip":"01462","state":"MA"},"arcs":[[-1193,-1204,1240,1241,1242,1243,-1235]]},{"type":"Polygon","properties":{"name":"PEPPERELL","zip":"01463","state":"MA"},"arcs":[[1244,1245,1246,1247,-1221]]},{"type":"Polygon","properties":{"name":"SHIRLEY","zip":"01464","state":"MA"},"arcs":[[1248,-1243,1249,-1219,-1207]]},{"type":"Polygon","properties":{"name":"TEMPLETON","zip":"01468","state":"MA"},"arcs":[[-1126,-1212,-1213,-1231]]},{"type":"Polygon","properties":{"name":"TOWNSEND","zip":"01469","state":"MA"},"arcs":[[1250,1251,1252,-1245,-1220,-1250,-1242]]},{"type":"Polygon","properties":{"name":"WESTMINSTER","zip":"01473","state":"MA"},"arcs":[[1253,-1232,-1215,-1195,-1190,-1234]]},{"type":"Polygon","properties":{"name":"WEST TOWNSEND","zip":"01474","state":"MA"},"arcs":[[-1241,-1203,1254,-1251]]},{"type":"Polygon","properties":{"name":"WINCHENDON","zip":"01475","state":"MA"},"arcs":[[-1210,-1183,1255,1256,-1197,-1214]]},{"type":"Polygon","properties":{"name":"AUBURN","zip":"01501","state":"MA"},"arcs":[[1257,1258,1259,1260,1261,1262,1263,1264]]},{"type":"Polygon","properties":{"name":"BERLIN","zip":"01503","state":"MA"},"arcs":[[1265,1266,1267,1268,1269,1270]]},{"type":"Polygon","properties":{"name":"BLACKSTONE","zip":"01504","state":"MA"},"arcs":[[1271,1272,1273,1274,1275]]},{"type":"Polygon","properties":{"name":"BOYLSTON","zip":"01505","state":"MA"},"arcs":[[1276,1277,1278,1279,1280,-1266]]},{"type":"Polygon","properties":{"name":"BROOKFIELD","zip":"01506","state":"MA"},"arcs":[[1281,1282,1283,1284,1285,-843]]},{"type":"Polygon","properties":{"name":"CHARLTON","zip":"01507","state":"MA"},"arcs":[[1286,1287,1288,1289,1290,1291,1292,1293]]},{"type":"Polygon","properties":{"name":"CLINTON","zip":"01510","state":"MA"},"arcs":[[-1281,1294,1295,1296,-1267]]},{"type":"Polygon","properties":{"name":"EAST BROOKFIELD","zip":"01515","state":"MA"},"arcs":[[1297,-1284,1298,1299,-1291]]},{"type":"Polygon","properties":{"name":"DOUGLAS","zip":"01516","state":"MA"},"arcs":[[1300,1301,1302,1303,1304,1305,1306]]},{"type":"Polygon","properties":{"name":"FISKDALE","zip":"01518","state":"MA"},"arcs":[[1307,-844,-1286,1308]]},{"type":"Polygon","properties":{"name":"GRAFTON","zip":"01519","state":"MA"},"arcs":[[1309,1310,1311,1312,1313,1314]]},{"type":"Polygon","properties":{"name":"HOLDEN","zip":"01520","state":"MA"},"arcs":[[1315,1316,1317,1318,1319,1320,1321]]},{"type":"Polygon","properties":{"name":"HOLLAND","zip":"01521","state":"MA"},"arcs":[[1322,1323,-977,-845,-1308]]},{"type":"Polygon","properties":{"name":"JEFFERSON","zip":"01522","state":"MA"},"arcs":[[1324,1325,1326,1327,-1319,1328]]},{"type":"Polygon","properties":{"name":"LANCASTER","zip":"01523","state":"MA"},"arcs":[[1329,-1296,1330,-1236,-1244,-1249,-1206,-1227]]},{"type":"Polygon","properties":{"name":"LEICESTER","zip":"01524","state":"MA"},"arcs":[[1331,1332,1333,1334,1335,1336]]},{"type":"Polygon","properties":{"name":"MILLBURY","zip":"01527","state":"MA"},"arcs":[[1337,1338,1339,-1311,1340,1341,-1264]]},{"type":"Polygon","properties":{"name":"MILLVILLE","zip":"01529","state":"MA"},"arcs":[[1342,1343,1344,-1274]]},{"type":"Polygon","properties":{"name":"NEW BRAINTREE","zip":"01531","state":"MA"},"arcs":[[-901,-826,-956,1345,1346,-982]]},{"type":"Polygon","properties":{"name":"NORTHBOROUGH","zip":"01532","state":"MA"},"arcs":[[1347,1348,1349,-1277,-1271,1350]]},{"type":"Polygon","properties":{"name":"NORTHBRIDGE","zip":"01534","state":"MA"},"arcs":[[1351,1352,1353,1354,1355,1356]]},{"type":"Polygon","properties":{"name":"NORTH BROOKFIELD","zip":"01535","state":"MA"},"arcs":[[1357,-1346,1358,-1299,-1283]]},{"type":"Polygon","properties":{"name":"NORTH GRAFTON","zip":"01536","state":"MA"},"arcs":[[-1340,1359,1360,1361,-1312]]},{"type":"Polygon","properties":{"name":"NORTH OXFORD","zip":"01537","state":"MA"},"arcs":[[1362,-1294,1363,-1258]]},{"type":"Polygon","properties":{"name":"OXFORD","zip":"01540","state":"MA"},"arcs":[[-1363,-1265,-1342,1364,-1306,1365,1366,-1287]]},{"type":"Polygon","properties":{"name":"PRINCETON","zip":"01541","state":"MA"},"arcs":[[1367,-1326,1368,-1229,-1254,-1233]]},{"type":"Polygon","properties":{"name":"ROCHDALE","zip":"01542","state":"MA"},"arcs":[[-1293,1369,-1333,1370,-1259,-1364]]},{"type":"Polygon","properties":{"name":"RUTLAND","zip":"01543","state":"MA"},"arcs":[[1371,-957,-824,-1230,-1369,-1325]]},{"type":"Polygon","properties":{"name":"SHREWSBURY","zip":"01545","state":"MA"},"arcs":[[1372,-1361,1373,1374,1375,1376,-1278,-1350]]},{"type":"Polygon","properties":{"name":"SOUTHBRIDGE","zip":"01550","state":"MA"},"arcs":[[1377,1378,1379,-1289]]},{"type":"Polygon","properties":{"name":"SOUTH GRAFTON","zip":"01560","state":"MA"},"arcs":[[1380,-1315,1381,-1356]]},{"type":"Polygon","properties":{"name":"SPENCER","zip":"01562","state":"MA"},"arcs":[[-1292,-1300,-1359,-959,1382,-1334,-1370]]},{"type":"Polygon","properties":{"name":"STERLING","zip":"01564","state":"MA"},"arcs":[[-1280,1383,-1327,-1368,-1237,-1331,-1295]]},{"type":"Polygon","properties":{"name":"STURBRIDGE","zip":"01566","state":"MA"},"arcs":[[-1309,-1285,-1298,-1290,-1380,1384,1385,-1323]]},{"type":"Polygon","properties":{"name":"UPTON","zip":"01568","state":"MA"},"arcs":[[1386,1387,-1357,-1382,-1314,1388,1389,1390]]},{"type":"Polygon","properties":{"name":"UXBRIDGE","zip":"01569","state":"MA"},"arcs":[[1391,1392,-1301,1393,1394,-1353,1395,-1344]]},{"type":"Polygon","properties":{"name":"WEBSTER","zip":"01570","state":"MA"},"arcs":[[1396,1397,1398,-1366,-1305]]},{"type":"Polygon","properties":{"name":"DUDLEY","zip":"01571","state":"MA"},"arcs":[[1399,1400,-1378,-1288,-1367,-1399]]},{"type":"Polygon","properties":{"name":"WESTBOROUGH","zip":"01581","state":"MA"},"arcs":[[-1362,-1373,-1349,1401,1402,-1389,-1313]]},{"type":"Polygon","properties":{"name":"WEST BOYLSTON","zip":"01583","state":"MA"},"arcs":[[-1377,1403,-1320,-1328,-1384,-1279]]},{"type":"Polygon","properties":{"name":"WEST BROOKFIELD","zip":"01585","state":"MA"},"arcs":[[-842,-990,-983,-1347,-1358,-1282]]},{"type":"Polygon","properties":{"name":"WHITINSVILLE","zip":"01588","state":"MA"},"arcs":[[1404,-1354,-1395]]},{"type":"Polygon","properties":{"name":"SUTTON","zip":"01590","state":"MA"},"arcs":[[-1341,-1310,-1381,-1355,-1405,-1394,-1307,-1365]]},{"type":"Polygon","properties":{"name":"WORCESTER","zip":"01602","state":"MA"},"arcs":[[1405,1406,1407,-1336,1408,-1317]]},{"type":"Polygon","properties":{"name":"WORCESTER","zip":"01603","state":"MA"},"arcs":[[1409,-1337,-1408,1410,-1261]]},{"type":"Polygon","properties":{"name":"WORCESTER","zip":"01604","state":"MA"},"arcs":[[-1339,1411,1412,1413,1414,-1374,-1360]]},{"type":"Polygon","properties":{"name":"WORCESTER","zip":"01605","state":"MA"},"arcs":[[1415,-1322,1416,-1375,-1415,1417]]},{"type":"Polygon","properties":{"name":"WORCESTER","zip":"01606","state":"MA"},"arcs":[[-1417,-1321,-1404,-1376]]},{"type":"Polygon","properties":{"name":"WORCESTER","zip":"01607","state":"MA"},"arcs":[[-1263,1418,-1412,-1338]]},{"type":"Polygon","properties":{"name":"WORCESTER","zip":"01608","state":"MA"},"arcs":[[1419,1420,-1418,-1414]]},{"type":"Polygon","properties":{"name":"WORCESTER","zip":"01609","state":"MA"},"arcs":[[1421,-1406,-1316,-1416,-1421]]},{"type":"Polygon","properties":{"name":"WORCESTER","zip":"01610","state":"MA"},"arcs":[[-1407,-1422,-1420,-1413,-1419,-1262,-1411]]},{"type":"Polygon","properties":{"name":"CHERRY VALLEY","zip":"01611","state":"MA"},"arcs":[[-1332,-1410,-1260,-1371]]},{"type":"Polygon","properties":{"name":"PAXTON","zip":"01612","state":"MA"},"arcs":[[-958,-1372,-1329,-1318,-1409,-1335,-1383]]},{"type":"Polygon","properties":{"name":"FRAMINGHAM","zip":"01701","state":"MA"},"arcs":[[1422,1423,1424,1425,1426,1427,1428]]},{"type":"Polygon","properties":{"name":"FRAMINGHAM","zip":"01702","state":"MA"},"arcs":[[1429,1430,1431,-1428,1432]]},{"type":"Polygon","properties":{"name":"BOXBOROUGH","zip":"01719","state":"MA"},"arcs":[[1433,1434,-1224,-1240]]},{"type":"Polygon","properties":{"name":"ACTON","zip":"01720","state":"MA"},"arcs":[[1435,1436,1437,1438,-1434,-1239,1439,1440]]},{"type":"Polygon","properties":{"name":"ASHLAND","zip":"01721","state":"MA"},"arcs":[[1441,1442,1443,1444,1445,-1431]]},{"type":"Polygon","properties":{"name":"BEDFORD","zip":"01730","state":"MA"},"arcs":[[1446,1447,1448,1449,1450,1451,1452]]},{"type":"Polygon","properties":{"name":"HANSCOM AFB","zip":"01731","state":"MA"},"arcs":[[1453,1454,1455,-1453]]},{"type":"Polygon","properties":{"name":"BOLTON","zip":"01740","state":"MA"},"arcs":[[1456,1457,-1268,-1297,-1330,-1226]]},{"type":"Polygon","properties":{"name":"CARLISLE","zip":"01741","state":"MA"},"arcs":[[1458,1459,1460,1461,-1448,1462,-1441]]},{"type":"Polygon","properties":{"name":"CONCORD","zip":"01742","state":"MA"},"arcs":[[-1463,-1447,-1456,1463,1464,-1436]]},{"type":"Polygon","properties":{"name":"FAYVILLE","zip":"01745","state":"MA"},"arcs":[[1465,-1429,-1432,-1446]]},{"type":"Polygon","properties":{"name":"HOLLISTON","zip":"01746","state":"MA"},"arcs":[[1466,1467,1468,1469,-1443,1470]]},{"type":"Polygon","properties":{"name":"HOPEDALE","zip":"01747","state":"MA"},"arcs":[[1471,1472,-1387,1473]]},{"type":"Polygon","properties":{"name":"HOPKINTON","zip":"01748","state":"MA"},"arcs":[[-1403,1474,-1444,-1470,1475,-1390]]},{"type":"Polygon","properties":{"name":"HUDSON","zip":"01749","state":"MA"},"arcs":[[1476,-1269,-1458,1477,1478]]},{"type":"Polygon","properties":{"name":"MARLBOROUGH","zip":"01752","state":"MA"},"arcs":[[1479,-1351,-1270,-1477,1480,-1424]]},{"type":"Polygon","properties":{"name":"MAYNARD","zip":"01754","state":"MA"},"arcs":[[1481,-1438,1482]]},{"type":"Polygon","properties":{"name":"MENDON","zip":"01756","state":"MA"},"arcs":[[-1345,-1396,-1352,-1388,-1473,1483,-1275]]},{"type":"Polygon","properties":{"name":"MILFORD","zip":"01757","state":"MA"},"arcs":[[1484,1485,-1474,-1391,-1476,-1469]]},{"type":"Polygon","properties":{"name":"NATICK","zip":"01760","state":"MA"},"arcs":[[-1427,1486,1487,1488,1489,1490,-1433]]},{"type":"Polygon","properties":{"name":"SHERBORN","zip":"01770","state":"MA"},"arcs":[[1491,1492,-1471,-1442,-1430,-1491,1493]]},{"type":"Polygon","properties":{"name":"SOUTHBOROUGH","zip":"01772","state":"MA"},"arcs":[[-1348,-1480,-1423,-1466,-1445,-1475,-1402]]},{"type":"Polygon","properties":{"name":"LINCOLN","zip":"01773","state":"MA"},"arcs":[[1494,1495,1496,1497,-1464,-1455,1498]]},{"type":"Polygon","properties":{"name":"STOW","zip":"01775","state":"MA"},"arcs":[[1499,-1478,-1457,-1225,-1435,-1439,-1482]]},{"type":"Polygon","properties":{"name":"SUDBURY","zip":"01776","state":"MA"},"arcs":[[-1479,-1500,-1483,-1437,-1465,-1498,1500,-1425,-1481]]},{"type":"Polygon","properties":{"name":"WAYLAND","zip":"01778","state":"MA"},"arcs":[[-1501,-1497,1501,-1487,-1426]]},{"type":"Polygon","properties":{"name":"WOBURN","zip":"01801","state":"MA"},"arcs":[[1502,1503,1504,1505,1506,1507]]},{"type":"Polygon","properties":{"name":"BURLINGTON","zip":"01803","state":"MA"},"arcs":[[1508,-1450,1509,1510,-1503]]},{"type":"Polygon","properties":{"name":"ANDOVER","zip":"01810","state":"MA"},"arcs":[[1511,1512,1513,1514,1515,1516,1517]]},{"type":"Polygon","properties":{"name":"BILLERICA","zip":"01821","state":"MA"},"arcs":[[1518,1519,1520,-1510,-1449,-1462]]},{"type":"Polygon","properties":{"name":"CHELMSFORD","zip":"01824","state":"MA"},"arcs":[[1521,-1460,1522,1523,1524,1525]]},{"type":"Polygon","properties":{"name":"DRACUT","zip":"01826","state":"MA"},"arcs":[[1526,1527,1528,1529,-1515,1530,1531,1532]]},{"type":"Polygon","properties":{"name":"DUNSTABLE","zip":"01827","state":"MA"},"arcs":[[1533,-1222,-1248,1534]]},{"type":"Polygon","properties":{"name":"HAVERHILL","zip":"01830","state":"MA"},"arcs":[[1535,1536,1537,1538,1539,1540]]},{"type":"Polygon","properties":{"name":"HAVERHILL","zip":"01832","state":"MA"},"arcs":[[1541,1542,1543,1544,-1536]]},{"type":"Polygon","properties":{"name":"GEORGETOWN","zip":"01833","state":"MA"},"arcs":[[1545,1546,1547,1548]]},{"type":"Polygon","properties":{"name":"GROVELAND","zip":"01834","state":"MA"},"arcs":[[1549,-1540,1550,1551,-1548,1552]]},{"type":"Polygon","properties":{"name":"HAVERHILL","zip":"01835","state":"MA"},"arcs":[[1553,1554,-1542,-1541,-1550,1555]]},{"type":"Polygon","properties":{"name":"LAWRENCE","zip":"01841","state":"MA"},"arcs":[[1556,1557,1558]]},{"type":"Polygon","properties":{"name":"LAWRENCE","zip":"01843","state":"MA"},"arcs":[[1559,-1517,-1559]]},{"type":"Polygon","properties":{"name":"METHUEN","zip":"01844","state":"MA"},"arcs":[[-1516,-1530,1560,1561,-1543,-1555,1562,-1557]]},{"type":"Polygon","properties":{"name":"NORTH ANDOVER","zip":"01845","state":"MA"},"arcs":[[1563,1564,-1518,-1560,-1558,-1563,-1554,1565]]},{"type":"Polygon","properties":{"name":"LOWELL","zip":"01850","state":"MA"},"arcs":[[1566,1567,-1533]]},{"type":"Polygon","properties":{"name":"LOWELL","zip":"01851","state":"MA"},"arcs":[[1568,-1525,1569,1570]]},{"type":"Polygon","properties":{"name":"LOWELL","zip":"01852","state":"MA"},"arcs":[[-1569,1571,-1567,-1532,1572,1573,-1526]]},{"type":"Polygon","properties":{"name":"LOWELL","zip":"01854","state":"MA"},"arcs":[[-1571,1574,1575,-1527,-1568,-1572]]},{"type":"Polygon","properties":{"name":"MERRIMAC","zip":"01860","state":"MA"},"arcs":[[1576,-1538,1577,1578]]},{"type":"Polygon","properties":{"name":"NORTH BILLERICA","zip":"01862","state":"MA"},"arcs":[[-1461,-1522,-1574,1579,-1519]]},{"type":"Polygon","properties":{"name":"NORTH CHELMSFORD","zip":"01863","state":"MA"},"arcs":[[1580,1581,-1575,-1570,-1524]]},{"type":"Polygon","properties":{"name":"NORTH READING","zip":"01864","state":"MA"},"arcs":[[1582,1583,1584,-1512,-1565,1585]]},{"type":"Polygon","properties":{"name":"READING","zip":"01867","state":"MA"},"arcs":[[1586,1587,-1505,1588,-1584,1589]]},{"type":"Polygon","properties":{"name":"TEWKSBURY","zip":"01876","state":"MA"},"arcs":[[-1573,-1531,-1514,1590,-1520,-1580]]},{"type":"Polygon","properties":{"name":"TYNGSBORO","zip":"01879","state":"MA"},"arcs":[[1591,-1223,-1534,1592,1593,1594,1595,-1528,-1576,-1582]]},{"type":"Polygon","properties":{"name":"WAKEFIELD","zip":"01880","state":"MA"},"arcs":[[1596,-1587,1597,1598,1599]]},{"type":"Polygon","properties":{"name":"WESTFORD","zip":"01886","state":"MA"},"arcs":[[-1440,-1238,-1217,-1592,-1581,-1523,-1459]]},{"type":"Polygon","properties":{"name":"WILMINGTON","zip":"01887","state":"MA"},"arcs":[[-1504,-1511,-1521,-1591,-1513,-1585,-1589]]},{"type":"Polygon","properties":{"name":"WINCHESTER","zip":"01890","state":"MA"},"arcs":[[1600,1601,-1507,1602,1603]]},{"type":"Polygon","properties":{"name":"LYNN","zip":"01901","state":"MA"},"arcs":[[1604,1605,1606]]},{"type":"Polygon","properties":{"name":"LYNN","zip":"01902","state":"MA"},"arcs":[[1607,1608,1609,1610,1611,1612,1613,-1606]]},{"type":"Polygon","properties":{"name":"LYNN","zip":"01904","state":"MA"},"arcs":[[1614,1615,1616,1617,-1609]]},{"type":"Polygon","properties":{"name":"LYNN","zip":"01905","state":"MA"},"arcs":[[1618,1619,-1615,-1608,-1605,1620]]},{"type":"Polygon","properties":{"name":"SAUGUS","zip":"01906","state":"MA"},"arcs":[[1621,1622,-1599,1623,-1619,1624,1625]]},{"type":"Polygon","properties":{"name":"SWAMPSCOTT","zip":"01907","state":"MA"},"arcs":[[1626,1627,1628,-1611]]},{"type":"Polygon","properties":{"name":"NAHANT","zip":"01908","state":"MA"},"arcs":[[-1613,1629]]},{"type":"Polygon","properties":{"name":"AMESBURY","zip":"01913","state":"MA"},"arcs":[[1630,1631,1632,1633,1634,-1579]]},{"type":"Polygon","properties":{"name":"BEVERLY","zip":"01915","state":"MA"},"arcs":[[1635,1636,1637,1638]]},{"type":"Polygon","properties":{"name":"BOXFORD","zip":"01921","state":"MA"},"arcs":[[-1556,-1553,-1547,1639,1640,1641,1642,-1566]]},{"type":"Polygon","properties":{"name":"BYFIELD","zip":"01922","state":"MA"},"arcs":[[1643,-1549,-1552,1644,1645]]},{"type":"Polygon","properties":{"name":"DANVERS","zip":"01923","state":"MA"},"arcs":[[1646,1647,1648,1649,-1636,1650,1651]]},{"type":"Polygon","properties":{"name":"ESSEX","zip":"01929","state":"MA"},"arcs":[[1652,1653,1654,1655,1656]]},{"type":"Polygon","properties":{"name":"GLOUCESTER","zip":"01930","state":"MA"},"arcs":[[1657,-1656,1658]]},{"type":"Polygon","properties":{"name":"IPSWICH","zip":"01938","state":"MA"},"arcs":[[1659,-1641,1660,1661,-1654,1662]]},{"type":"Polygon","properties":{"name":"LYNNFIELD","zip":"01940","state":"MA"},"arcs":[[-1590,-1583,1663,1664,-1616,-1620,-1624,-1598]]},{"type":"Polygon","properties":{"name":"MANCHESTER","zip":"01944","state":"MA"},"arcs":[[-1638,1665,1666,-1657,-1658,1667]]},{"type":"Polygon","properties":{"name":"MARBLEHEAD","zip":"01945","state":"MA"},"arcs":[[1668,1669,-1628]]},{"type":"Polygon","properties":{"name":"MIDDLETON","zip":"01949","state":"MA"},"arcs":[[-1586,-1564,-1643,1670,-1648,1671,-1664]]},{"type":"Polygon","properties":{"name":"NEWBURYPORT","zip":"01950","state":"MA"},"arcs":[[1672,1673,-1634,1674,1675]]},{"type":"Polygon","properties":{"name":"NEWBURY","zip":"01951","state":"MA"},"arcs":[[1676,-1646,1677,-1673,1678]]},{"type":"Polygon","properties":{"name":"SALISBURY","zip":"01952","state":"MA"},"arcs":[[-1633,1679,1680,-1675]]},{"type":"Polygon","properties":{"name":"PEABODY","zip":"01960","state":"MA"},"arcs":[[1681,-1617,-1665,-1672,-1647]]},{"type":"Polygon","properties":{"name":"ROWLEY","zip":"01969","state":"MA"},"arcs":[[-1644,-1677,1682,-1661,-1640,-1546]]},{"type":"Polygon","properties":{"name":"SALEM","zip":"01970","state":"MA"},"arcs":[[-1618,-1682,-1652,1683,-1669,-1627,-1610]]},{"type":"Polygon","properties":{"name":"SOUTH HAMILTON","zip":"01982","state":"MA"},"arcs":[[1684,1685,-1663,-1653,-1667]]},{"type":"Polygon","properties":{"name":"TOPSFIELD","zip":"01983","state":"MA"},"arcs":[[1686,-1649,-1671,-1642,-1660,-1686]]},{"type":"Polygon","properties":{"name":"WENHAM","zip":"01984","state":"MA"},"arcs":[[-1637,-1650,-1687,-1685,-1666]]},{"type":"Polygon","properties":{"name":"WEST NEWBURY","zip":"01985","state":"MA"},"arcs":[[-1645,-1551,-1539,-1577,-1635,-1674,-1678]]},{"type":"Polygon","properties":{"name":"BELLINGHAM","zip":"02019","state":"MA"},"arcs":[[1687,1688,-1276,-1484,-1472,-1486,1689,1690]]},{"type":"Polygon","properties":{"name":"CANTON","zip":"02021","state":"MA"},"arcs":[[1691,1692,1693,1694,1695,1696,1697]]},{"type":"Polygon","properties":{"name":"COHASSET","zip":"02025","state":"MA"},"arcs":[[1698,1699,1700,1701]]},{"type":"Polygon","properties":{"name":"DEDHAM","zip":"02026","state":"MA"},"arcs":[[1702,1703,1704,1705,-1694]]},{"type":"Polygon","properties":{"name":"DOVER","zip":"02030","state":"MA"},"arcs":[[1706,1707,1708,-1494,-1490,1709,1710]]},{"type":"Polygon","properties":{"name":"EAST WALPOLE","zip":"02032","state":"MA"},"arcs":[[1711,1712,1713]]},{"type":"Polygon","properties":{"name":"FOXBORO","zip":"02035","state":"MA"},"arcs":[[1714,1715,1716,1717,1718,1719,1720]]},{"type":"Polygon","properties":{"name":"FRANKLIN","zip":"02038","state":"MA"},"arcs":[[1721,-1691,1722,1723]]},{"type":"Polygon","properties":{"name":"HINGHAM","zip":"02043","state":"MA"},"arcs":[[1724,1725,1726,1727,1728,1729,1730,-1700,1731]]},{"type":"Polygon","properties":{"name":"HULL","zip":"02045","state":"MA"},"arcs":[[-1701,-1731,1732]]},{"type":"Polygon","properties":{"name":"MANSFIELD","zip":"02048","state":"MA"},"arcs":[[1733,1734,1735,-1720,1736,1737,1738]]},{"type":"Polygon","properties":{"name":"MARSHFIELD","zip":"02050","state":"MA"},"arcs":[[1739,1740,1741,1742,1743]]},{"type":"Polygon","properties":{"name":"MEDFIELD","zip":"02052","state":"MA"},"arcs":[[1744,1745,-1492,-1709,1746]]},{"type":"Polygon","properties":{"name":"MEDWAY","zip":"02053","state":"MA"},"arcs":[[-1690,-1485,-1468,1747,1748,-1723]]},{"type":"Polygon","properties":{"name":"MILLIS","zip":"02054","state":"MA"},"arcs":[[-1467,-1493,-1746,1749,-1748]]},{"type":"Polygon","properties":{"name":"NORFOLK","zip":"02056","state":"MA"},"arcs":[[1750,-1716,1751,-1724,-1749,-1750,-1745,1752]]},{"type":"Polygon","properties":{"name":"NORWELL","zip":"02061","state":"MA"},"arcs":[[1753,1754,1755,-1725,1756,-1742]]},{"type":"Polygon","properties":{"name":"NORWOOD","zip":"02062","state":"MA"},"arcs":[[1757,-1714,1758,1759,-1692]]},{"type":"Polygon","properties":{"name":"SCITUATE","zip":"02066","state":"MA"},"arcs":[[-1757,-1732,-1699,1760,-1743]]},{"type":"Polygon","properties":{"name":"SHARON","zip":"02067","state":"MA"},"arcs":[[1761,-1737,-1719,1762,-1712,-1758,-1698,1763]]},{"type":"Polygon","properties":{"name":"SOUTH WALPOLE","zip":"02071","state":"MA"},"arcs":[[1764,-1717,-1751]]},{"type":"Polygon","properties":{"name":"STOUGHTON","zip":"02072","state":"MA"},"arcs":[[1765,1766,-1764,-1697,1767,1768]]},{"type":"Polygon","properties":{"name":"WALPOLE","zip":"02081","state":"MA"},"arcs":[[-1765,-1753,-1747,-1708,1769,-1759,-1713,-1763,-1718]]},{"type":"Polygon","properties":{"name":"WESTWOOD","zip":"02090","state":"MA"},"arcs":[[-1760,-1770,-1707,-1703,-1693]]},{"type":"Polygon","properties":{"name":"WRENTHAM","zip":"02093","state":"MA"},"arcs":[[1770,1771,-1688,-1722,-1752,-1715]]},{"type":"Polygon","properties":{"name":"BOSTON","zip":"02108","state":"MA"},"arcs":[[1772,1773,1774,1775,1776]]},{"type":"Polygon","properties":{"name":"BOSTON","zip":"02109","state":"MA"},"arcs":[[1777,1778,1779,1780,-1776]]},{"type":"Polygon","properties":{"name":"BOSTON","zip":"02110","state":"MA"},"arcs":[[1781,-1777,-1781,1782,1783]]},{"type":"Polygon","properties":{"name":"BOSTON","zip":"02111","state":"MA"},"arcs":[[1784,-1773,-1782,1785,1786,1787]]},{"type":"Polygon","properties":{"name":"BOSTON","zip":"02114","state":"MA"},"arcs":[[1788,1789,-1779,-1778,-1775,1790]]},{"type":"Polygon","properties":{"name":"BOSTON","zip":"02115","state":"MA"},"arcs":[[1791,1792,1793,1794,1795,1796]]},{"type":"Polygon","properties":{"name":"BOSTON","zip":"02116","state":"MA"},"arcs":[[1797,-1795,1798,1799,1800,-1791,-1774,-1785]]},{"type":"Polygon","properties":{"name":"BOSTON","zip":"02118","state":"MA"},"arcs":[[1801,1802,1803,1804,-1796,-1798,-1788]]},{"type":"Polygon","properties":{"name":"BOSTON","zip":"02119","state":"MA"},"arcs":[[1805,1806,1807,-1804,1808]]},{"type":"Polygon","properties":{"name":"BOSTON","zip":"02120","state":"MA"},"arcs":[[1809,-1797,-1805,-1808]]},{"type":"Polygon","properties":{"name":"BOSTON","zip":"02121","state":"MA"},"arcs":[[1810,-1806,1811,1812,1813]]},{"type":"Polygon","properties":{"name":"BOSTON","zip":"02122","state":"MA"},"arcs":[[1814,-1813,1815,1816]]},{"type":"Polygon","properties":{"name":"BOSTON","zip":"02124","state":"MA"},"arcs":[[1817,1818,1819,-1814,-1815,1820]]},{"type":"Polygon","properties":{"name":"BOSTON","zip":"02125","state":"MA"},"arcs":[[-1809,-1803,1821,1822,-1816,-1812]]},{"type":"Polygon","properties":{"name":"MATTAPAN","zip":"02126","state":"MA"},"arcs":[[1823,1824,-1819,1825]]},{"type":"Polygon","properties":{"name":"BOSTON","zip":"02127","state":"MA"},"arcs":[[-1822,-1802,-1787,1826,1827]]},{"type":"Polygon","properties":{"name":"BOSTON","zip":"02128","state":"MA"},"arcs":[[1828,1829,1830]]},{"type":"Polygon","properties":{"name":"CHARLESTOWN","zip":"02129","state":"MA"},"arcs":[[1831,1832,1833,1834]]},{"type":"Polygon","properties":{"name":"JAMAICA PLAIN","zip":"02130","state":"MA"},"arcs":[[-1820,1835,1836,1837,-1792,-1810,-1807,-1811]]},{"type":"Polygon","properties":{"name":"ROSLINDALE","zip":"02131","state":"MA"},"arcs":[[1838,1839,-1836,-1825,1840]]},{"type":"Polygon","properties":{"name":"WEST ROXBURY","zip":"02132","state":"MA"},"arcs":[[1841,-1705,1842,1843,1844,-1839]]},{"type":"Polygon","properties":{"name":"ALLSTON","zip":"02134","state":"MA"},"arcs":[[1845,1846,1847,1848,1849,1850]]},{"type":"Polygon","properties":{"name":"BRIGHTON","zip":"02135","state":"MA"},"arcs":[[1851,1852,1853,1854,1855,1856,1857,-1848]]},{"type":"Polygon","properties":{"name":"HYDE PARK","zip":"02136","state":"MA"},"arcs":[[1858,-1706,-1842,-1841,-1824]]},{"type":"Polygon","properties":{"name":"CAMBRIDGE","zip":"02138","state":"MA"},"arcs":[[1859,1860,1861,1862,1863,-1850,1864,-1857]]},{"type":"Polygon","properties":{"name":"CAMBRIDGE","zip":"02139","state":"MA"},"arcs":[[1865,-1851,-1864,1866,1867,1868,-1800]]},{"type":"Polygon","properties":{"name":"CAMBRIDGE","zip":"02140","state":"MA"},"arcs":[[1869,-1862,1870,1871,1872]]},{"type":"Polygon","properties":{"name":"CAMBRIDGE","zip":"02141","state":"MA"},"arcs":[[1873,-1868,1874,-1832,1875]]},{"type":"Polygon","properties":{"name":"CAMBRIDGE","zip":"02142","state":"MA"},"arcs":[[-1869,-1874,-1789,-1801]]},{"type":"Polygon","properties":{"name":"SOMERVILLE","zip":"02143","state":"MA"},"arcs":[[-1863,-1870,1876,1877,-1833,-1875,-1867]]},{"type":"Polygon","properties":{"name":"SOMERVILLE","zip":"02144","state":"MA"},"arcs":[[1878,-1877,-1873,1879,1880]]},{"type":"Polygon","properties":{"name":"SOMERVILLE","zip":"02145","state":"MA"},"arcs":[[-1878,-1879,1881,1882,-1834]]},{"type":"Polygon","properties":{"name":"MALDEN","zip":"02148","state":"MA"},"arcs":[[1883,1884,1885,1886,-1622,1887]]},{"type":"Polygon","properties":{"name":"EVERETT","zip":"02149","state":"MA"},"arcs":[[-1884,1888,1889,1890]]},{"type":"Polygon","properties":{"name":"CHELSEA","zip":"02150","state":"MA"},"arcs":[[-1890,1891,1892]]},{"type":"Polygon","properties":{"name":"REVERE","zip":"02151","state":"MA"},"arcs":[[1893,-1829,1894,-1892,-1889,-1888,-1626,1895]]},{"type":"Polygon","properties":{"name":"WINTHROP","zip":"02152","state":"MA"},"arcs":[[-1830,-1894,1896]]},{"type":"Polygon","properties":{"name":"MEDFORD","zip":"02155","state":"MA"},"arcs":[[1897,-1604,1898,-1885,1899,-1882,-1881]]},{"type":"Polygon","properties":{"name":"BOSTON","zip":"02163","state":"MA"},"arcs":[[-1858,-1865,-1849]]},{"type":"Polygon","properties":{"name":"QUINCY","zip":"02169","state":"MA"},"arcs":[[1900,1901,1902,1903,1904]]},{"type":"Polygon","properties":{"name":"QUINCY","zip":"02170","state":"MA"},"arcs":[[1905,1906,1907,-1902]]},{"type":"Polygon","properties":{"name":"QUINCY","zip":"02171","state":"MA"},"arcs":[[1908,1909,-1907]]},{"type":"Polygon","properties":{"name":"MELROSE","zip":"02176","state":"MA"},"arcs":[[1910,-1600,-1623,-1887]]},{"type":"Polygon","properties":{"name":"STONEHAM","zip":"02180","state":"MA"},"arcs":[[-1886,-1899,-1603,-1506,-1588,-1597,-1911]]},{"type":"Polygon","properties":{"name":"BRAINTREE","zip":"02184","state":"MA"},"arcs":[[1911,-1904,1912,1913,1914,1915]]},{"type":"Polygon","properties":{"name":"MILTON","zip":"02186","state":"MA"},"arcs":[[1916,-1695,-1859,-1826,-1818,1917,-1909,-1906,-1901]]},{"type":"Polygon","properties":{"name":"WEYMOUTH","zip":"02188","state":"MA"},"arcs":[[1918,1919,1920,-1914,1921]]},{"type":"Polygon","properties":{"name":"WEYMOUTH","zip":"02189","state":"MA"},"arcs":[[1922,-1920,1923,-1728]]},{"type":"Polygon","properties":{"name":"WEYMOUTH","zip":"02190","state":"MA"},"arcs":[[1924,1925,1926,-1915,-1921,-1923,-1727]]},{"type":"Polygon","properties":{"name":"WEYMOUTH","zip":"02191","state":"MA"},"arcs":[[-1729,-1924,-1919,1927]]},{"type":"Polygon","properties":{"name":"BOSTON","zip":"02210","state":"MA"},"arcs":[[-1827,-1786,-1784,1928]]},{"type":"Polygon","properties":{"name":"BOSTON","zip":"02215","state":"MA"},"arcs":[[1929,-1846,-1866,-1799,-1794,1930]]},{"type":"Polygon","properties":{"name":"BROCKTON","zip":"02301","state":"MA"},"arcs":[[1931,1932,1933,-1766,1934,1935,1936]]},{"type":"Polygon","properties":{"name":"BROCKTON","zip":"02302","state":"MA"},"arcs":[[1937,1938,-1936,1939,1940,1941,1942]]},{"type":"Polygon","properties":{"name":"AVON","zip":"02322","state":"MA"},"arcs":[[-1769,1943,1944,-1940,-1935]]},{"type":"Polygon","properties":{"name":"BRIDGEWATER","zip":"02324","state":"MA"},"arcs":[[1945,1946,1947,1948,1949]]},{"type":"Polygon","properties":{"name":"CARVER","zip":"02330","state":"MA"},"arcs":[[1950,1951,1952,1953,1954,1955]]},{"type":"Polygon","properties":{"name":"DUXBURY","zip":"02332","state":"MA"},"arcs":[[1956,1957,-1740,1958]]},{"type":"Polygon","properties":{"name":"EAST BRIDGEWATER","zip":"02333","state":"MA"},"arcs":[[1959,-1938,1960,1961,1962,-1950]]},{"type":"Polygon","properties":{"name":"HALIFAX","zip":"02338","state":"MA"},"arcs":[[-1963,1963,1964,1965,1966,-1946]]},{"type":"Polygon","properties":{"name":"HANOVER","zip":"02339","state":"MA"},"arcs":[[1967,-1755,1968,1969]]},{"type":"Polygon","properties":{"name":"HANSON","zip":"02341","state":"MA"},"arcs":[[1970,1971,-1970,1972,-1964,-1962]]},{"type":"Polygon","properties":{"name":"HOLBROOK","zip":"02343","state":"MA"},"arcs":[[1973,-1941,-1945,1974,-1916,-1927]]},{"type":"Polygon","properties":{"name":"MIDDLEBORO","zip":"02346","state":"MA"},"arcs":[[1975,1976,1977,1978,1979,-1947,-1967,1980,-1951]]},{"type":"Polygon","properties":{"name":"LAKEVILLE","zip":"02347","state":"MA"},"arcs":[[1981,1982,1983,1984,1985,-1978]]},{"type":"Polygon","properties":{"name":"ABINGTON","zip":"02351","state":"MA"},"arcs":[[1986,-1942,-1974,-1926,1987]]},{"type":"Polygon","properties":{"name":"NORTH EASTON","zip":"02356","state":"MA"},"arcs":[[-1767,-1934,1988,1989,-1738,-1762]]},{"type":"Polygon","properties":{"name":"NORTH EASTON","zip":"02357","state":"MA"},"arcs":[[1990,-1989,-1933]]},{"type":"Polygon","properties":{"name":"PEMBROKE","zip":"02359","state":"MA"},"arcs":[[1991,1992,-1965,-1973,-1969,-1754,-1741,-1958]]},{"type":"Polygon","properties":{"name":"PLYMOUTH","zip":"02360","state":"MA"},"arcs":[[1993,1994,1995,1996,-1954,1997,1998]]},{"type":"Polygon","properties":{"name":"KINGSTON","zip":"02364","state":"MA"},"arcs":[[1999,-1992,-1957,2000,-1998,-1953]]},{"type":"Polygon","properties":{"name":"PLYMPTON","zip":"02367","state":"MA"},"arcs":[[-1981,-1966,-1993,-2000,-1952]]},{"type":"Polygon","properties":{"name":"RANDOLPH","zip":"02368","state":"MA"},"arcs":[[-1696,-1917,-1905,-1912,-1975,-1944,-1768]]},{"type":"Polygon","properties":{"name":"ROCKLAND","zip":"02370","state":"MA"},"arcs":[[-1972,2001,-1988,-1925,-1726,-1756,-1968]]},{"type":"Polygon","properties":{"name":"SOUTH EASTON","zip":"02375","state":"MA"},"arcs":[[2002,2003,-1739,-1990,-1991,-1932,2004,2005]]},{"type":"Polygon","properties":{"name":"WEST BRIDGEWATER","zip":"02379","state":"MA"},"arcs":[[2006,-2005,-1937,-1939,-1960,-1949]]},{"type":"Polygon","properties":{"name":"WHITMAN","zip":"02382","state":"MA"},"arcs":[[-1961,-1943,-1987,-2002,-1971]]},{"type":"Polygon","properties":{"name":"LEXINGTON","zip":"02420","state":"MA"},"arcs":[[2007,2008,-1451,-1509,-1508,-1602]]},{"type":"Polygon","properties":{"name":"LEXINGTON","zip":"02421","state":"MA"},"arcs":[[2009,-1499,-1454,-1452,-2009,2010,2011,2012]]},{"type":"Polygon","properties":{"name":"BROOKLINE","zip":"02445","state":"MA"},"arcs":[[-1838,2013,-1853,2014,-1931,-1793]]},{"type":"Polygon","properties":{"name":"BROOKLINE","zip":"02446","state":"MA"},"arcs":[[-2015,-1852,-1847,-1930]]},{"type":"Polygon","properties":{"name":"WALTHAM","zip":"02451","state":"MA"},"arcs":[[2015,2016,-1495,-2010,2017]]},{"type":"Polygon","properties":{"name":"WALTHAM","zip":"02452","state":"MA"},"arcs":[[2018,-2018,-2013,2019]]},{"type":"Polygon","properties":{"name":"WALTHAM","zip":"02453","state":"MA"},"arcs":[[2020,2021,2022,-2016,-2019,2023]]},{"type":"Polygon","properties":{"name":"NEWTON","zip":"02458","state":"MA"},"arcs":[[2024,2025,2026,2027,-1855]]},{"type":"Polygon","properties":{"name":"NEWTON CENTER","zip":"02459","state":"MA"},"arcs":[[2028,2029,2030,2031,-2026,2032,-1844,2033]]},{"type":"Polygon","properties":{"name":"NEWTONVILLE","zip":"02460","state":"MA"},"arcs":[[2034,2035,-2027,-2032]]},{"type":"Polygon","properties":{"name":"NEWTON HIGHLANDS","zip":"02461","state":"MA"},"arcs":[[2036,2037,2038,-2029]]},{"type":"Polygon","properties":{"name":"NEWTON LOWER FALLS","zip":"02462","state":"MA"},"arcs":[[2039,2040,2041,2042]]},{"type":"Polygon","properties":{"name":"NEWTON UPPER FALLS","zip":"02464","state":"MA"},"arcs":[[2043,2044,2045,-2038]]},{"type":"Polygon","properties":{"name":"WEST NEWTON","zip":"02465","state":"MA"},"arcs":[[2046,2047,-2021,-2035,-2031]]},{"type":"Polygon","properties":{"name":"AUBURNDALE","zip":"02466","state":"MA"},"arcs":[[2048,-2022,-2048,2049,-2043]]},{"type":"Polygon","properties":{"name":"CHESTNUT HILL","zip":"02467","state":"MA"},"arcs":[[-2025,-1854,-2014,-1837,-1840,-1845,-2033]]},{"type":"Polygon","properties":{"name":"WABAN","zip":"02468","state":"MA"},"arcs":[[-2046,2050,-2040,-2050,-2047,-2030,-2039]]},{"type":"Polygon","properties":{"name":"WATERTOWN","zip":"02472","state":"MA"},"arcs":[[-2024,2051,-1860,-1856,-2028,-2036]]},{"type":"Polygon","properties":{"name":"ARLINGTON","zip":"02474","state":"MA"},"arcs":[[2052,-2008,-1601,-1898,-1880,-1872,2053]]},{"type":"Polygon","properties":{"name":"ARLINGTON","zip":"02476","state":"MA"},"arcs":[[2054,-2011,-2053]]},{"type":"Polygon","properties":{"name":"BELMONT","zip":"02478","state":"MA"},"arcs":[[-2020,-2012,-2055,-2054,-1871,-1861,-2052]]},{"type":"Polygon","properties":{"name":"WELLESLEY HILLS","zip":"02481","state":"MA"},"arcs":[[2055,2056,2057,2058,-2041,-2051,-2045]]},{"type":"Polygon","properties":{"name":"WELLESLEY","zip":"02482","state":"MA"},"arcs":[[-1489,2059,-2058,2060,-1710]]},{"type":"Polygon","properties":{"name":"NEEDHAM","zip":"02492","state":"MA"},"arcs":[[-1711,-2061,-2057,2061,-2034,-1843,-1704]]},{"type":"Polygon","properties":{"name":"WESTON","zip":"02493","state":"MA"},"arcs":[[-2060,-1488,-1502,-1496,-2017,-2023,-2049,-2042,-2059]]},{"type":"Polygon","properties":{"name":"NEEDHAM HEIGHTS","zip":"02494","state":"MA"},"arcs":[[-2062,-2056,-2044,-2037]]},{"type":"MultiPolygon","properties":{"name":"BUZZARDS BAY","zip":"02532","state":"MA"},"arcs":[[[2062,-1995,2063,2064]],[[2065,2066,2067,2068,2069,2070,2071]]]},{"type":"Polygon","properties":{"name":"CHILMARK","zip":"02535","state":"MA"},"arcs":[[2072,2073,2074]]},{"type":"Polygon","properties":{"name":"EAST FALMOUTH","zip":"02536","state":"MA"},"arcs":[[2075,2076,2077,2078,-2072,2079]]},{"type":"Polygon","properties":{"name":"EAST SANDWICH","zip":"02537","state":"MA"},"arcs":[[2080,2081,2082,2083]]},{"type":"Polygon","properties":{"name":"EAST WAREHAM","zip":"02538","state":"MA"},"arcs":[[2084,-1996,-2063,2085]]},{"type":"Polygon","properties":{"name":"EDGARTOWN","zip":"02539","state":"MA"},"arcs":[[2086,2087,2088]]},{"type":"Polygon","properties":{"name":"FALMOUTH","zip":"02540","state":"MA"},"arcs":[[2089,-2078,2090]]},{"type":"Polygon","properties":{"name":"BUZZARDS BAY","zip":"02542","state":"MA"},"arcs":[[2091,-2080,-2071,2092]]},{"type":"Polygon","properties":{"name":"NANTUCKET","zip":"02554","state":"MA"},"arcs":[[2093]]},{"type":"Polygon","properties":{"name":"NORTH FALMOUTH","zip":"02556","state":"MA"},"arcs":[[-2090,2094,2095,-2066,-2079]]},{"type":"Polygon","properties":{"name":"POCASSET","zip":"02559","state":"MA"},"arcs":[[-2067,-2096,2096]]},{"type":"Polygon","properties":{"name":"SAGAMORE BEACH","zip":"02562","state":"MA"},"arcs":[[-2064,-1994,2097]]},{"type":"Polygon","properties":{"name":"SANDWICH","zip":"02563","state":"MA"},"arcs":[[2098,-2069,2099,-2082,2100,2101]]},{"type":"Polygon","properties":{"name":"VINEYARD HAVEN","zip":"02568","state":"MA"},"arcs":[[2102,-2073,2103,-2088]]},{"type":"Polygon","properties":{"name":"WAREHAM","zip":"02571","state":"MA"},"arcs":[[2104,-1955,-1997,-2085,2105,2106]]},{"type":"Polygon","properties":{"name":"WEST TISBURY","zip":"02575","state":"MA"},"arcs":[[-2074,-2103,-2087,2107]]},{"type":"Polygon","properties":{"name":"WEST WAREHAM","zip":"02576","state":"MA"},"arcs":[[2108,2109,-1976,-1956,-2105]]},{"type":"Polygon","properties":{"name":"HYANNIS","zip":"02601","state":"MA"},"arcs":[[2110,2111,2112,2113,2114]]},{"type":"Polygon","properties":{"name":"BARNSTABLE","zip":"02630","state":"MA"},"arcs":[[2115,2116,2117,2118,-2112]]},{"type":"Polygon","properties":{"name":"BREWSTER","zip":"02631","state":"MA"},"arcs":[[2119,2120,2121,2122]]},{"type":"Polygon","properties":{"name":"CENTERVILLE","zip":"02632","state":"MA"},"arcs":[[2123,2124,2125,-2116,-2111,2126]]},{"type":"Polygon","properties":{"name":"CHATHAM","zip":"02633","state":"MA"},"arcs":[[2127,2128,2129]]},{"type":"Polygon","properties":{"name":"COTUIT","zip":"02635","state":"MA"},"arcs":[[2130,2131,2132]]},{"type":"Polygon","properties":{"name":"DENNIS","zip":"02638","state":"MA"},"arcs":[[2133,2134,2135]]},{"type":"Polygon","properties":{"name":"DENNIS PORT","zip":"02639","state":"MA"},"arcs":[[2136,2137,2138,2139]]},{"type":"Polygon","properties":{"name":"EASTHAM","zip":"02642","state":"MA"},"arcs":[[2140,2141,2142,2143]]},{"type":"Polygon","properties":{"name":"FORESTDALE","zip":"02644","state":"MA"},"arcs":[[2144,-2093,-2070,-2099]]},{"type":"Polygon","properties":{"name":"HARWICH","zip":"02645","state":"MA"},"arcs":[[2145,2146,-2120,2147,2148,-2129,2149,2150]]},{"type":"Polygon","properties":{"name":"HARWICH PORT","zip":"02646","state":"MA"},"arcs":[[2151,-2151,2152]]},{"type":"Polygon","properties":{"name":"MARSTONS MILLS","zip":"02648","state":"MA"},"arcs":[[2153,2154,-2132,2155,-2101,-2081,2156,-2125]]},{"type":"Polygon","properties":{"name":"MASHPEE","zip":"02649","state":"MA"},"arcs":[[-2076,-2092,-2145,-2102,-2156,-2131,2157]]},{"type":"Polygon","properties":{"name":"NORTH TRURO","zip":"02652","state":"MA"},"arcs":[[2158,2159,2160,2161]]},{"type":"Polygon","properties":{"name":"ORLEANS","zip":"02653","state":"MA"},"arcs":[[-2123,2162,-2141,2163,-2148]]},{"type":"Polygon","properties":{"name":"OSTERVILLE","zip":"02655","state":"MA"},"arcs":[[-2154,-2124,2164]]},{"type":"Polygon","properties":{"name":"PROVINCETOWN","zip":"02657","state":"MA"},"arcs":[[-2161,2165]]},{"type":"Polygon","properties":{"name":"SOUTH CHATHAM","zip":"02659","state":"MA"},"arcs":[[-2150,-2128,2166]]},{"type":"Polygon","properties":{"name":"SOUTH DENNIS","zip":"02660","state":"MA"},"arcs":[[2167,2168,-2134,2169,-2121,-2147,-2138,2170]]},{"type":"Polygon","properties":{"name":"SOUTH YARMOUTH","zip":"02664","state":"MA"},"arcs":[[2171,2172,-2168,2173,2174]]},{"type":"Polygon","properties":{"name":"TRURO","zip":"02666","state":"MA"},"arcs":[[2175,2176,-2159,2177]]},{"type":"Polygon","properties":{"name":"WELLFLEET","zip":"02667","state":"MA"},"arcs":[[-2143,2178,-2176,2179]]},{"type":"Polygon","properties":{"name":"WEST BARNSTABLE","zip":"02668","state":"MA"},"arcs":[[-2157,-2084,2180,-2117,-2126]]},{"type":"Polygon","properties":{"name":"WEST DENNIS","zip":"02670","state":"MA"},"arcs":[[-2174,-2171,-2137,2181]]},{"type":"Polygon","properties":{"name":"WEST HARWICH","zip":"02671","state":"MA"},"arcs":[[-2146,-2152,2182,-2139]]},{"type":"Polygon","properties":{"name":"WEST YARMOUTH","zip":"02673","state":"MA"},"arcs":[[-2114,2183,-2172,2184]]},{"type":"Polygon","properties":{"name":"YARMOUTH PORT","zip":"02675","state":"MA"},"arcs":[[-2135,-2169,-2173,-2184,-2113,-2119,2185]]},{"type":"Polygon","properties":{"name":"ASSONET","zip":"02702","state":"MA"},"arcs":[[2186,2187,2188,-1984,2189]]},{"type":"Polygon","properties":{"name":"ATTLEBORO","zip":"02703","state":"MA"},"arcs":[[2190,2191,2192,2193,2194,2195,-1735,2196]]},{"type":"Polygon","properties":{"name":"DIGHTON","zip":"02715","state":"MA"},"arcs":[[2197,2198,2199,2200,2201]]},{"type":"Polygon","properties":{"name":"EAST FREETOWN","zip":"02717","state":"MA"},"arcs":[[2202,2203,2204,2205,-2190,-1983,2206,2207]]},{"type":"Polygon","properties":{"name":"EAST TAUNTON","zip":"02718","state":"MA"},"arcs":[[2208,2209,2210,-1979,-1986]]},{"type":"Polygon","properties":{"name":"FAIRHAVEN","zip":"02719","state":"MA"},"arcs":[[2211,2212,2213]]},{"type":"Polygon","properties":{"name":"FALL RIVER","zip":"02720","state":"MA"},"arcs":[[2214,2215,2216,2217,2218,-2187,-2206]]},{"type":"Polygon","properties":{"name":"FALL RIVER","zip":"02721","state":"MA"},"arcs":[[2219,2220,-2217,2221,2222,2223]]},{"type":"Polygon","properties":{"name":"FALL RIVER","zip":"02723","state":"MA"},"arcs":[[-2216,2224,-2222]]},{"type":"Polygon","properties":{"name":"FALL RIVER","zip":"02724","state":"MA"},"arcs":[[2225,2226,2227,-2220]]},{"type":"Polygon","properties":{"name":"SOMERSET","zip":"02725","state":"MA"},"arcs":[[2228,2229,-2218]]},{"type":"Polygon","properties":{"name":"SOMERSET","zip":"02726","state":"MA"},"arcs":[[2230,-2198,2231,-2188,-2219,-2230]]},{"type":"Polygon","properties":{"name":"MARION","zip":"02738","state":"MA"},"arcs":[[2232,2233,-2109,-2107,2234]]},{"type":"Polygon","properties":{"name":"MATTAPOISETT","zip":"02739","state":"MA"},"arcs":[[2235,2236,-2233,2237,-2213]]},{"type":"Polygon","properties":{"name":"NEW BEDFORD","zip":"02740","state":"MA"},"arcs":[[2238,2239,2240,2241,2242]]},{"type":"Polygon","properties":{"name":"ACUSHNET","zip":"02743","state":"MA"},"arcs":[[2243,-2208,2244,-2236,-2212,2245]]},{"type":"Polygon","properties":{"name":"NEW BEDFORD","zip":"02745","state":"MA"},"arcs":[[2246,-2203,-2244,2247,2248]]},{"type":"Polygon","properties":{"name":"NEW BEDFORD","zip":"02746","state":"MA"},"arcs":[[2249,-2249,2250,-2240]]},{"type":"Polygon","properties":{"name":"NORTH DARTMOUTH","zip":"02747","state":"MA"},"arcs":[[2251,2252,-2204,-2247,-2250,-2239]]},{"type":"Polygon","properties":{"name":"SOUTH DARTMOUTH","zip":"02748","state":"MA"},"arcs":[[2253,-2252,-2243,2254]]},{"type":"Polygon","properties":{"name":"NORTH ATTLEBORO","zip":"02760","state":"MA"},"arcs":[[2255,2256,-1736,-2196]]},{"type":"Polygon","properties":{"name":"PLAINVILLE","zip":"02762","state":"MA"},"arcs":[[2257,-1771,-1721,-2257]]},{"type":"Polygon","properties":{"name":"NORTH DIGHTON","zip":"02764","state":"MA"},"arcs":[[2258,-2201,2259,2260]]},{"type":"Polygon","properties":{"name":"NORTON","zip":"02766","state":"MA"},"arcs":[[2261,-2197,-1734,-2004,2262]]},{"type":"Polygon","properties":{"name":"RAYNHAM","zip":"02767","state":"MA"},"arcs":[[-2211,2263,-2006,-2007,-1948,-1980]]},{"type":"Polygon","properties":{"name":"REHOBOTH","zip":"02769","state":"MA"},"arcs":[[2264,2265,-2191,-2262,2266,-2260,-2200]]},{"type":"Polygon","properties":{"name":"ROCHESTER","zip":"02770","state":"MA"},"arcs":[[-2237,-2245,-2207,-1982,-1977,-2110,-2234]]},{"type":"Polygon","properties":{"name":"SEEKONK","zip":"02771","state":"MA"},"arcs":[[2267,2268,2269,2270,2271,-2192,-2266,2272]]},{"type":"Polygon","properties":{"name":"SWANSEA","zip":"02777","state":"MA"},"arcs":[[-2228,2273,2274,2275,2276,-2273,-2265,-2199,-2231,-2229,-2221]]},{"type":"Polygon","properties":{"name":"BERKLEY","zip":"02779","state":"MA"},"arcs":[[-2259,2277,-2209,-1985,-2189,-2232,-2202]]},{"type":"Polygon","properties":{"name":"TAUNTON","zip":"02780","state":"MA"},"arcs":[[-2278,-2261,-2267,-2263,-2003,-2264,-2210]]},{"type":"Polygon","properties":{"name":"WESTPORT","zip":"02790","state":"MA"},"arcs":[[-2254,2278,2279,2280,-2223,-2225,-2215,-2205,-2253]]},{"type":"Polygon","properties":{"name":"ASHAWAY","zip":"02804","state":"RI"},"arcs":[[2281,2282,2283,2284,2285]]},{"type":"MultiPolygon","properties":{"name":"BARRINGTON","zip":"02806","state":"RI"},"arcs":[[[2286,2287]]]},{"type":"Polygon","properties":{"name":"BLOCK ISLAND","zip":"02807","state":"RI"},"arcs":[[2288]]},{"type":"Polygon","properties":{"name":"BRADFORD","zip":"02808","state":"RI"},"arcs":[[2289,2290,-2285,2291]]},{"type":"Polygon","properties":{"name":"BRISTOL","zip":"02809","state":"RI"},"arcs":[[2292,2293]]},{"type":"Polygon","properties":{"name":"CAROLINA","zip":"02812","state":"RI"},"arcs":[[2294,2295,2296,2297]]},{"type":"Polygon","properties":{"name":"CHARLESTOWN","zip":"02813","state":"RI"},"arcs":[[2298,2299,2300,-2290,2301,-2296,2302]]},{"type":"Polygon","properties":{"name":"CHEPACHET","zip":"02814","state":"RI"},"arcs":[[2303,2304,2305,2306,2307,2308,2309,2310,2311,2312]]},{"type":"Polygon","properties":{"name":"COVENTRY","zip":"02816","state":"RI"},"arcs":[[2313,2314,2315,2316,2317,2318]]},{"type":"Polygon","properties":{"name":"WEST GREENWICH","zip":"02817","state":"RI"},"arcs":[[2319,2320,2321,2322,-2315,2323]]},{"type":"Polygon","properties":{"name":"EAST GREENWICH","zip":"02818","state":"RI"},"arcs":[[2324,2325,-2324,-2314,2326,2327,2328]]},{"type":"Polygon","properties":{"name":"EXETER","zip":"02822","state":"RI"},"arcs":[[2329,2330,2331,2332,2333,-2320,-2326,2334]]},{"type":"Polygon","properties":{"name":"FOSTER","zip":"02825","state":"RI"},"arcs":[[2335,2336,2337,2338,-2304,2339,2340,-2317]]},{"type":"Polygon","properties":{"name":"GREENE","zip":"02827","state":"RI"},"arcs":[[2341,2342,-2336,-2316,-2323]]},{"type":"Polygon","properties":{"name":"GREENVILLE","zip":"02828","state":"RI"},"arcs":[[2343,-2312,2344,2345]]},{"type":"Polygon","properties":{"name":"HARRISVILLE","zip":"02830","state":"RI"},"arcs":[[2346,-2310,2347,2348,2349,-1302,-1393,2350]]},{"type":"Polygon","properties":{"name":"HOPE","zip":"02831","state":"RI"},"arcs":[[2351,2352,-2318,-2341]]},{"type":"Polygon","properties":{"name":"HOPE VALLEY","zip":"02832","state":"RI"},"arcs":[[2353,2354,2355,-2333,2356,2357,-2284]]},{"type":"Polygon","properties":{"name":"HOPKINTON","zip":"02833","state":"RI"},"arcs":[[2358,-2354,-2283]]},{"type":"Polygon","properties":{"name":"LITTLE COMPTON","zip":"02837","state":"RI"},"arcs":[[-2280,2359,2360]]},{"type":"Polygon","properties":{"name":"MANVILLE","zip":"02838","state":"RI"},"arcs":[[2361,2362,2363,2364]]},{"type":"Polygon","properties":{"name":"MAPLEVILLE","zip":"02839","state":"RI"},"arcs":[[-2309,2365,-2348]]},{"type":"Polygon","properties":{"name":"NEWPORT","zip":"02840","state":"RI"},"arcs":[[2366,2367,2368]]},{"type":"Polygon","properties":{"name":"NEWPORT","zip":"02841","state":"RI"},"arcs":[[2369,-2367,2370]]},{"type":"Polygon","properties":{"name":"MIDDLETOWN","zip":"02842","state":"RI"},"arcs":[[-2370,2371,2372,2373,-2368]]},{"type":"Polygon","properties":{"name":"NORTH KINGSTOWN","zip":"02852","state":"RI"},"arcs":[[-2325,2374,2375,-2335]]},{"type":"Polygon","properties":{"name":"NORTH SCITUATE","zip":"02857","state":"RI"},"arcs":[[2376,-2352,-2340,-2313,-2344,2377]]},{"type":"Polygon","properties":{"name":"PASCOAG","zip":"02859","state":"RI"},"arcs":[[-2349,-2366,-2308,2378,-1303,-2350]]},{"type":"Polygon","properties":{"name":"PAWTUCKET","zip":"02860","state":"RI"},"arcs":[[2379,2380,2381,2382,2383,2384,-2194,2385]]},{"type":"Polygon","properties":{"name":"PAWTUCKET","zip":"02861","state":"RI"},"arcs":[[-2193,-2272,2386,-2386]]},{"type":"Polygon","properties":{"name":"CENTRAL FALLS","zip":"02863","state":"RI"},"arcs":[[2387,2388,-2385]]},{"type":"Polygon","properties":{"name":"CUMBERLAND","zip":"02864","state":"RI"},"arcs":[[-1772,-2258,-2256,-2195,-2389,2389,-2362,2390]]},{"type":"Polygon","properties":{"name":"LINCOLN","zip":"02865","state":"RI"},"arcs":[[2391,2392,2393,-2363,-2390,-2388,-2384]]},{"type":"Polygon","properties":{"name":"PORTSMOUTH","zip":"02871","state":"RI"},"arcs":[[-2373,2394]]},{"type":"Polygon","properties":{"name":"SAUNDERSTOWN","zip":"02874","state":"RI"},"arcs":[[2395,2396,2397,2398,-2330,-2376,2399]]},{"type":"Polygon","properties":{"name":"TIVERTON","zip":"02878","state":"RI"},"arcs":[[-2226,-2224,-2281,-2361,2400]]},{"type":"Polygon","properties":{"name":"WAKEFIELD","zip":"02879","state":"RI"},"arcs":[[2401,2402,-2299,2403,2404,-2397]]},{"type":"Polygon","properties":{"name":"KINGSTON","zip":"02881","state":"RI"},"arcs":[[2405,-2398,-2405]]},{"type":"Polygon","properties":{"name":"NARRAGANSETT","zip":"02882","state":"RI"},"arcs":[[-2402,-2396,2406]]},{"type":"Polygon","properties":{"name":"WARREN","zip":"02885","state":"RI"},"arcs":[[-2275,2407,-2293,2408]]},{"type":"Polygon","properties":{"name":"WARWICK","zip":"02886","state":"RI"},"arcs":[[-2328,2409,2410,2411,2412,2413]]},{"type":"Polygon","properties":{"name":"WARWICK","zip":"02888","state":"RI"},"arcs":[[2414,-2412,2415,2416,2417,2418]]},{"type":"Polygon","properties":{"name":"WARWICK","zip":"02889","state":"RI"},"arcs":[[-2413,-2415,2419]]},{"type":"Polygon","properties":{"name":"WESTERLY","zip":"02891","state":"RI"},"arcs":[[2420,2421,-2286,-2291,-2301,2422]]},{"type":"Polygon","properties":{"name":"WEST KINGSTON","zip":"02892","state":"RI"},"arcs":[[-2295,2423,-2331,-2399,-2406,-2404,-2303]]},{"type":"Polygon","properties":{"name":"WEST WARWICK","zip":"02893","state":"RI"},"arcs":[[-2327,-2319,2424,2425,-2410]]},{"type":"Polygon","properties":{"name":"WOOD RIVER JUNCTION","zip":"02894","state":"RI"},"arcs":[[-2358,2426,-2297,-2302,-2292]]},{"type":"Polygon","properties":{"name":"WOONSOCKET","zip":"02895","state":"RI"},"arcs":[[2427,-1272,-1689,-2391,-2365]]},{"type":"Polygon","properties":{"name":"NORTH SMITHFIELD","zip":"02896","state":"RI"},"arcs":[[2428,-2351,-1392,-1343,-1273,-2428,-2364,-2394]]},{"type":"Polygon","properties":{"name":"WYOMING","zip":"02898","state":"RI"},"arcs":[[-2427,-2357,-2332,-2424,-2298]]},{"type":"Polygon","properties":{"name":"PROVIDENCE","zip":"02903","state":"RI"},"arcs":[[2429,2430,2431,2432,2433,2434]]},{"type":"Polygon","properties":{"name":"PROVIDENCE","zip":"02904","state":"RI"},"arcs":[[2435,2436,2437,-2392,-2383,2438]]},{"type":"Polygon","properties":{"name":"PROVIDENCE","zip":"02905","state":"RI"},"arcs":[[2439,2440,-2435,2441,-2418]]},{"type":"Polygon","properties":{"name":"PROVIDENCE","zip":"02906","state":"RI"},"arcs":[[-2433,-2439,-2382,2442]]},{"type":"Polygon","properties":{"name":"PROVIDENCE","zip":"02907","state":"RI"},"arcs":[[2443,2444,2445,-2430,-2441]]},{"type":"Polygon","properties":{"name":"PROVIDENCE","zip":"02908","state":"RI"},"arcs":[[2446,2447,-2436,-2432]]},{"type":"Polygon","properties":{"name":"PROVIDENCE","zip":"02909","state":"RI"},"arcs":[[2448,2449,-2447,-2431,-2446,2450]]},{"type":"Polygon","properties":{"name":"CRANSTON","zip":"02910","state":"RI"},"arcs":[[2451,-2444,-2440,-2417]]},{"type":"Polygon","properties":{"name":"NORTH PROVIDENCE","zip":"02911","state":"RI"},"arcs":[[2452,2453,-2437,-2448,-2450]]},{"type":"Polygon","properties":{"name":"EAST PROVIDENCE","zip":"02914","state":"RI"},"arcs":[[-2270,2454,2455,2456]]},{"type":"Polygon","properties":{"name":"RIVERSIDE","zip":"02915","state":"RI"},"arcs":[[-2287,2457,-2455,-2269,-2268,2458]]},{"type":"Polygon","properties":{"name":"RUMFORD","zip":"02916","state":"RI"},"arcs":[[-2271,-2457,2459,-2380,-2387]]},{"type":"Polygon","properties":{"name":"SMITHFIELD","zip":"02917","state":"RI"},"arcs":[[2460,-2345,-2311,-2347,-2429,-2393,-2438,-2454]]},{"type":"Polygon","properties":{"name":"JOHNSTON","zip":"02919","state":"RI"},"arcs":[[2461,2462,-2378,-2346,-2461,-2453,-2449]]},{"type":"Polygon","properties":{"name":"CRANSTON","zip":"02920","state":"RI"},"arcs":[[2463,-2462,-2451,-2445,-2452,-2416,-2411,-2426]]},{"type":"Polygon","properties":{"name":"CRANSTON","zip":"02921","state":"RI"},"arcs":[[-2377,-2463,-2464,-2425,-2353]]},{"type":"Polygon","properties":{"name":"AMHERST","zip":"03031","state":"NH"},"arcs":[[2464,2465,2466,2467,2468,2469]]},{"type":"Polygon","properties":{"name":"AUBURN","zip":"03032","state":"NH"},"arcs":[[2470,2471,2472,2473,2474,2475,2476]]},{"type":"Polygon","properties":{"name":"BROOKLINE","zip":"03033","state":"NH"},"arcs":[[2477,-1246,-1253,2478,2479]]},{"type":"Polygon","properties":{"name":"CANDIA","zip":"03034","state":"NH"},"arcs":[[2480,2481,2482,2483,2484,-2475]]},{"type":"Polygon","properties":{"name":"CHESTER","zip":"03036","state":"NH"},"arcs":[[-2485,2485,2486,2487,2488,-2476]]},{"type":"Polygon","properties":{"name":"DEERFIELD","zip":"03037","state":"NH"},"arcs":[[2489,2490,2491,2492,2493,-2483]]},{"type":"Polygon","properties":{"name":"DERRY","zip":"03038","state":"NH"},"arcs":[[2494,2495,2496,-2477,-2489,2497,2498,2499]]},{"type":"Polygon","properties":{"name":"EPPING","zip":"03042","state":"NH"},"arcs":[[2500,2501,2502,2503,2504,2505,2506]]},{"type":"Polygon","properties":{"name":"FRANCESTOWN","zip":"03043","state":"NH"},"arcs":[[2507,2508,2509,2510,2511,2512]]},{"type":"Polygon","properties":{"name":"FREMONT","zip":"03044","state":"NH"},"arcs":[[2513,2514,2515,2516,-2487,2517,-2507]]},{"type":"Polygon","properties":{"name":"GOFFSTOWN","zip":"03045","state":"NH"},"arcs":[[2518,2519,2520,2521,2522,2523]]},{"type":"Polygon","properties":{"name":"DUNBARTON","zip":"03046","state":"NH"},"arcs":[[2524,2525,2526,2527,-2523]]},{"type":"Polygon","properties":{"name":"GREENFIELD","zip":"03047","state":"NH"},"arcs":[[2528,2529,2530,2531,2532,-2510]]},{"type":"Polygon","properties":{"name":"GREENVILLE","zip":"03048","state":"NH"},"arcs":[[-1252,-1255,-1202,2533,2534,2535,-2479]]},{"type":"Polygon","properties":{"name":"HOLLIS","zip":"03049","state":"NH"},"arcs":[[2536,-2466,2537,2538,2539,-1247,-2478]]},{"type":"Polygon","properties":{"name":"HUDSON","zip":"03051","state":"NH"},"arcs":[[2540,2541,2542,2543,2544,2545,-1595]]},{"type":"Polygon","properties":{"name":"LITCHFIELD","zip":"03052","state":"NH"},"arcs":[[2546,2547,2548,2549,-2543]]},{"type":"Polygon","properties":{"name":"LONDONDERRY","zip":"03053","state":"NH"},"arcs":[[2550,2551,-2471,-2497,2552,-2544,-2550]]},{"type":"Polygon","properties":{"name":"MERRIMACK","zip":"03054","state":"NH"},"arcs":[[2553,-2538,-2465,2554,2555,-2548,2556]]},{"type":"Polygon","properties":{"name":"MILFORD","zip":"03055","state":"NH"},"arcs":[[-2480,-2536,2557,2558,2559,-2467,-2537]]},{"type":"Polygon","properties":{"name":"MONT VERNON","zip":"03057","state":"NH"},"arcs":[[2560,2561,-2468,-2560]]},{"type":"Polygon","properties":{"name":"NASHUA","zip":"03060","state":"NH"},"arcs":[[-1594,2562,2563,2564,-2541]]},{"type":"Polygon","properties":{"name":"NASHUA","zip":"03062","state":"NH"},"arcs":[[-1593,-1535,-2540,2565,-2563]]},{"type":"Polygon","properties":{"name":"NASHUA","zip":"03063","state":"NH"},"arcs":[[-2539,-2554,2566,-2564,-2566]]},{"type":"Polygon","properties":{"name":"NASHUA","zip":"03064","state":"NH"},"arcs":[[-2557,-2547,-2542,-2565,-2567]]},{"type":"Polygon","properties":{"name":"NEW BOSTON","zip":"03070","state":"NH"},"arcs":[[-2562,2567,-2508,2568,-2521,2569,-2469]]},{"type":"Polygon","properties":{"name":"NEW IPSWICH","zip":"03071","state":"NH"},"arcs":[[2570,2571,2572,2573,-2534,-1201,-1199]]},{"type":"Polygon","properties":{"name":"PELHAM","zip":"03076","state":"NH"},"arcs":[[2574,2575,-1561,-1529,-1596,-2546]]},{"type":"Polygon","properties":{"name":"RAYMOND","zip":"03077","state":"NH"},"arcs":[[-2494,2576,-2501,-2518,-2486,-2484]]},{"type":"Polygon","properties":{"name":"SALEM","zip":"03079","state":"NH"},"arcs":[[2577,-2495,2578,-1544,-1562,-2576]]},{"type":"Polygon","properties":{"name":"LYNDEBOROUGH","zip":"03082","state":"NH"},"arcs":[[-2559,2579,2580,-2529,-2509,-2568,-2561]]},{"type":"Polygon","properties":{"name":"TEMPLE","zip":"03084","state":"NH"},"arcs":[[2581,-2573,2582,-2530,-2581]]},{"type":"Polygon","properties":{"name":"WILTON","zip":"03086","state":"NH"},"arcs":[[-2574,-2582,-2580,-2558,-2535]]},{"type":"Polygon","properties":{"name":"WINDHAM","zip":"03087","state":"NH"},"arcs":[[-2575,-2545,-2553,-2496,-2578]]},{"type":"Polygon","properties":{"name":"MANCHESTER","zip":"03101","state":"NH"},"arcs":[[2583,2584,2585]]},{"type":"Polygon","properties":{"name":"MANCHESTER","zip":"03102","state":"NH"},"arcs":[[2586,2587,-2519,2588,2589,-2585]]},{"type":"Polygon","properties":{"name":"MANCHESTER","zip":"03103","state":"NH"},"arcs":[[2590,-2587,-2584,2591,2592,-2551,-2549,-2556]]},{"type":"Polygon","properties":{"name":"MANCHESTER","zip":"03104","state":"NH"},"arcs":[[-2590,2593,-2473,2594,-2592,-2586]]},{"type":"Polygon","properties":{"name":"HOOKSETT","zip":"03106","state":"NH"},"arcs":[[-2524,-2528,2595,2596,-2481,-2474,-2594,-2589]]},{"type":"Polygon","properties":{"name":"MANCHESTER","zip":"03109","state":"NH"},"arcs":[[-2593,-2595,-2472,-2552]]},{"type":"Polygon","properties":{"name":"BEDFORD","zip":"03110","state":"NH"},"arcs":[[-2555,-2470,-2570,-2520,-2588,-2591]]},{"type":"Polygon","properties":{"name":"ANDOVER","zip":"03216","state":"NH"},"arcs":[[2597,2598,2599,2600,2601,2602]]},{"type":"Polygon","properties":{"name":"ASHLAND","zip":"03217","state":"NH"},"arcs":[[2603,2604,2605,2606]]},{"type":"Polygon","properties":{"name":"BARNSTEAD","zip":"03218","state":"NH"},"arcs":[[2607,2608,2609,2610,2611]]},{"type":"Polygon","properties":{"name":"BELMONT","zip":"03220","state":"NH"},"arcs":[[2612,2613,2614,2615,2616,2617,2618]]},{"type":"Polygon","properties":{"name":"BRADFORD","zip":"03221","state":"NH"},"arcs":[[2619,2620,2621,2622,2623,2624]]},{"type":"Polygon","properties":{"name":"BRISTOL","zip":"03222","state":"NH"},"arcs":[[2625,2626,2627,2628,2629,2630,2631,2632]]},{"type":"Polygon","properties":{"name":"CAMPTON","zip":"03223","state":"NH"},"arcs":[[2633,2634,2635,2636,2637,2638,2639,2640,2641,2642]]},{"type":"Polygon","properties":{"name":"CANTERBURY","zip":"03224","state":"NH"},"arcs":[[2643,2644,2645,-2619,2646]]},{"type":"Polygon","properties":{"name":"CENTER BARNSTEAD","zip":"03225","state":"NH"},"arcs":[[2647,2648,-2611,2649,2650,2651]]},{"type":"Polygon","properties":{"name":"CENTER HARBOR","zip":"03226","state":"NH"},"arcs":[[2652,-2606,2653,2654,2655]]},{"type":"Polygon","properties":{"name":"CENTER SANDWICH","zip":"03227","state":"NH"},"arcs":[[2656,2657,-2635,2658,2659]]},{"type":"Polygon","properties":{"name":"CONTOOCOOK","zip":"03229","state":"NH"},"arcs":[[2660,-2526,2661,2662,2663,2664,2665]]},{"type":"Polygon","properties":{"name":"DANBURY","zip":"03230","state":"NH"},"arcs":[[2666,2667,-2628,2668,-2601]]},{"type":"Polygon","properties":{"name":"EAST HEBRON","zip":"03232","state":"NH"},"arcs":[[2669,2670,-2632]]},{"type":"Polygon","properties":{"name":"EPSOM","zip":"03234","state":"NH"},"arcs":[[2671,2672,2673,2674,-2491]]},{"type":"Polygon","properties":{"name":"FRANKLIN","zip":"03235","state":"NH"},"arcs":[[2675,2676,2677,-2603,2678,2679]]},{"type":"Polygon","properties":{"name":"GILMANTON","zip":"03237","state":"NH"},"arcs":[[2680,2681,-2617,2682]]},{"type":"Polygon","properties":{"name":"GRAFTON","zip":"03240","state":"NH"},"arcs":[[2683,2684,2685,-2629,-2668,2686]]},{"type":"Polygon","properties":{"name":"HEBRON","zip":"03241","state":"NH"},"arcs":[[-2631,2687,2688,2689,-2670]]},{"type":"Polygon","properties":{"name":"HENNIKER","zip":"03242","state":"NH"},"arcs":[[2690,2691,-2620,2692,-2663]]},{"type":"Polygon","properties":{"name":"HILL","zip":"03243","state":"NH"},"arcs":[[-2602,-2669,-2627,2693,2694,-2679]]},{"type":"Polygon","properties":{"name":"HILLSBORO","zip":"03244","state":"NH"},"arcs":[[2695,-2512,2696,2697,2698,2699,-2621,-2692]]},{"type":"Polygon","properties":{"name":"LACONIA","zip":"03246","state":"NH"},"arcs":[[2700,-2615,2701,2702,2703]]},{"type":"Polygon","properties":{"name":"GILFORD","zip":"03249","state":"NH"},"arcs":[[2704,-2616,-2701,2705,2706]]},{"type":"Polygon","properties":{"name":"LINCOLN","zip":"03251","state":"NH"},"arcs":[[2707,2708,2709,2710,-2640]]},{"type":"Polygon","properties":{"name":"MEREDITH","zip":"03253","state":"NH"},"arcs":[[2711,2712,-2607,-2653,2713,-2703]]},{"type":"Polygon","properties":{"name":"MOULTONBOROUGH","zip":"03254","state":"NH"},"arcs":[[-2657,2714,2715,2716,2717,2718,-2655]]},{"type":"Polygon","properties":{"name":"NEWBURY","zip":"03255","state":"NH"},"arcs":[[2719,2720,2721,2722,-2624]]},{"type":"Polygon","properties":{"name":"NEW HAMPTON","zip":"03256","state":"NH"},"arcs":[[2723,-2604,-2713,2724,-2694,-2626]]},{"type":"Polygon","properties":{"name":"NEW LONDON","zip":"03257","state":"NH"},"arcs":[[2725,2726,2727,2728,-2722]]},{"type":"Polygon","properties":{"name":"CHICHESTER","zip":"03258","state":"NH"},"arcs":[[2729,2730,2731,2732,-2673]]},{"type":"Polygon","properties":{"name":"NORTH SANDWICH","zip":"03259","state":"NH"},"arcs":[[2733,-2659,-2634,2734,2735]]},{"type":"Polygon","properties":{"name":"NORTHWOOD","zip":"03261","state":"NH"},"arcs":[[2736,2737,-2492,-2675,2738,-2608,2739]]},{"type":"Polygon","properties":{"name":"NORTH WOODSTOCK","zip":"03262","state":"NH"},"arcs":[[2740,2741,-2708,-2639]]},{"type":"Polygon","properties":{"name":"PITTSFIELD","zip":"03263","state":"NH"},"arcs":[[2742,-2681,2743,-2609,-2739,-2674,-2733]]},{"type":"Polygon","properties":{"name":"PLYMOUTH","zip":"03264","state":"NH"},"arcs":[[-2724,-2633,-2671,-2690,2744,-2636,-2658,-2654,-2605]]},{"type":"Polygon","properties":{"name":"RUMNEY","zip":"03266","state":"NH"},"arcs":[[2745,2746,2747,-2637,-2745,-2689,2748]]},{"type":"Polygon","properties":{"name":"SALISBURY","zip":"03268","state":"NH"},"arcs":[[2749,-2598,-2678,2750]]},{"type":"Polygon","properties":{"name":"SANBORNTON","zip":"03269","state":"NH"},"arcs":[[2751,-2680,-2695,-2725,-2712,-2702,-2614]]},{"type":"Polygon","properties":{"name":"SUNCOOK","zip":"03275","state":"NH"},"arcs":[[2752,2753,-2730,-2672,-2490,-2482,-2597]]},{"type":"Polygon","properties":{"name":"TILTON","zip":"03276","state":"NH"},"arcs":[[2754,-2676,-2752,-2613,-2646]]},{"type":"Polygon","properties":{"name":"WARNER","zip":"03278","state":"NH"},"arcs":[[-2693,-2625,-2723,-2729,2755,-2599,-2750,2756,-2664]]},{"type":"Polygon","properties":{"name":"WARREN","zip":"03279","state":"NH"},"arcs":[[2757,2758,2759,-2741,-2638,-2748,2760]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"03280","state":"NH"},"arcs":[[2761,2762,2763,-2622,-2700,2764]]},{"type":"Polygon","properties":{"name":"WEARE","zip":"03281","state":"NH"},"arcs":[[-2569,-2513,-2696,-2691,-2662,-2525,-2522]]},{"type":"Polygon","properties":{"name":"WENTWORTH","zip":"03282","state":"NH"},"arcs":[[2765,2766,-2761,-2747]]},{"type":"Polygon","properties":{"name":"SPRINGFIELD","zip":"03284","state":"NH"},"arcs":[[2767,2768,-2684,2769,-2727,2770]]},{"type":"Polygon","properties":{"name":"WILMOT","zip":"03287","state":"NH"},"arcs":[[-2770,-2687,-2667,-2600,-2756,-2728]]},{"type":"Polygon","properties":{"name":"NOTTINGHAM","zip":"03290","state":"NH"},"arcs":[[-2738,2771,2772,-2502,-2577,-2493]]},{"type":"Polygon","properties":{"name":"CONCORD","zip":"03301","state":"NH"},"arcs":[[2773,-2644,2774,-2731,-2754,2775,-2666]]},{"type":"Polygon","properties":{"name":"CONCORD","zip":"03303","state":"NH"},"arcs":[[-2751,-2677,-2755,-2645,-2774,-2665,-2757]]},{"type":"Polygon","properties":{"name":"BOW","zip":"03304","state":"NH"},"arcs":[[-2527,-2661,-2776,-2753,-2596]]},{"type":"Polygon","properties":{"name":"LOUDON","zip":"03307","state":"NH"},"arcs":[[-2618,-2682,-2743,-2732,-2775,-2647]]},{"type":"Polygon","properties":{"name":"KEENE","zip":"03431","state":"NH"},"arcs":[[2776,2777,2778,2779,2780,2781,2782,2783,2784]]},{"type":"Polygon","properties":{"name":"ANTRIM","zip":"03440","state":"NH"},"arcs":[[2785,2786,2787,-2698,2788]]},{"type":"Polygon","properties":{"name":"ASHUELOT","zip":"03441","state":"NH"},"arcs":[[2789,2790,2791]]},{"type":"Polygon","properties":{"name":"BENNINGTON","zip":"03442","state":"NH"},"arcs":[[2792,-2789,-2697,-2511,-2533]]},{"type":"Polygon","properties":{"name":"CHESTERFIELD","zip":"03443","state":"NH"},"arcs":[[2793,2794,2795,2796,2797,2798,-2792]]},{"type":"Polygon","properties":{"name":"DUBLIN","zip":"03444","state":"NH"},"arcs":[[2799,2800,2801,2802]]},{"type":"Polygon","properties":{"name":"SULLIVAN","zip":"03445","state":"NH"},"arcs":[[2803,-2781,2804,2805]]},{"type":"Polygon","properties":{"name":"SWANZEY","zip":"03446","state":"NH"},"arcs":[[2806,-2784,2807,2808,2809,-2798]]},{"type":"Polygon","properties":{"name":"FITZWILLIAM","zip":"03447","state":"NH"},"arcs":[[2810,-1256,-1187,2811,2812,2813]]},{"type":"Polygon","properties":{"name":"GILSUM","zip":"03448","state":"NH"},"arcs":[[-2780,2814,2815,2816,-2805]]},{"type":"Polygon","properties":{"name":"HANCOCK","zip":"03449","state":"NH"},"arcs":[[2817,2818,2819,-2786,-2793,-2532]]},{"type":"Polygon","properties":{"name":"HARRISVILLE","zip":"03450","state":"NH"},"arcs":[[2820,-2803,2821,2822,-2819]]},{"type":"Polygon","properties":{"name":"HINSDALE","zip":"03451","state":"NH"},"arcs":[[2823,-1176,2824,2825,2826,-2794,-2791]]},{"type":"Polygon","properties":{"name":"JAFFREY","zip":"03452","state":"NH"},"arcs":[[2827,2828,-2801,2829,2830,-2814]]},{"type":"Polygon","properties":{"name":"MARLBOROUGH","zip":"03455","state":"NH"},"arcs":[[-2829,2831,-2808,-2783,2832,-2822,-2802]]},{"type":"Polygon","properties":{"name":"MARLOW","zip":"03456","state":"NH"},"arcs":[[2833,-2816,2834,2835,2836,-2762]]},{"type":"Polygon","properties":{"name":"NELSON","zip":"03457","state":"NH"},"arcs":[[-2833,-2782,-2804,2837,-2787,-2820,-2823]]},{"type":"Polygon","properties":{"name":"PETERBOROUGH","zip":"03458","state":"NH"},"arcs":[[2838,-2830,-2800,-2821,-2818,-2531,-2583,-2572]]},{"type":"Polygon","properties":{"name":"RINDGE","zip":"03461","state":"NH"},"arcs":[[-1198,-1257,-2811,-2831,-2839,-2571]]},{"type":"Polygon","properties":{"name":"SPOFFORD","zip":"03462","state":"NH"},"arcs":[[-2797,2839,-2785,-2807]]},{"type":"Polygon","properties":{"name":"STODDARD","zip":"03464","state":"NH"},"arcs":[[-2817,-2834,-2765,-2699,-2788,-2838,-2806]]},{"type":"Polygon","properties":{"name":"TROY","zip":"03465","state":"NH"},"arcs":[[2840,-2809,-2832,-2828,-2813]]},{"type":"Polygon","properties":{"name":"WEST CHESTERFIELD","zip":"03466","state":"NH"},"arcs":[[-2827,2841,2842,2843,-2795]]},{"type":"Polygon","properties":{"name":"WESTMORELAND","zip":"03467","state":"NH"},"arcs":[[-2844,2844,2845,-2777,-2840,-2796]]},{"type":"Polygon","properties":{"name":"WINCHESTER","zip":"03470","state":"NH"},"arcs":[[-2790,-2799,-2810,-2841,-2812,-1186,-1189,-1177,-2824]]},{"type":"Polygon","properties":{"name":"LITTLETON","zip":"03561","state":"NH"},"arcs":[[2846,2847,2848,2849,2850,2851,2852]]},{"type":"Polygon","properties":{"name":"BERLIN","zip":"03570","state":"NH"},"arcs":[[2853,-765,2854,-726,2855,-761]]},{"type":"Polygon","properties":{"name":"BETHLEHEM","zip":"03574","state":"NH"},"arcs":[[2856,2857,-2847,2858,2859,-2641,-2711]]},{"type":"Polygon","properties":{"name":"COLEBROOK","zip":"03576","state":"NH"},"arcs":[[2860,2861,2862,2863,2864,-774,2865,-771]]},{"type":"Polygon","properties":{"name":"ERROL","zip":"03579","state":"NH"},"arcs":[[2866,2867,2868,-772,-2866,-773,-728]]},{"type":"Polygon","properties":{"name":"FRANCONIA","zip":"03580","state":"NH"},"arcs":[[2869,2870,-2857,-2710]]},{"type":"Polygon","properties":{"name":"GORHAM","zip":"03581","state":"NH"},"arcs":[[-755,-2856,-725,2871,2872,-720,-764]]},{"type":"Polygon","properties":{"name":"GROVETON","zip":"03582","state":"NH"},"arcs":[[2873,2874,2875,2876,-768]]},{"type":"Polygon","properties":{"name":"JEFFERSON","zip":"03583","state":"NH"},"arcs":[[2877,2878,-766,-2854,-760]]},{"type":"Polygon","properties":{"name":"LANCASTER","zip":"03584","state":"NH"},"arcs":[[2879,2880,-2874,-767,-2879,2881]]},{"type":"Polygon","properties":{"name":"LISBON","zip":"03585","state":"NH"},"arcs":[[2882,2883,2884,-2848,-2858,-2871]]},{"type":"Polygon","properties":{"name":"MILAN","zip":"03588","state":"NH"},"arcs":[[-2855,-769,-2877,2885,-2868,2886,-727]]},{"type":"Polygon","properties":{"name":"NORTH STRATFORD","zip":"03590","state":"NH"},"arcs":[[-2876,2887,-2861,-770,-2869,-2886]]},{"type":"Polygon","properties":{"name":"PITTSBURG","zip":"03592","state":"NH"},"arcs":[[-775,-2865,2888,2889,-585,2890,-730]]},{"type":"Polygon","properties":{"name":"WHITEFIELD","zip":"03598","state":"NH"},"arcs":[[2891,-2859,-2853,2892,-2882,-2878,-759,-762,-740]]},{"type":"Polygon","properties":{"name":"ALSTEAD","zip":"03602","state":"NH"},"arcs":[[2893,2894,-2835,-2815,-2779]]},{"type":"Polygon","properties":{"name":"CHARLESTOWN","zip":"03603","state":"NH"},"arcs":[[2895,2896,2897,2898,2899,2900,2901]]},{"type":"Polygon","properties":{"name":"LEMPSTER","zip":"03605","state":"NH"},"arcs":[[-2837,2902,-2900,2903,2904,2905,-2763]]},{"type":"Polygon","properties":{"name":"SOUTH ACWORTH","zip":"03607","state":"NH"},"arcs":[[2906,-2901,-2903,-2836,-2895]]},{"type":"Polygon","properties":{"name":"WALPOLE","zip":"03608","state":"NH"},"arcs":[[2907,2908,2909,2910,-2902,-2907,-2894,-2778,-2846]]},{"type":"Polygon","properties":{"name":"NORTH WALPOLE","zip":"03609","state":"NH"},"arcs":[[2911,-2896,-2911]]},{"type":"Polygon","properties":{"name":"BATH","zip":"03740","state":"NH"},"arcs":[[2912,2913,2914,-2884,2915]]},{"type":"Polygon","properties":{"name":"CANAAN","zip":"03741","state":"NH"},"arcs":[[-2686,2916,2917,-2749,-2688,-2630]]},{"type":"Polygon","properties":{"name":"CLAREMONT","zip":"03743","state":"NH"},"arcs":[[-2899,2918,2919,2920,2921,-2904]]},{"type":"Polygon","properties":{"name":"CORNISH","zip":"03745","state":"NH"},"arcs":[[2922,2923,2924,2925,2926,-2921]]},{"type":"Polygon","properties":{"name":"ENFIELD","zip":"03748","state":"NH"},"arcs":[[2927,2928,2929,2930,2931,2932,-2917,-2685,-2769,2933]]},{"type":"Polygon","properties":{"name":"ETNA","zip":"03750","state":"NH"},"arcs":[[2934,-2931]]},{"type":"Polygon","properties":{"name":"GOSHEN","zip":"03752","state":"NH"},"arcs":[[-2764,-2906,2935,2936,-2720,-2623]]},{"type":"Polygon","properties":{"name":"GRANTHAM","zip":"03753","state":"NH"},"arcs":[[2937,2938,2939,-2934,-2768]]},{"type":"Polygon","properties":{"name":"HANOVER","zip":"03755","state":"NH"},"arcs":[[-2930,2940,2941,2942,2943,-2932,-2935]]},{"type":"Polygon","properties":{"name":"HAVERHILL","zip":"03765","state":"NH"},"arcs":[[2944,2945,2946,2947]]},{"type":"Polygon","properties":{"name":"LEBANON","zip":"03766","state":"NH"},"arcs":[[2948,2949,-2941,-2929]]},{"type":"Polygon","properties":{"name":"LYME","zip":"03768","state":"NH"},"arcs":[[-2944,2950,2951,2952,2953,-2746,-2918,-2933]]},{"type":"Polygon","properties":{"name":"MERIDEN","zip":"03770","state":"NH"},"arcs":[[2954,-2925]]},{"type":"Polygon","properties":{"name":"MONROE","zip":"03771","state":"NH"},"arcs":[[2955,2956,-2849,-2885,-2915]]},{"type":"Polygon","properties":{"name":"NEWPORT","zip":"03773","state":"NH"},"arcs":[[-2927,2957,-2939,2958,-2936,-2905,-2922]]},{"type":"Polygon","properties":{"name":"NORTH HAVERHILL","zip":"03774","state":"NH"},"arcs":[[2959,-2948,2960,2961,2962]]},{"type":"Polygon","properties":{"name":"ORFORD","zip":"03777","state":"NH"},"arcs":[[-2954,2963,2964,2965,-2766]]},{"type":"Polygon","properties":{"name":"PIERMONT","zip":"03779","state":"NH"},"arcs":[[-2767,-2966,2966,2967,-2946,2968,-2758]]},{"type":"Polygon","properties":{"name":"PIKE","zip":"03780","state":"NH"},"arcs":[[-2945,-2960,2969,-2759,-2969]]},{"type":"Polygon","properties":{"name":"PLAINFIELD","zip":"03781","state":"NH"},"arcs":[[-2958,-2926,-2955,-2924,2970,2971,2972,2973,-2949,-2928,-2940]]},{"type":"Polygon","properties":{"name":"SUNAPEE","zip":"03782","state":"NH"},"arcs":[[-2937,-2959,-2938,-2771,-2726,-2721]]},{"type":"Polygon","properties":{"name":"WEST LEBANON","zip":"03784","state":"NH"},"arcs":[[-2974,2974,2975,2976,-2942,-2950]]},{"type":"Polygon","properties":{"name":"WOODSVILLE","zip":"03785","state":"NH"},"arcs":[[-2963,2977,-2916,-2883,-2870,-2709,-2742,-2760,-2970]]},{"type":"Polygon","properties":{"name":"PORTSMOUTH","zip":"03801","state":"NH"},"arcs":[[2978,2979,2980]]},{"type":"Polygon","properties":{"name":"ALTON","zip":"03809","state":"NH"},"arcs":[[2981,-2707,2982,2983,2984,-2651]]},{"type":"Polygon","properties":{"name":"ATKINSON","zip":"03811","state":"NH"},"arcs":[[-1545,-2579,-2500,2985,2986]]},{"type":"Polygon","properties":{"name":"BARTLETT","zip":"03812","state":"NH"},"arcs":[[2987,2988,-2642,-2860,-2892,-739,-735,-732,-744,2989,2990]]},{"type":"Polygon","properties":{"name":"CENTER CONWAY","zip":"03813","state":"NH"},"arcs":[[2991,2992,2993,2994,2995,2996]]},{"type":"Polygon","properties":{"name":"CENTER OSSIPEE","zip":"03814","state":"NH"},"arcs":[[2997,-2717,2998,2999,3000,3001,3002,3003]]},{"type":"Polygon","properties":{"name":"CENTER STRAFFORD","zip":"03815","state":"NH"},"arcs":[[3004,3005,3006]]},{"type":"Polygon","properties":{"name":"CENTER TUFTONBORO","zip":"03816","state":"NH"},"arcs":[[3007,3008,3009,3010,-2718,-2998]]},{"type":"Polygon","properties":{"name":"CHOCORUA","zip":"03817","state":"NH"},"arcs":[[3011,3012,3013]]},{"type":"Polygon","properties":{"name":"CONWAY","zip":"03818","state":"NH"},"arcs":[[3014,-2735,-2643,-2989,3015,-2995,3016,3017,-3013]]},{"type":"Polygon","properties":{"name":"DANVILLE","zip":"03819","state":"NH"},"arcs":[[3018,-2516,3019,3020]]},{"type":"Polygon","properties":{"name":"DOVER","zip":"03820","state":"NH"},"arcs":[[3021,3022,3023,3024,3025,3026,3027,3028,3029]]},{"type":"Polygon","properties":{"name":"DURHAM","zip":"03824","state":"NH"},"arcs":[[3030,-2503,-2773,3031,-3030,3032]]},{"type":"Polygon","properties":{"name":"BARRINGTON","zip":"03825","state":"NH"},"arcs":[[-3032,-2772,-2737,3033,-3005,3034,3035,-3022]]},{"type":"Polygon","properties":{"name":"EAST HAMPSTEAD","zip":"03826","state":"NH"},"arcs":[[3036,3037,3038,-3021,3039]]},{"type":"Polygon","properties":{"name":"EAST KINGSTON","zip":"03827","state":"NH"},"arcs":[[-1632,3040,3041,3042,3043]]},{"type":"Polygon","properties":{"name":"EAST WAKEFIELD","zip":"03830","state":"NH"},"arcs":[[3044,3045,3046,3047,3048,3049]]},{"type":"Polygon","properties":{"name":"EXETER","zip":"03833","state":"NH"},"arcs":[[3050,-2514,-2506,3051,3052,3053,3054,3055,-3043]]},{"type":"Polygon","properties":{"name":"FARMINGTON","zip":"03835","state":"NH"},"arcs":[[3056,3057,3058,3059]]},{"type":"Polygon","properties":{"name":"FREEDOM","zip":"03836","state":"NH"},"arcs":[[3060,-3001,3061,3062]]},{"type":"Polygon","properties":{"name":"GILMANTON IRON WORKS","zip":"03837","state":"NH"},"arcs":[[-2705,-2982,-2650,-2610,-2744,-2683]]},{"type":"Polygon","properties":{"name":"ROCHESTER","zip":"03839","state":"NH"},"arcs":[[3063,-3023,-3036]]},{"type":"Polygon","properties":{"name":"GREENLAND","zip":"03840","state":"NH"},"arcs":[[3064,3065,3066,3067,-2979]]},{"type":"Polygon","properties":{"name":"HAMPSTEAD","zip":"03841","state":"NH"},"arcs":[[3068,-2986,-2499,3069,-3038]]},{"type":"Polygon","properties":{"name":"HAMPTON","zip":"03842","state":"NH"},"arcs":[[3070,-3054,3071,3072]]},{"type":"Polygon","properties":{"name":"HAMPTON FALLS","zip":"03844","state":"NH"},"arcs":[[3073,-3055,-3071,3074]]},{"type":"Polygon","properties":{"name":"INTERVALE","zip":"03845","state":"NH"},"arcs":[[3075,-2991,3076,-722,3077,3078,-2997]]},{"type":"Polygon","properties":{"name":"JACKSON","zip":"03846","state":"NH"},"arcs":[[-743,-748,-723,-3077,-2990]]},{"type":"Polygon","properties":{"name":"KINGSTON","zip":"03848","state":"NH"},"arcs":[[-3020,-2515,-3051,-3042,3079,3080,-3040]]},{"type":"Polygon","properties":{"name":"MADISON","zip":"03849","state":"NH"},"arcs":[[3081,-3017,-2994,3082,3083,-3063]]},{"type":"Polygon","properties":{"name":"MILTON","zip":"03851","state":"NH"},"arcs":[[3084,3085,3086,3087,3088,-3058]]},{"type":"Polygon","properties":{"name":"MILTON MILLS","zip":"03852","state":"NH"},"arcs":[[3089,-3086,3090]]},{"type":"Polygon","properties":{"name":"MIRROR LAKE","zip":"03853","state":"NH"},"arcs":[[3009,-3092,-3093]]},{"type":"Polygon","properties":{"name":"NEW DURHAM","zip":"03855","state":"NH"},"arcs":[[-2652,-2985,3093,3094,-3057]]},{"type":"Polygon","properties":{"name":"NEWFIELDS","zip":"03856","state":"NH"},"arcs":[[3095,-3052,-2505,3096]]},{"type":"Polygon","properties":{"name":"NEWMARKET","zip":"03857","state":"NH"},"arcs":[[-3097,-2504,-3031,3097]]},{"type":"Polygon","properties":{"name":"NEWTON","zip":"03858","state":"NH"},"arcs":[[-1631,-1578,3098,-3080,-3041]]},{"type":"Polygon","properties":{"name":"NORTH CONWAY","zip":"03860","state":"NH"},"arcs":[[-3016,-2988,-3076,-2996]]},{"type":"Polygon","properties":{"name":"NORTH HAMPTON","zip":"03862","state":"NH"},"arcs":[[3099,3100,-3072,3101,-3066]]},{"type":"Polygon","properties":{"name":"OSSIPEE","zip":"03864","state":"NH"},"arcs":[[3102,3103,-3008,-3004,3104,-3049]]},{"type":"Polygon","properties":{"name":"PLAISTOW","zip":"03865","state":"NH"},"arcs":[[-1537,-2987,-3069,-3037,-3081,-3099]]},{"type":"Polygon","properties":{"name":"ROCHESTER","zip":"03867","state":"NH"},"arcs":[[-3007,3105,-2648,-3060,3106,3107,-3024,-3064,-3035]]},{"type":"Polygon","properties":{"name":"ROCHESTER","zip":"03868","state":"NH"},"arcs":[[3108,-3107,-3059,-3089,3109,3110]]},{"type":"Polygon","properties":{"name":"ROLLINSFORD","zip":"03869","state":"NH"},"arcs":[[3111,3112,3113,-3026]]},{"type":"Polygon","properties":{"name":"RYE","zip":"03870","state":"NH"},"arcs":[[-3100,-3065,-2981,3114]]},{"type":"Polygon","properties":{"name":"SANBORNVILLE","zip":"03872","state":"NH"},"arcs":[[3115,-3103,-3048,3116,-3091,3117]]},{"type":"Polygon","properties":{"name":"SANDOWN","zip":"03873","state":"NH"},"arcs":[[-2498,-2488,-2517,-3019,-3039,-3070]]},{"type":"Polygon","properties":{"name":"SEABROOK","zip":"03874","state":"NH"},"arcs":[[-3056,-3074,3118,-1680,-3044]]},{"type":"Polygon","properties":{"name":"SILVER LAKE","zip":"03875","state":"NH"},"arcs":[[-3000,3119,3120,-3014,-3018,-3082,-3062]]},{"type":"Polygon","properties":{"name":"SOMERSWORTH","zip":"03878","state":"NH"},"arcs":[[-3025,-3108,-3109,3121,-3112]]},{"type":"Polygon","properties":{"name":"EFFINGHAM","zip":"03882","state":"NH"},"arcs":[[-3105,-3003,3122,-3050]]},{"type":"Polygon","properties":{"name":"SOUTH TAMWORTH","zip":"03883","state":"NH"},"arcs":[[3123,-2715,-2660,-2734]]},{"type":"Polygon","properties":{"name":"STRAFFORD","zip":"03884","state":"NH"},"arcs":[[-3034,-2740,-2612,-2649,-3106,-3006]]},{"type":"Polygon","properties":{"name":"STRATHAM","zip":"03885","state":"NH"},"arcs":[[-3053,-3096,3124,-3067,-3102]]},{"type":"Polygon","properties":{"name":"TAMWORTH","zip":"03886","state":"NH"},"arcs":[[-2736,-3015,-3012,-3121,3125,-2716,-3124]]},{"type":"Polygon","properties":{"name":"UNION","zip":"03887","state":"NH"},"arcs":[[-3095,3126,-3118,-3085]]},{"type":"Polygon","properties":{"name":"WEST OSSIPEE","zip":"03890","state":"NH"},"arcs":[[-3120,-2999,-3126]]},{"type":"Polygon","properties":{"name":"WOLFEBORO","zip":"03894","state":"NH"},"arcs":[[-3127,-3094,-2984,3127,-3093,-3009,-3104,-3116]]},{"type":"Polygon","properties":{"name":"BERWICK","zip":"03901","state":"ME"},"arcs":[[3128,-3113,-3122,-3111,3129,3130]]},{"type":"Polygon","properties":{"name":"CAPE NEDDICK","zip":"03902","state":"ME"},"arcs":[[3131,3132,3133,3134,3135]]},{"type":"Polygon","properties":{"name":"ELIOT","zip":"03903","state":"ME"},"arcs":[[3136,3137,-3028,3138,3139]]},{"type":"Polygon","properties":{"name":"KITTERY","zip":"03904","state":"ME"},"arcs":[[3140,3141,-3137,3142]]},{"type":"Polygon","properties":{"name":"KITTERY POINT","zip":"03905","state":"ME"},"arcs":[[-3141,3143,3144]]},{"type":"Polygon","properties":{"name":"NORTH BERWICK","zip":"03906","state":"ME"},"arcs":[[3145,-3131,3146,3147,3148]]},{"type":"Polygon","properties":{"name":"OGUNQUIT","zip":"03907","state":"ME"},"arcs":[[3149,3150,-3135]]},{"type":"Polygon","properties":{"name":"SOUTH BERWICK","zip":"03908","state":"ME"},"arcs":[[3151,-3139,-3027,-3114,-3129,-3146,3152,-3133]]},{"type":"Polygon","properties":{"name":"YORK","zip":"03909","state":"ME"},"arcs":[[-3140,-3152,-3132,3153,-3144,-3143]]},{"type":"Polygon","properties":{"name":"ACTON","zip":"04001","state":"ME"},"arcs":[[-3087,-3090,-3117,-3047,3154,3155,3156]]},{"type":"Polygon","properties":{"name":"ALFRED","zip":"04002","state":"ME"},"arcs":[[3157,3158,3159,3160,3161,3162,3163,3164,3165]]},{"type":"Polygon","properties":{"name":"BIDDEFORD","zip":"04005","state":"ME"},"arcs":[[3166,-3166,3167,3168,3169]]},{"type":"Polygon","properties":{"name":"BOWDOINHAM","zip":"04008","state":"ME"},"arcs":[[3170,3171,3172,3173,3174,3175,3176]]},{"type":"Polygon","properties":{"name":"BRIDGTON","zip":"04009","state":"ME"},"arcs":[[3177,3178,3179,3180,3181,3182]]},{"type":"Polygon","properties":{"name":"BROWNFIELD","zip":"04010","state":"ME"},"arcs":[[3183,3184,-3083,-2993,3185,3186,3187,-3179,3188]]},{"type":"Polygon","properties":{"name":"BRUNSWICK","zip":"04011","state":"ME"},"arcs":[[3189,3190,3191,3192,3193,3194,3195]]},{"type":"Polygon","properties":{"name":"CASCO","zip":"04015","state":"ME"},"arcs":[[3196,3197,3198,3199,3200]]},{"type":"Polygon","properties":{"name":"CENTER LOVELL","zip":"04016","state":"ME"},"arcs":[[3201,3202,3203]]},{"type":"Polygon","properties":{"name":"CORNISH","zip":"04020","state":"ME"},"arcs":[[3204,3205,3206,3207,3208,3209]]},{"type":"Polygon","properties":{"name":"CUMBERLAND CENTER","zip":"04021","state":"ME"},"arcs":[[3210,3211,3212,3213,3214,3215]]},{"type":"Polygon","properties":{"name":"DENMARK","zip":"04022","state":"ME"},"arcs":[[3216,3217,-3189,-3178]]},{"type":"Polygon","properties":{"name":"EAST BALDWIN","zip":"04024","state":"ME"},"arcs":[[3218,3219,3220,3221]]},{"type":"Polygon","properties":{"name":"LEBANON","zip":"04027","state":"ME"},"arcs":[[-3130,-3110,-3088,-3157,3222,3223,3224,-3147]]},{"type":"Polygon","properties":{"name":"SEBAGO","zip":"04029","state":"ME"},"arcs":[[3225,3226,-3221,3227,3228,-3217,-3183,3229,-3197]]},{"type":"Polygon","properties":{"name":"EAST WATERBORO","zip":"04030","state":"ME"},"arcs":[[3230,3231,3232,-3164]]},{"type":"Polygon","properties":{"name":"FREEPORT","zip":"04032","state":"ME"},"arcs":[[3233,3234,3235,-3192,3236]]},{"type":"Polygon","properties":{"name":"FRYEBURG","zip":"04037","state":"ME"},"arcs":[[-2992,3237,-3186]]},{"type":"Polygon","properties":{"name":"GORHAM","zip":"04038","state":"ME"},"arcs":[[3238,3239,3240,3241,3242]]},{"type":"Polygon","properties":{"name":"GRAY","zip":"04039","state":"ME"},"arcs":[[3243,3244,3245,3246,-3215]]},{"type":"Polygon","properties":{"name":"HARRISON","zip":"04040","state":"ME"},"arcs":[[3247,3248,-3181,3249,3250,3251]]},{"type":"Polygon","properties":{"name":"HIRAM","zip":"04041","state":"ME"},"arcs":[[3252,-3184,-3218,-3229,3253,-3208,3254]]},{"type":"Polygon","properties":{"name":"HOLLIS CENTER","zip":"04042","state":"ME"},"arcs":[[3255,-3168,-3165,-3233,3256,3257,3258,3259,3260]]},{"type":"Polygon","properties":{"name":"KENNEBUNK","zip":"04043","state":"ME"},"arcs":[[3261,3262,-3159,3263,3264]]},{"type":"Polygon","properties":{"name":"KENNEBUNKPORT","zip":"04046","state":"ME"},"arcs":[[-3264,-3158,-3167,3265]]},{"type":"Polygon","properties":{"name":"PARSONSFIELD","zip":"04047","state":"ME"},"arcs":[[3266,3267,-3045,-3123,-3002,3268,-3255,-3207]]},{"type":"Polygon","properties":{"name":"LIMERICK","zip":"04048","state":"ME"},"arcs":[[3269,3270,-3267,-3206,3271,-3258]]},{"type":"Polygon","properties":{"name":"LIMINGTON","zip":"04049","state":"ME"},"arcs":[[-3272,-3205,3272,3273,-3259]]},{"type":"Polygon","properties":{"name":"LOVELL","zip":"04051","state":"ME"},"arcs":[[-3079,3274,3275,-3202,3276,-3187,-3238]]},{"type":"Polygon","properties":{"name":"NAPLES","zip":"04055","state":"ME"},"arcs":[[-3230,-3182,-3249,3277,-3198]]},{"type":"Polygon","properties":{"name":"NORTH WATERBORO","zip":"04061","state":"ME"},"arcs":[[3278,3279,-3270,-3257,-3232,3280]]},{"type":"Polygon","properties":{"name":"WINDHAM","zip":"04062","state":"ME"},"arcs":[[3281,3282,-3241,3283,3284,-3244,-3214]]},{"type":"Polygon","properties":{"name":"OLD ORCHARD BEACH","zip":"04064","state":"ME"},"arcs":[[3285,3286,3287]]},{"type":"Polygon","properties":{"name":"ORRS ISLAND","zip":"04066","state":"ME"},"arcs":[[3288]]},{"type":"Polygon","properties":{"name":"PORTER","zip":"04068","state":"ME"},"arcs":[[-3061,-3084,-3185,-3253,-3269]]},{"type":"Polygon","properties":{"name":"POWNAL","zip":"04069","state":"ME"},"arcs":[[3289,3290,3291,3292,-3235]]},{"type":"Polygon","properties":{"name":"RAYMOND","zip":"04071","state":"ME"},"arcs":[[-3201,3293,3294,-3245,-3285,3295,-3226]]},{"type":"Polygon","properties":{"name":"SACO","zip":"04072","state":"ME"},"arcs":[[-3169,-3256,3296,3297,-3286,3298]]},{"type":"Polygon","properties":{"name":"SANFORD","zip":"04073","state":"ME"},"arcs":[[3299,-3148,-3225,3300,-3160,-3263]]},{"type":"Polygon","properties":{"name":"SCARBOROUGH","zip":"04074","state":"ME"},"arcs":[[3301,-3243,3302,3303,3304,3305,-3287,-3298]]},{"type":"Polygon","properties":{"name":"SHAPLEIGH","zip":"04076","state":"ME"},"arcs":[[3306,-3279,3307,-3162,3308,-3223,-3156]]},{"type":"MultiPolygon","properties":{"name":"HARPSWELL","zip":"04079","state":"ME"},"arcs":[[[-3190,3309]],[[3310]]]},{"type":"Polygon","properties":{"name":"SOUTH WATERFORD","zip":"04081","state":"ME"},"arcs":[[-3204,3311,3312,-3250,-3180,-3188,-3277]]},{"type":"Polygon","properties":{"name":"SPRINGVALE","zip":"04083","state":"ME"},"arcs":[[-3224,-3309,-3161,-3301]]},{"type":"Polygon","properties":{"name":"STANDISH","zip":"04084","state":"ME"},"arcs":[[3313,-3222,-3227,-3296,-3284,-3240,3314,-3260,-3274]]},{"type":"Polygon","properties":{"name":"STEEP FALLS","zip":"04085","state":"ME"},"arcs":[[-3210,3315,-3219,-3314,-3273]]},{"type":"Polygon","properties":{"name":"TOPSHAM","zip":"04086","state":"ME"},"arcs":[[3316,-3194,3317,3318,3319,-3173]]},{"type":"Polygon","properties":{"name":"WATERBORO","zip":"04087","state":"ME"},"arcs":[[-3163,-3308,-3281,-3231]]},{"type":"Polygon","properties":{"name":"WELLS","zip":"04090","state":"ME"},"arcs":[[-3149,-3300,-3262,3320,-3150,-3134,-3153]]},{"type":"Polygon","properties":{"name":"WEST BALDWIN","zip":"04091","state":"ME"},"arcs":[[-3209,-3254,-3228,-3220,-3316]]},{"type":"Polygon","properties":{"name":"WESTBROOK","zip":"04092","state":"ME"},"arcs":[[-3242,-3283,3321,3322,3323,3324,-3303]]},{"type":"Polygon","properties":{"name":"BUXTON","zip":"04093","state":"ME"},"arcs":[[-3315,-3239,-3302,-3297,-3261]]},{"type":"Polygon","properties":{"name":"WEST NEWFIELD","zip":"04095","state":"ME"},"arcs":[[-3046,-3268,-3271,-3280,-3307,-3155]]},{"type":"Polygon","properties":{"name":"YARMOUTH","zip":"04096","state":"ME"},"arcs":[[3325,-3290,-3234,3326,3327,-3211]]},{"type":"Polygon","properties":{"name":"NORTH YARMOUTH","zip":"04097","state":"ME"},"arcs":[[-3216,-3247,3328,-3291,-3326]]},{"type":"Polygon","properties":{"name":"PORTLAND","zip":"04101","state":"ME"},"arcs":[[3329,3330,3331]]},{"type":"Polygon","properties":{"name":"PORTLAND","zip":"04102","state":"ME"},"arcs":[[3332,-3324,3333,-3330,3334]]},{"type":"Polygon","properties":{"name":"PORTLAND","zip":"04103","state":"ME"},"arcs":[[-3334,-3323,3335,3336,-3331]]},{"type":"Polygon","properties":{"name":"FALMOUTH","zip":"04105","state":"ME"},"arcs":[[-3282,-3213,3337,3338,-3336,-3322]]},{"type":"Polygon","properties":{"name":"SOUTH PORTLAND","zip":"04106","state":"ME"},"arcs":[[3339,-3304,-3325,-3333,3340]]},{"type":"Polygon","properties":{"name":"CAPE ELIZABETH","zip":"04107","state":"ME"},"arcs":[[-3305,-3340,3341]]},{"type":"Polygon","properties":{"name":"CUMBERLAND FORESIDE","zip":"04110","state":"ME"},"arcs":[[-3338,-3212,-3328,3342]]},{"type":"Polygon","properties":{"name":"AUBURN","zip":"04210","state":"ME"},"arcs":[[3343,3344,3345,3346,3347,3348,3349,3350]]},{"type":"Polygon","properties":{"name":"ANDOVER","zip":"04216","state":"ME"},"arcs":[[3351,3352,3353,-2872,-724,-2887,-2867,-731,-2891,-584,3354,-652,3355,3356,3357,3358]]},{"type":"Polygon","properties":{"name":"BETHEL","zip":"04217","state":"ME"},"arcs":[[-3078,-721,-2873,-3354,3359,3360,3361,3362,3363,3364,3365,-3275]]},{"type":"Polygon","properties":{"name":"BRYANT POND","zip":"04219","state":"ME"},"arcs":[[3366,3367,3368,3369,3370,-3363]]},{"type":"Polygon","properties":{"name":"BUCKFIELD","zip":"04220","state":"ME"},"arcs":[[3371,3372,3373,3374,3375,3376,3377]]},{"type":"Polygon","properties":{"name":"CANTON","zip":"04221","state":"ME"},"arcs":[[3378,-3375,3379,3380,3381,3382,3383]]},{"type":"Polygon","properties":{"name":"DURHAM","zip":"04222","state":"ME"},"arcs":[[-3236,-3293,3384,-3345,3385,3386,-3318,-3193]]},{"type":"Polygon","properties":{"name":"DIXFIELD","zip":"04224","state":"ME"},"arcs":[[3387,3388,3389,3390,3391,3392,-3382,3393]]},{"type":"Polygon","properties":{"name":"DRYDEN","zip":"04225","state":"ME"},"arcs":[[3394,3395,3396,-3391]]},{"type":"Polygon","properties":{"name":"EAST ANDOVER","zip":"04226","state":"ME"},"arcs":[[3397,3398,-3359]]},{"type":"Polygon","properties":{"name":"EAST LIVERMORE","zip":"04228","state":"ME"},"arcs":[[3399,3400,3401,3402,3403]]},{"type":"Polygon","properties":{"name":"STONEHAM","zip":"04231","state":"ME"},"arcs":[[-3203,-3276,-3366,3404,-3312]]},{"type":"Polygon","properties":{"name":"GREENE","zip":"04236","state":"ME"},"arcs":[[3405,3406,-3350,3407,3408]]},{"type":"Polygon","properties":{"name":"HANOVER","zip":"04237","state":"ME"},"arcs":[[3409,3410,-3361]]},{"type":"Polygon","properties":{"name":"HEBRON","zip":"04238","state":"ME"},"arcs":[[3411,3412,-3378,3413]]},{"type":"Polygon","properties":{"name":"JAY","zip":"04239","state":"ME"},"arcs":[[3414,3415,-3383,-3393,3416,3417]]},{"type":"Polygon","properties":{"name":"LEWISTON","zip":"04240","state":"ME"},"arcs":[[3418,-3351,-3407,3419]]},{"type":"Polygon","properties":{"name":"LISBON","zip":"04250","state":"ME"},"arcs":[[-3419,3420,3421,-3386,-3344]]},{"type":"Polygon","properties":{"name":"LISBON FALLS","zip":"04252","state":"ME"},"arcs":[[-3387,-3422,3422,3423,-3319]]},{"type":"Polygon","properties":{"name":"LIVERMORE","zip":"04253","state":"ME"},"arcs":[[3424,-3384,-3416,3425,-3401,3426,3427]]},{"type":"Polygon","properties":{"name":"LIVERMORE FALLS","zip":"04254","state":"ME"},"arcs":[[-3415,3428,-3402,-3426]]},{"type":"Polygon","properties":{"name":"GREENWOOD","zip":"04255","state":"ME"},"arcs":[[3429,3430,-3364,-3371,3431]]},{"type":"Polygon","properties":{"name":"MECHANIC FALLS","zip":"04256","state":"ME"},"arcs":[[3432,3433,3434,3435]]},{"type":"Polygon","properties":{"name":"MEXICO","zip":"04257","state":"ME"},"arcs":[[3436,3437,3438,-3388]]},{"type":"Polygon","properties":{"name":"MINOT","zip":"04258","state":"ME"},"arcs":[[3439,-3412,3440,-3348,3441,-3435]]},{"type":"Polygon","properties":{"name":"MONMOUTH","zip":"04259","state":"ME"},"arcs":[[3442,3443,3444,3445,3446,3447]]},{"type":"Polygon","properties":{"name":"NEW GLOUCESTER","zip":"04260","state":"ME"},"arcs":[[-3329,-3246,-3295,3448,-3346,-3385,-3292]]},{"type":"Polygon","properties":{"name":"NEWRY","zip":"04261","state":"ME"},"arcs":[[-3360,-3353,3449,-3410]]},{"type":"Polygon","properties":{"name":"LEEDS","zip":"04263","state":"ME"},"arcs":[[3450,-3427,-3400,3451,3452,-3443,3453,-3409]]},{"type":"Polygon","properties":{"name":"NORTH MONMOUTH","zip":"04265","state":"ME"},"arcs":[[3454,-3444,-3453,3455]]},{"type":"Polygon","properties":{"name":"NORTH TURNER","zip":"04266","state":"ME"},"arcs":[[-3379,-3425,3456,-3376]]},{"type":"Polygon","properties":{"name":"NORTH WATERFORD","zip":"04267","state":"ME"},"arcs":[[3457,-3251,-3313,-3405,-3365,-3431]]},{"type":"Polygon","properties":{"name":"NORWAY","zip":"04268","state":"ME"},"arcs":[[-3430,3458,3459,3460,-3252,-3458]]},{"type":"Polygon","properties":{"name":"OXFORD","zip":"04270","state":"ME"},"arcs":[[-3461,3461,-3433,3462,-3199,-3278,-3248]]},{"type":"Polygon","properties":{"name":"POLAND","zip":"04274","state":"ME"},"arcs":[[-3463,-3436,-3442,-3347,-3449,-3294,-3200]]},{"type":"Polygon","properties":{"name":"ROXBURY","zip":"04275","state":"ME"},"arcs":[[3463,-3356,-651,3464,-3389,-3439]]},{"type":"Polygon","properties":{"name":"RUMFORD","zip":"04276","state":"ME"},"arcs":[[-3450,-3352,-3399,3465,-3357,-3464,-3438,3466,-3367,-3362,-3411]]},{"type":"Polygon","properties":{"name":"RUMFORD CENTER","zip":"04278","state":"ME"},"arcs":[[-3398,-3358,-3466]]},{"type":"Polygon","properties":{"name":"SABATTUS","zip":"04280","state":"ME"},"arcs":[[-3420,-3406,-3454,-3448,3467,3468,-3423,-3421]]},{"type":"Polygon","properties":{"name":"SOUTH PARIS","zip":"04281","state":"ME"},"arcs":[[-3434,-3462,-3460,3469,-3372,-3413,-3440]]},{"type":"Polygon","properties":{"name":"TURNER","zip":"04282","state":"ME"},"arcs":[[-3414,-3377,-3457,-3428,-3451,-3408,-3349,-3441]]},{"type":"Polygon","properties":{"name":"WAYNE","zip":"04284","state":"ME"},"arcs":[[3470,-3456,-3452,-3404,3471]]},{"type":"Polygon","properties":{"name":"WELD","zip":"04285","state":"ME"},"arcs":[[-3390,-3465,-650,3472,3473,-3395]]},{"type":"Polygon","properties":{"name":"BOWDOIN","zip":"04287","state":"ME"},"arcs":[[-3320,-3424,-3469,3474,-3174]]},{"type":"Polygon","properties":{"name":"WEST PARIS","zip":"04289","state":"ME"},"arcs":[[-3370,3475,-3373,-3470,-3459,-3432]]},{"type":"Polygon","properties":{"name":"PERU","zip":"04290","state":"ME"},"arcs":[[-3467,-3437,-3394,-3381,3476,-3368]]},{"type":"Polygon","properties":{"name":"SUMNER","zip":"04292","state":"ME"},"arcs":[[-3476,-3369,-3477,-3380,-3374]]},{"type":"Polygon","properties":{"name":"WILTON","zip":"04294","state":"ME"},"arcs":[[-3392,-3397,3477,3478,-3417]]},{"type":"Polygon","properties":{"name":"AUGUSTA","zip":"04330","state":"ME"},"arcs":[[3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489]]},{"type":"Polygon","properties":{"name":"COOPERS MILLS","zip":"04341","state":"ME"},"arcs":[[3490,3491,3492]]},{"type":"Polygon","properties":{"name":"DRESDEN","zip":"04342","state":"ME"},"arcs":[[3493,3494,3495,3496,3497,-3177]]},{"type":"Polygon","properties":{"name":"FARMINGDALE","zip":"04344","state":"ME"},"arcs":[[3498,3499,3500,-3482]]},{"type":"Polygon","properties":{"name":"GARDINER","zip":"04345","state":"ME"},"arcs":[[3501,3502,-3446,3503,3504,3505,-3500,3506,3507,3508,-3495]]},{"type":"Polygon","properties":{"name":"RANDOLPH","zip":"04346","state":"ME"},"arcs":[[3509,-3507,-3499,-3481]]},{"type":"Polygon","properties":{"name":"HALLOWELL","zip":"04347","state":"ME"},"arcs":[[-3506,3510,-3483,-3501]]},{"type":"Polygon","properties":{"name":"JEFFERSON","zip":"04348","state":"ME"},"arcs":[[3511,3512,3513,3514,-3491,3515,3516,3517,3518]]},{"type":"Polygon","properties":{"name":"KENTS HILL","zip":"04349","state":"ME"},"arcs":[[-3429,3519,3520,3521,3522,-3472,-3403]]},{"type":"Polygon","properties":{"name":"LITCHFIELD","zip":"04350","state":"ME"},"arcs":[[3523,-3175,-3475,-3468,-3447,-3503]]},{"type":"Polygon","properties":{"name":"MANCHESTER","zip":"04351","state":"ME"},"arcs":[[-3505,3524,3525,3526,-3484,-3511]]},{"type":"Polygon","properties":{"name":"MOUNT VERNON","zip":"04352","state":"ME"},"arcs":[[3527,3528,3529,3530,-3521]]},{"type":"Polygon","properties":{"name":"WHITEFIELD","zip":"04353","state":"ME"},"arcs":[[-3510,-3480,3531,-3513,3532,-3508]]},{"type":"Polygon","properties":{"name":"PALERMO","zip":"04354","state":"ME"},"arcs":[[3533,3534,3535,3536,-3492,-3515]]},{"type":"Polygon","properties":{"name":"READFIELD","zip":"04355","state":"ME"},"arcs":[[3537,-3522,-3531,3538,-3526]]},{"type":"Polygon","properties":{"name":"RICHMOND","zip":"04357","state":"ME"},"arcs":[[-3176,-3524,-3502,-3494]]},{"type":"Polygon","properties":{"name":"SOUTH CHINA","zip":"04358","state":"ME"},"arcs":[[3539,3540,3541,3542,-3534,3543,-3489]]},{"type":"Polygon","properties":{"name":"VIENNA","zip":"04360","state":"ME"},"arcs":[[3544,3545,3546,3547,-3529]]},{"type":"Polygon","properties":{"name":"WINDSOR","zip":"04363","state":"ME"},"arcs":[[-3532,-3490,-3544,-3514]]},{"type":"Polygon","properties":{"name":"WINTHROP","zip":"04364","state":"ME"},"arcs":[[-3445,-3455,-3471,-3523,-3538,-3525,-3504]]},{"type":"Polygon","properties":{"name":"BANGOR","zip":"04401","state":"ME"},"arcs":[[3548,3549,3550,3551,3552,3553,3554,3555,3556]]},{"type":"Polygon","properties":{"name":"ABBOT","zip":"04406","state":"ME"},"arcs":[[3557,-660,3558,3559,-624,3560,3561,3562,3563]]},{"type":"Polygon","properties":{"name":"AURORA","zip":"04408","state":"ME"},"arcs":[[3564,3565,3566,3567,-578]]},{"type":"Polygon","properties":{"name":"BRADFORD","zip":"04410","state":"ME"},"arcs":[[3568,3569,3570,3571,3572]]},{"type":"Polygon","properties":{"name":"BRADLEY","zip":"04411","state":"ME"},"arcs":[[3573,3574,3575,3576,3577,-3566]]},{"type":"Polygon","properties":{"name":"BREWER","zip":"04412","state":"ME"},"arcs":[[3578,3579,3580,-3549,3581]]},{"type":"Polygon","properties":{"name":"BROOKTON","zip":"04413","state":"ME"},"arcs":[[3582,3583,3584,3585,3586,3587]]},{"type":"Polygon","properties":{"name":"BROWNVILLE","zip":"04414","state":"ME"},"arcs":[[3588,-629]]},{"type":"Polygon","properties":{"name":"BUCKSPORT","zip":"04416","state":"ME"},"arcs":[[3589,3590,3591,3592,3593,3594,3595]]},{"type":"Polygon","properties":{"name":"BURLINGTON","zip":"04417","state":"ME"},"arcs":[[3596,3597,3598,3599,3600,-657,-580]]},{"type":"Polygon","properties":{"name":"GREENBUSH","zip":"04418","state":"ME"},"arcs":[[3601,3602,3603,-3598,3604]]},{"type":"Polygon","properties":{"name":"CARMEL","zip":"04419","state":"ME"},"arcs":[[3605,3606,3607,3608,-3551]]},{"type":"Polygon","properties":{"name":"CASTINE","zip":"04421","state":"ME"},"arcs":[[3609,3610,3611]]},{"type":"Polygon","properties":{"name":"CHARLESTON","zip":"04422","state":"ME"},"arcs":[[3612,3613,3614,-3570]]},{"type":"Polygon","properties":{"name":"COSTIGAN","zip":"04423","state":"ME"},"arcs":[[3615,-3605,-3597,-579,-3568]]},{"type":"Polygon","properties":{"name":"DANFORTH","zip":"04424","state":"ME"},"arcs":[[3616,3617,3618,3619,-3583,3620,-616]]},{"type":"Polygon","properties":{"name":"DOVER FOXCROFT","zip":"04426","state":"ME"},"arcs":[[3621,3622,3623,3624,3625,-631,3626,3627,-3615]]},{"type":"Polygon","properties":{"name":"CORINTH","zip":"04427","state":"ME"},"arcs":[[3628,3629,-3613,3630,3631]]},{"type":"Polygon","properties":{"name":"EDDINGTON","zip":"04428","state":"ME"},"arcs":[[-3557,3632,-3575,3633,3634,-3582]]},{"type":"Polygon","properties":{"name":"HOLDEN","zip":"04429","state":"ME"},"arcs":[[3635,-3579,-3635,3636,3637,-3596]]},{"type":"Polygon","properties":{"name":"EAST MILLINOCKET","zip":"04430","state":"ME"},"arcs":[[3638,-594]]},{"type":"Polygon","properties":{"name":"EAST ORLAND","zip":"04431","state":"ME"},"arcs":[[3639,3640]]},{"type":"Polygon","properties":{"name":"ETNA","zip":"04434","state":"ME"},"arcs":[[3641,3642,3643,3644,-3607]]},{"type":"Polygon","properties":{"name":"EXETER","zip":"04435","state":"ME"},"arcs":[[3645,3646,3647,-3630]]},{"type":"Polygon","properties":{"name":"FRANKFORT","zip":"04438","state":"ME"},"arcs":[[3648,3649,3650,3651,3652]]},{"type":"Polygon","properties":{"name":"GREENVILLE","zip":"04441","state":"ME"},"arcs":[[3653,3654,-625,-3560]]},{"type":"Polygon","properties":{"name":"GREENVILLE JUNCTION","zip":"04442","state":"ME"},"arcs":[[-665,3655,3656,-3654,-3559]]},{"type":"MultiPolygon","properties":{"name":"GUILFORD","zip":"04443","state":"ME"},"arcs":[[[-3561,-632,-3626]],[[3657,3658,3659,-3563,3660,-3624,3661]]]},{"type":"Polygon","properties":{"name":"HAMPDEN","zip":"04444","state":"ME"},"arcs":[[3662,3663,3664,-3606,-3550,-3581,3665]]},{"type":"Polygon","properties":{"name":"HOWLAND","zip":"04448","state":"ME"},"arcs":[[3666,3667,3668,3669,-598,3670]]},{"type":"Polygon","properties":{"name":"HUDSON","zip":"04449","state":"ME"},"arcs":[[3671,-3631,-3569,3672,-3554]]},{"type":"Polygon","properties":{"name":"KENDUSKEAG","zip":"04450","state":"ME"},"arcs":[[3673,-3632,-3672,-3553]]},{"type":"Polygon","properties":{"name":"KINGMAN","zip":"04451","state":"ME"},"arcs":[[3674,3675,3676,3677,3678,-644]]},{"type":"Polygon","properties":{"name":"LAGRANGE","zip":"04453","state":"ME"},"arcs":[[3679,-3572,3680,-3669]]},{"type":"Polygon","properties":{"name":"LAMBERT LAKE","zip":"04454","state":"ME"},"arcs":[[3681,-3586,3682]]},{"type":"Polygon","properties":{"name":"LEE","zip":"04455","state":"ME"},"arcs":[[3683,3684,3685,-658]]},{"type":"Polygon","properties":{"name":"LEVANT","zip":"04456","state":"ME"},"arcs":[[3686,-3629,-3674,-3552,-3609]]},{"type":"Polygon","properties":{"name":"LINCOLN","zip":"04457","state":"ME"},"arcs":[[-3601,3687,-596,3688,3689,3690,-3684]]},{"type":"Polygon","properties":{"name":"MATTAWAMKEAG","zip":"04459","state":"ME"},"arcs":[[3691,-3690,3692,-3677,3693]]},{"type":"Polygon","properties":{"name":"MEDWAY","zip":"04460","state":"ME"},"arcs":[[-3689,-595,-3639,-593,3694,3695,-3678,-3693]]},{"type":"Polygon","properties":{"name":"MILFORD","zip":"04461","state":"ME"},"arcs":[[3696,-3602,-3616,-3567,-3578]]},{"type":"Polygon","properties":{"name":"MILLINOCKET","zip":"04462","state":"ME"},"arcs":[[-599]]},{"type":"Polygon","properties":{"name":"MILO","zip":"04463","state":"ME"},"arcs":[[-3571,-3628,3697,-3589,-628,-588,-3670,-3681]]},{"type":"Polygon","properties":{"name":"MONSON","zip":"04464","state":"ME"},"arcs":[[-3562,-3625,-3661]]},{"type":"Polygon","properties":{"name":"OLD TOWN","zip":"04468","state":"ME"},"arcs":[[-3577,3698,-3555,-3673,-3573,-3680,-3668,-3603,-3697]]},{"type":"Polygon","properties":{"name":"ORIENT","zip":"04471","state":"ME"},"arcs":[[3699,-649,3700,3701,3702,-3619]]},{"type":"Polygon","properties":{"name":"ORLAND","zip":"04472","state":"ME"},"arcs":[[3703,3704,-3590,-3638,3705,-3640,3706]]},{"type":"Polygon","properties":{"name":"ORONO","zip":"04473","state":"ME"},"arcs":[[-3556,-3699,-3576,-3633]]},{"type":"Polygon","properties":{"name":"ORRINGTON","zip":"04474","state":"ME"},"arcs":[[3707,-3666,-3580,-3636,-3595]]},{"type":"Polygon","properties":{"name":"PASSADUMKEAG","zip":"04475","state":"ME"},"arcs":[[-3667,3708,-3599,-3604]]},{"type":"Polygon","properties":{"name":"PENOBSCOT","zip":"04476","state":"ME"},"arcs":[[3709,3710,3711,-3610,3712,-3591,-3705,3713]]},{"type":"Polygon","properties":{"name":"ROCKWOOD","zip":"04478","state":"ME"},"arcs":[[-664,3714,3715,-600,3716,-3656]]},{"type":"Polygon","properties":{"name":"SANGERVILLE","zip":"04479","state":"ME"},"arcs":[[-3623,3717,-3662]]},{"type":"Polygon","properties":{"name":"SEBEC","zip":"04481","state":"ME"},"arcs":[[-630,-3698,-3627]]},{"type":"Polygon","properties":{"name":"SPRINGFIELD","zip":"04487","state":"ME"},"arcs":[[-582,-659,-3686,3718,-3694,-3676,3719,-3617,-615]]},{"type":"Polygon","properties":{"name":"STETSON","zip":"04488","state":"ME"},"arcs":[[-3645,3720,3721,-3646,-3687,-3608]]},{"type":"Polygon","properties":{"name":"TOPSFIELD","zip":"04490","state":"ME"},"arcs":[[3722,-617,-3621,-3588]]},{"type":"Polygon","properties":{"name":"VANCEBORO","zip":"04491","state":"ME"},"arcs":[[3723,-3683,-3585,3724]]},{"type":"Polygon","properties":{"name":"WAITE","zip":"04492","state":"ME"},"arcs":[[3725,3726,-618,-3723,-3587,-3682,-3724,3727]]},{"type":"Polygon","properties":{"name":"WEST ENFIELD","zip":"04493","state":"ME"},"arcs":[[-597,-3688,-3600,-3709,-3671]]},{"type":"Polygon","properties":{"name":"WINN","zip":"04495","state":"ME"},"arcs":[[-3691,-3692,-3719,-3685]]},{"type":"Polygon","properties":{"name":"WINTERPORT","zip":"04496","state":"ME"},"arcs":[[3728,-3663,-3708,-3594,3729,-3652]]},{"type":"Polygon","properties":{"name":"WYTOPITLOCK","zip":"04497","state":"ME"},"arcs":[[-3675,-643,-3700,-3618,-3720]]},{"type":"Polygon","properties":{"name":"BATH","zip":"04530","state":"ME"},"arcs":[[-3195,-3317,-3172,3730,3731,3732,3733,3734,3735]]},{"type":"Polygon","properties":{"name":"ALNA","zip":"04535","state":"ME"},"arcs":[[-3509,-3533,-3512,3736,3737,-3496]]},{"type":"Polygon","properties":{"name":"BOOTHBAY","zip":"04537","state":"ME"},"arcs":[[3738,3739,3740,3741,3742,3743]]},{"type":"Polygon","properties":{"name":"BOOTHBAY HARBOR","zip":"04538","state":"ME"},"arcs":[[3744,3745,3746,3747,-3743]]},{"type":"Polygon","properties":{"name":"BRISTOL","zip":"04539","state":"ME"},"arcs":[[3748,3749,3750,3751,3752,3753,3754,3755,3756]]},{"type":"Polygon","properties":{"name":"CHAMBERLAIN","zip":"04541","state":"ME"},"arcs":[[3757,3758,-3755,3759,3760]]},{"type":"Polygon","properties":{"name":"DAMARISCOTTA","zip":"04543","state":"ME"},"arcs":[[3761,3762,3763,3764,-3751]]},{"type":"Polygon","properties":{"name":"EAST BOOTHBAY","zip":"04544","state":"ME"},"arcs":[[-3747,3765]]},{"type":"Polygon","properties":{"name":"FRIENDSHIP","zip":"04547","state":"ME"},"arcs":[[3766,3767,3768,3769]]},{"type":"Polygon","properties":{"name":"GEORGETOWN","zip":"04548","state":"ME"},"arcs":[[-3734,3770]]},{"type":"Polygon","properties":{"name":"BREMEN","zip":"04551","state":"ME"},"arcs":[[-3752,-3765,3771,3772]]},{"type":"Polygon","properties":{"name":"NEWCASTLE","zip":"04553","state":"ME"},"arcs":[[-3737,-3519,3773,-3763,3774]]},{"type":"Polygon","properties":{"name":"NEW HARBOR","zip":"04554","state":"ME"},"arcs":[[3775,-3758,3776]]},{"type":"Polygon","properties":{"name":"NOBLEBORO","zip":"04555","state":"ME"},"arcs":[[-3774,-3518,3777,-3764]]},{"type":"Polygon","properties":{"name":"EDGECOMB","zip":"04556","state":"ME"},"arcs":[[3778,3779,-3775,-3762,-3750,3780,-3740]]},{"type":"Polygon","properties":{"name":"PEMAQUID","zip":"04558","state":"ME"},"arcs":[[-3756,-3759,-3776,3781]]},{"type":"Polygon","properties":{"name":"PHIPPSBURG","zip":"04562","state":"ME"},"arcs":[[-3735,3782]]},{"type":"Polygon","properties":{"name":"ROUND POND","zip":"04564","state":"ME"},"arcs":[[-3754,3783,-3760]]},{"type":"Polygon","properties":{"name":"SOUTH BRISTOL","zip":"04568","state":"ME"},"arcs":[[-3742,3784,3785,-3745]]},{"type":"Polygon","properties":{"name":"TREVETT","zip":"04571","state":"ME"},"arcs":[[3786,-3779,-3739,3787]]},{"type":"Polygon","properties":{"name":"WALDOBORO","zip":"04572","state":"ME"},"arcs":[[-3778,-3517,3788,3789,3790,-3767,3791,-3772]]},{"type":"Polygon","properties":{"name":"WALPOLE","zip":"04573","state":"ME"},"arcs":[[-3741,-3781,-3749,3792,-3785]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"04574","state":"ME"},"arcs":[[-3493,-3537,3793,3794,-3789,-3516]]},{"type":"Polygon","properties":{"name":"WISCASSET","zip":"04578","state":"ME"},"arcs":[[-3732,3795,-3497,-3738,-3780,-3787,3796]]},{"type":"Polygon","properties":{"name":"WOOLWICH","zip":"04579","state":"ME"},"arcs":[[-3731,-3171,-3498,-3796]]},{"type":"Polygon","properties":{"name":"ELLSWORTH","zip":"04605","state":"ME"},"arcs":[[3797,3798,3799,-3707,-3641,-3706,-3637,-3634,-3574,-3565,-577,3800,3801]]},{"type":"Polygon","properties":{"name":"ADDISON","zip":"04606","state":"ME"},"arcs":[[3802,3803,3804,3805,3806]]},{"type":"Polygon","properties":{"name":"GOULDSBORO","zip":"04607","state":"ME"},"arcs":[[3807,3808,3809,3810,-575,3811,3812]]},{"type":"Polygon","properties":{"name":"BAR HARBOR","zip":"04609","state":"ME"},"arcs":[[3813,3814]]},{"type":"Polygon","properties":{"name":"BIRCH HARBOR","zip":"04613","state":"ME"},"arcs":[[3815,3816,3817]]},{"type":"Polygon","properties":{"name":"BLUE HILL","zip":"04614","state":"ME"},"arcs":[[3818,3819,-3710,3820,3821]]},{"type":"Polygon","properties":{"name":"BLUE HILL FALLS","zip":"04615","state":"ME"},"arcs":[[3822,-3819,3823,3824]]},{"type":"Polygon","properties":{"name":"BROOKLIN","zip":"04616","state":"ME"},"arcs":[[3825,-3825,3826]]},{"type":"Polygon","properties":{"name":"BROOKSVILLE","zip":"04617","state":"ME"},"arcs":[[3827,3828,3829,3830,-3611,-3712,3831]]},{"type":"Polygon","properties":{"name":"CALAIS","zip":"04619","state":"ME"},"arcs":[[3832,3833,3834]]},{"type":"Polygon","properties":{"name":"CHERRYFIELD","zip":"04622","state":"ME"},"arcs":[[-623,3835,3836,3837,3838,-573]]},{"type":"Polygon","properties":{"name":"COLUMBIA FALLS","zip":"04623","state":"ME"},"arcs":[[3839,-3806,3840,-3836,-622,3841]]},{"type":"Polygon","properties":{"name":"COREA","zip":"04624","state":"ME"},"arcs":[[3842,3843]]},{"type":"Polygon","properties":{"name":"CUTLER","zip":"04626","state":"ME"},"arcs":[[3844,3845,3846]]},{"type":"Polygon","properties":{"name":"DEER ISLE","zip":"04627","state":"ME"},"arcs":[[3847,3848,3849,3850,3851]]},{"type":"Polygon","properties":{"name":"DENNYSVILLE","zip":"04628","state":"ME"},"arcs":[[3852,3853,-677,3854,3855]]},{"type":"Polygon","properties":{"name":"EAST MACHIAS","zip":"04630","state":"ME"},"arcs":[[3856,-678,-3854,3857,-3845,3858,3859]]},{"type":"Polygon","properties":{"name":"EASTPORT","zip":"04631","state":"ME"},"arcs":[[3860,3861]]},{"type":"Polygon","properties":{"name":"FRANKLIN","zip":"04634","state":"ME"},"arcs":[[3862,3863,-3801,-576,-3811,3864]]},{"type":"Polygon","properties":{"name":"HANCOCK","zip":"04640","state":"ME"},"arcs":[[-3798,3865]]},{"type":"Polygon","properties":{"name":"HARBORSIDE","zip":"04642","state":"ME"},"arcs":[[-3830,3866]]},{"type":"Polygon","properties":{"name":"HARRINGTON","zip":"04643","state":"ME"},"arcs":[[3867,-3837,-3841,-3805,3868]]},{"type":"Polygon","properties":{"name":"JONESBORO","zip":"04648","state":"ME"},"arcs":[[3869,-3807,-3840,3870,3871]]},{"type":"Polygon","properties":{"name":"JONESPORT","zip":"04649","state":"ME"},"arcs":[[-3803,-3870,3872]]},{"type":"Polygon","properties":{"name":"LITTLE DEER ISLE","zip":"04650","state":"ME"},"arcs":[[-3851,3873]]},{"type":"Polygon","properties":{"name":"LUBEC","zip":"04652","state":"ME"},"arcs":[[-3846,-3858,-3853,3874]]},{"type":"Polygon","properties":{"name":"MACHIAS","zip":"04654","state":"ME"},"arcs":[[3875,3876,-3871,-3842,-621,3877,-679,-3857]]},{"type":"Polygon","properties":{"name":"MACHIASPORT","zip":"04655","state":"ME"},"arcs":[[-3876,-3860,3878]]},{"type":"Polygon","properties":{"name":"MEDDYBEMPS","zip":"04657","state":"ME"},"arcs":[[3879,3880,-681]]},{"type":"Polygon","properties":{"name":"MILBRIDGE","zip":"04658","state":"ME"},"arcs":[[3881,-3838,-3868,3882]]},{"type":"Polygon","properties":{"name":"MOUNT DESERT","zip":"04660","state":"ME"},"arcs":[[-3814,3883,3884,3885]]},{"type":"Polygon","properties":{"name":"PEMBROKE","zip":"04666","state":"ME"},"arcs":[[3886,3887,-3855,-682,-3881,3888,3889]]},{"type":"Polygon","properties":{"name":"PERRY","zip":"04667","state":"ME"},"arcs":[[3890,3891,-3861,3892,-3887]]},{"type":"Polygon","properties":{"name":"PRINCETON","zip":"04668","state":"ME"},"arcs":[[-3727,3893,-619]]},{"type":"Polygon","properties":{"name":"PROSPECT HARBOR","zip":"04669","state":"ME"},"arcs":[[3894,-3808,-3843,3895,-3817]]},{"type":"Polygon","properties":{"name":"ROBBINSTON","zip":"04671","state":"ME"},"arcs":[[-3890,-3835,3896,-3891]]},{"type":"Polygon","properties":{"name":"SARGENTVILLE","zip":"04673","state":"ME"},"arcs":[[-3828,3897,3898]]},{"type":"Polygon","properties":{"name":"SEDGWICK","zip":"04676","state":"ME"},"arcs":[[-3832,-3711,-3820,-3823,-3826,3899,-3898]]},{"type":"Polygon","properties":{"name":"SORRENTO","zip":"04677","state":"ME"},"arcs":[[-3863,3900]]},{"type":"Polygon","properties":{"name":"SOUTHWEST HARBOR","zip":"04679","state":"ME"},"arcs":[[-3885,3901]]},{"type":"Polygon","properties":{"name":"STEUBEN","zip":"04680","state":"ME"},"arcs":[[-3812,-574,-3839,-3882,3902]]},{"type":"Polygon","properties":{"name":"STONINGTON","zip":"04681","state":"ME"},"arcs":[[3903,-3848,3904]]},{"type":"Polygon","properties":{"name":"SUNSET","zip":"04683","state":"ME"},"arcs":[[-3849,-3904,3905]]},{"type":"Polygon","properties":{"name":"SURRY","zip":"04684","state":"ME"},"arcs":[[-3714,-3704,-3800,3906,-3821]]},{"type":"Polygon","properties":{"name":"SWANS ISLAND","zip":"04685","state":"ME"},"arcs":[[3907]]},{"type":"Polygon","properties":{"name":"WINTER HARBOR","zip":"04693","state":"ME"},"arcs":[[-3809,-3895,-3816,3908]]},{"type":"Polygon","properties":{"name":"BAILEYVILLE","zip":"04694","state":"ME"},"arcs":[[-3894,-3726,3909,-3833,-3889,-3880,-680,-3878,-620]]},{"type":"Polygon","properties":{"name":"HOULTON","zip":"04730","state":"ME"},"arcs":[[3910,3911,3912,-634,3913,3914,-3702]]},{"type":"Polygon","properties":{"name":"ASHLAND","zip":"04732","state":"ME"},"arcs":[[-553,3915,-672,3916,-638]]},{"type":"Polygon","properties":{"name":"BENEDICTA","zip":"04733","state":"ME"},"arcs":[[-592,3917,-3695]]},{"type":"Polygon","properties":{"name":"BLAINE","zip":"04734","state":"ME"},"arcs":[[3918,3919,3920,3921]]},{"type":"Polygon","properties":{"name":"BRIDGEWATER","zip":"04735","state":"ME"},"arcs":[[3922,-642,3923,-3919,3924]]},{"type":"Polygon","properties":{"name":"CARIBOU","zip":"04736","state":"ME"},"arcs":[[3925,3926,3927,3928,3929,3930,3931,3932,3933,3934]]},{"type":"Polygon","properties":{"name":"CLAYTON LAKE","zip":"04737","state":"ME"},"arcs":[[-566]]},{"type":"Polygon","properties":{"name":"EASTON","zip":"04740","state":"ME"},"arcs":[[3935,3936,3937,3938]]},{"type":"Polygon","properties":{"name":"ESTCOURT STATION","zip":"04741","state":"ME"},"arcs":[[-560,3939]]},{"type":"Polygon","properties":{"name":"FORT FAIRFIELD","zip":"04742","state":"ME"},"arcs":[[3940,-3933,3941,3942,-3938]]},{"type":"Polygon","properties":{"name":"FORT KENT","zip":"04743","state":"ME"},"arcs":[[3943,3944,3945,3946,-674,-563],[3947]]},{"type":"Polygon","properties":{"name":"FRENCHVILLE","zip":"04745","state":"ME"},"arcs":[[3948,-3946,3949,3950,3951]]},{"type":"Polygon","properties":{"name":"GRAND ISLE","zip":"04746","state":"ME"},"arcs":[[3952,3953,3954,3955,3956]]},{"type":"Polygon","properties":{"name":"ISLAND FALLS","zip":"04747","state":"ME"},"arcs":[[3957,3958,3959,-646,3960]]},{"type":"Polygon","properties":{"name":"LIMESTONE","zip":"04750","state":"ME"},"arcs":[[3961,-3930,3962,3963,-3942,-3932]]},{"type":"Polygon","properties":{"name":"LIMESTONE","zip":"04751","state":"ME"},"arcs":[[-3962,-3931]]},{"type":"Polygon","properties":{"name":"MADAWASKA","zip":"04756","state":"ME"},"arcs":[[3964,3965,-3951,3966,3967,-3955]]},{"type":"Polygon","properties":{"name":"MAPLETON","zip":"04757","state":"ME"},"arcs":[[3968,3969,-639,-3917]]},{"type":"Polygon","properties":{"name":"MARS HILL","zip":"04758","state":"ME"},"arcs":[[3970,3971,-3936,3972,-3921]]},{"type":"Polygon","properties":{"name":"MONTICELLO","zip":"04760","state":"ME"},"arcs":[[-3914,-633,-3923,3973]]},{"type":"Polygon","properties":{"name":"NEW LIMERICK","zip":"04761","state":"ME"},"arcs":[[-648,3974,-3911,-3701]]},{"type":"Polygon","properties":{"name":"NEW SWEDEN","zip":"04762","state":"ME"},"arcs":[[3975,3976,-3927]]},{"type":"Polygon","properties":{"name":"OAKFIELD","zip":"04763","state":"ME"},"arcs":[[-3960,3977,-3912,-3975,-647]]},{"type":"Polygon","properties":{"name":"OXBOW","zip":"04764","state":"ME"},"arcs":[[3978,-555,-637]]},{"type":"Polygon","properties":{"name":"PATTEN","zip":"04765","state":"ME"},"arcs":[[3979,-590,-627,-556,-3979,-636,3980,-3958]]},{"type":"Polygon","properties":{"name":"PERHAM","zip":"04766","state":"ME"},"arcs":[[3981,-676,3982,-3976,-3926]]},{"type":"Polygon","properties":{"name":"PORTAGE","zip":"04768","state":"ME"},"arcs":[[-673,-3916,-565]]},{"type":"Polygon","properties":{"name":"PRESQUE ISLE","zip":"04769","state":"ME"},"arcs":[[3983,-3934,-3941,-3937,-3972,3984,-640,-3970]]},{"type":"Polygon","properties":{"name":"SAINT AGATHA","zip":"04772","state":"ME"},"arcs":[[-3966,3985,-3952]]},{"type":"Polygon","properties":{"name":"SAINT DAVID","zip":"04773","state":"ME"},"arcs":[[-3956,-3968,3986]]},{"type":"Polygon","properties":{"name":"SAINT FRANCIS","zip":"04774","state":"ME"},"arcs":[[-3944,-562,3987]]},{"type":"Polygon","properties":{"name":"SHERMAN MILLS","zip":"04776","state":"ME"},"arcs":[[-3679,-3696,-3918,3988,-3961,-645]]},{"type":"Polygon","properties":{"name":"SHERMAN STATION","zip":"04777","state":"ME"},"arcs":[[-3980,-3989,-591]]},{"type":"Polygon","properties":{"name":"SINCLAIR","zip":"04779","state":"ME"},"arcs":[[3989,3990,-3986,-3965,-3954]]},{"type":"Polygon","properties":{"name":"SMYRNA MILLS","zip":"04780","state":"ME"},"arcs":[[-3959,-3981,-635,-3913,-3978]]},{"type":"Polygon","properties":{"name":"WALLAGRASS","zip":"04781","state":"ME"},"arcs":[[-3948]]},{"type":"Polygon","properties":{"name":"STOCKHOLM","zip":"04783","state":"ME"},"arcs":[[-3983,-675,-3947,-3949,-3991,3991,-3928,-3977]]},{"type":"Polygon","properties":{"name":"VAN BUREN","zip":"04785","state":"ME"},"arcs":[[-3929,-3992,-3990,-3953,3992,-3963]]},{"type":"Polygon","properties":{"name":"WASHBURN","zip":"04786","state":"ME"},"arcs":[[-3982,-3935,-3984,-3969,-671]]},{"type":"Polygon","properties":{"name":"WESTFIELD","zip":"04787","state":"ME"},"arcs":[[-641,-3985,-3971,-3920,-3924]]},{"type":"Polygon","properties":{"name":"ROCKLAND","zip":"04841","state":"ME"},"arcs":[[3993,3994,3995,3996,3997,3998]]},{"type":"Polygon","properties":{"name":"CAMDEN","zip":"04843","state":"ME"},"arcs":[[3999,4000,4001,4002]]},{"type":"Polygon","properties":{"name":"HOPE","zip":"04847","state":"ME"},"arcs":[[4003,4004,4005,-4001]]},{"type":"Polygon","properties":{"name":"LINCOLNVILLE","zip":"04849","state":"ME"},"arcs":[[4006,4007,4008,4009,4010,-4002,-4006]]},{"type":"Polygon","properties":{"name":"OWLS HEAD","zip":"04854","state":"ME"},"arcs":[[4011,-3998,4012]]},{"type":"Polygon","properties":{"name":"ROCKPORT","zip":"04856","state":"ME"},"arcs":[[4013,4014,-4004,-4000,4015,-3996]]},{"type":"Polygon","properties":{"name":"SAINT GEORGE","zip":"04857","state":"ME"},"arcs":[[4016,4017,4018,4019]]},{"type":"Polygon","properties":{"name":"SOUTH THOMASTON","zip":"04858","state":"ME"},"arcs":[[4020,4021,4022,-3999,-4012,4023]]},{"type":"Polygon","properties":{"name":"SPRUCE HEAD","zip":"04859","state":"ME"},"arcs":[[-4019,4024,-4021,4025]]},{"type":"Polygon","properties":{"name":"TENANTS HARBOR","zip":"04860","state":"ME"},"arcs":[[-4017,4026]]},{"type":"Polygon","properties":{"name":"THOMASTON","zip":"04861","state":"ME"},"arcs":[[-3769,4027,-3994,-4023,4028]]},{"type":"Polygon","properties":{"name":"UNION","zip":"04862","state":"ME"},"arcs":[[4029,-3790,-3795,4030,4031,-4007,-4005,-4015]]},{"type":"Polygon","properties":{"name":"VINALHAVEN","zip":"04863","state":"ME"},"arcs":[[4032]]},{"type":"Polygon","properties":{"name":"WARREN","zip":"04864","state":"ME"},"arcs":[[-3768,-3791,-4030,-4014,-3995,-4028]]},{"type":"Polygon","properties":{"name":"WATERVILLE","zip":"04901","state":"ME"},"arcs":[[4033,4034,4035,4036,4037,4038,-3487]]},{"type":"Polygon","properties":{"name":"ALBION","zip":"04910","state":"ME"},"arcs":[[4039,-4037,4040,4041,4042,-3542]]},{"type":"Polygon","properties":{"name":"ANSON","zip":"04911","state":"ME"},"arcs":[[4043,4044,4045,4046,4047,4048]]},{"type":"Polygon","properties":{"name":"ATHENS","zip":"04912","state":"ME"},"arcs":[[4049,4050,4051,4052]]},{"type":"Polygon","properties":{"name":"BELFAST","zip":"04915","state":"ME"},"arcs":[[-4010,4053,4054,4055,4056,-3650,4057,4058]]},{"type":"Polygon","properties":{"name":"BELGRADE","zip":"04917","state":"ME"},"arcs":[[-3530,-3548,4059,4060,4061,4062,-3485,-3527,-3539]]},{"type":"Polygon","properties":{"name":"BELGRADE LAKES","zip":"04918","state":"ME"},"arcs":[[4063,-4061]]},{"type":"Polygon","properties":{"name":"BINGHAM","zip":"04920","state":"ME"},"arcs":[[4064,-605,4065,-661,-3558,4066,4067,4068]]},{"type":"Polygon","properties":{"name":"BROOKS","zip":"04921","state":"ME"},"arcs":[[4069,-4056,4070,4071,4072,-3664,-3729]]},{"type":"Polygon","properties":{"name":"BURNHAM","zip":"04922","state":"ME"},"arcs":[[4073,4074,4075,4076,4077]]},{"type":"Polygon","properties":{"name":"CAMBRIDGE","zip":"04923","state":"ME"},"arcs":[[4078,-3659,4079]]},{"type":"Polygon","properties":{"name":"CANAAN","zip":"04924","state":"ME"},"arcs":[[4080,4081,4082,4083]]},{"type":"Polygon","properties":{"name":"CARATUNK","zip":"04925","state":"ME"},"arcs":[[-614,4084,-662,-4066]]},{"type":"Polygon","properties":{"name":"CLINTON","zip":"04927","state":"ME"},"arcs":[[4085,4086,-4081,4087,-4074,4088,-4041,-4036]]},{"type":"Polygon","properties":{"name":"CORINNA","zip":"04928","state":"ME"},"arcs":[[4089,4090,4091,-3647,-3722,4092]]},{"type":"Polygon","properties":{"name":"DETROIT","zip":"04929","state":"ME"},"arcs":[[4093,4094,-4076,4095,4096,4097]]},{"type":"Polygon","properties":{"name":"DEXTER","zip":"04930","state":"ME"},"arcs":[[4098,4099,-4080,-3658,-3718,4100,-4091]]},{"type":"Polygon","properties":{"name":"DIXMONT","zip":"04932","state":"ME"},"arcs":[[4101,4102,-3642,-3665,-4073]]},{"type":"Polygon","properties":{"name":"EUSTIS","zip":"04936","state":"ME"},"arcs":[[-610,4103,-572]]},{"type":"Polygon","properties":{"name":"FAIRFIELD","zip":"04937","state":"ME"},"arcs":[[4104,4105,4106,-4086,-4035,4107]]},{"type":"Polygon","properties":{"name":"FARMINGTON","zip":"04938","state":"ME"},"arcs":[[-3479,4108,4109,4110,-4044,4111,-3545,-3528,-3520,-3418]]},{"type":"Polygon","properties":{"name":"GARLAND","zip":"04939","state":"ME"},"arcs":[[-4101,-3622,-3614,-3648,-4092]]},{"type":"Polygon","properties":{"name":"FREEDOM","zip":"04941","state":"ME"},"arcs":[[-3543,-4043,4112,4113,-4071,-4055,4114,4115,4116,-3535]]},{"type":"Polygon","properties":{"name":"HARMONY","zip":"04942","state":"ME"},"arcs":[[4117,4118,-4053,4119,-4067,-3564,-3660,-4079,-4100]]},{"type":"Polygon","properties":{"name":"HARTLAND","zip":"04943","state":"ME"},"arcs":[[4120,-4083,4121,-4050,-4119,4122,4123]]},{"type":"Polygon","properties":{"name":"JACKMAN","zip":"04945","state":"ME"},"arcs":[[4124,-612,4125,-601,-3716]]},{"type":"Polygon","properties":{"name":"KINGFIELD","zip":"04947","state":"ME"},"arcs":[[4126,4127,-670,4128,-656,-607,4129]]},{"type":"Polygon","properties":{"name":"LIBERTY","zip":"04949","state":"ME"},"arcs":[[-3794,-3536,-4117,-4031]]},{"type":"Polygon","properties":{"name":"MADISON","zip":"04950","state":"ME"},"arcs":[[4130,-4047,4131,4132,4133]]},{"type":"Polygon","properties":{"name":"MONROE","zip":"04951","state":"ME"},"arcs":[[-3651,-4057,-4070]]},{"type":"Polygon","properties":{"name":"MORRILL","zip":"04952","state":"ME"},"arcs":[[-4009,4134,-4115,-4054]]},{"type":"Polygon","properties":{"name":"NEWPORT","zip":"04953","state":"ME"},"arcs":[[4135,-4093,-3721,-3644,4136,-4098]]},{"type":"Polygon","properties":{"name":"NEW PORTLAND","zip":"04954","state":"ME"},"arcs":[[4137,4138,-4127,4139,4140]]},{"type":"Polygon","properties":{"name":"NEW SHARON","zip":"04955","state":"ME"},"arcs":[[4141,-3546,-4112,-4049]]},{"type":"Polygon","properties":{"name":"NEW VINEYARD","zip":"04956","state":"ME"},"arcs":[[4142,-4138,4143,-4045,-4111]]},{"type":"Polygon","properties":{"name":"NORRIDGEWOCK","zip":"04957","state":"ME"},"arcs":[[-4142,-4048,-4131,4144,-4106,4145,4146,-4062,-4064,-4060,-3547]]},{"type":"Polygon","properties":{"name":"NORTH ANSON","zip":"04958","state":"ME"},"arcs":[[-4141,4147,-4069,4148,-4132,-4046,-4144]]},{"type":"Polygon","properties":{"name":"NORTH NEW PORTLAND","zip":"04961","state":"ME"},"arcs":[[-4140,-4130,-606,-4065,-4148]]},{"type":"Polygon","properties":{"name":"NORTH VASSALBORO","zip":"04962","state":"ME"},"arcs":[[4149,-4038,-4040,-3541]]},{"type":"Polygon","properties":{"name":"OAKLAND","zip":"04963","state":"ME"},"arcs":[[-3486,-4063,-4147,4150,-4108,-4034]]},{"type":"Polygon","properties":{"name":"PALMYRA","zip":"04965","state":"ME"},"arcs":[[4151,-4124,4152,-4136,-4097]]},{"type":"Polygon","properties":{"name":"PHILLIPS","zip":"04966","state":"ME"},"arcs":[[4153,4154,-3473,-654,4155,-667]]},{"type":"Polygon","properties":{"name":"PITTSFIELD","zip":"04967","state":"ME"},"arcs":[[-4121,-4152,-4096,-4075,-4088,-4084]]},{"type":"Polygon","properties":{"name":"PLYMOUTH","zip":"04969","state":"ME"},"arcs":[[4156,-4094,-4137,-3643,-4103]]},{"type":"Polygon","properties":{"name":"RANGELEY","zip":"04970","state":"ME"},"arcs":[[-653,-3355,-587,-568,-668,-4156]]},{"type":"Polygon","properties":{"name":"SAINT ALBANS","zip":"04971","state":"ME"},"arcs":[[-4118,-4099,-4090,-4153,-4123]]},{"type":"Polygon","properties":{"name":"SEARSMONT","zip":"04973","state":"ME"},"arcs":[[-4032,-4116,-4135,-4008]]},{"type":"Polygon","properties":{"name":"SEARSPORT","zip":"04974","state":"ME"},"arcs":[[-3649,4157,4158,-4058]]},{"type":"Polygon","properties":{"name":"SKOWHEGAN","zip":"04976","state":"ME"},"arcs":[[-4087,-4107,-4145,-4134,4159,-4051,-4122,-4082]]},{"type":"Polygon","properties":{"name":"SMITHFIELD","zip":"04978","state":"ME"},"arcs":[[-4146,-4105,-4151]]},{"type":"Polygon","properties":{"name":"SOLON","zip":"04979","state":"ME"},"arcs":[[-4133,-4149,-4068,-4120,-4052,-4160]]},{"type":"Polygon","properties":{"name":"STOCKTON SPRINGS","zip":"04981","state":"ME"},"arcs":[[-3653,-3730,-3593,4160,-4158]]},{"type":"Polygon","properties":{"name":"STRATTON","zip":"04982","state":"ME"},"arcs":[[-669,-567,-4104,-609,-655,-4129]]},{"type":"Polygon","properties":{"name":"STRONG","zip":"04983","state":"ME"},"arcs":[[-4110,4161,-4154,-666,-4128,-4139,-4143]]},{"type":"Polygon","properties":{"name":"TEMPLE","zip":"04984","state":"ME"},"arcs":[[-3478,-3396,-3474,-4155,-4162,-4109]]},{"type":"Polygon","properties":{"name":"WEST FORKS","zip":"04985","state":"ME"},"arcs":[[-4085,-613,-4125,-3715,-663]]},{"type":"Polygon","properties":{"name":"THORNDIKE","zip":"04986","state":"ME"},"arcs":[[-4114,4162,4163,-4072]]},{"type":"Polygon","properties":{"name":"TROY","zip":"04987","state":"ME"},"arcs":[[-4164,4164,-4077,-4095,-4157,-4102]]},{"type":"Polygon","properties":{"name":"UNITY","zip":"04988","state":"ME"},"arcs":[[-4113,-4042,-4089,-4078,-4165,-4163]]},{"type":"Polygon","properties":{"name":"VASSALBORO","zip":"04989","state":"ME"},"arcs":[[-3488,-4039,-4150,-3540]]},{"type":"Polygon","properties":{"name":"WHITE RIVER JUNCTION","zip":"05001","state":"VT"},"arcs":[[-2976,4165,4166,4167,4168,4169,4170,4171]]},{"type":"Polygon","properties":{"name":"BETHEL","zip":"05032","state":"VT"},"arcs":[[4172,4173,4174,4175,4176,4177,4178,4179]]},{"type":"Polygon","properties":{"name":"BRADFORD","zip":"05033","state":"VT"},"arcs":[[4180,4181,4182,4183,-2967,-2965,4184]]},{"type":"Polygon","properties":{"name":"BRIDGEWATER","zip":"05034","state":"VT"},"arcs":[[4185,4186,4187,4188]]},{"type":"Polygon","properties":{"name":"BRIDGEWATER CORNERS","zip":"05035","state":"VT"},"arcs":[[4189,4190,4191,4192,-4180,4193,-4188]]},{"type":"Polygon","properties":{"name":"BROOKFIELD","zip":"05036","state":"VT"},"arcs":[[4194,4195,4196,4197,4198]]},{"type":"Polygon","properties":{"name":"BROWNSVILLE","zip":"05037","state":"VT"},"arcs":[[4199,4200,4201]]},{"type":"Polygon","properties":{"name":"CHELSEA","zip":"05038","state":"VT"},"arcs":[[4202,-4195,4203,4204,4205,4206,4207]]},{"type":"Polygon","properties":{"name":"CORINTH","zip":"05039","state":"VT"},"arcs":[[4208,4209,4210,-4182,4211,-4206]]},{"type":"Polygon","properties":{"name":"EAST CORINTH","zip":"05040","state":"VT"},"arcs":[[4212,4213,4214,-4183,-4211]]},{"type":"Polygon","properties":{"name":"EAST RANDOLPH","zip":"05041","state":"VT"},"arcs":[[4215,4216,-4196,-4203]]},{"type":"Polygon","properties":{"name":"EAST RYEGATE","zip":"05042","state":"VT"},"arcs":[[-2956,-2914,4217,4218,4219]]},{"type":"Polygon","properties":{"name":"EAST THETFORD","zip":"05043","state":"VT"},"arcs":[[4220,4221,-2951]]},{"type":"Polygon","properties":{"name":"FAIRLEE","zip":"05045","state":"VT"},"arcs":[[4222,4223,4224,-4185,-2964,-2953,4225]]},{"type":"Polygon","properties":{"name":"GROTON","zip":"05046","state":"VT"},"arcs":[[4226,4227,4228,4229,4230,4231]]},{"type":"Polygon","properties":{"name":"HARTLAND","zip":"05048","state":"VT"},"arcs":[[4232,4233,-4167,4234,-2972,4235]]},{"type":"Polygon","properties":{"name":"NEWBURY","zip":"05051","state":"VT"},"arcs":[[-4215,4236,4237,-2961,-2947,-2968,-4184]]},{"type":"Polygon","properties":{"name":"NORTH HARTLAND","zip":"05052","state":"VT"},"arcs":[[-4166,-2975,-2973,-4235]]},{"type":"Polygon","properties":{"name":"NORTH POMFRET","zip":"05053","state":"VT"},"arcs":[[4238,4239,4240,4241,4242]]},{"type":"Polygon","properties":{"name":"NORWICH","zip":"05055","state":"VT"},"arcs":[[4243,4244,4245,-4221,-2943,-2977,-4172]]},{"type":"Polygon","properties":{"name":"PLYMOUTH","zip":"05056","state":"VT"},"arcs":[[4246,4247,4248,4249,4250,-4191]]},{"type":"Polygon","properties":{"name":"POST MILLS","zip":"05058","state":"VT"},"arcs":[[4251,4252,4253,-4223]]},{"type":"Polygon","properties":{"name":"RANDOLPH","zip":"05060","state":"VT"},"arcs":[[4254,4255,4256,4257,4258,-4198,4259,-4176]]},{"type":"Polygon","properties":{"name":"RANDOLPH CENTER","zip":"05061","state":"VT"},"arcs":[[-4260,-4197,-4217,4260,4261,-4177]]},{"type":"Polygon","properties":{"name":"READING","zip":"05062","state":"VT"},"arcs":[[4262,4263,-4247,-4190,-4187,4264,4265,-4201,4266]]},{"type":"Polygon","properties":{"name":"SHARON","zip":"05065","state":"VT"},"arcs":[[4267,4268,4269,-4244,-4171,4270,-4242]]},{"type":"Polygon","properties":{"name":"SOUTH POMFRET","zip":"05067","state":"VT"},"arcs":[[4271,4272,4273,-4240]]},{"type":"Polygon","properties":{"name":"SOUTH ROYALTON","zip":"05068","state":"VT"},"arcs":[[-4274,4274,-4178,-4262,4275,4276,-4268,-4241]]},{"type":"Polygon","properties":{"name":"SOUTH RYEGATE","zip":"05069","state":"VT"},"arcs":[[4277,-4227,4278,-4219,4279,-4237,-4214]]},{"type":"Polygon","properties":{"name":"SOUTH STRAFFORD","zip":"05070","state":"VT"},"arcs":[[-4270,4280,4281,-4245]]},{"type":"Polygon","properties":{"name":"SOUTH WOODSTOCK","zip":"05071","state":"VT"},"arcs":[[-4186,4282,-4233,4283,-4265]]},{"type":"Polygon","properties":{"name":"STRAFFORD","zip":"05072","state":"VT"},"arcs":[[4284,4285,4286,-4281,-4269,-4277]]},{"type":"Polygon","properties":{"name":"TAFTSVILLE","zip":"05073","state":"VT"},"arcs":[[4287,-4272,-4239,4288,-4169]]},{"type":"Polygon","properties":{"name":"THETFORD CENTER","zip":"05075","state":"VT"},"arcs":[[-4287,4289,-4252,-4226,-2952,-4222,-4246,-4282]]},{"type":"Polygon","properties":{"name":"TUNBRIDGE","zip":"05077","state":"VT"},"arcs":[[-4276,-4261,-4216,-4208,-4285]]},{"type":"Polygon","properties":{"name":"VERSHIRE","zip":"05079","state":"VT"},"arcs":[[-4207,-4212,-4181,-4225,4290,-4253,-4290,-4286]]},{"type":"Polygon","properties":{"name":"WELLS RIVER","zip":"05081","state":"VT"},"arcs":[[-4218,-2913,-2978,-2962,-4238,-4280]]},{"type":"Polygon","properties":{"name":"WEST FAIRLEE","zip":"05083","state":"VT"},"arcs":[[-4254,-4291,-4224]]},{"type":"Polygon","properties":{"name":"WEST HARTFORD","zip":"05084","state":"VT"},"arcs":[[-4243,-4271,-4170,-4289]]},{"type":"Polygon","properties":{"name":"WEST TOPSHAM","zip":"05086","state":"VT"},"arcs":[[4291,4292,-4228,-4278,-4213,-4210]]},{"type":"Polygon","properties":{"name":"WINDSOR","zip":"05089","state":"VT"},"arcs":[[4293,-4202,-4266,-4284,-4236,-2971,-2923,-2920,4294]]},{"type":"Polygon","properties":{"name":"WOODSTOCK","zip":"05091","state":"VT"},"arcs":[[-4194,-4179,-4275,-4273,-4288,-4168,-4234,-4283,-4189]]},{"type":"Polygon","properties":{"name":"BELLOWS FALLS","zip":"05101","state":"VT"},"arcs":[[4295,4296,4297,4298,-2897,-2912,-2910,4299]]},{"type":"Polygon","properties":{"name":"CAVENDISH","zip":"05142","state":"VT"},"arcs":[[4300,-4267,4301,4302]]},{"type":"Polygon","properties":{"name":"CHESTER","zip":"05143","state":"VT"},"arcs":[[4303,4304,4305,4306,-4303,4307,4308,4309,-4298,4310,4311]]},{"type":"Polygon","properties":{"name":"GRAFTON","zip":"05146","state":"VT"},"arcs":[[4312,4313,4314,4315,-4311,-4297]]},{"type":"Polygon","properties":{"name":"LONDONDERRY","zip":"05148","state":"VT"},"arcs":[[4316,4317,4318,4319,4320,-4304,4321]]},{"type":"Polygon","properties":{"name":"LUDLOW","zip":"05149","state":"VT"},"arcs":[[4322,4323,-4248,-4264,4324,-4306]]},{"type":"Polygon","properties":{"name":"NORTH SPRINGFIELD","zip":"05150","state":"VT"},"arcs":[[4325,-4309,4326]]},{"type":"Polygon","properties":{"name":"PERKINSVILLE","zip":"05151","state":"VT"},"arcs":[[-4302,-4200,-4294,4327,-4327,-4308]]},{"type":"Polygon","properties":{"name":"PERU","zip":"05152","state":"VT"},"arcs":[[4328,-4317,4329]]},{"type":"Polygon","properties":{"name":"PROCTORSVILLE","zip":"05153","state":"VT"},"arcs":[[-4307,-4325,-4263,-4301]]},{"type":"Polygon","properties":{"name":"SOUTH LONDONDERRY","zip":"05155","state":"VT"},"arcs":[[4330,4331,-4330,-4322,4332]]},{"type":"Polygon","properties":{"name":"SPRINGFIELD","zip":"05156","state":"VT"},"arcs":[[-4326,-4328,-4295,-2919,-2898,-4299,-4310]]},{"type":"Polygon","properties":{"name":"WESTMINSTER","zip":"05158","state":"VT"},"arcs":[[-2909,4333,-4300]]},{"type":"Polygon","properties":{"name":"WESTON","zip":"05161","state":"VT"},"arcs":[[4334,4335,4336,-4323,-4305,-4321]]},{"type":"Polygon","properties":{"name":"BENNINGTON","zip":"05201","state":"VT"},"arcs":[[4337,4338,4339,4340,4341,4342,4343,4344,4345,4346]]},{"type":"Polygon","properties":{"name":"ARLINGTON","zip":"05250","state":"VT"},"arcs":[[4347,-4345,4348,4349,4350,4351,4352,4353,4354]]},{"type":"Polygon","properties":{"name":"DORSET","zip":"05251","state":"VT"},"arcs":[[4355,4356,4357,4358,4359]]},{"type":"Polygon","properties":{"name":"EAST DORSET","zip":"05253","state":"VT"},"arcs":[[4360,4361,-4356,4362,-4319]]},{"type":"Polygon","properties":{"name":"MANCHESTER CENTER","zip":"05255","state":"VT"},"arcs":[[4363,-4354,-4357,-4362]]},{"type":"Polygon","properties":{"name":"NORTH BENNINGTON","zip":"05257","state":"VT"},"arcs":[[4364,4365,-4343]]},{"type":"Polygon","properties":{"name":"NORTH POWNAL","zip":"05260","state":"VT"},"arcs":[[4366,4367,-4341]]},{"type":"Polygon","properties":{"name":"POWNAL","zip":"05261","state":"VT"},"arcs":[[4368,-1080,-1110,4369,-4367,-4340]]},{"type":"Polygon","properties":{"name":"SHAFTSBURY","zip":"05262","state":"VT"},"arcs":[[-4366,4370,4371,4372,-4349,-4344]]},{"type":"Polygon","properties":{"name":"BRATTLEBORO","zip":"05301","state":"VT"},"arcs":[[4373,4374,4375,4376,4377,4378,4379,-2842,-2826,4380,-1129,-1143,4381]]},{"type":"Polygon","properties":{"name":"BONDVILLE","zip":"05340","state":"VT"},"arcs":[[-4364,-4361,-4318,-4329,-4332,4382,4383,-4355]]},{"type":"Polygon","properties":{"name":"EAST DOVER","zip":"05341","state":"VT"},"arcs":[[4384,4385,4386,-4376]]},{"type":"Polygon","properties":{"name":"JACKSONVILLE","zip":"05342","state":"VT"},"arcs":[[4387,-1141,4388,4389,-4374]]},{"type":"Polygon","properties":{"name":"JAMAICA","zip":"05343","state":"VT"},"arcs":[[4390,-4383,-4331,4391,4392,4393]]},{"type":"Polygon","properties":{"name":"NEWFANE","zip":"05345","state":"VT"},"arcs":[[4394,4395,4396,-4314,4397,-4379,4398]]},{"type":"Polygon","properties":{"name":"PUTNEY","zip":"05346","state":"VT"},"arcs":[[-4313,-4296,-4334,-2908,-2845,-2843,-4380,-4398]]},{"type":"Polygon","properties":{"name":"READSBORO","zip":"05350","state":"VT"},"arcs":[[4399,-1167,4400,-4338,4401]]},{"type":"Polygon","properties":{"name":"SOUTH NEWFANE","zip":"05351","state":"VT"},"arcs":[[4402,-4377,-4387,4403,-4395]]},{"type":"Polygon","properties":{"name":"STAMFORD","zip":"05352","state":"VT"},"arcs":[[-1166,-1081,-4369,-4339,-4401]]},{"type":"Polygon","properties":{"name":"TOWNSHEND","zip":"05353","state":"VT"},"arcs":[[4404,-4393,4405,-4315,-4397]]},{"type":"Polygon","properties":{"name":"VERNON","zip":"05354","state":"VT"},"arcs":[[-2825,-1175,-1130,-4381]]},{"type":"Polygon","properties":{"name":"WARDSBORO","zip":"05355","state":"VT"},"arcs":[[4406,4407,-4394,-4405,-4396,-4404,-4386]]},{"type":"Polygon","properties":{"name":"WEST DOVER","zip":"05356","state":"VT"},"arcs":[[4408,-4346,4409,-4407,-4385]]},{"type":"Polygon","properties":{"name":"WEST HALIFAX","zip":"05358","state":"VT"},"arcs":[[-1142,-4388,-4382]]},{"type":"Polygon","properties":{"name":"WEST TOWNSHEND","zip":"05359","state":"VT"},"arcs":[[-4392,-4333,-4312,-4316,-4406]]},{"type":"Polygon","properties":{"name":"WEST WARDSBORO","zip":"05360","state":"VT"},"arcs":[[-4348,-4384,-4391,-4408,-4410]]},{"type":"Polygon","properties":{"name":"WHITINGHAM","zip":"05361","state":"VT"},"arcs":[[-1140,-1182,-4400,4410,-4389]]},{"type":"Polygon","properties":{"name":"WILLIAMSVILLE","zip":"05362","state":"VT"},"arcs":[[-4403,-4399,-4378]]},{"type":"Polygon","properties":{"name":"WILMINGTON","zip":"05363","state":"VT"},"arcs":[[-4411,-4402,-4347,-4409,-4375,-4390]]},{"type":"Polygon","properties":{"name":"BURLINGTON","zip":"05401","state":"VT"},"arcs":[[4411,4412,4413,4414]]},{"type":"Polygon","properties":{"name":"SOUTH BURLINGTON","zip":"05403","state":"VT"},"arcs":[[-4412,4415,4416,4417,4418,4419,4420]]},{"type":"Polygon","properties":{"name":"WINOOSKI","zip":"05404","state":"VT"},"arcs":[[4421,-4416,-4415]]},{"type":"Polygon","properties":{"name":"ALBURG","zip":"05440","state":"VT"},"arcs":[[4422]]},{"type":"Polygon","properties":{"name":"BAKERSFIELD","zip":"05441","state":"VT"},"arcs":[[4423,4424,4425,4426,4427,4428]]},{"type":"Polygon","properties":{"name":"BELVIDERE CENTER","zip":"05442","state":"VT"},"arcs":[[4429,4430,-4427,4431]]},{"type":"Polygon","properties":{"name":"BRISTOL","zip":"05443","state":"VT"},"arcs":[[4432,4433,4434,4435,4436,4437,4438,4439,4440]]},{"type":"Polygon","properties":{"name":"CAMBRIDGE","zip":"05444","state":"VT"},"arcs":[[4441,4442,4443,4444]]},{"type":"Polygon","properties":{"name":"CHARLOTTE","zip":"05445","state":"VT"},"arcs":[[4445,4446,4447,4448]]},{"type":"Polygon","properties":{"name":"COLCHESTER","zip":"05446","state":"VT"},"arcs":[[-4414,4449,4450,4451,-4417,-4422]]},{"type":"Polygon","properties":{"name":"EAST FAIRFIELD","zip":"05448","state":"VT"},"arcs":[[4452,-4445,4453,4454,4455,-4424]]},{"type":"Polygon","properties":{"name":"ENOSBURG FALLS","zip":"05450","state":"VT"},"arcs":[[4456,-4425,-4456,4457,4458,4459,4460,4461]]},{"type":"Polygon","properties":{"name":"ESSEX JUNCTION","zip":"05452","state":"VT"},"arcs":[[-4452,4462,4463,4464,4465,4466,-4418]]},{"type":"Polygon","properties":{"name":"FAIRFAX","zip":"05454","state":"VT"},"arcs":[[4467,4468,4469,-4454,-4444,4470]]},{"type":"Polygon","properties":{"name":"FAIRFIELD","zip":"05455","state":"VT"},"arcs":[[4471,4472,-4458,-4455,-4470]]},{"type":"Polygon","properties":{"name":"FERRISBURG","zip":"05456","state":"VT"},"arcs":[[4473,4474,4475]]},{"type":"Polygon","properties":{"name":"FRANKLIN","zip":"05457","state":"VT"},"arcs":[[4476,4477,4478,-4460]]},{"type":"Polygon","properties":{"name":"GRAND ISLE","zip":"05458","state":"VT"},"arcs":[[4479,4480]]},{"type":"Polygon","properties":{"name":"HIGHGATE CENTER","zip":"05459","state":"VT"},"arcs":[[4481,4482,4483,4484,-4478]]},{"type":"Polygon","properties":{"name":"HINESBURG","zip":"05461","state":"VT"},"arcs":[[4485,4486,4487,4488,4489,-4436,4490,-4449]]},{"type":"Polygon","properties":{"name":"HUNTINGTON","zip":"05462","state":"VT"},"arcs":[[4491,-4489,4492,4493,4494]]},{"type":"Polygon","properties":{"name":"JEFFERSONVILLE","zip":"05464","state":"VT"},"arcs":[[4495,4496,4497,-4442,-4453,-4429,4498,4499]]},{"type":"Polygon","properties":{"name":"JERICHO","zip":"05465","state":"VT"},"arcs":[[4500,-4466,4501,4502,4503]]},{"type":"Polygon","properties":{"name":"MILTON","zip":"05468","state":"VT"},"arcs":[[4504,-4463,-4451,4505,4506,4507,-4468]]},{"type":"Polygon","properties":{"name":"MONTGOMERY CENTER","zip":"05471","state":"VT"},"arcs":[[-4426,-4457,4508,4509,4510,4511,4512,-4432]]},{"type":"Polygon","properties":{"name":"NEW HAVEN","zip":"05472","state":"VT"},"arcs":[[4513,4514,4515,-4434]]},{"type":"Polygon","properties":{"name":"NORTH FERRISBURG","zip":"05473","state":"VT"},"arcs":[[-4476,4516,-4446,-4491,-4435,-4516]]},{"type":"Polygon","properties":{"name":"RICHFORD","zip":"05476","state":"VT"},"arcs":[[4517,-4509,-4462,4518]]},{"type":"Polygon","properties":{"name":"RICHMOND","zip":"05477","state":"VT"},"arcs":[[4519,-4493,-4488,4520,-4504]]},{"type":"Polygon","properties":{"name":"SAINT ALBANS","zip":"05478","state":"VT"},"arcs":[[4521,-4483,4522,-4472,-4469,-4508,4523]]},{"type":"Polygon","properties":{"name":"SHELBURNE","zip":"05482","state":"VT"},"arcs":[[-4420,4524,-4486,-4448,4525]]},{"type":"Polygon","properties":{"name":"SHELDON","zip":"05483","state":"VT"},"arcs":[[-4523,-4482,-4477,-4459,-4473]]},{"type":"Polygon","properties":{"name":"SOUTH HERO","zip":"05486","state":"VT"},"arcs":[[-4480,4526,4527]]},{"type":"Polygon","properties":{"name":"STARKSBORO","zip":"05487","state":"VT"},"arcs":[[4528,-4437,-4490,-4492]]},{"type":"Polygon","properties":{"name":"SWANTON","zip":"05488","state":"VT"},"arcs":[[-4484,-4522,4529]]},{"type":"Polygon","properties":{"name":"UNDERHILL","zip":"05489","state":"VT"},"arcs":[[-4465,4530,-4443,-4498,4531,4532,-4502]]},{"type":"Polygon","properties":{"name":"VERGENNES","zip":"05491","state":"VT"},"arcs":[[-4474,-4515,4533,4534,4535]]},{"type":"Polygon","properties":{"name":"WATERVILLE","zip":"05492","state":"VT"},"arcs":[[4536,-4499,-4428,-4431,4537]]},{"type":"Polygon","properties":{"name":"WESTFORD","zip":"05494","state":"VT"},"arcs":[[-4464,-4505,-4471,-4531]]},{"type":"Polygon","properties":{"name":"WILLISTON","zip":"05495","state":"VT"},"arcs":[[-4487,-4525,-4419,-4467,-4501,-4521]]},{"type":"Polygon","properties":{"name":"MONTPELIER","zip":"05602","state":"VT"},"arcs":[[4538,4539,4540,4541,4542,4543,4544,4545,4546,4547]]},{"type":"Polygon","properties":{"name":"ADAMANT","zip":"05640","state":"VT"},"arcs":[[4548,-4543,4549,4550,4551]]},{"type":"Polygon","properties":{"name":"BARRE","zip":"05641","state":"VT"},"arcs":[[4552,4553,4554,-4546,4555,4556,-4229,-4293]]},{"type":"Polygon","properties":{"name":"CABOT","zip":"05647","state":"VT"},"arcs":[[4557,4558,4559,4560,4561]]},{"type":"Polygon","properties":{"name":"CALAIS","zip":"05648","state":"VT"},"arcs":[[4562,4563,4564,-4551]]},{"type":"Polygon","properties":{"name":"EAST CALAIS","zip":"05650","state":"VT"},"arcs":[[4565,4566,-4552,-4565,4567]]},{"type":"Polygon","properties":{"name":"EAST MONTPELIER","zip":"05651","state":"VT"},"arcs":[[-4556,-4545,4568]]},{"type":"Polygon","properties":{"name":"EDEN","zip":"05652","state":"VT"},"arcs":[[4569,-4538,-4430,-4513,4570,4571,4572]]},{"type":"Polygon","properties":{"name":"EDEN MILLS","zip":"05653","state":"VT"},"arcs":[[4573,4574,-4572,4575,4576]]},{"type":"Polygon","properties":{"name":"GRANITEVILLE","zip":"05654","state":"VT"},"arcs":[[4577,-4554,4578]]},{"type":"Polygon","properties":{"name":"HYDE PARK","zip":"05655","state":"VT"},"arcs":[[4579,-4573,-4575,4580,4581,4582]]},{"type":"Polygon","properties":{"name":"JOHNSON","zip":"05656","state":"VT"},"arcs":[[-4537,-4570,-4580,4583,-4500]]},{"type":"Polygon","properties":{"name":"MARSHFIELD","zip":"05658","state":"VT"},"arcs":[[4584,4585,-4566,4586,-4559]]},{"type":"Polygon","properties":{"name":"MORETOWN","zip":"05660","state":"VT"},"arcs":[[4587,4588,-4539,4589]]},{"type":"Polygon","properties":{"name":"MORRISVILLE","zip":"05661","state":"VT"},"arcs":[[4590,4591,-4496,-4584,-4583]]},{"type":"Polygon","properties":{"name":"NORTHFIELD","zip":"05663","state":"VT"},"arcs":[[4592,-4258,4593,4594,4595,-4590,-4548]]},{"type":"Polygon","properties":{"name":"PLAINFIELD","zip":"05667","state":"VT"},"arcs":[[-4544,-4549,-4567,-4586,4596,-4230,-4557,-4569]]},{"type":"Polygon","properties":{"name":"ROXBURY","zip":"05669","state":"VT"},"arcs":[[4597,4598,-4594,-4257]]},{"type":"Polygon","properties":{"name":"STOWE","zip":"05672","state":"VT"},"arcs":[[4599,-4532,-4497,-4592,4600,4601]]},{"type":"Polygon","properties":{"name":"WAITSFIELD","zip":"05673","state":"VT"},"arcs":[[-4529,-4495,4602,-4588,-4596,4603,-4438]]},{"type":"Polygon","properties":{"name":"WARREN","zip":"05674","state":"VT"},"arcs":[[4604,-4439,-4604,-4595,-4599]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"05675","state":"VT"},"arcs":[[4605,-4579,-4553,-4292,-4209,-4205]]},{"type":"Polygon","properties":{"name":"WATERBURY","zip":"05676","state":"VT"},"arcs":[[-4589,-4603,-4494,-4520,-4503,-4533,-4600,4606,-4540]]},{"type":"Polygon","properties":{"name":"WATERBURY CENTER","zip":"05677","state":"VT"},"arcs":[[-4602,-4541,-4607]]},{"type":"Polygon","properties":{"name":"WILLIAMSTOWN","zip":"05679","state":"VT"},"arcs":[[-4259,-4593,-4547,-4555,-4578,-4606,-4204,-4199]]},{"type":"Polygon","properties":{"name":"WOLCOTT","zip":"05680","state":"VT"},"arcs":[[-4582,4607,4608,4609,4610,-4591]]},{"type":"Polygon","properties":{"name":"WOODBURY","zip":"05681","state":"VT"},"arcs":[[-4610,4611,-4560,-4587,-4568,-4564]]},{"type":"Polygon","properties":{"name":"WORCESTER","zip":"05682","state":"VT"},"arcs":[[-4542,-4601,-4611,-4563,-4550]]},{"type":"Polygon","properties":{"name":"RUTLAND","zip":"05701","state":"VT"},"arcs":[[4612,4613,4614,4615,4616,4617,4618,4619,4620]]},{"type":"Polygon","properties":{"name":"BELMONT","zip":"05730","state":"VT"},"arcs":[[4621,4622]]},{"type":"Polygon","properties":{"name":"BOMOSEEN","zip":"05732","state":"VT"},"arcs":[[4623,4624,4625]]},{"type":"Polygon","properties":{"name":"BRANDON","zip":"05733","state":"VT"},"arcs":[[4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636]]},{"type":"Polygon","properties":{"name":"BRIDPORT","zip":"05734","state":"VT"},"arcs":[[4637,4638,-4535,4639]]},{"type":"Polygon","properties":{"name":"CASTLETON","zip":"05735","state":"VT"},"arcs":[[4640,-4637,4641,4642,4643,-4625]]},{"type":"Polygon","properties":{"name":"CENTER RUTLAND","zip":"05736","state":"VT"},"arcs":[[4644,4645,-4616]]},{"type":"Polygon","properties":{"name":"CHITTENDEN","zip":"05737","state":"VT"},"arcs":[[4646,4647,-4619]]},{"type":"Polygon","properties":{"name":"CUTTINGSVILLE","zip":"05738","state":"VT"},"arcs":[[4648,4649,-4613,4650,-4250,4651]]},{"type":"Polygon","properties":{"name":"DANBY","zip":"05739","state":"VT"},"arcs":[[-4320,-4363,-4360,4652,4653,4654,-4335]]},{"type":"Polygon","properties":{"name":"EAST WALLINGFORD","zip":"05742","state":"VT"},"arcs":[[4655,4656,-4649,4657,-4622,4658,-4336,-4655]]},{"type":"Polygon","properties":{"name":"FAIR HAVEN","zip":"05743","state":"VT"},"arcs":[[4659,4660,4661,4662,4663,-4627,-4641,-4624]]},{"type":"Polygon","properties":{"name":"FLORENCE","zip":"05744","state":"VT"},"arcs":[[4664,-4642,-4636,4665,4666]]},{"type":"Polygon","properties":{"name":"GAYSVILLE","zip":"05746","state":"VT"},"arcs":[[4667,4668,4669,-4173,-4193]]},{"type":"Polygon","properties":{"name":"GRANVILLE","zip":"05747","state":"VT"},"arcs":[[4670,-4440,-4605,-4598,-4256,4671,4672]]},{"type":"Polygon","properties":{"name":"HANCOCK","zip":"05748","state":"VT"},"arcs":[[4673,-4673,4674,-4632]]},{"type":"Polygon","properties":{"name":"KILLINGTON","zip":"05751","state":"VT"},"arcs":[[-4621,4675,-4668,-4192,-4251,-4651]]},{"type":"Polygon","properties":{"name":"MIDDLEBURY","zip":"05753","state":"VT"},"arcs":[[4676,-4640,-4534,-4514,-4433,4677,4678,4679]]},{"type":"Polygon","properties":{"name":"MIDDLETOWN SPRINGS","zip":"05757","state":"VT"},"arcs":[[4680,4681,4682,4683,4684]]},{"type":"Polygon","properties":{"name":"MOUNT HOLLY","zip":"05758","state":"VT"},"arcs":[[-4623,-4658,-4652,-4249,-4324,-4337,-4659]]},{"type":"Polygon","properties":{"name":"NORTH CLARENDON","zip":"05759","state":"VT"},"arcs":[[4685,4686,-4614,-4650,-4657]]},{"type":"Polygon","properties":{"name":"ORWELL","zip":"05760","state":"VT"},"arcs":[[4687,4688,-4628,-4664,4689]]},{"type":"Polygon","properties":{"name":"PAWLET","zip":"05761","state":"VT"},"arcs":[[4690,4691,4692,-4682,4693,-4653,-4359]]},{"type":"Polygon","properties":{"name":"PITTSFIELD","zip":"05762","state":"VT"},"arcs":[[-4620,-4648,4694,-4634,4695,4696,-4669,-4676]]},{"type":"Polygon","properties":{"name":"PITTSFORD","zip":"05763","state":"VT"},"arcs":[[-4618,4697,-4666,-4635,-4695,-4647]]},{"type":"Polygon","properties":{"name":"POULTNEY","zip":"05764","state":"VT"},"arcs":[[4698,4699,-4660,-4626,-4644,4700,-4684]]},{"type":"Polygon","properties":{"name":"PROCTOR","zip":"05765","state":"VT"},"arcs":[[4701,-4667,-4698,-4617,-4646]]},{"type":"Polygon","properties":{"name":"RIPTON","zip":"05766","state":"VT"},"arcs":[[-4631,-4678,-4441,-4671,-4674]]},{"type":"Polygon","properties":{"name":"ROCHESTER","zip":"05767","state":"VT"},"arcs":[[4702,-4696,-4633,-4675,-4672,-4255,-4175]]},{"type":"Polygon","properties":{"name":"SALISBURY","zip":"05769","state":"VT"},"arcs":[[4703,-4679,-4630]]},{"type":"Polygon","properties":{"name":"SHOREHAM","zip":"05770","state":"VT"},"arcs":[[-4638,-4677,4704,-4688,4705]]},{"type":"Polygon","properties":{"name":"STOCKBRIDGE","zip":"05772","state":"VT"},"arcs":[[-4697,-4703,-4174,-4670]]},{"type":"Polygon","properties":{"name":"WALLINGFORD","zip":"05773","state":"VT"},"arcs":[[-4681,4706,-4686,-4656,-4654,-4694]]},{"type":"Polygon","properties":{"name":"WELLS","zip":"05774","state":"VT"},"arcs":[[-4693,4707,4708,4709,-4699,-4683]]},{"type":"Polygon","properties":{"name":"WEST PAWLET","zip":"05775","state":"VT"},"arcs":[[4710,4711,-4708,-4692]]},{"type":"Polygon","properties":{"name":"WEST RUPERT","zip":"05776","state":"VT"},"arcs":[[-4353,4712,4713,-4711,-4691,-4358]]},{"type":"Polygon","properties":{"name":"WEST RUTLAND","zip":"05777","state":"VT"},"arcs":[[-4707,-4685,-4701,-4643,-4665,-4702,-4645,-4615,-4687]]},{"type":"Polygon","properties":{"name":"WHITING","zip":"05778","state":"VT"},"arcs":[[-4689,-4705,-4680,-4704,-4629]]},{"type":"Polygon","properties":{"name":"SAINT JOHNSBURY","zip":"05819","state":"VT"},"arcs":[[4714,4715,4716,4717,-2850]]},{"type":"Polygon","properties":{"name":"ALBANY","zip":"05820","state":"VT"},"arcs":[[4718,4719,-4577,4720,4721,4722,4723,4724]]},{"type":"Polygon","properties":{"name":"BARNET","zip":"05821","state":"VT"},"arcs":[[-4232,4725,4726,-4715,-2957,-4220,-4279]]},{"type":"Polygon","properties":{"name":"BARTON","zip":"05822","state":"VT"},"arcs":[[4727,4728,4729,4730,4731,-4723,4732,4733]]},{"type":"Polygon","properties":{"name":"CONCORD","zip":"05824","state":"VT"},"arcs":[[4734,-2851,-4718,4735,4736,4737]]},{"type":"Polygon","properties":{"name":"COVENTRY","zip":"05825","state":"VT"},"arcs":[[4738,4739,4740]]},{"type":"Polygon","properties":{"name":"CRAFTSBURY","zip":"05826","state":"VT"},"arcs":[[-4581,-4574,-4720,4741,-4725,4742,4743,4744,-4608]]},{"type":"Polygon","properties":{"name":"CRAFTSBURY COMMON","zip":"05827","state":"VT"},"arcs":[[-4719,-4742]]},{"type":"Polygon","properties":{"name":"DANVILLE","zip":"05828","state":"VT"},"arcs":[[-4727,4745,4746,4747,4748,4749,-4716]]},{"type":"Polygon","properties":{"name":"DERBY","zip":"05829","state":"VT"},"arcs":[[4750,4751,4752,4753]]},{"type":"Polygon","properties":{"name":"DERBY LINE","zip":"05830","state":"VT"},"arcs":[[4754,-4753,4755,4756,4757,-780]]},{"type":"Polygon","properties":{"name":"EAST BURKE","zip":"05832","state":"VT"},"arcs":[[4758,4759,4760,4761,4762]]},{"type":"Polygon","properties":{"name":"EAST CHARLESTON","zip":"05833","state":"VT"},"arcs":[[4763,4764,4765,4766]]},{"type":"Polygon","properties":{"name":"EAST HARDWICK","zip":"05836","state":"VT"},"arcs":[[4767,4768,4769,4770,-4748]]},{"type":"Polygon","properties":{"name":"EAST HAVEN","zip":"05837","state":"VT"},"arcs":[[4771,4772,4773,-4763]]},{"type":"Polygon","properties":{"name":"GLOVER","zip":"05839","state":"VT"},"arcs":[[4774,4775,4776,-4731]]},{"type":"Polygon","properties":{"name":"GREENSBORO","zip":"05841","state":"VT"},"arcs":[[4777,-4744,-4776,4778,4779,-4770]]},{"type":"Polygon","properties":{"name":"GREENSBORO BEND","zip":"05842","state":"VT"},"arcs":[[-4771,-4780,4780,-4749]]},{"type":"Polygon","properties":{"name":"HARDWICK","zip":"05843","state":"VT"},"arcs":[[-4609,-4745,-4778,-4769,4781,-4561,-4612]]},{"type":"Polygon","properties":{"name":"IRASBURG","zip":"05845","state":"VT"},"arcs":[[4782,-4733,-4722,4783,4784,4785,-4739]]},{"type":"Polygon","properties":{"name":"ISLAND POND","zip":"05846","state":"VT"},"arcs":[[4786,4787,-4764,4788,-783,4789,-785,4790,4791,-4773]]},{"type":"Polygon","properties":{"name":"LOWELL","zip":"05847","state":"VT"},"arcs":[[-4512,4792,4793,4794,-4784,-4721,-4576,-4571]]},{"type":"Polygon","properties":{"name":"LYNDONVILLE","zip":"05851","state":"VT"},"arcs":[[-4779,4795,4796,-4760,4797,-4736,-4717,-4750,-4781]]},{"type":"Polygon","properties":{"name":"MORGAN","zip":"05853","state":"VT"},"arcs":[[4798,-4754,-4755,-779,-784,-4789,-4767]]},{"type":"Polygon","properties":{"name":"NEWPORT","zip":"05855","state":"VT"},"arcs":[[4799,-4740,-4786,4800,-509,4801,-4756,-4752,4802]]},{"type":"Polygon","properties":{"name":"NEWPORT CENTER","zip":"05857","state":"VT"},"arcs":[[4803,4804,4805,-510,-4801,-4785,-4795]]},{"type":"Polygon","properties":{"name":"NORTH CONCORD","zip":"05858","state":"VT"},"arcs":[[-4759,-4774,-4792,4806,4807,-4737,-4798]]},{"type":"Polygon","properties":{"name":"NORTH TROY","zip":"05859","state":"VT"},"arcs":[[4808,4809,-4510,-4518,4810,-4805]]},{"type":"Polygon","properties":{"name":"ORLEANS","zip":"05860","state":"VT"},"arcs":[[4811,-4734,-4783,-4741,-4800,4812,-4765,-4788]]},{"type":"Polygon","properties":{"name":"PEACHAM","zip":"05862","state":"VT"},"arcs":[[-4558,4813,-4746,-4726,-4231,-4597,-4585]]},{"type":"Polygon","properties":{"name":"SHEFFIELD","zip":"05866","state":"VT"},"arcs":[[4814,-4796,-4775,-4730]]},{"type":"Polygon","properties":{"name":"SUTTON","zip":"05867","state":"VT"},"arcs":[[-4797,-4815,-4729,4815,-4761]]},{"type":"Polygon","properties":{"name":"TROY","zip":"05868","state":"VT"},"arcs":[[4816,-4809,-4804,-4794]]},{"type":"Polygon","properties":{"name":"WEST BURKE","zip":"05871","state":"VT"},"arcs":[[-4762,-4816,-4728,-4812,-4787,-4772]]},{"type":"Polygon","properties":{"name":"WEST CHARLESTON","zip":"05872","state":"VT"},"arcs":[[-4813,-4803,-4751,-4799,-4766]]},{"type":"Polygon","properties":{"name":"WEST DANVILLE","zip":"05873","state":"VT"},"arcs":[[-4814,-4562,-4782,-4768,-4747]]},{"type":"Polygon","properties":{"name":"WESTFIELD","zip":"05874","state":"VT"},"arcs":[[-4511,-4810,-4817,-4793]]},{"type":"Polygon","properties":{"name":"WEST GLOVER","zip":"05875","state":"VT"},"arcs":[[-4743,-4724,-4732,-4777]]},{"type":"Polygon","properties":{"name":"AVERILL","zip":"05901","state":"VT"},"arcs":[[4817,-787,4818,4819]]},{"type":"Polygon","properties":{"name":"BEECHER FALLS","zip":"05902","state":"VT"},"arcs":[[4820,4821,-2889,-2864]]},{"type":"Polygon","properties":{"name":"CANAAN","zip":"05903","state":"VT"},"arcs":[[4822,4823,-4821,-2863,4824,-4820]]},{"type":"Polygon","properties":{"name":"GILMAN","zip":"05904","state":"VT"},"arcs":[[4825,-2852,-4735]]},{"type":"Polygon","properties":{"name":"GUILDHALL","zip":"05905","state":"VT"},"arcs":[[-4791,-788,-4818,-4825,-2862,-2888,-2875,-2881,4826,-4807]]},{"type":"Polygon","properties":{"name":"LUNENBURG","zip":"05906","state":"VT"},"arcs":[[-4738,-4808,-4827,-2880,-2893,-4826]]},{"type":"Polygon","properties":{"name":"NORTON","zip":"05907","state":"VT"},"arcs":[[-781,-4758,4827,-4823,-4819,-786,-4790,-782]]},{"type":"Polygon","properties":{"name":"AVON","zip":"06001","state":"CT"},"arcs":[[4828,4829,4830,4831,4832,4833,4834,4835,4836]]},{"type":"Polygon","properties":{"name":"BLOOMFIELD","zip":"06002","state":"CT"},"arcs":[[4837,4838,4839,4840,-4834,4841,4842,4843]]},{"type":"Polygon","properties":{"name":"BRISTOL","zip":"06010","state":"CT"},"arcs":[[4844,4845,4846,4847,4848,4849,4850]]},{"type":"Polygon","properties":{"name":"BURLINGTON","zip":"06013","state":"CT"},"arcs":[[4851,4852,4853,-4829,4854,-4848,4855]]},{"type":"Polygon","properties":{"name":"BROAD BROOK","zip":"06016","state":"CT"},"arcs":[[4856,4857,4858,4859]]},{"type":"Polygon","properties":{"name":"CANAAN","zip":"06018","state":"CT"},"arcs":[[4860,4861,4862,-1094,-1033,-1103,4863]]},{"type":"Polygon","properties":{"name":"CANTON","zip":"06019","state":"CT"},"arcs":[[4864,4865,4866,-4831]]},{"type":"Polygon","properties":{"name":"COLEBROOK","zip":"06021","state":"CT"},"arcs":[[4867,4868,-1088]]},{"type":"Polygon","properties":{"name":"COLLINSVILLE","zip":"06022","state":"CT"},"arcs":[[-4854,4869,4870,4871,-4865,-4830]]},{"type":"Polygon","properties":{"name":"EAST BERLIN","zip":"06023","state":"CT"},"arcs":[[4872,4873,4874]]},{"type":"Polygon","properties":{"name":"EAST CANAAN","zip":"06024","state":"CT"},"arcs":[[4875,-4861,4876]]},{"type":"Polygon","properties":{"name":"EAST GRANBY","zip":"06026","state":"CT"},"arcs":[[4877,4878,4879,4880,4881,4882,4883,-4844]]},{"type":"Polygon","properties":{"name":"EAST HARTLAND","zip":"06027","state":"CT"},"arcs":[[4884,4885,4886,4887,-912,4888,4889]]},{"type":"Polygon","properties":{"name":"ELLINGTON","zip":"06029","state":"CT"},"arcs":[[4890,4891,4892,4893,4894,4895,-4860]]},{"type":"Polygon","properties":{"name":"FALLS VILLAGE","zip":"06031","state":"CT"},"arcs":[[4896,4897,4898,-4862,-4876,4899,4900]]},{"type":"Polygon","properties":{"name":"FARMINGTON","zip":"06032","state":"CT"},"arcs":[[4901,4902,4903,-4850,4904,-4836,4905,4906,4907]]},{"type":"Polygon","properties":{"name":"GLASTONBURY","zip":"06033","state":"CT"},"arcs":[[4908,4909,4910,4911,4912,4913,4914]]},{"type":"Polygon","properties":{"name":"GRANBY","zip":"06035","state":"CT"},"arcs":[[4915,4916,-974,4917,-4880,4918]]},{"type":"Polygon","properties":{"name":"BERLIN","zip":"06037","state":"CT"},"arcs":[[4919,4920,4921,4922,4923,4924,4925,-4874,4926]]},{"type":"Polygon","properties":{"name":"LAKEVILLE","zip":"06039","state":"CT"},"arcs":[[4927,4928,4929,-4898]]},{"type":"Polygon","properties":{"name":"MANCHESTER","zip":"06040","state":"CT"},"arcs":[[4930,-4911,4931,4932,4933,4934]]},{"type":"Polygon","properties":{"name":"BOLTON","zip":"06043","state":"CT"},"arcs":[[4935,4936,-4912,-4931,4937,4938]]},{"type":"Polygon","properties":{"name":"NEW BRITAIN","zip":"06051","state":"CT"},"arcs":[[4939,4940,4941,-4924]]},{"type":"Polygon","properties":{"name":"NEW BRITAIN","zip":"06052","state":"CT"},"arcs":[[4942,4943,4944,-4940,-4923]]},{"type":"Polygon","properties":{"name":"NEW BRITAIN","zip":"06053","state":"CT"},"arcs":[[4945,-4903,4946,-4941,-4945]]},{"type":"Polygon","properties":{"name":"NEW HARTFORD","zip":"06057","state":"CT"},"arcs":[[4947,4948,4949,-4870,-4853,4950]]},{"type":"Polygon","properties":{"name":"NORFOLK","zip":"06058","state":"CT"},"arcs":[[-4877,-4864,-1102,-1089,-4869,4951,4952,4953,-4900]]},{"type":"Polygon","properties":{"name":"NORTH CANTON","zip":"06059","state":"CT"},"arcs":[[4954,-4885,4955,4956,-4866,-4872]]},{"type":"Polygon","properties":{"name":"NORTH GRANBY","zip":"06060","state":"CT"},"arcs":[[-911,-975,-4917,4957,-4889]]},{"type":"Polygon","properties":{"name":"PLAINVILLE","zip":"06062","state":"CT"},"arcs":[[4958,-4851,-4904,-4946,-4944]]},{"type":"Polygon","properties":{"name":"BARKHAMSTED","zip":"06063","state":"CT"},"arcs":[[4959,4960,-4886,-4955,-4871,-4950]]},{"type":"Polygon","properties":{"name":"RIVERTON","zip":"06065","state":"CT"},"arcs":[[4961,-4887,-4961]]},{"type":"Polygon","properties":{"name":"VERNON ROCKVILLE","zip":"06066","state":"CT"},"arcs":[[4962,-4938,-4935,4963,-4895,4964]]},{"type":"Polygon","properties":{"name":"ROCKY HILL","zip":"06067","state":"CT"},"arcs":[[4965,4966,4967,4968,-4926]]},{"type":"Polygon","properties":{"name":"SALISBURY","zip":"06068","state":"CT"},"arcs":[[4969,-1098,-1095,-4863,-4899,-4930]]},{"type":"Polygon","properties":{"name":"SHARON","zip":"06069","state":"CT"},"arcs":[[4970,4971,4972,4973,4974,-4928,4975]]},{"type":"Polygon","properties":{"name":"SIMSBURY","zip":"06070","state":"CT"},"arcs":[[4976,4977,-4919,-4879,4978,-4842,-4833]]},{"type":"Polygon","properties":{"name":"SOMERS","zip":"06071","state":"CT"},"arcs":[[4979,-892,-920,4980,-4892]]},{"type":"Polygon","properties":{"name":"SOUTH GLASTONBURY","zip":"06073","state":"CT"},"arcs":[[4981,-4915,4982,4983,4984,4985,-4968]]},{"type":"Polygon","properties":{"name":"SOUTH WINDSOR","zip":"06074","state":"CT"},"arcs":[[4986,4987,4988,4989,-4857,-4896,-4964,-4934]]},{"type":"Polygon","properties":{"name":"STAFFORD SPRINGS","zip":"06076","state":"CT"},"arcs":[[4990,-4893,-4981,-919,-953,-978,-1324,-1386,4991,4992,4993,4994]]},{"type":"Polygon","properties":{"name":"SUFFIELD","zip":"06078","state":"CT"},"arcs":[[4995,4996,-4882,4997,-894,-808,-1007]]},{"type":"Polygon","properties":{"name":"TARIFFVILLE","zip":"06081","state":"CT"},"arcs":[[-4878,-4843,-4979]]},{"type":"Polygon","properties":{"name":"ENFIELD","zip":"06082","state":"CT"},"arcs":[[4998,4999,-4996,-1006,-893,-4980,-4891,-4859]]},{"type":"Polygon","properties":{"name":"TOLLAND","zip":"06084","state":"CT"},"arcs":[[5000,-4965,-4894,-4991,5001]]},{"type":"Polygon","properties":{"name":"UNIONVILLE","zip":"06085","state":"CT"},"arcs":[[-4849,-4855,-4837,-4905]]},{"type":"Polygon","properties":{"name":"EAST WINDSOR","zip":"06088","state":"CT"},"arcs":[[-4990,5002,5003,-4999,-4858]]},{"type":"Polygon","properties":{"name":"WEST GRANBY","zip":"06090","state":"CT"},"arcs":[[5004,-4956,-4890,-4958,-4916,-4978]]},{"type":"Polygon","properties":{"name":"WEST SIMSBURY","zip":"06092","state":"CT"},"arcs":[[-4867,-4957,-5005,-4977,-4832]]},{"type":"Polygon","properties":{"name":"WEST SUFFIELD","zip":"06093","state":"CT"},"arcs":[[-4918,-973,-895,-4998,-4881]]},{"type":"Polygon","properties":{"name":"WINDSOR","zip":"06095","state":"CT"},"arcs":[[5005,-4838,-4884,5006,-5003,-4989]]},{"type":"Polygon","properties":{"name":"WINDSOR LOCKS","zip":"06096","state":"CT"},"arcs":[[-5007,-4883,-4997,-5000,-5004]]},{"type":"Polygon","properties":{"name":"WINSTED","zip":"06098","state":"CT"},"arcs":[[-4868,-1087,-913,-4888,-4962,-4960,-4949,5007,-4952]]},{"type":"Polygon","properties":{"name":"HARTFORD","zip":"06103","state":"CT"},"arcs":[[5008,5009,5010,5011]]},{"type":"Polygon","properties":{"name":"HARTFORD","zip":"06105","state":"CT"},"arcs":[[5012,5013,5014,5015,5016,-5011]]},{"type":"Polygon","properties":{"name":"HARTFORD","zip":"06106","state":"CT"},"arcs":[[5017,5018,5019,5020,-5013,-5010,5021,5022]]},{"type":"Polygon","properties":{"name":"W HARTFORD","zip":"06107","state":"CT"},"arcs":[[5023,-4907,5024,5025]]},{"type":"Polygon","properties":{"name":"EAST HARTFORD","zip":"06108","state":"CT"},"arcs":[[-5009,5026,-4987,-4933,5027,5028,-5022]]},{"type":"Polygon","properties":{"name":"WETHERSFIELD","zip":"06109","state":"CT"},"arcs":[[5029,-5018,5030,5031,-4909,-4982,-4967]]},{"type":"Polygon","properties":{"name":"W HARTFORD","zip":"06110","state":"CT"},"arcs":[[5032,-4908,-5024,5033,-5020]]},{"type":"Polygon","properties":{"name":"NEWINGTON","zip":"06111","state":"CT"},"arcs":[[-4925,-4942,-4947,-4902,-5033,-5019,-5030,-4966]]},{"type":"Polygon","properties":{"name":"HARTFORD","zip":"06112","state":"CT"},"arcs":[[5034,-5016,5035,-4840]]},{"type":"Polygon","properties":{"name":"HARTFORD","zip":"06114","state":"CT"},"arcs":[[-5029,5036,-5031,-5023]]},{"type":"Polygon","properties":{"name":"W HARTFORD","zip":"06117","state":"CT"},"arcs":[[-4841,-5036,-5015,5037,-5025,-4906,-4835]]},{"type":"Polygon","properties":{"name":"EAST HARTFORD","zip":"06118","state":"CT"},"arcs":[[-5032,-5037,-5028,-4932,-4910]]},{"type":"Polygon","properties":{"name":"W HARTFORD","zip":"06119","state":"CT"},"arcs":[[-5026,-5038,-5014,-5021,-5034]]},{"type":"Polygon","properties":{"name":"HARTFORD","zip":"06120","state":"CT"},"arcs":[[-5035,-4839,-5006,-4988,-5027,-5012,-5017]]},{"type":"Polygon","properties":{"name":"WILLIMANTIC","zip":"06226","state":"CT"},"arcs":[[5038,5039,5040,5041,5042,5043,5044]]},{"type":"Polygon","properties":{"name":"AMSTON","zip":"06231","state":"CT"},"arcs":[[5045,5046,5047,5048,5049]]},{"type":"Polygon","properties":{"name":"ANDOVER","zip":"06232","state":"CT"},"arcs":[[5050,5051,-4936,5052]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"06234","state":"CT"},"arcs":[[5053,5054,5055,5056,5057,5058]]},{"type":"Polygon","properties":{"name":"CHAPLIN","zip":"06235","state":"CT"},"arcs":[[5059,5060,5061,5062,5063]]},{"type":"Polygon","properties":{"name":"COLUMBIA","zip":"06237","state":"CT"},"arcs":[[5064,-5051,5065,-5042,5066,-5048]]},{"type":"Polygon","properties":{"name":"COVENTRY","zip":"06238","state":"CT"},"arcs":[[5067,-5043,-5066,-5053,-4939,-4963,-5001,5068]]},{"type":"Polygon","properties":{"name":"DANIELSON","zip":"06239","state":"CT"},"arcs":[[5069,-2338,5070,5071,5072,-5054]]},{"type":"Polygon","properties":{"name":"DAYVILLE","zip":"06241","state":"CT"},"arcs":[[5073,5074,-2305,-2339,-5070,-5059]]},{"type":"Polygon","properties":{"name":"EASTFORD","zip":"06242","state":"CT"},"arcs":[[5075,5076,-5062,5077,-4993,5078,5079]]},{"type":"Polygon","properties":{"name":"HAMPTON","zip":"06247","state":"CT"},"arcs":[[5080,5081,5082,5083,-5063,-5077,5084,-5057,5085]]},{"type":"Polygon","properties":{"name":"HEBRON","zip":"06248","state":"CT"},"arcs":[[-5047,5086,-4913,-4937,-5052,-5065]]},{"type":"Polygon","properties":{"name":"LEBANON","zip":"06249","state":"CT"},"arcs":[[5087,-5049,-5067,-5041,5088,5089,5090]]},{"type":"Polygon","properties":{"name":"MANSFIELD CENTER","zip":"06250","state":"CT"},"arcs":[[5091,5092,-5060,5093,-5044,-5068]]},{"type":"Polygon","properties":{"name":"NORTH FRANKLIN","zip":"06254","state":"CT"},"arcs":[[5094,5095,5096,5097,5098,-5090]]},{"type":"Polygon","properties":{"name":"NORTH GROSVENORDALE","zip":"06255","state":"CT"},"arcs":[[5099,5100,5101,-1400,-1398]]},{"type":"Polygon","properties":{"name":"NORTH WINDHAM","zip":"06256","state":"CT"},"arcs":[[-5094,-5064,-5084,5102,-5045]]},{"type":"Polygon","properties":{"name":"POMFRET CENTER","zip":"06259","state":"CT"},"arcs":[[5103,5104,-5074,-5058,-5085,-5076]]},{"type":"Polygon","properties":{"name":"PUTNAM","zip":"06260","state":"CT"},"arcs":[[-2306,-5075,-5105,5105,-5101,5106]]},{"type":"Polygon","properties":{"name":"SCOTLAND","zip":"06264","state":"CT"},"arcs":[[5107,-5082,5108]]},{"type":"Polygon","properties":{"name":"SOUTH WINDHAM","zip":"06266","state":"CT"},"arcs":[[-5089,-5040,5109,-5095]]},{"type":"Polygon","properties":{"name":"STORRS MANSFIELD","zip":"06268","state":"CT"},"arcs":[[5110,5111,-5092,-5069]]},{"type":"Polygon","properties":{"name":"THOMPSON","zip":"06277","state":"CT"},"arcs":[[-5100,-1397,-1304,-2379,-2307,-5107]]},{"type":"Polygon","properties":{"name":"ASHFORD","zip":"06278","state":"CT"},"arcs":[[-5112,5112,-4994,-5078,-5061,-5093]]},{"type":"Polygon","properties":{"name":"WILLINGTON","zip":"06279","state":"CT"},"arcs":[[-5111,-5002,-4995,-5113]]},{"type":"Polygon","properties":{"name":"WINDHAM","zip":"06280","state":"CT"},"arcs":[[-5039,-5103,-5083,-5108,5113,-5096,-5110]]},{"type":"Polygon","properties":{"name":"WOODSTOCK","zip":"06281","state":"CT"},"arcs":[[5114,-4992,-1385,-1379,-1401,-5102,-5106,-5104,-5080]]},{"type":"Polygon","properties":{"name":"WOODSTOCK VALLEY","zip":"06282","state":"CT"},"arcs":[[-5115,-5079]]},{"type":"Polygon","properties":{"name":"NEW LONDON","zip":"06320","state":"CT"},"arcs":[[5115,5116,5117,5118]]},{"type":"Polygon","properties":{"name":"BALTIC","zip":"06330","state":"CT"},"arcs":[[-5114,-5109,-5081,5119,5120,5121,-5097]]},{"type":"Polygon","properties":{"name":"CANTERBURY","zip":"06331","state":"CT"},"arcs":[[5122,5123,-5120,-5086,-5056]]},{"type":"Polygon","properties":{"name":"EAST LYME","zip":"06333","state":"CT"},"arcs":[[5124,5125,5126,5127,5128]]},{"type":"Polygon","properties":{"name":"BOZRAH","zip":"06334","state":"CT"},"arcs":[[5129,5130,5131,-5091,-5099,5132,5133]]},{"type":"Polygon","properties":{"name":"GALES FERRY","zip":"06335","state":"CT"},"arcs":[[5134,5135,5136,5137,5138,5139]]},{"type":"Polygon","properties":{"name":"LEDYARD","zip":"06339","state":"CT"},"arcs":[[5140,5141,5142,5143,5144,-5139]]},{"type":"Polygon","properties":{"name":"GROTON","zip":"06340","state":"CT"},"arcs":[[5145,5146,-5118,5147,-5140,-5145]]},{"type":"Polygon","properties":{"name":"GROTON","zip":"06349","state":"CT"},"arcs":[[5148,-5135,-5148]]},{"type":"Polygon","properties":{"name":"JEWETT CITY","zip":"06351","state":"CT"},"arcs":[[5149,5150,5151,-5121,-5124,5152,5153]]},{"type":"Polygon","properties":{"name":"MOOSUP","zip":"06354","state":"CT"},"arcs":[[5154,-5072,5155,-2342,-2322,5156,-5154]]},{"type":"Polygon","properties":{"name":"MYSTIC","zip":"06355","state":"CT"},"arcs":[[-5144,5157,5158,-5146]]},{"type":"Polygon","properties":{"name":"NIANTIC","zip":"06357","state":"CT"},"arcs":[[5159,-5125,5160,5161]]},{"type":"Polygon","properties":{"name":"NORTH STONINGTON","zip":"06359","state":"CT"},"arcs":[[5162,-5142,5163,5164,-2355,-2359,-2282,-2422,5165]]},{"type":"Polygon","properties":{"name":"NORWICH","zip":"06360","state":"CT"},"arcs":[[-5098,-5122,-5152,5166,5167,-5133]]},{"type":"Polygon","properties":{"name":"PRESTON","zip":"06365","state":"CT"},"arcs":[[-5138,5168,-5167,-5151,5169,-5164,-5141]]},{"type":"Polygon","properties":{"name":"OAKDALE","zip":"06370","state":"CT"},"arcs":[[5170,5171,-5128,5172,-5130,5173]]},{"type":"Polygon","properties":{"name":"OLD LYME","zip":"06371","state":"CT"},"arcs":[[-5160,5174,5175,5176,5177,5178,5179,5180,-5126]]},{"type":"Polygon","properties":{"name":"PLAINFIELD","zip":"06374","state":"CT"},"arcs":[[-5055,-5073,-5155,-5153,-5123]]},{"type":"Polygon","properties":{"name":"QUAKER HILL","zip":"06375","state":"CT"},"arcs":[[-5117,5181,-5171,5182,-5136,-5149]]},{"type":"Polygon","properties":{"name":"STERLING","zip":"06377","state":"CT"},"arcs":[[-5071,-2337,-2343,-5156]]},{"type":"Polygon","properties":{"name":"STONINGTON","zip":"06378","state":"CT"},"arcs":[[-5143,-5163,5183,5184,-5158]]},{"type":"Polygon","properties":{"name":"PAWCATUCK","zip":"06379","state":"CT"},"arcs":[[-2421,5185,-5184,-5166]]},{"type":"Polygon","properties":{"name":"UNCASVILLE","zip":"06382","state":"CT"},"arcs":[[-5183,-5174,-5134,-5168,-5169,-5137]]},{"type":"Polygon","properties":{"name":"VOLUNTOWN","zip":"06384","state":"CT"},"arcs":[[-2321,-2334,-2356,-5165,-5170,-5150,-5157]]},{"type":"Polygon","properties":{"name":"WATERFORD","zip":"06385","state":"CT"},"arcs":[[-5129,-5172,-5182,-5116,5186,-5161]]},{"type":"Polygon","properties":{"name":"ANSONIA","zip":"06401","state":"CT"},"arcs":[[5187,5188,5189]]},{"type":"Polygon","properties":{"name":"BEACON FALLS","zip":"06403","state":"CT"},"arcs":[[5190,5191,5192,5193]]},{"type":"Polygon","properties":{"name":"BRANFORD","zip":"06405","state":"CT"},"arcs":[[5194,5195,5196,5197]]},{"type":"Polygon","properties":{"name":"CHESHIRE","zip":"06410","state":"CT"},"arcs":[[5198,5199,5200,5201,5202,5203,5204,5205,5206]]},{"type":"Polygon","properties":{"name":"CHESTER","zip":"06412","state":"CT"},"arcs":[[5207,5208,5209,5210,5211,-5179]]},{"type":"Polygon","properties":{"name":"CLINTON","zip":"06413","state":"CT"},"arcs":[[5212,5213,5214,5215]]},{"type":"Polygon","properties":{"name":"COLCHESTER","zip":"06415","state":"CT"},"arcs":[[5216,5217,-5050,-5088,-5132,5218,5219,5220]]},{"type":"Polygon","properties":{"name":"CROMWELL","zip":"06416","state":"CT"},"arcs":[[5221,5222,-4875,-4969,-4986]]},{"type":"Polygon","properties":{"name":"DEEP RIVER","zip":"06417","state":"CT"},"arcs":[[5223,-5208,-5178,5224,5225,5226]]},{"type":"Polygon","properties":{"name":"DERBY","zip":"06418","state":"CT"},"arcs":[[5227,5228,5229,-5188,5230]]},{"type":"Polygon","properties":{"name":"KILLINGWORTH","zip":"06419","state":"CT"},"arcs":[[5231,-5216,5232,5233,5234,-5209,-5224]]},{"type":"Polygon","properties":{"name":"SALEM","zip":"06420","state":"CT"},"arcs":[[-5181,5235,-5219,-5131,-5173,-5127]]},{"type":"Polygon","properties":{"name":"DURHAM","zip":"06422","state":"CT"},"arcs":[[5236,5237,5238,5239,5240,5241,-5234,5242]]},{"type":"Polygon","properties":{"name":"EAST HADDAM","zip":"06423","state":"CT"},"arcs":[[5243,5244,5245,-5220,-5236,-5180,-5212]]},{"type":"Polygon","properties":{"name":"EAST HAMPTON","zip":"06424","state":"CT"},"arcs":[[5246,-5245,5247,5248,5249,5250,-4984,5251,-5217]]},{"type":"Polygon","properties":{"name":"ESSEX","zip":"06426","state":"CT"},"arcs":[[5252,-5225,-5177,5253,5254]]},{"type":"Polygon","properties":{"name":"FAIRFIELD","zip":"06430","state":"CT"},"arcs":[[5255,5256,5257,5258,5259,5260,5261]]},{"type":"Polygon","properties":{"name":"FAIRFIELD","zip":"06432","state":"CT"},"arcs":[[5262,5263,-5262,5264,5265,5266]]},{"type":"Polygon","properties":{"name":"GUILFORD","zip":"06437","state":"CT"},"arcs":[[5267,5268,-5197,5269,5270,-5237]]},{"type":"Polygon","properties":{"name":"HADDAM","zip":"06438","state":"CT"},"arcs":[[5271,-5248,-5244,-5211]]},{"type":"Polygon","properties":{"name":"HIGGANUM","zip":"06441","state":"CT"},"arcs":[[-5210,-5235,-5242,5272,-5249,-5272]]},{"type":"Polygon","properties":{"name":"IVORYTON","zip":"06442","state":"CT"},"arcs":[[5273,-5226,-5253]]},{"type":"Polygon","properties":{"name":"MADISON","zip":"06443","state":"CT"},"arcs":[[-5243,-5233,-5215,5274,-5268]]},{"type":"Polygon","properties":{"name":"MARLBOROUGH","zip":"06447","state":"CT"},"arcs":[[-5218,-5252,-4983,-4914,-5087,-5046]]},{"type":"Polygon","properties":{"name":"MERIDEN","zip":"06450","state":"CT"},"arcs":[[5275,5276,5277,-4920,5278]]},{"type":"Polygon","properties":{"name":"MERIDEN","zip":"06451","state":"CT"},"arcs":[[5279,-5205,5280,-4921,-5278]]},{"type":"Polygon","properties":{"name":"MIDDLEFIELD","zip":"06455","state":"CT"},"arcs":[[-5240,5281,-5276,5282]]},{"type":"Polygon","properties":{"name":"MIDDLETOWN","zip":"06457","state":"CT"},"arcs":[[-5273,-5241,-5283,-5279,-4927,-4873,-5223,5283,-5250]]},{"type":"Polygon","properties":{"name":"MILFORD","zip":"06460","state":"CT"},"arcs":[[5284,5285,5286,5287,5288,5289]]},{"type":"Polygon","properties":{"name":"MONROE","zip":"06468","state":"CT"},"arcs":[[5290,5291,5292,5293,5294,5295]]},{"type":"Polygon","properties":{"name":"MOODUS","zip":"06469","state":"CT"},"arcs":[[-5247,-5221,-5246]]},{"type":"Polygon","properties":{"name":"NEWTOWN","zip":"06470","state":"CT"},"arcs":[[5296,5297,5298,5299,5300,5301,5302,-5294]]},{"type":"Polygon","properties":{"name":"NORTH BRANFORD","zip":"06471","state":"CT"},"arcs":[[-5196,5303,5304,5305,-5270]]},{"type":"Polygon","properties":{"name":"NORTHFORD","zip":"06472","state":"CT"},"arcs":[[5306,5307,-5238,-5271,-5306]]},{"type":"Polygon","properties":{"name":"NORTH HAVEN","zip":"06473","state":"CT"},"arcs":[[5308,5309,5310,5311,-5307]]},{"type":"Polygon","properties":{"name":"OLD SAYBROOK","zip":"06475","state":"CT"},"arcs":[[5312,-5254,-5176,5313]]},{"type":"Polygon","properties":{"name":"ORANGE","zip":"06477","state":"CT"},"arcs":[[5314,-5228,5315,5316,5317,-5287]]},{"type":"Polygon","properties":{"name":"OXFORD","zip":"06478","state":"CT"},"arcs":[[5318,5319,5320,5321,-5192,5322,5323,-5296]]},{"type":"Polygon","properties":{"name":"PLANTSVILLE","zip":"06479","state":"CT"},"arcs":[[5324,5325,-5203]]},{"type":"Polygon","properties":{"name":"PORTLAND","zip":"06480","state":"CT"},"arcs":[[-5284,-5222,-4985,-5251]]},{"type":"Polygon","properties":{"name":"SANDY HOOK","zip":"06482","state":"CT"},"arcs":[[-5303,5326,-5319,-5295]]},{"type":"Polygon","properties":{"name":"SEYMOUR","zip":"06483","state":"CT"},"arcs":[[-5230,5327,-5323,-5191,5328,5329,-5189]]},{"type":"Polygon","properties":{"name":"SHELTON","zip":"06484","state":"CT"},"arcs":[[5330,5331,-5291,-5324,-5328,-5229,-5315,-5286]]},{"type":"Polygon","properties":{"name":"SOUTHBURY","zip":"06488","state":"CT"},"arcs":[[5332,5333,5334,5335,-5320,-5327,-5302]]},{"type":"Polygon","properties":{"name":"SOUTHINGTON","zip":"06489","state":"CT"},"arcs":[[5336,-4845,-4959,-4943,-4922,-5281,-5204,-5326]]},{"type":"Polygon","properties":{"name":"SOUTHPORT","zip":"06490","state":"CT"},"arcs":[[5337,-5258,5338]]},{"type":"Polygon","properties":{"name":"WALLINGFORD","zip":"06492","state":"CT"},"arcs":[[-5308,-5312,5339,-5206,-5280,-5277,-5282,-5239]]},{"type":"Polygon","properties":{"name":"WESTBROOK","zip":"06498","state":"CT"},"arcs":[[-5213,-5232,-5227,-5274,-5255,-5313,5340]]},{"type":"Polygon","properties":{"name":"NEW HAVEN","zip":"06511","state":"CT"},"arcs":[[5341,5342,5343,5344,5345,5346,5347,5348]]},{"type":"Polygon","properties":{"name":"EAST HAVEN","zip":"06512","state":"CT"},"arcs":[[-5347,5349,-5304,-5195,5350]]},{"type":"Polygon","properties":{"name":"NEW HAVEN","zip":"06513","state":"CT"},"arcs":[[5351,-5309,-5305,-5350,-5346]]},{"type":"Polygon","properties":{"name":"HAMDEN","zip":"06514","state":"CT"},"arcs":[[5352,-5344,5353,5354,5355,5356]]},{"type":"Polygon","properties":{"name":"NEW HAVEN","zip":"06515","state":"CT"},"arcs":[[5357,-5317,5358,-5354,-5343]]},{"type":"Polygon","properties":{"name":"WEST HAVEN","zip":"06516","state":"CT"},"arcs":[[-5358,-5342,5359,5360,-5288,-5318]]},{"type":"Polygon","properties":{"name":"HAMDEN","zip":"06517","state":"CT"},"arcs":[[-5345,-5353,5361,-5310,-5352]]},{"type":"Polygon","properties":{"name":"HAMDEN","zip":"06518","state":"CT"},"arcs":[[5362,-5207,-5340,-5311,-5362,-5357]]},{"type":"Polygon","properties":{"name":"NEW HAVEN","zip":"06519","state":"CT"},"arcs":[[-5349,5363,-5360]]},{"type":"Polygon","properties":{"name":"BETHANY","zip":"06524","state":"CT"},"arcs":[[-5194,5364,5365,-5199,-5363,-5356,5366,-5329]]},{"type":"Polygon","properties":{"name":"WOODBRIDGE","zip":"06525","state":"CT"},"arcs":[[-5316,-5231,-5190,-5330,-5367,-5355,-5359]]},{"type":"Polygon","properties":{"name":"BRIDGEPORT","zip":"06604","state":"CT"},"arcs":[[5367,-5263,5368,5369,5370]]},{"type":"Polygon","properties":{"name":"BRIDGEPORT","zip":"06605","state":"CT"},"arcs":[[-5264,-5368,5371,-5256]]},{"type":"Polygon","properties":{"name":"BRIDGEPORT","zip":"06606","state":"CT"},"arcs":[[5372,5373,5374,-5369,-5267]]},{"type":"Polygon","properties":{"name":"BRIDGEPORT","zip":"06607","state":"CT"},"arcs":[[5375,5376,5377]]},{"type":"Polygon","properties":{"name":"BRIDGEPORT","zip":"06608","state":"CT"},"arcs":[[-5370,-5375,5378,5379]]},{"type":"Polygon","properties":{"name":"BRIDGEPORT","zip":"06610","state":"CT"},"arcs":[[-5374,5380,5381,5382,-5378,-5379]]},{"type":"Polygon","properties":{"name":"TRUMBULL","zip":"06611","state":"CT"},"arcs":[[5383,-5292,-5332,5384,-5381,-5373,-5266]]},{"type":"Polygon","properties":{"name":"EASTON","zip":"06612","state":"CT"},"arcs":[[5385,5386,-5297,-5293,-5384,-5265,-5261]]},{"type":"Polygon","properties":{"name":"STRATFORD","zip":"06614","state":"CT"},"arcs":[[5387,-5382,-5385,-5331,-5285]]},{"type":"Polygon","properties":{"name":"STRATFORD","zip":"06615","state":"CT"},"arcs":[[-5383,-5388,-5290,5388,-5376]]},{"type":"Polygon","properties":{"name":"WATERBURY","zip":"06702","state":"CT"},"arcs":[[5389,5390,5391,5392,5393]]},{"type":"Polygon","properties":{"name":"WATERBURY","zip":"06704","state":"CT"},"arcs":[[5394,5395,5396,5397,5398,5399,5400,-5393]]},{"type":"Polygon","properties":{"name":"WATERBURY","zip":"06705","state":"CT"},"arcs":[[5401,5402,-5394,-5401,5403,-5201]]},{"type":"Polygon","properties":{"name":"WATERBURY","zip":"06706","state":"CT"},"arcs":[[5404,5405,-5390,-5403,5406]]},{"type":"Polygon","properties":{"name":"WATERBURY","zip":"06708","state":"CT"},"arcs":[[5407,5408,5409,5410,-5396,5411,-5391,-5406]]},{"type":"Polygon","properties":{"name":"WATERBURY","zip":"06710","state":"CT"},"arcs":[[-5412,-5395,-5392]]},{"type":"Polygon","properties":{"name":"PROSPECT","zip":"06712","state":"CT"},"arcs":[[-5366,5412,-5407,-5402,-5200]]},{"type":"Polygon","properties":{"name":"WOLCOTT","zip":"06716","state":"CT"},"arcs":[[-5202,-5404,-5400,5413,5414,-4846,-5337,-5325]]},{"type":"Polygon","properties":{"name":"BANTAM","zip":"06750","state":"CT"},"arcs":[[5415,5416,5417,5418,5419,5420]]},{"type":"Polygon","properties":{"name":"BETHLEHEM","zip":"06751","state":"CT"},"arcs":[[5421,5422,5423,5424,5425]]},{"type":"Polygon","properties":{"name":"BRIDGEWATER","zip":"06752","state":"CT"},"arcs":[[-5301,5426,5427,5428,-5333]]},{"type":"Polygon","properties":{"name":"CORNWALL BRIDGE","zip":"06754","state":"CT"},"arcs":[[5429,5430,5431,-4971,5432,5433,-5417,5434]]},{"type":"Polygon","properties":{"name":"GAYLORDSVILLE","zip":"06755","state":"CT"},"arcs":[[5435,5436,5437,5438,5439]]},{"type":"Polygon","properties":{"name":"GOSHEN","zip":"06756","state":"CT"},"arcs":[[5440,5441,5442,-4901,-4954]]},{"type":"MultiPolygon","properties":{"name":"KENT","zip":"06757","state":"CT"},"arcs":[[[5443,5444,-4972,-5432,5445,-5438]],[[5446,-5430,5447,5448]]]},{"type":"Polygon","properties":{"name":"LAKESIDE","zip":"06758","state":"CT"},"arcs":[[5449,5450,-5420,5451,-5424]]},{"type":"Polygon","properties":{"name":"LITCHFIELD","zip":"06759","state":"CT"},"arcs":[[5452,5453,5454,-5418,-5434,5455,-5442,5456,5457]]},{"type":"Polygon","properties":{"name":"MIDDLEBURY","zip":"06762","state":"CT"},"arcs":[[5458,5459,-5409,5460,-5321,-5336]]},{"type":"Polygon","properties":{"name":"MORRIS","zip":"06763","state":"CT"},"arcs":[[5461,-5425,-5452,-5419,-5455]]},{"type":"Polygon","properties":{"name":"NAUGATUCK","zip":"06770","state":"CT"},"arcs":[[-5461,-5408,-5405,-5413,-5365,-5193,-5322]]},{"type":"Polygon","properties":{"name":"NEW MILFORD","zip":"06776","state":"CT"},"arcs":[[5462,-5440,5463,-5449,5464,5465,5466,-5428,5467,5468]]},{"type":"Polygon","properties":{"name":"NEW PRESTON MARBLE DALE","zip":"06777","state":"CT"},"arcs":[[5469,-5465,-5448,-5435,-5416]]},{"type":"Polygon","properties":{"name":"NORTHFIELD","zip":"06778","state":"CT"},"arcs":[[5470,-5453,5471]]},{"type":"Polygon","properties":{"name":"OAKVILLE","zip":"06779","state":"CT"},"arcs":[[5472,5473,-5397,-5411]]},{"type":"Polygon","properties":{"name":"PLYMOUTH","zip":"06782","state":"CT"},"arcs":[[5474,5475,-5414,-5399]]},{"type":"Polygon","properties":{"name":"ROXBURY","zip":"06783","state":"CT"},"arcs":[[5476,-5334,-5429,-5467,5477,5478]]},{"type":"Polygon","properties":{"name":"SHERMAN","zip":"06784","state":"CT"},"arcs":[[5479,5480,5481,-5436,-5463,5482]]},{"type":"Polygon","properties":{"name":"SOUTH KENT","zip":"06785","state":"CT"},"arcs":[[-5439,-5446,-5431,-5447,-5464]]},{"type":"Polygon","properties":{"name":"TERRYVILLE","zip":"06786","state":"CT"},"arcs":[[-5415,-5476,5483,5484,-4856,-4847]]},{"type":"Polygon","properties":{"name":"THOMASTON","zip":"06787","state":"CT"},"arcs":[[-5398,-5474,5485,-5454,-5471,5486,-5484,-5475]]},{"type":"Polygon","properties":{"name":"TORRINGTON","zip":"06790","state":"CT"},"arcs":[[-4953,-5008,-4948,5487,-5457,-5441]]},{"type":"Polygon","properties":{"name":"HARWINTON","zip":"06791","state":"CT"},"arcs":[[-5458,-5488,-4951,-4852,-5485,-5487,-5472]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"06793","state":"CT"},"arcs":[[5488,-5450,-5423,5489,-5479]]},{"type":"Polygon","properties":{"name":"WASHINGTON DEPOT","zip":"06794","state":"CT"},"arcs":[[-5478,-5466,-5470,-5421,-5451,-5489]]},{"type":"Polygon","properties":{"name":"WATERTOWN","zip":"06795","state":"CT"},"arcs":[[-5460,5490,-5426,-5462,-5486,-5473,-5410]]},{"type":"Polygon","properties":{"name":"WEST CORNWALL","zip":"06796","state":"CT"},"arcs":[[-5433,-4976,-4897,-5443,-5456]]},{"type":"Polygon","properties":{"name":"WOODBURY","zip":"06798","state":"CT"},"arcs":[[-5335,-5477,-5490,-5422,-5491,-5459]]},{"type":"Polygon","properties":{"name":"BETHEL","zip":"06801","state":"CT"},"arcs":[[5491,5492,5493,-5299]]},{"type":"Polygon","properties":{"name":"BROOKFIELD","zip":"06804","state":"CT"},"arcs":[[5494,5495,5496,-5468,-5427,-5300,-5494]]},{"type":"Polygon","properties":{"name":"COS COB","zip":"06807","state":"CT"},"arcs":[[5497,5498,5499,5500,5501]]},{"type":"Polygon","properties":{"name":"DANBURY","zip":"06810","state":"CT"},"arcs":[[5502,5503,5504,5505,-5495,-5493]]},{"type":"Polygon","properties":{"name":"DANBURY","zip":"06811","state":"CT"},"arcs":[[5506,5507,-5496,-5506]]},{"type":"Polygon","properties":{"name":"NEW FAIRFIELD","zip":"06812","state":"CT"},"arcs":[[5508,5509,-5483,-5469,-5497,-5508]]},{"type":"Polygon","properties":{"name":"DARIEN","zip":"06820","state":"CT"},"arcs":[[5510,5511,5512,5513,5514,5515,5516,5517]]},{"type":"Polygon","properties":{"name":"GREENWICH","zip":"06830","state":"CT"},"arcs":[[5518,5519,5520,-5498,5521,5522]]},{"type":"Polygon","properties":{"name":"GREENWICH","zip":"06831","state":"CT"},"arcs":[[5523,5524,5525,5526,5527,5528,-5519]]},{"type":"Polygon","properties":{"name":"NEW CANAAN","zip":"06840","state":"CT"},"arcs":[[5529,-5513,5530,5531,5532,5533,5534]]},{"type":"Polygon","properties":{"name":"NORWALK","zip":"06850","state":"CT"},"arcs":[[5535,-5514,-5530,5536,5537]]},{"type":"Polygon","properties":{"name":"NORWALK","zip":"06851","state":"CT"},"arcs":[[5538,-5538,5539,5540]]},{"type":"Polygon","properties":{"name":"NORWALK","zip":"06853","state":"CT"},"arcs":[[-5516,5541,5542]]},{"type":"Polygon","properties":{"name":"NORWALK","zip":"06854","state":"CT"},"arcs":[[-5515,-5536,5543,5544,-5542]]},{"type":"Polygon","properties":{"name":"NORWALK","zip":"06855","state":"CT"},"arcs":[[-5539,5545,5546,-5544]]},{"type":"Polygon","properties":{"name":"OLD GREENWICH","zip":"06870","state":"CT"},"arcs":[[5547,5548,5549,-5500]]},{"type":"Polygon","properties":{"name":"RIDGEFIELD","zip":"06877","state":"CT"},"arcs":[[5550,5551,5552,5553,-5504,5554]]},{"type":"Polygon","properties":{"name":"RIVERSIDE","zip":"06878","state":"CT"},"arcs":[[-5501,-5550,5555]]},{"type":"Polygon","properties":{"name":"WESTPORT","zip":"06880","state":"CT"},"arcs":[[5556,5557,-5259,-5338,5558,-5546,-5541]]},{"type":"Polygon","properties":{"name":"WESTON","zip":"06883","state":"CT"},"arcs":[[5559,5560,-5386,-5260,-5558]]},{"type":"Polygon","properties":{"name":"REDDING","zip":"06896","state":"CT"},"arcs":[[-5503,-5492,-5298,-5387,-5561,5561,-5555]]},{"type":"Polygon","properties":{"name":"WILTON","zip":"06897","state":"CT"},"arcs":[[-5537,-5535,5562,-5551,-5562,-5560,-5557,-5540]]},{"type":"Polygon","properties":{"name":"STAMFORD","zip":"06902","state":"CT"},"arcs":[[5563,5564,-5518,5565,-5548,-5499,-5521,5566]]},{"type":"Polygon","properties":{"name":"STAMFORD","zip":"06903","state":"CT"},"arcs":[[5567,5568,-5532,5569,5570,-5567,-5520,-5529]]},{"type":"Polygon","properties":{"name":"STAMFORD","zip":"06905","state":"CT"},"arcs":[[-5571,5571,5572,-5564]]},{"type":"Polygon","properties":{"name":"STAMFORD","zip":"06906","state":"CT"},"arcs":[[-5565,-5573,5573,-5511]]},{"type":"Polygon","properties":{"name":"STAMFORD","zip":"06907","state":"CT"},"arcs":[[-5574,-5572,-5570,-5531,-5512]]},{"type":"Polygon","properties":{"name":"AVENEL","zip":"07001","state":"NJ"},"arcs":[[5574,5575,5576,5577,5578,5579,5580]]},{"type":"Polygon","properties":{"name":"BAYONNE","zip":"07002","state":"NJ"},"arcs":[[5581,5582]]},{"type":"Polygon","properties":{"name":"BLOOMFIELD","zip":"07003","state":"NJ"},"arcs":[[5583,5584,5585,5586,5587,5588,5589]]},{"type":"Polygon","properties":{"name":"FAIRFIELD","zip":"07004","state":"NJ"},"arcs":[[5590,5591,5592,5593,5594,5595,5596]]},{"type":"Polygon","properties":{"name":"BOONTON","zip":"07005","state":"NJ"},"arcs":[[5597,5598,5599,5600,5601,5602,5603]]},{"type":"Polygon","properties":{"name":"CALDWELL","zip":"07006","state":"NJ"},"arcs":[[5604,5605,5606,5607,-5596,5608,5609]]},{"type":"Polygon","properties":{"name":"CARTERET","zip":"07008","state":"NJ"},"arcs":[[5610,-5579,5611,5612]]},{"type":"Polygon","properties":{"name":"CEDAR GROVE","zip":"07009","state":"NJ"},"arcs":[[5613,5614,-5610,5615]]},{"type":"Polygon","properties":{"name":"CLIFFSIDE PARK","zip":"07010","state":"NJ"},"arcs":[[5616,5617,5618,5619,5620]]},{"type":"Polygon","properties":{"name":"CLIFTON","zip":"07011","state":"NJ"},"arcs":[[5621,5622,5623,5624,5625]]},{"type":"Polygon","properties":{"name":"CLIFTON","zip":"07012","state":"NJ"},"arcs":[[5626,-5589,5627,5628,5629]]},{"type":"Polygon","properties":{"name":"CLIFTON","zip":"07013","state":"NJ"},"arcs":[[5630,5631,5632,5633,-5622,5634,-5628]]},{"type":"Polygon","properties":{"name":"CLIFTON","zip":"07014","state":"NJ"},"arcs":[[5635,5636,-5630,5637,5638]]},{"type":"Polygon","properties":{"name":"CRANFORD","zip":"07016","state":"NJ"},"arcs":[[5639,5640,5641,5642,5643,5644,5645]]},{"type":"Polygon","properties":{"name":"EAST ORANGE","zip":"07017","state":"NJ"},"arcs":[[5646,5647,5648,5649,-5586]]},{"type":"Polygon","properties":{"name":"EAST ORANGE","zip":"07018","state":"NJ"},"arcs":[[5650,5651,-5648,5652,5653,5654]]},{"type":"Polygon","properties":{"name":"EDGEWATER","zip":"07020","state":"NJ"},"arcs":[[5655,-5617,5656,5657]]},{"type":"Polygon","properties":{"name":"ESSEX FELLS","zip":"07021","state":"NJ"},"arcs":[[5658,-5606,5659,5660]]},{"type":"Polygon","properties":{"name":"FAIRVIEW","zip":"07022","state":"NJ"},"arcs":[[5661,5662,-5619]]},{"type":"Polygon","properties":{"name":"FANWOOD","zip":"07023","state":"NJ"},"arcs":[[5663,5664,5665,5666]]},{"type":"Polygon","properties":{"name":"FORT LEE","zip":"07024","state":"NJ"},"arcs":[[5667,5668,5669,5670,5671,5672,-5657,-5621]]},{"type":"Polygon","properties":{"name":"GARFIELD","zip":"07026","state":"NJ"},"arcs":[[5673,-5625,5674,5675,5676,5677,5678]]},{"type":"Polygon","properties":{"name":"GLEN RIDGE","zip":"07028","state":"NJ"},"arcs":[[-5650,5679,-5587]]},{"type":"Polygon","properties":{"name":"HARRISON","zip":"07029","state":"NJ"},"arcs":[[5680,5681,5682,5683]]},{"type":"Polygon","properties":{"name":"HOBOKEN","zip":"07030","state":"NJ"},"arcs":[[5684,5685,5686,5687,5688]]},{"type":"Polygon","properties":{"name":"NORTH ARLINGTON","zip":"07031","state":"NJ"},"arcs":[[5689,5690,5691]]},{"type":"Polygon","properties":{"name":"KEARNY","zip":"07032","state":"NJ"},"arcs":[[5692,5693,5694,-5683,5695,5696,-5690,5697,5698]]},{"type":"Polygon","properties":{"name":"KENILWORTH","zip":"07033","state":"NJ"},"arcs":[[5699,-5644,5700,5701]]},{"type":"Polygon","properties":{"name":"LAKE HIAWATHA","zip":"07034","state":"NJ"},"arcs":[[5702,-5603,5703]]},{"type":"Polygon","properties":{"name":"LINCOLN PARK","zip":"07035","state":"NJ"},"arcs":[[5704,5705,5706,5707,5708,-5594]]},{"type":"Polygon","properties":{"name":"LINDEN","zip":"07036","state":"NJ"},"arcs":[[5709,5710,-5640,5711,5712,5713,-5612,-5578]]},{"type":"Polygon","properties":{"name":"LIVINGSTON","zip":"07039","state":"NJ"},"arcs":[[5714,5715,5716,5717,5718,5719]]},{"type":"Polygon","properties":{"name":"MAPLEWOOD","zip":"07040","state":"NJ"},"arcs":[[5720,5721,5722,5723,5724,5725,5726]]},{"type":"Polygon","properties":{"name":"MILLBURN","zip":"07041","state":"NJ"},"arcs":[[5727,5728,5729,5730,5731,-5722]]},{"type":"Polygon","properties":{"name":"MONTCLAIR","zip":"07042","state":"NJ"},"arcs":[[5732,5733,5734,5735,-5680]]},{"type":"Polygon","properties":{"name":"MONTCLAIR","zip":"07043","state":"NJ"},"arcs":[[-5736,5736,-5614,5737,-5631,-5588]]},{"type":"Polygon","properties":{"name":"VERONA","zip":"07044","state":"NJ"},"arcs":[[-5605,-5615,-5737,-5735,5738,-5660]]},{"type":"Polygon","properties":{"name":"MONTVILLE","zip":"07045","state":"NJ"},"arcs":[[5739,-5704,-5602,5740,5741,-5592]]},{"type":"Polygon","properties":{"name":"MOUNTAIN LAKES","zip":"07046","state":"NJ"},"arcs":[[5742,5743,-5598]]},{"type":"Polygon","properties":{"name":"NORTH BERGEN","zip":"07047","state":"NJ"},"arcs":[[5744,5745,5746,5747,5748,5749,-5662,-5618,-5656,5750]]},{"type":"Polygon","properties":{"name":"ORANGE","zip":"07050","state":"NJ"},"arcs":[[5751,-5733,-5649,-5652,5752]]},{"type":"Polygon","properties":{"name":"WEST ORANGE","zip":"07052","state":"NJ"},"arcs":[[5753,-5661,-5739,-5734,-5752,5754,-5723,-5732,5755,-5719]]},{"type":"Polygon","properties":{"name":"PARSIPPANY","zip":"07054","state":"NJ"},"arcs":[[5756,5757,5758,-5743,-5604,-5703,5759,5760,5761]]},{"type":"Polygon","properties":{"name":"PASSAIC","zip":"07055","state":"NJ"},"arcs":[[-5635,-5626,-5674,5762,5763,5764,-5638,-5629]]},{"type":"Polygon","properties":{"name":"WALLINGTON","zip":"07057","state":"NJ"},"arcs":[[5765,5766,-5763,-5679,5767]]},{"type":"Polygon","properties":{"name":"PINE BROOK","zip":"07058","state":"NJ"},"arcs":[[-5740,-5591,5768,-5760]]},{"type":"Polygon","properties":{"name":"WARREN","zip":"07059","state":"NJ"},"arcs":[[5769,5770,5771,5772,5773,5774,5775,5776]]},{"type":"Polygon","properties":{"name":"PLAINFIELD","zip":"07060","state":"NJ"},"arcs":[[5777,5778,5779,5780,5781,5782]]},{"type":"Polygon","properties":{"name":"PLAINFIELD","zip":"07062","state":"NJ"},"arcs":[[5783,-5783,5784,5785,-5665]]},{"type":"Polygon","properties":{"name":"PLAINFIELD","zip":"07063","state":"NJ"},"arcs":[[5786,5787,-5780,5788]]},{"type":"Polygon","properties":{"name":"PORT READING","zip":"07064","state":"NJ"},"arcs":[[5789,5790,-5580,-5611,5791]]},{"type":"Polygon","properties":{"name":"RAHWAY","zip":"07065","state":"NJ"},"arcs":[[5792,5793,-5710,-5577]]},{"type":"Polygon","properties":{"name":"CLARK","zip":"07066","state":"NJ"},"arcs":[[5794,5795,5796,5797,-5641,-5711,-5794]]},{"type":"Polygon","properties":{"name":"COLONIA","zip":"07067","state":"NJ"},"arcs":[[5798,5799,-5795,-5793,-5576]]},{"type":"Polygon","properties":{"name":"ROSELAND","zip":"07068","state":"NJ"},"arcs":[[-5718,5800,-5607,-5659,-5754]]},{"type":"Polygon","properties":{"name":"WATCHUNG","zip":"07069","state":"NJ"},"arcs":[[5801,5802,-5785,-5782,5803,-5776]]},{"type":"Polygon","properties":{"name":"RUTHERFORD","zip":"07070","state":"NJ"},"arcs":[[5804,5805,-5639,-5765]]},{"type":"Polygon","properties":{"name":"LYNDHURST","zip":"07071","state":"NJ"},"arcs":[[5806,-5636,-5806,5807,5808,-5698,-5692]]},{"type":"Polygon","properties":{"name":"CARLSTADT","zip":"07072","state":"NJ"},"arcs":[[5809,5810,-5766,5811,5812,5813,5814,-5749]]},{"type":"Polygon","properties":{"name":"EAST RUTHERFORD","zip":"07073","state":"NJ"},"arcs":[[-5764,-5767,-5811,5815,-5808,-5805]]},{"type":"Polygon","properties":{"name":"MOONACHIE","zip":"07074","state":"NJ"},"arcs":[[5816,-5813,5817,5818,5819]]},{"type":"Polygon","properties":{"name":"WOOD RIDGE","zip":"07075","state":"NJ"},"arcs":[[5820,-5818,-5812,-5768,-5678,5821]]},{"type":"MultiPolygon","properties":{"name":"SCOTCH PLAINS","zip":"07076","state":"NJ"},"arcs":[[[5822,5823,5824,-5666,-5786,-5803]],[[5825,-5778,-5784,-5664,5826,-5797]]]},{"type":"Polygon","properties":{"name":"SEWAREN","zip":"07077","state":"NJ"},"arcs":[[5827,5828,-5790,5829]]},{"type":"Polygon","properties":{"name":"SHORT HILLS","zip":"07078","state":"NJ"},"arcs":[[5830,5831,-5720,-5756,-5731,5832]]},{"type":"Polygon","properties":{"name":"SOUTH ORANGE","zip":"07079","state":"NJ"},"arcs":[[5833,-5724,-5755,-5753,-5651]]},{"type":"Polygon","properties":{"name":"SOUTH PLAINFIELD","zip":"07080","state":"NJ"},"arcs":[[5834,5835,-5789,-5779,5836]]},{"type":"Polygon","properties":{"name":"SPRINGFIELD","zip":"07081","state":"NJ"},"arcs":[[5837,5838,5839,-5833,-5730,5840,-5701,-5643]]},{"type":"Polygon","properties":{"name":"TOWACO","zip":"07082","state":"NJ"},"arcs":[[-5742,5841,-5705,-5593]]},{"type":"Polygon","properties":{"name":"UNION","zip":"07083","state":"NJ"},"arcs":[[-5841,-5729,5842,-5727,5843,5844,5845,5846,-5702]]},{"type":"Polygon","properties":{"name":"WEEHAWKEN","zip":"07086","state":"NJ"},"arcs":[[-5688,5847,5848,5849]]},{"type":"Polygon","properties":{"name":"UNION CITY","zip":"07087","state":"NJ"},"arcs":[[5850,-5746,5851,-5848,-5687]]},{"type":"Polygon","properties":{"name":"VAUXHALL","zip":"07088","state":"NJ"},"arcs":[[-5728,-5721,-5843]]},{"type":"Polygon","properties":{"name":"WESTFIELD","zip":"07090","state":"NJ"},"arcs":[[-5798,-5827,-5667,-5825,5852,-5838,-5642]]},{"type":"Polygon","properties":{"name":"MOUNTAINSIDE","zip":"07092","state":"NJ"},"arcs":[[5853,5854,-5839,-5853,-5824]]},{"type":"Polygon","properties":{"name":"WEST NEW YORK","zip":"07093","state":"NJ"},"arcs":[[-5849,-5852,-5745,5855]]},{"type":"Polygon","properties":{"name":"SECAUCUS","zip":"07094","state":"NJ"},"arcs":[[5856,5857,-5699,-5809,-5816,-5810,-5748]]},{"type":"Polygon","properties":{"name":"WOODBRIDGE","zip":"07095","state":"NJ"},"arcs":[[5858,5859,5860,-5581,-5791,-5829]]},{"type":"Polygon","properties":{"name":"NEWARK","zip":"07102","state":"NJ"},"arcs":[[5861,5862,5863,-5681,5864,5865]]},{"type":"Polygon","properties":{"name":"NEWARK","zip":"07103","state":"NJ"},"arcs":[[5866,5867,-5654,5868,5869,-5863,5870]]},{"type":"Polygon","properties":{"name":"NEWARK","zip":"07104","state":"NJ"},"arcs":[[5871,5872,-5696,-5682,-5864,-5870]]},{"type":"Polygon","properties":{"name":"NEWARK","zip":"07105","state":"NJ"},"arcs":[[5873,-5865,-5684,-5695,5874]]},{"type":"Polygon","properties":{"name":"NEWARK","zip":"07106","state":"NJ"},"arcs":[[-5834,-5655,-5868,5875,-5725]]},{"type":"Polygon","properties":{"name":"NEWARK","zip":"07107","state":"NJ"},"arcs":[[-5869,-5653,-5647,-5585,5876,-5872]]},{"type":"Polygon","properties":{"name":"NEWARK","zip":"07108","state":"NJ"},"arcs":[[5877,5878,5879,-5871,-5862]]},{"type":"Polygon","properties":{"name":"BELLEVILLE","zip":"07109","state":"NJ"},"arcs":[[-5877,-5584,5880,-5691,-5697,-5873]]},{"type":"Polygon","properties":{"name":"NUTLEY","zip":"07110","state":"NJ"},"arcs":[[-5881,-5590,-5627,-5637,-5807]]},{"type":"Polygon","properties":{"name":"IRVINGTON","zip":"07111","state":"NJ"},"arcs":[[-5726,-5876,-5867,-5880,5881,5882,-5844]]},{"type":"Polygon","properties":{"name":"NEWARK","zip":"07112","state":"NJ"},"arcs":[[5883,5884,-5882,-5879]]},{"type":"Polygon","properties":{"name":"NEWARK","zip":"07114","state":"NJ"},"arcs":[[5885,-5884,-5878,-5866,-5874,5886,5887]]},{"type":"Polygon","properties":{"name":"ELIZABETH","zip":"07201","state":"NJ"},"arcs":[[5888,5889,5890,-5888,5891]]},{"type":"Polygon","properties":{"name":"ELIZABETH","zip":"07202","state":"NJ"},"arcs":[[5892,5893,-5713,5894,5895,-5890]]},{"type":"Polygon","properties":{"name":"ROSELLE","zip":"07203","state":"NJ"},"arcs":[[5896,5897,-5895,-5712,-5646]]},{"type":"Polygon","properties":{"name":"ROSELLE PARK","zip":"07204","state":"NJ"},"arcs":[[-5645,-5700,-5847,5898,-5897]]},{"type":"Polygon","properties":{"name":"HILLSIDE","zip":"07205","state":"NJ"},"arcs":[[-5883,-5885,5899,-5845]]},{"type":"Polygon","properties":{"name":"ELIZABETH","zip":"07206","state":"NJ"},"arcs":[[-5889,5900,-5893]]},{"type":"Polygon","properties":{"name":"ELIZABETH","zip":"07208","state":"NJ"},"arcs":[[-5898,-5899,-5846,-5900,-5886,-5891,-5896]]},{"type":"Polygon","properties":{"name":"JERSEY CITY","zip":"07302","state":"NJ"},"arcs":[[5901,5902,5903,5904]]},{"type":"Polygon","properties":{"name":"JERSEY CITY","zip":"07304","state":"NJ"},"arcs":[[5905,5906,5907,-5902,5908]]},{"type":"Polygon","properties":{"name":"JERSEY CITY","zip":"07305","state":"NJ"},"arcs":[[-5582,5909,-5906,5910]]},{"type":"Polygon","properties":{"name":"JERSEY CITY","zip":"07306","state":"NJ"},"arcs":[[5911,-5903,-5908,5912,-5693,-5858,5913]]},{"type":"Polygon","properties":{"name":"JERSEY CITY","zip":"07307","state":"NJ"},"arcs":[[-5914,-5857,-5747,-5851,-5686]]},{"type":"Polygon","properties":{"name":"JERSEY CITY","zip":"07310","state":"NJ"},"arcs":[[-5904,-5912,-5685,5914]]},{"type":"Polygon","properties":{"name":"ALLENDALE","zip":"07401","state":"NJ"},"arcs":[[5915,5916,5917,5918,5919]]},{"type":"Polygon","properties":{"name":"BLOOMINGDALE","zip":"07403","state":"NJ"},"arcs":[[5920,5921,5922,5923,5924,5925,5926]]},{"type":"Polygon","properties":{"name":"BUTLER","zip":"07405","state":"NJ"},"arcs":[[5927,5928,5929,-5923,5930,5931,-5706,-5842,-5741,-5601]]},{"type":"Polygon","properties":{"name":"ELMWOOD PARK","zip":"07407","state":"NJ"},"arcs":[[5932,5933,5934,5935,5936,-5675,-5624]]},{"type":"Polygon","properties":{"name":"FAIR LAWN","zip":"07410","state":"NJ"},"arcs":[[5937,5938,-5936,5939,5940,5941]]},{"type":"Polygon","properties":{"name":"FRANKLIN","zip":"07416","state":"NJ"},"arcs":[[5942,5943,5944,5945]]},{"type":"Polygon","properties":{"name":"FRANKLIN LAKES","zip":"07417","state":"NJ"},"arcs":[[5946,5947,5948,5949,5950]]},{"type":"Polygon","properties":{"name":"GLENWOOD","zip":"07418","state":"NJ"},"arcs":[[5951,5952,5953,5954]]},{"type":"Polygon","properties":{"name":"HAMBURG","zip":"07419","state":"NJ"},"arcs":[[5955,5956,5957,5958,5959,5960,-5946]]},{"type":"Polygon","properties":{"name":"HASKELL","zip":"07420","state":"NJ"},"arcs":[[5961,-5927,5962]]},{"type":"Polygon","properties":{"name":"HEWITT","zip":"07421","state":"NJ"},"arcs":[[5963,5964,5965,5966,5967,5968,5969,5970]]},{"type":"Polygon","properties":{"name":"HIGHLAND LAKES","zip":"07422","state":"NJ"},"arcs":[[5971,5972,-5965,5973]]},{"type":"Polygon","properties":{"name":"HO HO KUS","zip":"07423","state":"NJ"},"arcs":[[5974,5975,5976,5977]]},{"type":"Polygon","properties":{"name":"LITTLE FALLS","zip":"07424","state":"NJ"},"arcs":[[-5609,5978,5979,5980,-5632,-5738,-5616]]},{"type":"Polygon","properties":{"name":"MAHWAH","zip":"07430","state":"NJ"},"arcs":[[5981,-5951,5982,5983,5984,5985,5986,5987,5988,5989,-5919]]},{"type":"Polygon","properties":{"name":"MIDLAND PARK","zip":"07432","state":"NJ"},"arcs":[[5990,5991,5992]]},{"type":"Polygon","properties":{"name":"NEWFOUNDLAND","zip":"07435","state":"NJ"},"arcs":[[5993,-5929,5994,5995,5996,-5971]]},{"type":"Polygon","properties":{"name":"OAKLAND","zip":"07436","state":"NJ"},"arcs":[[5997,5998,5999,-5983,-5950,6000]]},{"type":"Polygon","properties":{"name":"OAK RIDGE","zip":"07438","state":"NJ"},"arcs":[[6001,6002,6003,-5996,6004,6005]]},{"type":"Polygon","properties":{"name":"OGDENSBURG","zip":"07439","state":"NJ"},"arcs":[[6006,5943,6007]]},{"type":"Polygon","properties":{"name":"PEQUANNOCK","zip":"07440","state":"NJ"},"arcs":[[6008,6009,-5708]]},{"type":"Polygon","properties":{"name":"POMPTON LAKES","zip":"07442","state":"NJ"},"arcs":[[6010,-5921,-5962,6011,-5998,6012,6013]]},{"type":"Polygon","properties":{"name":"POMPTON PLAINS","zip":"07444","state":"NJ"},"arcs":[[6014,-6014,6015,-6009,-5707,-5932]]},{"type":"Polygon","properties":{"name":"RAMSEY","zip":"07446","state":"NJ"},"arcs":[[6016,-5920,-5990]]},{"type":"Polygon","properties":{"name":"RIDGEWOOD","zip":"07450","state":"NJ"},"arcs":[[6017,6018,-5991,6019,-5976,6020,6021,6022]]},{"type":"Polygon","properties":{"name":"GLEN ROCK","zip":"07452","state":"NJ"},"arcs":[[6023,-6023,-5942]]},{"type":"Polygon","properties":{"name":"RINGWOOD","zip":"07456","state":"NJ"},"arcs":[[6024,-5969,6025,6026,-5984,-6000,6027,-5925]]},{"type":"Polygon","properties":{"name":"RIVERDALE","zip":"07457","state":"NJ"},"arcs":[[-6015,-5931,-5922,-6011]]},{"type":"Polygon","properties":{"name":"SADDLE RIVER","zip":"07458","state":"NJ"},"arcs":[[6028,-5916,-6017,-5989,6029,6030,6031,6032,-5978]]},{"type":"Polygon","properties":{"name":"STOCKHOLM","zip":"07460","state":"NJ"},"arcs":[[-5943,-5961,6033,-5974,-5964,-5997,-6004,6034,6006]]},{"type":"Polygon","properties":{"name":"SUSSEX","zip":"07461","state":"NJ"},"arcs":[[6035,6036,6037,6038,6039,-5953,6040,-5959,6041]]},{"type":"Polygon","properties":{"name":"VERNON","zip":"07462","state":"NJ"},"arcs":[[-6034,-5960,-6041,-5952,6042,-5972]]},{"type":"Polygon","properties":{"name":"WALDWICK","zip":"07463","state":"NJ"},"arcs":[[-5993,6043,-5917,-6029,-5977,-6020]]},{"type":"Polygon","properties":{"name":"WANAQUE","zip":"07465","state":"NJ"},"arcs":[[-5963,-5926,-6028,-5999,-6012]]},{"type":"Polygon","properties":{"name":"WAYNE","zip":"07470","state":"NJ"},"arcs":[[-6010,-6016,-6013,-6001,-5949,6044,6045,6046,-5979,-5595,-5709]]},{"type":"Polygon","properties":{"name":"WEST MILFORD","zip":"07480","state":"NJ"},"arcs":[[-5930,-5994,-5970,-6025,-5924]]},{"type":"Polygon","properties":{"name":"WYCKOFF","zip":"07481","state":"NJ"},"arcs":[[6047,-5947,-5982,-5918,-6044,-5992,-6019,6048]]},{"type":"Polygon","properties":{"name":"PATERSON","zip":"07501","state":"NJ"},"arcs":[[6049,6050,-5633,-5981,6051,6052,6053,6054,6055]]},{"type":"Polygon","properties":{"name":"PATERSON","zip":"07502","state":"NJ"},"arcs":[[6056,-6046,6057,6058,-6052]]},{"type":"Polygon","properties":{"name":"PATERSON","zip":"07503","state":"NJ"},"arcs":[[-6051,6059,6060,-5933,-5623,-5634]]},{"type":"Polygon","properties":{"name":"PATERSON","zip":"07504","state":"NJ"},"arcs":[[-6061,6061,-6056,6062,-5934]]},{"type":"Polygon","properties":{"name":"HAWTHORNE","zip":"07506","state":"NJ"},"arcs":[[6063,6064,-6049,-6018,-6024,-5941]]},{"type":"Polygon","properties":{"name":"HALEDON","zip":"07508","state":"NJ"},"arcs":[[6065,-6058,-6045,-5948,-6048,-6065,6066]]},{"type":"Polygon","properties":{"name":"TOTOWA","zip":"07512","state":"NJ"},"arcs":[[-6047,-6057,-5980]]},{"type":"Polygon","properties":{"name":"PATERSON","zip":"07513","state":"NJ"},"arcs":[[-6050,-6062,-6060]]},{"type":"Polygon","properties":{"name":"PATERSON","zip":"07514","state":"NJ"},"arcs":[[-6063,-6055,6067,-5940,-5935]]},{"type":"Polygon","properties":{"name":"PATERSON","zip":"07522","state":"NJ"},"arcs":[[-6059,-6066,6068,-6053]]},{"type":"Polygon","properties":{"name":"PATERSON","zip":"07524","state":"NJ"},"arcs":[[-6069,-6067,-6064,-6068,-6054]]},{"type":"Polygon","properties":{"name":"HACKENSACK","zip":"07601","state":"NJ"},"arcs":[[6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079]]},{"type":"Polygon","properties":{"name":"BOGOTA","zip":"07603","state":"NJ"},"arcs":[[6080,-6070,6081]]},{"type":"Polygon","properties":{"name":"HASBROUCK HEIGHTS","zip":"07604","state":"NJ"},"arcs":[[6082,-6075,6083,-5819,-5821]]},{"type":"Polygon","properties":{"name":"LEONIA","zip":"07605","state":"NJ"},"arcs":[[6084,6085,6086,6087,-5670]]},{"type":"Polygon","properties":{"name":"SOUTH HACKENSACK","zip":"07606","state":"NJ"},"arcs":[[6088,6089,-6073]]},{"type":"Polygon","properties":{"name":"MAYWOOD","zip":"07607","state":"NJ"},"arcs":[[6090,6091,6092,-6077]]},{"type":"Polygon","properties":{"name":"TETERBORO","zip":"07608","state":"NJ"},"arcs":[[-6074,-6090,6093,-5820,-6084]]},{"type":"Polygon","properties":{"name":"ALPINE","zip":"07620","state":"NJ"},"arcs":[[6094,6095,6096,6097,6098,6099,6100,6101]]},{"type":"Polygon","properties":{"name":"BERGENFIELD","zip":"07621","state":"NJ"},"arcs":[[6102,6103,6104,6105,6106]]},{"type":"Polygon","properties":{"name":"CLOSTER","zip":"07624","state":"NJ"},"arcs":[[6107,6108,6109,6110,-6097,6111]]},{"type":"Polygon","properties":{"name":"CRESSKILL","zip":"07626","state":"NJ"},"arcs":[[6112,-6107,6113,6114,-6095]]},{"type":"Polygon","properties":{"name":"DEMAREST","zip":"07627","state":"NJ"},"arcs":[[-6115,6115,6116,-6112,-6096]]},{"type":"Polygon","properties":{"name":"DUMONT","zip":"07628","state":"NJ"},"arcs":[[-6106,6117,6118,6119,-6116,-6114]]},{"type":"Polygon","properties":{"name":"EMERSON","zip":"07630","state":"NJ"},"arcs":[[6120,6121,6122,6123,6124,6125,-6109]]},{"type":"Polygon","properties":{"name":"ENGLEWOOD","zip":"07631","state":"NJ"},"arcs":[[6126,-5671,-6088,6127,6128]]},{"type":"Polygon","properties":{"name":"ENGLEWOOD CLIFFS","zip":"07632","state":"NJ"},"arcs":[[-5672,-6127,6129,6130]]},{"type":"Polygon","properties":{"name":"HARRINGTON PARK","zip":"07640","state":"NJ"},"arcs":[[6131,6132,-6110,-6126]]},{"type":"Polygon","properties":{"name":"HAWORTH","zip":"07641","state":"NJ"},"arcs":[[-6120,6133,-6121,-6108,-6117]]},{"type":"Polygon","properties":{"name":"HILLSDALE","zip":"07642","state":"NJ"},"arcs":[[6134,-6033,6135,6136]]},{"type":"Polygon","properties":{"name":"LITTLE FERRY","zip":"07643","state":"NJ"},"arcs":[[-6094,-6089,-6072,6137,6138,-5814,-5817]]},{"type":"Polygon","properties":{"name":"LODI","zip":"07644","state":"NJ"},"arcs":[[6139,6140,-6091,-6076,-6083,-5822,-5677]]},{"type":"Polygon","properties":{"name":"MONTVALE","zip":"07645","state":"NJ"},"arcs":[[6141,6142,6143,-6031,6144,6145]]},{"type":"Polygon","properties":{"name":"NEW MILFORD","zip":"07646","state":"NJ"},"arcs":[[6146,6147,6148,-6118,-6105]]},{"type":"Polygon","properties":{"name":"NORTHVALE","zip":"07647","state":"NJ"},"arcs":[[6149,6150,6151,6152,-6099]]},{"type":"Polygon","properties":{"name":"NORWOOD","zip":"07648","state":"NJ"},"arcs":[[-6111,-6133,-6150,-6098]]},{"type":"Polygon","properties":{"name":"ORADELL","zip":"07649","state":"NJ"},"arcs":[[6153,-6122,-6134,-6119,-6149,6154]]},{"type":"Polygon","properties":{"name":"PALISADES PARK","zip":"07650","state":"NJ"},"arcs":[[6155,6156,-6085,-5669]]},{"type":"Polygon","properties":{"name":"PARAMUS","zip":"07652","state":"NJ"},"arcs":[[6157,-6078,-6093,6158,6159,-5938,-6022,6160,-6123,-6154]]},{"type":"Polygon","properties":{"name":"PARK RIDGE","zip":"07656","state":"NJ"},"arcs":[[6161,-6143,6162]]},{"type":"Polygon","properties":{"name":"RIDGEFIELD","zip":"07657","state":"NJ"},"arcs":[[-5750,-5815,-6139,6163,-6156,-5668,-5620,-5663]]},{"type":"Polygon","properties":{"name":"RIDGEFIELD PARK","zip":"07660","state":"NJ"},"arcs":[[-6071,-6081,6164,-6086,-6157,-6164,-6138]]},{"type":"Polygon","properties":{"name":"RIVER EDGE","zip":"07661","state":"NJ"},"arcs":[[-6155,-6148,6165,-6079,-6158]]},{"type":"Polygon","properties":{"name":"ROCHELLE PARK","zip":"07662","state":"NJ"},"arcs":[[-6141,6166,-6159,-6092]]},{"type":"Polygon","properties":{"name":"SADDLE BROOK","zip":"07663","state":"NJ"},"arcs":[[-5939,-6160,-6167,-6140,-5676,-5937]]},{"type":"Polygon","properties":{"name":"TEANECK","zip":"07666","state":"NJ"},"arcs":[[-6080,-6166,-6147,-6104,6167,-6128,-6087,-6165,-6082]]},{"type":"Polygon","properties":{"name":"TENAFLY","zip":"07670","state":"NJ"},"arcs":[[-6168,-6103,-6113,-6102,6168,-6130,-6129]]},{"type":"Polygon","properties":{"name":"WESTWOOD","zip":"07675","state":"NJ"},"arcs":[[-6125,6169,-6137,6170,-6163,-6142,6171,6172,6173,-6151,-6132]]},{"type":"Polygon","properties":{"name":"TOWNSHIP OF WASHINGTON","zip":"07676","state":"NJ"},"arcs":[[-6124,-6161,-6021,-5975,-6135,-6170]]},{"type":"Polygon","properties":{"name":"WOODCLIFF LAKE","zip":"07677","state":"NJ"},"arcs":[[-6144,-6162,-6171,-6136,-6032]]},{"type":"Polygon","properties":{"name":"RED BANK","zip":"07701","state":"NJ"},"arcs":[[6174,6175,6176,6177,6178,6179,6180,6181,6182]]},{"type":"Polygon","properties":{"name":"SHREWSBURY","zip":"07702","state":"NJ"},"arcs":[[6183,6184,-6182,6185,6186]]},{"type":"Polygon","properties":{"name":"FORT MONMOUTH","zip":"07703","state":"NJ"},"arcs":[[6187,6188,-6184,6189]]},{"type":"Polygon","properties":{"name":"FAIR HAVEN","zip":"07704","state":"NJ"},"arcs":[[6190,-6180,6191,6192]]},{"type":"Polygon","properties":{"name":"ALLENHURST","zip":"07711","state":"NJ"},"arcs":[[6193,6194,6195]]},{"type":"Polygon","properties":{"name":"ASBURY PARK","zip":"07712","state":"NJ"},"arcs":[[6196,6197,6198,6199,6200,-6194,6201]]},{"type":"Polygon","properties":{"name":"ATLANTIC HIGHLANDS","zip":"07716","state":"NJ"},"arcs":[[6202,-6177,6203,6204,6205,6206]]},{"type":"Polygon","properties":{"name":"AVON BY THE SEA","zip":"07717","state":"NJ"},"arcs":[[6207,6208,6209,6210]]},{"type":"Polygon","properties":{"name":"BELFORD","zip":"07718","state":"NJ"},"arcs":[[6211,6212,6213,6214]]},{"type":"Polygon","properties":{"name":"BELMAR","zip":"07719","state":"NJ"},"arcs":[[6215,6216,6217,-6208,6218,6219,6220,6221]]},{"type":"Polygon","properties":{"name":"BRADLEY BEACH","zip":"07720","state":"NJ"},"arcs":[[-6210,6222,6223,6224]]},{"type":"Polygon","properties":{"name":"CLIFFWOOD","zip":"07721","state":"NJ"},"arcs":[[6225,6226,6227]]},{"type":"Polygon","properties":{"name":"COLTS NECK","zip":"07722","state":"NJ"},"arcs":[[6228,6229,6230,6231,6232,6233,6234,6235]]},{"type":"Polygon","properties":{"name":"DEAL","zip":"07723","state":"NJ"},"arcs":[[-6195,-6201,6236,6237,6238]]},{"type":"Polygon","properties":{"name":"EATONTOWN","zip":"07724","state":"NJ"},"arcs":[[6239,-6199,6240,-6234,6241,-6183,-6185,-6189,6242,6243]]},{"type":"Polygon","properties":{"name":"ENGLISHTOWN","zip":"07726","state":"NJ"},"arcs":[[6244,6245,6246,6247,6248,6249,6250,6251,6252]]},{"type":"Polygon","properties":{"name":"FARMINGDALE","zip":"07727","state":"NJ"},"arcs":[[6253,6254,-6236,6255,-6217]]},{"type":"Polygon","properties":{"name":"FREEHOLD","zip":"07728","state":"NJ"},"arcs":[[6256,-6252,6257,-6229,-6255,6258,6259]]},{"type":"Polygon","properties":{"name":"HAZLET","zip":"07730","state":"NJ"},"arcs":[[6260,6261,6262,6263]]},{"type":"Polygon","properties":{"name":"HOWELL","zip":"07731","state":"NJ"},"arcs":[[6264,-6259,-6254,-6216,6265,6266,6267]]},{"type":"MultiPolygon","properties":{"name":"HIGHLANDS","zip":"07732","state":"NJ"},"arcs":[[[6268,-6207,6269]]]},{"type":"Polygon","properties":{"name":"HOLMDEL","zip":"07733","state":"NJ"},"arcs":[[6270,6271,-6261,6272,6273,6274,-6232]]},{"type":"Polygon","properties":{"name":"KEANSBURG","zip":"07734","state":"NJ"},"arcs":[[6275,-6273,-6264,6276,6277]]},{"type":"Polygon","properties":{"name":"KEYPORT","zip":"07735","state":"NJ"},"arcs":[[6278,6279,-6277,-6263,6280,-6228]]},{"type":"Polygon","properties":{"name":"LEONARDO","zip":"07737","state":"NJ"},"arcs":[[6281,-6212,6282,-6205]]},{"type":"Polygon","properties":{"name":"LINCROFT","zip":"07738","state":"NJ"},"arcs":[[-6233,-6275,6283,-6175,-6242]]},{"type":"Polygon","properties":{"name":"LITTLE SILVER","zip":"07739","state":"NJ"},"arcs":[[-6186,-6181,-6191,6284,6285]]},{"type":"Polygon","properties":{"name":"LONG BRANCH","zip":"07740","state":"NJ"},"arcs":[[6286,6287,6288,6289,6290,6291,-6238]]},{"type":"Polygon","properties":{"name":"MARLBORO","zip":"07746","state":"NJ"},"arcs":[[-6258,-6251,6292,-6230]]},{"type":"Polygon","properties":{"name":"MATAWAN","zip":"07747","state":"NJ"},"arcs":[[6293,6294,-6226,-6281,-6262,-6272,6295]]},{"type":"Polygon","properties":{"name":"MIDDLETOWN","zip":"07748","state":"NJ"},"arcs":[[-6276,6296,6297,-6213,-6282,-6204,-6176,-6284,-6274]]},{"type":"Polygon","properties":{"name":"MONMOUTH BEACH","zip":"07750","state":"NJ"},"arcs":[[-6291,6298,6299]]},{"type":"Polygon","properties":{"name":"MORGANVILLE","zip":"07751","state":"NJ"},"arcs":[[-6293,-6250,6300,-6296,-6271,-6231]]},{"type":"Polygon","properties":{"name":"NEPTUNE","zip":"07753","state":"NJ"},"arcs":[[-6218,-6256,-6235,-6241,-6198,6301,-6223,-6209]]},{"type":"Polygon","properties":{"name":"OAKHURST","zip":"07755","state":"NJ"},"arcs":[[-6240,6302,-6287,-6237,-6200]]},{"type":"Polygon","properties":{"name":"OCEAN GROVE","zip":"07756","state":"NJ"},"arcs":[[-6197,6303,-6224,-6302]]},{"type":"Polygon","properties":{"name":"OCEANPORT","zip":"07757","state":"NJ"},"arcs":[[6304,-6243,-6188,6305,-6289]]},{"type":"Polygon","properties":{"name":"PORT MONMOUTH","zip":"07758","state":"NJ"},"arcs":[[-6214,-6298,6306]]},{"type":"MultiPolygon","properties":{"name":"RUMSON","zip":"07760","state":"NJ"},"arcs":[[[-6178,-6203,-6269,6307]],[[-6285,-6193,6308]]]},{"type":"Polygon","properties":{"name":"SPRING LAKE","zip":"07762","state":"NJ"},"arcs":[[6309,-6220,6310]]},{"type":"Polygon","properties":{"name":"WEST LONG BRANCH","zip":"07764","state":"NJ"},"arcs":[[-6305,-6288,-6303,-6244]]},{"type":"Polygon","properties":{"name":"DOVER","zip":"07801","state":"NJ"},"arcs":[[6311,6312,6313,6314]]},{"type":"Polygon","properties":{"name":"MINE HILL","zip":"07803","state":"NJ"},"arcs":[[6315,6316,6317,-6312,6318]]},{"type":"Polygon","properties":{"name":"ANDOVER","zip":"07821","state":"NJ"},"arcs":[[6319,6320,6321,6322,6323,6324,6325,6326,6327]]},{"type":"Polygon","properties":{"name":"AUGUSTA","zip":"07822","state":"NJ"},"arcs":[[6328,6329,6330,-6042,-5958]]},{"type":"Polygon","properties":{"name":"BELVIDERE","zip":"07823","state":"NJ"},"arcs":[[6331,6332,6333,6334,6335,6336,6337,6338]]},{"type":"Polygon","properties":{"name":"BLAIRSTOWN","zip":"07825","state":"NJ"},"arcs":[[6339,-6335,6340,6341,-6323]]},{"type":"Polygon","properties":{"name":"BRANCHVILLE","zip":"07826","state":"NJ"},"arcs":[[6342,6343,6344,-6036,-6331]]},{"type":"Polygon","properties":{"name":"MONTAGUE","zip":"07827","state":"NJ"},"arcs":[[6345,6346,6347,6348,6349,-6037,-6345]]},{"type":"Polygon","properties":{"name":"BUDD LAKE","zip":"07828","state":"NJ"},"arcs":[[6350,6351,-6320,6352,6353]]},{"type":"Polygon","properties":{"name":"CALIFON","zip":"07830","state":"NJ"},"arcs":[[6354,6355,6356,6357,6358,6359,6360]]},{"type":"Polygon","properties":{"name":"COLUMBIA","zip":"07832","state":"NJ"},"arcs":[[6361,6362,6363,6364,6365,6366,6367,-6341,-6334]]},{"type":"Polygon","properties":{"name":"DENVILLE","zip":"07834","state":"NJ"},"arcs":[[6368,6369,6370,-5599,-5744,-5759]]},{"type":"Polygon","properties":{"name":"FLANDERS","zip":"07836","state":"NJ"},"arcs":[[6371,6372,6373,6374,-6351,6375,6376]]},{"type":"Polygon","properties":{"name":"GREAT MEADOWS","zip":"07838","state":"NJ"},"arcs":[[6377,-6336,-6340,-6322,6378]]},{"type":"Polygon","properties":{"name":"HACKETTSTOWN","zip":"07840","state":"NJ"},"arcs":[[6379,-6379,-6321,-6352,-6375,6380,6381]]},{"type":"Polygon","properties":{"name":"HOPATCONG","zip":"07843","state":"NJ"},"arcs":[[6382,6383,-6327,6384,6385]]},{"type":"Polygon","properties":{"name":"KENVIL","zip":"07847","state":"NJ"},"arcs":[[6386,6387,6388,-6317]]},{"type":"Polygon","properties":{"name":"LAFAYETTE","zip":"07848","state":"NJ"},"arcs":[[6389,6390,-6329,-5957]]},{"type":"Polygon","properties":{"name":"LAKE HOPATCONG","zip":"07849","state":"NJ"},"arcs":[[-6326,6391,-6002,6392,6393,-6385]]},{"type":"Polygon","properties":{"name":"LANDING","zip":"07850","state":"NJ"},"arcs":[[6394,6395,-6383,6396,6397]]},{"type":"Polygon","properties":{"name":"LAYTON","zip":"07851","state":"NJ"},"arcs":[[6398,-6367,6399,-6346,-6344]]},{"type":"Polygon","properties":{"name":"LEDGEWOOD","zip":"07852","state":"NJ"},"arcs":[[6400,-6377,-6398,6401,6402,-6388]]},{"type":"Polygon","properties":{"name":"LONG VALLEY","zip":"07853","state":"NJ"},"arcs":[[6403,-6359,6404,-6381,-6374]]},{"type":"Polygon","properties":{"name":"MOUNT ARLINGTON","zip":"07856","state":"NJ"},"arcs":[[-6397,-6386,-6394,6405,-6402]]},{"type":"Polygon","properties":{"name":"NETCONG","zip":"07857","state":"NJ"},"arcs":[[-6376,-6354,6406,-6395]]},{"type":"Polygon","properties":{"name":"NEWTON","zip":"07860","state":"NJ"},"arcs":[[6407,-6324,-6342,-6368,-6399,-6343,-6330,-6391]]},{"type":"Polygon","properties":{"name":"OXFORD","zip":"07863","state":"NJ"},"arcs":[[6408,6409,-6337,-6378,-6380]]},{"type":"Polygon","properties":{"name":"PORT MURRAY","zip":"07865","state":"NJ"},"arcs":[[6410,-6409,-6382,-6405,-6358,6411]]},{"type":"Polygon","properties":{"name":"ROCKAWAY","zip":"07866","state":"NJ"},"arcs":[[-6371,-6314,6412,-6005,-5995,-5928,-5600]]},{"type":"Polygon","properties":{"name":"RANDOLPH","zip":"07869","state":"NJ"},"arcs":[[6413,6414,-6319,-6315,-6370,6415,6416,6417]]},{"type":"Polygon","properties":{"name":"SPARTA","zip":"07871","state":"NJ"},"arcs":[[-6392,-6325,-6408,-6390,-5956,-5945,6007,-6035,-6003]]},{"type":"Polygon","properties":{"name":"STANHOPE","zip":"07874","state":"NJ"},"arcs":[[-6328,-6384,-6396,-6407,-6353]]},{"type":"Polygon","properties":{"name":"SUCCASUNNA","zip":"07876","state":"NJ"},"arcs":[[6418,-6372,-6401,-6387,-6316,-6415]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"07882","state":"NJ"},"arcs":[[6419,6420,-6338,-6410,-6411,6421,6422,6423]]},{"type":"Polygon","properties":{"name":"WHARTON","zip":"07885","state":"NJ"},"arcs":[[-6403,-6406,-6393,-6006,-6413,-6313,-6318,-6389]]},{"type":"Polygon","properties":{"name":"SUMMIT","zip":"07901","state":"NJ"},"arcs":[[6424,6425,-5831,-5840,-5855,6426]]},{"type":"Polygon","properties":{"name":"BASKING RIDGE","zip":"07920","state":"NJ"},"arcs":[[6427,6428,6429,6430,6431,-5771,6432]]},{"type":"Polygon","properties":{"name":"BEDMINSTER","zip":"07921","state":"NJ"},"arcs":[[6433,6434,6435,6436,-6428]]},{"type":"Polygon","properties":{"name":"BERKELEY HEIGHTS","zip":"07922","state":"NJ"},"arcs":[[-5802,-5775,6437,6438,6439,-6427,-5854,-5823]]},{"type":"Polygon","properties":{"name":"BERNARDSVILLE","zip":"07924","state":"NJ"},"arcs":[[6440,6441,6442,-6430]]},{"type":"Polygon","properties":{"name":"CEDAR KNOLLS","zip":"07927","state":"NJ"},"arcs":[[6443,6444,6445,-5757]]},{"type":"Polygon","properties":{"name":"CHATHAM","zip":"07928","state":"NJ"},"arcs":[[6446,-6439,6447,6448,6449,6450,-5715,-5832,-6426]]},{"type":"Polygon","properties":{"name":"CHESTER","zip":"07930","state":"NJ"},"arcs":[[-6404,-6373,-6419,-6414,6451,6452]]},{"type":"Polygon","properties":{"name":"FAR HILLS","zip":"07931","state":"NJ"},"arcs":[[6453,-6360,-6453,6454,-6441,-6429,-6437]]},{"type":"Polygon","properties":{"name":"FLORHAM PARK","zip":"07932","state":"NJ"},"arcs":[[6455,6456,6457,-5716,-6451]]},{"type":"Polygon","properties":{"name":"GILLETTE","zip":"07933","state":"NJ"},"arcs":[[-5774,6458,6459,6460,6461,-6448,-6438]]},{"type":"Polygon","properties":{"name":"GREEN VILLAGE","zip":"07935","state":"NJ"},"arcs":[[6462,6463,-6449,-6462]]},{"type":"Polygon","properties":{"name":"EAST HANOVER","zip":"07936","state":"NJ"},"arcs":[[-6458,6464,6465,-5761,-5769,-5597,-5608,-5801,-5717]]},{"type":"Polygon","properties":{"name":"MADISON","zip":"07940","state":"NJ"},"arcs":[[6466,-6456,-6450,-6464]]},{"type":"Polygon","properties":{"name":"MENDHAM","zip":"07945","state":"NJ"},"arcs":[[-6455,-6452,-6418,6467,-6442]]},{"type":"Polygon","properties":{"name":"MILLINGTON","zip":"07946","state":"NJ"},"arcs":[[-6460,6468,-5772,-6432]]},{"type":"Polygon","properties":{"name":"MORRIS PLAINS","zip":"07950","state":"NJ"},"arcs":[[6469,-6416,-6369,-5758,-6446]]},{"type":"Polygon","properties":{"name":"MORRISTOWN","zip":"07960","state":"NJ"},"arcs":[[-6461,-6431,-6443,-6468,-6417,-6470,-6445,6470,-6465,-6457,-6467,-6463]]},{"type":"Polygon","properties":{"name":"NEW PROVIDENCE","zip":"07974","state":"NJ"},"arcs":[[-6447,-6425,-6440]]},{"type":"Polygon","properties":{"name":"STIRLING","zip":"07980","state":"NJ"},"arcs":[[-6459,-5773,-6469]]},{"type":"Polygon","properties":{"name":"WHIPPANY","zip":"07981","state":"NJ"},"arcs":[[-6471,-6444,-5762,-6466]]},{"type":"Polygon","properties":{"name":"CHERRY HILL","zip":"08002","state":"NJ"},"arcs":[[6471,6472,6473,6474,6475]]},{"type":"Polygon","properties":{"name":"CHERRY HILL","zip":"08003","state":"NJ"},"arcs":[[6476,6477,6478,6479,6480,6481]]},{"type":"Polygon","properties":{"name":"ATCO","zip":"08004","state":"NJ"},"arcs":[[6482,6483,6484,6485,6486]]},{"type":"Polygon","properties":{"name":"BARNEGAT","zip":"08005","state":"NJ"},"arcs":[[6487,6488,6489,6490,6491,6492,6493,6494]]},{"type":"Polygon","properties":{"name":"BARRINGTON","zip":"08007","state":"NJ"},"arcs":[[6495,6496,6497,6498,6499,6500]]},{"type":"Polygon","properties":{"name":"BERLIN","zip":"08009","state":"NJ"},"arcs":[[6501,6502,6503,6504,6505,6506,-6483]]},{"type":"Polygon","properties":{"name":"BEVERLY","zip":"08010","state":"NJ"},"arcs":[[6507,6508,6509,6510]]},{"type":"Polygon","properties":{"name":"BLACKWOOD","zip":"08012","state":"NJ"},"arcs":[[6511,6512,6513,6514,6515,6516,6517]]},{"type":"Polygon","properties":{"name":"BRIDGEPORT","zip":"08014","state":"NJ"},"arcs":[[6518,6519,6520]]},{"type":"Polygon","properties":{"name":"BROWNS MILLS","zip":"08015","state":"NJ"},"arcs":[[6521,6522,6523,6524,6525,6526]]},{"type":"Polygon","properties":{"name":"BURLINGTON","zip":"08016","state":"NJ"},"arcs":[[6527,6528,6529,-6511,6530,6531,6532]]},{"type":"Polygon","properties":{"name":"CHATSWORTH","zip":"08019","state":"NJ"},"arcs":[[6533,6534,-6490]]},{"type":"Polygon","properties":{"name":"CLARKSBORO","zip":"08020","state":"NJ"},"arcs":[[6535,6536,6537,6538,6539,6540]]},{"type":"Polygon","properties":{"name":"CLEMENTON","zip":"08021","state":"NJ"},"arcs":[[6541,-6505,6542,-6516,6543,6544]]},{"type":"Polygon","properties":{"name":"COLUMBUS","zip":"08022","state":"NJ"},"arcs":[[6545,6546,6547,6548,6549]]},{"type":"Polygon","properties":{"name":"GIBBSTOWN","zip":"08027","state":"NJ"},"arcs":[[6550,-6539,6551,6552,-6521,6553]]},{"type":"Polygon","properties":{"name":"GLASSBORO","zip":"08028","state":"NJ"},"arcs":[[6554,6555,6556,6557,6558]]},{"type":"Polygon","properties":{"name":"GLENDORA","zip":"08029","state":"NJ"},"arcs":[[6559,6560,6561,-6513]]},{"type":"Polygon","properties":{"name":"GLOUCESTER CITY","zip":"08030","state":"NJ"},"arcs":[[6562,6563,6564,6565,6566]]},{"type":"Polygon","properties":{"name":"BELLMAWR","zip":"08031","state":"NJ"},"arcs":[[6567,6568,-6563,6569,6570,-6496]]},{"type":"Polygon","properties":{"name":"HADDONFIELD","zip":"08033","state":"NJ"},"arcs":[[6571,6572,6573,-6473,6574,-6477,6575,-6498]]},{"type":"Polygon","properties":{"name":"CHERRY HILL","zip":"08034","state":"NJ"},"arcs":[[-6472,6576,6577,-6478,-6575]]},{"type":"Polygon","properties":{"name":"HADDON HEIGHTS","zip":"08035","state":"NJ"},"arcs":[[-6571,6578,6579,-6572,-6497]]},{"type":"Polygon","properties":{"name":"HAMMONTON","zip":"08037","state":"NJ"},"arcs":[[6580,6581,-6503,6582,6583,6584,6585]]},{"type":"Polygon","properties":{"name":"JOBSTOWN","zip":"08041","state":"NJ"},"arcs":[[6586,6587,6588,-6549]]},{"type":"Polygon","properties":{"name":"VOORHEES","zip":"08043","state":"NJ"},"arcs":[[-6545,6589,6590,-6481,6591,6592]]},{"type":"Polygon","properties":{"name":"LAWNSIDE","zip":"08045","state":"NJ"},"arcs":[[6593,-6499,-6576,-6482]]},{"type":"Polygon","properties":{"name":"WILLINGBORO","zip":"08046","state":"NJ"},"arcs":[[6594,6595,6596,-6508,-6530]]},{"type":"Polygon","properties":{"name":"MAGNOLIA","zip":"08049","state":"NJ"},"arcs":[[6597,-6514,-6562,6598,-6500,-6594,-6591]]},{"type":"Polygon","properties":{"name":"MANAHAWKIN","zip":"08050","state":"NJ"},"arcs":[[6599,6600,-6488,6601]]},{"type":"Polygon","properties":{"name":"MANTUA","zip":"08051","state":"NJ"},"arcs":[[6602,6603,-6536,6604,6605,6606]]},{"type":"Polygon","properties":{"name":"MAPLE SHADE","zip":"08052","state":"NJ"},"arcs":[[6607,6608,6609,6610,-6577,-6476]]},{"type":"Polygon","properties":{"name":"MARLTON","zip":"08053","state":"NJ"},"arcs":[[6611,-6592,-6480,6612,6613,-6484,-6507]]},{"type":"Polygon","properties":{"name":"MOUNT LAUREL","zip":"08054","state":"NJ"},"arcs":[[6614,-6613,-6479,-6578,-6611,6615,6616]]},{"type":"Polygon","properties":{"name":"MEDFORD","zip":"08055","state":"NJ"},"arcs":[[-6615,6617,6618,-6485,-6614]]},{"type":"Polygon","properties":{"name":"MICKLETON","zip":"08056","state":"NJ"},"arcs":[[6619,6620,6621,-6552,-6538]]},{"type":"Polygon","properties":{"name":"MOORESTOWN","zip":"08057","state":"NJ"},"arcs":[[-6610,6622,6623,-6596,-6616]]},{"type":"Polygon","properties":{"name":"MOUNT EPHRAIM","zip":"08059","state":"NJ"},"arcs":[[6624,6625,-6579,-6570,-6567]]},{"type":"Polygon","properties":{"name":"MOUNT HOLLY","zip":"08060","state":"NJ"},"arcs":[[-6617,-6595,-6529,6626,-6546,6627,6628,-6618]]},{"type":"Polygon","properties":{"name":"MOUNT ROYAL","zip":"08061","state":"NJ"},"arcs":[[-6541,6629,6630,-6605]]},{"type":"Polygon","properties":{"name":"MULLICA HILL","zip":"08062","state":"NJ"},"arcs":[[6631,6632,6633,-6621,6634,-6555]]},{"type":"Polygon","properties":{"name":"PALMYRA","zip":"08065","state":"NJ"},"arcs":[[6635,6636,6637]]},{"type":"Polygon","properties":{"name":"PAULSBORO","zip":"08066","state":"NJ"},"arcs":[[-6551,6638,6639,6640,6641,-6630,-6540]]},{"type":"Polygon","properties":{"name":"PEDRICKTOWN","zip":"08067","state":"NJ"},"arcs":[[6642,6643,6644,6645]]},{"type":"Polygon","properties":{"name":"PEMBERTON","zip":"08068","state":"NJ"},"arcs":[[-6550,-6589,6646,-6524,6647,-6628]]},{"type":"Polygon","properties":{"name":"PENNS GROVE","zip":"08069","state":"NJ"},"arcs":[[6648,6649,6650,6651,-6644]]},{"type":"Polygon","properties":{"name":"PENNSVILLE","zip":"08070","state":"NJ"},"arcs":[[6652,6653,-6651]]},{"type":"Polygon","properties":{"name":"RIVERSIDE","zip":"08075","state":"NJ"},"arcs":[[6654,6655,-6509,-6597,-6624]]},{"type":"Polygon","properties":{"name":"RIVERTON","zip":"08077","state":"NJ"},"arcs":[[-6609,6656,-6638,6657,-6655,-6623]]},{"type":"Polygon","properties":{"name":"RUNNEMEDE","zip":"08078","state":"NJ"},"arcs":[[6658,-6568,-6501,-6599,-6561]]},{"type":"Polygon","properties":{"name":"SALEM","zip":"08079","state":"NJ"},"arcs":[[6659,6660,6661,-6653,-6650,6662,6663]]},{"type":"Polygon","properties":{"name":"SEWELL","zip":"08080","state":"NJ"},"arcs":[[-6620,-6537,-6604,6664,6665,-6518,6666,6667,-6556,-6635]]},{"type":"Polygon","properties":{"name":"SICKLERVILLE","zip":"08081","state":"NJ"},"arcs":[[-6582,6668,-6667,-6517,-6543,-6504]]},{"type":"Polygon","properties":{"name":"SOMERDALE","zip":"08083","state":"NJ"},"arcs":[[-6515,-6598,-6590,-6544]]},{"type":"Polygon","properties":{"name":"SWEDESBORO","zip":"08085","state":"NJ"},"arcs":[[-6519,-6553,-6622,-6634,6669,-6646,6670]]},{"type":"MultiPolygon","properties":{"name":"THOROFARE","zip":"08086","state":"NJ"},"arcs":[[[6671,6672,-6640,6673]],[[-6631,-6642,6674,-6606]]]},{"type":"Polygon","properties":{"name":"TUCKERTON","zip":"08087","state":"NJ"},"arcs":[[6675,6676,-6534,-6489,-6601,6677,6678,6679]]},{"type":"Polygon","properties":{"name":"VINCENTOWN","zip":"08088","state":"NJ"},"arcs":[[-6677,6680,-6584,6681,-6486,-6619,-6629,-6648,-6523,6682,-6491,-6535]]},{"type":"Polygon","properties":{"name":"WATERFORD WORKS","zip":"08089","state":"NJ"},"arcs":[[-6487,-6682,-6583,-6502]]},{"type":"Polygon","properties":{"name":"WENONAH","zip":"08090","state":"NJ"},"arcs":[[6683,-6665,-6603]]},{"type":"Polygon","properties":{"name":"WEST BERLIN","zip":"08091","state":"NJ"},"arcs":[[-6506,-6542,-6593,-6612]]},{"type":"Polygon","properties":{"name":"WEST CREEK","zip":"08092","state":"NJ"},"arcs":[[-6678,-6600,6684]]},{"type":"Polygon","properties":{"name":"WESTVILLE","zip":"08093","state":"NJ"},"arcs":[[6685,-6672,6686,-6564,-6569]]},{"type":"Polygon","properties":{"name":"WILLIAMSTOWN","zip":"08094","state":"NJ"},"arcs":[[6687,6688,6689,6690,6691,6692,-6557,-6668,-6669,-6581]]},{"type":"Polygon","properties":{"name":"WOODBURY","zip":"08096","state":"NJ"},"arcs":[[-6675,-6641,-6673,-6686,-6659,-6560,-6512,-6666,-6684,-6607]]},{"type":"Polygon","properties":{"name":"WOODSTOWN","zip":"08098","state":"NJ"},"arcs":[[6693,6694,-6663,-6649,-6643,-6670,-6633,6695]]},{"type":"Polygon","properties":{"name":"CAMDEN","zip":"08102","state":"NJ"},"arcs":[[6696,6697,6698,6699]]},{"type":"Polygon","properties":{"name":"CAMDEN","zip":"08103","state":"NJ"},"arcs":[[6700,6701,6702,-6698,6703]]},{"type":"Polygon","properties":{"name":"CAMDEN","zip":"08104","state":"NJ"},"arcs":[[-6566,6704,-6702,6705,-6625]]},{"type":"Polygon","properties":{"name":"CAMDEN","zip":"08105","state":"NJ"},"arcs":[[6706,6707,-6700,6708]]},{"type":"Polygon","properties":{"name":"AUDUBON","zip":"08106","state":"NJ"},"arcs":[[6709,-6573,-6580,-6626]]},{"type":"Polygon","properties":{"name":"OAKLYN","zip":"08107","state":"NJ"},"arcs":[[-6706,6710,-6710]]},{"type":"Polygon","properties":{"name":"COLLINGSWOOD","zip":"08108","state":"NJ"},"arcs":[[-6701,6711,-6474,-6574,-6711]]},{"type":"Polygon","properties":{"name":"MERCHANTVILLE","zip":"08109","state":"NJ"},"arcs":[[-6712,-6704,-6697,-6708,6712,-6608,-6475]]},{"type":"Polygon","properties":{"name":"PENNSAUKEN","zip":"08110","state":"NJ"},"arcs":[[-6636,-6657,-6713,-6707,6713]]},{"type":"Polygon","properties":{"name":"ABSECON","zip":"08201","state":"NJ"},"arcs":[[6714,6715,6716,6717,6718]]},{"type":"Polygon","properties":{"name":"AVALON","zip":"08202","state":"NJ"},"arcs":[[6719,6720]]},{"type":"Polygon","properties":{"name":"CAPE MAY","zip":"08204","state":"NJ"},"arcs":[[6721,6722,6723,6724]]},{"type":"Polygon","properties":{"name":"ABSECON","zip":"08205","state":"NJ"},"arcs":[[6725,6726,6727,6728,-6718]]},{"type":"Polygon","properties":{"name":"CAPE MAY COURT HOUSE","zip":"08210","state":"NJ"},"arcs":[[6729,6730,6731,6732,6733,6734,-6723]]},{"type":"Polygon","properties":{"name":"EGG HARBOR CITY","zip":"08215","state":"NJ"},"arcs":[[6735,-6585,-6681,-6676,6736,-6727,6737]]},{"type":"Polygon","properties":{"name":"LINWOOD","zip":"08221","state":"NJ"},"arcs":[[6738,6739,6740,6741]]},{"type":"Polygon","properties":{"name":"MARMORA","zip":"08223","state":"NJ"},"arcs":[[6742,6743,6744]]},{"type":"Polygon","properties":{"name":"NORTHFIELD","zip":"08225","state":"NJ"},"arcs":[[6745,6746,6747,-6741]]},{"type":"Polygon","properties":{"name":"OCEAN VIEW","zip":"08230","state":"NJ"},"arcs":[[6748,-6743,6749,-6733]]},{"type":"Polygon","properties":{"name":"PLEASANTVILLE","zip":"08232","state":"NJ"},"arcs":[[-6747,6750,-6716,6751,6752]]},{"type":"Polygon","properties":{"name":"EGG HARBOR TOWNSHIP","zip":"08234","state":"NJ"},"arcs":[[6753,6754,6755,6756,-6738,-6726,-6717,-6751,-6746,-6740]]},{"type":"Polygon","properties":{"name":"PORT REPUBLIC","zip":"08241","state":"NJ"},"arcs":[[-6680,6757,-6728,-6737]]},{"type":"Polygon","properties":{"name":"RIO GRANDE","zip":"08242","state":"NJ"},"arcs":[[-6735,6758,-6724]]},{"type":"Polygon","properties":{"name":"SEA ISLE CITY","zip":"08243","state":"NJ"},"arcs":[[6759]]},{"type":"Polygon","properties":{"name":"SOMERS POINT","zip":"08244","state":"NJ"},"arcs":[[-6754,-6739,6760]]},{"type":"Polygon","properties":{"name":"STONE HARBOR","zip":"08247","state":"NJ"},"arcs":[[-6720,6761]]},{"type":"Polygon","properties":{"name":"VILLAS","zip":"08251","state":"NJ"},"arcs":[[-6730,-6722,6762]]},{"type":"Polygon","properties":{"name":"WOODBINE","zip":"08270","state":"NJ"},"arcs":[[6763,6764,6765,-6756,6766,-6744,-6749,-6732,6767]]},{"type":"Polygon","properties":{"name":"BRIDGETON","zip":"08302","state":"NJ"},"arcs":[[6768,6769,6770,-6661,6771,-6664,-6695,6772]]},{"type":"Polygon","properties":{"name":"BUENA","zip":"08310","state":"NJ"},"arcs":[[6773,6774,6775,6776,6777,6778,-6690,6779]]},{"type":"Polygon","properties":{"name":"CEDARVILLE","zip":"08311","state":"NJ"},"arcs":[[-6770,6780,6781,6782]]},{"type":"Polygon","properties":{"name":"CLAYTON","zip":"08312","state":"NJ"},"arcs":[[6783,6784,-6558,-6693]]},{"type":"Polygon","properties":{"name":"DOROTHY","zip":"08317","state":"NJ"},"arcs":[[6785,6786,6787,6788]]},{"type":"Polygon","properties":{"name":"ELMER","zip":"08318","state":"NJ"},"arcs":[[-6694,6789,6790,6791,6792,-6773]]},{"type":"Polygon","properties":{"name":"ESTELL MANOR","zip":"08319","state":"NJ"},"arcs":[[6793,-6786,6794,-6765]]},{"type":"Polygon","properties":{"name":"FRANKLINVILLE","zip":"08322","state":"NJ"},"arcs":[[6795,-6784,-6692,6796]]},{"type":"Polygon","properties":{"name":"GREENWICH","zip":"08323","state":"NJ"},"arcs":[[-6660,-6772]]},{"type":"Polygon","properties":{"name":"LANDISVILLE","zip":"08326","state":"NJ"},"arcs":[[6797,6798,6799,-6778]]},{"type":"Polygon","properties":{"name":"LEESBURG","zip":"08327","state":"NJ"},"arcs":[[6800,6801]]},{"type":"Polygon","properties":{"name":"MAYS LANDING","zip":"08330","state":"NJ"},"arcs":[[-6766,-6795,-6789,6802,6803,-6774,6804,-6688,-6586,-6736,-6757]]},{"type":"Polygon","properties":{"name":"MILLVILLE","zip":"08332","state":"NJ"},"arcs":[[6805,6806,-6781,-6769,-6793,6807,6808,6809,-6787,-6794,-6764,6810,6811,-6802]]},{"type":"Polygon","properties":{"name":"MILMAY","zip":"08340","state":"NJ"},"arcs":[[6812,6813,6814,-6803,-6788,-6810]]},{"type":"Polygon","properties":{"name":"MINOTOLA","zip":"08341","state":"NJ"},"arcs":[[6815,-6798,-6777]]},{"type":"Polygon","properties":{"name":"MONROEVILLE","zip":"08343","state":"NJ"},"arcs":[[6816,-6790,-6696,-6632,-6559,-6785,-6796]]},{"type":"Polygon","properties":{"name":"NEWFIELD","zip":"08344","state":"NJ"},"arcs":[[6817,-6791,-6817,-6797,-6691,-6779,-6800]]},{"type":"Polygon","properties":{"name":"NEWPORT","zip":"08345","state":"NJ"},"arcs":[[6818,6819,-6782,-6807]]},{"type":"Polygon","properties":{"name":"NEWTONVILLE","zip":"08346","state":"NJ"},"arcs":[[-6780,-6689,-6805]]},{"type":"Polygon","properties":{"name":"PORT NORRIS","zip":"08349","state":"NJ"},"arcs":[[-6819,-6806,-6801,-6812,6820]]},{"type":"Polygon","properties":{"name":"RICHLAND","zip":"08350","state":"NJ"},"arcs":[[-6815,6821,-6775,-6804]]},{"type":"Polygon","properties":{"name":"VINELAND","zip":"08360","state":"NJ"},"arcs":[[-6818,-6799,-6816,-6776,-6822,-6814,6822,-6808,-6792]]},{"type":"Polygon","properties":{"name":"VINELAND","zip":"08361","state":"NJ"},"arcs":[[-6823,-6813,-6809]]},{"type":"MultiPolygon","properties":{"name":"ATLANTIC CITY","zip":"08401","state":"NJ"},"arcs":[[[-6752,-6715,6823]],[[6824,6825]]]},{"type":"Polygon","properties":{"name":"MARGATE CITY","zip":"08402","state":"NJ"},"arcs":[[6826,6827]]},{"type":"Polygon","properties":{"name":"VENTNOR CITY","zip":"08406","state":"NJ"},"arcs":[[-6827,6828,-6825,6829]]},{"type":"Polygon","properties":{"name":"ALLENTOWN","zip":"08501","state":"NJ"},"arcs":[[6830,6831,6832,6833]]},{"type":"Polygon","properties":{"name":"BELLE MEAD","zip":"08502","state":"NJ"},"arcs":[[6834,6835,6836,6837]]},{"type":"Polygon","properties":{"name":"BORDENTOWN","zip":"08505","state":"NJ"},"arcs":[[6838,6839,6840,6841,-6547,-6627,-6528]]},{"type":"Polygon","properties":{"name":"CLARKSBURG","zip":"08510","state":"NJ"},"arcs":[[6842,6843,6844,6845,6846,-6253,-6257]]},{"type":"Polygon","properties":{"name":"COOKSTOWN","zip":"08511","state":"NJ"},"arcs":[[6847,-6526,6848,6849,6850,6851]]},{"type":"Polygon","properties":{"name":"CRANBURY","zip":"08512","state":"NJ"},"arcs":[[6852,6853,6854,6855,6856,-6247,6857]]},{"type":"Polygon","properties":{"name":"CREAM RIDGE","zip":"08514","state":"NJ"},"arcs":[[6858,-6844,6859,6860,6861,-6833]]},{"type":"Polygon","properties":{"name":"FLORENCE","zip":"08518","state":"NJ"},"arcs":[[6862,-6532,6863]]},{"type":"Polygon","properties":{"name":"HIGHTSTOWN","zip":"08520","state":"NJ"},"arcs":[[6864,-6846,6865,6866,-6858,-6246]]},{"type":"Polygon","properties":{"name":"HOPEWELL","zip":"08525","state":"NJ"},"arcs":[[6867,6868,6869,6870,6871]]},{"type":"Polygon","properties":{"name":"JACKSON","zip":"08527","state":"NJ"},"arcs":[[6872,-6860,-6843,-6260,-6265,6873,6874,6875,6876]]},{"type":"Polygon","properties":{"name":"LAMBERTVILLE","zip":"08530","state":"NJ"},"arcs":[[6877,6878,6879,6880,6881,6882,-6868]]},{"type":"Polygon","properties":{"name":"NEW EGYPT","zip":"08533","state":"NJ"},"arcs":[[6883,-6852,6884,-6861,-6873]]},{"type":"Polygon","properties":{"name":"PENNINGTON","zip":"08534","state":"NJ"},"arcs":[[6885,6886,-6878,-6872,6887,6888,6889]]},{"type":"Polygon","properties":{"name":"PERRINEVILLE","zip":"08535","state":"NJ"},"arcs":[[-6865,-6245,-6847]]},{"type":"Polygon","properties":{"name":"PLAINSBORO","zip":"08536","state":"NJ"},"arcs":[[6890,6891,6892,-6854]]},{"type":"Polygon","properties":{"name":"PRINCETON","zip":"08540","state":"NJ"},"arcs":[[-6892,6893,6894,-6888,-6871,6895,-6835,6896,6897,6898,6899,6900]]},{"type":"Polygon","properties":{"name":"PRINCETON JUNCTION","zip":"08550","state":"NJ"},"arcs":[[6901,6902,6903,-6894,-6891,-6853,-6867]]},{"type":"Polygon","properties":{"name":"RINGOES","zip":"08551","state":"NJ"},"arcs":[[6904,6905,6906,6907,-6869,-6883]]},{"type":"Polygon","properties":{"name":"ROEBLING","zip":"08554","state":"NJ"},"arcs":[[-6839,-6533,-6863,6908]]},{"type":"Polygon","properties":{"name":"SKILLMAN","zip":"08558","state":"NJ"},"arcs":[[-6870,-6908,6909,-6836,-6896]]},{"type":"Polygon","properties":{"name":"STOCKTON","zip":"08559","state":"NJ"},"arcs":[[-6882,6910,6911,6912,6913,6914,-6905]]},{"type":"Polygon","properties":{"name":"TITUSVILLE","zip":"08560","state":"NJ"},"arcs":[[6915,-6879,-6887,6916]]},{"type":"Polygon","properties":{"name":"WRIGHTSTOWN","zip":"08562","state":"NJ"},"arcs":[[6917,6918,-6587,-6548,6919,-6834,-6862,-6885,-6851]]},{"type":"Polygon","properties":{"name":"TRENTON","zip":"08608","state":"NJ"},"arcs":[[6920,6921,6922,6923]]},{"type":"Polygon","properties":{"name":"TRENTON","zip":"08609","state":"NJ"},"arcs":[[6924,6925,6926,6927,6928,-6922]]},{"type":"Polygon","properties":{"name":"TRENTON","zip":"08610","state":"NJ"},"arcs":[[6929,6930,6931,6932,6933,6934,-6841,6935]]},{"type":"Polygon","properties":{"name":"TRENTON","zip":"08611","state":"NJ"},"arcs":[[-6923,-6929,6936,-6930,6937]]},{"type":"Polygon","properties":{"name":"TRENTON","zip":"08618","state":"NJ"},"arcs":[[6938,6939,-6925,-6921,6940]]},{"type":"Polygon","properties":{"name":"TRENTON","zip":"08619","state":"NJ"},"arcs":[[6941,-6927,6942,6943,6944,-6932]]},{"type":"Polygon","properties":{"name":"TRENTON","zip":"08620","state":"NJ"},"arcs":[[-6935,6945,-6831,-6920,-6842]]},{"type":"Polygon","properties":{"name":"TRENTON","zip":"08628","state":"NJ"},"arcs":[[6946,6947,-6917,-6886,6948,-6939,6949]]},{"type":"Polygon","properties":{"name":"TRENTON","zip":"08629","state":"NJ"},"arcs":[[-6937,-6928,-6942,-6931]]},{"type":"Polygon","properties":{"name":"TRENTON","zip":"08638","state":"NJ"},"arcs":[[-6926,-6940,-6949,-6890,6950,-6943]]},{"type":"Polygon","properties":{"name":"TRENTON","zip":"08640","state":"NJ"},"arcs":[[-6525,-6647,-6588,-6919,6951,-6849]]},{"type":"Polygon","properties":{"name":"TRENTON","zip":"08641","state":"NJ"},"arcs":[[-6918,-6850,-6952]]},{"type":"Polygon","properties":{"name":"TRENTON","zip":"08648","state":"NJ"},"arcs":[[6952,-6944,-6951,-6889,-6895,-6904]]},{"type":"Polygon","properties":{"name":"TRENTON","zip":"08690","state":"NJ"},"arcs":[[6953,-6933,-6945,-6953,-6903]]},{"type":"Polygon","properties":{"name":"TRENTON","zip":"08691","state":"NJ"},"arcs":[[-6832,-6946,-6934,-6954,-6902,-6866,-6845,-6859]]},{"type":"Polygon","properties":{"name":"LAKEWOOD","zip":"08701","state":"NJ"},"arcs":[[6954,-6874,-6268,6955,6956,6957]]},{"type":"Polygon","properties":{"name":"BAYVILLE","zip":"08721","state":"NJ"},"arcs":[[6958,6959,6960,6961,6962,6963,6964]]},{"type":"Polygon","properties":{"name":"BEACHWOOD","zip":"08722","state":"NJ"},"arcs":[[6965,6966,6967,-6962]]},{"type":"Polygon","properties":{"name":"BRICK","zip":"08723","state":"NJ"},"arcs":[[6968,-6957,6969,6970]]},{"type":"Polygon","properties":{"name":"BRICK","zip":"08724","state":"NJ"},"arcs":[[-6956,-6267,6971,6972,6973,-6970]]},{"type":"Polygon","properties":{"name":"FORKED RIVER","zip":"08731","state":"NJ"},"arcs":[[6974,-6959,6975,6976,6977,-6493]]},{"type":"Polygon","properties":{"name":"LAKEHURST","zip":"08733","state":"NJ"},"arcs":[[6978,-6527,-6848,-6884,-6877]]},{"type":"Polygon","properties":{"name":"LANOKA HARBOR","zip":"08734","state":"NJ"},"arcs":[[-6965,6979,-6976]]},{"type":"Polygon","properties":{"name":"LAVALLETTE","zip":"08735","state":"NJ"},"arcs":[[6980,6981,6982,6983]]},{"type":"Polygon","properties":{"name":"MANASQUAN","zip":"08736","state":"NJ"},"arcs":[[6984,-6972,-6266,-6222,6985,6986]]},{"type":"Polygon","properties":{"name":"MANTOLOKING","zip":"08738","state":"NJ"},"arcs":[[-6983,6987,6988,6989]]},{"type":"Polygon","properties":{"name":"PINE BEACH","zip":"08741","state":"NJ"},"arcs":[[-6968,6990,-6963]]},{"type":"Polygon","properties":{"name":"POINT PLEASANT BEACH","zip":"08742","state":"NJ"},"arcs":[[-6973,-6985,6991,-6989,6992]]},{"type":"Polygon","properties":{"name":"SEA GIRT","zip":"08750","state":"NJ"},"arcs":[[-6986,-6221,-6310,6993]]},{"type":"Polygon","properties":{"name":"SEASIDE HEIGHTS","zip":"08751","state":"NJ"},"arcs":[[6994,6995,-6981,6996,6997,6998]]},{"type":"Polygon","properties":{"name":"SEASIDE PARK","zip":"08752","state":"NJ"},"arcs":[[-6998,6999]]},{"type":"Polygon","properties":{"name":"TOMS RIVER","zip":"08753","state":"NJ"},"arcs":[[-6995,7000,7001,7002,-6958,-6969,7003]]},{"type":"Polygon","properties":{"name":"TOMS RIVER","zip":"08755","state":"NJ"},"arcs":[[7004,-6875,-6955,-7003,7005]]},{"type":"Polygon","properties":{"name":"TOMS RIVER","zip":"08757","state":"NJ"},"arcs":[[-6966,-6961,7006,-7006,-7002,7007]]},{"type":"Polygon","properties":{"name":"WARETOWN","zip":"08758","state":"NJ"},"arcs":[[-6978,7008,-6494]]},{"type":"Polygon","properties":{"name":"MANCHESTER TOWNSHIP","zip":"08759","state":"NJ"},"arcs":[[-6975,-6492,-6683,-6522,-6979,-6876,-7005,-7007,-6960]]},{"type":"Polygon","properties":{"name":"ANNANDALE","zip":"08801","state":"NJ"},"arcs":[[7009,7010,7011,7012,-6356,7013,7014]]},{"type":"Polygon","properties":{"name":"ASBURY","zip":"08802","state":"NJ"},"arcs":[[7015,7016,7017,-6424,7018,7019]]},{"type":"Polygon","properties":{"name":"BLOOMSBURY","zip":"08804","state":"NJ"},"arcs":[[7020,7021,-7017,7022]]},{"type":"Polygon","properties":{"name":"BOUND BROOK","zip":"08805","state":"NJ"},"arcs":[[7023,7024,7025,7026,7027,7028,7029]]},{"type":"Polygon","properties":{"name":"BRIDGEWATER","zip":"08807","state":"NJ"},"arcs":[[7030,-6434,-6433,7031,-7024,7032,7033,7034,7035,7036]]},{"type":"Polygon","properties":{"name":"CLINTON","zip":"08809","state":"NJ"},"arcs":[[7037,7038,7039,7040,-7011]]},{"type":"Polygon","properties":{"name":"DAYTON","zip":"08810","state":"NJ"},"arcs":[[7041,-6856,7042,7043]]},{"type":"Polygon","properties":{"name":"DUNELLEN","zip":"08812","state":"NJ"},"arcs":[[7044,-7026,-5777,-5804,-5781,-5788,7045]]},{"type":"Polygon","properties":{"name":"EAST BRUNSWICK","zip":"08816","state":"NJ"},"arcs":[[7046,7047,7048,7049,7050,7051,7052,7053,7054]]},{"type":"Polygon","properties":{"name":"EDISON","zip":"08817","state":"NJ"},"arcs":[[7055,-7049,7056,7057,7058,-5835,7059,7060]]},{"type":"Polygon","properties":{"name":"EDISON","zip":"08820","state":"NJ"},"arcs":[[7061,-7060,-5837,-5826,-5796,-5800,7062,7063]]},{"type":"Polygon","properties":{"name":"FLEMINGTON","zip":"08822","state":"NJ"},"arcs":[[7064,7065,-7015,7066,7067,7068,-6906,-6915]]},{"type":"Polygon","properties":{"name":"FRANKLIN PARK","zip":"08823","state":"NJ"},"arcs":[[7069,-6899,7070,7071]]},{"type":"Polygon","properties":{"name":"KENDALL PARK","zip":"08824","state":"NJ"},"arcs":[[-7070,7072,7073,-6900]]},{"type":"Polygon","properties":{"name":"FRENCHTOWN","zip":"08825","state":"NJ"},"arcs":[[-6914,7074,7075,7076,-7065]]},{"type":"Polygon","properties":{"name":"GLEN GARDNER","zip":"08826","state":"NJ"},"arcs":[[7077,-6422,-6412,-6357,-7013,7078,-7040]]},{"type":"Polygon","properties":{"name":"HAMPTON","zip":"08827","state":"NJ"},"arcs":[[-6423,-7078,-7039,7079,-7019]]},{"type":"Polygon","properties":{"name":"HELMETTA","zip":"08828","state":"NJ"},"arcs":[[7080,-7054,7081]]},{"type":"Polygon","properties":{"name":"HIGH BRIDGE","zip":"08829","state":"NJ"},"arcs":[[-7041,-7079,-7012]]},{"type":"Polygon","properties":{"name":"ISELIN","zip":"08830","state":"NJ"},"arcs":[[7082,-7063,-5799,-5575,-5861,7083]]},{"type":"Polygon","properties":{"name":"MONROE TOWNSHIP","zip":"08831","state":"NJ"},"arcs":[[7084,-6248,-6857,-7042,7085,-7055,-7081,7086]]},{"type":"Polygon","properties":{"name":"KEASBEY","zip":"08832","state":"NJ"},"arcs":[[7087,7088,7089,7090,7091]]},{"type":"Polygon","properties":{"name":"LEBANON","zip":"08833","state":"NJ"},"arcs":[[7092,-7067,-7014,-6355]]},{"type":"Polygon","properties":{"name":"MANVILLE","zip":"08835","state":"NJ"},"arcs":[[7093,7094,-7033,-7030]]},{"type":"Polygon","properties":{"name":"MARTINSVILLE","zip":"08836","state":"NJ"},"arcs":[[-7032,-5770,-7025]]},{"type":"Polygon","properties":{"name":"EDISON","zip":"08837","state":"NJ"},"arcs":[[7095,-7064,-7083,7096,7097,-7089,7098,-7050,-7056]]},{"type":"MultiPolygon","properties":{"name":"METUCHEN","zip":"08840","state":"NJ"},"arcs":[[[7099,-7097,-7084]],[[-7061,-7062,-7096]]]},{"type":"Polygon","properties":{"name":"HILLSBOROUGH","zip":"08844","state":"NJ"},"arcs":[[7100,-6897,-6838,7101,7102,-7037,7103,7104,-7034,-7095]]},{"type":"Polygon","properties":{"name":"MIDDLESEX","zip":"08846","state":"NJ"},"arcs":[[7105,7106,-7027,-7045]]},{"type":"Polygon","properties":{"name":"MILFORD","zip":"08848","state":"NJ"},"arcs":[[7107,-7076,7108,7109,7110,7111,7112,-7023,-7016]]},{"type":"Polygon","properties":{"name":"MONMOUTH JUNCTION","zip":"08852","state":"NJ"},"arcs":[[-7074,7113,-7043,-6855,-6893,-6901]]},{"type":"Polygon","properties":{"name":"NESHANIC STATION","zip":"08853","state":"NJ"},"arcs":[[-6910,-6907,-7069,7114,-7102,-6837]]},{"type":"Polygon","properties":{"name":"PISCATAWAY","zip":"08854","state":"NJ"},"arcs":[[7115,7116,-7106,-7046,-5787,-5836,-7059,7117,7118]]},{"type":"Polygon","properties":{"name":"OLD BRIDGE","zip":"08857","state":"NJ"},"arcs":[[-6249,-7085,7119,-7052,7120,7121,7122,-6294,-6301]]},{"type":"Polygon","properties":{"name":"PARLIN","zip":"08859","state":"NJ"},"arcs":[[7123,7124,-7122]]},{"type":"Polygon","properties":{"name":"PERTH AMBOY","zip":"08861","state":"NJ"},"arcs":[[7125,-5859,-5828,7126,7127,-7091]]},{"type":"Polygon","properties":{"name":"FORDS","zip":"08863","state":"NJ"},"arcs":[[-7090,-7098,-7100,-5860,-7126]]},{"type":"Polygon","properties":{"name":"PHILLIPSBURG","zip":"08865","state":"NJ"},"arcs":[[-7113,7128,7129,7130,7131,-6339,-6421,7132,-7021]]},{"type":"Polygon","properties":{"name":"PITTSTOWN","zip":"08867","state":"NJ"},"arcs":[[-7020,-7080,-7038,-7010,-7066,-7077,-7108]]},{"type":"Polygon","properties":{"name":"RARITAN","zip":"08869","state":"NJ"},"arcs":[[7133,-7104,-7036]]},{"type":"Polygon","properties":{"name":"SAYREVILLE","zip":"08872","state":"NJ"},"arcs":[[-7099,-7088,7134,-7124,-7121,-7051]]},{"type":"Polygon","properties":{"name":"SOMERSET","zip":"08873","state":"NJ"},"arcs":[[-7101,-7094,-7029,7135,-7116,7136,7137,-7071,-6898]]},{"type":"MultiPolygon","properties":{"name":"SOMERVILLE","zip":"08876","state":"NJ"},"arcs":[[[7138,-6435,-7031,-7103,-7115]],[[-7035,-7105,-7134]]]},{"type":"Polygon","properties":{"name":"SOUTH AMBOY","zip":"08879","state":"NJ"},"arcs":[[-6295,-7123,-7125,-7135,-7092,-7128,7139,-6279,-6227]]},{"type":"Polygon","properties":{"name":"SOUTH BOUND BROOK","zip":"08880","state":"NJ"},"arcs":[[-7136,-7028,-7107,-7117]]},{"type":"Polygon","properties":{"name":"SPOTSWOOD","zip":"08884","state":"NJ"},"arcs":[[-7087,-7082,-7053,-7120]]},{"type":"Polygon","properties":{"name":"STEWARTSVILLE","zip":"08886","state":"NJ"},"arcs":[[-7133,-6420,-7018,-7022]]},{"type":"Polygon","properties":{"name":"WHITEHOUSE STATION","zip":"08889","state":"NJ"},"arcs":[[-6361,-6454,-6436,-7139,-7068,-7093]]},{"type":"Polygon","properties":{"name":"NEW BRUNSWICK","zip":"08901","state":"NJ"},"arcs":[[7140,-7137,-7119,7141,-7057,-7048]]},{"type":"Polygon","properties":{"name":"NORTH BRUNSWICK","zip":"08902","state":"NJ"},"arcs":[[-7073,-7072,-7138,-7141,-7047,-7086,-7044,-7114]]},{"type":"Polygon","properties":{"name":"HIGHLAND PARK","zip":"08904","state":"NJ"},"arcs":[[-7118,-7058,-7142]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10001","state":"NY"},"arcs":[[7142,7143,7144,7145,7146]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10002","state":"NY"},"arcs":[[7147,7148,7149,7150,7151,7152,7153]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10003","state":"NY"},"arcs":[[7154,-7150,7155,7156,7157]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10004","state":"NY"},"arcs":[[7158,7159,7160,7161]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10005","state":"NY"},"arcs":[[7162,7163,-7159]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10006","state":"NY"},"arcs":[[-7162,7164,-7163]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10007","state":"NY"},"arcs":[[7165,7166,7167,7168]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10009","state":"NY"},"arcs":[[-7155,7169,-7151]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10010","state":"NY"},"arcs":[[7170,-7147,7171,7172,-7152,-7170,-7158]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10011","state":"NY"},"arcs":[[7173,7174,-7143,-7171,-7157,7175]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10012","state":"NY"},"arcs":[[7176,7177,-7176,-7156,-7149]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10013","state":"NY"},"arcs":[[-7169,7178,7179,-7177,-7148]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10014","state":"NY"},"arcs":[[-7174,-7178,-7180,7180]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10016","state":"NY"},"arcs":[[-7172,-7146,7181,7182,7183]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10017","state":"NY"},"arcs":[[7184,7185,7186,7187,7188,-7183]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10018","state":"NY"},"arcs":[[-7182,-7145,7189,7190,-7185]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10019","state":"NY"},"arcs":[[7191,7192,7193,7194,7195,-520]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10020","state":"NY"},"arcs":[[7196,-7193,-7187]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10021","state":"NY"},"arcs":[[7197,-519,7198,7199]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10022","state":"NY"},"arcs":[[-7192,-7198,7200,-7188]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10023","state":"NY"},"arcs":[[-7196,7201,7202,-512]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10024","state":"NY"},"arcs":[[-7203,7203,7204,7205,-513]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10025","state":"NY"},"arcs":[[-7206,7206,7207,-514]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10026","state":"NY"},"arcs":[[7208,-515,-7208,7209,7210]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10027","state":"NY"},"arcs":[[-7205,7211,7212,7213,7214,7215,-7210,-7207]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10028","state":"NY"},"arcs":[[-7199,-518,7216,7217]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10029","state":"NY"},"arcs":[[7218,-516,-7209,7219,7220]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10030","state":"NY"},"arcs":[[7221,-7214,7222,7223]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10031","state":"NY"},"arcs":[[-7213,7224,7225,7226,-7223]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10032","state":"NY"},"arcs":[[7227,7228,7229,-7226,7230]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10033","state":"NY"},"arcs":[[-7228,7231,7232,7233,7234]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10034","state":"NY"},"arcs":[[7235,-7233,7236]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10035","state":"NY"},"arcs":[[-7220,-7211,-7216,7237,7238]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10036","state":"NY"},"arcs":[[-7191,-7194,-7197,-7186]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10037","state":"NY"},"arcs":[[-7238,-7215,-7222,7239,7240]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10038","state":"NY"},"arcs":[[-7166,-7154,7241,-7164]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10039","state":"NY"},"arcs":[[-7240,-7224,-7227,-7230,7242]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10040","state":"NY"},"arcs":[[-7236,7243,-7234]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10128","state":"NY"},"arcs":[[-7217,-517,-7219,7244]]},{"type":"Polygon","properties":{"name":"NEW YORK","zip":"10280","state":"NY"},"arcs":[[-7167,-7165,-7161,7245]]},{"type":"Polygon","properties":{"name":"STATEN ISLAND","zip":"10301","state":"NY"},"arcs":[[7246,7247,7248,7249]]},{"type":"Polygon","properties":{"name":"STATEN ISLAND","zip":"10302","state":"NY"},"arcs":[[7250,7251,7252,7253]]},{"type":"Polygon","properties":{"name":"STATEN ISLAND","zip":"10303","state":"NY"},"arcs":[[7254,7255,-7253]]},{"type":"Polygon","properties":{"name":"STATEN ISLAND","zip":"10304","state":"NY"},"arcs":[[7256,-7247,7257,7258,7259]]},{"type":"Polygon","properties":{"name":"STATEN ISLAND","zip":"10305","state":"NY"},"arcs":[[7260,-7259,7261]]},{"type":"Polygon","properties":{"name":"STATEN ISLAND","zip":"10306","state":"NY"},"arcs":[[7262,7263,-7260,-7261,7264]]},{"type":"Polygon","properties":{"name":"STATEN ISLAND","zip":"10308","state":"NY"},"arcs":[[7265,7266,-7263,7267]]},{"type":"Polygon","properties":{"name":"STATEN ISLAND","zip":"10309","state":"NY"},"arcs":[[7268,7269,7270]]},{"type":"Polygon","properties":{"name":"STATEN ISLAND","zip":"10310","state":"NY"},"arcs":[[7271,-7251,7272,-7249]]},{"type":"Polygon","properties":{"name":"STATEN ISLAND","zip":"10312","state":"NY"},"arcs":[[-7270,7273,-7266,7274]]},{"type":"Polygon","properties":{"name":"STATEN ISLAND","zip":"10314","state":"NY"},"arcs":[[-7274,-7269,7275,-7255,-7252,-7272,-7248,-7257,-7264,-7267]]},{"type":"Polygon","properties":{"name":"BRONX","zip":"10451","state":"NY"},"arcs":[[7276,7277,7278,7279,7280]]},{"type":"Polygon","properties":{"name":"BRONX","zip":"10452","state":"NY"},"arcs":[[7281,7282,7283,-7279,7284]]},{"type":"Polygon","properties":{"name":"BRONX","zip":"10453","state":"NY"},"arcs":[[7285,-7282,7286,7287]]},{"type":"Polygon","properties":{"name":"BRONX","zip":"10454","state":"NY"},"arcs":[[-7277,7288,7289]]},{"type":"Polygon","properties":{"name":"BRONX","zip":"10455","state":"NY"},"arcs":[[7290,-7289,-7281,7291,7292]]},{"type":"Polygon","properties":{"name":"BRONX","zip":"10456","state":"NY"},"arcs":[[-7284,7293,7294,7295,-7292,-7280]]},{"type":"Polygon","properties":{"name":"BRONX","zip":"10457","state":"NY"},"arcs":[[7296,-7294,-7283,-7286,7297]]},{"type":"Polygon","properties":{"name":"BRONX","zip":"10458","state":"NY"},"arcs":[[7298,-7298,7299,7300,7301]]},{"type":"Polygon","properties":{"name":"BRONX","zip":"10459","state":"NY"},"arcs":[[7302,-7293,-7296,7303,7304]]},{"type":"Polygon","properties":{"name":"BRONX","zip":"10460","state":"NY"},"arcs":[[7305,-7304,-7295,-7297,-7299,7306]]},{"type":"Polygon","properties":{"name":"BRONX","zip":"10461","state":"NY"},"arcs":[[7307,7308,7309]]},{"type":"Polygon","properties":{"name":"BRONX","zip":"10462","state":"NY"},"arcs":[[7310,7311,7312,-7307,-7302,7313,-7309]]},{"type":"Polygon","properties":{"name":"BRONX","zip":"10463","state":"NY"},"arcs":[[7314,7315,7316,7317]]},{"type":"Polygon","properties":{"name":"BRONX","zip":"10464","state":"NY"},"arcs":[[7318,7319,7320]]},{"type":"Polygon","properties":{"name":"BRONX","zip":"10465","state":"NY"},"arcs":[[-7308,7321,7322,-7311]]},{"type":"Polygon","properties":{"name":"BRONX","zip":"10466","state":"NY"},"arcs":[[7323,7324,7325,7326,7327]]},{"type":"Polygon","properties":{"name":"BRONX","zip":"10467","state":"NY"},"arcs":[[7328,-7316,7329,7330,-7326,7331,-7314,-7301]]},{"type":"Polygon","properties":{"name":"BRONX","zip":"10468","state":"NY"},"arcs":[[-7288,7332,-7317,-7329,-7300]]},{"type":"Polygon","properties":{"name":"BRONX","zip":"10469","state":"NY"},"arcs":[[7333,-7310,-7332,-7325]]},{"type":"Polygon","properties":{"name":"BRONX","zip":"10470","state":"NY"},"arcs":[[-7331,7334,7335,7336,-7327]]},{"type":"Polygon","properties":{"name":"BRONX","zip":"10471","state":"NY"},"arcs":[[7337,-7335,-7330,-7315,7338]]},{"type":"Polygon","properties":{"name":"BRONX","zip":"10472","state":"NY"},"arcs":[[7339,-7305,-7306,-7313]]},{"type":"Polygon","properties":{"name":"BRONX","zip":"10473","state":"NY"},"arcs":[[-7340,-7312,7340]]},{"type":"Polygon","properties":{"name":"BRONX","zip":"10474","state":"NY"},"arcs":[[-7303,7341,-7291]]},{"type":"Polygon","properties":{"name":"BRONX","zip":"10475","state":"NY"},"arcs":[[-7322,-7334,-7324,7342,-7319,7343]]},{"type":"Polygon","properties":{"name":"AMAWALK","zip":"10501","state":"NY"},"arcs":[[7344,7345,7346]]},{"type":"Polygon","properties":{"name":"ARDSLEY","zip":"10502","state":"NY"},"arcs":[[7347,7348,7349,7350,7351,7352]]},{"type":"Polygon","properties":{"name":"ARMONK","zip":"10504","state":"NY"},"arcs":[[7353,7354,7355,7356,7357,-5527,7358,7359]]},{"type":"Polygon","properties":{"name":"BEDFORD","zip":"10506","state":"NY"},"arcs":[[7360,-5568,-5528,-7358,7361,7362,7363]]},{"type":"Polygon","properties":{"name":"BEDFORD HILLS","zip":"10507","state":"NY"},"arcs":[[7364,7365,-7363]]},{"type":"Polygon","properties":{"name":"BREWSTER","zip":"10509","state":"NY"},"arcs":[[7366,7367,7368,-5509,-5507,-5505,-5554]]},{"type":"Polygon","properties":{"name":"BRIARCLIFF MANOR","zip":"10510","state":"NY"},"arcs":[[7369,7370,7371,7372,7373]]},{"type":"Polygon","properties":{"name":"BUCHANAN","zip":"10511","state":"NY"},"arcs":[[7374,7375,7376,7377]]},{"type":"Polygon","properties":{"name":"CARMEL","zip":"10512","state":"NY"},"arcs":[[7378,7379,7380,7381,7382,7383,7384,-7368]]},{"type":"Polygon","properties":{"name":"CHAPPAQUA","zip":"10514","state":"NY"},"arcs":[[7385,7386,-7356,7387,-7374]]},{"type":"Polygon","properties":{"name":"COLD SPRING","zip":"10516","state":"NY"},"arcs":[[7388,7389,7390,7391,7392,7393]]},{"type":"Polygon","properties":{"name":"CROSS RIVER","zip":"10518","state":"NY"},"arcs":[[7394,7395,7396,7397]]},{"type":"Polygon","properties":{"name":"CROTON ON HUDSON","zip":"10520","state":"NY"},"arcs":[[7398,7399,7400,7401,7402]]},{"type":"Polygon","properties":{"name":"DOBBS FERRY","zip":"10522","state":"NY"},"arcs":[[7403,7404,7405,-7348]]},{"type":"Polygon","properties":{"name":"ELMSFORD","zip":"10523","state":"NY"},"arcs":[[7406,7407,7408,7409,7410,7411]]},{"type":"Polygon","properties":{"name":"GARRISON","zip":"10524","state":"NY"},"arcs":[[7412,7413,-7390,7414,7415]]},{"type":"Polygon","properties":{"name":"GOLDENS BRIDGE","zip":"10526","state":"NY"},"arcs":[[7416,7417,7418,7419]]},{"type":"Polygon","properties":{"name":"GRANITE SPRINGS","zip":"10527","state":"NY"},"arcs":[[7420,-7347]]},{"type":"Polygon","properties":{"name":"HARRISON","zip":"10528","state":"NY"},"arcs":[[7421,7422,7423]]},{"type":"Polygon","properties":{"name":"HARTSDALE","zip":"10530","state":"NY"},"arcs":[[7424,7425,7426,-7351]]},{"type":"Polygon","properties":{"name":"HAWTHORNE","zip":"10532","state":"NY"},"arcs":[[7427,-7411,7428,7429]]},{"type":"Polygon","properties":{"name":"IRVINGTON","zip":"10533","state":"NY"},"arcs":[[-7406,7430,7431,-7409,7432,-7349]]},{"type":"Polygon","properties":{"name":"JEFFERSON VALLEY","zip":"10535","state":"NY"},"arcs":[[7433,7434,7435]]},{"type":"Polygon","properties":{"name":"KATONAH","zip":"10536","state":"NY"},"arcs":[[7436,-7345,7437,7438,7439,7440,-7418,7441,-7396,7442,-7364,-7366,7443]]},{"type":"Polygon","properties":{"name":"LAKE PEEKSKILL","zip":"10537","state":"NY"},"arcs":[[7444,-7416,7445]]},{"type":"Polygon","properties":{"name":"LARCHMONT","zip":"10538","state":"NY"},"arcs":[[7446,7447,7448,7449,7450]]},{"type":"Polygon","properties":{"name":"MAHOPAC","zip":"10541","state":"NY"},"arcs":[[7451,-7439,7452,-7436,7453,7454,-7380]]},{"type":"Polygon","properties":{"name":"MAMARONECK","zip":"10543","state":"NY"},"arcs":[[7455,-7423,7456,7457,-7450]]},{"type":"Polygon","properties":{"name":"MOHEGAN LAKE","zip":"10547","state":"NY"},"arcs":[[7458,7459,7460,7461]]},{"type":"Polygon","properties":{"name":"MONTROSE","zip":"10548","state":"NY"},"arcs":[[-7376,7462,-7401,7463]]},{"type":"Polygon","properties":{"name":"MOUNT KISCO","zip":"10549","state":"NY"},"arcs":[[-7357,-7387,7464,7465,-7444,-7365,-7362]]},{"type":"Polygon","properties":{"name":"MOUNT VERNON","zip":"10550","state":"NY"},"arcs":[[7466,-7328,-7337,7467,7468,7469]]},{"type":"Polygon","properties":{"name":"MOUNT VERNON","zip":"10552","state":"NY"},"arcs":[[7470,7471,7472,7473,-7469]]},{"type":"Polygon","properties":{"name":"MOUNT VERNON","zip":"10553","state":"NY"},"arcs":[[-7474,7474,-7470]]},{"type":"Polygon","properties":{"name":"NORTH SALEM","zip":"10560","state":"NY"},"arcs":[[7475,7476,-7367,-5553,7477,7478,-7420]]},{"type":"Polygon","properties":{"name":"OSSINING","zip":"10562","state":"NY"},"arcs":[[-7373,7479,-7399,7480,-7465,-7386]]},{"type":"Polygon","properties":{"name":"PEEKSKILL","zip":"10566","state":"NY"},"arcs":[[7481,-7378,7482]]},{"type":"Polygon","properties":{"name":"CORTLANDT MANOR","zip":"10567","state":"NY"},"arcs":[[-7413,-7445,7483,-7460,7484,-7402,-7463,-7375,-7482,7485]]},{"type":"Polygon","properties":{"name":"PLEASANTVILLE","zip":"10570","state":"NY"},"arcs":[[-7388,-7355,7486,-7429,7487,-7370]]},{"type":"Polygon","properties":{"name":"PORT CHESTER","zip":"10573","state":"NY"},"arcs":[[-5524,-5523,7488,7489,7490]]},{"type":"Polygon","properties":{"name":"POUND RIDGE","zip":"10576","state":"NY"},"arcs":[[-5533,-5569,-7361,-7443,-7395,7491]]},{"type":"Polygon","properties":{"name":"PURCHASE","zip":"10577","state":"NY"},"arcs":[[7492,7493,-5525,-7491]]},{"type":"Polygon","properties":{"name":"PURDYS","zip":"10578","state":"NY"},"arcs":[[7494,-7476,-7419,-7441]]},{"type":"Polygon","properties":{"name":"PUTNAM VALLEY","zip":"10579","state":"NY"},"arcs":[[-7415,-7389,7495,-7381,-7455,7496,-7461,-7484,-7446]]},{"type":"Polygon","properties":{"name":"RYE","zip":"10580","state":"NY"},"arcs":[[7497,7498,-7493,-7490,7499,-7457,-7422]]},{"type":"Polygon","properties":{"name":"SCARSDALE","zip":"10583","state":"NY"},"arcs":[[7500,7501,7502,-7352,-7427,7503,7504,-7456,-7449,7505]]},{"type":"Polygon","properties":{"name":"SHRUB OAK","zip":"10588","state":"NY"},"arcs":[[7506,-7462,-7497,-7454,-7435]]},{"type":"Polygon","properties":{"name":"SOMERS","zip":"10589","state":"NY"},"arcs":[[-7440,-7452,-7379,-7477,-7495]]},{"type":"Polygon","properties":{"name":"SOUTH SALEM","zip":"10590","state":"NY"},"arcs":[[-5552,-5563,-5534,-7492,-7398,7507,-7478]]},{"type":"Polygon","properties":{"name":"TARRYTOWN","zip":"10591","state":"NY"},"arcs":[[-7432,7508,-7371,-7488,-7410]]},{"type":"Polygon","properties":{"name":"THORNWOOD","zip":"10594","state":"NY"},"arcs":[[-7487,7509,-7430]]},{"type":"Polygon","properties":{"name":"VALHALLA","zip":"10595","state":"NY"},"arcs":[[-7428,-7510,-7354,7510,-7412]]},{"type":"Polygon","properties":{"name":"WACCABUC","zip":"10597","state":"NY"},"arcs":[[-7442,-7417,-7479,-7508,-7397]]},{"type":"Polygon","properties":{"name":"YORKTOWN HEIGHTS","zip":"10598","state":"NY"},"arcs":[[-7485,-7459,-7507,-7434,-7453,-7438,-7421,-7346,-7437,-7466,-7481,-7403]]},{"type":"Polygon","properties":{"name":"WHITE PLAINS","zip":"10601","state":"NY"},"arcs":[[7511,7512,7513,7514]]},{"type":"Polygon","properties":{"name":"WHITE PLAINS","zip":"10603","state":"NY"},"arcs":[[7515,-7407,-7511,-7360,7516,-7514]]},{"type":"Polygon","properties":{"name":"WEST HARRISON","zip":"10604","state":"NY"},"arcs":[[7517,-7515,-7517,-7359,-5526,-7494,-7499]]},{"type":"Polygon","properties":{"name":"WHITE PLAINS","zip":"10605","state":"NY"},"arcs":[[7518,-7512,-7518,-7498,-7424,-7505]]},{"type":"Polygon","properties":{"name":"WHITE PLAINS","zip":"10606","state":"NY"},"arcs":[[7519,-7513,-7519,-7504,-7426]]},{"type":"Polygon","properties":{"name":"WHITE PLAINS","zip":"10607","state":"NY"},"arcs":[[-7350,-7433,-7408,-7516,-7520,-7425]]},{"type":"Polygon","properties":{"name":"YONKERS","zip":"10701","state":"NY"},"arcs":[[7520,7521,7522,7523,7524,7525,7526]]},{"type":"Polygon","properties":{"name":"YONKERS","zip":"10703","state":"NY"},"arcs":[[7527,7528,-7525]]},{"type":"Polygon","properties":{"name":"YONKERS","zip":"10704","state":"NY"},"arcs":[[7529,-7521,7530,-7471,-7468,-7336]]},{"type":"Polygon","properties":{"name":"YONKERS","zip":"10705","state":"NY"},"arcs":[[-7338,7531,-7522,-7530]]},{"type":"Polygon","properties":{"name":"HASTINGS ON HUDSON","zip":"10706","state":"NY"},"arcs":[[-7524,7532,-7404,-7353,7533,-7528]]},{"type":"Polygon","properties":{"name":"TUCKAHOE","zip":"10707","state":"NY"},"arcs":[[7534,7535,7536,-7502]]},{"type":"Polygon","properties":{"name":"BRONXVILLE","zip":"10708","state":"NY"},"arcs":[[7537,-7472,-7531,-7527,7538,-7536,7539,7540]]},{"type":"Polygon","properties":{"name":"EASTCHESTER","zip":"10709","state":"NY"},"arcs":[[-7501,7541,-7540,-7535]]},{"type":"Polygon","properties":{"name":"YONKERS","zip":"10710","state":"NY"},"arcs":[[-7539,-7526,-7529,-7534,-7503,-7537]]},{"type":"Polygon","properties":{"name":"NEW ROCHELLE","zip":"10801","state":"NY"},"arcs":[[7542,7543,-7538,7544,-7447,7545]]},{"type":"Polygon","properties":{"name":"PELHAM","zip":"10803","state":"NY"},"arcs":[[7546,7547,-7320,-7343,-7467,-7475,-7473,-7544]]},{"type":"Polygon","properties":{"name":"NEW ROCHELLE","zip":"10804","state":"NY"},"arcs":[[-7542,-7506,-7448,-7545,-7541]]},{"type":"Polygon","properties":{"name":"NEW ROCHELLE","zip":"10805","state":"NY"},"arcs":[[-7543,7548,-7547]]},{"type":"Polygon","properties":{"name":"SUFFERN","zip":"10901","state":"NY"},"arcs":[[7549,7550,7551,7552,7553,-5987]]},{"type":"Polygon","properties":{"name":"BEAR MOUNTAIN","zip":"10911","state":"NY"},"arcs":[[7554,7555,7556]]},{"type":"Polygon","properties":{"name":"BLAUVELT","zip":"10913","state":"NY"},"arcs":[[7557,7558,7559,7560]]},{"type":"Polygon","properties":{"name":"CAMPBELL HALL","zip":"10916","state":"NY"},"arcs":[[7561,7562,7563,7564,7565,7566]]},{"type":"Polygon","properties":{"name":"CENTRAL VALLEY","zip":"10917","state":"NY"},"arcs":[[7567,7568,7569]]},{"type":"Polygon","properties":{"name":"CHESTER","zip":"10918","state":"NY"},"arcs":[[7570,7571,-7563,7572,7573,7574]]},{"type":"Polygon","properties":{"name":"CIRCLEVILLE","zip":"10919","state":"NY"},"arcs":[[7575,7576,7577,7578]]},{"type":"Polygon","properties":{"name":"CONGERS","zip":"10920","state":"NY"},"arcs":[[7579,7580,7581,7582]]},{"type":"Polygon","properties":{"name":"FLORIDA","zip":"10921","state":"NY"},"arcs":[[7583,-7571,7584]]},{"type":"Polygon","properties":{"name":"GARNERVILLE","zip":"10923","state":"NY"},"arcs":[[7585,7586,7587,7588,7589,7590]]},{"type":"Polygon","properties":{"name":"GOSHEN","zip":"10924","state":"NY"},"arcs":[[7591,7592,7593,-7564,-7572,-7584,7594]]},{"type":"Polygon","properties":{"name":"GREENWOOD LAKE","zip":"10925","state":"NY"},"arcs":[[7595,-5967,7596,7597]]},{"type":"Polygon","properties":{"name":"HARRIMAN","zip":"10926","state":"NY"},"arcs":[[7598,7599,-7569,7600]]},{"type":"Polygon","properties":{"name":"HAVERSTRAW","zip":"10927","state":"NY"},"arcs":[[7601,-7586,7602,7603,-7581]]},{"type":"Polygon","properties":{"name":"HIGHLAND FALLS","zip":"10928","state":"NY"},"arcs":[[7604,7605,7606,-7601,-7568,7607,7608,7609,7610,-7556]]},{"type":"Polygon","properties":{"name":"HIGHLAND MILLS","zip":"10930","state":"NY"},"arcs":[[-7570,-7600,7611,7612,7613,7614,-7608]]},{"type":"Polygon","properties":{"name":"HILLBURN","zip":"10931","state":"NY"},"arcs":[[-5986,7615,-7550]]},{"type":"Polygon","properties":{"name":"MIDDLETOWN","zip":"10940","state":"NY"},"arcs":[[7616,7617,7618,7619,7620,7621,7622,7623,-7577,7624,-7593]]},{"type":"Polygon","properties":{"name":"MIDDLETOWN","zip":"10941","state":"NY"},"arcs":[[-7594,-7625,-7576,7625,-7565]]},{"type":"Polygon","properties":{"name":"MONROE","zip":"10950","state":"NY"},"arcs":[[7626,-7574,7627,7628,-7612,-7599,7629,7630,-7598]]},{"type":"Polygon","properties":{"name":"MONSEY","zip":"10952","state":"NY"},"arcs":[[-6030,-5988,-7554,7631]]},{"type":"Polygon","properties":{"name":"NANUET","zip":"10954","state":"NY"},"arcs":[[7632,7633,7634,7635]]},{"type":"Polygon","properties":{"name":"NEW CITY","zip":"10956","state":"NY"},"arcs":[[7636,7637,-7587,-7602,-7580,7638,7639,-7636]]},{"type":"Polygon","properties":{"name":"NEW HAMPTON","zip":"10958","state":"NY"},"arcs":[[7640,7641,7642,-7617,-7592]]},{"type":"Polygon","properties":{"name":"NYACK","zip":"10960","state":"NY"},"arcs":[[7643,7644,-7560,7645,7646,7647]]},{"type":"Polygon","properties":{"name":"ORANGEBURG","zip":"10962","state":"NY"},"arcs":[[7648,7649,-6173,7650,-7561,-7645,7651]]},{"type":"Polygon","properties":{"name":"OTISVILLE","zip":"10963","state":"NY"},"arcs":[[7652,7653,7654,-7622]]},{"type":"Polygon","properties":{"name":"PALISADES","zip":"10964","state":"NY"},"arcs":[[-6100,-6153,7655,7656,7657]]},{"type":"Polygon","properties":{"name":"PEARL RIVER","zip":"10965","state":"NY"},"arcs":[[-6172,-6146,7658,-7634,-7558,-7651]]},{"type":"Polygon","properties":{"name":"PIERMONT","zip":"10968","state":"NY"},"arcs":[[-7644,7659,7660,-7652]]},{"type":"Polygon","properties":{"name":"PINE ISLAND","zip":"10969","state":"NY"},"arcs":[[7661,-7641,-7595,7662,-5954,-6040]]},{"type":"Polygon","properties":{"name":"POMONA","zip":"10970","state":"NY"},"arcs":[[7663,7664,7665,7666,-7588,-7638,7667,-7552]]},{"type":"Polygon","properties":{"name":"SLATE HILL","zip":"10973","state":"NY"},"arcs":[[7668,-7618,-7643]]},{"type":"Polygon","properties":{"name":"SLOATSBURG","zip":"10974","state":"NY"},"arcs":[[-5985,-6027,7669,7670,-7664,-7551,-7616]]},{"type":"Polygon","properties":{"name":"SOUTHFIELDS","zip":"10975","state":"NY"},"arcs":[[-7671,7671,-7630,-7607,7672,-7665]]},{"type":"Polygon","properties":{"name":"SPARKILL","zip":"10976","state":"NY"},"arcs":[[-7657,7673,-7649,-7661,7674]]},{"type":"Polygon","properties":{"name":"SPRING VALLEY","zip":"10977","state":"NY"},"arcs":[[-7553,-7668,-7637,-7635,-7659,-6145,-7632]]},{"type":"Polygon","properties":{"name":"STONY POINT","zip":"10980","state":"NY"},"arcs":[[7675,-7666,-7673,-7606,7676,7677,7678,-7590]]},{"type":"Polygon","properties":{"name":"TAPPAN","zip":"10983","state":"NY"},"arcs":[[-6152,-6174,-7650,-7674,-7656]]},{"type":"Polygon","properties":{"name":"THIELLS","zip":"10984","state":"NY"},"arcs":[[-7676,-7589,-7667]]},{"type":"Polygon","properties":{"name":"TOMKINS COVE","zip":"10986","state":"NY"},"arcs":[[-7677,-7605,-7555,7679]]},{"type":"Polygon","properties":{"name":"TUXEDO PARK","zip":"10987","state":"NY"},"arcs":[[-6026,-5968,-7596,-7631,-7672,-7670]]},{"type":"Polygon","properties":{"name":"VALLEY COTTAGE","zip":"10989","state":"NY"},"arcs":[[7680,-7639,-7583,7681,-7647]]},{"type":"Polygon","properties":{"name":"WARWICK","zip":"10990","state":"NY"},"arcs":[[-7597,-5966,-5973,-6043,-5955,-7663,-7585,-7575,-7627]]},{"type":"Polygon","properties":{"name":"WASHINGTONVILLE","zip":"10992","state":"NY"},"arcs":[[-7562,7682,7683,-7628,-7573]]},{"type":"Polygon","properties":{"name":"WEST HAVERSTRAW","zip":"10993","state":"NY"},"arcs":[[-7591,-7679,7684,-7603]]},{"type":"Polygon","properties":{"name":"WEST NYACK","zip":"10994","state":"NY"},"arcs":[[-7633,-7640,-7681,-7646,-7559]]},{"type":"Polygon","properties":{"name":"WEST POINT","zip":"10996","state":"NY"},"arcs":[[7685,7686,-7610]]},{"type":"Polygon","properties":{"name":"WESTTOWN","zip":"10998","state":"NY"},"arcs":[[-7662,-6039,7687,-7619,-7669,-7642]]},{"type":"Polygon","properties":{"name":"FLORAL PARK","zip":"11001","state":"NY"},"arcs":[[7688,7689,7690,7691,7692,7693,7694]]},{"type":"Polygon","properties":{"name":"ELMONT","zip":"11003","state":"NY"},"arcs":[[7695,7696,-7689,7697,7698]]},{"type":"Polygon","properties":{"name":"GLEN OAKS","zip":"11004","state":"NY"},"arcs":[[7699,7700,7701,-7693]]},{"type":"Polygon","properties":{"name":"FLORAL PARK","zip":"11005","state":"NY"},"arcs":[[7702,7703,7704,7705,-7701]]},{"type":"Polygon","properties":{"name":"FRANKLIN SQUARE","zip":"11010","state":"NY"},"arcs":[[7706,-7698,7707,7708,7709]]},{"type":"Polygon","properties":{"name":"GREAT NECK","zip":"11020","state":"NY"},"arcs":[[7710,7711,7712,7713,-7704]]},{"type":"Polygon","properties":{"name":"GREAT NECK","zip":"11021","state":"NY"},"arcs":[[7714,7715,7716,7717,7718,-7712]]},{"type":"Polygon","properties":{"name":"GREAT NECK","zip":"11023","state":"NY"},"arcs":[[7719,-7717,7720]]},{"type":"Polygon","properties":{"name":"GREAT NECK","zip":"11024","state":"NY"},"arcs":[[-7720,7721]]},{"type":"Polygon","properties":{"name":"MANHASSET","zip":"11030","state":"NY"},"arcs":[[7722,-7713,-7719,7723,7724]]},{"type":"Polygon","properties":{"name":"NEW HYDE PARK","zip":"11040","state":"NY"},"arcs":[[7725,7726,-7694,-7702,-7706,7727,7728,7729]]},{"type":"Polygon","properties":{"name":"NEW HYDE PARK","zip":"11042","state":"NY"},"arcs":[[-7714,7730,-7728,-7705]]},{"type":"Polygon","properties":{"name":"PORT WASHINGTON","zip":"11050","state":"NY"},"arcs":[[7731,-7725,7732]]},{"type":"Polygon","properties":{"name":"INWOOD","zip":"11096","state":"NY"},"arcs":[[7733,7734,7735]]},{"type":"Polygon","properties":{"name":"LONG ISLAND CITY","zip":"11101","state":"NY"},"arcs":[[7736,7737,7738,7739,7740,7741]]},{"type":"Polygon","properties":{"name":"ASTORIA","zip":"11102","state":"NY"},"arcs":[[7742,7743,7744,7745]]},{"type":"Polygon","properties":{"name":"ASTORIA","zip":"11103","state":"NY"},"arcs":[[7746,-7743,7747,7748,7749,-7741]]},{"type":"Polygon","properties":{"name":"ASTORIA","zip":"11105","state":"NY"},"arcs":[[7750,-7748,-7746,7751]]},{"type":"Polygon","properties":{"name":"ASTORIA","zip":"11106","state":"NY"},"arcs":[[-7740,7752,-7744,-7747]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11201","state":"NY"},"arcs":[[7753,7754,7755,7756,7757]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11203","state":"NY"},"arcs":[[7758,7759,7760,7761,7762,7763,7764]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11204","state":"NY"},"arcs":[[7765,7766,7767,7768,7769,7770]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11205","state":"NY"},"arcs":[[7771,7772,7773,-7758,7774,7775,7776]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11206","state":"NY"},"arcs":[[7777,-7777,7778,7779,7780]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11207","state":"NY"},"arcs":[[7781,7782,7783,7784,7785,7786,7787,7788]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11208","state":"NY"},"arcs":[[7789,7790,7791,7792,7793,7794,-7782]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11209","state":"NY"},"arcs":[[7795,7796,7797]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11210","state":"NY"},"arcs":[[7798,7799,-7765,7800,7801]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11211","state":"NY"},"arcs":[[-7776,7802,7803,7804,7805,7806,-7779]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11212","state":"NY"},"arcs":[[7807,7808,-7785,7809,-7762]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11213","state":"NY"},"arcs":[[-7761,7810,7811,7812,-7808]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11214","state":"NY"},"arcs":[[7813,7814,7815,7816,-7768]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11215","state":"NY"},"arcs":[[7817,7818,7819,7820,7821,7822,7823]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11216","state":"NY"},"arcs":[[7824,-7772,-7778,7825,7826,-7812,7827]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11217","state":"NY"},"arcs":[[7828,-7823,7829,-7754,-7774]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11218","state":"NY"},"arcs":[[7830,7831,-7820,7832,7833,-7771]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11219","state":"NY"},"arcs":[[7834,7835,7836,-7831,-7770]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11220","state":"NY"},"arcs":[[7837,-7797,7838,7839,-7836]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11221","state":"NY"},"arcs":[[7840,-7826,-7781,7841,-7787]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11222","state":"NY"},"arcs":[[-7738,7842,-7805,7843]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11223","state":"NY"},"arcs":[[-7767,7844,7845,7846,7847,-7814]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11224","state":"NY"},"arcs":[[7848,7849,-7815,-7848]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11225","state":"NY"},"arcs":[[7850,-7818,7851,-7828,-7811,-7760]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11226","state":"NY"},"arcs":[[-7819,-7851,-7759,-7800,7852,-7833]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11228","state":"NY"},"arcs":[[-7838,-7835,-7769,-7817,-7798]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11229","state":"NY"},"arcs":[[7853,7854,-7846,7855,-7802]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11230","state":"NY"},"arcs":[[-7845,-7766,-7834,-7853,-7799,-7856]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11231","state":"NY"},"arcs":[[-7755,-7830,-7822,7856]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11232","state":"NY"},"arcs":[[-7840,7857,-7821,-7832,-7837]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11233","state":"NY"},"arcs":[[-7813,-7827,-7841,-7786,-7809]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11234","state":"NY"},"arcs":[[-7801,-7764,7858,7859,7860,-7854]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11235","state":"NY"},"arcs":[[-7849,-7847,-7855,-7861,7861]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11236","state":"NY"},"arcs":[[7862,7863,-7859,-7763,-7810,-7784]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11237","state":"NY"},"arcs":[[7864,-7788,-7842,-7780,-7807]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11238","state":"NY"},"arcs":[[-7824,-7829,-7773,-7825,-7852]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11239","state":"NY"},"arcs":[[-7863,-7783,-7795,7865]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"11251","state":"NY"},"arcs":[[-7775,-7757,7866,-7803]]},{"type":"Polygon","properties":{"name":"FLUSHING","zip":"11354","state":"NY"},"arcs":[[7867,7868,7869,7870,7871,7872]]},{"type":"Polygon","properties":{"name":"FLUSHING","zip":"11355","state":"NY"},"arcs":[[7873,7874,-7869,7875,7876]]},{"type":"Polygon","properties":{"name":"COLLEGE POINT","zip":"11356","state":"NY"},"arcs":[[7877,-7872,7878]]},{"type":"Polygon","properties":{"name":"WHITESTONE","zip":"11357","state":"NY"},"arcs":[[7879,7880,-7873,-7878,7881]]},{"type":"Polygon","properties":{"name":"FLUSHING","zip":"11358","state":"NY"},"arcs":[[7882,7883,-7876,-7868,-7881,7884]]},{"type":"Polygon","properties":{"name":"BAYSIDE","zip":"11360","state":"NY"},"arcs":[[7885,-7885,-7880,7886]]},{"type":"Polygon","properties":{"name":"BAYSIDE","zip":"11361","state":"NY"},"arcs":[[7887,7888,-7883,-7886,7889,7890]]},{"type":"Polygon","properties":{"name":"LITTLE NECK","zip":"11362","state":"NY"},"arcs":[[7891,7892,-7888,7893,-7711,-7703]]},{"type":"Polygon","properties":{"name":"LITTLE NECK","zip":"11363","state":"NY"},"arcs":[[-7891,7894,-7715,-7894]]},{"type":"Polygon","properties":{"name":"OAKLAND GARDENS","zip":"11364","state":"NY"},"arcs":[[7895,7896,7897,7898,-7889,-7893,7899]]},{"type":"Polygon","properties":{"name":"FRESH MEADOWS","zip":"11365","state":"NY"},"arcs":[[7900,7901,-7877,-7884,-7899]]},{"type":"Polygon","properties":{"name":"FRESH MEADOWS","zip":"11366","state":"NY"},"arcs":[[7902,-7901,-7898,7903,7904]]},{"type":"Polygon","properties":{"name":"FLUSHING","zip":"11367","state":"NY"},"arcs":[[7905,7906,7907,7908,-7874,-7902,-7903]]},{"type":"Polygon","properties":{"name":"CORONA","zip":"11368","state":"NY"},"arcs":[[7909,7910,7911,7912,7913,7914,7915,-7870,-7875,-7909]]},{"type":"Polygon","properties":{"name":"EAST ELMHURST","zip":"11369","state":"NY"},"arcs":[[7916,7917,7918,-7914]]},{"type":"Polygon","properties":{"name":"EAST ELMHURST","zip":"11370","state":"NY"},"arcs":[[7919,7920,-7749,-7751,7921,7922,-7918]]},{"type":"Polygon","properties":{"name":"FLUSHING","zip":"11371","state":"NY"},"arcs":[[-7919,-7923,7923,-7915]]},{"type":"Polygon","properties":{"name":"JACKSON HEIGHTS","zip":"11372","state":"NY"},"arcs":[[7924,7925,-7920,-7917,-7913]]},{"type":"Polygon","properties":{"name":"ELMHURST","zip":"11373","state":"NY"},"arcs":[[7926,7927,7928,7929,-7925,-7912]]},{"type":"Polygon","properties":{"name":"REGO PARK","zip":"11374","state":"NY"},"arcs":[[7930,7931,-7927,-7911]]},{"type":"Polygon","properties":{"name":"FOREST HILLS","zip":"11375","state":"NY"},"arcs":[[7932,7933,-7931,-7910,-7908]]},{"type":"Polygon","properties":{"name":"WOODSIDE","zip":"11377","state":"NY"},"arcs":[[-7742,-7750,-7921,-7926,-7930,7934]]},{"type":"Polygon","properties":{"name":"MASPETH","zip":"11378","state":"NY"},"arcs":[[-7843,-7737,-7935,-7929,7935,7936,-7806]]},{"type":"Polygon","properties":{"name":"MIDDLE VILLAGE","zip":"11379","state":"NY"},"arcs":[[7937,-7936,-7928,-7932]]},{"type":"Polygon","properties":{"name":"RIDGEWOOD","zip":"11385","state":"NY"},"arcs":[[7938,-7790,-7789,-7865,-7937,-7938,-7934,7939,7940]]},{"type":"Polygon","properties":{"name":"CAMBRIA HEIGHTS","zip":"11411","state":"NY"},"arcs":[[7941,7942,7943,7944,-7696]]},{"type":"Polygon","properties":{"name":"SAINT ALBANS","zip":"11412","state":"NY"},"arcs":[[7945,7946,7947,7948,7949,-7944]]},{"type":"Polygon","properties":{"name":"SPRINGFIELD GARDENS","zip":"11413","state":"NY"},"arcs":[[7950,7951,-7946,-7943,7952]]},{"type":"Polygon","properties":{"name":"HOWARD BEACH","zip":"11414","state":"NY"},"arcs":[[-7794,7953,7954,7955,7956]]},{"type":"Polygon","properties":{"name":"KEW GARDENS","zip":"11415","state":"NY"},"arcs":[[7957,7958,-7940,-7933]]},{"type":"Polygon","properties":{"name":"OZONE PARK","zip":"11416","state":"NY"},"arcs":[[7959,-7792,7960,7961,7962]]},{"type":"Polygon","properties":{"name":"OZONE PARK","zip":"11417","state":"NY"},"arcs":[[7963,-7954,-7793,-7960,7964]]},{"type":"Polygon","properties":{"name":"RICHMOND HILL","zip":"11418","state":"NY"},"arcs":[[7965,-7962,7966,-7941,-7959,7967]]},{"type":"Polygon","properties":{"name":"SOUTH RICHMOND HILL","zip":"11419","state":"NY"},"arcs":[[7968,-7965,-7963,-7966,7969]]},{"type":"Polygon","properties":{"name":"SOUTH OZONE PARK","zip":"11420","state":"NY"},"arcs":[[7970,7971,-7955,-7964,-7969,7972]]},{"type":"Polygon","properties":{"name":"WOODHAVEN","zip":"11421","state":"NY"},"arcs":[[-7791,-7939,-7967,-7961]]},{"type":"Polygon","properties":{"name":"ROSEDALE","zip":"11422","state":"NY"},"arcs":[[7973,-7953,-7942,7974,7975,7976,7977]]},{"type":"Polygon","properties":{"name":"HOLLIS","zip":"11423","state":"NY"},"arcs":[[7978,-7904,-7897,7979,7980,7981,-7949,7982]]},{"type":"Polygon","properties":{"name":"BELLEROSE","zip":"11426","state":"NY"},"arcs":[[7983,-7900,-7892,-7700,-7692,7984]]},{"type":"Polygon","properties":{"name":"QUEENS VILLAGE","zip":"11427","state":"NY"},"arcs":[[7985,-7980,-7896,-7984]]},{"type":"Polygon","properties":{"name":"QUEENS VILLAGE","zip":"11428","state":"NY"},"arcs":[[7986,-7981,-7986,-7985,-7691]]},{"type":"Polygon","properties":{"name":"QUEENS VILLAGE","zip":"11429","state":"NY"},"arcs":[[-7945,-7950,-7982,-7987,-7690,-7697]]},{"type":"Polygon","properties":{"name":"JAMAICA","zip":"11430","state":"NY"},"arcs":[[-7974,7987,-7956,-7972,7988,7989,-7951]]},{"type":"Polygon","properties":{"name":"JAMAICA","zip":"11432","state":"NY"},"arcs":[[7990,7991,-7906,-7905,-7979]]},{"type":"Polygon","properties":{"name":"JAMAICA","zip":"11433","state":"NY"},"arcs":[[7992,7993,-7991,-7983,-7948]]},{"type":"Polygon","properties":{"name":"JAMAICA","zip":"11434","state":"NY"},"arcs":[[7994,-7993,-7947,-7952,-7990]]},{"type":"Polygon","properties":{"name":"JAMAICA","zip":"11435","state":"NY"},"arcs":[[7995,-7973,-7970,-7968,-7958,-7907,-7992,-7994]]},{"type":"Polygon","properties":{"name":"JAMAICA","zip":"11436","state":"NY"},"arcs":[[-7996,-7995,-7989,-7971]]},{"type":"Polygon","properties":{"name":"MINEOLA","zip":"11501","state":"NY"},"arcs":[[7996,7997,-7726,7998,7999,8000]]},{"type":"Polygon","properties":{"name":"ALBERTSON","zip":"11507","state":"NY"},"arcs":[[8001,8002,8003]]},{"type":"Polygon","properties":{"name":"ATLANTIC BEACH","zip":"11509","state":"NY"},"arcs":[[8004,8005]]},{"type":"Polygon","properties":{"name":"BALDWIN","zip":"11510","state":"NY"},"arcs":[[8006,8007,8008,8009,8010,8011,8012]]},{"type":"Polygon","properties":{"name":"CARLE PLACE","zip":"11514","state":"NY"},"arcs":[[8013,-7997,8014,8015]]},{"type":"Polygon","properties":{"name":"EAST ROCKAWAY","zip":"11518","state":"NY"},"arcs":[[8016,8017,8018,8019,8020]]},{"type":"Polygon","properties":{"name":"FREEPORT","zip":"11520","state":"NY"},"arcs":[[8021,8022,-8007,8023]]},{"type":"Polygon","properties":{"name":"GARDEN CITY","zip":"11530","state":"NY"},"arcs":[[-7727,-7998,-8014,8024,8025,8026,8027,8028,-7708,-7695]]},{"type":"Polygon","properties":{"name":"GLEN COVE","zip":"11542","state":"NY"},"arcs":[[8029,8030,8031,8032]]},{"type":"Polygon","properties":{"name":"GLEN HEAD","zip":"11545","state":"NY"},"arcs":[[8033,8034,8035,8036,-8030,8037,8038,8039,8040,8041,8042]]},{"type":"Polygon","properties":{"name":"GREENVALE","zip":"11548","state":"NY"},"arcs":[[8043,-8034,8044]]},{"type":"Polygon","properties":{"name":"HEMPSTEAD","zip":"11550","state":"NY"},"arcs":[[8045,8046,-8028,8047,-8011]]},{"type":"Polygon","properties":{"name":"WEST HEMPSTEAD","zip":"11552","state":"NY"},"arcs":[[8048,-7709,-8029,-8047,8049]]},{"type":"Polygon","properties":{"name":"UNIONDALE","zip":"11553","state":"NY"},"arcs":[[8050,-8012,-8048,-8027,8051,8052]]},{"type":"Polygon","properties":{"name":"EAST MEADOW","zip":"11554","state":"NY"},"arcs":[[8053,8054,-8052,-8026,8055,8056,8057]]},{"type":"Polygon","properties":{"name":"HEWLETT","zip":"11557","state":"NY"},"arcs":[[8058,8059,8060,-8017,8061]]},{"type":"Polygon","properties":{"name":"LAWRENCE","zip":"11559","state":"NY"},"arcs":[[-7977,8062,-8064,8064,8065,8066,-7734,8067]]},{"type":"Polygon","properties":{"name":"LOCUST VALLEY","zip":"11560","state":"NY"},"arcs":[[8068,8069,8070,8071,-8038,-8033,8072]]},{"type":"Polygon","properties":{"name":"LONG BEACH","zip":"11561","state":"NY"},"arcs":[[-8005,8073]]},{"type":"Polygon","properties":{"name":"LYNBROOK","zip":"11563","state":"NY"},"arcs":[[8074,8075,8076,8077,-8018,-8061]]},{"type":"Polygon","properties":{"name":"MALVERNE","zip":"11565","state":"NY"},"arcs":[[8078,-7710,-8049,8079,-8077]]},{"type":"Polygon","properties":{"name":"MERRICK","zip":"11566","state":"NY"},"arcs":[[8080,8081,-8022,8082,-8053,-8055]]},{"type":"Polygon","properties":{"name":"OLD WESTBURY","zip":"11568","state":"NY"},"arcs":[[8083,8084,-8045,-8043,8085,8086,-8015,-8001]]},{"type":"Polygon","properties":{"name":"ROCKVILLE CENTRE","zip":"11570","state":"NY"},"arcs":[[-8080,-8050,-8046,-8010,8087,-8019,-8078]]},{"type":"Polygon","properties":{"name":"OCEANSIDE","zip":"11572","state":"NY"},"arcs":[[-8020,-8088,-8009,8088]]},{"type":"Polygon","properties":{"name":"ROOSEVELT","zip":"11575","state":"NY"},"arcs":[[-8051,-8083,-8024,-8013]]},{"type":"Polygon","properties":{"name":"ROSLYN","zip":"11576","state":"NY"},"arcs":[[-7723,-7732,8089,-8035,-8044,-8085,8090,-8002,-7729,-7731]]},{"type":"Polygon","properties":{"name":"ROSLYN HEIGHTS","zip":"11577","state":"NY"},"arcs":[[8091,-8003,-8091,-8084,-8000]]},{"type":"Polygon","properties":{"name":"SEA CLIFF","zip":"11579","state":"NY"},"arcs":[[-8031,-8037,8092]]},{"type":"Polygon","properties":{"name":"VALLEY STREAM","zip":"11580","state":"NY"},"arcs":[[-7699,-7707,-8079,-8076,8093,-7975]]},{"type":"Polygon","properties":{"name":"VALLEY STREAM","zip":"11581","state":"NY"},"arcs":[[8094,-8063,-7976,-8094,-8075,-8060]]},{"type":"Polygon","properties":{"name":"WESTBURY","zip":"11590","state":"NY"},"arcs":[[-8016,-8087,8095,8096,8097,-8056,-8025]]},{"type":"Polygon","properties":{"name":"WILLISTON PARK","zip":"11596","state":"NY"},"arcs":[[-8004,-8092,-7999,-7730]]},{"type":"Polygon","properties":{"name":"WOODMERE","zip":"11598","state":"NY"},"arcs":[[8063,-8095,-8059,8098,-8065]]},{"type":"Polygon","properties":{"name":"FAR ROCKAWAY","zip":"11691","state":"NY"},"arcs":[[8099,8100,-7735,-8067,8101]]},{"type":"Polygon","properties":{"name":"ARVERNE","zip":"11692","state":"NY"},"arcs":[[8102,8103,-8100,8104]]},{"type":"Polygon","properties":{"name":"FAR ROCKAWAY","zip":"11693","state":"NY"},"arcs":[[8105,8106,-8103,8107]]},{"type":"Polygon","properties":{"name":"ROCKAWAY PARK","zip":"11694","state":"NY"},"arcs":[[8108,8109,-8106,8110]]},{"type":"Polygon","properties":{"name":"BREEZY POINT","zip":"11697","state":"NY"},"arcs":[[-8109,8111]]},{"type":"Polygon","properties":{"name":"AMITYVILLE","zip":"11701","state":"NY"},"arcs":[[8112,8113,8114,8115,8116]]},{"type":"Polygon","properties":{"name":"BABYLON","zip":"11702","state":"NY"},"arcs":[[8117,8118,8119,8120]]},{"type":"Polygon","properties":{"name":"NORTH BABYLON","zip":"11703","state":"NY"},"arcs":[[8121,8122,8123,-8119]]},{"type":"Polygon","properties":{"name":"WEST BABYLON","zip":"11704","state":"NY"},"arcs":[[8124,8125,8126,-8122,-8118,8127]]},{"type":"Polygon","properties":{"name":"BAYPORT","zip":"11705","state":"NY"},"arcs":[[8128,8129,8130,8131]]},{"type":"MultiPolygon","properties":{"name":"BAY SHORE","zip":"11706","state":"NY"},"arcs":[[[8132,8133,8134,8135,8136]],[[8137,8138,8139,8140]],[[8141,8142]]]},{"type":"Polygon","properties":{"name":"BAYVILLE","zip":"11709","state":"NY"},"arcs":[[-8069,8143]]},{"type":"Polygon","properties":{"name":"BELLMORE","zip":"11710","state":"NY"},"arcs":[[8144,8145,-8081,-8054]]},{"type":"Polygon","properties":{"name":"BELLPORT","zip":"11713","state":"NY"},"arcs":[[8146,8147,8148,8149,8150]]},{"type":"Polygon","properties":{"name":"BETHPAGE","zip":"11714","state":"NY"},"arcs":[[8151,8152,8153,8154,8155,8156,8157]]},{"type":"Polygon","properties":{"name":"BLUE POINT","zip":"11715","state":"NY"},"arcs":[[-8129,8158,8159]]},{"type":"Polygon","properties":{"name":"BOHEMIA","zip":"11716","state":"NY"},"arcs":[[8160,8161,8162,8163,8164,8165,8166]]},{"type":"Polygon","properties":{"name":"BRENTWOOD","zip":"11717","state":"NY"},"arcs":[[8167,8168,-8135,8169,8170,8171,8172]]},{"type":"Polygon","properties":{"name":"BROOKHAVEN","zip":"11719","state":"NY"},"arcs":[[8173,8174,8175,-8150]]},{"type":"Polygon","properties":{"name":"CENTEREACH","zip":"11720","state":"NY"},"arcs":[[8176,8177,8178,8179,8180,8181,8182]]},{"type":"Polygon","properties":{"name":"CENTERPORT","zip":"11721","state":"NY"},"arcs":[[8183,8184,8185,8186]]},{"type":"Polygon","properties":{"name":"CENTRAL ISLIP","zip":"11722","state":"NY"},"arcs":[[8187,8188,8189,-8162,8190,8191,-8168]]},{"type":"Polygon","properties":{"name":"COLD SPRING HARBOR","zip":"11724","state":"NY"},"arcs":[[8192,8193,8194,8195]]},{"type":"Polygon","properties":{"name":"COMMACK","zip":"11725","state":"NY"},"arcs":[[8196,-8172,8197,8198,8199,8200]]},{"type":"Polygon","properties":{"name":"COPIAGUE","zip":"11726","state":"NY"},"arcs":[[-8116,8201,8202]]},{"type":"Polygon","properties":{"name":"CORAM","zip":"11727","state":"NY"},"arcs":[[8203,8204,8205,8206,8207,8208]]},{"type":"Polygon","properties":{"name":"DEER PARK","zip":"11729","state":"NY"},"arcs":[[8209,8210,-8170,-8134,-8123]]},{"type":"Polygon","properties":{"name":"EAST ISLIP","zip":"11730","state":"NY"},"arcs":[[8211,8212,-8167,8213,8214]]},{"type":"Polygon","properties":{"name":"EAST NORTHPORT","zip":"11731","state":"NY"},"arcs":[[8215,8216,8217,8218,-8199,8219]]},{"type":"Polygon","properties":{"name":"EAST NORWICH","zip":"11732","state":"NY"},"arcs":[[8220,8221,-8040]]},{"type":"Polygon","properties":{"name":"EAST SETAUKET","zip":"11733","state":"NY"},"arcs":[[8222,8223,8224,-8182,8225]]},{"type":"Polygon","properties":{"name":"FARMINGDALE","zip":"11735","state":"NY"},"arcs":[[8226,8227,-8152,8228,8229,8230,-8126,8231,-8114]]},{"type":"Polygon","properties":{"name":"FARMINGVILLE","zip":"11738","state":"NY"},"arcs":[[8232,8233,8234,-8178,8235,-8209]]},{"type":"Polygon","properties":{"name":"GREENLAWN","zip":"11740","state":"NY"},"arcs":[[8236,8237,8238,-8185,8239,-8217]]},{"type":"Polygon","properties":{"name":"HOLBROOK","zip":"11741","state":"NY"},"arcs":[[8240,-8164,8241,8242,8243,-8132]]},{"type":"Polygon","properties":{"name":"HOLTSVILLE","zip":"11742","state":"NY"},"arcs":[[-8234,8244,8245,-8243]]},{"type":"MultiPolygon","properties":{"name":"HUNTINGTON","zip":"11743","state":"NY"},"arcs":[[[8246,-8193,8247,-8186,-8239,8248,8249]],[[-8216,8250,-8237]]]},{"type":"Polygon","properties":{"name":"HUNTINGTON STATION","zip":"11746","state":"NY"},"arcs":[[8251,-8249,-8238,-8251,-8220,-8198,-8171,-8211,8252]]},{"type":"Polygon","properties":{"name":"MELVILLE","zip":"11747","state":"NY"},"arcs":[[8253,-8230,8254,8255,-8250,-8252]]},{"type":"Polygon","properties":{"name":"ISLANDIA","zip":"11749","state":"NY"},"arcs":[[8256,8257,-8189]]},{"type":"Polygon","properties":{"name":"ISLIP","zip":"11751","state":"NY"},"arcs":[[-8169,-8192,8258,-8212,8259,-8136]]},{"type":"Polygon","properties":{"name":"ISLIP TERRACE","zip":"11752","state":"NY"},"arcs":[[-8259,-8191,-8161,-8213]]},{"type":"Polygon","properties":{"name":"JERICHO","zip":"11753","state":"NY"},"arcs":[[8260,-8096,-8086,-8042,8261]]},{"type":"Polygon","properties":{"name":"KINGS PARK","zip":"11754","state":"NY"},"arcs":[[8262,8263,8264,8265,-8200,-8219]]},{"type":"Polygon","properties":{"name":"LAKE GROVE","zip":"11755","state":"NY"},"arcs":[[8266,8267,8268,-8180,8269]]},{"type":"Polygon","properties":{"name":"LEVITTOWN","zip":"11756","state":"NY"},"arcs":[[-8098,8270,-8155,8271,8272,-8057]]},{"type":"Polygon","properties":{"name":"LINDENHURST","zip":"11757","state":"NY"},"arcs":[[-8115,-8232,-8125,8273,-8202]]},{"type":"MultiPolygon","properties":{"name":"MASSAPEQUA","zip":"11758","state":"NY"},"arcs":[[[8274,-8153,-8228,8275,8276]],[[8277,-8113,8278]]]},{"type":"Polygon","properties":{"name":"MASSAPEQUA PARK","zip":"11762","state":"NY"},"arcs":[[-8227,-8278,8279,-8276]]},{"type":"Polygon","properties":{"name":"MEDFORD","zip":"11763","state":"NY"},"arcs":[[8280,-8245,-8233,-8208,8281,8282,-8148]]},{"type":"Polygon","properties":{"name":"MILLER PLACE","zip":"11764","state":"NY"},"arcs":[[8283,8284,8285,8286,8287]]},{"type":"Polygon","properties":{"name":"MILL NECK","zip":"11765","state":"NY"},"arcs":[[-8289,8070,-8290]]},{"type":"Polygon","properties":{"name":"MOUNT SINAI","zip":"11766","state":"NY"},"arcs":[[8290,-8206,8291,8292,8293,-8285]]},{"type":"Polygon","properties":{"name":"NESCONSET","zip":"11767","state":"NY"},"arcs":[[8294,8295,8296,-8267,8297]]},{"type":"Polygon","properties":{"name":"NORTHPORT","zip":"11768","state":"NY"},"arcs":[[-8263,-8218,-8240,-8184,8298]]},{"type":"Polygon","properties":{"name":"OAKDALE","zip":"11769","state":"NY"},"arcs":[[-8214,-8166,8299,8300,8301]]},{"type":"Polygon","properties":{"name":"OCEAN BEACH","zip":"11770","state":"NY"},"arcs":[[-8142,8302,-8138,8303]]},{"type":"Polygon","properties":{"name":"OYSTER BAY","zip":"11771","state":"NY"},"arcs":[[8304,-8221,-8039,-8072,-8290,8305]]},{"type":"MultiPolygon","properties":{"name":"PATCHOGUE","zip":"11772","state":"NY"},"arcs":[[[-8244,-8246,-8281,-8147,8306,-8159]],[[8307,8308]]]},{"type":"Polygon","properties":{"name":"PORT JEFFERSON STATION","zip":"11776","state":"NY"},"arcs":[[-8225,8309,-8292,-8205,8310,-8183]]},{"type":"Polygon","properties":{"name":"PORT JEFFERSON","zip":"11777","state":"NY"},"arcs":[[-8293,-8310,-8224,8311]]},{"type":"Polygon","properties":{"name":"ROCKY POINT","zip":"11778","state":"NY"},"arcs":[[8312,8313,8314,8315,8316,-8288]]},{"type":"Polygon","properties":{"name":"RONKONKOMA","zip":"11779","state":"NY"},"arcs":[[8317,-8298,-8270,-8179,-8235,-8242,-8163,-8190,-8258]]},{"type":"Polygon","properties":{"name":"SAINT JAMES","zip":"11780","state":"NY"},"arcs":[[-8297,8318,-8265,8319,8320,-8268]]},{"type":"MultiPolygon","properties":{"name":"SAYVILLE","zip":"11782","state":"NY"},"arcs":[[[8321,-8300,-8165,-8241,-8131,8322]],[[-8140,8323,-8308,8324]]]},{"type":"Polygon","properties":{"name":"SEAFORD","zip":"11783","state":"NY"},"arcs":[[8325,-8272,-8154,-8275,8326]]},{"type":"Polygon","properties":{"name":"SELDEN","zip":"11784","state":"NY"},"arcs":[[-8311,-8204,-8236,-8177]]},{"type":"Polygon","properties":{"name":"SHOREHAM","zip":"11786","state":"NY"},"arcs":[[8327,8328,-8315,8329]]},{"type":"Polygon","properties":{"name":"SMITHTOWN","zip":"11787","state":"NY"},"arcs":[[8330,-8201,-8266,-8319,-8296]]},{"type":"Polygon","properties":{"name":"HAUPPAUGE","zip":"11788","state":"NY"},"arcs":[[-8188,-8173,-8197,-8331,-8295,-8318,-8257]]},{"type":"Polygon","properties":{"name":"SOUND BEACH","zip":"11789","state":"NY"},"arcs":[[-8313,-8287,8331]]},{"type":"Polygon","properties":{"name":"STONY BROOK","zip":"11790","state":"NY"},"arcs":[[-8269,-8321,8332,-8226,-8181]]},{"type":"Polygon","properties":{"name":"SYOSSET","zip":"11791","state":"NY"},"arcs":[[8333,8334,-8262,-8041,-8222,-8305,8335,-8195,8336]]},{"type":"Polygon","properties":{"name":"WADING RIVER","zip":"11792","state":"NY"},"arcs":[[8337,8338,-8328,8339,8340]]},{"type":"Polygon","properties":{"name":"WANTAGH","zip":"11793","state":"NY"},"arcs":[[-8145,-8058,-8273,-8326,8341]]},{"type":"Polygon","properties":{"name":"WEST ISLIP","zip":"11795","state":"NY"},"arcs":[[-8124,-8133,8342,-8120]]},{"type":"Polygon","properties":{"name":"WEST SAYVILLE","zip":"11796","state":"NY"},"arcs":[[-8301,-8322,8343]]},{"type":"Polygon","properties":{"name":"WOODBURY","zip":"11797","state":"NY"},"arcs":[[-8194,-8247,8344,-8337]]},{"type":"Polygon","properties":{"name":"WYANDANCH","zip":"11798","state":"NY"},"arcs":[[-8127,-8231,-8254,-8253,-8210]]},{"type":"Polygon","properties":{"name":"HICKSVILLE","zip":"11801","state":"NY"},"arcs":[[-8261,-8335,8345,-8156,-8271,-8097]]},{"type":"Polygon","properties":{"name":"PLAINVIEW","zip":"11803","state":"NY"},"arcs":[[-8334,-8345,-8256,8346,-8157,-8346]]},{"type":"Polygon","properties":{"name":"OLD BETHPAGE","zip":"11804","state":"NY"},"arcs":[[-8347,-8255,-8229,-8158]]},{"type":"Polygon","properties":{"name":"RIVERHEAD","zip":"11901","state":"NY"},"arcs":[[8347,8348,8349,8350,8351,8352,8353,8354,8355]]},{"type":"Polygon","properties":{"name":"CALVERTON","zip":"11933","state":"NY"},"arcs":[[8356,-8341,8357,-8351]]},{"type":"Polygon","properties":{"name":"CENTER MORICHES","zip":"11934","state":"NY"},"arcs":[[8358,8359,8360,8361]]},{"type":"Polygon","properties":{"name":"CUTCHOGUE","zip":"11935","state":"NY"},"arcs":[[8362,8363,8364,8365]]},{"type":"MultiPolygon","properties":{"name":"EAST HAMPTON","zip":"11937","state":"NY"},"arcs":[[[8366]],[[8367,8368,8369,8370]]]},{"type":"Polygon","properties":{"name":"EAST MARION","zip":"11939","state":"NY"},"arcs":[[8371,8372,8373,8374]]},{"type":"Polygon","properties":{"name":"EAST MORICHES","zip":"11940","state":"NY"},"arcs":[[8375,8376,8377,-8359]]},{"type":"Polygon","properties":{"name":"EASTPORT","zip":"11941","state":"NY"},"arcs":[[8378,8379,-8377,8380,8381]]},{"type":"Polygon","properties":{"name":"EAST QUOGUE","zip":"11942","state":"NY"},"arcs":[[8382,-8348,8383,8384]]},{"type":"Polygon","properties":{"name":"GREENPORT","zip":"11944","state":"NY"},"arcs":[[8385,8386,-8372,8387]]},{"type":"Polygon","properties":{"name":"HAMPTON BAYS","zip":"11946","state":"NY"},"arcs":[[8388,8389,-8384,-8356,8390]]},{"type":"Polygon","properties":{"name":"LAUREL","zip":"11948","state":"NY"},"arcs":[[-8354,8391,8392]]},{"type":"Polygon","properties":{"name":"MANORVILLE","zip":"11949","state":"NY"},"arcs":[[-8362,8393,8394,8395,8396,-8338,-8357,-8350,-8381,-8376]]},{"type":"Polygon","properties":{"name":"MASTIC","zip":"11950","state":"NY"},"arcs":[[8397,8398,-8395,8399,8400]]},{"type":"Polygon","properties":{"name":"MASTIC BEACH","zip":"11951","state":"NY"},"arcs":[[8401,-8398,8402]]},{"type":"Polygon","properties":{"name":"MATTITUCK","zip":"11952","state":"NY"},"arcs":[[-8392,-8353,8403,-8363,8404]]},{"type":"Polygon","properties":{"name":"MIDDLE ISLAND","zip":"11953","state":"NY"},"arcs":[[8405,8406,-8282,-8207,-8291,-8284,-8317]]},{"type":"Polygon","properties":{"name":"MONTAUK","zip":"11954","state":"NY"},"arcs":[[-8370,8407]]},{"type":"Polygon","properties":{"name":"MORICHES","zip":"11955","state":"NY"},"arcs":[[-8400,-8394,-8361,8408]]},{"type":"Polygon","properties":{"name":"ORIENT","zip":"11957","state":"NY"},"arcs":[[-8374,8409]]},{"type":"Polygon","properties":{"name":"PECONIC","zip":"11958","state":"NY"},"arcs":[[-8365,8410,8411,8412]]},{"type":"Polygon","properties":{"name":"RIDGE","zip":"11961","state":"NY"},"arcs":[[8413,8414,-8406,-8316,-8329,-8339,-8397]]},{"type":"Polygon","properties":{"name":"SAG HARBOR","zip":"11963","state":"NY"},"arcs":[[8415,8416,8417,-8368,8418]]},{"type":"Polygon","properties":{"name":"SHELTER ISLAND","zip":"11964","state":"NY"},"arcs":[[8419,8420]]},{"type":"Polygon","properties":{"name":"SHELTER ISLAND HEIGHTS","zip":"11965","state":"NY"},"arcs":[[8421,8419]]},{"type":"Polygon","properties":{"name":"SHIRLEY","zip":"11967","state":"NY"},"arcs":[[8422,-8414,-8396,-8399,-8402,8423,-8175]]},{"type":"Polygon","properties":{"name":"SOUTHAMPTON","zip":"11968","state":"NY"},"arcs":[[-8417,8424,8425,-8389,8426]]},{"type":"Polygon","properties":{"name":"SOUTHOLD","zip":"11971","state":"NY"},"arcs":[[-8386,8427,-8412,8428]]},{"type":"Polygon","properties":{"name":"WATER MILL","zip":"11976","state":"NY"},"arcs":[[-8416,8429,-8425]]},{"type":"Polygon","properties":{"name":"WESTHAMPTON","zip":"11977","state":"NY"},"arcs":[[-8379,8430,8431]]},{"type":"Polygon","properties":{"name":"WESTHAMPTON BEACH","zip":"11978","state":"NY"},"arcs":[[-8431,-8382,-8349,-8383,8432]]},{"type":"Polygon","properties":{"name":"YAPHANK","zip":"11980","state":"NY"},"arcs":[[-8407,-8415,-8423,-8174,-8149,-8283]]},{"type":"Polygon","properties":{"name":"ALCOVE","zip":"12007","state":"NY"},"arcs":[[8433,8434,8435]]},{"type":"Polygon","properties":{"name":"ALPLAUS","zip":"12008","state":"NY"},"arcs":[[8436,8437,8438]]},{"type":"Polygon","properties":{"name":"ALTAMONT","zip":"12009","state":"NY"},"arcs":[[8439,8440,8441,8442,8443,8444,8445,8446]]},{"type":"Polygon","properties":{"name":"AMSTERDAM","zip":"12010","state":"NY"},"arcs":[[8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458]]},{"type":"Polygon","properties":{"name":"ATHENS","zip":"12015","state":"NY"},"arcs":[[8459,8460,8461]]},{"type":"Polygon","properties":{"name":"AUSTERLITZ","zip":"12017","state":"NY"},"arcs":[[8462,8463,8464,8465,-1106,8466]]},{"type":"Polygon","properties":{"name":"AVERILL PARK","zip":"12018","state":"NY"},"arcs":[[8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478]]},{"type":"MultiPolygon","properties":{"name":"BALLSTON LAKE","zip":"12019","state":"NY"},"arcs":[[[8479,8480,8481,8482]],[[8483,8484,8485,8486,8487,8488]]]},{"type":"Polygon","properties":{"name":"BALLSTON SPA","zip":"12020","state":"NY"},"arcs":[[8489,-8486,8490,-8482,8491,8492,8493]]},{"type":"Polygon","properties":{"name":"BERLIN","zip":"12022","state":"NY"},"arcs":[[8494,8495,-1108,-1067]]},{"type":"Polygon","properties":{"name":"BERNE","zip":"12023","state":"NY"},"arcs":[[8496,8497,8498,-8442,8499,8500,8501]]},{"type":"Polygon","properties":{"name":"BRAINARD","zip":"12024","state":"NY"},"arcs":[[8502,8503,8504]]},{"type":"Polygon","properties":{"name":"BROADALBIN","zip":"12025","state":"NY"},"arcs":[[8505,8506,8507,8508,8509,-8454]]},{"type":"Polygon","properties":{"name":"BURNT HILLS","zip":"12027","state":"NY"},"arcs":[[8510,8511,-8483,-8491,-8485]]},{"type":"Polygon","properties":{"name":"BUSKIRK","zip":"12028","state":"NY"},"arcs":[[8512,8513,8514,8515,8516,8517,8518]]},{"type":"Polygon","properties":{"name":"CANAAN","zip":"12029","state":"NY"},"arcs":[[-1022,-1086,-1107,-8466,8519,8520]]},{"type":"Polygon","properties":{"name":"CARLISLE","zip":"12031","state":"NY"},"arcs":[[8521,8522,8523,8524]]},{"type":"Polygon","properties":{"name":"CAROGA LAKE","zip":"12032","state":"NY"},"arcs":[[8525,8526,8527,8528,8529,8530,8531,8532,8533]]},{"type":"Polygon","properties":{"name":"CASTLETON ON HUDSON","zip":"12033","state":"NY"},"arcs":[[8534,8535,8536,8537,8538]]},{"type":"Polygon","properties":{"name":"CHARLOTTEVILLE","zip":"12036","state":"NY"},"arcs":[[8539,8540,8541]]},{"type":"Polygon","properties":{"name":"CHATHAM","zip":"12037","state":"NY"},"arcs":[[8542,8543,8544,8545,8546,8547,-8464]]},{"type":"Polygon","properties":{"name":"CLARKSVILLE","zip":"12041","state":"NY"},"arcs":[[8548,8549,8550]]},{"type":"Polygon","properties":{"name":"CLIMAX","zip":"12042","state":"NY"},"arcs":[[8551,8552,8553,8554]]},{"type":"Polygon","properties":{"name":"COBLESKILL","zip":"12043","state":"NY"},"arcs":[[8555,8556,8557,8558,-8523,8559,8560,8561]]},{"type":"Polygon","properties":{"name":"COEYMANS HOLLOW","zip":"12046","state":"NY"},"arcs":[[8562,8563,-8436,8564,8565]]},{"type":"Polygon","properties":{"name":"COHOES","zip":"12047","state":"NY"},"arcs":[[8566,8567,8568,8569,8570,8571]]},{"type":"Polygon","properties":{"name":"COXSACKIE","zip":"12051","state":"NY"},"arcs":[[8572,8573,-8555,8574,8575,-8461]]},{"type":"Polygon","properties":{"name":"CROPSEYVILLE","zip":"12052","state":"NY"},"arcs":[[8576,8577,8578,-8477]]},{"type":"Polygon","properties":{"name":"DELANSON","zip":"12053","state":"NY"},"arcs":[[-8499,8579,8580,8581,-8459,8582,8583,8584,-8443]]},{"type":"Polygon","properties":{"name":"DELMAR","zip":"12054","state":"NY"},"arcs":[[8585,8586,8587,8588,8589,8590,8591]]},{"type":"Polygon","properties":{"name":"DUANESBURG","zip":"12056","state":"NY"},"arcs":[[8592,-8444,-8585]]},{"type":"Polygon","properties":{"name":"EAGLE BRIDGE","zip":"12057","state":"NY"},"arcs":[[8593,-8513,8594,-4372]]},{"type":"Polygon","properties":{"name":"EARLTON","zip":"12058","state":"NY"},"arcs":[[8595,8596,8597,8598,-8552,-8574,8599]]},{"type":"Polygon","properties":{"name":"EAST BERNE","zip":"12059","state":"NY"},"arcs":[[-8441,8600,8601,-8500]]},{"type":"Polygon","properties":{"name":"EAST CHATHAM","zip":"12060","state":"NY"},"arcs":[[-8465,-8548,8602,-8505,8603,8604,8605,-8520]]},{"type":"Polygon","properties":{"name":"EAST GREENBUSH","zip":"12061","state":"NY"},"arcs":[[8606,-8539,8607,8608,-8472]]},{"type":"Polygon","properties":{"name":"EAST NASSAU","zip":"12062","state":"NY"},"arcs":[[8609,-8605,8610,-8470,8611]]},{"type":"Polygon","properties":{"name":"EAST WORCESTER","zip":"12064","state":"NY"},"arcs":[[8612,8613]]},{"type":"Polygon","properties":{"name":"CLIFTON PARK","zip":"12065","state":"NY"},"arcs":[[8614,8615,8616,-8489,8617,8618,8619,-8570]]},{"type":"Polygon","properties":{"name":"ESPERANCE","zip":"12066","state":"NY"},"arcs":[[8620,8621,8622,-8448,-8582,8623]]},{"type":"Polygon","properties":{"name":"FEURA BUSH","zip":"12067","state":"NY"},"arcs":[[-8435,8624,-8549,8625,-8587,8626,8627,-8565]]},{"type":"Polygon","properties":{"name":"FONDA","zip":"12068","state":"NY"},"arcs":[[8628,8629,8630,8631,8632,8633,-8450]]},{"type":"Polygon","properties":{"name":"FORT JOHNSON","zip":"12070","state":"NY"},"arcs":[[8634,-8451,-8634]]},{"type":"Polygon","properties":{"name":"FULTONHAM","zip":"12071","state":"NY"},"arcs":[[8635,8636,8637]]},{"type":"Polygon","properties":{"name":"FULTONVILLE","zip":"12072","state":"NY"},"arcs":[[8638,-8629,-8449,-8623]]},{"type":"Polygon","properties":{"name":"GALWAY","zip":"12074","state":"NY"},"arcs":[[-8510,8639,-8492,-8481,8640,-8455]]},{"type":"Polygon","properties":{"name":"GHENT","zip":"12075","state":"NY"},"arcs":[[8641,8642,8643,8644,-8545]]},{"type":"Polygon","properties":{"name":"GILBOA","zip":"12076","state":"NY"},"arcs":[[8645,8646,8647,8648,8649,8650,8651,8652]]},{"type":"Polygon","properties":{"name":"GLENMONT","zip":"12077","state":"NY"},"arcs":[[8653,-8592,8654,8655,8656]]},{"type":"Polygon","properties":{"name":"GLOVERSVILLE","zip":"12078","state":"NY"},"arcs":[[-8453,8657,-8532,8658,8659,-8506]]},{"type":"Polygon","properties":{"name":"GREENVILLE","zip":"12083","state":"NY"},"arcs":[[8660,8661,8662,8663,8664,-8434,-8564,8665,-8598,8666,8667,8668]]},{"type":"Polygon","properties":{"name":"GUILDERLAND","zip":"12084","state":"NY"},"arcs":[[8669,-8447,8670,8671]]},{"type":"Polygon","properties":{"name":"HANNACROIX","zip":"12087","state":"NY"},"arcs":[[-8563,8672,8673,-8553,-8599,-8666]]},{"type":"Polygon","properties":{"name":"HOOSICK FALLS","zip":"12090","state":"NY"},"arcs":[[8674,-8514,-8594,-4371,-4365,-4342,8675]]},{"type":"Polygon","properties":{"name":"HOWES CAVE","zip":"12092","state":"NY"},"arcs":[[8676,-8560,-8522,8677,-8624,-8581]]},{"type":"Polygon","properties":{"name":"JEFFERSON","zip":"12093","state":"NY"},"arcs":[[8678,8679,8680,-8540,8681,8682,-8650,8683,8684]]},{"type":"Polygon","properties":{"name":"JOHNSONVILLE","zip":"12094","state":"NY"},"arcs":[[8685,8686,-8515,-8675,8687,-8578]]},{"type":"Polygon","properties":{"name":"JOHNSTOWN","zip":"12095","state":"NY"},"arcs":[[8688,8689,-8533,-8658,-8452,-8635,-8633]]},{"type":"Polygon","properties":{"name":"KINDERHOOK","zip":"12106","state":"NY"},"arcs":[[8690,8691,8692,-8644,8693]]},{"type":"Polygon","properties":{"name":"LAKE PLEASANT","zip":"12108","state":"NY"},"arcs":[[8694,8695,8696,8697,8698,-8529]]},{"type":"Polygon","properties":{"name":"LATHAM","zip":"12110","state":"NY"},"arcs":[[8699,8700,8701,8702,-8615,-8569]]},{"type":"Polygon","properties":{"name":"MALDEN BRIDGE","zip":"12115","state":"NY"},"arcs":[[8703,8704,8705]]},{"type":"Polygon","properties":{"name":"MARYLAND","zip":"12116","state":"NY"},"arcs":[[8706,8707,8708,8709,8710]]},{"type":"Polygon","properties":{"name":"MAYFIELD","zip":"12117","state":"NY"},"arcs":[[8711,-8507,-8660]]},{"type":"Polygon","properties":{"name":"MECHANICVILLE","zip":"12118","state":"NY"},"arcs":[[8712,-8487,-8490,8713,8714,8715,8716,-8619]]},{"type":"Polygon","properties":{"name":"MEDUSA","zip":"12120","state":"NY"},"arcs":[[8717,8718,8719,8720,8721,-8664]]},{"type":"Polygon","properties":{"name":"MELROSE","zip":"12121","state":"NY"},"arcs":[[8722,8723,8724,8725]]},{"type":"Polygon","properties":{"name":"MIDDLEBURGH","zip":"12122","state":"NY"},"arcs":[[8726,8727,-8638,8728,-8497,8729,8730,-8651,-8683]]},{"type":"Polygon","properties":{"name":"NASSAU","zip":"12123","state":"NY"},"arcs":[[8731,-8705,8732,8733,-8535,-8607,-8471,-8611,-8604,-8504]]},{"type":"Polygon","properties":{"name":"NEW LEBANON","zip":"12125","state":"NY"},"arcs":[[-1023,-8521,-8606,-8610,8734]]},{"type":"Polygon","properties":{"name":"NORTHVILLE","zip":"12134","state":"NY"},"arcs":[[8735,-8508,-8712,-8659,-8531,8736,8737]]},{"type":"Polygon","properties":{"name":"OLD CHATHAM","zip":"12136","state":"NY"},"arcs":[[-8547,8738,-8706,-8732,-8503,-8603]]},{"type":"Polygon","properties":{"name":"PATTERSONVILLE","zip":"12137","state":"NY"},"arcs":[[8739,-8583,-8458]]},{"type":"Polygon","properties":{"name":"PETERSBURG","zip":"12138","state":"NY"},"arcs":[[8740,8741,-8478,-8579,-8688,-8676,-4368,-4370,-1109,-8496]]},{"type":"Polygon","properties":{"name":"PISECO","zip":"12139","state":"NY"},"arcs":[[-8528,8742,8743,8744,8745,8746,-8695]]},{"type":"Polygon","properties":{"name":"POESTENKILL","zip":"12140","state":"NY"},"arcs":[[8747,8748,-8475]]},{"type":"Polygon","properties":{"name":"RAVENA","zip":"12143","state":"NY"},"arcs":[[-8628,8749,8750,8751,-8673,-8566]]},{"type":"Polygon","properties":{"name":"RENSSELAER","zip":"12144","state":"NY"},"arcs":[[-8538,8752,8753,8754,8755,-8608]]},{"type":"Polygon","properties":{"name":"RENSSELAERVILLE","zip":"12147","state":"NY"},"arcs":[[8756,-8721,8757,-8730,-8502]]},{"type":"Polygon","properties":{"name":"REXFORD","zip":"12148","state":"NY"},"arcs":[[8758,-8511,-8484,-8617,8759,-8438]]},{"type":"Polygon","properties":{"name":"RICHMONDVILLE","zip":"12149","state":"NY"},"arcs":[[8760,8761,8762,-8556]]},{"type":"Polygon","properties":{"name":"ROTTERDAM JUNCTION","zip":"12150","state":"NY"},"arcs":[[8763,8764,-8457]]},{"type":"Polygon","properties":{"name":"ROUND LAKE","zip":"12151","state":"NY"},"arcs":[[-8488,-8713,-8618]]},{"type":"Polygon","properties":{"name":"SAND LAKE","zip":"12153","state":"NY"},"arcs":[[8765,-8479,-8742,8766]]},{"type":"Polygon","properties":{"name":"SCHAGHTICOKE","zip":"12154","state":"NY"},"arcs":[[8767,8768,-8517,8769,-8724]]},{"type":"Polygon","properties":{"name":"SCHENEVUS","zip":"12155","state":"NY"},"arcs":[[8770,-8680,8771,-8709,8772,8773,8774,8775]]},{"type":"Polygon","properties":{"name":"SCHODACK LANDING","zip":"12156","state":"NY"},"arcs":[[-8536,-8734,8776,-8692,8777,8778]]},{"type":"Polygon","properties":{"name":"SCHOHARIE","zip":"12157","state":"NY"},"arcs":[[8779,-8561,-8677,-8580,-8498,-8729,-8637]]},{"type":"Polygon","properties":{"name":"SELKIRK","zip":"12158","state":"NY"},"arcs":[[-8750,-8627,-8586,-8654,8780]]},{"type":"Polygon","properties":{"name":"SLINGERLANDS","zip":"12159","state":"NY"},"arcs":[[8781,8782,8783,-8589]]},{"type":"Polygon","properties":{"name":"SLOANSVILLE","zip":"12160","state":"NY"},"arcs":[[-8525,8784,8785,-8621,-8678]]},{"type":"Polygon","properties":{"name":"SPECULATOR","zip":"12164","state":"NY"},"arcs":[[8786,8787,-8698]]},{"type":"Polygon","properties":{"name":"SPENCERTOWN","zip":"12165","state":"NY"},"arcs":[[8788,-8543,-8463]]},{"type":"Polygon","properties":{"name":"SPRAKERS","zip":"12166","state":"NY"},"arcs":[[8789,8790,-8630,-8639,-8622,-8786,8791]]},{"type":"Polygon","properties":{"name":"STAMFORD","zip":"12167","state":"NY"},"arcs":[[8792,8793,8794,8795,8796,8797,-8684,-8649]]},{"type":"Polygon","properties":{"name":"STEPHENTOWN","zip":"12168","state":"NY"},"arcs":[[-1066,-1024,-8735,-8612,-8469,8798,-8767,-8741,-8495]]},{"type":"Polygon","properties":{"name":"STEPHENTOWN","zip":"12169","state":"NY"},"arcs":[[-8468,-8766,-8799]]},{"type":"Polygon","properties":{"name":"STILLWATER","zip":"12170","state":"NY"},"arcs":[[-8715,8799,8800,8801]]},{"type":"Polygon","properties":{"name":"STUYVESANT","zip":"12173","state":"NY"},"arcs":[[-8778,-8691,8802,8803]]},{"type":"Polygon","properties":{"name":"SUMMIT","zip":"12175","state":"NY"},"arcs":[[8804,-8614,8805,-8762,8806,-8727,-8682,-8542]]},{"type":"Polygon","properties":{"name":"SURPRISE","zip":"12176","state":"NY"},"arcs":[[8807,-8667,-8597]]},{"type":"Polygon","properties":{"name":"TROY","zip":"12180","state":"NY"},"arcs":[[8808,-8754,8809,8810,-8726,8811,-8686,-8577,-8476,-8749]]},{"type":"Polygon","properties":{"name":"TROY","zip":"12182","state":"NY"},"arcs":[[-8723,-8811,8812]]},{"type":"Polygon","properties":{"name":"TROY","zip":"12183","state":"NY"},"arcs":[[8813,-8567,8814]]},{"type":"Polygon","properties":{"name":"VALATIE","zip":"12184","state":"NY"},"arcs":[[-8777,-8733,-8704,-8739,-8546,-8645,-8693]]},{"type":"Polygon","properties":{"name":"VALLEY FALLS","zip":"12185","state":"NY"},"arcs":[[-8770,-8516,-8687,-8812,-8725]]},{"type":"Polygon","properties":{"name":"VOORHEESVILLE","zip":"12186","state":"NY"},"arcs":[[-8440,-8670,-8782,-8588,-8626,-8551,8815,-8601]]},{"type":"Polygon","properties":{"name":"WARNERVILLE","zip":"12187","state":"NY"},"arcs":[[-8728,-8807,-8761,-8562,-8780,-8636]]},{"type":"Polygon","properties":{"name":"WATERFORD","zip":"12188","state":"NY"},"arcs":[[-8571,-8620,-8717,8816]]},{"type":"Polygon","properties":{"name":"WATERVLIET","zip":"12189","state":"NY"},"arcs":[[8817,-8700,-8568,-8814,8818,8819]]},{"type":"Polygon","properties":{"name":"WELLS","zip":"12190","state":"NY"},"arcs":[[8820,-8737,-8530,-8699,-8788,8821,8822,8823]]},{"type":"Polygon","properties":{"name":"WEST COXSACKIE","zip":"12192","state":"NY"},"arcs":[[-8674,-8752,8824,-8575,-8554]]},{"type":"Polygon","properties":{"name":"WESTERLO","zip":"12193","state":"NY"},"arcs":[[-8665,-8722,-8757,-8501,-8602,-8816,-8550,-8625]]},{"type":"Polygon","properties":{"name":"WEST SAND LAKE","zip":"12196","state":"NY"},"arcs":[[-8609,-8756,8825,-8473]]},{"type":"Polygon","properties":{"name":"WORCESTER","zip":"12197","state":"NY"},"arcs":[[-8541,-8681,-8771,8826,8827,-8557,-8763,-8806,-8613,-8805]]},{"type":"Polygon","properties":{"name":"WYNANTSKILL","zip":"12198","state":"NY"},"arcs":[[-8755,-8809,-8748,-8474,-8826]]},{"type":"Polygon","properties":{"name":"ALBANY","zip":"12202","state":"NY"},"arcs":[[8828,8829,8830,8831,8832,-8656]]},{"type":"Polygon","properties":{"name":"ALBANY","zip":"12203","state":"NY"},"arcs":[[8833,8834,8835,-8783,-8672,8836,8837]]},{"type":"Polygon","properties":{"name":"ALBANY","zip":"12204","state":"NY"},"arcs":[[8838,8839,8840,-8820,8841]]},{"type":"Polygon","properties":{"name":"ALBANY","zip":"12205","state":"NY"},"arcs":[[8842,8843,8844,-8702,8845,8846,-8838]]},{"type":"Polygon","properties":{"name":"ALBANY","zip":"12206","state":"NY"},"arcs":[[8847,-8834,-8847,8848]]},{"type":"Polygon","properties":{"name":"ALBANY","zip":"12207","state":"NY"},"arcs":[[-8832,8849,-8839,8850]]},{"type":"Polygon","properties":{"name":"ALBANY","zip":"12208","state":"NY"},"arcs":[[-8836,-8830,8851,-8590,-8784]]},{"type":"Polygon","properties":{"name":"ALBANY","zip":"12209","state":"NY"},"arcs":[[-8655,-8591,-8852,-8829]]},{"type":"Polygon","properties":{"name":"ALBANY","zip":"12210","state":"NY"},"arcs":[[-8831,-8835,-8848,-8840,-8850]]},{"type":"Polygon","properties":{"name":"ALBANY","zip":"12211","state":"NY"},"arcs":[[-8849,-8846,-8701,-8818,-8841]]},{"type":"Polygon","properties":{"name":"SCHENECTADY","zip":"12302","state":"NY"},"arcs":[[8852,8853,8854,8855,-8764,-8456,-8641,-8480,-8512,-8759,-8437]]},{"type":"Polygon","properties":{"name":"SCHENECTADY","zip":"12303","state":"NY"},"arcs":[[-8671,-8446,8856,8857,8858,8859,-8843,-8837]]},{"type":"Polygon","properties":{"name":"SCHENECTADY","zip":"12304","state":"NY"},"arcs":[[8860,8861,8862,-8844,-8860]]},{"type":"Polygon","properties":{"name":"SCHENECTADY","zip":"12305","state":"NY"},"arcs":[[8863,-8855,8864,8865,-8858]]},{"type":"Polygon","properties":{"name":"SCHENECTADY","zip":"12306","state":"NY"},"arcs":[[-8584,-8740,-8765,-8856,-8864,-8857,-8445,-8593]]},{"type":"Polygon","properties":{"name":"SCHENECTADY","zip":"12307","state":"NY"},"arcs":[[-8859,-8866,8866,-8861]]},{"type":"Polygon","properties":{"name":"SCHENECTADY","zip":"12308","state":"NY"},"arcs":[[-8867,-8865,-8854,8867,-8862]]},{"type":"Polygon","properties":{"name":"SCHENECTADY","zip":"12309","state":"NY"},"arcs":[[-8868,-8853,-8439,-8760,-8616,-8703,-8845,-8863]]},{"type":"Polygon","properties":{"name":"KINGSTON","zip":"12401","state":"NY"},"arcs":[[8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879]]},{"type":"Polygon","properties":{"name":"ACCORD","zip":"12404","state":"NY"},"arcs":[[8880,8881,8882,8883,8884]]},{"type":"Polygon","properties":{"name":"ACRA","zip":"12405","state":"NY"},"arcs":[[8885,8886,8887,8888,-8661,8889,8890]]},{"type":"Polygon","properties":{"name":"ARKVILLE","zip":"12406","state":"NY"},"arcs":[[8891,8892,8893,8894,8895]]},{"type":"Polygon","properties":{"name":"BEARSVILLE","zip":"12409","state":"NY"},"arcs":[[8896,8897,8898,8899,8900,8901]]},{"type":"Polygon","properties":{"name":"BIG INDIAN","zip":"12410","state":"NY"},"arcs":[[8902,8903,8904,8905,8906,8907,-8896]]},{"type":"Polygon","properties":{"name":"BOICEVILLE","zip":"12412","state":"NY"},"arcs":[[8908,8909,8910,8911]]},{"type":"Polygon","properties":{"name":"CAIRO","zip":"12413","state":"NY"},"arcs":[[8912,8913,8914,8915,-8890,-8669]]},{"type":"Polygon","properties":{"name":"CATSKILL","zip":"12414","state":"NY"},"arcs":[[8916,8917,8918,-8914,8919,8920,-8600,-8573,-8460,8921,8922,8923]]},{"type":"Polygon","properties":{"name":"CHICHESTER","zip":"12416","state":"NY"},"arcs":[[8924,8925,8926,8927,8928]]},{"type":"Polygon","properties":{"name":"CORNWALLVILLE","zip":"12418","state":"NY"},"arcs":[[8929,-8887,8930,-8653,8931,8932]]},{"type":"Polygon","properties":{"name":"COTTEKILL","zip":"12419","state":"NY"},"arcs":[[8933,8934,8935,-8869]]},{"type":"Polygon","properties":{"name":"DURHAM","zip":"12422","state":"NY"},"arcs":[[8936,-8933,8937,8938]]},{"type":"Polygon","properties":{"name":"EAST DURHAM","zip":"12423","state":"NY"},"arcs":[[8939,-8888,-8930,-8937,8940,-8718,-8663]]},{"type":"Polygon","properties":{"name":"EAST JEWETT","zip":"12424","state":"NY"},"arcs":[[8941,8942,8943,8944,8945]]},{"type":"Polygon","properties":{"name":"ELKA PARK","zip":"12427","state":"NY"},"arcs":[[8946,8947,8948,8949,8950,-8902]]},{"type":"Polygon","properties":{"name":"ELLENVILLE","zip":"12428","state":"NY"},"arcs":[[8951,8952,8953,8954,8955,8956,8957,8958]]},{"type":"Polygon","properties":{"name":"FLEISCHMANNS","zip":"12430","state":"NY"},"arcs":[[8959,-8903,-8895,8960,8961,8962,8963]]},{"type":"Polygon","properties":{"name":"FREEHOLD","zip":"12431","state":"NY"},"arcs":[[-8940,-8662,-8889]]},{"type":"Polygon","properties":{"name":"GLENFORD","zip":"12433","state":"NY"},"arcs":[[8964,8965,-8898,8966]]},{"type":"Polygon","properties":{"name":"GREENFIELD PARK","zip":"12435","state":"NY"},"arcs":[[8967,8968,8969,-8953]]},{"type":"Polygon","properties":{"name":"HENSONVILLE","zip":"12439","state":"NY"},"arcs":[[8970,8971,-8946]]},{"type":"Polygon","properties":{"name":"HIGH FALLS","zip":"12440","state":"NY"},"arcs":[[8972,-8935,8973,8974,8975,-8885]]},{"type":"Polygon","properties":{"name":"HUNTER","zip":"12442","state":"NY"},"arcs":[[8976,8977,8978,8979,8980,-8943,8981]]},{"type":"Polygon","properties":{"name":"HURLEY","zip":"12443","state":"NY"},"arcs":[[8982,-8873]]},{"type":"Polygon","properties":{"name":"JEWETT","zip":"12444","state":"NY"},"arcs":[[-8981,8983,8984,-8944]]},{"type":"Polygon","properties":{"name":"KERHONKSON","zip":"12446","state":"NY"},"arcs":[[8985,8986,8987,-8957,8988,8989,8990,-8882]]},{"type":"Polygon","properties":{"name":"LANESVILLE","zip":"12450","state":"NY"},"arcs":[[8991,-8978,8992,-8947,8993,-8927]]},{"type":"Polygon","properties":{"name":"LEEDS","zip":"12451","state":"NY"},"arcs":[[-8668,-8808,-8596,-8921,-8920,-8913]]},{"type":"Polygon","properties":{"name":"MAPLECREST","zip":"12454","state":"NY"},"arcs":[[8994,8995,-8982,-8942,-8972,8996,-8886]]},{"type":"Polygon","properties":{"name":"MARGARETVILLE","zip":"12455","state":"NY"},"arcs":[[8997,8998,8999,9000,-8961,-8894]]},{"type":"Polygon","properties":{"name":"MOUNT TREMPER","zip":"12457","state":"NY"},"arcs":[[9001,-8929,9002,-9004,-8900,-8912]]},{"type":"Polygon","properties":{"name":"NAPANOCH","zip":"12458","state":"NY"},"arcs":[[-8956,9004,9005,-8989]]},{"type":"Polygon","properties":{"name":"OAK HILL","zip":"12460","state":"NY"},"arcs":[[9006,-8719,-8941,-8939]]},{"type":"Polygon","properties":{"name":"OLIVEBRIDGE","zip":"12461","state":"NY"},"arcs":[[9007,-8883,-8991,9008,9009,9010,9011,-8871]]},{"type":"Polygon","properties":{"name":"PALENVILLE","zip":"12463","state":"NY"},"arcs":[[9012,-8924,9013,-8949]]},{"type":"Polygon","properties":{"name":"PHOENICIA","zip":"12464","state":"NY"},"arcs":[[9014,-8907,9015,9016,-8925,-9002,-8911,9017,9018,9019]]},{"type":"Polygon","properties":{"name":"PINE HILL","zip":"12465","state":"NY"},"arcs":[[-8960,9020,-8904]]},{"type":"Polygon","properties":{"name":"PORT EWEN","zip":"12466","state":"NY"},"arcs":[[9021,-8878,9022]]},{"type":"Polygon","properties":{"name":"PRATTSVILLE","zip":"12468","state":"NY"},"arcs":[[9023,-8963,9024,-8647,9025,-8984,-8980]]},{"type":"Polygon","properties":{"name":"PRESTON HOLLOW","zip":"12469","state":"NY"},"arcs":[[-8932,-8652,-8731,-8758,-8720,-9007,-8938]]},{"type":"Polygon","properties":{"name":"PURLING","zip":"12470","state":"NY"},"arcs":[[9026,-8915,-8919]]},{"type":"Polygon","properties":{"name":"ROSENDALE","zip":"12472","state":"NY"},"arcs":[[9027,9028,-8974,-8934,-8880,9029]]},{"type":"Polygon","properties":{"name":"ROUND TOP","zip":"12473","state":"NY"},"arcs":[[-8891,-8916,-9027,-8918,9030,-8995]]},{"type":"Polygon","properties":{"name":"ROXBURY","zip":"12474","state":"NY"},"arcs":[[-9001,9031,9032,-8793,-8648,-9025,-8962]]},{"type":"Polygon","properties":{"name":"SAUGERTIES","zip":"12477","state":"NY"},"arcs":[[-8876,9033,-8950,-9014,-8923,9034]]},{"type":"Polygon","properties":{"name":"SHANDAKEN","zip":"12480","state":"NY"},"arcs":[[-8906,9035,-9016]]},{"type":"Polygon","properties":{"name":"SHOKAN","zip":"12481","state":"NY"},"arcs":[[9036,-8909,-8899,-8966,9037,-9011]]},{"type":"Polygon","properties":{"name":"STONE RIDGE","zip":"12484","state":"NY"},"arcs":[[-8884,-9008,-8870,-8936,-8973]]},{"type":"Polygon","properties":{"name":"TANNERSVILLE","zip":"12485","state":"NY"},"arcs":[[-8977,-8996,-9031,-8917,-9013,-8948,-8993]]},{"type":"Polygon","properties":{"name":"TILLSON","zip":"12486","state":"NY"},"arcs":[[9038,-9028,9039]]},{"type":"Polygon","properties":{"name":"ULSTER PARK","zip":"12487","state":"NY"},"arcs":[[-9030,-8879,-9022,9040,9041,9042,-9040]]},{"type":"Polygon","properties":{"name":"WEST HURLEY","zip":"12491","state":"NY"},"arcs":[[-9038,-8965,9043,-8874,-8983,-8872,-9012]]},{"type":"Polygon","properties":{"name":"WEST KILL","zip":"12492","state":"NY"},"arcs":[[-9036,-8905,-9021,-8964,-9024,-8979,-8992,-8926,-9017]]},{"type":"Polygon","properties":{"name":"WEST SHOKAN","zip":"12494","state":"NY"},"arcs":[[9044,-9018,-8910,-9037,-9010]]},{"type":"Polygon","properties":{"name":"WILLOW","zip":"12495","state":"NY"},"arcs":[[9003,-9003,-8928,-8994,-8901]]},{"type":"Polygon","properties":{"name":"WINDHAM","zip":"12496","state":"NY"},"arcs":[[-8985,-9026,-8646,-8931,-8997,-8971,-8945]]},{"type":"Polygon","properties":{"name":"WOODSTOCK","zip":"12498","state":"NY"},"arcs":[[-9044,-8967,-8897,-8951,-9034,-8875]]},{"type":"Polygon","properties":{"name":"AMENIA","zip":"12501","state":"NY"},"arcs":[[9045,9046,9047,9048,-4974,9049]]},{"type":"Polygon","properties":{"name":"ANCRAM","zip":"12502","state":"NY"},"arcs":[[9050,9051,9052,9053,9054,9055]]},{"type":"Polygon","properties":{"name":"ANCRAMDALE","zip":"12503","state":"NY"},"arcs":[[9056,9057,-9055,9058]]},{"type":"Polygon","properties":{"name":"BARRYTOWN","zip":"12507","state":"NY"},"arcs":[[9059,9060,9061]]},{"type":"Polygon","properties":{"name":"BEACON","zip":"12508","state":"NY"},"arcs":[[9062,9063,-7392,9064]]},{"type":"Polygon","properties":{"name":"CLINTON CORNERS","zip":"12514","state":"NY"},"arcs":[[9065,9066,9067,9068,9069,9070]]},{"type":"Polygon","properties":{"name":"CLINTONDALE","zip":"12515","state":"NY"},"arcs":[[9071,9072,9073]]},{"type":"Polygon","properties":{"name":"COPAKE","zip":"12516","state":"NY"},"arcs":[[-9054,9074,9075,-1100,9076,-9059]]},{"type":"Polygon","properties":{"name":"COPAKE FALLS","zip":"12517","state":"NY"},"arcs":[[9077,-1051,-1101,-9076]]},{"type":"Polygon","properties":{"name":"CORNWALL","zip":"12518","state":"NY"},"arcs":[[-7609,-7615,9078,9079,9080,-7686]]},{"type":"Polygon","properties":{"name":"CORNWALL ON HUDSON","zip":"12520","state":"NY"},"arcs":[[9081,9082,-9080]]},{"type":"Polygon","properties":{"name":"CRARYVILLE","zip":"12521","state":"NY"},"arcs":[[9083,9084,-9052]]},{"type":"Polygon","properties":{"name":"DOVER PLAINS","zip":"12522","state":"NY"},"arcs":[[9085,9086,9087,9088,9089]]},{"type":"Polygon","properties":{"name":"ELIZAVILLE","zip":"12523","state":"NY"},"arcs":[[9090,9091,-9051,9092,9093,9094]]},{"type":"Polygon","properties":{"name":"FISHKILL","zip":"12524","state":"NY"},"arcs":[[-9064,9095,9096,-7393]]},{"type":"Polygon","properties":{"name":"GARDINER","zip":"12525","state":"NY"},"arcs":[[9097,9098,9099,-8986,-8881,-8976]]},{"type":"Polygon","properties":{"name":"GERMANTOWN","zip":"12526","state":"NY"},"arcs":[[9100,9101,9102,-9091]]},{"type":"Polygon","properties":{"name":"HIGHLAND","zip":"12528","state":"NY"},"arcs":[[9103,9104,9105,-9074,9106,-9042,9107]]},{"type":"Polygon","properties":{"name":"HILLSDALE","zip":"12529","state":"NY"},"arcs":[[-9075,-9053,-9085,9108,-8642,-8544,-8789,-8467,-1105,-1052,-9078]]},{"type":"Polygon","properties":{"name":"HOLMES","zip":"12531","state":"NY"},"arcs":[[9109,-7384,9110,9111,9112]]},{"type":"Polygon","properties":{"name":"HOPEWELL JUNCTION","zip":"12533","state":"NY"},"arcs":[[-7496,-7394,-9097,9113,9114,9115,9116,-7382]]},{"type":"Polygon","properties":{"name":"HUDSON","zip":"12534","state":"NY"},"arcs":[[-8803,-8694,-8643,-9109,-9084,-9092,-9103,9117]]},{"type":"Polygon","properties":{"name":"HYDE PARK","zip":"12538","state":"NY"},"arcs":[[9118,9119,9120,9121,9122]]},{"type":"Polygon","properties":{"name":"LAGRANGEVILLE","zip":"12540","state":"NY"},"arcs":[[9123,-9115,9124,9125,9126,9127]]},{"type":"Polygon","properties":{"name":"MARLBORO","zip":"12542","state":"NY"},"arcs":[[9128,9129,-9105,9130,9131]]},{"type":"Polygon","properties":{"name":"MILLBROOK","zip":"12545","state":"NY"},"arcs":[[9132,9133,9134,9135,-9067,9136,-9046,9137,-9089]]},{"type":"Polygon","properties":{"name":"MILLERTON","zip":"12546","state":"NY"},"arcs":[[-1099,-4970,-4929,-4975,-9049,9138,-9057,-9077]]},{"type":"Polygon","properties":{"name":"MILTON","zip":"12547","state":"NY"},"arcs":[[-9104,9139,-9131]]},{"type":"Polygon","properties":{"name":"MODENA","zip":"12548","state":"NY"},"arcs":[[9140,-9099,9141]]},{"type":"Polygon","properties":{"name":"MONTGOMERY","zip":"12549","state":"NY"},"arcs":[[-7626,9142,9143,9144,-7566]]},{"type":"Polygon","properties":{"name":"NEWBURGH","zip":"12550","state":"NY"},"arcs":[[9145,9146,9147,-9129,9148,9149]]},{"type":"Polygon","properties":{"name":"NEW WINDSOR","zip":"12553","state":"NY"},"arcs":[[-7614,9150,9151,-9150,9152,-9082,-9079]]},{"type":"Polygon","properties":{"name":"NEW PALTZ","zip":"12561","state":"NY"},"arcs":[[9153,-9142,-9098,-8975,-9029,-9039,-9043,-9107,-9073]]},{"type":"Polygon","properties":{"name":"PATTERSON","zip":"12563","state":"NY"},"arcs":[[-9110,9154,-5480,-5510,-7369,-7385]]},{"type":"Polygon","properties":{"name":"PAWLING","zip":"12564","state":"NY"},"arcs":[[-5481,-9155,-9113,9155,-9087,9156]]},{"type":"Polygon","properties":{"name":"PINE BUSH","zip":"12566","state":"NY"},"arcs":[[9157,-8958,-8988,9158,9159,-9143,-7579]]},{"type":"Polygon","properties":{"name":"PINE PLAINS","zip":"12567","state":"NY"},"arcs":[[-9048,9160,9161,-9093,-9056,-9058,-9139]]},{"type":"Polygon","properties":{"name":"PLEASANT VALLEY","zip":"12569","state":"NY"},"arcs":[[9162,-9127,9163,9164,-9121,9165,-9135]]},{"type":"Polygon","properties":{"name":"POUGHQUAG","zip":"12570","state":"NY"},"arcs":[[-9112,9166,-9116,-9124,9167,-9133,-9088,-9156]]},{"type":"Polygon","properties":{"name":"RED HOOK","zip":"12571","state":"NY"},"arcs":[[9168,-9062,9169,9170,-9094,-9162,9171,-9071]]},{"type":"Polygon","properties":{"name":"RHINEBECK","zip":"12572","state":"NY"},"arcs":[[-9060,-9169,-9070,9172,9173]]},{"type":"Polygon","properties":{"name":"ROCK TAVERN","zip":"12575","state":"NY"},"arcs":[[9174,-7683,-7567,-9145,-9146,-9152]]},{"type":"Polygon","properties":{"name":"SALISBURY MILLS","zip":"12577","state":"NY"},"arcs":[[-7629,-7684,-9175,-9151,-7613]]},{"type":"Polygon","properties":{"name":"SALT POINT","zip":"12578","state":"NY"},"arcs":[[-9166,-9120,-9068,-9136]]},{"type":"Polygon","properties":{"name":"STAATSBURG","zip":"12580","state":"NY"},"arcs":[[-9173,-9069,-9119,9175]]},{"type":"Polygon","properties":{"name":"STANFORDVILLE","zip":"12581","state":"NY"},"arcs":[[-9066,-9172,-9161,-9047,-9137]]},{"type":"Polygon","properties":{"name":"STORMVILLE","zip":"12582","state":"NY"},"arcs":[[-9167,-9111,-7383,-9117]]},{"type":"Polygon","properties":{"name":"TIVOLI","zip":"12583","state":"NY"},"arcs":[[-9101,-9095,-9171,9176]]},{"type":"Polygon","properties":{"name":"VERBANK","zip":"12585","state":"NY"},"arcs":[[-9128,-9163,-9134,-9168]]},{"type":"Polygon","properties":{"name":"WALDEN","zip":"12586","state":"NY"},"arcs":[[-9144,-9160,9177,-9147]]},{"type":"Polygon","properties":{"name":"WALLKILL","zip":"12589","state":"NY"},"arcs":[[-8987,-9100,-9141,-9154,-9072,-9106,-9130,-9148,-9178,-9159]]},{"type":"Polygon","properties":{"name":"WAPPINGERS FALLS","zip":"12590","state":"NY"},"arcs":[[-9063,9178,9179,9180,-9125,-9114,-9096]]},{"type":"Polygon","properties":{"name":"WASSAIC","zip":"12592","state":"NY"},"arcs":[[9181,-9090,-9138,-9050,-4973,-5445]]},{"type":"Polygon","properties":{"name":"WINGDALE","zip":"12594","state":"NY"},"arcs":[[-5444,-5437,-5482,-9157,-9086,-9182]]},{"type":"Polygon","properties":{"name":"POUGHKEEPSIE","zip":"12601","state":"NY"},"arcs":[[-9122,-9165,9182,-9180,9183]]},{"type":"Polygon","properties":{"name":"POUGHKEEPSIE","zip":"12603","state":"NY"},"arcs":[[-9183,-9164,-9126,-9181]]},{"type":"Polygon","properties":{"name":"MONTICELLO","zip":"12701","state":"NY"},"arcs":[[9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194]]},{"type":"Polygon","properties":{"name":"BARRYVILLE","zip":"12719","state":"NY"},"arcs":[[9195,9196,9197,9198,9199,9200,9201,9202]]},{"type":"Polygon","properties":{"name":"BETHEL","zip":"12720","state":"NY"},"arcs":[[9203,9204,9205,9206,9207]]},{"type":"Polygon","properties":{"name":"BLOOMINGBURG","zip":"12721","state":"NY"},"arcs":[[-7624,9208,-8959,-9158,-7578]]},{"type":"Polygon","properties":{"name":"CALLICOON","zip":"12723","state":"NY"},"arcs":[[9209,9210,9211,9212,9213,9214,9215]]},{"type":"Polygon","properties":{"name":"CLARYVILLE","zip":"12725","state":"NY"},"arcs":[[9216,9217,9218,-8892,-8908,-9015]]},{"type":"Polygon","properties":{"name":"COCHECTON","zip":"12726","state":"NY"},"arcs":[[9219,9220,-9216,9221,9222,-9205,9223,9224,9225,9226]]},{"type":"Polygon","properties":{"name":"COCHECTON CENTER","zip":"12727","state":"NY"},"arcs":[[9227,-9224,-9204]]},{"type":"Polygon","properties":{"name":"CUDDEBACKVILLE","zip":"12729","state":"NY"},"arcs":[[9228,9229,9230,9231,-7654,9232]]},{"type":"Polygon","properties":{"name":"ELDRED","zip":"12732","state":"NY"},"arcs":[[9233,9234,-9196,9235,9236,-9195,9237]]},{"type":"Polygon","properties":{"name":"FALLSBURG","zip":"12733","state":"NY"},"arcs":[[9238,9239,9240,9241]]},{"type":"Polygon","properties":{"name":"FERNDALE","zip":"12734","state":"NY"},"arcs":[[9242,9243,9244,-9188,9245]]},{"type":"Polygon","properties":{"name":"FREMONT CENTER","zip":"12736","state":"NY"},"arcs":[[9246,9247,9248,9249,-9213]]},{"type":"Polygon","properties":{"name":"GLEN SPEY","zip":"12737","state":"NY"},"arcs":[[9250,-9197,-9235,9251,-9238,-9194,9252,9253,9254]]},{"type":"Polygon","properties":{"name":"GLEN WILD","zip":"12738","state":"NY"},"arcs":[[9255,9256,-9191,9257,9258]]},{"type":"Polygon","properties":{"name":"GODEFFROY","zip":"12739","state":"NY"},"arcs":[[9259,9260,-9233,-7653,-7621]]},{"type":"Polygon","properties":{"name":"GRAHAMSVILLE","zip":"12740","state":"NY"},"arcs":[[-8955,9261,9262,-9217,-9020,9263,-9005]]},{"type":"Polygon","properties":{"name":"HANKINS","zip":"12741","state":"NY"},"arcs":[[9264,9265,-9247,-9212]]},{"type":"Polygon","properties":{"name":"HIGHLAND LAKE","zip":"12743","state":"NY"},"arcs":[[-9252,-9234]]},{"type":"Polygon","properties":{"name":"HUGUENOT","zip":"12746","state":"NY"},"arcs":[[9266,9267,-9229,-9261]]},{"type":"Polygon","properties":{"name":"HURLEYVILLE","zip":"12747","state":"NY"},"arcs":[[-9245,9268,9269,9270,-9239,9271,-9189]]},{"type":"Polygon","properties":{"name":"JEFFERSONVILLE","zip":"12748","state":"NY"},"arcs":[[9272,9273,9274,9275,9276,-9222,-9215]]},{"type":"Polygon","properties":{"name":"LAKE HUNTINGTON","zip":"12752","state":"NY"},"arcs":[[9277,-9226]]},{"type":"Polygon","properties":{"name":"LIBERTY","zip":"12754","state":"NY"},"arcs":[[-9244,9278,9279,9280,9281,-9269]]},{"type":"Polygon","properties":{"name":"LIVINGSTON MANOR","zip":"12758","state":"NY"},"arcs":[[9282,9283,-8998,-8893,-9219,9284,9285,-9280,9286,9287,-9275]]},{"type":"Polygon","properties":{"name":"LONG EDDY","zip":"12760","state":"NY"},"arcs":[[-9266,9288,9289,9290,9291,-9248]]},{"type":"Polygon","properties":{"name":"MONGAUP VALLEY","zip":"12762","state":"NY"},"arcs":[[-9187,9292,9293,-9246]]},{"type":"Polygon","properties":{"name":"MOUNTAIN DALE","zip":"12763","state":"NY"},"arcs":[[9294,-8968,9295,9296,-9256]]},{"type":"Polygon","properties":{"name":"NARROWSBURG","zip":"12764","state":"NY"},"arcs":[[9297,-9202,9298,9299,9300,-9227,-9278,-9225,-9228,-9208,9301,-9185,-9237]]},{"type":"Polygon","properties":{"name":"NEVERSINK","zip":"12765","state":"NY"},"arcs":[[9302,-9270,-9282,9303,-9285,-9218,-9263]]},{"type":"Polygon","properties":{"name":"NORTH BRANCH","zip":"12766","state":"NY"},"arcs":[[-9214,-9250,9304,-9273]]},{"type":"Polygon","properties":{"name":"PARKSVILLE","zip":"12768","state":"NY"},"arcs":[[-9286,-9304,-9281]]},{"type":"Polygon","properties":{"name":"POND EDDY","zip":"12770","state":"NY"},"arcs":[[9305,-9198,-9251]]},{"type":"Polygon","properties":{"name":"PORT JERVIS","zip":"12771","state":"NY"},"arcs":[[-7688,-6038,-6350,9306,9307,-9267,-9260,-7620]]},{"type":"Polygon","properties":{"name":"ROCK HILL","zip":"12775","state":"NY"},"arcs":[[9308,9309,-9192,-9257,-9297]]},{"type":"Polygon","properties":{"name":"ROSCOE","zip":"12776","state":"NY"},"arcs":[[-9305,-9249,-9292,9310,9311,9312,9313,-9283,-9274]]},{"type":"Polygon","properties":{"name":"FORESTBURGH","zip":"12777","state":"NY"},"arcs":[[9314,-9253,-9193,-9310,9315,-9231]]},{"type":"Polygon","properties":{"name":"SOUTH FALLSBURG","zip":"12779","state":"NY"},"arcs":[[9316,-9258,-9190,-9272,-9242]]},{"type":"Polygon","properties":{"name":"SPARROW BUSH","zip":"12780","state":"NY"},"arcs":[[-9308,9317,9318,-9254,-9315,-9230,-9268]]},{"type":"Polygon","properties":{"name":"SUNDOWN","zip":"12782","state":"NY"},"arcs":[[-9006,-9264,-9019,-9045,-9009,-8990]]},{"type":"Polygon","properties":{"name":"SWAN LAKE","zip":"12783","state":"NY"},"arcs":[[-9277,9319,9320,-9279,-9243,-9294,9321,-9206,-9223]]},{"type":"Polygon","properties":{"name":"WHITE LAKE","zip":"12786","state":"NY"},"arcs":[[-9302,-9207,-9322,-9293,-9186]]},{"type":"Polygon","properties":{"name":"WHITE SULPHUR SPRINGS","zip":"12787","state":"NY"},"arcs":[[9286,-9323,9320]]},{"type":"Polygon","properties":{"name":"WOODBOURNE","zip":"12788","state":"NY"},"arcs":[[-9303,-9262,-8954,-8970,9323,-9240,-9271]]},{"type":"Polygon","properties":{"name":"WOODRIDGE","zip":"12789","state":"NY"},"arcs":[[-9259,-9317,-9241,-9324,-8969,-9295]]},{"type":"Polygon","properties":{"name":"WURTSBORO","zip":"12790","state":"NY"},"arcs":[[-7655,-9232,-9316,-9309,-9296,-8952,-9209,-7623]]},{"type":"Polygon","properties":{"name":"YOUNGSVILLE","zip":"12791","state":"NY"},"arcs":[[-9276,-9288,-9323,-9320]]},{"type":"Polygon","properties":{"name":"YULAN","zip":"12792","state":"NY"},"arcs":[[-9298,-9236,-9203]]},{"type":"Polygon","properties":{"name":"QUEENSBURY","zip":"12804","state":"NY"},"arcs":[[9324,9325,9326,9327,9328,9329]]},{"type":"Polygon","properties":{"name":"ADIRONDACK","zip":"12808","state":"NY"},"arcs":[[9330,9331,9332,9333]]},{"type":"Polygon","properties":{"name":"ARGYLE","zip":"12809","state":"NY"},"arcs":[[9334,9335,9336,9337,9338,9339,9340]]},{"type":"Polygon","properties":{"name":"ATHOL","zip":"12810","state":"NY"},"arcs":[[9341,9342,9343,9344]]},{"type":"Polygon","properties":{"name":"BLUE MOUNTAIN LAKE","zip":"12812","state":"NY"},"arcs":[[9345,-8696,-8747,9346,9347,9348]]},{"type":"Polygon","properties":{"name":"BOLTON LANDING","zip":"12814","state":"NY"},"arcs":[[9349,9350,9351,9352,9353,9354,9355]]},{"type":"Polygon","properties":{"name":"BRANT LAKE","zip":"12815","state":"NY"},"arcs":[[9356,-9331,9357,9358,-9354]]},{"type":"Polygon","properties":{"name":"CAMBRIDGE","zip":"12816","state":"NY"},"arcs":[[9359,9360,9361,-4350,-4373,-8595,-8519]]},{"type":"Polygon","properties":{"name":"CHESTERTOWN","zip":"12817","state":"NY"},"arcs":[[9362,9363,9364,-9332,-9357,-9353]]},{"type":"Polygon","properties":{"name":"COMSTOCK","zip":"12821","state":"NY"},"arcs":[[9365,9366,9367,9368]]},{"type":"Polygon","properties":{"name":"CORINTH","zip":"12822","state":"NY"},"arcs":[[9369,9370,9371,9372,9373]]},{"type":"Polygon","properties":{"name":"COSSAYUNA","zip":"12823","state":"NY"},"arcs":[[9374,9375,-9335]]},{"type":"Polygon","properties":{"name":"DIAMOND POINT","zip":"12824","state":"NY"},"arcs":[[9376,9377,9378,-9351,9379]]},{"type":"Polygon","properties":{"name":"FORT ANN","zip":"12827","state":"NY"},"arcs":[[9380,-9380,-9350,9381,9382,9383,-9367,9384,9385,-9338,9386,9387,-9328]]},{"type":"MultiPolygon","properties":{"name":"FORT EDWARD","zip":"12828","state":"NY"},"arcs":[[[9388,9389,9390,-9387,-9337]],[[9391,9392]]]},{"type":"Polygon","properties":{"name":"GANSEVOORT","zip":"12831","state":"NY"},"arcs":[[9393,9394,9395,-9372,9396,-9392,9397]]},{"type":"Polygon","properties":{"name":"GRANVILLE","zip":"12832","state":"NY"},"arcs":[[9398,-9385,-9366,9399,9400,9401,-4709,-4712,-4714,9402,-9340]]},{"type":"Polygon","properties":{"name":"GREENFIELD CENTER","zip":"12833","state":"NY"},"arcs":[[9403,9404,9405,-9373,-9396]]},{"type":"Polygon","properties":{"name":"GREENWICH","zip":"12834","state":"NY"},"arcs":[[-8518,-8769,9406,-9389,-9336,-9376,9407,-9360]]},{"type":"Polygon","properties":{"name":"HADLEY","zip":"12835","state":"NY"},"arcs":[[9408,9409,-8738,-8821,9410,9411,-9370]]},{"type":"Polygon","properties":{"name":"HAGUE","zip":"12836","state":"NY"},"arcs":[[9412,9413,9414,9415,-9355,-9359]]},{"type":"Polygon","properties":{"name":"HAMPTON","zip":"12837","state":"NY"},"arcs":[[9416,-4661,-4700,-4710,-9402]]},{"type":"Polygon","properties":{"name":"HARTFORD","zip":"12838","state":"NY"},"arcs":[[-9386,-9399,-9339]]},{"type":"Polygon","properties":{"name":"HUDSON FALLS","zip":"12839","state":"NY"},"arcs":[[-9329,-9388,-9391,9417]]},{"type":"Polygon","properties":{"name":"INDIAN LAKE","zip":"12842","state":"NY"},"arcs":[[-9346,9418,9419,9420,-8822,-8787,-8697]]},{"type":"Polygon","properties":{"name":"JOHNSBURG","zip":"12843","state":"NY"},"arcs":[[9421,-8823,-9421,9422,9423,9424,-9343]]},{"type":"Polygon","properties":{"name":"KATTSKILL BAY","zip":"12844","state":"NY"},"arcs":[[-9327,9425,-9377,-9381]]},{"type":"Polygon","properties":{"name":"LAKE GEORGE","zip":"12845","state":"NY"},"arcs":[[9426,9427,-9378,-9426,-9326]]},{"type":"Polygon","properties":{"name":"LAKE LUZERNE","zip":"12846","state":"NY"},"arcs":[[9428,-9427,-9325,9429]]},{"type":"Polygon","properties":{"name":"LONG LAKE","zip":"12847","state":"NY"},"arcs":[[9430,9431,9432,9433,9434,-9348,9435,-8745,9436]]},{"type":"Polygon","properties":{"name":"MIDDLE GROVE","zip":"12850","state":"NY"},"arcs":[[-8493,-8640,-8509,-8736,-9410,9437,-9405,9438]]},{"type":"Polygon","properties":{"name":"MINERVA","zip":"12851","state":"NY"},"arcs":[[9439,9440]]},{"type":"Polygon","properties":{"name":"NEWCOMB","zip":"12852","state":"NY"},"arcs":[[9441,9442,9443,9444,9445,-9434]]},{"type":"MultiPolygon","properties":{"name":"NORTH CREEK","zip":"12853","state":"NY"},"arcs":[[[9446,-9365,9447,9448,-9441,9449]],[[-9424,9450,9451]]]},{"type":"Polygon","properties":{"name":"NORTH GRANVILLE","zip":"12854","state":"NY"},"arcs":[[9452,-9400,-9369]]},{"type":"Polygon","properties":{"name":"NORTH HUDSON","zip":"12855","state":"NY"},"arcs":[[9453,9454,9455,-9445,9456,9457,9458]]},{"type":"Polygon","properties":{"name":"OLMSTEDVILLE","zip":"12857","state":"NY"},"arcs":[[-9440,-9449,9459,-9419,-9349,-9435,-9446,-9456,9460,9461,-9450]]},{"type":"Polygon","properties":{"name":"PARADOX","zip":"12858","state":"NY"},"arcs":[[-9463,-9464,-9465]]},{"type":"Polygon","properties":{"name":"PORTER CORNERS","zip":"12859","state":"NY"},"arcs":[[-9409,-9374,-9406,-9438]]},{"type":"Polygon","properties":{"name":"POTTERSVILLE","zip":"12860","state":"NY"},"arcs":[[-9462,9465,-9333,-9447]]},{"type":"Polygon","properties":{"name":"PUTNAM STATION","zip":"12861","state":"NY"},"arcs":[[9466,-9415,9467,9468]]},{"type":"Polygon","properties":{"name":"SALEM","zip":"12865","state":"NY"},"arcs":[[-9375,-9341,-9403,-4713,-4352,9469,-9361,-9408]]},{"type":"Polygon","properties":{"name":"SARATOGA SPRINGS","zip":"12866","state":"NY"},"arcs":[[-8714,-8494,-9439,-9404,-9395,9470,-8800]]},{"type":"Polygon","properties":{"name":"SCHROON LAKE","zip":"12870","state":"NY"},"arcs":[[-9334,-9466,-9461,-9455,9471,9462,9472,-9413,-9358]]},{"type":"Polygon","properties":{"name":"SCHUYLERVILLE","zip":"12871","state":"NY"},"arcs":[[-9394,9473,-8801,-9471]]},{"type":"Polygon","properties":{"name":"SHUSHAN","zip":"12873","state":"NY"},"arcs":[[-9470,-4351,-9362]]},{"type":"Polygon","properties":{"name":"STONY CREEK","zip":"12878","state":"NY"},"arcs":[[-8824,-9422,-9342,9474,-9411]]},{"type":"Polygon","properties":{"name":"TICONDEROGA","zip":"12883","state":"NY"},"arcs":[[-9414,-9473,9464,9475,9476,-9468]]},{"type":"MultiPolygon","properties":{"name":"WARRENSBURG","zip":"12885","state":"NY"},"arcs":[[[-9452,9477,-9344,-9425]],[[-9429,9478,-9363,-9352,-9379,-9428]]]},{"type":"MultiPolygon","properties":{"name":"WHITEHALL","zip":"12887","state":"NY"},"arcs":[[[-9382,-9356,-9416,-9467,9479]],[[-9368,-9384,9480,-4662,-9417,-9401,-9453]]]},{"type":"Polygon","properties":{"name":"PLATTSBURGH","zip":"12901","state":"NY"},"arcs":[[9481,9482,9483,9484]]},{"type":"Polygon","properties":{"name":"ALTONA","zip":"12910","state":"NY"},"arcs":[[9485,9486,9487,9488,9489,9490]]},{"type":"Polygon","properties":{"name":"AU SABLE FORKS","zip":"12912","state":"NY"},"arcs":[[9491,9492,9493,9494,9495,9496,9497,9498,9499]]},{"type":"Polygon","properties":{"name":"BLOOMINGDALE","zip":"12913","state":"NY"},"arcs":[[9500,9501,9502,-9492,9503]]},{"type":"Polygon","properties":{"name":"BOMBAY","zip":"12914","state":"NY"},"arcs":[[9504,9505,9506,9507,9508,9509]]},{"type":"Polygon","properties":{"name":"BRUSHTON","zip":"12916","state":"NY"},"arcs":[[9510,9511,9512,9513,-9505,9514]]},{"type":"Polygon","properties":{"name":"BURKE","zip":"12917","state":"NY"},"arcs":[[9515,9516,9517,9518]]},{"type":"Polygon","properties":{"name":"CADYVILLE","zip":"12918","state":"NY"},"arcs":[[9519,9520,9521,9522]]},{"type":"Polygon","properties":{"name":"CHAMPLAIN","zip":"12919","state":"NY"},"arcs":[[9523,9524,9525]]},{"type":"Polygon","properties":{"name":"CHATEAUGAY","zip":"12920","state":"NY"},"arcs":[[9526,-9516,9527,9528,9529,9530,9531]]},{"type":"Polygon","properties":{"name":"CHAZY","zip":"12921","state":"NY"},"arcs":[[9532,-9491,9533,-9524,9534]]},{"type":"Polygon","properties":{"name":"CHILDWOLD","zip":"12922","state":"NY"},"arcs":[[9535,9536]]},{"type":"Polygon","properties":{"name":"CHURUBUSCO","zip":"12923","state":"NY"},"arcs":[[9537,-9529,9538,9539,9540]]},{"type":"Polygon","properties":{"name":"KEESEVILLE","zip":"12924","state":"NY"},"arcs":[[9541,9542,-9497]]},{"type":"Polygon","properties":{"name":"CONSTABLE","zip":"12926","state":"NY"},"arcs":[[9543,9544,9545,9546,-9518]]},{"type":"Polygon","properties":{"name":"CROWN POINT","zip":"12928","state":"NY"},"arcs":[[-9454,9547,9548,-9476,9463,-9472]]},{"type":"Polygon","properties":{"name":"DICKINSON CENTER","zip":"12930","state":"NY"},"arcs":[[9549,9550,9551,-9512]]},{"type":"Polygon","properties":{"name":"ELIZABETHTOWN","zip":"12932","state":"NY"},"arcs":[[9552,9553,9554,9555,9556,9557]]},{"type":"Polygon","properties":{"name":"ELLENBURG CENTER","zip":"12934","state":"NY"},"arcs":[[9558,9559,9560,9561,-9530,-9538]]},{"type":"Polygon","properties":{"name":"ELLENBURG DEPOT","zip":"12935","state":"NY"},"arcs":[[9562,-9559,-9541,9563,-9488,9564,-9522]]},{"type":"Polygon","properties":{"name":"ESSEX","zip":"12936","state":"NY"},"arcs":[[9565,9566,9567]]},{"type":"Polygon","properties":{"name":"FORT COVINGTON","zip":"12937","state":"NY"},"arcs":[[9568,-9515,-9510,9569,9570,-9546]]},{"type":"Polygon","properties":{"name":"JAY","zip":"12941","state":"NY"},"arcs":[[9571,-9554,9572,9573,9574,-9499,9575]]},{"type":"Polygon","properties":{"name":"KEENE","zip":"12942","state":"NY"},"arcs":[[9576,9577,9578,-9573,-9553]]},{"type":"Polygon","properties":{"name":"KEENE VALLEY","zip":"12943","state":"NY"},"arcs":[[9579,-9457,-9444,9580,-9577,-9558]]},{"type":"Polygon","properties":{"name":"KEESEVILLE","zip":"12944","state":"NY"},"arcs":[[9581,9582,-9576,-9498,-9543,9583,9584]]},{"type":"Polygon","properties":{"name":"LAKE CLEAR","zip":"12945","state":"NY"},"arcs":[[9585,9586]]},{"type":"Polygon","properties":{"name":"LAKE PLACID","zip":"12946","state":"NY"},"arcs":[[-9443,9587,9588,-9501,9589,9590,-9578,-9581]]},{"type":"Polygon","properties":{"name":"LEWIS","zip":"12950","state":"NY"},"arcs":[[-9572,-9583,9591,9592,-9555]]},{"type":"Polygon","properties":{"name":"LYON MOUNTAIN","zip":"12952","state":"NY"},"arcs":[[9593,9594,-9561,9595]]},{"type":"Polygon","properties":{"name":"MALONE","zip":"12953","state":"NY"},"arcs":[[9596,9597,9598,9599,-9544,-9517,-9527,9600]]},{"type":"Polygon","properties":{"name":"LYON MOUNTAIN","zip":"12955","state":"NY"},"arcs":[[9601,-9531,-9562,-9595]]},{"type":"Polygon","properties":{"name":"MINEVILLE","zip":"12956","state":"NY"},"arcs":[[9602,9603,9604,9605,9606,9607]]},{"type":"Polygon","properties":{"name":"MOIRA","zip":"12957","state":"NY"},"arcs":[[9608,9609,-9506,-9514]]},{"type":"Polygon","properties":{"name":"MOOERS","zip":"12958","state":"NY"},"arcs":[[9610,9611,-9525,-9534,-9490]]},{"type":"Polygon","properties":{"name":"MOOERS FORKS","zip":"12959","state":"NY"},"arcs":[[-9564,-9540,9612,-9611,-9489]]},{"type":"Polygon","properties":{"name":"MORIAH","zip":"12960","state":"NY"},"arcs":[[9613,9614,-9608]]},{"type":"Polygon","properties":{"name":"MORIAH CENTER","zip":"12961","state":"NY"},"arcs":[[9615,-9603,-9615]]},{"type":"Polygon","properties":{"name":"MORRISONVILLE","zip":"12962","state":"NY"},"arcs":[[9616,9617,-9523,-9565,-9487,9618,-9483]]},{"type":"Polygon","properties":{"name":"NEW RUSSIA","zip":"12964","state":"NY"},"arcs":[[9619,-9458,-9580,-9557,9620,-9605]]},{"type":"Polygon","properties":{"name":"NICHOLVILLE","zip":"12965","state":"NY"},"arcs":[[9621,9622]]},{"type":"Polygon","properties":{"name":"NORTH BANGOR","zip":"12966","state":"NY"},"arcs":[[9623,-9550,-9511,-9569,-9545,-9600]]},{"type":"Polygon","properties":{"name":"NORTH LAWRENCE","zip":"12967","state":"NY"},"arcs":[[9624,9625,9626,-9609,-9513,-9552,9627,-9622]]},{"type":"Polygon","properties":{"name":"OWLS HEAD","zip":"12969","state":"NY"},"arcs":[[-9532,-9602,-9594,9628,9629,-9601]]},{"type":"Polygon","properties":{"name":"PAUL SMITHS","zip":"12970","state":"NY"},"arcs":[[9630,-9587,9631,9632,-9598,9633]]},{"type":"Polygon","properties":{"name":"PERU","zip":"12972","state":"NY"},"arcs":[[9634,-9617,-9482,9635,-9584,-9542,-9496]]},{"type":"Polygon","properties":{"name":"PORT HENRY","zip":"12974","state":"NY"},"arcs":[[-9548,-9459,-9620,-9604,-9616,-9614,-9607,9636,9637]]},{"type":"Polygon","properties":{"name":"SAINT REGIS FALLS","zip":"12980","state":"NY"},"arcs":[[9638,9639,9640,-9623,-9628,-9551,-9624,-9599,-9633,9641,9642,9643,-9537]]},{"type":"Polygon","properties":{"name":"SARANAC","zip":"12981","state":"NY"},"arcs":[[9644,-9629,-9596,-9560,-9563,-9521,9645,-9494]]},{"type":"Polygon","properties":{"name":"SARANAC LAKE","zip":"12983","state":"NY"},"arcs":[[-9589,9646,-9642,-9632,-9586,-9631,9647,-9502]]},{"type":"Polygon","properties":{"name":"SCHUYLER FALLS","zip":"12985","state":"NY"},"arcs":[[-9495,-9646,-9520,-9618,-9635]]},{"type":"Polygon","properties":{"name":"TUPPER LAKE","zip":"12986","state":"NY"},"arcs":[[-9433,9648,-9643,-9647,-9588,-9442]]},{"type":"Polygon","properties":{"name":"UPPER JAY","zip":"12987","state":"NY"},"arcs":[[-9591,9649,-9574,-9579]]},{"type":"Polygon","properties":{"name":"VERMONTVILLE","zip":"12989","state":"NY"},"arcs":[[-9597,-9630,-9645,-9493,-9503,-9648,-9634]]},{"type":"Polygon","properties":{"name":"WEST CHAZY","zip":"12992","state":"NY"},"arcs":[[-9619,-9486,-9533,9650,-9484]]},{"type":"Polygon","properties":{"name":"WESTPORT","zip":"12993","state":"NY"},"arcs":[[-9637,-9606,-9621,-9556,-9593,9651,-9566,9652]]},{"type":"Polygon","properties":{"name":"WILLSBORO","zip":"12996","state":"NY"},"arcs":[[-9592,-9582,9653,-9567,-9652]]},{"type":"Polygon","properties":{"name":"WILMINGTON","zip":"12997","state":"NY"},"arcs":[[-9650,-9590,-9504,-9500,-9575]]},{"type":"Polygon","properties":{"name":"AUBURN","zip":"13021","state":"NY"},"arcs":[[9654,9655,9656,9657,9658,9659,9660,9661,9662]]},{"type":"Polygon","properties":{"name":"AURORA","zip":"13026","state":"NY"},"arcs":[[9663,9664,9665,9666]]},{"type":"Polygon","properties":{"name":"BALDWINSVILLE","zip":"13027","state":"NY"},"arcs":[[9667,9668,9669,9670,9671,9672,9673,9674,9675]]},{"type":"Polygon","properties":{"name":"BERNHARDS BAY","zip":"13028","state":"NY"},"arcs":[[9676,9677,9678,9679,9680]]},{"type":"Polygon","properties":{"name":"BREWERTON","zip":"13029","state":"NY"},"arcs":[[9681,9682,9683,9684,9685]]},{"type":"Polygon","properties":{"name":"BRIDGEPORT","zip":"13030","state":"NY"},"arcs":[[9686,9687,9688,9689,9690]]},{"type":"Polygon","properties":{"name":"CAMILLUS","zip":"13031","state":"NY"},"arcs":[[9691,9692,9693,9694,-9676,9695,9696,9697]]},{"type":"Polygon","properties":{"name":"CANASTOTA","zip":"13032","state":"NY"},"arcs":[[9698,9699,9700,9701,9702,9703]]},{"type":"Polygon","properties":{"name":"CATO","zip":"13033","state":"NY"},"arcs":[[9704,9705,9706,9707,-9669,9708,9709,9710,9711]]},{"type":"Polygon","properties":{"name":"CAYUGA","zip":"13034","state":"NY"},"arcs":[[9712,9713,9714,9715,-9660]]},{"type":"Polygon","properties":{"name":"CAZENOVIA","zip":"13035","state":"NY"},"arcs":[[9716,9717,-9700,9718,9719,9720]]},{"type":"Polygon","properties":{"name":"CENTRAL SQUARE","zip":"13036","state":"NY"},"arcs":[[9721,9722,-9684,9723,9724,9725,9726,9727]]},{"type":"Polygon","properties":{"name":"CHITTENANGO","zip":"13037","state":"NY"},"arcs":[[9728,9729,9730,-9690,9731,-9701,-9718]]},{"type":"Polygon","properties":{"name":"CICERO","zip":"13039","state":"NY"},"arcs":[[9732,9733,-9686,9734,-9688,9735]]},{"type":"Polygon","properties":{"name":"CINCINNATUS","zip":"13040","state":"NY"},"arcs":[[9736,9737,9738,9739,9740,9741]]},{"type":"Polygon","properties":{"name":"CLAY","zip":"13041","state":"NY"},"arcs":[[9742,-9672,9743,9744,-9682,-9734,9745]]},{"type":"Polygon","properties":{"name":"CLEVELAND","zip":"13042","state":"NY"},"arcs":[[9746,9747,-9677,9748]]},{"type":"Polygon","properties":{"name":"CONSTANTIA","zip":"13044","state":"NY"},"arcs":[[9749,9750,9751,-9679,9752]]},{"type":"Polygon","properties":{"name":"CORTLAND","zip":"13045","state":"NY"},"arcs":[[9753,9754,9755,9756,9757,9758,9759,9760,9761,9762]]},{"type":"Polygon","properties":{"name":"DE RUYTER","zip":"13052","state":"NY"},"arcs":[[9763,9764,9765,9766,9767,9768,9769]]},{"type":"Polygon","properties":{"name":"DRYDEN","zip":"13053","state":"NY"},"arcs":[[9770,9771,9772,-9762,9773]]},{"type":"Polygon","properties":{"name":"DURHAMVILLE","zip":"13054","state":"NY"},"arcs":[[9774,9775,-9703,9776,9777]]},{"type":"Polygon","properties":{"name":"EAST SYRACUSE","zip":"13057","state":"NY"},"arcs":[[9778,9779,9780,-9736,-9687,9781,9782,9783]]},{"type":"Polygon","properties":{"name":"ELBRIDGE","zip":"13060","state":"NY"},"arcs":[[9784,9785,9786,-9694,9787,9788,-9663]]},{"type":"Polygon","properties":{"name":"ERIEVILLE","zip":"13061","state":"NY"},"arcs":[[9789,-9720,9790,9791,9792]]},{"type":"Polygon","properties":{"name":"FABIUS","zip":"13063","state":"NY"},"arcs":[[9793,9794,9795,9796,9797,9798,-9767]]},{"type":"Polygon","properties":{"name":"FAYETTEVILLE","zip":"13066","state":"NY"},"arcs":[[9799,-9783,9800,-9730,9801,9802]]},{"type":"Polygon","properties":{"name":"FREEVILLE","zip":"13068","state":"NY"},"arcs":[[9803,9804,9805,9806,-9763,-9773]]},{"type":"Polygon","properties":{"name":"FULTON","zip":"13069","state":"NY"},"arcs":[[9807,-9670,-9708,9808,9809,9810,-9725,9811]]},{"type":"Polygon","properties":{"name":"GENOA","zip":"13071","state":"NY"},"arcs":[[9812,9813,9814,9815,9816]]},{"type":"Polygon","properties":{"name":"GEORGETOWN","zip":"13072","state":"NY"},"arcs":[[9817,-9793,9818,9819,9820,9821,-9769]]},{"type":"Polygon","properties":{"name":"GROTON","zip":"13073","state":"NY"},"arcs":[[-9807,9822,9823,-9754]]},{"type":"Polygon","properties":{"name":"HANNIBAL","zip":"13074","state":"NY"},"arcs":[[-9707,9824,9825,9826,-9809]]},{"type":"Polygon","properties":{"name":"HASTINGS","zip":"13076","state":"NY"},"arcs":[[9827,-9727,9828,9829,9830]]},{"type":"Polygon","properties":{"name":"HOMER","zip":"13077","state":"NY"},"arcs":[[9831,9832,-9757,9833,9834,9835]]},{"type":"Polygon","properties":{"name":"JAMESVILLE","zip":"13078","state":"NY"},"arcs":[[9836,-9797,9837,9838,9839,9840,9841,9842,-9803]]},{"type":"Polygon","properties":{"name":"JORDAN","zip":"13080","state":"NY"},"arcs":[[9843,-9710,9844,-9786]]},{"type":"Polygon","properties":{"name":"KING FERRY","zip":"13081","state":"NY"},"arcs":[[9845,9846,-9664,9847,-9814]]},{"type":"Polygon","properties":{"name":"KIRKVILLE","zip":"13082","state":"NY"},"arcs":[[-9691,-9731,-9801,-9782]]},{"type":"Polygon","properties":{"name":"LACONA","zip":"13083","state":"NY"},"arcs":[[9848,9849,9850,9851,9852,9853]]},{"type":"Polygon","properties":{"name":"LA FAYETTE","zip":"13084","state":"NY"},"arcs":[[9854,9855,9856,-9838,-9796]]},{"type":"Polygon","properties":{"name":"LIVERPOOL","zip":"13088","state":"NY"},"arcs":[[9857,9858,9859,9860,9861]]},{"type":"Polygon","properties":{"name":"LIVERPOOL","zip":"13090","state":"NY"},"arcs":[[9862,-9673,-9743,9863,-9860]]},{"type":"Polygon","properties":{"name":"LOCKE","zip":"13092","state":"NY"},"arcs":[[9864,-9817,9865,-9755,-9824]]},{"type":"Polygon","properties":{"name":"MC GRAW","zip":"13101","state":"NY"},"arcs":[[9866,-9760,9867,-9740]]},{"type":"Polygon","properties":{"name":"MALLORY","zip":"13103","state":"NY"},"arcs":[[9868,-9728,-9828]]},{"type":"Polygon","properties":{"name":"MANLIUS","zip":"13104","state":"NY"},"arcs":[[-9798,-9837,-9802,-9729,-9717]]},{"type":"Polygon","properties":{"name":"MARCELLUS","zip":"13108","state":"NY"},"arcs":[[9869,9870,9871,-9788,-9693]]},{"type":"Polygon","properties":{"name":"MARIETTA","zip":"13110","state":"NY"},"arcs":[[9872,9873,9874,-9871,9875,9876,-9856]]},{"type":"Polygon","properties":{"name":"MARTVILLE","zip":"13111","state":"NY"},"arcs":[[9877,9878,-9825,-9706]]},{"type":"Polygon","properties":{"name":"MEMPHIS","zip":"13112","state":"NY"},"arcs":[[-9787,-9845,-9709,-9668,-9695]]},{"type":"Polygon","properties":{"name":"MEXICO","zip":"13114","state":"NY"},"arcs":[[-9811,9879,9880,9881,9882,-9829,-9726]]},{"type":"Polygon","properties":{"name":"MORAVIA","zip":"13118","state":"NY"},"arcs":[[-9756,-9866,-9816,9883,9884,-9656,9885,9886,-9834]]},{"type":"Polygon","properties":{"name":"NEDROW","zip":"13120","state":"NY"},"arcs":[[9887,9888,9889,-9839,-9857,-9877]]},{"type":"Polygon","properties":{"name":"NEW WOODSTOCK","zip":"13122","state":"NY"},"arcs":[[-9768,-9799,-9721,-9790,-9818]]},{"type":"Polygon","properties":{"name":"NORTH PITCHER","zip":"13124","state":"NY"},"arcs":[[9890,-9764,9891]]},{"type":"Polygon","properties":{"name":"OSWEGO","zip":"13126","state":"NY"},"arcs":[[-9827,9892,9893,-9880,-9810]]},{"type":"Polygon","properties":{"name":"PARISH","zip":"13131","state":"NY"},"arcs":[[-9883,9894,9895,9896,-9751,9897,-9830]]},{"type":"Polygon","properties":{"name":"PENNELLVILLE","zip":"13132","state":"NY"},"arcs":[[-9745,9898,-9812,-9724,-9683]]},{"type":"Polygon","properties":{"name":"PHOENIX","zip":"13135","state":"NY"},"arcs":[[-9671,-9808,-9899,-9744]]},{"type":"Polygon","properties":{"name":"PITCHER","zip":"13136","state":"NY"},"arcs":[[9899,9900,-9742,9901,-9765,-9891]]},{"type":"Polygon","properties":{"name":"PORT BYRON","zip":"13140","state":"NY"},"arcs":[[9902,9903,9904,-9712,9905,-9661,-9716]]},{"type":"Polygon","properties":{"name":"PREBLE","zip":"13141","state":"NY"},"arcs":[[9906,-9832,9907,-9874]]},{"type":"Polygon","properties":{"name":"PULASKI","zip":"13142","state":"NY"},"arcs":[[9908,-9851,9909,9910,-9895,-9882,9911]]},{"type":"Polygon","properties":{"name":"RED CREEK","zip":"13143","state":"NY"},"arcs":[[9912,9913,9914,9915,-9878,-9705,-9905]]},{"type":"Polygon","properties":{"name":"RICHLAND","zip":"13144","state":"NY"},"arcs":[[-9850,9916,9917,-9910]]},{"type":"Polygon","properties":{"name":"SANDY CREEK","zip":"13145","state":"NY"},"arcs":[[-9909,9918,9919,-9852]]},{"type":"Polygon","properties":{"name":"SAVANNAH","zip":"13146","state":"NY"},"arcs":[[9920,9921,9922,-9913,-9904]]},{"type":"Polygon","properties":{"name":"SCIPIO CENTER","zip":"13147","state":"NY"},"arcs":[[9923,-9658,9924,-9884,-9815,-9848,-9667]]},{"type":"Polygon","properties":{"name":"SENECA FALLS","zip":"13148","state":"NY"},"arcs":[[9925,9926,-9921,-9903,-9715,9927,9928]]},{"type":"Polygon","properties":{"name":"SKANEATELES","zip":"13152","state":"NY"},"arcs":[[-9655,-9789,-9872,-9875,-9908,-9836,9929,-9886]]},{"type":"Polygon","properties":{"name":"SOUTH OTSELIC","zip":"13155","state":"NY"},"arcs":[[9930,-9900,-9892,-9770,-9822,9931,9932,9933]]},{"type":"Polygon","properties":{"name":"STERLING","zip":"13156","state":"NY"},"arcs":[[-9916,9934,-9893,-9826,-9879]]},{"type":"Polygon","properties":{"name":"TRUXTON","zip":"13158","state":"NY"},"arcs":[[-9741,-9868,-9759,9935,-9794,-9766,-9902]]},{"type":"Polygon","properties":{"name":"TULLY","zip":"13159","state":"NY"},"arcs":[[-9907,-9873,-9855,-9795,-9936,-9758,-9833]]},{"type":"Polygon","properties":{"name":"UNION SPRINGS","zip":"13160","state":"NY"},"arcs":[[-9713,-9659,-9924,-9666,9936]]},{"type":"Polygon","properties":{"name":"WARNERS","zip":"13164","state":"NY"},"arcs":[[-9675,9937,-9696]]},{"type":"Polygon","properties":{"name":"WATERLOO","zip":"13165","state":"NY"},"arcs":[[9938,9939,9940,-9926,9941]]},{"type":"Polygon","properties":{"name":"WEEDSPORT","zip":"13166","state":"NY"},"arcs":[[-9906,-9711,-9844,-9785,-9662]]},{"type":"Polygon","properties":{"name":"WEST MONROE","zip":"13167","state":"NY"},"arcs":[[-9869,-9831,-9898,-9750,9942,-9722]]},{"type":"Polygon","properties":{"name":"SYRACUSE","zip":"13202","state":"NY"},"arcs":[[9943,9944,9945,9946,9947]]},{"type":"Polygon","properties":{"name":"SYRACUSE","zip":"13203","state":"NY"},"arcs":[[9948,9949,9950,9951,-9946]]},{"type":"Polygon","properties":{"name":"SYRACUSE","zip":"13204","state":"NY"},"arcs":[[9952,9953,9954,-9858,9955,-9949,-9945]]},{"type":"Polygon","properties":{"name":"SYRACUSE","zip":"13205","state":"NY"},"arcs":[[9956,-9948,9957,-9840,-9890]]},{"type":"Polygon","properties":{"name":"SYRACUSE","zip":"13206","state":"NY"},"arcs":[[9958,9959,-9779,9960,9961,-9951]]},{"type":"Polygon","properties":{"name":"SYRACUSE","zip":"13207","state":"NY"},"arcs":[[-9889,9962,9963,-9953,-9944,-9957]]},{"type":"Polygon","properties":{"name":"SYRACUSE","zip":"13208","state":"NY"},"arcs":[[-9950,-9956,-9862,9964,9965,-9959]]},{"type":"Polygon","properties":{"name":"SYRACUSE","zip":"13209","state":"NY"},"arcs":[[-9938,-9674,-9863,-9859,-9955,9966,-9697]]},{"type":"Polygon","properties":{"name":"SYRACUSE","zip":"13210","state":"NY"},"arcs":[[9967,-9841,-9958,-9947,-9952,-9962]]},{"type":"Polygon","properties":{"name":"SYRACUSE","zip":"13211","state":"NY"},"arcs":[[9968,-9780,-9960,-9966]]},{"type":"Polygon","properties":{"name":"SYRACUSE","zip":"13212","state":"NY"},"arcs":[[-9965,-9861,-9864,-9746,-9733,-9781,-9969]]},{"type":"Polygon","properties":{"name":"SYRACUSE","zip":"13214","state":"NY"},"arcs":[[-9843,9969,-9784,-9800]]},{"type":"Polygon","properties":{"name":"SYRACUSE","zip":"13215","state":"NY"},"arcs":[[-9692,9970,-9963,-9888,-9876,-9870]]},{"type":"Polygon","properties":{"name":"SYRACUSE","zip":"13219","state":"NY"},"arcs":[[-9967,-9954,-9964,-9971,-9698]]},{"type":"Polygon","properties":{"name":"SYRACUSE","zip":"13224","state":"NY"},"arcs":[[-9961,-9970,-9842,-9968]]},{"type":"Polygon","properties":{"name":"ALDER CREEK","zip":"13301","state":"NY"},"arcs":[[9971,9972,9973]]},{"type":"Polygon","properties":{"name":"ALTMAR","zip":"13302","state":"NY"},"arcs":[[-9911,-9918,9974,9975,-9896]]},{"type":"Polygon","properties":{"name":"AVA","zip":"13303","state":"NY"},"arcs":[[9976,9977,9978,9979,9980,9981]]},{"type":"Polygon","properties":{"name":"BARNEVELD","zip":"13304","state":"NY"},"arcs":[[9982,9983,9984,9985]]},{"type":"Polygon","properties":{"name":"BLOSSVALE","zip":"13308","state":"NY"},"arcs":[[-9747,9986,9987,9988,-9777,9989]]},{"type":"Polygon","properties":{"name":"BOONVILLE","zip":"13309","state":"NY"},"arcs":[[9990,9991,-9982,9992,9993,9994,9995,-9973]]},{"type":"Polygon","properties":{"name":"BOUCKVILLE","zip":"13310","state":"NY"},"arcs":[[9996,9997,9998,9999,10000]]},{"type":"Polygon","properties":{"name":"BROOKFIELD","zip":"13314","state":"NY"},"arcs":[[10001,10002,10003,10004]]},{"type":"Polygon","properties":{"name":"BURLINGTON FLATS","zip":"13315","state":"NY"},"arcs":[[10005,10006,10007,10008,10009,10010]]},{"type":"Polygon","properties":{"name":"CAMDEN","zip":"13316","state":"NY"},"arcs":[[10011,-9987,-9749,-9681,10012,10013,10014,10015,10016]]},{"type":"Polygon","properties":{"name":"CANAJOHARIE","zip":"13317","state":"NY"},"arcs":[[10017,10018,10019,10020,-8790]]},{"type":"Polygon","properties":{"name":"CASSVILLE","zip":"13318","state":"NY"},"arcs":[[10021,10022,10023,10024]]},{"type":"Polygon","properties":{"name":"CHERRY VALLEY","zip":"13320","state":"NY"},"arcs":[[10025,10026,10027,10028,10029,-10019,10030,-8558,-8828,10031,-8775]]},{"type":"Polygon","properties":{"name":"CLAYVILLE","zip":"13322","state":"NY"},"arcs":[[10032,-10025,10033,10034]]},{"type":"Polygon","properties":{"name":"CLINTON","zip":"13323","state":"NY"},"arcs":[[10035,10036,10037,10038,10039,10040,10041,10042,10043,10044]]},{"type":"Polygon","properties":{"name":"COLD BROOK","zip":"13324","state":"NY"},"arcs":[[10045,10046,10047,10048,10049,10050,10051,10052,10053,10054,10055]]},{"type":"Polygon","properties":{"name":"CONSTABLEVILLE","zip":"13325","state":"NY"},"arcs":[[10056,10057,10058,10059,10060,-9994,10061,10062,-10017]]},{"type":"Polygon","properties":{"name":"COOPERSTOWN","zip":"13326","state":"NY"},"arcs":[[10063,10064,10065,10066,10067,-10027,10068,-8773,-8708,10069]]},{"type":"Polygon","properties":{"name":"CROGHAN","zip":"13327","state":"NY"},"arcs":[[10070,10071,10072,10073,10074]]},{"type":"Polygon","properties":{"name":"DEANSBORO","zip":"13328","state":"NY"},"arcs":[[10075,-10038,10076]]},{"type":"Polygon","properties":{"name":"DOLGEVILLE","zip":"13329","state":"NY"},"arcs":[[10077,10078,10079,10080]]},{"type":"Polygon","properties":{"name":"EAGLE BAY","zip":"13331","state":"NY"},"arcs":[[10081,10082,10083,-10074,10084,10085,10086,-9431,10087,10088,-10053,10089,10090]]},{"type":"Polygon","properties":{"name":"EARLVILLE","zip":"13332","state":"NY"},"arcs":[[10091,10092,10093,10094,10095,-9820]]},{"type":"Polygon","properties":{"name":"EAST SPRINGFIELD","zip":"13333","state":"NY"},"arcs":[[-10068,10096,10097,-10028]]},{"type":"Polygon","properties":{"name":"EATON","zip":"13334","state":"NY"},"arcs":[[10098,-10092,-9819,-9792,10099,-9998]]},{"type":"Polygon","properties":{"name":"EDMESTON","zip":"13335","state":"NY"},"arcs":[[10100,10101,10102,-10008,10103]]},{"type":"Polygon","properties":{"name":"FLY CREEK","zip":"13337","state":"NY"},"arcs":[[10104,10105,-10065]]},{"type":"Polygon","properties":{"name":"FORESTPORT","zip":"13338","state":"NY"},"arcs":[[10106,-10091,10107,-10051,10108,-9974,-9996]]},{"type":"Polygon","properties":{"name":"FORT PLAIN","zip":"13339","state":"NY"},"arcs":[[10109,10110,-8689,-8632,10111,-10020,-10030,10112]]},{"type":"Polygon","properties":{"name":"FRANKFORT","zip":"13340","state":"NY"},"arcs":[[10113,10114,10115,10116,10117,10118,10119,10120,10121,-10035]]},{"type":"Polygon","properties":{"name":"GARRATTSVILLE","zip":"13342","state":"NY"},"arcs":[[10122,10123,-10101]]},{"type":"Polygon","properties":{"name":"GLENFIELD","zip":"13343","state":"NY"},"arcs":[[10124,10125,10126,10127,10128,-10083]]},{"type":"Polygon","properties":{"name":"GREIG","zip":"13345","state":"NY"},"arcs":[[10129,-10126,10130]]},{"type":"Polygon","properties":{"name":"HAMILTON","zip":"13346","state":"NY"},"arcs":[[-9997,10131,10132,-10093,-10099]]},{"type":"Polygon","properties":{"name":"HARTWICK","zip":"13348","state":"NY"},"arcs":[[10133,10134,-10006,10135,-10105,-10064]]},{"type":"Polygon","properties":{"name":"HERKIMER","zip":"13350","state":"NY"},"arcs":[[10136,-10120,10137,10138,10139]]},{"type":"Polygon","properties":{"name":"HOFFMEISTER","zip":"13353","state":"NY"},"arcs":[[10140,10141,-10056,10142,-8743,-8527]]},{"type":"Polygon","properties":{"name":"HOLLAND PATENT","zip":"13354","state":"NY"},"arcs":[[10143,10144,10145,10146,10147,-9985]]},{"type":"Polygon","properties":{"name":"HUBBARDSVILLE","zip":"13355","state":"NY"},"arcs":[[10148,10149,-10094,-10133,10150,10151,-10002]]},{"type":"Polygon","properties":{"name":"ILION","zip":"13357","state":"NY"},"arcs":[[10152,10153,-10121,-10137,10154]]},{"type":"Polygon","properties":{"name":"INLET","zip":"13360","state":"NY"},"arcs":[[-10143,-10055,10155,-10088,-9437,-8744]]},{"type":"Polygon","properties":{"name":"JORDANVILLE","zip":"13361","state":"NY"},"arcs":[[-10098,10156,10157,10158,10159,-10113,-10029]]},{"type":"Polygon","properties":{"name":"LEE CENTER","zip":"13363","state":"NY"},"arcs":[[10160,10161,-9979]]},{"type":"Polygon","properties":{"name":"LITTLE FALLS","zip":"13365","state":"NY"},"arcs":[[10162,-10110,-10160,10163,-10139,10164,-10047,10165,-10078]]},{"type":"Polygon","properties":{"name":"LOWVILLE","zip":"13367","state":"NY"},"arcs":[[10166,10167,10168,10169,-10075,-10084,-10129,10170,-10058,10171]]},{"type":"Polygon","properties":{"name":"LYONS FALLS","zip":"13368","state":"NY"},"arcs":[[10172,-10127,-10130,10173,-10060]]},{"type":"Polygon","properties":{"name":"MADISON","zip":"13402","state":"NY"},"arcs":[[10174,-10151,-10132,-10001,10175,10176]]},{"type":"Polygon","properties":{"name":"MARCY","zip":"13403","state":"NY"},"arcs":[[10177,10178,-10145,10179,10180]]},{"type":"Polygon","properties":{"name":"MOHAWK","zip":"13407","state":"NY"},"arcs":[[10181,-10155,-10140,-10164,-10159]]},{"type":"Polygon","properties":{"name":"MORRISVILLE","zip":"13408","state":"NY"},"arcs":[[-10100,-9791,-9719,-9699,10182,10183,-9999]]},{"type":"Polygon","properties":{"name":"MUNNSVILLE","zip":"13409","state":"NY"},"arcs":[[-10000,-10184,10184,10185,10186,-10176]]},{"type":"Polygon","properties":{"name":"NEW BERLIN","zip":"13411","state":"NY"},"arcs":[[10187,10188,10189,10190,10191,10192,-10102,-10124,10193]]},{"type":"Polygon","properties":{"name":"NEW HARTFORD","zip":"13413","state":"NY"},"arcs":[[-10045,10194,10195,10196,10197,10198,-10115,10199]]},{"type":"Polygon","properties":{"name":"NEW LISBON","zip":"13415","state":"NY"},"arcs":[[10200,10201,-10188]]},{"type":"Polygon","properties":{"name":"NEWPORT","zip":"13416","state":"NY"},"arcs":[[10202,-10048,-10165,-10138,-10119]]},{"type":"Polygon","properties":{"name":"NEW YORK MILLS","zip":"13417","state":"NY"},"arcs":[[10203,10204,-10196]]},{"type":"Polygon","properties":{"name":"OLD FORGE","zip":"13420","state":"NY"},"arcs":[[-10156,-10054,-10089]]},{"type":"Polygon","properties":{"name":"ONEIDA","zip":"13421","state":"NY"},"arcs":[[-10183,-9704,-9776,10205,10206,-10185]]},{"type":"Polygon","properties":{"name":"ORISKANY","zip":"13424","state":"NY"},"arcs":[[10207,-10178,10208]]},{"type":"Polygon","properties":{"name":"ORISKANY FALLS","zip":"13425","state":"NY"},"arcs":[[10209,-10177,-10187,10210,-10039,-10076]]},{"type":"Polygon","properties":{"name":"PALATINE BRIDGE","zip":"13428","state":"NY"},"arcs":[[-8791,-10021,-10112,-8631]]},{"type":"Polygon","properties":{"name":"POLAND","zip":"13431","state":"NY"},"arcs":[[-10118,10211,-9983,10212,-10049,-10203]]},{"type":"Polygon","properties":{"name":"PORT LEYDEN","zip":"13433","state":"NY"},"arcs":[[-10131,-10125,-10082,-10107,-9995,-10061,-10174]]},{"type":"Polygon","properties":{"name":"RAQUETTE LAKE","zip":"13436","state":"NY"},"arcs":[[-9436,-9347,-8746]]},{"type":"Polygon","properties":{"name":"REDFIELD","zip":"13437","state":"NY"},"arcs":[[10213,-9975,-9917,-9849,10214,-10172,-10057,-10016]]},{"type":"Polygon","properties":{"name":"REMSEN","zip":"13438","state":"NY"},"arcs":[[10215,-9991,-9972,-10109,-10050,-10213,-9986,-10148]]},{"type":"Polygon","properties":{"name":"RICHFIELD SPRINGS","zip":"13439","state":"NY"},"arcs":[[10216,-10153,-10182,-10158,10217,-10066,-10106,-10136,-10011]]},{"type":"Polygon","properties":{"name":"ROME","zip":"13440","state":"NY"},"arcs":[[10218,-10043,10219,10220,10221,-9778,-9989,10222,-10161,-9978,10223,-10146,-10179,-10208]]},{"type":"Polygon","properties":{"name":"ROSEBOOM","zip":"13450","state":"NY"},"arcs":[[-10069,-10026,-8774]]},{"type":"Polygon","properties":{"name":"SAINT JOHNSVILLE","zip":"13452","state":"NY"},"arcs":[[-10111,-10163,-10081,10224,-8534,-8690]]},{"type":"Polygon","properties":{"name":"SALISBURY CENTER","zip":"13454","state":"NY"},"arcs":[[-10046,-10142,10225,-10079,-10166]]},{"type":"Polygon","properties":{"name":"SAUQUOIT","zip":"13456","state":"NY"},"arcs":[[10226,-10036,-10200,-10114,-10034,-10024]]},{"type":"Polygon","properties":{"name":"SHARON SPRINGS","zip":"13459","state":"NY"},"arcs":[[-8559,-10031,-10018,-8792,-8785,-8524]]},{"type":"Polygon","properties":{"name":"SHERBURNE","zip":"13460","state":"NY"},"arcs":[[10227,-10095,-10150,10228,-10192,10229]]},{"type":"Polygon","properties":{"name":"SMYRNA","zip":"13464","state":"NY"},"arcs":[[10230,10231,-9932,-9821,-10096,-10228]]},{"type":"Polygon","properties":{"name":"SPRINGFIELD CENTER","zip":"13468","state":"NY"},"arcs":[[-10157,-10097,-10067,-10218]]},{"type":"Polygon","properties":{"name":"STRATFORD","zip":"13470","state":"NY"},"arcs":[[-10225,-10080,-10226,-10141,-8526]]},{"type":"Polygon","properties":{"name":"TABERG","zip":"13471","state":"NY"},"arcs":[[-10223,-9988,-10012,-10063,10232,-9980,-10162]]},{"type":"Polygon","properties":{"name":"TURIN","zip":"13473","state":"NY"},"arcs":[[-10059,-10171,-10128,-10173]]},{"type":"Polygon","properties":{"name":"VERNON","zip":"13476","state":"NY"},"arcs":[[10233,-10207,10234,-10221,10235,-10041]]},{"type":"Polygon","properties":{"name":"VERNON CENTER","zip":"13477","state":"NY"},"arcs":[[-10234,-10040,-10211,-10186]]},{"type":"Polygon","properties":{"name":"VERONA","zip":"13478","state":"NY"},"arcs":[[-10206,-9775,-10222,-10235]]},{"type":"Polygon","properties":{"name":"WATERVILLE","zip":"13480","state":"NY"},"arcs":[[-10210,-10077,-10037,-10227,-10023,10236,-10003,-10152,-10175]]},{"type":"Polygon","properties":{"name":"WESTDALE","zip":"13483","state":"NY"},"arcs":[[10237,-10014]]},{"type":"Polygon","properties":{"name":"WEST EDMESTON","zip":"13485","state":"NY"},"arcs":[[-10193,-10229,-10149,-10005,10238,-10009,-10103]]},{"type":"Polygon","properties":{"name":"WESTERNVILLE","zip":"13486","state":"NY"},"arcs":[[-9977,-9992,-10216,-10147,-10224]]},{"type":"Polygon","properties":{"name":"WESTFORD","zip":"13488","state":"NY"},"arcs":[[-10032,-8827,-8776]]},{"type":"Polygon","properties":{"name":"WEST LEYDEN","zip":"13489","state":"NY"},"arcs":[[-10062,-9993,-9981,-10233]]},{"type":"Polygon","properties":{"name":"WESTMORELAND","zip":"13490","state":"NY"},"arcs":[[-10220,-10042,-10236]]},{"type":"Polygon","properties":{"name":"WEST WINFIELD","zip":"13491","state":"NY"},"arcs":[[-10004,-10237,-10022,-10033,-10122,-10154,-10217,-10010,-10239]]},{"type":"Polygon","properties":{"name":"WHITESBORO","zip":"13492","state":"NY"},"arcs":[[-10195,-10044,-10219,-10209,-10181,10239,10240,-10204]]},{"type":"Polygon","properties":{"name":"WILLIAMSTOWN","zip":"13493","state":"NY"},"arcs":[[-9897,-9976,-10214,-10015,-10238,-10013,-9680,-9752]]},{"type":"Polygon","properties":{"name":"WOODGATE","zip":"13494","state":"NY"},"arcs":[[-10090,-10052,-10108]]},{"type":"Polygon","properties":{"name":"YORKVILLE","zip":"13495","state":"NY"},"arcs":[[-10205,-10241,10241,-10197]]},{"type":"Polygon","properties":{"name":"UTICA","zip":"13501","state":"NY"},"arcs":[[10242,-10116,-10199]]},{"type":"Polygon","properties":{"name":"UTICA","zip":"13502","state":"NY"},"arcs":[[-10243,-10198,-10242,-10240,-10180,-10144,-9984,-10212,-10117]]},{"type":"Polygon","properties":{"name":"WATERTOWN","zip":"13601","state":"NY"},"arcs":[[10243,10244,10245,10246,10247,10248,10249,10250,10251,10252]]},{"type":"Polygon","properties":{"name":"FORT DRUM","zip":"13602","state":"NY"},"arcs":[[10253,10254,10255,10256,10257,10258,10259,10260,10261]]},{"type":"Polygon","properties":{"name":"WATERTOWN","zip":"13603","state":"NY"},"arcs":[[10262,10263,10264,-10256]]},{"type":"Polygon","properties":{"name":"ADAMS","zip":"13605","state":"NY"},"arcs":[[10265,10266,10267,10268,10269,10270,10271]]},{"type":"Polygon","properties":{"name":"ADAMS CENTER","zip":"13606","state":"NY"},"arcs":[[10272,-10269,10273,-10246]]},{"type":"Polygon","properties":{"name":"ALEXANDRIA BAY","zip":"13607","state":"NY"},"arcs":[[10274,10275,10276,10277]]},{"type":"Polygon","properties":{"name":"ANTWERP","zip":"13608","state":"NY"},"arcs":[[10278,10279,10280,-10259]]},{"type":"Polygon","properties":{"name":"BLACK RIVER","zip":"13612","state":"NY"},"arcs":[[10281,10282,-10252,10283,-10263,-10255]]},{"type":"Polygon","properties":{"name":"BRASHER FALLS","zip":"13613","state":"NY"},"arcs":[[-9627,10284,10285,10286,-9507,-9610]]},{"type":"Polygon","properties":{"name":"BRIER HILL","zip":"13614","state":"NY"},"arcs":[[10287,10288,10289]]},{"type":"Polygon","properties":{"name":"CALCIUM","zip":"13616","state":"NY"},"arcs":[[-10251,10290,-10264,-10284]]},{"type":"Polygon","properties":{"name":"CANTON","zip":"13617","state":"NY"},"arcs":[[10291,10292,10293,10294,10295,10296,10297,10298]]},{"type":"Polygon","properties":{"name":"CAPE VINCENT","zip":"13618","state":"NY"},"arcs":[[10299,10300,10301,10302]]},{"type":"Polygon","properties":{"name":"CARTHAGE","zip":"13619","state":"NY"},"arcs":[[10303,-10253,-10283,10304,-10262,10305,-10072,10306,-10169]]},{"type":"Polygon","properties":{"name":"CASTORLAND","zip":"13620","state":"NY"},"arcs":[[-10307,-10071,-10170]]},{"type":"Polygon","properties":{"name":"CHASE MILLS","zip":"13621","state":"NY"},"arcs":[[10307,10308,10309,10310]]},{"type":"Polygon","properties":{"name":"CHAUMONT","zip":"13622","state":"NY"},"arcs":[[10311,10312,10313,10314,-10303,10315]]},{"type":"Polygon","properties":{"name":"CLAYTON","zip":"13624","state":"NY"},"arcs":[[-10276,10316,-10316,-10302,10317]]},{"type":"Polygon","properties":{"name":"COLTON","zip":"13625","state":"NY"},"arcs":[[-9649,-9432,-10087,10318,10319,10320,-10292,10321,10322,10323,10324,-9639,-9536,-9644]]},{"type":"Polygon","properties":{"name":"COPENHAGEN","zip":"13626","state":"NY"},"arcs":[[10325,10326,-10244,-10304,-10168]]},{"type":"Polygon","properties":{"name":"DE KALB JUNCTION","zip":"13630","state":"NY"},"arcs":[[10327,10328,10329,-10295]]},{"type":"Polygon","properties":{"name":"DEXTER","zip":"13634","state":"NY"},"arcs":[[10330,10331,-10313,10332,-10248]]},{"type":"Polygon","properties":{"name":"EDWARDS","zip":"13635","state":"NY"},"arcs":[[10333,10334,10335,10336,10337]]},{"type":"Polygon","properties":{"name":"ELLISBURG","zip":"13636","state":"NY"},"arcs":[[10338,10339]]},{"type":"Polygon","properties":{"name":"EVANS MILLS","zip":"13637","state":"NY"},"arcs":[[10340,10341,10342,-10257,-10265,-10291,-10250]]},{"type":"Polygon","properties":{"name":"FELTS MILLS","zip":"13638","state":"NY"},"arcs":[[-10254,-10305,-10282]]},{"type":"Polygon","properties":{"name":"FINE","zip":"13639","state":"NY"},"arcs":[[10343,-10334,10344,10345]]},{"type":"Polygon","properties":{"name":"WELLESLEY ISLAND","zip":"13640","state":"NY"},"arcs":[[10346]]},{"type":"Polygon","properties":{"name":"GOUVERNEUR","zip":"13642","state":"NY"},"arcs":[[10347,10348,10349,10350,10351,-10336,10352,10353,-10260,-10281]]},{"type":"Polygon","properties":{"name":"HAMMOND","zip":"13646","state":"NY"},"arcs":[[-10288,10354,10355,-10349,10356,10357]]},{"type":"Polygon","properties":{"name":"HARRISVILLE","zip":"13648","state":"NY"},"arcs":[[-10073,10358,-10353,-10335,-10344,10359,10360,-10085]]},{"type":"Polygon","properties":{"name":"HENDERSON","zip":"13650","state":"NY"},"arcs":[[10361,10362,-10266,10363,-10340]]},{"type":"Polygon","properties":{"name":"HERMON","zip":"13652","state":"NY"},"arcs":[[10364,-10337,-10352,10365,-10328,-10294]]},{"type":"Polygon","properties":{"name":"HEUVELTON","zip":"13654","state":"NY"},"arcs":[[10366,10367,10368,10369,-10350,-10356]]},{"type":"Polygon","properties":{"name":"HOGANSBURG","zip":"13655","state":"NY"},"arcs":[[10370,10371,-9570,-9509]]},{"type":"Polygon","properties":{"name":"LA FARGEVILLE","zip":"13656","state":"NY"},"arcs":[[-10317,-10275,10372,10373,10374,-10341,-10249,-10333,-10312]]},{"type":"Polygon","properties":{"name":"LISBON","zip":"13658","state":"NY"},"arcs":[[10375,10376,10377,-10297,10378,-10368]]},{"type":"Polygon","properties":{"name":"LORRAINE","zip":"13659","state":"NY"},"arcs":[[10379,-10271,10380,-10326,-10167,-10215,-9854]]},{"type":"Polygon","properties":{"name":"MADRID","zip":"13660","state":"NY"},"arcs":[[10381,-10298,-10378,10382,-10309,10383,10384]]},{"type":"Polygon","properties":{"name":"MANNSVILLE","zip":"13661","state":"NY"},"arcs":[[-10362,-10339,-10364,-10272,-10380,-9853,-9920,10385]]},{"type":"Polygon","properties":{"name":"MASSENA","zip":"13662","state":"NY"},"arcs":[[10386,-10371,-9508,-10287,10387,-10311]]},{"type":"Polygon","properties":{"name":"NATURAL BRIDGE","zip":"13665","state":"NY"},"arcs":[[-10306,-10261,-10354,-10359]]},{"type":"Polygon","properties":{"name":"NEWTON FALLS","zip":"13666","state":"NY"},"arcs":[[10388,10389,10390,10391,-10320]]},{"type":"Polygon","properties":{"name":"NORFOLK","zip":"13667","state":"NY"},"arcs":[[10392,10393,-10384,-10308,-10388,-10286]]},{"type":"Polygon","properties":{"name":"NORWOOD","zip":"13668","state":"NY"},"arcs":[[-10394,10394,10395,10396,-10385]]},{"type":"Polygon","properties":{"name":"OGDENSBURG","zip":"13669","state":"NY"},"arcs":[[-10355,-10290,10397,10398,-10376,-10367]]},{"type":"Polygon","properties":{"name":"OSWEGATCHIE","zip":"13670","state":"NY"},"arcs":[[-10346,10399,-10391,10400,10401,-10360]]},{"type":"Polygon","properties":{"name":"PARISHVILLE","zip":"13672","state":"NY"},"arcs":[[10402,-10323,10403,-9640,-10325]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"13673","state":"NY"},"arcs":[[-10343,10404,-10279,-10258]]},{"type":"Polygon","properties":{"name":"PLESSIS","zip":"13675","state":"NY"},"arcs":[[10405,-10374,10406]]},{"type":"Polygon","properties":{"name":"POTSDAM","zip":"13676","state":"NY"},"arcs":[[-10404,-10322,-10299,-10382,-10397,10407,10408,-9625,-9641]]},{"type":"Polygon","properties":{"name":"REDWOOD","zip":"13679","state":"NY"},"arcs":[[-10278,10409,-10357,-10348,10410,-10407,-10373]]},{"type":"Polygon","properties":{"name":"RENSSELAER FALLS","zip":"13680","state":"NY"},"arcs":[[10411,-10369,-10379,-10296,-10330]]},{"type":"Polygon","properties":{"name":"RICHVILLE","zip":"13681","state":"NY"},"arcs":[[-10351,-10370,-10412,-10329,-10366]]},{"type":"Polygon","properties":{"name":"RODMAN","zip":"13682","state":"NY"},"arcs":[[-10381,-10270,-10273,-10245,-10327]]},{"type":"Polygon","properties":{"name":"RUSSELL","zip":"13684","state":"NY"},"arcs":[[-10392,-10400,-10345,-10338,-10365,-10293,-10321]]},{"type":"Polygon","properties":{"name":"SACKETS HARBOR","zip":"13685","state":"NY"},"arcs":[[-10268,10412,-10331,-10247,-10274]]},{"type":"Polygon","properties":{"name":"SOUTH COLTON","zip":"13687","state":"NY"},"arcs":[[-10403,-10324]]},{"type":"Polygon","properties":{"name":"STAR LAKE","zip":"13690","state":"NY"},"arcs":[[10413,-10401,-10390]]},{"type":"Polygon","properties":{"name":"THERESA","zip":"13691","state":"NY"},"arcs":[[-10342,-10375,-10406,-10411,-10280,-10405]]},{"type":"Polygon","properties":{"name":"THREE MILE BAY","zip":"13693","state":"NY"},"arcs":[[-10300,-10315,10414]]},{"type":"Polygon","properties":{"name":"WADDINGTON","zip":"13694","state":"NY"},"arcs":[[-10310,-10383,-10377,-10399,10415]]},{"type":"Polygon","properties":{"name":"WANAKENA","zip":"13695","state":"NY"},"arcs":[[-10402,-10414,-10389,-10319,-10086,-10361]]},{"type":"Polygon","properties":{"name":"WEST STOCKHOLM","zip":"13696","state":"NY"},"arcs":[[-10396,10416,-10408]]},{"type":"Polygon","properties":{"name":"WINTHROP","zip":"13697","state":"NY"},"arcs":[[-10395,-10393,-10285,-9626,-10409,-10417]]},{"type":"Polygon","properties":{"name":"AFTON","zip":"13730","state":"NY"},"arcs":[[10417,10418,10419,10420,10421,10422]]},{"type":"Polygon","properties":{"name":"ANDES","zip":"13731","state":"NY"},"arcs":[[-9314,10423,10424,-8999,-9284]]},{"type":"Polygon","properties":{"name":"APALACHIN","zip":"13732","state":"NY"},"arcs":[[10425,10426,10427,10428,10429]]},{"type":"Polygon","properties":{"name":"BAINBRIDGE","zip":"13733","state":"NY"},"arcs":[[10430,10431,-10420,10432,10433,10434,10435,10436,10437]]},{"type":"Polygon","properties":{"name":"BARTON","zip":"13734","state":"NY"},"arcs":[[10438,10439,10440,10441,10442]]},{"type":"Polygon","properties":{"name":"BERKSHIRE","zip":"13736","state":"NY"},"arcs":[[10443,10444,10445,10446,10447]]},{"type":"Polygon","properties":{"name":"BLOOMVILLE","zip":"13739","state":"NY"},"arcs":[[10448,10449,10450,10451,10452]]},{"type":"Polygon","properties":{"name":"BOVINA CENTER","zip":"13740","state":"NY"},"arcs":[[10453,-10449,10454,-9032,-9000,-10425]]},{"type":"Polygon","properties":{"name":"CANDOR","zip":"13743","state":"NY"},"arcs":[[10455,10456,10457,10458,10459,-10444]]},{"type":"Polygon","properties":{"name":"CASTLE CREEK","zip":"13744","state":"NY"},"arcs":[[10460,10461,10462]]},{"type":"Polygon","properties":{"name":"CHENANGO FORKS","zip":"13746","state":"NY"},"arcs":[[10463,10464,10465,10466,10467,-10462]]},{"type":"Polygon","properties":{"name":"CONKLIN","zip":"13748","state":"NY"},"arcs":[[10468,10469,10470]]},{"type":"Polygon","properties":{"name":"DAVENPORT","zip":"13750","state":"NY"},"arcs":[[10471,-8797,10472,10473,10474,-8710,-8772,-8679]]},{"type":"Polygon","properties":{"name":"DAVENPORT CENTER","zip":"13751","state":"NY"},"arcs":[[10475,-10474,10476]]},{"type":"Polygon","properties":{"name":"DE LANCEY","zip":"13752","state":"NY"},"arcs":[[10477,10478,10479,-10424,-9313]]},{"type":"Polygon","properties":{"name":"DELHI","zip":"13753","state":"NY"},"arcs":[[-10480,10480,10481,10482,10483,10484,-10450,-10454]]},{"type":"Polygon","properties":{"name":"DEPOSIT","zip":"13754","state":"NY"},"arcs":[[10485,10486,10487,10488,-10422,10489,10490]]},{"type":"Polygon","properties":{"name":"DOWNSVILLE","zip":"13755","state":"NY"},"arcs":[[10491,10492,10493,-10478,-9312]]},{"type":"Polygon","properties":{"name":"EAST BRANCH","zip":"13756","state":"NY"},"arcs":[[-9291,10494,10495,-10492,-9311]]},{"type":"Polygon","properties":{"name":"EAST MEREDITH","zip":"13757","state":"NY"},"arcs":[[-10477,-10473,-8796,10496,-10451,-10485,10497]]},{"type":"Polygon","properties":{"name":"ENDICOTT","zip":"13760","state":"NY"},"arcs":[[10498,10499,10500,10501,-10429]]},{"type":"Polygon","properties":{"name":"FRANKLIN","zip":"13775","state":"NY"},"arcs":[[10502,10503,10504,10505,10506,10507,-10483]]},{"type":"Polygon","properties":{"name":"GILBERTSVILLE","zip":"13776","state":"NY"},"arcs":[[10508,10509,10510]]},{"type":"Polygon","properties":{"name":"GLEN AUBREY","zip":"13777","state":"NY"},"arcs":[[10511,10512,10513,10514]]},{"type":"Polygon","properties":{"name":"GREENE","zip":"13778","state":"NY"},"arcs":[[10515,-10465,10516,10517,10518,10519,-10433,-10419]]},{"type":"Polygon","properties":{"name":"GUILFORD","zip":"13780","state":"NY"},"arcs":[[10520,10521,10522,-10435]]},{"type":"Polygon","properties":{"name":"HAMDEN","zip":"13782","state":"NY"},"arcs":[[-10494,10523,-10481,-10479]]},{"type":"Polygon","properties":{"name":"HANCOCK","zip":"13783","state":"NY"},"arcs":[[10524,10525,10526,10527,-10486,10528,-10495,-9290]]},{"type":"Polygon","properties":{"name":"HARPERSFIELD","zip":"13786","state":"NY"},"arcs":[[-10472,-8685,-8798]]},{"type":"Polygon","properties":{"name":"HARPURSVILLE","zip":"13787","state":"NY"},"arcs":[[10529,10530,-10466,-10516,-10418,10531,10532]]},{"type":"Polygon","properties":{"name":"HOBART","zip":"13788","state":"NY"},"arcs":[[-10455,-10453,10533,-8794,-9033]]},{"type":"Polygon","properties":{"name":"JOHNSON CITY","zip":"13790","state":"NY"},"arcs":[[10534,10535,10536,-10512,10537,10538,-10501]]},{"type":"Polygon","properties":{"name":"KIRKWOOD","zip":"13795","state":"NY"},"arcs":[[10539,10540,10541,10542,-10471]]},{"type":"Polygon","properties":{"name":"LAURENS","zip":"13796","state":"NY"},"arcs":[[10543,10544,10545,10546]]},{"type":"Polygon","properties":{"name":"LISLE","zip":"13797","state":"NY"},"arcs":[[10547,-10447,10548,10549,10550,-10513,-10537,10551]]},{"type":"Polygon","properties":{"name":"MC DONOUGH","zip":"13801","state":"NY"},"arcs":[[10552,-10519,10553,10554,-9737,-9901,-9931,10555]]},{"type":"Polygon","properties":{"name":"MAINE","zip":"13802","state":"NY"},"arcs":[[10556,-10552,-10536]]},{"type":"Polygon","properties":{"name":"MARATHON","zip":"13803","state":"NY"},"arcs":[[10557,-9774,-9761,-9867,-9739,10558,10559,-10550]]},{"type":"Polygon","properties":{"name":"MASONVILLE","zip":"13804","state":"NY"},"arcs":[[10560,10561,10562,-10431]]},{"type":"Polygon","properties":{"name":"MILFORD","zip":"13807","state":"NY"},"arcs":[[10563,10564,-10134,-10070,-8707]]},{"type":"Polygon","properties":{"name":"MORRIS","zip":"13808","state":"NY"},"arcs":[[10565,-10189,-10202,10566,-10546,10567,-10510]]},{"type":"Polygon","properties":{"name":"MOUNT UPTON","zip":"13809","state":"NY"},"arcs":[[10568,10569,10570,10571,-10436,-10523]]},{"type":"Polygon","properties":{"name":"MOUNT VISION","zip":"13810","state":"NY"},"arcs":[[-10194,-10123,-10104,-10007,-10135,-10565,10572,-10547,-10567,-10201]]},{"type":"Polygon","properties":{"name":"NEWARK VALLEY","zip":"13811","state":"NY"},"arcs":[[10573,-10456,-10448,-10548,-10557,-10535,-10500]]},{"type":"Polygon","properties":{"name":"NICHOLS","zip":"13812","state":"NY"},"arcs":[[10574,10575,-10439,10576]]},{"type":"Polygon","properties":{"name":"NINEVEH","zip":"13813","state":"NY"},"arcs":[[-10423,-10489,10577,-10532]]},{"type":"Polygon","properties":{"name":"NORWICH","zip":"13815","state":"NY"},"arcs":[[10578,-10569,-10522,10579,-10556,10580,10581,-10231,-10230,-10191]]},{"type":"Polygon","properties":{"name":"ONEONTA","zip":"13820","state":"NY"},"arcs":[[-10484,-10508,10582,10583,-10544,-10573,-10564,-8711,-10475,-10476,-10498]]},{"type":"Polygon","properties":{"name":"OTEGO","zip":"13825","state":"NY"},"arcs":[[-10571,10584,-10511,-10568,-10545,-10584,10585,-10506,10586]]},{"type":"Polygon","properties":{"name":"OWEGO","zip":"13827","state":"NY"},"arcs":[[10587,10588,-10577,-10443,10589,-10457,-10574,-10499,-10428]]},{"type":"Polygon","properties":{"name":"OXFORD","zip":"13830","state":"NY"},"arcs":[[-10520,-10553,-10580,-10521,-10434]]},{"type":"Polygon","properties":{"name":"PLYMOUTH","zip":"13832","state":"NY"},"arcs":[[10590,-9933,-10232,-10582]]},{"type":"Polygon","properties":{"name":"PORT CRANE","zip":"13833","state":"NY"},"arcs":[[10591,10592,-10467,-10531]]},{"type":"Polygon","properties":{"name":"RICHFORD","zip":"13835","state":"NY"},"arcs":[[-10446,10593,-9771,-10558,-10549]]},{"type":"Polygon","properties":{"name":"SIDNEY","zip":"13838","state":"NY"},"arcs":[[-10438,10594,-10561]]},{"type":"Polygon","properties":{"name":"SIDNEY CENTER","zip":"13839","state":"NY"},"arcs":[[-10432,-10563,10595,-10504,10596,-10490,-10421]]},{"type":"Polygon","properties":{"name":"SMITHVILLE FLATS","zip":"13841","state":"NY"},"arcs":[[10597,-10554,-10518]]},{"type":"Polygon","properties":{"name":"SOUTH KORTRIGHT","zip":"13842","state":"NY"},"arcs":[[-10497,-8795,-10534,-10452]]},{"type":"Polygon","properties":{"name":"SOUTH NEW BERLIN","zip":"13843","state":"NY"},"arcs":[[-10585,-10570,-10579,-10190,-10566,-10509]]},{"type":"Polygon","properties":{"name":"SOUTH PLYMOUTH","zip":"13844","state":"NY"},"arcs":[[-9934,-10591,-10581]]},{"type":"Polygon","properties":{"name":"UNADILLA","zip":"13849","state":"NY"},"arcs":[[-10437,-10572,-10587,-10505,-10596,-10562,-10595]]},{"type":"Polygon","properties":{"name":"VESTAL","zip":"13850","state":"NY"},"arcs":[[-10502,-10539,10598,10599,10600,10601,-10430]]},{"type":"Polygon","properties":{"name":"WALTON","zip":"13856","state":"NY"},"arcs":[[-10597,-10503,-10482,-10524,-10493,-10496,-10529,-10491]]},{"type":"Polygon","properties":{"name":"WEST ONEONTA","zip":"13861","state":"NY"},"arcs":[[-10583,-10507,-10586]]},{"type":"Polygon","properties":{"name":"WHITNEY POINT","zip":"13862","state":"NY"},"arcs":[[-10551,-10560,10602,-10598,-10517,-10464,-10461,10603,10604,-10514]]},{"type":"Polygon","properties":{"name":"WILLET","zip":"13863","state":"NY"},"arcs":[[-10559,-9738,-10555,-10603]]},{"type":"Polygon","properties":{"name":"WILLSEYVILLE","zip":"13864","state":"NY"},"arcs":[[10605,10606,10607,-10459]]},{"type":"Polygon","properties":{"name":"WINDSOR","zip":"13865","state":"NY"},"arcs":[[-10578,-10488,10608,10609,10610,10611,-10542,10612,-10533]]},{"type":"Polygon","properties":{"name":"BINGHAMTON","zip":"13901","state":"NY"},"arcs":[[10613,10614,10615,-10604,-10463,-10468,-10593]]},{"type":"Polygon","properties":{"name":"BINGHAMTON","zip":"13903","state":"NY"},"arcs":[[10616,-10615,10617,-10540,-10470,10618,-10599]]},{"type":"Polygon","properties":{"name":"BINGHAMTON","zip":"13904","state":"NY"},"arcs":[[-10592,-10530,-10613,-10541,-10618,-10614]]},{"type":"Polygon","properties":{"name":"BINGHAMTON","zip":"13905","state":"NY"},"arcs":[[-10515,-10605,-10616,-10617,-10538]]},{"type":"Polygon","properties":{"name":"AKRON","zip":"14001","state":"NY"},"arcs":[[10619,10620,10621,10622,10623,10624,10625,10626]]},{"type":"Polygon","properties":{"name":"ALDEN","zip":"14004","state":"NY"},"arcs":[[10627,10628,10629,10630,-10627,10631,10632,10633,10634]]},{"type":"Polygon","properties":{"name":"ALEXANDER","zip":"14005","state":"NY"},"arcs":[[10635,10636,10637,10638,10639]]},{"type":"Polygon","properties":{"name":"ANGOLA","zip":"14006","state":"NY"},"arcs":[[10640,10641,10642,10643,10644]]},{"type":"Polygon","properties":{"name":"APPLETON","zip":"14008","state":"NY"},"arcs":[[10645,10646,10647,10648,10649,10650]]},{"type":"Polygon","properties":{"name":"ARCADE","zip":"14009","state":"NY"},"arcs":[[10651,10652,10653,10654,10655,10656,10657,10658,10659]]},{"type":"Polygon","properties":{"name":"ATTICA","zip":"14011","state":"NY"},"arcs":[[10660,-10634,10661,-10637,10662,10663,10664,10665,10666]]},{"type":"Polygon","properties":{"name":"BARKER","zip":"14012","state":"NY"},"arcs":[[10667,10668,10669,-10651,10670]]},{"type":"Polygon","properties":{"name":"BASOM","zip":"14013","state":"NY"},"arcs":[[10671,10672,10673,10674,10675,-10625]]},{"type":"Polygon","properties":{"name":"BATAVIA","zip":"14020","state":"NY"},"arcs":[[10676,-10675,10677,10678,10679,10680,10681,-10640]]},{"type":"Polygon","properties":{"name":"BLISS","zip":"14024","state":"NY"},"arcs":[[10682,10683,10684,10685,10686,-10652]]},{"type":"Polygon","properties":{"name":"BOSTON","zip":"14025","state":"NY"},"arcs":[[10687,10688,10689,10690,10691,10692]]},{"type":"Polygon","properties":{"name":"BOWMANSVILLE","zip":"14026","state":"NY"},"arcs":[[10693,10694,10695]]},{"type":"Polygon","properties":{"name":"BURT","zip":"14028","state":"NY"},"arcs":[[10696,10697,10698,-10649]]},{"type":"Polygon","properties":{"name":"CHAFFEE","zip":"14030","state":"NY"},"arcs":[[10699,10700,-10655,10701,10702]]},{"type":"Polygon","properties":{"name":"CLARENCE","zip":"14031","state":"NY"},"arcs":[[10703,10704,10705,-10620,-10631]]},{"type":"Polygon","properties":{"name":"CLARENCE CENTER","zip":"14032","state":"NY"},"arcs":[[10706,10707,-10621,-10706]]},{"type":"Polygon","properties":{"name":"COLDEN","zip":"14033","state":"NY"},"arcs":[[10708,10709,-10691,10710,10711,10712]]},{"type":"Polygon","properties":{"name":"COLLINS","zip":"14034","state":"NY"},"arcs":[[10713,10714,10715]]},{"type":"Polygon","properties":{"name":"CORFU","zip":"14036","state":"NY"},"arcs":[[10716,-10632,-10626,-10676,-10677,-10639]]},{"type":"Polygon","properties":{"name":"COWLESVILLE","zip":"14037","state":"NY"},"arcs":[[10717,-10635,-10661,10718]]},{"type":"Polygon","properties":{"name":"DALE","zip":"14039","state":"NY"},"arcs":[[10719,10720,-10664,10721]]},{"type":"Polygon","properties":{"name":"DARIEN CENTER","zip":"14040","state":"NY"},"arcs":[[-10717,-10638,-10662,-10633]]},{"type":"Polygon","properties":{"name":"DAYTON","zip":"14041","state":"NY"},"arcs":[[10722,10723,10724]]},{"type":"Polygon","properties":{"name":"DELEVAN","zip":"14042","state":"NY"},"arcs":[[10725,10726,10727,10728,10729,-10702,-10654,10730]]},{"type":"Polygon","properties":{"name":"DEPEW","zip":"14043","state":"NY"},"arcs":[[10731,10732,10733,10734,10735]]},{"type":"Polygon","properties":{"name":"DERBY","zip":"14047","state":"NY"},"arcs":[[10736,-10644,10737,10738]]},{"type":"Polygon","properties":{"name":"DUNKIRK","zip":"14048","state":"NY"},"arcs":[[10739,10740,10741,10742]]},{"type":"Polygon","properties":{"name":"EAST AMHERST","zip":"14051","state":"NY"},"arcs":[[10743,10744,10745,10746,-10707]]},{"type":"Polygon","properties":{"name":"EAST AURORA","zip":"14052","state":"NY"},"arcs":[[10747,10748,10749,-10628,-10718,10750,10751,10752]]},{"type":"Polygon","properties":{"name":"EAST BETHANY","zip":"14054","state":"NY"},"arcs":[[10753,-10722,-10663,-10636,-10682,10754,10755]]},{"type":"Polygon","properties":{"name":"EAST CONCORD","zip":"14055","state":"NY"},"arcs":[[10756,-10693,10757,10758,-10700]]},{"type":"Polygon","properties":{"name":"EDEN","zip":"14057","state":"NY"},"arcs":[[-10737,10759,10760,-10689,10761,10762,-10645]]},{"type":"Polygon","properties":{"name":"ELBA","zip":"14058","state":"NY"},"arcs":[[10763,10764,10765,10766,-10679]]},{"type":"Polygon","properties":{"name":"ELMA","zip":"14059","state":"NY"},"arcs":[[10767,-10736,10768,10769,-10749,10770]]},{"type":"Polygon","properties":{"name":"FARMERSVILLE STATION","zip":"14060","state":"NY"},"arcs":[[10771,10772,10773,-10726,10774,10775]]},{"type":"Polygon","properties":{"name":"FORESTVILLE","zip":"14062","state":"NY"},"arcs":[[10776,10777,-10741,10778,10779,10780,10781,10782]]},{"type":"Polygon","properties":{"name":"FREDONIA","zip":"14063","state":"NY"},"arcs":[[10783,10784,10785,10786,-10742,-10778]]},{"type":"Polygon","properties":{"name":"FREEDOM","zip":"14065","state":"NY"},"arcs":[[-10731,-10653,-10687,10787,-10775]]},{"type":"Polygon","properties":{"name":"GAINESVILLE","zip":"14066","state":"NY"},"arcs":[[10788,10789,-10684,10790,10791,10792,10793]]},{"type":"Polygon","properties":{"name":"GASPORT","zip":"14067","state":"NY"},"arcs":[[10794,-10646,-10670,10795,-10623]]},{"type":"Polygon","properties":{"name":"GETZVILLE","zip":"14068","state":"NY"},"arcs":[[10796,10797,10798,-10745]]},{"type":"Polygon","properties":{"name":"GLENWOOD","zip":"14069","state":"NY"},"arcs":[[-10710,10799,-10758,-10692]]},{"type":"Polygon","properties":{"name":"GOWANDA","zip":"14070","state":"NY"},"arcs":[[10800,10801,10802,10803,-10714,10804,10805,10806,-10725]]},{"type":"Polygon","properties":{"name":"GRAND ISLAND","zip":"14072","state":"NY"},"arcs":[[10807]]},{"type":"Polygon","properties":{"name":"HAMBURG","zip":"14075","state":"NY"},"arcs":[[10808,10809,10810,10811,-10711,-10690,-10761]]},{"type":"Polygon","properties":{"name":"HOLLAND","zip":"14080","state":"NY"},"arcs":[[-10800,-10709,10812,10813,10814,-10656,-10701,-10759]]},{"type":"Polygon","properties":{"name":"IRVING","zip":"14081","state":"NY"},"arcs":[[10815,-10780,10816,10817,-10642,10818,10819,-10803]]},{"type":"Polygon","properties":{"name":"JAVA CENTER","zip":"14082","state":"NY"},"arcs":[[10820,-10659,10821,10822]]},{"type":"Polygon","properties":{"name":"JAVA VILLAGE","zip":"14083","state":"NY"},"arcs":[[-10658,10823,-10822]]},{"type":"Polygon","properties":{"name":"LAKE VIEW","zip":"14085","state":"NY"},"arcs":[[-10760,-10739,10824,-10809]]},{"type":"Polygon","properties":{"name":"LANCASTER","zip":"14086","state":"NY"},"arcs":[[-10694,10825,-10704,-10630,-10769,-10735]]},{"type":"Polygon","properties":{"name":"LAWTONS","zip":"14091","state":"NY"},"arcs":[[10826,-10715,-10804,-10820,10827]]},{"type":"Polygon","properties":{"name":"LEWISTON","zip":"14092","state":"NY"},"arcs":[[10828,10829,10830,10831,10832,10833,10834]]},{"type":"Polygon","properties":{"name":"LOCKPORT","zip":"14094","state":"NY"},"arcs":[[10835,10836,10837,10838,10839,-10647,-10795,-10622,-10708,-10747,10840]]},{"type":"Polygon","properties":{"name":"LYNDONVILLE","zip":"14098","state":"NY"},"arcs":[[10841,10842,-10668,10843]]},{"type":"Polygon","properties":{"name":"MACHIAS","zip":"14101","state":"NY"},"arcs":[[10844,10845,-10728,10846]]},{"type":"Polygon","properties":{"name":"MARILLA","zip":"14102","state":"NY"},"arcs":[[-10770,-10629,-10750]]},{"type":"Polygon","properties":{"name":"MEDINA","zip":"14103","state":"NY"},"arcs":[[10847,-10673,10848,-10843,10849,10850]]},{"type":"Polygon","properties":{"name":"MIDDLEPORT","zip":"14105","state":"NY"},"arcs":[[-10796,-10669,-10849,-10672,-10624]]},{"type":"Polygon","properties":{"name":"NEWFANE","zip":"14108","state":"NY"},"arcs":[[10851,-10697,-10648,-10840]]},{"type":"Polygon","properties":{"name":"NIAGARA UNIVERSITY","zip":"14109","state":"NY"},"arcs":[[10852,10853,-10829]]},{"type":"Polygon","properties":{"name":"NORTH COLLINS","zip":"14111","state":"NY"},"arcs":[[10854,-10828,-10819,-10641,-10763]]},{"type":"Polygon","properties":{"name":"NORTH JAVA","zip":"14113","state":"NY"},"arcs":[[10855,10856,-10791,-10683,-10660,-10821]]},{"type":"Polygon","properties":{"name":"NORTH TONAWANDA","zip":"14120","state":"NY"},"arcs":[[10857,10858,10859,10860,10861,-10836]]},{"type":"Polygon","properties":{"name":"OAKFIELD","zip":"14125","state":"NY"},"arcs":[[-10848,10862,-10764,-10678,-10674]]},{"type":"Polygon","properties":{"name":"ORCHARD PARK","zip":"14127","state":"NY"},"arcs":[[10863,-10712,-10812,10864,10865,10866,-10771,-10748]]},{"type":"Polygon","properties":{"name":"PERRYSBURG","zip":"14129","state":"NY"},"arcs":[[10867,-10781,-10816,-10802]]},{"type":"Polygon","properties":{"name":"RANSOMVILLE","zip":"14131","state":"NY"},"arcs":[[10868,10869,10870,-10838,10871,-10832]]},{"type":"Polygon","properties":{"name":"SANBORN","zip":"14132","state":"NY"},"arcs":[[10872,-10833,-10872,-10837,-10862]]},{"type":"Polygon","properties":{"name":"SILVER CREEK","zip":"14136","state":"NY"},"arcs":[[-10817,-10779,-10740,10873]]},{"type":"Polygon","properties":{"name":"SOUTH DAYTON","zip":"14138","state":"NY"},"arcs":[[10874,10875,10876,-10782,-10868,-10801,-10724]]},{"type":"Polygon","properties":{"name":"SOUTH WALES","zip":"14139","state":"NY"},"arcs":[[10877,-10752,10878,-10814]]},{"type":"Polygon","properties":{"name":"SPRINGVILLE","zip":"14141","state":"NY"},"arcs":[[-10827,-10855,-10762,-10688,-10757,-10703,-10730,10879,10880,-10805,-10716]]},{"type":"Polygon","properties":{"name":"STAFFORD","zip":"14143","state":"NY"},"arcs":[[10881,-10755,-10681,10882,10883]]},{"type":"Polygon","properties":{"name":"STRYKERSVILLE","zip":"14145","state":"NY"},"arcs":[[-10879,-10751,-10719,-10667,10884,-10856,-10823,-10824,-10657,-10815]]},{"type":"Polygon","properties":{"name":"TONAWANDA","zip":"14150","state":"NY"},"arcs":[[10885,10886,-10859,10887,10888,10889,10890]]},{"type":"Polygon","properties":{"name":"VARYSBURG","zip":"14167","state":"NY"},"arcs":[[-10857,-10885,-10666,10891,-10792]]},{"type":"Polygon","properties":{"name":"WEST FALLS","zip":"14170","state":"NY"},"arcs":[[-10713,-10864,-10753,-10878,-10813]]},{"type":"Polygon","properties":{"name":"WEST VALLEY","zip":"14171","state":"NY"},"arcs":[[10892,-10880,-10729,-10846,10893]]},{"type":"Polygon","properties":{"name":"WILSON","zip":"14172","state":"NY"},"arcs":[[-10839,-10871,10894,-10698,-10852]]},{"type":"Polygon","properties":{"name":"YOUNGSTOWN","zip":"14174","state":"NY"},"arcs":[[-10869,-10831,10895]]},{"type":"Polygon","properties":{"name":"BUFFALO","zip":"14201","state":"NY"},"arcs":[[10896,10897,10898]]},{"type":"Polygon","properties":{"name":"BUFFALO","zip":"14202","state":"NY"},"arcs":[[10899,-10897,10900,10901,10902]]},{"type":"Polygon","properties":{"name":"BUFFALO","zip":"14203","state":"NY"},"arcs":[[10903,10904,10905,-10902,10906,10907]]},{"type":"Polygon","properties":{"name":"BUFFALO","zip":"14204","state":"NY"},"arcs":[[10908,10909,-10908,10910,10911,10912,10913]]},{"type":"Polygon","properties":{"name":"BUFFALO","zip":"14206","state":"NY"},"arcs":[[10914,10915,-10909,10916,10917]]},{"type":"Polygon","properties":{"name":"BUFFALO","zip":"14207","state":"NY"},"arcs":[[-10886,10918,10919,10920,10921]]},{"type":"Polygon","properties":{"name":"BUFFALO","zip":"14208","state":"NY"},"arcs":[[10922,10923,10924,-10912]]},{"type":"Polygon","properties":{"name":"BUFFALO","zip":"14209","state":"NY"},"arcs":[[10925,10926,10927,-10923,-10911,-10907,-10901]]},{"type":"Polygon","properties":{"name":"BUFFALO","zip":"14210","state":"NY"},"arcs":[[10928,10929,-10904,-10910,-10916]]},{"type":"Polygon","properties":{"name":"BUFFALO","zip":"14211","state":"NY"},"arcs":[[10930,10931,10932,10933,-10913,-10925]]},{"type":"Polygon","properties":{"name":"BUFFALO","zip":"14212","state":"NY"},"arcs":[[-10914,-10934,10934,10935,-10917]]},{"type":"Polygon","properties":{"name":"BUFFALO","zip":"14213","state":"NY"},"arcs":[[-10900,10936,-10921,10937,10938,-10898]]},{"type":"Polygon","properties":{"name":"BUFFALO","zip":"14214","state":"NY"},"arcs":[[-10928,10939,10940,10941,10942,-10931,-10924]]},{"type":"Polygon","properties":{"name":"BUFFALO","zip":"14215","state":"NY"},"arcs":[[10943,-10932,-10943,10944]]},{"type":"Polygon","properties":{"name":"BUFFALO","zip":"14216","state":"NY"},"arcs":[[-10938,-10920,10945,10946,-10940,-10927]]},{"type":"Polygon","properties":{"name":"BUFFALO","zip":"14217","state":"NY"},"arcs":[[-10919,-10891,10947,-10946]]},{"type":"Polygon","properties":{"name":"BUFFALO","zip":"14218","state":"NY"},"arcs":[[10948,10949,10950,10951,-10866]]},{"type":"Polygon","properties":{"name":"BUFFALO","zip":"14219","state":"NY"},"arcs":[[-10811,10952,-10949,-10865]]},{"type":"Polygon","properties":{"name":"BUFFALO","zip":"14220","state":"NY"},"arcs":[[10953,-10951,10954,-10905,-10930]]},{"type":"Polygon","properties":{"name":"BUFFALO","zip":"14221","state":"NY"},"arcs":[[-10696,10955,10956,10957,-10797,-10744,-10705,-10826]]},{"type":"Polygon","properties":{"name":"BUFFALO","zip":"14222","state":"NY"},"arcs":[[-10899,-10939,-10926]]},{"type":"Polygon","properties":{"name":"BUFFALO","zip":"14223","state":"NY"},"arcs":[[10958,-10941,-10947,-10948,-10890]]},{"type":"Polygon","properties":{"name":"BUFFALO","zip":"14224","state":"NY"},"arcs":[[-10954,-10929,-10915,10959,-10732,-10768,-10867,-10952]]},{"type":"Polygon","properties":{"name":"BUFFALO","zip":"14225","state":"NY"},"arcs":[[10960,-10935,-10933,-10944,10961,-10956,-10695,-10734]]},{"type":"Polygon","properties":{"name":"BUFFALO","zip":"14226","state":"NY"},"arcs":[[-10962,-10945,-10942,-10959,-10889,10962,10963,-10957]]},{"type":"Polygon","properties":{"name":"BUFFALO","zip":"14227","state":"NY"},"arcs":[[-10960,-10918,-10936,-10961,-10733]]},{"type":"Polygon","properties":{"name":"BUFFALO","zip":"14228","state":"NY"},"arcs":[[-10858,-10841,-10746,-10799,10964,-10963,-10888]]},{"type":"Polygon","properties":{"name":"BUFFALO","zip":"14260","state":"NY"},"arcs":[[-10964,-10965,-10798,-10958]]},{"type":"Polygon","properties":{"name":"NIAGARA FALLS","zip":"14301","state":"NY"},"arcs":[[10965,10966,10967,10968]]},{"type":"Polygon","properties":{"name":"NIAGARA FALLS","zip":"14303","state":"NY"},"arcs":[[10969,10970,-10968]]},{"type":"Polygon","properties":{"name":"NIAGARA FALLS","zip":"14304","state":"NY"},"arcs":[[-10967,10971,-10834,-10873,-10861,10972,-10970]]},{"type":"Polygon","properties":{"name":"NIAGARA FALLS","zip":"14305","state":"NY"},"arcs":[[-10853,-10835,-10972,-10966,10973]]},{"type":"Polygon","properties":{"name":"ALBION","zip":"14411","state":"NY"},"arcs":[[-10863,-10851,10974,10975,10976,-10765]]},{"type":"Polygon","properties":{"name":"AVON","zip":"14414","state":"NY"},"arcs":[[10977,10978,10979,10980,10981,10982,10983,10984]]},{"type":"Polygon","properties":{"name":"BERGEN","zip":"14416","state":"NY"},"arcs":[[10985,10986,10987,10988,10989]]},{"type":"Polygon","properties":{"name":"BRANCHPORT","zip":"14418","state":"NY"},"arcs":[[10990,10991,10992,10993,10994,10995]]},{"type":"Polygon","properties":{"name":"BROCKPORT","zip":"14420","state":"NY"},"arcs":[[10996,10997,-10988,10998,10999,11000,11001]]},{"type":"Polygon","properties":{"name":"BYRON","zip":"14422","state":"NY"},"arcs":[[-10767,11002,-10986,11003,-10883,-10680]]},{"type":"Polygon","properties":{"name":"CALEDONIA","zip":"14423","state":"NY"},"arcs":[[11004,11005,11006,11007,11008,-10981,11009]]},{"type":"Polygon","properties":{"name":"CANANDAIGUA","zip":"14424","state":"NY"},"arcs":[[11010,11011,11012,11013,11014,11015,11016,11017,11018,11019]]},{"type":"Polygon","properties":{"name":"FARMINGTON","zip":"14425","state":"NY"},"arcs":[[11020,-11013,11021,11022,11023]]},{"type":"Polygon","properties":{"name":"CASTILE","zip":"14427","state":"NY"},"arcs":[[11024,11025,11026,11027,11028,-10789]]},{"type":"Polygon","properties":{"name":"CHURCHVILLE","zip":"14428","state":"NY"},"arcs":[[-10998,11029,11030,11031,11032,-10989]]},{"type":"Polygon","properties":{"name":"CLIFTON SPRINGS","zip":"14432","state":"NY"},"arcs":[[11033,11034,-11015,11035,11036,11037,11038]]},{"type":"Polygon","properties":{"name":"CLYDE","zip":"14433","state":"NY"},"arcs":[[11039,11040,11041,-9922,-9927,-9941,11042]]},{"type":"Polygon","properties":{"name":"CONESUS","zip":"14435","state":"NY"},"arcs":[[11043,11044,11045,11046,11047,11048,11049]]},{"type":"Polygon","properties":{"name":"DANSVILLE","zip":"14437","state":"NY"},"arcs":[[11050,11051,11052,11053,11054,-11044,11055,11056,11057,11058]]},{"type":"Polygon","properties":{"name":"EAST ROCHESTER","zip":"14445","state":"NY"},"arcs":[[11059,11060,11061,11062,11063,11064]]},{"type":"Polygon","properties":{"name":"FAIRPORT","zip":"14450","state":"NY"},"arcs":[[11065,-11064,11066,11067,11068,11069]]},{"type":"Polygon","properties":{"name":"GENESEO","zip":"14454","state":"NY"},"arcs":[[11070,11071,11072,-10979,11073,11074,-11047,11075]]},{"type":"Polygon","properties":{"name":"GENEVA","zip":"14456","state":"NY"},"arcs":[[11076,-11034,11077,-9939,11078,11079,11080]]},{"type":"Polygon","properties":{"name":"GROVELAND","zip":"14462","state":"NY"},"arcs":[[11081,-11054,11082,-11076,-11046]]},{"type":"Polygon","properties":{"name":"HAMLIN","zip":"14464","state":"NY"},"arcs":[[11083,-11001,11084,11085]]},{"type":"Polygon","properties":{"name":"HEMLOCK","zip":"14466","state":"NY"},"arcs":[[11086,11087,-11049,11088]]},{"type":"Polygon","properties":{"name":"HENRIETTA","zip":"14467","state":"NY"},"arcs":[[11089,11090,11091,11092,11093]]},{"type":"Polygon","properties":{"name":"HILTON","zip":"14468","state":"NY"},"arcs":[[-11084,11094,11095,11096,11097,-11002]]},{"type":"Polygon","properties":{"name":"BLOOMFIELD","zip":"14469","state":"NY"},"arcs":[[11098,11099,11100,11101,11102,-11011,11103]]},{"type":"Polygon","properties":{"name":"HOLLEY","zip":"14470","state":"NY"},"arcs":[[-11003,-10766,-10977,11104,11105,-10999,-10987]]},{"type":"Polygon","properties":{"name":"HONEOYE","zip":"14471","state":"NY"},"arcs":[[11106,11107,-11087,11108,-11104,-11020]]},{"type":"Polygon","properties":{"name":"HONEOYE FALLS","zip":"14472","state":"NY"},"arcs":[[11109,-11101,11110,-10983,11111,-11090,11112,11113,11114]]},{"type":"Polygon","properties":{"name":"IONIA","zip":"14475","state":"NY"},"arcs":[[-11110,11115,-11102]]},{"type":"Polygon","properties":{"name":"KENDALL","zip":"14476","state":"NY"},"arcs":[[-11106,11116,11117,-11085,-11000]]},{"type":"Polygon","properties":{"name":"KENT","zip":"14477","state":"NY"},"arcs":[[-10976,11118,11119,-11117,-11105]]},{"type":"Polygon","properties":{"name":"KEUKA PARK","zip":"14478","state":"NY"},"arcs":[[-10995,11120,11121]]},{"type":"Polygon","properties":{"name":"LAKEVILLE","zip":"14480","state":"NY"},"arcs":[[-10978,11122,-11074]]},{"type":"Polygon","properties":{"name":"LEICESTER","zip":"14481","state":"NY"},"arcs":[[11123,11124,11125,-11072,11126]]},{"type":"Polygon","properties":{"name":"LE ROY","zip":"14482","state":"NY"},"arcs":[[11127,11128,-10884,-11004,-10990,-11033,11129,-11006]]},{"type":"Polygon","properties":{"name":"LIMA","zip":"14485","state":"NY"},"arcs":[[11130,-10984,-11111,-11100]]},{"type":"Polygon","properties":{"name":"LINWOOD","zip":"14486","state":"NY"},"arcs":[[11131,-11128,-11005,11132]]},{"type":"Polygon","properties":{"name":"LIVONIA","zip":"14487","state":"NY"},"arcs":[[-11123,-10985,-11131,-11099,-11109,-11089,-11048,-11075]]},{"type":"Polygon","properties":{"name":"LYONS","zip":"14489","state":"NY"},"arcs":[[11133,11134,11135,11136,-11040]]},{"type":"Polygon","properties":{"name":"MACEDON","zip":"14502","state":"NY"},"arcs":[[11137,-11069,11138,11139,11140,11141,-11023]]},{"type":"Polygon","properties":{"name":"MARION","zip":"14505","state":"NY"},"arcs":[[11142,11143,11144,11145,11146]]},{"type":"Polygon","properties":{"name":"MENDON","zip":"14506","state":"NY"},"arcs":[[11147,11148,-11114]]},{"type":"Polygon","properties":{"name":"MIDDLESEX","zip":"14507","state":"NY"},"arcs":[[11149,11150,-10993,11151,11152]]},{"type":"Polygon","properties":{"name":"MOUNT MORRIS","zip":"14510","state":"NY"},"arcs":[[11153,11154,-11027,11155,-11127,-11071,-11083,-11053]]},{"type":"Polygon","properties":{"name":"NAPLES","zip":"14512","state":"NY"},"arcs":[[11156,11157,-11107,-11019,11158,-11152,-10992,11159,11160,11161]]},{"type":"Polygon","properties":{"name":"NEWARK","zip":"14513","state":"NY"},"arcs":[[11162,-11038,11163,-11143,11164,-11135]]},{"type":"Polygon","properties":{"name":"NORTH ROSE","zip":"14516","state":"NY"},"arcs":[[11165,11166,11167,11168,-11041,-11137]]},{"type":"Polygon","properties":{"name":"NUNDA","zip":"14517","state":"NY"},"arcs":[[11169,11170,-11154,-11052]]},{"type":"Polygon","properties":{"name":"ONTARIO","zip":"14519","state":"NY"},"arcs":[[11171,-11140,11172,11173,11174]]},{"type":"Polygon","properties":{"name":"OVID","zip":"14521","state":"NY"},"arcs":[[11175,11176,11177,11178,11179]]},{"type":"Polygon","properties":{"name":"PALMYRA","zip":"14522","state":"NY"},"arcs":[[-11142,11180,-11144,-11164,-11037,11181,-11024]]},{"type":"Polygon","properties":{"name":"PAVILION","zip":"14525","state":"NY"},"arcs":[[11182,-10756,-10882,-11129,-11132,11183,-11125,11184]]},{"type":"Polygon","properties":{"name":"PENFIELD","zip":"14526","state":"NY"},"arcs":[[11185,11186,-11067,-11063]]},{"type":"Polygon","properties":{"name":"PENN YAN","zip":"14527","state":"NY"},"arcs":[[11187,11188,11189,-11121,-10994,-11151,11190,11191,-11081,11192]]},{"type":"Polygon","properties":{"name":"PERRY","zip":"14530","state":"NY"},"arcs":[[11193,11194,11195,-11185,-11124,-11156,-11026]]},{"type":"Polygon","properties":{"name":"PHELPS","zip":"14532","state":"NY"},"arcs":[[-11078,-11039,-11163,-11134,-11043,-9940]]},{"type":"Polygon","properties":{"name":"PIFFARD","zip":"14533","state":"NY"},"arcs":[[-11133,-11010,-10980,-11073,-11126,-11184]]},{"type":"Polygon","properties":{"name":"PITTSFORD","zip":"14534","state":"NY"},"arcs":[[11196,-11148,-11113,-11094,11197,11198,-11065,-11066]]},{"type":"Polygon","properties":{"name":"PORTAGEVILLE","zip":"14536","state":"NY"},"arcs":[[11199,11200,-10685,-10790,-11029]]},{"type":"Polygon","properties":{"name":"ROMULUS","zip":"14541","state":"NY"},"arcs":[[-11179,11201,-11079,-9942,-9929,11202]]},{"type":"Polygon","properties":{"name":"RUSH","zip":"14543","state":"NY"},"arcs":[[-11009,11203,-11091,-11112,-10982]]},{"type":"Polygon","properties":{"name":"RUSHVILLE","zip":"14544","state":"NY"},"arcs":[[-11017,11204,-11191,-11150,11205]]},{"type":"Polygon","properties":{"name":"SCOTTSBURG","zip":"14545","state":"NY"},"arcs":[[-11082,-11045,-11055]]},{"type":"Polygon","properties":{"name":"SCOTTSVILLE","zip":"14546","state":"NY"},"arcs":[[11206,-11007,-11130,-11032,11207,11208]]},{"type":"Polygon","properties":{"name":"SHORTSVILLE","zip":"14548","state":"NY"},"arcs":[[-11014,-11021,-11182,-11036]]},{"type":"Polygon","properties":{"name":"SILVER SPRINGS","zip":"14550","state":"NY"},"arcs":[[11209,-11194,-11025,-10794]]},{"type":"Polygon","properties":{"name":"SODUS","zip":"14551","state":"NY"},"arcs":[[11210,11211,11212,-11166,-11136,-11165,-11147]]},{"type":"Polygon","properties":{"name":"SODUS POINT","zip":"14555","state":"NY"},"arcs":[[-11213,11213,-11167]]},{"type":"Polygon","properties":{"name":"SPENCERPORT","zip":"14559","state":"NY"},"arcs":[[-11098,11214,11215,11216,-11030,-10997]]},{"type":"Polygon","properties":{"name":"SPRINGWATER","zip":"14560","state":"NY"},"arcs":[[-11088,-11108,-11158,11217,-11056,-11050]]},{"type":"Polygon","properties":{"name":"STANLEY","zip":"14561","state":"NY"},"arcs":[[-11016,-11035,-11077,-11192,-11205]]},{"type":"Polygon","properties":{"name":"VICTOR","zip":"14564","state":"NY"},"arcs":[[-11115,-11149,-11197,-11070,-11138,-11022,-11012,-11103,-11116]]},{"type":"Polygon","properties":{"name":"WALWORTH","zip":"14568","state":"NY"},"arcs":[[-11141,-11172,11218,-11145,-11181]]},{"type":"Polygon","properties":{"name":"WARSAW","zip":"14569","state":"NY"},"arcs":[[-10665,-10721,11219,-11195,-11210,-10793,-10892]]},{"type":"Polygon","properties":{"name":"WATERPORT","zip":"14571","state":"NY"},"arcs":[[-10850,-10842,11220,-11119,-10975]]},{"type":"Polygon","properties":{"name":"WAYLAND","zip":"14572","state":"NY"},"arcs":[[-11218,-11157,11221,11222,11223,-11057]]},{"type":"Polygon","properties":{"name":"WEBSTER","zip":"14580","state":"NY"},"arcs":[[11224,11225,11226,11227,-11173,-11139,-11068,-11187]]},{"type":"Polygon","properties":{"name":"WEST HENRIETTA","zip":"14586","state":"NY"},"arcs":[[-11207,11228,-11092,-11204,-11008]]},{"type":"Polygon","properties":{"name":"WILLIAMSON","zip":"14589","state":"NY"},"arcs":[[-11175,11229,-11211,-11146,-11219]]},{"type":"Polygon","properties":{"name":"WOLCOTT","zip":"14590","state":"NY"},"arcs":[[-9914,-9923,-11042,-11169,11230]]},{"type":"Polygon","properties":{"name":"WYOMING","zip":"14591","state":"NY"},"arcs":[[-11220,-10720,-10754,-11183,-11196]]},{"type":"Polygon","properties":{"name":"ROCHESTER","zip":"14604","state":"NY"},"arcs":[[11231,11232,11233]]},{"type":"Polygon","properties":{"name":"ROCHESTER","zip":"14605","state":"NY"},"arcs":[[11234,11235,11236,11237,11238,11239,-11234]]},{"type":"Polygon","properties":{"name":"ROCHESTER","zip":"14606","state":"NY"},"arcs":[[11240,11241,11242,-11216,11243,11244,11245]]},{"type":"Polygon","properties":{"name":"ROCHESTER","zip":"14607","state":"NY"},"arcs":[[11246,11247,-11232,-11240,11248]]},{"type":"Polygon","properties":{"name":"ROCHESTER","zip":"14608","state":"NY"},"arcs":[[11249,11250,11251,-11241,11252,-11236,11253]]},{"type":"Polygon","properties":{"name":"ROCHESTER","zip":"14609","state":"NY"},"arcs":[[11254,11255,-11226,11256,11257,-11249,-11239]]},{"type":"Polygon","properties":{"name":"ROCHESTER","zip":"14610","state":"NY"},"arcs":[[11258,-11061,11259,11260,-11247,-11258]]},{"type":"Polygon","properties":{"name":"ROCHESTER","zip":"14611","state":"NY"},"arcs":[[-11242,-11252,11261,11262,11263]]},{"type":"Polygon","properties":{"name":"ROCHESTER","zip":"14612","state":"NY"},"arcs":[[11264,11265,-11096,11266,11267,11268]]},{"type":"Polygon","properties":{"name":"ROCHESTER","zip":"14613","state":"NY"},"arcs":[[-11253,-11246,11269,11270,-11237]]},{"type":"Polygon","properties":{"name":"ROCHESTER","zip":"14614","state":"NY"},"arcs":[[-11235,-11233,-11254]]},{"type":"Polygon","properties":{"name":"ROCHESTER","zip":"14615","state":"NY"},"arcs":[[11271,-11270,-11245,11272,11273,-11269,11274]]},{"type":"Polygon","properties":{"name":"ROCHESTER","zip":"14616","state":"NY"},"arcs":[[11273,11264,11275]]},{"type":"Polygon","properties":{"name":"ROCHESTER","zip":"14617","state":"NY"},"arcs":[[-11268,11276,11277,11278,-11275]]},{"type":"Polygon","properties":{"name":"ROCHESTER","zip":"14618","state":"NY"},"arcs":[[11279,11280,-11260,-11060,-11199]]},{"type":"Polygon","properties":{"name":"ROCHESTER","zip":"14620","state":"NY"},"arcs":[[11281,-11250,-11248,-11261,-11281,11282,-11263]]},{"type":"Polygon","properties":{"name":"ROCHESTER","zip":"14621","state":"NY"},"arcs":[[-11238,-11271,-11272,-11279,11283,-11255]]},{"type":"Polygon","properties":{"name":"ROCHESTER","zip":"14622","state":"NY"},"arcs":[[-11278,11284,-11227,-11256,-11284]]},{"type":"Polygon","properties":{"name":"ROCHESTER","zip":"14623","state":"NY"},"arcs":[[-11093,-11229,-11209,11285,-11283,-11280,-11198]]},{"type":"Polygon","properties":{"name":"ROCHESTER","zip":"14624","state":"NY"},"arcs":[[-11217,-11243,-11264,-11286,-11208,-11031]]},{"type":"Polygon","properties":{"name":"ROCHESTER","zip":"14625","state":"NY"},"arcs":[[-11062,-11259,-11257,-11225,-11186]]},{"type":"Polygon","properties":{"name":"ROCHESTER","zip":"14626","state":"NY"},"arcs":[[-11244,-11215,-11097,-11266,11275,-11273]]},{"type":"Polygon","properties":{"name":"ROCHESTER","zip":"14627","state":"NY"},"arcs":[[-11262,-11251,-11282]]},{"type":"Polygon","properties":{"name":"JAMESTOWN","zip":"14701","state":"NY"},"arcs":[[11286,11287,11288,11289,11290,11291,11292,11293,11294]]},{"type":"Polygon","properties":{"name":"ALLEGANY","zip":"14706","state":"NY"},"arcs":[[11295,11296,11297,11298,11299,11300]]},{"type":"Polygon","properties":{"name":"ALMA","zip":"14708","state":"NY"},"arcs":[[11301,11302,11303,11304]]},{"type":"Polygon","properties":{"name":"ANGELICA","zip":"14709","state":"NY"},"arcs":[[11305,11306,11307,11308,11309,11310,11311]]},{"type":"Polygon","properties":{"name":"ASHVILLE","zip":"14710","state":"NY"},"arcs":[[11312,11313,11314,11315,11316,11317,11318,-11290]]},{"type":"Polygon","properties":{"name":"BELFAST","zip":"14711","state":"NY"},"arcs":[[11319,11320,11321,11322,11323,-11308]]},{"type":"Polygon","properties":{"name":"BEMUS POINT","zip":"14712","state":"NY"},"arcs":[[11324,11325,11326,-11292,11327,-11318]]},{"type":"Polygon","properties":{"name":"BLACK CREEK","zip":"14714","state":"NY"},"arcs":[[11328,11329,11330,-11322]]},{"type":"Polygon","properties":{"name":"BOLIVAR","zip":"14715","state":"NY"},"arcs":[[11331,11332,11333,11334,11335,-11305,11336]]},{"type":"Polygon","properties":{"name":"BROCTON","zip":"14716","state":"NY"},"arcs":[[11337,11338,11339,-10786]]},{"type":"Polygon","properties":{"name":"CANEADEA","zip":"14717","state":"NY"},"arcs":[[11340,11341,11342,11343,-11323,-11331]]},{"type":"Polygon","properties":{"name":"CASSADAGA","zip":"14718","state":"NY"},"arcs":[[11344,11345,-10784,-10777,11346]]},{"type":"Polygon","properties":{"name":"CATTARAUGUS","zip":"14719","state":"NY"},"arcs":[[11347,-10875,-10723,-10807,11348,11349,11350]]},{"type":"Polygon","properties":{"name":"CERES","zip":"14721","state":"NY"},"arcs":[[11351,11352,11353]]},{"type":"Polygon","properties":{"name":"CHERRY CREEK","zip":"14723","state":"NY"},"arcs":[[11354,11355,11356,-11347,-10783,-10877]]},{"type":"Polygon","properties":{"name":"CLYMER","zip":"14724","state":"NY"},"arcs":[[11357,11358,11359,11360,11361,11362,11363]]},{"type":"Polygon","properties":{"name":"CONEWANGO VALLEY","zip":"14726","state":"NY"},"arcs":[[11364,-11355,-10876,-11348,11365,11366]]},{"type":"Polygon","properties":{"name":"CUBA","zip":"14727","state":"NY"},"arcs":[[11367,11368,11369,11370,-11341,-11330,11371,-11333,11372]]},{"type":"Polygon","properties":{"name":"DEWITTVILLE","zip":"14728","state":"NY"},"arcs":[[11373,11374,11375,-11339,11376,11377,-11326]]},{"type":"Polygon","properties":{"name":"EAST OTTO","zip":"14729","state":"NY"},"arcs":[[11378,11379,-11349,-10806,-10881,-10893]]},{"type":"Polygon","properties":{"name":"ELLICOTTVILLE","zip":"14731","state":"NY"},"arcs":[[11380,11381,11382,11383,-11379,-10894,-10845]]},{"type":"Polygon","properties":{"name":"FALCONER","zip":"14733","state":"NY"},"arcs":[[11384,11385,-11295,11386]]},{"type":"Polygon","properties":{"name":"FILLMORE","zip":"14735","state":"NY"},"arcs":[[11387,-10776,-10788,-10686,-11201,11388,11389,-11309,-11324,-11344]]},{"type":"Polygon","properties":{"name":"FINDLEY LAKE","zip":"14736","state":"NY"},"arcs":[[11390,11391,11392,-11363]]},{"type":"Polygon","properties":{"name":"FRANKLINVILLE","zip":"14737","state":"NY"},"arcs":[[-10847,-10727,-10774,11393,-11370,11394,11395,-11381]]},{"type":"Polygon","properties":{"name":"FREWSBURG","zip":"14738","state":"NY"},"arcs":[[-11386,11396,11397,11398,11399,-11287]]},{"type":"Polygon","properties":{"name":"FRIENDSHIP","zip":"14739","state":"NY"},"arcs":[[-11329,-11321,11400,11401,-11334,-11372]]},{"type":"Polygon","properties":{"name":"GERRY","zip":"14740","state":"NY"},"arcs":[[11402,-11356,-11365,11403,-11387,-11294]]},{"type":"Polygon","properties":{"name":"GREAT VALLEY","zip":"14741","state":"NY"},"arcs":[[11404,-11382,-11396,11405,-11298,11406]]},{"type":"Polygon","properties":{"name":"HINSDALE","zip":"14743","state":"NY"},"arcs":[[11407,-11299,-11406,-11395,-11369]]},{"type":"Polygon","properties":{"name":"HOUGHTON","zip":"14744","state":"NY"},"arcs":[[-11343,11408,-10772,-11388]]},{"type":"Polygon","properties":{"name":"KENNEDY","zip":"14747","state":"NY"},"arcs":[[11409,-11397,-11385,-11404,-11367]]},{"type":"Polygon","properties":{"name":"KILL BUCK","zip":"14748","state":"NY"},"arcs":[[11410,11411,-11407,-11297]]},{"type":"Polygon","properties":{"name":"LAKEWOOD","zip":"14750","state":"NY"},"arcs":[[-11319,-11328,-11291]]},{"type":"Polygon","properties":{"name":"LIMESTONE","zip":"14753","state":"NY"},"arcs":[[11412,11413,11414,11415,-11411,-11296]]},{"type":"Polygon","properties":{"name":"LITTLE GENESEE","zip":"14754","state":"NY"},"arcs":[[11416,-11354,11417,-11337,-11304]]},{"type":"Polygon","properties":{"name":"LITTLE VALLEY","zip":"14755","state":"NY"},"arcs":[[11418,11419,-11350,-11380,-11384]]},{"type":"Polygon","properties":{"name":"MAYVILLE","zip":"14757","state":"NY"},"arcs":[[11420,11421,-11374,-11325,-11317]]},{"type":"Polygon","properties":{"name":"OLEAN","zip":"14760","state":"NY"},"arcs":[[11422,11423,11424,-11300,-11408,-11368]]},{"type":"Polygon","properties":{"name":"PANAMA","zip":"14767","state":"NY"},"arcs":[[11425,-11315,11426,-11358]]},{"type":"Polygon","properties":{"name":"PORTLAND","zip":"14769","state":"NY"},"arcs":[[11427,11428,-11340,-11376]]},{"type":"Polygon","properties":{"name":"PORTVILLE","zip":"14770","state":"NY"},"arcs":[[-11373,-11332,-11418,-11353,11429,11430,-11423]]},{"type":"Polygon","properties":{"name":"RANDOLPH","zip":"14772","state":"NY"},"arcs":[[-11366,-11351,-11420,11431,-11398,-11410]]},{"type":"Polygon","properties":{"name":"RIPLEY","zip":"14775","state":"NY"},"arcs":[[11432,-11392,11433,11434,11435]]},{"type":"Polygon","properties":{"name":"RUSHFORD","zip":"14777","state":"NY"},"arcs":[[-11371,-11394,-10773,-11409,-11342]]},{"type":"Polygon","properties":{"name":"SALAMANCA","zip":"14779","state":"NY"},"arcs":[[11436,11437,-11399,-11432,-11419,-11383,-11405,-11412,-11416]]},{"type":"Polygon","properties":{"name":"SHERMAN","zip":"14781","state":"NY"},"arcs":[[-11426,-11364,-11393,-11433,11438,-11421,-11316]]},{"type":"Polygon","properties":{"name":"SINCLAIRVILLE","zip":"14782","state":"NY"},"arcs":[[-11378,11439,-11345,-11357,-11403,-11293,-11327]]},{"type":"Polygon","properties":{"name":"STOCKTON","zip":"14784","state":"NY"},"arcs":[[-11377,-11338,-10785,-11346,-11440]]},{"type":"Polygon","properties":{"name":"WESTFIELD","zip":"14787","state":"NY"},"arcs":[[-11428,-11375,-11422,-11439,-11436,11440]]},{"type":"Polygon","properties":{"name":"ADDISON","zip":"14801","state":"NY"},"arcs":[[11441,11442,11443,11444,11445,11446,11447,11448]]},{"type":"Polygon","properties":{"name":"ALFRED STATION","zip":"14803","state":"NY"},"arcs":[[11449,11450,11451,11452,11453]]},{"type":"Polygon","properties":{"name":"ALMOND","zip":"14804","state":"NY"},"arcs":[[11454,11455,11456,-11452,11457,-11306]]},{"type":"Polygon","properties":{"name":"ALPINE","zip":"14805","state":"NY"},"arcs":[[11458,11459,11460,11461,11462,11463]]},{"type":"Polygon","properties":{"name":"ANDOVER","zip":"14806","state":"NY"},"arcs":[[11464,11465,11466,11467,-11454,11468,11469,11470]]},{"type":"Polygon","properties":{"name":"ARKPORT","zip":"14807","state":"NY"},"arcs":[[11471,-11058,-11224,11472,11473,-11456]]},{"type":"Polygon","properties":{"name":"ATLANTA","zip":"14808","state":"NY"},"arcs":[[11474,-11222,-11162]]},{"type":"Polygon","properties":{"name":"AVOCA","zip":"14809","state":"NY"},"arcs":[[11475,11476,11477]]},{"type":"Polygon","properties":{"name":"BATH","zip":"14810","state":"NY"},"arcs":[[11478,11479,11480,-11476,11481,11482,11483,11484,11485]]},{"type":"Polygon","properties":{"name":"BEAVER DAMS","zip":"14812","state":"NY"},"arcs":[[11486,11487,11488,11489,11490,11491,11492,11493]]},{"type":"Polygon","properties":{"name":"BELMONT","zip":"14813","state":"NY"},"arcs":[[11494,-11401,-11320,-11307,-11458,-11451]]},{"type":"Polygon","properties":{"name":"BIG FLATS","zip":"14814","state":"NY"},"arcs":[[11495,11496,11497]]},{"type":"Polygon","properties":{"name":"BRADFORD","zip":"14815","state":"NY"},"arcs":[[11498,11499,11500,11501,-11488,11502]]},{"type":"Polygon","properties":{"name":"BROOKTONDALE","zip":"14817","state":"NY"},"arcs":[[-10608,11503,-9804,-9772,-10594,-10445,-10460]]},{"type":"Polygon","properties":{"name":"BURDETT","zip":"14818","state":"NY"},"arcs":[[11504,11505,11506,11507,11508]]},{"type":"Polygon","properties":{"name":"CAMERON","zip":"14819","state":"NY"},"arcs":[[11509,11510,11511,-11479]]},{"type":"Polygon","properties":{"name":"CAMERON MILLS","zip":"14820","state":"NY"},"arcs":[[11512,-11510,-11486,11513,-11443,11514]]},{"type":"Polygon","properties":{"name":"CAMPBELL","zip":"14821","state":"NY"},"arcs":[[11515,-11444,-11514,-11485,11516]]},{"type":"Polygon","properties":{"name":"CANASERAGA","zip":"14822","state":"NY"},"arcs":[[-11455,-11312,11517,-11059,-11472]]},{"type":"Polygon","properties":{"name":"CANISTEO","zip":"14823","state":"NY"},"arcs":[[11518,-11480,-11512,11519,11520,-11470]]},{"type":"Polygon","properties":{"name":"CAYUTA","zip":"14824","state":"NY"},"arcs":[[11521,11522,11523,-11463,11524]]},{"type":"Polygon","properties":{"name":"CHEMUNG","zip":"14825","state":"NY"},"arcs":[[11525,11526,11527,11528,11529]]},{"type":"Polygon","properties":{"name":"COHOCTON","zip":"14826","state":"NY"},"arcs":[[-11223,-11475,-11161,11530,-11477,11531,-11473]]},{"type":"Polygon","properties":{"name":"CORNING","zip":"14830","state":"NY"},"arcs":[[11532,-11494,11533,-11496,11534,11535,11536]]},{"type":"Polygon","properties":{"name":"DALTON","zip":"14836","state":"NY"},"arcs":[[11537,-11310,-11390,11538,-11170,-11051]]},{"type":"Polygon","properties":{"name":"DUNDEE","zip":"14837","state":"NY"},"arcs":[[11539,11540,-11189,11541,11542,11543,11544,-11501]]},{"type":"Polygon","properties":{"name":"ERIN","zip":"14838","state":"NY"},"arcs":[[11545,11546,11547,11548,-11523]]},{"type":"Polygon","properties":{"name":"GREENWOOD","zip":"14839","state":"NY"},"arcs":[[11549,11550,11551,-11471,-11521]]},{"type":"Polygon","properties":{"name":"HAMMONDSPORT","zip":"14840","state":"NY"},"arcs":[[11552,-11483,11553,11554,11555,-11540,-11500]]},{"type":"Polygon","properties":{"name":"HECTOR","zip":"14841","state":"NY"},"arcs":[[11556,11557,-11508,11558]]},{"type":"Polygon","properties":{"name":"HIMROD","zip":"14842","state":"NY"},"arcs":[[-11542,-11188,11559]]},{"type":"Polygon","properties":{"name":"HORNELL","zip":"14843","state":"NY"},"arcs":[[-11469,-11453,-11457,-11474,-11532,-11481,-11519]]},{"type":"Polygon","properties":{"name":"HORSEHEADS","zip":"14845","state":"NY"},"arcs":[[11560,11561,11562,-11497,-11534,-11493,11563,11564,11565,-11464,-11524,-11549]]},{"type":"Polygon","properties":{"name":"HUNT","zip":"14846","state":"NY"},"arcs":[[-11028,-11155,-11171,-11539,-11389,-11200]]},{"type":"Polygon","properties":{"name":"INTERLAKEN","zip":"14847","state":"NY"},"arcs":[[11566,11567,-11176,11568]]},{"type":"Polygon","properties":{"name":"ITHACA","zip":"14850","state":"NY"},"arcs":[[-10607,11569,11570,11571,11572,11573,-9805,-11504]]},{"type":"Polygon","properties":{"name":"JASPER","zip":"14855","state":"NY"},"arcs":[[-11520,-11511,-11513,11574,11575,-11550]]},{"type":"Polygon","properties":{"name":"LINDLEY","zip":"14858","state":"NY"},"arcs":[[11576,-11537,11577,11578,11579,11580,-11446]]},{"type":"Polygon","properties":{"name":"LOCKWOOD","zip":"14859","state":"NY"},"arcs":[[11581,-11547,11582,11583,-10442,11584,-11530]]},{"type":"Polygon","properties":{"name":"LODI","zip":"14860","state":"NY"},"arcs":[[11585,-11557,11586,-11177,-11568]]},{"type":"Polygon","properties":{"name":"LOWMAN","zip":"14861","state":"NY"},"arcs":[[11587,-11561,-11548,-11582,-11529]]},{"type":"Polygon","properties":{"name":"MILLPORT","zip":"14864","state":"NY"},"arcs":[[11588,-11491,11589,-11565]]},{"type":"Polygon","properties":{"name":"MONTOUR FALLS","zip":"14865","state":"NY"},"arcs":[[-11590,-11490,11590,11591,-11506,11592,-11459,-11566]]},{"type":"Polygon","properties":{"name":"NEWFIELD","zip":"14867","state":"NY"},"arcs":[[-11462,11593,-11571,11594,11595,-11525]]},{"type":"Polygon","properties":{"name":"ODESSA","zip":"14869","state":"NY"},"arcs":[[-11593,-11505,11596,-11460]]},{"type":"Polygon","properties":{"name":"PAINTED POST","zip":"14870","state":"NY"},"arcs":[[-11577,-11445,-11516,11597,-11503,-11487,-11533]]},{"type":"Polygon","properties":{"name":"PINE CITY","zip":"14871","state":"NY"},"arcs":[[11598,11599,11600,-11578,-11536,11601,11602,11603]]},{"type":"Polygon","properties":{"name":"PINE VALLEY","zip":"14872","state":"NY"},"arcs":[[-11492,-11589,-11564]]},{"type":"Polygon","properties":{"name":"PRATTSBURGH","zip":"14873","state":"NY"},"arcs":[[-11531,-11160,-10991,11604,11605,-11554,-11482,-11478]]},{"type":"Polygon","properties":{"name":"PULTENEY","zip":"14874","state":"NY"},"arcs":[[-11606,11606,-11555]]},{"type":"Polygon","properties":{"name":"REXVILLE","zip":"14877","state":"NY"},"arcs":[[11607,11608,-11465,-11552,11609]]},{"type":"Polygon","properties":{"name":"ROCK STREAM","zip":"14878","state":"NY"},"arcs":[[11610,-11544,11611]]},{"type":"Polygon","properties":{"name":"SAVONA","zip":"14879","state":"NY"},"arcs":[[-11553,-11499,-11598,-11517,-11484]]},{"type":"Polygon","properties":{"name":"SCIO","zip":"14880","state":"NY"},"arcs":[[-11495,-11450,-11468,11612,-11335,-11402]]},{"type":"Polygon","properties":{"name":"LANSING","zip":"14882","state":"NY"},"arcs":[[-9846,-9813,-9865,-9823,-9806,-11574,11613]]},{"type":"Polygon","properties":{"name":"SPENCER","zip":"14883","state":"NY"},"arcs":[[11614,-11595,-11570,-10606,-10458,-10590,-11584]]},{"type":"Polygon","properties":{"name":"SWAIN","zip":"14884","state":"NY"},"arcs":[[-11538,-11518,-11311]]},{"type":"Polygon","properties":{"name":"TROUPSBURG","zip":"14885","state":"NY"},"arcs":[[-11551,-11576,11615,11616,11617,-11610]]},{"type":"Polygon","properties":{"name":"TRUMANSBURG","zip":"14886","state":"NY"},"arcs":[[-11594,-11461,-11597,-11509,-11558,-11586,-11567,11618,-11572]]},{"type":"Polygon","properties":{"name":"VAN ETTEN","zip":"14889","state":"NY"},"arcs":[[-11546,-11522,-11596,-11615,-11583]]},{"type":"Polygon","properties":{"name":"WATKINS GLEN","zip":"14891","state":"NY"},"arcs":[[-11591,-11489,-11502,-11545,-11611,11619]]},{"type":"Polygon","properties":{"name":"WAVERLY","zip":"14892","state":"NY"},"arcs":[[11620,11621,-11526,-11585,-10441]]},{"type":"Polygon","properties":{"name":"WELLSBURG","zip":"14894","state":"NY"},"arcs":[[11622,11623,-11599,11624]]},{"type":"Polygon","properties":{"name":"WELLSVILLE","zip":"14895","state":"NY"},"arcs":[[-11336,-11613,-11467,11625,11626,11627,-11302]]},{"type":"Polygon","properties":{"name":"WHITESVILLE","zip":"14897","state":"NY"},"arcs":[[11628,11629,11630,-11626,-11466,-11609]]},{"type":"Polygon","properties":{"name":"WOODHULL","zip":"14898","state":"NY"},"arcs":[[11631,11632,11633,-11616,-11575,-11515,-11442]]},{"type":"Polygon","properties":{"name":"ELMIRA","zip":"14901","state":"NY"},"arcs":[[11634,11635,11636,-11562,-11588,-11528,11637,11638,-11623]]},{"type":"Polygon","properties":{"name":"ELMIRA","zip":"14903","state":"NY"},"arcs":[[11639,-11602,-11535,-11498,-11563,-11637]]},{"type":"Polygon","properties":{"name":"ELMIRA","zip":"14904","state":"NY"},"arcs":[[11640,-11635,-11625,-11604]]},{"type":"Polygon","properties":{"name":"ELMIRA","zip":"14905","state":"NY"},"arcs":[[-11603,-11640,-11636,-11641]]},{"type":"Polygon","properties":{"name":"ALIQUIPPA","zip":"15001","state":"PA"},"arcs":[[11641,11642,11643,11644,11645,11646]]},{"type":"Polygon","properties":{"name":"AMBRIDGE","zip":"15003","state":"PA"},"arcs":[[11647,11648,11649,11650]]},{"type":"Polygon","properties":{"name":"BADEN","zip":"15005","state":"PA"},"arcs":[[11651,-11650,11652,11653,11654,11655,11656,11657]]},{"type":"Polygon","properties":{"name":"BEAVER","zip":"15009","state":"PA"},"arcs":[[11658,11659,11660,11661,11662]]},{"type":"Polygon","properties":{"name":"BEAVER FALLS","zip":"15010","state":"PA"},"arcs":[[11663,11664,11665,11666,11667,11668,11669,-11660,11670]]},{"type":"Polygon","properties":{"name":"BELLE VERNON","zip":"15012","state":"PA"},"arcs":[[11671,11672,11673,11674,11675,11676,11677,11678,11679,11680,11681]]},{"type":"Polygon","properties":{"name":"BRACKENRIDGE","zip":"15014","state":"PA"},"arcs":[[11682,11683,11684]]},{"type":"Polygon","properties":{"name":"BRIDGEVILLE","zip":"15017","state":"PA"},"arcs":[[11685,11686,11687,11688,11689,11690,11691,11692,11693,11694]]},{"type":"Polygon","properties":{"name":"BUENA VISTA","zip":"15018","state":"PA"},"arcs":[[11695,11696,11697,11698,11699,11700]]},{"type":"Polygon","properties":{"name":"BULGER","zip":"15019","state":"PA"},"arcs":[[11701,11702,11703,11704]]},{"type":"Polygon","properties":{"name":"BURGETTSTOWN","zip":"15021","state":"PA"},"arcs":[[11705,11706,11707,11708,11709,11710,11711,-11702,11712]]},{"type":"Polygon","properties":{"name":"CHARLEROI","zip":"15022","state":"PA"},"arcs":[[11713,11714,11715,11716,11717,11718,-11674]]},{"type":"Polygon","properties":{"name":"CHESWICK","zip":"15024","state":"PA"},"arcs":[[11719,11720,11721,11722,11723,11724,11725,11726,11727,11728]]},{"type":"Polygon","properties":{"name":"CLAIRTON","zip":"15025","state":"PA"},"arcs":[[11729,11730,11731,11732,11733,11734,11735]]},{"type":"Polygon","properties":{"name":"CLINTON","zip":"15026","state":"PA"},"arcs":[[11736,-11703,-11712,11737,-11647,11738]]},{"type":"Polygon","properties":{"name":"CONWAY","zip":"15027","state":"PA"},"arcs":[[11739,-11654,11740]]},{"type":"Polygon","properties":{"name":"CREIGHTON","zip":"15030","state":"PA"},"arcs":[[11741,11742,11743]]},{"type":"Polygon","properties":{"name":"CUDDY","zip":"15031","state":"PA"},"arcs":[[11744,11745,-11687]]},{"type":"Polygon","properties":{"name":"DRAVOSBURG","zip":"15034","state":"PA"},"arcs":[[-11747,-11748,-11749]]},{"type":"Polygon","properties":{"name":"ELIZABETH","zip":"15037","state":"PA"},"arcs":[[11749,-11677,11750,-11730,11751,11752,11753,-11696]]},{"type":"Polygon","properties":{"name":"FREEDOM","zip":"15042","state":"PA"},"arcs":[[11754,11755,-11655,-11740,11756]]},{"type":"Polygon","properties":{"name":"GEORGETOWN","zip":"15043","state":"PA"},"arcs":[[11757,11758,11759,11760,-11710]]},{"type":"Polygon","properties":{"name":"GIBSONIA","zip":"15044","state":"PA"},"arcs":[[11761,11762,11763,11764,11765,11766,-11727,11767]]},{"type":"Polygon","properties":{"name":"GLASSPORT","zip":"15045","state":"PA"},"arcs":[[11768,-11752,-11736,11769,11748,11770]]},{"type":"Polygon","properties":{"name":"HARWICK","zip":"15049","state":"PA"},"arcs":[[11771,11772,-11720]]},{"type":"Polygon","properties":{"name":"HOOKSTOWN","zip":"15050","state":"PA"},"arcs":[[11773,-11642,-11738,-11711,-11761,11774]]},{"type":"Polygon","properties":{"name":"INDIANOLA","zip":"15051","state":"PA"},"arcs":[[11775,-11724]]},{"type":"Polygon","properties":{"name":"INDUSTRY","zip":"15052","state":"PA"},"arcs":[[11776,-11671,-11659,11777]]},{"type":"Polygon","properties":{"name":"LEETSDALE","zip":"15056","state":"PA"},"arcs":[[-11648,11778,11779]]},{"type":"Polygon","properties":{"name":"MC DONALD","zip":"15057","state":"PA"},"arcs":[[-11705,11780,11781,-11689,11782,-11745,-11686,11783,11784,-11713]]},{"type":"Polygon","properties":{"name":"MIDLAND","zip":"15059","state":"PA"},"arcs":[[11785,11786,11787,-11664,-11777,11788]]},{"type":"Polygon","properties":{"name":"MONACA","zip":"15061","state":"PA"},"arcs":[[11789,11790,-11644]]},{"type":"Polygon","properties":{"name":"MONESSEN","zip":"15062","state":"PA"},"arcs":[[-11719,11791,-11675]]},{"type":"Polygon","properties":{"name":"MONONGAHELA","zip":"15063","state":"PA"},"arcs":[[-11792,-11718,11792,-11731,-11751,-11676]]},{"type":"Polygon","properties":{"name":"NATRONA HEIGHTS","zip":"15065","state":"PA"},"arcs":[[11793,11794,11795,11796,-11685]]},{"type":"Polygon","properties":{"name":"NEW BRIGHTON","zip":"15066","state":"PA"},"arcs":[[11797,-11661,-11670,11798]]},{"type":"Polygon","properties":{"name":"NEW KENSINGTON","zip":"15068","state":"PA"},"arcs":[[11799,11800,11801,11802,11803,11804,11805,-11722,11806,-11744,11807,-11683,-11797,11808]]},{"type":"Polygon","properties":{"name":"OAKDALE","zip":"15071","state":"PA"},"arcs":[[11809,-11690,-11782,11810,11811,11812,11813]]},{"type":"Polygon","properties":{"name":"ROCHESTER","zip":"15074","state":"PA"},"arcs":[[-11798,11814,11815,11816,-11755,11817,-11662]]},{"type":"Polygon","properties":{"name":"RUSSELLTON","zip":"15076","state":"PA"},"arcs":[[-11767,11818,-11728]]},{"type":"Polygon","properties":{"name":"SHIPPINGPORT","zip":"15077","state":"PA"},"arcs":[[-11774,11819,-11790,-11643]]},{"type":"Polygon","properties":{"name":"SUTERSVILLE","zip":"15083","state":"PA"},"arcs":[[11820,-11700,11821]]},{"type":"Polygon","properties":{"name":"TARENTUM","zip":"15084","state":"PA"},"arcs":[[-11819,-11766,11822,11823,-11794,-11684,-11808,-11743,11824,-11772,-11729]]},{"type":"Polygon","properties":{"name":"TRAFFORD","zip":"15085","state":"PA"},"arcs":[[11825,11826,11827,11828,11829,11830]]},{"type":"Polygon","properties":{"name":"WEST NEWTON","zip":"15089","state":"PA"},"arcs":[[11831,11832,11833,-11678,-11750,-11701,-11821,11834,11835,11836,11837]]},{"type":"Polygon","properties":{"name":"WEXFORD","zip":"15090","state":"PA"},"arcs":[[11838,-11658,11839,-11762,11840,11841]]},{"type":"Polygon","properties":{"name":"ALLISON PARK","zip":"15101","state":"PA"},"arcs":[[11842,11843,11844,-11841,-11768,-11726]]},{"type":"Polygon","properties":{"name":"BETHEL PARK","zip":"15102","state":"PA"},"arcs":[[11845,11846,11847,11848,11849,11850]]},{"type":"Polygon","properties":{"name":"BRADDOCK","zip":"15104","state":"PA"},"arcs":[[11851,11852,11853,11854,11855,11856]]},{"type":"Polygon","properties":{"name":"CARNEGIE","zip":"15106","state":"PA"},"arcs":[[11857,-11814,11858,11859,11860,-11692]]},{"type":"Polygon","properties":{"name":"CORAOPOLIS","zip":"15108","state":"PA"},"arcs":[[11861,-11812,11862,-11739,-11646,11863,11864]]},{"type":"Polygon","properties":{"name":"DUQUESNE","zip":"15110","state":"PA"},"arcs":[[11865,11866,11867]]},{"type":"Polygon","properties":{"name":"EAST PITTSBURGH","zip":"15112","state":"PA"},"arcs":[[11868,11869,11870,-11852]]},{"type":"Polygon","properties":{"name":"GLENSHAW","zip":"15116","state":"PA"},"arcs":[[11871,11872,11873,11874,-11844]]},{"type":"Polygon","properties":{"name":"HOMESTEAD","zip":"15120","state":"PA"},"arcs":[[11875,11876,11877,-11855,11878]]},{"type":"Polygon","properties":{"name":"WEST MIFFLIN","zip":"15122","state":"PA"},"arcs":[[11879,11880,-11879,-11854,-11866,11881,11746,-11770,-11735]]},{"type":"Polygon","properties":{"name":"IMPERIAL","zip":"15126","state":"PA"},"arcs":[[-11737,-11863,-11811,-11781,-11704]]},{"type":"Polygon","properties":{"name":"SOUTH PARK","zip":"15129","state":"PA"},"arcs":[[11882,-11850,11883,-11733,11884]]},{"type":"Polygon","properties":{"name":"MC KEESPORT","zip":"15131","state":"PA"},"arcs":[[11885,11886,11887,11888,-11698]]},{"type":"Polygon","properties":{"name":"MC KEESPORT","zip":"15132","state":"PA"},"arcs":[[11889,11890,-11771,11747,-11882,-11868,11891,-11887]]},{"type":"Polygon","properties":{"name":"MC KEESPORT","zip":"15133","state":"PA"},"arcs":[[11892,-11753,-11769,-11891]]},{"type":"Polygon","properties":{"name":"MC KEESPORT","zip":"15135","state":"PA"},"arcs":[[-11754,-11893,-11890,-11886,-11697]]},{"type":"Polygon","properties":{"name":"MC KEES ROCKS","zip":"15136","state":"PA"},"arcs":[[11893,11894,-11865,11895]]},{"type":"Polygon","properties":{"name":"NORTH VERSAILLES","zip":"15137","state":"PA"},"arcs":[[-11853,-11871,11896,11897,-11826,11898,-11888,-11892,-11867]]},{"type":"Polygon","properties":{"name":"OAKMONT","zip":"15139","state":"PA"},"arcs":[[11899,-11805,11900]]},{"type":"Polygon","properties":{"name":"PRESTO","zip":"15142","state":"PA"},"arcs":[[-11810,-11858,-11691]]},{"type":"Polygon","properties":{"name":"SEWICKLEY","zip":"15143","state":"PA"},"arcs":[[11901,11902,11903,-11779,-11651,-11652,-11839]]},{"type":"Polygon","properties":{"name":"SPRINGDALE","zip":"15144","state":"PA"},"arcs":[[-11773,-11825,-11742,-11807,-11721]]},{"type":"Polygon","properties":{"name":"TURTLE CREEK","zip":"15145","state":"PA"},"arcs":[[-11870,11904,11905,11906,11907,-11897]]},{"type":"Polygon","properties":{"name":"MONROEVILLE","zip":"15146","state":"PA"},"arcs":[[11908,-11907,11909,11910,11911,-11828]]},{"type":"Polygon","properties":{"name":"VERONA","zip":"15147","state":"PA"},"arcs":[[11912,11913,-11901,-11804,11914]]},{"type":"Polygon","properties":{"name":"WILMERDING","zip":"15148","state":"PA"},"arcs":[[-11827,-11898,-11908,-11909]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15201","state":"PA"},"arcs":[[11915,11916,11917,11918,11919,11920,11921]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15202","state":"PA"},"arcs":[[11922,11923,11924,-11903,11925,11926]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15203","state":"PA"},"arcs":[[11927,11928,11929,11930]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15204","state":"PA"},"arcs":[[11931,11932,-11894,11933,11934]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15205","state":"PA"},"arcs":[[-11862,-11895,-11933,11935,-11859,-11813]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15206","state":"PA"},"arcs":[[11936,11937,-11918,11938,11939,-11913,11940,11941,11942]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15207","state":"PA"},"arcs":[[-11881,11943,11944,11945,-11928,11946,11947,11948,-11876]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15208","state":"PA"},"arcs":[[11949,11950,-11942,11951]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15209","state":"PA"},"arcs":[[11952,11953,-11917,11954,11955,11956,-11874]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15210","state":"PA"},"arcs":[[11957,11958,-11929,-11946,11959,11960]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15211","state":"PA"},"arcs":[[11961,11962,11963,-11930,-11959,11964]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15212","state":"PA"},"arcs":[[-11924,11965,-11955,-11916,11966,11967]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15213","state":"PA"},"arcs":[[-11948,11968,-11920,11969,11970,11971]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15214","state":"PA"},"arcs":[[-11966,-11923,11972,11973,-11956]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15215","state":"PA"},"arcs":[[11974,-11939,-11954,11975]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15216","state":"PA"},"arcs":[[11976,11977,11978,11979,11980,-11962]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15217","state":"PA"},"arcs":[[11981,-11943,-11951,11982,-11877,-11949,-11972]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15218","state":"PA"},"arcs":[[-11878,-11983,11983,-11856]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15219","state":"PA"},"arcs":[[11984,-11935,11985,11986,-11921,-11969,-11947,-11931,-11964]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15220","state":"PA"},"arcs":[[11987,-11860,-11936,-11932,-11985,-11963,-11981]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15221","state":"PA"},"arcs":[[-11950,11988,-11905,-11869,-11857,-11984]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15222","state":"PA"},"arcs":[[-11967,-11922,-11987]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15223","state":"PA"},"arcs":[[-11953,-11873,11989,-11976]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15224","state":"PA"},"arcs":[[11990,-11970,-11919,-11938]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15226","state":"PA"},"arcs":[[-11965,-11958,11991,-11977]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15227","state":"PA"},"arcs":[[11992,-11960,-11945,11993]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15228","state":"PA"},"arcs":[[11994,11995,-11979,11996,-11847]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15229","state":"PA"},"arcs":[[-11927,11997,-11973]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15232","state":"PA"},"arcs":[[-11982,-11971,-11991,-11937]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15234","state":"PA"},"arcs":[[11998,-11848,-11997,-11978,-11992,-11961,-11993]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15235","state":"PA"},"arcs":[[-11952,-11941,-11915,-11803,11999,-11910,-11906,-11989]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15236","state":"PA"},"arcs":[[-11999,-11994,-11944,-11880,-11734,-11884,-11849]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15237","state":"PA"},"arcs":[[-11974,-11998,-11926,-11902,-11842,-11845,-11875,-11957]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15238","state":"PA"},"arcs":[[-11914,-11940,-11975,-11990,-11872,-11843,-11725,-11776,-11723,-11806,-11900]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15239","state":"PA"},"arcs":[[12000,-11911,-12000,-11802]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15241","state":"PA"},"arcs":[[12001,12002,-11694,12003,-11995,-11846]]},{"type":"Polygon","properties":{"name":"PITTSBURGH","zip":"15243","state":"PA"},"arcs":[[-11861,-11988,-11980,-11996,-12004,-11693]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"15301","state":"PA"},"arcs":[[12004,12005,12006,12007,12008,12009,12010,12011,12012,12013]]},{"type":"Polygon","properties":{"name":"ALEPPO","zip":"15310","state":"PA"},"arcs":[[12014,12015,12016,12017,12018]]},{"type":"Polygon","properties":{"name":"AMITY","zip":"15311","state":"PA"},"arcs":[[12019,12020,-12006,12021]]},{"type":"Polygon","properties":{"name":"AVELLA","zip":"15312","state":"PA"},"arcs":[[12022,12023,-11707,12024,-12009,12025,12026]]},{"type":"Polygon","properties":{"name":"BEALLSVILLE","zip":"15313","state":"PA"},"arcs":[[12027,12028,12029]]},{"type":"Polygon","properties":{"name":"BENTLEYVILLE","zip":"15314","state":"PA"},"arcs":[[12030,12031,12032,12033,12034,12035,-11716]]},{"type":"Polygon","properties":{"name":"CANONSBURG","zip":"15317","state":"PA"},"arcs":[[-12011,12036,-11784,-11695,-12003,12037,12038,-12013,12039]]},{"type":"Polygon","properties":{"name":"CARMICHAELS","zip":"15320","state":"PA"},"arcs":[[12040,12041,12042,12043,12044,12045,12046,12047,12048]]},{"type":"Polygon","properties":{"name":"CLARKSVILLE","zip":"15322","state":"PA"},"arcs":[[12049,12050,12051,12052,12053]]},{"type":"Polygon","properties":{"name":"CLAYSVILLE","zip":"15323","state":"PA"},"arcs":[[12054,12055,12056,-12026,-12008]]},{"type":"Polygon","properties":{"name":"DILLINER","zip":"15327","state":"PA"},"arcs":[[12057,12058,-12049,12059,12060,12061]]},{"type":"Polygon","properties":{"name":"PROSPERITY","zip":"15329","state":"PA"},"arcs":[[12062,12063,12064,-12055,-12007,-12021,12065,12066,12067]]},{"type":"Polygon","properties":{"name":"EIGHTY FOUR","zip":"15330","state":"PA"},"arcs":[[12068,-12014,-12039,12069,12070,-12035]]},{"type":"Polygon","properties":{"name":"FINLEYVILLE","zip":"15332","state":"PA"},"arcs":[[12071,-11885,-11732,-11793,-11717,-12036,-12071]]},{"type":"Polygon","properties":{"name":"FREDERICKTOWN","zip":"15333","state":"PA"},"arcs":[[12072,-12052,12073,12074,12075,-12028,12076,12077]]},{"type":"Polygon","properties":{"name":"GRAYSVILLE","zip":"15337","state":"PA"},"arcs":[[12078,-12019,12079,12080,12081]]},{"type":"Polygon","properties":{"name":"GREENSBORO","zip":"15338","state":"PA"},"arcs":[[12082,-12060,-12048,12083]]},{"type":"Polygon","properties":{"name":"HICKORY","zip":"15340","state":"PA"},"arcs":[[-12025,-11706,-11785,-12037,-12010]]},{"type":"Polygon","properties":{"name":"HOLBROOK","zip":"15341","state":"PA"},"arcs":[[-12079,12084,12085,12086,12087,12088,-12015]]},{"type":"Polygon","properties":{"name":"HOUSTON","zip":"15342","state":"PA"},"arcs":[[-12012,-12040]]},{"type":"Polygon","properties":{"name":"JEFFERSON","zip":"15344","state":"PA"},"arcs":[[12089,12090,-12050,12091,-12042]]},{"type":"Polygon","properties":{"name":"MARIANNA","zip":"15345","state":"PA"},"arcs":[[-12020,12092,-12075,12093,-12066]]},{"type":"Polygon","properties":{"name":"MATHER","zip":"15346","state":"PA"},"arcs":[[-12094,-12074,-12051,-12091,12094,-12067]]},{"type":"Polygon","properties":{"name":"MOUNT MORRIS","zip":"15349","state":"PA"},"arcs":[[12095,12096,-12058,12097,12098,12099]]},{"type":"Polygon","properties":{"name":"NEW FREEPORT","zip":"15352","state":"PA"},"arcs":[[12100,12101,12102,12103,-12016,-12089]]},{"type":"Polygon","properties":{"name":"NINEVEH","zip":"15353","state":"PA"},"arcs":[[12104,12105,12106,-12085,-12082,12107,-12064]]},{"type":"Polygon","properties":{"name":"RICES LANDING","zip":"15357","state":"PA"},"arcs":[[-12092,-12054,12108,12109,-12043]]},{"type":"Polygon","properties":{"name":"ROGERSVILLE","zip":"15359","state":"PA"},"arcs":[[12110,-12086,-12107]]},{"type":"Polygon","properties":{"name":"SCENERY HILL","zip":"15360","state":"PA"},"arcs":[[-12076,-12093,-12022,-12005,-12069,-12034,-12033,12111,-12029]]},{"type":"Polygon","properties":{"name":"SPRAGGS","zip":"15362","state":"PA"},"arcs":[[12112,12113,12114,12115,-12101,-12088,12116,-12096]]},{"type":"Polygon","properties":{"name":"SYCAMORE","zip":"15364","state":"PA"},"arcs":[[12117,-12105,-12063]]},{"type":"Polygon","properties":{"name":"VENETIA","zip":"15367","state":"PA"},"arcs":[[-12002,-11851,-11883,-12072,-12070,-12038]]},{"type":"Polygon","properties":{"name":"WAYNESBURG","zip":"15370","state":"PA"},"arcs":[[-12059,-12097,-12117,-12087,-12111,-12106,-12118,-12068,-12095,-12090,-12041]]},{"type":"Polygon","properties":{"name":"WEST ALEXANDER","zip":"15376","state":"PA"},"arcs":[[12118,12119,12120,12121,12122,-12027,-12057]]},{"type":"Polygon","properties":{"name":"WEST FINLEY","zip":"15377","state":"PA"},"arcs":[[12123,12124,-12119,-12056,-12065,-12108,-12081]]},{"type":"Polygon","properties":{"name":"WIND RIDGE","zip":"15380","state":"PA"},"arcs":[[-12018,12125,-12124,-12080]]},{"type":"Polygon","properties":{"name":"UNIONTOWN","zip":"15401","state":"PA"},"arcs":[[12126,12127,12128,12129,12130,12131,12132,12133,12134]]},{"type":"Polygon","properties":{"name":"ADAH","zip":"15410","state":"PA"},"arcs":[[12135,12136,12137,12138,-12045]]},{"type":"Polygon","properties":{"name":"ADDISON","zip":"15411","state":"PA"},"arcs":[[12139,12140,12141,12142,12143,12144]]},{"type":"Polygon","properties":{"name":"ALLENPORT","zip":"15412","state":"PA"},"arcs":[[12145,12146,12147,12148,-11672,12149]]},{"type":"Polygon","properties":{"name":"BROWNSVILLE","zip":"15417","state":"PA"},"arcs":[[12150,12151,12152,-12077,12153,12154,12155,12156,12157]]},{"type":"Polygon","properties":{"name":"CALIFORNIA","zip":"15419","state":"PA"},"arcs":[[12158,12159,-12156]]},{"type":"Polygon","properties":{"name":"COAL CENTER","zip":"15423","state":"PA"},"arcs":[[12160,-12031,-11715,12161,-12148,12162,12163,-12159,-12155]]},{"type":"Polygon","properties":{"name":"CONFLUENCE","zip":"15424","state":"PA"},"arcs":[[12164,12165,12166,12167,12168,12169,-12143]]},{"type":"Polygon","properties":{"name":"CONNELLSVILLE","zip":"15425","state":"PA"},"arcs":[[12170,12171,12172,12173,12174,12175,12176,12177,12178,12179]]},{"type":"Polygon","properties":{"name":"DAISYTOWN","zip":"15427","state":"PA"},"arcs":[[-12112,-12032,-12161,-12154,-12030]]},{"type":"Polygon","properties":{"name":"DAWSON","zip":"15428","state":"PA"},"arcs":[[12180,12181,12182,-12175]]},{"type":"Polygon","properties":{"name":"DUNBAR","zip":"15431","state":"PA"},"arcs":[[12183,-12133,12184,12185,-12173,12186,12187,12188]]},{"type":"Polygon","properties":{"name":"DUNLEVY","zip":"15432","state":"PA"},"arcs":[[-12162,-11714,-11673,-12149]]},{"type":"Polygon","properties":{"name":"EAST MILLSBORO","zip":"15433","state":"PA"},"arcs":[[12189,-12078,-12153,12190,-12136,-12044,-12110]]},{"type":"Polygon","properties":{"name":"ELCO","zip":"15434","state":"PA"},"arcs":[[12191,12192,-12163,-12147]]},{"type":"Polygon","properties":{"name":"FAIRCHANCE","zip":"15436","state":"PA"},"arcs":[[12193,12194,-12127,12195]]},{"type":"Polygon","properties":{"name":"FARMINGTON","zip":"15437","state":"PA"},"arcs":[[12196,12197,-12194,12198,12199,12200,12201]]},{"type":"Polygon","properties":{"name":"FAYETTE CITY","zip":"15438","state":"PA"},"arcs":[[-12193,12202,-12150,-11682,12203,-12157,-12160,-12164]]},{"type":"Polygon","properties":{"name":"GRINDSTONE","zip":"15442","state":"PA"},"arcs":[[12204,-12158,-12204,-11681,12205,12206,12207,12208,12209,-12138,12210]]},{"type":"Polygon","properties":{"name":"HOPWOOD","zip":"15445","state":"PA"},"arcs":[[12211,-12189,-12199,-12196,-12135]]},{"type":"Polygon","properties":{"name":"LA BELLE","zip":"15450","state":"PA"},"arcs":[[12052,12108,12189,12072]]},{"type":"Polygon","properties":{"name":"LAKE LYNN","zip":"15451","state":"PA"},"arcs":[[12212,12213,12214,12215,12216,-12197]]},{"type":"Polygon","properties":{"name":"LEMONT FURNACE","zip":"15456","state":"PA"},"arcs":[[-12134,-12184,-12212]]},{"type":"Polygon","properties":{"name":"MC CLELLANDTOWN","zip":"15458","state":"PA"},"arcs":[[-12139,-12210,12217,-12130,12218,-12046]]},{"type":"Polygon","properties":{"name":"MARKLEYSBURG","zip":"15459","state":"PA"},"arcs":[[12219,12220,-12201,12221,-12165,-12142]]},{"type":"Polygon","properties":{"name":"MASONTOWN","zip":"15461","state":"PA"},"arcs":[[12222,-12216,12223,-12084,-12047,-12219,-12129]]},{"type":"Polygon","properties":{"name":"MERRITTSTOWN","zip":"15463","state":"PA"},"arcs":[[12224,-12151,-12205]]},{"type":"Polygon","properties":{"name":"MILL RUN","zip":"15464","state":"PA"},"arcs":[[-12172,12225,12226,-12167,12227,-12187]]},{"type":"Polygon","properties":{"name":"NEW SALEM","zip":"15468","state":"PA"},"arcs":[[-12218,-12209,12228,-12131]]},{"type":"Polygon","properties":{"name":"NORMALVILLE","zip":"15469","state":"PA"},"arcs":[[12229,12230,12231,12232,12233,-12226,-12171]]},{"type":"Polygon","properties":{"name":"OHIOPYLE","zip":"15470","state":"PA"},"arcs":[[-12222,-12200,-12188,-12228,-12166]]},{"type":"Polygon","properties":{"name":"POINT MARION","zip":"15474","state":"PA"},"arcs":[[12234,-12061,-12083,-12224,-12215]]},{"type":"Polygon","properties":{"name":"REPUBLIC","zip":"15475","state":"PA"},"arcs":[[-12191,-12152,-12225,-12211,-12137]]},{"type":"Polygon","properties":{"name":"ROSCOE","zip":"15477","state":"PA"},"arcs":[[-12192,-12146,-12203]]},{"type":"Polygon","properties":{"name":"SMITHFIELD","zip":"15478","state":"PA"},"arcs":[[-12217,-12223,-12128,-12195,-12198]]},{"type":"Polygon","properties":{"name":"SMITHTON","zip":"15479","state":"PA"},"arcs":[[12235,12236,-11679,-11834]]},{"type":"Polygon","properties":{"name":"SMOCK","zip":"15480","state":"PA"},"arcs":[[-12132,-12229,-12208,12237,-12185]]},{"type":"Polygon","properties":{"name":"STAR JUNCTION","zip":"15482","state":"PA"},"arcs":[[12238,-12206,-11680,-12237,12239,-12182]]},{"type":"Polygon","properties":{"name":"VANDERBILT","zip":"15486","state":"PA"},"arcs":[[-12207,-12239,-12181,-12174,-12186,-12238]]},{"type":"Polygon","properties":{"name":"SOMERSET","zip":"15501","state":"PA"},"arcs":[[12240,12241,12242,12243,12244,12245,12246]]},{"type":"Polygon","properties":{"name":"ALUM BANK","zip":"15521","state":"PA"},"arcs":[[12247,12248,12249]]},{"type":"Polygon","properties":{"name":"BEDFORD","zip":"15522","state":"PA"},"arcs":[[12250,12251,12252,12253,12254,12255,12256,12257]]},{"type":"Polygon","properties":{"name":"BERLIN","zip":"15530","state":"PA"},"arcs":[[12258,-12242,12259,12260,12261,12262,12263,12264]]},{"type":"Polygon","properties":{"name":"BOSWELL","zip":"15531","state":"PA"},"arcs":[[12265,-12247,12266,12267,12268,12269,12270,12271]]},{"type":"Polygon","properties":{"name":"BREEZEWOOD","zip":"15533","state":"PA"},"arcs":[[12272,12273,12274,12275]]},{"type":"Polygon","properties":{"name":"BUFFALO MILLS","zip":"15534","state":"PA"},"arcs":[[12276,12277,12278,-12263]]},{"type":"Polygon","properties":{"name":"CLEARVILLE","zip":"15535","state":"PA"},"arcs":[[12279,-12274,12280,12281,12282,12283,12284,-12257]]},{"type":"Polygon","properties":{"name":"CRYSTAL SPRING","zip":"15536","state":"PA"},"arcs":[[12285,12286,-12281,-12273,12287,12288,12289]]},{"type":"Polygon","properties":{"name":"EVERETT","zip":"15537","state":"PA"},"arcs":[[12290,12291,12292,-12275,-12280,-12256]]},{"type":"Polygon","properties":{"name":"FAIRHOPE","zip":"15538","state":"PA"},"arcs":[[12293,12294,-12264,-12279]]},{"type":"Polygon","properties":{"name":"FORT HILL","zip":"15540","state":"PA"},"arcs":[[12295,-12144,-12170,12296,12297]]},{"type":"Polygon","properties":{"name":"FRIEDENS","zip":"15541","state":"PA"},"arcs":[[-12266,12298,12299,-12260,-12241]]},{"type":"Polygon","properties":{"name":"GARRETT","zip":"15542","state":"PA"},"arcs":[[12300,12301,-12259]]},{"type":"Polygon","properties":{"name":"HYNDMAN","zip":"15545","state":"PA"},"arcs":[[12302,12303,12304,-12294,-12278,12305,-12251]]},{"type":"Polygon","properties":{"name":"MANNS CHOICE","zip":"15550","state":"PA"},"arcs":[[-12262,12306,12307,-12252,-12306,-12277]]},{"type":"Polygon","properties":{"name":"MARKLETON","zip":"15551","state":"PA"},"arcs":[[12308,-12297,-12169]]},{"type":"Polygon","properties":{"name":"MEYERSDALE","zip":"15552","state":"PA"},"arcs":[[12309,12310,12311,12312,-12145,-12296,12313,-12301,-12265,-12295,-12305]]},{"type":"Polygon","properties":{"name":"NEW PARIS","zip":"15554","state":"PA"},"arcs":[[12314,12315,-12248,12316,12317,-12254,12318]]},{"type":"Polygon","properties":{"name":"ROCKWOOD","zip":"15557","state":"PA"},"arcs":[[-12168,-12227,-12234,12319,-12243,-12302,-12314,-12298,-12309]]},{"type":"Polygon","properties":{"name":"SALISBURY","zip":"15558","state":"PA"},"arcs":[[12320,12321,-12312]]},{"type":"Polygon","properties":{"name":"SCHELLSBURG","zip":"15559","state":"PA"},"arcs":[[12322,12323,-12319,-12253,-12308]]},{"type":"Polygon","properties":{"name":"STOYSTOWN","zip":"15563","state":"PA"},"arcs":[[12324,12325,-12299,-12272,12326]]},{"type":"Polygon","properties":{"name":"GREENSBURG","zip":"15601","state":"PA"},"arcs":[[12327,12328,12329,12330,12331,12332,12333,12334,12335,12336,12337,12338]]},{"type":"Polygon","properties":{"name":"ACME","zip":"15610","state":"PA"},"arcs":[[-12180,12339,12340,12341,-12230]]},{"type":"Polygon","properties":{"name":"ALVERTON","zip":"15612","state":"PA"},"arcs":[[12342,12343,12344,12345,-12178]]},{"type":"Polygon","properties":{"name":"APOLLO","zip":"15613","state":"PA"},"arcs":[[12346,12347,-12332,12348,12349,-11800,12350,12351,12352,12353]]},{"type":"Polygon","properties":{"name":"ARONA","zip":"15617","state":"PA"},"arcs":[[12354,12355,12356,12357]]},{"type":"Polygon","properties":{"name":"AVONMORE","zip":"15618","state":"PA"},"arcs":[[12358,-12347,12359,12360,12361]]},{"type":"Polygon","properties":{"name":"BRADENVILLE","zip":"15620","state":"PA"},"arcs":[[12362,12363,12364,12365]]},{"type":"Polygon","properties":{"name":"CHAMPION","zip":"15622","state":"PA"},"arcs":[[-12233,12366,-12320]]},{"type":"Polygon","properties":{"name":"DARRAGH","zip":"15625","state":"PA"},"arcs":[[12367,12368,12369,-12357,12370]]},{"type":"Polygon","properties":{"name":"DELMONT","zip":"15626","state":"PA"},"arcs":[[12371,12372,-12330]]},{"type":"Polygon","properties":{"name":"DERRY","zip":"15627","state":"PA"},"arcs":[[12373,12374,12375,-12364,12376]]},{"type":"Polygon","properties":{"name":"DONEGAL","zip":"15628","state":"PA"},"arcs":[[12377,-12231,-12342,12378]]},{"type":"Polygon","properties":{"name":"EXPORT","zip":"15632","state":"PA"},"arcs":[[12379,-12349,-12331,-12373,12380,12381]]},{"type":"Polygon","properties":{"name":"HARRISON CITY","zip":"15636","state":"PA"},"arcs":[[12382,12383,-11830,-12382]]},{"type":"Polygon","properties":{"name":"HERMINIE","zip":"15637","state":"PA"},"arcs":[[-11836,12384,-12369]]},{"type":"Polygon","properties":{"name":"HUNKER","zip":"15639","state":"PA"},"arcs":[[12385,12386,12387,12388,-12338]]},{"type":"Polygon","properties":{"name":"IRWIN","zip":"15642","state":"PA"},"arcs":[[-12358,-12370,-12385,-11835,-11822,-11699,-11889,-11899,-11831,-12384,12389,12390,12391]]},{"type":"Polygon","properties":{"name":"JEANNETTE","zip":"15644","state":"PA"},"arcs":[[12392,-12390,-12383,-12381,-12372,-12329,12393,-12355,-12392]]},{"type":"Polygon","properties":{"name":"JONES MILLS","zip":"15646","state":"PA"},"arcs":[[-12367,-12232,-12378,12394,-12244]]},{"type":"Polygon","properties":{"name":"LATROBE","zip":"15650","state":"PA"},"arcs":[[12395,-12377,-12363,12396,12397,-12336]]},{"type":"Polygon","properties":{"name":"LAUGHLINTOWN","zip":"15655","state":"PA"},"arcs":[[12398,12399,12400,-12267,-12246]]},{"type":"Polygon","properties":{"name":"LEECHBURG","zip":"15656","state":"PA"},"arcs":[[-12351,-11809,12401,12402,12403]]},{"type":"Polygon","properties":{"name":"LIGONIER","zip":"15658","state":"PA"},"arcs":[[12404,12405,12406,-12397,-12366,12407,12408,-12268,-12401]]},{"type":"Polygon","properties":{"name":"MADISON","zip":"15663","state":"PA"},"arcs":[[-12368,12409,-11837]]},{"type":"Polygon","properties":{"name":"MANOR","zip":"15665","state":"PA"},"arcs":[[-12393,-12391]]},{"type":"Polygon","properties":{"name":"MOUNT PLEASANT","zip":"15666","state":"PA"},"arcs":[[12410,12411,-12386,-12337,-12398,-12407,12412,-12340,-12179,-12346]]},{"type":"Polygon","properties":{"name":"MURRYSVILLE","zip":"15668","state":"PA"},"arcs":[[-12001,-11801,-12350,-12380,-11829,-11912]]},{"type":"Polygon","properties":{"name":"NEW ALEXANDRIA","zip":"15670","state":"PA"},"arcs":[[12413,12414,12415,-12374,-12396,-12335]]},{"type":"Polygon","properties":{"name":"NEW STANTON","zip":"15672","state":"PA"},"arcs":[[-12410,-12371,-12356,-12394,-12328,12416,-12388,12417,-11838]]},{"type":"Polygon","properties":{"name":"RECTOR","zip":"15677","state":"PA"},"arcs":[[12418,-12405,-12400]]},{"type":"Polygon","properties":{"name":"RUFFS DALE","zip":"15679","state":"PA"},"arcs":[[-12236,-11833,-11832,-12418,-12387,-12412,12419,-12344,12420,-12176,-12183,-12240]]},{"type":"Polygon","properties":{"name":"SALTSBURG","zip":"15681","state":"PA"},"arcs":[[12421,-12362,12422,12423,-12414,-12334]]},{"type":"Polygon","properties":{"name":"SCOTTDALE","zip":"15683","state":"PA"},"arcs":[[-12421,-12343,-12177]]},{"type":"Polygon","properties":{"name":"SLICKVILLE","zip":"15684","state":"PA"},"arcs":[[-12333,-12348,-12359,-12422]]},{"type":"Polygon","properties":{"name":"SPRING CHURCH","zip":"15686","state":"PA"},"arcs":[[12424,12425,-12360,-12354]]},{"type":"Polygon","properties":{"name":"STAHLSTOWN","zip":"15687","state":"PA"},"arcs":[[-12341,-12413,-12406,-12419,-12399,-12245,-12395,-12379]]},{"type":"Polygon","properties":{"name":"TARRS","zip":"15688","state":"PA"},"arcs":[[-12420,-12411,-12345]]},{"type":"Polygon","properties":{"name":"VANDERGRIFT","zip":"15690","state":"PA"},"arcs":[[12426,-12352,-12404]]},{"type":"Polygon","properties":{"name":"YOUNGWOOD","zip":"15697","state":"PA"},"arcs":[[-12339,-12389,-12417]]},{"type":"Polygon","properties":{"name":"INDIANA","zip":"15701","state":"PA"},"arcs":[[12427,12428,12429,12430,12431,12432,12433,12434]]},{"type":"Polygon","properties":{"name":"AULTMAN","zip":"15713","state":"PA"},"arcs":[[12435,12436,-12428]]},{"type":"Polygon","properties":{"name":"NORTHERN CAMBRIA","zip":"15714","state":"PA"},"arcs":[[12437,12438,12439,12440,12441]]},{"type":"Polygon","properties":{"name":"BLAIRSVILLE","zip":"15717","state":"PA"},"arcs":[[12442,-12375,-12416,12443,12444,12445,12446,12447]]},{"type":"Polygon","properties":{"name":"CARROLLTOWN","zip":"15722","state":"PA"},"arcs":[[12448,12449,12450,12451,12452,12453]]},{"type":"Polygon","properties":{"name":"CHERRY TREE","zip":"15724","state":"PA"},"arcs":[[12454,-12441,12455,12456,12457,12458,12459]]},{"type":"Polygon","properties":{"name":"CLARKSBURG","zip":"15725","state":"PA"},"arcs":[[12460,12461,-12444,-12415,-12424]]},{"type":"Polygon","properties":{"name":"CLYMER","zip":"15728","state":"PA"},"arcs":[[12462,12463,-12433,12464,12465,-12440]]},{"type":"Polygon","properties":{"name":"COMMODORE","zip":"15729","state":"PA"},"arcs":[[-12466,12466,12467,-12456]]},{"type":"Polygon","properties":{"name":"CREEKSIDE","zip":"15732","state":"PA"},"arcs":[[12468,12469,12470,-12430]]},{"type":"Polygon","properties":{"name":"ERNEST","zip":"15739","state":"PA"},"arcs":[[-12432,12471,12472,-12467,-12465]]},{"type":"Polygon","properties":{"name":"GLEN CAMPBELL","zip":"15742","state":"PA"},"arcs":[[12473,12474,12475,12476,12477,12478,-12458,12479]]},{"type":"Polygon","properties":{"name":"HOME","zip":"15747","state":"PA"},"arcs":[[-12431,-12471,12480,12481,12482,-12472]]},{"type":"Polygon","properties":{"name":"HOMER CITY","zip":"15748","state":"PA"},"arcs":[[12483,-12436,-12435,12484,12485,12486,-12445,-12462]]},{"type":"Polygon","properties":{"name":"LA JOSE","zip":"15753","state":"PA"},"arcs":[[12487,12488,12489,12490,12491,12492,12493,12494,12495]]},{"type":"Polygon","properties":{"name":"MAHAFFEY","zip":"15757","state":"PA"},"arcs":[[12496,12497,12498,-12491,12499,-12477]]},{"type":"Polygon","properties":{"name":"MARCHAND","zip":"15758","state":"PA"},"arcs":[[12500,12501,12502,12503]]},{"type":"Polygon","properties":{"name":"MARION CENTER","zip":"15759","state":"PA"},"arcs":[[12504,12505,-12480,-12457,-12468,-12473,-12483]]},{"type":"Polygon","properties":{"name":"NICKTOWN","zip":"15762","state":"PA"},"arcs":[[12506,12507,12508,-12463,-12439,12509,-12449]]},{"type":"Polygon","properties":{"name":"NORTHPOINT","zip":"15763","state":"PA"},"arcs":[[12510,12511,12512]]},{"type":"Polygon","properties":{"name":"OLIVEBURG","zip":"15764","state":"PA"},"arcs":[[-12514,-12515,-12516]]},{"type":"Polygon","properties":{"name":"PENN RUN","zip":"15765","state":"PA"},"arcs":[[-12464,-12509,12516,12517,-12485,-12434]]},{"type":"Polygon","properties":{"name":"PUNXSUTAWNEY","zip":"15767","state":"PA"},"arcs":[[12510,12518,12519,12520,12521,12522,-12516,12523,12524,12525,-12497,-12476,12526,-12502,12527]]},{"type":"Polygon","properties":{"name":"RINGGOLD","zip":"15770","state":"PA"},"arcs":[[12528,12529,12530,-12522]]},{"type":"Polygon","properties":{"name":"ROCHESTER MILLS","zip":"15771","state":"PA"},"arcs":[[-12506,12531,-12504,12532,-12474]]},{"type":"Polygon","properties":{"name":"ROSSITER","zip":"15772","state":"PA"},"arcs":[[-12533,-12503,-12527,-12475]]},{"type":"Polygon","properties":{"name":"SAINT BENEDICT","zip":"15773","state":"PA"},"arcs":[[12533,-12451,12534,12535]]},{"type":"Polygon","properties":{"name":"SHELOCTA","zip":"15774","state":"PA"},"arcs":[[-12461,-12423,-12361,-12426,12536,12537,12538,-12469,-12429,-12437,-12484]]},{"type":"Polygon","properties":{"name":"SPANGLER","zip":"15775","state":"PA"},"arcs":[[-12510,-12438,-12535,-12450]]},{"type":"Polygon","properties":{"name":"SPRANKLE MILLS","zip":"15776","state":"PA"},"arcs":[[-12523,-12531,12539,12540,12541,12542,-12515]]},{"type":"Polygon","properties":{"name":"WORTHVILLE","zip":"15784","state":"PA"},"arcs":[[-12530,12543,12544,-12540]]},{"type":"Polygon","properties":{"name":"DU BOIS","zip":"15801","state":"PA"},"arcs":[[12545,12546,12547,12548,12549,12550,12551]]},{"type":"Polygon","properties":{"name":"BENEZETT","zip":"15821","state":"PA"},"arcs":[[12552,12553,12554,12555,12556,12557]]},{"type":"Polygon","properties":{"name":"BROCKPORT","zip":"15823","state":"PA"},"arcs":[[12558,-12551,12559,12560,12561,12562]]},{"type":"Polygon","properties":{"name":"BROCKWAY","zip":"15824","state":"PA"},"arcs":[[12563,12564,12565,-12560,-12550,12566]]},{"type":"Polygon","properties":{"name":"BROOKVILLE","zip":"15825","state":"PA"},"arcs":[[12567,12568,12569,-12565,12570,-12542]]},{"type":"Polygon","properties":{"name":"BYRNEDALE","zip":"15827","state":"PA"},"arcs":[[12571,12572,12573,-12554,12574]]},{"type":"Polygon","properties":{"name":"CLARINGTON","zip":"15828","state":"PA"},"arcs":[[12575,12576,12577,12578]]},{"type":"Polygon","properties":{"name":"CORSICA","zip":"15829","state":"PA"},"arcs":[[12579,12580,12581,12582,-12569,12583]]},{"type":"Polygon","properties":{"name":"DRIFTWOOD","zip":"15832","state":"PA"},"arcs":[[12584,-12557,12585,12586,12587,12588]]},{"type":"Polygon","properties":{"name":"EMPORIUM","zip":"15834","state":"PA"},"arcs":[[12589,12590,12591,12592,12593,-12586,-12556]]},{"type":"Polygon","properties":{"name":"FALLS CREEK","zip":"15840","state":"PA"},"arcs":[[12594,-12567,-12549]]},{"type":"Polygon","properties":{"name":"KERSEY","zip":"15846","state":"PA"},"arcs":[[12595,-12563,12596,12597,-12573]]},{"type":"Polygon","properties":{"name":"LUTHERSBURG","zip":"15848","state":"PA"},"arcs":[[12598,12599,-12547,12600,12601,-12498,-12526]]},{"type":"Polygon","properties":{"name":"PENFIELD","zip":"15849","state":"PA"},"arcs":[[12602,-12552,-12559,-12596,-12572,12603,12604]]},{"type":"Polygon","properties":{"name":"REYNOLDSVILLE","zip":"15851","state":"PA"},"arcs":[[-12543,-12571,-12564,-12595,-12548,-12600,12605,-12524,-12514]]},{"type":"Polygon","properties":{"name":"RIDGWAY","zip":"15853","state":"PA"},"arcs":[[-12562,12606,12607,12608,12609,-12597]]},{"type":"Polygon","properties":{"name":"ROCKTON","zip":"15856","state":"PA"},"arcs":[[-12546,-12603,12610,-12601]]},{"type":"Polygon","properties":{"name":"SAINT MARYS","zip":"15857","state":"PA"},"arcs":[[-12598,-12610,12611,-12590,-12555,-12574]]},{"type":"Polygon","properties":{"name":"SIGEL","zip":"15860","state":"PA"},"arcs":[[12612,-12578,12613,12614,-12607,-12561,-12566,-12570,-12583]]},{"type":"Polygon","properties":{"name":"SINNAMAHONING","zip":"15861","state":"PA"},"arcs":[[12615,-12588,12616,12617,12618]]},{"type":"Polygon","properties":{"name":"SUMMERVILLE","zip":"15864","state":"PA"},"arcs":[[-12545,12619,12620,-12584,-12568,-12541]]},{"type":"Polygon","properties":{"name":"SYKESVILLE","zip":"15865","state":"PA"},"arcs":[[-12599,-12525,-12606]]},{"type":"Polygon","properties":{"name":"WILCOX","zip":"15870","state":"PA"},"arcs":[[-12612,-12609,12621,12622,-12591]]},{"type":"Polygon","properties":{"name":"JOHNSTOWN","zip":"15901","state":"PA"},"arcs":[[12623,12624,12625,12626]]},{"type":"Polygon","properties":{"name":"JOHNSTOWN","zip":"15902","state":"PA"},"arcs":[[12627,12628,-12624,12629]]},{"type":"Polygon","properties":{"name":"JOHNSTOWN","zip":"15904","state":"PA"},"arcs":[[12630,-12628,12631,12632,12633,12634,12635,12636]]},{"type":"Polygon","properties":{"name":"JOHNSTOWN","zip":"15905","state":"PA"},"arcs":[[12637,12638,-12270,12639,12640,-12625,-12629,-12631]]},{"type":"Polygon","properties":{"name":"JOHNSTOWN","zip":"15906","state":"PA"},"arcs":[[-12641,12641,12642,12643,12644,-12626]]},{"type":"Polygon","properties":{"name":"JOHNSTOWN","zip":"15909","state":"PA"},"arcs":[[12645,12646,12647,-12632,-12630,-12627,-12645]]},{"type":"Polygon","properties":{"name":"ARMAGH","zip":"15920","state":"PA"},"arcs":[[12648,12649,-12446,-12487,12650]]},{"type":"Polygon","properties":{"name":"BOLIVAR","zip":"15923","state":"PA"},"arcs":[[-12376,-12443,12651,12652,-12408,-12365]]},{"type":"Polygon","properties":{"name":"CAIRNBROOK","zip":"15924","state":"PA"},"arcs":[[12653,12654,12655,-12315,-12324]]},{"type":"Polygon","properties":{"name":"CENTRAL CITY","zip":"15926","state":"PA"},"arcs":[[-12307,-12261,-12300,-12326,12656,-12654,-12323]]},{"type":"Polygon","properties":{"name":"DAVIDSVILLE","zip":"15928","state":"PA"},"arcs":[[12657,12658,-12638,-12637,12659]]},{"type":"Polygon","properties":{"name":"EBENSBURG","zip":"15931","state":"PA"},"arcs":[[12660,12661,12662,12663,12664,12665,12666,-12507,-12454,12667]]},{"type":"Polygon","properties":{"name":"HOLLSOPPLE","zip":"15935","state":"PA"},"arcs":[[-12639,-12659,12668,12669,-12327,-12271]]},{"type":"Polygon","properties":{"name":"HOOVERSVILLE","zip":"15936","state":"PA"},"arcs":[[-12657,-12325,-12670,12670,12671,-12655]]},{"type":"Polygon","properties":{"name":"LILLY","zip":"15938","state":"PA"},"arcs":[[12672,12673,-12661,12674,12675]]},{"type":"Polygon","properties":{"name":"LORETTO","zip":"15940","state":"PA"},"arcs":[[-12453,12676,12677,12678,12679,-12675,-12668]]},{"type":"Polygon","properties":{"name":"MINERAL POINT","zip":"15942","state":"PA"},"arcs":[[12680,-12664,12681,12682,-12633,-12648]]},{"type":"Polygon","properties":{"name":"NANTY GLO","zip":"15943","state":"PA"},"arcs":[[-12681,-12647,12683,-12665]]},{"type":"Polygon","properties":{"name":"NEW FLORENCE","zip":"15944","state":"PA"},"arcs":[[12684,-12447,-12650,12685,-12642,-12640,-12269,-12409,-12653]]},{"type":"Polygon","properties":{"name":"PORTAGE","zip":"15946","state":"PA"},"arcs":[[12686,-12662,-12674,12687,12688,12689]]},{"type":"Polygon","properties":{"name":"ROBINSON","zip":"15949","state":"PA"},"arcs":[[-12652,-12448,-12685]]},{"type":"Polygon","properties":{"name":"SALIX","zip":"15952","state":"PA"},"arcs":[[12690,-12635,12691,12692]]},{"type":"Polygon","properties":{"name":"SEANOR","zip":"15953","state":"PA"},"arcs":[[12693,-12671,-12669,-12658]]},{"type":"Polygon","properties":{"name":"SEWARD","zip":"15954","state":"PA"},"arcs":[[-12686,-12649,12694,-12643]]},{"type":"Polygon","properties":{"name":"SIDMAN","zip":"15955","state":"PA"},"arcs":[[12695,12696,-12690,12697,12698,-12693]]},{"type":"Polygon","properties":{"name":"SOUTH FORK","zip":"15956","state":"PA"},"arcs":[[-12692,-12634,-12683,12699,-12696]]},{"type":"Polygon","properties":{"name":"STRONGSTOWN","zip":"15957","state":"PA"},"arcs":[[12700,-12517,-12508,-12667]]},{"type":"Polygon","properties":{"name":"SUMMERHILL","zip":"15958","state":"PA"},"arcs":[[-12697,-12700,-12682,-12663,-12687]]},{"type":"Polygon","properties":{"name":"VINTONDALE","zip":"15961","state":"PA"},"arcs":[[-12486,-12518,-12701,-12666,-12684,-12646,-12644,-12695,-12651]]},{"type":"Polygon","properties":{"name":"WINDBER","zip":"15963","state":"PA"},"arcs":[[-12316,-12656,-12672,-12694,-12660,-12636,-12691,-12699,12701,-12249]]},{"type":"Polygon","properties":{"name":"BUTLER","zip":"16001","state":"PA"},"arcs":[[12702,12703,12704,12705,12706,12707,12708]]},{"type":"Polygon","properties":{"name":"BUTLER","zip":"16002","state":"PA"},"arcs":[[12709,-12709,12710,12711,12712,12713,12714,12715]]},{"type":"Polygon","properties":{"name":"BOYERS","zip":"16020","state":"PA"},"arcs":[[12716,12717,12718,12719,12720,12721]]},{"type":"Polygon","properties":{"name":"CABOT","zip":"16023","state":"PA"},"arcs":[[12722,-12713,12723,12724,12725]]},{"type":"Polygon","properties":{"name":"CHICORA","zip":"16025","state":"PA"},"arcs":[[12726,12727,12728,12729,12730,12731,-12711,-12708]]},{"type":"Polygon","properties":{"name":"EAST BRADY","zip":"16028","state":"PA"},"arcs":[[12732,-12729,12733,12734]]},{"type":"Polygon","properties":{"name":"EVANS CITY","zip":"16033","state":"PA"},"arcs":[[12735,12736,12737,12738,12739,-12704,12740,-12716]]},{"type":"Polygon","properties":{"name":"FENELTON","zip":"16034","state":"PA"},"arcs":[[12741,-12724,-12712,-12732]]},{"type":"Polygon","properties":{"name":"FOXBURG","zip":"16036","state":"PA"},"arcs":[[12742,12743,12744,12745]]},{"type":"Polygon","properties":{"name":"HARMONY","zip":"16037","state":"PA"},"arcs":[[12746,12747,12748,12749,-12739]]},{"type":"Polygon","properties":{"name":"HARRISVILLE","zip":"16038","state":"PA"},"arcs":[[12750,12751,12752,12753,-12717]]},{"type":"Polygon","properties":{"name":"HILLIARDS","zip":"16040","state":"PA"},"arcs":[[12754,12755,-12720,12756]]},{"type":"Polygon","properties":{"name":"KARNS CITY","zip":"16041","state":"PA"},"arcs":[[12757,-12734,-12728,12758,12759,12760]]},{"type":"Polygon","properties":{"name":"MARS","zip":"16046","state":"PA"},"arcs":[[12761,-12736,12762,-11763,-11840,-11657]]},{"type":"Polygon","properties":{"name":"PARKER","zip":"16049","state":"PA"},"arcs":[[-12757,-12719,12763,-12744,12764,12765,-12761,12766]]},{"type":"Polygon","properties":{"name":"PETROLIA","zip":"16050","state":"PA"},"arcs":[[-12760,12767,-12755,-12767]]},{"type":"Polygon","properties":{"name":"PORTERSVILLE","zip":"16051","state":"PA"},"arcs":[[12768,12769,12770,12771,-12749,12772]]},{"type":"Polygon","properties":{"name":"PROSPECT","zip":"16052","state":"PA"},"arcs":[[-12750,-12772,12773,-12705,-12740]]},{"type":"Polygon","properties":{"name":"RENFREW","zip":"16053","state":"PA"},"arcs":[[-12703,-12710,-12741]]},{"type":"Polygon","properties":{"name":"SARVER","zip":"16055","state":"PA"},"arcs":[[12774,-12726,12775,12776,-11795,-11824]]},{"type":"Polygon","properties":{"name":"SAXONBURG","zip":"16056","state":"PA"},"arcs":[[12777,-12714,-12723,-12775,-11823,-11765]]},{"type":"Polygon","properties":{"name":"SLIPPERY ROCK","zip":"16057","state":"PA"},"arcs":[[-12774,-12771,12778,12779,12780,-12751,-12722,12781,-12706]]},{"type":"Polygon","properties":{"name":"VALENCIA","zip":"16059","state":"PA"},"arcs":[[-12715,-12778,-11764,-12763]]},{"type":"Polygon","properties":{"name":"WEST SUNBURY","zip":"16061","state":"PA"},"arcs":[[-12727,-12707,-12782,-12721,-12756,-12768,-12759]]},{"type":"Polygon","properties":{"name":"ZELIENOPLE","zip":"16063","state":"PA"},"arcs":[[12782,-12747,-12738,12783,-11816]]},{"type":"Polygon","properties":{"name":"CRANBERRY TWP","zip":"16066","state":"PA"},"arcs":[[-11817,-12784,-12737,-12762,-11656,-11756]]},{"type":"Polygon","properties":{"name":"NEW CASTLE","zip":"16101","state":"PA"},"arcs":[[12784,12785,12786,12787,12788,12789,-12779,-12770]]},{"type":"Polygon","properties":{"name":"NEW CASTLE","zip":"16102","state":"PA"},"arcs":[[12790,12791,12792,-12787,12793,12794]]},{"type":"Polygon","properties":{"name":"NEW CASTLE","zip":"16105","state":"PA"},"arcs":[[12795,12796,12797,12798,-12789]]},{"type":"Polygon","properties":{"name":"ADAMSVILLE","zip":"16110","state":"PA"},"arcs":[[12799,12800,12801,12802]]},{"type":"Polygon","properties":{"name":"ATLANTIC","zip":"16111","state":"PA"},"arcs":[[12803,-12802,12804,12805,12806,12807]]},{"type":"Polygon","properties":{"name":"BESSEMER","zip":"16112","state":"PA"},"arcs":[[12808,12809,12810,12811,12812,-12792]]},{"type":"Polygon","properties":{"name":"CLARKS MILLS","zip":"16114","state":"PA"},"arcs":[[12813,12814,12815,12816,12817]]},{"type":"Polygon","properties":{"name":"DARLINGTON","zip":"16115","state":"PA"},"arcs":[[-11788,12818,12819,12820,12821,-11665]]},{"type":"Polygon","properties":{"name":"EDINBURG","zip":"16116","state":"PA"},"arcs":[[-12813,12822,12823,-12796,-12788,-12793]]},{"type":"Polygon","properties":{"name":"ELLWOOD CITY","zip":"16117","state":"PA"},"arcs":[[12824,-11668,12825,-12785,-12769]]},{"type":"Polygon","properties":{"name":"ENON VALLEY","zip":"16120","state":"PA"},"arcs":[[12826,-12821,12827,12828,-12809,-12791]]},{"type":"Polygon","properties":{"name":"FARRELL","zip":"16121","state":"PA"},"arcs":[[12829,12830,12831,12832]]},{"type":"Polygon","properties":{"name":"FOMBELL","zip":"16123","state":"PA"},"arcs":[[-11815,-11799,-11669,-12825,-12773,-12748,-12783]]},{"type":"Polygon","properties":{"name":"FREDONIA","zip":"16124","state":"PA"},"arcs":[[12833,12834,-12818,12835,12836,12837]]},{"type":"Polygon","properties":{"name":"GREENVILLE","zip":"16125","state":"PA"},"arcs":[[12838,12839,12840,-12803,-12804,12841,-12814,-12835,12842]]},{"type":"Polygon","properties":{"name":"GROVE CITY","zip":"16127","state":"PA"},"arcs":[[12843,12844,12845,-12752,-12781,12846]]},{"type":"Polygon","properties":{"name":"HADLEY","zip":"16130","state":"PA"},"arcs":[[12847,-12815,-12842,-12808,12848,12849]]},{"type":"Polygon","properties":{"name":"HARTSTOWN","zip":"16131","state":"PA"},"arcs":[[-12801,12850,12851,12852,-12805]]},{"type":"Polygon","properties":{"name":"JACKSON CENTER","zip":"16133","state":"PA"},"arcs":[[12853,12854,-12845]]},{"type":"Polygon","properties":{"name":"JAMESTOWN","zip":"16134","state":"PA"},"arcs":[[12855,12856,12857,12858,-12851,-12800,-12841]]},{"type":"Polygon","properties":{"name":"MERCER","zip":"16137","state":"PA"},"arcs":[[12859,12860,12861,-12837,12862,-12854,-12844,12863]]},{"type":"Polygon","properties":{"name":"NEW GALILEE","zip":"16141","state":"PA"},"arcs":[[-12822,-12827,-12795,12864,-11666]]},{"type":"Polygon","properties":{"name":"NEW WILMINGTON","zip":"16142","state":"PA"},"arcs":[[12865,-12798,12866,12867,12868,-12860]]},{"type":"Polygon","properties":{"name":"PULASKI","zip":"16143","state":"PA"},"arcs":[[12869,12870,12871,-12867,-12797,-12824]]},{"type":"Polygon","properties":{"name":"SANDY LAKE","zip":"16145","state":"PA"},"arcs":[[12872,12873,12874,-12816,-12848,12875,12876]]},{"type":"Polygon","properties":{"name":"SHARON","zip":"16146","state":"PA"},"arcs":[[12877,12878,-12833]]},{"type":"Polygon","properties":{"name":"HERMITAGE","zip":"16148","state":"PA"},"arcs":[[12879,-12830,-12879,12880,12881,-12861,-12869]]},{"type":"Polygon","properties":{"name":"SHARPSVILLE","zip":"16150","state":"PA"},"arcs":[[12882,12883,12884,-12838,-12862,-12882]]},{"type":"Polygon","properties":{"name":"STONEBORO","zip":"16153","state":"PA"},"arcs":[[-12863,-12836,-12817,-12875,12885,-12846,-12855]]},{"type":"Polygon","properties":{"name":"TRANSFER","zip":"16154","state":"PA"},"arcs":[[-12885,12886,-12843,-12834]]},{"type":"Polygon","properties":{"name":"VOLANT","zip":"16156","state":"PA"},"arcs":[[-12866,-12864,-12847,-12780,-12790,-12799]]},{"type":"Polygon","properties":{"name":"WAMPUM","zip":"16157","state":"PA"},"arcs":[[-11667,-12865,-12794,-12786,-12826]]},{"type":"Polygon","properties":{"name":"WEST MIDDLESEX","zip":"16159","state":"PA"},"arcs":[[12887,-12831,-12880,-12868,-12872]]},{"type":"Polygon","properties":{"name":"KITTANNING","zip":"16201","state":"PA"},"arcs":[[12888,12889,12890,12891,12892,12893,12894,12895,-12538,12896]]},{"type":"Polygon","properties":{"name":"ADRIAN","zip":"16210","state":"PA"},"arcs":[[12897,12898,-12893]]},{"type":"Polygon","properties":{"name":"CADOGAN","zip":"16212","state":"PA"},"arcs":[[12899,-12889,12900]]},{"type":"Polygon","properties":{"name":"CALLENSBURG","zip":"16213","state":"PA"},"arcs":[[12901,-12765,-12743,12902,12903]]},{"type":"Polygon","properties":{"name":"CLARION","zip":"16214","state":"PA"},"arcs":[[12904,12905,12906,12907,12908,12909]]},{"type":"Polygon","properties":{"name":"COWANSVILLE","zip":"16218","state":"PA"},"arcs":[[-12892,12910,-12730,-12733,12911,12912,-12898]]},{"type":"Polygon","properties":{"name":"DAYTON","zip":"16222","state":"PA"},"arcs":[[12913,12914,-12895,12915,12916,-12519,12511]]},{"type":"Polygon","properties":{"name":"FAIRMOUNT CITY","zip":"16224","state":"PA"},"arcs":[[12917,12918,12919]]},{"type":"Polygon","properties":{"name":"FISHER","zip":"16225","state":"PA"},"arcs":[[12920,-12579,-12613,-12582,12921,-12908]]},{"type":"Polygon","properties":{"name":"FORD CITY","zip":"16226","state":"PA"},"arcs":[[-12425,-12353,-12427,-12403,12922,-12901,-12897,-12537]]},{"type":"Polygon","properties":{"name":"FREEPORT","zip":"16229","state":"PA"},"arcs":[[12923,-12890,-12900,-12923,-12402,-11796,-12777]]},{"type":"Polygon","properties":{"name":"KNOX","zip":"16232","state":"PA"},"arcs":[[12924,12925,12926,12927,-12903,-12746,12928,12929,12930,12931,12932,12933,12934,12935,-12910]]},{"type":"Polygon","properties":{"name":"LIMESTONE","zip":"16234","state":"PA"},"arcs":[[12936,-12926,12937,-12580,-12621,12938,-12919]]},{"type":"Polygon","properties":{"name":"LUCINDA","zip":"16235","state":"PA"},"arcs":[[12939,12940,12941,-12906]]},{"type":"Polygon","properties":{"name":"MARIENVILLE","zip":"16239","state":"PA"},"arcs":[[12942,12943,12944,-12614,-12577]]},{"type":"Polygon","properties":{"name":"MAYPORT","zip":"16240","state":"PA"},"arcs":[[12945,-12920,-12939,-12620,-12544,-12529,-12521]]},{"type":"Polygon","properties":{"name":"NEW BETHLEHEM","zip":"16242","state":"PA"},"arcs":[[-12917,12946,12947,-12927,-12937,-12918,-12946,-12520]]},{"type":"Polygon","properties":{"name":"RIMERSBURG","zip":"16248","state":"PA"},"arcs":[[12948,-12912,-12735,-12758,-12766,-12902,12949,-12948]]},{"type":"Polygon","properties":{"name":"RURAL VALLEY","zip":"16249","state":"PA"},"arcs":[[-12539,-12896,-12915,-12481,-12470]]},{"type":"Polygon","properties":{"name":"SHIPPENVILLE","zip":"16254","state":"PA"},"arcs":[[-12936,12950,-12940,-12905]]},{"type":"Polygon","properties":{"name":"SLIGO","zip":"16255","state":"PA"},"arcs":[[-12904,-12928,-12950]]},{"type":"Polygon","properties":{"name":"SMICKSBURG","zip":"16256","state":"PA"},"arcs":[[12512,-12528,-12501,-12532,-12505,-12482,-12914]]},{"type":"Polygon","properties":{"name":"STRATTANVILLE","zip":"16258","state":"PA"},"arcs":[[-12925,-12909,-12922,-12581,-12938]]},{"type":"Polygon","properties":{"name":"TEMPLETON","zip":"16259","state":"PA"},"arcs":[[-12894,-12899,-12913,-12949,-12947,-12916]]},{"type":"Polygon","properties":{"name":"VOWINCKEL","zip":"16260","state":"PA"},"arcs":[[-12921,-12907,-12942,12951,12952,-12943,-12576]]},{"type":"Polygon","properties":{"name":"WORTHINGTON","zip":"16262","state":"PA"},"arcs":[[-12924,-12776,-12725,-12742,-12731,-12911,-12891]]},{"type":"Polygon","properties":{"name":"OIL CITY","zip":"16301","state":"PA"},"arcs":[[12953,-12933,12954,12955,12956,12957,12958]]},{"type":"Polygon","properties":{"name":"CARLTON","zip":"16311","state":"PA"},"arcs":[[12959,12960,-12877]]},{"type":"Polygon","properties":{"name":"CLARENDON","zip":"16313","state":"PA"},"arcs":[[12961,12962,12963,12964]]},{"type":"Polygon","properties":{"name":"COCHRANTON","zip":"16314","state":"PA"},"arcs":[[-12876,-12850,12965,12966,12967,-12960]]},{"type":"Polygon","properties":{"name":"CONNEAUT LAKE","zip":"16316","state":"PA"},"arcs":[[-12853,12968,12969,-12806]]},{"type":"Polygon","properties":{"name":"CRANBERRY","zip":"16319","state":"PA"},"arcs":[[12970,12971,12972]]},{"type":"Polygon","properties":{"name":"EAST HICKORY","zip":"16321","state":"PA"},"arcs":[[12973]]},{"type":"Polygon","properties":{"name":"FRANKLIN","zip":"16323","state":"PA"},"arcs":[[12974,12975,12976,12977,-12956,12978,-12972]]},{"type":"Polygon","properties":{"name":"FRYBURG","zip":"16326","state":"PA"},"arcs":[[12979,12980,-12952,-12941,-12951,-12935]]},{"type":"Polygon","properties":{"name":"GUYS MILLS","zip":"16327","state":"PA"},"arcs":[[12981,12982,-12967,12983,12984,12985]]},{"type":"Polygon","properties":{"name":"IRVINE","zip":"16329","state":"PA"},"arcs":[[12986,12987,12988,12989]]},{"type":"Polygon","properties":{"name":"LUDLOW","zip":"16333","state":"PA"},"arcs":[[12990,12991,12992,12993,12994]]},{"type":"Polygon","properties":{"name":"MEADVILLE","zip":"16335","state":"PA"},"arcs":[[-12970,12995,12996,12997,-12984,-12966,-12849,-12807]]},{"type":"Polygon","properties":{"name":"PITTSFIELD","zip":"16340","state":"PA"},"arcs":[[12998,12999,13000,13001,13002]]},{"type":"Polygon","properties":{"name":"PLEASANTVILLE","zip":"16341","state":"PA"},"arcs":[[13003,-12958,13004,13005]]},{"type":"Polygon","properties":{"name":"POLK","zip":"16342","state":"PA"},"arcs":[[-12874,13006,-12976,13007,13008,-12753,-12886]]},{"type":"Polygon","properties":{"name":"RUSSELL","zip":"16345","state":"PA"},"arcs":[[13009,13010,13011,-11288,-11400,-11438]]},{"type":"Polygon","properties":{"name":"SENECA","zip":"16346","state":"PA"},"arcs":[[13012,-12973,-12979,-12955,-12932]]},{"type":"Polygon","properties":{"name":"SHEFFIELD","zip":"16347","state":"PA"},"arcs":[[13013,13014,-12962,13015,-12991]]},{"type":"Polygon","properties":{"name":"SUGAR GROVE","zip":"16350","state":"PA"},"arcs":[[13016,-13000,13017,-11313,-11289,-13012,13018,-12990]]},{"type":"Polygon","properties":{"name":"TIDIOUTE","zip":"16351","state":"PA"},"arcs":[[13019,-13002,13020,-12988,13021,-12964,13022,-13006]]},{"type":"Polygon","properties":{"name":"TIONESTA","zip":"16353","state":"PA"},"arcs":[[-12981,13023,-12959,-13004,-13023,-12963,-13015,13024,-12944,-12953],[-12974]]},{"type":"Polygon","properties":{"name":"TITUSVILLE","zip":"16354","state":"PA"},"arcs":[[13025,13026,13027,13028,13029,13030,-13003,-13020,-13005,-12957,-12978,13031,-12982]]},{"type":"Polygon","properties":{"name":"TOWNVILLE","zip":"16360","state":"PA"},"arcs":[[-12986,13032,13033,-13026]]},{"type":"Polygon","properties":{"name":"UTICA","zip":"16362","state":"PA"},"arcs":[[-13007,-12873,-12961,-12968,-12983,-13032,-12977]]},{"type":"Polygon","properties":{"name":"VENUS","zip":"16364","state":"PA"},"arcs":[[-12954,-13024,-12980,-12934]]},{"type":"Polygon","properties":{"name":"WARREN","zip":"16365","state":"PA"},"arcs":[[-13016,-12965,-13022,-12987,-13019,-13011,13034,-12992]]},{"type":"Polygon","properties":{"name":"YOUNGSVILLE","zip":"16371","state":"PA"},"arcs":[[-13017,-12989,-13021,-13001]]},{"type":"Polygon","properties":{"name":"EMLENTON","zip":"16373","state":"PA"},"arcs":[[-13009,13035,-13037,-12929,-12745,-12764,-12718,-12754]]},{"type":"Polygon","properties":{"name":"KENNERDELL","zip":"16374","state":"PA"},"arcs":[[-13036,-13008,-12975,-12971,-13013,-12931,-13038]]},{"type":"Polygon","properties":{"name":"ALBION","zip":"16401","state":"PA"},"arcs":[[13038,13039,13040,13041,13042,13043]]},{"type":"Polygon","properties":{"name":"BEAR LAKE","zip":"16402","state":"PA"},"arcs":[[-13031,13044,-11427,-11314,-13018,-12999]]},{"type":"Polygon","properties":{"name":"CAMBRIDGE SPRINGS","zip":"16403","state":"PA"},"arcs":[[-12985,13045,13046,13047,13048,13049,13050,13051,-13033]]},{"type":"Polygon","properties":{"name":"CENTERVILLE","zip":"16404","state":"PA"},"arcs":[[-13052,13052,13053,-13027,-13034]]},{"type":"Polygon","properties":{"name":"COLUMBUS","zip":"16405","state":"PA"},"arcs":[[13054,-11359,-13045,-13030]]},{"type":"Polygon","properties":{"name":"CONNEAUTVILLE","zip":"16406","state":"PA"},"arcs":[[13055,13056,13057,-12997]]},{"type":"Polygon","properties":{"name":"CORRY","zip":"16407","state":"PA"},"arcs":[[13058,13059,-11360,-13055,-13029,13060]]},{"type":"Polygon","properties":{"name":"CRANESVILLE","zip":"16410","state":"PA"},"arcs":[[13061,13062,-13042]]},{"type":"Polygon","properties":{"name":"EAST SPRINGFIELD","zip":"16411","state":"PA"},"arcs":[[13063,13064,13065,13066,13067]]},{"type":"Polygon","properties":{"name":"EDINBORO","zip":"16412","state":"PA"},"arcs":[[13068,13069,-13043,-13063,13070,13071,13072,-13049]]},{"type":"Polygon","properties":{"name":"FAIRVIEW","zip":"16415","state":"PA"},"arcs":[[13073,13074,13075,13076,13077,13078]]},{"type":"Polygon","properties":{"name":"GIRARD","zip":"16417","state":"PA"},"arcs":[[-13041,13079,-13064,13080,-13079,13081,-13071,-13062]]},{"type":"Polygon","properties":{"name":"HARBORCREEK","zip":"16421","state":"PA"},"arcs":[[13082,13083,13084,13085]]},{"type":"Polygon","properties":{"name":"LAKE CITY","zip":"16423","state":"PA"},"arcs":[[-13074,-13081,-13068,13086]]},{"type":"Polygon","properties":{"name":"LINESVILLE","zip":"16424","state":"PA"},"arcs":[[13087,13088,13089,-13056,-12996,-12969,-12852,-12859]]},{"type":"Polygon","properties":{"name":"MC KEAN","zip":"16426","state":"PA"},"arcs":[[13090,-13072,-13082,-13078,13091]]},{"type":"Polygon","properties":{"name":"NORTH EAST","zip":"16428","state":"PA"},"arcs":[[-11434,-11391,-11362,13092,13093,-13083,13094]]},{"type":"Polygon","properties":{"name":"SAEGERTOWN","zip":"16433","state":"PA"},"arcs":[[13095,-13069,-13048,13096,-13046,-12998,-13058]]},{"type":"Polygon","properties":{"name":"SPARTANSBURG","zip":"16434","state":"PA"},"arcs":[[13097,-13061,-13028,-13054]]},{"type":"Polygon","properties":{"name":"SPRINGBORO","zip":"16435","state":"PA"},"arcs":[[13098,13099,-13044,-13070,-13096,-13057,-13090]]},{"type":"Polygon","properties":{"name":"UNION CITY","zip":"16438","state":"PA"},"arcs":[[-13053,-13051,13100,13101,-13059,-13098]]},{"type":"Polygon","properties":{"name":"VENANGO","zip":"16440","state":"PA"},"arcs":[[-13047,-13097]]},{"type":"Polygon","properties":{"name":"WATERFORD","zip":"16441","state":"PA"},"arcs":[[-13091,13102,13103,-13101,-13050,-13073]]},{"type":"Polygon","properties":{"name":"WATTSBURG","zip":"16442","state":"PA"},"arcs":[[-11361,-13060,-13102,13104,-13093]]},{"type":"Polygon","properties":{"name":"WEST SPRINGFIELD","zip":"16443","state":"PA"},"arcs":[[13105,-13065,-13080,-13040]]},{"type":"Polygon","properties":{"name":"ERIE","zip":"16501","state":"PA"},"arcs":[[13106,13107,13108]]},{"type":"Polygon","properties":{"name":"ERIE","zip":"16502","state":"PA"},"arcs":[[13109,13110,-13107,13111,13112,13113]]},{"type":"Polygon","properties":{"name":"ERIE","zip":"16503","state":"PA"},"arcs":[[13114,13115,13116,13117,-13112,-13109]]},{"type":"Polygon","properties":{"name":"ERIE","zip":"16504","state":"PA"},"arcs":[[13118,-13118,13119,13120]]},{"type":"Polygon","properties":{"name":"ERIE","zip":"16505","state":"PA"},"arcs":[[13121,-13076,13122,13123,-13110]]},{"type":"Polygon","properties":{"name":"ERIE","zip":"16506","state":"PA"},"arcs":[[-13114,13124,13125,-13077,-13122]]},{"type":"Polygon","properties":{"name":"ERIE","zip":"16507","state":"PA"},"arcs":[[13126,-13115,-13108,-13111,-13124,13127]]},{"type":"Polygon","properties":{"name":"ERIE","zip":"16508","state":"PA"},"arcs":[[-13113,-13119,13128,-13125]]},{"type":"Polygon","properties":{"name":"ERIE","zip":"16509","state":"PA"},"arcs":[[-13129,-13121,13129,-13103,-13092,-13126]]},{"type":"Polygon","properties":{"name":"ERIE","zip":"16510","state":"PA"},"arcs":[[-13120,-13117,13130,-13084,-13094,-13105,-13104,-13130]]},{"type":"Polygon","properties":{"name":"ERIE","zip":"16511","state":"PA"},"arcs":[[-13116,-13127,13131,-13085,-13131]]},{"type":"Polygon","properties":{"name":"ALTOONA","zip":"16601","state":"PA"},"arcs":[[13132,13133,13134,13135,13136]]},{"type":"Polygon","properties":{"name":"ALTOONA","zip":"16602","state":"PA"},"arcs":[[13137,-13133,13138,13139,13140]]},{"type":"Polygon","properties":{"name":"ALEXANDRIA","zip":"16611","state":"PA"},"arcs":[[13141,13142,13143,13144,13145]]},{"type":"Polygon","properties":{"name":"ASHVILLE","zip":"16613","state":"PA"},"arcs":[[13146,13147,-12678,13148,13149,-13135]]},{"type":"Polygon","properties":{"name":"BECCARIA","zip":"16616","state":"PA"},"arcs":[[13150,13151,13152,13153,13154,13155,-12496]]},{"type":"Polygon","properties":{"name":"BELLWOOD","zip":"16617","state":"PA"},"arcs":[[13156,-13139,-13137,13157,13158]]},{"type":"Polygon","properties":{"name":"CALVIN","zip":"16622","state":"PA"},"arcs":[[13159,13160,13161,13162,13163,13164]]},{"type":"Polygon","properties":{"name":"CLAYSBURG","zip":"16625","state":"PA"},"arcs":[[13165,13166,-12689,13167,13168]]},{"type":"Polygon","properties":{"name":"COALPORT","zip":"16627","state":"PA"},"arcs":[[13169,13170,-13155]]},{"type":"Polygon","properties":{"name":"CRESSON","zip":"16630","state":"PA"},"arcs":[[13171,-12676,-12680,13172]]},{"type":"Polygon","properties":{"name":"DUDLEY","zip":"16634","state":"PA"},"arcs":[[13173,13174,13175,13176]]},{"type":"Polygon","properties":{"name":"DUNCANSVILLE","zip":"16635","state":"PA"},"arcs":[[13177,13178,-13168,-12688,-12673,-13172,13179,-13147,-13134,-13138,13180]]},{"type":"Polygon","properties":{"name":"DYSART","zip":"16636","state":"PA"},"arcs":[[-13150,13181,13182,-13158,-13136]]},{"type":"Polygon","properties":{"name":"EAST FREEDOM","zip":"16637","state":"PA"},"arcs":[[-13179,13183,-13169]]},{"type":"Polygon","properties":{"name":"FALLENTIMBER","zip":"16639","state":"PA"},"arcs":[[13184,13185,-13170,-13154,13186,13187,-13159,-13183]]},{"type":"Polygon","properties":{"name":"FLINTON","zip":"16640","state":"PA"},"arcs":[[13188,-12488,-13156,-13171,-13186]]},{"type":"Polygon","properties":{"name":"GALLITZIN","zip":"16641","state":"PA"},"arcs":[[-12679,-13148,-13180,-13173]]},{"type":"Polygon","properties":{"name":"HASTINGS","zip":"16646","state":"PA"},"arcs":[[13189,-12536,-12442,-12455,13190]]},{"type":"Polygon","properties":{"name":"HESSTON","zip":"16647","state":"PA"},"arcs":[[13191,13192,13193,13194,13195,-13161]]},{"type":"Polygon","properties":{"name":"HOLLIDAYSBURG","zip":"16648","state":"PA"},"arcs":[[13196,13197,-13181,-13141,13198]]},{"type":"Polygon","properties":{"name":"HOPEWELL","zip":"16650","state":"PA"},"arcs":[[13199,13200,13201,13202,13203,-12292]]},{"type":"Polygon","properties":{"name":"HOUTZDALE","zip":"16651","state":"PA"},"arcs":[[13204,13205,13206,13207,13208,13209,13210]]},{"type":"Polygon","properties":{"name":"HUNTINGDON","zip":"16652","state":"PA"},"arcs":[[13211,13212,13213,13214,13215,13216,13217,13218,13219,13220,13221,-13195,13222,-13142]]},{"type":"Polygon","properties":{"name":"IMLER","zip":"16655","state":"PA"},"arcs":[[-12250,-12702,-12698,-13167,13223,-12317]]},{"type":"Polygon","properties":{"name":"IRVONA","zip":"16656","state":"PA"},"arcs":[[13224,13225,-13151,-12495]]},{"type":"Polygon","properties":{"name":"JAMES CREEK","zip":"16657","state":"PA"},"arcs":[[13226,13227,13228,-13193]]},{"type":"Polygon","properties":{"name":"LOYSBURG","zip":"16659","state":"PA"},"arcs":[[13229,13230,13231,-13201]]},{"type":"Polygon","properties":{"name":"MADERA","zip":"16661","state":"PA"},"arcs":[[13232,13233,-13152,-13226,13234,-13206]]},{"type":"Polygon","properties":{"name":"MARTINSBURG","zip":"16662","state":"PA"},"arcs":[[13235,13236,13237,13238,13239]]},{"type":"Polygon","properties":{"name":"NEW ENTERPRISE","zip":"16664","state":"PA"},"arcs":[[-13224,-13166,13240,-13238,13241,-13230,-13200,-12291,-12255,-12318]]},{"type":"Polygon","properties":{"name":"OSCEOLA MILLS","zip":"16666","state":"PA"},"arcs":[[13242,13243,13244,-13209]]},{"type":"Polygon","properties":{"name":"PATTON","zip":"16668","state":"PA"},"arcs":[[-13149,-12677,-12452,-12534,-13190,-12489,-13189,-13185,-13182]]},{"type":"Polygon","properties":{"name":"PETERSBURG","zip":"16669","state":"PA"},"arcs":[[-13146,13245,13246,13247,-13212]]},{"type":"Polygon","properties":{"name":"RAMEY","zip":"16671","state":"PA"},"arcs":[[13248,-13233,-13205]]},{"type":"Polygon","properties":{"name":"ROARING SPRING","zip":"16673","state":"PA"},"arcs":[[-13178,-13198,13249,-13239,-13241,-13184]]},{"type":"Polygon","properties":{"name":"ROBERTSDALE","zip":"16674","state":"PA"},"arcs":[[13250,-13177,13251,13252,13253]]},{"type":"Polygon","properties":{"name":"SAXTON","zip":"16678","state":"PA"},"arcs":[[13254,-13236,13255,-13228,13256,-13175,13257,-13202,-13232]]},{"type":"Polygon","properties":{"name":"SIX MILE RUN","zip":"16679","state":"PA"},"arcs":[[13258,-13203,-13258,-13174,-13251]]},{"type":"Polygon","properties":{"name":"SMITHMILL","zip":"16680","state":"PA"},"arcs":[[-13234,-13249,-13211,13259,13260,-13187,-13153]]},{"type":"Polygon","properties":{"name":"SPRUCE CREEK","zip":"16683","state":"PA"},"arcs":[[13261,-13246,-13145]]},{"type":"Polygon","properties":{"name":"TODD","zip":"16685","state":"PA"},"arcs":[[-13257,-13227,-13192,-13160,13262,-13252,-13176]]},{"type":"Polygon","properties":{"name":"TYRONE","zip":"16686","state":"PA"},"arcs":[[-13188,-13261,13263,13264,13265,13266,-13247,-13262,-13144,13267,-13199,-13140,-13157]]},{"type":"Polygon","properties":{"name":"WATERFALL","zip":"16689","state":"PA"},"arcs":[[13268,13269,13270,13271,13272,-12289]]},{"type":"Polygon","properties":{"name":"WELLS TANNERY","zip":"16691","state":"PA"},"arcs":[[-12288,-12276,-12293,-13204,-13259,-13254,-13269]]},{"type":"Polygon","properties":{"name":"WESTOVER","zip":"16692","state":"PA"},"arcs":[[-13191,-12460,13273,-12478,-12500,-12490]]},{"type":"Polygon","properties":{"name":"WILLIAMSBURG","zip":"16693","state":"PA"},"arcs":[[-13256,-13240,-13250,-13197,-13268,-13143,-13223,-13194,-13229]]},{"type":"Polygon","properties":{"name":"WOODBURY","zip":"16695","state":"PA"},"arcs":[[-13231,-13242,-13237,-13255]]},{"type":"Polygon","properties":{"name":"BRADFORD","zip":"16701","state":"PA"},"arcs":[[13274,-12993,-13035,-13010,-11437,-11415,13275,13276,13277,13278]]},{"type":"Polygon","properties":{"name":"AUSTIN","zip":"16720","state":"PA"},"arcs":[[-12594,13279,13280,13281,13282,13283,13284,13285,-12617,-12587]]},{"type":"Polygon","properties":{"name":"CROSBY","zip":"16724","state":"PA"},"arcs":[[13286,13287,13288,-13280,-12593]]},{"type":"Polygon","properties":{"name":"CYCLONE","zip":"16726","state":"PA"},"arcs":[[13289,13290,13291]]},{"type":"Polygon","properties":{"name":"DERRICK CITY","zip":"16727","state":"PA"},"arcs":[[-11414,13292,-13276]]},{"type":"Polygon","properties":{"name":"DUKE CENTER","zip":"16729","state":"PA"},"arcs":[[-13293,-11413,-11301,-11425,13293,13294,13295,-13277]]},{"type":"Polygon","properties":{"name":"ELDRED","zip":"16731","state":"PA"},"arcs":[[13296,13297,13298,13299,-13294,-11424,-11431]]},{"type":"Polygon","properties":{"name":"GIFFORD","zip":"16732","state":"PA"},"arcs":[[13300,-13279,13301,13302,-13291]]},{"type":"Polygon","properties":{"name":"JAMES CITY","zip":"16734","state":"PA"},"arcs":[[-12615,-12945,-13025,13303,-12622,-12608]]},{"type":"Polygon","properties":{"name":"KANE","zip":"16735","state":"PA"},"arcs":[[-13014,-12995,13304,13305,13306,13307,-13287,-12592,-12623,-13304]]},{"type":"Polygon","properties":{"name":"LEWIS RUN","zip":"16738","state":"PA"},"arcs":[[-13275,-13301,-13290,13308,-13305,-12994]]},{"type":"Polygon","properties":{"name":"MOUNT JEWETT","zip":"16740","state":"PA"},"arcs":[[13309,-13307]]},{"type":"Polygon","properties":{"name":"PORT ALLEGANY","zip":"16743","state":"PA"},"arcs":[[13310,-13281,-13289,13311,13312,13313]]},{"type":"Polygon","properties":{"name":"REW","zip":"16744","state":"PA"},"arcs":[[-13278,-13296,13314,13315,-13302]]},{"type":"Polygon","properties":{"name":"RIXFORD","zip":"16745","state":"PA"},"arcs":[[-13295,-13300,13316,-13315]]},{"type":"Polygon","properties":{"name":"ROULETTE","zip":"16746","state":"PA"},"arcs":[[13317,-13282,-13311,13318]]},{"type":"Polygon","properties":{"name":"SHINGLEHOUSE","zip":"16748","state":"PA"},"arcs":[[13319,-13319,-13314,13320,-13297,-11430,-11352,-11417,-11303,-11628,13321]]},{"type":"Polygon","properties":{"name":"SMETHPORT","zip":"16749","state":"PA"},"arcs":[[-13292,-13303,-13316,-13317,-13299,13322,-13312,-13288,-13308,-13310,-13306,-13309]]},{"type":"Polygon","properties":{"name":"TURTLEPOINT","zip":"16750","state":"PA"},"arcs":[[-13323,-13298,-13321,-13313]]},{"type":"Polygon","properties":{"name":"STATE COLLEGE","zip":"16801","state":"PA"},"arcs":[[13323,-13214,13324,13325,13326]]},{"type":"Polygon","properties":{"name":"STATE COLLEGE","zip":"16803","state":"PA"},"arcs":[[13327,13328,13329,13330,13331,-13326]]},{"type":"Polygon","properties":{"name":"AARONSBURG","zip":"16820","state":"PA"},"arcs":[[13332,13333,13334,13335,13336,13337]]},{"type":"Polygon","properties":{"name":"ALLPORT","zip":"16821","state":"PA"},"arcs":[[13338,13339,13340]]},{"type":"Polygon","properties":{"name":"BEECH CREEK","zip":"16822","state":"PA"},"arcs":[[13341,13342,13343,13344,13345,13346]]},{"type":"Polygon","properties":{"name":"BELLEFONTE","zip":"16823","state":"PA"},"arcs":[[13347,13348,13349,13350,13351,13352,13353,13354,13355,13356,-13327,-13332]]},{"type":"Polygon","properties":{"name":"BOALSBURG","zip":"16827","state":"PA"},"arcs":[[13357,-13215,-13324,-13357]]},{"type":"Polygon","properties":{"name":"CENTRE HALL","zip":"16828","state":"PA"},"arcs":[[-13358,-13356,13358,13359,-13216]]},{"type":"Polygon","properties":{"name":"CLARENCE","zip":"16829","state":"PA"},"arcs":[[13360,13361,13362,13363,-13350]]},{"type":"Polygon","properties":{"name":"CLEARFIELD","zip":"16830","state":"PA"},"arcs":[[13364,13365,-12604,-12575,-12553,13366,13367,13368,13369,13370]]},{"type":"Polygon","properties":{"name":"COBURN","zip":"16832","state":"PA"},"arcs":[[13371,13372,13373,13374,-13335]]},{"type":"Polygon","properties":{"name":"CURWENSVILLE","zip":"16833","state":"PA"},"arcs":[[-12493,13375,-13365,13376,13377]]},{"type":"Polygon","properties":{"name":"FRENCHVILLE","zip":"16836","state":"PA"},"arcs":[[13378,-13367,-12558,-12585,13379,13380,13381]]},{"type":"Polygon","properties":{"name":"GLEN RICHEY","zip":"16837","state":"PA"},"arcs":[[-13371,13382,-13377]]},{"type":"Polygon","properties":{"name":"GRAMPIAN","zip":"16838","state":"PA"},"arcs":[[-12492,-12499,-12602,-12611,-12605,-13366,-13376]]},{"type":"Polygon","properties":{"name":"GRASSFLAT","zip":"16839","state":"PA"},"arcs":[[13383,-13381,13384,13385,13386,13387]]},{"type":"Polygon","properties":{"name":"HAWK RUN","zip":"16840","state":"PA"},"arcs":[[13388,13389,-13340,13390,13391,-13244]]},{"type":"Polygon","properties":{"name":"HOWARD","zip":"16841","state":"PA"},"arcs":[[13392,13393,-13351,-13364,13394,-13342]]},{"type":"Polygon","properties":{"name":"JULIAN","zip":"16844","state":"PA"},"arcs":[[13395,13396,13397,-13348,-13331]]},{"type":"Polygon","properties":{"name":"KARTHAUS","zip":"16845","state":"PA"},"arcs":[[13398,-13385,-13380,-12589,13399,13400,-13343,-13395,-13363]]},{"type":"Polygon","properties":{"name":"MADISONBURG","zip":"16852","state":"PA"},"arcs":[[-13374,13401,-13354,13402,13403]]},{"type":"Polygon","properties":{"name":"MILLHEIM","zip":"16854","state":"PA"},"arcs":[[-13375,13404,-13336]]},{"type":"Polygon","properties":{"name":"MORRISDALE","zip":"16858","state":"PA"},"arcs":[[13405,-13382,-13384,13406,-13341,-13390,13407]]},{"type":"Polygon","properties":{"name":"MOSHANNON","zip":"16859","state":"PA"},"arcs":[[13408,-13386,-13399,-13362,13409]]},{"type":"Polygon","properties":{"name":"MUNSON","zip":"16860","state":"PA"},"arcs":[[-13339,13410,-13391]]},{"type":"Polygon","properties":{"name":"NEW MILLPORT","zip":"16861","state":"PA"},"arcs":[[-13378,-13383,-13370,13411,-13207,-13235,-13225,-12494]]},{"type":"Polygon","properties":{"name":"ORVISTON","zip":"16864","state":"PA"},"arcs":[[-13347,13412,-13393]]},{"type":"Polygon","properties":{"name":"PENNSYLVANIA FURNACE","zip":"16865","state":"PA"},"arcs":[[-13248,-13267,13413,-13328,-13325,-13213]]},{"type":"Polygon","properties":{"name":"PHILIPSBURG","zip":"16866","state":"PA"},"arcs":[[-13245,-13392,13414,-13387,-13409,13415,-13397,13416,-13264,-13260,-13210]]},{"type":"Polygon","properties":{"name":"PORT MATILDA","zip":"16870","state":"PA"},"arcs":[[13417,-13265,-13417,-13396,-13330]]},{"type":"Polygon","properties":{"name":"POTTERSDALE","zip":"16871","state":"PA"},"arcs":[[-12616,13418,-13400]]},{"type":"Polygon","properties":{"name":"REBERSBURG","zip":"16872","state":"PA"},"arcs":[[-13405,-13404,13419,13420,13421,13422,-13337]]},{"type":"Polygon","properties":{"name":"SNOW SHOE","zip":"16874","state":"PA"},"arcs":[[-13416,-13410,-13361,-13349,-13398]]},{"type":"Polygon","properties":{"name":"SPRING MILLS","zip":"16875","state":"PA"},"arcs":[[13423,-13359,-13355,-13402,-13373]]},{"type":"Polygon","properties":{"name":"WARRIORS MARK","zip":"16877","state":"PA"},"arcs":[[-13266,-13418,-13329,-13414]]},{"type":"Polygon","properties":{"name":"WEST DECATUR","zip":"16878","state":"PA"},"arcs":[[-13208,-13412,-13369,13424,-13408,-13389,-13243]]},{"type":"Polygon","properties":{"name":"WINBURNE","zip":"16879","state":"PA"},"arcs":[[-13415,-13411,-13407,-13388]]},{"type":"Polygon","properties":{"name":"WOODLAND","zip":"16881","state":"PA"},"arcs":[[-13425,-13368,-13379,-13406]]},{"type":"Polygon","properties":{"name":"WOODWARD","zip":"16882","state":"PA"},"arcs":[[13425,-13338,-13423,13426]]},{"type":"Polygon","properties":{"name":"WELLSBORO","zip":"16901","state":"PA"},"arcs":[[13427,13428,13429,13430,13431,13432,13433,13434]]},{"type":"Polygon","properties":{"name":"BLOSSBURG","zip":"16912","state":"PA"},"arcs":[[13435,13436,13437,-13428,13438,13439,13440]]},{"type":"Polygon","properties":{"name":"COLUMBIA CROSS ROADS","zip":"16914","state":"PA"},"arcs":[[13441,13442,13443,13444,13445,13446]]},{"type":"Polygon","properties":{"name":"COUDERSPORT","zip":"16915","state":"PA"},"arcs":[[-13320,13447,13448,13449,-13283,-13318]]},{"type":"Polygon","properties":{"name":"COVINGTON","zip":"16917","state":"PA"},"arcs":[[13450,-13439,-13435,13451,13452,13453]]},{"type":"Polygon","properties":{"name":"ELKLAND","zip":"16920","state":"PA"},"arcs":[[13454,13455,13456,-11448]]},{"type":"Polygon","properties":{"name":"GAINES","zip":"16921","state":"PA"},"arcs":[[13457,13458,13459,13460,13461,-13430]]},{"type":"Polygon","properties":{"name":"GALETON","zip":"16922","state":"PA"},"arcs":[[13462,-13284,-13450,13463,13464,-13461]]},{"type":"Polygon","properties":{"name":"GENESEE","zip":"16923","state":"PA"},"arcs":[[13465,13466,-13448,-13322,-11627,-11631,13467]]},{"type":"Polygon","properties":{"name":"GILLETT","zip":"16925","state":"PA"},"arcs":[[13468,-13446,13469,13470,-11600,-11624,-11639,13471,13472]]},{"type":"Polygon","properties":{"name":"GRANVILLE SUMMIT","zip":"16926","state":"PA"},"arcs":[[13473,13474,13475,13476,13477]]},{"type":"Polygon","properties":{"name":"HARRISON VALLEY","zip":"16927","state":"PA"},"arcs":[[13478,13479,-13466,13480,-11629,-11608,-11618],[13481]]},{"type":"Polygon","properties":{"name":"KNOXVILLE","zip":"16928","state":"PA"},"arcs":[[13482,13483,-11633,13484]]},{"type":"Polygon","properties":{"name":"LAWRENCEVILLE","zip":"16929","state":"PA"},"arcs":[[13485,13486,-11580,13487]]},{"type":"Polygon","properties":{"name":"LIBERTY","zip":"16930","state":"PA"},"arcs":[[13488,13489,-13437,13490]]},{"type":"Polygon","properties":{"name":"MAINESBURG","zip":"16932","state":"PA"},"arcs":[[13491,-13453,13492,-13444]]},{"type":"Polygon","properties":{"name":"MANSFIELD","zip":"16933","state":"PA"},"arcs":[[13493,13494,13495,-13470,-13445,-13493,-13452,-13434]]},{"type":"Polygon","properties":{"name":"MIDDLEBURY CENTER","zip":"16935","state":"PA"},"arcs":[[13496,-13483,13497,-13456,13498,13499,-13494,-13433]]},{"type":"Polygon","properties":{"name":"MILLERTON","zip":"16936","state":"PA"},"arcs":[[13500,-13488,-11579,-11601,-13471,-13496]]},{"type":"Polygon","properties":{"name":"MILLS","zip":"16937","state":"PA"},"arcs":[[-13482]]},{"type":"Polygon","properties":{"name":"MORRIS","zip":"16938","state":"PA"},"arcs":[[13501,13502,13503,-13458,-13429,-13438,-13490]]},{"type":"Polygon","properties":{"name":"MORRIS RUN","zip":"16939","state":"PA"},"arcs":[[-13451,13504,-13440]]},{"type":"Polygon","properties":{"name":"NELSON","zip":"16940","state":"PA"},"arcs":[[13505,-13499,-13455,-11447,-11581,-13487]]},{"type":"Polygon","properties":{"name":"GENESEE","zip":"16941","state":"PA"},"arcs":[[-11630,-13481,-13468]]},{"type":"Polygon","properties":{"name":"OSCEOLA","zip":"16942","state":"PA"},"arcs":[[-13485,-11632,-11449,-13457,-13498]]},{"type":"Polygon","properties":{"name":"SABINSVILLE","zip":"16943","state":"PA"},"arcs":[[-13465,13506,13507,-13431,-13462]]},{"type":"Polygon","properties":{"name":"TIOGA","zip":"16946","state":"PA"},"arcs":[[-13500,-13506,-13486,-13501,-13495]]},{"type":"Polygon","properties":{"name":"TROY","zip":"16947","state":"PA"},"arcs":[[13508,-13477,13509,-13442,13510,13511]]},{"type":"Polygon","properties":{"name":"ULYSSES","zip":"16948","state":"PA"},"arcs":[[-13480,13512,-13507,-13464,-13449,-13467]]},{"type":"Polygon","properties":{"name":"WESTFIELD","zip":"16950","state":"PA"},"arcs":[[-13432,-13508,-13513,-13479,-11617,-11634,-13484,-13497]]},{"type":"Polygon","properties":{"name":"ALLENSVILLE","zip":"17002","state":"PA"},"arcs":[[13513,13514,-13220,13515]]},{"type":"Polygon","properties":{"name":"ANNVILLE","zip":"17003","state":"PA"},"arcs":[[13516,13517,13518,13519,13520]]},{"type":"Polygon","properties":{"name":"BELLEVILLE","zip":"17004","state":"PA"},"arcs":[[13521,-13516,-13219,13522,13523]]},{"type":"Polygon","properties":{"name":"BLAIN","zip":"17006","state":"PA"},"arcs":[[13524,13525,13526,13527]]},{"type":"Polygon","properties":{"name":"BOILING SPRINGS","zip":"17007","state":"PA"},"arcs":[[13528,13529,13530,13531,13532]]},{"type":"Polygon","properties":{"name":"CAMP HILL","zip":"17011","state":"PA"},"arcs":[[13533,13534,13535,13536,13537]]},{"type":"Polygon","properties":{"name":"CARLISLE","zip":"17013","state":"PA"},"arcs":[[13538,13539,13540,13541,13542,13543,13544,13545,13546,13547,13548,-13532,13549]]},{"type":"Polygon","properties":{"name":"COCOLAMUS","zip":"17014","state":"PA"},"arcs":[[13550,13551,13552,13553,13554]]},{"type":"Polygon","properties":{"name":"DALMATIA","zip":"17017","state":"PA"},"arcs":[[13555,13556,13557,13558,13559,13560]]},{"type":"Polygon","properties":{"name":"DAUPHIN","zip":"17018","state":"PA"},"arcs":[[13561,13562,13563,13564]]},{"type":"Polygon","properties":{"name":"DILLSBURG","zip":"17019","state":"PA"},"arcs":[[13565,13566,13567,13568,-13529,13569,13570]]},{"type":"Polygon","properties":{"name":"DUNCANNON","zip":"17020","state":"PA"},"arcs":[[13571,13572,13573,13574,13575,13576]]},{"type":"Polygon","properties":{"name":"EAST WATERFORD","zip":"17021","state":"PA"},"arcs":[[13577,13578,13579,13580,13581,13582,13583]]},{"type":"Polygon","properties":{"name":"ELIZABETHTOWN","zip":"17022","state":"PA"},"arcs":[[13584,13585,13586,13587,13588,13589,13590]]},{"type":"Polygon","properties":{"name":"ELIZABETHVILLE","zip":"17023","state":"PA"},"arcs":[[13591,13592,-13556,13593]]},{"type":"Polygon","properties":{"name":"ELLIOTTSBURG","zip":"17024","state":"PA"},"arcs":[[13594,13595,13596,13597,13598]]},{"type":"Polygon","properties":{"name":"ENOLA","zip":"17025","state":"PA"},"arcs":[[13599,-13537,13600,-13547,13601,13602]]},{"type":"Polygon","properties":{"name":"FREDERICKSBURG","zip":"17026","state":"PA"},"arcs":[[13603,13604,13605,13606,13607]]},{"type":"Polygon","properties":{"name":"GRANTVILLE","zip":"17028","state":"PA"},"arcs":[[13608,13609,13610,-13565,13611,13612,-13519]]},{"type":"Polygon","properties":{"name":"GRATZ","zip":"17030","state":"PA"},"arcs":[[13613,13614,13615]]},{"type":"Polygon","properties":{"name":"GREEN PARK","zip":"17031","state":"PA"},"arcs":[[13616,13617,-13597,13618]]},{"type":"Polygon","properties":{"name":"HALIFAX","zip":"17032","state":"PA"},"arcs":[[13619,-13612,-13564,13620,13621,-13592,13622,13623,13624,13625]]},{"type":"Polygon","properties":{"name":"HERSHEY","zip":"17033","state":"PA"},"arcs":[[13626,-13589,13627]]},{"type":"Polygon","properties":{"name":"HIGHSPIRE","zip":"17034","state":"PA"},"arcs":[[13628,13629,13630]]},{"type":"Polygon","properties":{"name":"HONEY GROVE","zip":"17035","state":"PA"},"arcs":[[13631,13632,13633,13634,-13527,13635,-13583]]},{"type":"Polygon","properties":{"name":"HUMMELSTOWN","zip":"17036","state":"PA"},"arcs":[[13636,13637,-13610,13638,-13628,13639]]},{"type":"Polygon","properties":{"name":"ICKESBURG","zip":"17037","state":"PA"},"arcs":[[-13618,13640,13641,13642,13643,-13598]]},{"type":"Polygon","properties":{"name":"JONESTOWN","zip":"17038","state":"PA"},"arcs":[[13644,-13520,-13613,-13620,13645,13646,-13605]]},{"type":"Polygon","properties":{"name":"LANDISBURG","zip":"17040","state":"PA"},"arcs":[[13647,-13544,13648,13649,-13619,-13596]]},{"type":"Polygon","properties":{"name":"LEBANON","zip":"17042","state":"PA"},"arcs":[[13650,13651,13652,-13517,13653,13654,13655]]},{"type":"Polygon","properties":{"name":"LEMOYNE","zip":"17043","state":"PA"},"arcs":[[13656,-13538,-13600,13657]]},{"type":"Polygon","properties":{"name":"LEWISTOWN","zip":"17044","state":"PA"},"arcs":[[13658,13659,-13633,13660,-13524,13661,13662,13663,13664,13665]]},{"type":"Polygon","properties":{"name":"LIVERPOOL","zip":"17045","state":"PA"},"arcs":[[-13576,13666,13667,13668,-13554,13669,13670,13671]]},{"type":"Polygon","properties":{"name":"LEBANON","zip":"17046","state":"PA"},"arcs":[[-13521,-13645,-13604,13672,-13654]]},{"type":"Polygon","properties":{"name":"LOYSVILLE","zip":"17047","state":"PA"},"arcs":[[13673,-13528,-13635,13674,-13641,-13617,-13650]]},{"type":"Polygon","properties":{"name":"LYKENS","zip":"17048","state":"PA"},"arcs":[[13675,13676,-13623,-13594,-13561,13677,13678,13679,13680,-13614,13681]]},{"type":"Polygon","properties":{"name":"MC ALISTERVILLE","zip":"17049","state":"PA"},"arcs":[[13682,13683,13684,-13551,13685,13686,13687]]},{"type":"Polygon","properties":{"name":"MECHANICSBURG","zip":"17050","state":"PA"},"arcs":[[13688,-13548,-13601,-13536]]},{"type":"Polygon","properties":{"name":"MC VEYTOWN","zip":"17051","state":"PA"},"arcs":[[13689,13690,-13514,-13522,-13661,-13632,-13582]]},{"type":"Polygon","properties":{"name":"MAPLETON DEPOT","zip":"17052","state":"PA"},"arcs":[[13691,-13162,-13196,-13222,13692]]},{"type":"Polygon","properties":{"name":"MARYSVILLE","zip":"17053","state":"PA"},"arcs":[[13693,-13572,13694,-13602,-13546]]},{"type":"Polygon","properties":{"name":"MECHANICSBURG","zip":"17055","state":"PA"},"arcs":[[-13549,-13689,-13535,13695,13696,-13570,-13533]]},{"type":"Polygon","properties":{"name":"MIDDLETOWN","zip":"17057","state":"PA"},"arcs":[[13697,13698,-13629,13699,13700,-13640,-13588]]},{"type":"Polygon","properties":{"name":"MIFFLIN","zip":"17058","state":"PA"},"arcs":[[13701,13702]]},{"type":"Polygon","properties":{"name":"MIFFLINTOWN","zip":"17059","state":"PA"},"arcs":[[13703,-13659,13704,-13683,13705,-13687,13706,13707,13708,-13702]]},{"type":"Polygon","properties":{"name":"MILL CREEK","zip":"17060","state":"PA"},"arcs":[[-13221,-13515,-13691,13709,-13693]]},{"type":"Polygon","properties":{"name":"MILLERSBURG","zip":"17061","state":"PA"},"arcs":[[-13557,-13593,-13622,13710]]},{"type":"Polygon","properties":{"name":"MILLERSTOWN","zip":"17062","state":"PA"},"arcs":[[13711,13712,-13668]]},{"type":"Polygon","properties":{"name":"MILROY","zip":"17063","state":"PA"},"arcs":[[-13360,-13424,-13372,-13334,13713,13714,-13665,13715,-13217]]},{"type":"Polygon","properties":{"name":"MOUNT HOLLY SPRINGS","zip":"17065","state":"PA"},"arcs":[[13716,-13550,-13531]]},{"type":"Polygon","properties":{"name":"MOUNT UNION","zip":"17066","state":"PA"},"arcs":[[-13692,-13710,-13690,-13581,13717,13718,-13163]]},{"type":"Polygon","properties":{"name":"MYERSTOWN","zip":"17067","state":"PA"},"arcs":[[13719,13720,-13655,-13673,-13608,13721]]},{"type":"Polygon","properties":{"name":"NEW BLOOMFIELD","zip":"17068","state":"PA"},"arcs":[[13722,-13599,-13644,13723,-13574]]},{"type":"Polygon","properties":{"name":"NEW CUMBERLAND","zip":"17070","state":"PA"},"arcs":[[-13534,-13657,13724,13725,13726,-13696]]},{"type":"Polygon","properties":{"name":"NEW GERMANTOWN","zip":"17071","state":"PA"},"arcs":[[13727,13728,13729,13730,13731,-13584,-13636,-13526]]},{"type":"Polygon","properties":{"name":"NEWMANSTOWN","zip":"17073","state":"PA"},"arcs":[[13732,13733,-13656,-13721,13734,13735,13736,13737]]},{"type":"Polygon","properties":{"name":"NEWPORT","zip":"17074","state":"PA"},"arcs":[[-13724,-13643,13738,-13708,13739,-13712,-13667,-13575]]},{"type":"Polygon","properties":{"name":"OAKLAND MILLS","zip":"17076","state":"PA"},"arcs":[[-13688,-13706]]},{"type":"Polygon","properties":{"name":"PALMYRA","zip":"17078","state":"PA"},"arcs":[[-13639,-13609,-13518,-13653,13740,-13590,-13627]]},{"type":"Polygon","properties":{"name":"PILLOW","zip":"17080","state":"PA"},"arcs":[[13741,-13678,-13560]]},{"type":"Polygon","properties":{"name":"PORT ROYAL","zip":"17082","state":"PA"},"arcs":[[-13675,-13634,-13660,-13704,-13703,-13709,-13739,-13642]]},{"type":"Polygon","properties":{"name":"REEDSVILLE","zip":"17084","state":"PA"},"arcs":[[13742,-13662,-13523,-13218,-13716,-13664]]},{"type":"Polygon","properties":{"name":"RICHFIELD","zip":"17086","state":"PA"},"arcs":[[13743,-13552,-13685,13744,13745,13746,13747]]},{"type":"Polygon","properties":{"name":"RICHLAND","zip":"17087","state":"PA"},"arcs":[[-13720,13748,13749,-13735]]},{"type":"Polygon","properties":{"name":"SHERMANS DALE","zip":"17090","state":"PA"},"arcs":[[-13545,-13648,-13595,-13723,-13573,-13694]]},{"type":"Polygon","properties":{"name":"THOMPSONTOWN","zip":"17094","state":"PA"},"arcs":[[-13740,-13707,-13686,-13555,-13669,-13713]]},{"type":"Polygon","properties":{"name":"WICONISCO","zip":"17097","state":"PA"},"arcs":[[13750,-13676]]},{"type":"Polygon","properties":{"name":"WILLIAMSTOWN","zip":"17098","state":"PA"},"arcs":[[13751,-13624,-13677,-13751,-13682,-13616,13752,13753]]},{"type":"Polygon","properties":{"name":"YEAGERTOWN","zip":"17099","state":"PA"},"arcs":[[-13743,-13663]]},{"type":"Polygon","properties":{"name":"HARRISBURG","zip":"17101","state":"PA"},"arcs":[[13754,13755,13756,13757]]},{"type":"Polygon","properties":{"name":"HARRISBURG","zip":"17102","state":"PA"},"arcs":[[13758,13759,-13757,13760]]},{"type":"Polygon","properties":{"name":"HARRISBURG","zip":"17103","state":"PA"},"arcs":[[13761,-13758,-13760,13762,13763]]},{"type":"Polygon","properties":{"name":"HARRISBURG","zip":"17104","state":"PA"},"arcs":[[13764,13765,13766,-13755,-13762,13767]]},{"type":"Polygon","properties":{"name":"HARRISBURG","zip":"17109","state":"PA"},"arcs":[[-13764,13768,13769,13770,-13768]]},{"type":"Polygon","properties":{"name":"HARRISBURG","zip":"17110","state":"PA"},"arcs":[[13771,-13769,-13763,-13759,13772]]},{"type":"Polygon","properties":{"name":"HARRISBURG","zip":"17111","state":"PA"},"arcs":[[-13771,13773,-13637,-13701,13774,-13765]]},{"type":"Polygon","properties":{"name":"HARRISBURG","zip":"17112","state":"PA"},"arcs":[[-13562,-13611,-13638,-13774,-13770,-13772,13775]]},{"type":"Polygon","properties":{"name":"HARRISBURG","zip":"17113","state":"PA"},"arcs":[[-13766,-13775,-13700,-13631,13776]]},{"type":"Polygon","properties":{"name":"CHAMBERSBURG","zip":"17201","state":"PA"},"arcs":[[13777,13778,13779,13780,13781,13782,13783,13784]]},{"type":"Polygon","properties":{"name":"ARTEMAS","zip":"17211","state":"PA"},"arcs":[[13785,13786,-12283,13787]]},{"type":"Polygon","properties":{"name":"BIG COVE TANNERY","zip":"17212","state":"PA"},"arcs":[[13788,13789,13790,13791]]},{"type":"Polygon","properties":{"name":"BLAIRS MILLS","zip":"17213","state":"PA"},"arcs":[[13792,13793,13794,-13579,13795,13796]]},{"type":"Polygon","properties":{"name":"BLUE RIDGE SUMMIT","zip":"17214","state":"PA"},"arcs":[[13797,13798,13799,13800]]},{"type":"Polygon","properties":{"name":"BURNT CABINS","zip":"17215","state":"PA"},"arcs":[[13801,13802,13803,13804]]},{"type":"Polygon","properties":{"name":"CONCORD","zip":"17217","state":"PA"},"arcs":[[13805,-13578,-13732,13806]]},{"type":"Polygon","properties":{"name":"DOYLESBURG","zip":"17219","state":"PA"},"arcs":[[13807,13808,-13807,-13731]]},{"type":"Polygon","properties":{"name":"DRY RUN","zip":"17220","state":"PA"},"arcs":[[-13806,-13809,13809,13810,-13796]]},{"type":"Polygon","properties":{"name":"FANNETTSBURG","zip":"17221","state":"PA"},"arcs":[[13811,13812,13813,13814,13815]]},{"type":"Polygon","properties":{"name":"FAYETTEVILLE","zip":"17222","state":"PA"},"arcs":[[-13778,13816,13817,13818,13819,13820]]},{"type":"Polygon","properties":{"name":"FORT LITTLETON","zip":"17223","state":"PA"},"arcs":[[13821,13822,13823,-13271,13824,13825,-13803]]},{"type":"Polygon","properties":{"name":"FORT LOUDON","zip":"17224","state":"PA"},"arcs":[[13826,13827,13828,-13805,-13813,13829,13830,-13782]]},{"type":"Polygon","properties":{"name":"GREENCASTLE","zip":"17225","state":"PA"},"arcs":[[13831,13832,13833,13834,13835,-13780]]},{"type":"Polygon","properties":{"name":"HARRISONVILLE","zip":"17228","state":"PA"},"arcs":[[-13273,13836,-13823,13837,13838,-12290]]},{"type":"Polygon","properties":{"name":"HUSTONTOWN","zip":"17229","state":"PA"},"arcs":[[-13837,-13272,-13824]]},{"type":"Polygon","properties":{"name":"MC CONNELLSBURG","zip":"17233","state":"PA"},"arcs":[[13839,-13792,13840,-13838,-13822,-13802,-13829]]},{"type":"Polygon","properties":{"name":"MERCERSBURG","zip":"17236","state":"PA"},"arcs":[[13841,-13789,-13840,-13828,13842,-13835,13843,13844,13845]]},{"type":"Polygon","properties":{"name":"NEEDMORE","zip":"17238","state":"PA"},"arcs":[[13846,-12286,-13839,-13841,-13791]]},{"type":"Polygon","properties":{"name":"NEELYTON","zip":"17239","state":"PA"},"arcs":[[13847,13848,-13797,-13811,13849,13850,-13814,-13804,-13826]]},{"type":"Polygon","properties":{"name":"NEWBURG","zip":"17240","state":"PA"},"arcs":[[13851,-13729,13852,13853,13854]]},{"type":"Polygon","properties":{"name":"NEWVILLE","zip":"17241","state":"PA"},"arcs":[[-13728,-13525,-13674,-13649,-13543,13855,-13853]]},{"type":"Polygon","properties":{"name":"ORBISONIA","zip":"17243","state":"PA"},"arcs":[[13856,13857,-13164,-13719,13858,-13794]]},{"type":"Polygon","properties":{"name":"ORRSTOWN","zip":"17244","state":"PA"},"arcs":[[13859,-13816,13860,13861,-13855,13862,-13784,13863]]},{"type":"Polygon","properties":{"name":"PLEASANT HALL","zip":"17246","state":"PA"},"arcs":[[13864,-13864,-13783,-13831]]},{"type":"Polygon","properties":{"name":"SAINT THOMAS","zip":"17252","state":"PA"},"arcs":[[-13836,-13843,-13827,-13781]]},{"type":"Polygon","properties":{"name":"SHADE GAP","zip":"17255","state":"PA"},"arcs":[[13865,-13857,-13793,-13849]]},{"type":"Polygon","properties":{"name":"SHIPPENSBURG","zip":"17257","state":"PA"},"arcs":[[-13863,-13854,-13856,-13542,13866,-13817,-13785]]},{"type":"Polygon","properties":{"name":"SHIRLEYSBURG","zip":"17260","state":"PA"},"arcs":[[-13859,-13718,-13580,-13795]]},{"type":"Polygon","properties":{"name":"SPRING RUN","zip":"17262","state":"PA"},"arcs":[[-13862,13867,-13850,-13810,-13808,-13730,-13852]]},{"type":"Polygon","properties":{"name":"THREE SPRINGS","zip":"17264","state":"PA"},"arcs":[[-13253,-13263,-13165,-13858,-13866,-13848,-13825,-13270]]},{"type":"Polygon","properties":{"name":"UPPERSTRASBURG","zip":"17265","state":"PA"},"arcs":[[-13860,-13865,-13830,-13812]]},{"type":"Polygon","properties":{"name":"WARFORDSBURG","zip":"17267","state":"PA"},"arcs":[[-12282,-12287,-13847,-13790,-13842,13868,13869,-13788]]},{"type":"Polygon","properties":{"name":"WAYNESBORO","zip":"17268","state":"PA"},"arcs":[[-13779,-13821,13870,-13798,13871,13872,13873,-13832]]},{"type":"Polygon","properties":{"name":"WILLOW HILL","zip":"17271","state":"PA"},"arcs":[[-13815,-13851,-13868,-13861]]},{"type":"Polygon","properties":{"name":"ABBOTTSTOWN","zip":"17301","state":"PA"},"arcs":[[13874,13875,13876,13877,13878]]},{"type":"Polygon","properties":{"name":"AIRVILLE","zip":"17302","state":"PA"},"arcs":[[13879,13880,13881,13882]]},{"type":"Polygon","properties":{"name":"ASPERS","zip":"17304","state":"PA"},"arcs":[[13883,13884,-13540,13885,13886]]},{"type":"Polygon","properties":{"name":"BIGLERVILLE","zip":"17307","state":"PA"},"arcs":[[13887,13888,-13818,-13867,-13541,-13885]]},{"type":"Polygon","properties":{"name":"BROGUE","zip":"17309","state":"PA"},"arcs":[[13889,13890,13891,13892,13893,-13882]]},{"type":"Polygon","properties":{"name":"DALLASTOWN","zip":"17313","state":"PA"},"arcs":[[13894,13895,13896,13897,13898]]},{"type":"Polygon","properties":{"name":"DELTA","zip":"17314","state":"PA"},"arcs":[[13899,13900,-13880,13901]]},{"type":"Polygon","properties":{"name":"DOVER","zip":"17315","state":"PA"},"arcs":[[13902,13903,-13879,13904,13905,13906,13907,13908]]},{"type":"Polygon","properties":{"name":"EAST BERLIN","zip":"17316","state":"PA"},"arcs":[[-13878,13909,13910,-13567,13911,-13905]]},{"type":"Polygon","properties":{"name":"ETTERS","zip":"17319","state":"PA"},"arcs":[[13912,-13726,13913,13914]]},{"type":"Polygon","properties":{"name":"FAIRFIELD","zip":"17320","state":"PA"},"arcs":[[-13871,-13820,13915,13916,13917,13918,-13799]]},{"type":"Polygon","properties":{"name":"FAWN GROVE","zip":"17321","state":"PA"},"arcs":[[13919,13920,13921,-13881,-13901]]},{"type":"Polygon","properties":{"name":"FELTON","zip":"17322","state":"PA"},"arcs":[[13922,13923,13924,-13899,13925,-13891]]},{"type":"Polygon","properties":{"name":"GARDNERS","zip":"17324","state":"PA"},"arcs":[[-13717,-13530,-13569,13926,-13886,-13539]]},{"type":"Polygon","properties":{"name":"GETTYSBURG","zip":"17325","state":"PA"},"arcs":[[13927,-13888,-13884,13928,13929,13930,13931,13932,13933,-13917]]},{"type":"Polygon","properties":{"name":"GLEN ROCK","zip":"17327","state":"PA"},"arcs":[[13934,13935,13936,13937,13938,13939,13940,13941,13942]]},{"type":"Polygon","properties":{"name":"GLENVILLE","zip":"17329","state":"PA"},"arcs":[[13943,13944,13945,-13938]]},{"type":"Polygon","properties":{"name":"HANOVER","zip":"17331","state":"PA"},"arcs":[[13946,13947,13948,-13931,13949,-13876,13950,-13945]]},{"type":"Polygon","properties":{"name":"LEWISBERRY","zip":"17339","state":"PA"},"arcs":[[-13697,-13727,-13913,13951,-13907,13952,-13571]]},{"type":"Polygon","properties":{"name":"LITTLESTOWN","zip":"17340","state":"PA"},"arcs":[[-13949,13953,13954,-13932]]},{"type":"Polygon","properties":{"name":"MANCHESTER","zip":"17345","state":"PA"},"arcs":[[13955,13956,13957]]},{"type":"Polygon","properties":{"name":"MOUNT WOLF","zip":"17347","state":"PA"},"arcs":[[13958,13959,13960,13961,-13958]]},{"type":"Polygon","properties":{"name":"NEW FREEDOM","zip":"17349","state":"PA"},"arcs":[[13962,-13942,13963,13964,13965,-13935]]},{"type":"Polygon","properties":{"name":"NEW OXFORD","zip":"17350","state":"PA"},"arcs":[[13966,-13910,-13877,-13950,-13930]]},{"type":"Polygon","properties":{"name":"NEW PARK","zip":"17352","state":"PA"},"arcs":[[13967,-13923,-13890,-13922,13968,13969]]},{"type":"Polygon","properties":{"name":"ORRTANNA","zip":"17353","state":"PA"},"arcs":[[-13916,-13819,-13889,-13928]]},{"type":"Polygon","properties":{"name":"RED LION","zip":"17356","state":"PA"},"arcs":[[-13926,-13898,13970,13971,13972,-13892]]},{"type":"Polygon","properties":{"name":"SEVEN VALLEYS","zip":"17360","state":"PA"},"arcs":[[-13940,13973,13974,13975,-13895,-13925]]},{"type":"Polygon","properties":{"name":"SHREWSBURY","zip":"17361","state":"PA"},"arcs":[[-13943,-13963]]},{"type":"Polygon","properties":{"name":"SPRING GROVE","zip":"17362","state":"PA"},"arcs":[[-13946,-13951,-13875,-13904,13976,13977,-13974,-13939]]},{"type":"Polygon","properties":{"name":"STEWARTSTOWN","zip":"17363","state":"PA"},"arcs":[[-13941,-13924,-13968,13978,13979,-13964]]},{"type":"Polygon","properties":{"name":"THOMASVILLE","zip":"17364","state":"PA"},"arcs":[[-13903,13980,-13977]]},{"type":"Polygon","properties":{"name":"WELLSVILLE","zip":"17365","state":"PA"},"arcs":[[-13912,-13566,-13953,-13906]]},{"type":"Polygon","properties":{"name":"WINDSOR","zip":"17366","state":"PA"},"arcs":[[13981,-13972,13982,13983]]},{"type":"Polygon","properties":{"name":"WRIGHTSVILLE","zip":"17368","state":"PA"},"arcs":[[13984,13985,-13893,-13973,-13982]]},{"type":"Polygon","properties":{"name":"YORK HAVEN","zip":"17370","state":"PA"},"arcs":[[13986,-13908,-13952,-13915,13987,-13959,-13957]]},{"type":"Polygon","properties":{"name":"YORK SPRINGS","zip":"17372","state":"PA"},"arcs":[[-13887,-13927,-13568,-13911,-13967,-13929]]},{"type":"Polygon","properties":{"name":"YORK","zip":"17402","state":"PA"},"arcs":[[-13897,13988,13989,-13987,-13956,-13962,13990,-13983,-13971]]},{"type":"Polygon","properties":{"name":"YORK","zip":"17403","state":"PA"},"arcs":[[13991,-13989,-13896,-13976]]},{"type":"Polygon","properties":{"name":"YORK","zip":"17404","state":"PA"},"arcs":[[-13975,-13978,-13981,-13909,-13990,-13992]]},{"type":"Polygon","properties":{"name":"YORK","zip":"17406","state":"PA"},"arcs":[[-13991,-13961,13992,-13985,-13984]]},{"type":"Polygon","properties":{"name":"BAINBRIDGE","zip":"17502","state":"PA"},"arcs":[[13993,13994,-13698,-13587]]},{"type":"Polygon","properties":{"name":"BIRD IN HAND","zip":"17505","state":"PA"},"arcs":[[13995,13996,13997,13998,13999]]},{"type":"Polygon","properties":{"name":"CHRISTIANA","zip":"17509","state":"PA"},"arcs":[[14000,14001,14002,14003,14004,14005,14006,14007]]},{"type":"Polygon","properties":{"name":"COLUMBIA","zip":"17512","state":"PA"},"arcs":[[14008,14009,14010,14011,14012,14013,14014]]},{"type":"Polygon","properties":{"name":"CONESTOGA","zip":"17516","state":"PA"},"arcs":[[14015,14016,14017,14018,14019,14020]]},{"type":"Polygon","properties":{"name":"DENVER","zip":"17517","state":"PA"},"arcs":[[14021,14022,14023,14024,-13738,14025,14026,14027]]},{"type":"Polygon","properties":{"name":"DRUMORE","zip":"17518","state":"PA"},"arcs":[[14028,14029,14030,14031]]},{"type":"Polygon","properties":{"name":"EAST EARL","zip":"17519","state":"PA"},"arcs":[[14032,14033,-14023]]},{"type":"Polygon","properties":{"name":"EAST PETERSBURG","zip":"17520","state":"PA"},"arcs":[[14034,14035,14036]]},{"type":"Polygon","properties":{"name":"EPHRATA","zip":"17522","state":"PA"},"arcs":[[14037,14038,14039,14040]]},{"type":"Polygon","properties":{"name":"GAP","zip":"17527","state":"PA"},"arcs":[[14041,14042,14043,14044,14045,14046,14047,-14007]]},{"type":"Polygon","properties":{"name":"GORDONVILLE","zip":"17529","state":"PA"},"arcs":[[14048,14049,14050,14051,14052]]},{"type":"Polygon","properties":{"name":"HOLTWOOD","zip":"17532","state":"PA"},"arcs":[[14053,14054,14055,-14029,14056]]},{"type":"Polygon","properties":{"name":"KINZERS","zip":"17535","state":"PA"},"arcs":[[14057,-14052,14058,-14042,-14006]]},{"type":"Polygon","properties":{"name":"KIRKWOOD","zip":"17536","state":"PA"},"arcs":[[14059,14060,-14003]]},{"type":"Polygon","properties":{"name":"LANDISVILLE","zip":"17538","state":"PA"},"arcs":[[14061,14062,14063]]},{"type":"Polygon","properties":{"name":"LEOLA","zip":"17540","state":"PA"},"arcs":[[14064,-13999,14065,14066,-14041,14067,-14050]]},{"type":"Polygon","properties":{"name":"LITITZ","zip":"17543","state":"PA"},"arcs":[[14068,-13651,-13734,14069,-14038,-14067,14070,-14037]]},{"type":"Polygon","properties":{"name":"MANHEIM","zip":"17545","state":"PA"},"arcs":[[14071,-14064,14072,-13591,-13741,-13652,-14069,-14036]]},{"type":"Polygon","properties":{"name":"MARIETTA","zip":"17547","state":"PA"},"arcs":[[-13994,-13586,14073,-14009,14074]]},{"type":"Polygon","properties":{"name":"MILLERSVILLE","zip":"17551","state":"PA"},"arcs":[[14075,14076,-14020]]},{"type":"Polygon","properties":{"name":"MOUNT JOY","zip":"17552","state":"PA"},"arcs":[[14077,-14010,-14074,-13585,-14073,-14063]]},{"type":"Polygon","properties":{"name":"MOUNTVILLE","zip":"17554","state":"PA"},"arcs":[[14078,14079,-14012]]},{"type":"Polygon","properties":{"name":"NARVON","zip":"17555","state":"PA"},"arcs":[[14080,-14033,-14022,14081,14082,14083,-14044]]},{"type":"Polygon","properties":{"name":"NEW HOLLAND","zip":"17557","state":"PA"},"arcs":[[-14040,-14024,-14034,-14081,-14043,-14059,-14051,-14068]]},{"type":"Polygon","properties":{"name":"NEW PROVIDENCE","zip":"17560","state":"PA"},"arcs":[[14084,14085,14086,14087,-14055]]},{"type":"Polygon","properties":{"name":"PARADISE","zip":"17562","state":"PA"},"arcs":[[14088,14089,-14053,-14058,-14005,14090]]},{"type":"Polygon","properties":{"name":"PEACH BOTTOM","zip":"17563","state":"PA"},"arcs":[[14091,14092,14093,14094,-14031,14095]]},{"type":"Polygon","properties":{"name":"PEQUEA","zip":"17565","state":"PA"},"arcs":[[-14017,14096,-14085,-14054,14097]]},{"type":"Polygon","properties":{"name":"QUARRYVILLE","zip":"17566","state":"PA"},"arcs":[[14098,14099,-14096,-14030,-14056,-14088,14100,-14091,-14004,-14061]]},{"type":"Polygon","properties":{"name":"REINHOLDS","zip":"17569","state":"PA"},"arcs":[[14101,14102,14103,14104,-14027]]},{"type":"Polygon","properties":{"name":"RONKS","zip":"17572","state":"PA"},"arcs":[[14105,14106,-14000,-14065,-14049,-14090,14107]]},{"type":"Polygon","properties":{"name":"SMOKETOWN","zip":"17576","state":"PA"},"arcs":[[14108,-13996,-14107]]},{"type":"Polygon","properties":{"name":"STEVENS","zip":"17578","state":"PA"},"arcs":[[-14039,-14070,-13733,-14025]]},{"type":"Polygon","properties":{"name":"STRASBURG","zip":"17579","state":"PA"},"arcs":[[14109,14110,-14108,-14089,-14101,-14087]]},{"type":"Polygon","properties":{"name":"WASHINGTON BORO","zip":"17582","state":"PA"},"arcs":[[-14019,14111,-14014,14112,-14076]]},{"type":"Polygon","properties":{"name":"WILLOW STREET","zip":"17584","state":"PA"},"arcs":[[14113,14114,-14110,-14086,-14097,-14016]]},{"type":"Polygon","properties":{"name":"LANCASTER","zip":"17601","state":"PA"},"arcs":[[-14078,-14062,-14072,-14035,-14071,-14066,-13998,14115,14116,-14079,-14011]]},{"type":"Polygon","properties":{"name":"LANCASTER","zip":"17602","state":"PA"},"arcs":[[14117,-14116,-13997,-14109,-14106,-14111,-14115]]},{"type":"Polygon","properties":{"name":"LANCASTER","zip":"17603","state":"PA"},"arcs":[[-14021,-14077,-14113,-14013,-14080,-14117,-14118,-14114]]},{"type":"Polygon","properties":{"name":"WILLIAMSPORT","zip":"17701","state":"PA"},"arcs":[[14118,14119,14120,14121]]},{"type":"Polygon","properties":{"name":"WILLIAMSPORT","zip":"17702","state":"PA"},"arcs":[[14122,14123,14124,14125,-14122,14126,14127]]},{"type":"Polygon","properties":{"name":"JERSEY SHORE","zip":"17723","state":"PA"},"arcs":[[14128,14129,-13459,-13504,14130,14131]]},{"type":"Polygon","properties":{"name":"CANTON","zip":"17724","state":"PA"},"arcs":[[14132,14133,-13441,-13505,-13454,-13492,-13443,-13510,-13476]]},{"type":"Polygon","properties":{"name":"COGAN STATION","zip":"17728","state":"PA"},"arcs":[[14134,14135,14136,14137,-14120]]},{"type":"Polygon","properties":{"name":"CROSS FORK","zip":"17729","state":"PA"},"arcs":[[-13463,-13460,-14130,14138,-13285]]},{"type":"Polygon","properties":{"name":"HUGHESVILLE","zip":"17737","state":"PA"},"arcs":[[14139,14140,14141,14142,14143]]},{"type":"Polygon","properties":{"name":"JERSEY SHORE","zip":"17740","state":"PA"},"arcs":[[14144,14145,14146,14147,14148,14149,-14136,14150,-14125]]},{"type":"Polygon","properties":{"name":"LAIRDSVILLE","zip":"17742","state":"PA"},"arcs":[[14151,-14140,14152]]},{"type":"Polygon","properties":{"name":"LINDEN","zip":"17744","state":"PA"},"arcs":[[-14151,-14135,-14119,-14126]]},{"type":"Polygon","properties":{"name":"LOCK HAVEN","zip":"17745","state":"PA"},"arcs":[[14153,14154,14155,-13345,14156,-14132,14157,-14148,14158,-14146]]},{"type":"Polygon","properties":{"name":"LOGANTON","zip":"17747","state":"PA"},"arcs":[[14159,-14155,14160,14161,-13420,-13403,-13353]]},{"type":"Polygon","properties":{"name":"MILL HALL","zip":"17751","state":"PA"},"arcs":[[-13413,-13346,-14156,-14160,-13352,-13394]]},{"type":"Polygon","properties":{"name":"MONTGOMERY","zip":"17752","state":"PA"},"arcs":[[14162,14163,-14123,14164]]},{"type":"Polygon","properties":{"name":"MONTOURSVILLE","zip":"17754","state":"PA"},"arcs":[[-14121,-14138,14165,14166,-14127]]},{"type":"Polygon","properties":{"name":"MUNCY","zip":"17756","state":"PA"},"arcs":[[14167,-14165,-14128,-14167,14168,-14141,-14152,14169,14170,14171]]},{"type":"Polygon","properties":{"name":"MUNCY VALLEY","zip":"17758","state":"PA"},"arcs":[[14172,14173,14174,14175,14176,14177,14178,14179,-14143]]},{"type":"Polygon","properties":{"name":"RALSTON","zip":"17763","state":"PA"},"arcs":[[14180,14181]]},{"type":"Polygon","properties":{"name":"RENOVO","zip":"17764","state":"PA"},"arcs":[[14182,-12618,-13286,-14139,-14129,-14157,-13344]]},{"type":"Polygon","properties":{"name":"ROARING BRANCH","zip":"17765","state":"PA"},"arcs":[[14183,-13491,-13436,-14134,14184,14185,-14182]]},{"type":"Polygon","properties":{"name":"SHUNK","zip":"17768","state":"PA"},"arcs":[[14186,14187,-14185,-14133,-13475,14188]]},{"type":"Polygon","properties":{"name":"TROUT RUN","zip":"17771","state":"PA"},"arcs":[[14189,-13502,-13489,-14184,-14181,-14186,14190,-14173,-14142,-14169,-14166,-14137,-14150]]},{"type":"Polygon","properties":{"name":"TURBOTVILLE","zip":"17772","state":"PA"},"arcs":[[14191,-14172,14192,14193,14194]]},{"type":"Polygon","properties":{"name":"UNITYVILLE","zip":"17774","state":"PA"},"arcs":[[-14144,-14180,14195,14196,-14170,-14153]]},{"type":"Polygon","properties":{"name":"WATERVILLE","zip":"17776","state":"PA"},"arcs":[[-14158,-14131,-13503,-14190,-14149]]},{"type":"Polygon","properties":{"name":"WATSONTOWN","zip":"17777","state":"PA"},"arcs":[[14197,14198,14199,-14163,-14168,-14192]]},{"type":"Polygon","properties":{"name":"WESTPORT","zip":"17778","state":"PA"},"arcs":[[-12619,-14183,-13401,-13419]]},{"type":"Polygon","properties":{"name":"WOOLRICH","zip":"17779","state":"PA"},"arcs":[[-14147,-14159]]},{"type":"Polygon","properties":{"name":"SUNBURY","zip":"17801","state":"PA"},"arcs":[[14200,14201,14202,14203,14204,14205,14206]]},{"type":"Polygon","properties":{"name":"ALLENWOOD","zip":"17810","state":"PA"},"arcs":[[14207,14208,-14161,-14154,-14145,-14124,-14164,-14200,14209]]},{"type":"Polygon","properties":{"name":"BEAVER SPRINGS","zip":"17812","state":"PA"},"arcs":[[14210,14211,14212,-13746]]},{"type":"Polygon","properties":{"name":"BEAVERTOWN","zip":"17813","state":"PA"},"arcs":[[-14213,14213,14214,-13747]]},{"type":"Polygon","properties":{"name":"BENTON","zip":"17814","state":"PA"},"arcs":[[14215,14216,-14196,-14179,14217,14218,14219,14220,14221]]},{"type":"MultiPolygon","properties":{"name":"BLOOMSBURG","zip":"17815","state":"PA"},"arcs":[[[14222,14223,14224,14225,14226]],[[14227,14228,14229,14230]]]},{"type":"Polygon","properties":{"name":"CATAWISSA","zip":"17820","state":"PA"},"arcs":[[14231,14232,14233,14234,14235,14236,14237,-14228,14238,14239]]},{"type":"MultiPolygon","properties":{"name":"DANVILLE","zip":"17821","state":"PA"},"arcs":[[[14240,14241,-14194,14242,-14223,14243]],[[14244,-14201,14245,-14237,14246,14247]]]},{"type":"Polygon","properties":{"name":"DORNSIFE","zip":"17823","state":"PA"},"arcs":[[14248,14249,14250,-14205]]},{"type":"Polygon","properties":{"name":"ELYSBURG","zip":"17824","state":"PA"},"arcs":[[14251,14252,-14247,-14236]]},{"type":"Polygon","properties":{"name":"GOWEN CITY","zip":"17828","state":"PA"},"arcs":[[14253,14254,14255,14256,14257]]},{"type":"Polygon","properties":{"name":"HERNDON","zip":"17830","state":"PA"},"arcs":[[-14206,-14251,14258,14259,14260,-13679,-13742,-13559,14261]]},{"type":"Polygon","properties":{"name":"KULPMONT","zip":"17834","state":"PA"},"arcs":[[14262,14263]]},{"type":"Polygon","properties":{"name":"LAURELTON","zip":"17835","state":"PA"},"arcs":[[14264,-13427,-13422,14265]]},{"type":"Polygon","properties":{"name":"LECK KILL","zip":"17836","state":"PA"},"arcs":[[14266,14267,-14258,14268,14269,-14260]]},{"type":"Polygon","properties":{"name":"LEWISBURG","zip":"17837","state":"PA"},"arcs":[[14270,14271,14272,-14208,14273,14274,14275]]},{"type":"Polygon","properties":{"name":"MC CLURE","zip":"17841","state":"PA"},"arcs":[[-13705,-13666,-13715,14276,-14211,-13745,-13684]]},{"type":"Polygon","properties":{"name":"MIDDLEBURG","zip":"17842","state":"PA"},"arcs":[[-14215,14277,14278,14279,14280,14281,14282,14283,-13748]]},{"type":"Polygon","properties":{"name":"BEAVER SPRINGS","zip":"17843","state":"PA"},"arcs":[[14284,-14281]]},{"type":"Polygon","properties":{"name":"MIFFLINBURG","zip":"17844","state":"PA"},"arcs":[[-14279,14285,-14266,-13421,-14162,-14209,-14273,14286,14287]]},{"type":"Polygon","properties":{"name":"MILLMONT","zip":"17845","state":"PA"},"arcs":[[-14277,-13714,-13333,-13426,-14265,-14286,-14278,-14214,-14212]]},{"type":"Polygon","properties":{"name":"MILLVILLE","zip":"17846","state":"PA"},"arcs":[[-14171,-14197,-14217,14288,14289,-14224,-14243,-14193]]},{"type":"Polygon","properties":{"name":"MILTON","zip":"17847","state":"PA"},"arcs":[[14290,14291,-14275,14292,-14198,-14195,-14242]]},{"type":"Polygon","properties":{"name":"MONTANDON","zip":"17850","state":"PA"},"arcs":[[-14292,14293,-14276]]},{"type":"Polygon","properties":{"name":"MOUNT CARMEL","zip":"17851","state":"PA"},"arcs":[[14294,14295,-14256,14296,-14264,14297,-14234,14298]]},{"type":"Polygon","properties":{"name":"MOUNT PLEASANT MILLS","zip":"17853","state":"PA"},"arcs":[[14299,-13670,-13553,-13744,-14284]]},{"type":"Polygon","properties":{"name":"NEW COLUMBIA","zip":"17856","state":"PA"},"arcs":[[-14274,-14210,-14199,-14293]]},{"type":"Polygon","properties":{"name":"NORTHUMBERLAND","zip":"17857","state":"PA"},"arcs":[[14300,-14271,-14294,-14291,-14241,14301]]},{"type":"Polygon","properties":{"name":"ORANGEVILLE","zip":"17859","state":"PA"},"arcs":[[14302,-14222,14303,14304,-14225,-14290]]},{"type":"Polygon","properties":{"name":"PAXINOS","zip":"17860","state":"PA"},"arcs":[[14305,14306,-14203,14307,-14248,-14253]]},{"type":"Polygon","properties":{"name":"PORT TREVORTON","zip":"17864","state":"PA"},"arcs":[[-13671,-14300,-14283,14308,14309]]},{"type":"Polygon","properties":{"name":"COAL TOWNSHIP","zip":"17866","state":"PA"},"arcs":[[-14255,14310,-14306,-14252,-14235,-14298,-14263,-14297]]},{"type":"Polygon","properties":{"name":"REBUCK","zip":"17867","state":"PA"},"arcs":[[-14259,-14250,14311,-14267]]},{"type":"Polygon","properties":{"name":"SELINSGROVE","zip":"17870","state":"PA"},"arcs":[[-14280,-14288,14312,14313,-14309,-14282,-14285]]},{"type":"Polygon","properties":{"name":"SNYDERTOWN","zip":"17877","state":"PA"},"arcs":[[-14245,-14308,-14202]]},{"type":"Polygon","properties":{"name":"STILLWATER","zip":"17878","state":"PA"},"arcs":[[-14289,-14216,-14303]]},{"type":"Polygon","properties":{"name":"TREVORTON","zip":"17881","state":"PA"},"arcs":[[-14249,-14204,-14307,-14311,-14254,-14268,-14312]]},{"type":"Polygon","properties":{"name":"WILBURTON","zip":"17888","state":"PA"},"arcs":[[-14233,14314,-14299]]},{"type":"Polygon","properties":{"name":"WINFIELD","zip":"17889","state":"PA"},"arcs":[[-14313,-14287,-14272,-14301]]},{"type":"Polygon","properties":{"name":"POTTSVILLE","zip":"17901","state":"PA"},"arcs":[[14315,14316,14317,14318,14319,14320,14321,14322,14323,14324]]},{"type":"Polygon","properties":{"name":"ASHLAND","zip":"17921","state":"PA"},"arcs":[[-14296,14325,14326,14327,14328,14329,-14322,14330,14331]]},{"type":"Polygon","properties":{"name":"AUBURN","zip":"17922","state":"PA"},"arcs":[[14332,14333,14334,14335]]},{"type":"Polygon","properties":{"name":"BRANCHDALE","zip":"17923","state":"PA"},"arcs":[[14336,14337,-14319]]},{"type":"Polygon","properties":{"name":"BROCKTON","zip":"17925","state":"PA"},"arcs":[[14338,14339,14340]]},{"type":"Polygon","properties":{"name":"CENTRALIA","zip":"17927","state":"PA"},"arcs":[[-14295,-14315,-14232,14341,-14326]]},{"type":"Polygon","properties":{"name":"CRESSONA","zip":"17929","state":"PA"},"arcs":[[14342,14343,-14317]]},{"type":"Polygon","properties":{"name":"FRACKVILLE","zip":"17931","state":"PA"},"arcs":[[14344,14345,-14329,14346,14347]]},{"type":"Polygon","properties":{"name":"HEGINS","zip":"17938","state":"PA"},"arcs":[[14348,14349,14350,14351,-14331,-14321,14352,14353,14354,-13754,14355]]},{"type":"Polygon","properties":{"name":"KLINGERSTOWN","zip":"17941","state":"PA"},"arcs":[[-14270,14356,-14351,14357,14358,-13680,-14261]]},{"type":"Polygon","properties":{"name":"MAHANOY CITY","zip":"17948","state":"PA"},"arcs":[[14359,-14348,14360,14361]]},{"type":"Polygon","properties":{"name":"MUIR","zip":"17957","state":"PA"},"arcs":[[14362,-14354,14363]]},{"type":"Polygon","properties":{"name":"NEW PHILADELPHIA","zip":"17959","state":"PA"},"arcs":[[14364,14365,-14324,14366,14367,-14339,14368]]},{"type":"Polygon","properties":{"name":"NEW RINGGOLD","zip":"17960","state":"PA"},"arcs":[[14369,14370,14371,-14365,14372,14373,14374,14375]]},{"type":"Polygon","properties":{"name":"ORWIGSBURG","zip":"17961","state":"PA"},"arcs":[[-14335,14376,-14325,-14366,-14372,14377,14378]]},{"type":"Polygon","properties":{"name":"PINE GROVE","zip":"17963","state":"PA"},"arcs":[[14379,-14337,-14318,-14344,14380,14381,-13606,-13647]]},{"type":"Polygon","properties":{"name":"PITMAN","zip":"17964","state":"PA"},"arcs":[[-14357,-14269,-14257,-14332,-14352]]},{"type":"Polygon","properties":{"name":"RINGTOWN","zip":"17967","state":"PA"},"arcs":[[14382,-14327,-14342,-14240,14383,14384]]},{"type":"Polygon","properties":{"name":"SACRAMENTO","zip":"17968","state":"PA"},"arcs":[[14385,14386,-14349]]},{"type":"Polygon","properties":{"name":"SAINT CLAIR","zip":"17970","state":"PA"},"arcs":[[-14323,-14330,-14346,14387,-14367]]},{"type":"Polygon","properties":{"name":"SCHUYLKILL HAVEN","zip":"17972","state":"PA"},"arcs":[[14388,-14381,-14343,-14316,-14377,-14334]]},{"type":"Polygon","properties":{"name":"SHENANDOAH","zip":"17976","state":"PA"},"arcs":[[-14347,-14328,-14383,14389,14390,-14361]]},{"type":"Polygon","properties":{"name":"SPRING GLEN","zip":"17978","state":"PA"},"arcs":[[-14356,-13753,-13615,-13681,-14359,14391,-14386]]},{"type":"Polygon","properties":{"name":"TOWER CITY","zip":"17980","state":"PA"},"arcs":[[14392,-13625,-13752,-14355,-14363]]},{"type":"Polygon","properties":{"name":"TREMONT","zip":"17981","state":"PA"},"arcs":[[-14393,-14364,-14353,-14320,-14338,-14380,-13646,-13626]]},{"type":"Polygon","properties":{"name":"VALLEY VIEW","zip":"17983","state":"PA"},"arcs":[[-14392,-14358,-14350,-14387]]},{"type":"Polygon","properties":{"name":"ZION GROVE","zip":"17985","state":"PA"},"arcs":[[-14231,14393,14394,14395,-14384,-14239]]},{"type":"Polygon","properties":{"name":"ALBURTIS","zip":"18011","state":"PA"},"arcs":[[14396,14397,14398,14399,14400,14401,14402,14403,14404]]},{"type":"Polygon","properties":{"name":"BANGOR","zip":"18013","state":"PA"},"arcs":[[14405,14406,14407,14408,-6332,-7132,14409]]},{"type":"Polygon","properties":{"name":"BATH","zip":"18014","state":"PA"},"arcs":[[14410,14411,14412,14413,14414,14415,14416,14417]]},{"type":"Polygon","properties":{"name":"BETHLEHEM","zip":"18015","state":"PA"},"arcs":[[14418,14419,14420,14421,14422,14423,14424,14425]]},{"type":"Polygon","properties":{"name":"BETHLEHEM","zip":"18017","state":"PA"},"arcs":[[14426,-14425,14427,14428,14429,-14412,14430]]},{"type":"Polygon","properties":{"name":"BETHLEHEM","zip":"18018","state":"PA"},"arcs":[[14431,-14428,-14424]]},{"type":"Polygon","properties":{"name":"BETHLEHEM","zip":"18020","state":"PA"},"arcs":[[-14427,14432,14433,14434,-14426]]},{"type":"Polygon","properties":{"name":"BREINIGSVILLE","zip":"18031","state":"PA"},"arcs":[[14435,-14399,14436,14437,14438,14439,14440]]},{"type":"Polygon","properties":{"name":"CATASAUQUA","zip":"18032","state":"PA"},"arcs":[[14441,14442,14443]]},{"type":"Polygon","properties":{"name":"CENTER VALLEY","zip":"18034","state":"PA"},"arcs":[[14444,14445,-14421,14446]]},{"type":"Polygon","properties":{"name":"COOPERSBURG","zip":"18036","state":"PA"},"arcs":[[14447,14448,14449,-14447,-14420,14450,14451,14452]]},{"type":"Polygon","properties":{"name":"COPLAY","zip":"18037","state":"PA"},"arcs":[[14453,14454,14455,14456,14457,14458]]},{"type":"Polygon","properties":{"name":"DANIELSVILLE","zip":"18038","state":"PA"},"arcs":[[14459,14460,-14415]]},{"type":"Polygon","properties":{"name":"EASTON","zip":"18040","state":"PA"},"arcs":[[14461,14462,14463,-14410,-7131]]},{"type":"Polygon","properties":{"name":"EAST GREENVILLE","zip":"18041","state":"PA"},"arcs":[[14464,14465,-14448,14466,14467,14468,-14403]]},{"type":"Polygon","properties":{"name":"EASTON","zip":"18042","state":"PA"},"arcs":[[14469,14470,-14462,-7130,14471]]},{"type":"Polygon","properties":{"name":"EASTON","zip":"18045","state":"PA"},"arcs":[[14472,-14434,14473,-14463,-14471]]},{"type":"Polygon","properties":{"name":"EMMAUS","zip":"18049","state":"PA"},"arcs":[[14474,14475,-14445,-14450,14476]]},{"type":"Polygon","properties":{"name":"FOGELSVILLE","zip":"18051","state":"PA"},"arcs":[[14477,14478,14479,14480,-14439]]},{"type":"Polygon","properties":{"name":"WHITEHALL","zip":"18052","state":"PA"},"arcs":[[14481,14482,14483,-14459,14484,-14442]]},{"type":"Polygon","properties":{"name":"GERMANSVILLE","zip":"18053","state":"PA"},"arcs":[[14485,14486,14487,14488]]},{"type":"Polygon","properties":{"name":"GREEN LANE","zip":"18054","state":"PA"},"arcs":[[14489,14490,14491,14492,14493,14494]]},{"type":"Polygon","properties":{"name":"HELLERTOWN","zip":"18055","state":"PA"},"arcs":[[14495,-14451,-14419,-14435,-14473,-14470]]},{"type":"Polygon","properties":{"name":"HEREFORD","zip":"18056","state":"PA"},"arcs":[[14496,-14401,14497,14498]]},{"type":"Polygon","properties":{"name":"KUNKLETOWN","zip":"18058","state":"PA"},"arcs":[[14499,-14416,14500,14501,14502,14503,14504,14505,14506]]},{"type":"Polygon","properties":{"name":"LAURYS STATION","zip":"18059","state":"PA"},"arcs":[[14507,14508,14509,-14457]]},{"type":"Polygon","properties":{"name":"MACUNGIE","zip":"18062","state":"PA"},"arcs":[[14510,-14498,-14400,-14436,14511,14512,14513,-14475]]},{"type":"Polygon","properties":{"name":"NAZARETH","zip":"18064","state":"PA"},"arcs":[[14514,14515,-14406,-14464,-14474,-14433,-14431,-14411]]},{"type":"Polygon","properties":{"name":"NEW TRIPOLI","zip":"18066","state":"PA"},"arcs":[[14516,-14370,14517,-14487,14518,14519,-14479,14520]]},{"type":"Polygon","properties":{"name":"NORTHAMPTON","zip":"18067","state":"PA"},"arcs":[[14521,-14443,-14485,-14458,-14510,14522,-14413,-14430]]},{"type":"Polygon","properties":{"name":"OREFIELD","zip":"18069","state":"PA"},"arcs":[[14523,14524,-14480,-14520,14525]]},{"type":"Polygon","properties":{"name":"PALM","zip":"18070","state":"PA"},"arcs":[[-14497,14526,-14465,-14402]]},{"type":"Polygon","properties":{"name":"PALMERTON","zip":"18071","state":"PA"},"arcs":[[14527,14528,-14503,14529,-14501,-14461]]},{"type":"Polygon","properties":{"name":"PEN ARGYL","zip":"18072","state":"PA"},"arcs":[[14530,14531,-14407,-14516]]},{"type":"Polygon","properties":{"name":"PENNSBURG","zip":"18073","state":"PA"},"arcs":[[14532,14533,-14468,14534,-14493]]},{"type":"Polygon","properties":{"name":"PERKIOMENVILLE","zip":"18074","state":"PA"},"arcs":[[14535,14536,-14533,-14492,14537,14538]]},{"type":"Polygon","properties":{"name":"RIEGELSVILLE","zip":"18077","state":"PA"},"arcs":[[-14496,-14472,-7129,-7112,14539,14540,-14452]]},{"type":"Polygon","properties":{"name":"SCHNECKSVILLE","zip":"18078","state":"PA"},"arcs":[[14541,-14526,-14519,-14486,14542,-14455]]},{"type":"Polygon","properties":{"name":"SLATINGTON","zip":"18080","state":"PA"},"arcs":[[-14543,-14489,14543,14544,-14508,-14456]]},{"type":"Polygon","properties":{"name":"TREXLERTOWN","zip":"18087","state":"PA"},"arcs":[[14545,-14512,-14441]]},{"type":"Polygon","properties":{"name":"WALNUTPORT","zip":"18088","state":"PA"},"arcs":[[-14509,-14545,-14528,-14460,-14414,-14523]]},{"type":"Polygon","properties":{"name":"WIND GAP","zip":"18091","state":"PA"},"arcs":[[14546,-14531,-14515,-14418]]},{"type":"Polygon","properties":{"name":"ZIONSVILLE","zip":"18092","state":"PA"},"arcs":[[-14511,-14477,-14449,-14466,-14527,-14499]]},{"type":"Polygon","properties":{"name":"ALLENTOWN","zip":"18102","state":"PA"},"arcs":[[14547,-14483,14548,14549]]},{"type":"Polygon","properties":{"name":"ALLENTOWN","zip":"18103","state":"PA"},"arcs":[[14550,14551,-14550,14552,-14422,-14446,-14476,-14514]]},{"type":"Polygon","properties":{"name":"ALLENTOWN","zip":"18104","state":"PA"},"arcs":[[-14552,14553,-14524,-14542,-14454,-14484,-14548]]},{"type":"Polygon","properties":{"name":"ALLENTOWN","zip":"18106","state":"PA"},"arcs":[[-14481,-14525,-14554,-14551,-14513,-14546,-14440]]},{"type":"Polygon","properties":{"name":"ALLENTOWN","zip":"18109","state":"PA"},"arcs":[[-14482,-14444,-14522,-14429,-14432,-14423,-14553,-14549]]},{"type":"Polygon","properties":{"name":"HAZLETON","zip":"18201","state":"PA"},"arcs":[[14554,14555,14556,14557,14558]]},{"type":"Polygon","properties":{"name":"HAZLETON","zip":"18202","state":"PA"},"arcs":[[14559,14560,14561,14562,-14557,14563]]},{"type":"Polygon","properties":{"name":"ALBRIGHTSVILLE","zip":"18210","state":"PA"},"arcs":[[14564,14565,14566,14567,14568,-14505]]},{"type":"Polygon","properties":{"name":"ANDREAS","zip":"18211","state":"PA"},"arcs":[[14569,-14518,-14376]]},{"type":"Polygon","properties":{"name":"BARNESVILLE","zip":"18214","state":"PA"},"arcs":[[-14368,-14388,-14345,-14360,14570,14571,14572,-14340]]},{"type":"Polygon","properties":{"name":"BEAVER MEADOWS","zip":"18216","state":"PA"},"arcs":[[14573,14574,-14559,14575]]},{"type":"Polygon","properties":{"name":"COALDALE","zip":"18218","state":"PA"},"arcs":[[14576,14577,14578]]},{"type":"Polygon","properties":{"name":"DELANO","zip":"18220","state":"PA"},"arcs":[[14579,-14571,-14362,-14391,14580,14581]]},{"type":"Polygon","properties":{"name":"DRUMS","zip":"18222","state":"PA"},"arcs":[[14582,14583,14584,14585,-14562]]},{"type":"Polygon","properties":{"name":"FREELAND","zip":"18224","state":"PA"},"arcs":[[14586,-14576,-14558,-14563,-14586,14587,14588]]},{"type":"Polygon","properties":{"name":"JIM THORPE","zip":"18229","state":"PA"},"arcs":[[14589,14590,14591,-14566,14592,14593]]},{"type":"Polygon","properties":{"name":"LANSFORD","zip":"18232","state":"PA"},"arcs":[[14594,14595,-14578]]},{"type":"Polygon","properties":{"name":"LEHIGHTON","zip":"18235","state":"PA"},"arcs":[[-14488,-14570,-14375,14596,-14593,-14565,-14504,-14529,-14544]]},{"type":"Polygon","properties":{"name":"MCADOO","zip":"18237","state":"PA"},"arcs":[[14597,-14555,-14575,14598,14599,-14582]]},{"type":"Polygon","properties":{"name":"NESQUEHONING","zip":"18240","state":"PA"},"arcs":[[14600,-14595,14601,14602,14603,-14590]]},{"type":"Polygon","properties":{"name":"QUAKAKE","zip":"18245","state":"PA"},"arcs":[[14604,-14572,-14580,-14600,14605,-14603]]},{"type":"Polygon","properties":{"name":"ROCK GLEN","zip":"18246","state":"PA"},"arcs":[[14606,-14395,14607,14608,-14560]]},{"type":"Polygon","properties":{"name":"SHEPPTON","zip":"18248","state":"PA"},"arcs":[[-14390,-14385,-14396,-14607,-14564,-14556,-14598,-14581]]},{"type":"Polygon","properties":{"name":"SUGARLOAF","zip":"18249","state":"PA"},"arcs":[[-14609,14609,14610,-14583,-14561]]},{"type":"Polygon","properties":{"name":"SUMMIT HILL","zip":"18250","state":"PA"},"arcs":[[14611,-14579,-14596,-14601,-14594,-14597,-14374]]},{"type":"Polygon","properties":{"name":"TAMAQUA","zip":"18252","state":"PA"},"arcs":[[-14573,-14605,-14602,-14577,-14612,-14373,-14369,-14341]]},{"type":"Polygon","properties":{"name":"WEATHERLY","zip":"18255","state":"PA"},"arcs":[[-14574,-14587,14612,14613,-14591,-14604,-14606,-14599]]},{"type":"Polygon","properties":{"name":"EAST STROUDSBURG","zip":"18301","state":"PA"},"arcs":[[-6364,14614,14615,14616,14617,14618,14619,14620,14621]]},{"type":"Polygon","properties":{"name":"BARTONSVILLE","zip":"18321","state":"PA"},"arcs":[[14622,14623,-14617]]},{"type":"Polygon","properties":{"name":"BRODHEADSVILLE","zip":"18322","state":"PA"},"arcs":[[14624,14625,14626]]},{"type":"Polygon","properties":{"name":"BUSHKILL","zip":"18324","state":"PA"},"arcs":[[-6365,-14622,14627,14628]]},{"type":"Polygon","properties":{"name":"CANADENSIS","zip":"18325","state":"PA"},"arcs":[[14629,14630,14631,14632,14633,14634,14635]]},{"type":"Polygon","properties":{"name":"CRESCO","zip":"18326","state":"PA"},"arcs":[[14636,14637,14638,-14636,14639,-14620]]},{"type":"Polygon","properties":{"name":"DELAWARE WATER GAP","zip":"18327","state":"PA"},"arcs":[[14640,14641,-14615,-6363]]},{"type":"Polygon","properties":{"name":"DINGMANS FERRY","zip":"18328","state":"PA"},"arcs":[[-14635,14642,14643,-6347,-6400,-6366,14644,-14628,-14621,-14640]]},{"type":"Polygon","properties":{"name":"EFFORT","zip":"18330","state":"PA"},"arcs":[[-14569,14645,14646,14647,-14626,14648,-14506]]},{"type":"Polygon","properties":{"name":"GILBERT","zip":"18331","state":"PA"},"arcs":[[-14649,-14625,-14507]]},{"type":"Polygon","properties":{"name":"HENRYVILLE","zip":"18332","state":"PA"},"arcs":[[14649,14650,-14637,-14619,14651]]},{"type":"Polygon","properties":{"name":"KRESGEVILLE","zip":"18333","state":"PA"},"arcs":[[-14502,-14530]]},{"type":"Polygon","properties":{"name":"LONG POND","zip":"18334","state":"PA"},"arcs":[[14652,14653,14654,14655,14656,14657,14658]]},{"type":"Polygon","properties":{"name":"MATAMORAS","zip":"18336","state":"PA"},"arcs":[[14659,14660,-9318,-9307,-6349]]},{"type":"Polygon","properties":{"name":"MILFORD","zip":"18337","state":"PA"},"arcs":[[14661,14662,14663,-14660,-6348,-14644]]},{"type":"Polygon","properties":{"name":"MILLRIFT","zip":"18340","state":"PA"},"arcs":[[-14664,14664,-9255,-9319,-14661]]},{"type":"Polygon","properties":{"name":"MOUNT BETHEL","zip":"18343","state":"PA"},"arcs":[[-6362,-6333,-14409,14665,-14641]]},{"type":"Polygon","properties":{"name":"MOUNT POCONO","zip":"18344","state":"PA"},"arcs":[[14666,14667,14668,-14638,-14651,14669]]},{"type":"Polygon","properties":{"name":"POCONO SUMMIT","zip":"18346","state":"PA"},"arcs":[[14670,14671,-14658,14672,14673,-14668]]},{"type":"Polygon","properties":{"name":"POCONO LAKE","zip":"18347","state":"PA"},"arcs":[[14674,14675,14676,14677,14678,-14656]]},{"type":"Polygon","properties":{"name":"POCONO PINES","zip":"18350","state":"PA"},"arcs":[[14679,-14673,-14657,-14679]]},{"type":"Polygon","properties":{"name":"SAYLORSBURG","zip":"18353","state":"PA"},"arcs":[[-14627,-14648,14680,-14547,-14417,-14500]]},{"type":"Polygon","properties":{"name":"SCOTRUN","zip":"18355","state":"PA"},"arcs":[[-14672,14681,-14670,-14650,14682,-14659]]},{"type":"Polygon","properties":{"name":"STROUDSBURG","zip":"18360","state":"PA"},"arcs":[[-14647,-14654,14683,-14623,-14616,-14642,-14666,-14408,-14532,-14681]]},{"type":"Polygon","properties":{"name":"SWIFTWATER","zip":"18370","state":"PA"},"arcs":[[-14671,-14667,-14682]]},{"type":"Polygon","properties":{"name":"TAMIMENT","zip":"18371","state":"PA"},"arcs":[[-14645,-14629]]},{"type":"Polygon","properties":{"name":"TANNERSVILLE","zip":"18372","state":"PA"},"arcs":[[-14653,-14683,-14652,-14618,-14624,-14684]]},{"type":"Polygon","properties":{"name":"ARCHBALD","zip":"18403","state":"PA"},"arcs":[[14684,14685,14686,14687,14688,14689,14690]]},{"type":"Polygon","properties":{"name":"BEACH LAKE","zip":"18405","state":"PA"},"arcs":[[14691,14692,14693,-9300]]},{"type":"Polygon","properties":{"name":"CARBONDALE","zip":"18407","state":"PA"},"arcs":[[14694,-14689,14695,14696,14697,14698,14699,14700]]},{"type":"Polygon","properties":{"name":"CLARKS SUMMIT","zip":"18411","state":"PA"},"arcs":[[14701,14702,14703,14704,14705,14706,14707,14708,14709]]},{"type":"Polygon","properties":{"name":"DALTON","zip":"18414","state":"PA"},"arcs":[[14710,-14703,14711,14712,14713,-14697,14714,-14687]]},{"type":"Polygon","properties":{"name":"DAMASCUS","zip":"18415","state":"PA"},"arcs":[[14715,14716,14717,14718,-9210,-9221]]},{"type":"Polygon","properties":{"name":"EQUINUNK","zip":"18417","state":"PA"},"arcs":[[14719,14720,14721,-10525,-9289,-9265,-9211,-14719]]},{"type":"Polygon","properties":{"name":"FACTORYVILLE","zip":"18419","state":"PA"},"arcs":[[14722,14723,-14698,-14714]]},{"type":"Polygon","properties":{"name":"FOREST CITY","zip":"18421","state":"PA"},"arcs":[[14724,14725,-14700,14726,14727,14728,14729]]},{"type":"Polygon","properties":{"name":"GOULDSBORO","zip":"18424","state":"PA"},"arcs":[[14730,14731,14732,14733,14734,14735,14736,14737]]},{"type":"Polygon","properties":{"name":"GREELEY","zip":"18425","state":"PA"},"arcs":[[14738,14739,14740,-9200]]},{"type":"Polygon","properties":{"name":"GREENTOWN","zip":"18426","state":"PA"},"arcs":[[-14633,14741,14742,14743,14744,14745]]},{"type":"Polygon","properties":{"name":"HAMLIN","zip":"18427","state":"PA"},"arcs":[[14746,14747,14748,14749,-14744]]},{"type":"Polygon","properties":{"name":"HAWLEY","zip":"18428","state":"PA"},"arcs":[[14750,14751,14752,14753,14754]]},{"type":"Polygon","properties":{"name":"HERRICK CENTER","zip":"18430","state":"PA"},"arcs":[[14755,14756,14757]]},{"type":"Polygon","properties":{"name":"HONESDALE","zip":"18431","state":"PA"},"arcs":[[14758,-14754,14759,14760,14761,-14730,14762,14763,-14720,-14718,14764,-14693]]},{"type":"Polygon","properties":{"name":"JERMYN","zip":"18433","state":"PA"},"arcs":[[-14715,-14696,-14688]]},{"type":"Polygon","properties":{"name":"JESSUP","zip":"18434","state":"PA"},"arcs":[[14765,14766,14767,14768,-14691]]},{"type":"Polygon","properties":{"name":"LACKAWAXEN","zip":"18435","state":"PA"},"arcs":[[-14759,-14692,-9299,-9201,-14741,14769,-14755]]},{"type":"Polygon","properties":{"name":"LAKE ARIEL","zip":"18436","state":"PA"},"arcs":[[14770,-14749,14771,14772,-14766,-14690,-14695,14773,-14760,-14753]]},{"type":"Polygon","properties":{"name":"LAKE COMO","zip":"18437","state":"PA"},"arcs":[[14774,14775,14776,-10526,-14722]]},{"type":"Polygon","properties":{"name":"LAKEVILLE","zip":"18438","state":"PA"},"arcs":[[-14750,-14771,-14752,14777,-14745]]},{"type":"Polygon","properties":{"name":"LAKEWOOD","zip":"18439","state":"PA"},"arcs":[[-14764,14778,14779,14780,14781,-14775,-14721]]},{"type":"Polygon","properties":{"name":"LENOXVILLE","zip":"18441","state":"PA"},"arcs":[[-14699,14782,14783,-14727]]},{"type":"Polygon","properties":{"name":"MILANVILLE","zip":"18443","state":"PA"},"arcs":[[-9220,-9301,-14694,14784,-14716]]},{"type":"Polygon","properties":{"name":"MOSCOW","zip":"18444","state":"PA"},"arcs":[[14785,-14735,14786,14787,14788,14789,-14772,-14748]]},{"type":"Polygon","properties":{"name":"NEWFOUNDLAND","zip":"18445","state":"PA"},"arcs":[[14790,-14737,14791,-14742,-14632]]},{"type":"Polygon","properties":{"name":"NICHOLSON","zip":"18446","state":"PA"},"arcs":[[-14724,14792,14793,14794,14795,14796,14797,-14783]]},{"type":"Polygon","properties":{"name":"OLYPHANT","zip":"18447","state":"PA"},"arcs":[[14798,14799,-14704,-14711,-14686,14800,-14768,14801]]},{"type":"Polygon","properties":{"name":"PECKVILLE","zip":"18452","state":"PA"},"arcs":[[-14685,-14769,-14801]]},{"type":"Polygon","properties":{"name":"PLEASANT MOUNT","zip":"18453","state":"PA"},"arcs":[[14802,-14758,14803,-14779,-14763,-14729]]},{"type":"Polygon","properties":{"name":"PRESTON PARK","zip":"18455","state":"PA"},"arcs":[[-14782,14804,14805,14806,-14776]]},{"type":"Polygon","properties":{"name":"PROMPTON","zip":"18456","state":"PA"},"arcs":[[14807,-14725,-14762]]},{"type":"Polygon","properties":{"name":"SHOHOLA","zip":"18458","state":"PA"},"arcs":[[14808,-14739,-9199,-9306,-14665,-14663]]},{"type":"Polygon","properties":{"name":"SOUTH STERLING","zip":"18460","state":"PA"},"arcs":[[14809,-14738,-14791,-14631]]},{"type":"Polygon","properties":{"name":"STARLIGHT","zip":"18461","state":"PA"},"arcs":[[-10527,-14777,-14807,14810]]},{"type":"Polygon","properties":{"name":"STARRUCCA","zip":"18462","state":"PA"},"arcs":[[14811,14812,-14805,-14781]]},{"type":"Polygon","properties":{"name":"STERLING","zip":"18463","state":"PA"},"arcs":[[-14736,-14786,-14747,-14743,-14792]]},{"type":"Polygon","properties":{"name":"TAFTON","zip":"18464","state":"PA"},"arcs":[[-14778,-14751,-14770,-14740,-14809,-14662,-14643,-14634,-14746]]},{"type":"Polygon","properties":{"name":"THOMPSON","zip":"18465","state":"PA"},"arcs":[[-14757,14813,14814,14815,14816,-14812,-14780,-14804]]},{"type":"Polygon","properties":{"name":"TOBYHANNA","zip":"18466","state":"PA"},"arcs":[[-14678,-14731,-14810,-14630,-14639,-14669,-14674,-14680]]},{"type":"Polygon","properties":{"name":"TYLER HILL","zip":"18469","state":"PA"},"arcs":[[-14717,-14785,-14765]]},{"type":"Polygon","properties":{"name":"UNION DALE","zip":"18470","state":"PA"},"arcs":[[-14728,-14784,-14798,14817,-14756,-14803]]},{"type":"Polygon","properties":{"name":"WAYMART","zip":"18472","state":"PA"},"arcs":[[-14774,-14701,-14726,-14808,-14761]]},{"type":"Polygon","properties":{"name":"SCRANTON","zip":"18503","state":"PA"},"arcs":[[14818,14819,14820,14821,14822]]},{"type":"Polygon","properties":{"name":"SCRANTON","zip":"18504","state":"PA"},"arcs":[[14823,-14706,14824,-14821,14825]]},{"type":"Polygon","properties":{"name":"SCRANTON","zip":"18505","state":"PA"},"arcs":[[14826,-14826,-14820,14827,14828,-14789,14829]]},{"type":"Polygon","properties":{"name":"MOOSIC","zip":"18507","state":"PA"},"arcs":[[-14788,14830,14831,14832,14833,14834,-14830]]},{"type":"Polygon","properties":{"name":"SCRANTON","zip":"18508","state":"PA"},"arcs":[[-14705,-14800,14835,14836,-14822,-14825]]},{"type":"Polygon","properties":{"name":"SCRANTON","zip":"18509","state":"PA"},"arcs":[[-14837,14837,14838,14839,-14823]]},{"type":"Polygon","properties":{"name":"SCRANTON","zip":"18510","state":"PA"},"arcs":[[-14840,14840,-14828,-14819]]},{"type":"Polygon","properties":{"name":"SCRANTON","zip":"18512","state":"PA"},"arcs":[[-14790,-14829,-14841,-14839,14841,-14802,-14767,-14773]]},{"type":"Polygon","properties":{"name":"TAYLOR","zip":"18517","state":"PA"},"arcs":[[14842,-14707,-14824,-14827,-14835]]},{"type":"Polygon","properties":{"name":"OLD FORGE","zip":"18518","state":"PA"},"arcs":[[14843,-14708,-14843,-14834]]},{"type":"Polygon","properties":{"name":"DICKSON CITY","zip":"18519","state":"PA"},"arcs":[[-14838,-14836,-14799,-14842]]},{"type":"Polygon","properties":{"name":"BERWICK","zip":"18603","state":"PA"},"arcs":[[-14305,14844,14845,-14226]]},{"type":"Polygon","properties":{"name":"BLAKESLEE","zip":"18610","state":"PA"},"arcs":[[-14646,-14568,14846,-14675,-14655]]},{"type":"Polygon","properties":{"name":"DALLAS","zip":"18612","state":"PA"},"arcs":[[14847,14848,14849,14850,14851,14852]]},{"type":"Polygon","properties":{"name":"DUSHORE","zip":"18614","state":"PA"},"arcs":[[14853,-14176,14854,14855,14856,14857]]},{"type":"MultiPolygon","properties":{"name":"FALLS","zip":"18615","state":"PA"},"arcs":[[[14858,-14712,-14702,14859]],[[14860,14861,14862]]]},{"type":"Polygon","properties":{"name":"FORKSVILLE","zip":"18616","state":"PA"},"arcs":[[14863,-14187,14864,-14855,-14175]]},{"type":"Polygon","properties":{"name":"GLEN LYON","zip":"18617","state":"PA"},"arcs":[[14865,14866,14867]]},{"type":"Polygon","properties":{"name":"HARVEYS LAKE","zip":"18618","state":"PA"},"arcs":[[14868,14869,14870,-14850]]},{"type":"Polygon","properties":{"name":"HILLSGROVE","zip":"18619","state":"PA"},"arcs":[[-14191,-14188,-14864,-14174]]},{"type":"Polygon","properties":{"name":"HUNLOCK CREEK","zip":"18621","state":"PA"},"arcs":[[14871,14872,14873,14874,14875]]},{"type":"MultiPolygon","properties":{"name":"LACEYVILLE","zip":"18623","state":"PA"},"arcs":[[[14876,14877,14878,14879,14880,14881]],[[14882,14883,14884]]]},{"type":"Polygon","properties":{"name":"LAKE HARMONY","zip":"18624","state":"PA"},"arcs":[[-14592,-14614,14885,-14676,-14847,-14567]]},{"type":"Polygon","properties":{"name":"LOPEZ","zip":"18628","state":"PA"},"arcs":[[14886,-14218,-14178,14887,-14858,14888]]},{"type":"Polygon","properties":{"name":"MEHOOPANY","zip":"18629","state":"PA"},"arcs":[[14889,-14219,-14887,14890,-14883,14891,14892,14893]]},{"type":"Polygon","properties":{"name":"MESHOPPEN","zip":"18630","state":"PA"},"arcs":[[-14881,14894,14895,14896,14897]]},{"type":"Polygon","properties":{"name":"MIFFLINVILLE","zip":"18631","state":"PA"},"arcs":[[-14230,14898,14899,-14394]]},{"type":"Polygon","properties":{"name":"MILDRED","zip":"18632","state":"PA"},"arcs":[[-14854,-14888,-14177]]},{"type":"MultiPolygon","properties":{"name":"NANTICOKE","zip":"18634","state":"PA"},"arcs":[[[14900,14901,-14875,14902]],[[14903,14904,-14866,14905,14906]]]},{"type":"Polygon","properties":{"name":"NESCOPECK","zip":"18635","state":"PA"},"arcs":[[-14608,-14900,14907,14908,14909,-14610]]},{"type":"Polygon","properties":{"name":"NOXEN","zip":"18636","state":"PA"},"arcs":[[14910,-14894,14911,-14851,-14871]]},{"type":"Polygon","properties":{"name":"PITTSTON","zip":"18640","state":"PA"},"arcs":[[-14734,14912,14913,14914,14915,-14831,-14787]]},{"type":"Polygon","properties":{"name":"PITTSTON","zip":"18641","state":"PA"},"arcs":[[14916,-14832,-14916]]},{"type":"Polygon","properties":{"name":"DURYEA","zip":"18642","state":"PA"},"arcs":[[-14709,-14844,-14833,-14917,-14915,14917]]},{"type":"Polygon","properties":{"name":"PITTSTON","zip":"18643","state":"PA"},"arcs":[[14918,-14853,14919,-14863,14920]]},{"type":"Polygon","properties":{"name":"WYOMING","zip":"18644","state":"PA"},"arcs":[[14921,-14848,-14919,14922,14923]]},{"type":"Polygon","properties":{"name":"PLYMOUTH","zip":"18651","state":"PA"},"arcs":[[14924,14925,14926,-14901]]},{"type":"MultiPolygon","properties":{"name":"SHICKSHINNY","zip":"18655","state":"PA"},"arcs":[[[-14845,-14304,-14221,14927,-14872,14928]],[[-14867,-14905,14929,14930,-14909,14931]]]},{"type":"Polygon","properties":{"name":"SWEET VALLEY","zip":"18656","state":"PA"},"arcs":[[-14890,-14911,-14870,-14873,-14928,-14220]]},{"type":"MultiPolygon","properties":{"name":"TUNKHANNOCK","zip":"18657","state":"PA"},"arcs":[[[-14859,14932,-14897,14933,-14793,-14723,-14713]],[[-14852,-14912,-14893,14934,-14861,-14920]]]},{"type":"Polygon","properties":{"name":"WAPWALLOPEN","zip":"18660","state":"PA"},"arcs":[[-14910,-14931,14935,-14584,-14611]]},{"type":"Polygon","properties":{"name":"WHITE HAVEN","zip":"18661","state":"PA"},"arcs":[[-14613,-14589,14936,14937,-14732,-14677,-14886]]},{"type":"Polygon","properties":{"name":"WILKES BARRE","zip":"18702","state":"PA"},"arcs":[[-14938,14938,14939,14940,14941,14942,-14913,-14733]]},{"type":"Polygon","properties":{"name":"KINGSTON","zip":"18704","state":"PA"},"arcs":[[14943,-14924,14944,-14926]]},{"type":"Polygon","properties":{"name":"WILKES BARRE","zip":"18705","state":"PA"},"arcs":[[-14942,14945]]},{"type":"Polygon","properties":{"name":"WILKES BARRE","zip":"18706","state":"PA"},"arcs":[[-14940,14946,-14907,14947]]},{"type":"Polygon","properties":{"name":"MOUNTAIN TOP","zip":"18707","state":"PA"},"arcs":[[-14585,-14936,-14930,-14904,-14947,-14939,-14937,-14588]]},{"type":"Polygon","properties":{"name":"SHAVERTOWN","zip":"18708","state":"PA"},"arcs":[[-14869,-14849,-14922,-14944,-14925,-14903,-14874]]},{"type":"Polygon","properties":{"name":"MONTROSE","zip":"18801","state":"PA"},"arcs":[[14948,14949,14950,14951,14952,14953,14954,14955]]},{"type":"MultiPolygon","properties":{"name":"ATHENS","zip":"18810","state":"PA"},"arcs":[[[14956,14957,14958,14959,14960,-10575,-10589]],[[14961,-13473,14962,14963,14964]],[[14965,14966]]]},{"type":"Polygon","properties":{"name":"BRACKNEY","zip":"18812","state":"PA"},"arcs":[[14967,-10600,-10619,14968,-14954]]},{"type":"Polygon","properties":{"name":"EAST SMITHFIELD","zip":"18817","state":"PA"},"arcs":[[14969,-13511,-13447,-13469,-14962,14970,14971]]},{"type":"Polygon","properties":{"name":"FRIENDSVILLE","zip":"18818","state":"PA"},"arcs":[[14972,14973,14974,14975,-10601,-14968,-14953]]},{"type":"Polygon","properties":{"name":"GREAT BEND","zip":"18821","state":"PA"},"arcs":[[14976,14977,14978,-10543,-10612]]},{"type":"Polygon","properties":{"name":"HALLSTEAD","zip":"18822","state":"PA"},"arcs":[[14979,14980,-14955,-14969,-10469,-14979,14981]]},{"type":"Polygon","properties":{"name":"HARFORD","zip":"18823","state":"PA"},"arcs":[[14982,14983,14984,-14815,14985,-14797]]},{"type":"Polygon","properties":{"name":"HOP BOTTOM","zip":"18824","state":"PA"},"arcs":[[14986,-14950,14987,-14795]]},{"type":"Polygon","properties":{"name":"JACKSON","zip":"18825","state":"PA"},"arcs":[[14988,14989,-14816,-14985]]},{"type":"Polygon","properties":{"name":"KINGSLEY","zip":"18826","state":"PA"},"arcs":[[-14988,-14949,14990,-14983,-14796]]},{"type":"Polygon","properties":{"name":"LAWTON","zip":"18828","state":"PA"},"arcs":[[14991,14992,-14879]]},{"type":"Polygon","properties":{"name":"LE RAYSVILLE","zip":"18829","state":"PA"},"arcs":[[14993,14994,14995,-14974,14996,14997]]},{"type":"Polygon","properties":{"name":"LITTLE MEADOWS","zip":"18830","state":"PA"},"arcs":[[14998,-10426,-10602,-14976]]},{"type":"Polygon","properties":{"name":"MILAN","zip":"18831","state":"PA"},"arcs":[[14999,-14971,-14965,15000]]},{"type":"Polygon","properties":{"name":"MONROETON","zip":"18832","state":"PA"},"arcs":[[-13509,15001,15002,-13478]]},{"type":"Polygon","properties":{"name":"NEW ALBANY","zip":"18833","state":"PA"},"arcs":[[-14189,-13474,-15003,15003,15004,15005,-14856,-14865]]},{"type":"Polygon","properties":{"name":"NEW MILFORD","zip":"18834","state":"PA"},"arcs":[[-14984,-14991,-14956,-14981,15006,-14989]]},{"type":"Polygon","properties":{"name":"ROME","zip":"18837","state":"PA"},"arcs":[[15007,15008,15009,-14958,15010,-14995]]},{"type":"Polygon","properties":{"name":"RUSHVILLE","zip":"18839","state":"PA"},"arcs":[[15011,-14895,-14880,-14993,15012,-14997,-14973,-14952]]},{"type":"MultiPolygon","properties":{"name":"SAYRE","zip":"18840","state":"PA"},"arcs":[[[-11638,-11527,-11622,15013,-14963,-13472]],[[-11621,-10440,15014,-14966,15015]],[[-10576,-14961,15016]]]},{"type":"Polygon","properties":{"name":"SOUTH GIBSON","zip":"18842","state":"PA"},"arcs":[[-14814,-14818,-14986]]},{"type":"Polygon","properties":{"name":"SPRINGVILLE","zip":"18844","state":"PA"},"arcs":[[-15012,-14951,-14987,-14794,-14934,-14896]]},{"type":"Polygon","properties":{"name":"STEVENSVILLE","zip":"18845","state":"PA"},"arcs":[[15017,-14998,-15013,-14992,-14878]]},{"type":"Polygon","properties":{"name":"SUGAR RUN","zip":"18846","state":"PA"},"arcs":[[-15006,15018,15019,-14884,-14891,-14889,-14857]]},{"type":"MultiPolygon","properties":{"name":"SUSQUEHANNA","zip":"18847","state":"PA"},"arcs":[[[-14813,-14817,-14990,-15007,-14980,15020,-10609,-10487,-10528,-14811,-14806]],[[-10611,15021,-14977]]]},{"type":"Polygon","properties":{"name":"TOWANDA","zip":"18848","state":"PA"},"arcs":[[-13512,-14970,15022,15023,15024,-15004,-15002]]},{"type":"MultiPolygon","properties":{"name":"ULSTER","zip":"18850","state":"PA"},"arcs":[[[15025,15026,-14959,-15010]],[[-14972,-15000,15027,-15023]]]},{"type":"Polygon","properties":{"name":"WARREN CENTER","zip":"18851","state":"PA"},"arcs":[[-14996,-15011,-14957,-10588,-10427,-14999,-14975]]},{"type":"MultiPolygon","properties":{"name":"WYALUSING","zip":"18853","state":"PA"},"arcs":[[[15028,-15008,-14994,-15018,-14877,15029]],[[-15005,-15025,15030,-15019]]]},{"type":"Polygon","properties":{"name":"WYSOX","zip":"18854","state":"PA"},"arcs":[[-15026,-15009,-15029,15031]]},{"type":"Polygon","properties":{"name":"DOYLESTOWN","zip":"18901","state":"PA"},"arcs":[[15032,15033,15034,15035,15036,15037,15038,15039,15040,15041]]},{"type":"Polygon","properties":{"name":"CARVERSVILLE","zip":"18913","state":"PA"},"arcs":[[15042,15043,-15037]]},{"type":"Polygon","properties":{"name":"CHALFONT","zip":"18914","state":"PA"},"arcs":[[15044,15045,15046,15047,15048,15049,-15033,15050,15051]]},{"type":"Polygon","properties":{"name":"COLMAR","zip":"18915","state":"PA"},"arcs":[[15052,15053,-15047,15054]]},{"type":"Polygon","properties":{"name":"ERWINNA","zip":"18920","state":"PA"},"arcs":[[15055,15056,-7109,-7075,-6913,15057]]},{"type":"Polygon","properties":{"name":"FURLONG","zip":"18925","state":"PA"},"arcs":[[15058,15059,-15040,15060,15061]]},{"type":"Polygon","properties":{"name":"HILLTOWN","zip":"18927","state":"PA"},"arcs":[[15062,15063,-15049]]},{"type":"Polygon","properties":{"name":"JAMISON","zip":"18929","state":"PA"},"arcs":[[15064,-15041,-15060,15065]]},{"type":"Polygon","properties":{"name":"KINTNERSVILLE","zip":"18930","state":"PA"},"arcs":[[15066,15067,-14540,-7111,15068]]},{"type":"Polygon","properties":{"name":"LINE LEXINGTON","zip":"18932","state":"PA"},"arcs":[[15069,15070,-15063,-15048,-15054]]},{"type":"Polygon","properties":{"name":"LUMBERVILLE","zip":"18933","state":"PA"},"arcs":[[15071,-15038,-15044]]},{"type":"Polygon","properties":{"name":"NEW HOPE","zip":"18938","state":"PA"},"arcs":[[15072,15073,-15061,-15039,-15072,-15043,-15036,15074,-6911,-6881]]},{"type":"Polygon","properties":{"name":"NEWTOWN","zip":"18940","state":"PA"},"arcs":[[15075,15076,-15062,-15074,15077,15078,15079,15080]]},{"type":"Polygon","properties":{"name":"OTTSVILLE","zip":"18942","state":"PA"},"arcs":[[15081,-15067,15082,-15056,15083,15084]]},{"type":"Polygon","properties":{"name":"PERKASIE","zip":"18944","state":"PA"},"arcs":[[15085,15086,-15085,15087,-15034,-15050,-15064,-15071,15088]]},{"type":"Polygon","properties":{"name":"PIPERSVILLE","zip":"18947","state":"PA"},"arcs":[[-15035,-15088,-15084,-15058,-6912,-15075]]},{"type":"Polygon","properties":{"name":"QUAKERTOWN","zip":"18951","state":"PA"},"arcs":[[15089,-14494,-14535,-14467,-14453,-14541,-15068,-15082,-15087]]},{"type":"Polygon","properties":{"name":"RICHBORO","zip":"18954","state":"PA"},"arcs":[[15090,15091,-15076]]},{"type":"Polygon","properties":{"name":"SELLERSVILLE","zip":"18960","state":"PA"},"arcs":[[15092,15093,-14495,-15090,-15086,15094]]},{"type":"Polygon","properties":{"name":"SOUDERTON","zip":"18964","state":"PA"},"arcs":[[15095,15096,15097,-15093]]},{"type":"Polygon","properties":{"name":"SOUTHAMPTON","zip":"18966","state":"PA"},"arcs":[[15098,-15091,-15081,15099,15100,15101]]},{"type":"Polygon","properties":{"name":"TELFORD","zip":"18969","state":"PA"},"arcs":[[15102,-14490,-15094,-15098]]},{"type":"Polygon","properties":{"name":"UPPER BLACK EDDY","zip":"18972","state":"PA"},"arcs":[[-15083,-15069,-7110,-15057]]},{"type":"Polygon","properties":{"name":"WARMINSTER","zip":"18974","state":"PA"},"arcs":[[15103,15104,-15066,-15059,-15077,-15092,-15099]]},{"type":"Polygon","properties":{"name":"WARRINGTON","zip":"18976","state":"PA"},"arcs":[[15105,-15051,-15042,-15065,-15105]]},{"type":"Polygon","properties":{"name":"WASHINGTON CROSSING","zip":"18977","state":"PA"},"arcs":[[-15073,-6880,-6916,-6948,15106,-15078]]},{"type":"Polygon","properties":{"name":"ABINGTON","zip":"19001","state":"PA"},"arcs":[[15107,15108,15109,15110,15111]]},{"type":"Polygon","properties":{"name":"AMBLER","zip":"19002","state":"PA"},"arcs":[[15112,15113,15114,15115,15116,-15052]]},{"type":"Polygon","properties":{"name":"ARDMORE","zip":"19003","state":"PA"},"arcs":[[15117,15118,15119]]},{"type":"Polygon","properties":{"name":"BALA CYNWYD","zip":"19004","state":"PA"},"arcs":[[15120,15121,15122,15123,15124]]},{"type":"Polygon","properties":{"name":"HUNTINGDON VALLEY","zip":"19006","state":"PA"},"arcs":[[15125,15126,15127,15128,-15111,15129,15130,-15102,15131]]},{"type":"Polygon","properties":{"name":"BRISTOL","zip":"19007","state":"PA"},"arcs":[[15132,15133,15134,15135,15136,15137,15138]]},{"type":"Polygon","properties":{"name":"BROOMALL","zip":"19008","state":"PA"},"arcs":[[15139,15140,15141,15142,15143,15144,15145]]},{"type":"Polygon","properties":{"name":"BRYN MAWR","zip":"19010","state":"PA"},"arcs":[[15146,-15144,15147,15148,15149]]},{"type":"Polygon","properties":{"name":"CHELTENHAM","zip":"19012","state":"PA"},"arcs":[[15150,15151,15152]]},{"type":"Polygon","properties":{"name":"CHESTER","zip":"19013","state":"PA"},"arcs":[[15153,15154,15155,15156,15157,15158,15159]]},{"type":"Polygon","properties":{"name":"ASTON","zip":"19014","state":"PA"},"arcs":[[15160,15161,15162,15163,-15154]]},{"type":"Polygon","properties":{"name":"BROOKHAVEN","zip":"19015","state":"PA"},"arcs":[[15164,15165,-15155,-15164]]},{"type":"Polygon","properties":{"name":"CLIFTON HEIGHTS","zip":"19018","state":"PA"},"arcs":[[15166,15167,15168,15169,15170,15171,15172]]},{"type":"Polygon","properties":{"name":"BENSALEM","zip":"19020","state":"PA"},"arcs":[[15173,15174,15175,15176,-15133,15177,15178,15179]]},{"type":"Polygon","properties":{"name":"CROYDON","zip":"19021","state":"PA"},"arcs":[[-15178,-15139,15180]]},{"type":"Polygon","properties":{"name":"CRUM LYNNE","zip":"19022","state":"PA"},"arcs":[[15181,15182,15183,-15158]]},{"type":"Polygon","properties":{"name":"DARBY","zip":"19023","state":"PA"},"arcs":[[15184,-15173,15185,15186,15187,15188]]},{"type":"Polygon","properties":{"name":"DRESHER","zip":"19025","state":"PA"},"arcs":[[15189,15190,15191,-15114,15192,15193,-15109]]},{"type":"Polygon","properties":{"name":"DREXEL HILL","zip":"19026","state":"PA"},"arcs":[[15194,-15140,15195,15196,15197,-15171]]},{"type":"Polygon","properties":{"name":"ELKINS PARK","zip":"19027","state":"PA"},"arcs":[[15198,15199,15200,15201,-15152,15202]]},{"type":"Polygon","properties":{"name":"ESSINGTON","zip":"19029","state":"PA"},"arcs":[[15203,15204,15205,15206,15207,15208]]},{"type":"Polygon","properties":{"name":"FAIRLESS HILLS","zip":"19030","state":"PA"},"arcs":[[15209,15210,15211,15212,15213,15214]]},{"type":"Polygon","properties":{"name":"FLOURTOWN","zip":"19031","state":"PA"},"arcs":[[15215,15216,15217,15218]]},{"type":"Polygon","properties":{"name":"FOLCROFT","zip":"19032","state":"PA"},"arcs":[[15219,15220,15221,15222,-15208]]},{"type":"Polygon","properties":{"name":"FOLSOM","zip":"19033","state":"PA"},"arcs":[[15223,15224,15225,15226,15227,15228]]},{"type":"Polygon","properties":{"name":"FORT WASHINGTON","zip":"19034","state":"PA"},"arcs":[[15229,-15115,-15192,15230,-15218,15231]]},{"type":"Polygon","properties":{"name":"GLADWYNE","zip":"19035","state":"PA"},"arcs":[[15232,15233,15234,-15150,15235,15236,15237]]},{"type":"Polygon","properties":{"name":"GLENOLDEN","zip":"19036","state":"PA"},"arcs":[[15238,15239,-15167,-15185,-15221]]},{"type":"Polygon","properties":{"name":"GLENSIDE","zip":"19038","state":"PA"},"arcs":[[15240,-15216,15241,-15190,-15108,15242,15243,15244]]},{"type":"Polygon","properties":{"name":"HATBORO","zip":"19040","state":"PA"},"arcs":[[15245,15246,-15104,-15131]]},{"type":"Polygon","properties":{"name":"HAVERFORD","zip":"19041","state":"PA"},"arcs":[[15247,-15145,-15147,-15235,15248,-15119]]},{"type":"Polygon","properties":{"name":"HOLMES","zip":"19043","state":"PA"},"arcs":[[15249,15250,-15226,15251,-15168,-15240]]},{"type":"Polygon","properties":{"name":"HORSHAM","zip":"19044","state":"PA"},"arcs":[[-15106,-15247,15252,-15193,-15113]]},{"type":"Polygon","properties":{"name":"JENKINTOWN","zip":"19046","state":"PA"},"arcs":[[15253,-15201,15254,-15243,-15112,-15129]]},{"type":"Polygon","properties":{"name":"LANGHORNE","zip":"19047","state":"PA"},"arcs":[[15255,-15100,-15080,15256,-15214,15257,-15176]]},{"type":"Polygon","properties":{"name":"LANSDOWNE","zip":"19050","state":"PA"},"arcs":[[-15198,15258,15259,15260,-15186,-15172]]},{"type":"Polygon","properties":{"name":"FEASTERVILLE TREVOSE","zip":"19053","state":"PA"},"arcs":[[15261,15262,-15132,-15101,-15256,-15175]]},{"type":"Polygon","properties":{"name":"LEVITTOWN","zip":"19054","state":"PA"},"arcs":[[15263,15264,-15210,15265,-15136]]},{"type":"Polygon","properties":{"name":"LEVITTOWN","zip":"19055","state":"PA"},"arcs":[[15266,-15211,-15265]]},{"type":"Polygon","properties":{"name":"LEVITTOWN","zip":"19056","state":"PA"},"arcs":[[-15258,-15213,15267,-15134,-15177]]},{"type":"Polygon","properties":{"name":"LEVITTOWN","zip":"19057","state":"PA"},"arcs":[[-15212,-15267,-15264,-15135,-15268]]},{"type":"Polygon","properties":{"name":"MARCUS HOOK","zip":"19061","state":"PA"},"arcs":[[15268,15269,15270,15271,-15161,-15160,15272]]},{"type":"Polygon","properties":{"name":"MEDIA","zip":"19063","state":"PA"},"arcs":[[15273,15274,-15142,15275,15276,-15165,-15163]]},{"type":"Polygon","properties":{"name":"SPRINGFIELD","zip":"19064","state":"PA"},"arcs":[[-15141,-15195,-15170,15277,15278,-15276]]},{"type":"Polygon","properties":{"name":"MERION STATION","zip":"19066","state":"PA"},"arcs":[[15279,15280,-15122,15281]]},{"type":"Polygon","properties":{"name":"MORRISVILLE","zip":"19067","state":"PA"},"arcs":[[-15215,-15257,-15079,-15107,-6947,15282,-15137,-15266]]},{"type":"Polygon","properties":{"name":"MORTON","zip":"19070","state":"PA"},"arcs":[[-15225,15283,-15278,-15169,-15252]]},{"type":"Polygon","properties":{"name":"NARBERTH","zip":"19072","state":"PA"},"arcs":[[-15281,15284,-15233,15285,15286,-15123]]},{"type":"Polygon","properties":{"name":"NEWTOWN SQUARE","zip":"19073","state":"PA"},"arcs":[[15287,15288,15289,15290,15291,15292,-15148,-15143,-15275,15293,15294]]},{"type":"Polygon","properties":{"name":"NORWOOD","zip":"19074","state":"PA"},"arcs":[[15295,-15250,-15239,-15220,-15207]]},{"type":"Polygon","properties":{"name":"ORELAND","zip":"19075","state":"PA"},"arcs":[[-15231,-15191,-15242,-15219]]},{"type":"Polygon","properties":{"name":"PROSPECT PARK","zip":"19076","state":"PA"},"arcs":[[15296,-15227,-15251,-15296,-15206]]},{"type":"Polygon","properties":{"name":"RIDLEY PARK","zip":"19078","state":"PA"},"arcs":[[-15183,15297,-15228,-15297,-15205,15298]]},{"type":"Polygon","properties":{"name":"SHARON HILL","zip":"19079","state":"PA"},"arcs":[[-15189,15299,-15222]]},{"type":"Polygon","properties":{"name":"SWARTHMORE","zip":"19081","state":"PA"},"arcs":[[15300,-15279,-15284,-15224,15301]]},{"type":"Polygon","properties":{"name":"UPPER DARBY","zip":"19082","state":"PA"},"arcs":[[15302,15303,15304,15305,15306,-15259,-15197]]},{"type":"Polygon","properties":{"name":"HAVERTOWN","zip":"19083","state":"PA"},"arcs":[[-15248,-15118,15307,-15303,-15196,-15146]]},{"type":"Polygon","properties":{"name":"VILLANOVA","zip":"19085","state":"PA"},"arcs":[[-15293,15308,15309,-15236,-15149]]},{"type":"Polygon","properties":{"name":"WALLINGFORD","zip":"19086","state":"PA"},"arcs":[[15310,-15156,-15166,-15277,-15301]]},{"type":"Polygon","properties":{"name":"WAYNE","zip":"19087","state":"PA"},"arcs":[[15311,15312,15313,15314,15315,15316,-15309,-15292]]},{"type":"Polygon","properties":{"name":"WILLOW GROVE","zip":"19090","state":"PA"},"arcs":[[-15110,-15194,-15253,-15246,-15130]]},{"type":"Polygon","properties":{"name":"WOODLYN","zip":"19094","state":"PA"},"arcs":[[-15302,-15229,-15298,-15182,-15157,-15311]]},{"type":"Polygon","properties":{"name":"WYNCOTE","zip":"19095","state":"PA"},"arcs":[[15317,-15244,-15255,-15200]]},{"type":"Polygon","properties":{"name":"WYNNEWOOD","zip":"19096","state":"PA"},"arcs":[[15318,-15304,-15308,-15120,-15249,-15234,-15285,-15280]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19102","state":"PA"},"arcs":[[15319,15320,15321]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19103","state":"PA"},"arcs":[[15322,15323,15324,-15321]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19104","state":"PA"},"arcs":[[15325,15326,15327,15328,15329,15330,-15324]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19106","state":"PA"},"arcs":[[15331,15332,15333,15334]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19107","state":"PA"},"arcs":[[15335,-15320,15336,-15333]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19111","state":"PA"},"arcs":[[15337,-15153,-15202,-15254,-15128,15338,15339,15340,15341]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19112","state":"PA"},"arcs":[[15342,15343,15344]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19114","state":"PA"},"arcs":[[15345,15346,15347,15348,-15180,15349]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19115","state":"PA"},"arcs":[[-15127,15350,-15348,15351,-15339]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19116","state":"PA"},"arcs":[[15352,-15351,-15126,-15263]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19118","state":"PA"},"arcs":[[15353,15354,15355,-15241]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19119","state":"PA"},"arcs":[[15356,15357,15358,15359,-15354]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19120","state":"PA"},"arcs":[[15360,15361,-15151,-15338,15362,15363]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19121","state":"PA"},"arcs":[[15364,-15330,15365,15366,15367]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19122","state":"PA"},"arcs":[[15368,15369,-15368,15370]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19123","state":"PA"},"arcs":[[15371,-15370,15372,15373,-15334,-15337]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19124","state":"PA"},"arcs":[[15374,-15363,-15342,15375,15376,15377,15378]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19125","state":"PA"},"arcs":[[-15373,-15369,15379,15380,15381]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19126","state":"PA"},"arcs":[[15382,15383,-15203,-15362]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19127","state":"PA"},"arcs":[[15384,-15124,-15287,15385]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19128","state":"PA"},"arcs":[[15386,-15386,-15286,-15238,15387,15388,-15355,-15360]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19129","state":"PA"},"arcs":[[15389,-15125,-15385,15390,15391,15392]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19130","state":"PA"},"arcs":[[-15325,-15331,-15365,-15372,-15322]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19131","state":"PA"},"arcs":[[15393,15394,-15282,-15121,-15390,15395,-15366,-15329]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19132","state":"PA"},"arcs":[[-15396,-15393,15396,15397,-15367]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19133","state":"PA"},"arcs":[[-15371,-15398,15398,15399,-15380]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19134","state":"PA"},"arcs":[[15400,15401,-15381,-15400,15402,-15379]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19135","state":"PA"},"arcs":[[15403,-15377,15404,15405,15406]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19136","state":"PA"},"arcs":[[15407,15408,-15346,15409,-15406]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19137","state":"PA"},"arcs":[[-15401,-15378,-15404,15410]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19138","state":"PA"},"arcs":[[15411,15412,-15358,15413,-15199,-15384]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19139","state":"PA"},"arcs":[[15414,-15306,15415,-15394,-15328]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19140","state":"PA"},"arcs":[[-15392,15416,15417,-15364,-15375,-15403,-15399,-15397]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19141","state":"PA"},"arcs":[[15418,-15412,-15383,-15361,-15418]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19142","state":"PA"},"arcs":[[-15261,15419,15420,-15187]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19143","state":"PA"},"arcs":[[15421,15422,-15420,-15260,-15307,-15415,-15327,15423]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19144","state":"PA"},"arcs":[[-15359,-15413,-15419,-15417,-15391,-15387]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19145","state":"PA"},"arcs":[[15424,-15422,15425,15426,-15343]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19146","state":"PA"},"arcs":[[-15326,-15323,15427,-15426,-15424]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19147","state":"PA"},"arcs":[[15428,-15428,-15336,-15332,15429]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19148","state":"PA"},"arcs":[[-15344,-15427,-15429,15430]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19149","state":"PA"},"arcs":[[-15376,-15341,15431,-15408,-15405]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19150","state":"PA"},"arcs":[[-15357,-15245,-15318,-15414]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19151","state":"PA"},"arcs":[[-15305,-15319,-15395,-15416]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19152","state":"PA"},"arcs":[[-15432,-15340,-15352,-15347,-15409]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19153","state":"PA"},"arcs":[[-15223,-15300,-15188,-15421,-15423,-15425,15432,-15209]]},{"type":"Polygon","properties":{"name":"PHILADELPHIA","zip":"19154","state":"PA"},"arcs":[[-15349,-15353,-15262,-15174]]},{"type":"Polygon","properties":{"name":"ATGLEN","zip":"19310","state":"PA"},"arcs":[[15433,-14008,-14048,15434]]},{"type":"Polygon","properties":{"name":"AVONDALE","zip":"19311","state":"PA"},"arcs":[[15435,15436,15437,15438]]},{"type":"Polygon","properties":{"name":"BERWYN","zip":"19312","state":"PA"},"arcs":[[15439,-15290,15440,-15313]]},{"type":"Polygon","properties":{"name":"CHADDS FORD","zip":"19317","state":"PA"},"arcs":[[15441,15442,15443,15444,15445,15446,-15271]]},{"type":"Polygon","properties":{"name":"CHEYNEY","zip":"19319","state":"PA"},"arcs":[[15447,15448,15449]]},{"type":"Polygon","properties":{"name":"COATESVILLE","zip":"19320","state":"PA"},"arcs":[[15450,-14046,15451,15452,15453,15454,15455,15456,15457,15458]]},{"type":"Polygon","properties":{"name":"COCHRANVILLE","zip":"19330","state":"PA"},"arcs":[[15459,-14001,-15434,15460,-15459,15461,15462]]},{"type":"Polygon","properties":{"name":"DEVON","zip":"19333","state":"PA"},"arcs":[[-15312,-15291,-15440]]},{"type":"Polygon","properties":{"name":"DOWNINGTOWN","zip":"19335","state":"PA"},"arcs":[[15463,15464,15465,15466,-15454]]},{"type":"Polygon","properties":{"name":"EXTON","zip":"19341","state":"PA"},"arcs":[[15467,-15466,15468,15469]]},{"type":"Polygon","properties":{"name":"GLEN MILLS","zip":"19342","state":"PA"},"arcs":[[-15272,-15447,15470,-15450,15471,-15294,-15274,-15162]]},{"type":"Polygon","properties":{"name":"GLENMOORE","zip":"19343","state":"PA"},"arcs":[[15472,15473,15474,15475,-15464,-15453]]},{"type":"Polygon","properties":{"name":"HONEY BROOK","zip":"19344","state":"PA"},"arcs":[[15476,15477,-15473,-15452,-14045,-14084]]},{"type":"Polygon","properties":{"name":"KENNETT SQUARE","zip":"19348","state":"PA"},"arcs":[[15478,-15437,15479,-15457,15480,-15445]]},{"type":"Polygon","properties":{"name":"LANDENBERG","zip":"19350","state":"PA"},"arcs":[[15481,15482,-15439,15483,15484,15485]]},{"type":"Polygon","properties":{"name":"LINCOLN UNIVERSITY","zip":"19352","state":"PA"},"arcs":[[15486,15487,-15463,15488,-15482]]},{"type":"Polygon","properties":{"name":"MALVERN","zip":"19355","state":"PA"},"arcs":[[-15289,15489,-15470,15490,15491,-15314,-15441]]},{"type":"Polygon","properties":{"name":"NOTTINGHAM","zip":"19362","state":"PA"},"arcs":[[-14100,15492,15493,-14092]]},{"type":"Polygon","properties":{"name":"OXFORD","zip":"19363","state":"PA"},"arcs":[[15494,15495,-15493,-14099,-14060,-14002,-15460,-15488]]},{"type":"Polygon","properties":{"name":"PARKESBURG","zip":"19365","state":"PA"},"arcs":[[-15461,-15435,-14047,-15451]]},{"type":"Polygon","properties":{"name":"THORNTON","zip":"19373","state":"PA"},"arcs":[[15496,-15448,-15471]]},{"type":"Polygon","properties":{"name":"WEST CHESTER","zip":"19380","state":"PA"},"arcs":[[-15468,-15490,-15288,15497,-15455,-15467]]},{"type":"Polygon","properties":{"name":"WEST CHESTER","zip":"19382","state":"PA"},"arcs":[[-15446,-15481,-15456,-15498,-15295,-15472,-15449,-15497]]},{"type":"Polygon","properties":{"name":"WEST GROVE","zip":"19390","state":"PA"},"arcs":[[-15483,-15489,-15462,-15458,-15480,-15436]]},{"type":"Polygon","properties":{"name":"NORRISTOWN","zip":"19401","state":"PA"},"arcs":[[15498,15499,15500,15501,15502]]},{"type":"Polygon","properties":{"name":"NORRISTOWN","zip":"19403","state":"PA"},"arcs":[[15503,15504,15505,15506,15507,-15502]]},{"type":"Polygon","properties":{"name":"KING OF PRUSSIA","zip":"19406","state":"PA"},"arcs":[[15508,-15504,-15501,15509,-15316]]},{"type":"Polygon","properties":{"name":"BLUE BELL","zip":"19422","state":"PA"},"arcs":[[-15230,15510,-15503,-15508,15511,15512,-15116]]},{"type":"Polygon","properties":{"name":"CHESTER SPRINGS","zip":"19425","state":"PA"},"arcs":[[-15476,15513,15514,15515,-15491,-15469,-15465]]},{"type":"Polygon","properties":{"name":"COLLEGEVILLE","zip":"19426","state":"PA"},"arcs":[[15516,15517,15518,15519,-15506,15520]]},{"type":"Polygon","properties":{"name":"CONSHOHOCKEN","zip":"19428","state":"PA"},"arcs":[[15521,-15388,-15237,-15310,-15317,-15510,-15500,15522]]},{"type":"Polygon","properties":{"name":"HARLEYSVILLE","zip":"19438","state":"PA"},"arcs":[[15523,-14538,-14491,-15103,-15097,15524,15525,-15519]]},{"type":"Polygon","properties":{"name":"HATFIELD","zip":"19440","state":"PA"},"arcs":[[-15096,-15095,-15089,-15070,-15053,15526,-15525]]},{"type":"Polygon","properties":{"name":"LAFAYETTE HILL","zip":"19444","state":"PA"},"arcs":[[-15522,15527,-15217,-15356,-15389]]},{"type":"Polygon","properties":{"name":"LANSDALE","zip":"19446","state":"PA"},"arcs":[[15528,-15512,-15507,-15520,-15526,-15527,-15055,-15046]]},{"type":"Polygon","properties":{"name":"NORTH WALES","zip":"19454","state":"PA"},"arcs":[[-15513,-15529,-15045,-15117]]},{"type":"Polygon","properties":{"name":"PHOENIXVILLE","zip":"19460","state":"PA"},"arcs":[[-15315,-15492,-15516,15529,15530,-15521,-15505,-15509]]},{"type":"Polygon","properties":{"name":"PLYMOUTH MEETING","zip":"19462","state":"PA"},"arcs":[[-15511,-15232,-15528,-15523,-15499]]},{"type":"Polygon","properties":{"name":"POTTSTOWN","zip":"19464","state":"PA"},"arcs":[[15531,15532,15533,15534,15535,15536]]},{"type":"Polygon","properties":{"name":"POTTSTOWN","zip":"19465","state":"PA"},"arcs":[[15537,15538,-15537,15539,15540,-15514,-15475]]},{"type":"Polygon","properties":{"name":"ROYERSFORD","zip":"19468","state":"PA"},"arcs":[[15541,-15540,-15536,15542,-15517,-15531]]},{"type":"Polygon","properties":{"name":"SCHWENKSVILLE","zip":"19473","state":"PA"},"arcs":[[-15535,15543,-14539,-15524,-15518,-15543]]},{"type":"Polygon","properties":{"name":"SPRING CITY","zip":"19475","state":"PA"},"arcs":[[-15515,-15541,-15542,-15530]]},{"type":"Polygon","properties":{"name":"BARTO","zip":"19504","state":"PA"},"arcs":[[15544,15545,-14404,-14469,-14534,-14537,15546]]},{"type":"Polygon","properties":{"name":"BECHTELSVILLE","zip":"19505","state":"PA"},"arcs":[[15547,-15545,15548]]},{"type":"Polygon","properties":{"name":"BERNVILLE","zip":"19506","state":"PA"},"arcs":[[15549,15550,15551,15552,15553,15554,15555,15556]]},{"type":"Polygon","properties":{"name":"BETHEL","zip":"19507","state":"PA"},"arcs":[[-13722,-13607,-14382,-14389,-14333,15557,-15555,15558,-13749]]},{"type":"Polygon","properties":{"name":"BIRDSBORO","zip":"19508","state":"PA"},"arcs":[[15559,15560,15561,15562,15563,15564]]},{"type":"Polygon","properties":{"name":"BLANDON","zip":"19510","state":"PA"},"arcs":[[15565,15566,15567,15568]]},{"type":"Polygon","properties":{"name":"BOYERTOWN","zip":"19512","state":"PA"},"arcs":[[15569,-15533,15570,15571,-14405,-15546,-15548]]},{"type":"Polygon","properties":{"name":"DOUGLASSVILLE","zip":"19518","state":"PA"},"arcs":[[15572,15573,-15571,-15532,-15539,15574,-15560]]},{"type":"Polygon","properties":{"name":"ELVERSON","zip":"19520","state":"PA"},"arcs":[[-15474,-15478,15575,-15561,-15575,-15538]]},{"type":"Polygon","properties":{"name":"FLEETWOOD","zip":"19522","state":"PA"},"arcs":[[15576,15577,15578,-15569,15579,15580,15581]]},{"type":"Polygon","properties":{"name":"GILBERTSVILLE","zip":"19525","state":"PA"},"arcs":[[-15544,-15534,-15570,-15549,-15547,-14536]]},{"type":"Polygon","properties":{"name":"HAMBURG","zip":"19526","state":"PA"},"arcs":[[15582,-15556,-15558,-14336,-14379,15583,15584,15585,-15581,15586]]},{"type":"Polygon","properties":{"name":"KEMPTON","zip":"19529","state":"PA"},"arcs":[[15587,15588,-15584,-14378,-14371,-14517]]},{"type":"Polygon","properties":{"name":"KUTZTOWN","zip":"19530","state":"PA"},"arcs":[[-15582,-15586,15589,-15588,-14521,-14478,-14438,15590]]},{"type":"Polygon","properties":{"name":"LEESPORT","zip":"19533","state":"PA"},"arcs":[[15591,15592,15593,-15550,15594,15595]]},{"type":"Polygon","properties":{"name":"LENHARTSVILLE","zip":"19534","state":"PA"},"arcs":[[-15585,-15589,-15590]]},{"type":"Polygon","properties":{"name":"MERTZTOWN","zip":"19539","state":"PA"},"arcs":[[15596,-15577,-15591,-14437,-14398]]},{"type":"Polygon","properties":{"name":"MOHNTON","zip":"19540","state":"PA"},"arcs":[[-14105,15597,15598,-15563,15599,-14082,-14028]]},{"type":"Polygon","properties":{"name":"MOHRSVILLE","zip":"19541","state":"PA"},"arcs":[[-15583,15600,-15595,-15557]]},{"type":"Polygon","properties":{"name":"MORGANTOWN","zip":"19543","state":"PA"},"arcs":[[-15600,-15562,-15576,-15477,-14083]]},{"type":"Polygon","properties":{"name":"OLEY","zip":"19547","state":"PA"},"arcs":[[15601,15602,-15578,-15597,-14397,-15572,-15574]]},{"type":"Polygon","properties":{"name":"ROBESONIA","zip":"19551","state":"PA"},"arcs":[[-13737,15603,-15553,15604,-14102,-14026]]},{"type":"Polygon","properties":{"name":"SHOEMAKERSVILLE","zip":"19555","state":"PA"},"arcs":[[-15601,-15587,-15580,-15568,15605,-15596]]},{"type":"Polygon","properties":{"name":"TEMPLE","zip":"19560","state":"PA"},"arcs":[[15606,15607,15608,-15566,-15579,-15603]]},{"type":"Polygon","properties":{"name":"WERNERSVILLE","zip":"19565","state":"PA"},"arcs":[[-15552,15609,-14103,-15605]]},{"type":"Polygon","properties":{"name":"WOMELSDORF","zip":"19567","state":"PA"},"arcs":[[-13750,-15559,-15554,-15604,-13736]]},{"type":"Polygon","properties":{"name":"READING","zip":"19601","state":"PA"},"arcs":[[15610,15611,15612,15613,15614]]},{"type":"Polygon","properties":{"name":"READING","zip":"19602","state":"PA"},"arcs":[[15615,15616,-15612,15617,15618]]},{"type":"Polygon","properties":{"name":"READING","zip":"19604","state":"PA"},"arcs":[[15619,-15608,15620,-15618,-15611]]},{"type":"Polygon","properties":{"name":"READING","zip":"19605","state":"PA"},"arcs":[[-15615,15621,-15592,-15606,-15567,-15609,-15620]]},{"type":"Polygon","properties":{"name":"READING","zip":"19606","state":"PA"},"arcs":[[-15565,15622,-15619,-15621,-15607,-15602,-15573]]},{"type":"Polygon","properties":{"name":"READING","zip":"19607","state":"PA"},"arcs":[[15623,15624,15625,15626,-15616,-15623,-15564,-15599]]},{"type":"Polygon","properties":{"name":"READING","zip":"19608","state":"PA"},"arcs":[[-15598,-14104,-15610,-15551,-15594,15627,15628,-15624]]},{"type":"Polygon","properties":{"name":"READING","zip":"19609","state":"PA"},"arcs":[[-15629,15629,-15625]]},{"type":"Polygon","properties":{"name":"READING","zip":"19610","state":"PA"},"arcs":[[15630,-15626,-15630,-15628,-15593,-15622,-15614]]},{"type":"Polygon","properties":{"name":"READING","zip":"19611","state":"PA"},"arcs":[[-15613,-15617,-15627,-15631]]},{"type":"Polygon","properties":{"name":"BEAR","zip":"19701","state":"DE"},"arcs":[[15631,15632,15633,15634,15635]]},{"type":"Polygon","properties":{"name":"NEWARK","zip":"19702","state":"DE"},"arcs":[[15636,15637,15638,-15635]]},{"type":"Polygon","properties":{"name":"CLAYMONT","zip":"19703","state":"DE"},"arcs":[[15639,15640,-15269,15641]]},{"type":"Polygon","properties":{"name":"HOCKESSIN","zip":"19707","state":"DE"},"arcs":[[15642,15643,-15484,-15438,-15479,-15444,15644]]},{"type":"Polygon","properties":{"name":"MIDDLETOWN","zip":"19709","state":"DE"},"arcs":[[15645,15646,15647,-15632,15648,15649]]},{"type":"Polygon","properties":{"name":"NEWARK","zip":"19711","state":"DE"},"arcs":[[15650,15651,-15485,-15644,15652]]},{"type":"Polygon","properties":{"name":"NEWARK","zip":"19713","state":"DE"},"arcs":[[15653,15654,15655,-15638,15656,-15651]]},{"type":"Polygon","properties":{"name":"NEW CASTLE","zip":"19720","state":"DE"},"arcs":[[-15649,-15636,-15639,-15656,15657,15658,15659]]},{"type":"Polygon","properties":{"name":"TOWNSEND","zip":"19734","state":"DE"},"arcs":[[15660,15661,-15646,15662,15663,15664]]},{"type":"Polygon","properties":{"name":"WILMINGTON","zip":"19801","state":"DE"},"arcs":[[15665,15666,15667,15668,15669,15670,-15659]]},{"type":"Polygon","properties":{"name":"WILMINGTON","zip":"19802","state":"DE"},"arcs":[[15671,-15669,15672,15673]]},{"type":"Polygon","properties":{"name":"WILMINGTON","zip":"19803","state":"DE"},"arcs":[[15674,-15442,15675,15676,-15674,15677]]},{"type":"Polygon","properties":{"name":"WILMINGTON","zip":"19804","state":"DE"},"arcs":[[-15655,15678,15679,-15666,-15658]]},{"type":"Polygon","properties":{"name":"WILMINGTON","zip":"19805","state":"DE"},"arcs":[[15680,15681,15682,-15667,-15680]]},{"type":"Polygon","properties":{"name":"WILMINGTON","zip":"19806","state":"DE"},"arcs":[[-15683,15683,-15678,-15673,-15668]]},{"type":"Polygon","properties":{"name":"WILMINGTON","zip":"19807","state":"DE"},"arcs":[[15684,-15645,-15443,-15675,-15684,-15682]]},{"type":"Polygon","properties":{"name":"WILMINGTON","zip":"19808","state":"DE"},"arcs":[[-15654,-15653,-15643,-15685,-15681,-15679]]},{"type":"Polygon","properties":{"name":"WILMINGTON","zip":"19809","state":"DE"},"arcs":[[-15677,15685,-15640,15686,-15670,-15672]]},{"type":"Polygon","properties":{"name":"WILMINGTON","zip":"19810","state":"DE"},"arcs":[[-15676,-15270,-15641,-15686]]},{"type":"MultiPolygon","properties":{"name":"DOVER","zip":"19901","state":"DE"},"arcs":[[[15687,15688,15689,15690,15691,15692,15693,15694]],[[15695,15696,15697,15698]]]},{"type":"Polygon","properties":{"name":"DOVER AFB","zip":"19902","state":"DE"},"arcs":[[15699,-15690]]},{"type":"MultiPolygon","properties":{"name":"DOVER","zip":"19904","state":"DE"},"arcs":[[[15700,15701,15702,15703,-15693]],[[15704,15705,15706,-15697]]]},{"type":"Polygon","properties":{"name":"BETHANY BEACH","zip":"19930","state":"DE"},"arcs":[[15707,15708,15709,15710,15711]]},{"type":"Polygon","properties":{"name":"BRIDGEVILLE","zip":"19933","state":"DE"},"arcs":[[15712,15713,15714,15715]]},{"type":"Polygon","properties":{"name":"CAMDEN WYOMING","zip":"19934","state":"DE"},"arcs":[[15716,15717,-15701,-15692,15718,-15698,-15707,15719,15720,15721]]},{"type":"Polygon","properties":{"name":"CLAYTON","zip":"19938","state":"DE"},"arcs":[[15722,15723,15724,15725,-15665,15726,-15703]]},{"type":"Polygon","properties":{"name":"DAGSBORO","zip":"19939","state":"DE"},"arcs":[[15727,15728,15729,15730]]},{"type":"Polygon","properties":{"name":"DELMAR","zip":"19940","state":"DE"},"arcs":[[15731,15732,15733,15734,15735,15736,15737,15738]]},{"type":"Polygon","properties":{"name":"ELLENDALE","zip":"19941","state":"DE"},"arcs":[[15739,15740,15741,15742]]},{"type":"Polygon","properties":{"name":"FELTON","zip":"19943","state":"DE"},"arcs":[[15743,15744,15745,15746,-15721,15747,-15705,-15696,15748]]},{"type":"Polygon","properties":{"name":"FENWICK ISLAND","zip":"19944","state":"DE"},"arcs":[[15749,15750,-15708,15751]]},{"type":"Polygon","properties":{"name":"FRANKFORD","zip":"19945","state":"DE"},"arcs":[[15752,-15728,15753,-15710,15754,15755,15756]]},{"type":"Polygon","properties":{"name":"FREDERICA","zip":"19946","state":"DE"},"arcs":[[15757,-15688,15758,15759,15760,-15744]]},{"type":"Polygon","properties":{"name":"GEORGETOWN","zip":"19947","state":"DE"},"arcs":[[15761,-15715,15762,-15741,15763,15764,15765,15766]]},{"type":"Polygon","properties":{"name":"GREENWOOD","zip":"19950","state":"DE"},"arcs":[[-15714,15767,15768,15769,15770,15771,15772,-15742,-15763]]},{"type":"Polygon","properties":{"name":"HARBESON","zip":"19951","state":"DE"},"arcs":[[15773,-15765,15774,15775,15776]]},{"type":"Polygon","properties":{"name":"HARRINGTON","zip":"19952","state":"DE"},"arcs":[[15777,15778,-15745,-15761,15779,15780,-15770]]},{"type":"Polygon","properties":{"name":"HARTLY","zip":"19953","state":"DE"},"arcs":[[15781,15782,15783,-15723,-15702,-15718]]},{"type":"Polygon","properties":{"name":"HOUSTON","zip":"19954","state":"DE"},"arcs":[[15784,-15771,-15781]]},{"type":"Polygon","properties":{"name":"LAUREL","zip":"19956","state":"DE"},"arcs":[[15785,15786,-15767,15787,-15738]]},{"type":"Polygon","properties":{"name":"LEWES","zip":"19958","state":"DE"},"arcs":[[-15776,15788,15789,15790,15791]]},{"type":"Polygon","properties":{"name":"LINCOLN","zip":"19960","state":"DE"},"arcs":[[15792,-15743,-15773,15793,15794]]},{"type":"Polygon","properties":{"name":"MAGNOLIA","zip":"19962","state":"DE"},"arcs":[[-15719,-15691,-15700,-15689,-15758,-15749,-15699]]},{"type":"Polygon","properties":{"name":"MILFORD","zip":"19963","state":"DE"},"arcs":[[-15780,-15760,15795,-15794,-15772,-15785]]},{"type":"Polygon","properties":{"name":"MARYDEL","zip":"19964","state":"DE"},"arcs":[[15796,15797,-15782,-15717]]},{"type":"Polygon","properties":{"name":"MILLSBORO","zip":"19966","state":"DE"},"arcs":[[-15766,-15774,15798,-15729,-15753,15799,15800,15801,-15739,-15788]]},{"type":"Polygon","properties":{"name":"MILTON","zip":"19968","state":"DE"},"arcs":[[-15775,-15764,-15740,-15793,15802,-15789]]},{"type":"Polygon","properties":{"name":"OCEAN VIEW","zip":"19970","state":"DE"},"arcs":[[15803,-15711,-15754,-15731]]},{"type":"Polygon","properties":{"name":"REHOBOTH BEACH","zip":"19971","state":"DE"},"arcs":[[-15791,15804]]},{"type":"Polygon","properties":{"name":"SEAFORD","zip":"19973","state":"DE"},"arcs":[[15805,15806,-15716,-15762,-15787]]},{"type":"Polygon","properties":{"name":"SELBYVILLE","zip":"19975","state":"DE"},"arcs":[[15807,15808,-15756,15809]]},{"type":"Polygon","properties":{"name":"SMYRNA","zip":"19977","state":"DE"},"arcs":[[-15694,-15704,-15727,-15664,15810]]},{"type":"Polygon","properties":{"name":"VIOLA","zip":"19979","state":"DE"},"arcs":[[-15720,-15706,-15748]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"20001","state":"DC"},"arcs":[[15811,15812,15813,15814,15815]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"20002","state":"DC"},"arcs":[[15816,15817,15818,15819,-15815]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"20003","state":"DC"},"arcs":[[15820,15821,15822,15823,-15820,15824]]},{"type":"MultiPolygon","properties":{"name":"WASHINGTON","zip":"20004","state":"DC"},"arcs":[[[15825,15826,15827,-15816,-15824,15828,15829]],[[15830,15831,15832]]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"20005","state":"DC"},"arcs":[[15833,15834,15835,-15812,-15828]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"20006","state":"DC"},"arcs":[[15836,15837,-15834,-15827]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"20007","state":"DC"},"arcs":[[15838,15839,15840,15841]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"20008","state":"DC"},"arcs":[[15842,15843,-15842,15844,15845,15846,15847]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"20009","state":"DC"},"arcs":[[15848,-15843,15849,-15813,-15836]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"20010","state":"DC"},"arcs":[[15850,-15814,-15850,-15848,15851]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"20011","state":"DC"},"arcs":[[15852,15853,15854,15855,15856,15857,-15852,-15847]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"20012","state":"DC"},"arcs":[[15858,15859,15860,15861,-15854]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"20015","state":"DC"},"arcs":[[-15846,15862,15863,-15859,-15853]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"20016","state":"DC"},"arcs":[[15864,-15863,-15845,-15841,15865]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"20017","state":"DC"},"arcs":[[-15858,15866,15867,-15817,-15851]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"20018","state":"DC"},"arcs":[[15868,-15818,-15868,15869,15870]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"20019","state":"DC"},"arcs":[[15871,15872,-15825,-15819,-15869]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"20020","state":"DC"},"arcs":[[15873,15874,15875,15876,15877,-15821,-15873]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"20024","state":"DC"},"arcs":[[15878,15879,-15829,-15823]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"20032","state":"DC"},"arcs":[[15880,-15877,15881,15882,15883]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"20036","state":"DC"},"arcs":[[15884,-15849,-15835,-15838]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"20037","state":"DC"},"arcs":[[-15826,15885,-15839,-15844,-15885,-15837]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"20041","state":"VA"},"arcs":[[15886,15887,15888]]},{"type":"Polygon","properties":{"name":"ALDIE","zip":"20105","state":"VA"},"arcs":[[15889,15890,15891,15892,15893,15894,15895,15896]]},{"type":"Polygon","properties":{"name":"AMISSVILLE","zip":"20106","state":"VA"},"arcs":[[15897,15898,15899,15900,15901,15902,15903,15904,15905,15906]]},{"type":"Polygon","properties":{"name":"ARCOLA","zip":"20107","state":"VA"},"arcs":[[15907,15908,-15895]]},{"type":"Polygon","properties":{"name":"MANASSAS","zip":"20109","state":"VA"},"arcs":[[15909,15910,15911,15912,15913,15914,15915,15916]]},{"type":"Polygon","properties":{"name":"MANASSAS","zip":"20110","state":"VA"},"arcs":[[15917,15918,-15911,15919]]},{"type":"Polygon","properties":{"name":"MANASSAS","zip":"20111","state":"VA"},"arcs":[[-15910,15920,15921,15922,-15920]]},{"type":"Polygon","properties":{"name":"MANASSAS","zip":"20112","state":"VA"},"arcs":[[15923,15924,15925,-15918,-15923,15926,15927,15928,15929]]},{"type":"Polygon","properties":{"name":"MARSHALL","zip":"20115","state":"VA"},"arcs":[[15930,15931,15932,15933,15934,15935,-15906]]},{"type":"Polygon","properties":{"name":"MIDDLEBURG","zip":"20117","state":"VA"},"arcs":[[15936,15937,15938,15939,-15892,15940,-15934]]},{"type":"Polygon","properties":{"name":"CATLETT","zip":"20119","state":"VA"},"arcs":[[15941,15942,15943,15944,15945]]},{"type":"Polygon","properties":{"name":"CENTREVILLE","zip":"20120","state":"VA"},"arcs":[[15946,15947,-15916,15948,15949,15950]]},{"type":"Polygon","properties":{"name":"CENTREVILLE","zip":"20121","state":"VA"},"arcs":[[15951,-15921,-15917,-15948]]},{"type":"Polygon","properties":{"name":"CLIFTON","zip":"20124","state":"VA"},"arcs":[[15952,15953,-15927,-15922,-15952,-15947,15954]]},{"type":"Polygon","properties":{"name":"PAEONIAN SPRINGS","zip":"20129","state":"VA"},"arcs":[[15955,15956,15957,15958]]},{"type":"Polygon","properties":{"name":"PARIS","zip":"20130","state":"VA"},"arcs":[[15959,15960,15961]]},{"type":"Polygon","properties":{"name":"PURCELLVILLE","zip":"20132","state":"VA"},"arcs":[[15962,15963,15964,15965,15966,15967,15968,15969,-15939]]},{"type":"Polygon","properties":{"name":"BLUEMONT","zip":"20135","state":"VA"},"arcs":[[15970,15971,15972,15973]]},{"type":"Polygon","properties":{"name":"BRISTOW","zip":"20136","state":"VA"},"arcs":[[15974,15975,-15912,-15919,-15926]]},{"type":"Polygon","properties":{"name":"BROAD RUN","zip":"20137","state":"VA"},"arcs":[[15976,15977,15978,15979]]},{"type":"Polygon","properties":{"name":"ROUND HILL","zip":"20141","state":"VA"},"arcs":[[15980,-15971,15981,-15963,-15938]]},{"type":"Polygon","properties":{"name":"CATHARPIN","zip":"20143","state":"VA"},"arcs":[[15982,15983,-15897,15984,-15914]]},{"type":"Polygon","properties":{"name":"DELAPLANE","zip":"20144","state":"VA"},"arcs":[[15985,15986,15987,-15960,15988,-15932,15989]]},{"type":"Polygon","properties":{"name":"ASHBURN","zip":"20147","state":"VA"},"arcs":[[15990,15991,15992,15993]]},{"type":"Polygon","properties":{"name":"ASHBURN","zip":"20148","state":"VA"},"arcs":[[15994,-15908,-15894,15995,-15992]]},{"type":"Polygon","properties":{"name":"CHANTILLY","zip":"20151","state":"VA"},"arcs":[[15996,-15887,15997,15998,-15950]]},{"type":"Polygon","properties":{"name":"CHANTILLY","zip":"20152","state":"VA"},"arcs":[[-15896,15999,-15997,-15949,-15915,-15985]]},{"type":"Polygon","properties":{"name":"GAINESVILLE","zip":"20155","state":"VA"},"arcs":[[16000,16001,-15977,16002,-15983,-15913,-15976]]},{"type":"Polygon","properties":{"name":"HAMILTON","zip":"20158","state":"VA"},"arcs":[[16003,-15956,16004,-15969]]},{"type":"Polygon","properties":{"name":"STERLING","zip":"20164","state":"VA"},"arcs":[[16005,16006,16007,16008]]},{"type":"Polygon","properties":{"name":"STERLING","zip":"20165","state":"VA"},"arcs":[[16009,16010,16011,16012,-16008]]},{"type":"Polygon","properties":{"name":"STERLING","zip":"20166","state":"VA"},"arcs":[[-15909,-15995,-15991,-16010,-16007,16013,-15888,-16000]]},{"type":"Polygon","properties":{"name":"HAYMARKET","zip":"20169","state":"VA"},"arcs":[[16014,-15890,-15984,-16003,-15980]]},{"type":"Polygon","properties":{"name":"HERNDON","zip":"20170","state":"VA"},"arcs":[[16015,-16014,-16006,16016,16017,16018,16019]]},{"type":"Polygon","properties":{"name":"HERNDON","zip":"20171","state":"VA"},"arcs":[[-15889,-16016,16020,16021,16022,-15998]]},{"type":"Polygon","properties":{"name":"LEESBURG","zip":"20175","state":"VA"},"arcs":[[-15970,-16005,-15959,16023,-15993,-15996,-15893,-15940]]},{"type":"Polygon","properties":{"name":"LEESBURG","zip":"20176","state":"VA"},"arcs":[[-16011,-15994,-16024,-15958,16024,16025,16026]]},{"type":"Polygon","properties":{"name":"LOVETTSVILLE","zip":"20180","state":"VA"},"arcs":[[-16026,16027,-15967,16028]]},{"type":"Polygon","properties":{"name":"NOKESVILLE","zip":"20181","state":"VA"},"arcs":[[16029,-15944,16030,-16001,-15975,-15925]]},{"type":"Polygon","properties":{"name":"UPPERVILLE","zip":"20184","state":"VA"},"arcs":[[-15933,-15989,-15962,16031,-15972,-15981,-15937]]},{"type":"Polygon","properties":{"name":"WARRENTON","zip":"20186","state":"VA"},"arcs":[[16032,-15907,-15936,16033,16034,16035,16036]]},{"type":"Polygon","properties":{"name":"WARRENTON","zip":"20187","state":"VA"},"arcs":[[16037,-15978,-16002,-16031,-15943,16038,16039,-16035]]},{"type":"Polygon","properties":{"name":"RESTON","zip":"20190","state":"VA"},"arcs":[[16040,16041,-16019,16042]]},{"type":"Polygon","properties":{"name":"RESTON","zip":"20191","state":"VA"},"arcs":[[16043,16044,-16021,-16020,-16042,16045]]},{"type":"Polygon","properties":{"name":"RESTON","zip":"20194","state":"VA"},"arcs":[[16046,16047,-16043,-16018]]},{"type":"Polygon","properties":{"name":"WATERFORD","zip":"20197","state":"VA"},"arcs":[[-16004,-15968,-16028,-16025,-15957]]},{"type":"Polygon","properties":{"name":"THE PLAINS","zip":"20198","state":"VA"},"arcs":[[-15935,-15941,-15891,-16015,-15979,-16038,-16034]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"20332","state":"DC"},"arcs":[[16048,-15879,-15822,-15878,-15881]]},{"type":"Polygon","properties":{"name":"WALDORF","zip":"20601","state":"MD"},"arcs":[[16049,16050,16051,16052,16053,16054,16055,16056,16057]]},{"type":"Polygon","properties":{"name":"WALDORF","zip":"20602","state":"MD"},"arcs":[[16058,16059,-16054,16060]]},{"type":"Polygon","properties":{"name":"WALDORF","zip":"20603","state":"MD"},"arcs":[[16061,16062,-16055,-16060]]},{"type":"Polygon","properties":{"name":"ACCOKEEK","zip":"20607","state":"MD"},"arcs":[[16063,16064,16065,16066,16067,-16056,-16063]]},{"type":"Polygon","properties":{"name":"AQUASCO","zip":"20608","state":"MD"},"arcs":[[16068,-16050,16069,16070]]},{"type":"Polygon","properties":{"name":"AVENUE","zip":"20609","state":"MD"},"arcs":[[16071,16072,16073,16074]]},{"type":"Polygon","properties":{"name":"BEL ALTON","zip":"20611","state":"MD"},"arcs":[[16075,16076,16077]]},{"type":"Polygon","properties":{"name":"BRANDYWINE","zip":"20613","state":"MD"},"arcs":[[-16070,-16058,16078,16079,16080,16081,16082,16083]]},{"type":"Polygon","properties":{"name":"BRYANS ROAD","zip":"20616","state":"MD"},"arcs":[[16084,16085,-16065]]},{"type":"Polygon","properties":{"name":"BRYANTOWN","zip":"20617","state":"MD"},"arcs":[[16086,16087,-16052]]},{"type":"Polygon","properties":{"name":"BUSHWOOD","zip":"20618","state":"MD"},"arcs":[[16088,-16072,16089]]},{"type":"Polygon","properties":{"name":"CALIFORNIA","zip":"20619","state":"MD"},"arcs":[[16090,16091,16092,16093,16094,16095]]},{"type":"Polygon","properties":{"name":"CALLAWAY","zip":"20620","state":"MD"},"arcs":[[16096,16097,16098,-16096]]},{"type":"Polygon","properties":{"name":"CHAPTICO","zip":"20621","state":"MD"},"arcs":[[-16089,16099,16100,16101,-16073]]},{"type":"Polygon","properties":{"name":"CHARLOTTE HALL","zip":"20622","state":"MD"},"arcs":[[16102,16103,16104,16105,16106]]},{"type":"Polygon","properties":{"name":"CHELTENHAM","zip":"20623","state":"MD"},"arcs":[[16107,16108,-16080]]},{"type":"Polygon","properties":{"name":"CLEMENTS","zip":"20624","state":"MD"},"arcs":[[-16102,16109,16110,16111,-16074]]},{"type":"Polygon","properties":{"name":"DAMERON","zip":"20628","state":"MD"},"arcs":[[16112,16113,16114,16115]]},{"type":"Polygon","properties":{"name":"DRAYDEN","zip":"20630","state":"MD"},"arcs":[[16116,16117,16118]]},{"type":"Polygon","properties":{"name":"FAULKNER","zip":"20632","state":"MD"},"arcs":[[16119,-16078,16120]]},{"type":"Polygon","properties":{"name":"GREAT MILLS","zip":"20634","state":"MD"},"arcs":[[-16118,16121,-16097,-16095,16122,16123]]},{"type":"Polygon","properties":{"name":"HOLLYWOOD","zip":"20636","state":"MD"},"arcs":[[-16092,16124,16125,16126]]},{"type":"Polygon","properties":{"name":"HUGHESVILLE","zip":"20637","state":"MD"},"arcs":[[16127,-16105,16128,-16087,-16051,-16069,16129]]},{"type":"Polygon","properties":{"name":"HUNTINGTOWN","zip":"20639","state":"MD"},"arcs":[[16130,16131,-16084,16132,16133,16134,16135]]},{"type":"Polygon","properties":{"name":"INDIAN HEAD","zip":"20640","state":"MD"},"arcs":[[-16085,16136,16137,16138,16139],[16140]]},{"type":"Polygon","properties":{"name":"LA PLATA","zip":"20646","state":"MD"},"arcs":[[16141,16142,16143,-16138,16144,16145,16146,-16061,-16053,-16088,-16129,-16104,-16121,-16077]]},{"type":"Polygon","properties":{"name":"LEONARDTOWN","zip":"20650","state":"MD"},"arcs":[[16147,16148,16149,-16111,16150,-16125,-16091,-16099]]},{"type":"Polygon","properties":{"name":"LEXINGTON PARK","zip":"20653","state":"MD"},"arcs":[[-16115,16151,16152,-16123,-16094,16153,16154,16155]]},{"type":"Polygon","properties":{"name":"LUSBY","zip":"20657","state":"MD"},"arcs":[[16156,16157]]},{"type":"Polygon","properties":{"name":"MARBURY","zip":"20658","state":"MD"},"arcs":[[-16141]]},{"type":"Polygon","properties":{"name":"MECHANICSVILLE","zip":"20659","state":"MD"},"arcs":[[-16110,-16101,16158,-16106,-16128,16159,-16126,-16151]]},{"type":"Polygon","properties":{"name":"NANJEMOY","zip":"20662","state":"MD"},"arcs":[[16160,16161,-16139,-16144]]},{"type":"Polygon","properties":{"name":"NEWBURG","zip":"20664","state":"MD"},"arcs":[[16162,-16076,-16120,-16103,16163]]},{"type":"Polygon","properties":{"name":"PATUXENT RIVER","zip":"20670","state":"MD"},"arcs":[[-16155,16164]]},{"type":"Polygon","properties":{"name":"POMFRET","zip":"20675","state":"MD"},"arcs":[[16165,-16146]]},{"type":"Polygon","properties":{"name":"PORT REPUBLIC","zip":"20676","state":"MD"},"arcs":[[16166,16167,16168,16169]]},{"type":"Polygon","properties":{"name":"PORT TOBACCO","zip":"20677","state":"MD"},"arcs":[[16170,-16142,-16163,16171]]},{"type":"Polygon","properties":{"name":"PRINCE FREDERICK","zip":"20678","state":"MD"},"arcs":[[-16131,16172,-16167,16173]]},{"type":"Polygon","properties":{"name":"RIDGE","zip":"20680","state":"MD"},"arcs":[[16174,16175,16176,-16113,16177]]},{"type":"Polygon","properties":{"name":"SAINT INIGOES","zip":"20684","state":"MD"},"arcs":[[-16152,-16114,-16177,16178]]},{"type":"Polygon","properties":{"name":"SAINT LEONARD","zip":"20685","state":"MD"},"arcs":[[-16169,16179,-16157,16180]]},{"type":"Polygon","properties":{"name":"SCOTLAND","zip":"20687","state":"MD"},"arcs":[[-16175,16181]]},{"type":"Polygon","properties":{"name":"SUNDERLAND","zip":"20689","state":"MD"},"arcs":[[16182,16183,-16134]]},{"type":"Polygon","properties":{"name":"TALL TIMBERS","zip":"20690","state":"MD"},"arcs":[[-16149,16184,16185]]},{"type":"Polygon","properties":{"name":"VALLEY LEE","zip":"20692","state":"MD"},"arcs":[[-16148,-16098,-16122,-16117,16186,-16185]]},{"type":"Polygon","properties":{"name":"WELCOME","zip":"20693","state":"MD"},"arcs":[[-16143,-16171,16187,-16161]]},{"type":"Polygon","properties":{"name":"WHITE PLAINS","zip":"20695","state":"MD"},"arcs":[[-16145,-16137,-16064,-16062,-16059,-16147,-16166]]},{"type":"Polygon","properties":{"name":"ANNAPOLIS JUNCTION","zip":"20701","state":"MD"},"arcs":[[16188,16189,16190]]},{"type":"Polygon","properties":{"name":"BELTSVILLE","zip":"20705","state":"MD"},"arcs":[[16191,16192,16193,16194,16195,16196,16197,16198,16199]]},{"type":"Polygon","properties":{"name":"LANHAM","zip":"20706","state":"MD"},"arcs":[[16200,16201,16202,16203,16204,16205,16206,16207,16208,-16193,16209]]},{"type":"Polygon","properties":{"name":"LAUREL","zip":"20707","state":"MD"},"arcs":[[16210,-16199,16211,16212,16213]]},{"type":"Polygon","properties":{"name":"LAUREL","zip":"20708","state":"MD"},"arcs":[[-16211,16214,16215,16216,16217,-16200]]},{"type":"Polygon","properties":{"name":"BLADENSBURG","zip":"20710","state":"MD"},"arcs":[[16218,16219,16220]]},{"type":"Polygon","properties":{"name":"LOTHIAN","zip":"20711","state":"MD"},"arcs":[[16221,16222,16223,16224,16225,16226]]},{"type":"Polygon","properties":{"name":"MOUNT RAINIER","zip":"20712","state":"MD"},"arcs":[[-15870,16227,16228]]},{"type":"Polygon","properties":{"name":"NORTH BEACH","zip":"20714","state":"MD"},"arcs":[[16229,16230,16231,16232]]},{"type":"Polygon","properties":{"name":"BOWIE","zip":"20715","state":"MD"},"arcs":[[16233,16234,16235,16236,16237]]},{"type":"Polygon","properties":{"name":"BOWIE","zip":"20716","state":"MD"},"arcs":[[16238,16239,-16235,16240,16241]]},{"type":"Polygon","properties":{"name":"BOWIE","zip":"20720","state":"MD"},"arcs":[[16242,-16217,16243,-16236,-16240,16244,-16201]]},{"type":"Polygon","properties":{"name":"BOWIE","zip":"20721","state":"MD"},"arcs":[[16245,-16202,-16245,-16239]]},{"type":"Polygon","properties":{"name":"BRENTWOOD","zip":"20722","state":"MD"},"arcs":[[16246,-15871,-16229,16247]]},{"type":"Polygon","properties":{"name":"LAUREL","zip":"20723","state":"MD"},"arcs":[[16248,16249,-16213,16250,16251,16252,16253,16254,16255]]},{"type":"Polygon","properties":{"name":"LAUREL","zip":"20724","state":"MD"},"arcs":[[-16250,-16189,16256,16257,-16215,-16214]]},{"type":"Polygon","properties":{"name":"CHESAPEAKE BEACH","zip":"20732","state":"MD"},"arcs":[[-16135,-16184,16258,-16230,16259]]},{"type":"Polygon","properties":{"name":"CHURCHTON","zip":"20733","state":"MD"},"arcs":[[16260,16261,16262]]},{"type":"Polygon","properties":{"name":"CLINTON","zip":"20735","state":"MD"},"arcs":[[16263,16264,16265,16266,-16108,-16079,-16057,-16068]]},{"type":"Polygon","properties":{"name":"OWINGS","zip":"20736","state":"MD"},"arcs":[[-16133,-16083,16267,16268,-16231,-16259,-16183]]},{"type":"Polygon","properties":{"name":"RIVERDALE","zip":"20737","state":"MD"},"arcs":[[16269,16270,16271,-16206,16272,-16220]]},{"type":"Polygon","properties":{"name":"COLLEGE PARK","zip":"20740","state":"MD"},"arcs":[[-16272,16273,16274,-16196,16275,-16207]]},{"type":"Polygon","properties":{"name":"CAPITOL HEIGHTS","zip":"20743","state":"MD"},"arcs":[[16276,-15874,-15872,16277,16278,16279,16280]]},{"type":"Polygon","properties":{"name":"FORT WASHINGTON","zip":"20744","state":"MD"},"arcs":[[16281,16282,-16264,-16067,16283]]},{"type":"Polygon","properties":{"name":"OXON HILL","zip":"20745","state":"MD"},"arcs":[[-15883,16284,-16282,16285]]},{"type":"Polygon","properties":{"name":"SUITLAND","zip":"20746","state":"MD"},"arcs":[[16286,16287,16288,16289,-15875,-16277]]},{"type":"Polygon","properties":{"name":"DISTRICT HEIGHTS","zip":"20747","state":"MD"},"arcs":[[16290,-16287,-16281,16291]]},{"type":"Polygon","properties":{"name":"TEMPLE HILLS","zip":"20748","state":"MD"},"arcs":[[16292,-16265,-16283,-16285,-15882,-15876,-16290]]},{"type":"Polygon","properties":{"name":"DEALE","zip":"20751","state":"MD"},"arcs":[[16293,-16227,16294,-16261,16295]]},{"type":"Polygon","properties":{"name":"DUNKIRK","zip":"20754","state":"MD"},"arcs":[[16296,-16223,16297,16298,-16268,-16082]]},{"type":"Polygon","properties":{"name":"FORT GEORGE G MEADE","zip":"20755","state":"MD"},"arcs":[[-16258,16299,16300,16301,-16244,-16216]]},{"type":"Polygon","properties":{"name":"FRIENDSHIP","zip":"20758","state":"MD"},"arcs":[[-16269,-16299,16302,16303,-16232]]},{"type":"Polygon","properties":{"name":"FULTON","zip":"20759","state":"MD"},"arcs":[[16304,16305,16306,-16252,16307]]},{"type":"Polygon","properties":{"name":"ANDREWS AIR FORCE BASE","zip":"20762","state":"MD"},"arcs":[[-16289,16308,-16266,-16293]]},{"type":"Polygon","properties":{"name":"SAVAGE","zip":"20763","state":"MD"},"arcs":[[-16249,16309,-16190]]},{"type":"Polygon","properties":{"name":"GLENN DALE","zip":"20769","state":"MD"},"arcs":[[-16192,-16218,-16243,-16210]]},{"type":"Polygon","properties":{"name":"GREENBELT","zip":"20770","state":"MD"},"arcs":[[16310,-16208,-16276,-16195]]},{"type":"Polygon","properties":{"name":"GREENBELT","zip":"20771","state":"MD"},"arcs":[[-16311,-16194,-16209]]},{"type":"Polygon","properties":{"name":"UPPER MARLBORO","zip":"20772","state":"MD"},"arcs":[[-16297,-16081,-16109,-16267,-16309,-16288,-16291,16311,16312,-16224]]},{"type":"Polygon","properties":{"name":"UPPER MARLBORO","zip":"20774","state":"MD"},"arcs":[[16313,-16203,-16246,-16242,16314,16315,-16312,-16292,-16280]]},{"type":"Polygon","properties":{"name":"HARWOOD","zip":"20776","state":"MD"},"arcs":[[16316,-16225,-16313,-16316,16317,16318,16319]]},{"type":"Polygon","properties":{"name":"HIGHLAND","zip":"20777","state":"MD"},"arcs":[[16320,16321,16322,-16306]]},{"type":"Polygon","properties":{"name":"WEST RIVER","zip":"20778","state":"MD"},"arcs":[[-16295,-16226,-16317,16323,-16262]]},{"type":"Polygon","properties":{"name":"TRACYS LANDING","zip":"20779","state":"MD"},"arcs":[[-16303,-16298,-16222,-16294,16324]]},{"type":"Polygon","properties":{"name":"HYATTSVILLE","zip":"20781","state":"MD"},"arcs":[[-16247,16325,-16270,-16219,16326,16327,-16278]]},{"type":"Polygon","properties":{"name":"HYATTSVILLE","zip":"20782","state":"MD"},"arcs":[[-16228,-15867,-15857,16328,-16274,-16271,-16326,-16248]]},{"type":"Polygon","properties":{"name":"HYATTSVILLE","zip":"20783","state":"MD"},"arcs":[[16329,16330,16331,-16197,-16275,-16329,-15856]]},{"type":"Polygon","properties":{"name":"HYATTSVILLE","zip":"20784","state":"MD"},"arcs":[[-16221,-16273,-16205,16332,-16327]]},{"type":"Polygon","properties":{"name":"HYATTSVILLE","zip":"20785","state":"MD"},"arcs":[[-16333,-16204,-16314,-16279,-16328]]},{"type":"Polygon","properties":{"name":"JESSUP","zip":"20794","state":"MD"},"arcs":[[-16310,-16256,16333,16334,16335,-16300,-16257,-16191]]},{"type":"Polygon","properties":{"name":"GLEN ECHO","zip":"20812","state":"MD"},"arcs":[[16336,16337,16338,16339]]},{"type":"Polygon","properties":{"name":"BETHESDA","zip":"20814","state":"MD"},"arcs":[[16340,16341,16342,16343]]},{"type":"Polygon","properties":{"name":"CHEVY CHASE","zip":"20815","state":"MD"},"arcs":[[16344,-16341,16345,16346,-15860,-15864,16347]]},{"type":"Polygon","properties":{"name":"BETHESDA","zip":"20816","state":"MD"},"arcs":[[-15865,16348,-16337,16349,-16348]]},{"type":"Polygon","properties":{"name":"BETHESDA","zip":"20817","state":"MD"},"arcs":[[-16350,-16340,16350,16351,16352,16353,-16342,-16345]]},{"type":"Polygon","properties":{"name":"CABIN JOHN","zip":"20818","state":"MD"},"arcs":[[-16351,-16339,16354]]},{"type":"Polygon","properties":{"name":"OLNEY","zip":"20832","state":"MD"},"arcs":[[16355,16356,16357,16358,16359]]},{"type":"Polygon","properties":{"name":"BROOKEVILLE","zip":"20833","state":"MD"},"arcs":[[16360,16361,-16358,16362,16363,16364,16365,16366,16367,16368,-16322]]},{"type":"Polygon","properties":{"name":"POOLESVILLE","zip":"20837","state":"MD"},"arcs":[[16369,16370,16371,16372,16373,16374,16375]]},{"type":"Polygon","properties":{"name":"BARNESVILLE","zip":"20838","state":"MD"},"arcs":[[16376,16377,16378]]},{"type":"Polygon","properties":{"name":"BEALLSVILLE","zip":"20839","state":"MD"},"arcs":[[16379,-16374]]},{"type":"Polygon","properties":{"name":"BOYDS","zip":"20841","state":"MD"},"arcs":[[16380,-16377,16381,16382,16383,-16376]]},{"type":"Polygon","properties":{"name":"DICKERSON","zip":"20842","state":"MD"},"arcs":[[-16375,-16380,-16373,16384,16385,16386,16387,16388,16389,-16378,-16381]]},{"type":"Polygon","properties":{"name":"ROCKVILLE","zip":"20850","state":"MD"},"arcs":[[16390,16391,16392,16393,16394,16395,16396]]},{"type":"Polygon","properties":{"name":"ROCKVILLE","zip":"20851","state":"MD"},"arcs":[[16397,-16395,16398]]},{"type":"Polygon","properties":{"name":"ROCKVILLE","zip":"20852","state":"MD"},"arcs":[[16399,-16396,-16398,16400,16401,16402,-16343,-16354]]},{"type":"Polygon","properties":{"name":"ROCKVILLE","zip":"20853","state":"MD"},"arcs":[[-16394,16403,-16356,16404,-16401,-16399]]},{"type":"Polygon","properties":{"name":"POTOMAC","zip":"20854","state":"MD"},"arcs":[[-16353,16405,-16371,16406,16407,-16397,-16400]]},{"type":"Polygon","properties":{"name":"DERWOOD","zip":"20855","state":"MD"},"arcs":[[16408,16409,16410,-16363,-16357,-16404,-16393]]},{"type":"Polygon","properties":{"name":"SANDY SPRING","zip":"20860","state":"MD"},"arcs":[[16411,16412,-16359,-16362,16413]]},{"type":"Polygon","properties":{"name":"ASHTON","zip":"20861","state":"MD"},"arcs":[[-16361,-16321,16414,-16414]]},{"type":"Polygon","properties":{"name":"BURTONSVILLE","zip":"20866","state":"MD"},"arcs":[[16415,-16308,-16251,-16212,16416]]},{"type":"Polygon","properties":{"name":"CLARKSBURG","zip":"20871","state":"MD"},"arcs":[[-16390,16417,16418,16419,-16382,-16379]]},{"type":"Polygon","properties":{"name":"DAMASCUS","zip":"20872","state":"MD"},"arcs":[[16420,16421,16422,16423,16424,-16419]]},{"type":"Polygon","properties":{"name":"GERMANTOWN","zip":"20874","state":"MD"},"arcs":[[16425,-16407,-16370,-16384,16426,16427]]},{"type":"Polygon","properties":{"name":"GERMANTOWN","zip":"20876","state":"MD"},"arcs":[[16428,16429,-16427,-16383,-16420,-16425,16430,16431]]},{"type":"Polygon","properties":{"name":"GAITHERSBURG","zip":"20877","state":"MD"},"arcs":[[-16392,16432,16433,16434,16435,-16409]]},{"type":"Polygon","properties":{"name":"GAITHERSBURG","zip":"20878","state":"MD"},"arcs":[[-16408,-16426,16436,-16433,-16391]]},{"type":"MultiPolygon","properties":{"name":"GAITHERSBURG","zip":"20879","state":"MD"},"arcs":[[[16437,-16432,16438]],[[-16436,16439,16440,-16410]],[[-16428,-16430,16441,-16434,-16437]]]},{"type":"Polygon","properties":{"name":"GAITHERSBURG","zip":"20882","state":"MD"},"arcs":[[16442,-16439,-16431,-16424,16443,16444,-16364,-16411,-16441]]},{"type":"Polygon","properties":{"name":"MONTGOMERY VILLAGE","zip":"20886","state":"MD"},"arcs":[[-16435,-16442,-16429,-16438,-16443,-16440]]},{"type":"Polygon","properties":{"name":"KENSINGTON","zip":"20895","state":"MD"},"arcs":[[16445,-16346,-16344,-16403,16446,16447]]},{"type":"Polygon","properties":{"name":"SILVER SPRING","zip":"20901","state":"MD"},"arcs":[[16448,16449,16450,16451,16452]]},{"type":"Polygon","properties":{"name":"SILVER SPRING","zip":"20902","state":"MD"},"arcs":[[16453,-16448,16454,16455,-16451]]},{"type":"Polygon","properties":{"name":"SILVER SPRING","zip":"20903","state":"MD"},"arcs":[[16456,-16453,16457,-16331]]},{"type":"Polygon","properties":{"name":"SILVER SPRING","zip":"20904","state":"MD"},"arcs":[[-16456,16458,16459,-16417,-16198,-16332,-16458,-16452]]},{"type":"Polygon","properties":{"name":"SILVER SPRING","zip":"20905","state":"MD"},"arcs":[[-16460,16460,-16412,-16415,-16305,-16416]]},{"type":"Polygon","properties":{"name":"SILVER SPRING","zip":"20906","state":"MD"},"arcs":[[-16447,-16402,-16405,-16360,-16413,-16461,-16459,-16455]]},{"type":"Polygon","properties":{"name":"SILVER SPRING","zip":"20910","state":"MD"},"arcs":[[-16446,-16454,-16450,16461,-15861,-16347]]},{"type":"Polygon","properties":{"name":"TAKOMA PARK","zip":"20912","state":"MD"},"arcs":[[-15855,-15862,-16462,-16449,-16457,-16330]]},{"type":"Polygon","properties":{"name":"ABERDEEN","zip":"21001","state":"MD"},"arcs":[[16462,16463,16464,16465,16466,16467]]},{"type":"Polygon","properties":{"name":"ABERDEEN PROVING GROUND","zip":"21005","state":"MD"},"arcs":[[-16467,16468,16469]]},{"type":"Polygon","properties":{"name":"ABINGDON","zip":"21009","state":"MD"},"arcs":[[16470,16471,16472,16473,16474]]},{"type":"Polygon","properties":{"name":"GUNPOWDER","zip":"21010","state":"MD"},"arcs":[[16475,16476,16477]]},{"type":"Polygon","properties":{"name":"ARNOLD","zip":"21012","state":"MD"},"arcs":[[16478,16479,16480,16481]]},{"type":"Polygon","properties":{"name":"BALDWIN","zip":"21013","state":"MD"},"arcs":[[16482,16483,16484,16485,16486,16487]]},{"type":"Polygon","properties":{"name":"BEL AIR","zip":"21014","state":"MD"},"arcs":[[16488,16489,16490,16491]]},{"type":"Polygon","properties":{"name":"BEL AIR","zip":"21015","state":"MD"},"arcs":[[16492,-16473,16493,-16489,16494,16495,16496,16497,-16464]]},{"type":"Polygon","properties":{"name":"BELCAMP","zip":"21017","state":"MD"},"arcs":[[-16474,-16493,-16463,16498]]},{"type":"Polygon","properties":{"name":"CHURCHVILLE","zip":"21028","state":"MD"},"arcs":[[16499,16500,-16465,-16498]]},{"type":"Polygon","properties":{"name":"CLARKSVILLE","zip":"21029","state":"MD"},"arcs":[[16501,-16253,-16307,-16323,-16369,16502,16503]]},{"type":"Polygon","properties":{"name":"COCKEYSVILLE","zip":"21030","state":"MD"},"arcs":[[16504,16505,16506,16507,16508]]},{"type":"Polygon","properties":{"name":"CROWNSVILLE","zip":"21032","state":"MD"},"arcs":[[16509,16510,16511,16512,16513]]},{"type":"Polygon","properties":{"name":"DARLINGTON","zip":"21034","state":"MD"},"arcs":[[16514,16515,16516,16517,16518,-16500,-16497]]},{"type":"Polygon","properties":{"name":"DAVIDSONVILLE","zip":"21035","state":"MD"},"arcs":[[16519,-16318,-16315,-16241,-16234,16520,-16511,16521,16522]]},{"type":"Polygon","properties":{"name":"DAYTON","zip":"21036","state":"MD"},"arcs":[[-16368,16523,16524,-16503]]},{"type":"Polygon","properties":{"name":"EDGEWATER","zip":"21037","state":"MD"},"arcs":[[-16520,16525,-16319]]},{"type":"Polygon","properties":{"name":"EDGEWOOD","zip":"21040","state":"MD"},"arcs":[[16526,-16471,16527,-16477]]},{"type":"Polygon","properties":{"name":"ELLICOTT CITY","zip":"21042","state":"MD"},"arcs":[[16528,-16504,-16525,16529,16530,16531,16532,16533]]},{"type":"Polygon","properties":{"name":"ELLICOTT CITY","zip":"21043","state":"MD"},"arcs":[[16534,-16534,16535,16536,16537]]},{"type":"Polygon","properties":{"name":"COLUMBIA","zip":"21044","state":"MD"},"arcs":[[16538,-16254,-16502,-16529,16539]]},{"type":"Polygon","properties":{"name":"COLUMBIA","zip":"21045","state":"MD"},"arcs":[[16540,16541,-16540,-16535]]},{"type":"Polygon","properties":{"name":"COLUMBIA","zip":"21046","state":"MD"},"arcs":[[-16255,-16539,-16542,16542,-16334]]},{"type":"Polygon","properties":{"name":"FALLSTON","zip":"21047","state":"MD"},"arcs":[[16543,16544,-16488,16545,16546,16547,-16491]]},{"type":"Polygon","properties":{"name":"FINKSBURG","zip":"21048","state":"MD"},"arcs":[[16548,16549,16550,16551,16552]]},{"type":"Polygon","properties":{"name":"FOREST HILL","zip":"21050","state":"MD"},"arcs":[[-16548,16553,16554,-16495,-16492]]},{"type":"Polygon","properties":{"name":"FREELAND","zip":"21053","state":"MD"},"arcs":[[16555,16556,-13936,-13966]]},{"type":"Polygon","properties":{"name":"GAMBRILLS","zip":"21054","state":"MD"},"arcs":[[16557,16558,16559,16560,-16512,-16521,-16238]]},{"type":"Polygon","properties":{"name":"GLEN ARM","zip":"21057","state":"MD"},"arcs":[[16561,16562,16563,16564,16565,-16485,16566,16567]]},{"type":"Polygon","properties":{"name":"GLEN BURNIE","zip":"21060","state":"MD"},"arcs":[[16568,16569,16570,16571,16572,16573,16574]]},{"type":"Polygon","properties":{"name":"GLEN BURNIE","zip":"21061","state":"MD"},"arcs":[[16575,16576,16577,16578,16579,16580,16581,-16570]]},{"type":"Polygon","properties":{"name":"GLYNDON","zip":"21071","state":"MD"},"arcs":[[16582,-16506]]},{"type":"Polygon","properties":{"name":"HAMPSTEAD","zip":"21074","state":"MD"},"arcs":[[16583,16584,16585,16586,-16552]]},{"type":"Polygon","properties":{"name":"ELKRIDGE","zip":"21075","state":"MD"},"arcs":[[-16541,-16538,16587,16588,16589,-16335,-16543]]},{"type":"MultiPolygon","properties":{"name":"HANOVER","zip":"21076","state":"MD"},"arcs":[[[-16590,16590,16591,16592,16593,16594,-16336]],[[16595,-16579,16596]]]},{"type":"Polygon","properties":{"name":"HARMANS","zip":"21077","state":"MD"},"arcs":[[16593,16597,16598]]},{"type":"Polygon","properties":{"name":"HAVRE DE GRACE","zip":"21078","state":"MD"},"arcs":[[-16501,-16519,16599,16600,16601,-16469,-16466]]},{"type":"Polygon","properties":{"name":"HYDES","zip":"21082","state":"MD"},"arcs":[[16602,-16567,-16484]]},{"type":"Polygon","properties":{"name":"JARRETTSVILLE","zip":"21084","state":"MD"},"arcs":[[-16547,16603,16604,16605,-16554]]},{"type":"Polygon","properties":{"name":"JOPPA","zip":"21085","state":"MD"},"arcs":[[-16476,16606,16607,16608,-16544,-16490,-16494,-16472,-16527]]},{"type":"Polygon","properties":{"name":"KINGSVILLE","zip":"21087","state":"MD"},"arcs":[[16609,-16568,-16603,-16483,-16545,-16609,16610]]},{"type":"Polygon","properties":{"name":"LINTHICUM HEIGHTS","zip":"21090","state":"MD"},"arcs":[[16611,16612,-16581,16613,-16592]]},{"type":"Polygon","properties":{"name":"LUTHERVILLE TIMONIUM","zip":"21093","state":"MD"},"arcs":[[16614,16615,16616,16617,16618,-16509,16619]]},{"type":"Polygon","properties":{"name":"MANCHESTER","zip":"21102","state":"MD"},"arcs":[[16620,16621,-13947,-13944,-13937,-16557,16622,-16585]]},{"type":"Polygon","properties":{"name":"MARRIOTTSVILLE","zip":"21104","state":"MD"},"arcs":[[16623,16624,16625,16626,16627,16628,-16531]]},{"type":"Polygon","properties":{"name":"MILLERSVILLE","zip":"21108","state":"MD"},"arcs":[[-16513,-16561,16629,-16577,16630,16631,16632]]},{"type":"Polygon","properties":{"name":"MONKTON","zip":"21111","state":"MD"},"arcs":[[16633,16634,16635,16636,-16604,-16546,-16487]]},{"type":"Polygon","properties":{"name":"ODENTON","zip":"21113","state":"MD"},"arcs":[[-16558,-16237,-16302,16637,-16559]]},{"type":"Polygon","properties":{"name":"OWINGS MILLS","zip":"21117","state":"MD"},"arcs":[[16638,16639,-16627,16640,-16618]]},{"type":"Polygon","properties":{"name":"PARKTON","zip":"21120","state":"MD"},"arcs":[[16641,-16586,-16623,-16556,-13965,-13980,16642,-16636,16643]]},{"type":"Polygon","properties":{"name":"PASADENA","zip":"21122","state":"MD"},"arcs":[[16644,-16631,-16576,-16569,16645]]},{"type":"Polygon","properties":{"name":"PERRY HALL","zip":"21128","state":"MD"},"arcs":[[16646,16647,16648,-16562,-16610]]},{"type":"Polygon","properties":{"name":"PHOENIX","zip":"21131","state":"MD"},"arcs":[[-16508,16649,-16634,-16486,-16566,16650,-16620]]},{"type":"Polygon","properties":{"name":"PYLESVILLE","zip":"21132","state":"MD"},"arcs":[[16651,-13969,-13921,16652,16653]]},{"type":"Polygon","properties":{"name":"RANDALLSTOWN","zip":"21133","state":"MD"},"arcs":[[16654,16655,-16628,-16640,16656]]},{"type":"Polygon","properties":{"name":"REISTERSTOWN","zip":"21136","state":"MD"},"arcs":[[16657,-16549,16658,16659,-16583,-16505,-16619,-16641,-16626]]},{"type":"Polygon","properties":{"name":"SEVERN","zip":"21144","state":"MD"},"arcs":[[-16301,-16595,16597,-16597,-16578,-16630,-16560,-16638]]},{"type":"Polygon","properties":{"name":"SEVERNA PARK","zip":"21146","state":"MD"},"arcs":[[-16632,-16645,16660,-16479,16661]]},{"type":"Polygon","properties":{"name":"SPARKS GLENCOE","zip":"21152","state":"MD"},"arcs":[[-16660,16662,-16644,-16635,-16650,-16507]]},{"type":"Polygon","properties":{"name":"STREET","zip":"21154","state":"MD"},"arcs":[[-16606,16663,-16654,16664,-16515,-16496,-16555]]},{"type":"Polygon","properties":{"name":"UPPERCO","zip":"21155","state":"MD"},"arcs":[[-16587,-16642,-16663,-16659,-16553]]},{"type":"Polygon","properties":{"name":"WESTMINSTER","zip":"21157","state":"MD"},"arcs":[[16665,16666,16667,-16621,-16584,-16551,16668,16669]]},{"type":"Polygon","properties":{"name":"WESTMINSTER","zip":"21158","state":"MD"},"arcs":[[16670,16671,-13954,-13948,-16622,-16668,16672]]},{"type":"Polygon","properties":{"name":"WHITEFORD","zip":"21160","state":"MD"},"arcs":[[-16665,-16653,-13920,-13900,16673,16674,-16516]]},{"type":"Polygon","properties":{"name":"WHITE HALL","zip":"21161","state":"MD"},"arcs":[[-13979,-13970,-16652,-16664,-16605,-16637,-16643]]},{"type":"Polygon","properties":{"name":"WHITE MARSH","zip":"21162","state":"MD"},"arcs":[[-16611,-16608,16675,16676,16677,-16647]]},{"type":"Polygon","properties":{"name":"WOODSTOCK","zip":"21163","state":"MD"},"arcs":[[-16629,-16656,16678,-16532]]},{"type":"Polygon","properties":{"name":"BALTIMORE","zip":"21201","state":"MD"},"arcs":[[16679,16680,16681,16682,16683]]},{"type":"Polygon","properties":{"name":"BALTIMORE","zip":"21202","state":"MD"},"arcs":[[16684,16685,16686,16687,16688,16689,-16683]]},{"type":"Polygon","properties":{"name":"TOWSON","zip":"21204","state":"MD"},"arcs":[[16690,16691,-16616,16692,16693]]},{"type":"Polygon","properties":{"name":"BALTIMORE","zip":"21205","state":"MD"},"arcs":[[16694,-16687,16695,16696,16697,16698]]},{"type":"Polygon","properties":{"name":"BALTIMORE","zip":"21206","state":"MD"},"arcs":[[16699,16700,16701,16702,16703,16704,-16697]]},{"type":"Polygon","properties":{"name":"GWYNN OAK","zip":"21207","state":"MD"},"arcs":[[16705,16706,16707,16708,16709,16710]]},{"type":"Polygon","properties":{"name":"PIKESVILLE","zip":"21208","state":"MD"},"arcs":[[16711,-16657,-16639,-16617,-16692,16712,16713,-16707]]},{"type":"Polygon","properties":{"name":"BALTIMORE","zip":"21209","state":"MD"},"arcs":[[16714,16715,16716,-16713,-16691,16717]]},{"type":"Polygon","properties":{"name":"BALTIMORE","zip":"21210","state":"MD"},"arcs":[[16718,-16715,16719,16720]]},{"type":"Polygon","properties":{"name":"BALTIMORE","zip":"21211","state":"MD"},"arcs":[[16721,16722,16723,-16716,-16719]]},{"type":"Polygon","properties":{"name":"BALTIMORE","zip":"21212","state":"MD"},"arcs":[[-16718,-16694,16724,16725,-16720]]},{"type":"Polygon","properties":{"name":"BALTIMORE","zip":"21213","state":"MD"},"arcs":[[16726,-16700,-16696,-16686]]},{"type":"Polygon","properties":{"name":"BALTIMORE","zip":"21214","state":"MD"},"arcs":[[16727,16728,16729,16730,-16702]]},{"type":"Polygon","properties":{"name":"BALTIMORE","zip":"21215","state":"MD"},"arcs":[[16731,16732,-16708,-16714,-16717,-16724]]},{"type":"Polygon","properties":{"name":"BALTIMORE","zip":"21216","state":"MD"},"arcs":[[16733,16734,-16709,-16733,16735]]},{"type":"Polygon","properties":{"name":"BALTIMORE","zip":"21217","state":"MD"},"arcs":[[16736,-16736,-16732,-16723,-16681]]},{"type":"Polygon","properties":{"name":"BALTIMORE","zip":"21218","state":"MD"},"arcs":[[-16685,-16682,-16722,-16721,-16726,16737,16738,-16728,-16701,-16727]]},{"type":"Polygon","properties":{"name":"SPARROWS POINT","zip":"21219","state":"MD"},"arcs":[[16739,16740]]},{"type":"Polygon","properties":{"name":"MIDDLE RIVER","zip":"21220","state":"MD"},"arcs":[[16741,16742,-16677,16743]]},{"type":"Polygon","properties":{"name":"ESSEX","zip":"21221","state":"MD"},"arcs":[[16744,-16742,16745]]},{"type":"Polygon","properties":{"name":"DUNDALK","zip":"21222","state":"MD"},"arcs":[[16746,16747,-16740,16748]]},{"type":"Polygon","properties":{"name":"BALTIMORE","zip":"21223","state":"MD"},"arcs":[[16749,-16734,-16737,-16680,16750,16751]]},{"type":"Polygon","properties":{"name":"BALTIMORE","zip":"21224","state":"MD"},"arcs":[[16752,-16699,16753,16754,-16747,16755]]},{"type":"Polygon","properties":{"name":"BROOKLYN","zip":"21225","state":"MD"},"arcs":[[-16582,-16613,16756,16757,16758,16759,-16571]]},{"type":"MultiPolygon","properties":{"name":"CURTIS BAY","zip":"21226","state":"MD"},"arcs":[[[-16572,-16760,16760]],[[-16574,16761]]]},{"type":"Polygon","properties":{"name":"HALETHORPE","zip":"21227","state":"MD"},"arcs":[[-16612,-16591,-16589,16762,16763,-16752,16764,-16757]]},{"type":"Polygon","properties":{"name":"CATONSVILLE","zip":"21228","state":"MD"},"arcs":[[16765,-16711,16766,-16763,-16588,-16537]]},{"type":"Polygon","properties":{"name":"BALTIMORE","zip":"21229","state":"MD"},"arcs":[[-16710,-16735,-16750,-16764,-16767]]},{"type":"Polygon","properties":{"name":"BALTIMORE","zip":"21230","state":"MD"},"arcs":[[-16758,-16765,-16751,-16684,-16690,16767]]},{"type":"Polygon","properties":{"name":"BALTIMORE","zip":"21231","state":"MD"},"arcs":[[-16695,-16753,16768,-16688]]},{"type":"Polygon","properties":{"name":"PARKVILLE","zip":"21234","state":"MD"},"arcs":[[16769,-16703,-16731,16770,16771,-16564]]},{"type":"Polygon","properties":{"name":"NOTTINGHAM","zip":"21236","state":"MD"},"arcs":[[16772,-16704,-16770,-16563,-16649]]},{"type":"Polygon","properties":{"name":"ROSEDALE","zip":"21237","state":"MD"},"arcs":[[-16754,-16698,-16705,-16773,-16648,-16678,-16743,-16745,16773]]},{"type":"Polygon","properties":{"name":"BALTIMORE","zip":"21239","state":"MD"},"arcs":[[16774,-16738,-16725,16775,-16771,-16730]]},{"type":"Polygon","properties":{"name":"BALTIMORE","zip":"21240","state":"MD"},"arcs":[[-16593,-16614,-16580,-16596,16598]]},{"type":"Polygon","properties":{"name":"WINDSOR MILL","zip":"21244","state":"MD"},"arcs":[[-16533,-16679,-16655,-16712,-16706,-16766,-16536]]},{"type":"Polygon","properties":{"name":"BALTIMORE","zip":"21251","state":"MD"},"arcs":[[-16775,-16729,-16739]]},{"type":"Polygon","properties":{"name":"TOWSON","zip":"21286","state":"MD"},"arcs":[[-16615,-16651,-16565,-16772,-16776,-16693]]},{"type":"MultiPolygon","properties":{"name":"ANNAPOLIS","zip":"21401","state":"MD"},"arcs":[[[-16481,16776]],[[-16522,-16510,16777,16778,16779]]]},{"type":"Polygon","properties":{"name":"ANNAPOLIS","zip":"21403","state":"MD"},"arcs":[[-16779,16780]]},{"type":"Polygon","properties":{"name":"CUMBERLAND","zip":"21502","state":"MD"},"arcs":[[16781,16782,16783,-12303,-12258,-12285,16784,16785,16786,16787,16788,16789]]},{"type":"Polygon","properties":{"name":"ACCIDENT","zip":"21520","state":"MD"},"arcs":[[16790,16791,16792,16793,16794]]},{"type":"Polygon","properties":{"name":"BARTON","zip":"21521","state":"MD"},"arcs":[[16795,16796,16797,16798,16799]]},{"type":"Polygon","properties":{"name":"BITTINGER","zip":"21522","state":"MD"},"arcs":[[16800,-16795,16801]]},{"type":"Polygon","properties":{"name":"BLOOMINGTON","zip":"21523","state":"MD"},"arcs":[[16802,16803,-16798,16804,16805]]},{"type":"Polygon","properties":{"name":"FLINTSTONE","zip":"21530","state":"MD"},"arcs":[[-12284,-13787,16806,16807,-16785]]},{"type":"Polygon","properties":{"name":"FRIENDSVILLE","zip":"21531","state":"MD"},"arcs":[[16808,16809,16810,16811,-12220,-12141,16812,-16793]]},{"type":"Polygon","properties":{"name":"FROSTBURG","zip":"21532","state":"MD"},"arcs":[[16813,16814,16815,-12321,-12311,16816,-16783]]},{"type":"Polygon","properties":{"name":"GRANTSVILLE","zip":"21536","state":"MD"},"arcs":[[16817,-16802,-16794,-16813,-12140,-12313,-12322,-16816,16818,-16800]]},{"type":"Polygon","properties":{"name":"KITZMILLER","zip":"21538","state":"MD"},"arcs":[[16819,16820,16821]]},{"type":"Polygon","properties":{"name":"LONACONING","zip":"21539","state":"MD"},"arcs":[[16822,16823,-16796,-16819,-16815]]},{"type":"Polygon","properties":{"name":"LUKE","zip":"21540","state":"MD"},"arcs":[[16824,16825,-16806,16826]]},{"type":"Polygon","properties":{"name":"MC HENRY","zip":"21541","state":"MD"},"arcs":[[16827,16828,-16809,-16792]]},{"type":"Polygon","properties":{"name":"MOUNT SAVAGE","zip":"21545","state":"MD"},"arcs":[[-12310,-12304,-16784,-16817]]},{"type":"Polygon","properties":{"name":"OAKLAND","zip":"21550","state":"MD"},"arcs":[[16829,16830,16831,16832,16833,-16810,-16829,16834,-16820]]},{"type":"Polygon","properties":{"name":"OLDTOWN","zip":"21555","state":"MD"},"arcs":[[-16808,16835,16836,16837,16838,16839,16840,-16786]]},{"type":"Polygon","properties":{"name":"RAWLINGS","zip":"21557","state":"MD"},"arcs":[[16841,-16823,-16814,-16782,16842,16843]]},{"type":"Polygon","properties":{"name":"SWANTON","zip":"21561","state":"MD"},"arcs":[[-16828,-16791,-16801,-16818,-16799,-16804,16844,16845,-16821,-16835]]},{"type":"Polygon","properties":{"name":"WESTERNPORT","zip":"21562","state":"MD"},"arcs":[[-16805,-16797,-16824,-16842,16846,16847,-16827]]},{"type":"Polygon","properties":{"name":"EASTON","zip":"21601","state":"MD"},"arcs":[[16848,16849,16850,16851,16852,16853,16854,16855,16856,16857,16858]]},{"type":"Polygon","properties":{"name":"BARCLAY","zip":"21607","state":"MD"},"arcs":[[16859,16860,16861,16862]]},{"type":"Polygon","properties":{"name":"BETTERTON","zip":"21610","state":"MD"},"arcs":[[16863,16864,16865,16866]]},{"type":"Polygon","properties":{"name":"BOZMAN","zip":"21612","state":"MD"},"arcs":[[16867,16868]]},{"type":"Polygon","properties":{"name":"CAMBRIDGE","zip":"21613","state":"MD"},"arcs":[[16869,16870,16871,16872,16873,16874,16875,16876]]},{"type":"Polygon","properties":{"name":"CENTREVILLE","zip":"21617","state":"MD"},"arcs":[[16877,16878,16879,16880,16881]]},{"type":"Polygon","properties":{"name":"CHESTER","zip":"21619","state":"MD"},"arcs":[[16882,16883]]},{"type":"Polygon","properties":{"name":"CHESTERTOWN","zip":"21620","state":"MD"},"arcs":[[16884,16885,16886,16887,16888,16889,16890,16891]]},{"type":"Polygon","properties":{"name":"CHURCH CREEK","zip":"21622","state":"MD"},"arcs":[[16892,16893,16894,16895,16896,16897,-16870]]},{"type":"Polygon","properties":{"name":"CHURCH HILL","zip":"21623","state":"MD"},"arcs":[[16898,-16878,16899,-16891,16900]]},{"type":"Polygon","properties":{"name":"CORDOVA","zip":"21625","state":"MD"},"arcs":[[16901,-16853,16902,16903]]},{"type":"Polygon","properties":{"name":"CRAPO","zip":"21626","state":"MD"},"arcs":[[16904,16905,16906,-16893,-16877,16907]]},{"type":"Polygon","properties":{"name":"DENTON","zip":"21629","state":"MD"},"arcs":[[-16902,16908,16909,16910,-15778,-15769,16911,16912,-16854]]},{"type":"Polygon","properties":{"name":"EAST NEW MARKET","zip":"21631","state":"MD"},"arcs":[[16913,16914,16915,-16873,16916]]},{"type":"Polygon","properties":{"name":"FEDERALSBURG","zip":"21632","state":"MD"},"arcs":[[16917,16918,-16912,-15768,-15713,-15807,16919]]},{"type":"Polygon","properties":{"name":"GALENA","zip":"21635","state":"MD"},"arcs":[[16920,16921,16922,16923,16924,16925,-15661]]},{"type":"Polygon","properties":{"name":"GOLDSBORO","zip":"21636","state":"MD"},"arcs":[[-15747,16926,16927,16928]]},{"type":"Polygon","properties":{"name":"GRASONVILLE","zip":"21638","state":"MD"},"arcs":[[16929,16930]]},{"type":"Polygon","properties":{"name":"GREENSBORO","zip":"21639","state":"MD"},"arcs":[[-15746,-15779,-16911,16931,-16927]]},{"type":"Polygon","properties":{"name":"HENDERSON","zip":"21640","state":"MD"},"arcs":[[16932,16933,-16879,-16863,16934,-15797,-15722,-16929]]},{"type":"Polygon","properties":{"name":"HURLOCK","zip":"21643","state":"MD"},"arcs":[[16935,-16918,16936,-16914,16937]]},{"type":"Polygon","properties":{"name":"INGLESIDE","zip":"21644","state":"MD"},"arcs":[[-16899,16938,-16860]]},{"type":"Polygon","properties":{"name":"KENNEDYVILLE","zip":"21645","state":"MD"},"arcs":[[16939,-16888,16940,16941,-16867,16942,-16923]]},{"type":"Polygon","properties":{"name":"MCDANIEL","zip":"21647","state":"MD"},"arcs":[[16943,16944,16945,16946]]},{"type":"Polygon","properties":{"name":"MADISON","zip":"21648","state":"MD"},"arcs":[[16947,-16897,16948]]},{"type":"Polygon","properties":{"name":"MARYDEL","zip":"21649","state":"MD"},"arcs":[[-15783,-15798,-16935,-16862,16949]]},{"type":"Polygon","properties":{"name":"MASSEY","zip":"21650","state":"MD"},"arcs":[[16950,-16921,-15726]]},{"type":"Polygon","properties":{"name":"MILLINGTON","zip":"21651","state":"MD"},"arcs":[[-16940,-16922,-16951,-15725,16951,-16889]]},{"type":"Polygon","properties":{"name":"OXFORD","zip":"21654","state":"MD"},"arcs":[[-16858,16952,16953]]},{"type":"Polygon","properties":{"name":"PRESTON","zip":"21655","state":"MD"},"arcs":[[-16855,-16913,-16919,-16936,16954]]},{"type":"Polygon","properties":{"name":"QUEEN ANNE","zip":"21657","state":"MD"},"arcs":[[16955,16956,-16880,-16934,16957,-16909,-16904,16958]]},{"type":"Polygon","properties":{"name":"QUEENSTOWN","zip":"21658","state":"MD"},"arcs":[[16959,16960,-16930,16961,-16881,-16957]]},{"type":"Polygon","properties":{"name":"RHODESDALE","zip":"21659","state":"MD"},"arcs":[[16962,-16915,-16937,-16920,-15806,16963,16964]]},{"type":"Polygon","properties":{"name":"RIDGELY","zip":"21660","state":"MD"},"arcs":[[-16933,-16928,-16932,-16910,-16958]]},{"type":"Polygon","properties":{"name":"ROCK HALL","zip":"21661","state":"MD"},"arcs":[[-16885,16965]]},{"type":"Polygon","properties":{"name":"ROYAL OAK","zip":"21662","state":"MD"},"arcs":[[-16849,16966]]},{"type":"Polygon","properties":{"name":"SAINT MICHAELS","zip":"21663","state":"MD"},"arcs":[[-16851,16967,-16868,16968,-16946,16969]]},{"type":"Polygon","properties":{"name":"SHERWOOD","zip":"21665","state":"MD"},"arcs":[[16970,16971,16972,16973]]},{"type":"Polygon","properties":{"name":"STEVENSVILLE","zip":"21666","state":"MD"},"arcs":[[-16883,16974]]},{"type":"Polygon","properties":{"name":"STILL POND","zip":"21667","state":"MD"},"arcs":[[16975,-16864,-16942]]},{"type":"Polygon","properties":{"name":"SUDLERSVILLE","zip":"21668","state":"MD"},"arcs":[[-16861,-16939,-16901,-16890,-16952,-15724,-15784,-16950]]},{"type":"Polygon","properties":{"name":"TAYLORS ISLAND","zip":"21669","state":"MD"},"arcs":[[-16895,16976]]},{"type":"Polygon","properties":{"name":"TILGHMAN","zip":"21671","state":"MD"},"arcs":[[-16971,16977]]},{"type":"Polygon","properties":{"name":"TODDVILLE","zip":"21672","state":"MD"},"arcs":[[16978,-16905,16979]]},{"type":"Polygon","properties":{"name":"TRAPPE","zip":"21673","state":"MD"},"arcs":[[-16953,-16857,16980]]},{"type":"Polygon","properties":{"name":"WINGATE","zip":"21675","state":"MD"},"arcs":[[-16906,-16979,16981]]},{"type":"Polygon","properties":{"name":"WITTMAN","zip":"21676","state":"MD"},"arcs":[[-16944,16982,-16973,16983]]},{"type":"Polygon","properties":{"name":"WOOLFORD","zip":"21677","state":"MD"},"arcs":[[-16898,-16948,16984,-16871]]},{"type":"Polygon","properties":{"name":"WORTON","zip":"21678","state":"MD"},"arcs":[[-16865,-16976,-16941,-16887,16985]]},{"type":"Polygon","properties":{"name":"WYE MILLS","zip":"21679","state":"MD"},"arcs":[[-16960,-16956,16986]]},{"type":"Polygon","properties":{"name":"FREDERICK","zip":"21701","state":"MD"},"arcs":[[16987,16988,16989,16990,16991,16992,16993,16994,16995]]},{"type":"Polygon","properties":{"name":"FREDERICK","zip":"21702","state":"MD"},"arcs":[[16996,16997,16998,16999,-16989]]},{"type":"Polygon","properties":{"name":"FREDERICK","zip":"21703","state":"MD"},"arcs":[[17000,17001,17002,17003,-16997,-16988]]},{"type":"Polygon","properties":{"name":"FREDERICK","zip":"21704","state":"MD"},"arcs":[[17004,-16388,17005,-17001,-16996]]},{"type":"Polygon","properties":{"name":"ADAMSTOWN","zip":"21710","state":"MD"},"arcs":[[17006,17007,-17002,-17006,-16387,17008]]},{"type":"Polygon","properties":{"name":"BIG POOL","zip":"21711","state":"MD"},"arcs":[[17009,17010,17011,-13845]]},{"type":"Polygon","properties":{"name":"BOONSBORO","zip":"21713","state":"MD"},"arcs":[[17012,17013,17014,17015,17016,17017,17018]]},{"type":"Polygon","properties":{"name":"CASCADE","zip":"21719","state":"MD"},"arcs":[[17019,-13872,-13801,17020]]},{"type":"Polygon","properties":{"name":"CLEAR SPRING","zip":"21722","state":"MD"},"arcs":[[-13844,17021,17022,17023,-17010]]},{"type":"Polygon","properties":{"name":"COOKSVILLE","zip":"21723","state":"MD"},"arcs":[[17024,17025,17026,17027]]},{"type":"Polygon","properties":{"name":"EMMITSBURG","zip":"21727","state":"MD"},"arcs":[[17028,17029,-13918,-13934,17030,17031,17032]]},{"type":"Polygon","properties":{"name":"FAIRPLAY","zip":"21733","state":"MD"},"arcs":[[17033,17034,17035,-17015]]},{"type":"Polygon","properties":{"name":"GLENELG","zip":"21737","state":"MD"},"arcs":[[17036,17037,-16524,-16367]]},{"type":"Polygon","properties":{"name":"GLENWOOD","zip":"21738","state":"MD"},"arcs":[[-16366,17038,-17026,17039,-17037]]},{"type":"Polygon","properties":{"name":"HAGERSTOWN","zip":"21740","state":"MD"},"arcs":[[17040,-17022,-13834,17041,17042,-17016,-17036]]},{"type":"Polygon","properties":{"name":"HAGERSTOWN","zip":"21742","state":"MD"},"arcs":[[17043,-17042,-13833,-13874]]},{"type":"Polygon","properties":{"name":"HANCOCK","zip":"21750","state":"MD"},"arcs":[[17044,-13869,-13846,-17012,17045]]},{"type":"Polygon","properties":{"name":"IJAMSVILLE","zip":"21754","state":"MD"},"arcs":[[-16389,-17005,17046,17047,-16421,-16418]]},{"type":"Polygon","properties":{"name":"JEFFERSON","zip":"21755","state":"MD"},"arcs":[[17048,17049,17050,17051,17052,-17054,17054,-17003,-17008]]},{"type":"Polygon","properties":{"name":"KEEDYSVILLE","zip":"21756","state":"MD"},"arcs":[[17055,17056,-17013,17057]]},{"type":"Polygon","properties":{"name":"KEYMAR","zip":"21757","state":"MD"},"arcs":[[17058,17059,17060,-17032,17061]]},{"type":"Polygon","properties":{"name":"KNOXVILLE","zip":"21758","state":"MD"},"arcs":[[17062,-17056,17063,-17052,17064]]},{"type":"Polygon","properties":{"name":"LITTLE ORLEANS","zip":"21766","state":"MD"},"arcs":[[-16807,-13786,-13870,-17045,17065,17066,-16836]]},{"type":"Polygon","properties":{"name":"MIDDLETOWN","zip":"21769","state":"MD"},"arcs":[[17067,-17018,17068,-16998,-17004,-17055,-17070]]},{"type":"Polygon","properties":{"name":"MONROVIA","zip":"21770","state":"MD"},"arcs":[[-17048,17070,17071,-16422]]},{"type":"Polygon","properties":{"name":"MOUNT AIRY","zip":"21771","state":"MD"},"arcs":[[17072,-16444,-16423,-17072,17073,-16994,17074,17075,-16666]]},{"type":"Polygon","properties":{"name":"MYERSVILLE","zip":"21773","state":"MD"},"arcs":[[-17043,17076,17077,-16999,-17069,-17017]]},{"type":"Polygon","properties":{"name":"NEW MARKET","zip":"21774","state":"MD"},"arcs":[[-17071,-17047,-16995,-17074]]},{"type":"Polygon","properties":{"name":"NEW WINDSOR","zip":"21776","state":"MD"},"arcs":[[-17076,17078,-16673,-16667]]},{"type":"Polygon","properties":{"name":"POINT OF ROCKS","zip":"21777","state":"MD"},"arcs":[[17079,-17049,-17007]]},{"type":"Polygon","properties":{"name":"ROCKY RIDGE","zip":"21778","state":"MD"},"arcs":[[17080,17081,-17033,-17061]]},{"type":"Polygon","properties":{"name":"ROHRERSVILLE","zip":"21779","state":"MD"},"arcs":[[-17053,-17064,-17058,-17019,-17068,-17083]]},{"type":"Polygon","properties":{"name":"SABILLASVILLE","zip":"21780","state":"MD"},"arcs":[[17083,-17021,-13800,-13919,-17030,17084]]},{"type":"Polygon","properties":{"name":"SHARPSBURG","zip":"21782","state":"MD"},"arcs":[[-17063,17085,17086,-17034,-17014,-17057]]},{"type":"Polygon","properties":{"name":"SMITHSBURG","zip":"21783","state":"MD"},"arcs":[[17087,-17077,-17044,-13873,-17020,-17084]]},{"type":"Polygon","properties":{"name":"SYKESVILLE","zip":"21784","state":"MD"},"arcs":[[17088,-16669,-16550,-16658,-16625,17089,-17028]]},{"type":"Polygon","properties":{"name":"TANEYTOWN","zip":"21787","state":"MD"},"arcs":[[-17031,-13933,-13955,-16672,17090,-17062]]},{"type":"Polygon","properties":{"name":"THURMONT","zip":"21788","state":"MD"},"arcs":[[-17078,-17088,-17085,-17029,-17082,17091,17092,-16990,-17000]]},{"type":"Polygon","properties":{"name":"TUSCARORA","zip":"21790","state":"MD"},"arcs":[[-17050,-17080,-17009,-16386,17093]]},{"type":"Polygon","properties":{"name":"UNION BRIDGE","zip":"21791","state":"MD"},"arcs":[[17094,-17059,-17091,-16671,-17079,-17075,-16993]]},{"type":"Polygon","properties":{"name":"WALKERSVILLE","zip":"21793","state":"MD"},"arcs":[[-17093,17095,-16991]]},{"type":"Polygon","properties":{"name":"WEST FRIENDSHIP","zip":"21794","state":"MD"},"arcs":[[-17025,-17090,-16624,-16530,-17038,-17040]]},{"type":"Polygon","properties":{"name":"WILLIAMSPORT","zip":"21795","state":"MD"},"arcs":[[-17023,-17041,-17035,-17087,17096]]},{"type":"Polygon","properties":{"name":"WOODBINE","zip":"21797","state":"MD"},"arcs":[[-16365,-16445,-17073,-16670,-17089,-17027,-17039]]},{"type":"Polygon","properties":{"name":"WOODSBORO","zip":"21798","state":"MD"},"arcs":[[-17092,-17081,-17060,-17095,-16992,-17096]]},{"type":"Polygon","properties":{"name":"SALISBURY","zip":"21801","state":"MD"},"arcs":[[17097,17098,17099,17100,17101,-15734,17102]]},{"type":"Polygon","properties":{"name":"SALISBURY","zip":"21804","state":"MD"},"arcs":[[17103,17104,17105,17106,-17098,17107,17108]]},{"type":"Polygon","properties":{"name":"BERLIN","zip":"21811","state":"MD"},"arcs":[[17109,17110,17111,17112,17113,17114,17115]]},{"type":"Polygon","properties":{"name":"BISHOPVILLE","zip":"21813","state":"MD"},"arcs":[[-15809,17116,-17114,17117]]},{"type":"Polygon","properties":{"name":"BIVALVE","zip":"21814","state":"MD"},"arcs":[[17118,17119,17120]]},{"type":"Polygon","properties":{"name":"CRISFIELD","zip":"21817","state":"MD"},"arcs":[[17121,17122]]},{"type":"Polygon","properties":{"name":"DEAL ISLAND","zip":"21821","state":"MD"},"arcs":[[17123,17124]]},{"type":"Polygon","properties":{"name":"EDEN","zip":"21822","state":"MD"},"arcs":[[17125,17126,17127,17128,-17100,17129,-17106]]},{"type":"Polygon","properties":{"name":"FRUITLAND","zip":"21826","state":"MD"},"arcs":[[-17099,-17107,-17130]]},{"type":"Polygon","properties":{"name":"GIRDLETREE","zip":"21829","state":"MD"},"arcs":[[17130,17131,17132,17133]]},{"type":"Polygon","properties":{"name":"HEBRON","zip":"21830","state":"MD"},"arcs":[[17134,17135,-15735,-17102,17136,17137]]},{"type":"Polygon","properties":{"name":"LINKWOOD","zip":"21835","state":"MD"},"arcs":[[17138,-16874,-16916,-16963]]},{"type":"Polygon","properties":{"name":"MARDELA SPRINGS","zip":"21837","state":"MD"},"arcs":[[17139,-17135,17140,17141,-16964,-15786,-15737]]},{"type":"Polygon","properties":{"name":"MARION STATION","zip":"21838","state":"MD"},"arcs":[[17142,17143,17144,-17122,17145]]},{"type":"Polygon","properties":{"name":"NANTICOKE","zip":"21840","state":"MD"},"arcs":[[-17119,17146,17147]]},{"type":"Polygon","properties":{"name":"NEWARK","zip":"21841","state":"MD"},"arcs":[[17148,-17116,17149]]},{"type":"Polygon","properties":{"name":"OCEAN CITY","zip":"21842","state":"MD"},"arcs":[[-15750,17150]]},{"type":"Polygon","properties":{"name":"PARSONSBURG","zip":"21849","state":"MD"},"arcs":[[17151,-17109,17152,-15732,-15802]]},{"type":"Polygon","properties":{"name":"PITTSVILLE","zip":"21850","state":"MD"},"arcs":[[17153,-17104,-17152,-15801,17154,-17111]]},{"type":"Polygon","properties":{"name":"POCOMOKE CITY","zip":"21851","state":"MD"},"arcs":[[17155,17156,-17144,17157,17158,17159,-17132]]},{"type":"Polygon","properties":{"name":"PRINCESS ANNE","zip":"21853","state":"MD"},"arcs":[[17160,17161,-17124,17162,-17127,17163,-17159]]},{"type":"Polygon","properties":{"name":"QUANTICO","zip":"21856","state":"MD"},"arcs":[[17164,17165,-17137,-17101,-17129,17166]]},{"type":"Polygon","properties":{"name":"SNOW HILL","zip":"21863","state":"MD"},"arcs":[[-17164,-17126,-17105,-17154,-17110,-17149,17167,-17133,-17160]]},{"type":"Polygon","properties":{"name":"STOCKTON","zip":"21864","state":"MD"},"arcs":[[-17131,17168,17169,17170,-17156]]},{"type":"Polygon","properties":{"name":"TYASKIN","zip":"21865","state":"MD"},"arcs":[[-17121,17171,-17165,17172,-17147]]},{"type":"Polygon","properties":{"name":"VIENNA","zip":"21869","state":"MD"},"arcs":[[-17139,-16965,-17142,17173,-16875]]},{"type":"Polygon","properties":{"name":"WESTOVER","zip":"21871","state":"MD"},"arcs":[[-17143,17174,-17161,-17158]]},{"type":"Polygon","properties":{"name":"WHALEYVILLE","zip":"21872","state":"MD"},"arcs":[[17175,-15757,-17118,-17113]]},{"type":"Polygon","properties":{"name":"WILLARDS","zip":"21874","state":"MD"},"arcs":[[-17155,-15800,-17176,-17112]]},{"type":"MultiPolygon","properties":{"name":"DELMAR","zip":"21875","state":"MD"},"arcs":[[[-15736,-17136,-17140]],[[-17103,-15733,-17153,-17108]]]},{"type":"Polygon","properties":{"name":"NORTH EAST","zip":"21901","state":"MD"},"arcs":[[17176,17177,17178,17179,17180,17181]]},{"type":"Polygon","properties":{"name":"PERRYVILLE","zip":"21903","state":"MD"},"arcs":[[17182,-17177,17183,17184,-16601]]},{"type":"Polygon","properties":{"name":"PORT DEPOSIT","zip":"21904","state":"MD"},"arcs":[[-17183,-16600,-16518,17185,17186,17187,-17178]]},{"type":"Polygon","properties":{"name":"RISING SUN","zip":"21911","state":"MD"},"arcs":[[17188,17189,-14093,-15494,-15496,17190,-17179,-17188]]},{"type":"Polygon","properties":{"name":"WARWICK","zip":"21912","state":"MD"},"arcs":[[-15647,-15662,-16926,17191,17192,17193]]},{"type":"Polygon","properties":{"name":"CHARLESTOWN","zip":"21914","state":"MD"},"arcs":[[-17182,17194,-17184]]},{"type":"Polygon","properties":{"name":"CHESAPEAKE CITY","zip":"21915","state":"MD"},"arcs":[[17195,-15633,-15648,-17194,17196]]},{"type":"Polygon","properties":{"name":"COLORA","zip":"21917","state":"MD"},"arcs":[[17197,-17189,-17187]]},{"type":"Polygon","properties":{"name":"CONOWINGO","zip":"21918","state":"MD"},"arcs":[[-16675,17198,-14094,-17190,-17198,-17186,-16517]]},{"type":"Polygon","properties":{"name":"EARLEVILLE","zip":"21919","state":"MD"},"arcs":[[-17192,-16925,17199]]},{"type":"Polygon","properties":{"name":"ELKTON","zip":"21921","state":"MD"},"arcs":[[-17191,-15495,-15487,-15486,-15652,-15657,-15637,-15634,-17196,17200,-17180]]},{"type":"Polygon","properties":{"name":"ANNANDALE","zip":"22003","state":"VA"},"arcs":[[17201,17202,17203,17204,17205,17206,17207]]},{"type":"Polygon","properties":{"name":"BURKE","zip":"22015","state":"VA"},"arcs":[[17208,17209,17210,17211,-17208,17212]]},{"type":"Polygon","properties":{"name":"DUMFRIES","zip":"22026","state":"VA"},"arcs":[[17213,-15930,17214,17215,17216,17217]]},{"type":"Polygon","properties":{"name":"DUNN LORING","zip":"22027","state":"VA"},"arcs":[[17218,17219,17220]]},{"type":"Polygon","properties":{"name":"FAIRFAX","zip":"22030","state":"VA"},"arcs":[[17221,17222,-15955,-15951,17223,17224,17225]]},{"type":"Polygon","properties":{"name":"FAIRFAX","zip":"22031","state":"VA"},"arcs":[[17226,17227,17228,17229,-17203,17230,-17226]]},{"type":"Polygon","properties":{"name":"FAIRFAX","zip":"22032","state":"VA"},"arcs":[[17231,-17222,-17231,-17202,-17212]]},{"type":"Polygon","properties":{"name":"FAIRFAX","zip":"22033","state":"VA"},"arcs":[[-15999,-16023,17232,-17224]]},{"type":"Polygon","properties":{"name":"FAIRFAX STATION","zip":"22039","state":"VA"},"arcs":[[-17223,-17232,-17211,17233,17234,17235,-15953]]},{"type":"Polygon","properties":{"name":"FALLS CHURCH","zip":"22041","state":"VA"},"arcs":[[17236,17237,-17205,17238,17239,17240,17241]]},{"type":"Polygon","properties":{"name":"FALLS CHURCH","zip":"22042","state":"VA"},"arcs":[[17242,-17239,-17204,-17230,17243,17244,17245]]},{"type":"Polygon","properties":{"name":"FALLS CHURCH","zip":"22043","state":"VA"},"arcs":[[17246,-17221,17247,17248,17249,17250,17251,-17245]]},{"type":"Polygon","properties":{"name":"FALLS CHURCH","zip":"22044","state":"VA"},"arcs":[[17252,-17240,-17243,17253,17254,17255]]},{"type":"Polygon","properties":{"name":"FALLS CHURCH","zip":"22046","state":"VA"},"arcs":[[-17246,-17252,17256,17257,-17254]]},{"type":"Polygon","properties":{"name":"FORT BELVOIR","zip":"22060","state":"VA"},"arcs":[[17258,17259,17260,17261]]},{"type":"Polygon","properties":{"name":"GREAT FALLS","zip":"22066","state":"VA"},"arcs":[[-16017,-16009,-16013,17262,17263,17264,-16047]]},{"type":"Polygon","properties":{"name":"LORTON","zip":"22079","state":"VA"},"arcs":[[17265,-17235,17266,17267,17268,-17259,17269,17270]]},{"type":"Polygon","properties":{"name":"MC LEAN","zip":"22101","state":"VA"},"arcs":[[17271,-17250,17272,17273,17274]]},{"type":"Polygon","properties":{"name":"MC LEAN","zip":"22102","state":"VA"},"arcs":[[-17249,17275,-17264,17276,-17273]]},{"type":"Polygon","properties":{"name":"OAKTON","zip":"22124","state":"VA"},"arcs":[[-17225,-17233,-16022,-16045,17277,-17227]]},{"type":"Polygon","properties":{"name":"QUANTICO","zip":"22134","state":"VA"},"arcs":[[17278,17279,17280,-15945,-16030,-15924,-17214]]},{"type":"Polygon","properties":{"name":"SPRINGFIELD","zip":"22150","state":"VA"},"arcs":[[17281,-17268,17282,17283,17284,17285,17286]]},{"type":"Polygon","properties":{"name":"SPRINGFIELD","zip":"22151","state":"VA"},"arcs":[[17287,-17285,17288,-17213,-17207]]},{"type":"Polygon","properties":{"name":"SPRINGFIELD","zip":"22152","state":"VA"},"arcs":[[17289,-17209,-17289,-17284]]},{"type":"Polygon","properties":{"name":"SPRINGFIELD","zip":"22153","state":"VA"},"arcs":[[-17267,-17234,-17210,-17290,-17283]]},{"type":"Polygon","properties":{"name":"TRIANGLE","zip":"22172","state":"VA"},"arcs":[[-17218,17290,-17279]]},{"type":"Polygon","properties":{"name":"VIENNA","zip":"22180","state":"VA"},"arcs":[[-17244,-17229,17291,17292,-17219,-17247]]},{"type":"Polygon","properties":{"name":"VIENNA","zip":"22181","state":"VA"},"arcs":[[-17278,-16044,17293,-17292,-17228]]},{"type":"Polygon","properties":{"name":"VIENNA","zip":"22182","state":"VA"},"arcs":[[-17220,-17293,-17294,-16046,-16041,-16048,-17265,-17276,-17248]]},{"type":"Polygon","properties":{"name":"WOODBRIDGE","zip":"22191","state":"VA"},"arcs":[[-17216,17294,17295,-17271,17296]]},{"type":"Polygon","properties":{"name":"WOODBRIDGE","zip":"22192","state":"VA"},"arcs":[[-17296,17297,-15928,-15954,-17236,-17266]]},{"type":"Polygon","properties":{"name":"WOODBRIDGE","zip":"22193","state":"VA"},"arcs":[[-17215,-15929,-17298,-17295]]},{"type":"Polygon","properties":{"name":"ARLINGTON","zip":"22201","state":"VA"},"arcs":[[17298,17299,17300,17301,17302,17303,17304]]},{"type":"Polygon","properties":{"name":"ARLINGTON","zip":"22202","state":"VA"},"arcs":[[17305,17306,17307,17308,17309,17310]]},{"type":"Polygon","properties":{"name":"ARLINGTON","zip":"22203","state":"VA"},"arcs":[[17311,-17256,17312,-17301]]},{"type":"Polygon","properties":{"name":"ARLINGTON","zip":"22204","state":"VA"},"arcs":[[-17253,-17312,-17300,17313,-17308,17314,17315,-17241]]},{"type":"Polygon","properties":{"name":"ARLINGTON","zip":"22205","state":"VA"},"arcs":[[17316,17317,-17302,-17313,-17255,-17258]]},{"type":"Polygon","properties":{"name":"ARLINGTON","zip":"22206","state":"VA"},"arcs":[[17318,17319,-17315,-17307]]},{"type":"Polygon","properties":{"name":"ARLINGTON","zip":"22207","state":"VA"},"arcs":[[-17318,17320,-17275,17321,-17303]]},{"type":"Polygon","properties":{"name":"ARLINGTON","zip":"22209","state":"VA"},"arcs":[[17322,-17305,17323,-15832]]},{"type":"Polygon","properties":{"name":"FT MYER","zip":"22211","state":"VA"},"arcs":[[-17314,-17299,-17323,-15831,-17309]]},{"type":"Polygon","properties":{"name":"ARLINGTON","zip":"22213","state":"VA"},"arcs":[[-17257,-17251,-17272,-17321,-17317]]},{"type":"Polygon","properties":{"name":"ALEXANDRIA","zip":"22301","state":"VA"},"arcs":[[17324,17325,17326]]},{"type":"Polygon","properties":{"name":"ALEXANDRIA","zip":"22302","state":"VA"},"arcs":[[17327,17328,-17242,-17316,-17320,17329,-17326,17330]]},{"type":"Polygon","properties":{"name":"ALEXANDRIA","zip":"22303","state":"VA"},"arcs":[[17331,17332,17333,17334,17335]]},{"type":"Polygon","properties":{"name":"ALEXANDRIA","zip":"22304","state":"VA"},"arcs":[[17336,17337,17338,-17328,17339,-17335]]},{"type":"Polygon","properties":{"name":"ALEXANDRIA","zip":"22305","state":"VA"},"arcs":[[-17330,-17319,-17306,17340,-17327]]},{"type":"Polygon","properties":{"name":"ALEXANDRIA","zip":"22306","state":"VA"},"arcs":[[17341,17342,-17333,17343,17344,17345]]},{"type":"Polygon","properties":{"name":"ALEXANDRIA","zip":"22307","state":"VA"},"arcs":[[-17332,17346,17347,17348,-17344]]},{"type":"Polygon","properties":{"name":"ALEXANDRIA","zip":"22308","state":"VA"},"arcs":[[17349,-17345,-17349,17350]]},{"type":"Polygon","properties":{"name":"ALEXANDRIA","zip":"22309","state":"VA"},"arcs":[[17351,-17346,-17350,17352,-17261]]},{"type":"Polygon","properties":{"name":"ALEXANDRIA","zip":"22310","state":"VA"},"arcs":[[17353,-17337,-17334,-17343,17354,-17287]]},{"type":"Polygon","properties":{"name":"ALEXANDRIA","zip":"22311","state":"VA"},"arcs":[[17355,-17237,-17329,-17339]]},{"type":"Polygon","properties":{"name":"ALEXANDRIA","zip":"22312","state":"VA"},"arcs":[[-17286,-17288,-17206,-17238,-17356,-17338,-17354]]},{"type":"Polygon","properties":{"name":"ALEXANDRIA","zip":"22314","state":"VA"},"arcs":[[-17340,-17331,-17325,-17341,-17311,17356,-17347,-17336]]},{"type":"Polygon","properties":{"name":"ALEXANDRIA","zip":"22315","state":"VA"},"arcs":[[-17260,-17269,-17282,-17355,-17342,-17352]]},{"type":"Polygon","properties":{"name":"FREDERICKSBURG","zip":"22401","state":"VA"},"arcs":[[17357,17358,17359]]},{"type":"Polygon","properties":{"name":"FREDERICKSBURG","zip":"22405","state":"VA"},"arcs":[[17360,17361,17362,17363,17364]]},{"type":"Polygon","properties":{"name":"FREDERICKSBURG","zip":"22406","state":"VA"},"arcs":[[17365,-17361,17366,17367,17368,17369,17370]]},{"type":"Polygon","properties":{"name":"FREDERICKSBURG","zip":"22407","state":"VA"},"arcs":[[17371,17372,17373,17374,-17358]]},{"type":"Polygon","properties":{"name":"FREDERICKSBURG","zip":"22408","state":"VA"},"arcs":[[-17360,17375,17376,17377,17378,-17372]]},{"type":"Polygon","properties":{"name":"BOWLING GREEN","zip":"22427","state":"VA"},"arcs":[[17379,17380,17381,17382,17383]]},{"type":"Polygon","properties":{"name":"BURGESS","zip":"22432","state":"VA"},"arcs":[[17384,17385,17386]]},{"type":"Polygon","properties":{"name":"BURR HILL","zip":"22433","state":"VA"},"arcs":[[17387,17388,17389]]},{"type":"Polygon","properties":{"name":"CALLAO","zip":"22435","state":"VA"},"arcs":[[17390,17391,17392,17393,17394,17395]]},{"type":"Polygon","properties":{"name":"CARET","zip":"22436","state":"VA"},"arcs":[[17396,-17384,17397,17398,17399,17400]]},{"type":"Polygon","properties":{"name":"CENTER CROSS","zip":"22437","state":"VA"},"arcs":[[17401,17402,17403,17404]]},{"type":"MultiPolygon","properties":{"name":"CHAMPLAIN","zip":"22438","state":"VA"},"arcs":[[[17405,17406,-17401,17407]],[[17408,17409,17410,17411]]]},{"type":"Polygon","properties":{"name":"COLONIAL BEACH","zip":"22443","state":"VA"},"arcs":[[17412,17413,17414,17415]]},{"type":"Polygon","properties":{"name":"DUNNSVILLE","zip":"22454","state":"VA"},"arcs":[[17416,17417,17418,17419,-17404]]},{"type":"Polygon","properties":{"name":"FARNHAM","zip":"22460","state":"VA"},"arcs":[[17420,-17396,17421,17422,17423,17424]]},{"type":"Polygon","properties":{"name":"HAGUE","zip":"22469","state":"VA"},"arcs":[[17425,17426,17427,17428,-17392]]},{"type":"Polygon","properties":{"name":"HEATHSVILLE","zip":"22473","state":"VA"},"arcs":[[17429,17430,17431,-17386,17432,17433,-17423]]},{"type":"Polygon","properties":{"name":"HUSTLE","zip":"22476","state":"VA"},"arcs":[[-17397,-17407,17434,-17410,17435,-17380]]},{"type":"Polygon","properties":{"name":"IRVINGTON","zip":"22480","state":"VA"},"arcs":[[17436,17437,17438]]},{"type":"Polygon","properties":{"name":"KILMARNOCK","zip":"22482","state":"VA"},"arcs":[[17439,17440,17441,17442,17443]]},{"type":"Polygon","properties":{"name":"KING GEORGE","zip":"22485","state":"VA"},"arcs":[[-17415,17444,-17364,17445]]},{"type":"Polygon","properties":{"name":"KINSALE","zip":"22488","state":"VA"},"arcs":[[-17393,-17429,17446]]},{"type":"Polygon","properties":{"name":"LANCASTER","zip":"22503","state":"VA"},"arcs":[[17447,17448,-17424,-17434,17449,-17442]]},{"type":"Polygon","properties":{"name":"LANEVIEW","zip":"22504","state":"VA"},"arcs":[[17450,17451,17452,-17402,17453]]},{"type":"Polygon","properties":{"name":"LOCUST GROVE","zip":"22508","state":"VA"},"arcs":[[17454,-17389,17455,17456,17457,17458,17459]]},{"type":"Polygon","properties":{"name":"LORETTO","zip":"22509","state":"VA"},"arcs":[[-17411,-17435,-17406,17460]]},{"type":"Polygon","properties":{"name":"LOTTSBURG","zip":"22511","state":"VA"},"arcs":[[-17422,-17395,17461,-17430]]},{"type":"Polygon","properties":{"name":"MILFORD","zip":"22514","state":"VA"},"arcs":[[17462,17463,17464,17465,-17381,17466]]},{"type":"Polygon","properties":{"name":"MONTROSS","zip":"22520","state":"VA"},"arcs":[[17467,17468,-17413,17469,-17427]]},{"type":"Polygon","properties":{"name":"PARTLOW","zip":"22534","state":"VA"},"arcs":[[17470,17471,17472]]},{"type":"Polygon","properties":{"name":"PORT ROYAL","zip":"22535","state":"VA"},"arcs":[[17473,17474,17475,-17398,-17383]]},{"type":"Polygon","properties":{"name":"RAPPAHANNOCK ACADEMY","zip":"22538","state":"VA"},"arcs":[[-17475,17476,-17377,17477]]},{"type":"Polygon","properties":{"name":"REEDVILLE","zip":"22539","state":"VA"},"arcs":[[17478,-17387,-17432,17479]]},{"type":"Polygon","properties":{"name":"RHOADESVILLE","zip":"22542","state":"VA"},"arcs":[[17480,17481,-17390,-17455]]},{"type":"Polygon","properties":{"name":"RUTHER GLEN","zip":"22546","state":"VA"},"arcs":[[17482,17483,17484,17485,17486,17487,-17465]]},{"type":"Polygon","properties":{"name":"SPOTSYLVANIA","zip":"22553","state":"VA"},"arcs":[[17488,-17487,17489,-17472,17490,17491,17492,-17459,17493,-17373,-17379]]},{"type":"Polygon","properties":{"name":"STAFFORD","zip":"22554","state":"VA"},"arcs":[[17494,-15946,-17281,17495,-17362,-17366]]},{"type":"Polygon","properties":{"name":"TAPPAHANNOCK","zip":"22560","state":"VA"},"arcs":[[17496,17497,17498,-17467,-17436,-17409,17499,-17419,17500]]},{"type":"Polygon","properties":{"name":"UNIONVILLE","zip":"22567","state":"VA"},"arcs":[[17501,17502,17503,17504,-17481,-17460,-17493]]},{"type":"Polygon","properties":{"name":"WARSAW","zip":"22572","state":"VA"},"arcs":[[-17468,-17426,-17391,-17421,17505]]},{"type":"Polygon","properties":{"name":"WEEMS","zip":"22576","state":"VA"},"arcs":[[17506,-17437,17507,-17448,-17441]]},{"type":"Polygon","properties":{"name":"WHITE STONE","zip":"22578","state":"VA"},"arcs":[[-17507,-17440,17508,-17438]]},{"type":"Polygon","properties":{"name":"WICOMICO CHURCH","zip":"22579","state":"VA"},"arcs":[[-17433,-17385,-17479,17509,-17443,-17450]]},{"type":"Polygon","properties":{"name":"WOODFORD","zip":"22580","state":"VA"},"arcs":[[-17466,-17488,-17489,-17378,-17477,-17474,-17382]]},{"type":"Polygon","properties":{"name":"WINCHESTER","zip":"22601","state":"VA"},"arcs":[[17510,17511]]},{"type":"Polygon","properties":{"name":"WINCHESTER","zip":"22602","state":"VA"},"arcs":[[17512,17513,17514,17515,17516,17517,17518,-17511,17519,17520,17521,17522,17523]]},{"type":"Polygon","properties":{"name":"WINCHESTER","zip":"22603","state":"VA"},"arcs":[[-17519,17524,17525,17526,17527,17528,17529,17530,-17520,-17512]]},{"type":"Polygon","properties":{"name":"BENTONVILLE","zip":"22610","state":"VA"},"arcs":[[17531,17532,17533,17534,17535,17536]]},{"type":"Polygon","properties":{"name":"BERRYVILLE","zip":"22611","state":"VA"},"arcs":[[17537,17538,-15973,17539,-17522,17540,17541]]},{"type":"Polygon","properties":{"name":"BOYCE","zip":"22620","state":"VA"},"arcs":[[17542,17543,17544,-17523,-17540,-16032,-15961,-15988]]},{"type":"Polygon","properties":{"name":"CLEAR BROOK","zip":"22624","state":"VA"},"arcs":[[17545,-17530,17546,-17542]]},{"type":"Polygon","properties":{"name":"CROSS JUNCTION","zip":"22625","state":"VA"},"arcs":[[17547,17548,17549,17550,-17526]]},{"type":"Polygon","properties":{"name":"FLINT HILL","zip":"22627","state":"VA"},"arcs":[[17551,17552,-15902]]},{"type":"Polygon","properties":{"name":"FRONT ROYAL","zip":"22630","state":"VA"},"arcs":[[17553,17554,-17534,17555,17556,17557,17558,17559,-17544]]},{"type":"Polygon","properties":{"name":"GORE","zip":"22637","state":"VA"},"arcs":[[17560,17561,-17548,-17525,-17518]]},{"type":"Polygon","properties":{"name":"HUME","zip":"22639","state":"VA"},"arcs":[[-15905,17562,17563,-15990,-15931]]},{"type":"Polygon","properties":{"name":"HUNTLY","zip":"22640","state":"VA"},"arcs":[[-17553,17564,-17535,-17555,17565,-15903]]},{"type":"Polygon","properties":{"name":"LINDEN","zip":"22642","state":"VA"},"arcs":[[17566,-17563,-15904,-17566,-17554,-17543,-15987]]},{"type":"Polygon","properties":{"name":"MARKHAM","zip":"22643","state":"VA"},"arcs":[[-17567,-15986,-17564]]},{"type":"Polygon","properties":{"name":"MAURERTOWN","zip":"22644","state":"VA"},"arcs":[[17567,17568,17569,17570]]},{"type":"Polygon","properties":{"name":"MIDDLETOWN","zip":"22645","state":"VA"},"arcs":[[17571,-17514,17572,-17558]]},{"type":"Polygon","properties":{"name":"RILEYVILLE","zip":"22650","state":"VA"},"arcs":[[17573,17574,17575,-17532]]},{"type":"Polygon","properties":{"name":"FORT VALLEY","zip":"22652","state":"VA"},"arcs":[[17576,17577,-17568,17578,-17556,-17533,-17576,17579,17580,17581]]},{"type":"Polygon","properties":{"name":"STAR TANNERY","zip":"22654","state":"VA"},"arcs":[[17582,17583,-17516,17584,-17570,17585,17586]]},{"type":"Polygon","properties":{"name":"STEPHENS CITY","zip":"22655","state":"VA"},"arcs":[[-17513,17587,-17559,-17573]]},{"type":"Polygon","properties":{"name":"STEPHENSON","zip":"22656","state":"VA"},"arcs":[[-17531,-17546,-17541,-17521]]},{"type":"Polygon","properties":{"name":"STRASBURG","zip":"22657","state":"VA"},"arcs":[[-17579,-17571,-17585,-17515,-17572,-17557]]},{"type":"Polygon","properties":{"name":"WHITE POST","zip":"22663","state":"VA"},"arcs":[[-17560,-17588,-17524,-17545]]},{"type":"Polygon","properties":{"name":"WOODSTOCK","zip":"22664","state":"VA"},"arcs":[[17588,-17586,-17569,-17578]]},{"type":"Polygon","properties":{"name":"CULPEPER","zip":"22701","state":"VA"},"arcs":[[-17388,-17482,-17505,17589,17590,17591,17592,17593,17594,17595,17596,17597,17598,-17456]]},{"type":"Polygon","properties":{"name":"ARODA","zip":"22709","state":"VA"},"arcs":[[17599,17600,17601,17602]]},{"type":"Polygon","properties":{"name":"BEALETON","zip":"22712","state":"VA"},"arcs":[[17603,-16036,-16040,17604,17605,17606]]},{"type":"Polygon","properties":{"name":"BOSTON","zip":"22713","state":"VA"},"arcs":[[17607,17608,17609,17610,-17594,17611]]},{"type":"Polygon","properties":{"name":"BRANDY STATION","zip":"22714","state":"VA"},"arcs":[[17612,-17596,17613,17614]]},{"type":"Polygon","properties":{"name":"BRIGHTWOOD","zip":"22715","state":"VA"},"arcs":[[17615,17616,17617,-17592,17618]]},{"type":"Polygon","properties":{"name":"CASTLETON","zip":"22716","state":"VA"},"arcs":[[17619,-17610,17620,17621,-15900]]},{"type":"Polygon","properties":{"name":"ELKWOOD","zip":"22718","state":"VA"},"arcs":[[17622,17623,17624,17625,-17597,-17613,17626]]},{"type":"Polygon","properties":{"name":"ETLAN","zip":"22719","state":"VA"},"arcs":[[17627,17628,17629]]},{"type":"Polygon","properties":{"name":"GOLDVEIN","zip":"22720","state":"VA"},"arcs":[[17630,-17606,17631,-17370]]},{"type":"Polygon","properties":{"name":"JEFFERSONTON","zip":"22724","state":"VA"},"arcs":[[17632,-15898,-16033,17633]]},{"type":"Polygon","properties":{"name":"LEON","zip":"22725","state":"VA"},"arcs":[[17634,-17618]]},{"type":"Polygon","properties":{"name":"LIGNUM","zip":"22726","state":"VA"},"arcs":[[17635,-17625,17636,-17457,-17599]]},{"type":"Polygon","properties":{"name":"MADISON","zip":"22727","state":"VA"},"arcs":[[17637,17638,17639,17640,17641,17642,-17616,17643,-17600,17644,17645]]},{"type":"Polygon","properties":{"name":"MIDLAND","zip":"22728","state":"VA"},"arcs":[[-17371,-17632,-17605,-16039,-15942,-17495]]},{"type":"Polygon","properties":{"name":"OAKPARK","zip":"22730","state":"VA"},"arcs":[[17646,17647,-17601,-17644,-17619,-17591,17648]]},{"type":"Polygon","properties":{"name":"RADIANT","zip":"22732","state":"VA"},"arcs":[[-17648,17649,17650,17651,-17602]]},{"type":"Polygon","properties":{"name":"RAPIDAN","zip":"22733","state":"VA"},"arcs":[[-17504,17652,17653,-17649,-17590]]},{"type":"Polygon","properties":{"name":"REMINGTON","zip":"22734","state":"VA"},"arcs":[[17654,-17627,-17615,17655,-17634,-16037,-17604]]},{"type":"Polygon","properties":{"name":"REVA","zip":"22735","state":"VA"},"arcs":[[-17617,-17643,17656,-17612,-17593,-17635]]},{"type":"Polygon","properties":{"name":"RICHARDSVILLE","zip":"22736","state":"VA"},"arcs":[[-17637,-17624,17657,-17368,17658,-17374,-17494,-17458]]},{"type":"Polygon","properties":{"name":"RIXEYVILLE","zip":"22737","state":"VA"},"arcs":[[-17620,-15899,-17633,-17656,-17614,-17595,-17611]]},{"type":"Polygon","properties":{"name":"ROCHELLE","zip":"22738","state":"VA"},"arcs":[[17659,17660,17661,17662,-17645,-17603,-17652]]},{"type":"Polygon","properties":{"name":"SPERRYVILLE","zip":"22740","state":"VA"},"arcs":[[17663,-17574,-17537,17664,17665,-17608,-17657,-17642,17666,-17628]]},{"type":"Polygon","properties":{"name":"STEVENSBURG","zip":"22741","state":"VA"},"arcs":[[-17598,-17626,-17636]]},{"type":"Polygon","properties":{"name":"SUMERDUCK","zip":"22742","state":"VA"},"arcs":[[-17369,-17658,-17623,-17655,-17607,-17631]]},{"type":"Polygon","properties":{"name":"SYRIA","zip":"22743","state":"VA"},"arcs":[[-17641,17667,17668,-17629,-17667]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"22747","state":"VA"},"arcs":[[17669,-17665,-17536,-17565,-17552,-15901,-17622]]},{"type":"Polygon","properties":{"name":"WOODVILLE","zip":"22749","state":"VA"},"arcs":[[-17609,-17666,-17670,-17621]]},{"type":"Polygon","properties":{"name":"HARRISONBURG","zip":"22801","state":"VA"},"arcs":[[17670,17671,17672,17673,17674,17675,17676,17677,17678,17679]]},{"type":"Polygon","properties":{"name":"HARRISONBURG","zip":"22802","state":"VA"},"arcs":[[17680,-17677,17681,17682,17683]]},{"type":"Polygon","properties":{"name":"BASYE","zip":"22810","state":"VA"},"arcs":[[17684,17685,17686,17687,17688]]},{"type":"Polygon","properties":{"name":"BERGTON","zip":"22811","state":"VA"},"arcs":[[17689,17690,17691,17692,17693,17694]]},{"type":"Polygon","properties":{"name":"BRIDGEWATER","zip":"22812","state":"VA"},"arcs":[[17695,17696,17697,17698,17699,-17672]]},{"type":"Polygon","properties":{"name":"BROADWAY","zip":"22815","state":"VA"},"arcs":[[17700,17701,17702,-17695,17703,17704,17705,17706,17707,17708,17709,17710,-17683]]},{"type":"Polygon","properties":{"name":"CRIDERS","zip":"22820","state":"VA"},"arcs":[[17711,17712,-17690,-17703]]},{"type":"Polygon","properties":{"name":"DAYTON","zip":"22821","state":"VA"},"arcs":[[-17700,17713,17714,17715,-17673]]},{"type":"Polygon","properties":{"name":"EDINBURG","zip":"22824","state":"VA"},"arcs":[[-17577,17716,-17688,17717,17718,-17587,-17589]]},{"type":"Polygon","properties":{"name":"ELKTON","zip":"22827","state":"VA"},"arcs":[[17719,17720,17721,17722,17723,17724,17725,-17684,-17711,17726,17727,-17639,17728]]},{"type":"Polygon","properties":{"name":"FULKS RUN","zip":"22830","state":"VA"},"arcs":[[17729,-17675,17730,-17712,-17702]]},{"type":"Polygon","properties":{"name":"KEEZLETOWN","zip":"22832","state":"VA"},"arcs":[[17731,17732,-17681,-17726]]},{"type":"Polygon","properties":{"name":"LINVILLE","zip":"22834","state":"VA"},"arcs":[[-17682,-17676,-17730,-17701]]},{"type":"Polygon","properties":{"name":"LURAY","zip":"22835","state":"VA"},"arcs":[[-17669,17733,17734,-17709,17735,-17580,-17575,-17664,-17630]]},{"type":"Polygon","properties":{"name":"MC GAHEYSVILLE","zip":"22840","state":"VA"},"arcs":[[17736,-17679,17737,-17732,-17725]]},{"type":"Polygon","properties":{"name":"MOUNT CRAWFORD","zip":"22841","state":"VA"},"arcs":[[17738,17739,-17696,-17671,17740]]},{"type":"Polygon","properties":{"name":"MOUNT JACKSON","zip":"22842","state":"VA"},"arcs":[[17741,-17689,-17717,-17582,17742,17743,17744,-17706]]},{"type":"Polygon","properties":{"name":"MOUNT SOLON","zip":"22843","state":"VA"},"arcs":[[17745,17746,17747,-17714,-17699,17748,17749]]},{"type":"Polygon","properties":{"name":"NEW MARKET","zip":"22844","state":"VA"},"arcs":[[17750,17751,-17743,-17581,-17736,-17708]]},{"type":"Polygon","properties":{"name":"ORKNEY SPRINGS","zip":"22845","state":"VA"},"arcs":[[-17705,17752,-17685,-17742]]},{"type":"Polygon","properties":{"name":"PENN LAIRD","zip":"22846","state":"VA"},"arcs":[[-17733,-17738,-17678]]},{"type":"Polygon","properties":{"name":"QUICKSBURG","zip":"22847","state":"VA"},"arcs":[[17753,-17744,-17752]]},{"type":"Polygon","properties":{"name":"SHENANDOAH","zip":"22849","state":"VA"},"arcs":[[17754,-17727,-17710,-17735]]},{"type":"Polygon","properties":{"name":"STANLEY","zip":"22851","state":"VA"},"arcs":[[-17728,-17755,-17734,-17668,-17640]]},{"type":"Polygon","properties":{"name":"TIMBERVILLE","zip":"22853","state":"VA"},"arcs":[[-17707,-17745,-17754,-17751]]},{"type":"Polygon","properties":{"name":"CHARLOTTESVILLE","zip":"22901","state":"VA"},"arcs":[[17755,17756,17757,17758,17759,17760]]},{"type":"Polygon","properties":{"name":"CHARLOTTESVILLE","zip":"22902","state":"VA"},"arcs":[[17761,17762,-17761,17763,17764,17765,17766,17767,17768,17769]]},{"type":"Polygon","properties":{"name":"CHARLOTTESVILLE","zip":"22903","state":"VA"},"arcs":[[17770,17771,17772,-17756,-17763,17773]]},{"type":"Polygon","properties":{"name":"CHARLOTTESVILLE","zip":"22911","state":"VA"},"arcs":[[17774,17775,17776,17777,-17764,-17760]]},{"type":"Polygon","properties":{"name":"AFTON","zip":"22920","state":"VA"},"arcs":[[17778,17779,17780,-17771,17781,17782,17783,17784,17785]]},{"type":"Polygon","properties":{"name":"ARRINGTON","zip":"22922","state":"VA"},"arcs":[[17786,17787,17788,17789,17790,17791]]},{"type":"Polygon","properties":{"name":"BARBOURSVILLE","zip":"22923","state":"VA"},"arcs":[[17792,-17662,17793,17794,17795,-17777]]},{"type":"Polygon","properties":{"name":"COVESVILLE","zip":"22931","state":"VA"},"arcs":[[17796,-17783,17797]]},{"type":"Polygon","properties":{"name":"CROZET","zip":"22932","state":"VA"},"arcs":[[-17773,17798,17799,17800,17801,-17722,17802,-17757]]},{"type":"Polygon","properties":{"name":"DYKE","zip":"22935","state":"VA"},"arcs":[[17803,-17720,17804,17805]]},{"type":"Polygon","properties":{"name":"EARLYSVILLE","zip":"22936","state":"VA"},"arcs":[[17806,-17806,17807,17808,-17775,-17759]]},{"type":"Polygon","properties":{"name":"ESMONT","zip":"22937","state":"VA"},"arcs":[[17809,17810,17811,-17770,17812,17813,17814]]},{"type":"Polygon","properties":{"name":"FABER","zip":"22938","state":"VA"},"arcs":[[17815,17816,17817,-17784,-17797,17818,17819,17820]]},{"type":"Polygon","properties":{"name":"FISHERSVILLE","zip":"22939","state":"VA"},"arcs":[[17821,17822]]},{"type":"Polygon","properties":{"name":"FREE UNION","zip":"22940","state":"VA"},"arcs":[[-17803,-17721,-17804,-17807,-17758]]},{"type":"Polygon","properties":{"name":"GORDONSVILLE","zip":"22942","state":"VA"},"arcs":[[17823,-17795,17824,17825,17826,17827]]},{"type":"Polygon","properties":{"name":"GREENWOOD","zip":"22943","state":"VA"},"arcs":[[-17781,17828,-17799,-17772]]},{"type":"Polygon","properties":{"name":"KEENE","zip":"22946","state":"VA"},"arcs":[[-17769,17829,-17813]]},{"type":"Polygon","properties":{"name":"KESWICK","zip":"22947","state":"VA"},"arcs":[[17830,-17765,-17778,-17796,-17824]]},{"type":"Polygon","properties":{"name":"LOCUST DALE","zip":"22948","state":"VA"},"arcs":[[17831,-17650,-17647,-17654]]},{"type":"Polygon","properties":{"name":"LOVINGSTON","zip":"22949","state":"VA"},"arcs":[[17832,-17789,17833,-17816]]},{"type":"Polygon","properties":{"name":"LYNDHURST","zip":"22952","state":"VA"},"arcs":[[17834,17835,17836,17837,17838,17839,17840,-17779]]},{"type":"Polygon","properties":{"name":"NELLYSFORD","zip":"22958","state":"VA"},"arcs":[[17841,-17785,-17818]]},{"type":"Polygon","properties":{"name":"NORTH GARDEN","zip":"22959","state":"VA"},"arcs":[[-17798,-17782,-17774,-17762,-17812,17842,-17819]]},{"type":"Polygon","properties":{"name":"ORANGE","zip":"22960","state":"VA"},"arcs":[[17843,-17660,-17651,-17832,-17653,-17503,17844,17845,-17826]]},{"type":"Polygon","properties":{"name":"PALMYRA","zip":"22963","state":"VA"},"arcs":[[17846,-17767,17847,17848,17849,17850,17851,17852]]},{"type":"Polygon","properties":{"name":"ROSELAND","zip":"22967","state":"VA"},"arcs":[[17853,17854,17855,17856,-17835,-17786,-17842,-17817,-17834,-17788]]},{"type":"Polygon","properties":{"name":"RUCKERSVILLE","zip":"22968","state":"VA"},"arcs":[[-17776,-17809,17857,-17646,-17663,-17793]]},{"type":"Polygon","properties":{"name":"SCHUYLER","zip":"22969","state":"VA"},"arcs":[[17858,17859,17860,17861,-17820,-17843,-17811]]},{"type":"Polygon","properties":{"name":"SHIPMAN","zip":"22971","state":"VA"},"arcs":[[-17833,-17821,-17862,17862,-17790]]},{"type":"Polygon","properties":{"name":"SOMERSET","zip":"22972","state":"VA"},"arcs":[[-17825,-17794,-17661,-17844]]},{"type":"Polygon","properties":{"name":"STANARDSVILLE","zip":"22973","state":"VA"},"arcs":[[-17808,-17805,-17729,-17638,-17858]]},{"type":"Polygon","properties":{"name":"TROY","zip":"22974","state":"VA"},"arcs":[[17863,17864,-17848,-17766,-17831,-17828]]},{"type":"Polygon","properties":{"name":"TYRO","zip":"22976","state":"VA"},"arcs":[[17865,-17836,-17857]]},{"type":"Polygon","properties":{"name":"WAYNESBORO","zip":"22980","state":"VA"},"arcs":[[17866,17867,17868,-17800,-17829,-17780,-17841,17869,17870,-17822]]},{"type":"Polygon","properties":{"name":"AMELIA COURT HOUSE","zip":"23002","state":"VA"},"arcs":[[17871,17872,17873,17874,17875,17876,17877,17878,17879,17880,17881]]},{"type":"Polygon","properties":{"name":"ARVONIA","zip":"23004","state":"VA"},"arcs":[[17882,17883,17884,17885]]},{"type":"Polygon","properties":{"name":"ASHLAND","zip":"23005","state":"VA"},"arcs":[[17886,17887,17888,17889,17890]]},{"type":"Polygon","properties":{"name":"AYLETT","zip":"23009","state":"VA"},"arcs":[[17891,-17483,-17464,17892,17893,17894]]},{"type":"Polygon","properties":{"name":"BARHAMSVILLE","zip":"23011","state":"VA"},"arcs":[[17895,17896,17897,17898]]},{"type":"Polygon","properties":{"name":"BEAVERDAM","zip":"23015","state":"VA"},"arcs":[[17899,17900,17901,-17473,-17490,-17486]]},{"type":"Polygon","properties":{"name":"BREMO BLUFF","zip":"23022","state":"VA"},"arcs":[[-17852,17902,17903,17904]]},{"type":"Polygon","properties":{"name":"BRUINGTON","zip":"23023","state":"VA"},"arcs":[[17905,17906,-17501,-17418]]},{"type":"Polygon","properties":{"name":"BUMPASS","zip":"23024","state":"VA"},"arcs":[[17907,17908,17909,-17491,-17471,-17902]]},{"type":"Polygon","properties":{"name":"CARDINAL","zip":"23025","state":"VA"},"arcs":[[17910,17911]]},{"type":"Polygon","properties":{"name":"CARTERSVILLE","zip":"23027","state":"VA"},"arcs":[[17912,17913,17914,17915,17916]]},{"type":"Polygon","properties":{"name":"CHARLES CITY","zip":"23030","state":"VA"},"arcs":[[17917,17918,17919,17920,17921,17922,17923]]},{"type":"Polygon","properties":{"name":"CHURCH VIEW","zip":"23032","state":"VA"},"arcs":[[17924,17925,17926,17927,17928,17929,17930]]},{"type":"Polygon","properties":{"name":"COBBS CREEK","zip":"23035","state":"VA"},"arcs":[[17931,17932,17933]]},{"type":"MultiPolygon","properties":{"name":"COLUMBIA","zip":"23038","state":"VA"},"arcs":[[[17934,-17850,17935,17936,17937,17938]],[[17939,17940,17941,-17916]]]},{"type":"Polygon","properties":{"name":"CROZIER","zip":"23039","state":"VA"},"arcs":[[17942,17943,17944,17945,17946]]},{"type":"Polygon","properties":{"name":"CUMBERLAND","zip":"23040","state":"VA"},"arcs":[[17947,17948,17949,17950,-17914]]},{"type":"Polygon","properties":{"name":"DELTAVILLE","zip":"23043","state":"VA"},"arcs":[[17951,17952]]},{"type":"Polygon","properties":{"name":"DIGGS","zip":"23045","state":"VA"},"arcs":[[17953,17954,17955]]},{"type":"Polygon","properties":{"name":"DOSWELL","zip":"23047","state":"VA"},"arcs":[[17956,-17900,-17485,17957,-17890]]},{"type":"Polygon","properties":{"name":"DUTTON","zip":"23050","state":"VA"},"arcs":[[-17933,17958,17959]]},{"type":"Polygon","properties":{"name":"FORK UNION","zip":"23055","state":"VA"},"arcs":[[-17903,-17851,-17935,17960]]},{"type":"Polygon","properties":{"name":"FOSTER","zip":"23056","state":"VA"},"arcs":[[17961,17962,17963,-17911,17964]]},{"type":"Polygon","properties":{"name":"GLEN ALLEN","zip":"23059","state":"VA"},"arcs":[[17965,17966,17967,17968,-17888,17969,17970]]},{"type":"Polygon","properties":{"name":"GLEN ALLEN","zip":"23060","state":"VA"},"arcs":[[17971,17972,17973,17974,-17966]]},{"type":"Polygon","properties":{"name":"GLOUCESTER","zip":"23061","state":"VA"},"arcs":[[17975,17976,17977,17978]]},{"type":"Polygon","properties":{"name":"GOOCHLAND","zip":"23063","state":"VA"},"arcs":[[17979,17980,17981,17982,17983,-17938]]},{"type":"Polygon","properties":{"name":"GUM SPRING","zip":"23065","state":"VA"},"arcs":[[17984,-17982,17985,17986,17987]]},{"type":"Polygon","properties":{"name":"HANOVER","zip":"23069","state":"VA"},"arcs":[[17988,17989,-17891,-17958,-17484,-17892]]},{"type":"Polygon","properties":{"name":"HARDYVILLE","zip":"23070","state":"VA"},"arcs":[[17990,17991,17992,-17952,17993]]},{"type":"Polygon","properties":{"name":"HARTFIELD","zip":"23071","state":"VA"},"arcs":[[17994,-17991,17995,17996,17997,17998,17999]]},{"type":"Polygon","properties":{"name":"HAYES","zip":"23072","state":"VA"},"arcs":[[18000]]},{"type":"Polygon","properties":{"name":"HIGHLAND SPRINGS","zip":"23075","state":"VA"},"arcs":[[18001,18002,18003]]},{"type":"Polygon","properties":{"name":"JAMAICA","zip":"23079","state":"VA"},"arcs":[[18004,-17451,18005,18006,-17930]]},{"type":"Polygon","properties":{"name":"JETERSVILLE","zip":"23083","state":"VA"},"arcs":[[18007,18008,18009,-17873]]},{"type":"Polygon","properties":{"name":"KENTS STORE","zip":"23084","state":"VA"},"arcs":[[-17865,18010,-17936,-17849]]},{"type":"Polygon","properties":{"name":"KING AND QUEEN COURT HOUSE","zip":"23085","state":"VA"},"arcs":[[18011,18012,-17906,-17417,-17403,-17453,18013,18014]]},{"type":"Polygon","properties":{"name":"KING WILLIAM","zip":"23086","state":"VA"},"arcs":[[18015,18016,-17894,18017,18018,18019]]},{"type":"Polygon","properties":{"name":"LANEXA","zip":"23089","state":"VA"},"arcs":[[18020,18021,18022,18023]]},{"type":"Polygon","properties":{"name":"LITTLE PLYMOUTH","zip":"23091","state":"VA"},"arcs":[[-17452,-18005,-17929,18024,18025,-18014]]},{"type":"Polygon","properties":{"name":"LOCUST HILL","zip":"23092","state":"VA"},"arcs":[[18026,18027,18028,-17998]]},{"type":"Polygon","properties":{"name":"LOUISA","zip":"23093","state":"VA"},"arcs":[[18029,-17980,-17937,-18011,-17864,-17827,-17846,18030,-17987]]},{"type":"Polygon","properties":{"name":"MAIDENS","zip":"23102","state":"VA"},"arcs":[[-17985,18031,-17909,18032,18033,18034,-17946,18035,18036,-17983]]},{"type":"Polygon","properties":{"name":"MANAKIN SABOT","zip":"23103","state":"VA"},"arcs":[[18037,18038,-17943,18039,18040]]},{"type":"Polygon","properties":{"name":"MANQUIN","zip":"23106","state":"VA"},"arcs":[[18041,18042,-17989,-17895,-18017]]},{"type":"Polygon","properties":{"name":"MATHEWS","zip":"23109","state":"VA"},"arcs":[[18043,18044,-17963,18045,18046,-17954]]},{"type":"Polygon","properties":{"name":"MATTAPONI","zip":"23110","state":"VA"},"arcs":[[18047,-18025,-17928,18048]]},{"type":"Polygon","properties":{"name":"MECHANICSVILLE","zip":"23111","state":"VA"},"arcs":[[18049,18050,18051,-18042,-18016,18052,18053,18054,-18004]]},{"type":"Polygon","properties":{"name":"MIDLOTHIAN","zip":"23112","state":"VA"},"arcs":[[18055,18056,18057,18058,18059]]},{"type":"Polygon","properties":{"name":"MIDLOTHIAN","zip":"23113","state":"VA"},"arcs":[[18060,18061,18062,18063]]},{"type":"Polygon","properties":{"name":"MIDLOTHIAN","zip":"23114","state":"VA"},"arcs":[[18064,-18060,18065]]},{"type":"Polygon","properties":{"name":"MECHANICSVILLE","zip":"23116","state":"VA"},"arcs":[[-17887,-17990,-18043,-18052,18066,-17970]]},{"type":"Polygon","properties":{"name":"MINERAL","zip":"23117","state":"VA"},"arcs":[[-18032,-17988,-18031,-17845,-17502,-17492,-17910]]},{"type":"Polygon","properties":{"name":"MOON","zip":"23119","state":"VA"},"arcs":[[-18047,18067,18068]]},{"type":"Polygon","properties":{"name":"MOSELEY","zip":"23120","state":"VA"},"arcs":[[-18058,18069,18070,-17878,18071]]},{"type":"Polygon","properties":{"name":"NEW CANTON","zip":"23123","state":"VA"},"arcs":[[-17951,18072,-17883,18073,-17940,-17915]]},{"type":"Polygon","properties":{"name":"NEW KENT","zip":"23124","state":"VA"},"arcs":[[18074,-18053,-18020,18075,-18021,18076]]},{"type":"Polygon","properties":{"name":"NEWTOWN","zip":"23126","state":"VA"},"arcs":[[18077,-17893,-17463,-17499,18078]]},{"type":"Polygon","properties":{"name":"NORTH","zip":"23128","state":"VA"},"arcs":[[-17962,18079,-17959,-17932,18080,-18068,-18046]]},{"type":"Polygon","properties":{"name":"OILVILLE","zip":"23129","state":"VA"},"arcs":[[-18035,18081,-18040,-17947]]},{"type":"Polygon","properties":{"name":"ONEMO","zip":"23130","state":"VA"},"arcs":[[18082,18083,-18044,-17956,18084]]},{"type":"Polygon","properties":{"name":"PORT HAYWOOD","zip":"23138","state":"VA"},"arcs":[[18085,18086,-18083,18087]]},{"type":"Polygon","properties":{"name":"POWHATAN","zip":"23139","state":"VA"},"arcs":[[-17913,18088,-18061,18089,18090,-17948]]},{"type":"Polygon","properties":{"name":"PROVIDENCE FORGE","zip":"23140","state":"VA"},"arcs":[[-17922,18091]]},{"type":"Polygon","properties":{"name":"QUINTON","zip":"23141","state":"VA"},"arcs":[[18092,-18054,-18075,18093]]},{"type":"Polygon","properties":{"name":"ROCKVILLE","zip":"23146","state":"VA"},"arcs":[[-18082,-18034,18094,-17968,18095,-18041]]},{"type":"Polygon","properties":{"name":"SAINT STEPHENS CHURCH","zip":"23148","state":"VA"},"arcs":[[-17498,18096,-18079]]},{"type":"Polygon","properties":{"name":"SALUDA","zip":"23149","state":"VA"},"arcs":[[-17977,18097,-17926,18098,18099,-18027,-17997,18100]]},{"type":"Polygon","properties":{"name":"SANDSTON","zip":"23150","state":"VA"},"arcs":[[-18002,-18055,-18093,18101]]},{"type":"Polygon","properties":{"name":"SANDY HOOK","zip":"23153","state":"VA"},"arcs":[[-18030,-17986,-17981]]},{"type":"Polygon","properties":{"name":"SHACKLEFORDS","zip":"23156","state":"VA"},"arcs":[[-17976,18102,18103,-18049,-17927,-18098]]},{"type":"Polygon","properties":{"name":"STATE FARM","zip":"23160","state":"VA"},"arcs":[[-18036,-17945,18104]]},{"type":"Polygon","properties":{"name":"STEVENSVILLE","zip":"23161","state":"VA"},"arcs":[[18105,-18012,18106]]},{"type":"Polygon","properties":{"name":"SUSAN","zip":"23163","state":"VA"},"arcs":[[-18086,18107]]},{"type":"Polygon","properties":{"name":"TOANO","zip":"23168","state":"VA"},"arcs":[[-17896,18108,-17924,18109]]},{"type":"Polygon","properties":{"name":"TOPPING","zip":"23169","state":"VA"},"arcs":[[-18029,18110,-17999]]},{"type":"Polygon","properties":{"name":"URBANNA","zip":"23175","state":"VA"},"arcs":[[18111,18112,-18099,-17925]]},{"type":"Polygon","properties":{"name":"WAKE","zip":"23176","state":"VA"},"arcs":[[-17995,18113,-17992]]},{"type":"Polygon","properties":{"name":"WALKERTON","zip":"23177","state":"VA"},"arcs":[[-18078,-18097,-17497,-17907,-18013,-18106,18114,-18018]]},{"type":"Polygon","properties":{"name":"WATER VIEW","zip":"23180","state":"VA"},"arcs":[[-18112,-17931,-18007,18115]]},{"type":"Polygon","properties":{"name":"WEST POINT","zip":"23181","state":"VA"},"arcs":[[-18022,-18076,-18019,-18115,-18107,-18015,-18026,-18048,-18104,18116]]},{"type":"Polygon","properties":{"name":"WILLIAMSBURG","zip":"23185","state":"VA"},"arcs":[[18117,18118,18119,18120,18121,18122]]},{"type":"Polygon","properties":{"name":"WILLIAMSBURG","zip":"23188","state":"VA"},"arcs":[[-18109,-17899,18123,-18122,-17918]]},{"type":"Polygon","properties":{"name":"MONTPELIER","zip":"23192","state":"VA"},"arcs":[[-17969,-18095,-18033,-17908,-17901,-17957,-17889]]},{"type":"Polygon","properties":{"name":"RICHMOND","zip":"23219","state":"VA"},"arcs":[[18124,18125,18126,18127]]},{"type":"Polygon","properties":{"name":"RICHMOND","zip":"23220","state":"VA"},"arcs":[[18128,18129,18130,18131,-18127,18132]]},{"type":"Polygon","properties":{"name":"RICHMOND","zip":"23221","state":"VA"},"arcs":[[18133,18134,-18129,18135]]},{"type":"Polygon","properties":{"name":"RICHMOND","zip":"23222","state":"VA"},"arcs":[[18136,-18128,-18132,18137,-18051]]},{"type":"Polygon","properties":{"name":"RICHMOND","zip":"23223","state":"VA"},"arcs":[[-18137,-18050,-18003,18138,-18125]]},{"type":"Polygon","properties":{"name":"RICHMOND","zip":"23224","state":"VA"},"arcs":[[18139,18140,18141]]},{"type":"Polygon","properties":{"name":"RICHMOND","zip":"23225","state":"VA"},"arcs":[[18142,18143]]},{"type":"Polygon","properties":{"name":"RICHMOND","zip":"23226","state":"VA"},"arcs":[[18144,18145,18146,-18134,18147]]},{"type":"Polygon","properties":{"name":"RICHMOND","zip":"23227","state":"VA"},"arcs":[[18148,18149,-17972,-17971,-18067,-18138,-18131]]},{"type":"Polygon","properties":{"name":"RICHMOND","zip":"23228","state":"VA"},"arcs":[[18150,18151,-17973,-18150]]},{"type":"Polygon","properties":{"name":"RICHMOND","zip":"23229","state":"VA"},"arcs":[[18152,18153,-18145,18154]]},{"type":"Polygon","properties":{"name":"RICHMOND","zip":"23230","state":"VA"},"arcs":[[-18135,-18147,-18151,-18149,-18130]]},{"type":"Polygon","properties":{"name":"RICHMOND","zip":"23231","state":"VA"},"arcs":[[-17920,18155]]},{"type":"Polygon","properties":{"name":"RICHMOND","zip":"23233","state":"VA"},"arcs":[[-18096,-17967,-17975,18156,-18153,18157,-18038]]},{"type":"Polygon","properties":{"name":"RICHMOND","zip":"23234","state":"VA"},"arcs":[[18158,-18142,18159,18160]]},{"type":"Polygon","properties":{"name":"RICHMOND","zip":"23235","state":"VA"},"arcs":[[-18063,18161,-18143,18162]]},{"type":"Polygon","properties":{"name":"RICHMOND","zip":"23236","state":"VA"},"arcs":[[-18065,18163,18164,-18056]]},{"type":"Polygon","properties":{"name":"RICHMOND","zip":"23237","state":"VA"},"arcs":[[18165,-18161,18166,18167,18168]]},{"type":"Polygon","properties":{"name":"RICHMOND","zip":"23294","state":"VA"},"arcs":[[-18146,-18154,-18157,-17974,-18152]]},{"type":"Polygon","properties":{"name":"ACCOMAC","zip":"23301","state":"VA"},"arcs":[[18169,18170,18171,18172,18173]]},{"type":"Polygon","properties":{"name":"ASSAWOMAN","zip":"23302","state":"VA"},"arcs":[[18174,18175,18176,18177]]},{"type":"Polygon","properties":{"name":"BELLE HAVEN","zip":"23306","state":"VA"},"arcs":[[18178,18179,18180]]},{"type":"Polygon","properties":{"name":"BIRDSNEST","zip":"23307","state":"VA"},"arcs":[[18181,18182,18183,18184]]},{"type":"Polygon","properties":{"name":"BLOXOM","zip":"23308","state":"VA"},"arcs":[[18185,-18175,18186,18187,18188,18189]]},{"type":"Polygon","properties":{"name":"CAPE CHARLES","zip":"23310","state":"VA"},"arcs":[[18190,18191]]},{"type":"Polygon","properties":{"name":"CARROLLTON","zip":"23314","state":"VA"},"arcs":[[18192,18193,18194]]},{"type":"Polygon","properties":{"name":"CARRSVILLE","zip":"23315","state":"VA"},"arcs":[[18195,18196,18197,18198,18199]]},{"type":"Polygon","properties":{"name":"CHESAPEAKE","zip":"23320","state":"VA"},"arcs":[[18200,18201,18202,18203,18204,18205]]},{"type":"Polygon","properties":{"name":"CHESAPEAKE","zip":"23321","state":"VA"},"arcs":[[18206,18207,18208,18209,18210,18211]]},{"type":"Polygon","properties":{"name":"CHESAPEAKE","zip":"23322","state":"VA"},"arcs":[[18212,18213,-18206,18214,18215,18216,18217,18218]]},{"type":"Polygon","properties":{"name":"CHESAPEAKE","zip":"23323","state":"VA"},"arcs":[[-18214,18219,-18211,18220,18221,18222,18223,-18201]]},{"type":"Polygon","properties":{"name":"CHESAPEAKE","zip":"23324","state":"VA"},"arcs":[[-18224,18224,18225,18226,-18202]]},{"type":"Polygon","properties":{"name":"CHESAPEAKE","zip":"23325","state":"VA"},"arcs":[[-18227,18227,18228,18229,-18203]]},{"type":"Polygon","properties":{"name":"CHINCOTEAGUE ISLAND","zip":"23336","state":"VA"},"arcs":[[-683,18230]]},{"type":"Polygon","properties":{"name":"WALLOPS ISLAND","zip":"23337","state":"VA"},"arcs":[[18231,18232,18233]]},{"type":"Polygon","properties":{"name":"EXMORE","zip":"23350","state":"VA"},"arcs":[[-18179,18234,18235]]},{"type":"Polygon","properties":{"name":"GREENBACKVILLE","zip":"23356","state":"VA"},"arcs":[[-17170,18236,18237]]},{"type":"Polygon","properties":{"name":"GREENBUSH","zip":"23357","state":"VA"},"arcs":[[18238,-18172,18239,18240]]},{"type":"Polygon","properties":{"name":"HALLWOOD","zip":"23359","state":"VA"},"arcs":[[18241,18242,18243,18244,18245,-18176,-18186]]},{"type":"Polygon","properties":{"name":"JENKINS BRIDGE","zip":"23399","state":"VA"},"arcs":[[18246,18247,-18245]]},{"type":"Polygon","properties":{"name":"LOCUSTVILLE","zip":"23404","state":"VA"},"arcs":[[18248,18249,18250]]},{"type":"Polygon","properties":{"name":"MACHIPONGO","zip":"23405","state":"VA"},"arcs":[[-18191,18251,-18182,18252]]},{"type":"Polygon","properties":{"name":"MEARS","zip":"23409","state":"VA"},"arcs":[[-18242,-18190,18253]]},{"type":"Polygon","properties":{"name":"MELFA","zip":"23410","state":"VA"},"arcs":[[18254,18255,18256,18257,-18249,18258,18259,18260]]},{"type":"Polygon","properties":{"name":"NASSAWADOX","zip":"23413","state":"VA"},"arcs":[[-18184,18261]]},{"type":"Polygon","properties":{"name":"NEW CHURCH","zip":"23415","state":"VA"},"arcs":[[-18233,18262,18263,-17157,-17171,-18238,18264]]},{"type":"Polygon","properties":{"name":"OAK HALL","zip":"23416","state":"VA"},"arcs":[[18265,18266,-18263]]},{"type":"Polygon","properties":{"name":"ONANCOCK","zip":"23417","state":"VA"},"arcs":[[-18240,-18171,18267,-18257,18268]]},{"type":"Polygon","properties":{"name":"ONLEY","zip":"23418","state":"VA"},"arcs":[[-18250,-18258,-18268,-18170,18269]]},{"type":"MultiPolygon","properties":{"name":"PAINTER","zip":"23420","state":"VA"},"arcs":[[[-18255,18270,-18235,-18181,18271]],[[-18260,18272]]]},{"type":"Polygon","properties":{"name":"PARKSLEY","zip":"23421","state":"VA"},"arcs":[[-18173,-18239,18273,-18188,18274]]},{"type":"Polygon","properties":{"name":"SANFORD","zip":"23426","state":"VA"},"arcs":[[18275,-18247,-18244,18276]]},{"type":"Polygon","properties":{"name":"SMITHFIELD","zip":"23430","state":"VA"},"arcs":[[18277,18278,18279,18280,18281,18282,-18194]]},{"type":"Polygon","properties":{"name":"SUFFOLK","zip":"23432","state":"VA"},"arcs":[[18283,-18278,-18193,18284,18285,18286,18287]]},{"type":"Polygon","properties":{"name":"SUFFOLK","zip":"23434","state":"VA"},"arcs":[[-18213,18288,18289,18290,18291,-18200,18292,-18288,18293,18294,-18212,-18220]]},{"type":"Polygon","properties":{"name":"SUFFOLK","zip":"23435","state":"VA"},"arcs":[[-18295,18295,18296,-18207]]},{"type":"Polygon","properties":{"name":"SUFFOLK","zip":"23436","state":"VA"},"arcs":[[-18286,18297]]},{"type":"Polygon","properties":{"name":"SUFFOLK","zip":"23437","state":"VA"},"arcs":[[18298,18299,18300,-18196,-18292]]},{"type":"Polygon","properties":{"name":"SUFFOLK","zip":"23438","state":"VA"},"arcs":[[18301,18302,-18299,-18291]]},{"type":"Polygon","properties":{"name":"TEMPERANCEVILLE","zip":"23442","state":"VA"},"arcs":[[-18248,-18276,-18266,-18232,18303,-18177,-18246]]},{"type":"Polygon","properties":{"name":"VIRGINIA BEACH","zip":"23451","state":"VA"},"arcs":[[18304,18305,18306,18307]]},{"type":"Polygon","properties":{"name":"VIRGINIA BEACH","zip":"23452","state":"VA"},"arcs":[[18308,18309,18310,18311,18312]]},{"type":"Polygon","properties":{"name":"VIRGINIA BEACH","zip":"23454","state":"VA"},"arcs":[[18313,18314,18315,-18311,18316,-18306]]},{"type":"Polygon","properties":{"name":"VIRGINIA BEACH","zip":"23455","state":"VA"},"arcs":[[18317,18318,18319,18320,-18307,-18317,-18310,18321]]},{"type":"Polygon","properties":{"name":"VIRGINIA BEACH","zip":"23456","state":"VA"},"arcs":[[18322,18323,-18313,18324,-18315,18325,18326,18327,18328,18329,-18215,-18205]]},{"type":"Polygon","properties":{"name":"VIRGINIA BEACH","zip":"23457","state":"VA"},"arcs":[[-18330,18330,18331,18332,18333,-18216]]},{"type":"Polygon","properties":{"name":"VIRGINIA BEACH","zip":"23460","state":"VA"},"arcs":[[-18312,-18316,-18325]]},{"type":"Polygon","properties":{"name":"VIRGINIA BEACH","zip":"23461","state":"VA"},"arcs":[[-18326,-18314,-18305,18334]]},{"type":"Polygon","properties":{"name":"VIRGINIA BEACH","zip":"23462","state":"VA"},"arcs":[[18335,18336,-18322,-18309,-18324]]},{"type":"Polygon","properties":{"name":"VIRGINIA BEACH","zip":"23464","state":"VA"},"arcs":[[-18204,-18230,18337,-18336,-18323]]},{"type":"Polygon","properties":{"name":"WINDSOR","zip":"23487","state":"VA"},"arcs":[[18338,18339,-18279,-18284,-18293,-18199]]},{"type":"Polygon","properties":{"name":"NORFOLK","zip":"23502","state":"VA"},"arcs":[[18340,18341,18342,18343,-18318,-18337]]},{"type":"Polygon","properties":{"name":"NORFOLK","zip":"23503","state":"VA"},"arcs":[[18344,18345,18346,18347]]},{"type":"Polygon","properties":{"name":"NORFOLK","zip":"23504","state":"VA"},"arcs":[[18348,18349,18350,18351,-18342,18352]]},{"type":"Polygon","properties":{"name":"NORFOLK","zip":"23505","state":"VA"},"arcs":[[18353,-18345,18354,18355,18356,18357]]},{"type":"Polygon","properties":{"name":"NORFOLK","zip":"23507","state":"VA"},"arcs":[[18358,18359,18360,18361]]},{"type":"Polygon","properties":{"name":"NORFOLK","zip":"23508","state":"VA"},"arcs":[[-18351,18362,-18362,18363]]},{"type":"Polygon","properties":{"name":"NORFOLK","zip":"23509","state":"VA"},"arcs":[[-18357,18364,-18352]]},{"type":"Polygon","properties":{"name":"NORFOLK","zip":"23510","state":"VA"},"arcs":[[-18360,18365,-18349,18366]]},{"type":"Polygon","properties":{"name":"NORFOLK","zip":"23511","state":"VA"},"arcs":[[-18346,-18354,18367]]},{"type":"Polygon","properties":{"name":"NORFOLK","zip":"23513","state":"VA"},"arcs":[[-18365,-18356,18368,-18343]]},{"type":"Polygon","properties":{"name":"NORFOLK","zip":"23517","state":"VA"},"arcs":[[-18359,-18363,-18350,-18366]]},{"type":"Polygon","properties":{"name":"NORFOLK","zip":"23518","state":"VA"},"arcs":[[-18344,-18369,-18355,-18348,18369,18370,-18319]]},{"type":"Polygon","properties":{"name":"NORFOLK","zip":"23521","state":"VA"},"arcs":[[-18371,18371,-18320]]},{"type":"Polygon","properties":{"name":"NORFOLK","zip":"23523","state":"VA"},"arcs":[[-18228,-18226,18372]]},{"type":"Polygon","properties":{"name":"NEWPORT NEWS","zip":"23601","state":"VA"},"arcs":[[18373,18374,18375,18376,18377,18378,18379,18380]]},{"type":"Polygon","properties":{"name":"NEWPORT NEWS","zip":"23602","state":"VA"},"arcs":[[18381,18382,18383,18384,18385,18386,-18378]]},{"type":"Polygon","properties":{"name":"NEWPORT NEWS","zip":"23603","state":"VA"},"arcs":[[18387,18388,-18119,18389]]},{"type":"Polygon","properties":{"name":"FORT EUSTIS","zip":"23604","state":"VA"},"arcs":[[-18120,-18389,18390,-18384,18391]]},{"type":"Polygon","properties":{"name":"NEWPORT NEWS","zip":"23605","state":"VA"},"arcs":[[18392,18393,-18374,18394]]},{"type":"Polygon","properties":{"name":"NEWPORT NEWS","zip":"23606","state":"VA"},"arcs":[[-18382,-18377,18395]]},{"type":"Polygon","properties":{"name":"NEWPORT NEWS","zip":"23607","state":"VA"},"arcs":[[18396,18397,-18375,-18394]]},{"type":"Polygon","properties":{"name":"NEWPORT NEWS","zip":"23608","state":"VA"},"arcs":[[-18391,-18388,18398,-18385]]},{"type":"Polygon","properties":{"name":"HAMPTON","zip":"23661","state":"VA"},"arcs":[[-18397,-18393,18399,18400,18401]]},{"type":"Polygon","properties":{"name":"POQUOSON","zip":"23662","state":"VA"},"arcs":[[18402,18403,18404]]},{"type":"Polygon","properties":{"name":"HAMPTON","zip":"23663","state":"VA"},"arcs":[[18405,18406,18407]]},{"type":"Polygon","properties":{"name":"HAMPTON","zip":"23664","state":"VA"},"arcs":[[-18407,18408,18409]]},{"type":"Polygon","properties":{"name":"HAMPTON","zip":"23665","state":"VA"},"arcs":[[18410,18379,18411]]},{"type":"Polygon","properties":{"name":"HAMPTON","zip":"23666","state":"VA"},"arcs":[[18411,18412,-18403,18413,18414,-18400,-18395,-18381]]},{"type":"Polygon","properties":{"name":"HAMPTON","zip":"23669","state":"VA"},"arcs":[[-18401,-18415,18415,-18409,-18406,18416]]},{"type":"Polygon","properties":{"name":"YORKTOWN","zip":"23690","state":"VA"},"arcs":[[18417,-18390,-18118,18418]]},{"type":"Polygon","properties":{"name":"YORKTOWN","zip":"23692","state":"VA"},"arcs":[[-18399,-18418,18419,18420,18421,18422,-18386]]},{"type":"Polygon","properties":{"name":"YORKTOWN","zip":"23693","state":"VA"},"arcs":[[-18387,-18423,18423,-18404,-18413,18410,-18379]]},{"type":"Polygon","properties":{"name":"SEAFORD","zip":"23696","state":"VA"},"arcs":[[-18421,18424]]},{"type":"Polygon","properties":{"name":"PORTSMOUTH","zip":"23701","state":"VA"},"arcs":[[18425,18426,18427,-18221,-18210,18428]]},{"type":"Polygon","properties":{"name":"PORTSMOUTH","zip":"23702","state":"VA"},"arcs":[[-18428,18429,-18222]]},{"type":"Polygon","properties":{"name":"PORTSMOUTH","zip":"23703","state":"VA"},"arcs":[[-18208,-18297,18430]]},{"type":"Polygon","properties":{"name":"PORTSMOUTH","zip":"23704","state":"VA"},"arcs":[[-18430,-18427,18431,18432]]},{"type":"Polygon","properties":{"name":"PORTSMOUTH","zip":"23707","state":"VA"},"arcs":[[-18432,-18426,18433]]},{"type":"Polygon","properties":{"name":"FORT LEE","zip":"23801","state":"VA"},"arcs":[[18434,18435,18436,18437]]},{"type":"Polygon","properties":{"name":"PETERSBURG","zip":"23803","state":"VA"},"arcs":[[18438,18439,18440,18441,18442,18443,18444,18445,18446,-18435]]},{"type":"Polygon","properties":{"name":"PETERSBURG","zip":"23805","state":"VA"},"arcs":[[18447,18448,18449,-18440,18450]]},{"type":"Polygon","properties":{"name":"ALBERTA","zip":"23821","state":"VA"},"arcs":[[18451,18452,18453,18454,18455,18456,18457,18458]]},{"type":"Polygon","properties":{"name":"BLACKSTONE","zip":"23824","state":"VA"},"arcs":[[18459,18460,18461,-17882,18462,18463,18464,18465,-18457]]},{"type":"Polygon","properties":{"name":"BOYKINS","zip":"23827","state":"VA"},"arcs":[[18466,18467,18468,18469,18470,18471]]},{"type":"Polygon","properties":{"name":"BRANCHVILLE","zip":"23828","state":"VA"},"arcs":[[18472,18473,-18470,18474]]},{"type":"Polygon","properties":{"name":"CAPRON","zip":"23829","state":"VA"},"arcs":[[18475,-18472,18476,18477,18478]]},{"type":"Polygon","properties":{"name":"CARSON","zip":"23830","state":"VA"},"arcs":[[18479,-18449,18480,18481,18482]]},{"type":"Polygon","properties":{"name":"CHESTER","zip":"23831","state":"VA"},"arcs":[[18483,18484,-18169,18485,18486,-18445]]},{"type":"Polygon","properties":{"name":"CHESTERFIELD","zip":"23832","state":"VA"},"arcs":[[-18485,18487,-18070,-18057,-18165,18488,-18140,-18159,-18166]]},{"type":"Polygon","properties":{"name":"CHURCH ROAD","zip":"23833","state":"VA"},"arcs":[[18489,18490,18491,-17880,18492,-18443,18493]]},{"type":"Polygon","properties":{"name":"COLONIAL HEIGHTS","zip":"23834","state":"VA"},"arcs":[[-18487,18494,18495,18496,-18446]]},{"type":"Polygon","properties":{"name":"CHESTER","zip":"23836","state":"VA"},"arcs":[[-18486,-18168,18497,18498,-18495]]},{"type":"Polygon","properties":{"name":"COURTLAND","zip":"23837","state":"VA"},"arcs":[[18499,18500,18501,18502,18503,-18479]]},{"type":"Polygon","properties":{"name":"CHESTERFIELD","zip":"23838","state":"VA"},"arcs":[[-18071,-18488,-18484,-18444,-18493,-17879]]},{"type":"Polygon","properties":{"name":"DENDRON","zip":"23839","state":"VA"},"arcs":[[18504,18505,18506,18507]]},{"type":"Polygon","properties":{"name":"DEWITT","zip":"23840","state":"VA"},"arcs":[[18508,18509,-18491,18510]]},{"type":"Polygon","properties":{"name":"DINWIDDIE","zip":"23841","state":"VA"},"arcs":[[-18490,18511,-18441,-18450,-18480,18512,18513,-18511]]},{"type":"Polygon","properties":{"name":"DISPUTANTA","zip":"23842","state":"VA"},"arcs":[[18514,18515,18516,18517,18518,-18481,-18448]]},{"type":"Polygon","properties":{"name":"DOLPHIN","zip":"23843","state":"VA"},"arcs":[[18519,-18452,18520]]},{"type":"Polygon","properties":{"name":"DREWRYVILLE","zip":"23844","state":"VA"},"arcs":[[18521,18522,-18477,-18471,-18474]]},{"type":"Polygon","properties":{"name":"EBONY","zip":"23845","state":"VA"},"arcs":[[18523,18524,18525,18526,18527]]},{"type":"Polygon","properties":{"name":"ELBERON","zip":"23846","state":"VA"},"arcs":[[18528,18529,-18507,18530,18531,-18281]]},{"type":"Polygon","properties":{"name":"EMPORIA","zip":"23847","state":"VA"},"arcs":[[18532,18533,18534,18535,18536,18537,-18522,-18473,18538,18539]]},{"type":"Polygon","properties":{"name":"FORD","zip":"23850","state":"VA"},"arcs":[[18540,-18463,-17881,-18492,-18510,18541]]},{"type":"Polygon","properties":{"name":"FRANKLIN","zip":"23851","state":"VA"},"arcs":[[18542,18543,18544,-18503,18545,18546,18547,-18197,-18301]]},{"type":"Polygon","properties":{"name":"FREEMAN","zip":"23856","state":"VA"},"arcs":[[18548,18549,18550,-18537]]},{"type":"Polygon","properties":{"name":"GASBURG","zip":"23857","state":"VA"},"arcs":[[18551,18552,18553,18554,18555]]},{"type":"Polygon","properties":{"name":"HOPEWELL","zip":"23860","state":"VA"},"arcs":[[18556,-18496,-18499,18557,-18516,18558,-18437]]},{"type":"Polygon","properties":{"name":"IVOR","zip":"23866","state":"VA"},"arcs":[[18559,-18547,18560,18561,-18529,-18280,-18340]]},{"type":"Polygon","properties":{"name":"JARRATT","zip":"23867","state":"VA"},"arcs":[[18562,-18523,-18538,-18551,18563,18564,18565]]},{"type":"Polygon","properties":{"name":"LAWRENCEVILLE","zip":"23868","state":"VA"},"arcs":[[18566,18567,-18453,-18520,18568,-18549,-18536,18569,-18555]]},{"type":"Polygon","properties":{"name":"MC KENNEY","zip":"23872","state":"VA"},"arcs":[[18570,-18565,18571,18572,-18465,18573,-18542,-18509,-18514]]},{"type":"Polygon","properties":{"name":"NEWSOMS","zip":"23874","state":"VA"},"arcs":[[18574,-18467,-18476,-18504,-18545]]},{"type":"MultiPolygon","properties":{"name":"PRINCE GEORGE","zip":"23875","state":"VA"},"arcs":[[[-18447,-18497,-18557,-18436]],[[-18439,-18438,-18559,-18515,-18451]]]},{"type":"Polygon","properties":{"name":"RAWLINGS","zip":"23876","state":"VA"},"arcs":[[18575,-18458,-18466,-18573]]},{"type":"Polygon","properties":{"name":"SEDLEY","zip":"23878","state":"VA"},"arcs":[[-18502,18576,18577,-18561,-18546]]},{"type":"Polygon","properties":{"name":"SKIPPERS","zip":"23879","state":"VA"},"arcs":[[18578,18579,18580,-18533]]},{"type":"Polygon","properties":{"name":"SPRING GROVE","zip":"23881","state":"VA"},"arcs":[[18581,-18531,-18506,18582,-18518,18583]]},{"type":"Polygon","properties":{"name":"STONY CREEK","zip":"23882","state":"VA"},"arcs":[[18584,18585,-18566,-18571,-18513,-18483]]},{"type":"Polygon","properties":{"name":"SURRY","zip":"23883","state":"VA"},"arcs":[[-18532,-18582,18586,-18282]]},{"type":"Polygon","properties":{"name":"SUTHERLAND","zip":"23885","state":"VA"},"arcs":[[-18494,-18442,-18512]]},{"type":"Polygon","properties":{"name":"VALENTINES","zip":"23887","state":"VA"},"arcs":[[18587,18588,-18556,-18570,-18535]]},{"type":"Polygon","properties":{"name":"WAKEFIELD","zip":"23888","state":"VA"},"arcs":[[-18578,18589,-18508,-18530,-18562]]},{"type":"Polygon","properties":{"name":"WARFIELD","zip":"23889","state":"VA"},"arcs":[[-18459,-18576,-18572,-18564,-18550,-18569,-18521]]},{"type":"Polygon","properties":{"name":"WAVERLY","zip":"23890","state":"VA"},"arcs":[[-18501,18590,-18585,-18482,-18519,-18583,-18505,-18590,-18577]]},{"type":"Polygon","properties":{"name":"WHITE PLAINS","zip":"23893","state":"VA"},"arcs":[[18591,-18528,18592,18593,-18567,-18554]]},{"type":"Polygon","properties":{"name":"WILSONS","zip":"23894","state":"VA"},"arcs":[[-18464,-18541,-18574]]},{"type":"Polygon","properties":{"name":"YALE","zip":"23897","state":"VA"},"arcs":[[-18563,-18586,-18591,-18500,-18478]]},{"type":"Polygon","properties":{"name":"ZUNI","zip":"23898","state":"VA"},"arcs":[[-18560,-18339,-18198,-18548]]},{"type":"Polygon","properties":{"name":"FARMVILLE","zip":"23901","state":"VA"},"arcs":[[18594,18595,18596,18597,18598,18599,-17875,18600,18601,18602,18603]]},{"type":"Polygon","properties":{"name":"BASKERVILLE","zip":"23915","state":"VA"},"arcs":[[18604,18605,18606,18607,18608]]},{"type":"Polygon","properties":{"name":"BOYDTON","zip":"23917","state":"VA"},"arcs":[[18609,18610,18611,18612,18613,18614,18615,-18606]]},{"type":"Polygon","properties":{"name":"BRACEY","zip":"23919","state":"VA"},"arcs":[[18616,-18610,-18605,18617,18618,-18526]]},{"type":"Polygon","properties":{"name":"BRODNAX","zip":"23920","state":"VA"},"arcs":[[-18594,18619,18620,18621,-18454,-18568]]},{"type":"Polygon","properties":{"name":"BUCKINGHAM","zip":"23921","state":"VA"},"arcs":[[18622,18623,18624,18625,18626]]},{"type":"Polygon","properties":{"name":"BURKEVILLE","zip":"23922","state":"VA"},"arcs":[[18627,18628,18629,18630,-18009]]},{"type":"Polygon","properties":{"name":"CHARLOTTE COURT HOUSE","zip":"23923","state":"VA"},"arcs":[[18631,18632,18633,18634,18635,18636,18637,-18595]]},{"type":"Polygon","properties":{"name":"CHASE CITY","zip":"23924","state":"VA"},"arcs":[[-18616,18638,18639,18640,18641,18642,18643,-18607]]},{"type":"Polygon","properties":{"name":"CLARKSVILLE","zip":"23927","state":"VA"},"arcs":[[18644,18645,18646,18647,18648,18649,18650,-18614]]},{"type":"Polygon","properties":{"name":"CREWE","zip":"23930","state":"VA"},"arcs":[[18651,18652,18653,-18628,-18008,-17872,-18462,18654]]},{"type":"Polygon","properties":{"name":"CULLEN","zip":"23934","state":"VA"},"arcs":[[18655,-18638]]},{"type":"Polygon","properties":{"name":"DILLWYN","zip":"23936","state":"VA"},"arcs":[[18656,-18623,18657,-17884,-18073,-17950,18658,18659]]},{"type":"Polygon","properties":{"name":"DRAKES BRANCH","zip":"23937","state":"VA"},"arcs":[[18660,18661,18662,-18633,18663,-18642]]},{"type":"Polygon","properties":{"name":"DUNDAS","zip":"23938","state":"VA"},"arcs":[[18664,-18460,-18456]]},{"type":"Polygon","properties":{"name":"GREEN BAY","zip":"23942","state":"VA"},"arcs":[[18665,-18602,18666,-18630,18667]]},{"type":"Polygon","properties":{"name":"KENBRIDGE","zip":"23944","state":"VA"},"arcs":[[-18644,18668,-18655,-18461,-18665,-18455,-18622,18669,-18608]]},{"type":"Polygon","properties":{"name":"KEYSVILLE","zip":"23947","state":"VA"},"arcs":[[-18632,-18604,18670,18671,-18664]]},{"type":"Polygon","properties":{"name":"LA CROSSE","zip":"23950","state":"VA"},"arcs":[[-18619,18672,-18620,-18593,-18527]]},{"type":"Polygon","properties":{"name":"LUNENBURG","zip":"23952","state":"VA"},"arcs":[[18673,-18653]]},{"type":"Polygon","properties":{"name":"MEHERRIN","zip":"23954","state":"VA"},"arcs":[[18674,-18671,-18603,-18666]]},{"type":"Polygon","properties":{"name":"PAMPLIN","zip":"23958","state":"VA"},"arcs":[[-18637,18675,18676,18677,-18596,-18656]]},{"type":"Polygon","properties":{"name":"PHENIX","zip":"23959","state":"VA"},"arcs":[[18678,18679,18680,-18635]]},{"type":"Polygon","properties":{"name":"PROSPECT","zip":"23960","state":"VA"},"arcs":[[18681,-18597,-18678]]},{"type":"Polygon","properties":{"name":"RANDOLPH","zip":"23962","state":"VA"},"arcs":[[18682,18683,18684,18685,18686,-18679,-18634,-18663]]},{"type":"Polygon","properties":{"name":"RED HOUSE","zip":"23963","state":"VA"},"arcs":[[18687,18688,18689,-18676,-18636,-18681]]},{"type":"Polygon","properties":{"name":"RED OAK","zip":"23964","state":"VA"},"arcs":[[18690,18691,-18640,18692,-18650]]},{"type":"Polygon","properties":{"name":"RICE","zip":"23966","state":"VA"},"arcs":[[-18667,-18601,-17874,-18010,-18631]]},{"type":"Polygon","properties":{"name":"SAXE","zip":"23967","state":"VA"},"arcs":[[18693,18694,-18683,-18662]]},{"type":"Polygon","properties":{"name":"SKIPWITH","zip":"23968","state":"VA"},"arcs":[[-18651,-18693,-18639,-18615]]},{"type":"Polygon","properties":{"name":"SOUTH HILL","zip":"23970","state":"VA"},"arcs":[[-18618,-18609,-18670,-18621,-18673]]},{"type":"Polygon","properties":{"name":"VICTORIA","zip":"23974","state":"VA"},"arcs":[[-18675,-18668,-18629,-18654,-18674,-18652,-18669,-18643,-18672]]},{"type":"Polygon","properties":{"name":"WYLLIESBURG","zip":"23976","state":"VA"},"arcs":[[-18692,18695,-18694,-18661,-18641]]},{"type":"Polygon","properties":{"name":"ROANOKE","zip":"24012","state":"VA"},"arcs":[[18696,18697,18698,18699,18700,18701,18702]]},{"type":"Polygon","properties":{"name":"ROANOKE","zip":"24013","state":"VA"},"arcs":[[18703,18704,18705,-18698]]},{"type":"Polygon","properties":{"name":"ROANOKE","zip":"24014","state":"VA"},"arcs":[[18706,18707,18708,-18705,18709,18710,18711]]},{"type":"Polygon","properties":{"name":"ROANOKE","zip":"24015","state":"VA"},"arcs":[[18712,18713,18714,-18708]]},{"type":"Polygon","properties":{"name":"ROANOKE","zip":"24016","state":"VA"},"arcs":[[-18709,-18715,18715,-18699,-18706]]},{"type":"Polygon","properties":{"name":"ROANOKE","zip":"24017","state":"VA"},"arcs":[[18716,18717,-18700,-18716,-18714,18718]]},{"type":"Polygon","properties":{"name":"ROANOKE","zip":"24018","state":"VA"},"arcs":[[18719,18720,18721,18722,-18719,-18713,-18707]]},{"type":"Polygon","properties":{"name":"ROANOKE","zip":"24019","state":"VA"},"arcs":[[18723,18724,18725,18726,18727,-18701,-18718]]},{"type":"Polygon","properties":{"name":"ARARAT","zip":"24053","state":"VA"},"arcs":[[18728,18729,18730]]},{"type":"Polygon","properties":{"name":"AXTON","zip":"24054","state":"VA"},"arcs":[[18731,18732,18733,18734,18735]]},{"type":"Polygon","properties":{"name":"BASSETT","zip":"24055","state":"VA"},"arcs":[[18736,18737,18738,18739,18740,18741,18742,18743,18744]]},{"type":"Polygon","properties":{"name":"BENT MOUNTAIN","zip":"24059","state":"VA"},"arcs":[[18745,18746,18747,18748,18749,-18722]]},{"type":"Polygon","properties":{"name":"BLACKSBURG","zip":"24060","state":"VA"},"arcs":[[18750,18751,18752,18753,18754,18755,18756]]},{"type":"Polygon","properties":{"name":"BLUE RIDGE","zip":"24064","state":"VA"},"arcs":[[18757,18758,18759,18760,18761,-18703]]},{"type":"Polygon","properties":{"name":"BOONES MILL","zip":"24065","state":"VA"},"arcs":[[18762,18763,18764,-18720,-18712,18765]]},{"type":"MultiPolygon","properties":{"name":"BUCHANAN","zip":"24066","state":"VA"},"arcs":[[[18766,18767,18768,18769,18770]],[[18771,18772,18773,18774,18775,18776]]]},{"type":"Polygon","properties":{"name":"CALLAWAY","zip":"24067","state":"VA"},"arcs":[[18777,18778,18779,18780,-18746,-18721,-18765]]},{"type":"Polygon","properties":{"name":"CASCADE","zip":"24069","state":"VA"},"arcs":[[18781,18782,18783,18784,-18732,18785]]},{"type":"Polygon","properties":{"name":"CATAWBA","zip":"24070","state":"VA"},"arcs":[[18786,18787,-18757,18788,18789]]},{"type":"Polygon","properties":{"name":"CHECK","zip":"24072","state":"VA"},"arcs":[[18790,18791,18792,18793]]},{"type":"Polygon","properties":{"name":"CHRISTIANSBURG","zip":"24073","state":"VA"},"arcs":[[18794,18795,18796,-18752,18797,18798]]},{"type":"Polygon","properties":{"name":"CLAUDVILLE","zip":"24076","state":"VA"},"arcs":[[18799,18800,18801,18802,-18731,18803]]},{"type":"Polygon","properties":{"name":"CLOVERDALE","zip":"24077","state":"VA"},"arcs":[[18804,18805,-18727]]},{"type":"Polygon","properties":{"name":"COLLINSVILLE","zip":"24078","state":"VA"},"arcs":[[18806,18807,-18744,18808]]},{"type":"Polygon","properties":{"name":"COPPER HILL","zip":"24079","state":"VA"},"arcs":[[18809,-18791,18810,-18747,-18781]]},{"type":"Polygon","properties":{"name":"CRITZ","zip":"24082","state":"VA"},"arcs":[[18811,18812,18813]]},{"type":"Polygon","properties":{"name":"DALEVILLE","zip":"24083","state":"VA"},"arcs":[[18814,-18805,-18726]]},{"type":"Polygon","properties":{"name":"DUBLIN","zip":"24084","state":"VA"},"arcs":[[18815,18816,18817]]},{"type":"Polygon","properties":{"name":"EAGLE ROCK","zip":"24085","state":"VA"},"arcs":[[18818,18819,18820,18821,-18769,18822,-18773,18823]]},{"type":"Polygon","properties":{"name":"EGGLESTON","zip":"24086","state":"VA"},"arcs":[[18824,18825]]},{"type":"Polygon","properties":{"name":"ELLISTON","zip":"24087","state":"VA"},"arcs":[[18826,-18798,-18751,-18788,18827,-18749]]},{"type":"Polygon","properties":{"name":"FERRUM","zip":"24088","state":"VA"},"arcs":[[18828,18829,18830,18831,-18779,18832]]},{"type":"Polygon","properties":{"name":"FIELDALE","zip":"24089","state":"VA"},"arcs":[[18833,-18807,18834,-18737]]},{"type":"Polygon","properties":{"name":"FINCASTLE","zip":"24090","state":"VA"},"arcs":[[18835,-18824,-18772,18836]]},{"type":"Polygon","properties":{"name":"FLOYD","zip":"24091","state":"VA"},"arcs":[[18837,18838,18839,18840,18841,-18792,-18810,-18780,-18832]]},{"type":"Polygon","properties":{"name":"GLADE HILL","zip":"24092","state":"VA"},"arcs":[[18842,18843,18844,18845]]},{"type":"Polygon","properties":{"name":"GLEN LYN","zip":"24093","state":"VA"},"arcs":[[18846,18847,18848]]},{"type":"Polygon","properties":{"name":"GOODVIEW","zip":"24095","state":"VA"},"arcs":[[18849,18850,18851]]},{"type":"Polygon","properties":{"name":"HARDY","zip":"24101","state":"VA"},"arcs":[[-18711,18852,-18850,18853,18854,-18766]]},{"type":"Polygon","properties":{"name":"HENRY","zip":"24102","state":"VA"},"arcs":[[18855,-18829,18856,-18741]]},{"type":"Polygon","properties":{"name":"HUDDLESTON","zip":"24104","state":"VA"},"arcs":[[18857,18858,18859,18860,18861,18862,18863,18864,18865]]},{"type":"Polygon","properties":{"name":"INDIAN VALLEY","zip":"24105","state":"VA"},"arcs":[[18866,18867,18868]]},{"type":"Polygon","properties":{"name":"MARTINSVILLE","zip":"24112","state":"VA"},"arcs":[[18869,18870,18871,-18738,-18835,-18809,-18743,18872,18873,18874,-18734]]},{"type":"Polygon","properties":{"name":"MEADOWS OF DAN","zip":"24120","state":"VA"},"arcs":[[18875,18876,18877,-18839,18878,18879,-18804,-18730]]},{"type":"Polygon","properties":{"name":"MONETA","zip":"24121","state":"VA"},"arcs":[[18880,18881,-18854,-18852,18882,18883,18884,18885,18886,-18861]]},{"type":"Polygon","properties":{"name":"MONTVALE","zip":"24122","state":"VA"},"arcs":[[18887,-18760,18888]]},{"type":"Polygon","properties":{"name":"NARROWS","zip":"24124","state":"VA"},"arcs":[[18889,18890,-18849,18891,18892,18893,18894,18895,18896]]},{"type":"Polygon","properties":{"name":"NEW CASTLE","zip":"24127","state":"VA"},"arcs":[[18897,18898,18899,-18819,-18836,18900,18901,18902]]},{"type":"Polygon","properties":{"name":"NEWPORT","zip":"24128","state":"VA"},"arcs":[[18903,18904,18905,-18755]]},{"type":"Polygon","properties":{"name":"PAINT BANK","zip":"24131","state":"VA"},"arcs":[[18906,18907,-18899]]},{"type":"Polygon","properties":{"name":"PATRICK SPRINGS","zip":"24133","state":"VA"},"arcs":[[18908,-18813,18909,-18739,-18872]]},{"type":"Polygon","properties":{"name":"PEARISBURG","zip":"24134","state":"VA"},"arcs":[[18910,-18818,18911,18912,18913,18914,-18895,18915,18916,-18825,18917,-18904,-18754]]},{"type":"Polygon","properties":{"name":"PEMBROKE","zip":"24136","state":"VA"},"arcs":[[-18917,18918,18919,18920,-18905,-18918,-18826]]},{"type":"Polygon","properties":{"name":"PENHOOK","zip":"24137","state":"VA"},"arcs":[[18921,-18843,18922,18923,18924,18925,-18874]]},{"type":"Polygon","properties":{"name":"PILOT","zip":"24138","state":"VA"},"arcs":[[18926,-18795,18927,-18793,-18842]]},{"type":"Polygon","properties":{"name":"PITTSVILLE","zip":"24139","state":"VA"},"arcs":[[18928,18929,18930,-18859]]},{"type":"Polygon","properties":{"name":"RADFORD","zip":"24141","state":"VA"},"arcs":[[18931,18932,18933,18934,-18816,-18911,-18753,-18797]]},{"type":"Polygon","properties":{"name":"RICH CREEK","zip":"24147","state":"VA"},"arcs":[[18935,18936,18937,18938,-18892,-18848]]},{"type":"Polygon","properties":{"name":"RIDGEWAY","zip":"24148","state":"VA"},"arcs":[[18939,18940,18941,-18870,-18733,-18785]]},{"type":"Polygon","properties":{"name":"RINER","zip":"24149","state":"VA"},"arcs":[[18942,-18932,-18796,-18927,-18841]]},{"type":"Polygon","properties":{"name":"RIPPLEMEAD","zip":"24150","state":"VA"},"arcs":[[-18916,-18894,18943,18944,18945,18946,-18919]]},{"type":"Polygon","properties":{"name":"ROCKY MOUNT","zip":"24151","state":"VA"},"arcs":[[-18833,-18778,-18764,18947,-18844,-18922,-18873,-18742,-18857]]},{"type":"Polygon","properties":{"name":"SALEM","zip":"24153","state":"VA"},"arcs":[[-18750,-18828,-18787,18948,-18724,-18717,-18723]]},{"type":"Polygon","properties":{"name":"SANDY LEVEL","zip":"24161","state":"VA"},"arcs":[[18949,-18924,18950,-18860,-18931]]},{"type":"Polygon","properties":{"name":"SHAWSVILLE","zip":"24162","state":"VA"},"arcs":[[-18794,-18928,-18799,-18827,-18748,-18811]]},{"type":"Polygon","properties":{"name":"SPENCER","zip":"24165","state":"VA"},"arcs":[[18951,-18814,-18909,-18871,-18942,18952,18953]]},{"type":"Polygon","properties":{"name":"STAFFORDSVILLE","zip":"24167","state":"VA"},"arcs":[[18954,-18914]]},{"type":"Polygon","properties":{"name":"STANLEYTOWN","zip":"24168","state":"VA"},"arcs":[[-18745,-18808,-18834]]},{"type":"Polygon","properties":{"name":"STUART","zip":"24171","state":"VA"},"arcs":[[-18952,18955,18956,18957,-18800,-18880,18958,-18830,-18856,-18740,-18910,-18812]]},{"type":"Polygon","properties":{"name":"THAXTON","zip":"24174","state":"VA"},"arcs":[[-18884,18959,-18761,-18888,18960]]},{"type":"Polygon","properties":{"name":"TROUTVILLE","zip":"24175","state":"VA"},"arcs":[[-18949,-18790,18961,-18758,-18702,-18728,-18806,-18815,-18725]]},{"type":"Polygon","properties":{"name":"UNION HALL","zip":"24176","state":"VA"},"arcs":[[-18846,18962,-18881,-18951,-18923]]},{"type":"Polygon","properties":{"name":"VINTON","zip":"24179","state":"VA"},"arcs":[[-18710,-18704,-18697,-18762,-18960,-18883,-18851,-18853]]},{"type":"Polygon","properties":{"name":"WIRTZ","zip":"24184","state":"VA"},"arcs":[[-18948,-18763,-18855,-18882,-18963,-18845]]},{"type":"Polygon","properties":{"name":"WOOLWINE","zip":"24185","state":"VA"},"arcs":[[-18838,-18831,-18959,-18879]]},{"type":"Polygon","properties":{"name":"BRISTOL","zip":"24201","state":"VA"},"arcs":[[18963,18964]]},{"type":"Polygon","properties":{"name":"BRISTOL","zip":"24202","state":"VA"},"arcs":[[18965,18966,18967,18968,18969,18970,18971,-18965]]},{"type":"Polygon","properties":{"name":"ABINGDON","zip":"24210","state":"VA"},"arcs":[[18972,18973,-18970,18974,18975,18976]]},{"type":"Polygon","properties":{"name":"ABINGDON","zip":"24211","state":"VA"},"arcs":[[-18974,18977,18978,18979,-18971]]},{"type":"Polygon","properties":{"name":"APPALACHIA","zip":"24216","state":"VA"},"arcs":[[18980,18981,18982,18983,18984,18985,18986,18987,18988,18989,18990,18991]]},{"type":"Polygon","properties":{"name":"BEE","zip":"24217","state":"VA"},"arcs":[[18992,18993,18994,18995,18996,18997]]},{"type":"Polygon","properties":{"name":"BIG STONE GAP","zip":"24219","state":"VA"},"arcs":[[18998,18999,19000,-18991,19001,19002]]},{"type":"Polygon","properties":{"name":"BIRCHLEAF","zip":"24220","state":"VA"},"arcs":[[19003,-18997,19004,19005]]},{"type":"Polygon","properties":{"name":"BLACKWATER","zip":"24221","state":"VA"},"arcs":[[19006,19007,19008,19009]]},{"type":"Polygon","properties":{"name":"CASTLEWOOD","zip":"24224","state":"VA"},"arcs":[[19010,19011,19012,19013,19014,19015,19016,19017,19018]]},{"type":"Polygon","properties":{"name":"CLEVELAND","zip":"24225","state":"VA"},"arcs":[[19019,19020,-19017,19021,-18993,19022,19023]]},{"type":"Polygon","properties":{"name":"CLINCHCO","zip":"24226","state":"VA"},"arcs":[[19024,19025,19026,19027,19028]]},{"type":"Polygon","properties":{"name":"CLINTWOOD","zip":"24228","state":"VA"},"arcs":[[19029,19030,19031,19032,19033,19034,-19027]]},{"type":"Polygon","properties":{"name":"COEBURN","zip":"24230","state":"VA"},"arcs":[[19035,-19012,19036,-19003,19037,19038,19039,-19031,19040,19041]]},{"type":"Polygon","properties":{"name":"DAMASCUS","zip":"24236","state":"VA"},"arcs":[[19042,19043,19044,19045,19046,19047,19048,19049,-18979]]},{"type":"Polygon","properties":{"name":"DANTE","zip":"24237","state":"VA"},"arcs":[[19050,-19029,-18995,19051,-19015]]},{"type":"Polygon","properties":{"name":"DAVENPORT","zip":"24239","state":"VA"},"arcs":[[19052,-19023,19053]]},{"type":"Polygon","properties":{"name":"DRYDEN","zip":"24243","state":"VA"},"arcs":[[19054,19055,19056,-18992,-19001]]},{"type":"Polygon","properties":{"name":"DUFFIELD","zip":"24244","state":"VA"},"arcs":[[19057,19058,-19010,19059,19060,-19055,-19000,19061]]},{"type":"Polygon","properties":{"name":"DUNGANNON","zip":"24245","state":"VA"},"arcs":[[19062,19063,19064,-19037,-19011]]},{"type":"Polygon","properties":{"name":"EWING","zip":"24248","state":"VA"},"arcs":[[19065,19066,19067,19068,19069,19070,19071]]},{"type":"Polygon","properties":{"name":"FORT BLACKMORE","zip":"24250","state":"VA"},"arcs":[[-18999,-19065,19072,-19062]]},{"type":"Polygon","properties":{"name":"GATE CITY","zip":"24251","state":"VA"},"arcs":[[19073,19074,19075,-19058,-19073,-19064,19076,19077]]},{"type":"Polygon","properties":{"name":"HAYSI","zip":"24256","state":"VA"},"arcs":[[-18996,-19028,-19035,19078,19079,19080,19081,19082,-19005]]},{"type":"Polygon","properties":{"name":"HILTONS","zip":"24258","state":"VA"},"arcs":[[19083,-19078,19084,19085,-18968,19086,19087]]},{"type":"Polygon","properties":{"name":"HONAKER","zip":"24260","state":"VA"},"arcs":[[19088,19089,19090,-19024,-19053,19091,19092,19093]]},{"type":"Polygon","properties":{"name":"JONESVILLE","zip":"24263","state":"VA"},"arcs":[[19094,19095,19096,19097,-19060,-19009,19098]]},{"type":"Polygon","properties":{"name":"KEOKEE","zip":"24265","state":"VA"},"arcs":[[19099,19100,19101,-18981,-19057]]},{"type":"Polygon","properties":{"name":"LEBANON","zip":"24266","state":"VA"},"arcs":[[-19021,19102,19103,-18976,19104,19105,-19018]]},{"type":"Polygon","properties":{"name":"MC CLURE","zip":"24269","state":"VA"},"arcs":[[19106,-19041,-19030,-19026]]},{"type":"Polygon","properties":{"name":"MENDOTA","zip":"24270","state":"VA"},"arcs":[[-19086,-19105,-18975,-18969]]},{"type":"Polygon","properties":{"name":"NICKELSVILLE","zip":"24271","state":"VA"},"arcs":[[-19085,-19077,-19063,-19019,-19106]]},{"type":"Polygon","properties":{"name":"NORA","zip":"24272","state":"VA"},"arcs":[[-19014,19107,-19042,-19107,-19025,-19051]]},{"type":"Polygon","properties":{"name":"NORTON","zip":"24273","state":"VA"},"arcs":[[-19002,-18990,19108,-19038]]},{"type":"Polygon","properties":{"name":"PENNINGTON GAP","zip":"24277","state":"VA"},"arcs":[[-19061,-19098,19109,19110,19111,-19100,-19056]]},{"type":"Polygon","properties":{"name":"POUND","zip":"24279","state":"VA"},"arcs":[[19112,19113,19114,19115,-19032,-19040,19116,-18988]]},{"type":"Polygon","properties":{"name":"ROSEDALE","zip":"24280","state":"VA"},"arcs":[[-19091,19117,19118,19119,-19103,-19020]]},{"type":"Polygon","properties":{"name":"ROSE HILL","zip":"24281","state":"VA"},"arcs":[[19120,-19072,19121,-19095]]},{"type":"Polygon","properties":{"name":"SAINT CHARLES","zip":"24282","state":"VA"},"arcs":[[19122,19123,-19101,-19112]]},{"type":"Polygon","properties":{"name":"SAINT PAUL","zip":"24283","state":"VA"},"arcs":[[-19036,-19108,-19013]]},{"type":"Polygon","properties":{"name":"STONEGA","zip":"24285","state":"VA"},"arcs":[[19124,19125,-18986]]},{"type":"Polygon","properties":{"name":"TRAMMEL","zip":"24289","state":"VA"},"arcs":[[-19052,-18994,-19022,-19016]]},{"type":"Polygon","properties":{"name":"WEBER CITY","zip":"24290","state":"VA"},"arcs":[[19126,-19074,-19084]]},{"type":"Polygon","properties":{"name":"WHITETOP","zip":"24292","state":"VA"},"arcs":[[19127,19128,19129,-19047,19130,19131]]},{"type":"Polygon","properties":{"name":"WISE","zip":"24293","state":"VA"},"arcs":[[-18989,-19117,-19039,-19109]]},{"type":"Polygon","properties":{"name":"PULASKI","zip":"24301","state":"VA"},"arcs":[[19132,19133,-18912,-18817,-18935,19134,19135]]},{"type":"Polygon","properties":{"name":"ATKINS","zip":"24311","state":"VA"},"arcs":[[19136,19137]]},{"type":"Polygon","properties":{"name":"AUSTINVILLE","zip":"24312","state":"VA"},"arcs":[[19138,19139,19140,19141,19142,19143]]},{"type":"Polygon","properties":{"name":"BARREN SPRINGS","zip":"24313","state":"VA"},"arcs":[[19144,19145,19146,19147]]},{"type":"Polygon","properties":{"name":"BASTIAN","zip":"24314","state":"VA"},"arcs":[[19148,19149,19150,19151,-18897,19152,19153]]},{"type":"Polygon","properties":{"name":"BLAND","zip":"24315","state":"VA"},"arcs":[[19154,19155,19156,-19153,-18896,-18915,-18955,-18913,-19134]]},{"type":"Polygon","properties":{"name":"CANA","zip":"24317","state":"VA"},"arcs":[[19157,19158,19159,19160]]},{"type":"Polygon","properties":{"name":"CERES","zip":"24318","state":"VA"},"arcs":[[19161,19162,19163,19164,-19154,-19157,19165]]},{"type":"Polygon","properties":{"name":"CHILHOWIE","zip":"24319","state":"VA"},"arcs":[[19166,-19045,19167,19168,19169]]},{"type":"Polygon","properties":{"name":"CRIPPLE CREEK","zip":"24322","state":"VA"},"arcs":[[19170,19171,19172,19173,19174]]},{"type":"Polygon","properties":{"name":"CROCKETT","zip":"24323","state":"VA"},"arcs":[[19175,19176]]},{"type":"Polygon","properties":{"name":"DRAPER","zip":"24324","state":"VA"},"arcs":[[19177,-19136,19178,-19147]]},{"type":"Polygon","properties":{"name":"DUGSPUR","zip":"24325","state":"VA"},"arcs":[[19179,19180,19181,-18867,19182]]},{"type":"Polygon","properties":{"name":"ELK CREEK","zip":"24326","state":"VA"},"arcs":[[19183,19184,19185,19186,19187,-19171]]},{"type":"Polygon","properties":{"name":"FANCY GAP","zip":"24328","state":"VA"},"arcs":[[19188,19189,19190,-19161]]},{"type":"Polygon","properties":{"name":"FRIES","zip":"24330","state":"VA"},"arcs":[[-19175,19191,-19142,19192,19193,-19184]]},{"type":"Polygon","properties":{"name":"GALAX","zip":"24333","state":"VA"},"arcs":[[19194,-19193,-19141,19195,19196,-19190,19197,19198,19199,19200]]},{"type":"Polygon","properties":{"name":"GLADE SPRING","zip":"24340","state":"VA"},"arcs":[[19201,19202,-19168,-19044]]},{"type":"Polygon","properties":{"name":"HILLSVILLE","zip":"24343","state":"VA"},"arcs":[[-18729,-18803,19203,-19158,-19191,-19197,19204,-19139,19205,-19145,19206,-19181,19207,-18876]]},{"type":"Polygon","properties":{"name":"HIWASSEE","zip":"24347","state":"VA"},"arcs":[[-19179,-19135,-18934,19208,-18868,-19182,-19207,-19148]]},{"type":"Polygon","properties":{"name":"INDEPENDENCE","zip":"24348","state":"VA"},"arcs":[[19209,19210,-19185,-19194,-19195,19211]]},{"type":"Polygon","properties":{"name":"IVANHOE","zip":"24350","state":"VA"},"arcs":[[-19192,-19174,19212,19213,-19143]]},{"type":"Polygon","properties":{"name":"LAMBSBURG","zip":"24351","state":"VA"},"arcs":[[19214,19215,-19198,-19189,-19160]]},{"type":"Polygon","properties":{"name":"LAUREL FORK","zip":"24352","state":"VA"},"arcs":[[-19208,-19180,-18877]]},{"type":"Polygon","properties":{"name":"MARION","zip":"24354","state":"VA"},"arcs":[[19216,-19163,19217,-19137,19218,19219,19220,-19170]]},{"type":"Polygon","properties":{"name":"MAX MEADOWS","zip":"24360","state":"VA"},"arcs":[[19221,-19155,-19133,-19178,-19146,-19206,-19144,-19214]]},{"type":"Polygon","properties":{"name":"MEADOWVIEW","zip":"24361","state":"VA"},"arcs":[[-19043,-18978,-18973,19222,-19202]]},{"type":"Polygon","properties":{"name":"MOUTH OF WILSON","zip":"24363","state":"VA"},"arcs":[[19223,19224,19225,19226,-19128,19227,19228,-19210]]},{"type":"Polygon","properties":{"name":"ROCKY GAP","zip":"24366","state":"VA"},"arcs":[[19229,19230,-18890,-19152]]},{"type":"Polygon","properties":{"name":"RURAL RETREAT","zip":"24368","state":"VA"},"arcs":[[-19138,-19218,-19162,19231,-19176,19232,19233,19234,-19219]]},{"type":"Polygon","properties":{"name":"SALTVILLE","zip":"24370","state":"VA"},"arcs":[[-19203,-19223,-18977,-19104,-19120,19235,19236,19237,-19164,-19217,-19169]]},{"type":"Polygon","properties":{"name":"SPEEDWELL","zip":"24374","state":"VA"},"arcs":[[19238,-19234,19239,-19172,-19188]]},{"type":"Polygon","properties":{"name":"SUGAR GROVE","zip":"24375","state":"VA"},"arcs":[[19240,-19220,-19235,-19239,-19187]]},{"type":"Polygon","properties":{"name":"TANNERSVILLE","zip":"24377","state":"VA"},"arcs":[[19241,-19237]]},{"type":"Polygon","properties":{"name":"TROUT DALE","zip":"24378","state":"VA"},"arcs":[[19242,-19131,-19046,-19167,-19221,-19241,-19186,-19211,-19229]]},{"type":"Polygon","properties":{"name":"VOLNEY","zip":"24379","state":"VA"},"arcs":[[-19132,-19243,-19228]]},{"type":"Polygon","properties":{"name":"WILLIS","zip":"24380","state":"VA"},"arcs":[[-18869,-19209,-18933,-18943,-18840,-18878,-19183]]},{"type":"Polygon","properties":{"name":"WOODLAWN","zip":"24381","state":"VA"},"arcs":[[-19140,-19205,-19196]]},{"type":"Polygon","properties":{"name":"WYTHEVILLE","zip":"24382","state":"VA"},"arcs":[[-19177,-19232,-19166,-19156,-19222,-19213,-19173,-19240,-19233]]},{"type":"Polygon","properties":{"name":"STAUNTON","zip":"24401","state":"VA"},"arcs":[[19243,19244,19245,19246,19247,-17750,19248,19249,19250,-17867,-17823,-17871]]},{"type":"Polygon","properties":{"name":"BLUE GRASS","zip":"24413","state":"VA"},"arcs":[[19251,19252,19253,19254]]},{"type":"Polygon","properties":{"name":"BUENA VISTA","zip":"24416","state":"VA"},"arcs":[[19255,19256,19257,19258,19259]]},{"type":"Polygon","properties":{"name":"CHURCHVILLE","zip":"24421","state":"VA"},"arcs":[[19260,19261,-17746,-19248]]},{"type":"Polygon","properties":{"name":"CLIFTON FORGE","zip":"24422","state":"VA"},"arcs":[[19262,19263,19264,19265,19266,-18821]]},{"type":"Polygon","properties":{"name":"COVINGTON","zip":"24426","state":"VA"},"arcs":[[19267,19268,19269,19270,19271,-19263,-18820,-18900,-18908]]},{"type":"Polygon","properties":{"name":"CRAIGSVILLE","zip":"24430","state":"VA"},"arcs":[[19272,19273,19274,19275,19276]]},{"type":"Polygon","properties":{"name":"CRIMORA","zip":"24431","state":"VA"},"arcs":[[-17869,19277,19278,-17801]]},{"type":"Polygon","properties":{"name":"DEERFIELD","zip":"24432","state":"VA"},"arcs":[[19279,19280,19281,19282,-19275]]},{"type":"Polygon","properties":{"name":"DOE HILL","zip":"24433","state":"VA"},"arcs":[[19283,19284,19285]]},{"type":"Polygon","properties":{"name":"FAIRFIELD","zip":"24435","state":"VA"},"arcs":[[19286,-19259,19287,19288,19289]]},{"type":"Polygon","properties":{"name":"FORT DEFIANCE","zip":"24437","state":"VA"},"arcs":[[19290,19291,19292,-19278,-17868,-19251]]},{"type":"Polygon","properties":{"name":"GOSHEN","zip":"24439","state":"VA"},"arcs":[[19293,-19280,-19274,19294,19295,-19266]]},{"type":"Polygon","properties":{"name":"GREENVILLE","zip":"24440","state":"VA"},"arcs":[[19296,19297,-19245,19298,-17839]]},{"type":"Polygon","properties":{"name":"GROTTOES","zip":"24441","state":"VA"},"arcs":[[-17802,-19279,-19293,19299,19300,-17739,19301,-17723]]},{"type":"Polygon","properties":{"name":"HEAD WATERS","zip":"24442","state":"VA"},"arcs":[[19302,19303,19304,-19282,19305]]},{"type":"Polygon","properties":{"name":"HOT SPRINGS","zip":"24445","state":"VA"},"arcs":[[-19272,19306,19307,19308,-19264]]},{"type":"Polygon","properties":{"name":"LEXINGTON","zip":"24450","state":"VA"},"arcs":[[-19267,-19296,19309,-19288,-19258,19310,19311,-18770,-18822]]},{"type":"Polygon","properties":{"name":"MC DOWELL","zip":"24458","state":"VA"},"arcs":[[19312,19313,-19284,19314,-19303,19315]]},{"type":"Polygon","properties":{"name":"MIDDLEBROOK","zip":"24459","state":"VA"},"arcs":[[19316,-19273,19317,-19246,-19298,19318]]},{"type":"Polygon","properties":{"name":"MILLBORO","zip":"24460","state":"VA"},"arcs":[[19319,19320,-19306,-19281,-19294,-19265,-19309]]},{"type":"Polygon","properties":{"name":"MONTEBELLO","zip":"24464","state":"VA"},"arcs":[[19321,19322,-17837,-17866,-17856]]},{"type":"Polygon","properties":{"name":"MONTEREY","zip":"24465","state":"VA"},"arcs":[[19323,19324,19325,19326,-19252,19327,-19285,-19314,19328,19329]]},{"type":"Polygon","properties":{"name":"MOUNT SIDNEY","zip":"24467","state":"VA"},"arcs":[[19330,-19249,-17749,-17698,19331,-19300,-19292]]},{"type":"Polygon","properties":{"name":"MUSTOE","zip":"24468","state":"VA"},"arcs":[[19332,19333,-19329,-19313]]},{"type":"Polygon","properties":{"name":"PORT REPUBLIC","zip":"24471","state":"VA"},"arcs":[[-19302,-17741,-17680,-17737,-17724]]},{"type":"Polygon","properties":{"name":"RAPHINE","zip":"24472","state":"VA"},"arcs":[[19334,-19290,19335,-19319,-19297,-17838,-19323]]},{"type":"Polygon","properties":{"name":"ROCKBRIDGE BATHS","zip":"24473","state":"VA"},"arcs":[[-19310,-19295,-19317,-19336,-19289]]},{"type":"Polygon","properties":{"name":"STUARTS DRAFT","zip":"24477","state":"VA"},"arcs":[[-19244,-17870,-17840,-19299]]},{"type":"Polygon","properties":{"name":"SWOOPE","zip":"24479","state":"VA"},"arcs":[[-19318,-19277,19336,-19261,-19247]]},{"type":"Polygon","properties":{"name":"VERONA","zip":"24482","state":"VA"},"arcs":[[-19331,-19291,-19250]]},{"type":"Polygon","properties":{"name":"VESUVIUS","zip":"24483","state":"VA"},"arcs":[[19337,-19260,-19287,-19335,-19322,-17855]]},{"type":"Polygon","properties":{"name":"WARM SPRINGS","zip":"24484","state":"VA"},"arcs":[[19338,19339,-19330,-19334,19340,-19320,-19308]]},{"type":"Polygon","properties":{"name":"WEST AUGUSTA","zip":"24485","state":"VA"},"arcs":[[-19276,-19283,-19305,-17747,-19262,-19337]]},{"type":"Polygon","properties":{"name":"WEYERS CAVE","zip":"24486","state":"VA"},"arcs":[[-17697,-17740,-19301,-19332]]},{"type":"Polygon","properties":{"name":"WILLIAMSVILLE","zip":"24487","state":"VA"},"arcs":[[-19341,-19333,-19316,-19321]]},{"type":"Polygon","properties":{"name":"LYNCHBURG","zip":"24501","state":"VA"},"arcs":[[19341,19342,19343,19344]]},{"type":"Polygon","properties":{"name":"LYNCHBURG","zip":"24502","state":"VA"},"arcs":[[19345,19346,-19342,19347,19348]]},{"type":"Polygon","properties":{"name":"LYNCHBURG","zip":"24503","state":"VA"},"arcs":[[-19347,19349,19350,19351,19352,-19343]]},{"type":"Polygon","properties":{"name":"LYNCHBURG","zip":"24504","state":"VA"},"arcs":[[19353,19354,-19344,-19353,19355]]},{"type":"Polygon","properties":{"name":"ALTAVISTA","zip":"24517","state":"VA"},"arcs":[[19356,19357,19358,19359]]},{"type":"Polygon","properties":{"name":"ALTON","zip":"24520","state":"VA"},"arcs":[[19360,19361,19362,19363,19364,19365,19366]]},{"type":"Polygon","properties":{"name":"AMHERST","zip":"24521","state":"VA"},"arcs":[[19367,19368,19369,-17854,-17787]]},{"type":"Polygon","properties":{"name":"APPOMATTOX","zip":"24522","state":"VA"},"arcs":[[19370,19371,19372,19373,-18598,-18682,-18677,-18690]]},{"type":"Polygon","properties":{"name":"BEDFORD","zip":"24523","state":"VA"},"arcs":[[-18776,19374,19375,19376,19377,-18886,19378]]},{"type":"Polygon","properties":{"name":"BIG ISLAND","zip":"24526","state":"VA"},"arcs":[[-19376,19379,19380]]},{"type":"Polygon","properties":{"name":"BLAIRS","zip":"24527","state":"VA"},"arcs":[[19381,19382,19383]]},{"type":"Polygon","properties":{"name":"BROOKNEAL","zip":"24528","state":"VA"},"arcs":[[-18687,19384,19385,19386,-18688,-18680]]},{"type":"Polygon","properties":{"name":"BUFFALO JUNCTION","zip":"24529","state":"VA"},"arcs":[[19387,19388,19389,19390,-18648]]},{"type":"Polygon","properties":{"name":"CALLANDS","zip":"24530","state":"VA"},"arcs":[[19391,19392,-18735,-18875,-18926,19393]]},{"type":"Polygon","properties":{"name":"CHATHAM","zip":"24531","state":"VA"},"arcs":[[-18925,-18950,-18930,19394,19395,19396,19397,19398,-19394]]},{"type":"Polygon","properties":{"name":"CLOVER","zip":"24534","state":"VA"},"arcs":[[19399,19400,-18685]]},{"type":"Polygon","properties":{"name":"COLEMAN FALLS","zip":"24536","state":"VA"},"arcs":[[19401,19402,-19351]]},{"type":"Polygon","properties":{"name":"CONCORD","zip":"24538","state":"VA"},"arcs":[[19403,-19354,19404,-19373,19405,-19371,-18689,-19387,19406]]},{"type":"Polygon","properties":{"name":"CRYSTAL HILL","zip":"24539","state":"VA"},"arcs":[[19407,19408,19409]]},{"type":"Polygon","properties":{"name":"DANVILLE","zip":"24540","state":"VA"},"arcs":[[-18736,-19393,19410,-19382,19411,19412,19413,-18786]]},{"type":"Polygon","properties":{"name":"DANVILLE","zip":"24541","state":"VA"},"arcs":[[19414,19415,19416,19417,-18782,-19414]]},{"type":"Polygon","properties":{"name":"DRY FORK","zip":"24549","state":"VA"},"arcs":[[-19411,-19392,-19399,19418,-19383]]},{"type":"Polygon","properties":{"name":"EVINGTON","zip":"24550","state":"VA"},"arcs":[[19419,-18865,19420,-19349,19421,19422,-19360]]},{"type":"Polygon","properties":{"name":"FOREST","zip":"24551","state":"VA"},"arcs":[[19423,19424,-19402,-19350,-19346,-19421,-18864]]},{"type":"MultiPolygon","properties":{"name":"GLADSTONE","zip":"24553","state":"VA"},"arcs":[[[-17792,19425,19426,-19368]],[[-18657,19427,19428,-18624]]]},{"type":"Polygon","properties":{"name":"GLADYS","zip":"24554","state":"VA"},"arcs":[[19429,19430,19431,-19357,-19423,19432,-19407,-19386]]},{"type":"Polygon","properties":{"name":"GLASGOW","zip":"24555","state":"VA"},"arcs":[[19433,19434,-19311,-19257,19435,19436]]},{"type":"Polygon","properties":{"name":"GOODE","zip":"24556","state":"VA"},"arcs":[[-19424,-18863,19437]]},{"type":"Polygon","properties":{"name":"GRETNA","zip":"24557","state":"VA"},"arcs":[[19438,19439,-19395,-18929,-18858,19440,19441,19442]]},{"type":"Polygon","properties":{"name":"HALIFAX","zip":"24558","state":"VA"},"arcs":[[19443,19444,19407,19445,19446]]},{"type":"Polygon","properties":{"name":"HOWARDSVILLE","zip":"24562","state":"VA"},"arcs":[[-17859,-17810,19447]]},{"type":"Polygon","properties":{"name":"HURT","zip":"24563","state":"VA"},"arcs":[[19448,-19442,19449,-19358,-19432]]},{"type":"Polygon","properties":{"name":"JAVA","zip":"24565","state":"VA"},"arcs":[[-19440,19450,19451,-19396]]},{"type":"Polygon","properties":{"name":"KEELING","zip":"24566","state":"VA"},"arcs":[[-19384,-19419,-19398,19452,19453,19454,19455,-19412]]},{"type":"Polygon","properties":{"name":"LONG ISLAND","zip":"24569","state":"VA"},"arcs":[[-19449,-19431,19456,-19443]]},{"type":"Polygon","properties":{"name":"LYNCH STATION","zip":"24571","state":"VA"},"arcs":[[-19420,-19359,-19450,-19441,-18866]]},{"type":"Polygon","properties":{"name":"MADISON HEIGHTS","zip":"24572","state":"VA"},"arcs":[[19457]]},{"type":"Polygon","properties":{"name":"MONROE","zip":"24574","state":"VA"},"arcs":[[-19436,-19256,-19338,-19370,19458,19459]]},{"type":"Polygon","properties":{"name":"NATHALIE","zip":"24577","state":"VA"},"arcs":[[-19439,-19457,-19430,-19385,-18686,-19401,19460,19409,-19445,19461,-19451]]},{"type":"Polygon","properties":{"name":"NATURAL BRIDGE","zip":"24578","state":"VA"},"arcs":[[19462,-18771,-19312,-19435]]},{"type":"MultiPolygon","properties":{"name":"NATURAL BRIDGE STATION","zip":"24579","state":"VA"},"arcs":[[[-18767,-19463,-19434,19463]],[[-18775,19464,-19380,-19375]]]},{"type":"Polygon","properties":{"name":"NELSON","zip":"24580","state":"VA"},"arcs":[[19465,19466,19467,-19389]]},{"type":"Polygon","properties":{"name":"RINGGOLD","zip":"24586","state":"VA"},"arcs":[[19468,-19415,-19413,-19456,19469,-19361]]},{"type":"Polygon","properties":{"name":"RUSTBURG","zip":"24588","state":"VA"},"arcs":[[-19433,-19422,-19348,-19345,-19355,-19404]]},{"type":"Polygon","properties":{"name":"SCOTTSBURG","zip":"24589","state":"VA"},"arcs":[[-18649,-19391,19470,19471,-19446,19408,-19461,-19400,-18684,-18695,-18696,-18691]]},{"type":"MultiPolygon","properties":{"name":"SCOTTSVILLE","zip":"24590","state":"VA"},"arcs":[[[-17814,-17830,-17768,-17847,19472]],[[-18658,-18627,19473,-17885]]]},{"type":"Polygon","properties":{"name":"SOUTH BOSTON","zip":"24592","state":"VA"},"arcs":[[19474,-19454,19475,-19447,-19472,19476,-19363]]},{"type":"Polygon","properties":{"name":"SPOUT SPRING","zip":"24593","state":"VA"},"arcs":[[-19406,-19372]]},{"type":"Polygon","properties":{"name":"SUTHERLIN","zip":"24594","state":"VA"},"arcs":[[-19470,-19455,-19475,-19362]]},{"type":"Polygon","properties":{"name":"VERNON HILL","zip":"24597","state":"VA"},"arcs":[[-19453,-19397,-19452,-19462,-19444,-19476]]},{"type":"Polygon","properties":{"name":"VIRGILINA","zip":"24598","state":"VA"},"arcs":[[-19477,-19471,-19390,-19468,19477,19478,-19364]]},{"type":"MultiPolygon","properties":{"name":"WINGINA","zip":"24599","state":"VA"},"arcs":[[[-17791,-17863,-17861,19479,-19426]],[[-18625,-19429,19480]]]},{"type":"Polygon","properties":{"name":"BANDY","zip":"24602","state":"VA"},"arcs":[[19481,19482,19483,19484,19485,19486,19487,19488]]},{"type":"Polygon","properties":{"name":"BIG ROCK","zip":"24603","state":"VA"},"arcs":[[19489,19490,19491,-19080]]},{"type":"Polygon","properties":{"name":"BLUEFIELD","zip":"24605","state":"VA"},"arcs":[[-19151,19492,-19486,19493,19494,19495,19496,19497,19498,-19230]]},{"type":"Polygon","properties":{"name":"CEDAR BLUFF","zip":"24609","state":"VA"},"arcs":[[19499,19500,-19489,19501]]},{"type":"Polygon","properties":{"name":"FALLS MILLS","zip":"24613","state":"VA"},"arcs":[[19502,-19498]]},{"type":"Polygon","properties":{"name":"GRUNDY","zip":"24614","state":"VA"},"arcs":[[-19492,19503,19504,19505,19506,19507,19508,-19081]]},{"type":"Polygon","properties":{"name":"HURLEY","zip":"24620","state":"VA"},"arcs":[[19509,19510,-19506]]},{"type":"Polygon","properties":{"name":"JEWELL RIDGE","zip":"24622","state":"VA"},"arcs":[[19511,19512,19513,19514,19515,-19483]]},{"type":"Polygon","properties":{"name":"MAVISDALE","zip":"24627","state":"VA"},"arcs":[[-19083,19516,-19006]]},{"type":"Polygon","properties":{"name":"NORTH TAZEWELL","zip":"24630","state":"VA"},"arcs":[[-19493,-19150,19517,19518,-19487]]},{"type":"Polygon","properties":{"name":"OAKWOOD","zip":"24631","state":"VA"},"arcs":[[19519,19520,-19094,19521,19522,-19508,19523,19524]]},{"type":"Polygon","properties":{"name":"PILGRIMS KNOB","zip":"24634","state":"VA"},"arcs":[[19525,-19524,-19507,-19511,19526]]},{"type":"Polygon","properties":{"name":"POUNDING MILL","zip":"24637","state":"VA"},"arcs":[[-19502,-19488,-19519,19527,-19118,-19090]]},{"type":"Polygon","properties":{"name":"RAVEN","zip":"24639","state":"VA"},"arcs":[[19528,-19520,19529,-19513,19530,-19500]]},{"type":"Polygon","properties":{"name":"RICHLANDS","zip":"24641","state":"VA"},"arcs":[[-19531,-19512,-19482,-19501]]},{"type":"Polygon","properties":{"name":"ROWE","zip":"24646","state":"VA"},"arcs":[[19531,-19522,-19093]]},{"type":"Polygon","properties":{"name":"SWORDS CREEK","zip":"24649","state":"VA"},"arcs":[[-19521,-19529,-19089]]},{"type":"Polygon","properties":{"name":"TAZEWELL","zip":"24651","state":"VA"},"arcs":[[-19242,-19236,-19119,-19528,-19518,-19149,-19165,-19238]]},{"type":"Polygon","properties":{"name":"VANSANT","zip":"24656","state":"VA"},"arcs":[[-19004,-19517,-19082,-19509,-19523,-19532,-19092,-19054,-18998]]},{"type":"Polygon","properties":{"name":"WHITEWOOD","zip":"24657","state":"VA"},"arcs":[[-19526,19532,-19514,-19530,-19525]]},{"type":"Polygon","properties":{"name":"BLUEFIELD","zip":"24701","state":"WV"},"arcs":[[19533,-19231,-19499,-19503,-19497,19534,19535]]},{"type":"Polygon","properties":{"name":"ATHENS","zip":"24712","state":"WV"},"arcs":[[-18937,19536,19537,19538]]},{"type":"Polygon","properties":{"name":"BEESON","zip":"24714","state":"WV"},"arcs":[[19539,19540,19541,19542,19543]]},{"type":"Polygon","properties":{"name":"BRAMWELL","zip":"24715","state":"WV"},"arcs":[[-19496,19544,19545,-19535]]},{"type":"Polygon","properties":{"name":"HERNDON","zip":"24726","state":"WV"},"arcs":[[19546,19547,19548,19549,19550,19551,19552,19553,19554]]},{"type":"Polygon","properties":{"name":"KEGLEY","zip":"24731","state":"WV"},"arcs":[[19555,19556,19557]]},{"type":"Polygon","properties":{"name":"LASHMEET","zip":"24733","state":"WV"},"arcs":[[19558,-19542,19559]]},{"type":"Polygon","properties":{"name":"MATOAKA","zip":"24736","state":"WV"},"arcs":[[19560,-19554,19561,19562,-19543,-19559,19563]]},{"type":"Polygon","properties":{"name":"PRINCETON","zip":"24740","state":"WV"},"arcs":[[19564,-19558,19565,19566,-19537,-18936,-18847,-18891,-19534]]},{"type":"Polygon","properties":{"name":"ROCK","zip":"24747","state":"WV"},"arcs":[[19567,-19564,-19560,-19541,19568,-19556,-19565,-19536,-19546]]},{"type":"Polygon","properties":{"name":"WELCH","zip":"24801","state":"WV"},"arcs":[[19569,19570,19571,19572,-19495,19573]]},{"type":"Polygon","properties":{"name":"BERWIND","zip":"24815","state":"WV"},"arcs":[[19574,-19484,-19516,19575,19576]]},{"type":"Polygon","properties":{"name":"BRENTON","zip":"24818","state":"WV"},"arcs":[[19577,19578,19579,19580,19581,19582,19583,19584]]},{"type":"Polygon","properties":{"name":"CLEAR FORK","zip":"24822","state":"WV"},"arcs":[[19585,19586,19587,-19580]]},{"type":"Polygon","properties":{"name":"COAL MOUNTAIN","zip":"24823","state":"WV"},"arcs":[[19588,19589,19590,-19587]]},{"type":"Polygon","properties":{"name":"CYCLONE","zip":"24827","state":"WV"},"arcs":[[19591,19592,19593,19594,19595,-19591]]},{"type":"Polygon","properties":{"name":"DAVY","zip":"24828","state":"WV"},"arcs":[[19596,19597,-19571]]},{"type":"Polygon","properties":{"name":"FANROCK","zip":"24834","state":"WV"},"arcs":[[19598,-19583]]},{"type":"Polygon","properties":{"name":"HANOVER","zip":"24839","state":"WV"},"arcs":[[19599,19600,19601,19602,19603]]},{"type":"Polygon","properties":{"name":"IAEGER","zip":"24844","state":"WV"},"arcs":[[19604,-19603,19605,-19578,19606,19607,19608,19609]]},{"type":"Polygon","properties":{"name":"JESSE","zip":"24849","state":"WV"},"arcs":[[19610,19611,19612,19613,19614]]},{"type":"Polygon","properties":{"name":"JOLO","zip":"24850","state":"WV"},"arcs":[[-19515,-19533,-19527,-19609,-19576]]},{"type":"Polygon","properties":{"name":"MARIANNA","zip":"24859","state":"WV"},"arcs":[[19615,-19582,19616,-19615,19617]]},{"type":"Polygon","properties":{"name":"MATHENY","zip":"24860","state":"WV"},"arcs":[[19618,-19611,-19617,-19581]]},{"type":"Polygon","properties":{"name":"MOHAWK","zip":"24862","state":"WV"},"arcs":[[-19605,19619,19620,19621,19622,-19604]]},{"type":"Polygon","properties":{"name":"NORTHFORK","zip":"24868","state":"WV"},"arcs":[[-19561,-19568,-19545,-19573,19623]]},{"type":"Polygon","properties":{"name":"OCEANA","zip":"24870","state":"WV"},"arcs":[[-19619,-19588,-19596,19624,19625,19626,19627,19628,19629,-19612]]},{"type":"Polygon","properties":{"name":"PAYNESVILLE","zip":"24873","state":"WV"},"arcs":[[19630,-19577,-19608,-19597,-19570]]},{"type":"Polygon","properties":{"name":"PINEVILLE","zip":"24874","state":"WV"},"arcs":[[-19584,-19599,-19616,19631,19632,-19547,19633]]},{"type":"Polygon","properties":{"name":"SIMON","zip":"24882","state":"WV"},"arcs":[[19634,19635,-19589,-19586,-19579,-19606,-19602]]},{"type":"Polygon","properties":{"name":"SQUIRE","zip":"24884","state":"WV"},"arcs":[[-19494,-19485,-19575,-19631,-19574]]},{"type":"Polygon","properties":{"name":"LEWISBURG","zip":"24901","state":"WV"},"arcs":[[19636,19637,19638,19639,19640,19641,19642,19643,19644]]},{"type":"Polygon","properties":{"name":"ALDERSON","zip":"24910","state":"WV"},"arcs":[[19645,19646,19647,19648,19649,19650,19651,19652,19653,-19645,19654,19655,19656,19657]]},{"type":"Polygon","properties":{"name":"ARBOVALE","zip":"24915","state":"WV"},"arcs":[[19658,19659,19660]]},{"type":"Polygon","properties":{"name":"ASBURY","zip":"24916","state":"WV"},"arcs":[[-19654,19661,19662,19663,-19637]]},{"type":"Polygon","properties":{"name":"AUTO","zip":"24917","state":"WV"},"arcs":[[-19339,-19307,-19271,19664,19665,19666]]},{"type":"Polygon","properties":{"name":"BALLARD","zip":"24918","state":"WV"},"arcs":[[19667,19668,19669,19670]]},{"type":"Polygon","properties":{"name":"BARTOW","zip":"24920","state":"WV"},"arcs":[[-19253,-19327,-19661,19671,19672,19673,19674,19675]]},{"type":"Polygon","properties":{"name":"CALDWELL","zip":"24925","state":"WV"},"arcs":[[19676,19677,-19642]]},{"type":"Polygon","properties":{"name":"CASS","zip":"24927","state":"WV"},"arcs":[[19678,19679,19680,19681,-19672,-19660,19682,19683,19684]]},{"type":"Polygon","properties":{"name":"CRAWLEY","zip":"24931","state":"WV"},"arcs":[[19685,-19663,19686,19687,19688,19689,19690]]},{"type":"Polygon","properties":{"name":"DUNMORE","zip":"24934","state":"WV"},"arcs":[[19691,-19684,19692,-19325]]},{"type":"Polygon","properties":{"name":"FOREST HILL","zip":"24935","state":"WV"},"arcs":[[19693,19694,19695,-19670,19696]]},{"type":"Polygon","properties":{"name":"FORT SPRING","zip":"24936","state":"WV"},"arcs":[[19697,-19655,-19644,19698]]},{"type":"Polygon","properties":{"name":"FRANKFORD","zip":"24938","state":"WV"},"arcs":[[19699,19700,-19640]]},{"type":"Polygon","properties":{"name":"GAP MILLS","zip":"24941","state":"WV"},"arcs":[[-19268,-18907,-18898,19701,19702,19703]]},{"type":"Polygon","properties":{"name":"GLACE","zip":"24942","state":"WV"},"arcs":[[19704,19705,19706,-19269,-19704]]},{"type":"Polygon","properties":{"name":"GRASSY MEADOWS","zip":"24943","state":"WV"},"arcs":[[19707,-19652,19708,19709,19710,19711]]},{"type":"Polygon","properties":{"name":"GREEN BANK","zip":"24944","state":"WV"},"arcs":[[-19326,-19693,-19683,-19659]]},{"type":"Polygon","properties":{"name":"GREENVILLE","zip":"24945","state":"WV"},"arcs":[[19712,19713,19714,19715,-19668]]},{"type":"Polygon","properties":{"name":"HILLSBORO","zip":"24946","state":"WV"},"arcs":[[19716,19717,19718]]},{"type":"Polygon","properties":{"name":"LINDSIDE","zip":"24951","state":"WV"},"arcs":[[-18945,19719,19720]]},{"type":"Polygon","properties":{"name":"MARLINTON","zip":"24954","state":"WV"},"arcs":[[19721,19722,19723,-19685,-19692,-19324,-19340,-19667,19724,-19719]]},{"type":"Polygon","properties":{"name":"MEADOW BLUFF","zip":"24958","state":"WV"},"arcs":[[19725,19726,-19688,19727,-19712]]},{"type":"Polygon","properties":{"name":"PENCE SPRINGS","zip":"24962","state":"WV"},"arcs":[[19728,-19646,19729]]},{"type":"Polygon","properties":{"name":"PETERSTOWN","zip":"24963","state":"WV"},"arcs":[[-18944,-18893,-18939,19730,-19720]]},{"type":"Polygon","properties":{"name":"RENICK","zip":"24966","state":"WV"},"arcs":[[19731,-19700,-19639,19732,19733,19734,19735,-19717,-19725,-19666]]},{"type":"Polygon","properties":{"name":"RONCEVERTE","zip":"24970","state":"WV"},"arcs":[[19736,-19699,-19643,-19678,19737]]},{"type":"Polygon","properties":{"name":"SECONDCREEK","zip":"24974","state":"WV"},"arcs":[[19738,19739,-19738,19740,-19706]]},{"type":"Polygon","properties":{"name":"SINKS GROVE","zip":"24976","state":"WV"},"arcs":[[19741,-19656,-19698,-19737,-19740,19742]]},{"type":"Polygon","properties":{"name":"SMOOT","zip":"24977","state":"WV"},"arcs":[[-19653,-19708,-19728,-19687,-19662]]},{"type":"Polygon","properties":{"name":"TALCOTT","zip":"24981","state":"WV"},"arcs":[[19743,-19647,-19729,19744]]},{"type":"Polygon","properties":{"name":"UNION","zip":"24983","state":"WV"},"arcs":[[-19715,19745,-19743,-19739,-19705,-19703,19746,19747]]},{"type":"Polygon","properties":{"name":"WAITEVILLE","zip":"24984","state":"WV"},"arcs":[[-18920,-18947,19748,-18903]]},{"type":"Polygon","properties":{"name":"WAYSIDE","zip":"24985","state":"WV"},"arcs":[[19749,-19713,-19671,-19696,19750,-19745,-19730,-19658]]},{"type":"Polygon","properties":{"name":"WHITE SULPHUR SPRINGS","zip":"24986","state":"WV"},"arcs":[[-19270,-19707,-19741,-19677,-19641,-19701,-19732,-19665]]},{"type":"Polygon","properties":{"name":"WILLIAMSBURG","zip":"24991","state":"WV"},"arcs":[[-19664,-19686,19751,-19733,-19638]]},{"type":"Polygon","properties":{"name":"WOLFCREEK","zip":"24993","state":"WV"},"arcs":[[-19714,-19750,-19657,-19742,-19746]]},{"type":"Polygon","properties":{"name":"ALUM CREEK","zip":"25003","state":"WV"},"arcs":[[19752,19753,19754,19755,19756,19757,19758,19759]]},{"type":"Polygon","properties":{"name":"AMMA","zip":"25005","state":"WV"},"arcs":[[19760,19761,19762,19763,19764]]},{"type":"Polygon","properties":{"name":"ARNETT","zip":"25007","state":"WV"},"arcs":[[19765,19766,19767,19768]]},{"type":"Polygon","properties":{"name":"ARTIE","zip":"25008","state":"WV"},"arcs":[[19769,19770,19771,19772,19773,19774]]},{"type":"Polygon","properties":{"name":"ASHFORD","zip":"25009","state":"WV"},"arcs":[[19775,19776,19777,19778,-19760,19779,19780]]},{"type":"Polygon","properties":{"name":"BALD KNOB","zip":"25010","state":"WV"},"arcs":[[19781,19782,19783,19784,-19625,-19595]]},{"type":"Polygon","properties":{"name":"BELLE","zip":"25015","state":"WV"},"arcs":[[19785,19786,19787,19788,19789,19790,19791,19792]]},{"type":"Polygon","properties":{"name":"BENTREE","zip":"25018","state":"WV"},"arcs":[[19793,19794,19795,19796]]},{"type":"Polygon","properties":{"name":"BICKMORE","zip":"25019","state":"WV"},"arcs":[[19797,19798,19799]]},{"type":"Polygon","properties":{"name":"BIM","zip":"25021","state":"WV"},"arcs":[[19800,19801,19802,19803,-19783,19804]]},{"type":"Polygon","properties":{"name":"BLOOMINGROSE","zip":"25024","state":"WV"},"arcs":[[19805,19806,19807,19808]]},{"type":"Polygon","properties":{"name":"BLOUNT","zip":"25025","state":"WV"},"arcs":[[19809,19810,19811,19812,-19792]]},{"type":"Polygon","properties":{"name":"BOB WHITE","zip":"25028","state":"WV"},"arcs":[[19813,19814,19815,-19803]]},{"type":"Polygon","properties":{"name":"BOMONT","zip":"25030","state":"WV"},"arcs":[[19816,19817,19818,19819]]},{"type":"Polygon","properties":{"name":"BUFFALO","zip":"25033","state":"WV"},"arcs":[[19820,19821,19822,19823]]},{"type":"Polygon","properties":{"name":"CABIN CREEK","zip":"25035","state":"WV"},"arcs":[[19824,19825,19826,-19789,19827]]},{"type":"Polygon","properties":{"name":"CEDAR GROVE","zip":"25039","state":"WV"},"arcs":[[19828,19829,19830,-19793,19831]]},{"type":"Polygon","properties":{"name":"CLAY","zip":"25043","state":"WV"},"arcs":[[19832,19833,19834,19835,19836,19837,19838,19839,-19799]]},{"type":"Polygon","properties":{"name":"CLEAR CREEK","zip":"25044","state":"WV"},"arcs":[[19840,19841,19842,-19775]]},{"type":"Polygon","properties":{"name":"CLENDENIN","zip":"25045","state":"WV"},"arcs":[[19843,19844,19845,-19762,19846,-19817,19847,19848,-19811,19849]]},{"type":"Polygon","properties":{"name":"CLIO","zip":"25046","state":"WV"},"arcs":[[-19846,19850,19851,19852,-19763]]},{"type":"Polygon","properties":{"name":"CLOTHIER","zip":"25047","state":"WV"},"arcs":[[19853,19854,19855]]},{"type":"Polygon","properties":{"name":"COLCORD","zip":"25048","state":"WV"},"arcs":[[19856,19857,19858,19859,-19771]]},{"type":"Polygon","properties":{"name":"COMFORT","zip":"25049","state":"WV"},"arcs":[[19860,-19806,19861,19862,19863]]},{"type":"Polygon","properties":{"name":"COSTA","zip":"25051","state":"WV"},"arcs":[[19864,19865,19866,-19778]]},{"type":"Polygon","properties":{"name":"DANVILLE","zip":"25053","state":"WV"},"arcs":[[19867,19868,19869,19870,19871,19872,19873]]},{"type":"Polygon","properties":{"name":"DIXIE","zip":"25059","state":"WV"},"arcs":[[-19794,19874,19875,19876,19877]]},{"type":"Polygon","properties":{"name":"DOROTHY","zip":"25060","state":"WV"},"arcs":[[19878,19879,19880,19881,-19859]]},{"type":"Polygon","properties":{"name":"DRY CREEK","zip":"25062","state":"WV"},"arcs":[[19882,19883,-19767,19884,19885]]},{"type":"Polygon","properties":{"name":"DUCK","zip":"25063","state":"WV"},"arcs":[[19886,19887,-19837,19888,19889,19890,19891,19892]]},{"type":"Polygon","properties":{"name":"DUNBAR","zip":"25064","state":"WV"},"arcs":[[19893,19894,19895,19896,19897,19898]]},{"type":"Polygon","properties":{"name":"ELKVIEW","zip":"25071","state":"WV"},"arcs":[[19899,19900,19901,19902,19903,-19844]]},{"type":"Polygon","properties":{"name":"ESKDALE","zip":"25075","state":"WV"},"arcs":[[19904,19905,-19863,19906,-19828,-19788,19907,-19881]]},{"type":"Polygon","properties":{"name":"FOSTER","zip":"25081","state":"WV"},"arcs":[[19908,19909,-19874,19910,19911]]},{"type":"Polygon","properties":{"name":"FRAZIERS BOTTOM","zip":"25082","state":"WV"},"arcs":[[19912,19913,19914,19915,19916,19917,19918,-19822,19919]]},{"type":"Polygon","properties":{"name":"GALLAGHER","zip":"25083","state":"WV"},"arcs":[[19920,19921,-19786,-19831,19922,19923]]},{"type":"Polygon","properties":{"name":"GAULEY BRIDGE","zip":"25085","state":"WV"},"arcs":[[19924,19925,19926]]},{"type":"Polygon","properties":{"name":"GLEN","zip":"25088","state":"WV"},"arcs":[[19927,-19848,-19820,19928,-19796]]},{"type":"Polygon","properties":{"name":"GORDON","zip":"25093","state":"WV"},"arcs":[[19929,19930,19931]]},{"type":"Polygon","properties":{"name":"HANSFORD","zip":"25103","state":"WV"},"arcs":[[19932,19933,-19921,19934]]},{"type":"Polygon","properties":{"name":"HENDERSON","zip":"25106","state":"WV"},"arcs":[[19935,19936,19937]]},{"type":"Polygon","properties":{"name":"HERNSHAW","zip":"25107","state":"WV"},"arcs":[[19938,-19781,19939,19940,19941,-19826,19942,-19862,-19809]]},{"type":"Polygon","properties":{"name":"HEWETT","zip":"25108","state":"WV"},"arcs":[[19943,-19870,19944,19945,19946]]},{"type":"Polygon","properties":{"name":"INDORE","zip":"25111","state":"WV"},"arcs":[[19947,-19875,-19797,-19929,-19819,19948,19949,19950,-19798]]},{"type":"Polygon","properties":{"name":"JEFFREY","zip":"25114","state":"WV"},"arcs":[[19951,-19945,-19869,19952,-19814,-19802]]},{"type":"Polygon","properties":{"name":"KIMBERLY","zip":"25118","state":"WV"},"arcs":[[19953,-19935,19954,19955]]},{"type":"Polygon","properties":{"name":"KINCAID","zip":"25119","state":"WV"},"arcs":[[19956,19957,19958,19959]]},{"type":"Polygon","properties":{"name":"LAKE","zip":"25121","state":"WV"},"arcs":[[19960,19961,19962,-19947]]},{"type":"Polygon","properties":{"name":"LEEWOOD","zip":"25122","state":"WV"},"arcs":[[19963,-19772,-19860,-19882,-19908,-19787,-19922,-19934,19964]]},{"type":"Polygon","properties":{"name":"LEON","zip":"25123","state":"WV"},"arcs":[[19965,19966,19967,19968,19969,19970,19971,-19823,-19919]]},{"type":"Polygon","properties":{"name":"LIBERTY","zip":"25124","state":"WV"},"arcs":[[-19972,19972,19973,19974,19975,19976,19977,-19824]]},{"type":"Polygon","properties":{"name":"MADISON","zip":"25130","state":"WV"},"arcs":[[19978,-19815,-19953,-19868,-19910,19979,-19931]]},{"type":"Polygon","properties":{"name":"MAMMOTH","zip":"25132","state":"WV"},"arcs":[[-19813,19980,-19832]]},{"type":"Polygon","properties":{"name":"MAYSEL","zip":"25133","state":"WV"},"arcs":[[19981,-19833,-19951]]},{"type":"Polygon","properties":{"name":"MONTGOMERY","zip":"25136","state":"WV"},"arcs":[[19982,-19958,19983,19984,-19773,-19964,19985,-19956,19986,-19923,-19830,19987,-19878,19988,19989,-19925,19990]]},{"type":"Polygon","properties":{"name":"MOUNT CARBON","zip":"25139","state":"WV"},"arcs":[[-19924,-19987,-19955]]},{"type":"Polygon","properties":{"name":"NAOMA","zip":"25140","state":"WV"},"arcs":[[19991,19992,-19626,-19785,19993,19994,-19879,-19858,-19886]]},{"type":"Polygon","properties":{"name":"NEBO","zip":"25141","state":"WV"},"arcs":[[19995,19996,19997,-19890]]},{"type":"Polygon","properties":{"name":"NELLIS","zip":"25142","state":"WV"},"arcs":[[19998,-19753,-19779,-19867]]},{"type":"Polygon","properties":{"name":"NITRO","zip":"25143","state":"WV"},"arcs":[[19999,-19897,20000,20001,20002,20003]]},{"type":"Polygon","properties":{"name":"ORGAS","zip":"25148","state":"WV"},"arcs":[[20004,20005,-19864,-19906]]},{"type":"Polygon","properties":{"name":"OVAPA","zip":"25150","state":"WV"},"arcs":[[20006,20007,-19761,20008,20009,-19835]]},{"type":"Polygon","properties":{"name":"PEYTONA","zip":"25154","state":"WV"},"arcs":[[-19777,20010,20011,-19912,20012,-19865]]},{"type":"Polygon","properties":{"name":"POCA","zip":"25159","state":"WV"},"arcs":[[20013,20014,-19977,20015,20016,-20004]]},{"type":"Polygon","properties":{"name":"POND GAP","zip":"25160","state":"WV"},"arcs":[[-19812,-19849,-19928,-19795,-19988,-19829,-19981]]},{"type":"Polygon","properties":{"name":"POWELLTON","zip":"25161","state":"WV"},"arcs":[[-19933,-19954,-19986,-19965]]},{"type":"Polygon","properties":{"name":"PROCIOUS","zip":"25164","state":"WV"},"arcs":[[-20008,20017,-19949,-19818,-19847]]},{"type":"Polygon","properties":{"name":"RACINE","zip":"25165","state":"WV"},"arcs":[[20018,-20011,-19776,-19939,-19808]]},{"type":"Polygon","properties":{"name":"RED HOUSE","zip":"25168","state":"WV"},"arcs":[[20019,-19920,-19821,-19978,-20015]]},{"type":"Polygon","properties":{"name":"RIDGEVIEW","zip":"25169","state":"WV"},"arcs":[[-20013,20020,-19754,-19999,-19866]]},{"type":"Polygon","properties":{"name":"ROBSON","zip":"25173","state":"WV"},"arcs":[[-19983,20021,-19959]]},{"type":"Polygon","properties":{"name":"ROCK CREEK","zip":"25174","state":"WV"},"arcs":[[-19885,-19766,-19992]]},{"type":"Polygon","properties":{"name":"SAINT ALBANS","zip":"25177","state":"WV"},"arcs":[[20022,20023,-20001,-19896,20024,20025]]},{"type":"Polygon","properties":{"name":"SAXON","zip":"25180","state":"WV"},"arcs":[[-19769,20026,20027,20028,-19627,-19993]]},{"type":"Polygon","properties":{"name":"SETH","zip":"25181","state":"WV"},"arcs":[[-19909,-20012,-20019,-19807,-19861,-20006,20029,20030,-19932,-19980]]},{"type":"Polygon","properties":{"name":"SOUTHSIDE","zip":"25187","state":"WV"},"arcs":[[-19918,20031,20032,20033,-19966]]},{"type":"Polygon","properties":{"name":"SYLVESTER","zip":"25193","state":"WV"},"arcs":[[-20005,-19905,-19880,-19995,20034,-20030]]},{"type":"Polygon","properties":{"name":"TORNADO","zip":"25202","state":"WV"},"arcs":[[20035,20036,20037,-20026]]},{"type":"Polygon","properties":{"name":"TWILIGHT","zip":"25204","state":"WV"},"arcs":[[-19816,-19979,-19930,-20031,-20035,-19994,-19784,-19804]]},{"type":"Polygon","properties":{"name":"WHITESVILLE","zip":"25209","state":"WV"},"arcs":[[20038,-19883,-19857,-19770,-19843]]},{"type":"Polygon","properties":{"name":"WINFIELD","zip":"25213","state":"WV"},"arcs":[[-20003,20039,20040,-19913,-20020,-20014]]},{"type":"Polygon","properties":{"name":"WINIFREDE","zip":"25214","state":"WV"},"arcs":[[-19943,-19825,-19907]]},{"type":"Polygon","properties":{"name":"ADVENT","zip":"25231","state":"WV"},"arcs":[[20041,20042,20043]]},{"type":"Polygon","properties":{"name":"ARNOLDSBURG","zip":"25234","state":"WV"},"arcs":[[20044,20045,20046,20047,20048,20049,20050,20051,20052]]},{"type":"Polygon","properties":{"name":"CHLOE","zip":"25235","state":"WV"},"arcs":[[20053,20054,20055,20056,20057,20058,-19997]]},{"type":"Polygon","properties":{"name":"COTTAGEVILLE","zip":"25239","state":"WV"},"arcs":[[20059,20060,20061,20062,20063,-19969]]},{"type":"Polygon","properties":{"name":"EVANS","zip":"25241","state":"WV"},"arcs":[[20064,-19970,-20064,20065]]},{"type":"Polygon","properties":{"name":"GANDEEVILLE","zip":"25243","state":"WV"},"arcs":[[20066,20067,20068,20069,20070,-20043]]},{"type":"Polygon","properties":{"name":"GAY","zip":"25244","state":"WV"},"arcs":[[20071,20072,20073,20074,20075,20076,-20068]]},{"type":"Polygon","properties":{"name":"GIVEN","zip":"25245","state":"WV"},"arcs":[[-20065,20077,20078,20079,-19973,-19971]]},{"type":"Polygon","properties":{"name":"KENNA","zip":"25248","state":"WV"},"arcs":[[-20080,20080,-20072,-20067,-20042,20081,-19974]]},{"type":"Polygon","properties":{"name":"LEFT HAND","zip":"25251","state":"WV"},"arcs":[[-19853,20082,20083,20084,-19764]]},{"type":"Polygon","properties":{"name":"LE ROY","zip":"25252","state":"WV"},"arcs":[[20085,20086,20087,20088,20089,-20076]]},{"type":"Polygon","properties":{"name":"LETART","zip":"25253","state":"WV"},"arcs":[[20090,20091,20092,20093,20094,-19967,-20034]]},{"type":"Polygon","properties":{"name":"LINDEN","zip":"25256","state":"WV"},"arcs":[[20095,20096,20097,20098,-20056]]},{"type":"Polygon","properties":{"name":"LOONEYVILLE","zip":"25259","state":"WV"},"arcs":[[-19852,20099,20100,-20098,20101,-20083]]},{"type":"Polygon","properties":{"name":"MASON","zip":"25260","state":"WV"},"arcs":[[20102,20103,-20094]]},{"type":"Polygon","properties":{"name":"MILLSTONE","zip":"25261","state":"WV"},"arcs":[[20104,20105,-20051]]},{"type":"Polygon","properties":{"name":"MILLWOOD","zip":"25262","state":"WV"},"arcs":[[20106,20107,-20061]]},{"type":"Polygon","properties":{"name":"MOUNT ALTO","zip":"25264","state":"WV"},"arcs":[[-19968,20108,-20060]]},{"type":"Polygon","properties":{"name":"NEWTON","zip":"25266","state":"WV"},"arcs":[[20109,-20009,-19765,-20085,20110,-20096,-20055]]},{"type":"Polygon","properties":{"name":"NORMANTOWN","zip":"25267","state":"WV"},"arcs":[[20111,20112,-20053,20113,20114,20115,20116,20117,20118,20119]]},{"type":"Polygon","properties":{"name":"ORMA","zip":"25268","state":"WV"},"arcs":[[20120,-20046,20121,20122,-20057]]},{"type":"Polygon","properties":{"name":"REEDY","zip":"25270","state":"WV"},"arcs":[[-20077,-20090,20123,20124,-20069]]},{"type":"Polygon","properties":{"name":"RIPLEY","zip":"25271","state":"WV"},"arcs":[[-20063,20125,20126,-20074,20127,-20078,-20066]]},{"type":"Polygon","properties":{"name":"SANDYVILLE","zip":"25275","state":"WV"},"arcs":[[-20075,-20127,20128,20129,20130,-20086]]},{"type":"Polygon","properties":{"name":"SPENCER","zip":"25276","state":"WV"},"arcs":[[-20125,20131,20132,-20047,-20121,-20099,-20101,20133,-20070]]},{"type":"Polygon","properties":{"name":"STATTS MILLS","zip":"25279","state":"WV"},"arcs":[[-20079,-20128,-20073,-20081]]},{"type":"Polygon","properties":{"name":"TARIFF","zip":"25281","state":"WV"},"arcs":[[-20102,-20097,-20111,-20084]]},{"type":"Polygon","properties":{"name":"VALLEY FORK","zip":"25283","state":"WV"},"arcs":[[-20007,-19834,-19982,-19950,-20018]]},{"type":"Polygon","properties":{"name":"WALLBACK","zip":"25285","state":"WV"},"arcs":[[-20054,-19996,-19889,-19836,-20010,-20110]]},{"type":"Polygon","properties":{"name":"WALTON","zip":"25286","state":"WV"},"arcs":[[20134,-20071,-20134,-20100,-19851,-19845,-19904]]},{"type":"Polygon","properties":{"name":"WEST COLUMBIA","zip":"25287","state":"WV"},"arcs":[[-20103,-20093,20135,20136]]},{"type":"Polygon","properties":{"name":"CHARLESTON","zip":"25301","state":"WV"},"arcs":[[20137,20138,20139]]},{"type":"Polygon","properties":{"name":"CHARLESTON","zip":"25302","state":"WV"},"arcs":[[20140,20141,20142,-19902,20143,-20140,20144]]},{"type":"Polygon","properties":{"name":"CHARLESTON","zip":"25303","state":"WV"},"arcs":[[20145,-19894,20146,-20141,20147]]},{"type":"Polygon","properties":{"name":"CHARLESTON","zip":"25304","state":"WV"},"arcs":[[20148,20149,20150,20151,-19941]]},{"type":"Polygon","properties":{"name":"CHARLESTON","zip":"25306","state":"WV"},"arcs":[[20152,-20151,20153,-19900,-19850,-19810,-19791]]},{"type":"Polygon","properties":{"name":"CHARLESTON","zip":"25309","state":"WV"},"arcs":[[20154,-19758,20155,-20036,-20025,-19895,-20146]]},{"type":"Polygon","properties":{"name":"CHARLESTON","zip":"25311","state":"WV"},"arcs":[[20156,-20138,-20144,-19901,-20154,-20150]]},{"type":"Polygon","properties":{"name":"CHARLESTON","zip":"25312","state":"WV"},"arcs":[[20157,-20016,-19976,20158,-20142,-20147,-19899]]},{"type":"Polygon","properties":{"name":"CHARLESTON","zip":"25313","state":"WV"},"arcs":[[-19898,-20000,-20017,-20158]]},{"type":"Polygon","properties":{"name":"CHARLESTON","zip":"25314","state":"WV"},"arcs":[[-20155,-20148,-20145,-20139,-20157,-20149,-19940,-19780,-19759]]},{"type":"Polygon","properties":{"name":"CHARLESTON","zip":"25315","state":"WV"},"arcs":[[-19942,-20152,-20153,-19790,-19827]]},{"type":"Polygon","properties":{"name":"CHARLESTON","zip":"25320","state":"WV"},"arcs":[[-20143,-20159,-19975,-20082,-20044,-20135,-19903]]},{"type":"Polygon","properties":{"name":"MARTINSBURG","zip":"25401","state":"WV"},"arcs":[[20159,20160,20161,20162,20163,20164,20165,20166,20167,20168]]},{"type":"Polygon","properties":{"name":"BERKELEY SPRINGS","zip":"25411","state":"WV"},"arcs":[[-17527,-17551,20169,20170,20171]]},{"type":"Polygon","properties":{"name":"BUNKER HILL","zip":"25413","state":"WV"},"arcs":[[20172,-17547,20173,-20163,20174]]},{"type":"Polygon","properties":{"name":"CHARLES TOWN","zip":"25414","state":"WV"},"arcs":[[20175,-15964,-15982,-15974,-17539,20176,20177,20178]]},{"type":"Polygon","properties":{"name":"FALLING WATERS","zip":"25419","state":"WV"},"arcs":[[-20167,20179]]},{"type":"Polygon","properties":{"name":"GERRARDSTOWN","zip":"25420","state":"WV"},"arcs":[[-17529,20180,-20164,-20174]]},{"type":"Polygon","properties":{"name":"GREAT CACAPON","zip":"25422","state":"WV"},"arcs":[[20181,-16837,-17067,20182,-20170]]},{"type":"Polygon","properties":{"name":"HARPERS FERRY","zip":"25425","state":"WV"},"arcs":[[-15965,-20176,20183,20184,20185]]},{"type":"Polygon","properties":{"name":"HEDGESVILLE","zip":"25427","state":"WV"},"arcs":[[-17528,-20172,20186,-20165,-20181]]},{"type":"Polygon","properties":{"name":"INWOOD","zip":"25428","state":"WV"},"arcs":[[-20162,20187,-20175]]},{"type":"Polygon","properties":{"name":"KEARNEYSVILLE","zip":"25430","state":"WV"},"arcs":[[-20173,-20188,-20161,20188,-20178,20189]]},{"type":"Polygon","properties":{"name":"LEVELS","zip":"25431","state":"WV"},"arcs":[[20190,20191,-16839,20192]]},{"type":"Polygon","properties":{"name":"PAW PAW","zip":"25434","state":"WV"},"arcs":[[20193,20194,20195,20196,-20193,-16838,-20182,-17550]]},{"type":"Polygon","properties":{"name":"POINTS","zip":"25437","state":"WV"},"arcs":[[20197,20198,20199,-20191,-20197]]},{"type":"Polygon","properties":{"name":"SHENANDOAH JUNCTION","zip":"25442","state":"WV"},"arcs":[[-20160,20200,-20184,-20179,-20189]]},{"type":"Polygon","properties":{"name":"SHEPHERDSTOWN","zip":"25443","state":"WV"},"arcs":[[-20169,20201,-20185,-20201]]},{"type":"Polygon","properties":{"name":"SLANESVILLE","zip":"25444","state":"WV"},"arcs":[[20202,20203,-20198,-20196]]},{"type":"Polygon","properties":{"name":"SUMMIT POINT","zip":"25446","state":"WV"},"arcs":[[-17538,-20190,-20177]]},{"type":"Polygon","properties":{"name":"ALKOL","zip":"25501","state":"WV"},"arcs":[[20204,20205,20206,20207,20208,20209,20210,20211]]},{"type":"Polygon","properties":{"name":"APPLE GROVE","zip":"25502","state":"WV"},"arcs":[[20212,20213,20214,-20032,-19917,20215]]},{"type":"Polygon","properties":{"name":"ASHTON","zip":"25503","state":"WV"},"arcs":[[20216,-20216,-19916]]},{"type":"Polygon","properties":{"name":"BARBOURSVILLE","zip":"25504","state":"WV"},"arcs":[[20217,20218,20219,20220,20221,20222,20223,20224,20225]]},{"type":"MultiPolygon","properties":{"name":"BRANCHLAND","zip":"25506","state":"WV"},"arcs":[[[20226,-20218,20227,20228,20229]],[[20230,20231,20232,20233,20234,20235,-20205]]]},{"type":"Polygon","properties":{"name":"CHAPMANVILLE","zip":"25508","state":"WV"},"arcs":[[20236,20237,20238,20239,20240,-19871,-19944,-19963]]},{"type":"Polygon","properties":{"name":"CULLODEN","zip":"25510","state":"WV"},"arcs":[[20241,20242,20243,20244]]},{"type":"Polygon","properties":{"name":"DUNLOW","zip":"25511","state":"WV"},"arcs":[[20245,20246,20247,20248]]},{"type":"Polygon","properties":{"name":"EAST LYNN","zip":"25512","state":"WV"},"arcs":[[20249,20250,20251,-20219,-20227,20252,20253]]},{"type":"Polygon","properties":{"name":"FORT GAY","zip":"25514","state":"WV"},"arcs":[[20254,20255,20256,20257]]},{"type":"Polygon","properties":{"name":"GALLIPOLIS FERRY","zip":"25515","state":"WV"},"arcs":[[-19936,20258,-20091,-20033,-20215,20259]]},{"type":"Polygon","properties":{"name":"GENOA","zip":"25517","state":"WV"},"arcs":[[20260,20261,20262,-20255,20263,-20250,-20248]]},{"type":"Polygon","properties":{"name":"GLENWOOD","zip":"25520","state":"WV"},"arcs":[[20264,20265,20266,20267,-20213,-20217,-19915,-20244]]},{"type":"Polygon","properties":{"name":"GRIFFITHSVILLE","zip":"25521","state":"WV"},"arcs":[[20268,-20207,20269,20270,20271]]},{"type":"Polygon","properties":{"name":"HAMLIN","zip":"25523","state":"WV"},"arcs":[[-20236,20272,20273,20274,20275,-20242,20276,-20270,-20206]]},{"type":"Polygon","properties":{"name":"HARTS","zip":"25524","state":"WV"},"arcs":[[20277,20278,20279,-20246,20280,20281,20282,-20232,20283,-20240]]},{"type":"Polygon","properties":{"name":"HURRICANE","zip":"25526","state":"WV"},"arcs":[[20284,-20271,-20277,-20245,-19914,-20041,20285,-20023,-20038]]},{"type":"Polygon","properties":{"name":"JULIAN","zip":"25529","state":"WV"},"arcs":[[-19873,-20211,20286,20287,-19755,-20021,-19911]]},{"type":"Polygon","properties":{"name":"KENOVA","zip":"25530","state":"WV"},"arcs":[[20288,20289,20290]]},{"type":"Polygon","properties":{"name":"KIAHSVILLE","zip":"25534","state":"WV"},"arcs":[[-20249,-20254,20291,-20281]]},{"type":"Polygon","properties":{"name":"LAVALETTE","zip":"25535","state":"WV"},"arcs":[[20292,20293,20294,-20220,-20252]]},{"type":"Polygon","properties":{"name":"LESAGE","zip":"25537","state":"WV"},"arcs":[[20295,20296,20297,-20267]]},{"type":"Polygon","properties":{"name":"MIDKIFF","zip":"25540","state":"WV"},"arcs":[[20298,-20233,-20283]]},{"type":"Polygon","properties":{"name":"MILTON","zip":"25541","state":"WV"},"arcs":[[20299,20300,-20225,20301,-20265,-20243,-20276]]},{"type":"Polygon","properties":{"name":"MYRA","zip":"25544","state":"WV"},"arcs":[[20302,-20273,-20235]]},{"type":"Polygon","properties":{"name":"ONA","zip":"25545","state":"WV"},"arcs":[[-20224,20303,-20296,-20266,-20302]]},{"type":"Polygon","properties":{"name":"PECKS MILL","zip":"25547","state":"WV"},"arcs":[[20304,20305,-20237,-19962]]},{"type":"Polygon","properties":{"name":"POINT PLEASANT","zip":"25550","state":"WV"},"arcs":[[-20259,-19938,20306,-20136,-20092]]},{"type":"Polygon","properties":{"name":"PRICHARD","zip":"25555","state":"WV"},"arcs":[[20307,20308,20309,20310,-20257]]},{"type":"Polygon","properties":{"name":"RANGER","zip":"25557","state":"WV"},"arcs":[[-20230,20311,-20274,-20303,-20234,-20299,-20282,-20292,-20253]]},{"type":"Polygon","properties":{"name":"SALT ROCK","zip":"25559","state":"WV"},"arcs":[[20312,-20228,-20226,-20301]]},{"type":"Polygon","properties":{"name":"SCOTT DEPOT","zip":"25560","state":"WV"},"arcs":[[-20286,-20040,-20002,-20024]]},{"type":"Polygon","properties":{"name":"SOD","zip":"25564","state":"WV"},"arcs":[[-20285,-20037,-20156,-19757,20313,20314,-20272]]},{"type":"Polygon","properties":{"name":"SPURLOCKVILLE","zip":"25565","state":"WV"},"arcs":[[-20284,-20231,-20212,-19872,-20241]]},{"type":"Polygon","properties":{"name":"SUMERCO","zip":"25567","state":"WV"},"arcs":[[20315,-20209,20316,-20314,-19756,-20288]]},{"type":"Polygon","properties":{"name":"WAYNE","zip":"25570","state":"WV"},"arcs":[[-20311,20317,-20293,-20251,-20264,-20258]]},{"type":"Polygon","properties":{"name":"WEST HAMLIN","zip":"25571","state":"WV"},"arcs":[[-20229,-20313,-20300,-20275,-20312]]},{"type":"Polygon","properties":{"name":"WOODVILLE","zip":"25572","state":"WV"},"arcs":[[-20210,-20316,-20287]]},{"type":"Polygon","properties":{"name":"YAWKEY","zip":"25573","state":"WV"},"arcs":[[-20208,-20269,-20315,-20317]]},{"type":"Polygon","properties":{"name":"LOGAN","zip":"25601","state":"WV"},"arcs":[[20318,20319,20320,20321,-20238,-20306,20322,20323,-19855]]},{"type":"Polygon","properties":{"name":"AMHERSTDALE","zip":"25607","state":"WV"},"arcs":[[20324,20325,-19805,-19782,-19594]]},{"type":"Polygon","properties":{"name":"BAISDEN","zip":"25608","state":"WV"},"arcs":[[20326,-19622,20327,20328,20329,20330,20331]]},{"type":"Polygon","properties":{"name":"DAVIN","zip":"25617","state":"WV"},"arcs":[[20332,-19592,-19590]]},{"type":"Polygon","properties":{"name":"GILBERT","zip":"25621","state":"WV"},"arcs":[[20333,-19600,-19623,-20327]]},{"type":"Polygon","properties":{"name":"HAMPDEN","zip":"25623","state":"WV"},"arcs":[[20334,-20331,20335]]},{"type":"Polygon","properties":{"name":"LYBURN","zip":"25632","state":"WV"},"arcs":[[20336,-19856,-20324,20337,20338,20339]]},{"type":"Polygon","properties":{"name":"MAN","zip":"25635","state":"WV"},"arcs":[[-19636,20340,-20339,20341,-20325,-19593,-20333]]},{"type":"Polygon","properties":{"name":"OMAR","zip":"25638","state":"WV"},"arcs":[[-20330,20342,20343,-20319,-19854,-20337,-20336]]},{"type":"Polygon","properties":{"name":"VERNER","zip":"25650","state":"WV"},"arcs":[[-19601,-20334,-20332,-20335,-20340,-20341,-19635]]},{"type":"Polygon","properties":{"name":"WHARNCLIFFE","zip":"25651","state":"WV"},"arcs":[[20344,20345,-20328,-19621,20346]]},{"type":"Polygon","properties":{"name":"YOLYN","zip":"25654","state":"WV"},"arcs":[[-20342,-20338,-20323,-20305,-19961,-19946,-19952,-19801,-20326]]},{"type":"Polygon","properties":{"name":"WILLIAMSON","zip":"25661","state":"WV"},"arcs":[[20347,20348,20349,20350,20351,20352,20353,20354]]},{"type":"Polygon","properties":{"name":"BREEDEN","zip":"25666","state":"WV"},"arcs":[[20355,20356,20357,-20279]]},{"type":"Polygon","properties":{"name":"CRUM","zip":"25669","state":"WV"},"arcs":[[20358,20359,20360,20361,-20262,20362]]},{"type":"Polygon","properties":{"name":"DELBARTON","zip":"25670","state":"WV"},"arcs":[[20363,-20355,20364,-20320,-20344,20365]]},{"type":"Polygon","properties":{"name":"DINGESS","zip":"25671","state":"WV"},"arcs":[[-20322,20366,20367,-20356,-20278,-20239]]},{"type":"Polygon","properties":{"name":"KERMIT","zip":"25674","state":"WV"},"arcs":[[20368,20369,20370,-20359,20371,-20357,-20368]]},{"type":"Polygon","properties":{"name":"LENORE","zip":"25676","state":"WV"},"arcs":[[-20354,20372,-20369,-20367,-20321,-20365]]},{"type":"Polygon","properties":{"name":"MATEWAN","zip":"25678","state":"WV"},"arcs":[[20373,20374,-20348,-20364,20375]]},{"type":"Polygon","properties":{"name":"MEADOR","zip":"25682","state":"WV"},"arcs":[[20376,-20376,-20366,-20343,-20329,-20346,20377,20378]]},{"type":"Polygon","properties":{"name":"THACKER","zip":"25694","state":"WV"},"arcs":[[20379,20380,-20374,-20377]]},{"type":"Polygon","properties":{"name":"WILSONDALE","zip":"25699","state":"WV"},"arcs":[[-20372,-20363,-20261,-20247,-20280,-20358]]},{"type":"Polygon","properties":{"name":"HUNTINGTON","zip":"25701","state":"WV"},"arcs":[[20381,20382,20383,20384,-20221,-20295]]},{"type":"Polygon","properties":{"name":"HUNTINGTON","zip":"25702","state":"WV"},"arcs":[[20385,20386,-20297,-20304,-20223,20387]]},{"type":"Polygon","properties":{"name":"HUNTINGTON","zip":"25703","state":"WV"},"arcs":[[20388,-20384,20389,-20386]]},{"type":"Polygon","properties":{"name":"HUNTINGTON","zip":"25704","state":"WV"},"arcs":[[-20310,20390,-20291,20391,-20382,-20294,-20318]]},{"type":"Polygon","properties":{"name":"HUNTINGTON","zip":"25705","state":"WV"},"arcs":[[-20385,-20389,-20388,-20222]]},{"type":"Polygon","properties":{"name":"BECKLEY","zip":"25801","state":"WV"},"arcs":[[20392,20393,-20039,-19842,20394,20395,20396,20397,20398,20399]]},{"type":"Polygon","properties":{"name":"AMIGO","zip":"25811","state":"WV"},"arcs":[[20400,20401,20402,-19550]]},{"type":"Polygon","properties":{"name":"ANSTED","zip":"25812","state":"WV"},"arcs":[[20403,20404,20405,20406]]},{"type":"Polygon","properties":{"name":"BEAVER","zip":"25813","state":"WV"},"arcs":[[20407,20408,20409,20410,20411,20412,-20398,20413,20414,20415]]},{"type":"Polygon","properties":{"name":"BOLT","zip":"25817","state":"WV"},"arcs":[[20416,20417,-19628,-20029,20418]]},{"type":"Polygon","properties":{"name":"CAMP CREEK","zip":"25820","state":"WV"},"arcs":[[20419,-19544,-19563,20420]]},{"type":"Polygon","properties":{"name":"COAL CITY","zip":"25823","state":"WV"},"arcs":[[20421,20422,20423,20424,20425,20426]]},{"type":"Polygon","properties":{"name":"COOL RIDGE","zip":"25825","state":"WV"},"arcs":[[20427,20428,-20425,20429,20430,20431,20432,20433]]},{"type":"Polygon","properties":{"name":"CRAB ORCHARD","zip":"25827","state":"WV"},"arcs":[[20434,20435,20436,20437,-20400]]},{"type":"Polygon","properties":{"name":"DANESE","zip":"25831","state":"WV"},"arcs":[[20438,20439,-20415,20440,20441,20442,20443]]},{"type":"Polygon","properties":{"name":"DANIELS","zip":"25832","state":"WV"},"arcs":[[20444,20445,-20412]]},{"type":"Polygon","properties":{"name":"FAIRDALE","zip":"25839","state":"WV"},"arcs":[[20446,-20419,-20028,20447,20448]]},{"type":"Polygon","properties":{"name":"FAYETTEVILLE","zip":"25840","state":"WV"},"arcs":[[20449,20450,-20443,20451,20452,20453,-19960,-20022,-19991,-19927,20454,-20405,20455,20456,20457]]},{"type":"Polygon","properties":{"name":"FLAT TOP","zip":"25841","state":"WV"},"arcs":[[20458,20459,20460,20461]]},{"type":"Polygon","properties":{"name":"GHENT","zip":"25843","state":"WV"},"arcs":[[20462,-20460,20463,-20433]]},{"type":"Polygon","properties":{"name":"GLEN DANIEL","zip":"25844","state":"WV"},"arcs":[[20464,20465,-20448,-20027,-19768,-19884,-20394]]},{"type":"Polygon","properties":{"name":"GLEN FORK","zip":"25845","state":"WV"},"arcs":[[-19618,-19614,20466,-19632]]},{"type":"Polygon","properties":{"name":"GLEN MORGAN","zip":"25847","state":"WV"},"arcs":[[20467,-20435,-20399,-20413,-20446,20468,-20423,20469]]},{"type":"Polygon","properties":{"name":"GLEN ROGERS","zip":"25848","state":"WV"},"arcs":[[20470,20471,-19629,-20418,20472]]},{"type":"Polygon","properties":{"name":"HICO","zip":"25854","state":"WV"},"arcs":[[20473,20474,-20458,20475,20476,20477,20478,20479]]},{"type":"Polygon","properties":{"name":"JONBEN","zip":"25856","state":"WV"},"arcs":[[20480,-20426,-20429]]},{"type":"Polygon","properties":{"name":"JOSEPHINE","zip":"25857","state":"WV"},"arcs":[[20481,20482,-20427,-20481,-20428,20483]]},{"type":"Polygon","properties":{"name":"LANSING","zip":"25862","state":"WV"},"arcs":[[20484,-20476,-20457]]},{"type":"Polygon","properties":{"name":"LAYLAND","zip":"25864","state":"WV"},"arcs":[[-20397,20485,-20441,-20414]]},{"type":"Polygon","properties":{"name":"LESTER","zip":"25865","state":"WV"},"arcs":[[20486,-20449,-20466,20487,-20437]]},{"type":"Polygon","properties":{"name":"LOOKOUT","zip":"25868","state":"WV"},"arcs":[[20488,-20450,-20475,20489]]},{"type":"Polygon","properties":{"name":"MABEN","zip":"25870","state":"WV"},"arcs":[[20490,20491,20492,20493,-20471]]},{"type":"Polygon","properties":{"name":"SAULSVILLE","zip":"25876","state":"WV"},"arcs":[[20494,-20493,20495,-19548,-19633]]},{"type":"Polygon","properties":{"name":"MOUNT HOPE","zip":"25880","state":"WV"},"arcs":[[20496,20497,-20396]]},{"type":"Polygon","properties":{"name":"MULLENS","zip":"25882","state":"WV"},"arcs":[[-19549,-20496,-20492,20498,-20401]]},{"type":"Polygon","properties":{"name":"OAK HILL","zip":"25901","state":"WV"},"arcs":[[-20442,-20486,-20498,20499,-19984,-19957,-20454,20500,-20452]]},{"type":"Polygon","properties":{"name":"ODD","zip":"25902","state":"WV"},"arcs":[[20501,20502,-20484,-20434,-20464,-20459,20503,-19552]]},{"type":"Polygon","properties":{"name":"PRINCEWICK","zip":"25908","state":"WV"},"arcs":[[20504,20505,-20470,-20422,-20483]]},{"type":"Polygon","properties":{"name":"RAMSEY","zip":"25912","state":"WV"},"arcs":[[20506,-20407,20507,20508,20509,20510,20511,-20478]]},{"type":"Polygon","properties":{"name":"RAVENCLIFF","zip":"25913","state":"WV"},"arcs":[[-19630,-20472,-20494,-20495,-20467,-19613]]},{"type":"Polygon","properties":{"name":"RHODELL","zip":"25915","state":"WV"},"arcs":[[20512,-20505,-20482,-20503,20513,-20402]]},{"type":"Polygon","properties":{"name":"SCARBRO","zip":"25917","state":"WV"},"arcs":[[-19774,-19985,-20500,-20497,-20395,-19841]]},{"type":"Polygon","properties":{"name":"SHADY SPRING","zip":"25918","state":"WV"},"arcs":[[20514,-20430,-20424,-20469,-20445,-20411]]},{"type":"Polygon","properties":{"name":"SLAB FORK","zip":"25920","state":"WV"},"arcs":[[-20513,-20499,-20491,-20473,-20417,-20447,-20487,-20436,-20468,-20506]]},{"type":"Polygon","properties":{"name":"SPANISHBURG","zip":"25922","state":"WV"},"arcs":[[-19540,-20420,20515,20516,-19566,-19557,-19569]]},{"type":"Polygon","properties":{"name":"STEPHENSON","zip":"25928","state":"WV"},"arcs":[[-19551,-20403,-20514,-20502]]},{"type":"Polygon","properties":{"name":"SURVEYOR","zip":"25932","state":"WV"},"arcs":[[-20488,-20465,-20393,-20438]]},{"type":"Polygon","properties":{"name":"THURMOND","zip":"25936","state":"WV"},"arcs":[[-20453,-20501]]},{"type":"Polygon","properties":{"name":"VICTOR","zip":"25938","state":"WV"},"arcs":[[-20456,-20404,-20507,-20477,-20485]]},{"type":"Polygon","properties":{"name":"HINTON","zip":"25951","state":"WV"},"arcs":[[-19751,-19695,20517,20518,20519,20520,-20409,20521,-19648,-19744]]},{"type":"Polygon","properties":{"name":"CHARMCO","zip":"25958","state":"WV"},"arcs":[[20522,20523,20524]]},{"type":"Polygon","properties":{"name":"RAINELLE","zip":"25962","state":"WV"},"arcs":[[-20451,-20489,20525,-20523,20526,-19689,-19727,20527,-20444]]},{"type":"Polygon","properties":{"name":"ELTON","zip":"25965","state":"WV"},"arcs":[[20528,20529,20530,-19709,-19651]]},{"type":"Polygon","properties":{"name":"GREEN SULPHUR SPRINGS","zip":"25966","state":"WV"},"arcs":[[20531,20532,20533,-20529,-19650]]},{"type":"Polygon","properties":{"name":"JUMPING BRANCH","zip":"25969","state":"WV"},"arcs":[[20534,20535,-20461,-20463,-20432,20536,-20520,20537]]},{"type":"Polygon","properties":{"name":"LERONA","zip":"25971","state":"WV"},"arcs":[[-19538,-19567,-20517,20538]]},{"type":"Polygon","properties":{"name":"MEADOW BRIDGE","zip":"25976","state":"WV"},"arcs":[[20539,-20439,-20528,-19726,-19711,20540,-20530,-20534]]},{"type":"Polygon","properties":{"name":"MEADOW CREEK","zip":"25977","state":"WV"},"arcs":[[20541,-20416,-20440,-20540,-20533]]},{"type":"Polygon","properties":{"name":"NIMITZ","zip":"25978","state":"WV"},"arcs":[[-20519,20542,-20538]]},{"type":"Polygon","properties":{"name":"PIPESTEM","zip":"25979","state":"WV"},"arcs":[[-20536,20543,-19694,20544,20545]]},{"type":"Polygon","properties":{"name":"QUINWOOD","zip":"25981","state":"WV"},"arcs":[[-20490,20546,20547,20548,-19734,-19752,-19691,20549,-20524,-20526]]},{"type":"Polygon","properties":{"name":"RUPERT","zip":"25984","state":"WV"},"arcs":[[-20527,-20525,-20550,-19690]]},{"type":"Polygon","properties":{"name":"SANDSTONE","zip":"25985","state":"WV"},"arcs":[[-20408,-20542,-20532,-19649,-20522]]},{"type":"Polygon","properties":{"name":"SPRING DALE","zip":"25986","state":"WV"},"arcs":[[20540,20530,19709]]},{"type":"Polygon","properties":{"name":"TRUE","zip":"25988","state":"WV"},"arcs":[[-20544,-20535,-20543,-20518]]},{"type":"Polygon","properties":{"name":"WHITE OAK","zip":"25989","state":"WV"},"arcs":[[-20410,-20521,-20537,-20431,-20515]]},{"type":"Polygon","properties":{"name":"WHEELING","zip":"26003","state":"WV"},"arcs":[[20550,20551,20552,20553,20554,20555,20556,20557]]},{"type":"Polygon","properties":{"name":"BENWOOD","zip":"26031","state":"WV"},"arcs":[[20558,20559,20560,-20554]]},{"type":"Polygon","properties":{"name":"CAMERON","zip":"26033","state":"WV"},"arcs":[[20561,20562,20563,-12126,-12017,-12104,20564,20565,20566]]},{"type":"Polygon","properties":{"name":"CHESTER","zip":"26034","state":"WV"},"arcs":[[20567,20568,20569,-11759]]},{"type":"Polygon","properties":{"name":"COLLIERS","zip":"26035","state":"WV"},"arcs":[[-11708,-12024,20570,20571,20572,20573]]},{"type":"Polygon","properties":{"name":"DALLAS","zip":"26036","state":"WV"},"arcs":[[-12120,-12125,-20564,20574,20575,-20551,20576]]},{"type":"Polygon","properties":{"name":"FOLLANSBEE","zip":"26037","state":"WV"},"arcs":[[20577,20578,-20572]]},{"type":"Polygon","properties":{"name":"GLEN DALE","zip":"26038","state":"WV"},"arcs":[[20579,-20559,-20553,20580,20581]]},{"type":"Polygon","properties":{"name":"GLEN EASTON","zip":"26039","state":"WV"},"arcs":[[20582,20583,-20575,-20563]]},{"type":"Polygon","properties":{"name":"MC MECHEN","zip":"26040","state":"WV"},"arcs":[[-20560,-20580,20584]]},{"type":"Polygon","properties":{"name":"MOUNDSVILLE","zip":"26041","state":"WV"},"arcs":[[-20581,-20552,-20576,-20584,20585,20586]]},{"type":"Polygon","properties":{"name":"NEW CUMBERLAND","zip":"26047","state":"WV"},"arcs":[[20587,-20568,-11758,20588,20589]]},{"type":"Polygon","properties":{"name":"NEWELL","zip":"26050","state":"WV"},"arcs":[[-20569,-20588,20590]]},{"type":"Polygon","properties":{"name":"PROCTOR","zip":"26055","state":"WV"},"arcs":[[20591,20592,-20586,-20583,-20562,20593,20594]]},{"type":"Polygon","properties":{"name":"TRIADELPHIA","zip":"26059","state":"WV"},"arcs":[[-12121,-20577,-20558,20595]]},{"type":"Polygon","properties":{"name":"VALLEY GROVE","zip":"26060","state":"WV"},"arcs":[[-12122,-20596,-20557,20596]]},{"type":"Polygon","properties":{"name":"WEIRTON","zip":"26062","state":"WV"},"arcs":[[-20589,-11709,-20574,20597]]},{"type":"Polygon","properties":{"name":"WELLSBURG","zip":"26070","state":"WV"},"arcs":[[-20578,-20571,-12023,-12123,-20597,-20556,20598]]},{"type":"Polygon","properties":{"name":"PARKERSBURG","zip":"26101","state":"WV"},"arcs":[[20599,20600,20601,20602,20603,20604]]},{"type":"Polygon","properties":{"name":"PARKERSBURG","zip":"26104","state":"WV"},"arcs":[[20605,20606,-20605,20607,20608,20609,20610]]},{"type":"Polygon","properties":{"name":"VIENNA","zip":"26105","state":"WV"},"arcs":[[-20608,-20604,20611]]},{"type":"Polygon","properties":{"name":"BELLEVILLE","zip":"26133","state":"WV"},"arcs":[[20612,20613,20614,20615,20616]]},{"type":"Polygon","properties":{"name":"BELMONT","zip":"26134","state":"WV"},"arcs":[[20617,20618,20619]]},{"type":"Polygon","properties":{"name":"BENS RUN","zip":"26135","state":"WV"},"arcs":[[20620,20621,20622,20623]]},{"type":"Polygon","properties":{"name":"BIG BEND","zip":"26136","state":"WV"},"arcs":[[20624,20625,20626,20627,20628,20629,20630]]},{"type":"Polygon","properties":{"name":"BIG SPRINGS","zip":"26137","state":"WV"},"arcs":[[20631,-20625,20632,20633,-20115]]},{"type":"Polygon","properties":{"name":"BROHARD","zip":"26138","state":"WV"},"arcs":[[20634,20635,-20629]]},{"type":"Polygon","properties":{"name":"CRESTON","zip":"26141","state":"WV"},"arcs":[[20636,20637,20638,-20627,20639,-20048,-20133]]},{"type":"Polygon","properties":{"name":"DAVISVILLE","zip":"26142","state":"WV"},"arcs":[[20640,-20600,-20607,20641]]},{"type":"Polygon","properties":{"name":"ELIZABETH","zip":"26143","state":"WV"},"arcs":[[20642,20643,20644,20645,20646,20647,20648,-20638,20649,-20088]]},{"type":"Polygon","properties":{"name":"FRIENDLY","zip":"26146","state":"WV"},"arcs":[[20650,20651,-20624,20652]]},{"type":"Polygon","properties":{"name":"GRANTSVILLE","zip":"26147","state":"WV"},"arcs":[[20653,-20049,-20640,-20626,-20632,-20114,-20052,-20106]]},{"type":"Polygon","properties":{"name":"MACFARLAN","zip":"26148","state":"WV"},"arcs":[[20654,-20648,20655,20656,20657,-20630,-20636]]},{"type":"Polygon","properties":{"name":"MIDDLEBOURNE","zip":"26149","state":"WV"},"arcs":[[20658,20659,20660,-20621,-20652,20661,20662,20663]]},{"type":"Polygon","properties":{"name":"MINERAL WELLS","zip":"26150","state":"WV"},"arcs":[[20664,-20601,-20641,20665,-20645,20666,-20617]]},{"type":"Polygon","properties":{"name":"MOUNT ZION","zip":"26151","state":"WV"},"arcs":[[-20654,-20105,-20050]]},{"type":"Polygon","properties":{"name":"MUNDAY","zip":"26152","state":"WV"},"arcs":[[-20655,-20635,-20628,-20639,-20649]]},{"type":"Polygon","properties":{"name":"NEW MARTINSVILLE","zip":"26155","state":"WV"},"arcs":[[20667,20668,20669,-20592,20670]]},{"type":"Polygon","properties":{"name":"PADEN CITY","zip":"26159","state":"WV"},"arcs":[[20671,20672,-20669]]},{"type":"Polygon","properties":{"name":"PALESTINE","zip":"26160","state":"WV"},"arcs":[[-20124,-20089,-20650,-20637,-20132]]},{"type":"Polygon","properties":{"name":"PETROLEUM","zip":"26161","state":"WV"},"arcs":[[20673,-20656,-20647,20674,20675,20676]]},{"type":"Polygon","properties":{"name":"RAVENSWOOD","zip":"26164","state":"WV"},"arcs":[[-20614,20677,-20643,-20087,-20131,20678,-20129,-20126,-20062,-20108,20679]]},{"type":"Polygon","properties":{"name":"READER","zip":"26167","state":"WV"},"arcs":[[20680,20681,-20663,20682,-20671,-20595,20683,20684]]},{"type":"Polygon","properties":{"name":"ROCKPORT","zip":"26169","state":"WV"},"arcs":[[-20678,-20613,-20667,-20644]]},{"type":"Polygon","properties":{"name":"SAINT MARYS","zip":"26170","state":"WV"},"arcs":[[-20622,-20661,20685,20686,20687,20688,-20620,20689]]},{"type":"Polygon","properties":{"name":"SHERMAN","zip":"26173","state":"WV"},"arcs":[[-20130,-20679]]},{"type":"Polygon","properties":{"name":"SISTERSVILLE","zip":"26175","state":"WV"},"arcs":[[-20672,-20668,-20683,-20662,-20651,20690]]},{"type":"Polygon","properties":{"name":"SMITHVILLE","zip":"26178","state":"WV"},"arcs":[[20691,-20633,-20631,-20658,20692]]},{"type":"Polygon","properties":{"name":"WALKER","zip":"26180","state":"WV"},"arcs":[[-20642,-20606,20693,-20675,-20646,-20666]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"26181","state":"WV"},"arcs":[[-20602,-20665,-20616,20694]]},{"type":"Polygon","properties":{"name":"WAVERLY","zip":"26184","state":"WV"},"arcs":[[20695,20696,-20618,-20689,20697,-20676,-20694,-20611]]},{"type":"Polygon","properties":{"name":"WILEYVILLE","zip":"26186","state":"WV"},"arcs":[[20698,-20684,-20594,-20567,20699]]},{"type":"Polygon","properties":{"name":"WILLIAMSTOWN","zip":"26187","state":"WV"},"arcs":[[-20696,-20610,20700]]},{"type":"Polygon","properties":{"name":"BUCKHANNON","zip":"26201","state":"WV"},"arcs":[[20701,20702,20703,20704,20705,20706,20707,20708,20709,20710,20711,20712]]},{"type":"Polygon","properties":{"name":"FENWICK","zip":"26202","state":"WV"},"arcs":[[20713,20714,20715,20716]]},{"type":"Polygon","properties":{"name":"ERBACON","zip":"26203","state":"WV"},"arcs":[[20717,20718,20719]]},{"type":"Polygon","properties":{"name":"CRAIGSVILLE","zip":"26205","state":"WV"},"arcs":[[20720,20721,20722,20723,20724,20725,-20717]]},{"type":"Polygon","properties":{"name":"COWEN","zip":"26206","state":"WV"},"arcs":[[20726,20727,20728,-20718,20729,20730,20731,-19722,-19718,-19736,20732,-20725]]},{"type":"Polygon","properties":{"name":"CAMDEN ON GAULEY","zip":"26208","state":"WV"},"arcs":[[20733,-20727,-20724]]},{"type":"Polygon","properties":{"name":"ADRIAN","zip":"26210","state":"WV"},"arcs":[[20734,20735,-20706]]},{"type":"Polygon","properties":{"name":"CLEVELAND","zip":"26215","state":"WV"},"arcs":[[20736,20737,20738]]},{"type":"Polygon","properties":{"name":"DIANA","zip":"26217","state":"WV"},"arcs":[[20739,20740,-20731,20741,20742,20743]]},{"type":"Polygon","properties":{"name":"FRENCH CREEK","zip":"26218","state":"WV"},"arcs":[[20744,20745,20746,-20738,20747,20748,20749,-20735,-20705]]},{"type":"Polygon","properties":{"name":"HACKER VALLEY","zip":"26222","state":"WV"},"arcs":[[20750,20751,20752,20753,20754,-20744]]},{"type":"Polygon","properties":{"name":"HELVETIA","zip":"26224","state":"WV"},"arcs":[[20755,20756,-20746,20757,20758,20759,20760,-20754]]},{"type":"Polygon","properties":{"name":"KANAWHA HEAD","zip":"26228","state":"WV"},"arcs":[[20761,20762,20763,20764,-20752]]},{"type":"Polygon","properties":{"name":"PICKENS","zip":"26230","state":"WV"},"arcs":[[-20761,20765,20766,20767,-20740,-20755]]},{"type":"Polygon","properties":{"name":"ROCK CAVE","zip":"26234","state":"WV"},"arcs":[[-20757,20768,-20764,20769,-20739,-20747]]},{"type":"Polygon","properties":{"name":"SELBYVILLE","zip":"26236","state":"WV"},"arcs":[[-20753,-20765,-20769,-20756]]},{"type":"Polygon","properties":{"name":"TALLMANSVILLE","zip":"26237","state":"WV"},"arcs":[[-20745,-20704,20770,20771,-20758]]},{"type":"Polygon","properties":{"name":"VOLGA","zip":"26238","state":"WV"},"arcs":[[20772,20773,-20712]]},{"type":"Polygon","properties":{"name":"ELKINS","zip":"26241","state":"WV"},"arcs":[[20774,20775,20776,20777,20778,20779,20780]]},{"type":"Polygon","properties":{"name":"BELINGTON","zip":"26250","state":"WV"},"arcs":[[20781,20782,-20713,-20774,20783,20784,-20776]]},{"type":"Polygon","properties":{"name":"BEVERLY","zip":"26253","state":"WV"},"arcs":[[20785,20786,20787,20788,-20781,20789,20790,20791]]},{"type":"Polygon","properties":{"name":"BOWDEN","zip":"26254","state":"WV"},"arcs":[[20792,20793,20794,20795,20796,-20779]]},{"type":"Polygon","properties":{"name":"COALTON","zip":"26257","state":"WV"},"arcs":[[-20703,20797,-20782,-20775,-20789,20798,-20771]]},{"type":"Polygon","properties":{"name":"DAVIS","zip":"26260","state":"WV"},"arcs":[[20799,20800,20801,20802,20803,20804,20805,20806,20807]]},{"type":"Polygon","properties":{"name":"RICHWOOD","zip":"26261","state":"WV"},"arcs":[[20808,20809,-20714,-20726,-20733,-19735,-20549]]},{"type":"Polygon","properties":{"name":"DRYFORK","zip":"26263","state":"WV"},"arcs":[[20810,20811,-20802,20812]]},{"type":"Polygon","properties":{"name":"DURBIN","zip":"26264","state":"WV"},"arcs":[[20813,-20791,20814,-19673,-19682]]},{"type":"Polygon","properties":{"name":"ELLAMORE","zip":"26267","state":"WV"},"arcs":[[-20702,-20783,-20798]]},{"type":"Polygon","properties":{"name":"GLADY","zip":"26268","state":"WV"},"arcs":[[20815,-19674,-20815,-20790,-20780,-20797,20816]]},{"type":"Polygon","properties":{"name":"HAMBLETON","zip":"26269","state":"WV"},"arcs":[[20817,20818,20819,-20805]]},{"type":"Polygon","properties":{"name":"HARMAN","zip":"26270","state":"WV"},"arcs":[[-20796,20820,-20803,-20812,20821,20822,-20817]]},{"type":"Polygon","properties":{"name":"HENDRICKS","zip":"26271","state":"WV"},"arcs":[[20823,20824,-20818]]},{"type":"Polygon","properties":{"name":"HUTTONSVILLE","zip":"26273","state":"WV"},"arcs":[[20825,-20767,20826,-20792,-20814,-19681,20827]]},{"type":"Polygon","properties":{"name":"KERENS","zip":"26276","state":"WV"},"arcs":[[-20778,20828,20829,-20793]]},{"type":"Polygon","properties":{"name":"MABIE","zip":"26278","state":"WV"},"arcs":[[20830,20831,-20759,-20772,-20799,-20788]]},{"type":"Polygon","properties":{"name":"MILL CREEK","zip":"26280","state":"WV"},"arcs":[[-20832,20832,-20786,-20827,-20766,-20760]]},{"type":"Polygon","properties":{"name":"MONTERVILLE","zip":"26282","state":"WV"},"arcs":[[20833,-19723,20834,-20768,-20826,20835]]},{"type":"Polygon","properties":{"name":"MONTROSE","zip":"26283","state":"WV"},"arcs":[[-20777,-20785,20836,20837,-20829]]},{"type":"Polygon","properties":{"name":"PARSONS","zip":"26287","state":"WV"},"arcs":[[20838,-20794,-20830,-20838,20839,20840,20841,20842,20843,20844,-20819,-20825]]},{"type":"Polygon","properties":{"name":"WEBSTER SPRINGS","zip":"26288","state":"WV"},"arcs":[[-20732,-20741,-20835]]},{"type":"Polygon","properties":{"name":"RED CREEK","zip":"26289","state":"WV"},"arcs":[[-20821,-20795,-20839,-20824,-20804]]},{"type":"Polygon","properties":{"name":"SLATYFORK","zip":"26291","state":"WV"},"arcs":[[-19724,-20834,20845,-19679]]},{"type":"Polygon","properties":{"name":"THOMAS","zip":"26292","state":"WV"},"arcs":[[-20820,-20845,20846,20847,-20806]]},{"type":"Polygon","properties":{"name":"VALLEY BEND","zip":"26293","state":"WV"},"arcs":[[-20831,-20787,-20833]]},{"type":"Polygon","properties":{"name":"VALLEY HEAD","zip":"26294","state":"WV"},"arcs":[[-20846,-20836,-20828,-19680]]},{"type":"Polygon","properties":{"name":"WHITMER","zip":"26296","state":"WV"},"arcs":[[20848,-19675,-20816,-20823,20849]]},{"type":"Polygon","properties":{"name":"CLARKSBURG","zip":"26301","state":"WV"},"arcs":[[20850,20851,20852,20853,20854,20855,20856,20857]]},{"type":"Polygon","properties":{"name":"ALMA","zip":"26320","state":"WV"},"arcs":[[20858,-20659,20859,20860]]},{"type":"Polygon","properties":{"name":"ALUM BRIDGE","zip":"26321","state":"WV"},"arcs":[[20861,20862,20863,20864,20865,20866]]},{"type":"Polygon","properties":{"name":"AUBURN","zip":"26325","state":"WV"},"arcs":[[20867,20868,20869,20870,20871]]},{"type":"Polygon","properties":{"name":"BEREA","zip":"26327","state":"WV"},"arcs":[[20872,-20870,20873,20874]]},{"type":"Polygon","properties":{"name":"BRIDGEPORT","zip":"26330","state":"WV"},"arcs":[[20875,20876,20877,-20856,20878,20879,20880,20881]]},{"type":"Polygon","properties":{"name":"BRISTOL","zip":"26332","state":"WV"},"arcs":[[20882,20883,20884,20885,-20851]]},{"type":"Polygon","properties":{"name":"BURNSVILLE","zip":"26335","state":"WV"},"arcs":[[20886,20887,20888,20889,20890,20891,20892,20893,20894,20895,20896,20897]]},{"type":"Polygon","properties":{"name":"CAIRO","zip":"26337","state":"WV"},"arcs":[[20898,-20677,-20698,-20688,20899]]},{"type":"Polygon","properties":{"name":"CAMDEN","zip":"26338","state":"WV"},"arcs":[[20900,20901,-20865]]},{"type":"Polygon","properties":{"name":"CENTER POINT","zip":"26339","state":"WV"},"arcs":[[20902,20903,20904,20905]]},{"type":"Polygon","properties":{"name":"COXS MILLS","zip":"26342","state":"WV"},"arcs":[[20906,20907,-20116,-20634,-20692,20908,-20868,20909,20910,-20862]]},{"type":"Polygon","properties":{"name":"CRAWFORD","zip":"26343","state":"WV"},"arcs":[[-20763,20911,20912,-20748,-20737,-20770]]},{"type":"Polygon","properties":{"name":"ELLENBORO","zip":"26346","state":"WV"},"arcs":[[-20687,20913,20914,-20900]]},{"type":"Polygon","properties":{"name":"FLEMINGTON","zip":"26347","state":"WV"},"arcs":[[20915,20916,-20876]]},{"type":"Polygon","properties":{"name":"FOLSOM","zip":"26348","state":"WV"},"arcs":[[20917,20918,-20905,20919,20920]]},{"type":"Polygon","properties":{"name":"GLENVILLE","zip":"26351","state":"WV"},"arcs":[[20921,20922,-20117,-20908,20923]]},{"type":"Polygon","properties":{"name":"GRAFTON","zip":"26354","state":"WV"},"arcs":[[20924,20925,-20916,-20882,20926,20927,20928]]},{"type":"Polygon","properties":{"name":"HARRISVILLE","zip":"26362","state":"WV"},"arcs":[[-20869,-20909,-20693,-20657,-20674,-20899,-20915,20929,20930,-20874]]},{"type":"Polygon","properties":{"name":"HORNER","zip":"26372","state":"WV"},"arcs":[[20931,20932,-20707,-20736,-20750]]},{"type":"Polygon","properties":{"name":"INDEPENDENCE","zip":"26374","state":"WV"},"arcs":[[20933,20934,20935,20936,-20928]]},{"type":"Polygon","properties":{"name":"IRELAND","zip":"26376","state":"WV"},"arcs":[[-20743,20937,20938,20939,20940,-20912,-20762,-20751]]},{"type":"Polygon","properties":{"name":"JACKSONBURG","zip":"26377","state":"WV"},"arcs":[[20941,-20860,-20664,-20682,20942,20943,20944,-20903]]},{"type":"Polygon","properties":{"name":"JANE LEW","zip":"26378","state":"WV"},"arcs":[[20945,20946,20947,-20709]]},{"type":"Polygon","properties":{"name":"LINN","zip":"26384","state":"WV"},"arcs":[[-20907,-20867,20948,-20895,20949,-20924]]},{"type":"Polygon","properties":{"name":"LOST CREEK","zip":"26385","state":"WV"},"arcs":[[20950,-20710,-20948,20951,-20884,20952,20953]]},{"type":"Polygon","properties":{"name":"LUMBERPORT","zip":"26386","state":"WV"},"arcs":[[20954,-20853,20955,20956]]},{"type":"Polygon","properties":{"name":"MEADOWBROOK","zip":"26404","state":"WV"},"arcs":[[20957,-20879,-20855]]},{"type":"Polygon","properties":{"name":"MOATSVILLE","zip":"26405","state":"WV"},"arcs":[[20958,-20841,20959,-20925,20960,20961]]},{"type":"Polygon","properties":{"name":"MOUNT CLARE","zip":"26408","state":"WV"},"arcs":[[20962,-20954,20963,-20857,-20878]]},{"type":"Polygon","properties":{"name":"NEWBURG","zip":"26410","state":"WV"},"arcs":[[20964,20965,-20936,20966,20967]]},{"type":"Polygon","properties":{"name":"NEW MILTON","zip":"26411","state":"WV"},"arcs":[[20968,-20910,-20872,20969,20970,20971,-20901,-20864]]},{"type":"Polygon","properties":{"name":"ORLANDO","zip":"26412","state":"WV"},"arcs":[[20972,-20897]]},{"type":"Polygon","properties":{"name":"PENNSBORO","zip":"26415","state":"WV"},"arcs":[[20973,20974,-20930,-20914,-20686,-20660,-20859]]},{"type":"Polygon","properties":{"name":"PHILIPPI","zip":"26416","state":"WV"},"arcs":[[-20963,-20877,-20917,-20926,-20960,-20840,-20837,-20784,-20773,-20711,-20951]]},{"type":"Polygon","properties":{"name":"PINE GROVE","zip":"26419","state":"WV"},"arcs":[[-20681,20975,-20943]]},{"type":"Polygon","properties":{"name":"PULLMAN","zip":"26421","state":"WV"},"arcs":[[20976,-20875,-20931,-20975]]},{"type":"Polygon","properties":{"name":"ROWLESBURG","zip":"26425","state":"WV"},"arcs":[[-20959,20977,20978,20979,-20842]]},{"type":"Polygon","properties":{"name":"SALEM","zip":"26426","state":"WV"},"arcs":[[-20952,-20947,-20971,20980,-20861,-20942,-20906,-20919,20981,-20885]]},{"type":"Polygon","properties":{"name":"SAND FORK","zip":"26430","state":"WV"},"arcs":[[-20950,-20894,20982,20983,-20922]]},{"type":"Polygon","properties":{"name":"SHINNSTON","zip":"26431","state":"WV"},"arcs":[[-20955,20984,20985,-20880,-20958,-20854]]},{"type":"Polygon","properties":{"name":"SMITHFIELD","zip":"26437","state":"WV"},"arcs":[[-20904,-20945,20986,20987,-20920]]},{"type":"Polygon","properties":{"name":"THORNTON","zip":"26440","state":"WV"},"arcs":[[-20937,-20966,20988,-20961,-20929]]},{"type":"Polygon","properties":{"name":"TROY","zip":"26443","state":"WV"},"arcs":[[-20911,-20969,-20863]]},{"type":"Polygon","properties":{"name":"TUNNELTON","zip":"26444","state":"WV"},"arcs":[[-20965,20989,20990,-20978,-20962,-20989]]},{"type":"Polygon","properties":{"name":"WALKERSVILLE","zip":"26447","state":"WV"},"arcs":[[-20973,-20896,20991,-20932,-20749,-20913,-20941,20992,-20898]]},{"type":"Polygon","properties":{"name":"WALLACE","zip":"26448","state":"WV"},"arcs":[[-20918,20993,20994,-20956,-20852,-20886,-20982]]},{"type":"Polygon","properties":{"name":"WEST MILFORD","zip":"26451","state":"WV"},"arcs":[[-20953,-20883,-20858,-20964]]},{"type":"Polygon","properties":{"name":"WESTON","zip":"26452","state":"WV"},"arcs":[[-20992,-20949,-20866,-20902,-20972,-20946,-20708,-20933]]},{"type":"Polygon","properties":{"name":"WEST UNION","zip":"26456","state":"WV"},"arcs":[[-20871,-20873,-20977,-20974,-20981,-20970]]},{"type":"Polygon","properties":{"name":"MORGANTOWN","zip":"26501","state":"WV"},"arcs":[[20995,20996,20997,20998,20999,21000,21001,-12113,-12100,21002,21003]]},{"type":"Polygon","properties":{"name":"MORGANTOWN","zip":"26505","state":"WV"},"arcs":[[21004,21005,-20996]]},{"type":"Polygon","properties":{"name":"MORGANTOWN","zip":"26508","state":"WV"},"arcs":[[21006,-20934,21007,-20997,-21006,21008,-12235,-12214,21009,21010]]},{"type":"Polygon","properties":{"name":"ALBRIGHT","zip":"26519","state":"WV"},"arcs":[[21011,21012,21013]]},{"type":"Polygon","properties":{"name":"BLACKSVILLE","zip":"26521","state":"WV"},"arcs":[[21014,21015,21016,-12114,-21002]]},{"type":"Polygon","properties":{"name":"BRUCETON MILLS","zip":"26525","state":"WV"},"arcs":[[21017,21018,-21010,-12213,-12202,-12221,-16812,21019,-21013]]},{"type":"Polygon","properties":{"name":"CORE","zip":"26529","state":"WV"},"arcs":[[21020,-21015,-21001]]},{"type":"Polygon","properties":{"name":"KINGWOOD","zip":"26537","state":"WV"},"arcs":[[21021,21022,-21018,-21012,21023,-20990,-20968]]},{"type":"Polygon","properties":{"name":"MAIDSVILLE","zip":"26541","state":"WV"},"arcs":[[-21004,21024,-12098,-12062,-21009,-21005]]},{"type":"Polygon","properties":{"name":"MASONTOWN","zip":"26542","state":"WV"},"arcs":[[21025,-21011,-21019,-21023]]},{"type":"Polygon","properties":{"name":"PURSGLOVE","zip":"26546","state":"WV"},"arcs":[[-12099,-21025,-21003]]},{"type":"Polygon","properties":{"name":"REEDSVILLE","zip":"26547","state":"WV"},"arcs":[[-20967,-20935,-21007,-21026,-21022]]},{"type":"Polygon","properties":{"name":"FAIRMONT","zip":"26554","state":"WV"},"arcs":[[21026,21027,21028,21029,-20998,-21008,-20927,-20881,-20986]]},{"type":"Polygon","properties":{"name":"BIG RUN","zip":"26561","state":"WV"},"arcs":[[-20976,-20685,-20699,21030,21031,21032,-20987,-20944]]},{"type":"Polygon","properties":{"name":"BURTON","zip":"26562","state":"WV"},"arcs":[[21033,21034,21035,-12102,-12116,21036]]},{"type":"Polygon","properties":{"name":"ENTERPRISE","zip":"26568","state":"WV"},"arcs":[[-20957,-20995,21037,21038,-20985]]},{"type":"Polygon","properties":{"name":"FAIRVIEW","zip":"26570","state":"WV"},"arcs":[[21039,-21029,21040,21041,21042,21043,-21016,-21021,-21000]]},{"type":"Polygon","properties":{"name":"FARMINGTON","zip":"26571","state":"WV"},"arcs":[[21044,-21041,-21028,21045]]},{"type":"Polygon","properties":{"name":"HUNDRED","zip":"26575","state":"WV"},"arcs":[[21046,-20565,-12103,-21036,21047]]},{"type":"Polygon","properties":{"name":"LITTLETON","zip":"26581","state":"WV"},"arcs":[[-20700,-20566,-21047,21048,-21031]]},{"type":"Polygon","properties":{"name":"MANNINGTON","zip":"26582","state":"WV"},"arcs":[[-20988,-21033,21049,21050,-21042,-21045,21051,-21038,-20994,-20921]]},{"type":"Polygon","properties":{"name":"METZ","zip":"26585","state":"WV"},"arcs":[[-21049,-21048,-21035,-21050,-21032]]},{"type":"Polygon","properties":{"name":"RIVESVILLE","zip":"26588","state":"WV"},"arcs":[[-21040,-20999,-21030]]},{"type":"Polygon","properties":{"name":"WADESTOWN","zip":"26589","state":"WV"},"arcs":[[-21051,-21034,21052,-21043]]},{"type":"Polygon","properties":{"name":"WANA","zip":"26590","state":"WV"},"arcs":[[-21053,-21037,-12115,-21017,-21044]]},{"type":"Polygon","properties":{"name":"WORTHINGTON","zip":"26591","state":"WV"},"arcs":[[-21039,-21052,-21046,-21027]]},{"type":"MultiPolygon","properties":{"name":"SUTTON","zip":"26601","state":"WV"},"arcs":[[[21053,21054,21055,-20890,21056,-20938,-20742,-20730,-20720,21057]],[[-21059]]]},{"type":"Polygon","properties":{"name":"BIRCH RIVER","zip":"26610","state":"WV"},"arcs":[[21059,21060,21061,-19887,21062,-21058,-20719,-20729]]},{"type":"Polygon","properties":{"name":"CEDARVILLE","zip":"26611","state":"WV"},"arcs":[[21063,21064,-20118,-20923,-20984,21065,-20892,21066,21067]]},{"type":"Polygon","properties":{"name":"COPEN","zip":"26615","state":"WV"},"arcs":[[-20983,-20893,-21066]]},{"type":"Polygon","properties":{"name":"DILLE","zip":"26617","state":"WV"},"arcs":[[21068,-19838,-19888,-21062]]},{"type":"Polygon","properties":{"name":"ELMIRA","zip":"26618","state":"WV"},"arcs":[[21069,-19998,-20059,21070]]},{"type":"Polygon","properties":{"name":"EXCHANGE","zip":"26619","state":"WV"},"arcs":[[21071,-21067,-20891,-21056]]},{"type":"Polygon","properties":{"name":"FLATWOODS","zip":"26621","state":"WV"},"arcs":[[-21057,-20889,21072,21073,-20939]]},{"type":"Polygon","properties":{"name":"FRAMETOWN","zip":"26623","state":"WV"},"arcs":[[-21063,-19893,21074,-19891,-21070,21075,21076,21077,21078,-21054]]},{"type":"Polygon","properties":{"name":"GASSAWAY","zip":"26624","state":"WV"},"arcs":[[-21055,-21079,21079,-21077,21080,-21068,-21072]]},{"type":"Polygon","properties":{"name":"HEATERS","zip":"26627","state":"WV"},"arcs":[[-20888,21081,-21073]]},{"type":"Polygon","properties":{"name":"LITTLE BIRCH","zip":"26629","state":"WV"},"arcs":[[-21059]]},{"type":"Polygon","properties":{"name":"NAPIER","zip":"26631","state":"WV"},"arcs":[[-21074,-21082,-20887,-20993,-20940]]},{"type":"Polygon","properties":{"name":"PERKINS","zip":"26634","state":"WV"},"arcs":[[-20119,-21065,21082,21083,-20112]]},{"type":"Polygon","properties":{"name":"ROSEDALE","zip":"26636","state":"WV"},"arcs":[[-21071,-20058,-20123,21084,-21083,-21064,-21081,-21076]]},{"type":"Polygon","properties":{"name":"SHOCK","zip":"26638","state":"WV"},"arcs":[[-20045,-20113,-21084,-21085,-20122]]},{"type":"Polygon","properties":{"name":"STRANGE CREEK","zip":"26639","state":"WV"},"arcs":[[-21075,-19892]]},{"type":"Polygon","properties":{"name":"WILSIE","zip":"26641","state":"WV"},"arcs":[[-21080,-21078]]},{"type":"Polygon","properties":{"name":"SUMMERSVILLE","zip":"26651","state":"WV"},"arcs":[[21085,21086,21087,21088,21089,21090,-19839,-21069,-21061,21091]]},{"type":"Polygon","properties":{"name":"BELVA","zip":"26656","state":"WV"},"arcs":[[21092,-19989,-19877,21093]]},{"type":"Polygon","properties":{"name":"CALVIN","zip":"26660","state":"WV"},"arcs":[[21094,-20722,21095,-21086]]},{"type":"Polygon","properties":{"name":"CANVAS","zip":"26662","state":"WV"},"arcs":[[21096,-21087,-21096,-20721,-20716,21097]]},{"type":"Polygon","properties":{"name":"DRENNEN","zip":"26667","state":"WV"},"arcs":[[21098,-20510,21099,21100]]},{"type":"Polygon","properties":{"name":"GILBOA","zip":"26671","state":"WV"},"arcs":[[21101,-21101,21102,-21090]]},{"type":"Polygon","properties":{"name":"JODIE","zip":"26674","state":"WV"},"arcs":[[-19926,-19990,-21093,21103,-20508,-20406,-20455]]},{"type":"Polygon","properties":{"name":"KESLERS CROSS LANES","zip":"26675","state":"WV"},"arcs":[[21104,21105,-20511,-21099,-21102,-21089]]},{"type":"Polygon","properties":{"name":"LEIVASY","zip":"26676","state":"WV"},"arcs":[[21106,21107,21108,-20809,-20548]]},{"type":"Polygon","properties":{"name":"MOUNT LOOKOUT","zip":"26678","state":"WV"},"arcs":[[21109,-20479,-20512,-21106,21110]]},{"type":"Polygon","properties":{"name":"MOUNT NEBO","zip":"26679","state":"WV"},"arcs":[[21111,-21111,-21105,-21088,-21097,21112,-21108,21113]]},{"type":"Polygon","properties":{"name":"NALLEN","zip":"26680","state":"WV"},"arcs":[[-20474,21114,-21114,-21107,-20547]]},{"type":"Polygon","properties":{"name":"NETTIE","zip":"26681","state":"WV"},"arcs":[[-21109,-21113,-21098,-20715,-20810]]},{"type":"Polygon","properties":{"name":"POOL","zip":"26684","state":"WV"},"arcs":[[-20480,-21110,-21112,-21115]]},{"type":"Polygon","properties":{"name":"SWISS","zip":"26690","state":"WV"},"arcs":[[-19876,-19948,-19800,-19840,-21091,-21103,-21100,-20509,-21104,-21094]]},{"type":"Polygon","properties":{"name":"TIOGA","zip":"26691","state":"WV"},"arcs":[[-21060,-20728,-20734,-20723,-21095,-21092]]},{"type":"Polygon","properties":{"name":"AUGUSTA","zip":"26704","state":"WV"},"arcs":[[21115,21116,-20204,21117,21118,21119]]},{"type":"Polygon","properties":{"name":"AURORA","zip":"26705","state":"WV"},"arcs":[[21120,-20843,-20980,21121,-16833]]},{"type":"Polygon","properties":{"name":"BURLINGTON","zip":"26710","state":"WV"},"arcs":[[21122,21123,21124,21125,21126,21127,21128,21129,21130]]},{"type":"Polygon","properties":{"name":"CAPON BRIDGE","zip":"26711","state":"WV"},"arcs":[[21131,-21118,-20203,-20195,21132,21133]]},{"type":"Polygon","properties":{"name":"DELRAY","zip":"26714","state":"WV"},"arcs":[[21134,21135,-21119,-21132,21136,21137]]},{"type":"Polygon","properties":{"name":"EGLON","zip":"26716","state":"WV"},"arcs":[[21138,-20847,-20844,-21121,-16832]]},{"type":"Polygon","properties":{"name":"ELK GARDEN","zip":"26717","state":"WV"},"arcs":[[21139,21140,-16830,-16822,-16846,21141]]},{"type":"Polygon","properties":{"name":"FORT ASHBY","zip":"26719","state":"WV"},"arcs":[[21142,21143,-21126]]},{"type":"Polygon","properties":{"name":"GORMANIA","zip":"26720","state":"WV"},"arcs":[[-20848,-21139,-16831,21144,-20807]]},{"type":"Polygon","properties":{"name":"GREEN SPRING","zip":"26722","state":"WV"},"arcs":[[21145,-16840,-20192,-20200]]},{"type":"Polygon","properties":{"name":"KEYSER","zip":"26726","state":"WV"},"arcs":[[-16845,-16803,-16826,21146,-16847,-16844,21147,-21124,21148,-21142]]},{"type":"Polygon","properties":{"name":"LAHMANSVILLE","zip":"26731","state":"WV"},"arcs":[[21149,21150,21151,21152]]},{"type":"Polygon","properties":{"name":"MEDLEY","zip":"26734","state":"WV"},"arcs":[[21153,-21153,21154,21155,21156,-21131]]},{"type":"Polygon","properties":{"name":"MOUNT STORM","zip":"26739","state":"WV"},"arcs":[[-21141,-21156,21157,-20808,-21145]]},{"type":"Polygon","properties":{"name":"NEW CREEK","zip":"26743","state":"WV"},"arcs":[[-21157,-21140,-21149,-21123]]},{"type":"Polygon","properties":{"name":"PIEDMONT","zip":"26750","state":"WV"},"arcs":[[-16825,-16848,-21147]]},{"type":"Polygon","properties":{"name":"RIDGELEY","zip":"26753","state":"WV"},"arcs":[[-21125,-21148,-16843,-16790,21158,-16788,21159,-21143]]},{"type":"Polygon","properties":{"name":"RIO","zip":"26755","state":"WV"},"arcs":[[21160,21161,21162,-21120,-21136,21163]]},{"type":"Polygon","properties":{"name":"ROMNEY","zip":"26757","state":"WV"},"arcs":[[21164,-21162,21165,21166,21167,-21128,21168,-20199,-21117]]},{"type":"Polygon","properties":{"name":"SHANKS","zip":"26761","state":"WV"},"arcs":[[-21165,-21116,-21163]]},{"type":"Polygon","properties":{"name":"SPRINGFIELD","zip":"26763","state":"WV"},"arcs":[[-21160,-16787,-16841,-21146,-21169,-21127,-21144]]},{"type":"Polygon","properties":{"name":"TERRA ALTA","zip":"26764","state":"WV"},"arcs":[[-21024,-21014,-21020,-16811,-16834,-21122,-20979,-20991]]},{"type":"Polygon","properties":{"name":"WILEY FORD","zip":"26767","state":"WV"},"arcs":[[-16789,-21159]]},{"type":"Polygon","properties":{"name":"BAKER","zip":"26801","state":"WV"},"arcs":[[21169,21170,21171,-21164,-21135]]},{"type":"Polygon","properties":{"name":"BRANDYWINE","zip":"26802","state":"WV"},"arcs":[[21172,21173,21174,21175,-17691,-17713,-17731,-17674,-17716,21176]]},{"type":"Polygon","properties":{"name":"CIRCLEVILLE","zip":"26804","state":"WV"},"arcs":[[-20849,21177,21178,21179,-19254,-19676]]},{"type":"Polygon","properties":{"name":"FRANKLIN","zip":"26807","state":"WV"},"arcs":[[21180,21181,21182,-21173,21183,-19328,-19255,-21180]]},{"type":"Polygon","properties":{"name":"HIGH VIEW","zip":"26808","state":"WV"},"arcs":[[-21134,21184,-17561,-17517,-17584,21185,-21137]]},{"type":"Polygon","properties":{"name":"LOST CITY","zip":"26810","state":"WV"},"arcs":[[21186,21187,-17718,-17687]]},{"type":"Polygon","properties":{"name":"MATHIAS","zip":"26812","state":"WV"},"arcs":[[21188,-21171,21189,-21187,-17686,-17753,-17704,-17694]]},{"type":"Polygon","properties":{"name":"RIVERTON","zip":"26814","state":"WV"},"arcs":[[-21179,21190,21191,-21181]]},{"type":"Polygon","properties":{"name":"SUGAR GROVE","zip":"26815","state":"WV"},"arcs":[[-17715,-17748,-19304,-19315,-19286,-21184,-21177]]},{"type":"Polygon","properties":{"name":"BLOOMERY","zip":"26817","state":"WV"},"arcs":[[-17549,-17562,-21185,-21133,-20194]]},{"type":"Polygon","properties":{"name":"JUNCTION","zip":"26824","state":"WV"},"arcs":[[21192,-21129,-21168]]},{"type":"Polygon","properties":{"name":"MAYSVILLE","zip":"26833","state":"WV"},"arcs":[[21193,21194,-20800,-21158,-21155,-21152]]},{"type":"Polygon","properties":{"name":"MOOREFIELD","zip":"26836","state":"WV"},"arcs":[[21195,-21150,-21154,21196,-21166,-21161,-21172,-21189,-17693,21197,-21175]]},{"type":"Polygon","properties":{"name":"MILAM","zip":"26838","state":"WV"},"arcs":[[-21198,-17692,-21176]]},{"type":"Polygon","properties":{"name":"PETERSBURG","zip":"26847","state":"WV"},"arcs":[[21198,21199,-21194,-21151,-21196]]},{"type":"Polygon","properties":{"name":"WARDENSVILLE","zip":"26851","state":"WV"},"arcs":[[-21170,-21138,-21186,-17583,-17719,-21188,-21190]]},{"type":"Polygon","properties":{"name":"PURGITSVILLE","zip":"26852","state":"WV"},"arcs":[[-21197,-21130,-21193,-21167]]},{"type":"Polygon","properties":{"name":"CABINS","zip":"26855","state":"WV"},"arcs":[[21200,-20813,-20801,-21195,-21200,21201]]},{"type":"Polygon","properties":{"name":"UPPER TRACT","zip":"26866","state":"WV"},"arcs":[[21202,-21202,-21199,-21174,-21183]]},{"type":"Polygon","properties":{"name":"SENECA ROCKS","zip":"26884","state":"WV"},"arcs":[[-21182,-21192,21203,-20811,-21201,-21203]]},{"type":"Polygon","properties":{"name":"ONEGO","zip":"26886","state":"WV"},"arcs":[[-20850,-20822,-21204,-21191,-21178]]},{"type":"Polygon","properties":{"name":"ADVANCE","zip":"27006","state":"NC"},"arcs":[[21204,21205,21206,21207]]},{"type":"Polygon","properties":{"name":"ARARAT","zip":"27007","state":"NC"},"arcs":[[21208,21209,21210,21211]]},{"type":"Polygon","properties":{"name":"BELEWS CREEK","zip":"27009","state":"NC"},"arcs":[[21212,21213,21214,21215]]},{"type":"Polygon","properties":{"name":"BOONVILLE","zip":"27011","state":"NC"},"arcs":[[21216,21217,21218,21219,21220,21221,21222]]},{"type":"Polygon","properties":{"name":"CLEMMONS","zip":"27012","state":"NC"},"arcs":[[21223,21224,21225,21226,-21207]]},{"type":"Polygon","properties":{"name":"CLEVELAND","zip":"27013","state":"NC"},"arcs":[[21227,21228,21229,21230,21231,21232,21233,21234]]},{"type":"Polygon","properties":{"name":"DANBURY","zip":"27016","state":"NC"},"arcs":[[21235,21236,21237,21238,21239]]},{"type":"Polygon","properties":{"name":"DOBSON","zip":"27017","state":"NC"},"arcs":[[21240,-21222,21241,21242,21243,21244,21245,21246,-21210]]},{"type":"Polygon","properties":{"name":"EAST BEND","zip":"27018","state":"NC"},"arcs":[[21247,21248,21249,-21217,21250,21251,21252]]},{"type":"Polygon","properties":{"name":"GERMANTON","zip":"27019","state":"NC"},"arcs":[[21253,21254,21255,21256,21257]]},{"type":"Polygon","properties":{"name":"HAMPTONVILLE","zip":"27020","state":"NC"},"arcs":[[21258,21259,21260,21261,21262,21263,-21219]]},{"type":"Polygon","properties":{"name":"KING","zip":"27021","state":"NC"},"arcs":[[21264,21265,21266,21267,21268,-21256]]},{"type":"Polygon","properties":{"name":"LAWSONVILLE","zip":"27022","state":"NC"},"arcs":[[21269,-21239,21270,-18957]]},{"type":"Polygon","properties":{"name":"LEWISVILLE","zip":"27023","state":"NC"},"arcs":[[-21206,21271,-21249,21272,21273,21274,-21224]]},{"type":"Polygon","properties":{"name":"LOWGAP","zip":"27024","state":"NC"},"arcs":[[21275,-19199,-19216,21276,-21246]]},{"type":"Polygon","properties":{"name":"MADISON","zip":"27025","state":"NC"},"arcs":[[21277,-21236,21278,21279,21280,21281,21282,21283,21284]]},{"type":"Polygon","properties":{"name":"MAYODAN","zip":"27027","state":"NC"},"arcs":[[21285,21286,-21280]]},{"type":"Polygon","properties":{"name":"MOCKSVILLE","zip":"27028","state":"NC"},"arcs":[[21287,21288,-21233,21289,21290,21291,-21205,21292,21293,21294]]},{"type":"Polygon","properties":{"name":"MOUNT AIRY","zip":"27030","state":"NC"},"arcs":[[21295,-21211,-21247,-21277,-19215,-19159,-19204,-18802,21296]]},{"type":"Polygon","properties":{"name":"PFAFFTOWN","zip":"27040","state":"NC"},"arcs":[[21297,21298,21299,-21273,-21248]]},{"type":"Polygon","properties":{"name":"PILOT MOUNTAIN","zip":"27041","state":"NC"},"arcs":[[21300,-21212,-21296,21301,21302]]},{"type":"Polygon","properties":{"name":"PINNACLE","zip":"27043","state":"NC"},"arcs":[[21303,-21303,21304,-21267,21305,-21252]]},{"type":"Polygon","properties":{"name":"RURAL HALL","zip":"27045","state":"NC"},"arcs":[[21306,-21265,-21255,21307,-21299]]},{"type":"Polygon","properties":{"name":"SANDY RIDGE","zip":"27046","state":"NC"},"arcs":[[-21279,-21240,-21270,-18956,-18954,21308,-21286]]},{"type":"Polygon","properties":{"name":"SILOAM","zip":"27047","state":"NC"},"arcs":[[-21251,-21223,-21241,-21209,-21301,-21304]]},{"type":"Polygon","properties":{"name":"STONEVILLE","zip":"27048","state":"NC"},"arcs":[[-21309,-18953,-18941,21309,-21281,-21287]]},{"type":"Polygon","properties":{"name":"TOBACCOVILLE","zip":"27050","state":"NC"},"arcs":[[-21253,-21306,-21266,-21307,-21298]]},{"type":"Polygon","properties":{"name":"WALKERTOWN","zip":"27051","state":"NC"},"arcs":[[21310,21311,21312,-21258,21313,-21214]]},{"type":"Polygon","properties":{"name":"WALNUT COVE","zip":"27052","state":"NC"},"arcs":[[21314,-21215,-21314,-21257,-21269,21315,-21237,-21278]]},{"type":"Polygon","properties":{"name":"WESTFIELD","zip":"27053","state":"NC"},"arcs":[[-21302,-21297,-18801,-18958,-21271,-21238,-21316,-21268,-21305]]},{"type":"Polygon","properties":{"name":"WOODLEAF","zip":"27054","state":"NC"},"arcs":[[21316,-21234,-21289]]},{"type":"Polygon","properties":{"name":"YADKINVILLE","zip":"27055","state":"NC"},"arcs":[[-21292,21317,-21259,-21218,-21250,-21272]]},{"type":"Polygon","properties":{"name":"WINSTON SALEM","zip":"27101","state":"NC"},"arcs":[[21318,21319,21320,21321,-21312,21322,21323]]},{"type":"Polygon","properties":{"name":"WINSTON SALEM","zip":"27103","state":"NC"},"arcs":[[21324,-21225,21325,-21320]]},{"type":"Polygon","properties":{"name":"WINSTON SALEM","zip":"27104","state":"NC"},"arcs":[[21326,21327,-21321,-21326,-21275]]},{"type":"Polygon","properties":{"name":"WINSTON SALEM","zip":"27105","state":"NC"},"arcs":[[21328,-21308,-21254,-21313,-21322,-21328]]},{"type":"Polygon","properties":{"name":"WINSTON SALEM","zip":"27106","state":"NC"},"arcs":[[-21300,-21329,-21327,-21274]]},{"type":"Polygon","properties":{"name":"WINSTON SALEM","zip":"27107","state":"NC"},"arcs":[[21329,-21324,21330,21331,21332,21333]]},{"type":"Polygon","properties":{"name":"WINSTON SALEM","zip":"27127","state":"NC"},"arcs":[[21334,-21226,-21325,-21319,-21330]]},{"type":"Polygon","properties":{"name":"ASHEBORO","zip":"27203","state":"NC"},"arcs":[[21335,21336,21337]]},{"type":"Polygon","properties":{"name":"ASHEBORO","zip":"27205","state":"NC"},"arcs":[[21338,21339,21340,21341,-21336,21342,21343,21344,21345,21346]]},{"type":"Polygon","properties":{"name":"BEAR CREEK","zip":"27207","state":"NC"},"arcs":[[21347,21348,21349,21350,21351,21352]]},{"type":"Polygon","properties":{"name":"BENNETT","zip":"27208","state":"NC"},"arcs":[[21353,21354,21355,21356,-21350]]},{"type":"Polygon","properties":{"name":"BISCOE","zip":"27209","state":"NC"},"arcs":[[21357,21358,21359,21360,21361]]},{"type":"Polygon","properties":{"name":"BLANCH","zip":"27212","state":"NC"},"arcs":[[21362,21363,21364,21365]]},{"type":"Polygon","properties":{"name":"BROWNS SUMMIT","zip":"27214","state":"NC"},"arcs":[[21366,21367,21368,21369,21370]]},{"type":"Polygon","properties":{"name":"BURLINGTON","zip":"27215","state":"NC"},"arcs":[[21371,21372,21373,21374,21375,21376,21377,21378]]},{"type":"Polygon","properties":{"name":"BURLINGTON","zip":"27217","state":"NC"},"arcs":[[21379,21380,-21379,21381,21382,21383]]},{"type":"Polygon","properties":{"name":"CANDOR","zip":"27229","state":"NC"},"arcs":[[21384,21385,-21359,21386,21387]]},{"type":"Polygon","properties":{"name":"CEDAR GROVE","zip":"27231","state":"NC"},"arcs":[[21388,21389,21390,21391,21392]]},{"type":"Polygon","properties":{"name":"CLIMAX","zip":"27233","state":"NC"},"arcs":[[21393,21394,21395,21396,21397,21398]]},{"type":"Polygon","properties":{"name":"COLFAX","zip":"27235","state":"NC"},"arcs":[[21399,21400,21401,21402]]},{"type":"Polygon","properties":{"name":"DENTON","zip":"27239","state":"NC"},"arcs":[[21403,21404,21405,21406,21407,-21339]]},{"type":"Polygon","properties":{"name":"EAGLE SPRINGS","zip":"27242","state":"NC"},"arcs":[[21408,21409,-21362,21410,21411,21412]]},{"type":"Polygon","properties":{"name":"EFLAND","zip":"27243","state":"NC"},"arcs":[[21413,-21390,21414,21415]]},{"type":"Polygon","properties":{"name":"ELON COLLEGE","zip":"27244","state":"NC"},"arcs":[[21416,21417,21418,-21382,-21378]]},{"type":"Polygon","properties":{"name":"FRANKLINVILLE","zip":"27248","state":"NC"},"arcs":[[21419,-21399,21420,21421,-21343,-21338]]},{"type":"Polygon","properties":{"name":"GIBSONVILLE","zip":"27249","state":"NC"},"arcs":[[21422,21423,-21370,21424,-21417,-21377]]},{"type":"Polygon","properties":{"name":"GOLDSTON","zip":"27252","state":"NC"},"arcs":[[21425,-21348,21426]]},{"type":"Polygon","properties":{"name":"GRAHAM","zip":"27253","state":"NC"},"arcs":[[21427,21428,21429,-21372,-21381,21430,21431]]},{"type":"Polygon","properties":{"name":"HAW RIVER","zip":"27258","state":"NC"},"arcs":[[21432,-21431,-21380]]},{"type":"Polygon","properties":{"name":"HIGH POINT","zip":"27260","state":"NC"},"arcs":[[21433,21434,21435,21436,21437]]},{"type":"Polygon","properties":{"name":"HIGH POINT","zip":"27262","state":"NC"},"arcs":[[21438,21439,-21436]]},{"type":"Polygon","properties":{"name":"HIGH POINT","zip":"27263","state":"NC"},"arcs":[[21440,21441,-21434,21442,21443,21444,21445,21446]]},{"type":"Polygon","properties":{"name":"HIGH POINT","zip":"27265","state":"NC"},"arcs":[[-21440,21447,-21332,21448,-21403,21449,21450,-21437]]},{"type":"Polygon","properties":{"name":"HILLSBOROUGH","zip":"27278","state":"NC"},"arcs":[[21451,21452,-21415,-21389,21453,21454,21455,21456,21457]]},{"type":"Polygon","properties":{"name":"JACKSON SPRINGS","zip":"27281","state":"NC"},"arcs":[[21458,21459,21460,-21387,-21358,-21410,21461,21462]]},{"type":"Polygon","properties":{"name":"JAMESTOWN","zip":"27282","state":"NC"},"arcs":[[21463,-21443,-21438,-21451,21464]]},{"type":"Polygon","properties":{"name":"JULIAN","zip":"27283","state":"NC"},"arcs":[[21465,-21397,21466,21467,-21375]]},{"type":"Polygon","properties":{"name":"KERNERSVILLE","zip":"27284","state":"NC"},"arcs":[[-21449,-21331,-21323,-21311,-21213,21468,21469,-21400]]},{"type":"Polygon","properties":{"name":"EDEN","zip":"27288","state":"NC"},"arcs":[[-21310,-18940,-18784,21470,21471,-21282]]},{"type":"Polygon","properties":{"name":"LEASBURG","zip":"27291","state":"NC"},"arcs":[[21472,-21363,21473,21474,21475,21476,21477,21478]]},{"type":"Polygon","properties":{"name":"LEXINGTON","zip":"27292","state":"NC"},"arcs":[[21479,21480,21481,21482,21483,-21407,21484]]},{"type":"Polygon","properties":{"name":"LEXINGTON","zip":"27295","state":"NC"},"arcs":[[21485,-21293,-21208,-21227,-21335,-21334,21486,-21482]]},{"type":"Polygon","properties":{"name":"LIBERTY","zip":"27298","state":"NC"},"arcs":[[21487,21488,-21421,-21398,-21466,-21374,21489,21490]]},{"type":"Polygon","properties":{"name":"LINWOOD","zip":"27299","state":"NC"},"arcs":[[21491,-21294,-21486,-21481,21492]]},{"type":"Polygon","properties":{"name":"MC LEANSVILLE","zip":"27301","state":"NC"},"arcs":[[21493,21494,-21371,-21424,21495]]},{"type":"Polygon","properties":{"name":"MEBANE","zip":"27302","state":"NC"},"arcs":[[21496,-21432,-21433,-21384,21497,-21479,21498,-21391,-21414]]},{"type":"Polygon","properties":{"name":"MILTON","zip":"27305","state":"NC"},"arcs":[[-21366,21499,-19469,-19367,21500,-21474]]},{"type":"Polygon","properties":{"name":"MOUNT GILEAD","zip":"27306","state":"NC"},"arcs":[[21501,21502,21503,-21385,21504,21505]]},{"type":"Polygon","properties":{"name":"OAK RIDGE","zip":"27310","state":"NC"},"arcs":[[-21470,21506,21507,21508,-21401]]},{"type":"Polygon","properties":{"name":"PELHAM","zip":"27311","state":"NC"},"arcs":[[21509,21510,-19417,21511]]},{"type":"Polygon","properties":{"name":"PITTSBORO","zip":"27312","state":"NC"},"arcs":[[21512,21513,-21429,21514,21515,21516,21517,-21352]]},{"type":"Polygon","properties":{"name":"PLEASANT GARDEN","zip":"27313","state":"NC"},"arcs":[[21518,21519,-21395]]},{"type":"Polygon","properties":{"name":"PROSPECT HILL","zip":"27314","state":"NC"},"arcs":[[-21499,-21478,21520,-21392]]},{"type":"Polygon","properties":{"name":"PROVIDENCE","zip":"27315","state":"NC"},"arcs":[[21521,-21512,-19416,-21500,-21365]]},{"type":"Polygon","properties":{"name":"RAMSEUR","zip":"27316","state":"NC"},"arcs":[[-21422,-21489,21522,21523,-21356,21524,-21344]]},{"type":"Polygon","properties":{"name":"RANDLEMAN","zip":"27317","state":"NC"},"arcs":[[21525,-21446,21526,-21519,-21394,-21420,-21337,-21342]]},{"type":"Polygon","properties":{"name":"REIDSVILLE","zip":"27320","state":"NC"},"arcs":[[21527,-21283,-21472,21528,21529,-21418,-21425,-21369,21530]]},{"type":"Polygon","properties":{"name":"ROBBINS","zip":"27325","state":"NC"},"arcs":[[21531,21532,-21354,-21349,-21426,21533,21534,-21412]]},{"type":"Polygon","properties":{"name":"RUFFIN","zip":"27326","state":"NC"},"arcs":[[21535,-21529,-21471,-18783,-19418,-21511]]},{"type":"Polygon","properties":{"name":"SANFORD","zip":"27330","state":"NC"},"arcs":[[21536,21537,21538,-21534,-21427,-21353,21539]]},{"type":"Polygon","properties":{"name":"SANFORD","zip":"27332","state":"NC"},"arcs":[[21540,21541,21542,-21538,21543]]},{"type":"Polygon","properties":{"name":"SEAGROVE","zip":"27341","state":"NC"},"arcs":[[21544,-21345,-21525,-21355,-21533]]},{"type":"Polygon","properties":{"name":"SEMORA","zip":"27343","state":"NC"},"arcs":[[21545,-21475,-21501,-19366]]},{"type":"Polygon","properties":{"name":"SILER CITY","zip":"27344","state":"NC"},"arcs":[[21546,-21491,21547,-21513,-21351,-21357,-21524]]},{"type":"Polygon","properties":{"name":"SNOW CAMP","zip":"27349","state":"NC"},"arcs":[[-21548,-21490,-21373,-21430,-21514]]},{"type":"Polygon","properties":{"name":"SOPHIA","zip":"27350","state":"NC"},"arcs":[[-21341,21548,-21447,-21526]]},{"type":"Polygon","properties":{"name":"STALEY","zip":"27355","state":"NC"},"arcs":[[-21523,-21488,-21547]]},{"type":"Polygon","properties":{"name":"STAR","zip":"27356","state":"NC"},"arcs":[[21549,-21346,-21545,-21532,-21411,-21361]]},{"type":"Polygon","properties":{"name":"STOKESDALE","zip":"27357","state":"NC"},"arcs":[[21550,-21507,-21469,-21216,-21315,-21285]]},{"type":"Polygon","properties":{"name":"SUMMERFIELD","zip":"27358","state":"NC"},"arcs":[[-21551,-21284,-21528,21551,21552,21553,-21508]]},{"type":"Polygon","properties":{"name":"THOMASVILLE","zip":"27360","state":"NC"},"arcs":[[-21333,-21448,-21439,-21435,-21442,21554,-21483,-21487]]},{"type":"Polygon","properties":{"name":"TRINITY","zip":"27370","state":"NC"},"arcs":[[-21555,-21441,-21549,-21340,-21408,-21484]]},{"type":"Polygon","properties":{"name":"TROY","zip":"27371","state":"NC"},"arcs":[[-21386,-21504,21555,21556,-21404,-21347,-21550,-21360]]},{"type":"Polygon","properties":{"name":"WEST END","zip":"27376","state":"NC"},"arcs":[[21557,-21462,-21409,21558,21559]]},{"type":"Polygon","properties":{"name":"WHITSETT","zip":"27377","state":"NC"},"arcs":[[21560,-21496,-21423,-21376,-21468]]},{"type":"Polygon","properties":{"name":"YANCEYVILLE","zip":"27379","state":"NC"},"arcs":[[-21536,-21510,-21522,-21364,-21473,-21498,-21383,-21419,-21530]]},{"type":"Polygon","properties":{"name":"GREENSBORO","zip":"27401","state":"NC"},"arcs":[[21561,21562,21563,21564]]},{"type":"Polygon","properties":{"name":"GREENSBORO","zip":"27403","state":"NC"},"arcs":[[21565,21566,21567,21568,-21562]]},{"type":"Polygon","properties":{"name":"GREENSBORO","zip":"27405","state":"NC"},"arcs":[[21569,-21564,21570,21571,-21367,-21495]]},{"type":"Polygon","properties":{"name":"GREENSBORO","zip":"27406","state":"NC"},"arcs":[[21572,-21566,-21565,-21570,-21494,-21561,-21467,-21396,-21520,-21527,-21445]]},{"type":"Polygon","properties":{"name":"GREENSBORO","zip":"27407","state":"NC"},"arcs":[[21573,21574,-21567,-21573,-21444,-21464]]},{"type":"Polygon","properties":{"name":"GREENSBORO","zip":"27408","state":"NC"},"arcs":[[-21569,21575,21576,-21571,-21563]]},{"type":"Polygon","properties":{"name":"GREENSBORO","zip":"27409","state":"NC"},"arcs":[[-21465,-21450,-21402,-21509,-21554,21577,-21574]]},{"type":"Polygon","properties":{"name":"GREENSBORO","zip":"27410","state":"NC"},"arcs":[[-21575,-21578,-21553,21578,-21576,-21568]]},{"type":"Polygon","properties":{"name":"GREENSBORO","zip":"27455","state":"NC"},"arcs":[[-21577,-21579,-21552,-21531,-21368,-21572]]},{"type":"Polygon","properties":{"name":"ANGIER","zip":"27501","state":"NC"},"arcs":[[21579,21580,21581,21582,21583]]},{"type":"Polygon","properties":{"name":"APEX","zip":"27502","state":"NC"},"arcs":[[21584,21585,21586,21587,-21517,21588,21589,21590,21591,21592,21593]]},{"type":"Polygon","properties":{"name":"BAHAMA","zip":"27503","state":"NC"},"arcs":[[21594,-21456,21595,21596,21597,21598]]},{"type":"Polygon","properties":{"name":"BENSON","zip":"27504","state":"NC"},"arcs":[[21599,21600,21601,21602,-21584,21603,21604]]},{"type":"Polygon","properties":{"name":"BROADWAY","zip":"27505","state":"NC"},"arcs":[[21605,-21544,-21537,21606]]},{"type":"Polygon","properties":{"name":"BULLOCK","zip":"27507","state":"NC"},"arcs":[[21607,-19466,-19388,-18647,21608]]},{"type":"Polygon","properties":{"name":"BUNN","zip":"27508","state":"NC"},"arcs":[[21609,21610]]},{"type":"Polygon","properties":{"name":"BUTNER","zip":"27509","state":"NC"},"arcs":[[21611,21612,-21598,21613]]},{"type":"Polygon","properties":{"name":"CARY","zip":"27511","state":"NC"},"arcs":[[21614,21615,21616,-21593]]},{"type":"Polygon","properties":{"name":"CARY","zip":"27513","state":"NC"},"arcs":[[-21592,21617,21618,-21615]]},{"type":"Polygon","properties":{"name":"CHAPEL HILL","zip":"27514","state":"NC"},"arcs":[[21619,-21452,21620,21621,21622]]},{"type":"Polygon","properties":{"name":"CHAPEL HILL","zip":"27516","state":"NC"},"arcs":[[-21497,-21416,-21453,-21620,21623,-21515,-21428]]},{"type":"Polygon","properties":{"name":"CHAPEL HILL","zip":"27517","state":"NC"},"arcs":[[-21623,21624,21625,-21589,-21516,-21624]]},{"type":"Polygon","properties":{"name":"CLAYTON","zip":"27520","state":"NC"},"arcs":[[21626,21627,-21605,21628,21629,21630,21631]]},{"type":"Polygon","properties":{"name":"COATS","zip":"27521","state":"NC"},"arcs":[[21632,21633,-21580,-21603,21634]]},{"type":"Polygon","properties":{"name":"CREEDMOOR","zip":"27522","state":"NC"},"arcs":[[21635,21636,21637,-21612,21638,21639,21640]]},{"type":"Polygon","properties":{"name":"FOUR OAKS","zip":"27524","state":"NC"},"arcs":[[21641,21642,21643,-21600,-21628,21644,21645]]},{"type":"Polygon","properties":{"name":"FRANKLINTON","zip":"27525","state":"NC"},"arcs":[[21646,-21641,21647,21648,21649,21650]]},{"type":"Polygon","properties":{"name":"FUQUAY VARINA","zip":"27526","state":"NC"},"arcs":[[21651,21652,-21586,21653,21654,-21582,21655,-21607]]},{"type":"Polygon","properties":{"name":"GARNER","zip":"27529","state":"NC"},"arcs":[[21656,21657,21658,-21629]]},{"type":"Polygon","properties":{"name":"GOLDSBORO","zip":"27530","state":"NC"},"arcs":[[21659,21660,21661,21662,21663,21664,-21642]]},{"type":"Polygon","properties":{"name":"GOLDSBORO","zip":"27531","state":"NC"},"arcs":[[21665,-21663,21666]]},{"type":"Polygon","properties":{"name":"GOLDSBORO","zip":"27534","state":"NC"},"arcs":[[21667,-21667,-21662,21668,21669,21670,21671]]},{"type":"Polygon","properties":{"name":"HENDERSON","zip":"27536","state":"NC"},"arcs":[[21672]]},{"type":"Polygon","properties":{"name":"HENDERSON","zip":"27537","state":"NC"},"arcs":[[21673,-21609,-18646,21674,21675,21676,21677],[-21673]]},{"type":"Polygon","properties":{"name":"HOLLY SPRINGS","zip":"27540","state":"NC"},"arcs":[[21678,21679,-21587,-21653]]},{"type":"Polygon","properties":{"name":"HURDLE MILLS","zip":"27541","state":"NC"},"arcs":[[21680,-21454,-21393,-21521,-21477,21681,21682]]},{"type":"Polygon","properties":{"name":"KENLY","zip":"27542","state":"NC"},"arcs":[[21683,21684,21685,21686,21687,21688,21689,21690]]},{"type":"Polygon","properties":{"name":"KITTRELL","zip":"27544","state":"NC"},"arcs":[[21691,-21649,21692,-21678]]},{"type":"Polygon","properties":{"name":"KNIGHTDALE","zip":"27545","state":"NC"},"arcs":[[21693,21694,21695,21696]]},{"type":"Polygon","properties":{"name":"LILLINGTON","zip":"27546","state":"NC"},"arcs":[[-21606,-21656,-21581,-21634,21697,21698,21699,21700,-21541]]},{"type":"Polygon","properties":{"name":"LOUISBURG","zip":"27549","state":"NC"},"arcs":[[21701,21702,-21650,-21692,-21677,21703,21704,21705,21706,21707,-21611]]},{"type":"Polygon","properties":{"name":"MACON","zip":"27551","state":"NC"},"arcs":[[21708,21709,21710,-18611,-18617,-18525,21711]]},{"type":"Polygon","properties":{"name":"MANSON","zip":"27553","state":"NC"},"arcs":[[21712,-21675,-18645,-18613,21713]]},{"type":"Polygon","properties":{"name":"MIDDLESEX","zip":"27557","state":"NC"},"arcs":[[21714,21715,21716,21717,-21688,21718]]},{"type":"Polygon","properties":{"name":"MONCURE","zip":"27559","state":"NC"},"arcs":[[-21540,-21518,21719,-21679,-21652]]},{"type":"Polygon","properties":{"name":"MORRISVILLE","zip":"27560","state":"NC"},"arcs":[[21720,21721,21722,21723,21724,21725,-21618,-21591]]},{"type":"Polygon","properties":{"name":"NEW HILL","zip":"27562","state":"NC"},"arcs":[[-21720,-21588,-21680]]},{"type":"Polygon","properties":{"name":"NORLINA","zip":"27563","state":"NC"},"arcs":[[21726,-21714,-18612,-21711]]},{"type":"Polygon","properties":{"name":"OXFORD","zip":"27565","state":"NC"},"arcs":[[-21648,-21640,21727,21728,21729,21730,-19478,-19467,-21608,-21674,-21693]]},{"type":"Polygon","properties":{"name":"PRINCETON","zip":"27569","state":"NC"},"arcs":[[21731,21732,-21686,21733,-21660,-21646]]},{"type":"Polygon","properties":{"name":"ROLESVILLE","zip":"27571","state":"NC"},"arcs":[[21734,21735]]},{"type":"Polygon","properties":{"name":"ROUGEMONT","zip":"27572","state":"NC"},"arcs":[[-21455,-21681,21736,-21729,21737,-21596]]},{"type":"Polygon","properties":{"name":"ROXBORO","zip":"27573","state":"NC"},"arcs":[[-21546,-19365,-19479,-21731,21738,-21682,-21476]]},{"type":"Polygon","properties":{"name":"SELMA","zip":"27576","state":"NC"},"arcs":[[-21733,21739,-21632,21740,21741,-21719,-21687]]},{"type":"Polygon","properties":{"name":"SMITHFIELD","zip":"27577","state":"NC"},"arcs":[[-21645,-21627,-21740,-21732]]},{"type":"Polygon","properties":{"name":"STEM","zip":"27581","state":"NC"},"arcs":[[-21738,-21728,-21639,-21614,-21597]]},{"type":"Polygon","properties":{"name":"TIMBERLAKE","zip":"27583","state":"NC"},"arcs":[[-21739,-21730,-21737,-21683]]},{"type":"Polygon","properties":{"name":"WAKE FOREST","zip":"27587","state":"NC"},"arcs":[[21742,21743,21744,21745,21746,21747,-21636,-21647,21748,21749,-21735]]},{"type":"Polygon","properties":{"name":"WARRENTON","zip":"27589","state":"NC"},"arcs":[[-21713,-21727,-21710,21750,-21704,-21676]]},{"type":"Polygon","properties":{"name":"WENDELL","zip":"27591","state":"NC"},"arcs":[[21751,-21741,-21631,21752,-21694,21753,-21744]]},{"type":"Polygon","properties":{"name":"WILLOW SPRING","zip":"27592","state":"NC"},"arcs":[[-21583,-21655,21754,-21657,-21604]]},{"type":"Polygon","properties":{"name":"YOUNGSVILLE","zip":"27596","state":"NC"},"arcs":[[-21651,-21703,21755,-21749]]},{"type":"Polygon","properties":{"name":"ZEBULON","zip":"27597","state":"NC"},"arcs":[[-21736,-21750,-21756,-21702,-21610,-21708,21756,-21715,-21742,-21752,-21743]]},{"type":"Polygon","properties":{"name":"RALEIGH","zip":"27601","state":"NC"},"arcs":[[21757,21758,21759]]},{"type":"Polygon","properties":{"name":"RALEIGH","zip":"27603","state":"NC"},"arcs":[[21760,21761,21762,21763,-21758,21764,-21658,-21755,-21654,-21585]]},{"type":"Polygon","properties":{"name":"RALEIGH","zip":"27604","state":"NC"},"arcs":[[21765,-21759,-21764,21766,21767,21768,-21696]]},{"type":"Polygon","properties":{"name":"RALEIGH","zip":"27605","state":"NC"},"arcs":[[21769,21770,21771,-21762]]},{"type":"Polygon","properties":{"name":"RALEIGH","zip":"27606","state":"NC"},"arcs":[[-21594,-21617,21772,-21770,-21761]]},{"type":"Polygon","properties":{"name":"RALEIGH","zip":"27607","state":"NC"},"arcs":[[-21619,-21726,21773,21774,-21771,-21773,-21616]]},{"type":"Polygon","properties":{"name":"RALEIGH","zip":"27608","state":"NC"},"arcs":[[21775,21776,-21767,-21763,-21772,-21775]]},{"type":"Polygon","properties":{"name":"RALEIGH","zip":"27609","state":"NC"},"arcs":[[21777,21778,21779,-21768,-21777]]},{"type":"Polygon","properties":{"name":"RALEIGH","zip":"27610","state":"NC"},"arcs":[[-21630,-21659,-21765,-21760,-21766,-21695,-21753]]},{"type":"Polygon","properties":{"name":"RALEIGH","zip":"27612","state":"NC"},"arcs":[[-21776,-21774,-21725,21780,21781,21782,-21778]]},{"type":"Polygon","properties":{"name":"RALEIGH","zip":"27613","state":"NC"},"arcs":[[21783,21784,-21747,21785,21786,-21782]]},{"type":"Polygon","properties":{"name":"RALEIGH","zip":"27614","state":"NC"},"arcs":[[21787,21788,-21786,-21746]]},{"type":"Polygon","properties":{"name":"RALEIGH","zip":"27615","state":"NC"},"arcs":[[21789,-21779,-21783,-21787,-21789]]},{"type":"Polygon","properties":{"name":"RALEIGH","zip":"27616","state":"NC"},"arcs":[[-21790,-21788,-21745,-21754,-21697,-21769,-21780]]},{"type":"Polygon","properties":{"name":"RALEIGH","zip":"27617","state":"NC"},"arcs":[[-21724,21790,-21784,-21781]]},{"type":"Polygon","properties":{"name":"DURHAM","zip":"27701","state":"NC"},"arcs":[[21791,21792,21793,21794]]},{"type":"Polygon","properties":{"name":"DURHAM","zip":"27703","state":"NC"},"arcs":[[-21791,-21723,21795,21796,21797,-21792,21798,-21637,-21748,-21785]]},{"type":"Polygon","properties":{"name":"DURHAM","zip":"27704","state":"NC"},"arcs":[[-21799,-21795,21799,21800,-21599,-21613,-21638]]},{"type":"Polygon","properties":{"name":"DURHAM","zip":"27705","state":"NC"},"arcs":[[21801,-21621,-21458,21802,-21800,-21794]]},{"type":"Polygon","properties":{"name":"DURHAM","zip":"27707","state":"NC"},"arcs":[[-21802,-21793,-21798,21803,-21625,-21622]]},{"type":"Polygon","properties":{"name":"DURHAM","zip":"27709","state":"NC"},"arcs":[[21804,-21796,-21722]]},{"type":"Polygon","properties":{"name":"DURHAM","zip":"27712","state":"NC"},"arcs":[[-21803,-21457,-21595,-21801]]},{"type":"Polygon","properties":{"name":"DURHAM","zip":"27713","state":"NC"},"arcs":[[-21804,-21797,-21805,-21721,-21590,-21626]]},{"type":"Polygon","properties":{"name":"ROCKY MOUNT","zip":"27801","state":"NC"},"arcs":[[21805,21806,21807,21808,21809,21810,21811,21812]]},{"type":"Polygon","properties":{"name":"ROCKY MOUNT","zip":"27803","state":"NC"},"arcs":[[21813,21814,21815,-21807]]},{"type":"Polygon","properties":{"name":"ROCKY MOUNT","zip":"27804","state":"NC"},"arcs":[[-21816,21816,21817,-21808]]},{"type":"Polygon","properties":{"name":"AULANDER","zip":"27805","state":"NC"},"arcs":[[21818,21819,21820,21821]]},{"type":"Polygon","properties":{"name":"AURORA","zip":"27806","state":"NC"},"arcs":[[21822,21823,21824,21825,21826,21827,21828,21829,21830]]},{"type":"Polygon","properties":{"name":"BAILEY","zip":"27807","state":"NC"},"arcs":[[21831,-21717,21832,21833]]},{"type":"Polygon","properties":{"name":"BATH","zip":"27808","state":"NC"},"arcs":[[21834,21835,21836,21837]]},{"type":"Polygon","properties":{"name":"BATTLEBORO","zip":"27809","state":"NC"},"arcs":[[-21818,21838,21839,-21809]]},{"type":"Polygon","properties":{"name":"BELHAVEN","zip":"27810","state":"NC"},"arcs":[[21840,21841,21842,21843,-21835]]},{"type":"Polygon","properties":{"name":"BETHEL","zip":"27812","state":"NC"},"arcs":[[21844,21845,21846,21847,21848]]},{"type":"Polygon","properties":{"name":"BLOUNTS CREEK","zip":"27814","state":"NC"},"arcs":[[21849,-21827,21850,21851,21852,-21829]]},{"type":"Polygon","properties":{"name":"CASTALIA","zip":"27816","state":"NC"},"arcs":[[21853,21854,-21706,21855]]},{"type":"Polygon","properties":{"name":"CHOCOWINITY","zip":"27817","state":"NC"},"arcs":[[21856,21857,21858,21859,-21852,21860]]},{"type":"Polygon","properties":{"name":"COMO","zip":"27818","state":"NC"},"arcs":[[21861,21862,-18468,-18575,-18544,21863,21864,21865]]},{"type":"Polygon","properties":{"name":"CONWAY","zip":"27820","state":"NC"},"arcs":[[21866,21867,21868,21869,21870,21871]]},{"type":"Polygon","properties":{"name":"EDWARD","zip":"27821","state":"NC"},"arcs":[[-21828,-21850]]},{"type":"Polygon","properties":{"name":"ELM CITY","zip":"27822","state":"NC"},"arcs":[[21872,21873,21874,21875,-21814,-21806,21876,21877,21878]]},{"type":"Polygon","properties":{"name":"ENFIELD","zip":"27823","state":"NC"},"arcs":[[21879,21880,21881,21882,21883]]},{"type":"Polygon","properties":{"name":"ENGELHARD","zip":"27824","state":"NC"},"arcs":[[21884,21885,21886,21887,21888,21889,21890]]},{"type":"Polygon","properties":{"name":"FAIRFIELD","zip":"27826","state":"NC"},"arcs":[[21891,21892,21893,21894,-21885,21895,21896,21897]]},{"type":"Polygon","properties":{"name":"FARMVILLE","zip":"27828","state":"NC"},"arcs":[[21898,21899,21900,21901,21902,21903,21904]]},{"type":"Polygon","properties":{"name":"FOUNTAIN","zip":"27829","state":"NC"},"arcs":[[21905,21906,21907,-21878,21908,21909,-21901]]},{"type":"Polygon","properties":{"name":"FREMONT","zip":"27830","state":"NC"},"arcs":[[21910,21911,-21684,21912,21913]]},{"type":"Polygon","properties":{"name":"GARYSBURG","zip":"27831","state":"NC"},"arcs":[[21914,21915,21916,21917,21918,-18580,21919]]},{"type":"Polygon","properties":{"name":"GASTON","zip":"27832","state":"NC"},"arcs":[[21920,21921,-18588,-18534,-18581,-21919]]},{"type":"Polygon","properties":{"name":"GREENVILLE","zip":"27834","state":"NC"},"arcs":[[21922,21923,-21902,-21910,21924,-21846,21925,21926,21927]]},{"type":"Polygon","properties":{"name":"GRIMESLAND","zip":"27837","state":"NC"},"arcs":[[21928,21929,21930,-21858,21931]]},{"type":"Polygon","properties":{"name":"HALIFAX","zip":"27839","state":"NC"},"arcs":[[21932,21933,-21884,21934,21935,21936,21937]]},{"type":"Polygon","properties":{"name":"HAMILTON","zip":"27840","state":"NC"},"arcs":[[21938,21939,21940,21941,21942]]},{"type":"Polygon","properties":{"name":"HENRICO","zip":"27842","state":"NC"},"arcs":[[21943,-18552,-18589,-21922]]},{"type":"Polygon","properties":{"name":"HOBGOOD","zip":"27843","state":"NC"},"arcs":[[21944,21945,21946]]},{"type":"Polygon","properties":{"name":"HOLLISTER","zip":"27844","state":"NC"},"arcs":[[21947,-21751,-21709,21948,-21882]]},{"type":"Polygon","properties":{"name":"JACKSON","zip":"27845","state":"NC"},"arcs":[[21949,-21938,21950,-21916,21951,-21867]]},{"type":"Polygon","properties":{"name":"JAMESVILLE","zip":"27846","state":"NC"},"arcs":[[21952,21953,21954,21955,21956]]},{"type":"Polygon","properties":{"name":"KELFORD","zip":"27847","state":"NC"},"arcs":[[21957,21958,21959,21960,-21819,21961]]},{"type":"Polygon","properties":{"name":"LEWISTON WOODVILLE","zip":"27849","state":"NC"},"arcs":[[21962,21963,21964,-21958,21965,-21942]]},{"type":"Polygon","properties":{"name":"LITTLETON","zip":"27850","state":"NC"},"arcs":[[-21883,-21949,-21712,-18524,-18592,-18553,-21944,21966,-21935]]},{"type":"Polygon","properties":{"name":"LUCAMA","zip":"27851","state":"NC"},"arcs":[[-21691,21967,-21913]]},{"type":"Polygon","properties":{"name":"MACCLESFIELD","zip":"27852","state":"NC"},"arcs":[[21968,-21812,21969,-21847,-21925,-21909]]},{"type":"Polygon","properties":{"name":"MARGARETTSVILLE","zip":"27853","state":"NC"},"arcs":[[21970,21971,21972,-18539,-18475]]},{"type":"Polygon","properties":{"name":"MURFREESBORO","zip":"27855","state":"NC"},"arcs":[[21973,-21862,21974,21975,-21870]]},{"type":"Polygon","properties":{"name":"NASHVILLE","zip":"27856","state":"NC"},"arcs":[[-21876,21976,-21854,21977,-21839,-21817,-21815]]},{"type":"Polygon","properties":{"name":"OAK CITY","zip":"27857","state":"NC"},"arcs":[[21978,21979,-21947,21980,-21963,-21941]]},{"type":"Polygon","properties":{"name":"GREENVILLE","zip":"27858","state":"NC"},"arcs":[[21981,21982,-21923,-21930]]},{"type":"Polygon","properties":{"name":"PANTEGO","zip":"27860","state":"NC"},"arcs":[[21983,21984,21985,21986,-21842]]},{"type":"Polygon","properties":{"name":"PENDLETON","zip":"27862","state":"NC"},"arcs":[[21987,-21971,-18469,-21863,-21974,-21869]]},{"type":"Polygon","properties":{"name":"PIKEVILLE","zip":"27863","state":"NC"},"arcs":[[21988,-21669,-21661,-21734,-21685,-21912,21989]]},{"type":"Polygon","properties":{"name":"PINETOPS","zip":"27864","state":"NC"},"arcs":[[-21813,-21969,-21877]]},{"type":"Polygon","properties":{"name":"PINETOWN","zip":"27865","state":"NC"},"arcs":[[-21838,21990,-21956,21991,-21984,-21841]]},{"type":"Polygon","properties":{"name":"PLEASANT HILL","zip":"27866","state":"NC"},"arcs":[[21992,-21920,-18579,-18540,-21973]]},{"type":"Polygon","properties":{"name":"RICH SQUARE","zip":"27869","state":"NC"},"arcs":[[-21950,-21872,21993,-21960,21994,21995,-21933]]},{"type":"Polygon","properties":{"name":"ROANOKE RAPIDS","zip":"27870","state":"NC"},"arcs":[[-21967,-21921,-21918,21996,-21936]]},{"type":"Polygon","properties":{"name":"ROBERSONVILLE","zip":"27871","state":"NC"},"arcs":[[21997,-21979,-21940,21998,21999,-21927,22000,-21849]]},{"type":"Polygon","properties":{"name":"ROXOBEL","zip":"27872","state":"NC"},"arcs":[[22001,-21995,-21959,-21965]]},{"type":"Polygon","properties":{"name":"SARATOGA","zip":"27873","state":"NC"},"arcs":[[22002,-21907,22003]]},{"type":"Polygon","properties":{"name":"SCOTLAND NECK","zip":"27874","state":"NC"},"arcs":[[22004,-21880,-21934,-21996,-22002,-21964,-21981,-21946,22005]]},{"type":"Polygon","properties":{"name":"SCRANTON","zip":"27875","state":"NC"},"arcs":[[22006,22007,-21843,-21987,22008,22009,22010,-21893]]},{"type":"Polygon","properties":{"name":"SEABOARD","zip":"27876","state":"NC"},"arcs":[[-21993,-21972,-21988,-21868,-21952,-21915]]},{"type":"Polygon","properties":{"name":"SIMS","zip":"27880","state":"NC"},"arcs":[[-21832,22011,22012,-21689,-21718]]},{"type":"Polygon","properties":{"name":"SPRING HOPE","zip":"27882","state":"NC"},"arcs":[[-21757,-21707,-21855,-21977,-21875,22013,-21833,-21716]]},{"type":"Polygon","properties":{"name":"STANTONSBURG","zip":"27883","state":"NC"},"arcs":[[22014,-21879,-21908,-22003,22015,22016,-21990,-21911]]},{"type":"Polygon","properties":{"name":"STOKES","zip":"27884","state":"NC"},"arcs":[[-21845,-22001,-21926]]},{"type":"Polygon","properties":{"name":"SWANQUARTER","zip":"27885","state":"NC"},"arcs":[[-21892,22017,-21897,22018,-21890,22019,-22007]]},{"type":"Polygon","properties":{"name":"TARBORO","zip":"27886","state":"NC"},"arcs":[[-21848,-21970,-21811,22020,-22006,-21945,-21980,-21998]]},{"type":"Polygon","properties":{"name":"WALSTONBURG","zip":"27888","state":"NC"},"arcs":[[22021,-22016,-22004,-21906,-21900]]},{"type":"Polygon","properties":{"name":"WASHINGTON","zip":"27889","state":"NC"},"arcs":[[-21931,-21928,-22000,22022,-21957,-21991,-21837,22023,-21859]]},{"type":"Polygon","properties":{"name":"WELDON","zip":"27890","state":"NC"},"arcs":[[-21937,-21997,-21917,-21951]]},{"type":"Polygon","properties":{"name":"WHITAKERS","zip":"27891","state":"NC"},"arcs":[[-22021,-21810,-21840,-21978,-21856,-21705,-21948,-21881,-22005]]},{"type":"Polygon","properties":{"name":"WILLIAMSTON","zip":"27892","state":"NC"},"arcs":[[-22023,-21999,-21939,22024,-21953]]},{"type":"Polygon","properties":{"name":"WILSON","zip":"27893","state":"NC"},"arcs":[[-21914,-21968,-21690,-22013,22025,-21873,-22015]]},{"type":"Polygon","properties":{"name":"WILSON","zip":"27896","state":"NC"},"arcs":[[-22026,-22012,-21834,-22014,-21874]]},{"type":"Polygon","properties":{"name":"WOODLAND","zip":"27897","state":"NC"},"arcs":[[22026,-21820,-21961,-21994,-21871]]},{"type":"Polygon","properties":{"name":"ELIZABETH CITY","zip":"27909","state":"NC"},"arcs":[[22027,22028,22029,22030,22031,22032,22033]]},{"type":"Polygon","properties":{"name":"AHOSKIE","zip":"27910","state":"NC"},"arcs":[[-22027,-21976,22034,22035,22036,22037,-21821]]},{"type":"Polygon","properties":{"name":"AYDLETT","zip":"27916","state":"NC"},"arcs":[[22038,22039,22040,22041]]},{"type":"Polygon","properties":{"name":"BARCO","zip":"27917","state":"NC"},"arcs":[[22042,22043,22044,22045,22046,22047]]},{"type":"Polygon","properties":{"name":"BELVIDERE","zip":"27919","state":"NC"},"arcs":[[22048,22049,22050,22051,-22028]]},{"type":"Polygon","properties":{"name":"CAMDEN","zip":"27921","state":"NC"},"arcs":[[22052,22053,22054,-22032,22055,22056]]},{"type":"Polygon","properties":{"name":"COFIELD","zip":"27922","state":"NC"},"arcs":[[22057,22058,-22036,22059,22060,22061]]},{"type":"Polygon","properties":{"name":"COINJOCK","zip":"27923","state":"NC"},"arcs":[[22062,22063,-22047,22064,-22041]]},{"type":"Polygon","properties":{"name":"COLERAIN","zip":"27924","state":"NC"},"arcs":[[22065,22066,-22037,-22059,22067,22068]]},{"type":"Polygon","properties":{"name":"COLUMBIA","zip":"27925","state":"NC"},"arcs":[[22069,22070,-21894,-22011]]},{"type":"Polygon","properties":{"name":"CORAPEAKE","zip":"27926","state":"NC"},"arcs":[[22071,22072,-18302,-18290,22073,-22030]]},{"type":"Polygon","properties":{"name":"COROLLA","zip":"27927","state":"NC"},"arcs":[[-18328,22074,22075,22076]]},{"type":"Polygon","properties":{"name":"CRESWELL","zip":"27928","state":"NC"},"arcs":[[-22010,22077,22078,-22070]]},{"type":"Polygon","properties":{"name":"CURRITUCK","zip":"27929","state":"NC"},"arcs":[[22079,22080,22081]]},{"type":"Polygon","properties":{"name":"EDENTON","zip":"27932","state":"NC"},"arcs":[[22082,22083,22084]]},{"type":"Polygon","properties":{"name":"EURE","zip":"27935","state":"NC"},"arcs":[[22085,22086,-22061,22087,-21865,22088]]},{"type":"Polygon","properties":{"name":"GATES","zip":"27937","state":"NC"},"arcs":[[22089,22090,-22089,-21864,-18543,-18300,-18303,-22073]]},{"type":"Polygon","properties":{"name":"GATESVILLE","zip":"27938","state":"NC"},"arcs":[[22091,22092,-22086,-22091,22093]]},{"type":"Polygon","properties":{"name":"GRANDY","zip":"27939","state":"NC"},"arcs":[[22094,22095,-22063,-22040,22096,22097]]},{"type":"Polygon","properties":{"name":"HARBINGER","zip":"27941","state":"NC"},"arcs":[[22098,22099]]},{"type":"Polygon","properties":{"name":"HARRELLSVILLE","zip":"27942","state":"NC"},"arcs":[[-22068,-22058,22100]]},{"type":"Polygon","properties":{"name":"HERTFORD","zip":"27944","state":"NC"},"arcs":[[-22084,22101,-22049,-22034,22102]]},{"type":"Polygon","properties":{"name":"HOBBSVILLE","zip":"27946","state":"NC"},"arcs":[[-22092,22103,-22051,22104,22105]]},{"type":"Polygon","properties":{"name":"JARVISBURG","zip":"27947","state":"NC"},"arcs":[[22106,22107,-22095,22108]]},{"type":"Polygon","properties":{"name":"KILL DEVIL HILLS","zip":"27948","state":"NC"},"arcs":[[22109,22110,22111,22112]]},{"type":"Polygon","properties":{"name":"KITTY HAWK","zip":"27949","state":"NC"},"arcs":[[-22076,22113,-22112,22114]]},{"type":"MultiPolygon","properties":{"name":"KNOTTS ISLAND","zip":"27950","state":"NC"},"arcs":[[[-18332,22115]],[[-18217,-18334,22116,22117]]]},{"type":"Polygon","properties":{"name":"MANNS HARBOR","zip":"27953","state":"NC"},"arcs":[[22118,-21887,22119]]},{"type":"Polygon","properties":{"name":"MANTEO","zip":"27954","state":"NC"},"arcs":[[22120]]},{"type":"Polygon","properties":{"name":"MAPLE","zip":"27956","state":"NC"},"arcs":[[22121,-22080,22122,-22045]]},{"type":"Polygon","properties":{"name":"MERRY HILL","zip":"27957","state":"NC"},"arcs":[[22123,-22066,22124]]},{"type":"Polygon","properties":{"name":"MOYOCK","zip":"27958","state":"NC"},"arcs":[[22125,-22057,22126,-18218,-22118,22127,-22081,-22122,-22044]]},{"type":"MultiPolygon","properties":{"name":"NAGS HEAD","zip":"27959","state":"NC"},"arcs":[[[-22110,22128]],[[22129]]]},{"type":"Polygon","properties":{"name":"PLYMOUTH","zip":"27962","state":"NC"},"arcs":[[-21955,22130,22131,-21985,-21992]]},{"type":"Polygon","properties":{"name":"POPLAR BRANCH","zip":"27965","state":"NC"},"arcs":[[-22039,22132,-22097]]},{"type":"Polygon","properties":{"name":"POWELLS POINT","zip":"27966","state":"NC"},"arcs":[[-22099,22133,-22107,22134]]},{"type":"Polygon","properties":{"name":"ROPER","zip":"27970","state":"NC"},"arcs":[[-22132,22135,22136,-22078,-22009,-21986]]},{"type":"Polygon","properties":{"name":"SHAWBORO","zip":"27973","state":"NC"},"arcs":[[-22126,-22043,22137,22138,-22053]]},{"type":"Polygon","properties":{"name":"SHILOH","zip":"27974","state":"NC"},"arcs":[[-22054,-22139,22139]]},{"type":"Polygon","properties":{"name":"SOUTH MILLS","zip":"27976","state":"NC"},"arcs":[[-22074,-18289,-18219,-22127,-22056,-22031]]},{"type":"Polygon","properties":{"name":"STUMPY POINT","zip":"27978","state":"NC"},"arcs":[[-21888,-22119,22140]]},{"type":"Polygon","properties":{"name":"SUNBURY","zip":"27979","state":"NC"},"arcs":[[-22052,-22104,-22094,-22090,-22072,-22029]]},{"type":"Polygon","properties":{"name":"TYNER","zip":"27980","state":"NC"},"arcs":[[-22083,22141,-22105,-22050,-22102]]},{"type":"Polygon","properties":{"name":"WINDSOR","zip":"27983","state":"NC"},"arcs":[[-22131,-21954,-22025,-21943,-21966,-21962,-21822,-22038,-22067,-22124,22142,-22136]]},{"type":"Polygon","properties":{"name":"WINTON","zip":"27986","state":"NC"},"arcs":[[-22035,-21975,-21866,-22088,-22060]]},{"type":"Polygon","properties":{"name":"ALBEMARLE","zip":"28001","state":"NC"},"arcs":[[22143,22144,22145,22146,22147,22148,-21556,-21503]]},{"type":"Polygon","properties":{"name":"ALEXIS","zip":"28006","state":"NC"},"arcs":[[22149,22150,22151]]},{"type":"Polygon","properties":{"name":"BELMONT","zip":"28012","state":"NC"},"arcs":[[22152,22153,22154,22155,22156]]},{"type":"Polygon","properties":{"name":"BESSEMER CITY","zip":"28016","state":"NC"},"arcs":[[22157,22158,22159,22160,22161,22162]]},{"type":"Polygon","properties":{"name":"BOSTIC","zip":"28018","state":"NC"},"arcs":[[22163,22164,22165,22166,22167]]},{"type":"Polygon","properties":{"name":"CASAR","zip":"28020","state":"NC"},"arcs":[[22168,22169,22170,-22167]]},{"type":"Polygon","properties":{"name":"CHERRYVILLE","zip":"28021","state":"NC"},"arcs":[[22171,22172,22173,22174,22175,22176,-22161]]},{"type":"Polygon","properties":{"name":"CHINA GROVE","zip":"28023","state":"NC"},"arcs":[[22177,22178,22179,22180,22181,22182,22183,22184]]},{"type":"Polygon","properties":{"name":"CONCORD","zip":"28025","state":"NC"},"arcs":[[22185,22186,22187,22188,22189,22190,22191,22192,22193]]},{"type":"Polygon","properties":{"name":"CONCORD","zip":"28027","state":"NC"},"arcs":[[22194,22195,22196,22197,22198,-22189,22199]]},{"type":"Polygon","properties":{"name":"CORNELIUS","zip":"28031","state":"NC"},"arcs":[[22200,22201,22202,22203,22204]]},{"type":"Polygon","properties":{"name":"CROUSE","zip":"28033","state":"NC"},"arcs":[[22205,-22162,-22177]]},{"type":"Polygon","properties":{"name":"DALLAS","zip":"28034","state":"NC"},"arcs":[[22206,22207,-22151,22208,22209,22210,22211,-22158]]},{"type":"Polygon","properties":{"name":"DAVIDSO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment