Skip to content

Instantly share code, notes, and snippets.

@nharrisanalyst
Created May 10, 2016 19:52
Show Gist options
  • Save nharrisanalyst/79c83e263ceb66fbdac58cee525513e0 to your computer and use it in GitHub Desktop.
Save nharrisanalyst/79c83e263ceb66fbdac58cee525513e0 to your computer and use it in GitHub Desktop.

Sacramento County 311 Calls by Zipcode Up to Date API call<

Sacramento County 311 handles all County municipal service requests that are not police and fire related. this map and bar chart makes up to date request from http://data.saccounty.net/home api

for more info or data vist http://data.saccounty.net/home

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF8">
<title>A real time data visualization</title>
<script src="https://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3-legend/1.10.0/d3-legend.js"></script>
<script src="https://d3js.org/d3-queue.v2.min.js"></script>
<script>
q=d3_queue.queue();
</script>
<style>
#g0 { fill: #eafeea; }
#g1 { fill: #d5fdd5; }
#g2 { fill: #c1fcc1; }
#g3 { fill: #acfbac; }
#g4 { fill: #88e188; }
#g5 { fill: #6aaf6a; }
#g6 { fill: #4c7d4c; }
#g7 { fill: #2d4b2d; }
.g0 { fill: #eafeea; }
.g1 { fill: #d5fdd5; }
.g2 { fill: #c1fcc1; }
.g3 { fill: #acfbac; }
.g4 { fill: #88e188; }
.g5 { fill: #6aaf6a; }
.g6 { fill: #4c7d4c; }
.g7 { fill: #2d4b2d; }
.zipcode{stroke:black;}
</style>
</head>
<body>
<script>
(function(){
var rectData=[]
var scaleX
var data;
var dataGeo
var dataZipcode={};
var dataCalls={};
var h = 600;
var w = 550;
var width=400;
var svg =d3.select("body").append("svg")
.attr("width",w)
.attr("height",h)
.attr("id","svgone");
var projection= d3.geo.albers()
.scale(45000)
.rotate([120.5,.25,0]);
var path = d3.geo.path()
.projection(projection);
var quantize;
var newData;
var check;
var newDict={};
var mapDict={};
//ordinal scale
var ordinal=d3.scale.ordinal().domain(["#g0","#g1","#g2","#g3","#g4","#g5","#g6","#g7"])
.range(["#eafeea","#d5fdd5","#c1fcc1","#acfbac","#88e188","#6aaf6a","#4c7d4c","#2d4b2d"])
//mouseover mouseout
var selecetion;
var mouseover= function(d){
var z = this.getAttribute('class')
console.log(z)
if(z.slice(0,1)=="y"){
var z = this.getAttribute('class');
var y = z.slice(1,6);
d3.select("." + this.getAttribute('class'))
.style("fill","orange")
d3.select('.z'+y)
.style("fill","orange")
d3.select('#svgone')
.append("text")
.attr("class","text")
.attr({
x:5,
y:250,
"font-size": "12px",
"font-family":"Sans-Serif"
})
.text("Name: "+d.properties.PO_NAME)
d3.select('#svgone')
.append("text")
.attr("class","text")
.attr({
x:5,
y:260,
"font-size": "12px",
"font-family":"Sans-Serif"
})
.text("Zipcode: " +d.properties.ZIP5+ ", Calls: " +newDict[d.properties.ZIP5])}
else{
var z = this.getAttribute('class');
var y = z.slice(1,6);
d3.select("." + this.getAttribute('class'))
.style("fill","orange");
d3.select('.y'+y)
.style("fill","orange")
d3.select('#svgone')
.append("text")
.attr("class","text")
.attr({
x:5,
y:250,
"font-size": "12px",
"font-family":"Sans-Serif"
})
.text("Name: "+mapDict[d.zipcode].name)
d3.select('#svgone')
.append("text")
.attr("class","text")
.attr({
x:5,
y:260,
"font-size": "12px",
"font-family":"Sans-Serif"
})
.text("Zipcode: " +mapDict[d.zipcode].zipcode+ ", Calls: " +mapDict[d.zipcode].calls)}
};
var mouseout= function(d){
var z = this.getAttribute('class')
console.log(z.slice(0,1)=="y")
if(z.slice(0,1)=="y"){
var z = this.getAttribute('class');
var y = z.slice(1,6);
var color=ordinal('#'+quantize(newDict[d.properties.ZIP5]))
console.log(color)
d3.select("." + this.getAttribute('class'))
.style("fill",ordinal('#'+quantize(newDict[d.properties.ZIP5])))
d3.select('.z'+y)
.style("fill",ordinal('#'+quantize(newDict[d.properties.ZIP5])))
d3.selectAll(".text").remove()
}else{
console.log(d.calls)
console.log('#'+quantize(d.calls))
console.log(ordinal(quantize(d.calls)))
var z = this.getAttribute('class');
var y = z.slice(1,6);
d3.select("." + this.getAttribute('class'))
.style("fill",ordinal('#'+quantize(d.calls)));
d3.select('.y'+y)
.style("fill",ordinal('#'+quantize(d.calls)))}
d3.selectAll('.text').remove();
};
//defer double request
q.defer(d3.json,"http://saccounty.cloudapi.junar.com/api/v2/datastreams/311-CASES-BY-ZIPCO-SUMMA/data.json/?auth_key=77bf2351cdb42d68f577b6c54041550cf708b773")
.defer(d3.json,"saczipgeo.json")
.awaitAll(ready)
function ready(error,first){
if(error){alert("You had an error retrieving data");}
//preparing data and everything for first json file
data=first;
data=data[0];
data.result.fArray.forEach(function(value,i){
if(i%2==0){
dataZipcode[i]=data.result.fArray[i].fStr
}
if(i%2!=0){
dataCalls[i]=data.result.fArray[i].fStr
}
});
data=[];
for ( i=0;i<=108;i=i+2){
if(i==0){
data[i]={"zipcode":dataZipcode[i],"calls":dataCalls[i+1]};
}
data[i/2]={"zipcode":dataZipcode[i],"calls":dataCalls[i+1]};
};
//scale for data colors
var maxD=d3.max(data.slice(1,data.length-1),function(d){return parseInt(d.calls)});
console.log(maxD);
var minD=d3.min(data.slice(1,data.length-1),function(d){return d.calls});
quantize= d3.scale.quantize()
.domain([0,maxD])
.range(d3.range(8).map(function(i) { return "g"+i; }));
data.forEach(function(d){return newDict[d.zipcode]= +d.calls;});
//preparing for the second json
dataGeo=first[1];
dataGeo=dataGeo.features
//checking for zipcodes that had zero calls(will be undefined in the dataMap object
for(i=0;i<dataGeo.length;i++){
if (newDict[dataGeo[i].properties.ZIP5] === undefined){
newDict[dataGeo[i].properties.ZIP5]=0;
};
};
svg.selectAll("zipcode")
.data(dataGeo)
.enter().append("path")
.attr("d", path)
.attr("class",function(d){return 'y'+ d.properties.ZIP5})
.attr("id",function(d){return quantize(newDict[d.properties.ZIP5])})
.attr("stroke","black")
.on("mouseover",mouseover)
.on("mouseout",mouseout)
var svg2=d3.select("body")
.append("svg")
.attr({
width: width,
height:h,
id:"svgtwo"
});
scaleX = d3.scale.linear()
.domain([0,maxD])
.range([0,width]);
for(i=0;i<dataGeo.length;i++){
rectData[i] = {"zipcode":dataGeo[i].properties.ZIP5,"calls":newDict[dataGeo[i].properties.ZIP5]}
};
rectData.sort(function(a, b){
return b.calls-a.calls;
})
var barPadding=1;
svg2.selectAll("rect")
.data(rectData)
.enter()
.sort(function(a, b) {
return d3.ascending(a, b);
})
.append("rect")
.attr("width",function(d){return scaleX(d.calls)})
.attr("height", function(d,i){return (h/rectData.length)-barPadding;})
.attr("y",function(d,i){return (h/rectData.length)*i;})
.attr("id",function(d){return quantize(d.calls)})
.attr("class",function(d){return 'z'+d.zipcode;})
.on("mouseover",mouseover)
.on("mouseout",mouseout);
for(i=0;i<dataGeo.length;i++){
mapDict[dataGeo[i].properties.ZIP5]={'name':dataGeo[i].properties.PO_NAME,'zipcode':dataGeo[i].properties.ZIP5,'calls':newDict[dataGeo[i].properties.ZIP5]};
};
d3.select('#svgtwo')
.append('line')
.attr({
x1:0,
y1:0,
x2:0,
y2:h,
"stroke-width":"1px",
"stroke":"black",
});
//legend
svg.append("g")
.attr("class", "legendQuant")
.attr("transform", "translate(350,450)");
var legend = d3.legend.color()
.labelFormat(d3.format(".2f"))
.useClass(true)
.scale(quantize);
svg.select(".legendQuant")
.call(legend);
};})();
</script>
</body>
<html>
Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection","bbox":[-121.86322972163495,38.018266145517906,-121.01665953607166,38.73282867904647],"features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.56442032440857,38.244881962734745],[-121.56438239612702,38.24492341943826],[-121.56433591516452,38.244959052017435],[-121.56428229430726,38.244987778438016],[-121.56422316327144,38.245008724690265],[-121.56416031825435,38.24502125522958],[-121.56409566928733,38.245024988994416],[-121.56403117960852,38.24501981269097],[-121.56396881081182,38.245005883288385],[-121.56391045546417,38.24498362506123],[-121.56385788808718,38.2449537122863],[-121.56381270583758,38.244917055503755],[-121.56377628072636,38.24487476890331],[-121.56374972098907,38.2448281359429],[-121.56373383246256,38.24477857406672],[-121.56372909830571,38.24472758868246],[-121.56373139159619,38.24469895919228],[-121.56420859202547,38.242153686732415],[-121.56422262303654,38.24196801828859],[-121.56419555955908,38.241783249364474],[-121.56412822676205,38.24160499374945],[-121.56402266863336,38.241438668005834],[-121.56391073080383,38.24131562075638],[-121.56290941092163,38.2446278393088],[-121.56060924912164,38.24609359881567],[-121.55904797117562,38.2473791821854],[-121.55765336832694,38.24800763418787],[-121.5556445156784,38.24817401492685],[-121.55212804461239,38.24955526126477],[-121.55132700963327,38.249498941832776],[-121.5512953721147,38.24939472510545],[-121.54485306587247,38.24876340194715],[-121.54068150474964,38.24834898034034],[-121.53910972555171,38.2479198242258],[-121.54157749268013,38.24121413196303],[-121.541659003071,38.24099261896182],[-121.541849714334,38.24047433856902],[-121.5449071115679,38.24105170496009],[-121.54680968606681,38.24124690892577],[-121.54659607432343,38.24183645550779],[-121.54651522364422,38.242059593444736],[-121.54634716369114,38.24252341046625],[-121.54701669811239,38.24267430377894],[-121.54720599635459,38.24215185775706],[-121.54728684498735,38.24192871933369],[-121.54750792639126,38.24131854085685],[-121.55110366517032,38.2418874708262],[-121.55438158432234,38.24131279194657],[-121.55665146156267,38.23941694222867],[-121.55831310151963,38.23726951727159],[-121.5586569471301,38.236434232795105],[-121.55870944837389,38.23524183010644],[-121.5584258991501,38.23362093978302],[-121.55641091680816,38.229721307203604],[-121.55713583027418,38.229720119555395],[-121.55743773972941,38.22971962387742],[-121.56765836469242,38.22970236990686],[-121.56777467920959,38.21890198250043],[-121.57525165602559,38.21894312087979],[-121.57510141639622,38.236399444495355],[-121.57539367410796,38.236192340691545],[-121.57543973328508,38.23616026875698],[-121.57548649679059,38.23612883632272],[-121.57553394743904,38.23609805233349],[-121.57558207261373,38.236067925750696],[-121.57559553867671,38.236059687239674],[-121.5764903674906,38.23684859925462],[-121.57633521778017,38.243025400229115],[-121.56928800334022,38.242906809655565],[-121.56911633182132,38.243173801182735],[-121.56839650849129,38.24284292471858],[-121.56829523762993,38.24280528034238],[-121.56818721800296,38.2427820769618],[-121.56807572940176,38.24277401963068],[-121.56796416061759,38.24278135257177],[-121.56785590211132,38.24280385336991],[-121.56775424089744,38.24284083888339],[-121.56766226905764,38.24289118381729],[-121.56758277841982,38.242953359964126],[-121.56755052030091,38.24298604815672],[-121.5659068836406,38.24416178314082],[-121.56594971839527,38.24515521572808],[-121.56594731426303,38.24519078524549],[-121.56593711325715,38.245225483969264],[-121.5659194278894,38.24525825904145],[-121.56589479422854,38.24528811429967],[-121.56586396028182,38.245314142665734],[-121.56582786412847,38.245335553090165],[-121.56578760178749,38.245351694755925],[-121.5657443973918,38.245362077686934],[-121.56569956312434,38.245366386110895],[-121.56565446031271,38.245364489123716],[-121.56561046170386,38.245356445051826],[-121.56556890236459,38.24534249766371],[-121.56553104544939,38.245323069734134],[-121.56549804113025,38.24529875388033],[-121.56547089247962,38.245270287207646],[-121.56545042472634,38.24523853497734],[-121.56543725915218,38.2452044625799],[-121.56543179614968,38.24516910393978],[-121.56543279199654,38.24514296136681],[-121.56543344241415,38.245067909452054],[-121.56541755692325,38.24499390956914],[-121.56538561772045,38.2449232085302],[-121.5653385976471,38.24485795499371],[-121.5652779240341,38.24480013266478],[-121.5652054402366,38.24475149799181],[-121.56512334883395,38.24471352770404],[-121.5650341433447,38.2446873771164],[-121.56494053651112,38.24467383932156],[-121.56484537017297,38.244673326834516],[-121.5647515365596,38.244685854179394],[-121.56466188689215,38.244711041148136],[-121.5646506163529,38.24471523542174],[-121.56456896960573,38.244753796432846],[-121.56449705384381,38.24480295341375],[-121.56443705427384,38.24486121196957],[-121.56442403667096,38.244877126412504],[-121.56442032440857,38.244881962734745]]]},"properties":{"ZIP5":"95680","PO_NAME":"RYDE","Shape_STAr":49650250.375,"Shape_STLe":45325.9036062}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.17036657991157,38.68448933354557],[-121.16952309279885,38.68492626113078],[-121.16776192850797,38.68573751042728],[-121.16686500470632,38.68646003855793],[-121.16676755301017,38.686883571905675],[-121.16676634182991,38.6868895362803],[-121.16649712494956,38.68741799353784],[-121.16636221162312,38.688498485978045],[-121.16625091701374,38.689022049056106],[-121.16623013068225,38.68959021320951],[-121.16606977286435,38.6907120266139],[-121.16597352950612,38.69175768879154],[-121.16603744879504,38.692293544390466],[-121.16602426641755,38.693419309782655],[-121.1658870845645,38.69417228485554],[-121.1655773313629,38.695199789547246],[-121.16534046472545,38.69624973285824],[-121.1652961954448,38.69734781342127],[-121.16535306909131,38.69788911771691],[-121.16542117959845,38.69895235776081],[-121.16560423115693,38.69946994062112],[-121.16562838016067,38.699786249522866],[-121.16539822890958,38.70061393460513],[-121.16485980624817,38.701675444235846],[-121.16403197198568,38.70293262482746],[-121.16273233442739,38.70422858974518],[-121.16199400389637,38.704154869381846],[-121.14764678884369,38.7005470533801],[-121.14700023780368,38.699631099265375],[-121.14437222415602,38.69962888245332],[-121.14433866675817,38.69961213273271],[-121.14431386659457,38.69959918913391],[-121.14426514982696,38.69957229580797],[-121.14424124808095,38.69955835339816],[-121.14419439324163,38.69952949896892],[-121.144171456145,38.699514595176225],[-121.14413555588025,38.699489998224415],[-121.1441330119296,38.69948825599243],[-121.14412659335484,38.69948385808639],[-121.14408312700861,38.699451913244175],[-121.1440619337425,38.69943549974818],[-121.14402066005835,38.699401816077014],[-121.1439809126875,38.69936702381603],[-121.1439616261553,38.699349225249904],[-121.14394273825238,38.699331165654115],[-121.14393210528323,38.6993204374052],[-121.14392885438434,38.69931715838873],[-121.14390618451374,38.69929428518948],[-121.14388852888301,38.69927547610833],[-121.14385448851189,38.699237147486606],[-121.14382217552779,38.69919791086939],[-121.14379162958932,38.699157814299554],[-121.14377703000501,38.69913745836472],[-121.14376894166664,38.69912545426878],[-121.1437664578864,38.69912176919186],[-121.14374920479335,38.69909616473076],[-121.14372323366455,38.69905413431521],[-121.14371095482056,38.69903285945355],[-121.14368782743595,38.698989822079966],[-121.14367698564028,38.69896807223095],[-121.14365676496004,38.69892414548617],[-121.14365074971501,38.6989099233135],[-121.14365033049627,38.69890893371212],[-121.14364739052127,38.69890198123635],[-121.14363013028681,38.698857284440884],[-121.14362225006464,38.69883476635128],[-121.1436079982147,38.69878942328696],[-121.14359577525994,38.698743718620236],[-121.14359042858644,38.69872074715728],[-121.14358310438364,38.69868383018814],[-121.14358258191524,38.698681197449666],[-121.14358127473584,38.698674603884086],[-121.14357418028968,38.69862823797669],[-121.14356915605703,38.69858170627324],[-121.14356742221503,38.69855839571773],[-121.14356551293191,38.69851172215068],[-121.14356533732729,38.69848837265168],[-121.14356630516842,38.69845100790106],[-121.14356637371769,38.69844836691447],[-121.14356654720468,38.69844168428186],[-121.1435698360446,38.69839505721255],[-121.1435722577036,38.69837178455375],[-121.14357865622402,38.69832535612906],[-121.1435826294625,38.698302214750925],[-121.14359211887296,38.69825611276172],[-121.14359763257153,38.69823316654693],[-121.1436012848797,38.69821988605319],[-121.14360240052841,38.69821582934827],[-121.14361018835591,38.698187516939726],[-121.14362476877496,38.69814223814557],[-121.14364135705992,38.69809738589692],[-121.14365039862732,38.69807513691615],[-121.14365993300453,38.6980530149997],[-121.14368047412525,38.69800917844117],[-121.14368701157014,38.697996602145864],[-121.14369067042277,38.69798956326066],[-121.14370295446828,38.69796593098468],[-121.14371491259169,38.69794454499323],[-121.14374025058848,38.697902278108955],[-121.14376067427365,38.69786896609962],[-121.14378035397264,38.697835380119784],[-121.14379928266985,38.69780153002819],[-121.14381745449941,38.69776742569192],[-121.14383486357374,38.697733078779855],[-121.14385150518738,38.697698498266746],[-121.14386737345289,38.69766369582134],[-121.1438824647927,38.69762868222866],[-121.14389677450139,38.697593466463374],[-121.14391029784115,38.69755806020278],[-121.14392303006335,38.69752247602485],[-121.14393496762301,38.697486722012044],[-121.14394610808141,38.69745080985845],[-121.14395644670086,38.69741475124133],[-121.14396597990404,38.69737855694541],[-121.14397470641258,38.697342237772574],[-121.14398262264919,38.69730580450749],[-121.14398972618612,38.69726926794353],[-121.14399601457393,38.697232640675516],[-121.14400148654524,38.69719593260436],[-121.1440061396615,38.6971591554241],[-121.14400997379401,38.697122319944924],[-121.14401298650425,38.69708543786084],[-121.14401517765278,38.697048520882745],[-121.14401654712167,38.69701157891999],[-121.14401709247252,38.69697462366649],[-121.14401681586476,38.69693766685016],[-121.14401571487078,38.696900719264036],[-121.14401379166097,38.69686379173519],[-121.14401104723447,38.696826896883756],[-121.1440074803132,38.696790045511285],[-121.1440030942278,38.69675324755232],[-121.1439978888171,38.69671651651945],[-121.1439918662731,38.69667986143785],[-121.14398502875537,38.69664329403529],[-121.1439773772738,38.696606826031],[-121.14396891629782,38.696570468268824],[-121.1439596456985,38.6965342315587],[-121.14394956878499,38.69649812763669],[-121.14393869117598,38.696462167355136],[-121.14392701276428,38.696426359722224],[-121.1439145391362,38.696390718292704],[-121.14390127477165,38.696355253009486],[-121.14388722184094,38.69631997469932],[-121.1438723848239,38.69628489330508],[-121.1438567693283,38.69625002057987],[-121.14384037982326,38.696215367367316],[-121.14382322079952,38.69618094270944],[-121.14380529786465,38.6961467583593],[-121.14378661664793,38.69611282426813],[-121.14376718277877,38.696079150387256],[-121.14374700187541,38.696045747568796],[-121.14372607956712,38.69601262576403],[-121.14370442262171,38.695979795833594],[-121.143682038978,38.695947266844804],[-121.14365893311572,38.69591504874049],[-121.14362453323969,38.6958693802959],[-121.1435952104653,38.69583027288832],[-121.14357831569353,38.695806489991774],[-121.14354612652456,38.69575824680826],[-121.14351610426485,38.69570915383759],[-121.1435019181487,38.69568430713052],[-121.14347521734841,38.695634049468936],[-121.14347131322997,38.69562612317917],[-121.14347075550654,38.695624990208564],[-121.14346270936531,38.69560865478079],[-121.14343940192569,38.69555737080338],[-121.14341839065736,38.69550548034693],[-121.14339970352391,38.69545304758443],[-121.14338336390138,38.695400135754],[-121.14337470814269,38.69536710629907],[-121.14337346612673,38.69536236549942],[-121.14336938940745,38.6953468089521],[-121.14335779879818,38.695293132184304],[-121.14335290150458,38.695266183764964],[-121.14334491052756,38.69521210475043],[-121.14333933362452,38.695157840862734],[-121.14333617574657,38.69510345790591],[-121.14333596642986,38.695094959796066],[-121.1433359372479,38.695093754151365],[-121.14333550643187,38.69507624161525],[-121.14333598536712,38.69502180354208],[-121.14333888822742,38.6949674113044],[-121.14334421075701,38.69491313153855],[-121.14334777828336,38.694886054658],[-121.14335671847121,38.694832067388184],[-121.14335833362672,38.69482442241271],[-121.14335897364236,38.69482138924321],[-121.14336805792915,38.69477835820752],[-121.14337462398201,38.69475162780814],[-121.14338953442908,38.69469845762824],[-121.14340680311152,38.694645726496915],[-121.14341631578739,38.69461954670139],[-121.14343708355689,38.69456759638324],[-121.14344036966182,38.69456028177396],[-121.1434416666428,38.694557393099274],[-121.14346015128605,38.694516245944854],[-121.14347253920711,38.694490815325494],[-121.14349900431293,38.69444048098487],[-121.14352769507671,38.69439090183058],[-121.14355857628468,38.69434213796245],[-121.14357903444241,38.694312477663445],[-121.14358197692111,38.69430821192374],[-121.1435916104462,38.694294247661595],[-121.14360892173532,38.694270648019575],[-121.1436451081238,38.69422417830895],[-121.1436833422514,38.694178727332805],[-121.1437235763376,38.69413434879127],[-121.14374442921883,38.69411257892113],[-121.14377114215418,38.69408616123485],[-121.14378143247296,38.69407598386342],[-121.1437875717607,38.69406991195784],[-121.14380984977477,38.69404902739113],[-121.14385578211557,38.69400818824469],[-121.1439035061314,38.693968629900596],[-121.14392702795202,38.6939487941547],[-121.14386648806199,38.69390710854254],[-121.14387315092166,38.69390108734595],[-121.14387967575603,38.69389497683992],[-121.1438860625758,38.693888776123615],[-121.14388897247719,38.69388587863119],[-121.1452140646779,38.6925547703439],[-121.14530618901777,38.69246054215774],[-121.14539619911271,38.69236506766259],[-121.14548406815089,38.69226837819794],[-121.14555426590587,38.692188482207456],[-121.14644766460741,38.69115595349673],[-121.1470278014407,38.690435825553585],[-121.14776740946634,38.68967399948882],[-121.14866455271927,38.68902440071076],[-121.14969197582269,38.68850676122059],[-121.14988088721118,38.688431745877764],[-121.15214964617279,38.687564335698475],[-121.15290799777726,38.68727614688108],[-121.15489660659658,38.68652502775221],[-121.15542153114109,38.68628044076107],[-121.15568469050076,38.68611648580846],[-121.16001610446794,38.68314101173598],[-121.161247483971,38.682433718761985],[-121.16145960093345,38.68246303381777],[-121.1616421880772,38.68254420888877],[-121.16160373900244,38.68281713859374],[-121.16142412472131,38.68290271327128],[-121.16169388896908,38.68307789615667],[-121.16253462194713,38.68308397208484],[-121.16256173716822,38.683081730961874],[-121.16258858700871,38.683078012213095],[-121.1626150402144,38.683072834710856],[-121.1626280777634,38.683069706293864],[-121.16264735281555,38.68306434991045],[-121.16267244803367,38.68305599225898],[-121.16269673732114,38.683046282811205],[-121.16272010287712,38.68303526936638],[-121.16274243143476,38.68302300516218],[-121.16276361539963,38.68300954978369],[-121.16277374401328,38.683002395766216],[-121.16278832626362,38.682991155814896],[-121.16280656301387,38.68297526919243],[-121.16282334095975,38.682958423367324],[-121.1628385798157,38.682940701545846],[-121.16284559763767,38.68293153853719],[-121.16285535029343,38.68291744833781],[-121.1628668638188,38.68289807616051],[-121.16287662562391,38.6828781210533],[-121.1628845874245,38.682857681768944],[-121.16289071129073,38.68283685623385],[-121.16289496728498,38.682815746936754],[-121.16289638756427,38.6828051173572],[-121.16289762843985,38.68278911701463],[-121.16289761867844,38.68276774628285],[-121.16289570722006,38.68274642758728],[-121.16289190203271,38.68272526549185],[-121.16288622375814,38.682704361949035],[-121.16287869876336,38.6826838207544],[-121.16286936381181,38.682663741274006],[-121.16285826603153,38.6826442211467],[-121.16285207125888,38.68263469966664],[-121.16284199417632,38.68262075097366],[-121.16282713635013,38.68260283165072],[-121.16281071909727,38.68258576864865],[-121.16279282420334,38.68256964454088],[-121.16277112994963,38.68255279388205],[-121.16302921953569,38.68241084840664],[-121.16627304315686,38.686034268732456],[-121.16666109947846,38.68540885094716],[-121.16703952512454,38.68500023953085],[-121.16748082524079,38.68468593500936],[-121.16849240546445,38.684146868376835],[-121.16964458278711,38.6836788310066],[-121.17001699457585,38.684074864848604],[-121.17036657991157,38.68448933354557]]]},"properties":{"ZIP5":"95671","PO_NAME":"REPRESA","Shape_STAr":35470556.0918,"Shape_STLe":26774.8631147}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.28873030487195,38.571311979195485],[-121.2886637207019,38.57055470918528],[-121.28866018031252,38.570514441072746],[-121.28862622973278,38.570128304174055],[-121.28831222167696,38.57014571476497],[-121.28824699481649,38.56942065494408],[-121.28806964121299,38.56744912511666],[-121.28608105154541,38.567559541574695],[-121.28605884785084,38.56731302727283],[-121.28516588841048,38.56736259782678],[-121.28506603581523,38.56736814065982],[-121.28462991082854,38.567700659595495],[-121.28435116632845,38.56740725779364],[-121.28391464338216,38.567431271011415],[-121.28341421293152,38.56745879782212],[-121.2805773607094,38.56761480101807],[-121.27739535659971,38.56778970066336],[-121.27436493861346,38.56781728863],[-121.2738687186641,38.567821798541225],[-121.27140553546356,38.569240720130885],[-121.2711149554877,38.56892728350159],[-121.27012161776877,38.56785578559781],[-121.27008195107491,38.56785614448816],[-121.26660976283557,38.56788752854569],[-121.26622933104332,38.56789096087351],[-121.26084022543647,38.567939446217025],[-121.26017652392663,38.567945400840834],[-121.25958798836282,38.56795028291514],[-121.25904750535254,38.56796301204014],[-121.25626964533882,38.56802839279375],[-121.25614091341319,38.566968146300596],[-121.25607553175803,38.566429646076806],[-121.25606557504507,38.56634764136869],[-121.25605893763793,38.56629297096461],[-121.25623302188563,38.566279942667634],[-121.25611885338265,38.56533961738029],[-121.25594477140835,38.56535264550575],[-121.25571319250822,38.563445167519006],[-121.25372105203499,38.56074558697864],[-121.25353045337313,38.56038538998019],[-121.2534224132931,38.560004677196396],[-121.25339875505858,38.55964740896707],[-121.25340394010574,38.55950244136244],[-121.25032781696738,38.559479132035015],[-121.25176626262092,38.56819044930132],[-121.25174334353251,38.56820407340643],[-121.25161885435944,38.56808300392034],[-121.24447948836414,38.56093009806622],[-121.24381579984053,38.56013014610481],[-121.24333912315466,38.55925185600825],[-121.24306393773522,38.558321915291806],[-121.24299492366804,38.557506407998225],[-121.24300485908414,38.55656986936414],[-121.2430056555675,38.556207101763164],[-121.24299037287126,38.55374883830227],[-121.24292738037364,38.543614293310405],[-121.24292634002433,38.5432749338065],[-121.24292657525567,38.54032318955583],[-121.24292509407677,38.53991909107825],[-121.24290299750753,38.53693904346617],[-121.2429016411644,38.53665577278864],[-121.24288216510662,38.52764110512212],[-121.24287796543935,38.52732457389373],[-121.24286673322091,38.52700814889314],[-121.24284847325634,38.52669192654705],[-121.24282319035991,38.52637600237987],[-121.24279089277648,38.52606047283816],[-121.24278973870626,38.5260503408112],[-121.24275722589215,38.525734911652414],[-121.24274781758378,38.52562815840973],[-121.2427486055762,38.52562814825227],[-121.25170695972285,38.52551620149492],[-121.25179326069826,38.52552104353958],[-121.25187717978737,38.52553758559389],[-121.25188875158491,38.525540856868574],[-121.26000313429411,38.52792443522955],[-121.26067262778602,38.52812106417744],[-121.26092852626655,38.528194227227765],[-121.2611860122919,38.52826387007148],[-121.26144500576606,38.5283299714659],[-121.26161998343684,38.52837242226377],[-121.27039613302485,38.53045693417407],[-121.27046420398949,38.53047309966813],[-121.27535878819857,38.53163531633518],[-121.27686542980541,38.531997598751566],[-121.27749789739461,38.532152412300505],[-121.28092627128945,38.53299592841151],[-121.29138856780207,38.53556931743849],[-121.29977160582702,38.5376304601081],[-121.30185161742047,38.538141761211236],[-121.30198765092217,38.53817519846748],[-121.30200917664929,38.538180328371325],[-121.30201918079538,38.53818271216657],[-121.30202497218829,38.538184005673116],[-121.302040817241,38.53818754633324],[-121.30205087320394,38.53818979259916],[-121.30205669176244,38.53819100608704],[-121.3020726146504,38.5381943291922],[-121.30208271785087,38.538196437000245],[-121.30208856241909,38.538197571363405],[-121.30210455627785,38.538200675070364],[-121.30211470556868,38.538202644413566],[-121.3021264290443,38.53820480343249],[-121.30912069307486,38.53947408798386],[-121.30979886742003,38.53954901975481],[-121.31030197901053,38.5396046067144],[-121.31047928743166,38.53961011395761],[-121.31047557470647,38.539719910805644],[-121.31232219891683,38.54000979570723],[-121.31369278448366,38.54022493146024],[-121.31393277258306,38.54026260002286],[-121.31619736805514,38.5389874695258],[-121.3168726068528,38.53970254409653],[-121.31912268111128,38.539721225495235],[-121.31938624937581,38.53972341040101],[-121.31979584609465,38.53972680550787],[-121.32076491164992,38.53973483162612],[-121.3208222276722,38.54039415612101],[-121.32094975227153,38.5406517516428],[-121.32117563366558,38.54324996123989],[-121.32153854803884,38.54742399765045],[-121.31927488278815,38.548730741130086],[-121.31760959005716,38.54969200402229],[-121.31764824047917,38.55014994820995],[-121.31762341918957,38.55036432249005],[-121.31789977048697,38.5542145904774],[-121.31791796770813,38.55446810785052],[-121.31801438602736,38.5562948815422],[-121.31824000676852,38.55624805640452],[-121.31824217267753,38.55970855409069],[-121.31824266250108,38.56049106312186],[-121.31750525307133,38.56092040435843],[-121.31682944673439,38.561313869153764],[-121.31677202771402,38.56135414405884],[-121.31555818135355,38.56221210722655],[-121.31541846427558,38.56230913938011],[-121.31539644408261,38.56232443178337],[-121.31533669507574,38.56236449040052],[-121.3152545913453,38.56241953487781],[-121.31523223551467,38.562434522559414],[-121.31517160383413,38.5624737560438],[-121.31508828871206,38.562527667101854],[-121.3150656030158,38.5625423464909],[-121.31500410942839,38.562580743249875],[-121.31491960832369,38.56263350391647],[-121.31489659969009,38.562647870548005],[-121.3148342603821,38.562685418060866],[-121.3147485998344,38.56273701317259],[-121.31472527520033,38.562751061680835],[-121.31466211207821,38.56278774926261],[-121.31457531634155,38.56283816274155],[-121.31455168377411,38.56285188956927],[-121.31448771300771,38.562887706501144],[-121.31439981092608,38.56293692229672],[-121.31437587619801,38.56295032387301],[-121.31431111970306,38.562985258569334],[-121.31422213551426,38.563033262405526],[-121.3141979067103,38.56304633337151],[-121.31406706677197,38.56311466042053],[-121.31208969652377,38.56413308866584],[-121.31011064493865,38.565152320284966],[-121.30858514169805,38.56593792645688],[-121.30809803595217,38.56623953550736],[-121.30801597812469,38.56629034451415],[-121.30784388796238,38.56644178086624],[-121.30760297670315,38.566653777911995],[-121.3075334016132,38.566715001879864],[-121.30739741790629,38.56688759880301],[-121.30720705307553,38.56712921845087],[-121.30715207534392,38.56719899720182],[-121.30705633109093,38.56738751039764],[-121.30692229694061,38.56765141203272],[-121.30688358863785,38.56772762596618],[-121.30683099290769,38.56792632806102],[-121.30675736407431,38.56820449314861],[-121.30673610014527,38.568284825956816],[-121.30670745811445,38.56868996874754],[-121.30672404865305,38.57062403624632],[-121.3067478134712,38.57339402231785],[-121.30174865160403,38.57341000911827],[-121.30150797575003,38.57325706569535],[-121.30098760484194,38.572926382938505],[-121.29962475914316,38.57201668129858],[-121.29923424704387,38.571747319062105],[-121.2989632059137,38.57152381102257],[-121.29837348897526,38.57111570826526],[-121.29839456822263,38.573465694008405],[-121.29754072463717,38.57347221511147],[-121.29753708044097,38.57384231178817],[-121.29586253638071,38.573846377158944],[-121.29574063178848,38.57385661047495],[-121.29572494686876,38.573858048399934],[-121.29100797218125,38.5738861764115],[-121.2889731805759,38.57389825154012],[-121.28895772582074,38.57389834310233],[-121.28895144119949,38.573826865939544],[-121.28874523888662,38.5714818204314],[-121.28873030487195,38.571311979195485]]]},"properties":{"ZIP5":"95655","PO_NAME":"MATHER","Shape_STAr":275459826.033,"Shape_STLe":80313.9817128}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.40237111559708,38.51042396370738],[-121.40357567114876,38.51042221123397],[-121.40392345763925,38.51044916273901],[-121.4041296111678,38.510448860140826],[-121.40411447750539,38.50890521774219],[-121.40422997794938,38.50890630104971],[-121.40632495235464,38.50892593038328],[-121.4063285412607,38.50973500842292],[-121.40632949024334,38.50994894780857],[-121.40650606197075,38.50994626030539],[-121.40668155002496,38.50994358949612],[-121.40697133796499,38.50993917750598],[-121.40702990698126,38.50993828590333],[-121.40721509171533,38.509935465799494],[-121.40720739824535,38.50972607926018],[-121.4072115079271,38.50972603726053],[-121.40771389042766,38.50972501103491],[-121.40772294882618,38.510553377344436],[-121.40908155965532,38.5105513364878],[-121.40908961112233,38.50978721551125],[-121.40986488346692,38.50978169094402],[-121.41047250122297,38.5097773581004],[-121.41047156108418,38.509689582048274],[-121.41051964856375,38.50968915777649],[-121.41069758275513,38.50968757712993],[-121.41093747212314,38.50968544870656],[-121.41093995848145,38.509890660670024],[-121.41094325972969,38.510163184056985],[-121.41094792821016,38.51054850821148],[-121.41276498116402,38.51054572466818],[-121.4127543012519,38.51016477192033],[-121.41291585585735,38.51001098023703],[-121.41304788132574,38.50988529706165],[-121.41324492245147,38.510039442016655],[-121.41332196600041,38.510099712170636],[-121.41332777364632,38.51054485730606],[-121.41638775933274,38.510540090463174],[-121.41638889287862,38.51019153831799],[-121.41638960708316,38.50997200845812],[-121.41662047331285,38.509969347938124],[-121.41683929471475,38.509966825326586],[-121.41690520062583,38.50996606571653],[-121.41709557037355,38.50996387125044],[-121.4170953360301,38.510149183683694],[-121.41730416428642,38.51015046117915],[-121.41738557222807,38.510150958673016],[-121.41745395792297,38.5101513770073],[-121.41751391435794,38.510151743840915],[-121.41770088296029,38.51015288710472],[-121.41790847070067,38.51015415546165],[-121.41811935126404,38.51015544451665],[-121.41833094842025,38.51015673679098],[-121.4183303480933,38.510218749115516],[-121.41832951824753,38.510304432368706],[-121.41832726460228,38.5105370274476],[-121.41928982738766,38.51053549584342],[-121.41929040247405,38.51028460493926],[-121.41929071336777,38.51014895689776],[-121.41947225749033,38.510148688980756],[-121.4195630507584,38.5101485554723],[-121.41965398391083,38.51014842169358],[-121.41983601648437,38.510148152052935],[-121.42001777730555,38.510147883465834],[-121.42038129894371,38.51014734543467],[-121.42040216241634,38.510147314853164],[-121.42056302536463,38.510147075818296],[-121.42080755203922,38.51014671231209],[-121.4211794587244,38.51014615970807],[-121.42117824585308,38.50986253734923],[-121.42117752969706,38.50969501119975],[-121.4211770198315,38.509575870779784],[-121.42161374432506,38.50957484476519],[-121.42205636906155,38.509573818657216],[-121.4220553486229,38.5096828946604],[-121.42205367663176,38.50986141967361],[-121.42205199671906,38.510040780683525],[-121.42205031592296,38.51022024979728],[-121.42204740461712,38.510531061436765],[-121.4229630069263,38.51052957540494],[-121.42296381725438,38.510134755971976],[-121.42318651106761,38.51013476139131],[-121.42325063483065,38.510134763151164],[-121.42342868416627,38.510134767092715],[-121.4235476638749,38.51013476916259],[-121.42364055882551,38.51013477175713],[-121.42381561329162,38.510134774593276],[-121.42385707599988,38.510134775736155],[-121.42406393436593,38.510134778961245],[-121.42427187624533,38.5101347827054],[-121.42429459234125,38.510134782265354],[-121.42447981813203,38.51013478517482],[-121.42457417956818,38.5101347862086],[-121.42468776116527,38.510134787276066],[-121.42489570304474,38.51013478989866],[-121.42516943582402,38.51013479212109],[-121.42522657690395,38.510134792315405],[-121.42539849087605,38.51013479336524],[-121.42551561884846,38.51013479412111],[-121.42563456645424,38.510134793884774],[-121.42580880569668,38.51013479416031],[-121.42586295189992,38.51013479448748],[-121.42610562032431,38.510134794339955],[-121.42610553644838,38.51052441731355],[-121.4274463497319,38.510522190449265],[-121.4274448491734,38.510486258703125],[-121.42744474156378,38.51048423564828],[-121.42744139287426,38.510406386652605],[-121.42743977466732,38.51032850298015],[-121.42743967680734,38.51031625565106],[-121.42743702506857,38.509887102060354],[-121.42794038021424,38.50989578017526],[-121.42798461024977,38.50989654217506],[-121.42798607131236,38.51038399524105],[-121.42798648266238,38.51052128913764],[-121.42961257999302,38.51051856033386],[-121.42960833361086,38.51028768361248],[-121.43002232914532,38.51028603355387],[-121.43002075112835,38.51018638797513],[-121.4300191348669,38.51008435211862],[-121.43001752645833,38.509982769453835],[-121.430015891373,38.50987950197347],[-121.43001458337717,38.509796879340854],[-121.43001297063364,38.50969497953763],[-121.43001164561886,38.509611329794495],[-121.43001002182295,38.50950880471176],[-121.43000843806954,38.50940873297859],[-121.43000680986309,38.50930589976608],[-121.43000555049936,38.50922638007466],[-121.43038735252127,38.50922786106688],[-121.43077184432946,38.50922935043326],[-121.43098246112007,38.509230166101084],[-121.43096295609188,38.50940161961487],[-121.43096522782331,38.50946286409901],[-121.4309835717204,38.510384438641864],[-121.4309861962313,38.51051623798434],[-121.43143589759633,38.51051547383109],[-121.43143372222875,38.51040564156567],[-121.43142538113698,38.5099845638164],[-121.43166984634541,38.50998274731733],[-121.43185369059317,38.509981381181376],[-121.43201978931582,38.50998014742957],[-121.4321960966404,38.50997883652956],[-121.43219585131902,38.50995907677669],[-121.43258274794447,38.50995595479474],[-121.43258306428763,38.50998136354032],[-121.43279248114179,38.50997907091691],[-121.433002385317,38.509976773096206],[-121.4332863225167,38.509973662894836],[-121.43328010252024,38.50947393451091],[-121.43373633913808,38.509472789864446],[-121.43373726238528,38.50954692767235],[-121.43374162933311,38.509897583972304],[-121.43457941528438,38.50989036645997],[-121.43498126430356,38.509886902346594],[-121.4349803493379,38.510509390234695],[-121.43572702546673,38.51050809492372],[-121.43586302553197,38.51050738537659],[-121.43592441996272,38.51050675418376],[-121.43683701690202,38.51049594277494],[-121.43683643508076,38.51038610129384],[-121.43683104293837,38.50936800380736],[-121.43683076172466,38.50931483491445],[-121.43763338840164,38.509318740317234],[-121.4377204835297,38.50947722218601],[-121.43771497502102,38.510176753344666],[-121.43819380608399,38.510179080211486],[-121.43819517941543,38.51000453208763],[-121.438423879787,38.51000144185446],[-121.44155280378764,38.50996784679869],[-121.44155066170948,38.509285584986166],[-121.44208279991511,38.509420565614896],[-121.44276114969813,38.509864243436034],[-121.44312672831155,38.50990253027227],[-121.44330831633083,38.50992047378214],[-121.4436207724495,38.50994490337032],[-121.44560632121971,38.509941157639346],[-121.44560264211698,38.51041501500759],[-121.44607032611928,38.5104139954695],[-121.4460682809299,38.50859261624616],[-121.44891919220976,38.50857939393523],[-121.44975967165678,38.50857548207704],[-121.44976875952293,38.50987873300727],[-121.45065147786089,38.509876774989465],[-121.45065312038422,38.509663277760716],[-121.4515302991317,38.509661326376516],[-121.4515282030461,38.50932563506419],[-121.45217118036986,38.509328682382886],[-121.4521716243229,38.50939963930877],[-121.45240485655097,38.50940074380116],[-121.4524008656131,38.50992115005685],[-121.45308883499021,38.509919608871165],[-121.45309324376129,38.50934399478735],[-121.45395695071484,38.50934205410671],[-121.45394888688791,38.510396534673454],[-121.45430070744844,38.510395742894346],[-121.45430702328683,38.509569311281936],[-121.45539579378723,38.50956685303745],[-121.4553939746403,38.50993705721839],[-121.4581139778228,38.508489247917815],[-121.45814043346611,38.50842774407792],[-121.45816345397262,38.50835339984373],[-121.45816969503238,38.508277043668926],[-121.45815896710633,38.508200996284344],[-121.45813159553285,38.50812756821308],[-121.45809777222144,38.508071537794635],[-121.45745292073474,38.50720133451621],[-121.45764779088641,38.50708136408794],[-121.45791719532515,38.50735645713606],[-121.45818045046563,38.50763520091121],[-121.45843719242873,38.50791719375255],[-121.45845782725922,38.50794071554566],[-121.45847793715897,38.50796451685852],[-121.45849751645673,38.507988589556795],[-121.45851655717436,38.5080129272971],[-121.45853505363371,38.50803752284596],[-121.45855300245634,38.50806236807973],[-121.45857039567102,38.50808745575413],[-121.458582387917,38.50810538302387],[-121.45897600590234,38.50870277945996],[-121.45921225026372,38.5086066755423],[-121.4592999048731,38.5086947392121],[-121.45940189135986,38.508767245516566],[-121.45952215100459,38.508826995712184],[-121.4596537884976,38.50886942870957],[-121.45979280399493,38.508893255520896],[-121.45993497206022,38.508897752787405],[-121.45999291560953,38.50889398190888],[-121.46053006680087,38.508843828390525],[-121.46068312505228,38.50884009807548],[-121.46083468255685,38.508857307357836],[-121.46098013421985,38.50889493388135],[-121.46111506076578,38.50895183455816],[-121.46123536376027,38.50902627952657],[-121.46133738556172,38.50911600855946],[-121.46141802807891,38.509218294672486],[-121.46147427139633,38.50932855178871],[-121.46148084650376,38.50934503101135],[-121.46148778577665,38.509361417334794],[-121.4614950881026,38.50937770624934],[-121.46150275122963,38.50939389233903],[-121.46151077404535,38.509409971094094],[-121.4615164871934,38.50942094451329],[-121.46223449818098,38.50941893656404],[-121.46222572967204,38.50777711615025],[-121.4645758306346,38.50777051254916],[-121.46458465317794,38.509412332784166],[-121.46372049311053,38.50941476604452],[-121.46371829672137,38.50970721275289],[-121.464586224611,38.50970476810605],[-121.46458964616366,38.510341472334204],[-121.46535868297727,38.510345029777724],[-121.4653577954474,38.510180269366614],[-121.46535479132244,38.50962226961111],[-121.46602622881166,38.509625371448045],[-121.4660273111925,38.509825917332016],[-121.46662952629246,38.509828696053106],[-121.46690825551636,38.51035218232407],[-121.46697886767586,38.51035250776242],[-121.46926781207452,38.510363033733135],[-121.46928818081663,38.51036307404479],[-121.46929310491721,38.50970055716888],[-121.4698790853251,38.509703244479915],[-121.47039000569268,38.509705585142115],[-121.47039107038935,38.50956203640073],[-121.4709625827748,38.50956465197658],[-121.47096421028267,38.50934498352186],[-121.47124968528611,38.5093462889652],[-121.47125647634249,38.50842917511051],[-121.47145543986497,38.508430084530396],[-121.47145505369818,38.50848225557595],[-121.47378656045603,38.50849288688983],[-121.47378600745365,38.508388538768756],[-121.47377345398945,38.5060193308412],[-121.4737428078374,38.505920369196815],[-121.47364383275591,38.505600758568576],[-121.47341804851459,38.5048716475461],[-121.47341612800099,38.50486544692986],[-121.47284995954858,38.503040080747716],[-121.47284732338245,38.50303222010816],[-121.47203364370326,38.50060637906888],[-121.4718873343549,38.500100865769625],[-121.47182087915009,38.49987125578911],[-121.47155491843624,38.49895231302916],[-121.47066304395254,38.49587055081756],[-121.47105790424045,38.495863113534114],[-121.47189485130015,38.49880035288734],[-121.47195390083203,38.498999926404785],[-121.47228017782587,38.50010265911042],[-121.47242764878479,38.500601061906785],[-121.47320641758033,38.50304065816661],[-121.47374809960992,38.50300887669519],[-121.47374838439752,38.50306886518144],[-121.47377634747363,38.503068758188974],[-121.47378258943995,38.50364184687049],[-121.47377382130684,38.50483171928629],[-121.47400612909209,38.50560240687885],[-121.47483139627248,38.508340123842046],[-121.47490376797826,38.508555554425385],[-121.47496010790309,38.50874025462954],[-121.47504331906444,38.509013045848306],[-121.47512766053738,38.50928953851807],[-121.47518215094782,38.50946816987582],[-121.47541055681592,38.51021692788052],[-121.47542560783123,38.510266265348676],[-121.47546654244915,38.51038684428779],[-121.47548182860059,38.51043618011193],[-121.4756881017782,38.51110192934169],[-121.47593381100289,38.51189493662691],[-121.4761275162012,38.51252009399506],[-121.47630637431536,38.51309732630803],[-121.47650238118356,38.513729890713094],[-121.47673668511872,38.514486033910245],[-121.47685193187905,38.51485794852869],[-121.47702232958382,38.51541709823713],[-121.47713326775569,38.51576585262108],[-121.47676887000361,38.51576806157809],[-121.47702995449866,38.516599888079135],[-121.47733738701,38.5175793562169],[-121.47737360966617,38.51769564560484],[-121.47750817532861,38.518127746605956],[-121.47760058902115,38.51842449539637],[-121.47768246729645,38.518687408367974],[-121.47774612841725,38.51889182302072],[-121.47779185773415,38.51903866229277],[-121.47782689956662,38.519151193061276],[-121.47787465158517,38.51930452338905],[-121.47797128449713,38.5196148079833],[-121.47801347529989,38.51975028258594],[-121.47809408154407,38.520009103040216],[-121.478169452518,38.5202511133916],[-121.4782391556319,38.520474923416245],[-121.478339569903,38.52079734001646],[-121.47837370084294,38.52090701876599],[-121.4784687528364,38.521240753370286],[-121.4785630152236,38.52157171317177],[-121.47859789642784,38.521681451089435],[-121.47870364717627,38.522013667953004],[-121.47873095385246,38.52209944925737],[-121.47880738775255,38.52233956216761],[-121.47884231679625,38.52244929031377],[-121.47901917665752,38.523004881368266],[-121.47920026247651,38.523573737063124],[-121.47923516247513,38.52368336765733],[-121.47941026491472,38.52423341956333],[-121.47903764916425,38.52423663671346],[-121.47884768045043,38.52423827564363],[-121.47867463388894,38.52423976980295],[-121.47858960900815,38.52424050281862],[-121.47849855842524,38.52424128878776],[-121.4783273697963,38.52424276557818],[-121.478150556874,38.52424429061766],[-121.47798168836464,38.524245746732205],[-121.47780329847119,38.524247284845565],[-121.4778011385484,38.52397110309295],[-121.47766028902589,38.52397244106862],[-121.47766181499786,38.5241074510893],[-121.47766341038995,38.52424849113189],[-121.47763483478943,38.52424873777675],[-121.4776382046901,38.52447372517821],[-121.47728600996817,38.52447568476133],[-121.4772885126489,38.524852013678135],[-121.4769442821854,38.52485439289857],[-121.47694047784373,38.5245730127071],[-121.47693840056093,38.52441936330575],[-121.47693613660076,38.52425190680163],[-121.4767592598208,38.52425306005804],[-121.47658563896482,38.5242541926407],[-121.47623880209147,38.52425645255102],[-121.47623861974229,38.52425645352724],[-121.47606434401943,38.524257588668924],[-121.47589068988516,38.52425872005801],[-121.47571822160204,38.52425984304728],[-121.47554496542475,38.524260970315616],[-121.47538128551662,38.52426203624885],[-121.4753742093933,38.5242620816358],[-121.47520058161282,38.52426321210853],[-121.47514492792075,38.524263574032396],[-121.47502757133684,38.524264114493114],[-121.47484917394799,38.5242649372091],[-121.47479614845095,38.52426518116676],[-121.4746736264706,38.52426574556483],[-121.4745136714848,38.52426648214187],[-121.47433584522066,38.52426730035434],[-121.47416264302332,38.52426809787104],[-121.47381260083887,38.52426970711134],[-121.47363891236736,38.524270506136595],[-121.4734642020625,38.52427130835822],[-121.47328925549307,38.5242721128439],[-121.47311652463367,38.524272905535106],[-121.47294145993271,38.52427370985772],[-121.472772341622,38.52427448606161],[-121.47259513919933,38.52427529903632],[-121.47242154589559,38.52427609486599],[-121.4724225374044,38.524370510800054],[-121.47242402688532,38.524512378404104],[-121.47242794610834,38.52488551941801],[-121.47174783489643,38.524890191445316],[-121.471182803255,38.5248940693749],[-121.47118612872592,38.524445131010374],[-121.47095711189982,38.52444408389508],[-121.47095776731652,38.52435564031788],[-121.47072626688046,38.52435458138616],[-121.47072533698561,38.524420764316325],[-121.4704988958886,38.52441972807801],[-121.47050216663918,38.523978744393396],[-121.46977310562413,38.52397540505791],[-121.46928501151653,38.52397316686099],[-121.4692799641218,38.524274487854875],[-121.46936343869831,38.52445519907474],[-121.46941461262075,38.52454162723432],[-121.46948411471548,38.52461976197142],[-121.46956983188323,38.52468722870604],[-121.46966916004298,38.524741976731626],[-121.46971999398686,38.52476293582374],[-121.46973102065483,38.52476694311302],[-121.46974213446293,38.52477079854893],[-121.46975143054732,38.52477388529392],[-121.46976713719955,38.52477899600967],[-121.47014700351008,38.524902586575266],[-121.46976619315917,38.52490610030997],[-121.46523571506528,38.52494781275593],[-121.46523665524154,38.524822301226116],[-121.46577500384232,38.52467498807337],[-121.4656758045396,38.52459975445841],[-121.46560906508277,38.52453014726975],[-121.46477456456515,38.52452628933838],[-121.4647675738508,38.52452625699457],[-121.4645473652049,38.524525237943436],[-121.46415846660264,38.52452343722832],[-121.46416508975392,38.52494693255363],[-121.46414760729685,38.52494667680116],[-121.46414098752463,38.52452335626434],[-121.4635995237336,38.52452084686819],[-121.46360303103639,38.52405405263472],[-121.46287889721773,38.524050692699],[-121.46286950474533,38.52449502633113],[-121.46157220326874,38.52447571087842],[-121.46156638985305,38.52471659583774],[-121.46139857387912,38.5247168029242],[-121.46140590283521,38.52441313328934],[-121.46074781017268,38.52441006748445],[-121.46073273697479,38.523475864342494],[-121.46140894251002,38.52346359752558],[-121.4614056613114,38.52265980494608],[-121.46004279994303,38.522672476759816],[-121.46004967007221,38.524445027146605],[-121.45948583483637,38.524441770649936],[-121.459305075243,38.52426651012149],[-121.45929702811462,38.52427150493012],[-121.45928887058803,38.52427638841161],[-121.45928443006432,38.52427897395636],[-121.45919688176764,38.52432074479398],[-121.45910142966869,38.52434993899963],[-121.45909876333906,38.524350544549236],[-121.45886939996073,38.52440221680559],[-121.45886967042377,38.52441600903006],[-121.4588696896912,38.52441936767105],[-121.45887122434672,38.52491211155616],[-121.45828755211811,38.52491281859687],[-121.45828749954433,38.524321862027236],[-121.45828749710888,38.524291653975936],[-121.4566610442058,38.524273919996965],[-121.45666922178533,38.52376555319208],[-121.45635811647546,38.52376246366036],[-121.45635034628756,38.52424535404406],[-121.45602392458363,38.52424525560059],[-121.45602442646761,38.52444758906551],[-121.4555580024059,38.524445387654254],[-121.4553742877067,38.52436981853665],[-121.45537401206373,38.524916304398076],[-121.45489858540802,38.52491686606133],[-121.45489758865767,38.524512115341444],[-121.45463971078885,38.52457624483841],[-121.45437109905036,38.52457665299314],[-121.45437086294426,38.5245908896889],[-121.4543636785173,38.52491749569012],[-121.45383859419636,38.52491811156243],[-121.45383906646742,38.52443140573939],[-121.45332080261758,38.524431236131406],[-121.45332102274209,38.52491871550979],[-121.44905487193573,38.52492361076841],[-121.44905306315479,38.523751184264434],[-121.44880207135137,38.52375205978486],[-121.44761098498226,38.52375620360338],[-121.44761133768803,38.52381881510049],[-121.44838381108714,38.523816129069694],[-121.4483863746767,38.524270530656345],[-121.44761389635397,38.52427321760512],[-121.44761470135059,38.524416251857865],[-121.447162830161,38.5244169095043],[-121.4471657061177,38.52404552291181],[-121.44616253994816,38.52404882451767],[-121.44616330810506,38.52430961430289],[-121.44557290877218,38.52431603486588],[-121.44557287511344,38.52430028607816],[-121.44542756840636,38.52430047967098],[-121.4454139847001,38.524950296522015],[-121.44539650258682,38.524950445143816],[-121.44541008857168,38.52430050307997],[-121.44519738438832,38.52430078586841],[-121.44519777472652,38.52437362998165],[-121.4448005114106,38.52437516370266],[-121.44480058847229,38.52427235340167],[-121.44439819774841,38.52427351878832],[-121.44439863984772,38.52432059832629],[-121.44439934545535,38.52439600341636],[-121.44440064178725,38.52453431486313],[-121.44417932954043,38.52453569588017],[-121.4438900733917,38.524537499423474],[-121.44388951393044,38.52465554703093],[-121.44359219442006,38.52465656512444],[-121.44337557378127,38.524657306811584],[-121.44337556127228,38.52466508872354],[-121.44322055352859,38.524665641878144],[-121.44305421379705,38.52466623486336],[-121.44319210370186,38.52496922798911],[-121.44265040433382,38.524973836527344],[-121.44259023720728,38.52497432771434],[-121.44251059292274,38.52497491149593],[-121.4412518623391,38.524983544112416],[-121.44103519466852,38.52451340153665],[-121.44084389613396,38.52455951753867],[-121.44050726461727,38.524640668224535],[-121.44051234131419,38.52466864950422],[-121.44051612794718,38.524692228152794],[-121.4400915187806,38.5247353323303],[-121.44004344643466,38.52458021963082],[-121.43987997445625,38.52461099487406],[-121.43977074663084,38.52461079118311],[-121.4396631380809,38.52461059072791],[-121.4395118216549,38.52461030904542],[-121.43944019042833,38.52461017458036],[-121.4392298242836,38.524609782055364],[-121.43901742602213,38.52460938469886],[-121.43880896356283,38.524608995234665],[-121.43859809054558,38.52460860000286],[-121.43839617056989,38.52460822172496],[-121.43830897960324,38.52460805786777],[-121.43819177236962,38.52460783826653],[-121.43798397850756,38.52460744785998],[-121.4377803601366,38.52460706476051],[-121.43757694015902,38.52460668226714],[-121.43735994898881,38.52460627395215],[-121.43714904617163,38.524605875933986],[-121.43714843142504,38.52470653952464],[-121.43714657096088,38.52501160498976],[-121.43632511203504,38.52501720259778],[-121.43632043066306,38.524720475516816],[-121.43631889112511,38.52462293656054],[-121.43610334375366,38.52462441310252],[-121.43590482060931,38.52462577225799],[-121.43570341764696,38.52462715125948],[-121.43549784692951,38.52462855822154],[-121.43529112818018,38.524629972727766],[-121.43509296971348,38.52463132776586],[-121.43487176704713,38.52463284016288],[-121.4346733998309,38.524634196165316],[-121.43446570734828,38.5246356161499],[-121.43425614430386,38.524637048235405],[-121.43425612285453,38.524734108428085],[-121.43425605464405,38.52503127546981],[-121.43333831789272,38.525037505314764],[-121.43333757340935,38.52475984056892],[-121.43333756550028,38.524756936027394],[-121.43293214339914,38.524757881831576],[-121.43278531518106,38.524756166506755],[-121.43239478328516,38.5247608681187],[-121.43190409366863,38.5247667738996],[-121.43190206024985,38.52462152074112],[-121.43131712241802,38.52462705034347],[-121.43123904013547,38.52462967368096],[-121.43106090959431,38.5246308743334],[-121.43101197466753,38.524631204828054],[-121.43088264944787,38.52463207587579],[-121.43078478074435,38.52463273579839],[-121.43070438814857,38.524633277137795],[-121.43055758566473,38.52463426631684],[-121.43052612799012,38.524634478130835],[-121.43034786782565,38.52463567884917],[-121.43033039057534,38.5246357963891],[-121.43016960765516,38.52463687929277],[-121.43010319661582,38.524637326921706],[-121.42999134747868,38.52463807946176],[-121.42987600150694,38.52463885610163],[-121.42981308614945,38.52463927935039],[-121.42964880753513,38.52464038484097],[-121.42963482596097,38.52464047896994],[-121.42945656576657,38.52464167831486],[-121.42942161240686,38.524641913128455],[-121.42927830556611,38.524642877385055],[-121.42919441726877,38.5246434409698],[-121.42910004535968,38.52464407618059],[-121.4289672232606,38.52464496927142],[-121.42892178400051,38.5246452746958],[-121.42874002810308,38.524646496220385],[-121.42851283408265,38.52464802272877],[-121.42816806107344,38.52465033881853],[-121.42816899278245,38.524791589337845],[-121.4278210246728,38.5247906768921],[-121.42768744043755,38.52479032600692],[-121.42751520305498,38.525076953908126],[-121.42726910056521,38.524974767307036],[-121.42685003433064,38.524974435963955],[-121.42684584234169,38.524536095434556],[-121.42684452940964,38.52439880246169],[-121.42684308566281,38.5242478070406],[-121.42684254675906,38.52419151518897],[-121.42683038072137,38.52417803239002],[-121.42542827958411,38.52418616070901],[-121.4253513825199,38.52418660577787],[-121.42535270084616,38.52457789609811],[-121.42481650378227,38.524580953857004],[-121.42464909787871,38.52458190786949],[-121.42464906104843,38.52448558876573],[-121.42464899512646,38.524312481227604],[-121.4246489483475,38.52418964856029],[-121.42464893043731,38.524142778200115],[-121.42303457072012,38.52413482433365],[-121.42303429523506,38.524253483335535],[-121.42251309074496,38.52425450968498],[-121.42217561032666,38.52425517313992],[-121.4221768448537,38.524643473073766],[-121.42149445022696,38.52464011213231],[-121.42149330367307,38.52425500000072],[-121.42086312001267,38.5242573063135],[-121.42081698363864,38.52425747533366],[-121.42082100532443,38.52457413700054],[-121.41993642717168,38.52457453912182],[-121.41993660575743,38.52466250941717],[-121.4199367799615,38.52466266434478],[-121.41993695772585,38.52507112753974],[-121.41978884244686,38.52497457211688],[-121.41962798048141,38.52497481114842],[-121.41962416850143,38.524666717135815],[-121.41944687662524,38.52466768159138],[-121.41944456265118,38.52446555999171],[-121.4194440692378,38.52442244218376],[-121.41944220325237,38.52425943636055],[-121.41924016589307,38.52426047810722],[-121.41892644864762,38.52426209552386],[-121.41839486967045,38.524264832289994],[-121.41839414585183,38.52396628707328],[-121.41797485951591,38.523965097217896],[-121.4177668178375,38.52396450527625],[-121.41756120388612,38.52396392067911],[-121.41709222998784,38.52396258285114],[-121.4170961621606,38.5250570266869],[-121.4166033586247,38.52505604882101],[-121.41660268890182,38.52446299014383],[-121.41642556794349,38.524462177854694],[-121.41618321984782,38.524461065860464],[-121.41618282816341,38.524293982700435],[-121.41618230019013,38.52406811953724],[-121.41618203863783,38.52395622265322],[-121.41576594631194,38.523954316585915],[-121.41492717471418,38.52395047115168],[-121.41492855802997,38.52426332971861],[-121.4149292395851,38.524417773814356],[-121.41442943176932,38.5244133584454],[-121.41443096041654,38.52482917369616],[-121.41392157330438,38.524826494146154],[-121.41392202938488,38.5247129666395],[-121.41392246467473,38.52460434623847],[-121.41392291237663,38.524492956528775],[-121.41375304087512,38.524491801199325],[-121.41361304106192,38.524490849293755],[-121.4134710791726,38.5244898827662],[-121.41332819185422,38.524488910470346],[-121.41318851888069,38.52448795970848],[-121.41304751797063,38.524487000238466],[-121.41290617762898,38.524486037973084],[-121.41276613770899,38.52448508393804],[-121.41262552096948,38.524484126804644],[-121.41248624249477,38.52448317809872],[-121.41231105127416,38.524481983724534],[-121.41231094181867,38.524592936419936],[-121.41231083288672,38.52470396479375],[-121.41231072329636,38.52481535172306],[-121.41179512967315,38.52481211866564],[-121.41179381015559,38.52448023777632],[-121.4112971190697,38.52447943283458],[-121.4111209169083,38.52447914682947],[-121.41098285038976,38.52447892230333],[-121.41084269898508,38.52447869510251],[-121.41070217029535,38.52447846580997],[-121.41056193403175,38.524478237836696],[-121.41041821609164,38.52447800366073],[-121.4102425277032,38.52447771713432],[-121.41005508004604,38.524477410913846],[-121.41005499203214,38.52445655909183],[-121.40912244212913,38.52445461854909],[-121.40912332381764,38.52500846330868],[-121.40912347364856,38.525063381252195],[-121.40786265152776,38.52507136874548],[-121.40684022365576,38.52240169139765],[-121.40734044849935,38.52240319131244],[-121.4070635557818,38.52167568227066],[-121.40687958850229,38.52119231691742],[-121.4066226732098,38.52051727593677],[-121.40647231480266,38.52012220403922],[-121.4060267720294,38.51890254791707],[-121.40562941374685,38.51781475670202],[-121.40478336281723,38.51554780931469],[-121.40435981557141,38.51568941030163],[-121.40306091982768,38.51222925396732],[-121.40298779813115,38.512034472655245],[-121.40298564236862,38.512028728185626],[-121.40318446878901,38.5120299624034],[-121.40346772298659,38.51203171643309],[-121.40298642459011,38.51074951041447],[-121.40294637083726,38.51064280079061],[-121.40291546724133,38.51056046905799],[-121.40242208081132,38.51056118491543],[-121.40237111559708,38.51042396370738]]]},"properties":{"ZIP5":"95824","PO_NAME":"SACRAMENTO","Shape_STAr":112074734.416,"Shape_STLe":90083.0092846}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.42019514632626,38.54890295180737],[-121.41989762164793,38.54854846786724],[-121.41976987257912,38.54839625890071],[-121.41792057963991,38.54609729162172],[-121.416170192871,38.54392111760116],[-121.41578316574373,38.543393710791406],[-121.41535913041142,38.542793222841894],[-121.41494851049913,38.54218701373956],[-121.41455143043811,38.54157526714099],[-121.41416801232877,38.540958169390684],[-121.41379837135274,38.540335909497756],[-121.41344262153066,38.53970867646205],[-121.41340519475095,38.53957112806726],[-121.41250570593222,38.53764236291485],[-121.4123723503884,38.53735633953478],[-121.41227716456463,38.5371389261609],[-121.41194475908098,38.53639462305127],[-121.41175559160546,38.53597095297323],[-121.41106226090004,38.534144007967],[-121.4111324147279,38.53413642720315],[-121.41111329532889,38.534087419934224],[-121.41101920050379,38.53384622722673],[-121.4109663704914,38.53371081039803],[-121.41091361369716,38.53357557950266],[-121.41086084475458,38.53344031608779],[-121.41080753238965,38.53330365888805],[-121.41075473350726,38.53316831959432],[-121.41070231336622,38.53303394707039],[-121.41064846135116,38.53289590596282],[-121.41059557209972,38.532760332799306],[-121.4105939457637,38.53275616144689],[-121.41048590131852,38.53247920619356],[-121.41043546233003,38.532349908507726],[-121.41040974981016,38.53228399903438],[-121.41033227788458,38.53208540671118],[-121.41031803181409,38.53204888902016],[-121.40928842811914,38.52915713806417],[-121.408986074308,38.52830859021465],[-121.40840121900703,38.526749117134166],[-121.40818454613469,38.52617135687727],[-121.4080022745669,38.52568532100191],[-121.40784416458526,38.52526370497926],[-121.40777225184009,38.52507194112785],[-121.40912347364856,38.525063381252195],[-121.40912332381764,38.52500846330868],[-121.40912244212913,38.52445461854909],[-121.41005499203214,38.52445655909183],[-121.41005508004604,38.524477410913846],[-121.4102425277032,38.52447771713432],[-121.41041821609164,38.52447800366073],[-121.41056193403175,38.524478237836696],[-121.41070217029535,38.52447846580997],[-121.41084269898508,38.52447869510251],[-121.41098285038976,38.52447892230333],[-121.4111209169083,38.52447914682947],[-121.4112971190697,38.52447943283458],[-121.41179381015559,38.52448023777632],[-121.41179512967315,38.52481211866564],[-121.41231072329636,38.52481535172306],[-121.41231083288672,38.52470396479375],[-121.41231094181867,38.524592936419936],[-121.41231105127416,38.524481983724534],[-121.41248624249477,38.52448317809872],[-121.41262552096948,38.524484126804644],[-121.41276613770899,38.52448508393804],[-121.41290617762898,38.524486037973084],[-121.41304751797063,38.524487000238466],[-121.41318851888069,38.52448795970848],[-121.41332819185422,38.524488910470346],[-121.4134710791726,38.5244898827662],[-121.41361304106192,38.524490849293755],[-121.41375304087512,38.524491801199325],[-121.41392291237663,38.524492956528775],[-121.41392246467473,38.52460434623847],[-121.41392202938488,38.5247129666395],[-121.41392157330438,38.524826494146154],[-121.41443096041654,38.52482917369616],[-121.41442943176932,38.5244133584454],[-121.4149292395851,38.524417773814356],[-121.41492855802997,38.52426332971861],[-121.41492717471418,38.52395047115168],[-121.41576594631194,38.523954316585915],[-121.41618203863783,38.52395622265322],[-121.41618230019013,38.52406811953724],[-121.41618282816341,38.524293982700435],[-121.41618321984782,38.524461065860464],[-121.41642556794349,38.524462177854694],[-121.41660268890182,38.52446299014383],[-121.4166033586247,38.52505604882101],[-121.4170961621606,38.5250570266869],[-121.41709222998784,38.52396258285114],[-121.41756120388612,38.52396392067911],[-121.4177668178375,38.52396450527625],[-121.41797485951591,38.523965097217896],[-121.41839414585183,38.52396628707328],[-121.41839486967045,38.524264832289994],[-121.41892644864762,38.52426209552386],[-121.41924016589307,38.52426047810722],[-121.41944220325237,38.52425943636055],[-121.4194440692378,38.52442244218376],[-121.41944456265118,38.52446555999171],[-121.41944687662524,38.52466768159138],[-121.41962416850143,38.524666717135815],[-121.41962798048141,38.52497481114842],[-121.41978884244686,38.52497457211688],[-121.41993695772585,38.52507112753974],[-121.4199367799615,38.52466266434478],[-121.41993660575743,38.52466250941717],[-121.41993642717168,38.52457453912182],[-121.42082100532443,38.52457413700054],[-121.42081698363864,38.52425747533366],[-121.42086312001267,38.5242573063135],[-121.42149330367307,38.52425500000072],[-121.42149445022696,38.52464011213231],[-121.4221768448537,38.524643473073766],[-121.42217561032666,38.52425517313992],[-121.42251309074496,38.52425450968498],[-121.42303429523506,38.524253483335535],[-121.42303457072012,38.52413482433365],[-121.42464893043731,38.524142778200115],[-121.4246489483475,38.52418964856029],[-121.42464899512646,38.524312481227604],[-121.42464906104843,38.52448558876573],[-121.42464909787871,38.52458190786949],[-121.42481650378227,38.524580953857004],[-121.42535270084616,38.52457789609811],[-121.4253513825199,38.52418660577787],[-121.42542827958411,38.52418616070901],[-121.42683038072137,38.52417803239002],[-121.42684254675906,38.52419151518897],[-121.42684308566281,38.5242478070406],[-121.42684452940964,38.52439880246169],[-121.42684584234169,38.524536095434556],[-121.42685003433064,38.524974435963955],[-121.42726910056521,38.524974767307036],[-121.42751520305498,38.525076953908126],[-121.42768744043755,38.52479032600692],[-121.4278210246728,38.5247906768921],[-121.42816899278245,38.524791589337845],[-121.42816806107344,38.52465033881853],[-121.42851283408265,38.52464802272877],[-121.42874002810308,38.524646496220385],[-121.42892178400051,38.5246452746958],[-121.4289672232606,38.52464496927142],[-121.42910004535968,38.52464407618059],[-121.42919441726877,38.5246434409698],[-121.42927830556611,38.524642877385055],[-121.42942161240686,38.524641913128455],[-121.42945656576657,38.52464167831486],[-121.42963482596097,38.52464047896994],[-121.42964880753513,38.52464038484097],[-121.42981308614945,38.52463927935039],[-121.42987600150694,38.52463885610163],[-121.42999134747868,38.52463807946176],[-121.43010319661582,38.524637326921706],[-121.43016960765516,38.52463687929277],[-121.43033039057534,38.5246357963891],[-121.43034786782565,38.52463567884917],[-121.43052612799012,38.524634478130835],[-121.43055758566473,38.52463426631684],[-121.43070438814857,38.524633277137795],[-121.43078478074435,38.52463273579839],[-121.43088264944787,38.52463207587579],[-121.43101197466753,38.524631204828054],[-121.43106090959431,38.5246308743334],[-121.43123904013547,38.52462967368096],[-121.43131712241802,38.52462705034347],[-121.43190206024985,38.52462152074112],[-121.43190409366863,38.5247667738996],[-121.43239478328516,38.5247608681187],[-121.43278531518106,38.524756166506755],[-121.43293214339914,38.524757881831576],[-121.43333756550028,38.524756936027394],[-121.43333757340935,38.52475984056892],[-121.43333831789272,38.525037505314764],[-121.43425605464405,38.52503127546981],[-121.43425612285453,38.524734108428085],[-121.43425614430386,38.524637048235405],[-121.43446570734828,38.5246356161499],[-121.4346733998309,38.524634196165316],[-121.43487176704713,38.52463284016288],[-121.43509296971348,38.52463132776586],[-121.43529112818018,38.524629972727766],[-121.43549784692951,38.52462855822154],[-121.43570341764696,38.52462715125948],[-121.43590482060931,38.52462577225799],[-121.43610334375366,38.52462441310252],[-121.43631889112511,38.52462293656054],[-121.43632043066306,38.524720475516816],[-121.43632511203504,38.52501720259778],[-121.43714657096088,38.52501160498976],[-121.43714843142504,38.52470653952464],[-121.43714904617163,38.524605875933986],[-121.43735994898881,38.52460627395215],[-121.43757694015902,38.52460668226714],[-121.4377803601366,38.52460706476051],[-121.43798397850756,38.52460744785998],[-121.43819177236962,38.52460783826653],[-121.43830897960324,38.52460805786777],[-121.43839617056989,38.52460822172496],[-121.43859809054558,38.52460860000286],[-121.43880896356283,38.524608995234665],[-121.43901742602213,38.52460938469886],[-121.4392298242836,38.524609782055364],[-121.43944019042833,38.52461017458036],[-121.4395118216549,38.52461030904542],[-121.4396631380809,38.52461059072791],[-121.43977074663084,38.52461079118311],[-121.43987997445625,38.52461099487406],[-121.44004344643466,38.52458021963082],[-121.4400915187806,38.5247353323303],[-121.44051612794718,38.524692228152794],[-121.44051234131419,38.52466864950422],[-121.44050726461727,38.524640668224535],[-121.44084389613396,38.52455951753867],[-121.44103519466852,38.52451340153665],[-121.4412518623391,38.524983544112416],[-121.44251059292274,38.52497491149593],[-121.44259023720728,38.52497432771434],[-121.44265040433382,38.524973836527344],[-121.44319210370186,38.52496922798911],[-121.44305421379705,38.52466623486336],[-121.44322055352859,38.524665641878144],[-121.44337556127228,38.52466508872354],[-121.44337557378127,38.524657306811584],[-121.44359219442006,38.52465656512444],[-121.44388951393044,38.52465554703093],[-121.4438900733917,38.524537499423474],[-121.44417932954043,38.52453569588017],[-121.44440064178725,38.52453431486313],[-121.44439934545535,38.52439600341636],[-121.44439863984772,38.52432059832629],[-121.44439819774841,38.52427351878832],[-121.44480058847229,38.52427235340167],[-121.4448005114106,38.52437516370266],[-121.44519777472652,38.52437362998165],[-121.44519738438832,38.52430078586841],[-121.44541008857168,38.52430050307997],[-121.44539650258682,38.524950445143816],[-121.4454139847001,38.524950296522015],[-121.44542756840636,38.52430047967098],[-121.44557287511344,38.52430028607816],[-121.44557290877218,38.52431603486588],[-121.44616330810506,38.52430961430289],[-121.44616253994816,38.52404882451767],[-121.4471657061177,38.52404552291181],[-121.447162830161,38.5244169095043],[-121.44761470135059,38.524416251857865],[-121.44761389635397,38.52427321760512],[-121.4483863746767,38.524270530656345],[-121.44838381108714,38.523816129069694],[-121.44761133768803,38.52381881510049],[-121.44761098498226,38.52375620360338],[-121.44880207135137,38.52375205978486],[-121.44905306315479,38.523751184264434],[-121.44905487193573,38.52492361076841],[-121.45332102274209,38.52491871550979],[-121.45332080261758,38.524431236131406],[-121.45383906646742,38.52443140573939],[-121.45383859419636,38.52491811156243],[-121.4543636785173,38.52491749569012],[-121.45437086294426,38.5245908896889],[-121.45437109905036,38.52457665299314],[-121.45463971078885,38.52457624483841],[-121.45489758865767,38.524512115341444],[-121.45489858540802,38.52491686606133],[-121.45537401206373,38.524916304398076],[-121.4553742877067,38.52436981853665],[-121.4555580024059,38.524445387654254],[-121.45602442646761,38.52444758906551],[-121.45602392458363,38.52424525560059],[-121.45635034628756,38.52424535404406],[-121.45635811647546,38.52376246366036],[-121.45666922178533,38.52376555319208],[-121.4566610442058,38.524273919996965],[-121.45828749710888,38.524291653975936],[-121.45828749954433,38.524321862027236],[-121.45828755211811,38.52491281859687],[-121.45887122434672,38.52491211155616],[-121.4588696896912,38.52441936767105],[-121.45886967042377,38.52441600903006],[-121.45886939996073,38.52440221680559],[-121.45909876333906,38.524350544549236],[-121.45910142966869,38.52434993899963],[-121.45919688176764,38.52432074479398],[-121.45928443006432,38.52427897395636],[-121.45928887058803,38.52427638841161],[-121.45929702811462,38.52427150493012],[-121.459305075243,38.52426651012149],[-121.45948583483637,38.524441770649936],[-121.46004967007221,38.524445027146605],[-121.46004279994303,38.522672476759816],[-121.4614056613114,38.52265980494608],[-121.46140894251002,38.52346359752558],[-121.46073273697479,38.523475864342494],[-121.46074781017268,38.52441006748445],[-121.46140590283521,38.52441313328934],[-121.46139857387912,38.5247168029242],[-121.46156638985305,38.52471659583774],[-121.46157220326874,38.52447571087842],[-121.46286950474533,38.52449502633113],[-121.46287889721773,38.524050692699],[-121.46360303103639,38.52405405263472],[-121.4635995237336,38.52452084686819],[-121.46414098752463,38.52452335626434],[-121.46414760729685,38.52494667680116],[-121.46416508975392,38.52494693255363],[-121.46415846660264,38.52452343722832],[-121.4645473652049,38.524525237943436],[-121.4647675738508,38.52452625699457],[-121.46477456456515,38.52452628933838],[-121.46560906508277,38.52453014726975],[-121.4656758045396,38.52459975445841],[-121.46577500384232,38.52467498807337],[-121.46523665524154,38.524822301226116],[-121.46523571506528,38.52494781275593],[-121.46976619315917,38.52490610030997],[-121.47014700351008,38.524902586575266],[-121.46976713719955,38.52477899600967],[-121.46975143054732,38.52477388529392],[-121.46974213446293,38.52477079854893],[-121.46973102065483,38.52476694311302],[-121.46971999398686,38.52476293582374],[-121.46966916004298,38.524741976731626],[-121.46956983188323,38.52468722870604],[-121.46948411471548,38.52461976197142],[-121.46941461262075,38.52454162723432],[-121.46936343869831,38.52445519907474],[-121.4692799641218,38.524274487854875],[-121.46928501151653,38.52397316686099],[-121.46977310562413,38.52397540505791],[-121.47050216663918,38.523978744393396],[-121.4704988958886,38.52441972807801],[-121.47072533698561,38.524420764316325],[-121.47072626688046,38.52435458138616],[-121.47095776731652,38.52435564031788],[-121.47095711189982,38.52444408389508],[-121.47118612872592,38.524445131010374],[-121.471182803255,38.5248940693749],[-121.47174783489643,38.524890191445316],[-121.47242794610834,38.52488551941801],[-121.47242402688532,38.524512378404104],[-121.4724225374044,38.524370510800054],[-121.47242154589559,38.52427609486599],[-121.47259513919933,38.52427529903632],[-121.472772341622,38.52427448606161],[-121.47294145993271,38.52427370985772],[-121.47311652463367,38.524272905535106],[-121.47328925549307,38.5242721128439],[-121.4734642020625,38.52427130835822],[-121.47363891236736,38.524270506136595],[-121.47381260083887,38.52426970711134],[-121.47416264302332,38.52426809787104],[-121.47433584522066,38.52426730035434],[-121.4745136714848,38.52426648214187],[-121.4746736264706,38.52426574556483],[-121.47479614845095,38.52426518116676],[-121.47484917394799,38.5242649372091],[-121.47502757133684,38.524264114493114],[-121.47514492792075,38.524263574032396],[-121.47520058161282,38.52426321210853],[-121.4753742093933,38.5242620816358],[-121.47538128551662,38.52426203624885],[-121.47554496542475,38.524260970315616],[-121.47571822160204,38.52425984304728],[-121.47589068988516,38.52425872005801],[-121.47606434401943,38.524257588668924],[-121.47623861974229,38.52425645352724],[-121.47623880209147,38.52425645255102],[-121.47658563896482,38.5242541926407],[-121.4767592598208,38.52425306005804],[-121.47693613660076,38.52425190680163],[-121.47693840056093,38.52441936330575],[-121.47694047784373,38.5245730127071],[-121.4769442821854,38.52485439289857],[-121.4772885126489,38.524852013678135],[-121.47728600996817,38.52447568476133],[-121.4776382046901,38.52447372517821],[-121.47763483478943,38.52424873777675],[-121.47766341038995,38.52424849113189],[-121.47766181499786,38.5241074510893],[-121.47766028902589,38.52397244106862],[-121.4778011385484,38.52397110309295],[-121.47780329847119,38.524247284845565],[-121.47798168836464,38.524245746732205],[-121.478150556874,38.52424429061766],[-121.4783273697963,38.52424276557818],[-121.47849855842524,38.52424128878776],[-121.47858960900815,38.52424050281862],[-121.47867463388894,38.52423976980295],[-121.47884768045043,38.52423827564363],[-121.47903764916425,38.52423663671346],[-121.47941026491472,38.52423341956333],[-121.47960209077118,38.52483599307888],[-121.47991891310197,38.524833796247144],[-121.47996930792092,38.52499858165541],[-121.48018723372057,38.52571116928675],[-121.48024545075991,38.52590152836134],[-121.48042088674819,38.52647516567278],[-121.4804533087625,38.52661230537397],[-121.48049897012957,38.52675306306396],[-121.48054149768312,38.526884159852465],[-121.48058436415292,38.52701629958384],[-121.4806276177479,38.5271496347258],[-121.4806709141332,38.52728310067306],[-121.48069559267992,38.52735917243383],[-121.48072339856473,38.527444887920566],[-121.48077388659888,38.52760051935895],[-121.4807753459303,38.52760501958564],[-121.4808272015466,38.52776486793274],[-121.48087831819095,38.52792243637137],[-121.48093071943693,38.52808396368854],[-121.48097362097967,38.52821620973202],[-121.48109297353054,38.52858411132857],[-121.4811165900287,38.52876413369922],[-121.48120066206323,38.529025123280135],[-121.48124894496416,38.529175009498466],[-121.48138196988144,38.529587962008335],[-121.4815153440517,38.530001991594595],[-121.48163295760051,38.530367096534675],[-121.48179914128471,38.53088455527075],[-121.4820108399261,38.53154372331414],[-121.48224685765874,38.532278604901194],[-121.48238457347728,38.532707396952915],[-121.4824893714885,38.53310008768059],[-121.48252677473263,38.5332402427291],[-121.48257669770064,38.53342730853101],[-121.48261981955979,38.53358888723812],[-121.48266627810627,38.5337629690881],[-121.48320355834645,38.53551438235431],[-121.48322760655714,38.53556992018148],[-121.48355078279165,38.53631624314198],[-121.48455583031723,38.53957311642668],[-121.48123912014226,38.54014376104842],[-121.48126400539316,38.54022381014879],[-121.48129373505155,38.54031944306342],[-121.48089329336739,38.54039147399551],[-121.48073137164259,38.54044963101241],[-121.4807284770925,38.54044244777923],[-121.48072303924833,38.54043388016445],[-121.48071579072796,38.54042618460024],[-121.48070695006987,38.54041959449863],[-121.48069678652395,38.54041431016598],[-121.48068560862717,38.54041049244554],[-121.48067375736046,38.540408257281385],[-121.48066159126417,38.540407672048104],[-121.48064948185619,38.54040875462931],[-121.48022356201027,38.540476781516524],[-121.48021279969042,38.540479219647835],[-121.48020181499824,38.54048336848451],[-121.48019191530467,38.54048895191876],[-121.48018340007684,38.54049580102655],[-121.4801765277712,38.54050370796113],[-121.48017150891215,38.54051243132706],[-121.48016849454305,38.54052170693933],[-121.48016757734005,38.54053125233263],[-121.48010639782109,38.54053182430644],[-121.48010347586332,38.54033912631076],[-121.4784549982955,38.540622693153075],[-121.47846102205895,38.54090518684701],[-121.47799108042699,38.540908128065745],[-121.4779928120658,38.541000095907094],[-121.47751957273458,38.541007002304426],[-121.47752282042725,38.54115770111574],[-121.47752603557876,38.54130689257794],[-121.47733577135048,38.541308056726685],[-121.477290389714,38.54130833461001],[-121.47714439209945,38.54130922813678],[-121.47700368734556,38.541310088645986],[-121.4769564255606,38.54131037772004],[-121.47676846130986,38.54131152700831],[-121.47657633985163,38.541312701329964],[-121.47638133220639,38.54131389290254],[-121.47638452493409,38.54142203670151],[-121.47615949611415,38.54142221727365],[-121.47614851977649,38.54101914285988],[-121.4760887092117,38.54102833509531],[-121.47602862928161,38.54103671707395],[-121.47596837300397,38.541044274802225],[-121.47590795761278,38.54105100475437],[-121.47584740261641,38.54105690611753],[-121.47578672409523,38.5410619762617],[-121.47573310151638,38.54106575762768],[-121.47512843186652,38.541102140559644],[-121.47510106793425,38.54071865738044],[-121.47495606894985,38.54070979234378],[-121.47492335317915,38.54070779164189],[-121.47477136025819,38.54069849914149],[-121.47475657537333,38.54076868314193],[-121.47476430478673,38.54090532407062],[-121.47429851755564,38.54091403219478],[-121.47429808983057,38.54091884194702],[-121.4742976266456,38.54092503982181],[-121.47429698285197,38.54093364407509],[-121.47429680339042,38.54093605045886],[-121.47429647781625,38.54094225346332],[-121.47429602667785,38.54095086489817],[-121.47429589995997,38.54095327422425],[-121.47429571315703,38.54095948056189],[-121.47429545239312,38.54096809736613],[-121.47429537958585,38.54097050693715],[-121.47429533041387,38.540976715701895],[-121.47429526119821,38.54098533427734],[-121.47429524229497,38.54098774499414],[-121.47429533078055,38.54099395258249],[-121.47429545312659,38.54100257112732],[-121.47429548813403,38.54100498208909],[-121.47429571428394,38.541011187600155],[-121.47429611598943,38.54102221371246],[-121.47430189262599,38.54114353774708],[-121.47427605895305,38.54114467622745],[-121.4737993286913,38.541162330797974],[-121.47330967742627,38.541180461527475],[-121.4732967532108,38.541180940534296],[-121.47281970368694,38.54119205360309],[-121.47231679098084,38.54120376748102],[-121.4723148789674,38.54077909617311],[-121.47152424186042,38.54077862925917],[-121.47152484839464,38.54090910728914],[-121.4712507879681,38.54090856066577],[-121.47114352013533,38.540778269952845],[-121.4711432313814,38.54077853800161],[-121.47114323123566,38.54077840286623],[-121.47054595507406,38.54077804440685],[-121.4705459541809,38.54077801016866],[-121.4705456585158,38.54077828178791],[-121.47047602806848,38.54077593343417],[-121.47047613007777,38.54089221281743],[-121.47018085802613,38.540896302607976],[-121.47018407912252,38.540573170611275],[-121.47018333493054,38.540551193397945],[-121.4696500099311,38.54054539520089],[-121.4693744515269,38.540542398529695],[-121.46937428018092,38.54056436614542],[-121.46937333955321,38.54068456326727],[-121.46920105995557,38.54068472263607],[-121.46903567199877,38.54068487553504],[-121.46903404156308,38.54085747744066],[-121.46879496913198,38.540854798166094],[-121.46879534541533,38.54067431395068],[-121.46855734277995,38.540672082335504],[-121.46838702285916,38.54067048553405],[-121.4682147977957,38.54066887071713],[-121.46821479565088,38.54060942403723],[-121.46810275865938,38.54060856763458],[-121.46810124575306,38.540793417789175],[-121.46796015939668,38.54079095384124],[-121.46796097745828,38.54071767944113],[-121.46762642369228,38.54071465057304],[-121.46762657381252,38.54078787176943],[-121.46703550033467,38.540784812925196],[-121.46703629169939,38.541014635723684],[-121.46702621093817,38.54101052353694],[-121.46701658616006,38.541006485521514],[-121.46700195289398,38.54100034516141],[-121.46699694325808,38.540998242812],[-121.46698741008812,38.54099407278408],[-121.46696795387051,38.540985562461884],[-121.46674167922534,38.54087123281691],[-121.4666813287399,38.54083018271578],[-121.46641847054697,38.54065138669693],[-121.46641751066373,38.54064982371646],[-121.46638276217264,38.54062117526491],[-121.46635322969722,38.54059632652394],[-121.4663254479006,38.54057113990485],[-121.46629766637581,38.540545612740694],[-121.46626989345876,38.540519397323095],[-121.46630210820652,38.54071476517866],[-121.46602797312995,38.54071309683127],[-121.46586078509178,38.540712053105246],[-121.46586066505736,38.540730851597175],[-121.4658594076011,38.540928920008064],[-121.46568394998769,38.54092769821521],[-121.46568415358558,38.54091429198584],[-121.46550467448881,38.54091244144258],[-121.4655043961937,38.54092739326833],[-121.46532411055416,38.540926171150176],[-121.46532259653532,38.54099934773379],[-121.46531856595634,38.5411940853224],[-121.46432214882036,38.54119310553927],[-121.46431978980954,38.54079612092508],[-121.46424166511711,38.540796109667994],[-121.4641619758188,38.5407960983198],[-121.46399612201651,38.54079607339158],[-121.46382516603296,38.54079604890755],[-121.4636993000217,38.54079621424779],[-121.4635172250967,38.54079578101736],[-121.46333990929104,38.540795358762544],[-121.46325376228275,38.54079515377525],[-121.46316414773618,38.54079494074429],[-121.46299106111614,38.540794527666236],[-121.46281149021121,38.54079409954106],[-121.46268561986882,38.54079392502071],[-121.46251054918682,38.540793310119206],[-121.46233973059576,38.540792709305386],[-121.46225124550816,38.54079239811311],[-121.46217350590413,38.540792125087805],[-121.46200344895472,38.540791526416776],[-121.4618202400121,38.540790883442064],[-121.46169445318277,38.540798038843846],[-121.46153888052247,38.54079741047709],[-121.46139552381572,38.540796830656525],[-121.46125603949777,38.54079626778731],[-121.4612565031232,38.54084806080622],[-121.46111802860885,38.54084804211111],[-121.46097965388648,38.5408480237151],[-121.46084011030383,38.54084800421172],[-121.46069791811017,38.54085588118469],[-121.46056200644789,38.540855214311314],[-121.46042334535068,38.540854534457196],[-121.46028094494301,38.540853835193445],[-121.4602798294943,38.54074468251129],[-121.46027871041198,38.54063525233528],[-121.46027758330892,38.54052491131318],[-121.46027640876363,38.54041007458522],[-121.46027547715804,38.54031893352673],[-121.45979437809257,38.54031553618584],[-121.45979482052508,38.540423942492986],[-121.45979545601837,38.54057943607358],[-121.45979604465485,38.54072338892269],[-121.4597966195701,38.5408640020761],[-121.45960389941413,38.54086314001764],[-121.45960462370388,38.54118835072215],[-121.45915633052415,38.541187888640756],[-121.45901899760989,38.54118774664684],[-121.4590182516325,38.54086559797968],[-121.45882463518548,38.540864488991986],[-121.45882313787382,38.54072263547759],[-121.45882166568518,38.540583218110854],[-121.45882023749819,38.540447982921805],[-121.4588187549603,38.54030751145473],[-121.45865371230545,38.54030639617358],[-121.45849089599466,38.54030529558061],[-121.4583334843827,38.54030423087043],[-121.45833444943803,38.540435074722936],[-121.4583354232794,38.540567028523775],[-121.45833640296652,38.54069987514248],[-121.4583374175726,38.54083749218367],[-121.45833839263729,38.5409697396828],[-121.45786328027472,38.540967414607614],[-121.45786284175908,38.54087745330073],[-121.4576138235283,38.54087805566692],[-121.45747121211262,38.54087839970171],[-121.45741737780754,38.5408785292569],[-121.4574167632298,38.540757330254095],[-121.4573182683346,38.54075753681809],[-121.45722530470978,38.540757731406956],[-121.4571746377355,38.540757837868476],[-121.45702738921463,38.540758146087576],[-121.4568739911374,38.54075846759648],[-121.456832789955,38.54075855347446],[-121.45673357926798,38.54075876158608],[-121.45673503871701,38.54087957537635],[-121.45659470753245,38.54087918399336],[-121.4563884038022,38.5408786077404],[-121.45638962154784,38.54096586732304],[-121.45609109702352,38.54096909057057],[-121.45608099848634,38.54096919985703],[-121.45607490440133,38.54082872286853],[-121.45593158011866,38.5408298994903],[-121.45578675995041,38.540831088718775],[-121.45578871857444,38.54097227690416],[-121.45544145649022,38.5409760232935],[-121.45544527932518,38.54118399849625],[-121.45540170355756,38.54126795449274],[-121.45514558472073,38.54126629021073],[-121.4551488548573,38.54159884724384],[-121.45540476182533,38.541599420428064],[-121.45541034269827,38.54220417962952],[-121.45518795736693,38.542202561604284],[-121.45519089493516,38.54239042368262],[-121.4551930861212,38.542578839001955],[-121.45541375917111,38.54257455256948],[-121.45541869360127,38.54310920527071],[-121.45519036064341,38.543114112411054],[-121.45519042819028,38.54312795504173],[-121.45503423600002,38.54313253124137],[-121.45503488373977,38.54326733850895],[-121.45492914096732,38.543268044955596],[-121.45492996958271,38.54337493691973],[-121.45493079277048,38.54348103786889],[-121.4549316635515,38.543593374163954],[-121.45493253707092,38.54370610326378],[-121.45493337765569,38.543814583568775],[-121.45493421985607,38.54392315307025],[-121.4549343145538,38.54393538682358],[-121.45493448417139,38.543957337125285],[-121.4549350921696,38.54403574072291],[-121.45493592681093,38.5441433480284],[-121.45493681104792,38.54425752942731],[-121.45508584785848,38.544256679103775],[-121.45522679017309,38.54425587516522],[-121.45542926367857,38.54425472010619],[-121.45543193005632,38.54454361671266],[-121.45548662656776,38.54454375789054],[-121.45548670109783,38.54469757682575],[-121.45548675336167,38.544804696658495],[-121.45548675953975,38.54481561468187],[-121.4554868078934,38.54491738315641],[-121.45548681322543,38.54492856243644],[-121.45548686136814,38.54502705073685],[-121.45548686955824,38.54504386965767],[-121.4554869164913,38.54513965976],[-121.45548692683995,38.54516190930978],[-121.45548697196458,38.5452552300395],[-121.45548698171446,38.54527485166422],[-121.45548702456672,38.54536215527917],[-121.45548703799355,38.54539001564196],[-121.4554870767965,38.54546943006578],[-121.45548709065723,38.54549993997436],[-121.45548713090524,38.545581721066405],[-121.45548714315997,38.54560763007653],[-121.45548718540854,38.54569486251736],[-121.45548719718718,38.54571978143733],[-121.45548724087612,38.545808930096875],[-121.4554872496656,38.54582687334229],[-121.4554872980967,38.54592562470582],[-121.45548730181423,38.545934008488786],[-121.45548735272023,38.546038149041244],[-121.45548735472,38.54604375084025],[-121.4554874057712,38.54614772202432],[-121.45548741281358,38.5461618346392],[-121.45548746004998,38.5462605923031],[-121.45548746756639,38.5462761463585],[-121.45548751403528,38.54637019321818],[-121.45548751941068,38.546382419342855],[-121.45548756708534,38.546480067101164],[-121.45548757283949,38.546492093228025],[-121.45548762206899,38.54659359684097],[-121.45548770430877,38.54676369685519],[-121.45383968532238,38.54675665474947],[-121.45384875407288,38.54677294436393],[-121.45385400261085,38.546782506952894],[-121.45385576436945,38.546785843188665],[-121.45386006587407,38.54679398779718],[-121.45386260446621,38.546798797065414],[-121.45386429262334,38.54680215727791],[-121.45386841242872,38.546810360487925],[-121.45387084407719,38.54681520348541],[-121.45387245635227,38.546818585862155],[-121.4538763933387,38.5468268440648],[-121.45387871805023,38.546831719890726],[-121.45388025445018,38.546835123530855],[-121.45388400748426,38.546843434919055],[-121.45388622297838,38.54684834176084],[-121.45388768465023,38.54685176666977],[-121.45389125146518,38.54686012762926],[-121.45389335775556,38.546865063685196],[-121.4538947424188,38.546868508050395],[-121.45389812302825,38.54687691677946],[-121.45390012012177,38.54688188114873],[-121.4539014277832,38.54688534406933],[-121.45390650667674,38.54689878873003],[-121.4540781300862,38.54736806960116],[-121.45256116156085,38.54737263380727],[-121.45257788265285,38.54675124658562],[-121.45239054587469,38.54675044219851],[-121.45241251267427,38.54776029098263],[-121.4516712405187,38.54776675478343],[-121.45118179388736,38.54776588140934],[-121.45118676734349,38.54818128978518],[-121.45019429302451,38.54818022011766],[-121.45019360004653,38.5494274901812],[-121.45017709066704,38.549527981826095],[-121.45011294743107,38.549684195680214],[-121.4500052090907,38.54982544288434],[-121.44990839400734,38.54991045102709],[-121.44979594340423,38.54998234063277],[-121.449699429588,38.55002821947645],[-121.44951891505431,38.55008433921518],[-121.44933331573279,38.55011949667835],[-121.44909677163153,38.55018599055753],[-121.4489547333741,38.55024057546462],[-121.4487950303961,38.55031841746145],[-121.44866857032737,38.550392986093],[-121.44852967138063,38.550493581753145],[-121.4484575077827,38.5505557071057],[-121.44713022413951,38.549686803074884],[-121.4470121156909,38.54958601189142],[-121.44691509077803,38.54947193398819],[-121.44681346630534,38.54927477108812],[-121.44677639944342,38.5490947356286],[-121.44676504787944,38.546725473493716],[-121.4467742888356,38.546725703258176],[-121.4467868951227,38.546725844606144],[-121.44675107118009,38.54672512559179],[-121.44672785037156,38.546724658716286],[-121.4467152531745,38.54672423272111],[-121.44667945139392,38.54672302280029],[-121.44665624337638,38.54672223795407],[-121.4466436589856,38.54672163994056],[-121.44660788854556,38.546719939157285],[-121.4465847024969,38.546718836384244],[-121.44657213206695,38.546718065456986],[-121.44653640558039,38.546715874772495],[-121.44651324723714,38.54671445410011],[-121.44650069649721,38.54671351118753],[-121.44646502314258,38.54671083064577],[-121.44644190052162,38.54670909391427],[-121.4464293729136,38.54670797903277],[-121.4463937641566,38.546704809589656],[-121.44637068300155,38.546702755925644],[-121.44635818196733,38.54670146909177],[-121.44629961874841,38.546695442952384],[-121.44623139245003,38.546688297570164],[-121.44621933978684,38.54668718133512],[-121.4461731111683,38.546682899741874],[-121.44613893292137,38.54667973436389],[-121.44612685717927,38.54667878377425],[-121.44608053990225,38.5466751368538],[-121.4460462960823,38.54667243960227],[-121.44603420184916,38.546671654679926],[-121.44598781082375,38.54666864250338],[-121.44595351287926,38.54666641613569],[-121.44594140244867,38.54666579689157],[-121.44589495143097,38.546663420425595],[-121.44586060854407,38.54666166408471],[-121.4458484865039,38.546661210540755],[-121.44580198923593,38.54665947255373],[-121.44576761402321,38.54665818629987],[-121.44575548266008,38.54665789936797],[-121.44570895521312,38.546656798134926],[-121.4456745556886,38.54665598380837],[-121.44566242073746,38.54665586351591],[-121.44561587457322,38.546655399992616],[-121.4455814622063,38.54665505764817],[-121.44556932596778,38.54665510310535],[-121.44548836226357,38.546655406154954],[-121.4445295275268,38.54666556879816],[-121.44452956245422,38.54666800860186],[-121.44452245736392,38.54666544296821],[-121.4440119161098,38.54667088571002],[-121.44401148505091,38.546672175529004],[-121.44401147868186,38.54667152054437],[-121.44393565160242,38.54678170558967],[-121.44383416373053,38.54681777907573],[-121.44372845774227,38.54681924846146],[-121.44373312143706,38.54700390125039],[-121.44364863312785,38.547005096881435],[-121.44356376505245,38.547006298732796],[-121.44348081182277,38.54700747279397],[-121.44339613649474,38.54700867094488],[-121.44331298477786,38.54700984753466],[-121.44322563393553,38.5470110840411],[-121.44310281715568,38.54733265117087],[-121.44310804511679,38.54753814271469],[-121.44300310932579,38.54753971064491],[-121.44291862213689,38.54754097331897],[-121.44283298992457,38.547542252940794],[-121.44276970113219,38.547591020208266],[-121.44277753094326,38.54788219265221],[-121.44261901141103,38.547885867068025],[-121.44256917514463,38.54788588557432],[-121.44220325923499,38.54788673858171],[-121.44220186869954,38.54778078517151],[-121.44194460654174,38.547783863741664],[-121.44193886157139,38.54747165536009],[-121.44232303783113,38.5474672155296],[-121.4423925477529,38.547465461303254],[-121.4424019931338,38.547339841216925],[-121.44238749925607,38.54730627232235],[-121.44238225484133,38.547034881644116],[-121.44241659859155,38.54703375073653],[-121.44241539183768,38.546990426060276],[-121.4424107933544,38.54682532033702],[-121.4424100282797,38.54679785182192],[-121.44170241587581,38.54680533372483],[-121.4416935074508,38.54669558187544],[-121.43916176012394,38.546722316755464],[-121.43916659869595,38.5471494811767],[-121.43852841655789,38.54715678376544],[-121.43844966249064,38.547157712433666],[-121.43791235670507,38.547164048851144],[-121.43791335539869,38.54724669866297],[-121.4376774081528,38.54724805145128],[-121.43753283314716,38.54724887945046],[-121.43739205432344,38.547249685184894],[-121.43725211296807,38.547250486712585],[-121.43723832556364,38.54725056560913],[-121.43710693795184,38.54725131756811],[-121.43696683138862,38.54725211974905],[-121.43696487508315,38.54702329062902],[-121.43696251592317,38.54674752085414],[-121.43572158581813,38.54676259528609],[-121.43572558078272,38.54723320444837],[-121.435690848469,38.54726081613801],[-121.43551864727584,38.54726147086235],[-121.43533967866681,38.54726215176811],[-121.43534015291422,38.54728790180823],[-121.43514662595908,38.547289380745454],[-121.43507141697583,38.54728995505077],[-121.4349519735502,38.54729086737715],[-121.43478320877897,38.547292156705524],[-121.43476391321596,38.54729230389883],[-121.43460618267426,38.54729350812679],[-121.43460528734731,38.54719192275185],[-121.43460392246676,38.54703709548503],[-121.43460259206316,38.54688602604113],[-121.43424544418107,38.54689035886044],[-121.4341734233423,38.54678143293488],[-121.43400037200803,38.54689333070374],[-121.43388546017702,38.5468947244507],[-121.43389049275247,38.54716777679591],[-121.43370850375521,38.547169623283935],[-121.4335266730671,38.547171468458956],[-121.43333454104628,38.54717341695835],[-121.43315521827044,38.547175235992874],[-121.43297511648963,38.54717706264421],[-121.43279075833772,38.547178931215434],[-121.43260148526693,38.54718085016894],[-121.43240941743494,38.54718279744732],[-121.43222542752588,38.547184661518834],[-121.43203566798323,38.54718658436739],[-121.43185194536517,38.54718844555346],[-121.43167771409703,38.547190210719904],[-121.4314903178975,38.54719210914602],[-121.43131187957448,38.54719391615623],[-121.43130940332921,38.54692593476917],[-121.43118823525646,38.546927401398726],[-121.43103686538817,38.54681938433513],[-121.43103659577758,38.54681938751403],[-121.43096217102658,38.54693013681666],[-121.43096174005375,38.54709928956086],[-121.43057657324334,38.547095004815795],[-121.43057932258097,38.547238839891946],[-121.43058199969967,38.54737893137104],[-121.43043748485523,38.547380218370776],[-121.43043840155605,38.547500806605136],[-121.43044168602823,38.5479327486762],[-121.43017396000972,38.54793600003269],[-121.43016835706666,38.54752279697074],[-121.43016809273368,38.547503317300276],[-121.4301663939646,38.54737800629381],[-121.4301645489981,38.547241983761666],[-121.43016258423587,38.547097115598646],[-121.43016045243154,38.546939836708916],[-121.42986358921713,38.54694342582621],[-121.4297218401123,38.54683543731574],[-121.42972163591404,38.54683529396716],[-121.42972116896871,38.54683529977414],[-121.42972116916917,38.54683642319804],[-121.42963227003925,38.5469672147285],[-121.42964749565375,38.54699602669683],[-121.42964796174323,38.54709259021182],[-121.42927249071363,38.547094215577474],[-121.42889080175755,38.5470958666955],[-121.428890427523,38.54700945587393],[-121.42889352497254,38.546993103599654],[-121.42889868127006,38.54698338670879],[-121.42890610251648,38.54697461973402],[-121.4289101543175,38.546971037929865],[-121.42881629300662,38.546846278326555],[-121.42881628301413,38.54684623683579],[-121.42881578853769,38.54684624250321],[-121.42787017145959,38.54685766390664],[-121.42787051244336,38.546911434944356],[-121.42773065609762,38.546912422672555],[-121.4276436621869,38.546913036570565],[-121.42544603658975,38.54692853165892],[-121.4231722448464,38.5469445188895],[-121.42316803989004,38.54851052764829],[-121.42308001619334,38.548674040198165],[-121.42316739678112,38.54875019290757],[-121.4236023264583,38.54874624113558],[-121.42447071370626,38.54873834518694],[-121.42447401899047,38.549085279605684],[-121.42447541690473,38.54918421267311],[-121.42448943268094,38.55051286510229],[-121.42431848486508,38.55052424726929],[-121.4240734729836,38.55054343358699],[-121.42382892604921,38.5505659739535],[-121.42358491635154,38.55059186242564],[-121.4233415184967,38.55062109036978],[-121.42309880709139,38.55065364915287],[-121.42309795550517,38.55089523048582],[-121.42422297269299,38.55137889362575],[-121.42430125097066,38.55149258935179],[-121.42410113966835,38.55141687298406],[-121.42385967917582,38.55132176573697],[-121.42362037063069,38.551223363295456],[-121.42338328609017,38.551121695761594],[-121.42314849761028,38.55101679323774],[-121.4229160760691,38.550908689424624],[-121.42280462313875,38.55085520656752],[-121.422678076148,38.55079222758252],[-121.42255294868953,38.550727524910556],[-121.42242927848714,38.55066111586155],[-121.4223071032279,38.55059302224993],[-121.42218645945827,38.55052326498362],[-121.42206899565439,38.55045284779538],[-121.4219515036739,38.55037984746294],[-121.42183565279771,38.550305248902596],[-121.42143012417792,38.55002911492613],[-121.42053866248841,38.5492531634669],[-121.42028764683836,38.54899501073857],[-121.42019514632626,38.54890295180737]]]},"properties":{"ZIP5":"95820","PO_NAME":"SACRAMENTO","Shape_STAr":149384264.336,"Shape_STLe":82524.314333}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.43375993859719,38.55406671833237],[-121.43496515822589,38.55440058515604],[-121.4351247443457,38.55444479388275],[-121.4365446954633,38.5548381451693],[-121.43659945334929,38.55485331353821],[-121.43664966298154,38.554867221905],[-121.43664963432416,38.55485355781533],[-121.43664809510788,38.554118573583885],[-121.43729611715514,38.554299809789164],[-121.4378229855706,38.55444715933953],[-121.43833559569592,38.554590517468306],[-121.43833479261055,38.55396868183317],[-121.4391758172067,38.5542813817018],[-121.43919323674282,38.55428792286328],[-121.43923232514925,38.55430307981989],[-121.43959121045887,38.553707892805974],[-121.44028159982432,38.553670861842974],[-121.44028480207878,38.55367069084409],[-121.44035353414273,38.553667520539406],[-121.44042232535129,38.553665292821094],[-121.44049115504974,38.553664008490045],[-121.44082659815615,38.55366004775989],[-121.44082989909606,38.5536600204658],[-121.44083639145893,38.553660032915666],[-121.44084288311596,38.55366013545169],[-121.44084937178677,38.553660326261124],[-121.44085585402257,38.55366060622819],[-121.44086233097777,38.55366097445754],[-121.44086879690911,38.55366143182236],[-121.44087525296383,38.553661978328144],[-121.4408816945672,38.553662612151065],[-121.44088812285223,38.55366333509834],[-121.44088525685304,38.55316636423115],[-121.44313738177614,38.553785282318486],[-121.44307672349854,38.55392130284919],[-121.44331121763253,38.55398681203985],[-121.44337185408081,38.55384971560914],[-121.44721044719876,38.554904482872104],[-121.45249656711236,38.55635674228199],[-121.45248457928498,38.5563825395708],[-121.45234782978694,38.55668407300993],[-121.45248901788497,38.55672277877542],[-121.45252491763617,38.55684916455271],[-121.45265409607235,38.55676803427687],[-121.45278848804735,38.556466023570074],[-121.45280002354176,38.55644010158931],[-121.45637668799544,38.55742253847067],[-121.45637735554011,38.5574210596277],[-121.45654560009169,38.557463871284305],[-121.45670743619792,38.557508287744135],[-121.45687722876663,38.557554887255435],[-121.45701857180264,38.55759367829219],[-121.45703838289914,38.557599115365946],[-121.45716728963403,38.55763449292973],[-121.45719817588481,38.5576429693007],[-121.45736282595884,38.55768815659432],[-121.45752650989621,38.55773307876452],[-121.4576867465781,38.55777705392103],[-121.45785719763074,38.55782383255105],[-121.45799201175473,38.55786101703971],[-121.45802658575101,38.557870553699374],[-121.4581231324019,38.55789718408053],[-121.45818873228217,38.55791527764004],[-121.45825461270456,38.55793344905179],[-121.45835435852463,38.55796096087844],[-121.45838359256972,38.55796902379507],[-121.45851675621442,38.55800575310041],[-121.4585148268205,38.558009776495915],[-121.45906069705713,38.55815969088536],[-121.4588686064625,38.5585878404861],[-121.4589153193051,38.55860064353386],[-121.45875061936508,38.558954455418274],[-121.45829451588133,38.558825962424045],[-121.45818342476913,38.559068946314405],[-121.4579437146625,38.559004009641065],[-121.45786980767262,38.55916296038129],[-121.45780822838435,38.55929539591922],[-121.45772581873514,38.55927317745631],[-121.45766774362293,38.55940268340041],[-121.45774811526195,38.55942435181658],[-121.45769003087192,38.55955401088125],[-121.45763200929514,38.55968352967179],[-121.4576194889581,38.55971147723684],[-121.45757398750773,38.55981304843298],[-121.45738977095463,38.560224258702824],[-121.45884543911363,38.56062357742537],[-121.4589282092932,38.560645862532795],[-121.45905429868768,38.560678217593335],[-121.4588099701848,38.56126434867876],[-121.45847868963867,38.56117294807989],[-121.45791425276732,38.561017215282504],[-121.45780473964814,38.56103107615769],[-121.45772355973087,38.56121878996695],[-121.45726699437242,38.56109158090931],[-121.45706298224061,38.56103473773761],[-121.45567125407267,38.56416410064039],[-121.45587104973015,38.56421545164275],[-121.45583742500712,38.56429081230471],[-121.4556846821897,38.5646331437413],[-121.4567051127938,38.5649094534452],[-121.45641240988164,38.56559001625875],[-121.45515644330811,38.565233244403316],[-121.45514501600584,38.56525919956028],[-121.45508089182923,38.565407384731095],[-121.45503330050406,38.56551736401493],[-121.45498071565981,38.56563675127642],[-121.45491996088786,38.56577803332313],[-121.45485695818456,38.565924543478125],[-121.45480044828155,38.56605595538886],[-121.45474696862398,38.56618031579798],[-121.45469216279687,38.56630776272084],[-121.45463825748345,38.5664331165689],[-121.45463509801706,38.56644038004419],[-121.45463762413398,38.566441064917406],[-121.45477831183061,38.56648006723184],[-121.45493217590423,38.56652272150379],[-121.45508150226753,38.56656411907621],[-121.45522666422247,38.566604359921634],[-121.45529459003824,38.566618149826155],[-121.4554485577904,38.56666188227246],[-121.45539399086411,38.56678580813247],[-121.4554002758341,38.56678834220123],[-121.45535115857125,38.566899889207136],[-121.45526838563966,38.567087873123725],[-121.45536555464524,38.56711580056563],[-121.4552660363671,38.56734447315901],[-121.45512142473056,38.56730544757081],[-121.45497452526469,38.56726580472398],[-121.45481116662243,38.56763953182877],[-121.4541860802378,38.567468769305165],[-121.45416279438976,38.567523463877784],[-121.45412642694683,38.56760890749417],[-121.45407077548751,38.56773965463945],[-121.4540156192639,38.567869239232444],[-121.45397499221961,38.567964688813404],[-121.45395158283064,38.56801644132736],[-121.45390340761756,38.568128188571436],[-121.4538483897639,38.56825580797847],[-121.45379277472583,38.56838481282716],[-121.45376153301352,38.5684572814498],[-121.45371483976253,38.56856663561636],[-121.45369664967644,38.56860869651809],[-121.45363717047972,38.568746229883935],[-121.45357919102624,38.56888029643373],[-121.45352612721084,38.569002996098256],[-121.45351452009739,38.569028898898345],[-121.45478466556114,38.56937443976912],[-121.45454745336384,38.56992590920339],[-121.4548354731548,38.570002849610795],[-121.45432485633374,38.57110630410194],[-121.45324693328841,38.57082483922713],[-121.45300752662239,38.57134138988307],[-121.45324652086128,38.57140035034357],[-121.45299175949822,38.571957979702475],[-121.45314016543202,38.5719981816871],[-121.45334478221574,38.5715417347982],[-121.45348568554866,38.57157807839982],[-121.45327547849203,38.57203483606767],[-121.45344210601068,38.572079973259086],[-121.45365581828356,38.57162317237753],[-121.45404038146705,38.57172104326709],[-121.45382614109081,38.572184002701555],[-121.45373179819762,38.572158446789516],[-121.4538168468421,38.57232880534858],[-121.45382709110396,38.57241142375442],[-121.45382152349535,38.572439545165714],[-121.45379606652459,38.572510315873366],[-121.45353814207077,38.572446278931146],[-121.45347992413255,38.57256522002436],[-121.4532800076732,38.57251572028438],[-121.45322629866773,38.5726212618581],[-121.45322400219372,38.572625774423855],[-121.45316139954268,38.57274879193688],[-121.453159565617,38.57275239587775],[-121.45309650132623,38.5728763228853],[-121.4530713808754,38.572925686969555],[-121.45303160173023,38.57300385379163],[-121.45298231138993,38.573100711648685],[-121.45296670305665,38.573131383765876],[-121.45290180299659,38.573258914598945],[-121.45289324261496,38.57327573626419],[-121.45283690270452,38.57338644539532],[-121.45280882938539,38.573441610768405],[-121.45286881143404,38.57345635190222],[-121.45277883139141,38.57362755141341],[-121.45272149934652,38.573613217355444],[-121.45270697433544,38.57364146843952],[-121.45264149625484,38.57376882973092],[-121.4526345808867,38.57378227988419],[-121.45257601794735,38.57389619008415],[-121.45254475416286,38.57395700155543],[-121.45251053939917,38.574023551300954],[-121.45245492585828,38.57413172225014],[-121.45245220790744,38.57413700938218],[-121.45244123875145,38.574157384478035],[-121.4524391955776,38.57416117840856],[-121.452375724079,38.57427907339065],[-121.45236575492905,38.57429759195317],[-121.452308290556,38.5744043261533],[-121.45227035340436,38.57447479334425],[-121.45224155180958,38.57452829117699],[-121.45217812274062,38.57464610517295],[-121.45217442167697,38.57465297953446],[-121.45210472652029,38.57478243137862],[-121.45210255524364,38.5747864634352],[-121.45203749461687,38.57490730836551],[-121.45197151054033,38.57502986690243],[-121.4519529200174,38.575064397732326],[-121.45190413856155,38.57515603594021],[-121.45183623577962,38.57528359611668],[-121.4518316653849,38.57529217986064],[-121.45176848996381,38.57541085970092],[-121.451723025524,38.57549626671013],[-121.4517003468452,38.57553886730886],[-121.451663077617,38.57560887891111],[-121.451633239817,38.575664931141254],[-121.45160362671726,38.57572056010495],[-121.45156692089293,38.57578951308704],[-121.45154254773922,38.57583529751257],[-121.45150000902912,38.5759152083999],[-121.45148304289687,38.57594707929091],[-121.45162958592013,38.57598649867354],[-121.45178240977857,38.57602760706878],[-121.4516092528811,38.57634409792271],[-121.45164518263113,38.576363150955814],[-121.45181541257176,38.5764753397814],[-121.45195823959155,38.5766090283111],[-121.45214626765713,38.576819940305114],[-121.45195631414438,38.57689461762239],[-121.45175299328587,38.57697454933195],[-121.45187782087093,38.57712248871601],[-121.45197291186372,38.577235185480255],[-121.45206929059533,38.577349407174886],[-121.45216630879415,38.57746438766771],[-121.45226161111326,38.5775773320361],[-121.4523581170077,38.57769170363604],[-121.45245399540569,38.57780533164731],[-121.45255099665535,38.57792028920827],[-121.45269042405525,38.57808552642406],[-121.45262824312083,38.5781197837109],[-121.45278582428084,38.57829529129939],[-121.45288976969128,38.578411060670035],[-121.45299282669797,38.578525839263875],[-121.45309594775163,38.57864069013854],[-121.45319932176622,38.578755822293886],[-121.45330284747376,38.57887112173764],[-121.45340598203931,38.578985986808924],[-121.45350935592772,38.57910111597866],[-121.45351319888894,38.579105395369574],[-121.45361418676181,38.5792178681425],[-121.45362683658342,38.579231956636285],[-121.4537126574224,38.57932697760485],[-121.45373460686875,38.57935127931169],[-121.45380961997142,38.579434333024416],[-121.4538610323939,38.579491256504255],[-121.45390596484286,38.5795410052692],[-121.45408567023739,38.57973997120727],[-121.4554634981655,38.57901973039779],[-121.45549624131871,38.5790033889499],[-121.45563945009496,38.57894799048559],[-121.45579273836921,38.57891295358697],[-121.45595144885193,38.5788993446128],[-121.45611075827331,38.578907574212906],[-121.45626582657628,38.57893739532856],[-121.45832718028643,38.57948712621388],[-121.45766800540424,38.581015750335965],[-121.45761355764353,38.58101997183371],[-121.45754543864426,38.58117793512599],[-121.45747838429803,38.58117927317657],[-121.45609732134021,38.58139723681709],[-121.45448369277074,38.58186968237098],[-121.4529990689257,38.58255487312219],[-121.45191318480978,38.58312665065671],[-121.45182539715853,38.583172874566706],[-121.45166294554947,38.58329152301879],[-121.45150100010939,38.58341398084102],[-121.45134180214964,38.583538637940144],[-121.45118540016541,38.58366545671962],[-121.45103184036431,38.58379439867116],[-121.45088117010994,38.58392542439119],[-121.45073343562625,38.58405849356978],[-121.4507170133145,38.58407355256051],[-121.45057096704541,38.58421013854413],[-121.45042797870373,38.58434870372099],[-121.4502880922285,38.58448920686967],[-121.45015135157408,38.58463160496696],[-121.44995822329648,38.584841886226684],[-121.4499512635793,38.58485492880749],[-121.44991446202299,38.584925952896015],[-121.44987924398232,38.5849974691805],[-121.44987404684701,38.58500818049737],[-121.44984728230395,38.58506509463064],[-121.44982178784917,38.585122367044555],[-121.44979776084037,38.58517807165539],[-121.44976546661647,38.58525679547684],[-121.44973492741063,38.585335950151915],[-121.44970615259778,38.58541551140229],[-121.44969200994112,38.585460237771045],[-121.44967111551172,38.58553060946273],[-121.44965178795293,38.585601256165496],[-121.44963403431568,38.585672157192946],[-121.44961786051692,38.58574329005147],[-121.44960327016449,38.58581463403812],[-121.4490319476163,38.58603659367911],[-121.44831772771744,38.58642894231],[-121.44786258159291,38.58676900890685],[-121.44732815286321,38.58730960207764],[-121.44759279165767,38.5874435079071],[-121.44762439093991,38.58745066044774],[-121.44766964540965,38.587466768189785],[-121.44771064841096,38.58748879886449],[-121.44774615514898,38.5875160834776],[-121.44776807598836,38.58753510059937],[-121.44784810511538,38.5875903452036],[-121.44793914226216,38.58763384316625],[-121.44794209818212,38.58763499509511],[-121.44816670724694,38.587742842128236],[-121.4481882191843,38.58776607252618],[-121.448222665723,38.5877933474343],[-121.44826262236877,38.5878155125646],[-121.44830687647219,38.58783189546823],[-121.44830800113961,38.587832218844284],[-121.44831261925597,38.587833503007644],[-121.44831726540713,38.58783472424148],[-121.4483219373114,38.58783588073314],[-121.44832663380714,38.587836974278815],[-121.44833135491518,38.58783800217603],[-121.44834565029707,38.587845679277606],[-121.44839577628558,38.58787325225926],[-121.44844528181089,38.58790150604559],[-121.44849415200126,38.58793043426024],[-121.44854237085775,38.587960027818795],[-121.44854287477337,38.587960619406616],[-121.44854532657754,38.5879634355818],[-121.44854784177508,38.5879662178247],[-121.44855041807722,38.58796896522349],[-121.44855305549798,38.587971675976476],[-121.44855575173477,38.58797435097355],[-121.44862696708454,38.588010081931415],[-121.44871738326019,38.5880406403144],[-121.44871842537754,38.588040655186006],[-121.44872111425418,38.5880407193395],[-121.44879132482903,38.58807102830733],[-121.44885523553774,38.58811122073499],[-121.44887544291103,38.588118828614576],[-121.44903260612944,38.58819364036748],[-121.44917082984308,38.58828873473062],[-121.44928591465198,38.588401222435465],[-121.44946877700622,38.588564932181875],[-121.44964362158238,38.58878424933573],[-121.449950768144,38.590891948666055],[-121.44995005468833,38.590891731763904],[-121.44993192510624,38.59088637177947],[-121.44991367767078,38.590881260781224],[-121.44978853290299,38.590853384275455],[-121.44959630396605,38.59083354010372],[-121.44952794286446,38.590834482697915],[-121.44940670539287,38.59082315133995],[-121.44928981839497,38.59079546941522],[-121.44918083157802,38.59075227724405],[-121.4490830568084,38.59069488790005],[-121.44899946511919,38.590625045274976],[-121.44897658449541,38.590599346365046],[-121.44890770160963,38.590539044816154],[-121.44882652355453,38.59048904773795],[-121.44873551684282,38.590450873150175],[-121.44863744687562,38.59042568194301],[-121.44853529330753,38.59041423873835],[-121.44849463955654,38.59040839737833],[-121.4483873489178,38.59038231159198],[-121.44828746081158,38.590342000651006],[-121.44824565285342,38.590319477166815],[-121.44816181870193,38.59026080932513],[-121.44809223892209,38.590191607589176],[-121.44805881186497,38.59015927175476],[-121.44792751996934,38.59005798571986],[-121.44777581361296,38.589976130958064],[-121.44760952392718,38.58988257762273],[-121.44745938796572,38.58976301830987],[-121.44738725924284,38.58971835347338],[-121.44726133837037,38.589616676992954],[-121.44715982755119,38.58949938362629],[-121.44708580978663,38.589370037701215],[-121.44707016173784,38.589333381078724],[-121.4470296774667,38.58924225732105],[-121.4469871721224,38.58915170137197],[-121.4469426604096,38.58906174212815],[-121.44689615475805,38.58897240577276],[-121.44687545410524,38.58893988894149],[-121.44671481831291,38.58874060479127],[-121.44643365345381,38.58850845602127],[-121.44637361183912,38.588454526728725],[-121.44628949518606,38.5883997561519],[-121.44619453942843,38.5883572813912],[-121.44609162820753,38.58832839368978],[-121.44608996919453,38.5883280001685],[-121.44584812025877,38.58825185211012],[-121.44562679440392,38.58814389827336],[-121.4454327155726,38.588007420522445],[-121.44527178129837,38.587846563456324],[-121.44526503146875,38.58783837437836],[-121.445251140959,38.58782103939568],[-121.44523763873143,38.58780351708289],[-121.44522452934208,38.587785811966434],[-121.44521181389649,38.587767929457115],[-121.44519949922505,38.58774987679507],[-121.44518758759511,38.5877316575948],[-121.44518726503811,38.587730331727656],[-121.44515940839516,38.587653454261094],[-121.44511496728919,38.587581540542566],[-121.44505529065992,38.58751677719367],[-121.44498219170652,38.58746113143683],[-121.44489789209219,38.587416293173604],[-121.444804953463,38.58738362511054],[-121.44474246072268,38.58733874174692],[-121.44446448869344,38.58709240437269],[-121.44434623640406,38.58697033988811],[-121.4441632317208,38.586787003308984],[-121.44414279787173,38.58677012686742],[-121.44410590591995,38.5867305219022],[-121.44407833773981,38.58668649143103],[-121.44406092883924,38.58663937190208],[-121.44405420865543,38.586590595588945],[-121.44405838369919,38.586541644563304],[-121.44407332298125,38.58649400648039],[-121.44409857674512,38.58644912782251],[-121.44413337449025,38.58640837334962],[-121.4441606513105,38.58639198091006],[-121.44420262906411,38.58635866897845],[-121.44423659899871,38.58632014202822],[-121.44426152931122,38.586277569886285],[-121.44427666155933,38.586232247113756],[-121.44428153738792,38.58618555079087],[-121.44427600803827,38.58613889822],[-121.44426024152644,38.586093709122025],[-121.44425129010276,38.585973020453885],[-121.44423003958272,38.58590395102243],[-121.44418331258831,38.58581425933047],[-121.4441174525386,38.585732298267644],[-121.4440344601699,38.5856605602863],[-121.44399059116614,38.585626287532705],[-121.44392861159926,38.58557929717787],[-121.44386559587466,38.58553316217112],[-121.44380156453207,38.585487897924715],[-121.44373653698449,38.58544351714284],[-121.44367053148287,38.58540003432587],[-121.4436035708831,38.58535746219462],[-121.44359263938316,38.58534995111816],[-121.44343961617025,38.5852632887806],[-121.44326974522163,38.58519879833855],[-121.44308818763407,38.58515844057595],[-121.44307383793307,38.58515315714821],[-121.4429760655377,38.58511808867508],[-121.4428775274835,38.58508436598162],[-121.44277825583946,38.58505199732834],[-121.44267827806222,38.585020993656364],[-121.44265742158542,38.585010868054],[-121.4426123429882,38.58499492224869],[-121.4425644207891,38.58498536362387],[-121.44251511269917,38.58498248117647],[-121.44246591587307,38.58498636319512],[-121.44241832449403,38.584996890749856],[-121.44237378609832,38.585013745589706],[-121.4423637559461,38.58501649187136],[-121.44224981374585,38.58503842227368],[-121.44213274960777,38.58504448890268],[-121.44201612318719,38.58503450710209],[-121.4419034765324,38.5850087822343],[-121.44186674361707,38.5849956268114],[-121.44149470531505,38.58486575372332],[-121.44111983802883,38.58474099549784],[-121.44106985315828,38.584727982157965],[-121.44066792721624,38.58458786663458],[-121.44030310694562,38.58439509674586],[-121.44003819931805,38.58425649535674],[-121.43968529183265,38.584129751278574],[-121.4395924730031,38.58408823094307],[-121.43912475481784,38.58387389618131],[-121.4390245700364,38.583817666754435],[-121.43873004285321,38.58360866038469],[-121.43860808686881,38.58353580525619],[-121.43850105924906,38.58344526296649],[-121.43849266667273,38.583439013264936],[-121.43845037916952,38.58340030732947],[-121.43841729730666,38.58335642621894],[-121.43839442519847,38.583308702737746],[-121.43838245958322,38.58325858621542],[-121.43838176261329,38.583207600031514],[-121.43839235534878,38.58315729383549],[-121.43841391584137,38.58310919579016],[-121.43841972506839,38.58308712580426],[-121.43843222320338,38.58298635415103],[-121.4384222370802,38.58288540947522],[-121.43839007204228,38.58278735991367],[-121.43838693008081,38.58277139694978],[-121.43837092004195,38.58272607251079],[-121.43834512582193,38.58268361951958],[-121.43831033152289,38.58264532735721],[-121.4382675942458,38.58261235970126],[-121.43821821339199,38.582585717440914],[-121.43816368841836,38.58256621054575],[-121.4381056777197,38.582554432641814],[-121.438045941409,38.582550740014376],[-121.43798629546156,38.582555245079504],[-121.43798182363574,38.582555563011084],[-121.43793880985379,38.582558295637945],[-121.43789574103786,38.58256043789244],[-121.43785263210911,38.58256198984695],[-121.43777679033109,38.58256328734141],[-121.43734718993703,38.582535976084216],[-121.43734047612939,38.582534893908345],[-121.43720411946803,38.582513938392324],[-121.43706731771172,38.582494854422336],[-121.43693011212437,38.58247764760288],[-121.43679254513208,38.582462321742554],[-121.43674745483013,38.58246043572386],[-121.43659026047341,38.5824398618896],[-121.43644000469722,38.582398174799266],[-121.43630125481053,38.582336640859175],[-121.43628727385916,38.58233159621775],[-121.43626663550032,38.58232443717991],[-121.43624584225918,38.58231756116762],[-121.43622489869777,38.582310971806535],[-121.43616646002262,38.58229430616646],[-121.43594741969206,38.582252745593756],[-121.43572251337636,38.58224167128927],[-121.43566343924319,38.58223745453261],[-121.43555847360697,38.58223109420454],[-121.43545338297434,38.58222617280942],[-121.43534819946717,38.582222691404496],[-121.43524295291212,38.58222065103596],[-121.43513767772664,38.58222005277245],[-121.43482533465779,38.58221504107855],[-121.43451360260637,38.58225283597586],[-121.43440700153761,38.58227918639364],[-121.43428263666706,38.582292961643724],[-121.43415711437703,38.58228957526944],[-121.43403424786798,38.582269132393584],[-121.43393485883225,38.58226180506215],[-121.43375519832567,38.58226773371039],[-121.43357957807142,38.58229806019508],[-121.43357132436024,38.582300121614],[-121.43355423810982,38.5823045794555],[-121.43353725445205,38.5823092702286],[-121.4335203779775,38.58231419395582],[-121.43350361330543,38.582319347056234],[-121.43348696617424,38.58232472955787],[-121.43347044004118,38.58233033967597],[-121.43346957741487,38.58233056878791],[-121.43321485817886,38.58237934905787],[-121.4329532183799,38.58239266969058],[-121.4326926063105,38.58237012453976],[-121.43265252512505,38.58236186237829],[-121.43249008894945,38.58234291133559],[-121.43232592722153,38.58234638761447],[-121.43216502756006,38.58237218684186],[-121.43211027930245,38.582383835416415],[-121.43205045840031,38.58239572214392],[-121.4319903811831,38.58240678776423],[-121.43193006719237,38.58241702876916],[-121.43186953481484,38.582426442545916],[-121.43184154763598,38.582432136731406],[-121.431783845869,38.5824503021825],[-121.43173103842896,38.58247605648445],[-121.43168473148589,38.58250861834001],[-121.43164633088827,38.58254699646115],[-121.4315091804053,38.58262440680317],[-121.4312831247125,38.582716397402876],[-121.43104015271568,38.582776177441005],[-121.43098188530148,38.58277799919154],[-121.43088636435681,38.58279160084662],[-121.43079530343928,38.582818015328],[-121.43071146925132,38.58285644003517],[-121.43070182170271,38.58285782232522],[-121.43047633035613,38.58290708084313],[-121.43026516188195,38.58298632469141],[-121.43021914682309,38.58300765227782],[-121.43012727046006,38.583038091048024],[-121.430030055122,38.583055544916476],[-121.42993045483324,38.583059482469324],[-121.4298361672062,38.58307379383719],[-121.42939371229929,38.583179844593054],[-121.42918417085794,38.58325760531015],[-121.42893835448074,38.58331208585485],[-121.42891650955373,38.5833219330514],[-121.4287476359107,38.583381471065884],[-121.428568156632,38.58341708804405],[-121.42838352324729,38.58342770004116],[-121.42827829711453,38.58342906605976],[-121.42811788247015,38.58344942244161],[-121.42796440754273,38.58349133449258],[-121.42785109657142,38.58352230880138],[-121.42765039836229,38.58355370689112],[-121.42744580175884,38.58355727276559],[-121.42743197501329,38.583557086370234],[-121.4273908016161,38.58355690797071],[-121.42734963057805,38.58355729353173],[-121.42710301524507,38.58357146717284],[-121.42670107067052,38.58363963247268],[-121.42665362548532,38.58365077950329],[-121.42634696828404,38.58369700911945],[-121.42603474280783,38.58370073918081],[-121.4258710088798,38.583660040008105],[-121.4256524985554,38.58363382653234],[-121.42543150828358,38.583637794910366],[-121.42521475318536,38.58367182351186],[-121.4251031139216,38.58368644939446],[-121.42497708840389,38.583686425351445],[-121.42485298270901,38.583669225133775],[-121.42482108262296,38.58366598468151],[-121.42460982838583,38.58366130977456],[-121.42440074926303,38.58368549933204],[-121.42436429565733,38.58369268475812],[-121.4240720298546,38.5837268150503],[-121.42377665449726,38.583720590414345],[-121.42375816564545,38.583717829027385],[-121.42355670748242,38.583689293760784],[-121.42335464635556,38.58366352360668],[-121.42327786860922,38.58364482677945],[-121.42297786746488,38.58359938518947],[-121.42297394844098,38.583598461153606],[-121.4225529271215,38.58346658916368],[-121.42249495075173,38.58345575314953],[-121.42234860869918,38.583413259156394],[-121.42221389158004,38.58335146354085],[-121.42209489207708,38.583272245329404],[-121.42205796497107,38.58325131416485],[-121.42163397275527,38.58295957990413],[-121.42163057151548,38.58295623768933],[-121.42160277418795,38.58292947180771],[-121.42157438725505,38.58290309126181],[-121.4215454186925,38.58287710329815],[-121.42151587532098,38.582851516058525],[-121.42148576855188,38.58282633770763],[-121.42145510636801,38.582801574591244],[-121.42142389787075,38.58277723666429],[-121.42139215334556,38.58275332938311],[-121.42135988191548,38.58272986000005],[-121.42115123879823,38.582663458506644],[-121.42075719922997,38.58248808692357],[-121.42032078625373,38.58223243429501],[-121.41994397800055,38.582014657917775],[-121.41994482884796,38.57939047092355],[-121.42110467550121,38.57718251567714],[-121.42119583677004,38.576837484192644],[-121.42120027509726,38.57674493343376],[-121.42129135986679,38.574845374846085],[-121.42161402990169,38.57393253359815],[-121.42147858054656,38.572965760590634],[-121.42207074178468,38.571360853938955],[-121.42208161155953,38.57125743525657],[-121.4222781151675,38.56938776789371],[-121.4222282904507,38.569130850798295],[-121.42235990741887,38.568822890613326],[-121.4220800632318,38.56680946801587],[-121.4218234325294,38.56576424423016],[-121.42182013896765,38.56575082958204],[-121.42181511143458,38.56574125492061],[-121.42180508814911,38.565722857107126],[-121.4217946563707,38.56570460049538],[-121.42178382066004,38.56568648871167],[-121.42177258325383,38.565668528974335],[-121.42176094986026,38.56565072491525],[-121.42174892156854,38.5656330837471],[-121.4217365029321,38.565615609996854],[-121.42172369734963,38.565598309086866],[-121.42171051051464,38.565581186450835],[-121.42169167776656,38.565544004075974],[-121.42167366877119,38.56550655734528],[-121.4216564959592,38.565468869744635],[-121.42164016152938,38.56543095299712],[-121.42162467457236,38.5653928179594],[-121.42161003614666,38.56535447544783],[-121.42159625301878,38.56531593991098],[-121.42159500276523,38.565313331861866],[-121.42158393647766,38.56528956395223],[-121.42157340037878,38.56526564824052],[-121.42156339670443,38.56524159194529],[-121.42155392998545,38.56521740229654],[-121.42154500245779,38.56519308651279],[-121.42153661635737,38.56516865181246],[-121.4215287762075,38.56514410632651],[-121.42152148080922,38.56511945635527],[-121.42143764456199,38.564900693210575],[-121.42133966725595,38.56465961066027],[-121.42130346988685,38.56457892429304],[-121.42095383148099,38.563822918075935],[-121.42079210122236,38.56355281158334],[-121.42060034709142,38.563245697811496],[-121.42052437659285,38.563152577853785],[-121.42040166012302,38.56299741476293],[-121.42028241143123,38.56284059233101],[-121.42016666680924,38.562682161201074],[-121.4200544625915,38.562522166610826],[-121.4200307046812,38.56248919351224],[-121.41999871285135,38.56244634311186],[-121.41996577311508,38.56240393750167],[-121.41993189683745,38.56236199025143],[-121.41971125971446,38.562119238324904],[-121.419240526276,38.561726694392355],[-121.41921510114958,38.56170888663288],[-121.4191050124518,38.56161364677031],[-121.41882482273249,38.5613682726032],[-121.41830048224116,38.56100584840339],[-121.41800335465472,38.56082736097963],[-121.41755654233812,38.56051947905456],[-121.41749606235099,38.560480659361055],[-121.41725753231081,38.560359536984265],[-121.41705678290829,38.56032130352744],[-121.41704438809818,38.56031830055748],[-121.41674959365119,38.56024688382992],[-121.41539160468308,38.55991788740186],[-121.41542799846198,38.55790841452628],[-121.41545692399768,38.55631121037257],[-121.41548522297938,38.554748600337454],[-121.41549332814978,38.55430100232621],[-121.41549543238129,38.55418431289913],[-121.41840537144809,38.55420755056927],[-121.41847341547773,38.554332931268476],[-121.41876250206833,38.55433423486143],[-121.41920921522524,38.55433624779838],[-121.42002519527875,38.55433992005123],[-121.42416534815999,38.554358465092164],[-121.4228984270408,38.55273747433707],[-121.42337842989268,38.5528571579433],[-121.42283016075518,38.55214871409213],[-121.42208355417954,38.55118396467317],[-121.42155635243759,38.55102138205751],[-121.42126390782232,38.55065859917875],[-121.42178999569664,38.55080305865864],[-121.42266965697303,38.55104460089617],[-121.4231454454805,38.55117524198206],[-121.42430125097066,38.55149258935179],[-121.42422297269299,38.55137889362575],[-121.42309795550517,38.55089523048582],[-121.42309880709139,38.55065364915287],[-121.4251588710726,38.550484056308534],[-121.42761415074914,38.55059265697098],[-121.42765075972032,38.55059684974627],[-121.42789404017583,38.550626675209344],[-121.42790560688013,38.55245311999828],[-121.42801070054462,38.552482765588366],[-121.42919387237437,38.55281925858333],[-121.43061882350442,38.55322449404267],[-121.43096038771779,38.553291108205855],[-121.43375993859719,38.55406671833237]]]},"properties":{"ZIP5":"95819","PO_NAME":"SACRAMENTO","Shape_STAr":110685523.004,"Shape_STLe":60857.8004514}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.41584663552794,38.630249843496685],[-121.41561256987218,38.63020816312336],[-121.41556090420188,38.6302271835599],[-121.41548412506422,38.630255449332964],[-121.41588905798821,38.62962642664035],[-121.41594426408192,38.629540669036594],[-121.41587008902398,38.62954390407655],[-121.41579632448912,38.62953698619676],[-121.41572521180397,38.62952012670113],[-121.41565891288508,38.62949383649803],[-121.41561534493313,38.62946953749217],[-121.4155763313983,38.62944474793176],[-121.41564426709688,38.62938190240317],[-121.41648579667421,38.62862483051284],[-121.41922307157287,38.62616212367713],[-121.42051929254502,38.6249958398338],[-121.42071763543626,38.62480916270534],[-121.41989820068932,38.624796156864626],[-121.41922416641809,38.625418611253764],[-121.4195203369118,38.625091107827224],[-121.41973950920692,38.62472823516719],[-121.41987502432747,38.62434101890234],[-121.41992276716739,38.623941225184076],[-121.41992262439334,38.62390034074027],[-121.41990964662743,38.623023274216074],[-121.4199784010569,38.622997324828475],[-121.41997314029122,38.62067398524596],[-121.41997210753748,38.62021825811584],[-121.41934051683094,38.619949784285595],[-121.41929007820299,38.619927894529965],[-121.41927896228184,38.61992294871953],[-121.41927139402868,38.61917005399337],[-121.41933250700988,38.61856734302882],[-121.41952609230668,38.61798211394961],[-121.41984626631144,38.61743214743096],[-121.42028329778967,38.61693415407618],[-121.42071447106906,38.61657895215405],[-121.42077051734086,38.61652265862405],[-121.41993773756143,38.616516505661444],[-121.41994290173606,38.615602850546885],[-121.42029626884832,38.615604924101724],[-121.42029703861553,38.615458700188704],[-121.42029777173323,38.615319525633424],[-121.42003202591997,38.615318622363716],[-121.42003480244833,38.61518239767484],[-121.42003549932646,38.61514825075064],[-121.41994547395424,38.6151477945508],[-121.41994751945433,38.61478584842467],[-121.41994713315367,38.61403657430645],[-121.41994567212224,38.61289336636066],[-121.41994563183071,38.612862327451495],[-121.41994544217427,38.6127141509751],[-121.41994526758103,38.61257767276006],[-121.41994507604964,38.6124276097885],[-121.4199449359974,38.612318078565394],[-121.41994489241065,38.61228433964188],[-121.41994470992063,38.612141069500375],[-121.4199445262905,38.6119977984517],[-121.41994434265376,38.61185452830332],[-121.4199443002768,38.61182064073689],[-121.41994415355225,38.61170586083491],[-121.41994397653067,38.611567988010535],[-121.41994387818886,38.61149129750234],[-121.42067021096246,38.61149301023325],[-121.42077517909566,38.611503367638],[-121.42077614232527,38.611079909824724],[-121.42077540752182,38.61107919714174],[-121.42058229331496,38.610971636743265],[-121.4200711784084,38.610969495829025],[-121.42007309965824,38.610598733732004],[-121.42058268533563,38.61059883096694],[-121.42058285880144,38.610433500466286],[-121.42058303226644,38.61026816996491],[-121.42058317634374,38.610130052802724],[-121.42058332043516,38.60999193383825],[-121.42058346573272,38.609853807672124],[-121.42079001606635,38.609853848899746],[-121.42079003716124,38.6097158392307],[-121.42079003851751,38.609705495103434],[-121.42079004005392,38.60969428070768],[-121.4207900583298,38.60957909262331],[-121.42079006284177,38.609551398078274],[-121.42079007886984,38.60944086853621],[-121.42079008367983,38.609403808235875],[-121.42079010100004,38.60930202463732],[-121.42079010645497,38.60926191659527],[-121.42079012159247,38.609164924872694],[-121.42079012837118,38.60912479521552],[-121.42079013004869,38.6091145528914],[-121.4207901444645,38.60902542422032],[-121.42061453483635,38.60902599271918],[-121.42061452924884,38.60888805858743],[-121.42034586937551,38.60888756206047],[-121.42034866330589,38.60862833033639],[-121.42042341995128,38.608628389137905],[-121.42042471472857,38.6083459120931],[-121.42042548167547,38.60817852148928],[-121.42042623821104,38.608013400199916],[-121.42042698648078,38.607850284272075],[-121.42042817656943,38.60759043100155],[-121.4199487208735,38.60758673703973],[-121.41995608454233,38.60616574628785],[-121.41995619298216,38.60616568286706],[-121.42015895224979,38.60612402343857],[-121.42036259508751,38.60612533290667],[-121.42036646593407,38.60584390747312],[-121.42009773689303,38.60584259645414],[-121.41995776678783,38.60584122074483],[-121.41995932709368,38.605540153128],[-121.41995961007059,38.605412913206315],[-121.41995944390227,38.605183370215606],[-121.42049158461846,38.60518374316921],[-121.42049174357813,38.605024460313544],[-121.42049189897904,38.60486716932964],[-121.42043584323237,38.60470027274437],[-121.41995909006572,38.60469474630768],[-121.41995873161474,38.60419822147551],[-121.41995866515632,38.60410773022143],[-121.42041872683471,38.604113541616535],[-121.42051983698306,38.604029641339444],[-121.42041737628068,38.603953120571596],[-121.42041769046952,38.60364197554412],[-121.4199583302421,38.60364359916871],[-121.41995810866302,38.60333759288414],[-121.42043333301837,38.60333347388943],[-121.42052454827777,38.603260970030334],[-121.42051657482386,38.603242042761266],[-121.42048057886039,38.60315659874506],[-121.42048155085988,38.60299319652915],[-121.42048253091798,38.60282851957911],[-121.42048351987778,38.60266232285433],[-121.4204844994376,38.602497564819416],[-121.42053761273019,38.602424914428],[-121.42057485781059,38.60237396748697],[-121.42048061452896,38.60231403110461],[-121.41995736550302,38.602311500728426],[-121.41995692844255,38.60170622149499],[-121.42049139002424,38.60170840800426],[-121.42049247174788,38.601544354079735],[-121.42049361130817,38.60137148693696],[-121.42009665231271,38.60136966922713],[-121.4200967815902,38.60118054298113],[-121.42008990998036,38.60107275008865],[-121.42007912928025,38.60096496014254],[-121.42007874388705,38.6008011529212],[-121.42047456948804,38.600795834410995],[-121.42048724012585,38.60070714833174],[-121.42031249946736,38.60063030986259],[-121.42035110401551,38.600340120419055],[-121.42014838874204,38.600335483062054],[-121.42015124999813,38.60021895422525],[-121.42012175029923,38.600207928143256],[-121.42009884764964,38.60018131618054],[-121.42009562856894,38.599958393004464],[-121.42048862378168,38.59996499272017],[-121.42054944731908,38.59989449892795],[-121.4204194197999,38.59979672398431],[-121.42009550624891,38.599789760072746],[-121.42009574286328,38.59958813977049],[-121.4200953594881,38.5995878495626],[-121.42009520008124,38.59936871737789],[-121.42009501885404,38.599119091408916],[-121.42041455903562,38.59911967849844],[-121.4205028072289,38.599019179664644],[-121.42033730020346,38.598937882012635],[-121.42009480101895,38.59881876618876],[-121.42009319839269,38.59826661347102],[-121.42014335473384,38.598231145732655],[-121.42051357125806,38.597761877607674],[-121.4206971804718,38.59751151534943],[-121.42037363708806,38.597383018056185],[-121.41995410951752,38.59738721650651],[-121.41995380231687,38.59738716001278],[-121.41995285486142,38.596077092970816],[-121.41999234478536,38.59607131239741],[-121.42001892854434,38.59321472456843],[-121.42002870580825,38.592164128115606],[-121.42002880229813,38.59205429441781],[-121.4200053299369,38.58894162688764],[-121.41993602035703,38.58883098693823],[-121.41994091150337,38.58772243259887],[-121.41994222423347,38.58742495099987],[-121.41994238155927,38.586942233048184],[-121.420642770849,38.58725888556547],[-121.42176152294626,38.58621476060449],[-121.41994288389361,38.585392532503406],[-121.41994300370467,38.58502169538826],[-121.41994355781249,38.58331036716208],[-121.41994390848059,38.58223054670055],[-121.41994397800055,38.582014657917775],[-121.42032078625373,38.58223243429501],[-121.42075719922997,38.58248808692357],[-121.42115123879823,38.582663458506644],[-121.42135988191548,38.58272986000005],[-121.42139215334556,38.58275332938311],[-121.42142389787075,38.58277723666429],[-121.42145510636801,38.582801574591244],[-121.42148576855188,38.58282633770763],[-121.42151587532098,38.582851516058525],[-121.4215454186925,38.58287710329815],[-121.42157438725505,38.58290309126181],[-121.42160277418795,38.58292947180771],[-121.42163057151548,38.58295623768933],[-121.42163397275527,38.58295957990413],[-121.42205796497107,38.58325131416485],[-121.42209489207708,38.583272245329404],[-121.42221389158004,38.58335146354085],[-121.42234860869918,38.583413259156394],[-121.42249495075173,38.58345575314953],[-121.4225529271215,38.58346658916368],[-121.42297394844098,38.583598461153606],[-121.42297786746488,38.58359938518947],[-121.42327786860922,38.58364482677945],[-121.42335464635556,38.58366352360668],[-121.42355670748242,38.583689293760784],[-121.42375816564545,38.583717829027385],[-121.42377665449726,38.583720590414345],[-121.4240720298546,38.5837268150503],[-121.42436429565733,38.58369268475812],[-121.42440074926303,38.58368549933204],[-121.42460982838583,38.58366130977456],[-121.42482108262296,38.58366598468151],[-121.42485298270901,38.583669225133775],[-121.42497708840389,38.583686425351445],[-121.4251031139216,38.58368644939446],[-121.42521475318536,38.58367182351186],[-121.42543150828358,38.583637794910366],[-121.4256524985554,38.58363382653234],[-121.4258710088798,38.583660040008105],[-121.42603474280783,38.58370073918081],[-121.42634696828404,38.58369700911945],[-121.42665362548532,38.58365077950329],[-121.42670107067052,38.58363963247268],[-121.42710301524507,38.58357146717284],[-121.42734963057805,38.58355729353173],[-121.4273908016161,38.58355690797071],[-121.42743197501329,38.583557086370234],[-121.42744580175884,38.58355727276559],[-121.42765039836229,38.58355370689112],[-121.42785109657142,38.58352230880138],[-121.42796440754273,38.58349133449258],[-121.42811788247015,38.58344942244161],[-121.42827829711453,38.58342906605976],[-121.42838352324729,38.58342770004116],[-121.428568156632,38.58341708804405],[-121.4287476359107,38.583381471065884],[-121.42891650955373,38.5833219330514],[-121.42893835448074,38.58331208585485],[-121.42918417085794,38.58325760531015],[-121.42939371229929,38.583179844593054],[-121.4298361672062,38.58307379383719],[-121.42993045483324,38.583059482469324],[-121.430030055122,38.583055544916476],[-121.43012727046006,38.583038091048024],[-121.43021914682309,38.58300765227782],[-121.43026516188195,38.58298632469141],[-121.43047633035613,38.58290708084313],[-121.43070182170271,38.58285782232522],[-121.43071146925132,38.58285644003517],[-121.43079530343928,38.582818015328],[-121.43088636435681,38.58279160084662],[-121.43098188530148,38.58277799919154],[-121.43104015271568,38.582776177441005],[-121.4312831247125,38.582716397402876],[-121.4315091804053,38.58262440680317],[-121.43164633088827,38.58254699646115],[-121.43168473148589,38.58250861834001],[-121.43173103842896,38.58247605648445],[-121.431783845869,38.5824503021825],[-121.43184154763598,38.582432136731406],[-121.43186953481484,38.582426442545916],[-121.43193006719237,38.58241702876916],[-121.4319903811831,38.58240678776423],[-121.43205045840031,38.58239572214392],[-121.43211027930245,38.582383835416415],[-121.43216502756006,38.58237218684186],[-121.43232592722153,38.58234638761447],[-121.43249008894945,38.58234291133559],[-121.43265252512505,38.58236186237829],[-121.4326926063105,38.58237012453976],[-121.4329532183799,38.58239266969058],[-121.43321485817886,38.58237934905787],[-121.43346957741487,38.58233056878791],[-121.43347044004118,38.58233033967597],[-121.43348696617424,38.58232472955787],[-121.43350361330543,38.582319347056234],[-121.4335203779775,38.58231419395582],[-121.43353725445205,38.5823092702286],[-121.43355423810982,38.5823045794555],[-121.43357132436024,38.582300121614],[-121.43357957807142,38.58229806019508],[-121.43375519832567,38.58226773371039],[-121.43393485883225,38.58226180506215],[-121.43403424786798,38.582269132393584],[-121.43415711437703,38.58228957526944],[-121.43428263666706,38.582292961643724],[-121.43440700153761,38.58227918639364],[-121.43451360260637,38.58225283597586],[-121.43482533465779,38.58221504107855],[-121.43513767772664,38.58222005277245],[-121.43524295291212,38.58222065103596],[-121.43534819946717,38.582222691404496],[-121.43545338297434,38.58222617280942],[-121.43555847360697,38.58223109420454],[-121.43566343924319,38.58223745453261],[-121.43572251337636,38.58224167128927],[-121.43594741969206,38.582252745593756],[-121.43616646002262,38.58229430616646],[-121.43622489869777,38.582310971806535],[-121.43624584225918,38.58231756116762],[-121.43626663550032,38.58232443717991],[-121.43628727385916,38.58233159621775],[-121.43630125481053,38.582336640859175],[-121.43644000469722,38.582398174799266],[-121.43659026047341,38.5824398618896],[-121.43674745483013,38.58246043572386],[-121.43679254513208,38.582462321742554],[-121.43693011212437,38.58247764760288],[-121.43706731771172,38.582494854422336],[-121.43720411946803,38.582513938392324],[-121.43734047612939,38.582534893908345],[-121.43734718993703,38.582535976084216],[-121.43777679033109,38.58256328734141],[-121.43785263210911,38.58256198984695],[-121.43789574103786,38.58256043789244],[-121.43793880985379,38.582558295637945],[-121.43798182363574,38.582555563011084],[-121.43798629546156,38.582555245079504],[-121.438045941409,38.582550740014376],[-121.4381056777197,38.582554432641814],[-121.43816368841836,38.58256621054575],[-121.43821821339199,38.582585717440914],[-121.4382675942458,38.58261235970126],[-121.43831033152289,38.58264532735721],[-121.43834512582193,38.58268361951958],[-121.43837092004195,38.58272607251079],[-121.43838693008081,38.58277139694978],[-121.43839007204228,38.58278735991367],[-121.4384222370802,38.58288540947522],[-121.43843222320338,38.58298635415103],[-121.43841972506839,38.58308712580426],[-121.43841391584137,38.58310919579016],[-121.43839235534878,38.58315729383549],[-121.43838176261329,38.583207600031514],[-121.43838245958322,38.58325858621542],[-121.43839442519847,38.583308702737746],[-121.43841729730666,38.58335642621894],[-121.43845037916952,38.58340030732947],[-121.43849266667273,38.583439013264936],[-121.43850105924906,38.58344526296649],[-121.43860808686881,38.58353580525619],[-121.43873004285321,38.58360866038469],[-121.4390245700364,38.583817666754435],[-121.43912475481784,38.58387389618131],[-121.4395924730031,38.58408823094307],[-121.43968529183265,38.584129751278574],[-121.44003819931805,38.58425649535674],[-121.44030310694562,38.58439509674586],[-121.44066792721624,38.58458786663458],[-121.44106985315828,38.584727982157965],[-121.44111983802883,38.58474099549784],[-121.44149470531505,38.58486575372332],[-121.44186674361707,38.5849956268114],[-121.4419034765324,38.5850087822343],[-121.44201612318719,38.58503450710209],[-121.44213274960777,38.58504448890268],[-121.44224981374585,38.58503842227368],[-121.4423637559461,38.58501649187136],[-121.44237378609832,38.585013745589706],[-121.44241832449403,38.584996890749856],[-121.44246591587307,38.58498636319512],[-121.44251511269917,38.58498248117647],[-121.4425644207891,38.58498536362387],[-121.4426123429882,38.58499492224869],[-121.44265742158542,38.585010868054],[-121.44267827806222,38.585020993656364],[-121.44277825583946,38.58505199732834],[-121.4428775274835,38.58508436598162],[-121.4429760655377,38.58511808867508],[-121.44307383793307,38.58515315714821],[-121.44308818763407,38.58515844057595],[-121.44326974522163,38.58519879833855],[-121.44343961617025,38.5852632887806],[-121.44359263938316,38.58534995111816],[-121.4436035708831,38.58535746219462],[-121.44367053148287,38.58540003432587],[-121.44373653698449,38.58544351714284],[-121.44380156453207,38.585487897924715],[-121.44386559587466,38.58553316217112],[-121.44392861159926,38.58557929717787],[-121.44399059116614,38.585626287532705],[-121.4440344601699,38.5856605602863],[-121.4441174525386,38.585732298267644],[-121.44418331258831,38.58581425933047],[-121.44423003958272,38.58590395102243],[-121.44425129010276,38.585973020453885],[-121.44426024152644,38.586093709122025],[-121.44427600803827,38.58613889822],[-121.44428153738792,38.58618555079087],[-121.44427666155933,38.586232247113756],[-121.44426152931122,38.586277569886285],[-121.44423659899871,38.58632014202822],[-121.44420262906411,38.58635866897845],[-121.4441606513105,38.58639198091006],[-121.44413337449025,38.58640837334962],[-121.44409857674512,38.58644912782251],[-121.44407332298125,38.58649400648039],[-121.44405838369919,38.586541644563304],[-121.44405420865543,38.586590595588945],[-121.44406092883924,38.58663937190208],[-121.44407833773981,38.58668649143103],[-121.44410590591995,38.5867305219022],[-121.44414279787173,38.58677012686742],[-121.4441632317208,38.586787003308984],[-121.44434623640406,38.58697033988811],[-121.44446448869344,38.58709240437269],[-121.44474246072268,38.58733874174692],[-121.444804953463,38.58738362511054],[-121.44489789209219,38.587416293173604],[-121.44498219170652,38.58746113143683],[-121.44505529065992,38.58751677719367],[-121.44511496728919,38.587581540542566],[-121.44515940839516,38.587653454261094],[-121.44518726503811,38.587730331727656],[-121.44518758759511,38.5877316575948],[-121.44519949922505,38.58774987679507],[-121.44521181389649,38.587767929457115],[-121.44522452934208,38.587785811966434],[-121.44523763873143,38.58780351708289],[-121.445251140959,38.58782103939568],[-121.44526503146875,38.58783837437836],[-121.44527178129837,38.587846563456324],[-121.4454327155726,38.588007420522445],[-121.44562679440392,38.58814389827336],[-121.44584812025877,38.58825185211012],[-121.44608996919453,38.5883280001685],[-121.44609162820753,38.58832839368978],[-121.44619453942843,38.5883572813912],[-121.44628949518606,38.5883997561519],[-121.44637361183912,38.588454526728725],[-121.44643365345381,38.58850845602127],[-121.44671481831291,38.58874060479127],[-121.44687545410524,38.58893988894149],[-121.44689615475805,38.58897240577276],[-121.4469426604096,38.58906174212815],[-121.4469871721224,38.58915170137197],[-121.4470296774667,38.58924225732105],[-121.44707016173784,38.589333381078724],[-121.44708580978663,38.589370037701215],[-121.44715982755119,38.58949938362629],[-121.44726133837037,38.589616676992954],[-121.44738725924284,38.58971835347338],[-121.44745938796572,38.58976301830987],[-121.44760952392718,38.58988257762273],[-121.44777581361296,38.589976130958064],[-121.44792751996934,38.59005798571986],[-121.44805881186497,38.59015927175476],[-121.44809223892209,38.590191607589176],[-121.44816181870193,38.59026080932513],[-121.44824565285342,38.590319477166815],[-121.44828746081158,38.590342000651006],[-121.4483873489178,38.59038231159198],[-121.44849463955654,38.59040839737833],[-121.44853529330753,38.59041423873835],[-121.44863744687562,38.59042568194301],[-121.44873551684282,38.590450873150175],[-121.44882652355453,38.59048904773795],[-121.44890770160963,38.590539044816154],[-121.44897658449541,38.590599346365046],[-121.44899946511919,38.590625045274976],[-121.4490830568084,38.59069488790005],[-121.44918083157802,38.59075227724405],[-121.44928981839497,38.59079546941522],[-121.44940670539287,38.59082315133995],[-121.44952794286446,38.590834482697915],[-121.44959630396605,38.59083354010372],[-121.44978853290299,38.590853384275455],[-121.44991367767078,38.590881260781224],[-121.45009025102189,38.59094337141006],[-121.4501148140662,38.59095444479052],[-121.45018717293658,38.59099658829112],[-121.45026775819719,38.59102823028828],[-121.4503541196169,38.591048409586854],[-121.45040239984465,38.591054323427265],[-121.45040567180583,38.59120545929445],[-121.45049119522155,38.59123238224254],[-121.45060268903984,38.59126280401923],[-121.45071431659636,38.59126812188242],[-121.45080234201555,38.59129571592634],[-121.45089513497952,38.591310894705906],[-121.45098987635576,38.59131319529498],[-121.45107506333703,38.59130408297484],[-121.45117598799605,38.59133954867421],[-121.4512832259054,38.591360719915684],[-121.4513237288389,38.59136477850173],[-121.4513284851791,38.59136693256548],[-121.45133328793924,38.59136902108332],[-121.45133813712629,38.591371043154474],[-121.45134303044449,38.59137299876805],[-121.45134600954508,38.591374148916984],[-121.45139724912242,38.59138949075323],[-121.45145110401107,38.591397616146466],[-121.45150593921169,38.59139827770938],[-121.45153939803437,38.59139496503376],[-121.45160920315674,38.5913978226732],[-121.451677314662,38.591410150604],[-121.45174166467473,38.59143157327309],[-121.45176188072114,38.59144060410322],[-121.45179444410695,38.59146747081837],[-121.45183245819818,38.591489492170105],[-121.45187476647374,38.591505998716265],[-121.45192008370915,38.59151648797377],[-121.45196703372513,38.591520641714816],[-121.45201418950157,38.59151833426558],[-121.45206011793157,38.591509634519696],[-121.4520655323971,38.59150815654183],[-121.45216036447485,38.5915387376067],[-121.45226052234881,38.59155593030898],[-121.45236296348712,38.59155921123787],[-121.45246457322229,38.591548480975085],[-121.45254211930576,38.59153032876568],[-121.45260722874995,38.59151506725398],[-121.45267472476984,38.59150891155681],[-121.4527425581252,38.59151204838049],[-121.45280866682482,38.5915243814939],[-121.4528710415158,38.591545536541595],[-121.4528859234437,38.59155217981445],[-121.45292085514396,38.59156501239386],[-121.45295809538547,38.5915728901167],[-121.45299651189083,38.591575572497554],[-121.45303493901868,38.59157297835358],[-121.45307220874999,38.59156518685237],[-121.4531071874481,38.59155243408154],[-121.45313499085383,38.591537562733734],[-121.45315435968608,38.591525669555814],[-121.45317606464705,38.59151659730923],[-121.4531994481838,38.59151062126518],[-121.45322379837296,38.5915079218441],[-121.45324837648225,38.59150858294437],[-121.4532724342572,38.59151258301494],[-121.45329524142713,38.591519800590405],[-121.45331610519062,38.591530017986784],[-121.45332091389321,38.59153298752862],[-121.45337801240656,38.591542243551054],[-121.4534362908371,38.59154357720863],[-121.4534939805744,38.59153694862088],[-121.45354932608765,38.59152255851235],[-121.45360064694682,38.59150084400079],[-121.4536384196888,38.59147817365136],[-121.4536455579774,38.59146594160114],[-121.45365529539178,38.59145486775687],[-121.4536673343403,38.591445289451585],[-121.45368130986776,38.591437496853736],[-121.4536967965841,38.59143172759459],[-121.45371332481002,38.59142815693472],[-121.45373039208967,38.59142689331375],[-121.45374748044271,38.5914279739273],[-121.45376406896982,38.59143136748936],[-121.45377965568868,38.591436970731515],[-121.45379134367799,38.591443089813446],[-121.4538188116812,38.591446959911465],[-121.45384671744522,38.59144702847466],[-121.45387421500338,38.591443291512796],[-121.45390046895002,38.591435864905776],[-121.45392467978377,38.591424972811204],[-121.45394611261108,38.59141094689899],[-121.45396411676323,38.59139421292998],[-121.45397715264347,38.59137690688295],[-121.45399669741043,38.59136674862398],[-121.45401819380724,38.591359409466186],[-121.4540409869885,38.59135511154546],[-121.45406438493394,38.59135398493128],[-121.4540876756936,38.591356064104374],[-121.45409961748153,38.59135842039822],[-121.45412308249277,38.59136322920693],[-121.45414725553631,38.59136476658292],[-121.45417140116461,38.59136298671682],[-121.45419478546731,38.59135794290579],[-121.454216699015,38.591349789463656],[-121.45423647644203,38.59133877280396],[-121.45425351483954,38.59132522792314],[-121.45425591806419,38.5913228861034],[-121.45485672273163,38.59116109237602],[-121.45501893917874,38.59117221360271],[-121.45515262495135,38.591112422180124],[-121.45528210225699,38.5910717332741],[-121.45537601832204,38.59106904442503],[-121.45546713656424,38.59104055142559],[-121.4555472313269,38.59101570831378],[-121.45568900403852,38.590980470445395],[-121.45573723500071,38.59098822686771],[-121.45577884372958,38.590971779242345],[-121.45582165894629,38.59097698495727],[-121.4560349873834,38.59092240280899],[-121.45607506928198,38.590889253358846],[-121.45634203768742,38.59083450459046],[-121.45638665031956,38.59083972574305],[-121.45646060233886,38.5908445431658],[-121.45655156029555,38.59085838357456],[-121.4566767322555,38.59086344214258],[-121.45687033670913,38.59085093695386],[-121.4568715096756,38.59085759108477],[-121.45691939401706,38.59083851393661],[-121.45697077223494,38.5908262522332],[-121.45699644834403,38.59082288346596],[-121.45708078955344,38.590776464680225],[-121.45717411864769,38.590742245590484],[-121.45727360168668,38.59072126514098],[-121.45737621495401,38.59071416139604],[-121.45737728591773,38.59071416191037],[-121.4574943883031,38.59071180072018],[-121.45760918976175,38.59069351516786],[-121.45771820103305,38.59065986279155],[-121.45781810956902,38.590611864129905],[-121.45787178809351,38.59057721376773],[-121.4580046742881,38.59053366032024],[-121.45813850950498,38.5904919336791],[-121.4582732523351,38.59045204625982],[-121.45840886022869,38.59041400957181],[-121.4585452940662,38.59037783694256],[-121.45868251131219,38.590343538080155],[-121.4587915088585,38.590317758483486],[-121.45890019513334,38.59029562596731],[-121.4590093555699,38.590274985650325],[-121.45902189027704,38.590272717194175],[-121.45917229313841,38.59024531627242],[-121.45929333548466,38.59024929146954],[-121.45941341744913,38.590236709855695],[-121.45952889271686,38.59020795441307],[-121.45959411312057,38.590183444486726],[-121.4596857643292,38.59013467955997],[-121.45978681377524,38.590099146655696],[-121.45989418852828,38.59007792510568],[-121.46000462727751,38.5900716591401],[-121.46009708166018,38.59007807854229],[-121.46027345917847,38.59008307738348],[-121.46044826404193,38.59006396329899],[-121.4606161828266,38.590021315146814],[-121.46077211480863,38.58995642901939],[-121.46078689173581,38.589948772633676],[-121.46083969019149,38.58993295188065],[-121.46089283324166,38.589917856129226],[-121.46094630248169,38.5899034906985],[-121.46100008410515,38.58988986002837],[-121.46105415971427,38.589876968537155],[-121.46110851436855,38.58986481885764],[-121.46116313081134,38.5898534163145],[-121.46118237951985,38.58984958788333],[-121.46173980828716,38.58977993929488],[-121.46179482710592,38.58977725451279],[-121.46188177782727,38.589785882036885],[-121.46196931597045,38.58978252848057],[-121.46205478113075,38.58976729589672],[-121.46207596001156,38.58976154926401],[-121.46290633389727,38.58963111253046],[-121.46307900422195,38.58961855212708],[-121.46325847835713,38.589595244663634],[-121.46330314688639,38.58959330397646],[-121.46348480215568,38.58960092779022],[-121.46366201017592,38.58963319279795],[-121.46370279560388,38.58964436906053],[-121.4637679587358,38.589660041075355],[-121.46383560094863,38.58966659393318],[-121.46390366446036,38.58966382801296],[-121.46397008131368,38.58965182833501],[-121.46399753881467,38.58964393925379],[-121.46417124265416,38.589630685612626],[-121.46434524003585,38.589641307762214],[-121.46450580184452,38.58967317464877],[-121.46459070800766,38.58969057263393],[-121.46467817323675,38.58969613468097],[-121.46473701895336,38.58969312745676],[-121.46507278656546,38.58971078809174],[-121.46539954588975,38.5897739393354],[-121.46546080941673,38.58979125094339],[-121.46550908506578,38.58980609446685],[-121.46555768365614,38.5898202754991],[-121.46560659030551,38.589833788565535],[-121.46565579012474,38.58984662909269],[-121.46570526706338,38.58985879430335],[-121.46575500738,38.58987027962935],[-121.4657960981754,38.589879213326036],[-121.46590990856281,38.589884432021464],[-121.46602083594237,38.58990508229999],[-121.46608798076693,38.58992584861297],[-121.46619036884294,38.589946101696555],[-121.46626665035804,38.58995188665689],[-121.46631730179398,38.589940419265304],[-121.46636972076426,38.58993603024266],[-121.46642231535762,38.58993885188982],[-121.46647348496352,38.58994879845325],[-121.46652167765451,38.589965567290065],[-121.46656542798117,38.58998864985267],[-121.46657888100746,38.5899976955808],[-121.46679500451046,38.59002266931344],[-121.46690014638357,38.590024067850095],[-121.46724847029179,38.590041105202964],[-121.46758773193925,38.5901053555221],[-121.46771623591746,38.590143122765774],[-121.4678164175227,38.59019012903168],[-121.46791553877597,38.590238500602915],[-121.46801356880358,38.590288222025116],[-121.46811047902068,38.59033927875528],[-121.46820623970086,38.590391655344455],[-121.46826504246731,38.59042479644513],[-121.46828838124904,38.590436305379484],[-121.46831146054018,38.59044813293623],[-121.4683342734942,38.59046027367863],[-121.46833812505187,38.59046236883333],[-121.4687803024975,38.590654018302814],[-121.46880900753443,38.59067064182153],[-121.46883733890905,38.59068765641028],[-121.46886528748577,38.590705055721216],[-121.46887447735459,38.59071091497043],[-121.46918948669926,38.59087927776453],[-121.46953696270907,38.59100215077025],[-121.46975886697281,38.591052830021354],[-121.46984503339473,38.59106908847368],[-121.4699262944723,38.59109684238001],[-121.4700001805159,38.591135249818834],[-121.4700644457843,38.59118314287293],[-121.47006574462311,38.59118430016419],[-121.47009216445916,38.5912213551678],[-121.47012638183693,38.59125424586397],[-121.47016735616063,38.591281973794274],[-121.47021384364277,38.5913036963272],[-121.47026443154567,38.59131875294142],[-121.47031758164007,38.591326687047236],[-121.47037167949087,38.59132725612263],[-121.4704049069272,38.59132390450929],[-121.47049295018668,38.59134207555844],[-121.4705756365324,38.591371969749986],[-121.4706504519867,38.59141267830858],[-121.47071222558147,38.591460301952196],[-121.47081797621185,38.591519494975095],[-121.47093521846325,38.59156337650318],[-121.47106038764547,38.591590613106426],[-121.47109438484625,38.59159492153805],[-121.4711790030567,38.59162148719631],[-121.47125645750829,38.59165918039743],[-121.4713243954894,38.591706857985756],[-121.4713807523755,38.59176306911671],[-121.47139627985825,38.59178289938422],[-121.47141895664137,38.591860782778554],[-121.47154600952496,38.591907478727094],[-121.47168291874438,38.59194653395126],[-121.47180005886894,38.5920085564023],[-121.47199468517145,38.592193909980125],[-121.47221570715189,38.59237866552438],[-121.47243884707262,38.592620211143675],[-121.47256092117591,38.592738624438105],[-121.47265494013905,38.592871875542926],[-121.47268203438561,38.59292417709933],[-121.47294383502688,38.5932689802433],[-121.47312001200692,38.592862235911504],[-121.47370357892842,38.593248958449976],[-121.47312348826698,38.59458156453687],[-121.47346803073637,38.59485697831249],[-121.47373634962969,38.59513882121122],[-121.47395484853583,38.59527435849632],[-121.47409195890747,38.595415931139065],[-121.47461894805286,38.595875650206715],[-121.47500711690007,38.59633525287741],[-121.47519959086421,38.59646934727556],[-121.47540645556757,38.59669080706955],[-121.47554905701908,38.59694611765771],[-121.47571993237031,38.597107200627335],[-121.47768773205893,38.598962152279604],[-121.4777079170193,38.59898117926924],[-121.47821908391505,38.59928374437427],[-121.47865497113291,38.59953832709891],[-121.47970343671074,38.6002701733196],[-121.48024664555668,38.60054092664247],[-121.47877742819092,38.60221072637266],[-121.47818218138437,38.60178932522224],[-121.47729356729239,38.60396552680603],[-121.47544324515667,38.60338812008667],[-121.4756306506323,38.60430038360229],[-121.47555043050878,38.60436649843881],[-121.47544960122575,38.60431627535394],[-121.4750877897423,38.60423989583024],[-121.47447504878619,38.604145930923195],[-121.47410321227841,38.60410980444806],[-121.47372947666527,38.604088996008436],[-121.47335486651752,38.60408356430002],[-121.47310514592694,38.60408849419116],[-121.47285469764843,38.604103486854946],[-121.47251461301684,38.604127518457126],[-121.47116210620273,38.60442404007809],[-121.47041317911315,38.604650915060006],[-121.46968624034547,38.60491822808215],[-121.46915759981546,38.60514447284772],[-121.46883164638609,38.60526996432512],[-121.4686477446422,38.60538398152876],[-121.46824768641562,38.60560495259078],[-121.46811534112071,38.6059484993251],[-121.4680103736801,38.60622097466352],[-121.46792648108375,38.60643874515158],[-121.46768832918585,38.60705692847801],[-121.46757001908095,38.60734927805407],[-121.46745822690345,38.60764320252038],[-121.46735298897757,38.60793861377452],[-121.4672543370571,38.60823542098943],[-121.46716230060144,38.60853353332649],[-121.46707690906493,38.60883286084682],[-121.46699818732463,38.6091333117877],[-121.46699027446974,38.609165061729776],[-121.46693256673235,38.60941948249246],[-121.46688052726368,38.60967465544059],[-121.46683417049329,38.60993050136883],[-121.46679351083148,38.610186943773876],[-121.46679038656666,38.61020829236648],[-121.46677496472434,38.610317989387525],[-121.46674293342997,38.61057518320575],[-121.46671662727326,38.61083277724696],[-121.46669605495255,38.611090691375004],[-121.46669510811373,38.61110460407526],[-121.46669243997587,38.61114524747866],[-121.46634181873756,38.611143110002196],[-121.46633779630423,38.61166107042877],[-121.46633416079186,38.611915311192746],[-121.46633618131166,38.61216956179897],[-121.4663438573423,38.61242374656907],[-121.46635718607945,38.61267778801151],[-121.46637616357732,38.61293160772789],[-121.46640078357997,38.61318512911009],[-121.46643104098591,38.61343827465352],[-121.46646692380429,38.61369096682114],[-121.46650842232648,38.613943129887375],[-121.46651563179198,38.61398369625699],[-121.46671724800103,38.615106596541565],[-121.46758785298553,38.61952463099033],[-121.46765309335845,38.61986868786722],[-121.46729120032917,38.62004580087068],[-121.46731108485133,38.62015080716455],[-121.46593840567415,38.620895021281434],[-121.4609825607918,38.62358162542663],[-121.46083951616579,38.623436681971334],[-121.46011698257759,38.6237661155509],[-121.45948607844586,38.62395729349599],[-121.45867003618496,38.62409479784376],[-121.45844935466411,38.62411236724113],[-121.45845556475254,38.62419241126973],[-121.45838050431885,38.62419816573931],[-121.45830532766585,38.62420289079212],[-121.4582300566159,38.62420658652993],[-121.45815471530176,38.62420925126367],[-121.45807932555948,38.624210883293514],[-121.45800391150136,38.624211483633076],[-121.45792849496354,38.62421105058274],[-121.45785310005131,38.624209586056985],[-121.45782758898154,38.62420885585569],[-121.45771565456332,38.624205632843164],[-121.45760366599994,38.624203942796214],[-121.45749165543853,38.62420378586533],[-121.45737965961983,38.62420516222254],[-121.45726771183942,38.62420807202394],[-121.45715584425837,38.62421251361856],[-121.45704409362418,38.62421848627806],[-121.45694294623453,38.62422521934418],[-121.45694292839269,38.62429781537591],[-121.45660704148376,38.62432379247061],[-121.45659765358245,38.62424614783237],[-121.45651328054772,38.62425821414179],[-121.45642918808959,38.62427143395425],[-121.4563454037994,38.624285802895365],[-121.45626195067513,38.62430131656929],[-121.45617885630837,38.62431797060178],[-121.45609614485939,38.62433575880081],[-121.45601384161633,38.624354677682305],[-121.4559319707464,38.62437472015356],[-121.45587637684721,38.624389035564356],[-121.45529889908646,38.624535053593846],[-121.45508807306793,38.62460479697618],[-121.45489588764258,38.624702199658756],[-121.45472819710602,38.624824288400674],[-121.45439210233856,38.62507626087166],[-121.45400533501906,38.62527862167554],[-121.45357964635171,38.62542522125036],[-121.45312797279428,38.625511604934474],[-121.45306919625976,38.62551813734215],[-121.45271426827892,38.625558578097674],[-121.45249204081078,38.625583898211985],[-121.45211097035917,38.625627316258466],[-121.45129214919707,38.625654309187],[-121.45058931700977,38.62558747202604],[-121.4506086910956,38.625499854303385],[-121.44940126298044,38.62532519907858],[-121.44938843181743,38.62536486318367],[-121.448890438185,38.625321112444055],[-121.44839032569513,38.625345860954724],[-121.44817457454968,38.62537814234412],[-121.44819647756776,38.62546997249571],[-121.44783789658065,38.62555364294241],[-121.44766148687012,38.62561567925727],[-121.4476592125359,38.6258176172963],[-121.44728608114619,38.62581087192228],[-121.4472864230374,38.62548711425351],[-121.44669018823468,38.62571810873181],[-121.44652725681794,38.62583259762086],[-121.44615170868005,38.62597047712347],[-121.44615197086922,38.62589829572565],[-121.44601175999897,38.62595176838706],[-121.44509466057941,38.62630151948524],[-121.44448787716597,38.626428002937836],[-121.4443727439255,38.62645200117307],[-121.44407298392339,38.62651448451631],[-121.44384032031559,38.626734817561925],[-121.44334972179733,38.62719941031918],[-121.44270697047162,38.62740225827868],[-121.44183042507849,38.62752952807353],[-121.44154090973012,38.62745637717669],[-121.44154115355275,38.62752831417594],[-121.44112862417127,38.62739812791345],[-121.4406259855214,38.627357208467636],[-121.43989620468255,38.62768306982738],[-121.43989600274975,38.62762106812649],[-121.43921721628402,38.62792268624934],[-121.43856826961076,38.62804843921241],[-121.43830971538968,38.62809854074667],[-121.43779437491627,38.628198400219254],[-121.43709044690397,38.62814680199726],[-121.43705789142047,38.628144415887085],[-121.43618454153382,38.628079081606906],[-121.43618434688226,38.628255871189516],[-121.43618378454083,38.628769276117026],[-121.43495390792984,38.62875482563864],[-121.43494125413503,38.62944388558506],[-121.43446205947723,38.62943780325608],[-121.43390194627065,38.62943069114749],[-121.4338817622609,38.62943043486279],[-121.43373509746249,38.62942857214886],[-121.43343769342528,38.6294247938063],[-121.43313766191046,38.62942098202433],[-121.43288132530769,38.62941772390583],[-121.4325333143691,38.62941330000779],[-121.431674411605,38.62940237719776],[-121.43154097400384,38.629400680195076],[-121.43174465287521,38.62879912045568],[-121.43174410575662,38.62879888714196],[-121.43154167375798,38.62868902401758],[-121.43131625808162,38.62865987906466],[-121.43141995953782,38.6283390833888],[-121.43116010556855,38.62830675920057],[-121.43126865754508,38.62797930280229],[-121.43098264523253,38.62794219484586],[-121.43038169038726,38.62786422286522],[-121.43038885536569,38.62722523877231],[-121.43017828068069,38.627185743849914],[-121.43002719030076,38.627175485299475],[-121.42985407516237,38.62718154064806],[-121.42970474759476,38.6272023074034],[-121.42955976069682,38.627237194409275],[-121.42944057982906,38.6272779470582],[-121.42931588441587,38.62733412734265],[-121.4293169416302,38.62725614983198],[-121.429109298402,38.62733237527065],[-121.4288966887109,38.627440717230776],[-121.42873848569658,38.627545516294276],[-121.42857018935992,38.62770147426214],[-121.42838240587444,38.62780260442005],[-121.4283444179493,38.62782306288162],[-121.42812815473702,38.62785136125383],[-121.42793202187877,38.627907991002985],[-121.42792964012902,38.62790868284414],[-121.42769398277376,38.62797710257517],[-121.42718289543389,38.62817275375233],[-121.42709311039546,38.62816106746311],[-121.42685209038416,38.62818604914517],[-121.42650015238753,38.62818016694637],[-121.42618598681351,38.62813091229688],[-121.42580049815348,38.62807047360348],[-121.4256367240178,38.628044796947016],[-121.42520705175944,38.62800504528305],[-121.42520575718224,38.62779085276807],[-121.42476706953433,38.62785093112885],[-121.42436755996225,38.62790564305456],[-121.42400435657459,38.627955381877534],[-121.42381535950194,38.62798126272908],[-121.42369425624567,38.62799784681584],[-121.42360262451265,38.628001020677345],[-121.4234065921107,38.62800781003698],[-121.42320740965695,38.62801470860689],[-121.42301348867653,38.628021424030294],[-121.42296819261048,38.628022993019805],[-121.42284354428129,38.62802730903231],[-121.4228698071517,38.628212217934546],[-121.42266680095494,38.628215974012186],[-121.42264930246495,38.62807604019597],[-121.42222139733907,38.62808879337928],[-121.42219519072704,38.62804976003845],[-121.42182207368931,38.628062677780775],[-121.42181100383105,38.62806306127197],[-121.42172984096193,38.62806587148674],[-121.42071327581291,38.62810105945457],[-121.42057992603382,38.62814454838213],[-121.42039182932866,38.62823858030929],[-121.4203868054525,38.628135235511294],[-121.42039936398542,38.627934949995975],[-121.4204560690551,38.627739417755826],[-121.42055519639288,38.62755458054522],[-121.42069373474067,38.627386052920315],[-121.42086747451802,38.62723895693287],[-121.4209541494207,38.62718195784275],[-121.4209036895505,38.62712975885265],[-121.42090335961741,38.62712994008603],[-121.42090403617718,38.62712921914473],[-121.42075434480535,38.62711104919244],[-121.42065604582316,38.62698297136222],[-121.42060643073515,38.626893289133555],[-121.42057385793716,38.62681418219655],[-121.42027760366673,38.62697686921369],[-121.42005281714937,38.626715181454394],[-121.41967303370478,38.62699464407714],[-121.41924204265797,38.62733855769179],[-121.41958614621235,38.62775035185885],[-121.41946981248019,38.62790592369659],[-121.4194694689495,38.62790608143438],[-121.41946949316983,38.62790635092474],[-121.41936026655912,38.628047719549585],[-121.41918980833296,38.628113237073876],[-121.41907556306681,38.628411611580376],[-121.41881851538406,38.628517900586935],[-121.41886631933606,38.62859194569048],[-121.41883169704829,38.628645472838606],[-121.41866002549449,38.628717297009686],[-121.41861273252857,38.628661726431055],[-121.41834625631724,38.62875676889822],[-121.41811680894112,38.6288386030683],[-121.41789459006176,38.628967503672904],[-121.4174795357009,38.629208257689655],[-121.41722978882025,38.62935312219467],[-121.41731368855382,38.62950001607629],[-121.41722640929174,38.62975049205036],[-121.4171838567783,38.629872604855535],[-121.4170670300608,38.630208178798064],[-121.41702105395349,38.630350571588075],[-121.41677962292587,38.63038231948032],[-121.41667090099628,38.63039661624123],[-121.41647158378404,38.63036112516639],[-121.41642134508916,38.63035217933588],[-121.41631464839679,38.63033318060193],[-121.41630495985035,38.63033145611643],[-121.41622679554509,38.63031753797901],[-121.41597373773727,38.630272476155525],[-121.415942514951,38.630266916961645],[-121.41584663552794,38.630249843496685]]]},"properties":{"ZIP5":"95815","PO_NAME":"SACRAMENTO","Shape_STAr":206424180.586,"Shape_STLe":75456.9364973}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.4293169416302,38.62725614983198],[-121.42931588441587,38.62733412734265],[-121.42944057982906,38.6272779470582],[-121.42955976069682,38.627237194409275],[-121.42970474759476,38.6272023074034],[-121.42985407516237,38.62718154064806],[-121.43002719030076,38.627175485299475],[-121.43017828068069,38.627185743849914],[-121.43038885536569,38.62722523877231],[-121.43038169038726,38.62786422286522],[-121.43098264523253,38.62794219484586],[-121.43126865754508,38.62797930280229],[-121.43116010556855,38.62830675920057],[-121.43141995953782,38.6283390833888],[-121.43131625808162,38.62865987906466],[-121.43154167375798,38.62868902401758],[-121.43174410575662,38.62879888714196],[-121.43174465287521,38.62879912045568],[-121.43154097400384,38.629400680195076],[-121.43167441159783,38.62940237809863],[-121.4325333143691,38.62941330000779],[-121.43288132416643,38.62941772299935],[-121.43313766191764,38.629420981123424],[-121.43343769342528,38.6294247938063],[-121.43373509631405,38.62942857214324],[-121.4338817622609,38.62943043486279],[-121.43390194741909,38.6294306911531],[-121.43446206062566,38.62943780326168],[-121.4349412529865,38.62944388557946],[-121.43495390792269,38.628754826539534],[-121.4361837833924,38.628769276111434],[-121.43618434688226,38.628255871189516],[-121.43618454153382,38.628079081606906],[-121.43705789142047,38.628144415887085],[-121.43709044690397,38.62814680199726],[-121.43779437376786,38.62819840021368],[-121.43830971538259,38.62809854164752],[-121.43856826846235,38.628048439206836],[-121.4392172151356,38.62792268624378],[-121.43989600160134,38.62762106812092],[-121.43989620467549,38.627683070728224],[-121.4406259855214,38.627357208467636],[-121.4411286241642,38.627398128814306],[-121.44154115355275,38.62752831417594],[-121.44154090973012,38.62745637717669],[-121.44183042507849,38.62752952807353],[-121.44270697047162,38.62740225827868],[-121.44334972065595,38.62719940941277],[-121.4438403191742,38.62673481665555],[-121.44407298393041,38.626514483615466],[-121.44437274506693,38.626452002079425],[-121.44448787602461,38.626428002031425],[-121.4450946605724,38.626301520386136],[-121.44601176114035,38.62595176929341],[-121.44615197086922,38.62589829572565],[-121.44615170868005,38.62597047712347],[-121.44652725681095,38.62583259852171],[-121.44669018823468,38.62571810873181],[-121.44728642303039,38.62548711515437],[-121.44728608114619,38.62581087192228],[-121.44765921368428,38.62581761730177],[-121.4476614880185,38.625615679262744],[-121.44783789543227,38.62555364293694],[-121.44819647756776,38.62546997249571],[-121.44817457339427,38.625378143239494],[-121.44839032569513,38.625345860954724],[-121.448890438185,38.625321112444055],[-121.44938843181743,38.62536486318367],[-121.4494012629874,38.625325198177734],[-121.45060869108868,38.62549985520423],[-121.45058931700285,38.62558747292694],[-121.45129214919707,38.625654309187],[-121.45211097035917,38.625627316258466],[-121.45249204081078,38.625583898211985],[-121.45271426713056,38.625558578092246],[-121.45306919625976,38.62551813734215],[-121.45312797279428,38.625511604934474],[-121.45357964634482,38.625425222151215],[-121.4540053338707,38.62527862167012],[-121.45439210233167,38.62507626177251],[-121.45472819711291,38.62482428749979],[-121.45489588764258,38.624702199658756],[-121.45508807191956,38.62460479697077],[-121.45529889793805,38.62453505358844],[-121.45587637684721,38.624389035564356],[-121.4559319707464,38.62437472015356],[-121.45601384161633,38.624354677682305],[-121.45609614485252,38.62433575970166],[-121.45617885630837,38.62431797060178],[-121.45626195067513,38.62430131656929],[-121.456345402651,38.62428580288997],[-121.45642918808959,38.62427143395425],[-121.45651328054086,38.62425821504263],[-121.45659765357557,38.62424614873324],[-121.45660704263213,38.624323792476005],[-121.45694292954792,38.624297814480435],[-121.45694294623453,38.62422521934418],[-121.45704409363104,38.624218485377234],[-121.4571558442515,38.62421251451946],[-121.45726771068422,38.62420807291941],[-121.45737965961983,38.62420516222254],[-121.45749165658687,38.624203785870726],[-121.45760366485844,38.62420394188999],[-121.45771565340812,38.62420563373861],[-121.45782758897467,38.62420885675658],[-121.45785310119966,38.62420958606234],[-121.45792849495668,38.624211051483584],[-121.45800391149453,38.624211484533966],[-121.45807932441112,38.62421088328814],[-121.45815471530176,38.62420925126367],[-121.4582300554675,38.62420658652455],[-121.45830532766585,38.62420289079212],[-121.45838050431885,38.62419816573931],[-121.45845556589406,38.62419241217599],[-121.45844935466411,38.62411236724113],[-121.45867003619178,38.62409479694289],[-121.45948607845271,38.62395729259513],[-121.46011698257759,38.6237661155509],[-121.46083951731413,38.623436681976685],[-121.46098255963665,38.623581626322185],[-121.4659384056674,38.620895022182324],[-121.46731108599961,38.620150807169836],[-121.46740182925852,38.620630003381656],[-121.4674127234123,38.620687536097236],[-121.46777567629896,38.62051513566073],[-121.46784937954011,38.62090381667663],[-121.46828512781978,38.623201664857326],[-121.46863901584078,38.62319902740056],[-121.4690201634837,38.62520914408508],[-121.46918119181673,38.62605834921526],[-121.46993851380768,38.63023707676641],[-121.46996585201505,38.630374675940224],[-121.47050148807546,38.63335612112324],[-121.47127672531892,38.637395137889015],[-121.47190569192608,38.64064338171927],[-121.47199621295944,38.641133748339264],[-121.47208150719388,38.64159578040439],[-121.47232488544299,38.64289178906919],[-121.4738540700128,38.65103367669541],[-121.4741352074628,38.652467874802745],[-121.47468030367388,38.65524847052083],[-121.47469683235232,38.655327744950945],[-121.47469525451992,38.6553299774252],[-121.47472341321746,38.65546839068606],[-121.47474316353654,38.655573075048466],[-121.47497230006243,38.6567875571049],[-121.47505269680481,38.657213669066756],[-121.477465713874,38.669988700489],[-121.47762888661688,38.67084942988108],[-121.47755834099392,38.6708496804272],[-121.47720501544316,38.67085388925822],[-121.47696837299846,38.670852567726854],[-121.47680073127745,38.669981020877266],[-121.4763950545329,38.669976333325934],[-121.47545229548618,38.669965436899304],[-121.4754523268191,38.66991029958108],[-121.4754270275648,38.66991008509741],[-121.47069255062888,38.66987008425328],[-121.46645584368608,38.669846114523764],[-121.46604646968629,38.66984378993351],[-121.46604798375459,38.66947050013662],[-121.46605086520502,38.66875943314167],[-121.46582985650302,38.6686602137089],[-121.46595803653796,38.6684052320212],[-121.4657902424755,38.668330261114725],[-121.46511776659918,38.66820349681587],[-121.46418187345128,38.66812497583769],[-121.46330880465118,38.668087959560715],[-121.46300255110343,38.66823493762102],[-121.46234919679328,38.66836381817253],[-121.46192819551958,38.66837835199467],[-121.4611078580585,38.668325076619254],[-121.4604765404471,38.66832213993755],[-121.45932410252291,38.66871759773444],[-121.45876228964939,38.668879602889135],[-121.45849306256886,38.66892584074008],[-121.45826499569492,38.668947338944506],[-121.4571935378226,38.66894255273156],[-121.45713052374,38.66903983637035],[-121.45712381295183,38.66935349686865],[-121.45689826237283,38.669350531341074],[-121.45689803540911,38.669432915399675],[-121.45686406782367,38.66943246976514],[-121.45675549166553,38.66942198265991],[-121.4534110847838,38.669403612471214],[-121.45313800768264,38.669388395761615],[-121.45228738976259,38.669381409482575],[-121.45001452888224,38.66936271019801],[-121.44761207257697,38.669342894801936],[-121.44726210808756,38.669340219382754],[-121.4471921521049,38.66932195344551],[-121.44712200111022,38.66933829897606],[-121.44349249246184,38.669288479879484],[-121.44298210519506,38.66928146451986],[-121.44163832815568,38.66926298427921],[-121.44163813155313,38.66918059272037],[-121.43885963923701,38.66914233268712],[-121.43886021868056,38.66922473152498],[-121.43835654948343,38.66921778777487],[-121.43836767607125,38.66915430052127],[-121.438368224277,38.66915108517342],[-121.4383694701143,38.66914304619976],[-121.43837053565674,38.669134991938186],[-121.4383714231956,38.6691269233007],[-121.43837212809898,38.66911884476938],[-121.43837265494916,38.66911075816819],[-121.4383730014409,38.66910266438687],[-121.4383731675458,38.66909456702889],[-121.4383806617377,38.66829708789432],[-121.43824056896064,38.66829583248348],[-121.43774798352379,38.66829141813832],[-121.43719355881602,38.668286449219245],[-121.43665152666193,38.6682815856233],[-121.43610249228824,38.668276658402235],[-121.43610157157698,38.667369562203355],[-121.43540068184538,38.667362072073345],[-121.43493908943948,38.66735713545741],[-121.43424596039462,38.66734972122041],[-121.43377973992132,38.66734473037162],[-121.43332287477234,38.66733983923887],[-121.43304488009966,38.66733686095527],[-121.43283597446988,38.667334624575425],[-121.43262295654405,38.667332342465315],[-121.43204421686785,38.667326138873776],[-121.43146072152189,38.66731988203986],[-121.43146153186521,38.66790075946271],[-121.43076936355507,38.66789787690427],[-121.43030071482798,38.667895923206316],[-121.42988251659503,38.667894177920545],[-121.42988246541007,38.6680668671126],[-121.42988241757668,38.66822405908068],[-121.42988236581887,38.668394522149576],[-121.429882318892,38.66855619608484],[-121.42988225498891,38.66877240666637],[-121.42988215219091,38.66911783818621],[-121.42923505889999,38.66911018173911],[-121.42914293617133,38.6691091254024],[-121.42914565486696,38.669056225475515],[-121.42914619381989,38.66904432096697],[-121.42914679236625,38.66902282759858],[-121.42914691405298,38.66900133008003],[-121.429137511229,38.66728973154589],[-121.42685387251335,38.66726567967867],[-121.42685377197961,38.666156275830055],[-121.42668575354934,38.666156032307775],[-121.42451767689985,38.666152882259816],[-121.42452116158071,38.66635297187462],[-121.42217847638658,38.666340821024164],[-121.42216898543495,38.66542262071325],[-121.4153071038912,38.665367310615565],[-121.41530727484593,38.66532337465544],[-121.41530412235383,38.66458566246371],[-121.41529250639613,38.66186829357163],[-121.41529183845284,38.661703533848474],[-121.41528525192804,38.66065875630306],[-121.41527538680586,38.65909362735081],[-121.41527484244128,38.65900720678762],[-121.4152761903503,38.658179971353356],[-121.4152758830021,38.65807012861273],[-121.41524359515934,38.65360157640125],[-121.41522148400858,38.65054105484105],[-121.41086489335223,38.650511164945414],[-121.41083977468514,38.65050940481789],[-121.41081328381203,38.65050395212898],[-121.41078840403677,38.65049497519877],[-121.41076588905622,38.650482745427595],[-121.41074642507913,38.6504676374766],[-121.41073060344114,38.65045010660557],[-121.41071890222418,38.65043068857955],[-121.41071167958708,38.65040997260744],[-121.4107091555049,38.65038858683462],[-121.41069424056373,38.6480866389935],[-121.41068823751927,38.647159927905264],[-121.4106547403209,38.64715988998476],[-121.41068176551758,38.64537304448422],[-121.41068355016075,38.64526321858367],[-121.41071332999319,38.64354983460845],[-121.41071442994377,38.64344000341644],[-121.41071666779382,38.64259485828731],[-121.41072387612145,38.63987130296823],[-121.41071626866969,38.639870029145555],[-121.41065808929541,38.63986493235215],[-121.40927243205647,38.63983885831343],[-121.40913241885896,38.639836579553226],[-121.40689761477181,38.63980586819054],[-121.4067576065631,38.63980341811728],[-121.40589097844746,38.63978499316586],[-121.40576915262453,38.63978240179105],[-121.40576743666806,38.63986477309821],[-121.40439961045024,38.639863435806475],[-121.40382642190032,38.6403878182978],[-121.40317835754435,38.640381924446004],[-121.4029499715206,38.640379846964464],[-121.40298869442782,38.64034463029452],[-121.40565979645757,38.63789444970873],[-121.40584006795257,38.63789809589044],[-121.40590669502878,38.63789944293572],[-121.40652826032343,38.637912012939104],[-121.4067473208215,38.63770817728346],[-121.4074274407415,38.63708618698862],[-121.4082890134077,38.63629823142198],[-121.4091079065974,38.63553343923486],[-121.40923141937381,38.63542212233529],[-121.40999755618603,38.63470589001395],[-121.41018464803167,38.634541730143425],[-121.4113434478108,38.63347406062404],[-121.41146049607738,38.63336541033015],[-121.41216610499458,38.632711066200265],[-121.41223212817572,38.632641464303646],[-121.41311778265101,38.63182510986595],[-121.41333557532248,38.63162435547564],[-121.41372576169898,38.63126469048158],[-121.41393465533488,38.631046504380336],[-121.41423405350139,38.63076265489003],[-121.4155083955873,38.629507592519566],[-121.41557633025724,38.62944474702512],[-121.41561534378468,38.62946953748637],[-121.41565891288508,38.62949383649803],[-121.41572521295981,38.62952012580603],[-121.41579632563756,38.62953698620257],[-121.41587008902398,38.62954390407655],[-121.41594426408192,38.629540669036594],[-121.41588905683233,38.62962642753541],[-121.41548412507161,38.63025544843206],[-121.41556090420188,38.6302271835599],[-121.41561256987218,38.63020816312336],[-121.41584663552057,38.63024984439753],[-121.41594251495839,38.63026691606076],[-121.41597373888578,38.63027247616132],[-121.41622679554509,38.63031753797901],[-121.41630495870922,38.63033145520975],[-121.41631464838942,38.63033318150282],[-121.41642134393335,38.63035218023094],[-121.41647158377666,38.630361126067214],[-121.41667090100363,38.630396615340366],[-121.41677962177737,38.63038231947454],[-121.41702105279766,38.63035057248315],[-121.4170670300608,38.630208178798064],[-121.41718385792674,38.629872604861326],[-121.41722640813587,38.62975049294546],[-121.41731368855382,38.62950001607629],[-121.4172297899687,38.62935312220044],[-121.41747953455248,38.62920825768388],[-121.41789459006176,38.628967503672904],[-121.41811680894112,38.6288386030683],[-121.41834625631724,38.62875676889822],[-121.41861273252857,38.628661726431055],[-121.41866002549449,38.628717297009686],[-121.41883169704829,38.628645472838606],[-121.41886631933606,38.62859194569048],[-121.41881851538406,38.628517900586935],[-121.41907556306681,38.628411611580376],[-121.41918980833296,38.628113237073876],[-121.41936026655912,38.628047719549585],[-121.41946949316983,38.62790635092474],[-121.4194694689495,38.62790608143438],[-121.41946981248755,38.627905922795726],[-121.41958614621235,38.62775035185885],[-121.41924204265797,38.62733855769179],[-121.41967303370478,38.62699464407714],[-121.42005281714937,38.626715181454394],[-121.42027760366673,38.62697686921369],[-121.42057385793716,38.62681418219655],[-121.42060643073515,38.626893289133555],[-121.42065604582316,38.62698297136222],[-121.42075434480535,38.62711104919244],[-121.42090403617718,38.62712921914473],[-121.42090335961741,38.62712994008603],[-121.4209036906989,38.6271297588584],[-121.42095414942798,38.62718195694191],[-121.42086747451069,38.62723895783371],[-121.42069373474067,38.627386052920315],[-121.4205551964002,38.62755457964432],[-121.42045606906244,38.62773941685497],[-121.4203993639781,38.62793495089682],[-121.42038680429677,38.6281352364064],[-121.42039182932866,38.62823858030929],[-121.42057992603382,38.62814454838213],[-121.42071327465713,38.628101060349714],[-121.42172984096923,38.62806587058585],[-121.42181100268262,38.62806306126625],[-121.42182207483044,38.62806267868735],[-121.42219519073433,38.62804975913761],[-121.42222139733907,38.62808879337928],[-121.42264930246495,38.62807604019597],[-121.42266680095494,38.628215974012186],[-121.4228698071517,38.628212217934546],[-121.42284354428129,38.62802730903231],[-121.42296819261776,38.628022992118964],[-121.42301348752812,38.628021424024574],[-121.42320740964965,38.62801470950774],[-121.42340659210342,38.628007810937845],[-121.42360262565386,38.6280010215839],[-121.42369425624567,38.62799784681584],[-121.42381535949467,38.62798126362992],[-121.42400435657459,38.627955381877534],[-121.42436755996225,38.62790564305456],[-121.42476706953433,38.62785093112885],[-121.42520575718224,38.62779085276807],[-121.42520705175218,38.62800504618391],[-121.4256367240178,38.628044796947016],[-121.42580049930196,38.62807047360918],[-121.42618598681351,38.62813091229688],[-121.42650015238753,38.62818016694637],[-121.42685209038416,38.62818604914517],[-121.42709310924705,38.62816106745742],[-121.4271828954411,38.62817275285148],[-121.42769398277376,38.62797710257517],[-121.42792963898054,38.62790868283846],[-121.42793202188601,38.62790799010214],[-121.42812815472979,38.62785136215468],[-121.4283444179493,38.62782306288162],[-121.42838240472604,38.62780260441439],[-121.42857019050832,38.627701474267816],[-121.4287384857038,38.627545515393415],[-121.42889668985212,38.62744071813728],[-121.429109298402,38.62733237527065],[-121.4293169416302,38.62725614983198]]]},"properties":{"ZIP5":"95838","PO_NAME":"SACRAMENTO","Shape_STAr":264087132.753,"Shape_STLe":79088.9110266}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.15615403668602,38.64102062406024],[-121.15567929843351,38.638689027892134],[-121.15560576549962,38.638458394421015],[-121.15548162502799,38.63823977608652],[-121.15468823184405,38.637117439963546],[-121.15450969124473,38.63688619455058],[-121.15402191846549,38.63640331855089],[-121.15343465685524,38.63599420793007],[-121.15214150086769,38.635240617221335],[-121.15193841627212,38.63510837583584],[-121.15165140530644,38.6348602234264],[-121.1514236958202,38.634576749813824],[-121.15052553560427,38.63320673676369],[-121.1504335757449,38.63304024176189],[-121.15035648724404,38.63280868586144],[-121.15033183240183,38.63257014852761],[-121.15047770402786,38.614613241451],[-121.15033817934616,38.61455518703991],[-121.1503563949239,38.61231277153062],[-121.15052648356084,38.61231149653973],[-121.15058978296794,38.5907403281582],[-121.15015393578592,38.590745637421556],[-121.15004252215768,38.5403441628048],[-121.18726295817801,38.54022831732532],[-121.18725576302653,38.53687077921792],[-121.18725575560909,38.53686609168509],[-121.18725698253976,38.5367408122223],[-121.18726099404934,38.536615568536206],[-121.18726778738822,38.536490399346846],[-121.18727736097426,38.53636534158037],[-121.18728971205809,38.536240433956415],[-121.18730483674325,38.536115715186305],[-121.18732272999682,38.53599122307231],[-121.18734338679633,38.53586699451566],[-121.18108878686478,38.52499331114102],[-121.18802798492958,38.524953588522344],[-121.1916114630343,38.5302570290602],[-121.21198885121179,38.51201181880637],[-121.19222447993698,38.49928545455128],[-121.1923484160127,38.49907622243241],[-121.19240658953191,38.49894308197497],[-121.19250287345318,38.498780531364424],[-121.1925041317068,38.49866925150482],[-121.19246836997287,38.49849094066681],[-121.19241380433051,38.49830507853381],[-121.19236792729257,38.498186050423975],[-121.19233199835382,38.498022575597496],[-121.19227684607557,38.497888644540886],[-121.19222152618481,38.49776955041189],[-121.19219453762342,38.49765065417126],[-121.1922711785138,38.49755473901032],[-121.19239512077452,38.49745173509621],[-121.19250945046936,38.49736350295471],[-121.19263288998219,38.49730501145807],[-121.19280404880469,38.49720233676407],[-121.19293709874371,38.497129073004935],[-121.19302334783391,38.497018386289774],[-121.19310048984741,38.4968779588141],[-121.19320596118656,38.496737729846956],[-121.19328201313105,38.496693745161174],[-121.19337670001991,38.49667214760237],[-121.19354660081234,38.49668075168541],[-121.1937633000765,38.49672677802522],[-121.1938667601522,38.49676459552989],[-121.19393227997625,38.49681698750175],[-121.19396821198164,38.496980460929],[-121.19399470088396,38.49714386852484],[-121.19401182919532,38.497299791809674],[-121.19406623079284,38.49750049014391],[-121.19410233202348,38.497649126581685],[-121.19418548389991,38.497812929909344],[-121.1942133117412,38.49785763909233],[-121.1943261345157,38.49790294047511],[-121.19450481231816,38.497970958572814],[-121.19461822110418,38.49796432851909],[-121.19484503744644,38.49795106987164],[-121.19499647282422,38.497922447025566],[-121.19508238522032,38.497841433590644],[-121.19517790912322,38.49774564886635],[-121.19522721814437,38.49756051101263],[-121.19523891861174,38.49736027329348],[-121.1952119251919,38.497241376856635],[-121.19520356872194,38.49714486910586],[-121.1952090514735,38.49665833399286],[-121.19559120161965,38.49674774961191],[-121.1960028187916,38.496838148137385],[-121.19641638192705,38.496922884731696],[-121.19683176394817,38.497001935969045],[-121.19724884009796,38.49707527573864],[-121.19766748211805,38.49714288331278],[-121.19808756291475,38.49720473617169],[-121.20572301242467,38.49827459636642],[-121.21530988597996,38.504154322101904],[-121.21698150967782,38.50517936409547],[-121.21839380253209,38.50604534372364],[-121.21851003012576,38.50617097542195],[-121.22138496369239,38.50359451139844],[-121.22206207611518,38.50298782920306],[-121.2229762675545,38.50216870393828],[-121.22307279924146,38.50208220961761],[-121.22326122314661,38.50191366172391],[-121.22326671543227,38.501908748982025],[-121.22327681049336,38.50191082042197],[-121.22342396516419,38.501942168643076],[-121.23323188227019,38.504103430836764],[-121.23335074059506,38.50412945885609],[-121.23367278675822,38.504197182595874],[-121.23401561637559,38.504269275590936],[-121.23468349911097,38.50439994878443],[-121.23535418375575,38.504521439191905],[-121.23602746753271,38.504633709390156],[-121.23670314418219,38.50473672554112],[-121.23730993125892,38.50482693910658],[-121.23860386729385,38.50503282487024],[-121.23989304189229,38.505256409223314],[-121.24117706227076,38.505497625777025],[-121.24245553916343,38.50575639917355],[-121.2424560126793,38.50578611982925],[-121.24262635356747,38.51846725164338],[-121.24263110429519,38.51884551083536],[-121.24269828085751,38.52459569104063],[-121.24270179122324,38.52478662133108],[-121.24271324466056,38.52510295591137],[-121.24273172481155,38.525419084231096],[-121.24275722589215,38.525734911652414],[-121.24278973870626,38.5260503408112],[-121.24279089277648,38.52606047283816],[-121.24282319035991,38.52637600237987],[-121.24284847325634,38.52669192654705],[-121.24286673322091,38.52700814889314],[-121.24287796543935,38.52732457389373],[-121.24288216510662,38.52764110512212],[-121.2429016411644,38.53665577278864],[-121.24290299750753,38.53693904346617],[-121.24292509407677,38.53991909107825],[-121.24292657525567,38.54032318955583],[-121.24292634002433,38.5432749338065],[-121.24292738037364,38.543614293310405],[-121.24299037287126,38.55374883830227],[-121.2430056555675,38.556207101763164],[-121.24300485908414,38.55656986936414],[-121.24299492366804,38.557506407998225],[-121.24306393773522,38.558321915291806],[-121.24333912315466,38.55925185600825],[-121.24381579984053,38.56013014610481],[-121.24447948836414,38.56093009806622],[-121.25161885435944,38.56808300392034],[-121.25174334353251,38.56820407340643],[-121.25176626262092,38.56819044930132],[-121.25032781696738,38.559479132035015],[-121.25340394010574,38.55950244136244],[-121.25339875505858,38.55964740896707],[-121.2534224132931,38.560004677196396],[-121.25353045337313,38.56038538998019],[-121.25372105203499,38.56074558697864],[-121.25571319250822,38.563445167519006],[-121.25594477140835,38.56535264550575],[-121.25611885338265,38.56533961738029],[-121.25623302188563,38.566279942667634],[-121.25605893763793,38.56629297096461],[-121.25606557504507,38.56634764136869],[-121.25607553175803,38.566429646076806],[-121.25614091341319,38.566968146300596],[-121.25626964533882,38.56802839279375],[-121.25904750535254,38.56796301204014],[-121.25941865840207,38.568465867547275],[-121.25957897273774,38.56881901653752],[-121.25968386556951,38.56905007866937],[-121.259699920307,38.56907977091478],[-121.2606128032163,38.57033868816048],[-121.26159520777786,38.57169342284311],[-121.26330963010533,38.574223697187136],[-121.26382588951779,38.57481474269852],[-121.26399400116078,38.57504265947978],[-121.26412980262178,38.57532469471999],[-121.26420115447971,38.575620956385826],[-121.26423078134677,38.5758537115034],[-121.26443465107164,38.57745531940539],[-121.26440049682817,38.5777343904847],[-121.26486027100292,38.58134968004424],[-121.26486929870907,38.58142066435162],[-121.26420689418278,38.58162992925832],[-121.26485577144618,38.58341458992017],[-121.26519727786471,38.58565603878399],[-121.26524536632844,38.58684409330993],[-121.26532194153506,38.58873587024684],[-121.26609425658893,38.58874076810728],[-121.26668887967934,38.58969284943801],[-121.26668684277784,38.58997715519629],[-121.26834705297668,38.58998118203014],[-121.26834564461215,38.59011847382349],[-121.26834528428171,38.5901535998822],[-121.26774754781086,38.590646607278245],[-121.2675751931425,38.592350822618414],[-121.2672864913702,38.59520528876183],[-121.2672755318741,38.59528125723196],[-121.26721690850816,38.59547467590038],[-121.26711637790352,38.595657167030794],[-121.26697699528343,38.59582318582756],[-121.26680299326495,38.595967687721334],[-121.2665996609157,38.59608628167904],[-121.26637317707053,38.59617536430659],[-121.26613042093851,38.596232227680666],[-121.26587877027895,38.59625514637711],[-121.26562587244926,38.59624342197866],[-121.2656901447546,38.59783085080826],[-121.26570504983492,38.598198963126244],[-121.26599190731471,38.59819226180796],[-121.2661635992392,38.598184141734535],[-121.26664845174521,38.59811572772562],[-121.2666942827983,38.599483612132204],[-121.26774068509467,38.599457691741726],[-121.26774078149612,38.59945993111567],[-121.26774507799288,38.59948603966303],[-121.26775508685822,38.59951116630084],[-121.26777050367788,38.59953454693193],[-121.26779085931356,38.59955547137249],[-121.26781553690864,38.59957330418109],[-121.26784378546954,38.59958750366372],[-121.26787474611139,38.59959763735596],[-121.26790747944324,38.599603398412654],[-121.26794098961085,38.59960461206662],[-121.26794560763454,38.5998008263824],[-121.26890145687064,38.5993752274967],[-121.26890183273359,38.59938526151495],[-121.26894671553138,38.600477123890016],[-121.2694362700072,38.60039711416936],[-121.26974487228918,38.60078882263045],[-121.27072507025235,38.60203295198664],[-121.26972697476388,38.60253656449983],[-121.26935656221183,38.60272346089224],[-121.26972032837769,38.603185580295964],[-121.26984905777259,38.60334911270838],[-121.27043849503613,38.60409789878151],[-121.27198271974369,38.60336254521683],[-121.27264979082467,38.603044877339656],[-121.27293220828099,38.60336851009928],[-121.27298800708681,38.60343245207941],[-121.2705412899273,38.60465950115792],[-121.26970106732993,38.60506634377247],[-121.2691054802996,38.605354724953614],[-121.2693012277727,38.605597887167214],[-121.2693908059683,38.605710411209515],[-121.26954281315098,38.6059073325833],[-121.2696904165743,38.60610630438327],[-121.26976119815966,38.606204637371455],[-121.26990215703194,38.606406555318124],[-121.27003860456477,38.60661037170144],[-121.27006278139189,38.606648030801566],[-121.27026704996884,38.60705997031952],[-121.27037705308499,38.60749348435427],[-121.27037773558668,38.607498373392296],[-121.27040776568612,38.60773279848066],[-121.27043257715776,38.607967598797586],[-121.27045216264183,38.60820270312846],[-121.27046651592634,38.60843804026509],[-121.27047563311385,38.60867353721152],[-121.27048016578212,38.60884505322662],[-121.27048339029095,38.60897721642581],[-121.27036750039434,38.60902334007239],[-121.27009344478614,38.60912906940073],[-121.26965777339618,38.60929345900814],[-121.25911737289948,38.613269888216884],[-121.24220446615004,38.619647450454565],[-121.23812397560583,38.62118559188248],[-121.23803304189383,38.62122007622883],[-121.22957927031003,38.62442548522138],[-121.22952780971202,38.62444505586676],[-121.2291615312495,38.624587896034065],[-121.2287984852927,38.62473572871496],[-121.22843878138687,38.62488850782216],[-121.22808252908071,38.62504618726958],[-121.22783786249963,38.62515824572713],[-121.2274877009364,38.62532410912127],[-121.22738589886667,38.62537356787017],[-121.22704059418926,38.625545584928595],[-121.22669916803244,38.62572230170035],[-121.21879430038105,38.62989132524626],[-121.21856396733953,38.630013412462134],[-121.21772523116529,38.630468696006965],[-121.21704976903948,38.6308478867138],[-121.21692475885807,38.63091891228117],[-121.21614976756027,38.631349890687574],[-121.21536471733256,38.63177050379387],[-121.21003894714505,38.634520549229116],[-121.20888285040294,38.632230725649094],[-121.20886503692032,38.63219629715799],[-121.2088464603424,38.63216211751107],[-121.20882712629248,38.6321281975574],[-121.2088070404039,38.6320945472451],[-121.20878620830985,38.632061176522384],[-121.20876463677192,38.632028097146815],[-121.20874233374036,38.63199531728057],[-121.20871930368968,38.6319628477648],[-121.2086854557723,38.63191740775525],[-121.20867559821485,38.631904322200825],[-121.20866599231849,38.631891122146364],[-121.206402119505,38.63274393573981],[-121.20357297743058,38.63380959851459],[-121.20341991879457,38.63386854365182],[-121.2032681942305,38.63392957437309],[-121.20311785101877,38.63399267299065],[-121.20296893416337,38.63405781999931],[-121.20282148866885,38.63412499589409],[-121.2026755607192,38.63419417847569],[-121.20253119301309,38.63426534912447],[-121.20238843174575,38.63433848474062],[-121.20224731850881,38.63441356309346],[-121.20210789835029,38.63449056107553],[-121.2019702105661,38.634569456440715],[-121.20183430022573,38.6346502242801],[-121.20170020665648,38.63473283964523],[-121.20156797147366,38.63481727850452],[-121.20143763517463,38.63490351411601],[-121.20130923824755,38.6349915206386],[-121.20118281774558,38.63508127130676],[-121.20105841302997,38.635172738470004],[-121.20093606231391,38.63526589446999],[-121.2007631713417,38.63540326641925],[-121.20067772357329,38.635474119577935],[-121.200593864966,38.63554613140608],[-121.20051162103078,38.63561928046115],[-121.20043101729915,38.63569354349892],[-121.20027855480706,38.63584157210322],[-121.20020293351968,38.63591899104894],[-121.20012904650555,38.63599743274661],[-121.20005691470388,38.63607687392029],[-121.19998656250978,38.63615729041684],[-121.19989653438216,38.63626479667704],[-121.19703146267706,38.63977323744049],[-121.1970018770512,38.63980494375504],[-121.19698614659723,38.6398209764505],[-121.19696855408777,38.63983986565637],[-121.19695096155887,38.63985875576044],[-121.19693800337927,38.63987229681026],[-121.19686430542903,38.63994591607581],[-121.19684231492433,38.639966705441566],[-121.1968073905909,38.63999438454444],[-121.1967824605822,38.64001282645656],[-121.19674555945495,38.640040491837716],[-121.1966885657929,38.640095939999874],[-121.19648891406383,38.640285605719285],[-121.1964186601566,38.640259074833075],[-121.19612268715811,38.64031118128718],[-121.19581353264175,38.64036560725584],[-121.19581730975034,38.64003084944211],[-121.18629000322713,38.64123617469778],[-121.18529841459001,38.641361576010155],[-121.1786921961823,38.64219680370795],[-121.17855682749291,38.64221374266167],[-121.17780483990504,38.642301619978085],[-121.17705100972388,38.64237918635614],[-121.17629556730068,38.64244641726867],[-121.1755387417788,38.64250329359113],[-121.17478076573992,38.64254979713047],[-121.1744397359656,38.64256731782736],[-121.17368050057233,38.64259876167827],[-121.1729206809784,38.642619804299564],[-121.17216050849785,38.64263043832085],[-121.17140021438266,38.642630661782825],[-121.17064003218239,38.64262047274862],[-121.1698801930758,38.642599875577034],[-121.16912092820944,38.642568877335265],[-121.1563450684034,38.64195880214392],[-121.15615403668602,38.64102062406024]]]},"properties":{"ZIP5":"95742","PO_NAME":"RANCHO CORDOVA","Shape_STAr":1215090224.7,"Shape_STLe":181620.928754}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.54318445977485,38.695549327746896],[-121.5428802091546,38.695528776777635],[-121.54076866769972,38.6955308842129],[-121.54077781972137,38.687873662287224],[-121.54076571729176,38.6878891763358],[-121.54072599615661,38.68794142110166],[-121.54068744623626,38.68799420111803],[-121.5406500745335,38.68804750019778],[-121.54061389724649,38.6881013021902],[-121.54003074066469,38.68898719979862],[-121.54008113975625,38.695531562993466],[-121.52187212431139,38.695548038331296],[-121.52193520949773,38.69063481645191],[-121.52197952013026,38.68718348978259],[-121.52298154642881,38.68717767698249],[-121.52298282346014,38.68704620524741],[-121.52299971996105,38.68530478587589],[-121.52299934830316,38.68530433119848],[-121.52176841481035,38.685229925259776],[-121.51603012309882,38.685198563564235],[-121.50809313268874,38.68521733515926],[-121.50295720215337,38.68521739909653],[-121.5029227513003,38.68525116910725],[-121.49350480267049,38.685217497411344],[-121.49350486944326,38.68521715896725],[-121.4935038851251,38.68507982523331],[-121.493293682404,38.68507941308782],[-121.49329269708917,38.68494211538072],[-121.49340883530434,38.684942559814736],[-121.4933616515747,38.678632576881654],[-121.4930956062346,38.67863157970713],[-121.49295995285492,38.67868944997864],[-121.48802298999274,38.67867084031351],[-121.48801886706478,38.67808978803871],[-121.48567408665274,38.67808087601396],[-121.48562769739985,38.67625806015452],[-121.4856143903703,38.675675505639866],[-121.48555072933677,38.67538187587757],[-121.48539950121412,38.675030906488374],[-121.48517282561716,38.6747058539067],[-121.48487759389525,38.6744165950812],[-121.48452277455046,38.67417191794929],[-121.48411914849227,38.673979256372405],[-121.48412064562568,38.6740045304106],[-121.4841228872034,38.67403237801233],[-121.48412536667722,38.67405943118316],[-121.4795795286241,38.672047522051265],[-121.47945095211116,38.67198681996195],[-121.47908205907149,38.67176357707385],[-121.4787682209037,38.671493507022255],[-121.4785189753911,38.671184817966065],[-121.47834189423997,38.67084688667222],[-121.47762888661688,38.67084942988108],[-121.477465713874,38.669988700489],[-121.47505269680481,38.657213669066756],[-121.47497230006243,38.6567875571049],[-121.47474316353654,38.655573075048466],[-121.47472341321746,38.65546839068606],[-121.47469525451992,38.6553299774252],[-121.4746968335012,38.65532774495614],[-121.47469728957192,38.65532993349633],[-121.47612636394935,38.65521942077118],[-121.47612940244382,38.65523463170812],[-121.47612998937048,38.655234185715265],[-121.47650700413921,38.657127630484936],[-121.47660844619686,38.65710000863345],[-121.47763604910476,38.65695916181785],[-121.47772288232986,38.65695230274565],[-121.47774619024307,38.65707451059516],[-121.47783265114538,38.657061720070864],[-121.47882929822464,38.65694275370426],[-121.47874616259897,38.65652519784998],[-121.4799307221058,38.6565120294166],[-121.48219669839025,38.656483045028025],[-121.48213593164023,38.656170768396684],[-121.48294062977097,38.656274243448486],[-121.48326962939994,38.65629670972208],[-121.48336056662971,38.65656491512341],[-121.4834529141774,38.6570765863424],[-121.4841550867617,38.65694724705241],[-121.48425785330699,38.65693063605153],[-121.48406454624642,38.65630259346832],[-121.48777681809682,38.65627340782432],[-121.49153811617953,38.65624363280475],[-121.49510679150939,38.656215299439225],[-121.49733161134561,38.656197585767764],[-121.50275721246427,38.656152954198554],[-121.50683784527055,38.656025885566535],[-121.5068392508649,38.656029139268774],[-121.50683928029818,38.65602604842827],[-121.50693589159924,38.65602662614963],[-121.50703392403996,38.65602854405853],[-121.50713190124628,38.65603180398093],[-121.50722978992458,38.65603640307272],[-121.50726144638075,38.65603804215709],[-121.50726149389013,38.656037983800985],[-121.50867007730851,38.65603925578344],[-121.51205062501873,38.656001612150334],[-121.5159615839482,38.655957959420704],[-121.51846038154666,38.65593003378865],[-121.52198107547352,38.65589059718589],[-121.52547492827871,38.65585133924676],[-121.52850913318909,38.65581711231309],[-121.52983820752729,38.655802259560815],[-121.53107097134675,38.6557883766903],[-121.53215664517761,38.655775945580054],[-121.53289735444201,38.6557676072331],[-121.53324757134901,38.655763524553244],[-121.53350673108704,38.65576079234074],[-121.5336380624077,38.65575926054407],[-121.53466944943598,38.6557476180597],[-121.5353891438869,38.6557395208508],[-121.53761617303081,38.655767991907574],[-121.53985947842241,38.655716168477525],[-121.53989866097967,38.65574910208413],[-121.53989810072713,38.655715762357886],[-121.53992066685396,38.65571554473742],[-121.54344202650607,38.65568476334668],[-121.54361239524967,38.65568466860566],[-121.54889839570865,38.65563671576666],[-121.55201151140353,38.65560940858787],[-121.55711084825471,38.65554960020547],[-121.55741899269029,38.65555973039828],[-121.55760437848035,38.65559441889937],[-121.55782618085988,38.655685880556405],[-121.55819414185112,38.65592617938324],[-121.55856962239771,38.656083440827445],[-121.55928278470094,38.65628214463299],[-121.55963438868729,38.65633702646941],[-121.56030918817166,38.65633125252988],[-121.5622533686529,38.656324093255165],[-121.56954852054385,38.65632238085907],[-121.57261514427427,38.65632569846496],[-121.57261035212966,38.65639791327037],[-121.57256794165423,38.663468282798036],[-121.57648665069316,38.663467387322626],[-121.57652007520646,38.66346988238876],[-121.57649590486045,38.66368335540222],[-121.57645011048263,38.66386067957063],[-121.57637431017058,38.66429340350779],[-121.57637058837149,38.66444086375341],[-121.57643648783986,38.66979518619561],[-121.57645124489743,38.67099404835001],[-121.57645292564297,38.67107512012814],[-121.57645724004463,38.671182132730564],[-121.57646393598178,38.67128906934985],[-121.57647301250354,38.67139589845097],[-121.57647381367651,38.671404369738845],[-121.57647966756373,38.671475502834106],[-121.57648393748606,38.671546706717486],[-121.57648662013055,38.67161795795397],[-121.57648771677019,38.67168923492695],[-121.57648832798529,38.671832891186284],[-121.57454983032427,38.67183352434407],[-121.5745334044899,38.67210207237365],[-121.57449708463193,38.678183165774364],[-121.56757822380577,38.67819121013036],[-121.56756946306581,38.679634412401455],[-121.5695948200393,38.67994812537803],[-121.57277540270177,38.68184426945444],[-121.57275379809025,38.68544631105808],[-121.57445367326925,38.68545023725326],[-121.57446629983936,38.68333669987512],[-121.5756970121783,38.68334121033745],[-121.57569826421135,38.683753102248644],[-121.57653905586675,38.68375617614456],[-121.57654733576976,38.68570216956139],[-121.57321129738959,38.6856945008342],[-121.5732360474761,38.68724205966436],[-121.57325271299871,38.68828397826259],[-121.56981220257074,38.688302598450335],[-121.56986391043127,38.69098724383614],[-121.5742840312761,38.691003556131044],[-121.57334789580818,38.6961411262691],[-121.57334798140852,38.69614122928535],[-121.57339583601947,38.69619987931029],[-121.57344237978285,38.69625917493465],[-121.57348759326237,38.6963190980708],[-121.5660706331215,38.69634086804319],[-121.56603450909982,38.691341831754464],[-121.55852186695355,38.69137139476523],[-121.55850826380377,38.699883685533976],[-121.55280077330248,38.69989238034647],[-121.54377261477886,38.695719204229924],[-121.543756466995,38.695711829977256],[-121.54347953233955,38.69561096921255],[-121.54318445977485,38.695549327746896]]]},"properties":{"ZIP5":"95835","PO_NAME":"SACRAMENTO","Shape_STAr":334408759.941,"Shape_STLe":107035.734057}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.4729284432349,38.5625483128747],[-121.47131942367741,38.56211891210882],[-121.4713193417272,38.562118822545614],[-121.47123140318709,38.56197941410149],[-121.47141305497699,38.56156147497316],[-121.47115091420477,38.56149180746842],[-121.47116226750029,38.56146583510627],[-121.47062971630058,38.56132429838168],[-121.47057412200444,38.56145146709688],[-121.47052864378425,38.56155549565356],[-121.47012584106992,38.561446924743095],[-121.47028335048537,38.56108423520924],[-121.46739532964804,38.5603128785801],[-121.46606038234157,38.55974368002709],[-121.46533516774045,38.559574836249695],[-121.4652722786454,38.55989319972295],[-121.46510323898589,38.559851843071286],[-121.46508043142877,38.55996647606263],[-121.46499693196192,38.5599461271182],[-121.46496571623732,38.560103752625736],[-121.46486677939737,38.56013118613774],[-121.46414431857822,38.559951635055384],[-121.46421014947954,38.55963701370723],[-121.46404391757993,38.55959518922252],[-121.46401912788582,38.559710452471734],[-121.46397624060927,38.55990986229009],[-121.46361442848742,38.559819939486985],[-121.46365546426355,38.559621524818844],[-121.46311682253979,38.559491117928104],[-121.46307689735407,38.55968599793465],[-121.46306334055738,38.55959656682736],[-121.46309379518449,38.55944790942867],[-121.46267742171509,38.55939826918701],[-121.46266699339897,38.55944883594673],[-121.46256785066149,38.55955982035863],[-121.46224384489454,38.559479288594204],[-121.46228150251508,38.559523176947074],[-121.46138020183012,38.559276179517155],[-121.46157778872922,38.558850929752985],[-121.4607798717536,38.55863181472974],[-121.46078042502475,38.55863056776118],[-121.4606163023948,38.55858637429221],[-121.46045339713444,38.55854250788544],[-121.46028669974639,38.55849762086486],[-121.46012516319341,38.55845412253796],[-121.45996407683224,38.55841074500386],[-121.45980296432637,38.55836736081631],[-121.45979904491966,38.558366305588514],[-121.4596397577824,38.558323411673335],[-121.45947418467988,38.55827882602323],[-121.45930665225053,38.558232252608605],[-121.45905726002721,38.55816735227911],[-121.45906069705713,38.55815969088536],[-121.4585148268205,38.558009776495915],[-121.45851675621442,38.55800575310041],[-121.45838359256972,38.55796902379507],[-121.45835435852463,38.55796096087844],[-121.45825461270456,38.55793344905179],[-121.45818873228217,38.55791527764004],[-121.4581231324019,38.55789718408053],[-121.45802658575101,38.557870553699374],[-121.45799201175473,38.55786101703971],[-121.45785719763074,38.55782383255105],[-121.4576867465781,38.55777705392103],[-121.45752650989621,38.55773307876452],[-121.45736282595884,38.55768815659432],[-121.45719817588481,38.5576429693007],[-121.45716728963403,38.55763449292973],[-121.45703838289914,38.557599115365946],[-121.45701857180264,38.55759367829219],[-121.45687722876663,38.557554887255435],[-121.45670743619792,38.557508287744135],[-121.45654560009169,38.557463871284305],[-121.45637735554011,38.5574210596277],[-121.45637668799544,38.55742253847067],[-121.45280002354176,38.55644010158931],[-121.45278848804735,38.556466023570074],[-121.45265409607235,38.55676803427687],[-121.45252491763617,38.55684916455271],[-121.45248901788497,38.55672277877542],[-121.45234782978694,38.55668407300993],[-121.45248457928498,38.5563825395708],[-121.45249656711236,38.55635674228199],[-121.44721044719876,38.554904482872104],[-121.44337185408081,38.55384971560914],[-121.44331121763253,38.55398681203985],[-121.44307672349854,38.55392130284919],[-121.44313738177614,38.553785282318486],[-121.44088525685304,38.55316636423115],[-121.44088812285223,38.55366333509834],[-121.44088485607085,38.553662956253326],[-121.44087842054248,38.55366227921675],[-121.44087197170992,38.55366168950289],[-121.44086551070633,38.553661188918824],[-121.44085903868591,38.55366077656943],[-121.4408525590904,38.553660452471206],[-121.4408460730599,38.55366021753062],[-121.44083958288897,38.55366007175873],[-121.440833090872,38.553660015166656],[-121.44082659815615,38.55366004775989],[-121.44049115504974,38.553664008490045],[-121.44048794694389,38.55366404793498],[-121.4404191168992,38.55366537640655],[-121.44035032879309,38.553667647381154],[-121.44028159982432,38.553670861842974],[-121.43959121045887,38.553707892805974],[-121.43923232514925,38.55430307981989],[-121.43921505318234,38.5542963006409],[-121.4391758172067,38.5542813817018],[-121.43833479261055,38.55396868183317],[-121.43833559569592,38.554590517468306],[-121.4378229855706,38.55444715933953],[-121.43729611715514,38.554299809789164],[-121.43664809510788,38.554118573583885],[-121.43664963432416,38.55485355781533],[-121.43664966298154,38.554867221905],[-121.43659945334929,38.55485331353821],[-121.4365446954633,38.5548381451693],[-121.4351247443457,38.55444479388275],[-121.43496515822589,38.55440058515604],[-121.43375993859719,38.55406671833237],[-121.43096038771779,38.553291108205855],[-121.43061882350442,38.55322449404267],[-121.42919387237437,38.55281925858333],[-121.42801070054462,38.552482765588366],[-121.42790560688013,38.55245311999828],[-121.42789404017583,38.550626675209344],[-121.42785753041449,38.55062198120002],[-121.42761415074914,38.55059265697098],[-121.4269485108398,38.550529755561215],[-121.42448943268094,38.55051286510229],[-121.42447541690473,38.54918421267311],[-121.42447401899047,38.549085279605684],[-121.42447071370626,38.54873834518694],[-121.4236023264583,38.54874624113558],[-121.42316739678112,38.54875019290757],[-121.42308001619334,38.548674040198165],[-121.42316803989004,38.54851052764829],[-121.4231722448464,38.5469445188895],[-121.42544603658975,38.54692853165892],[-121.4276436621869,38.546913036570565],[-121.42773065609762,38.546912422672555],[-121.42787051244336,38.546911434944356],[-121.42787017145959,38.54685766390664],[-121.42881629334549,38.5468462359859],[-121.42881629300662,38.546846278326555],[-121.4289101543175,38.546971037929865],[-121.42890610251648,38.54697461973402],[-121.42889868127006,38.54698338670879],[-121.42889352497254,38.546993103599654],[-121.428890427523,38.54700945587393],[-121.42889080175755,38.5470958666955],[-121.42927249071363,38.547094215577474],[-121.42964796174323,38.54709259021182],[-121.42964749565375,38.54699602669683],[-121.42963227003925,38.5469672147285],[-121.42972116916917,38.54683642319804],[-121.42972116896871,38.54683529977414],[-121.42972163591404,38.54683529396716],[-121.4297218401123,38.54683543731574],[-121.42986358921713,38.54694342582621],[-121.43016045243154,38.546939836708916],[-121.43016258423587,38.547097115598646],[-121.4301645489981,38.547241983761666],[-121.4301663939646,38.54737800629381],[-121.43016809273368,38.547503317300276],[-121.43016835706666,38.54752279697074],[-121.43017396000972,38.54793600003269],[-121.43044168602823,38.5479327486762],[-121.43043840155605,38.547500806605136],[-121.43043748485523,38.547380218370776],[-121.43058199969967,38.54737893137104],[-121.43057932258097,38.547238839891946],[-121.43057657324334,38.547095004815795],[-121.43096174005375,38.54709928956086],[-121.43096217102658,38.54693013681666],[-121.43103659577758,38.54681938751403],[-121.43103686538817,38.54681938433513],[-121.43118823525646,38.546927401398726],[-121.43130940332921,38.54692593476917],[-121.43131187957448,38.54719391615623],[-121.4314903178975,38.54719210914602],[-121.43167771409703,38.547190210719904],[-121.43185194536517,38.54718844555346],[-121.43203566798323,38.54718658436739],[-121.43222542752588,38.547184661518834],[-121.43240941743494,38.54718279744732],[-121.43260148526693,38.54718085016894],[-121.43279075833772,38.547178931215434],[-121.43297511648963,38.54717706264421],[-121.43315521827044,38.547175235992874],[-121.43333454104628,38.54717341695835],[-121.4335266730671,38.547171468458956],[-121.43370850375521,38.547169623283935],[-121.43389049275247,38.54716777679591],[-121.43388546017702,38.5468947244507],[-121.43400037200803,38.54689333070374],[-121.4341734233423,38.54678143293488],[-121.43424544418107,38.54689035886044],[-121.43460259206316,38.54688602604113],[-121.43460392246676,38.54703709548503],[-121.43460528734731,38.54719192275185],[-121.43460618267426,38.54729350812679],[-121.43476391321596,38.54729230389883],[-121.43478320877897,38.547292156705524],[-121.4349519735502,38.54729086737715],[-121.43507141697583,38.54728995505077],[-121.43514662595908,38.547289380745454],[-121.43534015291422,38.54728790180823],[-121.43533967866681,38.54726215176811],[-121.43551864727584,38.54726147086235],[-121.435690848469,38.54726081613801],[-121.43572558078272,38.54723320444837],[-121.43572158581813,38.54676259528609],[-121.43696251592317,38.54674752085414],[-121.43696487508315,38.54702329062902],[-121.43696683138862,38.54725211974905],[-121.43710693795184,38.54725131756811],[-121.43723832556364,38.54725056560913],[-121.43725211296807,38.547250486712585],[-121.43739205432344,38.547249685184894],[-121.43753283314716,38.54724887945046],[-121.4376774081528,38.54724805145128],[-121.43791335539869,38.54724669866297],[-121.43791235670507,38.547164048851144],[-121.43844966249064,38.547157712433666],[-121.43852841655789,38.54715678376544],[-121.43916659869595,38.5471494811767],[-121.43916176012394,38.546722316755464],[-121.4416935074508,38.54669558187544],[-121.44170241587581,38.54680533372483],[-121.4424100282797,38.54679785182192],[-121.4424107933544,38.54682532033702],[-121.44241539183768,38.546990426060276],[-121.44241659859155,38.54703375073653],[-121.44238225484133,38.547034881644116],[-121.44238749925607,38.54730627232235],[-121.4424019931338,38.547339841216925],[-121.4423925477529,38.547465461303254],[-121.44232303783113,38.5474672155296],[-121.44193886157139,38.54747165536009],[-121.44194460654174,38.547783863741664],[-121.44220186869954,38.54778078517151],[-121.44220325923499,38.54788673858171],[-121.44256917514463,38.54788588557432],[-121.44261901141103,38.547885867068025],[-121.44277753094326,38.54788219265221],[-121.44276970113219,38.547591020208266],[-121.44283298992457,38.547542252940794],[-121.44291862213689,38.54754097331897],[-121.44300310932579,38.54753971064491],[-121.44310804511679,38.54753814271469],[-121.44310281715568,38.54733265117087],[-121.44322563393553,38.5470110840411],[-121.44331298477786,38.54700984753466],[-121.44339613649474,38.54700867094488],[-121.44348081182277,38.54700747279397],[-121.44356376505245,38.547006298732796],[-121.44364863312785,38.547005096881435],[-121.44373312143706,38.54700390125039],[-121.44372845774227,38.54681924846146],[-121.44383416373053,38.54681777907573],[-121.44393565160242,38.54678170558967],[-121.44401147868186,38.54667152054437],[-121.44401148505091,38.546672175529004],[-121.4440119161098,38.54667088571002],[-121.44452245736392,38.54666544296821],[-121.44452956245422,38.54666800860186],[-121.4445295275268,38.54666556879816],[-121.44548836226357,38.546655406154954],[-121.44555719068798,38.546655025142556],[-121.44565028789208,38.54665561980904],[-121.44574335798414,38.54665748994448],[-121.44583637229795,38.54666063451078],[-121.44592930330053,38.54666505427701],[-121.44602212118568,38.546670747298926],[-121.44611479844811,38.54667771074244],[-121.4462073064217,38.546685943569734],[-121.44629961874841,38.546695442952384],[-121.4463456640072,38.54670029388709],[-121.44641682953386,38.54670697488509],[-121.44648813341998,38.546712679926046],[-121.4465595527411,38.54671740619739],[-121.44663106570594,38.5467211526938],[-121.4467026516632,38.54672391931638],[-121.44676504787944,38.546725473493716],[-121.44677639944342,38.5490947356286],[-121.44681346630534,38.54927477108812],[-121.44691509077803,38.54947193398819],[-121.4470121156909,38.54958601189142],[-121.44713022413951,38.549686803074884],[-121.4484575077827,38.5505557071057],[-121.44852967138063,38.550493581753145],[-121.44866857032737,38.550392986093],[-121.4487950303961,38.55031841746145],[-121.4489547333741,38.55024057546462],[-121.44909677163153,38.55018599055753],[-121.44933331573279,38.55011949667835],[-121.44951891505431,38.55008433921518],[-121.449699429588,38.55002821947645],[-121.44979594340423,38.54998234063277],[-121.44990839400734,38.54991045102709],[-121.4500052090907,38.54982544288434],[-121.45011294743107,38.549684195680214],[-121.45017709066704,38.549527981826095],[-121.45019360004653,38.5494274901812],[-121.45019429302451,38.54818022011766],[-121.45118676734349,38.54818128978518],[-121.45118179388736,38.54776588140934],[-121.4516712405187,38.54776675478343],[-121.45241251267427,38.54776029098263],[-121.45239054587469,38.54675044219851],[-121.45257788265285,38.54675124658562],[-121.45256116156085,38.54737263380727],[-121.4540781300862,38.54736806960116],[-121.45390650667674,38.54689878873003],[-121.45390278141957,38.54688879549523],[-121.45389617190976,38.54687194091544],[-121.45388919000958,38.54685517917227],[-121.45388183682499,38.54683851567626],[-121.45387411346886,38.546821954937045],[-121.45386602333463,38.54680550327686],[-121.45385756982938,38.546789165216204],[-121.45384875407288,38.54677294436393],[-121.45383968532238,38.54675665474947],[-121.45548770430877,38.54676369685519],[-121.45548762206899,38.54659359684097],[-121.45548757283949,38.546492093228025],[-121.45548756708534,38.546480067101164],[-121.45548751941068,38.546382419342855],[-121.45548751403528,38.54637019321818],[-121.45548746756639,38.5462761463585],[-121.45548746004998,38.5462605923031],[-121.45548741281358,38.5461618346392],[-121.4554874057712,38.54614772202432],[-121.45548735472,38.54604375084025],[-121.45548735272023,38.546038149041244],[-121.45548730181423,38.545934008488786],[-121.4554872980967,38.54592562470582],[-121.4554872496656,38.54582687334229],[-121.45548724087612,38.545808930096875],[-121.45548719718718,38.54571978143733],[-121.45548718540854,38.54569486251736],[-121.45548714315997,38.54560763007653],[-121.45548713090524,38.545581721066405],[-121.45548709065723,38.54549993997436],[-121.4554870767965,38.54546943006578],[-121.45548703799355,38.54539001564196],[-121.45548702456672,38.54536215527917],[-121.45548698171446,38.54527485166422],[-121.45548697196458,38.5452552300395],[-121.45548692683995,38.54516190930978],[-121.4554869164913,38.54513965976],[-121.45548686955824,38.54504386965767],[-121.45548686136814,38.54502705073685],[-121.45548681322543,38.54492856243644],[-121.4554868078934,38.54491738315641],[-121.45548675953975,38.54481561468187],[-121.45548675336167,38.544804696658495],[-121.45548670109783,38.54469757682575],[-121.45548662656776,38.54454375789054],[-121.45543193005632,38.54454361671266],[-121.45542926367857,38.54425472010619],[-121.45522679017309,38.54425587516522],[-121.45508584785848,38.544256679103775],[-121.45493681104792,38.54425752942731],[-121.45493592681093,38.5441433480284],[-121.4549350921696,38.54403574072291],[-121.45493448417139,38.543957337125285],[-121.4549343145538,38.54393538682358],[-121.45493421985607,38.54392315307025],[-121.45493337765569,38.543814583568775],[-121.45493253707092,38.54370610326378],[-121.4549316635515,38.543593374163954],[-121.45493079277048,38.54348103786889],[-121.45492996958271,38.54337493691973],[-121.45492914096732,38.543268044955596],[-121.45503488373977,38.54326733850895],[-121.45503423600002,38.54313253124137],[-121.45519042819028,38.54312795504173],[-121.45519036064341,38.543114112411054],[-121.45541869360127,38.54310920527071],[-121.45541375917111,38.54257455256948],[-121.4551930861212,38.542578839001955],[-121.45519089493516,38.54239042368262],[-121.45518795736693,38.542202561604284],[-121.45541034269827,38.54220417962952],[-121.45540476182533,38.541599420428064],[-121.4551488548573,38.54159884724384],[-121.45514558472073,38.54126629021073],[-121.45540170355756,38.54126795449274],[-121.45544527932518,38.54118399849625],[-121.45544145649022,38.5409760232935],[-121.45578871857444,38.54097227690416],[-121.45578675995041,38.540831088718775],[-121.45593158011866,38.5408298994903],[-121.45607490440133,38.54082872286853],[-121.45608099848634,38.54096919985703],[-121.45609109702352,38.54096909057057],[-121.45638962154784,38.54096586732304],[-121.4563884038022,38.5408786077404],[-121.45659470753245,38.54087918399336],[-121.45673503871701,38.54087957537635],[-121.45673357926798,38.54075876158608],[-121.456832789955,38.54075855347446],[-121.4568739911374,38.54075846759648],[-121.45702738921463,38.540758146087576],[-121.4571746377355,38.540757837868476],[-121.45722530470978,38.540757731406956],[-121.4573182683346,38.54075753681809],[-121.4574167632298,38.540757330254095],[-121.45741737780754,38.5408785292569],[-121.45747121211262,38.54087839970171],[-121.4576138235283,38.54087805566692],[-121.45786284175908,38.54087745330073],[-121.45786328027472,38.540967414607614],[-121.45833839263729,38.5409697396828],[-121.4583374175726,38.54083749218367],[-121.45833640296652,38.54069987514248],[-121.4583354232794,38.540567028523775],[-121.45833444943803,38.540435074722936],[-121.4583334843827,38.54030423087043],[-121.45849089599466,38.54030529558061],[-121.45865371230545,38.54030639617358],[-121.4588187549603,38.54030751145473],[-121.45882023749819,38.540447982921805],[-121.45882166568518,38.540583218110854],[-121.45882313787382,38.54072263547759],[-121.45882463518548,38.540864488991986],[-121.4590182516325,38.54086559797968],[-121.45901899760989,38.54118774664684],[-121.45915633052415,38.541187888640756],[-121.45960462370388,38.54118835072215],[-121.45960389941413,38.54086314001764],[-121.4597966195701,38.5408640020761],[-121.45979604465485,38.54072338892269],[-121.45979545601837,38.54057943607358],[-121.45979482052508,38.540423942492986],[-121.45979437809257,38.54031553618584],[-121.46027547715804,38.54031893352673],[-121.46027640876363,38.54041007458522],[-121.46027758330892,38.54052491131318],[-121.46027871041198,38.54063525233528],[-121.4602798294943,38.54074468251129],[-121.46028094494301,38.540853835193445],[-121.46042334535068,38.540854534457196],[-121.46056200644789,38.540855214311314],[-121.46069791811017,38.54085588118469],[-121.46084011030383,38.54084800421172],[-121.46097965388648,38.5408480237151],[-121.46111802860885,38.54084804211111],[-121.4612565031232,38.54084806080622],[-121.46125603949777,38.54079626778731],[-121.46139552381572,38.540796830656525],[-121.46153888052247,38.54079741047709],[-121.46169445318277,38.540798038843846],[-121.4618202400121,38.540790883442064],[-121.46200344895472,38.540791526416776],[-121.46217350590413,38.540792125087805],[-121.46225124550816,38.54079239811311],[-121.46233973059576,38.540792709305386],[-121.46251054918682,38.540793310119206],[-121.46268561986882,38.54079392502071],[-121.46281149021121,38.54079409954106],[-121.46299106111614,38.540794527666236],[-121.46316414773618,38.54079494074429],[-121.46325376228275,38.54079515377525],[-121.46333990929104,38.540795358762544],[-121.4635172250967,38.54079578101736],[-121.4636993000217,38.54079621424779],[-121.46382516603296,38.54079604890755],[-121.46399612201651,38.54079607339158],[-121.4641619758188,38.5407960983198],[-121.46424166511711,38.540796109667994],[-121.46431978980954,38.54079612092508],[-121.46432214882036,38.54119310553927],[-121.46531856595634,38.5411940853224],[-121.46532259653532,38.54099934773379],[-121.46532411055416,38.540926171150176],[-121.4655043961937,38.54092739326833],[-121.46550467448881,38.54091244144258],[-121.46568415358558,38.54091429198584],[-121.46568394998769,38.54092769821521],[-121.4658594076011,38.540928920008064],[-121.46586066505736,38.540730851597175],[-121.46586078509178,38.540712053105246],[-121.46602797312995,38.54071309683127],[-121.46630210820652,38.54071476517866],[-121.46626989345876,38.540519397323095],[-121.46629766637581,38.540545612740694],[-121.4663254479006,38.54057113990485],[-121.46635322969722,38.54059632652394],[-121.46638276217264,38.54062117526491],[-121.46641751066373,38.54064982371646],[-121.46641847054697,38.54065138669693],[-121.46641806425167,38.54065111095027],[-121.46661562220622,38.540794563733485],[-121.46696795387051,38.540985562461884],[-121.46697784560617,38.540989948556934],[-121.4670069312238,38.54100249241131],[-121.46703629169939,38.541014635723684],[-121.46703550033467,38.540784812925196],[-121.46762657381252,38.54078787176943],[-121.46762642369228,38.54071465057304],[-121.46796097745828,38.54071767944113],[-121.46796015939668,38.54079095384124],[-121.46810124575306,38.540793417789175],[-121.46810275865938,38.54060856763458],[-121.46821479565088,38.54060942403723],[-121.4682147977957,38.54066887071713],[-121.46838702285916,38.54067048553405],[-121.46855734277995,38.540672082335504],[-121.46879534541533,38.54067431395068],[-121.46879496913198,38.540854798166094],[-121.46903404156308,38.54085747744066],[-121.46903567199877,38.54068487553504],[-121.46920105995557,38.54068472263607],[-121.46937333955321,38.54068456326727],[-121.46937428018092,38.54056436614542],[-121.4693744515269,38.540542398529695],[-121.4696500099311,38.54054539520089],[-121.47018333493054,38.540551193397945],[-121.47018407912252,38.540573170611275],[-121.47018085802613,38.540896302607976],[-121.47047613007777,38.54089221281743],[-121.47047602806848,38.54077593343417],[-121.4705456585158,38.54077828178791],[-121.4705459541809,38.54077801016866],[-121.47054595507406,38.54077804440685],[-121.47114323123566,38.54077840286623],[-121.4711432313814,38.54077853800161],[-121.47114352013533,38.540778269952845],[-121.4712507879681,38.54090856066577],[-121.47152484839464,38.54090910728914],[-121.47152424186042,38.54077862925917],[-121.4723148789674,38.54077909617311],[-121.47231679098084,38.54120376748102],[-121.47234265961806,38.54120333770313],[-121.47332260839447,38.54118015552236],[-121.47430189262599,38.54114353774708],[-121.47429611598943,38.54102221371246],[-121.47429590256839,38.54101739474104],[-121.47429538026029,38.541000160894505],[-121.47429524224933,38.540982923388505],[-121.47429548621446,38.540965685816225],[-121.47429611439652,38.5409484553949],[-121.47429712448125,38.54093123481675],[-121.47429851755564,38.54091403219478],[-121.47476430478673,38.54090532407062],[-121.47475657537333,38.54076868314193],[-121.47477136025819,38.54069849914149],[-121.47492335317915,38.54070779164189],[-121.47495606894985,38.54070979234378],[-121.47510106793425,38.54071865738044],[-121.47512843186652,38.541102140559644],[-121.47573310151638,38.54106575762768],[-121.47578672409523,38.5410619762617],[-121.47578935835028,38.54156151709676],[-121.47527723047973,38.54157319940011],[-121.47527444520976,38.54183643631624],[-121.47579076034881,38.54182745586003],[-121.47579785210083,38.54317274638012],[-121.47550513317465,38.54317534154998],[-121.47534560575248,38.54317675527892],[-121.4751872151775,38.5431781595297],[-121.47514304514333,38.543178551080075],[-121.47514525870247,38.543289351730735],[-121.47514750497376,38.54340178855998],[-121.47535810576102,38.54339960217669],[-121.47536091655024,38.5435345378784],[-121.47536378743635,38.5436723792477],[-121.47536825072204,38.54388666180663],[-121.47580159522714,38.54388258429034],[-121.47580311614729,38.5441710775626],[-121.47546325574787,38.54416988612089],[-121.47530940610912,38.544169347175725],[-121.4753069234301,38.54436100012121],[-121.47540718589694,38.5443600637159],[-121.47540635875072,38.544462919970314],[-121.47540552837079,38.544566215848135],[-121.47540470351244,38.54466891625747],[-121.47580572877419,38.544666566048505],[-121.47580656639975,38.544825532351254],[-121.47534344351938,38.544829437964],[-121.47534286959647,38.544992242906325],[-121.47534247893803,38.54510312183222],[-121.47518516830368,38.54510434721286],[-121.47518561978484,38.545214238070116],[-121.47518607383533,38.54532440371276],[-121.47518653019236,38.54543519188614],[-121.47518697142277,38.54554257729988],[-121.47532144731375,38.54555173122524],[-121.47532109348968,38.5457178263425],[-121.47532084380364,38.54583495903843],[-121.47532061491913,38.545942396366755],[-121.47532020482171,38.5461350262714],[-121.47581344270037,38.54612979767934],[-121.47581465179839,38.5463589248763],[-121.4753960095404,38.54635905205914],[-121.47539686359247,38.54652611841293],[-121.4753972740504,38.54660667765111],[-121.47539769944785,38.54668988649727],[-121.47539826390302,38.54680037245539],[-121.47539882970875,38.5469111431032],[-121.47539974923627,38.54709130880643],[-121.47526456195384,38.547092700371536],[-121.47526561799629,38.54729591166099],[-121.47526635989756,38.5474387172312],[-121.47526707052765,38.54757532268099],[-121.47515384307049,38.54757574072602],[-121.4751534709307,38.5477180655709],[-121.47533213146855,38.54771766583405],[-121.47533313141166,38.54782414206868],[-121.4753341566929,38.54793341390375],[-121.47533633206496,38.548165254489426],[-121.47517036033564,38.548166940610365],[-121.4751709734419,38.54875076297996],[-121.47528187412875,38.54875063255668],[-121.47528428867031,38.54901576870495],[-121.47541353132719,38.54901516005984],[-121.47541227369712,38.54925601207357],[-121.4753954191795,38.549420935991535],[-121.47539942129612,38.549658688435635],[-121.47526001650014,38.549659623062176],[-121.47522452110694,38.549659861203764],[-121.47522400115741,38.54978501786775],[-121.47535397757444,38.54978403693581],[-121.47546949827523,38.54978316421026],[-121.47558016367509,38.54978232972716],[-121.47557925161436,38.54992408725708],[-121.47533287218974,38.549925732645605],[-121.47533477049787,38.550063877704645],[-121.4753354333032,38.550112134594464],[-121.47533652607177,38.55019163386444],[-121.47540908556978,38.550191479023745],[-121.47541105220371,38.55031067400636],[-121.47541438042926,38.550512452347995],[-121.47533334416273,38.550513174165765],[-121.47533537047481,38.55069882504274],[-121.47533659080766,38.55081075270455],[-121.47533784104151,38.55092532373575],[-121.47533938974259,38.551067178005916],[-121.47516366691146,38.55106882714667],[-121.47516486924765,38.551206877160354],[-121.47516584240064,38.551318684785116],[-121.47513376903433,38.5513188366204],[-121.47509781098339,38.55131900596206],[-121.47509939123478,38.55141891728392],[-121.47510340628922,38.55167288505465],[-121.47579757529708,38.55185948126903],[-121.4757892056023,38.55302449416448],[-121.47531198790217,38.552900476138745],[-121.47525707630169,38.55302623213034],[-121.47578816536054,38.55316938353037],[-121.47578743548644,38.5532709285106],[-121.47521538573321,38.553121710318386],[-121.47508619177682,38.55341758101938],[-121.4753626839311,38.55349167054518],[-121.47525964578958,38.55372978813986],[-121.47523454237587,38.55378779843301],[-121.47513632009087,38.554014784644],[-121.47526693024534,38.55404974165687],[-121.47521322847123,38.5541726346576],[-121.47519920088541,38.55420473309656],[-121.47508918510772,38.554456492729045],[-121.4750914200218,38.55445649385668],[-121.47509776009015,38.55445647486469],[-121.4750999951765,38.55445645256961],[-121.47510633474032,38.554456346187834],[-121.47510856890472,38.55445629325788],[-121.47511490452227,38.55445609947058],[-121.47511713661743,38.554456015900556],[-121.4751234671414,38.554455734702636],[-121.47512569716737,38.55445562049257],[-121.4751320191427,38.55445525367012],[-121.4751342470994,38.55445510881998],[-121.47514056053937,38.55445465457127],[-121.47514278413225,38.55445447907063],[-121.47514908672905,38.55445393918703],[-121.47515130710545,38.554453733041086],[-121.47515759657114,38.554453106611305],[-121.47515981142988,38.55445287071057],[-121.47516608663044,38.55445215592765],[-121.47516829707236,38.55445189658337],[-121.47559233472961,38.55435710650672],[-121.47559738044578,38.554356646488785],[-121.47560213328256,38.554355761721645],[-121.4756093389356,38.55435442050239],[-121.4756118112817,38.5543539605353],[-121.475616291124,38.5543524430014],[-121.47562309657242,38.55435013780918],[-121.47562543022929,38.55434934748487],[-121.47562951631758,38.55434723717744],[-121.47563569266885,38.55434404715533],[-121.47563782093694,38.55434294779312],[-121.4756413727768,38.55434031614762],[-121.47564675994055,38.55433632525478],[-121.47564860911112,38.55433495525948],[-121.47565152632906,38.55433187839758],[-121.47565746483757,38.5543256134338],[-121.47577962660357,38.55435783700202],[-121.4757794378029,38.554384006323424],[-121.47577936637008,38.55439638523484],[-121.47577965413181,38.55443889359328],[-121.47578002493657,38.55449383651757],[-121.47578471188304,38.554756180231],[-121.47558305901515,38.5547028920703],[-121.47543912922048,38.5550358728371],[-121.4754241757115,38.55507046619671],[-121.47536162800289,38.55521517044492],[-121.47482725358202,38.55507124279083],[-121.47496649135323,38.55569198946312],[-121.47552092204639,38.55583938390747],[-121.47539412619714,38.55612240010767],[-121.47534760660025,38.55622623480658],[-121.47529056420038,38.55635355412869],[-121.47530976565987,38.55635840602901],[-121.47541520824619,38.55638505058369],[-121.47536339279506,38.556511155799804],[-121.47581820192553,38.556630527881595],[-121.4758283439985,38.557198165459546],[-121.47495329022581,38.556965032262724],[-121.4749552479703,38.55697760866703],[-121.47498740900589,38.55725297430427],[-121.47503313821258,38.55757316978352],[-121.47503914174844,38.55758431048843],[-121.4757227504959,38.55776763827062],[-121.47557379639873,38.55810955408383],[-121.47548701873446,38.558308749317106],[-121.47590157464046,38.558419322400724],[-121.47671245885277,38.55999034966626],[-121.47670668086488,38.55999094606286],[-121.47670087032846,38.559991599969486],[-121.47669246341947,38.55999254664],[-121.47668950647783,38.55999287921516],[-121.4766837102685,38.55999361336557],[-121.47667237740637,38.55999504770413],[-121.47640452863293,38.560030837066975],[-121.47640232808433,38.56003113251623],[-121.47639407783407,38.56003230690007],[-121.47638659947015,38.560033365856796],[-121.47638440448621,38.56003368475427],[-121.47637652554457,38.56003491937495],[-121.47636758290763,38.560036320353326],[-121.47636654328694,38.56003648952312],[-121.47634979352381,38.56003934526355],[-121.47634874235031,38.56003952519167],[-121.47634101801127,38.56004095600423],[-121.47633212978772,38.56004260317107],[-121.47633101416459,38.56004280983439],[-121.47632302241168,38.560044407002756],[-121.47631447565895,38.56004611517254],[-121.47631336106404,38.56004633805644],[-121.47630556496372,38.56004800998253],[-121.4762968644433,38.56004987691409],[-121.47629578995242,38.56005010718649],[-121.47628802863204,38.56005188647556],[-121.47627940416939,38.56005386456037],[-121.47627830542545,38.56005411634446],[-121.47627058002575,38.56005600390257],[-121.47626091207245,38.56005836555108],[-121.4761351417345,38.56009136830805],[-121.47576379952284,38.56022228015843],[-121.47533265064082,38.560374274606566],[-121.47527198827763,38.56039565988397],[-121.4749352574432,38.56057519969883],[-121.47448923578801,38.5608130097302],[-121.47414362328722,38.56103416083859],[-121.47430470493192,38.561077017649],[-121.47407015183745,38.561621683478606],[-121.47367417526185,38.56151589018494],[-121.47343565290777,38.56206457542896],[-121.47330280749297,38.56202916300213],[-121.47324729740689,38.56215777570138],[-121.47320216986051,38.56226233121026],[-121.47306609123265,38.56222530290205],[-121.4729284432349,38.5625483128747]]]},"properties":{"ZIP5":"95817","PO_NAME":"SACRAMENTO","Shape_STAr":61587134.1592,"Shape_STLe":58926.0813827}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.34734457112698,38.64286563009922],[-121.34708699459766,38.642460648817575],[-121.34749123408729,38.642303564963825],[-121.34747688910849,38.64225599303],[-121.34727131908231,38.641574234667495],[-121.34732833607795,38.64152469170217],[-121.34724373305859,38.64124410965286],[-121.34653767460082,38.64138538995405],[-121.34654817197948,38.64087690230802],[-121.34711083073465,38.64088524611636],[-121.34709927870004,38.64005496008324],[-121.34682420889476,38.64004871699597],[-121.34678679942412,38.64002971414905],[-121.34612723682564,38.64001473992253],[-121.34594869242949,38.6400106853745],[-121.34595129744517,38.639129718489],[-121.34606244930781,38.63913107198755],[-121.3489211526281,38.63916226885617],[-121.3489128883595,38.640054012846534],[-121.34986837469877,38.64006153104355],[-121.34987170060761,38.640420758101364],[-121.35061489768593,38.64042664096827],[-121.35061513693734,38.63993920018206],[-121.35089536546508,38.63994062982088],[-121.35088629047642,38.63929351831808],[-121.35088601587033,38.63918366957381],[-121.35169862603476,38.63919251008695],[-121.35169757874597,38.639302346020656],[-121.35169794120989,38.64009926320147],[-121.3529249400418,38.6401060659843],[-121.35292732101425,38.6398438054997],[-121.35337302762252,38.63984760539458],[-121.35406700814956,38.63985351760945],[-121.3540681131301,38.639218257894534],[-121.3542196829456,38.639219902750426],[-121.3545088266071,38.63923810403325],[-121.35488032755524,38.639307435382335],[-121.35523083599305,38.639426307426156],[-121.35523587404354,38.63680750786724],[-121.35523801661309,38.63569335424579],[-121.3552383338578,38.635528510461995],[-121.35523894688939,38.63520995613965],[-121.35594290944161,38.635318851067225],[-121.3562106542813,38.63515632869666],[-121.35634938367077,38.635575399809575],[-121.35637646528266,38.63557071780531],[-121.35642021967728,38.635562642811685],[-121.35646378533342,38.63555397125603],[-121.35650715188885,38.63554470578373],[-121.35655030785706,38.63553484633117],[-121.35721171271001,38.63537882072088],[-121.35708092718092,38.63504860671687],[-121.35716071671497,38.63484993714587],[-121.3568981839793,38.63420127560803],[-121.35661695145266,38.634127920336276],[-121.35624266460259,38.63429355981473],[-121.35624211501924,38.634292731533336],[-121.35622353539473,38.63426540118844],[-121.35620434929977,38.63423832873256],[-121.35618456470942,38.63421152141697],[-121.35616418611245,38.63418499097805],[-121.35614322034348,38.63415874375975],[-121.35612167423713,38.634132786106136],[-121.35609955229015,38.634107128852676],[-121.35603466175529,38.634034558973276],[-121.35596504934476,38.63395946820688],[-121.35589377672403,38.63388534024308],[-121.35584218161492,38.633829013585185],[-121.35572544585148,38.63366293155749],[-121.35564725014996,38.63348347362268],[-121.35554812299895,38.63348292228506],[-121.35524227127632,38.633481218824784],[-121.35524301792321,38.633093160500074],[-121.3552430716322,38.633065001250856],[-121.35524344943184,38.63286869913116],[-121.35524380953089,38.63268159153525],[-121.35524392489525,38.63262109288686],[-121.35524418683754,38.63248534346442],[-121.35524455449875,38.632293716974885],[-121.35524513749748,38.6319904129486],[-121.35640534445233,38.6320076178746],[-121.35641121856992,38.63135701605328],[-121.35641153359832,38.63132212400083],[-121.3564125076939,38.63121423448089],[-121.35643790097103,38.629262588306936],[-121.35602527743224,38.62926339365609],[-121.35602601906032,38.62872565009785],[-121.3552496321271,38.62871845258432],[-121.3552506148542,38.62830301253727],[-121.35525118626425,38.6278945729214],[-121.3559863637982,38.62790212608529],[-121.35595538826053,38.62735548903418],[-121.35597608349991,38.6271572034314],[-121.35573671612865,38.6271545031306],[-121.35573646706756,38.626862844022035],[-121.35572012946294,38.62663482177515],[-121.35597923913805,38.626637175114084],[-121.35597753295052,38.626120620672765],[-121.35629399253948,38.625892859831815],[-121.35625015013039,38.625829306994206],[-121.35617656768041,38.62572263556622],[-121.3561732259614,38.625717265625354],[-121.35616818470386,38.625705519551154],[-121.35616582049299,38.62569326312786],[-121.35616620687675,38.625680872441244],[-121.35616932898537,38.625668722184685],[-121.35617509389924,38.62565718211308],[-121.35618332389728,38.62564660168998],[-121.35619377258362,38.62563730477184],[-121.3562061216128,38.62562957067093],[-121.35621999329003,38.62562363782908],[-121.35623496682739,38.625619684088235],[-121.35625058865458,38.62561782945036],[-121.35625091961155,38.625601273576834],[-121.35572575533517,38.625595652289576],[-121.35573836642122,38.624689716663774],[-121.35587087877488,38.62469116705767],[-121.35587449896718,38.624343626550846],[-121.35609716844156,38.62434754822731],[-121.35610480296683,38.6235013895987],[-121.3560133733717,38.62350024082436],[-121.35574647518149,38.623314883195164],[-121.35525758261615,38.62332352902474],[-121.35525841642948,38.6227278451055],[-121.35576399890111,38.62274235976139],[-121.35602736623903,38.622562937026636],[-121.35575076937604,38.62236137045547],[-121.35525893249742,38.62235865749785],[-121.35525976165955,38.621766405979095],[-121.35576983490914,38.621773110479985],[-121.35607023915789,38.6215987035588],[-121.35575615537613,38.621409530432096],[-121.35526025957458,38.621410779568464],[-121.35526115078405,38.620773315604474],[-121.35576787934619,38.62077612765023],[-121.35608681852595,38.62047839722639],[-121.35593397044327,38.62033562806906],[-121.35576879376248,38.62018134235317],[-121.35526197823407,38.62018290008969],[-121.35526241101856,38.61987345724827],[-121.35527420129226,38.619873442690476],[-121.3575586876232,38.619869258477564],[-121.35755907347486,38.61986925791481],[-121.35756877399048,38.61820880692754],[-121.35526477410556,38.61818395890489],[-121.35526577310398,38.617470185289584],[-121.35521195728765,38.617469556906016],[-121.35522020612729,38.61642627286633],[-121.35577753320287,38.61642948650876],[-121.35596176327044,38.61610106114961],[-121.35595796377959,38.615610097693136],[-121.35588633936767,38.615164607702454],[-121.3558507851037,38.61493368481155],[-121.35591811017642,38.61484361742537],[-121.35607931753327,38.61462794806554],[-121.35523788198583,38.61419029087068],[-121.35524060968909,38.61384522367723],[-121.35585359354529,38.613851834267436],[-121.355873061481,38.61340946791375],[-121.35524410571362,38.613402871201075],[-121.355249276065,38.61274868849819],[-121.35589739914573,38.61276013776888],[-121.35589586944529,38.612329394314735],[-121.35591162374216,38.61159005121294],[-121.35525850319921,38.611581474154804],[-121.35526065654268,38.611309047260654],[-121.35591355637825,38.611312672624095],[-121.35591754495664,38.610877855319636],[-121.35591931744769,38.61067845270771],[-121.35526566923289,38.610674806962194],[-121.35526911442496,38.610238930765725],[-121.35526911920951,38.61023738574136],[-121.35526907265856,38.61023415303728],[-121.3552689572029,38.610230921751494],[-121.35526876825003,38.61022769185839],[-121.35526850807173,38.61022446607332],[-121.3552681755281,38.610221243489015],[-121.35526777289905,38.610218025920005],[-121.35526729672394,38.61021481514882],[-121.35526675045533,38.6102116102938],[-121.35523815689547,38.61005440997353],[-121.35523788597293,38.61005288053149],[-121.35523737303545,38.610049672258256],[-121.35523693133953,38.610046458075246],[-121.35523656203333,38.61004323798889],[-121.35523626510047,38.610040013800905],[-121.35523603823663,38.61003678639936],[-121.3552358849024,38.610033554001745],[-121.35523580274455,38.61003032290126],[-121.35523579064747,38.61002708948807],[-121.35523748421737,38.60981287826646],[-121.35596878749055,38.60980910016164],[-121.3559704023677,38.60963907876182],[-121.35628587314551,38.60964082532223],[-121.35628502427829,38.610133708059074],[-121.35712471971267,38.61014210883755],[-121.35712824062051,38.609776293684625],[-121.3592375338554,38.609787931788695],[-121.35938449268735,38.60979538348533],[-121.35989120339575,38.609804667939684],[-121.35989116247639,38.609373720250595],[-121.35989107035319,38.60841269561933],[-121.35989710234263,38.60720278680123],[-121.35989723861,38.60717532799643],[-121.35990014659706,38.60659186179157],[-121.35990102830777,38.606591868466495],[-121.36082165009448,38.606596943052644],[-121.36377961298135,38.60662546520823],[-121.3639513485531,38.606627868854034],[-121.36394698388129,38.60685782491825],[-121.36417081718501,38.606859048569426],[-121.36454410500453,38.60686108830123],[-121.36453445376391,38.609399289419294],[-121.36453362244099,38.609617671134664],[-121.36503329483232,38.60962041157634],[-121.3653882657961,38.6098534352885],[-121.36538484007242,38.60999477551304],[-121.3657847013761,38.60999120718882],[-121.36593200539507,38.60999727227752],[-121.36635394555569,38.60999961566764],[-121.3663514995388,38.61026620849281],[-121.3673463616708,38.610275831696086],[-121.36734854743845,38.61016600817866],[-121.36735201034585,38.609991957214326],[-121.3673277968378,38.60984978759685],[-121.36789408918891,38.609866999439625],[-121.36789771232024,38.609519037122745],[-121.36847874653277,38.60952841123695],[-121.36847981381338,38.60942086900077],[-121.36848151215104,38.609334896933696],[-121.3689644576547,38.60934106526622],[-121.36906943329126,38.609342405638316],[-121.36906914013218,38.609365934738356],[-121.36917412481418,38.60936651650393],[-121.36990915082652,38.609370586022344],[-121.37000013756686,38.60937108908436],[-121.3700017040448,38.60919379081103],[-121.37009619039452,38.60919427319495],[-121.37049266657206,38.609196299076444],[-121.37050013484107,38.60923304787561],[-121.37097542722005,38.60933526108149],[-121.37104632960643,38.609350508335005],[-121.37104416325195,38.60935750740028],[-121.37104143619196,38.609366763787044],[-121.3710376414728,38.609379647718846],[-121.37103661170654,38.609383144838766],[-121.37103408029908,38.60939247886463],[-121.37103058755085,38.60940536263424],[-121.37102963338553,38.60940887998455],[-121.371027298755,38.60941829435836],[-121.37102322717301,38.609434709228026],[-121.37102016971618,38.60944796833523],[-121.37101881511185,38.609454317752586],[-121.3710160543239,38.60946726675825],[-121.371014635034,38.60947392032955],[-121.37101343111182,38.60948023903353],[-121.37101094375538,38.60949329943421],[-121.37100967841715,38.6094999421298],[-121.37100861070833,38.60950630842043],[-121.37100641840358,38.60951937222513],[-121.37100530220219,38.60952602924417],[-121.3710043853427,38.609532345903375],[-121.37100246367315,38.60954557784491],[-121.3710015064613,38.60955217356503],[-121.37100073326049,38.609558474788145],[-121.37099911144247,38.60957168673635],[-121.37099829129843,38.60957836338119],[-121.37099765052531,38.60958475090931],[-121.37099632857502,38.609597941062496],[-121.37099566133848,38.60960459511428],[-121.37099516551552,38.60961095099704],[-121.37099413901558,38.6096240995114],[-121.37099361208494,38.609630857929],[-121.37099325177677,38.6096373406742],[-121.37099252860965,38.60965033497964],[-121.37099214933478,38.60965714555063],[-121.37099193237597,38.60966364799327],[-121.3709912720279,38.609683448063386],[-121.37098767979658,38.609844923578976],[-121.37151673875898,38.6098469568909],[-121.37149353493167,38.60999494127508],[-121.37149359133339,38.61000703981102],[-121.37194594914422,38.61001059455546],[-121.37212142867065,38.61001593337715],[-121.37254943263054,38.61002674925149],[-121.37260490191788,38.60990029175819],[-121.37286589954643,38.609947024301036],[-121.37308456599389,38.6099861775645],[-121.37315508435782,38.61000369802447],[-121.37311389231961,38.61011125282521],[-121.37307858783333,38.61023450978931],[-121.37306471309383,38.610331007900655],[-121.37343953848976,38.610334577639165],[-121.37345218203822,38.60986133676074],[-121.37387138440042,38.609865870395545],[-121.37386724629694,38.61033868971662],[-121.3741973334153,38.610341861084606],[-121.37419744316105,38.609924320131306],[-121.37419749080733,38.6099196762334],[-121.37419752564655,38.609917799840524],[-121.37419766629189,38.60991315644511],[-121.37419774474445,38.609911282089705],[-121.37419798869834,38.609906641955206],[-121.37419810847591,38.60990476872396],[-121.37419845573831,38.60990013185032],[-121.37419861683296,38.609898260644144],[-121.37419906852034,38.60989363064109],[-121.37419927093207,38.609891761459934],[-121.37419982474816,38.60988713831501],[-121.37420006961717,38.60988527206602],[-121.37420072555399,38.60988065668005],[-121.37420101288026,38.60987879336316],[-121.374201762893,38.60987418659365],[-121.37464301169767,38.609873883387905],[-121.37580347985408,38.60987307573726],[-121.37581060064824,38.60987284564409],[-121.37579722997222,38.61035722334256],[-121.37658577729304,38.61036478571828],[-121.37659031470956,38.609846858536265],[-121.3786530829448,38.60987459173158],[-121.37865025361428,38.60994945508706],[-121.37890094731382,38.609953288011106],[-121.37890073336241,38.6099939319925],[-121.37941951390567,38.61000186418194],[-121.37942029320432,38.609853351841195],[-121.38008258715594,38.60986711120451],[-121.38007157593643,38.610398155113664],[-121.38071410953887,38.610404294245434],[-121.38071380922536,38.610288954581414],[-121.38072427821479,38.609508978426625],[-121.37999877559899,38.60949611860618],[-121.38002291972781,38.608928004374036],[-121.38193641840701,38.60894136205909],[-121.38255530121141,38.6089456756409],[-121.38253662439062,38.609960344564826],[-121.38253381857673,38.61028435721079],[-121.38252837938242,38.61042161043912],[-121.38309253694531,38.61042698877908],[-121.38310055984697,38.60949966683149],[-121.3831202026059,38.607229169199975],[-121.38400256023519,38.607226543932796],[-121.38401174567974,38.60673540994208],[-121.38516905669546,38.60674545501636],[-121.3870557460641,38.6067618068313],[-121.38717357282704,38.60677728983797],[-121.38764353027246,38.60678452695938],[-121.38764285036676,38.607113582412715],[-121.38764261294601,38.607228935382416],[-121.3876411834554,38.60792069370685],[-121.38764094580489,38.60803607279896],[-121.38763787312038,38.60952374517949],[-121.38763682202588,38.61003305565619],[-121.38807475222612,38.610140951444976],[-121.38804781480528,38.61023402636717],[-121.3880403750084,38.61028547451615],[-121.38803539995821,38.61039289342157],[-121.38803323861531,38.610505456029024],[-121.38841478919139,38.61050941823563],[-121.38841665457934,38.6103308900093],[-121.3884185942764,38.61011036391987],[-121.38875668346616,38.61000652329695],[-121.38990362858635,38.61001972012872],[-121.38997622095884,38.610021434023274],[-121.38997313479015,38.610382167760584],[-121.38996665624406,38.61052595273273],[-121.39032427887817,38.61052973667167],[-121.39033326463553,38.61035127384838],[-121.39034339188674,38.61002613847763],[-121.39222838682818,38.61004703539039],[-121.39222811336646,38.61014552865467],[-121.3926679018807,38.61014518424389],[-121.39277601524897,38.61007041409092],[-121.39291916469124,38.6101485276402],[-121.39290751780932,38.610557100336806],[-121.39328250441379,38.61056107696439],[-121.39329334239808,38.610145841439035],[-121.39416602398097,38.610148584270725],[-121.39416030638104,38.61047975646816],[-121.39415874198149,38.610570362781935],[-121.39494428701065,38.61057868174116],[-121.39494420633349,38.61048805872001],[-121.39494390916643,38.61015435507974],[-121.39507753388092,38.61007636470585],[-121.3951969114387,38.610157309827905],[-121.39519837630402,38.61049074928835],[-121.39519877417806,38.61058137576574],[-121.39563510846101,38.610585993932915],[-121.39597474202243,38.610589586373095],[-121.39597732476494,38.61049899166393],[-121.39598680870743,38.61016638500744],[-121.39611831107601,38.61008899678549],[-121.3962299807948,38.61017022046853],[-121.39622716075297,38.610501633948665],[-121.39622638887563,38.61059224801155],[-121.39699080249632,38.61060033031746],[-121.39700277523367,38.61017937884045],[-121.39713277051455,38.61009705099195],[-121.397259083339,38.610183278727185],[-121.39725149413769,38.61060308546669],[-121.39802003655528,38.61061120408678],[-121.39802794470539,38.61020285934584],[-121.3981605116722,38.61011893020137],[-121.39827786796185,38.61020415802525],[-121.39827435862884,38.61061388959353],[-121.39914371349666,38.6106230649975],[-121.39914422687946,38.61051322525871],[-121.39914799101174,38.60970749028363],[-121.40030420797493,38.60972007458006],[-121.40030209891343,38.61017316747951],[-121.40091940522755,38.61017988191868],[-121.40091725836761,38.610641763800665],[-121.40136440389315,38.610646473957935],[-121.40151514220794,38.610648086292265],[-121.40254794300331,38.61065930761833],[-121.40371264895725,38.61067194934306],[-121.4046688184218,38.61068231937147],[-121.40467948901943,38.610352904801125],[-121.40468157229272,38.610347212805465],[-121.40517556591267,38.610363210306865],[-121.40517525523869,38.610366868171226],[-121.40517232546226,38.61040714592213],[-121.40517029213801,38.6104474580066],[-121.40516915537268,38.610487791812595],[-121.40516574583427,38.61068770495423],[-121.40563154495182,38.61069275209098],[-121.40564850822719,38.6105693589513],[-121.4057792527592,38.60961824053949],[-121.40582466895775,38.60928784648148],[-121.40598234121187,38.60888583089409],[-121.40614840299816,38.608888660852394],[-121.40782273796542,38.608917185940406],[-121.40798021507523,38.60891986757677],[-121.40837374947904,38.6089265676694],[-121.40836761817387,38.60963149124372],[-121.40836728015559,38.60967043095475],[-121.41018182812691,38.60968943438427],[-121.41018200256937,38.61005256401705],[-121.41014723757785,38.61005257435979],[-121.41014722668805,38.610074016641605],[-121.41066299933514,38.61007669535304],[-121.41066267209716,38.61074712593143],[-121.4107513781181,38.6107480295091],[-121.41120476430946,38.61075255954581],[-121.41120836912036,38.61031754017429],[-121.4117165823596,38.61031719467569],[-121.41203133400182,38.61038368660165],[-121.41235665250302,38.61031385295862],[-121.41239863990933,38.61046416231678],[-121.41241309342213,38.61065658150976],[-121.41240918249461,38.61076458414668],[-121.41276397518281,38.610768124070674],[-121.41275460987109,38.6103110515604],[-121.4129775912238,38.610269382832634],[-121.41297655619402,38.60998395338766],[-121.41297645175942,38.60965494218903],[-121.41297642132571,38.60956017450742],[-121.41297639900111,38.60948757352401],[-121.41402237032702,38.60950122782911],[-121.41420941308883,38.60950366858533],[-121.41437591365764,38.60950584121013],[-121.41452949628884,38.60950784469296],[-121.41453394970125,38.61005060655153],[-121.41510509131282,38.6100556687747],[-121.41526688739827,38.610047682126286],[-121.41526675068097,38.61018504621842],[-121.41526909600265,38.61080130452885],[-121.41549647117786,38.61081178643434],[-121.41591567276656,38.610813901185765],[-121.41693205598227,38.610823528550455],[-121.4169408146431,38.61073827450707],[-121.41694097272644,38.610655895183264],[-121.41694149912304,38.61038272145613],[-121.41762149667001,38.61038936513921],[-121.417616306576,38.61033302377048],[-121.41993437088041,38.61035583205131],[-121.41993311269071,38.61059870660278],[-121.42007309965824,38.610598733732004],[-121.4200711784084,38.610969495829025],[-121.42058229331496,38.610971636743265],[-121.42077540752182,38.61107919714174],[-121.42077614232527,38.611079909824724],[-121.42077517794745,38.611503367632245],[-121.42067021096246,38.61149301023325],[-121.41994387818886,38.61149129750234],[-121.41994397653067,38.611567988010535],[-121.41994415355225,38.61170586083491],[-121.4199443002768,38.61182064073689],[-121.41994434265376,38.61185452830332],[-121.4199445262905,38.6119977984517],[-121.41994470992063,38.612141069500375],[-121.41994489241065,38.61228433964188],[-121.4199449359974,38.612318078565394],[-121.41994507604964,38.6124276097885],[-121.41994526758103,38.61257767276006],[-121.41994544217427,38.6127141509751],[-121.41994563183071,38.612862327451495],[-121.41994567212224,38.61289336636066],[-121.41994713430189,38.61403657431221],[-121.41994751944699,38.61478584932552],[-121.41994547280603,38.61514779454505],[-121.42003549932646,38.61514825075064],[-121.42003480244101,38.615182398575726],[-121.4200320259273,38.615318621462855],[-121.42029777173323,38.615319525633424],[-121.42029703976374,38.615458700194445],[-121.42029626884832,38.615604924101724],[-121.41994290174338,38.615602849646],[-121.41993773641315,38.616516505655696],[-121.4207705161999,38.61652265771747],[-121.42071447106906,38.61657895215405],[-121.420283297797,38.61693415317529],[-121.41984626631144,38.61743214743096],[-121.41952609344763,38.61798211485621],[-121.41933250700988,38.61856734302882],[-121.41927139517696,38.61917005399914],[-121.41927896228916,38.61992294781867],[-121.41929007819564,38.61992789543081],[-121.41934051798657,38.61994978339047],[-121.41997210754481,38.620218257214994],[-121.41997314028389,38.62067398614684],[-121.4199784010569,38.622997324828475],[-121.41990964662743,38.623023274216074],[-121.41992262554173,38.62390034074601],[-121.41992276716739,38.623941225184076],[-121.41987502548324,38.624341018007186],[-121.41973950921425,38.624728234266286],[-121.4195203369118,38.625091107827224],[-121.4192249289649,38.62541776733004],[-121.41989820068932,38.624796156864626],[-121.42071763429516,38.62480916179873],[-121.42051929369346,38.62499583983954],[-121.4192230715802,38.62616212277628],[-121.41648579552573,38.628624830507064],[-121.41564426825269,38.629381901508104],[-121.41550839329037,38.629507592507984],[-121.4142340557835,38.63076265670339],[-121.41393465533488,38.631046504380336],[-121.41372576053568,38.63126469227752],[-121.41333557532988,38.63162435457478],[-121.41311778265101,38.63182510986595],[-121.41223212817572,38.632641464303646],[-121.41216610271248,38.63271106438693],[-121.41146049491395,38.633365412126025],[-121.4113434478108,38.63347406062404],[-121.41018464803913,38.63454172924256],[-121.40999755849802,38.634705888223905],[-121.40923141706921,38.63542212322444],[-121.40910790658995,38.63553344013576],[-121.40828901455632,38.63629823142785],[-121.40742744075649,38.63708618518693],[-121.4067473208215,38.63770817728346],[-121.40652826032343,38.637912012939104],[-121.40590669501377,38.637899444737464],[-121.40584006796007,38.637898094989595],[-121.40565979530896,38.637894449702834],[-121.40577920789885,38.63778490820362],[-121.40570251831198,38.637793959914895],[-121.405494199389,38.63782146868598],[-121.40528652506178,38.63785182363288],[-121.40498033763323,38.63790197954141],[-121.40449954644366,38.6380113517677],[-121.40441521946805,38.63804194444181],[-121.40410459434106,38.63815463644966],[-121.4038773567498,38.6382370756164],[-121.40380109594344,38.638278681409645],[-121.4033145912177,38.6385441048236],[-121.39962832672241,38.64060307927065],[-121.39902900720162,38.64096487677795],[-121.39832932285883,38.640596995437534],[-121.39774455317051,38.64028952877464],[-121.39764042242841,38.64024394876908],[-121.39763646189368,38.640242848901075],[-121.39757640178792,38.64022617360044],[-121.39752013607881,38.64021055133085],[-121.39751597902867,38.64021000629259],[-121.39745315631829,38.640201766110316],[-121.397394281834,38.6401940446254],[-121.39739007972446,38.640194074122874],[-121.39726668737325,38.64019492782493],[-121.39712908320267,38.640326739849414],[-121.3969574626401,38.64049113323163],[-121.39670489901266,38.640729513042864],[-121.39615404127504,38.64121026515905],[-121.39557185077929,38.64166774584965],[-121.39523260055397,38.64190354865266],[-121.39498573091116,38.64205298692715],[-121.39460333186756,38.642264247291685],[-121.39425411266109,38.64244045914473],[-121.39384090127751,38.642630048729345],[-121.3932381936254,38.64286998257109],[-121.39277295410102,38.643027967096536],[-121.39186672364471,38.64330886504329],[-121.39158379631186,38.643388564540075],[-121.39014493177943,38.64372833770754],[-121.38926539868365,38.643884499130756],[-121.38897005103442,38.64392849977522],[-121.38837139825138,38.644013445998475],[-121.38795659907304,38.64404217927013],[-121.3877267895662,38.644054292256754],[-121.38711297738736,38.64408664286563],[-121.38677283615654,38.64410456855287],[-121.38638494188937,38.644106046681586],[-121.38627639257656,38.64409966551071],[-121.38606047684385,38.64407801092916],[-121.38584701288775,38.64404459776304],[-121.38568915100325,38.644011915922256],[-121.38548632557686,38.64396215127389],[-121.38529508311767,38.64390906122693],[-121.3852036413174,38.64388149231252],[-121.38493498198778,38.64379837647025],[-121.38421436966853,38.643576323923575],[-121.38412819001046,38.64355432536584],[-121.38404066082055,38.64353589524776],[-121.38392227080689,38.64351695594463],[-121.38383253041783,38.64350702833193],[-121.38374225034651,38.64350079778155],[-121.3836924195596,38.64349840302741],[-121.38366646720259,38.6434903253479],[-121.38364660317842,38.64347493589845],[-121.3836220339124,38.643429400678244],[-121.38354482238017,38.64331142320338],[-121.38338166037121,38.643324710036175],[-121.38323561358095,38.64362574017246],[-121.38303985010472,38.64382848014602],[-121.38309155585762,38.64387347347669],[-121.38308666468211,38.64414259355005],[-121.38303377473902,38.644162714674884],[-121.38302604601932,38.6444168286359],[-121.3830205127678,38.644494028050666],[-121.38201694418288,38.64461615336259],[-121.38136084132621,38.64469599037213],[-121.38032433324558,38.644819446818744],[-121.38025400874552,38.64480598873443],[-121.38019388883187,38.6447701851717],[-121.38015847724526,38.64472067139327],[-121.38015072385238,38.64469153530115],[-121.38012083282682,38.64456850143102],[-121.38008388446134,38.64448569559641],[-121.3800094330815,38.64437489267976],[-121.37991157796296,38.64427591043279],[-121.37979329348055,38.64419175841211],[-121.37968635473358,38.644136850814746],[-121.37954070148041,38.644085482678946],[-121.37943301858299,38.6440617240421],[-121.37933835577643,38.6440496828022],[-121.3792925655439,38.64404668167261],[-121.37913377362042,38.643898770482274],[-121.37884811697195,38.64371317995119],[-121.38025487117761,38.642435938182956],[-121.38122765148002,38.64155268124203],[-121.38124108260939,38.64151821870107],[-121.38138883047901,38.64095814854062],[-121.38142942756276,38.640808183159514],[-121.38091072182573,38.640667814611824],[-121.38047588218723,38.64056565796596],[-121.37926490140194,38.640762682554396],[-121.37881746167086,38.6409829894545],[-121.37854803184177,38.6411337998628],[-121.37837335392715,38.641289550446096],[-121.37704504505123,38.642474486635415],[-121.37607843441063,38.641756308539755],[-121.37563327175002,38.641371547147436],[-121.37539407278622,38.64085024380883],[-121.3753021632343,38.64011967168093],[-121.37505048820505,38.64004995048342],[-121.37437641753668,38.64025851321051],[-121.37250809943386,38.64083655735289],[-121.37234486698172,38.640886151725056],[-121.37115231701472,38.641241882761854],[-121.37098837865908,38.64129002995772],[-121.36977818007016,38.64163992497818],[-121.36961431547566,38.641688223794],[-121.36896340132448,38.64125945570621],[-121.3689748464635,38.64105905641427],[-121.36894867032143,38.64105850575036],[-121.36844396670696,38.641047868580166],[-121.36845338734382,38.640765758144866],[-121.36626774911511,38.640745548328994],[-121.36627121973653,38.64047097216064],[-121.36387116570812,38.64044873247871],[-121.36340568634084,38.64044441300717],[-121.36340602205246,38.640575945777734],[-121.36302848961567,38.64057653768032],[-121.36302973302233,38.64043612167349],[-121.36238575463423,38.64042788427575],[-121.36238537375993,38.640953764480415],[-121.36185254972311,38.64094487988824],[-121.36185303237261,38.641184897523864],[-121.36134529252975,38.6411764523571],[-121.3613437553558,38.641777700264576],[-121.36131865581682,38.64189771986222],[-121.36131591075493,38.641898321850256],[-121.36128503645251,38.641904913847725],[-121.36108165248258,38.641932669225206],[-121.36084671836478,38.64196473041237],[-121.3607642476485,38.641600517846896],[-121.36075379282114,38.641445089524964],[-121.36073910828858,38.64142967063742],[-121.36072868480359,38.641413938318635],[-121.36072182191208,38.64139812023734],[-121.36071771624025,38.64137957501856],[-121.36071736738533,38.64136301539612],[-121.3604155690568,38.64137806530114],[-121.36041758348976,38.64115947228114],[-121.35972568823594,38.64115553312547],[-121.35970432902674,38.64202134338373],[-121.359585796684,38.64203021358438],[-121.35948935368948,38.64203835171239],[-121.35948929506772,38.642038355892886],[-121.35927429680467,38.64205649703257],[-121.359282226536,38.64168604174995],[-121.35885505102969,38.64168361043426],[-121.35885454675568,38.64171872575177],[-121.35845011088468,38.641716414259825],[-121.3584486252551,38.64188145871286],[-121.35801394611369,38.64187420977201],[-121.35801768997506,38.64140067161518],[-121.3575185761643,38.641388981793604],[-121.3575133283328,38.641987448881856],[-121.3576028243946,38.64198794507838],[-121.35697946008405,38.64222183408231],[-121.35683332767347,38.64200785581398],[-121.35673885271413,38.64181788762661],[-121.35653227923012,38.641402515207005],[-121.35652730717231,38.64138908215365],[-121.35651954391692,38.64136723627918],[-121.356509417017,38.641338733115475],[-121.35650702530283,38.6413320035985],[-121.35649976683375,38.641310102868125],[-121.3564902506163,38.6412813940844],[-121.35649022602948,38.64128131827199],[-121.35648801749144,38.641274657339665],[-121.35648123581547,38.641252621417706],[-121.35647239070323,38.641223884827895],[-121.35647234387572,38.6412237278106],[-121.3564702904888,38.64121705873054],[-121.35646400567026,38.64119495529647],[-121.35645579028467,38.641166066346344],[-121.35645384526173,38.641159227597065],[-121.35644802398724,38.641136929438645],[-121.356440496242,38.641108089351626],[-121.35643869201475,38.64110117841084],[-121.35643336765243,38.64107880643471],[-121.35642483170652,38.64104293189858],[-121.35626246224106,38.64104221283679],[-121.3552377190605,38.64103662335564],[-121.3552377155164,38.64229943682892],[-121.35523771482329,38.642639943186346],[-121.35476559579612,38.642637244935564],[-121.35476517346589,38.64259342534238],[-121.35433473789813,38.64259102770731],[-121.35433712588511,38.64232742944391],[-121.35396950854266,38.642325380456185],[-121.35396980771601,38.64229237482082],[-121.35397386091674,38.641845211427515],[-121.3539767978942,38.641521316941265],[-121.35406836177131,38.64152211208516],[-121.3540754212745,38.64140960426083],[-121.35402673557232,38.64140355806328],[-121.35397788658757,38.64138308386531],[-121.35394168332677,38.64135136840967],[-121.35392105857603,38.641310801941685],[-121.35347440492077,38.64125324380636],[-121.35351364521428,38.641006336781764],[-121.35320483233713,38.64100346114822],[-121.3529168113821,38.64100077828303],[-121.35291417156536,38.64129141397374],[-121.35291058143474,38.64168659151698],[-121.35061429152361,38.64165822622519],[-121.35061417413976,38.64189451370982],[-121.3496585947932,38.64226825837799],[-121.34961884525129,38.642283804697826],[-121.34973456935488,38.64245701780289],[-121.34898536773105,38.642751543509554],[-121.34906157741548,38.64286788464337],[-121.34912396834433,38.64284294944541],[-121.34941507066898,38.64328733880763],[-121.35013039992772,38.643381996356624],[-121.35051379218937,38.64348190027489],[-121.3507007803233,38.64353062492105],[-121.35068470644933,38.643544579940524],[-121.35067298333209,38.64355759717278],[-121.35065440645039,38.643578223768635],[-121.35064747379079,38.64358591917758],[-121.35063880726884,38.64360034272864],[-121.35062508315997,38.64362318030497],[-121.35061996256998,38.64363170118511],[-121.35061462803647,38.643647060527066],[-121.35060615904284,38.64367144827688],[-121.35060300337439,38.64368053512478],[-121.3506011481878,38.64369641757033],[-121.35059711519466,38.64373093651769],[-121.35059439366324,38.644251753517665],[-121.34957471155286,38.64452888581659],[-121.34956428473879,38.644531737209185],[-121.34954496112982,38.64453720083143],[-121.3495203188708,38.64454416703163],[-121.34951516836017,38.64454562370939],[-121.34949628316349,38.64455125735273],[-121.34949597216139,38.64455134930087],[-121.34947158093338,38.64455862590996],[-121.3494663686437,38.64456018043726],[-121.34944766388591,38.64456605562701],[-121.34944714661806,38.644566217588384],[-121.34942306522584,38.64457378061233],[-121.34941789941364,38.644575402966204],[-121.34939890039365,38.644581674695445],[-121.34937484081648,38.64458961531065],[-121.34936977564294,38.644591286876256],[-121.34935110683502,38.64459775234429],[-121.34932700448223,38.64460609901704],[-121.34932201346159,38.64460782685295],[-121.34930371525894,38.64461446556613],[-121.34930331532165,38.644614610167665],[-121.34927967956,38.644623185577544],[-121.34927462784255,38.644625018476304],[-121.34925621039686,38.64463200876583],[-121.34925600405688,38.64463208688659],[-121.34923260673737,38.64464096723054],[-121.34922763032941,38.64464285550537],[-121.34920939446096,38.644650088249435],[-121.34918103934967,38.644661332638634],[-121.34877706531815,38.6448250248414],[-121.34808864707703,38.643783652334825],[-121.34772569895371,38.64331440828036],[-121.34765451671014,38.643203332419105],[-121.34759155577575,38.643107605555265],[-121.34734457112698,38.64286563009922]]]},"properties":{"ZIP5":"95821","PO_NAME":"SACRAMENTO","Shape_STAr":202354191.228,"Shape_STLe":98242.9575286}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.37579722997222,38.61035722334256],[-121.37581060064824,38.60987284564409],[-121.37580347985408,38.60987307573726],[-121.37464301169767,38.609873883387905],[-121.374201762893,38.60987418659365],[-121.37420101288026,38.60987879336316],[-121.37420072555399,38.60988065668005],[-121.37420006961717,38.60988527206602],[-121.37419982474816,38.60988713831501],[-121.37419927093207,38.609891761459934],[-121.37419906852034,38.60989363064109],[-121.37419861683296,38.609898260644144],[-121.37419845573831,38.60990013185032],[-121.37419810847591,38.60990476872396],[-121.37419798869834,38.609906641955206],[-121.37419774474445,38.609911282089705],[-121.37419766629189,38.60991315644511],[-121.37419752564655,38.609917799840524],[-121.37419749080733,38.6099196762334],[-121.37419744316105,38.609924320131306],[-121.3741973334153,38.610341861084606],[-121.37386724629694,38.61033868971662],[-121.37387138440042,38.609865870395545],[-121.37345218203822,38.60986133676074],[-121.37343953848976,38.610334577639165],[-121.37306471309383,38.610331007900655],[-121.37307858783333,38.61023450978931],[-121.37311389231961,38.61011125282521],[-121.37315508435782,38.61000369802447],[-121.37308456599389,38.6099861775645],[-121.37286589954643,38.609947024301036],[-121.37260490191788,38.60990029175819],[-121.37254943263054,38.61002674925149],[-121.37212142867065,38.61001593337715],[-121.37194594914422,38.61001059455546],[-121.37149359133339,38.61000703981102],[-121.37149353493167,38.60999494127508],[-121.37151673875898,38.6098469568909],[-121.37098767979658,38.609844923578976],[-121.3709912720279,38.609683448063386],[-121.37099164921112,38.60966997620203],[-121.37099193237597,38.60966364799327],[-121.37099252860965,38.60965033497964],[-121.3709928261325,38.60964368072185],[-121.37099325177677,38.6096373406742],[-121.37099413901558,38.6096240995114],[-121.37099458845707,38.609617404637085],[-121.37099516551552,38.60961095099704],[-121.37099632857502,38.609597941062496],[-121.37099693495665,38.60959115695019],[-121.37099765052531,38.60958475090931],[-121.37099911144247,38.60957168673635],[-121.37099986441879,38.60956494486169],[-121.37100073326049,38.609558474788145],[-121.37100246367315,38.60954557784491],[-121.37100337675557,38.60953877828103],[-121.3710043853427,38.609532345903375],[-121.37100641840358,38.60951937222513],[-121.37100747077044,38.60951266260707],[-121.37100861070833,38.60950630842043],[-121.37101094375538,38.60949329943421],[-121.37101214408706,38.6094866068359],[-121.37101343111182,38.60948023903353],[-121.3710160543239,38.60946726675825],[-121.37101739777349,38.60946061998224],[-121.37101881511185,38.609454317752586],[-121.37102322717301,38.609434709228026],[-121.37102492464656,38.60942762833734],[-121.371027298755,38.60941829435836],[-121.37103058755085,38.60940536263424],[-121.37103148678072,38.6094018251658],[-121.37103408029908,38.60939247886463],[-121.3710376414728,38.609379647718846],[-121.37103862217938,38.60937611519728],[-121.37104143619196,38.609366763787044],[-121.37104632960643,38.609350508335005],[-121.37097542722005,38.60933526108149],[-121.37050013484107,38.60923304787561],[-121.37049266657206,38.609196299076444],[-121.37009619039452,38.60919427319495],[-121.3700017040448,38.60919379081103],[-121.37000013756686,38.60937108908436],[-121.36990915082652,38.609370586022344],[-121.36917412481418,38.60936651650393],[-121.36906914013218,38.609365934738356],[-121.36906943329126,38.609342405638316],[-121.3689644576547,38.60934106526622],[-121.36848151215104,38.609334896933696],[-121.36847981381338,38.60942086900077],[-121.36847874653277,38.60952841123695],[-121.36789771232024,38.609519037122745],[-121.36789408918891,38.609866999439625],[-121.3673277968378,38.60984978759685],[-121.36735201034585,38.609991957214326],[-121.36734854743845,38.61016600817866],[-121.3673463616708,38.610275831696086],[-121.3663514995388,38.61026620849281],[-121.36635394555569,38.60999961566764],[-121.36593200539507,38.60999727227752],[-121.3657847013761,38.60999120718882],[-121.36538484007242,38.60999477551304],[-121.3653882657961,38.6098534352885],[-121.36503329483232,38.60962041157634],[-121.36453362244099,38.609617671134664],[-121.36453445376391,38.609399289419294],[-121.36454410500453,38.60686108830123],[-121.36417081718501,38.606859048569426],[-121.36394698388129,38.60685782491825],[-121.3639513485531,38.606627868854034],[-121.36377961298135,38.60662546520823],[-121.36082165009448,38.606596943052644],[-121.35990102830777,38.606591868466495],[-121.35990014659706,38.60659186179157],[-121.35989723861,38.60717532799643],[-121.35989710234263,38.60720278680123],[-121.35989107035319,38.60841269561933],[-121.35989116247639,38.609373720250595],[-121.35989120339575,38.609804667939684],[-121.35938449268735,38.60979538348533],[-121.3592375338554,38.609787931788695],[-121.35712824062051,38.609776293684625],[-121.35712471971267,38.61014210883755],[-121.35628502427829,38.610133708059074],[-121.35628587314551,38.60964082532223],[-121.35628636825707,38.609353740495735],[-121.35628878494794,38.60795141252602],[-121.35590383157322,38.60794584349142],[-121.35592370115285,38.607680865574714],[-121.355686801999,38.607512624732514],[-121.35525568471137,38.60751025077019],[-121.35526980023992,38.60572431867184],[-121.3557412456009,38.60572687644732],[-121.35582702928976,38.605605588272766],[-121.35574349567634,38.605477830322485],[-121.35527171183637,38.605482541862884],[-121.35527692477415,38.60482292229887],[-121.35576607172618,38.60482227673389],[-121.35583042003269,38.604692623340526],[-121.35576847668624,38.604556073739],[-121.35527896710143,38.6045645218211],[-121.35528456471604,38.60385624382654],[-121.35528505037807,38.60379477961562],[-121.35594503991304,38.603802077099765],[-121.35594533927186,38.603791685930375],[-121.35599685083912,38.60345847916716],[-121.35572556080011,38.60333662562635],[-121.35528869763408,38.603333201658565],[-121.3552920506203,38.6029089933807],[-121.35581156342344,38.60291525099914],[-121.35583440482047,38.60114882677688],[-121.35570248211646,38.600975131829344],[-121.35530719033065,38.60099318696295],[-121.35530967408693,38.60067894814779],[-121.35541486558792,38.60068000126803],[-121.35542402555019,38.598655151101795],[-121.3549311794618,38.598653517614956],[-121.35492572306684,38.598653506139485],[-121.35489264941918,38.59865369757692],[-121.35485958429972,38.59865434220748],[-121.35482653919544,38.59865543919425],[-121.35482778843331,38.59836177464967],[-121.35482781474566,38.598355693689584],[-121.35541902549164,38.5983601481707],[-121.35541285296001,38.59562945551528],[-121.35541238762535,38.59542348538743],[-121.35531586582991,38.59542236607423],[-121.35531558609873,38.59504273948277],[-121.35583045606437,38.59503762639531],[-121.35598439633813,38.594914596544825],[-121.3557063667575,38.594596452188355],[-121.35531525977562,38.59459969073699],[-121.35531475980261,38.593920721994316],[-121.3559019000634,38.59391880828273],[-121.35590554879246,38.593285097066016],[-121.35571822362337,38.59328406664729],[-121.35572195901413,38.592870562245686],[-121.3553139822922,38.592864807735225],[-121.35531363434716,38.592392785749034],[-121.35613155200112,38.59240152589669],[-121.3561299870198,38.591396536341385],[-121.35585676346022,38.591388079760804],[-121.35585076979025,38.5912832793019],[-121.35531276385,38.59121077129012],[-121.35531221309859,38.59046300731869],[-121.35647385333856,38.59048350621338],[-121.35648493912953,38.5900283433609],[-121.35829954432143,38.5900551168676],[-121.35627486242934,38.587385975052825],[-121.3559546941428,38.58696387562283],[-121.35564052718347,38.58718136465032],[-121.35551498114273,38.587268276192574],[-121.35535237481379,38.587380842642894],[-121.35516348109448,38.587511606694235],[-121.35506090034157,38.58737921944912],[-121.35464236230581,38.5868390606358],[-121.3538487671704,38.58737065590928],[-121.35384609372375,38.58737244640332],[-121.35359728101623,38.58753911331713],[-121.35349996374647,38.58745268219533],[-121.35340686204474,38.58736999436874],[-121.35252919860662,38.58659048978056],[-121.35386490549946,38.585589144172104],[-121.35404686678777,38.585452729132825],[-121.35386774370433,38.585275825245645],[-121.35321645713795,38.5846325930667],[-121.35364150217598,38.584328302243875],[-121.35377925381029,38.5842353608418],[-121.35251204097764,38.58278629130078],[-121.3523539463159,38.58260177193692],[-121.35171712376396,38.58186861695996],[-121.35119293693703,38.58126512543177],[-121.35102940907849,38.58107792690793],[-121.35058399510268,38.58130117814839],[-121.35045992313367,38.58115960485397],[-121.35041005394308,38.58109611663797],[-121.3503432875355,38.58097722790561],[-121.35031974202835,38.58092290091746],[-121.35031565293794,38.58092375455184],[-121.35031554025318,38.580923777343024],[-121.35022350653155,38.58053668866127],[-121.3504470340817,38.58041154777177],[-121.34930116167935,38.57906660186036],[-121.34929592223564,38.57906071112072],[-121.34732968054851,38.57998477302652],[-121.34716759335969,38.58006094512927],[-121.34530365509545,38.58093687110997],[-121.3440884206937,38.57966183529079],[-121.3439444642324,38.579510790859906],[-121.34401125447879,38.57949286382238],[-121.34410400187289,38.579466745924464],[-121.34419615256743,38.579439360601675],[-121.34539909889719,38.57866422206849],[-121.3460504812006,38.57782214569386],[-121.34721568846616,38.57702140764254],[-121.3477499982504,38.57635440403731],[-121.34787743153014,38.57619532111588],[-121.3478740734343,38.575707962717885],[-121.35011520727436,38.574364309275246],[-121.35103142848416,38.57410687133876],[-121.35179983582171,38.57362010919375],[-121.35244034114527,38.57353646461804],[-121.35397398933074,38.573545033509575],[-121.35448434136944,38.573547880473235],[-121.3561116279793,38.57251326895746],[-121.35444733258542,38.57090001552796],[-121.3544246297762,38.57087800773182],[-121.35607244417163,38.570653338746396],[-121.35607591177593,38.570652866141536],[-121.35631642692397,38.570620795542695],[-121.35688076680162,38.57055120939376],[-121.35745186544656,38.57046981471933],[-121.3589387987179,38.57010950949589],[-121.35894625970083,38.57010712738049],[-121.36060477126784,38.569706372350794],[-121.3610881429292,38.56962496077716],[-121.36451129635343,38.568654268666336],[-121.3657768109919,38.5682953782282],[-121.36893196987155,38.56787708583356],[-121.37060092173245,38.567468995504704],[-121.37334619159833,38.5668731287237],[-121.37354858334433,38.56765328814396],[-121.37409423449327,38.56769770851965],[-121.37501350118406,38.56760487076618],[-121.37542464922512,38.56756334657623],[-121.37678671919842,38.5678668943262],[-121.3799093562661,38.5674499496921],[-121.3820274229392,38.56662945029058],[-121.38281829509741,38.5663825944543],[-121.38283052273783,38.566538997008486],[-121.38320592497638,38.56644009412647],[-121.38357669584703,38.56634240951577],[-121.38551795057153,38.56625801663211],[-121.38650196205775,38.56621522622557],[-121.38804911809929,38.565606938094525],[-121.38808312665316,38.565590791724155],[-121.38924781355851,38.56503778415731],[-121.39143183934418,38.564201642661175],[-121.39234310079328,38.56385262232748],[-121.39300004310965,38.56360100126796],[-121.39302600715979,38.56359105722656],[-121.39604137561685,38.562621760368785],[-121.39789348055692,38.56202634583491],[-121.40052305034064,38.56108836766046],[-121.40351137027717,38.560724591053585],[-121.40556450324456,38.56021303442621],[-121.4051508974954,38.561443572992104],[-121.40490856910718,38.56216451371734],[-121.40478938331937,38.562519094964664],[-121.40514388116513,38.562442495702186],[-121.40574261770877,38.56231311980566],[-121.40605167445223,38.562247548434534],[-121.40629973738424,38.562194917461355],[-121.40644174839755,38.562164786318654],[-121.40653744572545,38.56214448241879],[-121.40658432596354,38.562134535384324],[-121.40672640914815,38.56210438894827],[-121.40687157387465,38.56207358875974],[-121.40701687411257,38.56204275935425],[-121.40715760633333,38.56201289916333],[-121.40730137756306,38.56198239400309],[-121.40770035792062,38.56189773722981],[-121.40787734402969,38.56186018329922],[-121.40787296151424,38.56212710166424],[-121.40786972697951,38.56232412493655],[-121.40786803820706,38.56242696594039],[-121.40786690283848,38.56249616650134],[-121.40786520866476,38.562573248895326],[-121.40771631977786,38.56260337992384],[-121.40764623998314,38.562619496083165],[-121.40756664690831,38.56264596802153],[-121.40732630851362,38.562722141288965],[-121.40701954417266,38.562872540506625],[-121.40690678135581,38.562952207872954],[-121.40689679717578,38.56295100986432],[-121.4067953774891,38.56292304234892],[-121.40668783620083,38.56300672455647],[-121.40658880789715,38.56309532328834],[-121.40649456553217,38.563070779697625],[-121.40637018230052,38.56303839044977],[-121.40621132122071,38.56299702418778],[-121.40612019450406,38.56297329447355],[-121.40636867641284,38.56333537762058],[-121.40641357238893,38.563442116086996],[-121.40625576756253,38.56351018785117],[-121.40575099112385,38.56368015432965],[-121.40574563589438,38.563696286311796],[-121.40566584971756,38.56393663546505],[-121.40558803094953,38.56417105412192],[-121.40589423893594,38.56452604100526],[-121.4059770575213,38.56462269769326],[-121.4059761521244,38.564622703857566],[-121.40597671800019,38.564622820275275],[-121.40584226166021,38.56467137976147],[-121.40542348866968,38.564915980968955],[-121.40564473017878,38.565272189670694],[-121.40573127021331,38.56536833500875],[-121.40573131750462,38.565368443359766],[-121.40573111474097,38.56536840267909],[-121.4055990995359,38.565425532990744],[-121.40509115815965,38.56562467233503],[-121.40507345096499,38.565679365167625],[-121.40499749362793,38.56591398399997],[-121.40536581640949,38.56598737771981],[-121.40541162585457,38.56598025537878],[-121.40549788140478,38.56607645528214],[-121.40549827548404,38.566076533882786],[-121.4054980314774,38.566076622719734],[-121.40536267025485,38.5661284734158],[-121.4048822849637,38.56632689306787],[-121.404685871488,38.56631745242577],[-121.40462422000566,38.56650768508818],[-121.40455423976856,38.56672361994768],[-121.40422690704226,38.56665736888711],[-121.4037415400624,38.5665591299287],[-121.40348105406068,38.56650640577401],[-121.40344640800585,38.5664993929792],[-121.40337130790633,38.566728044914335],[-121.40332601871933,38.566865932350055],[-121.40328307488296,38.56699668049959],[-121.40320303419738,38.56724036813882],[-121.40319622123096,38.56726111231598],[-121.40316541804484,38.56735489684865],[-121.40310714497778,38.56753231099482],[-121.4030205808543,38.567795858590365],[-121.40299679753052,38.56786826844728],[-121.40298588908837,38.56790147799107],[-121.40287174416046,38.568248994134485],[-121.40285862284915,38.56829156703723],[-121.40275355634219,38.568608871306324],[-121.40298476689817,38.5686598199442],[-121.40312997457309,38.568805778855],[-121.40332300673225,38.56867463514242],[-121.4033856925393,38.56850077426731],[-121.40394635860946,38.56862391955563],[-121.40395118517661,38.56861072367365],[-121.40422958372464,38.56867214163386],[-121.40440735884103,38.56873296915527],[-121.40454575268191,38.568762675776476],[-121.40448467958828,38.568931709521394],[-121.40342220410011,38.569036573868985],[-121.40335727296917,38.569220770049874],[-121.40318759054561,38.56918346284981],[-121.40312000673359,38.56918810808017],[-121.40310573762505,38.56922728049345],[-121.40306551645864,38.569313287599655],[-121.40285403461039,38.569403123958494],[-121.40276313976379,38.5693618153379],[-121.40270399906134,38.56944037244377],[-121.40255347346424,38.56962437243491],[-121.40251587008903,38.56966721713817],[-121.40213060224335,38.569582096273436],[-121.40201741335783,38.569723409078776],[-121.40229233757073,38.56990070756858],[-121.40213714880434,38.570040588301204],[-121.40213584121808,38.57016841593693],[-121.40211382643832,38.570187199552514],[-121.40208790965433,38.570209308058395],[-121.40185488658767,38.570450947746124],[-121.40167885157398,38.5707206824775],[-121.40167745387657,38.5707234157971],[-121.40167647622043,38.57072368191533],[-121.40148899267919,38.57076363618166],[-121.40103727955031,38.57089426030635],[-121.40102669520414,38.57094214704248],[-121.40099167136961,38.57110058673537],[-121.40098071125975,38.571150167020654],[-121.40097324626339,38.5711839356415],[-121.40092811606033,38.571388097850445],[-121.40085430338183,38.571630497226124],[-121.4013522287209,38.57170798872127],[-121.40134891368672,38.57205956030208],[-121.40149387215563,38.57221882717367],[-121.40149387302235,38.5722189974486],[-121.40149387333612,38.57221937042364],[-121.40149387391682,38.57221943799431],[-121.40149368596336,38.57221940819369],[-121.40128406063259,38.57226206568942],[-121.40091250018472,38.572203654109536],[-121.40092501269977,38.57269968795866],[-121.40135573993024,38.57274358563538],[-121.40149584100254,38.572799150673504],[-121.40149714024886,38.57318242452192],[-121.40149669883986,38.57318278530325],[-121.40135734367588,38.57321671252515],[-121.39994152964016,38.57314143078328],[-121.39962062378588,38.57312436507907],[-121.39964703861324,38.573659826212726],[-121.40038233199313,38.57366382995545],[-121.40040242997635,38.57407114268356],[-121.40040988736706,38.57422227339293],[-121.4004194058694,38.574222387558024],[-121.40041787858432,38.57376984844088],[-121.40081706924765,38.573774618029105],[-121.40081715925328,38.57380147708704],[-121.40132436820208,38.57380753460369],[-121.40132513855634,38.57403450913221],[-121.40150010964823,38.57423553302909],[-121.40150071383933,38.57423574155844],[-121.40150756746196,38.57625606674809],[-121.40124935095633,38.57632039286755],[-121.40124692751233,38.576643453684355],[-121.40123802588482,38.57783008199062],[-121.40140758762558,38.577718335292936],[-121.40150919881273,38.57773873273057],[-121.40150845237459,38.57773974418818],[-121.40150969001608,38.577738869504294],[-121.4015075009505,38.57799924586816],[-121.40150460807348,38.57853734773135],[-121.40150418233154,38.578537341926754],[-121.40150424581302,38.57853743594874],[-121.40150293237049,38.578761016794765],[-121.4013631764364,38.578817879868375],[-121.40136469537676,38.57853539911741],[-121.4006447550045,38.5785253660373],[-121.40064039390667,38.578850456453715],[-121.40028297605859,38.57886656318798],[-121.40026575762188,38.5794080665298],[-121.40096906229228,38.57938387346378],[-121.40094422425727,38.58001194295257],[-121.40090821355977,38.580148901812855],[-121.40090245060131,38.58080858354201],[-121.40149219442685,38.58084697977615],[-121.40148874508935,38.58148871938537],[-121.4014554752675,38.581487825766665],[-121.40126726097817,38.58148428679942],[-121.4001515763505,38.58147095038081],[-121.40015081320027,38.58156156635143],[-121.40014603135305,38.58212966385121],[-121.40014500598083,38.58225146047976],[-121.40148459201906,38.58226137981025],[-121.40148348812511,38.582466810354006],[-121.40029890098965,38.58245544444602],[-121.40029702392157,38.582678713352905],[-121.40048790831983,38.58267970283985],[-121.40048624608205,38.58287597823371],[-121.39918994330917,38.58286383689341],[-121.39918838930453,38.583266228409656],[-121.39927576706576,38.58326718991788],[-121.39927399305851,38.584173855654555],[-121.3996925167778,38.584178317414384],[-121.3996854367393,38.58467139928164],[-121.40029751699431,38.58467741360828],[-121.40029751103125,38.585023107644496],[-121.40029865647752,38.58516591283012],[-121.40029868950043,38.58517140489892],[-121.40030241663628,38.58579104108132],[-121.39987816633706,38.58578888703136],[-121.3998833967571,38.585167891838296],[-121.39988406785692,38.585088261895436],[-121.39918475589413,38.58508234321948],[-121.39918215165608,38.586412424919416],[-121.40030618811191,38.58641824415965],[-121.40030897175338,38.58688103023098],[-121.40030800755807,38.586955164953494],[-121.40070313382265,38.58695833061572],[-121.40070169716202,38.587032461993],[-121.40069230728363,38.58751682648849],[-121.40030168997373,38.58750766163048],[-121.40030040641878,38.58762237221701],[-121.40029854514584,38.58778872941324],[-121.40029461768636,38.58813966888722],[-121.40075863216512,38.58814571903728],[-121.40083332492307,38.588232549807614],[-121.40083332886215,38.58863845292315],[-121.4008350460147,38.58872085107735],[-121.40028818545144,38.58871451362792],[-121.39917530329332,38.58870159461615],[-121.3991636188679,38.590964416558826],[-121.40047497232969,38.59096857949369],[-121.40047275217367,38.59138046027484],[-121.40016165228711,38.59137947431585],[-121.40014581613391,38.591378911196614],[-121.40011277793405,38.59137436165575],[-121.40008124863398,38.59136537757654],[-121.40005218670778,38.59135223419678],[-121.40002647383957,38.59133532888001],[-121.40000489200419,38.59131517649165],[-121.3999943249338,38.591304758662744],[-121.39997648524373,38.59129170044154],[-121.39995602690432,38.59128127279416],[-121.3999335717163,38.59127379065353],[-121.39990980304245,38.59126948278556],[-121.39988544180157,38.59126847995291],[-121.39986122926666,38.59127081302424],[-121.39983789954775,38.59127640922805],[-121.39981616345425,38.59128510017696],[-121.39979668094728,38.591296621724986],[-121.39978004269132,38.59131062378155],[-121.39976675504865,38.591326680143496],[-121.39975722273334,38.591344303720284],[-121.39975173379028,38.59136295816762],[-121.39975045598466,38.591382077688486],[-121.39975342750476,38.59140108049853],[-121.39976055908325,38.59141938955739],[-121.39951114735933,38.591418597289746],[-121.39916127948358,38.59141748506593],[-121.3991525485933,38.59310833065003],[-121.3991511214183,38.59338470099367],[-121.39915059130718,38.59348727672177],[-121.4003070539982,38.593505987061974],[-121.40030805343339,38.5934414606488],[-121.40031312499806,38.593114346980556],[-121.40031401312197,38.59305705062742],[-121.4008061089994,38.59306500891291],[-121.40080586017481,38.593116897760396],[-121.40080428404133,38.593446739438335],[-121.40080396212927,38.59351402251496],[-121.40085359624658,38.593514825289255],[-121.40085455920703,38.59455171582878],[-121.40095672869566,38.59491630327753],[-121.40143398864616,38.59492810370192],[-121.40143163763258,38.59536524864426],[-121.40135920715893,38.59536500845697],[-121.40134383969053,38.5953648479295],[-121.40119790974302,38.59535222942988],[-121.40105698846445,38.595319915916185],[-121.40092535876781,38.59526888902393],[-121.40080701865493,38.5952006992029],[-121.40054700113943,38.59543022481733],[-121.40021769691029,38.5955033133922],[-121.39997809190383,38.59535049268553],[-121.39997960148992,38.59517106161165],[-121.40031964040527,38.59485519216693],[-121.40028067724201,38.59482756423116],[-121.39993782448825,38.59514604601],[-121.3994964680766,38.59513679589247],[-121.39931065772387,38.5948146769121],[-121.39931033880073,38.594814788771295],[-121.39928644645464,38.59482298375545],[-121.3992623766455,38.59483084988577],[-121.3994381521236,38.5951355736417],[-121.39943461110211,38.59555608268816],[-121.39885746281836,38.59538718691886],[-121.39789026053339,38.59546722047813],[-121.39758506553963,38.59546563947302],[-121.39742767947219,38.59546170888266],[-121.3968463487063,38.59545409138422],[-121.39685421341355,38.59409437587715],[-121.39577491345672,38.59408778602797],[-121.3955180775624,38.594086216737615],[-121.39545137505178,38.594769510794556],[-121.39544557122501,38.59579559524547],[-121.39544359950337,38.5958916895708],[-121.39451306136907,38.59587992590949],[-121.39451365191032,38.59577832166189],[-121.39451643442352,38.59529994461317],[-121.39379070304238,38.59529338816752],[-121.39379264622458,38.59501224030843],[-121.3933755163074,38.59500394773327],[-121.3933774117056,38.59551260429969],[-121.39315125655797,38.59551024726283],[-121.39315333914499,38.59572540982218],[-121.39315466858041,38.59586273949874],[-121.39244194978316,38.595853715791165],[-121.3924161031834,38.595853336034956],[-121.39232782528974,38.595851259299934],[-121.39223960706393,38.595847973800026],[-121.39221606046317,38.595846981745304],[-121.39221980855761,38.59404907358355],[-121.39207985510394,38.59404889387668],[-121.3876194772388,38.59399765606297],[-121.38637327369906,38.593989221012215],[-121.38622632379787,38.593988225080444],[-121.38527908816576,38.59398180308651],[-121.38399409074773,38.59397307881967],[-121.38398919220776,38.59441715098069],[-121.38305837858103,38.59441689371938],[-121.38305812797357,38.594967128694776],[-121.38322256638766,38.594966423586],[-121.38333919206383,38.59496592399505],[-121.38333921064616,38.594515426745154],[-121.38443795559292,38.59451569979388],[-121.38444215079815,38.59496118786515],[-121.38373873583191,38.594964209569596],[-121.38372583268855,38.5957484362175],[-121.38305877143047,38.59574086079094],[-121.3830595932411,38.595812934690834],[-121.38305999043452,38.595986778614844],[-121.38305630336373,38.59641300220915],[-121.38073297499385,38.59637937474804],[-121.38073373943485,38.59656394772327],[-121.38080613131743,38.597040149420046],[-121.38090812517481,38.5973248548397],[-121.38095767485292,38.597463166885014],[-121.38103935915387,38.59769117879875],[-121.38114087302634,38.59778217019568],[-121.38135153932132,38.5977849498899],[-121.38135737999069,38.59789496241426],[-121.38286851491827,38.59789653441383],[-121.38304346807753,38.5978967152896],[-121.3830381148845,38.598515506959565],[-121.38303185027698,38.59923963812276],[-121.38303219647344,38.59940357993922],[-121.38303776851659,38.59983650058958],[-121.38282717326048,38.59978700085593],[-121.3822878454686,38.59966023224695],[-121.38228912428605,38.60016892840877],[-121.38304360627548,38.60029007043938],[-121.3830592423082,38.60150500840492],[-121.38209360183586,38.60140377255226],[-121.38279036893978,38.60217833021856],[-121.38306792706764,38.60217972176021],[-121.38308811850149,38.603748453973274],[-121.38289566159037,38.60374952772383],[-121.38220922147171,38.60375335627556],[-121.38220421738595,38.604002975119286],[-121.38219584461775,38.604420642987606],[-121.38202809344904,38.60441809033274],[-121.38187937797646,38.6044189633657],[-121.38187628047042,38.60477167185624],[-121.38155679067758,38.60476996621676],[-121.3815536453318,38.6051326384323],[-121.38249011490352,38.60513761829001],[-121.38248638530628,38.60556830463398],[-121.38127348778463,38.60556183120002],[-121.3812762082046,38.606035617849074],[-121.38042179604392,38.60603105013474],[-121.37962592761183,38.60620034774996],[-121.3790076121263,38.60663699174435],[-121.3785494370727,38.60734342307857],[-121.37820347711394,38.607602237052056],[-121.37819960262581,38.60804655505278],[-121.3794297361844,38.60805315280701],[-121.37942225186157,38.609480015633],[-121.37942029320432,38.609853351841195],[-121.37941951390567,38.61000186418194],[-121.37890073336241,38.6099939319925],[-121.37890094731382,38.609953288011106],[-121.37865025361428,38.60994945508706],[-121.3786530829448,38.60987459173158],[-121.37659031470956,38.609846858536265],[-121.37658577729304,38.61036478571828],[-121.37579722997222,38.61035722334256]],[[-121.40296990337052,38.56919842589545],[-121.4029693386711,38.56919830226206],[-121.40296942227326,38.56919845945018],[-121.40296990337052,38.56919842589545]]]},"properties":{"ZIP5":"95864","PO_NAME":"SACRAMENTO","Shape_STAr":182049989.046,"Shape_STLe":96671.7946217}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.41693205598227,38.610823528550455],[-121.41591567276656,38.610813901185765],[-121.41549647117786,38.61081178643434],[-121.41526909600265,38.61080130452885],[-121.41526675068097,38.61018504621842],[-121.41526688739827,38.610047682126286],[-121.41510509131282,38.6100556687747],[-121.41453394970125,38.61005060655153],[-121.41452949628884,38.60950784469296],[-121.41437591365764,38.60950584121013],[-121.41420941308883,38.60950366858533],[-121.41402237032702,38.60950122782911],[-121.41297639900111,38.60948757352401],[-121.41297642132571,38.60956017450742],[-121.41297645175942,38.60965494218903],[-121.41297655619402,38.60998395338766],[-121.4129775912238,38.610269382832634],[-121.41275460987109,38.6103110515604],[-121.41276397518281,38.610768124070674],[-121.41240918249461,38.61076458414668],[-121.41241309342213,38.61065658150976],[-121.41239863990933,38.61046416231678],[-121.41235665250302,38.61031385295862],[-121.41203133400182,38.61038368660165],[-121.4117165823596,38.61031719467569],[-121.41120836912036,38.61031754017429],[-121.41120476430946,38.61075255954581],[-121.4107513781181,38.6107480295091],[-121.41066267209716,38.61074712593143],[-121.41066299933514,38.61007669535304],[-121.41014722668805,38.610074016641605],[-121.41014723757785,38.61005257435979],[-121.41018200256937,38.61005256401705],[-121.41018182812691,38.60968943438427],[-121.40836728015559,38.60967043095475],[-121.40836761817387,38.60963149124372],[-121.40837374947904,38.6089265676694],[-121.40798021507523,38.60891986757677],[-121.40782273796542,38.608917185940406],[-121.40614840299816,38.608888660852394],[-121.40598234121187,38.60888583089409],[-121.40582466895775,38.60928784648148],[-121.4057792527592,38.60961824053949],[-121.40564850822719,38.6105693589513],[-121.40563154495182,38.61069275209098],[-121.40516574583427,38.61068770495423],[-121.40516915537268,38.610487791812595],[-121.40517029213801,38.6104474580066],[-121.40517232546226,38.61040714592213],[-121.40517525523869,38.610366868171226],[-121.40517556591267,38.610363210306865],[-121.40468157229272,38.610347212805465],[-121.40467948901943,38.610352904801125],[-121.4046688184218,38.61068231937147],[-121.40371264895725,38.61067194934306],[-121.40254794300331,38.61065930761833],[-121.40151514220794,38.610648086292265],[-121.40136440389315,38.610646473957935],[-121.40091725836761,38.610641763800665],[-121.40091940522755,38.61017988191868],[-121.40030209891343,38.61017316747951],[-121.40030420797493,38.60972007458006],[-121.39914799101174,38.60970749028363],[-121.39914422687946,38.61051322525871],[-121.39914371349666,38.6106230649975],[-121.39827435862884,38.61061388959353],[-121.39827786796185,38.61020415802525],[-121.3981605116722,38.61011893020137],[-121.39802794470539,38.61020285934584],[-121.39802003655528,38.61061120408678],[-121.39725149413769,38.61060308546669],[-121.397259083339,38.610183278727185],[-121.39713277051455,38.61009705099195],[-121.39700277523367,38.61017937884045],[-121.39699080249632,38.61060033031746],[-121.39622638887563,38.61059224801155],[-121.39622716075297,38.610501633948665],[-121.3962299807948,38.61017022046853],[-121.39611831107601,38.61008899678549],[-121.39598680870743,38.61016638500744],[-121.39597732476494,38.61049899166393],[-121.39597474202243,38.610589586373095],[-121.39563510846101,38.610585993932915],[-121.39519877417806,38.61058137576574],[-121.39519837630402,38.61049074928835],[-121.3951969114387,38.610157309827905],[-121.39507753388092,38.61007636470585],[-121.39494390916643,38.61015435507974],[-121.39494420633349,38.61048805872001],[-121.39494428701065,38.61057868174116],[-121.39415874198149,38.610570362781935],[-121.39416030638104,38.61047975646816],[-121.39416602398097,38.610148584270725],[-121.39329334239808,38.610145841439035],[-121.39328250441379,38.61056107696439],[-121.39290751780932,38.610557100336806],[-121.39291916469124,38.6101485276402],[-121.39277601524897,38.61007041409092],[-121.3926679018807,38.61014518424389],[-121.39222811336646,38.61014552865467],[-121.39222838682818,38.61004703539039],[-121.39034339188674,38.61002613847763],[-121.39033326463553,38.61035127384838],[-121.39032427887817,38.61052973667167],[-121.38996665624406,38.61052595273273],[-121.38997313479015,38.610382167760584],[-121.38997622095884,38.610021434023274],[-121.38990362858635,38.61001972012872],[-121.38875668346616,38.61000652329695],[-121.3884185942764,38.61011036391987],[-121.38841665457934,38.6103308900093],[-121.38841478919139,38.61050941823563],[-121.38803323861531,38.610505456029024],[-121.38803539995821,38.61039289342157],[-121.3880403750084,38.61028547451615],[-121.38804781480528,38.61023402636717],[-121.38807475222612,38.610140951444976],[-121.38763682202588,38.61003305565619],[-121.38763787312038,38.60952374517949],[-121.38764094580489,38.60803607279896],[-121.3876411834554,38.60792069370685],[-121.38764261294601,38.607228935382416],[-121.38764285036676,38.607113582412715],[-121.38764353027246,38.60678452695938],[-121.38717357282704,38.60677728983797],[-121.3870557460641,38.6067618068313],[-121.38516905669546,38.60674545501636],[-121.38401174567974,38.60673540994208],[-121.38400256023519,38.607226543932796],[-121.3831202026059,38.607229169199975],[-121.38310055984697,38.60949966683149],[-121.38309253694531,38.61042698877908],[-121.38252837938242,38.61042161043912],[-121.38253381857673,38.61028435721079],[-121.38253662439062,38.609960344564826],[-121.38255530121141,38.6089456756409],[-121.38193641840701,38.60894136205909],[-121.38002291972781,38.608928004374036],[-121.37999877559899,38.60949611860618],[-121.38072427821479,38.609508978426625],[-121.38071380922536,38.610288954581414],[-121.38071410953887,38.610404294245434],[-121.38007157593643,38.610398155113664],[-121.38008258715594,38.60986711120451],[-121.37942029320432,38.609853351841195],[-121.37942225186157,38.609480015633],[-121.3794297361844,38.60805315280701],[-121.37819960262581,38.60804655505278],[-121.37820347711394,38.607602237052056],[-121.3785494370727,38.60734342307857],[-121.3790076121263,38.60663699174435],[-121.37962592761183,38.60620034774996],[-121.38042179604392,38.60603105013474],[-121.3812762082046,38.606035617849074],[-121.38127348778463,38.60556183120002],[-121.38248638530628,38.60556830463398],[-121.38249011490352,38.60513761829001],[-121.3815536453318,38.6051326384323],[-121.38155679067758,38.60476996621676],[-121.38187628047042,38.60477167185624],[-121.38187937797646,38.6044189633657],[-121.38202809344904,38.60441809033274],[-121.38219584461775,38.604420642987606],[-121.38220421738595,38.604002975119286],[-121.38220922147171,38.60375335627556],[-121.38289566159037,38.60374952772383],[-121.38308811850149,38.603748453973274],[-121.38306792706764,38.60217972176021],[-121.38279036893978,38.60217833021856],[-121.38209360183586,38.60140377255226],[-121.3830592423082,38.60150500840492],[-121.38304360627548,38.60029007043938],[-121.38228912428605,38.60016892840877],[-121.3822878454686,38.59966023224695],[-121.38282717326048,38.59978700085593],[-121.38303776851659,38.59983650058958],[-121.38303219647344,38.59940357993922],[-121.38303185027698,38.59923963812276],[-121.3830381148845,38.598515506959565],[-121.38304346807753,38.5978967152896],[-121.38286851491827,38.59789653441383],[-121.38135737999069,38.59789496241426],[-121.38135153932132,38.5977849498899],[-121.38114087302634,38.59778217019568],[-121.38103935915387,38.59769117879875],[-121.38095767485292,38.597463166885014],[-121.38090812517481,38.5973248548397],[-121.38080613131743,38.597040149420046],[-121.38073373943485,38.59656394772327],[-121.38073297499385,38.59637937474804],[-121.38305630336373,38.59641300220915],[-121.38305999043452,38.595986778614844],[-121.3830595932411,38.595812934690834],[-121.38305877143047,38.59574086079094],[-121.38372583268855,38.5957484362175],[-121.38373873583191,38.594964209569596],[-121.38444215079815,38.59496118786515],[-121.38443795559292,38.59451569979388],[-121.38333921064616,38.594515426745154],[-121.38333919206383,38.59496592399505],[-121.38322256638766,38.594966423586],[-121.38305812797357,38.594967128694776],[-121.38305837858103,38.59441689371938],[-121.38398919220776,38.59441715098069],[-121.38399409074773,38.59397307881967],[-121.38527908816576,38.59398180308651],[-121.38622632379787,38.593988225080444],[-121.38637327369906,38.593989221012215],[-121.3876194772388,38.59399765606297],[-121.39207985510394,38.59404889387668],[-121.39221980855761,38.59404907358355],[-121.39221606046317,38.595846981745304],[-121.39223960706393,38.595847973800026],[-121.39232782528974,38.595851259299934],[-121.3924161031834,38.595853336034956],[-121.39244194978316,38.595853715791165],[-121.39315466858041,38.59586273949874],[-121.39315333914499,38.59572540982218],[-121.39315125655797,38.59551024726283],[-121.3933774117056,38.59551260429969],[-121.3933755163074,38.59500394773327],[-121.39379264622458,38.59501224030843],[-121.39379070304238,38.59529338816752],[-121.39451643442352,38.59529994461317],[-121.39451365191032,38.59577832166189],[-121.39451306136907,38.59587992590949],[-121.39544359950337,38.5958916895708],[-121.39544557122501,38.59579559524547],[-121.39545137505178,38.594769510794556],[-121.3955180775624,38.594086216737615],[-121.39577491345672,38.59408778602797],[-121.39685421341355,38.59409437587715],[-121.3968463487063,38.59545409138422],[-121.39742767947219,38.59546170888266],[-121.39758506553963,38.59546563947302],[-121.39789026053339,38.59546722047813],[-121.39885746281836,38.59538718691886],[-121.39943461110211,38.59555608268816],[-121.3994381521236,38.5951355736417],[-121.3992623766455,38.59483084988577],[-121.39928644645464,38.59482298375545],[-121.39931033880073,38.594814788771295],[-121.39931065772387,38.5948146769121],[-121.3994964680766,38.59513679589247],[-121.39993782448825,38.59514604601],[-121.40028067724201,38.59482756423116],[-121.40031964040527,38.59485519216693],[-121.39997960148992,38.59517106161165],[-121.39997809190383,38.59535049268553],[-121.40021769691029,38.5955033133922],[-121.40054700113943,38.59543022481733],[-121.40080701865493,38.5952006992029],[-121.40092535876781,38.59526888902393],[-121.40105698846445,38.595319915916185],[-121.40119790974302,38.59535222942988],[-121.40134383969053,38.5953648479295],[-121.40135920715893,38.59536500845697],[-121.40143163763258,38.59536524864426],[-121.40143398864616,38.59492810370192],[-121.40095672869566,38.59491630327753],[-121.40085455920703,38.59455171582878],[-121.40085359624658,38.593514825289255],[-121.40080396212927,38.59351402251496],[-121.40080428404133,38.593446739438335],[-121.40080586017481,38.593116897760396],[-121.4008061089994,38.59306500891291],[-121.40031401312197,38.59305705062742],[-121.40031312499806,38.593114346980556],[-121.40030805343339,38.5934414606488],[-121.4003070539982,38.593505987061974],[-121.39915059130718,38.59348727672177],[-121.3991511214183,38.59338470099367],[-121.3991525485933,38.59310833065003],[-121.39916127948358,38.59141748506593],[-121.39951114735933,38.591418597289746],[-121.39976055908325,38.59141938955739],[-121.39975342750476,38.59140108049853],[-121.39975045598466,38.591382077688486],[-121.39975173379028,38.59136295816762],[-121.39975722273334,38.591344303720284],[-121.39976675504865,38.591326680143496],[-121.39978004269132,38.59131062378155],[-121.39979668094728,38.591296621724986],[-121.39981616345425,38.59128510017696],[-121.39983789954775,38.59127640922805],[-121.39986122926666,38.59127081302424],[-121.39988544180157,38.59126847995291],[-121.39990980304245,38.59126948278556],[-121.3999335717163,38.59127379065353],[-121.39995602690432,38.59128127279416],[-121.39997648524373,38.59129170044154],[-121.3999943249338,38.591304758662744],[-121.40000489200419,38.59131517649165],[-121.40002647383957,38.59133532888001],[-121.40005218670778,38.59135223419678],[-121.40008124863398,38.59136537757654],[-121.40011277793405,38.59137436165575],[-121.40014581613391,38.591378911196614],[-121.40016165228711,38.59137947431585],[-121.40047275217367,38.59138046027484],[-121.40047497232969,38.59096857949369],[-121.3991636188679,38.590964416558826],[-121.39917530329332,38.58870159461615],[-121.40028818545144,38.58871451362792],[-121.4008350460147,38.58872085107735],[-121.40083332886215,38.58863845292315],[-121.40083332492307,38.588232549807614],[-121.40075863216512,38.58814571903728],[-121.40029461768636,38.58813966888722],[-121.40029854514584,38.58778872941324],[-121.40030040641878,38.58762237221701],[-121.40030168997373,38.58750766163048],[-121.40069230728363,38.58751682648849],[-121.40070169716202,38.587032461993],[-121.40070313382265,38.58695833061572],[-121.40030800755807,38.586955164953494],[-121.40030897175338,38.58688103023098],[-121.40030618811191,38.58641824415965],[-121.39918215165608,38.586412424919416],[-121.39918475589413,38.58508234321948],[-121.39988406785692,38.585088261895436],[-121.3998833967571,38.585167891838296],[-121.39987816633706,38.58578888703136],[-121.40030241663628,38.58579104108132],[-121.40029868950043,38.58517140489892],[-121.40029865647752,38.58516591283012],[-121.40029751103125,38.585023107644496],[-121.40029751699431,38.58467741360828],[-121.3996854367393,38.58467139928164],[-121.3996925167778,38.584178317414384],[-121.39927399305851,38.584173855654555],[-121.39927576706576,38.58326718991788],[-121.39918838930453,38.583266228409656],[-121.39918994330917,38.58286383689341],[-121.40048624608205,38.58287597823371],[-121.40048790831983,38.58267970283985],[-121.40029702392157,38.582678713352905],[-121.40029890098965,38.58245544444602],[-121.40148348812511,38.582466810354006],[-121.40148459201906,38.58226137981025],[-121.40014500598083,38.58225146047976],[-121.40014603135305,38.58212966385121],[-121.40015081320027,38.58156156635143],[-121.4001515763505,38.58147095038081],[-121.40126726097817,38.58148428679942],[-121.4014554752675,38.581487825766665],[-121.40148874508935,38.58148871938537],[-121.40149219442685,38.58084697977615],[-121.40090245060131,38.58080858354201],[-121.40090821355977,38.580148901812855],[-121.40094422425727,38.58001194295257],[-121.40096906229228,38.57938387346378],[-121.40026575762188,38.5794080665298],[-121.40028297605859,38.57886656318798],[-121.40064039390667,38.578850456453715],[-121.4006447550045,38.5785253660373],[-121.40136469537676,38.57853539911741],[-121.4013631764364,38.578817879868375],[-121.40150293237049,38.578761016794765],[-121.40150424581302,38.57853743594874],[-121.40150418233154,38.578537341926754],[-121.40150460807348,38.57853734773135],[-121.4015075009505,38.57799924586816],[-121.40150969001608,38.577738869504294],[-121.40150845237459,38.57773974418818],[-121.40150919881273,38.57773873273057],[-121.40140758762558,38.577718335292936],[-121.40123802588482,38.57783008199062],[-121.40124692751233,38.576643453684355],[-121.40124935095633,38.57632039286755],[-121.40150756746196,38.57625606674809],[-121.40150071383933,38.57423574155844],[-121.40150010964823,38.57423553302909],[-121.40132513855634,38.57403450913221],[-121.40132436820208,38.57380753460369],[-121.40081715925328,38.57380147708704],[-121.40081706924765,38.573774618029105],[-121.40041787858432,38.57376984844088],[-121.4004194058694,38.574222387558024],[-121.40040988736706,38.57422227339293],[-121.40040242997635,38.57407114268356],[-121.40038233199313,38.57366382995545],[-121.39964703861324,38.573659826212726],[-121.39962062378588,38.57312436507907],[-121.39994152964016,38.57314143078328],[-121.40135734367588,38.57321671252515],[-121.40149669883986,38.57318278530325],[-121.40149714024886,38.57318242452192],[-121.40149584100254,38.572799150673504],[-121.40135573993024,38.57274358563538],[-121.40092501269977,38.57269968795866],[-121.40091250018472,38.572203654109536],[-121.40128406063259,38.57226206568942],[-121.40149368596336,38.57221940819369],[-121.40149387391682,38.57221943799431],[-121.40149387333612,38.57221937042364],[-121.40149387302235,38.5722189974486],[-121.40149387215563,38.57221882717367],[-121.40134891368672,38.57205956030208],[-121.4013522287209,38.57170798872127],[-121.40085430338183,38.571630497226124],[-121.40092811606033,38.571388097850445],[-121.40097324626339,38.5711839356415],[-121.40098071125975,38.571150167020654],[-121.40099167136961,38.57110058673537],[-121.40102669520414,38.57094214704248],[-121.40103727955031,38.57089426030635],[-121.40148899267919,38.57076363618166],[-121.40167647622043,38.57072368191533],[-121.40167745387657,38.5707234157971],[-121.40167885157398,38.5707206824775],[-121.40185488658767,38.570450947746124],[-121.40208790965433,38.570209308058395],[-121.40211382643832,38.570187199552514],[-121.40213584121808,38.57016841593693],[-121.40213714880434,38.570040588301204],[-121.40229233757073,38.56990070756858],[-121.40201741335783,38.569723409078776],[-121.40213060224335,38.569582096273436],[-121.40251587008903,38.56966721713817],[-121.40255347346424,38.56962437243491],[-121.40270399906134,38.56944037244377],[-121.40276313976379,38.5693618153379],[-121.40285403461039,38.569403123958494],[-121.40306551645864,38.569313287599655],[-121.40310573762505,38.56922728049345],[-121.40312000673359,38.56918810808017],[-121.40318759054561,38.56918346284981],[-121.40335727296917,38.569220770049874],[-121.40342220410011,38.569036573868985],[-121.40448467958828,38.568931709521394],[-121.40454575268191,38.568762675776476],[-121.40440735884103,38.56873296915527],[-121.40422958372464,38.56867214163386],[-121.40395118517661,38.56861072367365],[-121.40394635860946,38.56862391955563],[-121.4033856925393,38.56850077426731],[-121.40332300673225,38.56867463514242],[-121.40312997457309,38.568805778855],[-121.40298476689817,38.5686598199442],[-121.40275355634219,38.568608871306324],[-121.40285862284915,38.56829156703723],[-121.40287174416046,38.568248994134485],[-121.40298588908837,38.56790147799107],[-121.40299679753052,38.56786826844728],[-121.4030205808543,38.567795858590365],[-121.40310714497778,38.56753231099482],[-121.40316541804484,38.56735489684865],[-121.40319622123096,38.56726111231598],[-121.40320303419738,38.56724036813882],[-121.40328307488296,38.56699668049959],[-121.40332601871933,38.566865932350055],[-121.40337130790633,38.566728044914335],[-121.40344640800585,38.5664993929792],[-121.40348105406068,38.56650640577401],[-121.4037415400624,38.5665591299287],[-121.40422690704226,38.56665736888711],[-121.40455423976856,38.56672361994768],[-121.40462422000566,38.56650768508818],[-121.404685871488,38.56631745242577],[-121.4048822849637,38.56632689306787],[-121.40536267025485,38.5661284734158],[-121.4054980314774,38.566076622719734],[-121.40549827548404,38.566076533882786],[-121.40549788140478,38.56607645528214],[-121.40541162585457,38.56598025537878],[-121.40536581640949,38.56598737771981],[-121.40499749362793,38.56591398399997],[-121.40507345096499,38.565679365167625],[-121.40509115815965,38.56562467233503],[-121.4055990995359,38.565425532990744],[-121.40573111474097,38.56536840267909],[-121.40573131750462,38.565368443359766],[-121.40573127021331,38.56536833500875],[-121.40564473017878,38.565272189670694],[-121.40542348866968,38.564915980968955],[-121.40584226166021,38.56467137976147],[-121.40597671800019,38.564622820275275],[-121.4059761521244,38.564622703857566],[-121.4059770575213,38.56462269769326],[-121.40589423893594,38.56452604100526],[-121.40558803094953,38.56417105412192],[-121.40566584971756,38.56393663546505],[-121.40574563589438,38.563696286311796],[-121.40575099112385,38.56368015432965],[-121.40625576756253,38.56351018785117],[-121.40641357238893,38.563442116086996],[-121.40636867641284,38.56333537762058],[-121.40612019450406,38.56297329447355],[-121.40621132122071,38.56299702418778],[-121.40637018230052,38.56303839044977],[-121.40649456553217,38.563070779697625],[-121.40658880789715,38.56309532328834],[-121.40668783620083,38.56300672455647],[-121.4067953774891,38.56292304234892],[-121.40689679717578,38.56295100986432],[-121.40690678135581,38.562952207872954],[-121.40701954417266,38.562872540506625],[-121.40732630851362,38.562722141288965],[-121.40756664690831,38.56264596802153],[-121.40764623998314,38.562619496083165],[-121.40771631977786,38.56260337992384],[-121.40786520866476,38.562573248895326],[-121.40786690283848,38.56249616650134],[-121.40786803820706,38.56242696594039],[-121.40786972697951,38.56232412493655],[-121.40787296151424,38.56212710166424],[-121.40787734402969,38.56186018329922],[-121.40770035792062,38.56189773722981],[-121.40730137756306,38.56198239400309],[-121.40715760633333,38.56201289916333],[-121.40701687411257,38.56204275935425],[-121.40687157387465,38.56207358875974],[-121.40672640914815,38.56210438894827],[-121.40658432596354,38.562134535384324],[-121.40653744572545,38.56214448241879],[-121.40644174839755,38.562164786318654],[-121.40629973738424,38.562194917461355],[-121.40605167445223,38.562247548434534],[-121.40574261770877,38.56231311980566],[-121.40514388116513,38.562442495702186],[-121.40478938331937,38.562519094964664],[-121.40490856910718,38.56216451371734],[-121.4051508974954,38.561443572992104],[-121.40556450324456,38.56021303442621],[-121.40558592284734,38.56021163902658],[-121.40560730703349,38.560209949747104],[-121.40562865120582,38.560207967465075],[-121.40564994846515,38.5602056939469],[-121.4056711919346,38.56020312825639],[-121.40569237472243,38.5602002712591],[-121.40571348992181,38.560197125622274],[-121.40573453295067,38.560193690421556],[-121.4057502235095,38.56019093224112],[-121.40595438490907,38.56013887122471],[-121.40614393079983,38.56005976456045],[-121.40615896210313,38.560051978612606],[-121.40636843493334,38.55996574588692],[-121.40655597600058,38.55991650667913],[-121.40657897321458,38.55991206783075],[-121.40660206417974,38.559907944774146],[-121.40662524429952,38.55990413838656],[-121.40664850552785,38.559900650428474],[-121.40667184097359,38.559897481765475],[-121.40669524259071,38.55989463415802],[-121.40671870465029,38.559892106675804],[-121.40672961708076,38.559891042791186],[-121.40680284063542,38.55988209106656],[-121.40687585335029,38.559872137313334],[-121.40694863339321,38.55986118502362],[-121.40702115893934,38.559849236788786],[-121.40709340815656,38.55983629610112],[-121.40716535805778,38.55982236734783],[-121.40723698795094,38.55980745492814],[-121.40728245467548,38.55979744182102],[-121.40754818782095,38.55976074286814],[-121.407804488432,38.55975994552898],[-121.40826074352971,38.55972396015103],[-121.40852095748203,38.55967432803642],[-121.40874270529324,38.55967356284796],[-121.40896091594333,38.5596425737401],[-121.4091689575391,38.55958230345724],[-121.40928078953426,38.55953540037182],[-121.40927788942095,38.55972896231052],[-121.40927221750717,38.56020896169421],[-121.40926021434153,38.56082975049981],[-121.41042696303695,38.560745235610376],[-121.41323782099732,38.560229133748265],[-121.41338494781313,38.56020211825574],[-121.41442158426126,38.55991379904491],[-121.41534971656007,38.55990773887489],[-121.41674959365119,38.56024688382992],[-121.41704438809818,38.56031830055748],[-121.41705678290829,38.56032130352744],[-121.41725753231081,38.560359536984265],[-121.41749606235099,38.560480659361055],[-121.41755654233812,38.56051947905456],[-121.41800335465472,38.56082736097963],[-121.41830048224116,38.56100584840339],[-121.41882482273249,38.5613682726032],[-121.4191050124518,38.56161364677031],[-121.41921510114958,38.56170888663288],[-121.419240526276,38.561726694392355],[-121.41971125971446,38.562119238324904],[-121.41993189683745,38.56236199025143],[-121.41996577311508,38.56240393750167],[-121.41999871285135,38.56244634311186],[-121.4200307046812,38.56248919351224],[-121.4200544625915,38.562522166610826],[-121.42016666680924,38.562682161201074],[-121.42028241143123,38.56284059233101],[-121.42040166012302,38.56299741476293],[-121.42052437659285,38.563152577853785],[-121.42060034709142,38.563245697811496],[-121.42079210122236,38.56355281158334],[-121.42095383148099,38.563822918075935],[-121.42130346988685,38.56457892429304],[-121.42133966725595,38.56465961066027],[-121.42143764456199,38.564900693210575],[-121.42152148080922,38.56511945635527],[-121.4215287762075,38.56514410632651],[-121.42153661635737,38.56516865181246],[-121.42154500245779,38.56519308651279],[-121.42155392998545,38.56521740229654],[-121.42156339670443,38.56524159194529],[-121.42157340037878,38.56526564824052],[-121.42158393647766,38.56528956395223],[-121.42159500276523,38.565313331861866],[-121.42159625301878,38.56531593991098],[-121.42161003614666,38.56535447544783],[-121.42162467457236,38.5653928179594],[-121.42164016152938,38.56543095299712],[-121.4216564959592,38.565468869744635],[-121.42167366877119,38.56550655734528],[-121.42169167776656,38.565544004075974],[-121.42171051051464,38.565581186450835],[-121.42172369734963,38.565598309086866],[-121.4217365029321,38.565615609996854],[-121.42174892156854,38.5656330837471],[-121.42176094986026,38.56565072491525],[-121.42177258325383,38.565668528974335],[-121.42178382066004,38.56568648871167],[-121.4217946563707,38.56570460049538],[-121.42180508814911,38.565722857107126],[-121.42181511143458,38.56574125492061],[-121.42182013896765,38.56575082958204],[-121.4218234325294,38.56576424423016],[-121.4220800632318,38.56680946801587],[-121.42235990741887,38.568822890613326],[-121.4222282904507,38.569130850798295],[-121.4222781151675,38.56938776789371],[-121.42208161155953,38.57125743525657],[-121.42207074178468,38.571360853938955],[-121.42147858054656,38.572965760590634],[-121.42161402990169,38.57393253359815],[-121.42129135986679,38.574845374846085],[-121.42120027509726,38.57674493343376],[-121.42119583677004,38.576837484192644],[-121.42110467550121,38.57718251567714],[-121.41994482884796,38.57939047092355],[-121.41994397800055,38.582014657917775],[-121.41994390848059,38.58223054670055],[-121.41994355781249,38.58331036716208],[-121.41994300370467,38.58502169538826],[-121.41994288389361,38.585392532503406],[-121.42176152294626,38.58621476060449],[-121.420642770849,38.58725888556547],[-121.41994238155927,38.586942233048184],[-121.41994222423347,38.58742495099987],[-121.41994091150337,38.58772243259887],[-121.41993602035703,38.58883098693823],[-121.4200053299369,38.58894162688764],[-121.42002880229813,38.59205429441781],[-121.42002870580825,38.592164128115606],[-121.42001892854434,38.59321472456843],[-121.41999234478536,38.59607131239741],[-121.41995285486142,38.596077092970816],[-121.41995380231687,38.59738716001278],[-121.41995410951752,38.59738721650651],[-121.42037363708806,38.597383018056185],[-121.4206971804718,38.59751151534943],[-121.42051357125806,38.597761877607674],[-121.42014335473384,38.598231145732655],[-121.42009319839269,38.59826661347102],[-121.42009480101895,38.59881876618876],[-121.42033730020346,38.598937882012635],[-121.4205028072289,38.599019179664644],[-121.42041455903562,38.59911967849844],[-121.42009501885404,38.599119091408916],[-121.42009520008124,38.59936871737789],[-121.4200953594881,38.5995878495626],[-121.42009574286328,38.59958813977049],[-121.42009550624891,38.599789760072746],[-121.4204194197999,38.59979672398431],[-121.42054944731908,38.59989449892795],[-121.42048862378168,38.59996499272017],[-121.42009562856894,38.599958393004464],[-121.42009884764964,38.60018131618054],[-121.42012175029923,38.600207928143256],[-121.42015124999813,38.60021895422525],[-121.42014838874204,38.600335483062054],[-121.42035110401551,38.600340120419055],[-121.42031249946736,38.60063030986259],[-121.42048724012585,38.60070714833174],[-121.42047456948804,38.600795834410995],[-121.42007874388705,38.6008011529212],[-121.42007912928025,38.60096496014254],[-121.42008990998036,38.60107275008865],[-121.4200967815902,38.60118054298113],[-121.42009665231271,38.60136966922713],[-121.42049361130817,38.60137148693696],[-121.42049247174788,38.601544354079735],[-121.42049139002424,38.60170840800426],[-121.41995692844255,38.60170622149499],[-121.41995736550302,38.602311500728426],[-121.42048061452896,38.60231403110461],[-121.42057485781059,38.60237396748697],[-121.42053761273019,38.602424914428],[-121.4204844994376,38.602497564819416],[-121.42048351987778,38.60266232285433],[-121.42048253091798,38.60282851957911],[-121.42048155085988,38.60299319652915],[-121.42048057886039,38.60315659874506],[-121.42051657482386,38.603242042761266],[-121.42052454827777,38.603260970030334],[-121.42043333301837,38.60333347388943],[-121.41995810866302,38.60333759288414],[-121.4199583302421,38.60364359916871],[-121.42041769046952,38.60364197554412],[-121.42041737628068,38.603953120571596],[-121.42051983698306,38.604029641339444],[-121.42041872683471,38.604113541616535],[-121.41995866515632,38.60410773022143],[-121.41995873161474,38.60419822147551],[-121.41995909006572,38.60469474630768],[-121.42043584323237,38.60470027274437],[-121.42049189897904,38.60486716932964],[-121.42049174357813,38.605024460313544],[-121.42049158461846,38.60518374316921],[-121.41995944390227,38.605183370215606],[-121.41995961007059,38.605412913206315],[-121.41995932709368,38.605540153128],[-121.41995776678783,38.60584122074483],[-121.42009773689303,38.60584259645414],[-121.42036646593407,38.60584390747312],[-121.42036259508751,38.60612533290667],[-121.42015895224979,38.60612402343857],[-121.41995619298216,38.60616568286706],[-121.41995608454233,38.60616574628785],[-121.4199487208735,38.60758673703973],[-121.42042817656943,38.60759043100155],[-121.42042698648078,38.607850284272075],[-121.42042623821104,38.608013400199916],[-121.42042548167547,38.60817852148928],[-121.42042471472857,38.6083459120931],[-121.42042341995128,38.608628389137905],[-121.42034866445404,38.608628330342135],[-121.42034587051631,38.60888756296707],[-121.42061452924884,38.60888805858743],[-121.42061453483635,38.60902599271918],[-121.42079014331641,38.60902542421458],[-121.4207901288932,38.60911455378652],[-121.42079012836385,38.609124796116376],[-121.42079012159978,38.609164923971804],[-121.42079010645497,38.60926191659527],[-121.42079010100004,38.60930202463732],[-121.42079008482796,38.609403808241616],[-121.42079007886984,38.60944086853621],[-121.42079006170093,38.60955139717164],[-121.42079005718166,38.60957909261756],[-121.42079004006125,38.60969427980682],[-121.42079003851018,38.609705496004324],[-121.42079003602039,38.609715838324064],[-121.42079001492556,38.60985384799315],[-121.42058346573272,38.609853807672124],[-121.42058332043516,38.60999193383825],[-121.42058317635104,38.61013005190186],[-121.42058303111094,38.61026817086002],[-121.4205828576533,38.61043350046054],[-121.42058268418751,38.610598830961194],[-121.42007309965824,38.610598733732004],[-121.41993311269071,38.61059870660278],[-121.41993437088041,38.61035583205131],[-121.417616306576,38.61033302377048],[-121.41762149667001,38.61038936513921],[-121.41694149912304,38.61038272145613],[-121.41694097272644,38.610655895183264],[-121.4169408146431,38.61073827450707],[-121.41693205598227,38.610823528550455]]]},"properties":{"ZIP5":"95825","PO_NAME":"SACRAMENTO","Shape_STAr":128673970.057,"Shape_STLe":93207.1302213}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.35186497123009,38.56774903285694],[-121.35079999791549,38.56544429626568],[-121.35073890451848,38.5653120781397],[-121.35070533967286,38.56532885301261],[-121.3501081323172,38.563993140411675],[-121.35010525862893,38.56398664045878],[-121.35009834320051,38.5639703592024],[-121.35009179122184,38.56395398449033],[-121.35008560378265,38.563937522635136],[-121.35007978312828,38.563920979054814],[-121.35007433037309,38.56390435735941],[-121.3500692489015,38.56388766387428],[-121.35006452863499,38.56387213098176],[-121.35005922487156,38.56385590742156],[-121.35005356241811,38.56383975932486],[-121.35004754122566,38.563823692096726],[-121.35004116356467,38.56380770845262],[-121.34990731032507,38.56348224151928],[-121.34990716102214,38.56348187851663],[-121.34988633219346,38.563429658551726],[-121.34986666829076,38.56337716043995],[-121.3496097888361,38.562668573005524],[-121.34960331960535,38.562651076200716],[-121.34959196224409,38.56262188069457],[-121.3495799574183,38.56259284641462],[-121.34956730966074,38.5625639796924],[-121.34886863729373,38.561013545758016],[-121.34886616942003,38.56100811743089],[-121.34885795706879,38.56099068014553],[-121.34884935700514,38.56097335689521],[-121.34884037490025,38.56095615491892],[-121.34883101071327,38.560939078720914],[-121.34882126784541,38.56092213282476],[-121.34881115082867,38.56090532356222],[-121.34880066191684,38.560888655450356],[-121.34848900273091,38.560404099825746],[-121.34846360530135,38.560364118806],[-121.34842037570897,38.56029366155276],[-121.34837871884164,38.56022262394492],[-121.34833864713545,38.5601510258742],[-121.34833852977087,38.56015081079779],[-121.34833433216478,38.560143321357366],[-121.34832996880056,38.560135890443235],[-121.34832544194823,38.560128520770945],[-121.34832075044405,38.56012121413571],[-121.34831589885265,38.5601139732659],[-121.34831088601034,38.56010679995677],[-121.34830571419528,38.56009969602298],[-121.34830201164667,38.56009466163441],[-121.34829455153384,38.56008420966212],[-121.34828732526144,38.5600736572037],[-121.34828033509937,38.56006300697468],[-121.34827358215377,38.560052263485865],[-121.34826816697559,38.56004328880045],[-121.34826185383668,38.56003238111993],[-121.34825578472386,38.560021388326206],[-121.34824996075153,38.56001031402926],[-121.3482443841813,38.55999916184544],[-121.34823905612754,38.55998793538474],[-121.348233977721,38.55997663645535],[-121.34819223064818,38.55988109813678],[-121.34760268093049,38.55853189972699],[-121.3475939454625,38.558511381004045],[-121.34758475055327,38.55848853265066],[-121.3468656319371,38.556645500716925],[-121.34686221027977,38.55663663361001],[-121.34626036769302,38.55505909338841],[-121.3462519385585,38.55503628348341],[-121.3460161343477,38.55437688893847],[-121.34423647898642,38.54939993462057],[-121.34420375268047,38.549300511647026],[-121.34412453816891,38.548874249399496],[-121.34412312404916,38.54885348540676],[-121.34412089989499,38.54881038876367],[-121.34411963387896,38.548767268721974],[-121.34409652837878,38.54750064922185],[-121.3440941083423,38.547331707481646],[-121.34407534388973,38.545528451730554],[-121.3440753043476,38.54552501545006],[-121.34407443260328,38.5454880589387],[-121.34407274048685,38.54545111939895],[-121.34407022673655,38.54541420943617],[-121.3440664832616,38.54536518972837],[-121.3440546369801,38.54517518001177],[-121.34405428696525,38.54516845456447],[-121.34404881704512,38.5450831149444],[-121.3440414512434,38.54499786277558],[-121.34403219162094,38.54491272419548],[-121.3440210425244,38.5448277262555],[-121.34400800488405,38.54474289328481],[-121.34399308534051,38.54465825234751],[-121.34397628710158,38.544573829587314],[-121.34395942864138,38.54448947315005],[-121.34394313961498,38.54439795863473],[-121.34392888642951,38.54430623493751],[-121.34392268179882,38.544260411198564],[-121.34391584746432,38.544201227953685],[-121.34391032968188,38.54414196028066],[-121.34390612828273,38.54408262619678],[-121.3439032476944,38.544023242844574],[-121.34390168659274,38.54396382913569],[-121.34390144595582,38.54390440309383],[-121.34390334248035,38.54363595549482],[-121.34405018551024,38.54363678800324],[-121.34405198549665,38.54338190300079],[-121.34407105660212,38.5406808382987],[-121.34407299672371,38.540406070183494],[-121.34407497923448,38.540125314885074],[-121.34392813010115,38.540126306667744],[-121.34394392789561,38.53788935495002],[-121.34398270684072,38.53239763831],[-121.34398961376121,38.53141931664097],[-121.3441501600956,38.531462128918314],[-121.34415527226116,38.52690668099506],[-121.34416103136041,38.521773412487434],[-121.35444243033601,38.52177746208629],[-121.35810858866043,38.5217786850155],[-121.3581173356728,38.52347399865529],[-121.35929682545226,38.523461708400056],[-121.35930344920803,38.52177905857766],[-121.36044432434082,38.52177940332201],[-121.3604215382977,38.5252574695151],[-121.36163680016787,38.525239026852596],[-121.36185366280387,38.52523640980418],[-121.36282299302177,38.52522773207522],[-121.36282275770071,38.525178544969485],[-121.36281614593486,38.52429341623135],[-121.36435410483548,38.52428687980295],[-121.36435186043644,38.52398717244651],[-121.3649089768119,38.52397910437175],[-121.36741358348075,38.523942796670006],[-121.3677470908734,38.52393795773001],[-121.3680654125189,38.52393333847942],[-121.3683738794812,38.52392886094383],[-121.36972146640616,38.523909292841545],[-121.37020967594835,38.52390219947542],[-121.37019838987685,38.52384386933055],[-121.3701777651605,38.52374643683371],[-121.370154978446,38.523649301571815],[-121.37013003749888,38.52355249421657],[-121.37010295010838,38.523456042736925],[-121.37007372403973,38.523359977804425],[-121.3700701432418,38.523348596097904],[-121.37004139848212,38.52325323017688],[-121.37144236525863,38.52323489133905],[-121.37212153442402,38.52322599401983],[-121.37212661302313,38.52322592789075],[-121.37212668556847,38.52336241709767],[-121.37212670822927,38.523404435400295],[-121.37212704883319,38.5240356748111],[-121.37212704843705,38.52403571985417],[-121.37270995674447,38.52403367133833],[-121.37339614646734,38.52403125684107],[-121.37340120061374,38.52403123917209],[-121.37350459834897,38.524218351235795],[-121.37350566888243,38.52421802640159],[-121.37350563768477,38.52423268935054],[-121.37350563781175,38.524232805567884],[-121.37447653504155,38.52421584593892],[-121.37466436699741,38.52421256412951],[-121.37539340027625,38.52421022071596],[-121.37572583734753,38.524209151202754],[-121.37573039261878,38.52420913614524],[-121.37595371957752,38.52422709611033],[-121.37595418944153,38.52422713378027],[-121.37703900403821,38.52422467797756],[-121.37702519345413,38.52359315096138],[-121.377008200046,38.52281609728573],[-121.3769894661206,38.521959416836715],[-121.37725166451858,38.521958821448905],[-121.37889406181107,38.52195508122287],[-121.37962120225033,38.521953417345856],[-121.38001123082773,38.52195252279884],[-121.3812930582645,38.52194957491608],[-121.38129603928704,38.521619355583695],[-121.38129726415481,38.5214837067518],[-121.38130036256558,38.52113609970405],[-121.38130041096764,38.52113064679259],[-121.38140632952704,38.52124604243986],[-121.38159267022002,38.52144905561014],[-121.3817512184336,38.521621789214485],[-121.38425719807341,38.524351832779566],[-121.38490693109605,38.525059839966644],[-121.3850325222947,38.52519669274625],[-121.38503256205928,38.525196736200996],[-121.3853925336062,38.525195588856526],[-121.38484002963784,38.52460124326814],[-121.38587694604692,38.52455029115084],[-121.38590306612059,38.52151378434102],[-121.38593394516944,38.52151364916403],[-121.38593291429123,38.52156857177394],[-121.38601245835652,38.52156822282656],[-121.38601174720309,38.521601176802],[-121.38694704319778,38.52159706612881],[-121.38812701848974,38.52159186849164],[-121.38813516448087,38.52282336168398],[-121.38861456506594,38.522823198173306],[-121.38906946901288,38.52282304114482],[-121.38909235325904,38.52282303316994],[-121.38909743240539,38.52282303116394],[-121.38909522999674,38.523935298971374],[-121.38909522958815,38.523935346717096],[-121.38959457254494,38.523933306034436],[-121.38959961408145,38.52393328578949],[-121.38981374088758,38.52420718189413],[-121.39045397292703,38.52502832041977],[-121.39057139738209,38.52517892233096],[-121.3905714314162,38.52517896575359],[-121.39069421407098,38.52517857107007],[-121.39069425533951,38.52517857308921],[-121.39074395012055,38.52517838256721],[-121.3907439492429,38.52517835103096],[-121.3908340428743,38.52517794079279],[-121.39581019810635,38.525147057718804],[-121.39901402238031,38.52512701909192],[-121.40154317103254,38.52511129808073],[-121.40232970532513,38.5251064408787],[-121.40244441495578,38.52503058108525],[-121.40244941525978,38.52502727447611],[-121.4024512576362,38.525105439072114],[-121.40245125943963,38.525105497640084],[-121.40777225184009,38.52507194112785],[-121.40784416458526,38.52526370497926],[-121.4080022745669,38.52568532100191],[-121.40818454613469,38.52617135687727],[-121.40840121900703,38.526749117134166],[-121.408986074308,38.52830859021465],[-121.40928842811914,38.52915713806417],[-121.41031803181409,38.53204888902016],[-121.41033227788458,38.53208540671118],[-121.41040974981016,38.53228399903438],[-121.41043546233003,38.532349908507726],[-121.41048590131852,38.53247920619356],[-121.4105939457637,38.53275616144689],[-121.41059557209972,38.532760332799306],[-121.41064846135116,38.53289590596282],[-121.41070231336622,38.53303394707039],[-121.41075473350726,38.53316831959432],[-121.41080753238965,38.53330365888805],[-121.41086084475458,38.53344031608779],[-121.41091361369716,38.53357557950266],[-121.4109663704914,38.53371081039803],[-121.41101920050379,38.53384622722673],[-121.41111329532889,38.534087419934224],[-121.4111324147279,38.53413642720315],[-121.41106226090004,38.534144007967],[-121.41175559160546,38.53597095297323],[-121.41194475908098,38.53639462305127],[-121.41227716456463,38.5371389261609],[-121.4123723503884,38.53735633953478],[-121.41250570593222,38.53764236291485],[-121.41340519475095,38.53957112806726],[-121.41344262153066,38.53970867646205],[-121.41375729707205,38.54026497162],[-121.41412536685009,38.54088780567502],[-121.41450722731678,38.54150549929306],[-121.41490276215248,38.542117862558804],[-121.41531185155254,38.5427247091396],[-121.41573437108731,38.5433258553792],[-121.416170192871,38.54392111760116],[-121.41792057963991,38.54609729162172],[-121.41976987257912,38.54839625890071],[-121.41989762164793,38.54854846786724],[-121.42019514632626,38.54890295180737],[-121.42028764683836,38.54899501073857],[-121.42053866248841,38.5492531634669],[-121.42087696273128,38.54958040474011],[-121.42183565279771,38.550305248902596],[-121.42194991602031,38.55037884223525],[-121.42206738487876,38.55045186407542],[-121.42218645945827,38.55052326498362],[-121.42229155184654,38.55058417344596],[-121.42241353260574,38.550652481418695],[-121.42253701403,38.550719106659834],[-121.4226619561161,38.55078403004601],[-121.42278832346382,38.550847230675295],[-121.4229160760691,38.550908689424624],[-121.42310701999386,38.55099781620987],[-121.42334139302494,38.55110328972123],[-121.42357807469594,38.55120553371325],[-121.42381699409117,38.55130451898993],[-121.42405807687378,38.55140021363608],[-121.42430125097066,38.55149258935179],[-121.4231454454805,38.55117524198206],[-121.42266965697303,38.55104460089617],[-121.42178999569664,38.55080305865864],[-121.42126390782232,38.55065859917875],[-121.42155635243759,38.55102138205751],[-121.42208355417954,38.55118396467317],[-121.42283016075518,38.55214871409213],[-121.42337842989268,38.5528571579433],[-121.4228984270408,38.55273747433707],[-121.42416534815999,38.554358465092164],[-121.42002519527875,38.55433992005123],[-121.41920921522524,38.55433624779838],[-121.41876250206833,38.55433423486143],[-121.41847341547773,38.554332931268476],[-121.41840537144809,38.55420755056927],[-121.41549543238129,38.55418431289913],[-121.41549332814978,38.55430100232621],[-121.41548522297938,38.554748600337454],[-121.41545692399768,38.55631121037257],[-121.41542799846198,38.55790841452628],[-121.41539160468308,38.55991788740186],[-121.41534971656007,38.55990773887489],[-121.41442158426126,38.55991379904491],[-121.41338494781313,38.56020211825574],[-121.41323782099732,38.560229133748265],[-121.41042696303695,38.560745235610376],[-121.40926021434153,38.56082975049981],[-121.40927221750717,38.56020896169421],[-121.40927788942095,38.55972896231052],[-121.40928078953426,38.55953540037182],[-121.4091689575391,38.55958230345724],[-121.40896091594333,38.5596425737401],[-121.40874270529324,38.55967356284796],[-121.40852095748203,38.55967432803642],[-121.40826074352971,38.55972396015103],[-121.407804488432,38.55975994552898],[-121.40754818782095,38.55976074286814],[-121.40728245467548,38.55979744182102],[-121.40723698795094,38.55980745492814],[-121.40716535805778,38.55982236734783],[-121.40709340815656,38.55983629610112],[-121.40702115893934,38.559849236788786],[-121.40694863339321,38.55986118502362],[-121.40687585335029,38.559872137313334],[-121.40680284063542,38.55988209106656],[-121.40672961708076,38.559891042791186],[-121.40671870465029,38.559892106675804],[-121.40669524259071,38.55989463415802],[-121.40667184097359,38.559897481765475],[-121.40664850552785,38.559900650428474],[-121.40662524429952,38.55990413838656],[-121.40660206417974,38.559907944774146],[-121.40657897321458,38.55991206783075],[-121.40655597600058,38.55991650667913],[-121.40636843493334,38.55996574588692],[-121.40615896210313,38.560051978612606],[-121.40614393079983,38.56005976456045],[-121.40595438490907,38.56013887122471],[-121.4057502235095,38.56019093224112],[-121.40573453295067,38.560193690421556],[-121.40571348992181,38.560197125622274],[-121.40569237472243,38.5602002712591],[-121.4056711919346,38.56020312825639],[-121.40564994846515,38.5602056939469],[-121.40562865120582,38.560207967465075],[-121.40560730703349,38.560209949747104],[-121.40558592284734,38.56021163902658],[-121.40556450324456,38.56021303442621],[-121.40351137027717,38.560724591053585],[-121.40052305034064,38.56108836766046],[-121.39789348055692,38.56202634583491],[-121.39604137561685,38.562621760368785],[-121.39302600715979,38.56359105722656],[-121.39300004310965,38.56360100126796],[-121.39234310079328,38.56385262232748],[-121.39143183934418,38.564201642661175],[-121.38924781355851,38.56503778415731],[-121.38808312665316,38.565590791724155],[-121.38804911809929,38.565606938094525],[-121.38650196205775,38.56621522622557],[-121.38551795057153,38.56625801663211],[-121.38357669584703,38.56634240951577],[-121.38320592497638,38.56644009412647],[-121.38283052273783,38.566538997008486],[-121.38281829509741,38.5663825944543],[-121.3820274229392,38.56662945029058],[-121.3799093562661,38.5674499496921],[-121.37678671919842,38.5678668943262],[-121.37542464922512,38.56756334657623],[-121.37501350118406,38.56760487076618],[-121.37409423449327,38.56769770851965],[-121.37354858334433,38.56765328814396],[-121.37334619159833,38.5668731287237],[-121.37060092173245,38.567468995504704],[-121.36893196987155,38.56787708583356],[-121.3657768109919,38.5682953782282],[-121.36451129635343,38.568654268666336],[-121.3610881429292,38.56962496077716],[-121.36060477126784,38.569706372350794],[-121.3605968963729,38.56970770183128],[-121.3589387987179,38.57010950949589],[-121.35839438591496,38.5702675291091],[-121.35688076680162,38.57055120939376],[-121.35663957616084,38.570579980095616],[-121.35607591177593,38.570652866141536],[-121.35607244417163,38.570653338746396],[-121.3544246297762,38.57087800773182],[-121.35444733258542,38.57090001552796],[-121.3561116279793,38.57251326895746],[-121.35448434136944,38.573547880473235],[-121.35398400203269,38.57243931201585],[-121.35328636306265,38.5708935352648],[-121.35265892250267,38.569503240256765],[-121.35238736665349,38.5689015030099],[-121.35193009639931,38.56788821891425],[-121.35186497123009,38.56774903285694]]]},"properties":{"ZIP5":"95826","PO_NAME":"SACRAMENTO","Shape_STAr":302606012.596,"Shape_STLe":84705.5282201}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.46844418943552,38.459730351996896],[-121.46844807860082,38.45634796084796],[-121.46410374534462,38.45632972090673],[-121.46410533157407,38.45612997034398],[-121.46413326182416,38.45261138513941],[-121.46011007863504,38.45252649641902],[-121.45982738745924,38.452520525896176],[-121.45435860824915,38.452404894448634],[-121.4493524465794,38.45239646764165],[-121.44865096374225,38.452395269948475],[-121.44728640798103,38.45239292747788],[-121.44489522620866,38.45238814401563],[-121.44489371473958,38.45234645035292],[-121.4448882529863,38.4523081584293],[-121.44487976868804,38.452248670047375],[-121.44487674502138,38.45222746998028],[-121.44487213617181,38.45218911098182],[-121.44482616753913,38.45210807050261],[-121.44481034027912,38.45203833334697],[-121.44475287783267,38.45175937675707],[-121.44475187980314,38.4517540908915],[-121.4447045319625,38.45147935313542],[-121.44466533321211,38.451198446424186],[-121.4446489012719,38.4510551641466],[-121.44463531836682,38.450916921674285],[-121.44461448388908,38.45063477797559],[-121.44460983608442,38.450546035998855],[-121.44460556880887,38.450442531016016],[-121.44454767776638,38.448800748927944],[-121.44454115602981,38.44861575129542],[-121.44453078434293,38.44832163988771],[-121.44450285569917,38.44752949647224],[-121.444490202116,38.44703468352598],[-121.44449208042664,38.446272928392226],[-121.44432457221222,38.446237174443134],[-121.44431063390836,38.44622601915227],[-121.44403284539705,38.446003714076056],[-121.44397044454956,38.44595148601441],[-121.44391037676415,38.445897557437945],[-121.44385273989441,38.44584201350577],[-121.44379760215014,38.44578492121639],[-121.4437450328648,38.445726350276374],[-121.44369509448411,38.445666372160915],[-121.44360330739957,38.445581783571996],[-121.44353412972961,38.4454963641513],[-121.44320712317747,38.44504739348069],[-121.44296083151202,38.44466703427609],[-121.4428400278091,38.44451737739543],[-121.44250503349751,38.44407864815151],[-121.4421627492622,38.44363808002935],[-121.44204753652997,38.443485079034474],[-121.44193715851831,38.44334129765044],[-121.44188788010476,38.44327921292436],[-121.44181257201382,38.44320236463139],[-121.44172591770086,38.4431333074015],[-121.44164358679026,38.44308109979248],[-121.44155476658229,38.443035946333985],[-121.44147649479395,38.44300406719082],[-121.44141151965277,38.44298250270289],[-121.4413447888474,38.44296455671008],[-121.44125940471619,38.44294734120208],[-121.44118992644869,38.44293782506091],[-121.44115491263094,38.44293450258029],[-121.44108455080517,38.44293075055964],[-121.44101574183306,38.44293027897471],[-121.44026012825275,38.44292935631416],[-121.44007169186233,38.442930377588006],[-121.44004068981995,38.44293873004326],[-121.4400265411368,38.44294582092397],[-121.43999368237037,38.442960002195626],[-121.43994504728552,38.44296634394565],[-121.4399074483896,38.4429610851376],[-121.43986457673547,38.442941942225005],[-121.4398399201723,38.44291967589397],[-121.43971389672387,38.44290065322038],[-121.43959456810589,38.442873830460314],[-121.43952455939372,38.442853843195614],[-121.43941113901568,38.44281422009783],[-121.43934534830802,38.44278676491294],[-121.43924004330735,38.442735112575626],[-121.43916017313353,38.44268871421689],[-121.43904856503735,38.4426111897165],[-121.43898015229398,38.44255458831301],[-121.4389478714464,38.44252491361443],[-121.43877455984003,38.44231677505239],[-121.43863257599111,38.44213942350799],[-121.43847901532146,38.44194181556499],[-121.4383998817037,38.44184587980277],[-121.43815714594855,38.441493876991274],[-121.43813950738658,38.44146712370451],[-121.43615675043004,38.44145390419521],[-121.43613875454741,38.43790403140724],[-121.43327846216708,38.43792489328571],[-121.43175131125616,38.43793600262037],[-121.43155875668906,38.43793740140514],[-121.43148986348372,38.43793790208641],[-121.43148537461848,38.43826810746058],[-121.43153267496503,38.43832314190963],[-121.43154158908523,38.43838920008743],[-121.43152941257824,38.438428733818],[-121.43153036188997,38.43923369321772],[-121.43151517991122,38.439296372489906],[-121.43148215174995,38.43937735311676],[-121.43144239009882,38.439443705126465],[-121.43139977932837,38.43949800167754],[-121.43155753263316,38.43964176506465],[-121.43156031023638,38.439871503637626],[-121.43154228212696,38.43989192933149],[-121.43143277941627,38.44001598948277],[-121.43132327518006,38.44014004952495],[-121.43121377170196,38.440264110370265],[-121.43110426785088,38.44038817021127],[-121.43099476247426,38.44051222994326],[-121.4308852578629,38.440636289577434],[-121.43077575287148,38.44076034910822],[-121.4307148959247,38.440829294246505],[-121.43020431271295,38.4407671001523],[-121.42971093578369,38.44070699952965],[-121.42916471913466,38.44064046009748],[-121.42857818913448,38.440569007015284],[-121.42778282151654,38.440453039494706],[-121.4275940005979,38.44044835380638],[-121.42711322395964,38.44038976665089],[-121.42677353429112,38.440348371184925],[-121.42663301533918,38.440338146068385],[-121.42659408492518,38.44031853218027],[-121.42627597716536,38.440279750453264],[-121.4260417804823,38.440228703624655],[-121.42595841952647,38.44019861476757],[-121.42587906421987,38.44016311873139],[-121.42570776587355,38.4400575495502],[-121.42560984268178,38.439971917844474],[-121.42552802639342,38.439876400380065],[-121.4254711954294,38.439786809791165],[-121.4252743844542,38.439444240353396],[-121.42511007847787,38.439160198917406],[-121.42472034171062,38.438477732742136],[-121.42444399827446,38.437988936257845],[-121.42248255055445,38.43800308143419],[-121.42242685557875,38.43800348231991],[-121.42171422074583,38.43800861331241],[-121.42125597618069,38.438042542315415],[-121.42120661332304,38.43802975812297],[-121.42022987526411,38.43802467200105],[-121.41804198661276,38.43800213870149],[-121.41787877025112,38.43800045615069],[-121.417778677779,38.43800010498097],[-121.41775930238174,38.438000168607886],[-121.41777174943854,38.439430135199665],[-121.41777527780901,38.4398353474024],[-121.41777640497882,38.43983534227127],[-121.41778793413869,38.44118865657686],[-121.41779014255225,38.44119077400986],[-121.4177870759719,38.441190790990746],[-121.41779343060767,38.441920676787376],[-121.41779422901725,38.44192067630575],[-121.4178017447103,38.44313663446072],[-121.41779273211107,38.443385784461775],[-121.41778795342049,38.443543654025085],[-121.4177769817345,38.44489048660456],[-121.41777063324501,38.445666539975385],[-121.41777727384539,38.44614058140948],[-121.417787805292,38.44634795423424],[-121.41780183393918,38.44655465639016],[-121.41782109996704,38.44676138673291],[-121.4178455587022,38.4469736351231],[-121.4178816229074,38.44722166538527],[-121.41795871960352,38.44767352208254],[-121.41800891346698,38.448036713532666],[-121.41803413241827,38.448332281908044],[-121.41803752940628,38.448332384600995],[-121.41802547474313,38.450415215318586],[-121.41801331677615,38.45251556812657],[-121.41792379108861,38.45251605057823],[-121.4168933990027,38.452521587714095],[-121.41583460806828,38.45252726761232],[-121.41552005936003,38.45252895287851],[-121.41562213926707,38.453481142096386],[-121.4135196349434,38.45347982844172],[-121.41352242000954,38.45349351735245],[-121.41348295293146,38.45347980534636],[-121.41339784867074,38.45310340576753],[-121.41305527106087,38.45310673665949],[-121.41270502942973,38.45311014110259],[-121.41249188368712,38.45311221268884],[-121.41235490921581,38.45311354330004],[-121.4120117105082,38.45311687694991],[-121.41167626970841,38.45312013466012],[-121.41135154402936,38.45312328741681],[-121.41105240086054,38.45312619125758],[-121.41066721334013,38.45312992854871],[-121.41045771214523,38.45313196091505],[-121.40931990170122,38.45314299066399],[-121.409207017879,38.45314408481678],[-121.40894309637099,38.45262969993238],[-121.40888984617715,38.452611262701986],[-121.40848993180872,38.45269122644422],[-121.40765129541313,38.45096468225138],[-121.4076502790824,38.45096262749128],[-121.40764880422991,38.45095977578585],[-121.40764726734416,38.4509569444832],[-121.40764566725714,38.45095413627999],[-121.40764400628994,38.45095134758455],[-121.40764228209913,38.450948584691105],[-121.40764049700574,38.45094584400802],[-121.40763865327102,38.450943129150474],[-121.40763634383093,38.450939792986524],[-121.40761992892617,38.450915499822614],[-121.40760405774604,38.45089098601998],[-121.40758873252913,38.45086625789665],[-121.40757395780504,38.45084132178236],[-121.407559739219,38.45081618761627],[-121.40754608014768,38.45079086262296],[-121.4075329851131,38.45076535403309],[-121.4075204574992,38.45073966817054],[-121.40750850409687,38.45071381498019],[-121.40746363525247,38.4506140830729],[-121.40734975895732,38.4503609593496],[-121.40487352446014,38.44485632733384],[-121.40395738071713,38.44281952565562],[-121.40247040132628,38.43951335971929],[-121.40239767137214,38.439351642932884],[-121.40176939947044,38.43795463405542],[-121.40139818091149,38.43712917393849],[-121.4013421192424,38.43700410771656],[-121.4008722687748,38.43592243820993],[-121.40042650494034,38.43483448183155],[-121.40003417322475,38.43384748682863],[-121.39753436588407,38.428342571395454],[-121.39718238536828,38.42756739057858],[-121.39662068798937,38.426330305058514],[-121.39648612308139,38.426027279398575],[-121.39632524977,38.42564588271221],[-121.39617286528072,38.425262333769666],[-121.39602901314768,38.42487675175183],[-121.39601369529278,38.424834527489864],[-121.39590614013109,38.42454895317636],[-121.39579226747577,38.424264897971675],[-121.39567210871296,38.42398245030943],[-121.395545705571,38.423701694171754],[-121.3951461245841,38.42283818489804],[-121.3925988457586,38.41733291179058],[-121.39101896512416,38.413917964233235],[-121.39002661669424,38.41182744960639],[-121.38957740308878,38.41091478103452],[-121.38953657823863,38.41083070123262],[-121.38929612823591,38.410333912574615],[-121.38899118027271,38.40973276140928],[-121.388672950162,38.40913588867432],[-121.38864185494411,38.409077796106345],[-121.38860612483913,38.40900793393992],[-121.38860454168521,38.40900468141244],[-121.38945321638775,38.408907188819896],[-121.38947479005616,38.40875294058519],[-121.38921406266958,38.40832621938693],[-121.38987746986992,38.40832920243353],[-121.39015145677311,38.40863291006046],[-121.39015197150775,38.40875849034303],[-121.39023698455485,38.40875918695123],[-121.39024333036576,38.40825388317287],[-121.39024660689401,38.407993036333025],[-121.39186754404757,38.40800816468721],[-121.39187780166309,38.4079528285777],[-121.3920342972963,38.407949493019444],[-121.39224666081576,38.4079236332204],[-121.39236477077101,38.4078939042114],[-121.39241116684367,38.407981825821274],[-121.39251167060179,38.40825887716506],[-121.39253367942017,38.40844277860533],[-121.39252956230342,38.408927947292256],[-121.393262383578,38.40893284801297],[-121.39325696455619,38.40883406544434],[-121.39325845538008,38.40869655609477],[-121.39341067353101,38.40869757727504],[-121.39341784299066,38.408035981302994],[-121.3936979876296,38.408037880222736],[-121.39461445901827,38.40804408500721],[-121.39461153413177,38.40884314743913],[-121.39463709523282,38.4089420274011],[-121.39733914883588,38.408972319649784],[-121.39819088142058,38.40898448429151],[-121.39922468733542,38.40899924303697],[-121.399222974109,38.40890035033779],[-121.39922316272138,38.408850918884724],[-121.39922774880145,38.40765149047085],[-121.39923121519688,38.40674462473757],[-121.39931412147968,38.406755682996256],[-121.39961703714569,38.406781994122404],[-121.39997152205694,38.40681740661998],[-121.40010335388962,38.40682338065044],[-121.40010144987228,38.40732301486035],[-121.40009557999247,38.40886336536842],[-121.40009475722852,38.409011656586465],[-121.40146295631563,38.40903116413187],[-121.4015663925206,38.40903250462844],[-121.40267598553868,38.40904263954944],[-121.40515287199038,38.40906490944815],[-121.40525447577589,38.40906562999656],[-121.40536225179335,38.40906596962138],[-121.40780790264186,38.40906873077181],[-121.40896345759167,38.409070016617626],[-121.4090642175871,38.40906976373131],[-121.40917282636056,38.4090686725304],[-121.41387925380445,38.409002888729084],[-121.4139853206554,38.40900150532935],[-121.41750603924305,38.40896528843357],[-121.4176117644397,38.40896436394439],[-121.42118419329503,38.40894916952486],[-121.4255926489242,38.408925395821036],[-121.42595922767177,38.408906650849076],[-121.42624287615226,38.40888742159545],[-121.42692507926942,38.408862278028096],[-121.43059898517895,38.40884007880626],[-121.43348880036504,38.40882253470015],[-121.43423037617058,38.40879364372247],[-121.43526271380676,38.40875377371713],[-121.43582364139358,38.40875073854561],[-121.44086813924511,38.408723310511874],[-121.44470634027842,38.408702294792995],[-121.44733328875472,38.40868783747688],[-121.44733118233994,38.40856839986738],[-121.44734492360018,38.40854223778065],[-121.44734851015113,38.40847076058657],[-121.44734296952078,38.406811910829106],[-121.44750279103181,38.406801779138],[-121.4476947234036,38.40680138183802],[-121.44788665462845,38.406800984213625],[-121.4480785858511,38.406800586270315],[-121.44827051707163,38.406800188008006],[-121.44846244944189,38.40679978853135],[-121.44865438065813,38.40679938963113],[-121.44884631187223,38.40679899041201],[-121.44903829382653,38.40685813054678],[-121.44934300315337,38.4069847734166],[-121.44963768628595,38.40710724879602],[-121.44987775326862,38.40720702372289],[-121.4499893507255,38.40721819123165],[-121.45011441216103,38.40721586693012],[-121.44988488699147,38.40867373811659],[-121.45461674105141,38.408660419116146],[-121.45477886073994,38.40865996022841],[-121.45560679360135,38.40869858626786],[-121.45615731690197,38.408734131985376],[-121.45690424257437,38.408726896254365],[-121.45757410472939,38.40867271019423],[-121.45794798877746,38.40861354956306],[-121.45848622012015,38.408501406367805],[-121.4589699377265,38.408371090078276],[-121.45934427962293,38.40825100931935],[-121.4598074025429,38.40806501588357],[-121.46005120748109,38.407954834795305],[-121.4602666297501,38.407848750272855],[-121.4604681042928,38.40774122722879],[-121.46076253921306,38.40756960844659],[-121.46095189683201,38.40744898390421],[-121.46122379165175,38.40725803631441],[-121.46139928484095,38.407124647324565],[-121.4616503739443,38.406915754044476],[-121.46189109753385,38.40669273992106],[-121.46204054930335,38.40654137826278],[-121.46222705001944,38.40633595854133],[-121.46238189323151,38.40616368561056],[-121.46260693967012,38.40593681868266],[-121.46292840125656,38.40564964774554],[-121.46318642228182,38.405445932042475],[-121.46336711217982,38.405316339921896],[-121.46345831638854,38.405253263957384],[-121.46364593258266,38.405130910758395],[-121.46383873664601,38.405014074110746],[-121.46393687362573,38.40495755154974],[-121.46403673776328,38.40490275312997],[-121.46423993052035,38.404796603621485],[-121.46455336658747,38.40464806152858],[-121.46476691957916,38.404556375283455],[-121.46509588959628,38.404429869384],[-121.46543173477347,38.404317124943525],[-121.46577445500444,38.404218484241326],[-121.46612404588416,38.404133947194886],[-121.46635995272271,38.404085953942754],[-121.4664787600285,38.40406419215176],[-121.466716343168,38.40402547344133],[-121.46707785352342,38.40398011719849],[-121.46744099823201,38.40394952765218],[-121.46780577496881,38.40393404711588],[-121.4684146503971,38.40394199995909],[-121.46877913226412,38.40396633101345],[-121.46926027969141,38.40402243300697],[-121.46961752251286,38.404081738781855],[-121.469854461641,38.40412950753372],[-121.47008786213976,38.40418378115062],[-121.47043264163374,38.404277009022174],[-121.47084343894403,38.404408980514496],[-121.4711740352518,38.404533032013134],[-121.47149406527646,38.4046704206264],[-121.47170271261675,38.40476919998523],[-121.47200688111474,38.40492813792475],[-121.47239601747602,38.40515885928827],[-121.47258180786588,38.40528224511364],[-121.47285256329126,38.40547672803327],[-121.47310754087512,38.405682121158996],[-121.47335023087984,38.405897409886194],[-121.47357715056616,38.40612258202153],[-121.47378829579831,38.40635694755314],[-121.47400119086808,38.406590979224],[-121.47407391560408,38.40666716768547],[-121.4743147697889,38.406895833323034],[-121.47456098466458,38.40710770491051],[-121.47482298133596,38.407309007246994],[-121.47500350718724,38.40743717058237],[-121.47528483767216,38.407620022904545],[-121.47558021285941,38.407790927560484],[-121.47588441014365,38.40794916975508],[-121.47609307197705,38.408047940287005],[-121.47619916485915,38.408095102332304],[-121.47641487452627,38.4081849808663],[-121.47674375815315,38.40830832026512],[-121.47708146499143,38.40841831585883],[-121.47727648587633,38.408474116399496],[-121.4774262564743,38.40851392367371],[-121.47777638618089,38.40859548349641],[-121.47801336052578,38.408641520277364],[-121.478252120544,38.40868138358949],[-121.47861297138444,38.40872866515994],[-121.47897567759426,38.40876085134946],[-121.47946236470027,38.40878055026848],[-121.48109743346764,38.408768686381464],[-121.48222122688314,38.40875897052914],[-121.48332233941053,38.408748799040474],[-121.4835579314716,38.408744705014186],[-121.4827230984301,38.40475009263432],[-121.48103075910787,38.39655789633007],[-121.47932831133461,38.38836975015594],[-121.47799479441875,38.38178481214404],[-121.47743975660504,38.379208332913066],[-121.47661986249426,38.37541076847214],[-121.47565619498235,38.370778123068156],[-121.47460702626171,38.365694063207506],[-121.4736471442542,38.361055929059646],[-121.47260693146679,38.35597875768794],[-121.47150661670754,38.350796613881656],[-121.46937805548552,38.34065161385033],[-121.46834957811012,38.33571759463476],[-121.4673105323838,38.33058306031445],[-121.46624730759979,38.32543914078477],[-121.46522391719466,38.32058200350996],[-121.46732429718364,38.32053508698975],[-121.47103021826933,38.320474087077265],[-121.47566837856391,38.32039742210967],[-121.48651467979228,38.32046998399607],[-121.48573348063341,38.316699344358184],[-121.48447428558855,38.31200783612983],[-121.47838746818229,38.30897538840567],[-121.4757399314472,38.30511735205097],[-121.47574862850344,38.30440492050652],[-121.47575950996291,38.303513548519206],[-121.47576914559782,38.30272423202305],[-121.4758169229456,38.298891015595736],[-121.47361475997076,38.29883663919507],[-121.47225300090705,38.29880299215528],[-121.47182933340814,38.29880258402357],[-121.47042334150692,38.29882419868887],[-121.46862863198695,38.298831814863604],[-121.46732723459007,38.298852412446955],[-121.46603126389488,38.29886906916336],[-121.46512298866678,38.298867782454465],[-121.46224335030026,38.298838604674366],[-121.46111411464854,38.298825032481794],[-121.46069631233185,38.298821764939],[-121.45775250458743,38.284480415589435],[-121.45635124388473,38.277698594969095],[-121.456081353169,38.276770917583484],[-121.45603674990782,38.276602690946234],[-121.45623552585286,38.27563680414644],[-121.45731767839398,38.270377963503535],[-121.4755755343159,38.27054658640997],[-121.48425127345867,38.26895846315277],[-121.48422068151741,38.27378106401124],[-121.48512510625041,38.27378511601962],[-121.48513049377392,38.27303548136071],[-121.48489528216056,38.27302458747506],[-121.48491621102332,38.27169104436319],[-121.48758837439017,38.27169311020757],[-121.48755060471194,38.27674452031328],[-121.49457484426941,38.27675346337063],[-121.49748447392344,38.276757042534804],[-121.49748450205738,38.27677600366237],[-121.49748973761581,38.28023840534323],[-121.49659251923244,38.280228070536566],[-121.49970077948981,38.29934422593985],[-121.49917225932153,38.29933451570143],[-121.50261874727501,38.320519796706876],[-121.50315001679003,38.32052156998332],[-121.50555993712263,38.33533518020213],[-121.50689490274931,38.34538832463821],[-121.50682652322449,38.34539523054504],[-121.50744013571648,38.350012333598094],[-121.50666619618698,38.350009027660114],[-121.50764208871134,38.35600089735425],[-121.507088670011,38.35605678769409],[-121.50740807439753,38.35801776211813],[-121.50797475180696,38.35804318000612],[-121.50868463624384,38.36240089846646],[-121.50891403519304,38.36495012382184],[-121.5096755681686,38.36489995907589],[-121.5096602305121,38.365496220092695],[-121.50965739934263,38.36560629086182],[-121.50959777840771,38.367923893490506],[-121.51005402846677,38.367925830949325],[-121.51006439331118,38.36954627681701],[-121.50968073254195,38.36954779732121],[-121.50969864833152,38.37235085705772],[-121.50955913005805,38.372351410329976],[-121.50958409664844,38.37625851802745],[-121.50961899607275,38.37626118697723],[-121.50963775237882,38.37919580226409],[-121.50962310947187,38.37944596770496],[-121.50930174515061,38.384936460668385],[-121.5089803303529,38.39042695304318],[-121.50869162580148,38.39535797944997],[-121.50856646965735,38.39591705250669],[-121.50733811904567,38.4014036800901],[-121.50610957993902,38.40689029566659],[-121.50576487599498,38.40842957144586],[-121.50503461872503,38.41169033052339],[-121.50500515091271,38.41180943765177],[-121.50478429540749,38.41237648613657],[-121.50474414308036,38.412451910755635],[-121.50438545521965,38.412973538000855],[-121.50198656993199,38.41583422136475],[-121.50196456222393,38.41586046143793],[-121.50185466347877,38.41600065237628],[-121.50160316050743,38.41642666015856],[-121.50144950188682,38.41688055714855],[-121.50139835897636,38.417348550470834],[-121.50139932090315,38.417853790083065],[-121.50140978991205,38.423345702822395],[-121.50142025938425,38.42883761641844],[-121.50142072578107,38.429082576380395],[-121.50103674340693,38.42908351950543],[-121.50103935418831,38.43045646471997],[-121.50068149372724,38.43045734203317],[-121.50068843958873,38.431293794002194],[-121.500471054584,38.43147066133126],[-121.50046279622433,38.433629884712566],[-121.50038566033912,38.434325016395455],[-121.50036995549479,38.434466544935844],[-121.5002484372016,38.434871658408966],[-121.50012491876096,38.43477577328871],[-121.5000961096298,38.43545211220171],[-121.4999062121526,38.43615647274424],[-121.4998184881996,38.4366383054966],[-121.49666975616785,38.434563223571196],[-121.49614205263005,38.43435615256834],[-121.49606684886062,38.43435313270438],[-121.4960645168789,38.437126217634],[-121.49381049443862,38.43759180898202],[-121.49347064813128,38.43778816178802],[-121.49135984306656,38.43779556002546],[-121.4902623629994,38.43779939104023],[-121.48916550478884,38.43780320987616],[-121.48683026816316,38.437811304966324],[-121.4868907004665,38.43975774825628],[-121.48705565385607,38.445070094891626],[-121.48247216574973,38.44505253096718],[-121.48248135343717,38.4452299604875],[-121.48251906443095,38.44595821431308],[-121.48259014434385,38.445969321739256],[-121.48261661183456,38.450722443871534],[-121.48261985333819,38.4513045404554],[-121.48258474546381,38.452802339645984],[-121.48252775093015,38.456212354086226],[-121.48247353763949,38.456213681599074],[-121.48075202011827,38.45625580117203],[-121.477325641811,38.45633955676813],[-121.47776933948,38.45841537662355],[-121.47741610759932,38.45859458738897],[-121.47461298990874,38.459725582716445],[-121.47291454919701,38.45972692884361],[-121.47024984178233,38.459728989140295],[-121.46845291223492,38.45973034526686],[-121.46844418943552,38.459730351996896]]]},"properties":{"ZIP5":"95758","PO_NAME":"ELK GROVE","Shape_STAr":889289649.519,"Shape_STLe":239046.298722}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.25180537938506,38.52552268770651],[-121.25171925771153,38.52551616662717],[-121.25170695972285,38.52551620149492],[-121.24274781758378,38.52562815840973],[-121.2427246905934,38.525312218597016],[-121.24270858531352,38.52499600942452],[-121.24269950864618,38.52467962823968],[-121.24269828085751,38.52459569104063],[-121.24263110429519,38.51884551083536],[-121.24262635356747,38.51846725164338],[-121.2424560126793,38.50578611982925],[-121.24245553916343,38.50575639917355],[-121.24117706227076,38.505497625777025],[-121.23989304189229,38.505256409223314],[-121.23860386729385,38.50503282487024],[-121.23730993125892,38.50482693910658],[-121.23670314418219,38.50473672554112],[-121.23602746753271,38.504633709390156],[-121.23535418375575,38.504521439191905],[-121.23468349911097,38.50439994878443],[-121.23401561637559,38.504269275590936],[-121.23367238597841,38.50419831148923],[-121.23367046411504,38.50419791406367],[-121.234141295673,38.5028726710199],[-121.23414136543617,38.50287247328064],[-121.2341315236756,38.49335785135602],[-121.23342801698611,38.492869763237074],[-121.23342427460267,38.49286716631503],[-121.256429226422,38.47237860418229],[-121.25653412918507,38.4722834776544],[-121.25662888907728,38.472197548992526],[-121.25663877311679,38.47218841873911],[-121.26061853532683,38.46850850525989],[-121.26141041969622,38.467776222496425],[-121.26162827626048,38.467571160381596],[-121.26180118498444,38.46740840414822],[-121.26184567978507,38.467365683254805],[-121.26325674976106,38.46600806512191],[-121.26649894428161,38.46288842362283],[-121.26671685374531,38.46267789022869],[-121.27134591933995,38.45818700942201],[-121.27177301317012,38.45776930455047],[-121.27448532026237,38.45509515953044],[-121.27635203681713,38.45325455348705],[-121.27635713885802,38.453249431323535],[-121.27635974080044,38.45324681965907],[-121.27636090910957,38.453245603537674],[-121.27636476487865,38.453241589798665],[-121.27636727169838,38.45323898114204],[-121.27636842772482,38.453237733411825],[-121.27637210430343,38.45323376539789],[-121.27637462833796,38.45323104063144],[-121.27637577904659,38.45322975232679],[-121.27637938533549,38.45322571089877],[-121.27638180611858,38.45322299990023],[-121.27638289009879,38.45322173910595],[-121.27638644344631,38.45321760815602],[-121.27638880500373,38.453214862551874],[-121.27638990106927,38.45321353967038],[-121.27639326120547,38.45320948138514],[-121.27639562268409,38.45320663037382],[-121.2763966809989,38.4532053018504],[-121.27640000909756,38.453201126246],[-121.27640225569533,38.453198306047106],[-121.27640327042205,38.45319698265616],[-121.27640650852757,38.4531927560371],[-121.27640870401937,38.45318989137345],[-121.27640970652726,38.45318853006773],[-121.2764128220883,38.45318429907758],[-121.27641496418295,38.45318138993484],[-121.27641691417242,38.453178670582375],[-121.2768791332284,38.4525310015826],[-121.27742642712744,38.45192994344521],[-121.27789418519926,38.451273216755474],[-121.27802444987945,38.45115260500492],[-121.27845479390116,38.45177652560964],[-121.27919306755595,38.451549081635676],[-121.27966356799878,38.45154143413357],[-121.27967117118901,38.45142510009702],[-121.27988050129898,38.45124515320729],[-121.28093995187743,38.452023503423874],[-121.28146816488074,38.4515671136981],[-121.28173075202234,38.45134022743665],[-121.28180081095387,38.451279693745434],[-121.28299573199135,38.45024720737042],[-121.28309674992951,38.450295466119385],[-121.28336081286228,38.450421613365684],[-121.28355516224553,38.450429948230095],[-121.28366371660438,38.45029341885556],[-121.28400310466739,38.450294962662596],[-121.28473186606122,38.450298273795816],[-121.28546062866806,38.45030158034046],[-121.28594647044942,38.45030378154983],[-121.28643231110614,38.4503059816105],[-121.28646622380396,38.450306135151784],[-121.2869181369094,38.450308178635886],[-121.28692170251387,38.44952832341737],[-121.28692173042967,38.44952231091651],[-121.28723869037721,38.449781498622464],[-121.2876870793278,38.45014815526469],[-121.28780040854588,38.45024082585113],[-121.28837595152343,38.45024294620609],[-121.28837707272497,38.44999908041469],[-121.28838026195149,38.44919041994801],[-121.2883815989913,38.448995975801346],[-121.28838164599811,38.448989989544934],[-121.28934040257965,38.448998340967584],[-121.289422147641,38.4489990526577],[-121.29068541094031,38.449010044216166],[-121.29068535152544,38.449016030396166],[-121.29068504971677,38.44904597658262],[-121.292974868388,38.449065030616374],[-121.29296535242686,38.45087426624705],[-121.29411048805862,38.45086535484948],[-121.29527058779873,38.450856315251976],[-121.29526682557915,38.4517219166434],[-121.2973561794506,38.45171617218534],[-121.2975598226344,38.451718573251775],[-121.29755976379312,38.451724559435625],[-121.29755044111927,38.452667622258225],[-121.29755017017676,38.45270054704078],[-121.29755016852084,38.452700715500725],[-121.29612466232902,38.45268896718819],[-121.29610402952021,38.454487534917384],[-121.29660303333347,38.454517850857165],[-121.29741415463927,38.45452540284921],[-121.29754763033165,38.454508703246916],[-121.29756258585832,38.45631672260795],[-121.2974244619213,38.45631688302723],[-121.293814887507,38.45630355756007],[-121.29304905685136,38.45629560702225],[-121.29305312375156,38.456956809464714],[-121.29305413795994,38.45712158392988],[-121.29307084432601,38.45983759355319],[-121.29213958533833,38.45983896770341],[-121.2918803151196,38.459839348887265],[-121.29188078745258,38.46069501064856],[-121.29189994450782,38.4628282949977],[-121.29435947051357,38.46283894485855],[-121.29636126011731,38.462847573816866],[-121.29750048592048,38.462852469291356],[-121.29760921268284,38.46286078329683],[-121.29763317233397,38.467094163385966],[-121.29765061294907,38.47071138204162],[-121.297655447268,38.471714155191506],[-121.2976819329689,38.47720627220803],[-121.29770842160525,38.4826983886825],[-121.29773491431509,38.48819050547273],[-121.29780914772155,38.50357505237722],[-121.27952664294905,38.50346069252715],[-121.27950849108983,38.510046227431125],[-121.27950669882055,38.51069633268779],[-121.2795765935905,38.510696214010565],[-121.27957671484754,38.51074056301903],[-121.28115033285452,38.510746838735756],[-121.28197764531265,38.51075012992862],[-121.2840171831313,38.51075821670268],[-121.29174905806676,38.510788548645685],[-121.29172263756577,38.51400101649934],[-121.2916952639222,38.51732920225838],[-121.29175313029022,38.51747485989275],[-121.29226642105215,38.517611995784854],[-121.29393708144697,38.518058327216686],[-121.29392896316322,38.51818710059329],[-121.29392769107183,38.518244767288486],[-121.29388211911358,38.52031057137492],[-121.29386958087396,38.5208788862026],[-121.29385753817773,38.52142479031343],[-121.29384068112356,38.52218888887548],[-121.29382432274001,38.522930362322704],[-121.2938012040699,38.523978194012095],[-121.29377091496264,38.525351061807655],[-121.28869386755447,38.52530931157666],[-121.2810043370124,38.52524565422914],[-121.27963983686433,38.525234305133374],[-121.27963983815583,38.52523497271658],[-121.27051635212693,38.52537015009754],[-121.27043643390499,38.52537133082175],[-121.27042776517489,38.526465212018174],[-121.27039613302485,38.53045693417407],[-121.26161998343684,38.52837242226377],[-121.2613600198591,38.528308713298564],[-121.26110151108414,38.52824144992859],[-121.26084453608047,38.52817065158713],[-121.26067262778602,38.52812106417744],[-121.26000313429411,38.52792443522955],[-121.25188875158491,38.525540856868574],[-121.25180537938506,38.52552268770651]]]},"properties":{"ZIP5":"95830","PO_NAME":"SACRAMENTO","Shape_STAr":358538541.676,"Shape_STLe":98857.2278861}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.38853210063644,38.40886413293233],[-121.3870102363474,38.40638747613476],[-121.38699428071475,38.40636169953305],[-121.38696712220985,38.40631934272981],[-121.38696553774732,38.40631692620926],[-121.38689329635038,38.40620693092125],[-121.3833478995768,38.400808166763404],[-121.38265120057339,38.39974715784383],[-121.38183060201207,38.39851731644727],[-121.38071024420196,38.39689881560975],[-121.3795542147839,38.395295938209294],[-121.379017363493,38.39457307060871],[-121.37680290598703,38.39161809400066],[-121.3768005987613,38.39161501938273],[-121.37676586212929,38.39156969581331],[-121.3767301254494,38.39152485602499],[-121.37669339890672,38.39148051358527],[-121.3765539438725,38.391317594765795],[-121.37645636904766,38.39120623713483],[-121.37626084178245,38.39098925562458],[-121.37606053356868,38.39077499389316],[-121.37511332427137,38.38978008129893],[-121.37274294890845,38.3872901760044],[-121.3726951370799,38.38723470897565],[-121.37262461426398,38.38712321215035],[-121.37257595277124,38.38703949357329],[-121.37247469164922,38.38691535662764],[-121.36986684486567,38.38425965805303],[-121.36618274535594,38.38050752444114],[-121.36444551046718,38.378738030744294],[-121.36210021489822,38.37634900533097],[-121.36184138462022,38.37608697621905],[-121.35940653349778,38.37363722991495],[-121.35940272605113,38.373639788971154],[-121.35433023155869,38.36887407020764],[-121.35292278683723,38.367497964745624],[-121.35160951296679,38.366291715407556],[-121.34953016255999,38.36455635235965],[-121.34803665422298,38.36333501718771],[-121.34705766214508,38.36275075131119],[-121.34687784575819,38.36238734307187],[-121.34631525881137,38.361461476952066],[-121.34590487548357,38.36035335681154],[-121.34568600560333,38.35954382441193],[-121.34561830857831,38.359293426565465],[-121.3452937181983,38.357696558096315],[-121.34481771171198,38.35643800022639],[-121.34485952577845,38.356398546523366],[-121.34508832573643,38.35618265997851],[-121.34676799386662,38.354797956853666],[-121.34736101570591,38.35417068381446],[-121.34987665638748,38.349687577120406],[-121.35291232444031,38.34659246301793],[-121.3539397943279,38.34652747945145],[-121.35787242581446,38.3484286751173],[-121.36020051387419,38.349666995882444],[-121.36289457863028,38.348424613087765],[-121.36474857540036,38.34697032580151],[-121.36892587206691,38.34448122810972],[-121.3672372172411,38.34114588645902],[-121.35961633420608,38.33879044661338],[-121.3549360971565,38.33914219417638],[-121.354579590048,38.339168979823924],[-121.35449737424852,38.33911969285895],[-121.35449786494829,38.33910637668023],[-121.35450072826006,38.339028726003114],[-121.3545268595335,38.3389209045817],[-121.35457636621615,38.338818295897774],[-121.35464774342334,38.33872401583008],[-121.35473882283938,38.33864093059163],[-121.3561463441569,38.33771475985128],[-121.3561944852024,38.33768058703214],[-121.35626610287952,38.3376152920184],[-121.35629293165147,38.337590831784645],[-121.35637009260282,38.33748897573622],[-121.35642362518593,38.33737811396981],[-121.3564519035774,38.33726161492765],[-121.35645406680433,38.33714301797017],[-121.35643677425946,38.33705870979646],[-121.35643657039779,38.3370577212719],[-121.35641225374579,38.33698562346652],[-121.35639804767143,38.33694350638196],[-121.3563737416174,38.336896187909495],[-121.35637093002379,38.336893019072],[-121.35604553910342,38.33652623765867],[-121.35515837792516,38.336401833256325],[-121.35425727006873,38.33640065029772],[-121.35376463772295,38.33645283448594],[-121.3527528302617,38.33685985499271],[-121.35156353543593,38.33729864775542],[-121.35026021043562,38.337845545805216],[-121.34826774590809,38.338583710975165],[-121.34678284099836,38.339271081355186],[-121.34616843622368,38.33965744866827],[-121.3456157832323,38.339963362895155],[-121.34529777785596,38.340043641922726],[-121.34501054174609,38.340190293922916],[-121.34480023114033,38.34031266760828],[-121.34450985865769,38.34042085637515],[-121.34438733386119,38.340475079249565],[-121.3435996328964,38.3408275752432],[-121.3432458721172,38.34100404988182],[-121.34299000644283,38.341150874553755],[-121.34281119187293,38.34125969424004],[-121.34254893174142,38.34134332467864],[-121.34228361242303,38.34138025593811],[-121.34188553364802,38.34144663581844],[-121.34166162088998,38.3415304829602],[-121.34082159879058,38.34188266162505],[-121.34047507710932,38.34202896284645],[-121.34015702875135,38.34211226900113],[-121.33994670305609,38.34223463384603],[-121.33982730745429,38.342278399532844],[-121.33790316403216,38.33718848414555],[-121.3376386728277,38.336488768584665],[-121.3529243844417,38.33629170081284],[-121.35293727590927,38.33598048291647],[-121.35728941203679,38.33592400208031],[-121.35740376739417,38.335922515612396],[-121.35739503644278,38.3336481275442],[-121.35739232985851,38.33294286844489],[-121.36681342156069,38.33299995375665],[-121.36689447968237,38.3226487805298],[-121.36689224788776,38.321942791887615],[-121.37443482643218,38.32203654108168],[-121.37454846824477,38.3220379500853],[-121.37452290273546,38.313740996087525],[-121.37450155483336,38.30681133969469],[-121.37449938061836,38.30610541386704],[-121.3784552139247,38.306152303272626],[-121.37856186674203,38.30615356538599],[-121.37861591750047,38.298118569962696],[-121.37860895415936,38.29811858829654],[-121.3744847648272,38.29812922993283],[-121.37448464873702,38.298111501439585],[-121.37447792204087,38.29811151900579],[-121.37443128591283,38.29096510807493],[-121.3744311619452,38.290946190362995],[-121.3737628948531,38.29106617950685],[-121.35407592679462,38.29097528918782],[-121.35406033695698,38.288325203423824],[-121.35405360360478,38.28832517200863],[-121.35405350015772,38.28830749129709],[-121.35148132610483,38.288295367137586],[-121.35136109741819,38.28829479895335],[-121.3513849988262,38.29025752320062],[-121.35139358645563,38.29096264552164],[-121.34815780301652,38.29094730938393],[-121.34814335338862,38.2884561069598],[-121.34813662002671,38.288456075199065],[-121.34813651804006,38.288438394482085],[-121.34608661486222,38.28842863121969],[-121.34326560320048,38.288415135722566],[-121.3432588698446,38.288415103677],[-121.34324472749067,38.2859476711776],[-121.34322902235353,38.28320726233212],[-121.34334477208749,38.28320699281586],[-121.34613434277753,38.28320045342276],[-121.35117698566194,38.283188462328795],[-121.35142082051578,38.28318580725197],[-121.36434450977944,38.28364448834242],[-121.36434426339348,38.283661949078976],[-121.36431405324106,38.28580688974559],[-121.36432113956134,38.285807047733655],[-121.37444685929817,38.28603286593016],[-121.37444766088935,38.28532582749875],[-121.37444916187667,38.28400210472658],[-121.37455977021423,38.2840026291199],[-121.37913132811516,38.2840242017278],[-121.37924183747087,38.28347628688736],[-121.41105947636113,38.283410618576234],[-121.41108979469149,38.29052174470526],[-121.41182559364704,38.29051598691116],[-121.41189418495296,38.282043038216386],[-121.41981385480695,38.2820244657985],[-121.41972353720584,38.27595493975887],[-121.43927610352674,38.27579882738711],[-121.43993077450536,38.28153659754233],[-121.44074154270108,38.28173821338172],[-121.44555215974368,38.2797666320937],[-121.44719309015977,38.28043879900124],[-121.44719309180587,38.28043888189116],[-121.44746568136145,38.28045991634634],[-121.44780700709372,38.28031719186097],[-121.44805717825331,38.28022980512243],[-121.4482173340915,38.28005012312632],[-121.44849737010699,38.27976602451836],[-121.44858920424474,38.27962210489522],[-121.44884060776126,38.279373958248634],[-121.44913724617228,38.27914243335269],[-121.44959236726228,38.27894775326388],[-121.44995580693164,38.27887730749584],[-121.45040956491647,38.27885978613237],[-121.45075032260819,38.27878923063658],[-121.4521863590996,38.27859920944476],[-121.45248228024803,38.27845953651046],[-121.45280078057048,38.278333094181825],[-121.45314248511353,38.278137861780856],[-121.45343812829098,38.278034274803595],[-121.45362079487246,38.2778743775129],[-121.45385504120593,38.277642543989835],[-121.45401612575544,38.27733818412798],[-121.45408924621023,38.277025412138585],[-121.45561787100065,38.27705744209063],[-121.45594176476617,38.27706422688518],[-121.45603674990782,38.276602690946234],[-121.456081353169,38.276770917583484],[-121.45635124388473,38.277698594969095],[-121.45775250458743,38.284480415589435],[-121.46069631233185,38.298821764939],[-121.46111411464854,38.298825032481794],[-121.46224335030026,38.298838604674366],[-121.46512298866678,38.298867782454465],[-121.46603126389488,38.29886906916336],[-121.46732723459007,38.298852412446955],[-121.46862863198695,38.298831814863604],[-121.47042334150692,38.29882419868887],[-121.47182933340814,38.29880258402357],[-121.47225300090705,38.29880299215528],[-121.47361475997076,38.29883663919507],[-121.4758169229456,38.298891015595736],[-121.47576914559782,38.30272423202305],[-121.47575950996291,38.303513548519206],[-121.47574862850344,38.30440492050652],[-121.4757399314472,38.30511735205097],[-121.47838746818229,38.30897538840567],[-121.48447428558855,38.31200783612983],[-121.48573348063341,38.316699344358184],[-121.48651467979228,38.32046998399607],[-121.47566837856391,38.32039742210967],[-121.47103021826933,38.320474087077265],[-121.46732429718364,38.32053508698975],[-121.46522391719466,38.32058200350996],[-121.46624730759979,38.32543914078477],[-121.4673105323838,38.33058306031445],[-121.46834957811012,38.33571759463476],[-121.46937805548552,38.34065161385033],[-121.47150661670754,38.350796613881656],[-121.47260693146679,38.35597875768794],[-121.4736471442542,38.361055929059646],[-121.47460702626171,38.365694063207506],[-121.47565619498235,38.370778123068156],[-121.47661986249426,38.37541076847214],[-121.47743975660504,38.379208332913066],[-121.47799479441875,38.38178481214404],[-121.47932831133461,38.38836975015594],[-121.48103075910787,38.39655789633007],[-121.4827230984301,38.40475009263432],[-121.4835579314716,38.408744705014186],[-121.48332233941053,38.408748799040474],[-121.48222122688314,38.40875897052914],[-121.48109743346764,38.408768686381464],[-121.47946236470027,38.40878055026848],[-121.47897567759426,38.40876085134946],[-121.47861297138444,38.40872866515994],[-121.478252120544,38.40868138358949],[-121.47801336052578,38.408641520277364],[-121.47777638618089,38.40859548349641],[-121.4774262564743,38.40851392367371],[-121.47727648587633,38.408474116399496],[-121.47708146499143,38.40841831585883],[-121.47674375815315,38.40830832026512],[-121.47641487452627,38.4081849808663],[-121.47619916485915,38.408095102332304],[-121.47609307197705,38.408047940287005],[-121.47588441014365,38.40794916975508],[-121.47558021285941,38.407790927560484],[-121.47528483767216,38.407620022904545],[-121.47500350718724,38.40743717058237],[-121.47482298133596,38.407309007246994],[-121.47456098466458,38.40710770491051],[-121.4743147697889,38.406895833323034],[-121.47407391560408,38.40666716768547],[-121.47400119086808,38.406590979224],[-121.47378829579831,38.40635694755314],[-121.47357715056616,38.40612258202153],[-121.47335023087984,38.405897409886194],[-121.47310754087512,38.405682121158996],[-121.47285256329126,38.40547672803327],[-121.47258180786588,38.40528224511364],[-121.47239601747602,38.40515885928827],[-121.47200688111474,38.40492813792475],[-121.47170271261675,38.40476919998523],[-121.47149406527646,38.4046704206264],[-121.4711740352518,38.404533032013134],[-121.47084343894403,38.404408980514496],[-121.47043264163374,38.404277009022174],[-121.47008786213976,38.40418378115062],[-121.469854461641,38.40412950753372],[-121.46961752251286,38.404081738781855],[-121.46926027969141,38.40402243300697],[-121.46877913226412,38.40396633101345],[-121.4684146503971,38.40394199995909],[-121.46780577496881,38.40393404711588],[-121.46744099823201,38.40394952765218],[-121.46707785352342,38.40398011719849],[-121.466716343168,38.40402547344133],[-121.4664787600285,38.40406419215176],[-121.46635995272271,38.404085953942754],[-121.46612404588416,38.404133947194886],[-121.46577445500444,38.404218484241326],[-121.46543173477347,38.404317124943525],[-121.46509588959628,38.404429869384],[-121.46476691957916,38.404556375283455],[-121.46455336658747,38.40464806152858],[-121.46423993052035,38.404796603621485],[-121.46403673776328,38.40490275312997],[-121.46393687362573,38.40495755154974],[-121.46383873664601,38.405014074110746],[-121.46364593258266,38.405130910758395],[-121.46345831638854,38.405253263957384],[-121.46336711217982,38.405316339921896],[-121.46318642228182,38.405445932042475],[-121.46292840125656,38.40564964774554],[-121.46260693967012,38.40593681868266],[-121.46238189323151,38.40616368561056],[-121.46222705001944,38.40633595854133],[-121.46204054930335,38.40654137826278],[-121.46189109753385,38.40669273992106],[-121.4616503739443,38.406915754044476],[-121.46139928484095,38.407124647324565],[-121.46122379165175,38.40725803631441],[-121.46095189683201,38.40744898390421],[-121.46076253921306,38.40756960844659],[-121.4604681042928,38.40774122722879],[-121.4602666297501,38.407848750272855],[-121.46005120748109,38.407954834795305],[-121.4598074025429,38.40806501588357],[-121.45934427962293,38.40825100931935],[-121.4589699377265,38.408371090078276],[-121.45848622012015,38.408501406367805],[-121.45794798877746,38.40861354956306],[-121.45757410472939,38.40867271019423],[-121.45690424257437,38.408726896254365],[-121.45615731690197,38.408734131985376],[-121.45560679360135,38.40869858626786],[-121.45477886073994,38.40865996022841],[-121.45461674105141,38.408660419116146],[-121.44988488699147,38.40867373811659],[-121.45011441216103,38.40721586693012],[-121.4499893507255,38.40721819123165],[-121.44987775326862,38.40720702372289],[-121.44963768628595,38.40710724879602],[-121.44934300315337,38.4069847734166],[-121.44903829382653,38.40685813054678],[-121.44884631187223,38.40679899041201],[-121.44865438065813,38.40679938963113],[-121.44846244944189,38.40679978853135],[-121.44827051707163,38.406800188008006],[-121.4480785858511,38.406800586270315],[-121.44788665462845,38.406800984213625],[-121.4476947234036,38.40680138183802],[-121.44750279103181,38.406801779138],[-121.44734296952078,38.406811910829106],[-121.44734851015113,38.40847076058657],[-121.44734492360018,38.40854223778065],[-121.44733118233994,38.40856839986738],[-121.44733328875472,38.40868783747688],[-121.44470634027842,38.408702294792995],[-121.44086813924511,38.408723310511874],[-121.43582364139358,38.40875073854561],[-121.43526271380676,38.40875377371713],[-121.43423037617058,38.40879364372247],[-121.43348880036504,38.40882253470015],[-121.43059898517895,38.40884007880626],[-121.42692507926942,38.408862278028096],[-121.42624287615226,38.40888742159545],[-121.42595922767177,38.408906650849076],[-121.4255926489242,38.408925395821036],[-121.42118419329503,38.40894916952486],[-121.4176117644397,38.40896436394439],[-121.41750603924305,38.40896528843357],[-121.4139853206554,38.40900150532935],[-121.41387925380445,38.409002888729084],[-121.40917282636056,38.4090686725304],[-121.4090642175871,38.40906976373131],[-121.40896345759167,38.409070016617626],[-121.40780790264186,38.40906873077181],[-121.40536225179335,38.40906596962138],[-121.40525447577589,38.40906562999656],[-121.40515287199038,38.40906490944815],[-121.40267598553868,38.40904263954944],[-121.4015663925206,38.40903250462844],[-121.40146295631563,38.40903116413187],[-121.40009475722852,38.409011656586465],[-121.40009557999247,38.40886336536842],[-121.40010144987228,38.40732301486035],[-121.40010335388962,38.40682338065044],[-121.39997152205694,38.40681740661998],[-121.39961703714569,38.406781994122404],[-121.39931412147968,38.406755682996256],[-121.39923121519688,38.40674462473757],[-121.39922774880145,38.40765149047085],[-121.39922316272138,38.408850918884724],[-121.399222974109,38.40890035033779],[-121.39922468733542,38.40899924303697],[-121.39819088142058,38.40898448429151],[-121.39733914883588,38.408972319649784],[-121.39463709523282,38.4089420274011],[-121.39461153413177,38.40884314743913],[-121.39461445901827,38.40804408500721],[-121.3936979876296,38.408037880222736],[-121.39341784299066,38.408035981302994],[-121.39341067353101,38.40869757727504],[-121.39325845538008,38.40869655609477],[-121.39325696455619,38.40883406544434],[-121.393262383578,38.40893284801297],[-121.39252956230342,38.408927947292256],[-121.39253367942017,38.40844277860533],[-121.39251167060179,38.40825887716506],[-121.39241116684367,38.407981825821274],[-121.39236477077101,38.4078939042114],[-121.39224666081576,38.4079236332204],[-121.3920342972963,38.407949493019444],[-121.39187780166309,38.4079528285777],[-121.39186754404757,38.40800816468721],[-121.39024660689401,38.407993036333025],[-121.39024333036576,38.40825388317287],[-121.39023698455485,38.40875918695123],[-121.39015197150775,38.40875849034303],[-121.39015145677311,38.40863291006046],[-121.38987746986992,38.40832920243353],[-121.38921406266958,38.40832621938693],[-121.38947479005616,38.40875294058519],[-121.38945321638775,38.408907188819896],[-121.38860454168521,38.40900468141244],[-121.38857194802814,38.40893759349836],[-121.38856940251995,38.408932267405625],[-121.38856254907823,38.40891844012127],[-121.38855539026105,38.40890470851723],[-121.38854792717493,38.408891077103775],[-121.38854016321625,38.408877550403375],[-121.38853210063644,38.40886413293233]]]},"properties":{"ZIP5":"95757","PO_NAME":"ELK GROVE","Shape_STAr":1426412739.55,"Shape_STLe":228061.332389}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.16636853204923,38.44812802671549],[-121.16439559478377,38.44699845584591],[-121.16234660994432,38.45039692413347],[-121.15928949806327,38.448638273997226],[-121.15935174308869,38.45298552462499],[-121.15100639332913,38.452890374246635],[-121.15094777183235,38.445730074111374],[-121.15924809398247,38.44574632350739],[-121.15922509382719,38.44413974698719],[-121.1593296385371,38.44409771389753],[-121.15929935935218,38.43775668643356],[-121.15331234732793,38.43768678411947],[-121.15734553725338,38.433098683118594],[-121.1573931735069,38.43304522666897],[-121.16689231733149,38.42252776829519],[-121.15055989495032,38.42231705308706],[-121.15039117702386,38.41424494049452],[-121.15926974694113,38.4141985593228],[-121.15906418545421,38.40677451835785],[-121.15031959621882,38.406822855575236],[-121.15023611687535,38.40682465854755],[-121.15021312304734,38.393934723423556],[-121.16833395541587,38.3939122281985],[-121.16852732743688,38.3939119730042],[-121.16851353294854,38.393820625946375],[-121.1685017655832,38.393729103390434],[-121.16849203072117,38.39363743420529],[-121.16848432920612,38.393545643623234],[-121.16847866525274,38.39345376230631],[-121.16847503968363,38.393361817288344],[-121.1684734533213,38.39326983560309],[-121.16847337459528,38.39324628142392],[-121.168469466296,38.38508337472434],[-121.1684687436935,38.38461828673251],[-121.16845479596932,38.37931566004129],[-121.15018695126487,38.379256506784344],[-121.15013382260445,38.34944235868996],[-121.1683978566221,38.34910060067768],[-121.16839275905882,38.351159653325404],[-121.16839286849448,38.35146606222628],[-121.16839325611598,38.351587370766104],[-121.18682659319893,38.35123871174901],[-121.18683470025243,38.35045850339729],[-121.18927272167787,38.35045424411797],[-121.19844431301564,38.35043775696416],[-121.1989948359152,38.35043742899209],[-121.2037981000114,38.35044042430667],[-121.20509381848585,38.35044499006066],[-121.20543685751784,38.35044720022819],[-121.20539602748639,38.3431244902647],[-121.2137789647021,38.34315375973568],[-121.2137794816393,38.343069318934916],[-121.2137983907704,38.33998493832919],[-121.21753904184058,38.340010365695846],[-121.21754724923522,38.339259609458004],[-121.21989714786271,38.33926019473835],[-121.21987739493885,38.34107247311888],[-121.22216110812582,38.34107299592844],[-121.2221385798331,38.343145863408154],[-121.22361823745108,38.34314233744762],[-121.2236292296986,38.34130805191007],[-121.22814781840302,38.341297167002125],[-121.22816991232153,38.33757093239588],[-121.23285561088164,38.337559456322495],[-121.23286771491574,38.33549521213909],[-121.2367639140367,38.335495639021794],[-121.23977070270071,38.335451482374616],[-121.23973376605822,38.341856070455805],[-121.2411702411868,38.34185242877698],[-121.24116307480381,38.343099084443296],[-121.24202776469869,38.343096883826334],[-121.2420300482105,38.34269872271915],[-121.2444706906015,38.34269247665512],[-121.2444767178195,38.34163529036838],[-121.24661050439144,38.34162978608559],[-121.24660224948458,38.34308513367261],[-121.24446841952356,38.34309063780282],[-121.24446341387026,38.34396867682211],[-121.24660783477752,38.343944541579816],[-121.24657018046143,38.35058258156973],[-121.2602870004777,38.35039846221939],[-121.26062462583971,38.350397663694736],[-121.26064420035934,38.349675681840026],[-121.26073043690803,38.34967547755394],[-121.26078148733242,38.347792394429526],[-121.26078483807629,38.347668795000345],[-121.2608733013727,38.344405431810266],[-121.2608766503951,38.34428185761664],[-121.26090222284164,38.3433384485565],[-121.26191164896352,38.34333798807399],[-121.26213526223351,38.34333788485074],[-121.26229216033269,38.343337811451235],[-121.29005596364499,38.34332159616167],[-121.29008147924664,38.33630209873031],[-121.29760032161798,38.33636247812544],[-121.29759845248515,38.335813152368615],[-121.29955440069206,38.335805556710916],[-121.29954865051364,38.33639315789072],[-121.30664035544493,38.336342630326556],[-121.30672783379518,38.341077369684335],[-121.31597596520855,38.34101375217778],[-121.31596621550142,38.34029231163185],[-121.31608120389365,38.34029151577387],[-121.31602276817902,38.33596752488404],[-121.33218224703471,38.33588363431986],[-121.33340281095796,38.33850313911215],[-121.33368694043003,38.33911289409659],[-121.33378926555561,38.33933855568235],[-121.33388657647603,38.33956558823235],[-121.33393165743672,38.339675435186045],[-121.33487508492686,38.34200756676682],[-121.33528470938658,38.342909931790174],[-121.33539953483415,38.34313183240258],[-121.33551645779946,38.34334707919818],[-121.34178622842444,38.35462056307901],[-121.3430856885913,38.35714858684435],[-121.34309272559226,38.3571636071111],[-121.34312016226883,38.35721916879998],[-121.34314882675947,38.35727434467647],[-121.34317587579595,38.357324032961564],[-121.34444632074978,38.359607728666305],[-121.34460750297265,38.359897450996655],[-121.34504324353927,38.360525268233935],[-121.34631525881137,38.361461476952066],[-121.34687784575819,38.36238734307187],[-121.34705766214508,38.36275075131119],[-121.34573822318606,38.36428259219996],[-121.34292031603638,38.36355205970226],[-121.34143412135,38.36070881284775],[-121.33958351263556,38.36248030915409],[-121.32946526026358,38.358567370180886],[-121.32920790645183,38.358608472162736],[-121.32885492367795,38.35868879873953],[-121.32847737513856,38.35856890674855],[-121.32654930794365,38.35780489229093],[-121.3265595164005,38.357814945587364],[-121.32719722319344,38.35844299409462],[-121.32719352898212,38.35844539779312],[-121.3268173712036,38.35869011336461],[-121.32361482435215,38.35889985328788],[-121.3220438462126,38.361795353123846],[-121.32080618605282,38.36307369836274],[-121.31925896468061,38.36513778547956],[-121.31879631426463,38.36647508644196],[-121.317731515467,38.36804498156122],[-121.3171559716311,38.368415029619456],[-121.31650550110253,38.3689603726173],[-121.31583731484851,38.369898280156654],[-121.31399238693213,38.37060402803572],[-121.31299885268875,38.371273626495245],[-121.31173250459204,38.37201847805535],[-121.31070593886066,38.37300247898596],[-121.31070957506738,38.373004925036035],[-121.31884794339308,38.378478003647],[-121.319464637089,38.37889267511166],[-121.31946085689864,38.37889615825151],[-121.31925066991435,38.379089848874656],[-121.31818734351735,38.37913140933556],[-121.31626843254041,38.380571001810665],[-121.31485856961605,38.38096184575246],[-121.31099577357281,38.37843140757786],[-121.31058466998459,38.3781620832885],[-121.31036234866107,38.37842762544874],[-121.30811283212185,38.38111432803322],[-121.30801147216955,38.38226737360575],[-121.30750208916233,38.382546687817836],[-121.30741121502858,38.38258775648406],[-121.30731266243691,38.38261577983051],[-121.30720942351778,38.38262990641709],[-121.30710463740311,38.382629707319964],[-121.30700148708321,38.38261518902752],[-121.3069031067031,38.382586791983286],[-121.3068124855218,38.382545379197325],[-121.30673237659967,38.38249220956942],[-121.30670103176956,38.38246543108894],[-121.30646114403568,38.38224396729113],[-121.30640541260071,38.382200786274446],[-121.30634100321913,38.38216587746913],[-121.30626987074851,38.38214030396505],[-121.30619417655501,38.38212484090557],[-121.3061162222946,38.38211995887474],[-121.30603837454848,38.382125806328446],[-121.30596299962782,38.38214220559895],[-121.30589238799152,38.382168657845895],[-121.30582868426278,38.38220436065245],[-121.30579802227807,38.38222697283124],[-121.30568808881219,38.382316014136464],[-121.30532901161456,38.38256014492063],[-121.30527566563906,38.38259641425543],[-121.30523522892798,38.38261831250941],[-121.30515961599193,38.382659259535416],[-121.30338394897865,38.38357513384365],[-121.30336021185069,38.3835750167453],[-121.3032016400526,38.38357423460828],[-121.30319237925151,38.38357824270755],[-121.30309196390513,38.383618344101514],[-121.30299152200635,38.38366115878015],[-121.30284027070824,38.38373470822597],[-121.3027443236735,38.38376150648262],[-121.30264837543112,38.38378830375177],[-121.30256982466844,38.38381520693706],[-121.30248264238065,38.383835212831464],[-121.30240395687176,38.38387580347093],[-121.30232560618423,38.38388217422855],[-121.30226451839256,38.38390233854154],[-121.30215980592845,38.38393592753275],[-121.3020813872339,38.3839491419045],[-121.30195934495494,38.383975780864745],[-121.30185449864669,38.384023057152554],[-121.30177581257473,38.38406364736424],[-121.3017232222853,38.38410439535367],[-121.30165276772,38.3841929455024],[-121.30158258027183,38.384254120462316],[-121.30151239156793,38.384315294471925],[-121.30141604222355,38.38438315434453],[-121.3012849664019,38.38444396069596],[-121.30120634640284,38.38447770673379],[-121.30110169947744,38.384504450078914],[-121.30100575075888,38.38453124689159],[-121.30089233734066,38.3845647820657],[-121.30075296386906,38.384584470624446],[-121.3006745442037,38.38459768404102],[-121.30052627152243,38.384637851898795],[-121.30041279191971,38.384678230394975],[-121.30032547293635,38.38471192312712],[-121.30026418302388,38.38475261774025],[-121.30018529552025,38.38481373823386],[-121.30014133514452,38.384861382012524],[-121.30011463630724,38.3849228196982],[-121.30009670389147,38.384977465428065],[-121.30006980521203,38.385059434468246],[-121.30006974663563,38.38506542064136],[-121.30006913551884,38.38512787322805],[-121.30005086815657,38.38521673878171],[-121.30003266772108,38.38529876054683],[-121.29999680254836,38.38540805198006],[-121.29998723343517,38.38549697026153],[-121.29997773127593,38.385579044756525],[-121.29995076525361,38.385667857556975],[-121.29993256458856,38.3857498793078],[-121.29991402896172,38.38586611998611],[-121.29991397037163,38.38587210615937],[-121.29991302417336,38.385968779479136],[-121.29991296558309,38.38597476565239],[-121.29991235432165,38.38603721824053],[-121.29991229573127,38.38604320441379],[-121.29991121555936,38.38615356530638],[-121.2998934819396,38.38621147530161],[-121.2998934233475,38.38621746147491],[-121.29989271585931,38.38628974327905],[-121.29988325382595,38.38633238079889],[-121.29988354129505,38.38633680689753],[-121.29989111404404,38.38645339507866],[-121.29989087635371,38.38645662969622],[-121.29988067695696,38.386595646307306],[-121.29986168543762,38.38668803540163],[-121.29985159650116,38.38679471011114],[-121.29983267340269,38.38687998335037],[-121.29982265518866,38.386979543121804],[-121.29980359269771,38.38707904714428],[-121.29979364407534,38.38717149106984],[-121.29979393425471,38.38717423699319],[-121.29980192101036,38.3872498138911],[-121.29980186240975,38.387255800064615],[-121.29980108515929,38.387335197715366],[-121.29982751922513,38.387406515279885],[-121.29984456193885,38.38751335361907],[-121.299861395751,38.387641538588255],[-121.29987878679675,38.387712801305085],[-121.29988685495111,38.38781246985333],[-121.29990403713215,38.3879050782983],[-121.29991238391317,38.3879762861703],[-121.29994633062475,38.38820419451542],[-121.29995467748276,38.38827540238519],[-121.29997199914092,38.38835378003347],[-121.29997194055366,38.388359766207316],[-121.29997144203679,38.38841070228593],[-121.29994361463648,38.38848169083302],[-121.29989360897146,38.38853556279533],[-121.29984776447972,38.3885993267066],[-121.29980198842239,38.388655974748275],[-121.29975614263606,38.38871973771561],[-121.29966500816124,38.388790342245066],[-121.29955550811461,38.38888929765872],[-121.29950994069266,38.38892459985344],[-121.29941887540407,38.3889880892456],[-121.2993550805963,38.38903751151586],[-121.29925504137357,38.38909383005812],[-121.29914609805387,38.38913586373478],[-121.29898240274954,38.38922737427413],[-121.2989277914495,38.38926262043304],[-121.29885474340492,38.38933333414923],[-121.29880896609136,38.389389981798864],[-121.29872631513739,38.38951756275719],[-121.29866217166634,38.38960256207176],[-121.2986162544775,38.389673440433015],[-121.29853353307311,38.38980813619812],[-121.29846924954104,38.38990736529302],[-121.29841407910423,38.38999953435951],[-121.29835904698301,38.39007747260569],[-121.2983130593787,38.39015546669183],[-121.29824884503651,38.39024758072214],[-121.29817558586896,38.39033963884106],[-121.29812069401244,38.39040334709521],[-121.29801118821526,38.39050230104351],[-121.29792895475589,38.390587189982796],[-121.29786508763705,38.39064372727691],[-121.29779203713126,38.39071444032456],[-121.29770054885226,38.39082061892524],[-121.29761394624018,38.39091696223736],[-121.29757707078342,38.39098789430028],[-121.29753101186093,38.39107300302067],[-121.29750318100261,38.391143990986905],[-121.2974660967857,38.391236269652765],[-121.29745600363476,38.391342944171804],[-121.29745639187266,38.3913442069037],[-121.29747353296516,38.39139997647412],[-121.29749989632886,38.391478409525845],[-121.29749931592286,38.391482842964635],[-121.29748034018134,38.39162772048664],[-121.29747003847167,38.39175574074581],[-121.29744178793112,38.39186942015986],[-121.29742300040044,38.39194046313459],[-121.29740372355882,38.39206131251048],[-121.29738500698028,38.39212524054325],[-121.29736593972659,38.39222474418316],[-121.29734722193572,38.3922886713024],[-121.29731925060821,38.39237389001493],[-121.2973004628233,38.39244493297106],[-121.29727249138787,38.39253015077191],[-121.29724451987694,38.39261536946714],[-121.29722552220925,38.39270775814239],[-121.29719748065791,38.392800091770084],[-121.29716053503421,38.39287813955618],[-121.29710500983518,38.39300588451894],[-121.29704079137802,38.3930979978874],[-121.29698561549453,38.39319016627563],[-121.29697208693791,38.39326751962919],[-121.29694411364483,38.3933527373462],[-121.29692539631753,38.393416665307605],[-121.2968885188802,38.39348759805821],[-121.29686047658801,38.39357993160677],[-121.29680467162419,38.39373613710955],[-121.29677690897539,38.39380000906373],[-121.29675763053203,38.39392085924113],[-121.29674767702093,38.39401330292854],[-121.29674761815915,38.39401928910205],[-121.29674676748348,38.3941058016962],[-121.29674670862154,38.394111787869726],[-121.2967453681878,38.39424810777038],[-121.2967533627521,38.394354891505984],[-121.29676142729141,38.39445456119882],[-121.29676096419604,38.39445555568338],[-121.29671522523645,38.3945538994919],[-121.29668711233487,38.39465334794553],[-121.29661384663541,38.39474540598983],[-121.29656806408293,38.394802052762664],[-121.29652193266384,38.394894276043246],[-121.2965028634623,38.39499378045181],[-121.29649311830757,38.39506487748193],[-121.29647426014175,38.3951430361621],[-121.29646182881032,38.39520790416432],[-121.29645519081643,38.39524253966286],[-121.29644186117292,38.39527653438571],[-121.29642735726785,38.39531352738095],[-121.29639952366395,38.3953845150925],[-121.29633509099864,38.39549797380113],[-121.2963250749517,38.39559669550782],[-121.29630621532615,38.395674853254256],[-121.29629597979478,38.395795758477625],[-121.29628588540866,38.39590243201872],[-121.29628582650668,38.39590841819243],[-121.29628462518758,38.39603050730885],[-121.29630187468587,38.39611600137517],[-121.29631021883866,38.39618720952978],[-121.29635439236246,38.396294213767455],[-121.29635433346589,38.39630019994132],[-121.29635334227355,38.396400943328146],[-121.29635328337677,38.39640692950199],[-121.2963525722099,38.396479211312574],[-121.29638777165503,38.39657904638406],[-121.29643229552916,38.396650474072764],[-121.29644947421554,38.39674308305589],[-121.29647576842618,38.396828632201846],[-121.2965112481822,38.39690000565957],[-121.29653774520264,38.39695982880075],[-121.29659254221592,38.397075071598515],[-121.29661747565493,38.39713547078673],[-121.2966171070567,38.397140706419876],[-121.2966069616642,38.39728483672836],[-121.29660714224876,38.39728742703756],[-121.29661488636614,38.397398737231306],[-121.29661450447679,38.39740008626699],[-121.29658677220682,38.39749818567095],[-121.29653159348818,38.397590353864224],[-121.29646715904502,38.397703812655685],[-121.29640279554113,38.39781015647457],[-121.29633829069016,38.397930730139215],[-121.29627413569044,38.39801572814703],[-121.29621895616958,38.398107896192656],[-121.29613608157835,38.39825682107875],[-121.29608097173394,38.398341873214314],[-121.29605285530782,38.39844132242122],[-121.2960245298363,38.39856211646082],[-121.29598764999697,38.39863304894414],[-121.29595034865304,38.398746672875085],[-121.29588584333041,38.39886724719888],[-121.29582797486401,38.39895218330017],[-121.29578319311018,38.399028117126235],[-121.29572107110475,38.39907623325349],[-121.29564113241682,38.39914502462545],[-121.2955703401458,38.39917923272481],[-121.29548166290256,38.399241042699835],[-121.2953842472137,38.3992958713066],[-121.29528689964044,38.39934377226508],[-121.2951985633076,38.399370945092684],[-121.29508360238388,38.39941873838162],[-121.2949863910217,38.39945278485556],[-121.29489784954032,38.39950073925068],[-121.2948089663826,38.399583331407996],[-121.29472015133982,38.3996589959312],[-121.29465775476599,38.399734821751444],[-121.29457795098737,38.39978975725717],[-121.29448913544383,38.39986542160321],[-121.2944004552705,38.399927230742485],[-121.29428576750549,38.39994731388255],[-121.2941534652737,38.3999672892467],[-121.29405645788648,38.39998055134054],[-121.29391548683816,38.399986617471846],[-121.29380120929025,38.399965135638155],[-121.29368699909577,38.39993672521814],[-121.29353770051355,38.399894244967115],[-121.29341475351282,38.39985885284411],[-121.29325637480558,38.39984402770476],[-121.29311574632875,38.399815455934956],[-121.29298385609034,38.39979386457571],[-121.29284302232342,38.39978607426792],[-121.29274608344168,38.39979240859686],[-121.29256060106586,38.39984669544817],[-121.29242829853838,38.39986666883584],[-121.29233108531217,38.39990071217428],[-121.29226015473695,38.39994877338162],[-121.29216266704599,38.40001052683676],[-121.29206531634226,38.40005842508072],[-121.29197656639312,38.400127159930655],[-121.29190556562591,38.400182147577176],[-121.29182899201851,38.40023536946061],[-121.29177838682168,38.40028289915573],[-121.29172970561268,38.40032862079451],[-121.2916909670278,38.400410194683865],[-121.29165663980427,38.400483984744135],[-121.29162241835319,38.40054720508589],[-121.29160188443936,38.40058408393782],[-121.29157469907705,38.40061563815558],[-121.29156750572916,38.40066316919666],[-121.29154686714197,38.40071060784518],[-121.29153281167078,38.40077396268424],[-121.29149846694676,38.40084775169224],[-121.29149840763998,38.40085373786457],[-121.29149810034224,38.40088475515566],[-121.29149097644279,38.40092700189046],[-121.29147695617088,38.40098506140024],[-121.29147689686219,38.400991047572575],[-121.29147622304492,38.401059057517045],[-121.29148882936252,38.40114371574327],[-121.29148845984011,38.40114761801311],[-121.29148132175226,38.40122295502605],[-121.29148126244371,38.40122894119843],[-121.2914807457137,38.401281096119504],[-121.29147334279297,38.401349766587295],[-121.29145218013288,38.40145007271666],[-121.29145212082169,38.40145605888907],[-121.29145113271132,38.40155578699031],[-121.29147020061723,38.40166690940899],[-121.29149602480378,38.401772789447335],[-121.29152212917619,38.401852244852385],[-121.29154149318187,38.401931648991585],[-121.2915474822191,38.40200569715999],[-121.29156689865346,38.4020798159869],[-121.29159279380609,38.40218041080907],[-121.2916057681513,38.40222806646822],[-121.29161783406697,38.402365581267105],[-121.29163044088963,38.40245022867147],[-121.29164954333122,38.40255606744477],[-121.29164948403563,38.40256205361752],[-121.2916489674187,38.40261420854183],[-121.29164890812304,38.40262019471459],[-121.2916475013807,38.402762211596524],[-121.2916397502511,38.402867884756475],[-121.29163969095447,38.402873870929284],[-121.29163896483075,38.402947175196374],[-121.29162478608991,38.40302108884554],[-121.29160336139823,38.403147817948394],[-121.29160330209831,38.40315380412128],[-121.29160231416637,38.40325353313061],[-121.29160225486628,38.40325951930348],[-121.29160179055819,38.403306389820976],[-121.29162127795884,38.40337523515684],[-121.2916473648365,38.40345468051628],[-121.29166706180334,38.40350237740294],[-121.29171336935688,38.40357666113824],[-121.29175316398837,38.40362976599716],[-121.29178618272987,38.40368812392862],[-121.29181930754051,38.403735892322125],[-121.29183869059628,38.403815307339244],[-121.29184473254581,38.40388405937793],[-121.29184467326549,38.40389004555106],[-121.29184384267076,38.40397391953902],[-121.2918295591669,38.404058412842346],[-121.29182194695392,38.404148221872404],[-121.29182188767145,38.404154208045576],[-121.29182084769768,38.40425922146834],[-121.2918069317171,38.40430671130782],[-121.29179250940629,38.40440705884515],[-121.2917785398972,38.404459833082605],[-121.29177082279676,38.40456022173705],[-121.29175629569941,38.404671138987915],[-121.29173550009992,38.40473444171854],[-121.29170805035712,38.40479241890694],[-121.29166001424997,38.40489255937195],[-121.2916120826971,38.40498213190185],[-121.2915644652635,38.40503998535134],[-121.29151028233612,38.40508194251488],[-121.29142241641497,38.40513426425885],[-121.29130083191562,38.405196948486896],[-121.29121986224872,38.405228172578504],[-121.29114568584711,38.40525414186857],[-121.29103791270832,38.40527991568484],[-121.29091674695316,38.40530031163322],[-121.29080230354616,38.405320759546576],[-121.29070128691612,38.405341278999664],[-121.29060699389227,38.40536184056551],[-121.29047915767987,38.405376920263244],[-121.29039846808723,38.405381709241176],[-121.2902774057279,38.405391535696474],[-121.29019671610527,38.40539632453345],[-121.29008925729647,38.40539037930793],[-121.28998850386286,38.405384475206134],[-121.28986098132225,38.40536783605655],[-121.28972680722752,38.40534586031712],[-121.28965292796127,38.405340121197895],[-121.28954557429469,38.405323605751036],[-121.28939795419132,38.40530154691216],[-121.2893442425611,38.40529593168393],[-121.28924375196034,38.40526360309475],[-121.28917020529276,38.4052261447177],[-121.2890697846767,38.405188521766505],[-121.28899627240223,38.40514577875899],[-121.28891589827813,38.405118858457364],[-121.28881532017235,38.40509709931612],[-121.28870810769845,38.405064718053374],[-121.28862090497478,38.405048326751185],[-121.28852038088768,38.40502127214315],[-121.28843317826899,38.405004879798305],[-121.2883528560677,38.40497266388101],[-121.28825924675392,38.40492451182938],[-121.28815210560481,38.40488685656719],[-121.28802484756466,38.404843781646605],[-121.28793775176894,38.40481680931163],[-121.28785049690646,38.40480570093344],[-121.28776339997037,38.404778739270206],[-121.2875418149271,38.40476150660275],[-121.28742080692975,38.40476605557367],[-121.287293076554,38.40477055212178],[-121.28718528453695,38.40479631232006],[-121.28707073550106,38.404827325347554],[-121.28692897911911,38.40488988046697],[-121.28684126819505,38.40492634460628],[-121.28671983817375,38.40497316989228],[-121.28661855840106,38.405020109612565],[-121.28649024613271,38.40508275805365],[-121.28635505416564,38.40516120812713],[-121.28626721881079,38.40520824052922],[-121.2861995520322,38.40525539752216],[-121.28610462462005,38.40533938179376],[-121.28601647218898,38.40541813215091],[-121.28591468170593,38.405517938847055],[-121.28583309304616,38.40561258564942],[-121.28579896955915,38.40566523456444],[-121.28575087179031,38.40577065878176],[-121.28570970772206,38.40585497432333],[-121.28569541773946,38.40593946688031],[-121.28569535794264,38.40594545305069],[-121.2856942561589,38.406055750830106],[-121.28568707552797,38.406103281620005],[-121.28567940249582,38.40619838456633],[-121.28567965888068,38.406200455540024],[-121.28569182731293,38.406298897451855],[-121.28569707160523,38.4064469312181],[-121.28569701180813,38.40645291738859],[-121.28569638513044,38.40651565281567],[-121.28568865926961,38.40661604107049],[-121.28566761095047,38.40670576574844],[-121.28561903702467,38.40685876217857],[-121.285577713669,38.40695894260458],[-121.28554306008353,38.40706444900991],[-121.28548844953093,38.40714869211012],[-121.28542702770652,38.407243462508184],[-121.28535902438118,38.40732232714187],[-121.28526414595859,38.40740103623216],[-121.28516918009076,38.4074903042601],[-121.28508790531706,38.407553231496244],[-121.28502688825765,38.4076057146201],[-121.28491868648005,38.40767377058511],[-121.2848105720025,38.40773124581329],[-121.28471597517158,38.40778352082893],[-121.28463485941936,38.40783059363653],[-121.28454045562178,38.407861719062026],[-121.28443246463729,38.40790862523915],[-121.28435129565993,38.407960983154084],[-121.28427677812621,38.40801866696555],[-121.28419555486589,38.4080763091695],[-121.28412777818961,38.40813403466465],[-121.28402633329577,38.40819684605219],[-121.28397210779303,38.408244085997],[-121.28387045100305,38.408328025860385],[-121.28381626106088,38.4083699803197],[-121.28376870632249,38.40842254536881],[-121.28371403855333,38.40851207293277],[-121.28365947778784,38.408591019956795],[-121.28361841656012,38.40866477586701],[-121.28359768271238,38.4087227928419],[-121.28355651440579,38.408807107624256],[-121.28351566371124,38.40885971506044],[-121.28348162455515,38.408901794372525],[-121.28344077375145,38.40895440178236],[-121.28341347569943,38.40899652199724],[-121.28335208417252,38.40908600767967],[-121.28327731813064,38.40917011388859],[-121.28320938064932,38.409243702872445],[-121.28314814884962,38.409317323527894],[-121.28307327509752,38.40941201011955],[-121.283019030879,38.409459248611284],[-121.28297823241576,38.4095065705526],[-121.28292368839762,38.40958551734534],[-121.2828624559027,38.40965914866042],[-121.2827741356496,38.40975374076054],[-121.28273328384772,38.409806347020734],[-121.28269237885662,38.40986424938265],[-121.28263111129581,38.40994315428423],[-121.28257675918782,38.41000096227271],[-121.28252923715866,38.410048242295616],[-121.2824884391801,38.410095564071945],[-121.28243419291172,38.41014280228299],[-121.28239318266247,38.410211263447025],[-121.28235201197013,38.41029558861447],[-121.28230408356308,38.410385146600575],[-121.28228348896708,38.410427309113516],[-121.28223570111412,38.41050102275173],[-121.28220840186127,38.410543132774535],[-121.28220061647494,38.410648805207096],[-121.28219309746535,38.41072805472139],[-121.28217214965095,38.41080720996468],[-121.28214440726723,38.41089161852018],[-121.28210328905423,38.41097064838565],[-121.2820690540294,38.41103387672879],[-121.28201459565773,38.41110225327167],[-121.28200074207037,38.411144457642024],[-121.28196634662748,38.411223529253164],[-121.28195898660691,38.411286914728876],[-121.28193791495005,38.4113766494443],[-121.2819171789525,38.41143466612264],[-121.28188934715362,38.41152963362573],[-121.28186832841165,38.4116140839243],[-121.28184727382738,38.411703807920674],[-121.28183943469593,38.41181476563858],[-121.28183937457139,38.411820751808115],[-121.2818386383097,38.41189405603508],[-121.28185806567521,38.41196817753327],[-121.28189054943041,38.412079385962606],[-121.28194318665341,38.41219072958669],[-121.28200251143463,38.41230738868284],[-121.28203573982591,38.41234459108574],[-121.28208903158601,38.41239249756702],[-121.28212194151091,38.41246142799639],[-121.28215458517815,38.41255677142668],[-121.28216691825111,38.41266786444679],[-121.28217295164899,38.41273661701122],[-121.28217250110723,38.41273815386546],[-121.2821451024001,38.41283159528342],[-121.282117536805,38.4129001390251],[-121.28205550343725,38.41305305040504],[-121.28200730736965,38.413169042013145],[-121.28195263492006,38.41325856786341],[-121.28189780310586,38.413363947804434],[-121.2818432538073,38.413442894089634],[-121.28180878672184,38.413527260768284],[-121.28176067779027,38.413632682450064],[-121.28172617470422,38.41372232370716],[-121.28169850207965,38.41380144697132],[-121.2816707762947,38.4138858555351],[-121.28164313841751,38.41395968435789],[-121.28159518824717,38.414049251855815],[-121.28154015995722,38.41417578106827],[-121.28151243393978,38.41426017968562],[-121.28146453650983,38.41434446272496],[-121.28141002192885,38.414418123395116],[-121.28134858844503,38.41451289254727],[-121.28128051933433,38.41459705000626],[-121.28114436424207,38.41477063952826],[-121.28106249416679,38.41489170592223],[-121.281007819217,38.41498123133008],[-121.28095325052689,38.41506017709204],[-121.28092584123227,38.41511286643103],[-121.28087799568931,38.41519186482432],[-121.28084381082076,38.415249797597525],[-121.28078251714003,38.41532870141079],[-121.28074176815221,38.41537073817311],[-121.28070069887629,38.41544449305482],[-121.2806731308801,38.41551303735823],[-121.28063878503511,38.41558682417996],[-121.28059766235813,38.415665863430576],[-121.28054997572323,38.415728996763335],[-121.2805090668295,38.41578688755979],[-121.28046799706543,38.41586064326061],[-121.2804064896971,38.415960685396485],[-121.28036563374275,38.41601329173763],[-121.28031124021709,38.41607639309956],[-121.28027027659107,38.41613956820982],[-121.2802022059073,38.41622371513535],[-121.28014098210909,38.41629734422922],[-121.28010012462202,38.41634995046986],[-121.28005926708391,38.41640255579525],[-121.27999791946945,38.41648674450785],[-121.27994366785173,38.41653398156585],[-121.27980049049964,38.41667498942552],[-121.27972218007349,38.4166218627718],[-121.27936356578216,38.416949061668994],[-121.27933442262795,38.41696363584768],[-121.27923313809764,38.41701057912593],[-121.27911171753178,38.41705211191187],[-121.27899687889055,38.417109540767825],[-121.27884849238468,38.41716147533007],[-121.27874745663165,38.4171819951526],[-121.27853181216518,38.41723879315868],[-121.2784037389172,38.41727498900539],[-121.27835654651295,38.41729055920254],[-121.27824206325636,38.417310983759826],[-121.27814760901683,38.417347399298166],[-121.2780732902479,38.41738392979675],[-121.27798561285486,38.417415101920135],[-121.27789807728863,38.41743040984021],[-121.2777635988799,38.4174348547115],[-121.27762245019927,38.417433972072836],[-121.27752169915425,38.41742805630664],[-121.27740114873932,38.41738502252756],[-121.27733414203134,38.41736345266501],[-121.27721369993657,38.41730983907986],[-121.27715354092561,38.41727775239462],[-121.27705986961116,38.4172348756504],[-121.27694647234796,38.41714958483481],[-121.27685280132562,38.417106707922855],[-121.27677263101064,38.41705864063832],[-121.27667230837814,38.417010437192886],[-121.27655846572372,38.416967433721055],[-121.27643098038499,38.4169454845301],[-121.27632355885183,38.416934242091024],[-121.27619607354406,38.41691230255021],[-121.27610213564465,38.41689585875654],[-121.27600168719547,38.416858224313906],[-121.27592786783738,38.41684719121658],[-121.27580705286888,38.4168305786976],[-121.27565268965213,38.416808460127065],[-121.27557874498468,38.41680799639829],[-121.27547137848755,38.41679146877114],[-121.27535718019402,38.41678546676106],[-121.27521587210812,38.416800435290725],[-121.27511512100075,38.41679451831924],[-121.27501424556637,38.416799169957244],[-121.27488649291473,38.41680365278568],[-121.27480584183785,38.41680314646166],[-121.27468481275206,38.41680767218051],[-121.27461083279809,38.416812492349614],[-121.2743823290274,38.416811057121265],[-121.2742680051857,38.41681562362472],[-121.27416042313604,38.416820243190905],[-121.27404622500723,38.4168142299754],[-121.27397238766666,38.416803196414044],[-121.27383798219452,38.41680235152724],[-121.2737236766524,38.41680691760713],[-121.27358925400073,38.416806072322935],[-121.27350177183428,38.416816102418636],[-121.27341434344645,38.4168208381369],[-121.27328653694394,38.41683060359766],[-121.27317884746928,38.4168457811438],[-121.27302430654444,38.416839523868966],[-121.27296393485717,38.4168285735097],[-121.27285651404488,38.41681732784638],[-121.27273578914448,38.41679013148556],[-121.27268214227024,38.41677922422013],[-121.27254147897783,38.41673076314764],[-121.2724746528492,38.41669333646974],[-121.27236775193145,38.41662923271014],[-121.27230775828447,38.41658127859409],[-121.27218775060321,38.41648537194059],[-121.27212752356897,38.416458566931546],[-121.27199349553621,38.416420717379296],[-121.27187933362218,38.416409427414415],[-121.27175185060486,38.41638748386988],[-121.27163103748454,38.416370857073964],[-121.27149711758501,38.41632243634232],[-121.27143011239896,38.41630087385874],[-121.27128914594245,38.41628412949338],[-121.27115477702655,38.41627799696817],[-121.27106740302604,38.41627744560844],[-121.27094626682461,38.41629253621133],[-121.2708519536885,38.416313080754186],[-121.2707239320204,38.41634399269269],[-121.2706699072898,38.416370077090825],[-121.27059528034394,38.416438331816806],[-121.27050731292641,38.41649592195119],[-121.27045956290777,38.416564335519936],[-121.27039153295343,38.416643202166235],[-121.27034401677248,38.41669047730078],[-121.27027625636202,38.416742910166526],[-121.2701682438623,38.41678979221609],[-121.27012114070139,38.41679479013919],[-121.27002017409099,38.41681001803604],[-121.26995295419613,38.41680959320426],[-121.269892529143,38.4168039157305],[-121.26981187810131,38.416803405919616],[-121.26973778976456,38.41681880257824],[-121.26966384512494,38.41681833506301],[-121.26954953928161,38.41682289791313],[-121.26947555896582,38.416827714793236],[-121.2693814607127,38.41682711963495],[-121.2692941400618,38.41682128253394],[-121.26922032177703,38.41681024515],[-121.2691263857177,38.416793785774104],[-121.26906601466608,38.416782833377546],[-121.26898536479908,38.41678232299683],[-121.26891825187009,38.41677132785535],[-121.26885766469407,38.41678151475048],[-121.26877696078489,38.416786288623996],[-121.26870308855624,38.416780536210034],[-121.2686088822472,38.41679051012249],[-121.26854151725603,38.416805948587076],[-121.26846070400676,38.416821291932294],[-121.268373221213,38.416831307333666],[-121.26827917704634,38.41682542687794],[-121.26813154079521,38.41680335166653],[-121.26807115281395,38.4167923887318],[-121.26794356092412,38.41678100977543],[-121.26785629456016,38.41676988718819],[-121.26776902937766,38.41675876364142],[-121.26763473233103,38.41674734183745],[-121.2675340719907,38.41673083852899],[-121.2674334852051,38.416709060766635],[-121.26735287127227,38.41670326383005],[-121.26720534284772,38.416670607819526],[-121.26709792433302,38.41665935590741],[-121.26704415060527,38.41665901469776],[-121.26691656025268,38.41664763551508],[-121.26678902299693,38.416630970884675],[-121.26668832828159,38.41661975136153],[-121.26656051996427,38.41662952018316],[-121.26646636892545,38.416634207056035],[-121.26633172862725,38.416654491813816],[-121.26623737765532,38.41668032881506],[-121.26613628368948,38.416706111187246],[-121.26605525407646,38.41674260216149],[-121.26596739114281,38.41678961914134],[-121.26589975438534,38.41683146904849],[-121.26580495046382,38.416899592477876],[-121.26574369418763,38.416973203922794],[-121.2657028257218,38.417025805071326],[-121.26566173998218,38.41709955460863],[-121.26564727965281,38.417199888115476],[-121.26563990330294,38.417263282464205],[-121.26563984181753,38.41726926862628],[-121.26563919754784,38.41733199405535],[-121.26563149664413,38.4174270957017],[-121.26562363286497,38.41753805234435],[-121.26560965979562,38.41759082355319],[-121.26560959830738,38.41759680971527],[-121.26560792241834,38.41775996483762],[-121.26560011285602,38.41786563618064],[-121.26560035599014,38.41786749540477],[-121.26560634789254,38.41791325112613],[-121.26560628640378,38.41791923728828],[-121.26560569638852,38.4179766774192],[-121.26558487262147,38.41803997545831],[-121.26555056531957,38.4181084833166],[-121.26550264659782,38.41819274983628],[-121.26546822941705,38.41827182645986],[-121.26545407601944,38.418340452538565],[-121.26545401451753,38.418346438700695],[-121.26545337008436,38.418409163229946],[-121.26541228339426,38.4184829027723],[-121.26535818353287,38.41851427888623],[-121.26531064445024,38.418561552737174],[-121.26525650745565,38.418598203401785],[-121.26518212637735,38.41864002081584],[-121.26510093113066,38.418692364317664],[-121.26504679381833,38.41872902569432],[-121.26497246795425,38.41876555858264],[-121.26486423031199,38.41883358497185],[-121.26481674503925,38.41887557332099],[-121.26472844387379,38.41896486724917],[-121.26466731049513,38.41902791935034],[-121.26455927243342,38.41907480685179],[-121.264444690812,38.41910578754169],[-121.26435687828877,38.41914751890181],[-121.26423546377464,38.4191890361692],[-121.26410727091069,38.419235794871554],[-121.26399247112131,38.41928792351471],[-121.26391121870678,38.41934555147262],[-121.26380984907735,38.419397766418975],[-121.2636747311937,38.41946562038986],[-121.26351271652005,38.41953330361898],[-121.26341807019234,38.419585560190896],[-121.26331669986246,38.41963777470486],[-121.26321529210215,38.419695273637],[-121.26309365800425,38.41975793900609],[-121.26301940184241,38.419789174639874],[-121.26295174208906,38.41983103351791],[-121.26284355538799,38.419893774519295],[-121.26276235700534,38.41994611637921],[-121.26265409714246,38.420014141483826],[-121.26259328934077,38.42004547350087],[-121.26249875068652,38.42008716052584],[-121.26246492917018,38.4201080844672],[-121.26240415740324,38.42013413187061],[-121.26232979138001,38.4201759475669],[-121.26226898225576,38.42020726949674],[-121.26222176732897,38.420222823084025],[-121.26214734656897,38.42026992306009],[-121.26206724226826,38.4203026027317],[-121.26187314959448,38.420420072126305],[-121.2617633194148,38.420498509916484],[-121.26161128925757,38.42060305744492],[-121.26138358382777,38.42072690673578],[-121.26116446756218,38.42083102470511],[-121.26111116121825,38.42087501849167],[-121.26103759347453,38.42093573238617],[-121.26082638430097,38.421086065706945],[-121.2606491255786,38.42119704612104],[-121.26046382298574,38.42127499960995],[-121.26022854672827,38.421319657617765],[-121.25999292887897,38.42139728812147],[-121.25978246721223,38.42147507935059],[-121.25963063695018,38.421559841571536],[-121.25947866972102,38.42165779206195],[-121.25933522431585,38.421742606750335],[-121.25920328069066,38.42180366771536],[-121.25897871305843,38.421896910459836],[-121.25874549801645,38.422043455572854],[-121.25870170597025,38.422070973084],[-121.25856214932246,38.42225944364132],[-121.25849166987003,38.42242130579305],[-121.25843824832845,38.42259680279525],[-121.2583848276697,38.422772299780924],[-121.25829686692803,38.42296110126605],[-121.25812248795711,38.42318992659026],[-121.25796558850476,38.423391811365214],[-121.25784378886884,38.4235262908998],[-121.25763543082468,38.42371431834031],[-121.25742749199821,38.42386177014238],[-121.25723675232588,38.4240093312632],[-121.25699455346077,38.42414303571976],[-121.25680381214443,38.424290596126944],[-121.2566132106758,38.424424631735725],[-121.25643994815826,38.42454525235031],[-121.25628388521515,38.42466598344068],[-121.25611062271159,38.42478660266872],[-121.25590338151079,38.42486642571004],[-121.25567865913156,38.424973187431625],[-121.25543673582385,38.425079837857616],[-121.25521215298795,38.42517307328853],[-121.25502168599394,38.425293579982934],[-121.2548309386715,38.42544113804567],[-121.25467472889675,38.42557539234101],[-121.25451866073318,38.425696120149325],[-121.25429351041981,38.4258434553277],[-121.25410332347168,38.425936910653036],[-121.25386210038394,38.42597593177273],[-121.25362144188732,38.425960850861216],[-121.253363584175,38.425945658288335],[-121.25307132680085,38.425930242727944],[-121.25283137542993,38.42584753416552],[-121.25262610710749,38.42573799689857],[-121.25235147436327,38.42568211464525],[-121.25209446692782,38.425585767859346],[-121.25183717708477,38.42551647126098],[-121.25152814511317,38.425460365154464],[-121.25132174787461,38.42545902771057],[-121.2510118674831,38.425484070702055],[-121.25073624466796,38.42552286225886],[-121.25039238853192,38.425507105230146],[-121.2501345331426,38.42549190545005],[-121.2497562788908,38.425475923238785],[-121.24949828175663,38.425474247415515],[-121.24925719975505,38.42549973354271],[-121.24894746055143,38.42551124652121],[-121.24848349139027,38.425467650242425],[-121.24813977825657,38.425438362034384],[-121.24777872506189,38.42542248529336],[-121.24754109477293,38.425408433949194],[-121.24728338161225,38.4253797024236],[-121.2469049861087,38.42537723625044],[-121.24656099011489,38.425374993198645],[-121.2463715072168,38.42540080982942],[-121.24614748204807,38.42543992704832],[-121.24592317016044,38.425506093669036],[-121.24569871629107,38.42558578523382],[-121.24543929125754,38.42571935316523],[-121.24512726538518,38.425947260048034],[-121.24498837962089,38.42606808736826],[-121.24478055189655,38.42620199105026],[-121.24464152212866,38.42633634422633],[-121.24448500653193,38.426497634594625],[-121.24432820428261,38.426685975492965],[-121.24413700100949,38.42687409110718],[-121.2439628532582,38.427075844338496],[-121.24377121874174,38.42730453546082],[-121.24361398351223,38.42753345150499],[-121.24345717669623,38.42772179122647],[-121.24331756997331,38.42791024340186],[-121.24319559189499,38.4280582328773],[-121.24303921248608,38.428205995924486],[-121.2428482882592,38.428367059574946],[-121.24269233616124,38.42847424693849],[-121.24250141159114,38.428635309123486],[-121.24227636947532,38.42876909551516],[-121.24198281217114,38.42887537932167],[-121.24165499512853,38.42896791119531],[-121.24127500173611,38.42911420383049],[-121.2410501005613,38.42923446247486],[-121.24084196784274,38.42939540890984],[-121.24071998210535,38.42954339577732],[-121.24058079567409,38.42969126855262],[-121.24047600912492,38.429839368226865],[-121.24029625826502,38.430047999140776],[-121.2401415159904,38.430194201517914],[-121.23995273427141,38.4303401797583],[-121.23969601406462,38.430472327543185],[-121.23942227344098,38.430604362713694],[-121.23916583733629,38.43070974326543],[-121.23887493165779,38.43085504807911],[-121.23858359830324,38.43104049945925],[-121.23839424082367,38.43124000637904],[-121.23830685881587,38.43145356933264],[-121.2382699673018,38.43172099921469],[-121.23825066575569,38.43193501098511],[-121.23823107771643,38.43217578790675],[-121.2382312222169,38.43217920962813],[-121.23824467592667,38.432497086569356],[-121.23827657661136,38.4326980519635],[-121.23830748038303,38.43299269677389],[-121.23835583231393,38.43324730468834],[-121.2383705709053,38.43346154088775],[-121.23838573736047,38.4336356288928],[-121.23838543175563,38.433638834130456],[-121.2383665782429,38.43383625766162],[-121.23833025498308,38.43405015724699],[-121.23829421787781,38.43423729076646],[-121.23825889252066,38.43435751091175],[-121.23815448588728,38.43457096154891],[-121.2380164656983,38.434744039398765],[-121.23789787036728,38.43487374821061],[-121.23776853195169,38.43503063145889],[-121.23765712400409,38.43521631166136],[-121.23756441124783,38.43535909650603],[-121.23746940364927,38.4357169610712],[-121.23746933978882,38.43572294722099],[-121.23746680323684,38.435960717632334],[-121.23751876012929,38.436219174093075],[-121.23755339902353,38.43639147899379],[-121.2376432074437,38.43652112838996],[-121.23775217090152,38.436564866833194],[-121.23802557314129,38.43658100916485],[-121.238152315688,38.43666788310444],[-121.23820519363234,38.436840308063374],[-121.23820439369895,38.43684389473174],[-121.23816688509434,38.43701213087963],[-121.2381279661647,38.43724130902975],[-121.23807111407451,38.437441689226766],[-121.23795909166283,38.43768472507001],[-121.23790300430645,38.437813411922015],[-121.23779143946334,38.43801343110121],[-121.23766194220869,38.43818465217595],[-121.23756754314724,38.438485162409826],[-121.23751084146181,38.4386712035028],[-121.23748985027004,38.43892917946133],[-121.23748978640842,38.4389351656116],[-121.23748786168433,38.4391155816053],[-121.23750613828517,38.43923297505887],[-121.23752204677332,38.43949827120589],[-121.23753842798084,38.43971937254377],[-121.23753815581655,38.439722550973336],[-121.23751701772143,38.43996968888373],[-121.23742159898929,38.44013112094735],[-121.2372891751561,38.44024810894196],[-121.23713801328235,38.440364973977054],[-121.23693095029788,38.44045200437153],[-121.23668672620232,38.440509321823214],[-121.23646155410584,38.440537300272915],[-121.23632944275487,38.440624823960235],[-121.23617906455078,38.440668028812986],[-121.23606695112446,38.440637822340264],[-121.23589846504333,38.44062197472585],[-121.23571155642982,38.44057654061991],[-121.23548654132621,38.44058978466551],[-121.23533663551895,38.44058879271232],[-121.23509288265127,38.44060191198733],[-121.23490518611058,38.440630135489705],[-121.23473638483289,38.44064375028589],[-121.23454837250112,38.440701436412546],[-121.23437893975654,38.44077397799408],[-121.23415360808079,38.440816682647],[-121.23398464832293,38.44084502884703],[-121.23381568844074,38.44087337389919],[-121.23353493166105,38.440842046573785],[-121.23338502649722,38.44084105209628],[-121.23317922201673,38.44081022026503],[-121.23295483810429,38.440764532981305],[-121.23269297797808,38.440718595497096],[-121.23258054844874,38.44071784883228],[-121.23243048535186,38.440731584715365],[-121.23225704761576,38.44076140137021],[-121.2321421660787,38.44076550832921],[-121.23201057056133,38.44075427863381],[-121.2318134550293,38.440711546083186],[-121.23166879997258,38.44068987316367],[-121.23151086380484,38.44067846774096],[-121.23124722669587,38.44069742512702],[-121.23102287967538,38.44073735361868],[-121.23079842095943,38.440787636943064],[-121.23048120956423,38.44088907950393],[-121.23025630392576,38.44098078014498],[-121.22999155096254,38.441103281046246],[-121.2297657513103,38.441277818369635],[-121.22963292754284,38.44138048670117],[-121.22945980963866,38.44155537556297],[-121.22936605073272,38.44169972544006],[-121.22925900855219,38.441854343554134],[-121.22915207759378,38.441998606302626],[-121.2290192516053,38.442101273930405],[-121.22885997094244,38.4422141208724],[-121.22872759109336,38.442275369800875],[-121.22845044300574,38.44232529690257],[-121.22804180737462,38.442353633850104],[-121.22789659082954,38.442383729834845],[-121.22765850584075,38.44247533741052],[-121.22744653793494,38.44258783024658],[-121.22722128717915,38.442710588978635],[-121.22692973294542,38.44287432595673],[-121.22678373070508,38.44297690379533],[-121.22655814141605,38.44313072522894],[-121.22642530958781,38.44323339077846],[-121.22617292727664,38.443428453455795],[-121.22602613788366,38.44360351268554],[-121.22593203290249,38.44377892467519],[-121.22587699363217,38.443996020575696],[-121.22583590853029,38.44414072143624],[-121.22574157802856,38.444336841999814],[-121.22563418862619,38.444522520763904],[-121.22552735857371,38.444656424902455],[-121.22539407352264,38.44480050762399],[-121.22524772839674,38.44493414751663],[-121.22507504026751,38.445067609668136],[-121.2248366057853,38.4451902763255],[-121.22466470260439,38.44525125552369],[-121.22441377032202,38.445311704058305],[-121.22417600833028,38.445372240476665],[-121.22390359266103,38.44547011903144],[-121.22366549227283,38.445561718386074],[-121.22348019027794,38.445643316952385],[-121.22328137833023,38.445755890669865],[-121.22306894468012,38.44590979473863],[-121.22289602379331,38.446063963252115],[-121.22268336315929,38.44623857533517],[-121.2225372353111,38.44635150217668],[-121.22229811612743,38.44653629066499],[-121.22216504646025,38.44665966004597],[-121.2220189180776,38.446772586240776],[-121.22189924394941,38.4468753352685],[-121.22173960426905,38.447019236396386],[-121.22152761357044,38.44713171838593],[-121.22131562335012,38.44724419999457],[-121.22105083186048,38.44736668042697],[-121.2208919784239,38.44743809715844],[-121.22072017937637,38.447488716132284],[-121.22049524044608,38.44758039778736],[-121.22025780651632,38.44760986216886],[-121.22008623260236,38.44763977148283],[-121.2197969016455,38.44759639609385],[-121.21954742703728,38.447522223802416],[-121.21937653052292,38.44749000320393],[-121.21912694359587,38.44742618346197],[-121.21883784044236,38.44736209695673],[-121.21858825443313,38.44729827695231],[-121.21825963683631,38.44723392178438],[-121.21787833224064,38.4471692090884],[-121.21784532449972,38.44716175943359],[-121.21772655861787,38.447288196304434],[-121.21636727648367,38.446498525959065],[-121.21617112993977,38.44670733511972],[-121.21593321116869,38.44668293147883],[-121.21565637683254,38.44670176392697],[-121.21539237340986,38.446751749111655],[-121.21507397527857,38.44695669562135],[-121.21495395078215,38.44709050052504],[-121.21487287247031,38.44727634826071],[-121.2147916788366,38.44747254938499],[-121.21464280618133,38.44783397884427],[-121.21460181107571,38.44796832047508],[-121.21452016066203,38.44820594152747],[-121.21439899476286,38.44844329299495],[-121.21429179627337,38.4486082507172],[-121.21414474055445,38.44880400448704],[-121.21403811032752,38.448917189308986],[-121.21389048262394,38.44916471631551],[-121.21380882963368,38.44940233597817],[-121.21379349265102,38.449598984469404],[-121.21369889402503,38.44981580573101],[-121.21363132274261,38.44997067736714],[-121.21348483222178,38.45011465673689],[-121.21335185351003,38.45022766161739],[-121.21315255796497,38.450381636237836],[-121.21300652061375,38.45048419668417],[-121.21282085151122,38.45059684212333],[-121.21268798608236,38.45069949099584],[-121.21255489206403,38.45082285022127],[-121.21236842250174,38.45100797719961],[-121.21224827198671,38.45115213455698],[-121.21212217679806,38.45124490084723],[-121.21196236281281,38.45136836732788],[-121.21188199719262,38.45147161562911],[-121.21178842856686,38.45157477382472],[-121.21172080845331,38.45171962766983],[-121.2116665065307,38.45185419287489],[-121.21162414774409,38.45210301534214],[-121.21162467711852,38.45210550097757],[-121.21166181221447,38.45227972662441],[-121.2117131377646,38.45241501235697],[-121.21179075723177,38.45256085686101],[-121.2118822656388,38.45264451839821],[-121.21198629284245,38.452790542856285],[-121.21205105242967,38.45290516022503],[-121.21212867311884,38.45305100450348],[-121.21217988568652,38.45319666870572],[-121.21225716257194,38.45337364981664],[-121.21230826237628,38.45352969264582],[-121.21235924685321,38.45369611502106],[-121.21238393842997,38.45385197782817],[-121.2123837942335,38.45385747243389],[-121.21237785552125,38.45408444030569],[-121.212335612289,38.454322884369276],[-121.21224123967171,38.45449869546636],[-121.2121330899409,38.454726310745535],[-121.21202585625008,38.45487089472956],[-121.21189198408577,38.4550360558743],[-121.211731245296,38.45524255324661],[-121.21154386843133,38.45546962668288],[-121.2113969038906,38.455624319394886],[-121.21127623355824,38.45578956993118],[-121.21116876623965,38.4559549113651],[-121.21102111347531,38.45617187565554],[-121.21095348745624,38.456316729064575],[-121.21080606138527,38.45651293662606],[-121.21072523090626,38.456657698837944],[-121.21063108054548,38.45681275127955],[-121.21052280751657,38.45705074373587],[-121.21045506497849,38.4572059755297],[-121.21033416039722,38.4573919833362],[-121.21025263855961,38.45759901905755],[-121.21022473836874,38.45773376405735],[-121.21019695278831,38.457858130376835],[-121.21011543002139,38.458065166003195],[-121.2100738664479,38.458241336321386],[-121.21004096946993,38.458388575274135],[-121.21003218678325,38.45842788529123],[-121.20999193994778,38.45856461525548],[-121.20997730282922,38.458614343989765],[-121.20990932809588,38.458790333716685],[-121.20980243245488,38.45898296030255],[-121.2097075871392,38.459200284933814],[-121.20957347302384,38.45938620166207],[-121.20945221683306,38.45960334456614],[-121.20927837127911,38.459799369552364],[-121.20914482815658,38.45993339060884],[-121.20897166921463,38.46006714128585],[-121.20879839584755,38.46021127038448],[-121.2085988256584,38.46034483970807],[-121.20834585982114,38.46052994117162],[-121.20819945302124,38.46063273466728],[-121.20801285606278,38.46078715169366],[-121.20770718192408,38.4609615102318],[-121.20742791535264,38.46113604996365],[-121.207268301437,38.46123875173127],[-121.2069894946149,38.4613717748252],[-121.20671091722053,38.46148403900386],[-121.20637871008635,38.46166859232235],[-121.2061395161901,38.46180188538205],[-121.2059402826198,38.46190431320621],[-121.20570085520987,38.46205836359244],[-121.20547440183694,38.46223326070282],[-121.20531443635622,38.46236709668496],[-121.20512748225515,38.46255264506724],[-121.20500690120036,38.462707510407945],[-121.20491379414977,38.462972398109855],[-121.20487209459561,38.46315896502882],[-121.20475138364472,38.46332422670435],[-121.20471037553607,38.463448513433754],[-121.2045231662098,38.463654840567976],[-121.20438889954895,38.46385115058035],[-121.204202265146,38.464005577536355],[-121.20406880635707,38.464129227486254],[-121.20394901708814,38.464211449065814],[-121.20387251290641,38.46435391479245],[-121.20387491991015,38.46435529355807],[-121.20425450102499,38.46457263829574],[-121.20425079307249,38.46457653986544],[-121.20418189088976,38.46464904426676],[-121.20361650301845,38.46561253504057],[-121.203358690687,38.466051871780756],[-121.20305102804147,38.466325534267234],[-121.20305096127002,38.46633152040127],[-121.20304988510757,38.46642799940592],[-121.2030259530277,38.46656020255026],[-121.2029674524731,38.46677158768208],[-121.20290885426581,38.466991797498565],[-121.20286148136054,38.46721208470251],[-121.20282592802751,38.46737950560193],[-121.20279037452782,38.467546926490805],[-121.20272143215976,38.46768764362387],[-121.20268568130977,38.46787271299172],[-121.20261516273135,38.46815461183904],[-121.20257950986728,38.46833085646975],[-121.20252189297203,38.4684628271393],[-121.2024860415746,38.46865672024434],[-121.20247294305864,38.468824295972944],[-121.20241483303853,38.46900038561359],[-121.2024017331366,38.46916796222795],[-121.20235485095088,38.46934412931512],[-121.20228570894541,38.46950249380141],[-121.20218199593042,38.46974004090842],[-121.20212388444838,38.46991613040511],[-121.20211016960587,38.470084001854495],[-121.20206200623517,38.4702475327343],[-121.2020136404363,38.470429269736954],[-121.20191945027379,38.47056517240641],[-121.20183674064312,38.47071025714243],[-121.2017309648787,38.47084607966634],[-121.20162478295939,38.471018313469045],[-121.2015300825933,38.471199730256885],[-121.20148232526196,38.47132684953848],[-121.20143416076228,38.471490380167474],[-121.2014340938505,38.47149636630106],[-121.20143263451692,38.471626922568326],[-121.20136170892484,38.471753882650404],[-121.20120939492634,38.47190758982001],[-121.2010806541893,38.47202504643821],[-121.20096359766465,38.47213347900993],[-121.20082296665731,38.47227816356842],[-121.2007864858397,38.472432671849084],[-121.20078669795613,38.47243747700729],[-121.20078934177799,38.4724974044929],[-121.20078900245313,38.472497209350564],[-121.18862713041443,38.46550828691625],[-121.17967401008111,38.46036160914141],[-121.1793474218157,38.46017384367988],[-121.16429590826456,38.45151819903952],[-121.16636853204923,38.44812802671549]]]},"properties":{"ZIP5":"95693","PO_NAME":"WILTON","Shape_STAr":1535677300.64,"Shape_STLe":252086.144586}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.02481091400598,38.412905536237496],[-121.02408329827594,38.37636249076211],[-121.02320929936818,38.33241839564836],[-121.02258753695763,38.301123764268155],[-121.02299776846284,38.301072309104875],[-121.02303443350107,38.301066770901095],[-121.02319454886322,38.301080153747726],[-121.0233671076136,38.301075437592935],[-121.02355716537116,38.30106501872055],[-121.02367057389472,38.301053621788796],[-121.02374038735903,38.30104495939127],[-121.02380331449976,38.3010300321623],[-121.02393974631192,38.30099136956101],[-121.02399035182292,38.30098561840412],[-121.02425018143583,38.30096963914876],[-121.02429216260357,38.30095763631981],[-121.02434820624387,38.30093647288855],[-121.02442153894695,38.300925092924004],[-121.02451935305807,38.30090738376684],[-121.0246014447186,38.300892618214576],[-121.02469909045186,38.30088726551556],[-121.02479337110435,38.30087295968106],[-121.02492457896801,38.30083392290655],[-121.02507897331307,38.30075559251818],[-121.02518799227775,38.30068270106956],[-121.02531675234611,38.30056743994801],[-121.02536445723798,38.300518743453964],[-121.02542576965142,38.30049454736501],[-121.0254920969329,38.30048585445162],[-121.02554784545141,38.300486325543304],[-121.02559845047637,38.300480573680936],[-121.02569659539873,38.30043848270677],[-121.02582061978887,38.30041517390044],[-121.02641283380281,38.30030036529979],[-121.0266508056821,38.30022584120999],[-121.02679586483167,38.30019307077489],[-121.02684294426398,38.30019039141192],[-121.02691420387711,38.300203349869136],[-121.02697322677211,38.300219281701985],[-121.02704938272677,38.30025666590768],[-121.02711205670887,38.30026026954239],[-121.02721326957264,38.30024876715426],[-121.02731099700196,38.3002372343778],[-121.02742133517108,38.30019527092169],[-121.02759634089875,38.300138393654336],[-121.02773260006977,38.300112082272115],[-121.02800026923765,38.3000316011036],[-121.0282939482849,38.29996029010905],[-121.02839540752912,38.299930581913216],[-121.02847090572907,38.29988796804946],[-121.0285325040766,38.29984249101404],[-121.02856958784996,38.299806088798825],[-121.0285841896526,38.29975711303609],[-121.02859805122455,38.29963434504544],[-121.0286180527336,38.2994443501867],[-121.02866642013697,38.299346587100466],[-121.02873697983674,38.299282648855154],[-121.02883163668307,38.29924055289496],[-121.0289294406336,38.29922317058279],[-121.02904288821384,38.299208693863484],[-121.02912850176634,38.299190879001166],[-121.02921407587213,38.29917613951099],[-121.02928413245806,38.29914926897748],[-121.02934398868858,38.29910377685568],[-121.02942130532305,38.299055354994536],[-121.02946158328544,38.2990402340727],[-121.02951558974094,38.299040688593806],[-121.02957457022771,38.29905972063443],[-121.02964400671708,38.2990785108897],[-121.02972588692793,38.29907919985801],[-121.0298447642582,38.29904963695864],[-121.02994655593703,38.29899524299304],[-121.03005722456683,38.29892853855216],[-121.03021625317403,38.29889316235133],[-121.03035740557222,38.29889124562684],[-121.03051568606936,38.2989111130106],[-121.03064733896824,38.298967497075544],[-121.03080670109266,38.29903611513384],[-121.03093271165343,38.29912331632536],[-121.03098957780458,38.29916979014299],[-121.03105212659929,38.2991826728472],[-121.03114097424233,38.29918341935311],[-121.03122638040061,38.29918106201309],[-121.03133621694751,38.299175805231776],[-121.03144605231081,38.29917055013788],[-121.03175606674681,38.29917933121092],[-121.03193538020943,38.29919009098083],[-121.0320608110595,38.29919114388134],[-121.03212713634042,38.29918244625178],[-121.03219354660347,38.29916754370929],[-121.03225634491089,38.299161893072494],[-121.03229462941609,38.29916531714506],[-121.03249804018216,38.29919791582808],[-121.03262683586532,38.29920792183117],[-121.0327713072932,38.299218388010964],[-121.03291403515529,38.299228865514195],[-121.0330464345364,38.299229975782154],[-121.03314768688914,38.299215364843114],[-121.03319156848501,38.299191375279705],[-121.03322018841445,38.29913633882696],[-121.03324740057717,38.29905660245436],[-121.03329202815848,38.29897734091077],[-121.03334673648828,38.29892562501967],[-121.03340107083037,38.29890169597202],[-121.03348315915072,38.29888695023299],[-121.03354935795758,38.29888750505446],[-121.03362065935323,38.298897356923845],[-121.03375252322931,38.298938280180614],[-121.0338132480186,38.29895732375924],[-121.03384460477841,38.298957586479354],[-121.03387264515966,38.298945464288074],[-121.03390076886157,38.29892716512997],[-121.03393954890609,38.298893851193675],[-121.03402785780335,38.298805344212745],[-121.0341101913854,38.29877239594872],[-121.03419235598362,38.29875180242787],[-121.03431268686059,38.298743555847224],[-121.0344189549993,38.29874444571417],[-121.03457400196059,38.298745743869006],[-121.03469072271037,38.298746720994075],[-121.0347882814976,38.29874753761457],[-121.034905210574,38.29873305635672],[-121.03498713189468,38.29873066527023],[-121.03506768028024,38.29870077625211],[-121.03514669440383,38.29865544145994],[-121.03520140114836,38.29860372469012],[-121.03524437298798,38.29851794116468],[-121.03529646012854,38.29840200057073],[-121.0353966258077,38.2982092418788],[-121.03544477605203,38.29812693503462],[-121.03549952510443,38.298072115691554],[-121.03555941560522,38.29802354581035],[-121.03563279243563,38.29800869776636],[-121.03570782660168,38.298000070922015],[-121.0358921976035,38.29802322486593],[-121.0361251009355,38.298064989218354],[-121.03625729133078,38.298081553977],[-121.03639835998453,38.29808580773022],[-121.03654121096008,38.298087001338516],[-121.03667373275775,38.298078854160686],[-121.0368377391387,38.29806168936011],[-121.03705732043218,38.29805767437129],[-121.03726114546518,38.298059376237475],[-121.03743199411775,38.2980515490657],[-121.037595958949,38.298037456804245],[-121.03778597043619,38.29802978903749],[-121.03788883754335,38.2980244678797],[-121.03796917512327,38.29801003499751],[-121.03803570737864,38.29798587580916],[-121.03809530700839,38.297958911828665],[-121.03819323602556,38.29793191165161],[-121.03828228613314,38.29791755122094],[-121.03841282240316,38.297927565289925],[-121.0385379216585,38.29795332261922],[-121.03864560345772,38.29797860486904],[-121.03873590171574,38.29800096905789],[-121.03882794176349,38.29802337382067],[-121.03893420888953,38.298024259526784],[-121.03902654048859,38.29802502900473],[-121.03914359168047,38.298001290166255],[-121.03930783921916,38.29796591704253],[-121.039402446859,38.29792688782941],[-121.03947627602092,38.297878075281794],[-121.03965553060529,38.29776321809338],[-121.03970982399663,38.297742031783244],[-121.03977610691362,38.297736405184786],[-121.03985093340722,38.29774320679387],[-121.0399082551855,38.297756040267494],[-121.03997068221642,38.29777819936239],[-121.0400366776199,38.297793851906945],[-121.04009570144773,38.29780977702093],[-121.04017235407075,38.29781041506759],[-121.04026294104203,38.29781116903629],[-121.04033627508147,38.29779942224624],[-121.04044116659297,38.297772833076955],[-121.04057082161528,38.29771866347603],[-121.04059926978336,38.29767597912608],[-121.0406000098832,38.29762073416628],[-121.0406202026083,38.29754401439823],[-121.04065578562331,38.297489032287984],[-121.04072927770714,38.2974652862262],[-121.04077133678196,38.29744710133788],[-121.04085370497714,38.29741104489753],[-121.04093275521309,38.29736262982388],[-121.04103839264835,38.2972804411458],[-121.04113742365296,38.29717106694253],[-121.04123654147634,38.29705518508731],[-121.04133047398534,38.29693618337852],[-121.04140333647203,38.29682933832363],[-121.04156340663259,38.29658525564494],[-121.04173380414953,38.296350512894264],[-121.04190918120558,38.29613399016788],[-121.04203196640599,38.29594177332243],[-121.04226760095851,38.295648861111104],[-121.04239856328678,38.29549652824353],[-121.0425079581325,38.295393417531656],[-121.04261529140052,38.29531434433002],[-121.042692389833,38.29528134564602],[-121.04275190765239,38.295260200402275],[-121.04283087165142,38.295217962800905],[-121.04290465210282,38.29517258023385],[-121.04297170980746,38.29510860437004],[-121.04306157651746,38.29503279129631],[-121.04315642356906,38.29497522539485],[-121.04327732036602,38.294924054103724],[-121.04337536212691,38.29488815207142],[-121.04349509532578,38.29479372104831],[-121.04359387488422,38.29470254954069],[-121.04364574524199,38.29460170486371],[-121.04367160898909,38.294491392871876],[-121.0436637558448,38.29442715298351],[-121.04363857001584,38.294356234024086],[-121.0435893230769,38.29426073012861],[-121.04354684103963,38.294180413375905],[-121.04351322737104,38.29408814280917],[-121.04352179752175,38.293968404261925],[-121.04356329326096,38.293861653591776],[-121.04362581982467,38.293745467164506],[-121.04374732716052,38.29364830279621],[-121.04378950677184,38.293620863525604],[-121.04385586248696,38.29360938641088],[-121.04406315783412,38.293611105133834],[-121.04417476790604,38.29360277604833],[-121.04422192514977,38.29359388560182],[-121.04425692959482,38.29358181774534],[-121.04433966465594,38.293517971958636],[-121.04446971447582,38.29343323744198],[-121.04458445923885,38.293320584209454],[-121.04468639198068,38.29325415212577],[-121.04483025880369,38.293178454452026],[-121.04494787129033,38.29311179435883],[-121.04498320128205,38.29307537155358],[-121.04500658381552,38.293020288915876],[-121.04500727945924,38.29296811936589],[-121.04500457353342,38.29290974489699],[-121.04500534678623,38.292851755109155],[-121.04510777041936,38.292748253637],[-121.04535811701308,38.292526168151646],[-121.04549595136046,38.29238006824386],[-121.0456384819863,38.292273795526256],[-121.04579138003514,38.29217381400788],[-121.04597932237134,38.29205866326527],[-121.04612861348893,38.29196790757465],[-121.04636504236359,38.29187476781225],[-121.04652607609337,38.291817746587476],[-121.04659976733105,38.291778538623326],[-121.0466350994186,38.29174175947939],[-121.04663558809517,38.29170504810398],[-121.04663620029221,38.291659057316636],[-121.04664199848293,38.29161618516762],[-121.04668494575294,38.29153072710365],[-121.04675252884033,38.29142693705682],[-121.04688460265466,38.291320604316454],[-121.04698628857327,38.291272345280746],[-121.04714727917889,38.29121842563671],[-121.04734298598216,38.29117404690992],[-121.04749494374143,38.29114441047275],[-121.04760829300304,38.29113606453879],[-121.04780694908108,38.291131883451165],[-121.04791847424428,38.291129700694924],[-121.04812426575795,38.29111286502221],[-121.04825661141719,38.29111706119286],[-121.04833815910409,38.29114209078912],[-121.04838834640799,38.2911672191801],[-121.0484192949169,38.29119803848484],[-121.0484477632072,38.291284415392255],[-121.04846221845179,38.29137652726108],[-121.04846998760603,38.29144730139529],[-121.04847270181233,38.29150534698478],[-121.04850668313313,38.29157015977919],[-121.04854601360454,38.29162573446968],[-121.048637931124,38.29165705589082],[-121.04874402367498,38.291670288284095],[-121.04896034810132,38.291647687394],[-121.04909310262897,38.29162099324292],[-121.04921025962439,38.291588320618324],[-121.04929213145877,38.29158899569386],[-121.0494121594695,38.29160234237141],[-121.0494691979067,38.291636451333126],[-121.04953465701297,38.29169224017065],[-121.0496000361568,38.2917542347848],[-121.04968137876028,38.29179472340959],[-121.04975255219537,38.29181384471532],[-121.04984167791456,38.29179294165932],[-121.04994854600282,38.291747826410685],[-121.05006643555204,38.29165990791863],[-121.05014178942977,38.29162653228327],[-121.05024626410821,38.291630497464],[-121.05030860517574,38.29165879997747],[-121.05035502751836,38.291705178147566],[-121.05038220673703,38.29175757636415],[-121.0504315044317,38.29184997491366],[-121.05047565606871,38.29193615161953],[-121.05051178613637,38.29197044464701],[-121.05059694211258,38.291986248943815],[-121.05065794997755,38.291983648468204],[-121.05072090072176,38.29196598787545],[-121.05078402104972,38.291935615691195],[-121.05085754521552,38.29190875893465],[-121.05094447834998,38.291921833385814],[-121.05101387507172,38.29194368530508],[-121.05107950049803,38.291987118436644],[-121.05114492235067,38.2920460097285],[-121.05117935079824,38.29207718665645],[-121.05145652152594,38.292195843174326],[-121.05173862854282,38.29233648074184],[-121.05236669728953,38.29266361582849],[-121.05251058951976,38.292716971761934],[-121.05261441574014,38.29277000013225],[-121.05266432651429,38.292816405118664],[-121.05278232797319,38.292983179851085],[-121.052821943961,38.29301747375187],[-121.05289992939768,38.29304867820516],[-121.05296069302162,38.29306460922619],[-121.05300772725349,38.293064995516936],[-121.05309316526922,38.293059519525755],[-121.05323588382721,38.293069971873],[-121.05335231430223,38.29309221034805],[-121.05344082916251,38.293117651171734],[-121.05347542828844,38.29313611405259],[-121.05350613490347,38.29318546561344],[-121.05353684079876,38.29323478833043],[-121.05357078654845,38.293302700287036],[-121.05361976288025,38.293419808973596],[-121.05367708532964,38.293564445423854],[-121.0537270360395,38.29360774838603],[-121.05378946030028,38.29362989996569],[-121.0538902967978,38.29364583048204],[-121.05398262291179,38.29364658798501],[-121.05408863781417,38.293665992434825],[-121.05414247716729,38.293678792970475],[-121.0541857456947,38.293700428632846],[-121.05423066913926,38.29372858703429],[-121.05425465449022,38.293759346734944],[-121.05426992444426,38.293790364687894],[-121.05429532585384,38.29384582403659],[-121.05432052527786,38.29391641005253],[-121.05434754507922,38.293981163989834],[-121.05437845677352,38.29401505622444],[-121.05440782703742,38.294033832706546],[-121.05450132715289,38.29407749244744],[-121.05462083706186,38.29413064578625],[-121.05467106810343,38.29415269691482],[-121.05474540774223,38.2941961993723],[-121.0549286019102,38.29430822822594],[-121.05509778235249,38.29442599075384],[-121.05523755001943,38.29452838191682],[-121.05551526040568,38.29473935615051],[-121.05587083347973,38.294991138581416],[-121.05605371042353,38.29512752132654],[-121.05619830301349,38.295260513774274],[-121.0563190277164,38.29535385020862],[-121.05652981938208,38.295487383974006],[-121.05663693453887,38.29555586752369],[-121.05676856565472,38.2956149683765],[-121.05690014987232,38.2956774732882],[-121.05700074120962,38.295712291442285],[-121.05708217268803,38.29574659697172],[-121.05718308989978,38.295756675536914],[-121.05729968506785,38.2957669101143],[-121.05744521064254,38.29582919863312],[-121.05753515071366,38.29587900622716],[-121.05766155158386,38.29593839214064],[-121.05774306252269,38.29596687517296],[-121.0578243332387,38.2960135359415],[-121.05790199712393,38.29606942058073],[-121.05802467625618,38.29614698156883],[-121.05820641720288,38.29623771073512],[-121.05836523802407,38.29634917912518],[-121.05845335577467,38.296405175780585],[-121.05852623889548,38.29642738133645],[-121.05858336443997,38.296455307904644],[-121.05860726586454,38.2964925760783],[-121.05861695555556,38.296550677425195],[-121.05864782526547,38.29658800067531],[-121.05873436536969,38.2966316001251],[-121.05908262550439,38.29677860827737],[-121.05914327173517,38.296803817274515],[-121.05919890036557,38.29681319660112],[-121.05927202721988,38.29681689597787],[-121.05931537599784,38.29683268244574],[-121.05936172523971,38.296885234874594],[-121.05938048652494,38.29691595087494],[-121.05945701684749,38.29692582850702],[-121.05958937276854,38.296930011662745],[-121.05962944018512,38.296930338415386],[-121.05974007709943,38.29699645851528],[-121.05980756266409,38.29703166282658],[-121.05990431045758,38.29709390816376],[-121.05999891787556,38.29718667190356],[-121.06006022141058,38.297294595138716],[-121.06011670622598,38.29737161429514],[-121.06023678669348,38.29751470117718],[-121.06039181414472,38.2976501625757],[-121.06058211764146,38.29788548131072],[-121.06073689446664,38.29804016231813],[-121.06099384771561,38.29824202773356],[-121.06132013861992,38.29847090273496],[-121.06160865867092,38.298657234110735],[-121.0618608445502,38.29882437678666],[-121.0620444525854,38.29890654902632],[-121.06225295636605,38.29895012151452],[-121.06261953669004,38.29902998951204],[-121.06321194311792,38.299161450922256],[-121.06359579733704,38.29925279875992],[-121.06371217046208,38.29928051554121],[-121.06385666766049,38.299289242003994],[-121.06403948840483,38.29929860637585],[-121.06435102614725,38.29932414591841],[-121.06455455522298,38.29934878148374],[-121.06467102631588,38.299368949245164],[-121.0647542985496,38.299396398289325],[-121.0648409027216,38.29943554396249],[-121.06489973587263,38.29946658489887],[-121.06494806406711,38.29950163082138],[-121.06501038158264,38.29953269905256],[-121.06506433951833,38.29953689878633],[-121.06512192710807,38.299529814116205],[-121.06518519337948,38.29948812140834],[-121.06522049082724,38.299453725567645],[-121.06529356646179,38.299328000249],[-121.06537759937697,38.29916359062807],[-121.06545694418654,38.29909146334102],[-121.0655390755472,38.29907290679978],[-121.06561224322976,38.29907349968388],[-121.06579681005732,38.29908254658316],[-121.0659970022545,38.299095838768515],[-121.06617644015788,38.29909729197367],[-121.06637633486325,38.299133235722806],[-121.06649469833796,38.299142076131915],[-121.06664063785337,38.29917382037707],[-121.06677657239929,38.299171131243625],[-121.06688831835675,38.299152813400525],[-121.06702679518487,38.29908871505286],[-121.06715342681862,38.298997747968414],[-121.0673359060343,38.298899351166675],[-121.06760454612207,38.298740524894406],[-121.06773719647727,38.29872237525767],[-121.06788353344999,38.29872355820859],[-121.06802464524992,38.29872469874464],[-121.0681065732273,38.29872159859089],[-121.06824853348499,38.29865752694376],[-121.0683576916912,38.29857017962943],[-121.06844559582001,38.29850946209785],[-121.06870308313276,38.298404089601355],[-121.06881004738362,38.298351406104246],[-121.0688944177685,38.29829442105714],[-121.06899655585597,38.2982108057521],[-121.06916414806264,38.29805118707453],[-121.06931780204695,38.29789142774116],[-121.06945428854084,38.29771197783514],[-121.06952890195564,38.297601367214014],[-121.06955831811474,38.297482838529504],[-121.06955966478856,38.297379186438576],[-121.06956095792559,38.2972796547403],[-121.06956200565546,38.297199011625466],[-121.06959261850172,38.29712237111832],[-121.06965577996802,38.29708855553436],[-121.06974542247505,38.29702782223709],[-121.06993899426107,38.296879725856606],[-121.07008219244452,38.29671990824728],[-121.07023121672772,38.29651378493693],[-121.070358635106,38.296361366078905],[-121.0706047151214,38.296060270088276],[-121.07082341263781,38.295720841196115],[-121.07103091378787,38.295438629438614],[-121.07114419303785,38.295301553884094],[-121.07138334665305,38.29513083796912],[-121.0716818270529,38.2949530197343],[-121.07189231319482,38.29484316989321],[-121.07203948953291,38.294779137469995],[-121.07216719884921,38.29473828933743],[-121.07230860290525,38.2947160850307],[-121.07246926477559,38.294686814560905],[-121.07262474805717,38.29465373996552],[-121.07279093635837,38.29460119851026],[-121.07304800341329,38.29452670667356],[-121.07322508726415,38.29443992792234],[-121.07338619646801,38.294376004878735],[-121.0735228675791,38.29431564661561],[-121.07363191356347,38.29423587300162],[-121.07367108214817,38.294170968959534],[-121.07370527095335,38.294086804613904],[-121.07371243351255,38.29393720355217],[-121.07376452210518,38.29354664309217],[-121.07378098914793,38.29335112196146],[-121.07387002308481,38.29320217940972],[-121.0739794632831,38.29309184395059],[-121.07411677575834,38.292981734002254],[-121.07425015797888,38.29290591569408],[-121.07454090869044,38.29278572324702],[-121.0748141948534,38.29266879363278],[-121.07509812653333,38.292536873631576],[-121.07533308093582,38.29241999209493],[-121.07555947885047,38.292291371837656],[-121.07572107492109,38.292189006234935],[-121.07586231322546,38.29204424200447],[-121.07599429756414,38.29194163779549],[-121.0761064737699,38.29188898944005],[-121.07622347918267,38.291866942559864],[-121.07641897073955,38.29183794569132],[-121.07664437682001,38.291785873078176],[-121.07685425011987,38.29172233666229],[-121.07707432701609,38.29167810181727],[-121.0772401571179,38.29165265542337],[-121.07740574296787,38.29164607215102],[-121.07755564676498,38.29163971995074],[-121.07773685774268,38.29163740724803],[-121.07790582672123,38.29163875861366],[-121.07823559621883,38.29159916186998],[-121.07837196186176,38.29156180685945],[-121.07849453743313,38.29151302860091],[-121.0785684415954,38.291455953884146],[-121.07863262931963,38.2913414631891],[-121.07867780654173,38.29121517794498],[-121.07872268374307,38.29111220435197],[-121.07881489252294,38.290986294829644],[-121.07909311178983,38.29062019325234],[-121.07915695336342,38.290532501951745],[-121.07919636087497,38.29044837594043],[-121.07920883436455,38.29029126735499],[-121.0792373797463,38.29010339269636],[-121.07927625925366,38.28978928408069],[-121.07931177293872,38.289601465958036],[-121.07935689528446,38.289479271129835],[-121.07942745830813,38.289410854535724],[-121.07956580802065,38.28935429372893],[-121.07979125267643,38.28929842608412],[-121.07987864226317,38.28927611214968],[-121.07995741904776,38.28924620492444],[-121.08010864770596,38.289136197243394],[-121.08036895955941,38.288942619655444],[-121.08053581544756,38.28883650011864],[-121.08069923655879,38.288726588908084],[-121.08084469773503,38.2886587686113],[-121.08116478980973,38.28855765802485],[-121.0812925356684,38.288512680309594],[-121.08142908750452,38.288460221083945],[-121.08155161203297,38.288414843821464],[-121.08167974885396,38.28833933385713],[-121.0818658123248,38.28822960135576],[-121.08211328329385,38.28808567645533],[-121.08228038281814,38.287960360439705],[-121.08241742533495,38.287869459839364],[-121.08251614695854,38.28777825324945],[-121.08262024330551,38.28767541970498],[-121.08272781995115,38.287572943494844],[-121.08281241269921,38.28749672730312],[-121.08296363439877,38.28738671770175],[-121.08309216334526,38.28728031491908],[-121.08329115266672,38.287113017677434],[-121.08345331032598,38.28696497821434],[-121.0835820836893,38.28683935568527],[-121.08367572737403,38.286736438136344],[-121.08376439007343,38.28661425797254],[-121.08386872569696,38.28649253291763],[-121.08398137803408,38.28640143760399],[-121.08412334663198,38.286333584595184],[-121.084263038164,38.28630756292489],[-121.08436904274622,38.286327627768],[-121.08448525258548,38.28636699470406],[-121.0845580191512,38.28639813533729],[-121.0846494010216,38.2864719598108],[-121.0847752826418,38.28657250191471],[-121.0849007688142,38.28670393423146],[-121.08502475801991,38.28681613157272],[-121.08513176889956,38.286893869860755],[-121.08521812781494,38.28695189150184],[-121.08529602127196,38.28699095359941],[-121.08535325491283,38.287010629697896],[-121.0854507502558,38.287015164423444],[-121.08552913126111,38.287015786119035],[-121.08561656429981,38.28698970597328],[-121.08568498730074,38.286951805381],[-121.08576942722087,38.286887256375046],[-121.08584346520749,38.28681886348987],[-121.0862681574202,38.28630048851301],[-121.08640398853942,38.286167339370635],[-121.08651673346185,38.28606868902298],[-121.08665386861378,38.285969902947514],[-121.08680120718856,38.285890392552204],[-121.08694326947504,38.28581498712695],[-121.0870606043558,38.285766129574384],[-121.08718351093904,38.285690215412245],[-121.08727660755815,38.28562952314059],[-121.08740125014768,38.285553950428834],[-121.08771513424944,38.285391344334414],[-121.08801866157054,38.285221076931],[-121.08813579907111,38.285187678342055],[-121.08830678619013,38.28516604625394],[-121.08845319643623,38.28515929561461],[-121.08856476649935,38.28515262613921],[-121.08862930846385,38.28514558482318],[-121.08867648501216,38.28513428720148],[-121.08870653308522,38.28510019962406],[-121.08873165156172,38.285042732922044],[-121.08873248120909,38.284977520923604],[-121.088727614229,38.28481239232878],[-121.08874794393839,38.284720560892744],[-121.0887888342258,38.28465566731812],[-121.08887196345586,38.28455678065525],[-121.08898533976047,38.284408019226696],[-121.08907946022912,38.28426665617191],[-121.0891201548764,38.28421719281103],[-121.08916941292533,38.28417913697711],[-121.08934867792517,38.28405423766813],[-121.08953477086762,38.283940374229175],[-121.08967662802058,38.283880395748945],[-121.0898023795431,38.283854285286694],[-121.08991046393781,38.283847587909506],[-121.09003238639283,38.28384855026639],[-121.09013848940803,38.28386070141295],[-121.0902981940629,38.28390419500296],[-121.09065103862353,38.28396464374869],[-121.09077818654485,38.28396564652988],[-121.09092812231096,38.283955488065274],[-121.09103989060473,38.2839330291436],[-121.09117807251785,38.283888122881386],[-121.09135302256782,38.28382840320786],[-121.09170815804454,38.28370831601408],[-121.09184967767108,38.283674776935996],[-121.09190715641594,38.28367522967685],[-121.09193623923598,38.28367915431696],[-121.09205844465205,38.283695643223545],[-121.09219415408312,38.28370838329234],[-121.09238898615548,38.283729138355724],[-121.09254888657806,38.283757170567796],[-121.092635973961,38.28375785598584],[-121.09270588847653,38.283739183261375],[-121.09274996703137,38.28369729678678],[-121.09277885634167,38.283616874632905],[-121.09285070700656,38.283445128180304],[-121.09291588938649,38.28324998638017],[-121.0929364078697,38.28314269775731],[-121.09292364299313,38.283050276427915],[-121.09285204223502,38.28292715909298],[-121.09277458493179,38.282853779579064],[-121.09274048188459,38.282795845115125],[-121.09274648502354,38.28273446401017],[-121.09277159527642,38.28267732433998],[-121.09286318606412,38.28259739465642],[-121.09295612755695,38.28254834105474],[-121.09307364948421,38.2824840479794],[-121.09319688183832,38.28238135563563],[-121.0934280576865,38.282145313654546],[-121.0935124373451,38.28208452176912],[-121.09361950662421,38.28202014686406],[-121.09374747618244,38.28195593435103],[-121.09392764866115,38.28189592124689],[-121.09409363996078,38.28185535000248],[-121.09422635233278,38.281829261526646],[-121.09432756307775,38.28181495362136],[-121.09441155522227,38.28178472175536],[-121.09464078509181,38.281702081577855],[-121.09495908040087,38.281601275799595],[-121.0951003994144,38.28158316306367],[-121.09522222498474,38.28159167161321],[-121.09531753275829,38.281630862691806],[-121.09540950345345,38.28165835789197],[-121.09571415303033,38.281810405954786],[-121.0959272714219,38.28190027922883],[-121.09604014314291,38.28192793782028],[-121.09613245458975,38.28192866157488],[-121.09623874484731,38.281925732595546],[-121.09632747762726,38.28193397965066],[-121.09640904780916,38.28195760325683],[-121.0964710229953,38.28201575595049],[-121.09660745658188,38.2821088153198],[-121.09664193997558,38.28213690232012],[-121.09673527080389,38.28219494288771],[-121.09679250790052,38.28221428449794],[-121.09686561348398,38.282218618538586],[-121.09690393112737,38.282218918695946],[-121.09696687167718,38.282200546446454],[-121.09708416667665,38.28215373979815],[-121.09719443607335,38.28211171055003],[-121.09729737853928,38.28209810010038],[-121.09737569486052,38.28210351878328],[-121.09746074034999,38.2821278553509],[-121.09753172664966,38.282162049579625],[-121.09764247949751,38.282219896044936],[-121.09784787989202,38.282369458834566],[-121.09795466580147,38.28246571800032],[-121.09809220544038,38.282609586208295],[-121.09826559480148,38.28281140251801],[-121.09838445641145,38.28291700997374],[-121.09844469646274,38.28297481738458],[-121.0985105831845,38.282999002448484],[-121.09858872145236,38.2830188363246],[-121.0986495599611,38.28302892298736],[-121.0987523232399,38.283029726345056],[-121.09882565616226,38.28301588305701],[-121.09899568449879,38.282931399359185],[-121.09959999906728,38.28266426441861],[-121.0998064798691,38.28258967523123],[-121.09999488422996,38.282567475382024],[-121.1001342218427,38.28256856302049],[-121.10023698333482,38.282569365045944],[-121.1004176451037,38.28260886211113],[-121.10070749678017,38.28269213044804],[-121.10099056086389,38.2827609286113],[-121.10114149210233,38.28280983163836],[-121.10130960118383,38.28287806155488],[-121.10153158776454,38.28295599507887],[-121.10198072396336,38.28311670204935],[-121.1021248715346,38.28315113352829],[-121.10225195794897,38.28315692869094],[-121.1023984401777,38.2831439833435],[-121.1025556188645,38.28311156752101],[-121.10276552228562,38.283041806092214],[-121.10286221054012,38.28297116245946],[-121.10291187721009,38.28289982224263],[-121.10296172130779,38.28281439751392],[-121.10305853054095,38.282734143656604],[-121.10323539980612,38.282659317078064],[-121.10343665050162,38.28258468073781],[-121.10432555864922,38.28226275536653],[-121.10507987576577,38.281977536963275],[-121.10568199679186,38.2817439936859],[-121.10646812449927,38.281421254642666],[-121.10668673093325,38.28135119593785],[-121.10692942072883,38.281305377913796],[-121.10713025124758,38.281264013677436],[-121.10729955000892,38.28123684847058],[-121.10752278146724,38.28121487810594],[-121.10771448807667,38.281206750990926],[-121.10870064490376,38.281185545300225],[-121.10908248965299,38.2811552167846],[-121.10936709426883,38.28110043538164],[-121.10951207123371,38.2810679158775],[-121.1096329556979,38.28101187093585],[-121.10982578753607,38.280913131025734],[-121.1112000541514,38.28007521756766],[-121.11135780854327,38.2799954266957],[-121.11151004518351,38.27993926381218],[-121.11164973097085,38.27991186403244],[-121.11178936149452,38.27988891239259],[-121.11193421395411,38.27986633054562],[-121.11202489923247,38.279857418073334],[-121.11221341172227,38.27982558818492],[-121.11254016439284,38.279742291492994],[-121.11263793395646,38.27972382207985],[-121.11282012974706,38.27963941185374],[-121.11288696299604,38.279587394514905],[-121.11307868965088,38.27943646676904],[-121.11326849949516,38.27929961072272],[-121.11362267092564,38.279111816298595],[-121.11370709746966,38.27904554610047],[-121.11378659096724,38.27895553927501],[-121.11389070195217,38.2788468284659],[-121.11400641788026,38.2787856022422],[-121.11426506423264,38.27871619467441],[-121.11442228086302,38.278679288233484],[-121.114562438224,38.2786134446113],[-121.11467856074776,38.27851924184658],[-121.11483666523941,38.27841061509405],[-121.11497265284294,38.27825925718456],[-121.11526417997591,38.2780658425419],[-121.11550339012769,38.27787718625067],[-121.11569812499131,38.277764034784234],[-121.11595026879034,38.27765645848006],[-121.1160951720945,38.277629093376376],[-121.11625906062349,38.2776159333507],[-121.11648198693062,38.27761764205024],[-121.1166892376789,38.27761923021202],[-121.11684586461313,38.27763004118486],[-121.11697793585165,38.27765472357968],[-121.11708016153528,38.277698426252165],[-121.11718226924357,38.277751711890396],[-121.117303474103,38.27780997618242],[-121.11751338837587,38.2778781736681],[-121.11778809479895,38.27791836338383],[-121.11805420738642,38.27794923337517],[-121.11830825011675,38.277970069717824],[-121.11854301737385,38.27800033937799],[-121.11976520684995,38.27818610886873],[-121.11991643352312,38.27821129180375],[-121.12008014561417,38.278212541472044],[-121.12037099697534,38.278214761062756],[-121.1208115084353,38.278227732350416],[-121.12115629402153,38.2782348361194],[-121.12131304085547,38.27823603093806],[-121.12151019214926,38.278209031125684],[-121.12167942046311,38.278186649861006],[-121.12185051133743,38.2781543138887],[-121.12210304808504,38.27815623725209],[-121.12239389813736,38.27815845173066],[-121.12275104332359,38.27815188781623],[-121.12312921062939,38.278135544680595],[-121.12338389391745,38.27810419989143],[-121.12369233745366,38.278092127501054],[-121.1239103880011,38.27806528065199],[-121.12415311437151,38.278014623141466],[-121.12441871458996,38.277945243022195],[-121.12473824756677,38.27788072230775],[-121.12501743031133,38.27783994894592],[-121.12536093297742,38.27780924686654],[-121.12571320399181,38.277773831801554],[-121.12607580738205,38.277748078842066],[-121.12645774252465,38.27770807998679],[-121.12690249478031,38.277658919427914],[-121.12728437044704,38.27762372287989],[-121.1275075311354,38.27760619007682],[-121.12768407282626,38.27755499541394],[-121.12787321064336,38.27747061321673],[-121.12810461106021,38.27734846411386],[-121.12830466115389,38.27722605047873],[-121.12848201221577,38.27710829741925],[-121.1286771814234,38.27695736918524],[-121.12888187289336,38.27673956639092],[-121.12909747673804,38.276483757646375],[-121.12923906527479,38.27629878618701],[-121.12936120268998,38.27613769509864],[-121.12944142921845,38.27598556773645],[-121.1295282144166,38.27586710122907],[-121.12977649716326,38.27564484759365],[-121.12993508815985,38.27549364207076],[-121.13017907393888,38.27533827431103],[-121.1303423702505,38.275229666626004],[-121.13051408333254,38.27514514962934],[-121.13065944076031,38.275079655575844],[-121.13086076046194,38.2749953613344],[-121.13094510825485,38.27493385565461],[-121.13103165825429,38.27483427938944],[-121.1311238916798,38.27469698760883],[-121.13121647666225,38.274530866394116],[-121.13133895507082,38.27434094204251],[-121.13154577592039,38.27408986908753],[-121.13163749265935,38.27399513679708],[-121.13182545402728,38.27386304219287],[-121.13211888586476,38.27365070581056],[-121.13218875262315,38.27360381479129],[-121.13230852646359,38.27352342856281],[-121.13240012622683,38.27343830577175],[-121.13247981876022,38.273329396514534],[-121.13263740942126,38.27311606351464],[-121.13307233947829,38.2725804344692],[-121.13328083366945,38.272334175685494],[-121.13345845537108,38.27219236275373],[-121.13366555857083,38.27206073795341],[-121.13382983462816,38.27201427436512],[-121.13404780875986,38.2719918854982],[-121.1342585265581,38.27199346823918],[-121.13443964052661,38.27199482831238],[-121.13466417403116,38.272006124114306],[-121.13481550782103,38.272021676489594],[-121.13525233117599,38.272048624864595],[-121.13541069134345,38.27205942368334],[-121.13563359966983,38.27206109534071],[-121.13590532716283,38.27205832704225],[-121.13609886339893,38.272040555693806],[-121.1363084097872,38.2719947575816],[-121.13643072040966,38.27196203555201],[-121.13662459711762,38.2719157897442],[-121.13679920311563,38.27187898324676],[-121.13704189774654,38.271828626544334],[-121.13729155958035,38.27177799174136],[-121.13749077679266,38.2717221464627],[-121.13763083753965,38.27166140868492],[-121.13777601185924,38.271609992017396],[-121.13795304750876,38.27151589294276],[-121.138401273912,38.27129008006173],[-121.13935652756373,38.27086731294565],[-121.14089191234635,38.2689279505781],[-121.14380657089355,38.26673260193197],[-121.1448300744115,38.265330549542064],[-121.15019013634614,38.26388635280895],[-121.15117878043512,38.26382162772535],[-121.15456701345562,38.262288710804896],[-121.15465253403373,38.26225001682662],[-121.1553030973722,38.26195566715053],[-121.15642617239895,38.2619988063576],[-121.15744662133599,38.262045158374896],[-121.15999616048687,38.261917054909425],[-121.16020264658759,38.261845864974255],[-121.16027079519296,38.26180056722182],[-121.16033232535803,38.26175090043819],[-121.16097162560855,38.261137709472905],[-121.16122121315351,38.26094008575357],[-121.16135270344017,38.260864154241155],[-121.1614894170437,38.26078826148275],[-121.16166617493083,38.26071301660058],[-121.16184266550985,38.26066039591582],[-121.1619980336284,38.26062720091227],[-121.16217929981151,38.26061308698997],[-121.1623691786646,38.26060691475389],[-121.16247039392934,38.260588429336465],[-121.16305856875442,38.26047358061497],[-121.16324858456886,38.26045573841447],[-121.16340056234877,38.26041463663769],[-121.16352302589618,38.260365739289846],[-121.1636002683271,38.260312424417684],[-121.16365000718342,38.26022834648021],[-121.16366143981476,38.260143990564394],[-121.16368224636742,38.26000236592767],[-121.16370756529514,38.25992190000628],[-121.16378699495445,38.25983012834227],[-121.16384525988346,38.25976157273654],[-121.16392950921681,38.259704517449016],[-121.16400478023172,38.259670738704294],[-121.16414630919269,38.259629532243125],[-121.16533553763378,38.25933883804125],[-121.16552590845905,38.259290103322],[-121.16569220915011,38.25921477571738],[-121.16584793308319,38.259150686777815],[-121.16685767720183,38.25886999147196],[-121.16716528143724,38.25877234321216],[-121.16745708034989,38.25868622244762],[-121.16767195552772,38.258626346668656],[-121.16789062385699,38.25853969666254],[-121.16802183166304,38.25848709821559],[-121.16813540966176,38.25845326358706],[-121.16833461359315,38.25839324554265],[-121.16852506748563,38.258336955066184],[-121.16870154416847,38.258284681528856],[-121.16891146170482,38.25820175571952],[-121.16927531103349,38.25805851231945],[-121.16940843613229,38.25799046559046],[-121.16948540527058,38.25796012711171],[-121.16960759380194,38.25793423426446],[-121.16976496509474,38.25787770339178],[-121.1699451458061,38.25780623190623],[-121.17013608449204,38.25770773639358],[-121.17034613111657,38.25761346825859],[-121.17063340790095,38.25746587924249],[-121.17073698004202,38.25739352638928],[-121.1709670644573,38.25722251485642],[-121.17109540970803,38.25711601427178],[-121.17120812723063,38.25700561373641],[-121.17137094112032,38.25694775495728],[-121.17125305195864,38.27814300852718],[-121.18048161021851,38.27805768508066],[-121.18049213011533,38.278473616189004],[-121.18051267816439,38.2852889527452],[-121.19871520516196,38.28511685879041],[-121.19872176814553,38.288405080383264],[-121.19869709909027,38.29243288582147],[-121.20788061359005,38.29238525925691],[-121.20788773803645,38.29234086990427],[-121.20788776451968,38.29233578805199],[-121.20791007855738,38.288614663930254],[-121.20804696753669,38.28861394836683],[-121.21709480396838,38.288566294529176],[-121.21709481243366,38.28856510178296],[-121.21715797100349,38.27949064159134],[-121.21729484131168,38.279489915041566],[-121.21739596502435,38.2794893781118],[-121.21945717898481,38.27947841561165],[-121.21945718740972,38.27947722286602],[-121.21946218607341,38.27875561652147],[-121.21946973349021,38.27766603167661],[-121.21960660028884,38.27766530238243],[-121.21970772140853,38.27766476342499],[-121.22621520405865,38.27762989758513],[-121.22636151145653,38.2776291092221],[-121.22636151862343,38.27762791646846],[-121.22636198057342,38.27754852618102],[-121.22636619959749,38.276906310961614],[-121.22637651262319,38.27533658840118],[-121.22651336502258,38.275337506709214],[-121.22661466272385,38.275338186333194],[-121.23557554976867,38.275397954240425],[-121.23556470537126,38.277387755716816],[-121.23570158726437,38.27738434884354],[-121.24011114966703,38.277274514014586],[-121.24011501779194,38.2765563594085],[-121.24012109638026,38.27542800610991],[-121.24017334351286,38.275428350488184],[-121.24025795141442,38.275428908116844],[-121.24035996588671,38.27542958038509],[-121.24382445140813,38.27545235750506],[-121.24399862920714,38.27545349988082],[-121.24401404679635,38.27717903885817],[-121.24402447033086,38.27717909459865],[-121.25053251591206,38.27722164169776],[-121.25050395037782,38.27995190659295],[-121.25049638630841,38.28067483794291],[-121.25049635477008,38.280677852168814],[-121.24817860320513,38.28065995735625],[-121.24806626615515,38.28065908869367],[-121.24792935934308,38.280658029917156],[-121.247963035946,38.28440384177689],[-121.25026250115279,38.284421599606965],[-121.2503117162688,38.28987554673413],[-121.25146153629066,38.289884407059326],[-121.25147237413263,38.29108313065855],[-121.25147768084162,38.291670109256614],[-121.24451421801524,38.29552043471763],[-121.24427531034519,38.295652519734475],[-121.24425778516711,38.29831492400566],[-121.2442530384932,38.29903598284409],[-121.23803085703378,38.299104548257105],[-121.22638340693321,38.30554164376938],[-121.22622813558904,38.30562753987171],[-121.22622592698016,38.305950647920255],[-121.22622099880745,38.30667175861715],[-121.22622099548688,38.30667227751872],[-121.22537122642487,38.30668102908668],[-121.22523524944742,38.306682429239686],[-121.21712728813195,38.31118259476606],[-121.21687004400499,38.31132535443898],[-121.21708726075434,38.32027347271687],[-121.21710474041721,38.32099343996046],[-121.19893152514412,38.3212776669785],[-121.18489633359542,38.32906053967909],[-121.1844091567358,38.32933063036641],[-121.18515225711089,38.33032611226933],[-121.1851566897548,38.3303309733786],[-121.18521813418663,38.330413564419594],[-121.18690100559178,38.33320874690867],[-121.1874703051796,38.333554962753574],[-121.18754773170754,38.33369556414075],[-121.18795890472622,38.334442207698984],[-121.18805338318835,38.334363138113126],[-121.1881377008002,38.33429257185441],[-121.1881832139844,38.33436724005668],[-121.18904526967258,38.33578146656689],[-121.18903117230882,38.33580396871437],[-121.18913357636247,38.335975845937355],[-121.18878766978162,38.33652797398025],[-121.19028532798228,38.33904158967534],[-121.1906191955541,38.340129900528964],[-121.189921666501,38.342497398716795],[-121.18988359630275,38.34259820593489],[-121.18980237463397,38.34280029367602],[-121.18977069278246,38.34287595344413],[-121.18969462379688,38.343126647400936],[-121.1896878113523,38.34319730243174],[-121.18961007724818,38.343398296508724],[-121.18952717367573,38.343599960546356],[-121.18946070296718,38.3438047003666],[-121.18943078525415,38.344061374290625],[-121.18911904588225,38.34759302372732],[-121.18913344368825,38.35030001813224],[-121.18913348395375,38.350304541908905],[-121.1891338123805,38.350318467856425],[-121.18913444977697,38.350332386965796],[-121.18913539505041,38.35034629472476],[-121.18913570219027,38.35045448505129],[-121.18683468270501,38.35046014834465],[-121.18682659319893,38.35123871174901],[-121.1683932541741,38.35158665182049],[-121.16825623815288,38.35158923201034],[-121.16825585076364,38.35146792347007],[-121.16825574191468,38.351161514569036],[-121.16826084199174,38.349103175442885],[-121.16826084342027,38.34910246192716],[-121.14999680827604,38.349444198255014],[-121.15004987983428,38.37925834641498],[-121.16845479596932,38.37931566004129],[-121.1684687436935,38.38461828673251],[-121.168469466296,38.38508337472434],[-121.16847337459528,38.39324628142392],[-121.1684734533213,38.39326983560309],[-121.16847503968363,38.393361817288344],[-121.16847866525274,38.39345376230631],[-121.16848432920612,38.393545643623234],[-121.16849203072117,38.39363743420529],[-121.1685017655832,38.393729103390434],[-121.16851353294854,38.393820625946375],[-121.16852732743688,38.3939119730042],[-121.16819685636696,38.39391408937574],[-121.15021312597786,38.393936403661215],[-121.15007602348648,38.39393656308633],[-121.15009899260188,38.40682649823843],[-121.13201668673108,38.40721554831414],[-121.09456937715933,38.40772608239855],[-121.07606987744977,38.40810247791767],[-121.07612637920062,38.411782228188876],[-121.03930242743853,38.41228373136268],[-121.03931511894493,38.41272332942524],[-121.03582776958282,38.4127673051608],[-121.03526093138397,38.41277444257397],[-121.02481091400598,38.412905536237496]]]},"properties":{"ZIP5":"95638","PO_NAME":"HERALD","Shape_STAr":2166052301.7,"Shape_STLe":262093.821058}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.5708719928289,38.18198569167106],[-121.57188477092349,38.18174018927068],[-121.57273819367889,38.18171843223605],[-121.57432713581154,38.18171833786819],[-121.57486215524658,38.181758124539726],[-121.57586759986773,38.1816053666688],[-121.57678525423144,38.18140932443562],[-121.57783048645318,38.18101432552183],[-121.57859304589746,38.180319154754464],[-121.5790408874574,38.179398484249674],[-121.57927420497676,38.17891454462347],[-121.5787685852965,38.17877041668013],[-121.57835768976406,38.17964103262118],[-121.57791040624811,38.18050759229275],[-121.57695895934908,38.1810774283301],[-121.57546289489872,38.18148937357571],[-121.57424053327543,38.18150376018007],[-121.57262690049058,38.181485193701036],[-121.57237171371301,38.18149904127144],[-121.57228381976847,38.18142990846307],[-121.57212301491903,38.181303425950944],[-121.56563659468463,38.17620093203201],[-121.55781139683039,38.17965099467481],[-121.55781102832171,38.17965115902103],[-121.55775601272202,38.17967591283424],[-121.55775564875033,38.179676081702034],[-121.5577011888353,38.17970158985693],[-121.55770082940063,38.17970176324639],[-121.55764694119132,38.179728018598254],[-121.55764658514684,38.17972819740585],[-121.55759328582225,38.1797551901119],[-121.55759293202671,38.17975537433323],[-121.55754023875487,38.179783096352324],[-121.55753989063761,38.179783285099745],[-121.55748781715162,38.179811730179395],[-121.55748747357137,38.17981192344847],[-121.55743603705619,38.1798410808451],[-121.55743569686611,38.1798412795323],[-121.55738491335424,38.17987114029961],[-121.55738457770113,38.17987134350851],[-121.55733446207293,38.17990190049756],[-121.55733412869093,38.17990210551675],[-121.55083906303437,38.183934520457235],[-121.53991698734312,38.18386426851472],[-121.54006487213681,38.18378398113296],[-121.54006772290207,38.18378243309903],[-121.5401305477052,38.183733667209715],[-121.540195700964,38.18368309351225],[-121.54019816485717,38.18368118087578],[-121.54024928265723,38.183624571060186],[-121.54030234304877,38.18356581047216],[-121.54030434895556,38.18356358790421],[-121.54034225045935,38.18350080650855],[-121.5403815604313,38.183435692942204],[-121.5403830485713,38.18343322777129],[-121.54040657346795,38.183366172849425],[-121.54043094931636,38.18329669435155],[-121.54043187356005,38.18329406116747],[-121.54044028840049,38.18322481354541],[-121.5404490104845,38.18315303477839],[-121.54044934062397,38.18315031724286],[-121.54044240421676,38.18308108582322],[-121.54043519000442,38.183009077686116],[-121.54043491749424,38.18300636315049],[-121.54041284007863,38.18293908565859],[-121.54038991187771,38.182869218342546],[-121.54038904428923,38.182866572600766],[-121.54031648917402,38.18273993374506],[-121.54029543050488,38.18266955406802],[-121.54027771847845,38.18261036315557],[-121.54027730306062,38.18260465983304],[-121.54027246302398,38.18253817544921],[-121.54026804149585,38.18247744755226],[-121.54026888823299,38.1824717699898],[-121.5402787427561,38.182405665895566],[-121.5402877528963,38.18234522585979],[-121.54028983669393,38.18233974872737],[-121.540314075005,38.182276022726974],[-121.54033625269558,38.18221771358882],[-121.5403416972003,38.18220715089753],[-121.54038638354382,38.182168536541596],[-121.54041063185392,38.182147583398695],[-121.54041879347412,38.18213743604472],[-121.54044614880458,38.182103425343676],[-121.54046541383627,38.18207947309171],[-121.54047121791207,38.18206836319439],[-121.54049067420414,38.182031121033305],[-121.54050437955837,38.18200488808197],[-121.5405076527765,38.18199314647575],[-121.5405186183873,38.18195381281635],[-121.54052634581608,38.181926095680446],[-121.54052698540127,38.1819140886147],[-121.54052913213887,38.181873835096745],[-121.54053064334889,38.18184548956412],[-121.54052863216486,38.18183357732264],[-121.5405218915953,38.181793648688995],[-121.5405171435378,38.18176551871147],[-121.54051254092671,38.18175406008031],[-121.54049711877474,38.181715663426075],[-121.54048625430426,38.18168861351388],[-121.54047920182076,38.18167796129991],[-121.5404555733771,38.18164226965801],[-121.54043891716225,38.18161711009087],[-121.54042188243183,38.181597233566606],[-121.5403382812059,38.18151181450364],[-121.54030545601928,38.18147827614981],[-121.5402860737772,38.1814491210885],[-121.54024191498684,38.181382694116444],[-121.54021696774223,38.181345167474184],[-121.54020429359979,38.18131379780109],[-121.54017541985075,38.18124232926732],[-121.54015910676559,38.18120195158094],[-121.54015352718227,38.18116932198131],[-121.54014081470261,38.18109498292427],[-121.54013363232288,38.181052981384376],[-121.54013531555512,38.18102007809834],[-121.54013915034201,38.18094513127747],[-121.54014131754312,38.180902783308156],[-121.54015021256154,38.18087061601754],[-121.54017047842528,38.180797324875066],[-121.54018192753875,38.18075591936029],[-121.54020973802747,38.18069392383492],[-121.5402290845448,38.180642966305165],[-121.54024193576177,38.180609118452466],[-121.54024325977583,38.180600199633204],[-121.54024977845044,38.180556288898806],[-121.54025498978267,38.18052118804388],[-121.5402543316793,38.18051221716643],[-121.54025109231824,38.18046810710927],[-121.54024850069524,38.180432804829245],[-121.54024587810504,38.180424059434586],[-121.54023297969815,38.180381049516065],[-121.5402226659303,38.18034665331151],[-121.54021816270622,38.18033840669985],[-121.54019599405987,38.18029780744356],[-121.54017827224723,38.180265351871085],[-121.54017202039356,38.18025784330057],[-121.54014125944664,38.180220904220405],[-121.54011666657652,38.180191370671075],[-121.54010886202381,38.18018483695203],[-121.54007043185385,38.18015266529868],[-121.54003972225361,38.18012695675264],[-121.54003060000427,38.18012159250995],[-121.53998567779357,38.18009517853337],[-121.53994977780147,38.180074068931276],[-121.53993025288338,38.18006492806806],[-121.53971473598153,38.17972072368405],[-121.539689498953,38.17968793799819],[-121.53967728735833,38.17967207244298],[-121.53966895946078,38.17966458527353],[-121.53964522399305,38.179643246743254],[-121.53962970409525,38.179629293132535],[-121.5396198559411,38.17962306111079],[-121.53959178460887,38.1796052988369],[-121.53957343299862,38.17959368608907],[-121.53956237490854,38.17958890414294],[-121.53953079517113,38.179575247541834],[-121.5395101836165,38.17956633378691],[-121.53949823997452,38.17956313924463],[-121.53946415222917,38.17955402293261],[-121.53944187825016,38.17954806550594],[-121.53942941021347,38.179546556204876],[-121.5393938296003,38.17954225089905],[-121.53937059159055,38.179539438173315],[-121.5393454236894,38.1795387537048],[-121.53914168952755,38.179524035080114],[-121.53912115470106,38.17952255111048],[-121.53903227850424,38.1795034516058],[-121.53892376392217,38.17948013204474],[-121.53890385766073,38.179475854225565],[-121.53873601089245,38.17941598511912],[-121.53864246646192,38.17938402458091],[-121.53857850204213,38.1793621705673],[-121.53856273027313,38.179359203822386],[-121.53847936540552,38.179343520490725],[-121.53841154890402,38.179330762431135],[-121.53839536692422,38.17933000207276],[-121.53830981680619,38.179325984346],[-121.5382402216333,38.179322715216955],[-121.53822411546375,38.17932418481382],[-121.53813896651288,38.17933195656957],[-121.53806972731351,38.17933827501797],[-121.53805420283454,38.17934192705196],[-121.53797201291663,38.1793612607258],[-121.53790524571578,38.17937696714548],[-121.53787537911336,38.17938674882579],[-121.53775852437595,38.17943678118553],[-121.53766634833725,38.17947624792968],[-121.53765525122263,38.17948320950102],[-121.5375622675337,38.17954154182869],[-121.53748018030456,38.17959303874642],[-121.53745988401376,38.17960854781775],[-121.53737287449383,38.17966549141776],[-121.53732462928144,38.17969706613898],[-121.53730261839512,38.17970696122163],[-121.53722641581454,38.17974121806657],[-121.53717195510198,38.17976570124577],[-121.53714810316184,38.1797724286145],[-121.53706551145609,38.17979572299645],[-121.53700650183501,38.17981236547429],[-121.53698153718173,38.17981572084813],[-121.53689505815495,38.17982734210014],[-121.5368332970294,38.17983564209253],[-121.53678282130878,38.17983788760671],[-121.53670935150879,38.17984479000528],[-121.53665802027683,38.17984961304055],[-121.53664727671604,38.17985217154098],[-121.5365871863801,38.17986648068282],[-121.53653769555717,38.17987826675947],[-121.53652767886165,38.17988225877073],[-121.53647164645605,38.17990458849854],[-121.53642550256406,38.179922977932534],[-121.53641651595558,38.17992828215823],[-121.53636625782842,38.17995794662019],[-121.53632484994817,38.17998238737245],[-121.53631716379321,38.17998884544871],[-121.53627419566088,38.180024948084686],[-121.53623879546427,38.180054691254725],[-121.53623264845089,38.1800621023493],[-121.53619826471152,38.18010355832697],[-121.53616995434199,38.18013769209403],[-121.53615967928968,38.180153389956395],[-121.53610181141818,38.18022812345485],[-121.53608332889269,38.18025199254561],[-121.53605824637651,38.18027442336013],[-121.53600989504943,38.18031766259222],[-121.53598644715909,38.18033863154617],[-121.53595680896954,38.18035728460957],[-121.5358996789459,38.18039323993927],[-121.53587197625679,38.180410674686726],[-121.53583868084615,38.18042498335149],[-121.53577451972745,38.18045255732167],[-121.53574339651136,38.180465933299054],[-121.53570746820363,38.180475458451525],[-121.53563819533913,38.180493824566355],[-121.53560461298423,38.18050272853347],[-121.53556713446854,38.180507184448594],[-121.53549487525846,38.18051577650422],[-121.5354598432914,38.18051994136162],[-121.5353841075723,38.18052096634963],[-121.53377143870904,38.18044456404249],[-121.53367498606232,38.18044664362183],[-121.53362442372526,38.18044773427732],[-121.53360183297634,38.18045138321419],[-121.5335298917154,38.18046300318039],[-121.53348034011343,38.18047100671072],[-121.53345889141157,38.18047769801212],[-121.53339061693089,38.18049899648197],[-121.53334356469541,38.180513674787996],[-121.53332390759414,38.1805232074923],[-121.53326136984619,38.180553533427634],[-121.53321825332067,38.180574441903154],[-121.53318202941287,38.18059688458037],[-121.5323722821786,38.18111788592153],[-121.53230142929729,38.18115587107712],[-121.53226787828739,38.18117385866939],[-121.5322472034842,38.18118118710994],[-121.53218974459432,38.18120155496344],[-121.53215274657835,38.181214670073814],[-121.53213077387885,38.18121905365005],[-121.53206971497038,38.18123123493733],[-121.53203038647946,38.181239081202946],[-121.53200777416004,38.181240387454594],[-121.53194497688557,38.18124401316514],[-121.53190451447827,38.18124634950405],[-121.53185930834891,38.181244725192926],[-121.53178334268968,38.18124535499817],[-121.53174180331945,38.181245699560165],[-121.53172479382897,38.18124821320008],[-121.53166713361153,38.18125673250973],[-121.53162629780212,38.18126276624285],[-121.53161010764977,38.18126757053188],[-121.5315551768458,38.18128387007367],[-121.53151630124711,38.18129540530628],[-121.5315014141473,38.181302355371834],[-121.53145090399786,38.18132593574267],[-121.53141515614581,38.1813426249891],[-121.53140202428948,38.18135151006767],[-121.53135746423217,38.18138165860344],[-121.53132593512905,38.181402991010565],[-121.53130240992256,38.18142295152197],[-121.53124874449342,38.18146320324736],[-121.53121213979928,38.18149065805589],[-121.53120228045113,38.181495815985244],[-121.53115044238915,38.18152293758112],[-121.53110834569162,38.18154496291348],[-121.53109749814917,38.181548692519],[-121.53104048418349,38.181568295866725],[-121.53099418047947,38.18158421587803],[-121.53098267991213,38.18158640140783],[-121.53092220249691,38.18159789528514],[-121.53087311479611,38.18160722388155],[-121.53086130974116,38.18160780008869],[-121.53079923958559,38.181610829054],[-121.53074882720179,38.18161328929908],[-121.53073706817413,38.18161223779185],[-121.53067528452081,38.18160671310649],[-121.53062509336063,38.1816022257156],[-121.53060204085651,38.18159822191522],[-121.53045244008389,38.18158594189851],[-121.53039586199162,38.18158129773192],[-121.53034960357265,38.181576855089844],[-121.53024652131852,38.18156695549416],[-121.53024645516486,38.18156694891809],[-121.53019008871945,38.181561535261835],[-121.53014398055375,38.181556460732786],[-121.5300411222277,38.181545141179804],[-121.52998478379392,38.181538941069455],[-121.52993863999191,38.18153321317489],[-121.52983632948494,38.181520512825315],[-121.52978000996852,38.181513521719616],[-121.52973408485482,38.1815071703266],[-121.52963185460908,38.18149303231915],[-121.52957582884936,38.18148528467386],[-121.52953003233799,38.18147829860474],[-121.52942822673994,38.18146276939163],[-121.52937230431301,38.1814542392052],[-121.5293266398331,38.18144661847465],[-121.52922524063928,38.18142969708253],[-121.52916949681175,38.18142039457304],[-121.52912402479173,38.18141214933861],[-121.52902293967551,38.18139381917602],[-121.52902288154073,38.18139380812763],[-121.52896746908002,38.181383760046536],[-121.52887675713588,38.18136635415504],[-121.5288514350276,38.1813612605616],[-121.52790285034658,38.181135913380785],[-121.52789877647847,38.18104512134591],[-121.52775095145138,38.18051354207739],[-121.52736064015986,38.180091134176365],[-121.52678261312307,38.17964941793819],[-121.5263672407369,38.17933638213199],[-121.52616106465216,38.17895110865022],[-121.52609367193826,38.17862132468336],[-121.52612019819753,38.17829192820886],[-121.52633313932931,38.17765199639195],[-121.52635865122211,38.17721275962082],[-121.52629101452163,38.17691968835501],[-121.52604982005529,38.176571011200714],[-121.52561319130821,38.17605641884521],[-121.52524318401785,38.17572538797791],[-121.52496721525404,38.1753765381226],[-121.52473845114262,38.174991168963814],[-121.5246017432058,38.17462438631037],[-121.52451223623758,38.174221387636806],[-121.52446916266928,38.1736353202934],[-121.52456606928875,38.17292179012939],[-121.52468610481033,38.172391643769544],[-121.52495655177196,38.17173374827541],[-121.52519165264566,38.17142338979517],[-121.52544689142545,38.171222976941195],[-121.52579615909617,38.17100474505097],[-121.52763432795486,38.17022524986693],[-121.52863381563094,38.16977182761246],[-121.52917034647639,38.169371064918785],[-121.52959059523349,38.168933442661775],[-121.52982476562879,38.168495058120506],[-121.53002583037127,38.16780048405368],[-121.53014629799418,38.16719688204893],[-121.53024122264843,38.16677610533509],[-121.53057096218353,38.166081726712754],[-121.53087670940197,38.1653326616444],[-121.53104328106953,38.16485725974466],[-121.53117584501014,38.16399732266454],[-121.53129509928908,38.16357700200856],[-121.53148073887732,38.16337626386667],[-121.53194585844301,38.16325014413959],[-121.53248029481936,38.16316065812725],[-121.53308278167846,38.163035091692215],[-121.53347858112821,38.16287194318508],[-121.53385098451022,38.16256212399986],[-121.53403942289333,38.16219666947794],[-121.53408779736401,38.1619771953349],[-121.53397700204296,38.161098065182735],[-121.53393421247857,38.16045741406555],[-121.5339365913186,38.16009117833228],[-121.53410182228632,38.159817259885095],[-121.5344394333137,38.15950732606012],[-121.5348817202659,38.159143225669816],[-121.53541730675897,38.15887080144289],[-121.53583662901514,38.15856116456165],[-121.53627878539311,38.158215264188875],[-121.53642001641964,38.15788632836439],[-121.53642249992775,38.157501914359585],[-121.53617148151869,38.15706156247877],[-121.53589553467472,38.15671241070671],[-121.53545626529638,38.15634475010389],[-121.5350183867374,38.15603165324433],[-121.53485917838881,38.15564658775488],[-121.53491916369964,38.155244230133725],[-121.53534462975205,38.153982843866864],[-121.53574617742666,38.15292249667116],[-121.53621527834085,38.15189948886084],[-121.53647286624586,38.15158919998357],[-121.53680011122384,38.15143928926106],[-121.53686871102468,38.15140786350915],[-121.5372621081477,38.151335993929806],[-121.53786540275122,38.15133841811291],[-121.53856001768717,38.15146957387939],[-121.5390418782927,38.15162620428907],[-121.5393008746573,38.15171039044784],[-121.53999538025272,38.15185974380133],[-121.54072524763085,38.15191757533611],[-121.54107279079481,38.15188848512527],[-121.541351499038,38.15186515632985],[-121.54176970276171,38.151720246995055],[-121.54218802076106,38.15155715872743],[-121.54242030553637,38.151393331226885],[-121.54272318402623,38.1510650297848],[-121.54307381656807,38.15060890451609],[-121.54324062278835,38.150078569726865],[-121.54333684338329,38.14943814601314],[-121.54339240391955,38.14808396382007],[-121.54348698963604,38.14769991743596],[-121.5436278165817,38.14742588733115],[-121.54404633873352,38.14722605470787],[-121.54424742457786,38.147202324926106],[-121.5442571010432,38.1472011831014],[-121.54434733327057,38.147190535318174],[-121.54487687867282,38.14730246558455],[-121.54536945299294,38.1474876993366],[-121.5459172312343,38.147741438777985],[-121.54640923192714,38.14801796592821],[-121.54716129138714,38.14813523894228],[-121.5477704964336,38.148023323381956],[-121.54820671096915,38.14777346010494],[-121.54867305348857,38.147432055599964],[-121.54902334140723,38.14702154869525],[-121.5498098302135,38.14636081379928],[-121.5502745594096,38.14599674320781],[-121.55059354516386,38.145914108910404],[-121.55060036196598,38.14591234279061],[-121.55083493581309,38.14585157480666],[-121.55114522735022,38.14577119057056],[-121.55265333524314,38.145639769761424],[-121.55464362952748,38.14540722635847],[-121.55714532711916,38.1448447238858],[-121.55801513676167,38.14457377962195],[-121.55859626608469,38.144392754312136],[-121.55950479932463,38.143938718524886],[-121.56008911466337,38.143340294001206],[-121.5603114989498,38.142511534223594],[-121.56031412729767,38.14208250291964],[-121.56013439947564,38.14162429897027],[-121.55973912371766,38.141164912604765],[-121.55898315171792,38.14056135897492],[-121.5584057130344,38.14004429392989],[-121.55793935717857,38.13955648437218],[-121.55761625504528,38.13895458395497],[-121.55740267144202,38.138353103970864],[-121.5574061996785,38.137780932874136],[-121.55766351443181,38.13720976566267],[-121.5580636898644,38.136868068661],[-121.55839927508742,38.13676175855428],[-121.5590442580409,38.136557430304535],[-121.55998741183858,38.13653404447314],[-121.56079497673507,38.136514013491514],[-121.56117373669356,38.136419159773176],[-121.56220166041805,38.136161725837184],[-121.56342668405641,38.13566594618853],[-121.56390679650602,38.135432591199894],[-121.56510557684759,38.13484991682528],[-121.5654969276531,38.13468953278969],[-121.56692131707236,38.13410577075419],[-121.56923670882213,38.13293475611393],[-121.57361466976852,38.1308846892534],[-121.5762052894447,38.129671446762515],[-121.57702313557878,38.12892346245519],[-121.57825255399237,38.12764085328697],[-121.57842172509251,38.127460154849395],[-121.57962027974672,38.1261798984656],[-121.58148555866785,38.12432775005608],[-121.583174231375,38.12204556283174],[-121.58452176321609,38.11983384213243],[-121.5848907605757,38.118833952032105],[-121.58503126972751,38.11797637708783],[-121.58512845374716,38.11679669546591],[-121.58495392760001,38.1157234779632],[-121.58468709830117,38.114685954683644],[-121.58419715118525,38.113468456814765],[-121.58334425551524,38.112213944938155],[-121.58276045940762,38.11160395140929],[-121.58190386705618,38.11099299066865],[-121.58109079500973,38.110668409130504],[-121.58007484832488,38.11027136127905],[-121.57858475933872,38.109836870333275],[-121.57424754321036,38.10867691863349],[-121.5705418644925,38.10769761622886],[-121.56814942423165,38.10679488148914],[-121.56605521995296,38.10514223023566],[-121.5647090799035,38.10334959121576],[-121.56403712090822,38.10213131678586],[-121.56381733687947,38.10112961901474],[-121.56400366879451,38.10020052368768],[-121.56406406233708,38.10007422821598],[-121.56405165640871,38.099779418499224],[-121.56492971965075,38.09827221014024],[-121.56542639557613,38.097939564737636],[-121.56578483007115,38.09756163114336],[-121.56732858884045,38.096530534214395],[-121.56963783656477,38.09618155093574],[-121.57289500264118,38.096229748040315],[-121.57829761202949,38.09689323290285],[-121.58164265667884,38.09737018522738],[-121.58602468653491,38.098494351711814],[-121.58963976141946,38.09947247417734],[-121.59295977987922,38.10041407345559],[-121.596254891291,38.10178419981153],[-121.59932465770206,38.10308205288784],[-121.60352562831986,38.1043837308239],[-121.60574185516631,38.10453449021686],[-121.6089104391214,38.10433077406871],[-121.61185410352512,38.10362580951201],[-121.61534498748232,38.10260062415387],[-121.61982843364899,38.101793150289694],[-121.62085796405711,38.10161018748483],[-121.62358930108532,38.101261513521784],[-121.6253571097619,38.1007664985639],[-121.6259768683752,38.100327190206954],[-121.62726485841216,38.099414188716814],[-121.62808608506926,38.09784383366383],[-121.62823113485159,38.09745865258059],[-121.62863744491845,38.096379663649124],[-121.62841862964075,38.09502012003816],[-121.62822529060566,38.093796253325074],[-121.62819826965668,38.09362520593171],[-121.62829918771156,38.09338935036481],[-121.62846488316131,38.09247696371593],[-121.62966148418116,38.09084116625462],[-121.63066127996086,38.089986304859536],[-121.63331458852655,38.08849317688367],[-121.63562452600394,38.08789264697887],[-121.63752560599315,38.08775554245101],[-121.64014858279427,38.08776378120451],[-121.64254676730582,38.08791437468829],[-121.64550477422935,38.088674519140454],[-121.64825748816814,38.090220314454534],[-121.65109856914698,38.092195321824796],[-121.65430027355129,38.093992534633486],[-121.65719110383687,38.095073796447856],[-121.66033180568239,38.09586980097602],[-121.66286441069094,38.09594864454071],[-121.66562559731946,38.09581392379713],[-121.66768176245479,38.095549225632034],[-121.66861377598993,38.095429230964065],[-121.66920379914133,38.09525513232185],[-121.67101447207638,38.094720832259874],[-121.67233278381457,38.09412403051371],[-121.6730547503112,38.09379718440717],[-121.67527790955879,38.09237323228665],[-121.6774783949996,38.090949529041325],[-121.67929744744573,38.08895221413802],[-121.68039140996173,38.087096329533615],[-121.68089631023885,38.08527416608529],[-121.68107998530407,38.08416291538772],[-121.68544895078489,38.08618232353653],[-121.68645381918876,38.088686849447654],[-121.68656149474246,38.09626682205188],[-121.68655685874474,38.09732903630335],[-121.68673569254072,38.09816530577348],[-121.6867668016355,38.099400537664465],[-121.68672529382172,38.100549111475445],[-121.6863540620457,38.10198087076142],[-121.68539396457612,38.10571251195056],[-121.68503002545393,38.106658462131755],[-121.68484311325238,38.10766253748293],[-121.68425265225508,38.10912662799206],[-121.68399045301463,38.110645141282184],[-121.68386728393469,38.11144879942252],[-121.68325910740329,38.111447126260174],[-121.68325335380251,38.112751386827895],[-121.68335761433285,38.11275167388884],[-121.68335640342306,38.113026254519646],[-121.68346066435289,38.11302654148717],[-121.6834573111809,38.113787131687204],[-121.68426546809684,38.11456085911302],[-121.68436341281276,38.11598182372528],[-121.68425344593345,38.116093875272526],[-121.68400129902703,38.11647507543987],[-121.68388685271825,38.117594630785],[-121.6840299772721,38.11825377006561],[-121.68369737480053,38.119170985049024],[-121.68369332982314,38.12008910218296],[-121.68361576086484,38.12112229756366],[-121.68354453084764,38.12190024709321],[-121.68328835579726,38.12203952512447],[-121.68303773843019,38.12234399367965],[-121.68294138334429,38.12246105257864],[-121.6828550795785,38.12256589902859],[-121.6827547852712,38.12281038538026],[-121.68254325815997,38.12296645003901],[-121.68192160028858,38.123317189949056],[-121.68155455738798,38.12340478021158],[-121.68184287065951,38.12340816252385],[-121.6839536318852,38.123432902521394],[-121.68431399370276,38.12265862376108],[-121.68547215339828,38.122882558977246],[-121.68583437389701,38.1229266155976],[-121.68606031970268,38.1229540962735],[-121.68619859802004,38.122959039141726],[-121.68677526626873,38.122970404938954],[-121.68734061274874,38.12347252041371],[-121.69025483876395,38.12350652898541],[-121.69057469563893,38.123510256309736],[-121.69116186401322,38.123517097887074],[-121.69127834847994,38.12332502951552],[-121.69167733194541,38.12272087556885],[-121.69193596654472,38.122005181190794],[-121.69230401435568,38.12131448257681],[-121.69281297587925,38.12059945567505],[-121.69318002272554,38.120139312300566],[-121.6935839235662,38.119596923172736],[-121.69398806398651,38.1189968922842],[-121.69420409814151,38.11847870472117],[-121.69464438322086,38.117961111392354],[-121.69515728962787,38.11753428648856],[-121.69555620713258,38.116930119506335],[-121.696032961145,38.116416734483266],[-121.69615152654787,38.11612591938476],[-121.69629118130294,38.115783373584186],[-121.69672534978206,38.11547161504865],[-121.69727535587155,38.11489666107265],[-121.69840744216697,38.11355332269112],[-121.69891592534337,38.11292472817506],[-121.69957612738855,38.11217713165521],[-121.70037733613563,38.111376374839026],[-121.70103785157465,38.1105464273828],[-121.70122264323867,38.10999932478322],[-121.70147969907804,38.10962944840909],[-121.70151398237586,38.10890903365191],[-121.70144104909714,38.10835666909727],[-121.70690823810867,38.11086585629862],[-121.70524795579114,38.11275051620384],[-121.70333951231946,38.11496219298624],[-121.70145934953152,38.11703112606295],[-121.70003544349295,38.118433651949765],[-121.69789732322549,38.12104998287719],[-121.69625894540621,38.12340539407335],[-121.69508755818167,38.12545207103782],[-121.69301859296522,38.129689233927984],[-121.69246946402274,38.13087982423227],[-121.69198053818647,38.13221332933531],[-121.6915514079159,38.13378522206464],[-121.69069155104081,38.137286621656735],[-121.69026256672984,38.13881111725498],[-121.68974080222505,38.14088318783663],[-121.68845584586433,38.14495557904548],[-121.68756835222504,38.14755143969755],[-121.686664596163,38.15067137803615],[-121.68623450984497,38.152410036614924],[-121.68553327377195,38.154124283047835],[-121.6848159331944,38.15593390081832],[-121.68402662673836,38.15709977108127],[-121.68311600056346,38.158169854037695],[-121.68160081607492,38.15950051799431],[-121.6803287628355,38.16049818674902],[-121.67899560110082,38.16154306607621],[-121.67781240031404,38.16287457850003],[-121.67623002680752,38.16556349931041],[-121.67478425919053,38.16801455439941],[-121.67328822789095,38.17002440867412],[-121.67149787617231,38.17210479881001],[-121.66939537737288,38.17472075180508],[-121.66862020930226,38.175789304195995],[-121.66687148840516,38.178199741311296],[-121.66226516683471,38.17731564981667],[-121.65721972302767,38.175519694052156],[-121.64867402012167,38.1730217377026],[-121.64173473881205,38.172787689795626],[-121.6404528873247,38.17310268554322],[-121.63866779772417,38.172990765372944],[-121.6375927765988,38.1723759837727],[-121.63251378938011,38.17073833458221],[-121.62885630763452,38.167882246383314],[-121.62630303884835,38.16651826714974],[-121.61656736223011,38.16370196097966],[-121.61641565001759,38.163678977796636],[-121.61516765599397,38.16357390160962],[-121.61414986473115,38.16334601903073],[-121.61258203355531,38.16321924820166],[-121.6108983244418,38.163298004136045],[-121.60970838457588,38.1633921409999],[-121.60826026006453,38.16363640881083],[-121.6068995099778,38.16380064123281],[-121.60463913360843,38.164386693695924],[-121.60304957142114,38.165043663869106],[-121.60174640542101,38.16547850187816],[-121.6005923164872,38.165996218565574],[-121.59914894721075,38.1666193199781],[-121.59787678394854,38.16760132015343],[-121.5954248658906,38.169975971430226],[-121.59213205328551,38.17435051432904],[-121.58978742363814,38.17782453201303],[-121.58785255823689,38.18031640705256],[-121.58381470846487,38.18516653992282],[-121.57907581582757,38.18879116479925],[-121.56999169413217,38.19197412675881],[-121.5644889496714,38.193548419566184],[-121.5625607258774,38.19473733937893],[-121.56038502224484,38.19680837695582],[-121.55949381799118,38.19659506459928],[-121.55935097343627,38.19656087294625],[-121.55031687415185,38.19439805695633],[-121.55120386344481,38.19380104684173],[-121.55202987508439,38.19313122423964],[-121.55282426405918,38.19246127391734],[-121.5537446018046,38.191866587482544],[-121.55425264053399,38.19149464532665],[-121.55539373744386,38.19097558220593],[-121.55647175812759,38.19043133850309],[-121.5574555604886,38.189787012547306],[-121.55838122778424,38.18902436004195],[-121.55891245530582,38.18841181318385],[-121.56002988792245,38.18747863590579],[-121.56076108157242,38.18678346202765],[-121.56180739516162,38.1862390480338],[-121.56313706968481,38.185870191215926],[-121.56449863740848,38.18545158424642],[-121.56601896434509,38.184908924183844],[-121.56722443341654,38.18416564186802],[-121.56843002633178,38.18339742115704],[-121.56979390819909,38.18257992407309],[-121.5708719928289,38.18198569167106]]]},"properties":{"ZIP5":"95641","PO_NAME":"ISLETON","Shape_STAr":1085695909.11,"Shape_STLe":210714.612693}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.51006439216684,38.36954627681215],[-121.51005402732252,38.367925830944465],[-121.50959777840771,38.367923893490506],[-121.50965739819841,38.36560629085697],[-121.5096602293679,38.365496220087834],[-121.5096755681686,38.36489995907589],[-121.51157164591766,38.36509686472345],[-121.51158163575117,38.36482238877622],[-121.51348910080672,38.36533580457615],[-121.51513453022082,38.365790476260266],[-121.51678743390933,38.366176396884235],[-121.518045695857,38.36642287680453],[-121.51804495600732,38.36653271051824],[-121.51846306556797,38.36665295620211],[-121.51849848546428,38.36666860381263],[-121.5189216783494,38.366855554889916],[-121.51971334458672,38.36708705307546],[-121.5197528832077,38.367098614773006],[-121.5199230094269,38.367136318507896],[-121.51996874984076,38.367135472709535],[-121.52123976413486,38.367228348785865],[-121.52134111662767,38.36797977814938],[-121.52150422330628,38.36862401672025],[-121.52170997550479,38.369411248435],[-121.52196217818714,38.37029442080458],[-121.52215414701385,38.37105789669164],[-121.52243569206955,38.37198855842481],[-121.52264368920426,38.37244249553053],[-121.52301640967305,38.37330213801698],[-121.5233742377182,38.374042600008984],[-121.52370780339177,38.37469252830053],[-121.52398717787243,38.375236860198754],[-121.52433099428266,38.37598895771712],[-121.52449446316223,38.376585498546035],[-121.5245665271169,38.37702684618201],[-121.52455706080971,38.37729987582081],[-121.52451861675986,38.37788630932659],[-121.5244359609728,38.378374850818275],[-121.52434202218133,38.378789848260304],[-121.52414311057892,38.37932550018064],[-121.52404140517132,38.37950631079059],[-121.5238289276561,38.37988404465939],[-121.52355175838636,38.38038367584596],[-121.5232776044689,38.380692503464296],[-121.52303357417658,38.38092970510037],[-121.52266879745889,38.381226130855474],[-121.52188627860413,38.381651944009754],[-121.52089872000312,38.3822200179702],[-121.51994127766557,38.38271648599858],[-121.51896764144595,38.38328463120861],[-121.5181615995487,38.3838294112879],[-121.51732509032094,38.38449317813219],[-121.51639506874834,38.38531169197758],[-121.51573968879313,38.386012259786966],[-121.51523382473411,38.38678481786181],[-121.51475877961177,38.3876409251412],[-121.5144058317734,38.38849754319889],[-121.51414240192743,38.38927114574758],[-121.51383325455627,38.39035412840416],[-121.51359590141769,38.39165231012554],[-121.51349935402234,38.39251000726033],[-121.5133555001436,38.393653765759744],[-121.51327408021511,38.3945949195743],[-121.51323773137257,38.39532175156091],[-121.51321809720973,38.396155745063865],[-121.51322605090007,38.39703790766023],[-121.51336688302956,38.398647286777084],[-121.5135714550606,38.39986390942286],[-121.51377445387904,38.4010564991666],[-121.5138945676022,38.401431463174134],[-121.51416057329621,38.40226185629808],[-121.51448798455948,38.40312133738234],[-121.51487687582298,38.403921351037745],[-121.51529454551772,38.404852957912944],[-121.51584775575122,38.4058681705389],[-121.51585625611668,38.40588617630438],[-121.5152770638903,38.406058462639024],[-121.51511327055657,38.4061071846085],[-121.51251811333782,38.406879088187196],[-121.51239069662823,38.40691698515512],[-121.50943591112078,38.40779576133382],[-121.50965968467803,38.40841245936171],[-121.50576487599498,38.40842957144586],[-121.50610957879414,38.4068902956617],[-121.50733811904567,38.4014036800901],[-121.50856646965735,38.39591705250669],[-121.50869162465055,38.39535798034599],[-121.5089803303529,38.39042695304318],[-121.50930174515061,38.384936460668385],[-121.50962310947187,38.37944596770496],[-121.50963775237264,38.37919580316496],[-121.50961899607275,38.37626118697723],[-121.50958409664844,38.37625851802745],[-121.50955913005805,38.372351410329976],[-121.50969864832535,38.372350857958565],[-121.50968073254195,38.36954779732121],[-121.51006439216684,38.36954627681215]]]},"properties":{"ZIP5":"95639","PO_NAME":"HOOD","Shape_STAr":39497312.416,"Shape_STLe":38627.8791076}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.11905218277487,38.71786176660397],[-121.10620329696842,38.69115941833576],[-121.10534365417894,38.68937215779517],[-121.10409093601886,38.68676748898648],[-121.10146782013419,38.68131280757425],[-121.0988336266975,38.67583418812725],[-121.09852947339155,38.67520155148616],[-121.09810928553746,38.67432754119747],[-121.08530929469276,38.64769192534725],[-121.08220014463475,38.64045843864422],[-121.04087188660978,38.54415984265178],[-121.04085426697917,38.54100549156056],[-121.04085290654372,38.5407619581005],[-121.04084724502889,38.539748616532755],[-121.04400258614389,38.53973901089203],[-121.04435219821862,38.53973794209441],[-121.05669986122149,38.53969948195371],[-121.05699355078477,38.53969855148819],[-121.10412087558865,38.53953953377543],[-121.1045671448081,38.53953793588336],[-121.11422232487773,38.53950295067869],[-121.11421191842214,38.54309693796776],[-121.1312169998813,38.540287630525164],[-121.13122459336932,38.54010125123576],[-121.13271556762517,38.540394007675715],[-121.15004252214696,38.54034416370561],[-121.15015393693375,38.590745637429976],[-121.15058978296794,38.5907403281582],[-121.1505264824127,38.61231149653132],[-121.1503563949239,38.61231277153062],[-121.15033817933544,38.61455518794075],[-121.1504777051761,38.61461324145944],[-121.15033183241256,38.63257014762678],[-121.15035648609555,38.63280868585303],[-121.15043357459639,38.63304024175346],[-121.15052553560427,38.63320673676369],[-121.1514236958202,38.634576749813824],[-121.15165140530644,38.6348602234264],[-121.1519384151343,38.63510837492661],[-121.15214149971912,38.635240617212915],[-121.15343465454751,38.635994208814104],[-121.1540219196354,38.63640331675762],[-121.15450969239326,38.63688619455895],[-121.15468823184405,38.637117439963546],[-121.15548162732514,38.63823977610327],[-121.15560576549962,38.638458394421015],[-121.15567929843351,38.638689027892134],[-121.15615403553738,38.641020624051876],[-121.15634506725479,38.64195880213555],[-121.16912092821995,38.64256887643445],[-121.16988019421402,38.64259987648608],[-121.17064003333107,38.64262047275685],[-121.17140021438266,38.642630661782825],[-121.17216050849785,38.64263043832085],[-121.1729206809784,38.642619804299564],[-121.1736805017314,38.64259876078564],[-121.1744397348274,38.642567316918345],[-121.17478076573992,38.64254979713047],[-121.17553874063016,38.64250329358294],[-121.17629556614163,38.64244641816131],[-121.17705100857528,38.64237918634798],[-121.17780484104327,38.64230162088706],[-121.17855682633392,38.64221374355436],[-121.17869219503363,38.64219680369981],[-121.18529841459001,38.641361576010155],[-121.18629000322713,38.64123617469778],[-121.19581731089893,38.640030849450085],[-121.19581353379033,38.64036560726382],[-121.19612268600952,38.6403111812792],[-121.19641865901816,38.64025907392428],[-121.19648891407398,38.640285604818416],[-121.1969019175083,38.63989357949526],[-121.19704099389979,38.63976156545652],[-121.19989653553067,38.63626479668497],[-121.19998656250978,38.63615729041684],[-121.20005691470388,38.63607687392029],[-121.20012904421856,38.635997431829914],[-121.20020293466818,38.635918991056876],[-121.20027855481715,38.635841571202384],[-121.20043101616075,38.635693542590104],[-121.2005116198923,38.63561927955238],[-121.20059386382754,38.63554613049732],[-121.20067772358338,38.635474118677095],[-121.20076317020325,38.635403265510455],[-121.20093606231391,38.63526589446999],[-121.20105841416844,38.635172739378795],[-121.20118281774558,38.63508127130676],[-121.20130923709898,38.63499152063068],[-121.20143763517463,38.63490351411601],[-121.20156797378077,38.63481727761952],[-121.20170020551808,38.63473283873648],[-121.2018343002358,38.63465022337927],[-121.20197021057618,38.63456945553988],[-121.20210789835029,38.63449056107553],[-121.20224731966739,38.6344135622005],[-121.2023884329144,38.63433848294682],[-121.20253119531013,38.63426534914029],[-121.20267556070912,38.634194179376564],[-121.20282148867892,38.634124994993265],[-121.2029689330048,38.63405782089223],[-121.2031178510087,38.633992673891484],[-121.20326819422046,38.633929575273974],[-121.20341991880464,38.63386854275099],[-121.20357297628209,38.6338095985067],[-121.206402119505,38.63274393573981],[-121.20866599116003,38.631891123039345],[-121.20867559822486,38.63190432129994],[-121.20867794233355,38.6319074346574],[-121.2086854557723,38.63191740775525],[-121.2087193048382,38.631962847772634],[-121.20874233375037,38.63199531637972],[-121.20876463792038,38.632028097154674],[-121.20878620830985,38.632061176522384],[-121.2088070404039,38.6320945472451],[-121.20882712629248,38.6321281975574],[-121.20884646148086,38.63216211841975],[-121.20886503578186,38.63219629624926],[-121.20888284925448,38.632230725641264],[-121.21003894600649,38.63452054832046],[-121.20754325135084,38.63586664947626],[-121.20697451959525,38.63618143622075],[-121.20750599480635,38.63680342665343],[-121.20622392531133,38.64050036255374],[-121.20612567852565,38.64052352948337],[-121.20135156043243,38.642172788695085],[-121.20039894524656,38.6425806410061],[-121.19686851429832,38.64417734836625],[-121.19476937397401,38.64563763750924],[-121.1936851724094,38.646678344895186],[-121.1930551829824,38.648782639292975],[-121.192954673265,38.65006211041723],[-121.1930138555672,38.650230815469016],[-121.1928152808205,38.65410844324235],[-121.19257674587911,38.65472752436858],[-121.19225357062568,38.65505433820666],[-121.19149869756104,38.65719432106853],[-121.1903482526786,38.65994098082266],[-121.18948641690497,38.663274715366505],[-121.18926602623476,38.66488210784311],[-121.18922301893382,38.667295209812835],[-121.18937823090809,38.67005098539475],[-121.19011867133224,38.6719332516474],[-121.19088858919709,38.673961982971996],[-121.19080171436283,38.6747658434507],[-121.19050104879025,38.67522692106757],[-121.18971770468951,38.67574557212986],[-121.18808460031552,38.67649357889046],[-121.18851391234577,38.67700400736845],[-121.18847190461983,38.678321468628724],[-121.1894691480488,38.67784054816481],[-121.193066311473,38.67789818657981],[-121.1930537192576,38.67781573909307],[-121.19518299530212,38.67783054054171],[-121.19539150659782,38.67774923616672],[-121.19579621841572,38.67759785548938],[-121.1962379120493,38.677430251186905],[-121.1963663685871,38.67738026437288],[-121.1964935326384,38.677328283744565],[-121.19661935224728,38.67727432966722],[-121.19674377427903,38.67721842520097],[-121.19686675598268,38.67716058987423],[-121.19698824190576,38.67710084853306],[-121.1971081904172,38.67703922341688],[-121.19722654834378,38.67697574118958],[-121.19734327406562,38.676910423189895],[-121.19745831665836,38.67684330060225],[-121.19757163336436,38.676774393856725],[-121.19768317554862,38.676703735054716],[-121.19779290728891,38.67663135007931],[-121.19790077653447,38.67655726830567],[-121.19800674505575,38.676481516501966],[-121.19811076992565,38.67640413041307],[-121.19821280719034,38.6763251349658],[-121.19831282198857,38.67624456415904],[-121.19841077030678,38.676162448324774],[-121.19850661496642,38.67607882324779],[-121.1986003200097,38.675993718414844],[-121.19869184366257,38.6759071695789],[-121.19878115338548,38.675819208953186],[-121.1988682119923,38.6757298732233],[-121.1989529869042,38.675639198205644],[-121.19903544326498,38.67554721789918],[-121.1994644282475,38.67505840879059],[-121.19962184170268,38.67514549970595],[-121.19999698415207,38.675353048980725],[-121.20005986855593,38.67535405680695],[-121.200036915816,38.67626273724153],[-121.20003655446888,38.676277005231476],[-121.20000937205224,38.67735318866236],[-121.20000735903233,38.67743276064055],[-121.19985458892812,38.677431109923496],[-121.19965846115548,38.67742898851344],[-121.19964840264642,38.677956814328326],[-121.19964739037917,38.67806665402057],[-121.19975122683746,38.67806818615531],[-121.19998307071057,38.67807146649701],[-121.19997961937688,38.67818127043732],[-121.19995270806244,38.67903720643084],[-121.19994630322157,38.679240920202965],[-121.1999357795099,38.67957568766718],[-121.19992950934189,38.679775077073955],[-121.19992688620991,38.679858507051236],[-121.19992648291573,38.67987128733976],[-121.19992621795059,38.679879733383785],[-121.19990651103178,38.68050652285126],[-121.1998977151927,38.68078627257882],[-121.1998902256649,38.681024517193094],[-121.19987182322367,38.68160981411564],[-121.19986923275597,38.68169216591623],[-121.19837874499487,38.681663451568646],[-121.19757682199865,38.68164799672441],[-121.19757394391661,38.681730341095786],[-121.19757221756855,38.68177982538073],[-121.1975583229445,38.682177828836736],[-121.19755557081783,38.68225664069162],[-121.19754756108149,38.68248607515463],[-121.19754398203386,38.68258849875311],[-121.19753873697442,38.68273871873763],[-121.19753296297927,38.682904157808636],[-121.19753089077597,38.68296352362722],[-121.19752342597013,38.683177323783305],[-121.19752288714992,38.68319270766965],[-121.19751477865519,38.683424972110146],[-121.19751411432871,38.68344394617183],[-121.19807482503022,38.683457254775945],[-121.19809166372438,38.68345765683308],[-121.19806632004278,38.684170016378076],[-121.19806062041773,38.684170808498955],[-121.1978118990528,38.68420543706794],[-121.19780718590884,38.68427866499883],[-121.19748755376312,38.684196468973525],[-121.19748487497692,38.68426508478029],[-121.19747576959438,38.68452582110641],[-121.19719362607869,38.6845197866851],[-121.19715574370609,38.684518977518145],[-121.19693475369117,38.68451425241018],[-121.19683998689746,38.68451222568324],[-121.19669366193858,38.68450909390906],[-121.19651881201334,38.68450535435839],[-121.1964429048245,38.68450373098004],[-121.19643259616444,38.68479885491506],[-121.19642235397158,38.68509205315129],[-121.19641709041838,38.68524276935945],[-121.19641153716042,38.68540174043771],[-121.19641068113468,38.68549106465883],[-121.19531499706342,38.6858436681054],[-121.19530001124556,38.68584881372636],[-121.19527317148727,38.68585974382619],[-121.19524763010911,38.68587244512016],[-121.1952235801801,38.68588681894785],[-121.19520119528163,38.68590276200893],[-121.19518064456128,38.685920156557856],[-121.1951620766416,38.68593887029188],[-121.19510656053295,38.68591553952],[-121.1950915723862,38.68591031016829],[-121.19507576988828,38.68590685897152],[-121.19505949359919,38.68590525856508],[-121.19504309255163,38.685905543804864],[-121.1950269219934,38.685907708148086],[-121.19501132841526,38.68591170625209],[-121.19405831667507,38.68621837866276],[-121.19336516284561,38.68644142761598],[-121.19322972924711,38.68654437337269],[-121.19276476266984,38.68669398896755],[-121.19276425945078,38.68673839064026],[-121.19276194162146,38.686788946439016],[-121.19274786142921,38.687096098098415],[-121.19274246959696,38.68721372179556],[-121.19273369329701,38.687405115834636],[-121.19272054920974,38.687691822340426],[-121.19271956756734,38.687713221233956],[-121.19270338474416,38.688066202170255],[-121.19269810626587,38.68818131670204],[-121.1926920474336,38.68831345488483],[-121.19267940676949,38.68858918363383],[-121.19266662624013,38.68886791325124],[-121.19265378558985,38.68914798300599],[-121.19264424780701,38.68935601160968],[-121.1926425895073,38.689392177182256],[-121.19263054318827,38.68965488733389],[-121.19262356321727,38.689942388985514],[-121.19262247905881,38.68998702264533],[-121.19261642849355,38.69023613469371],[-121.19261116375527,38.690453035512895],[-121.19260752901924,38.69060270433261],[-121.1926059649459,38.69066705836725],[-121.19260496436839,38.69070827183558],[-121.19260029814414,38.69090045842999],[-121.19259489666726,38.69112282143395],[-121.1925886975733,38.691378224418855],[-121.1925828734484,38.691617988336965],[-121.19258004913928,38.69173428571745],[-121.19257917172374,38.691757027694024],[-121.19257289593415,38.69191961344055],[-121.19255317033533,38.6924307152132],[-121.19254646739358,38.69260440174726],[-121.19254424981,38.69266190247396],[-121.1925357720525,38.69288150885931],[-121.19252824937122,38.69307648999609],[-121.19252635062296,38.69312563786271],[-121.19251732933336,38.69335941093723],[-121.19250832024915,38.69359281201594],[-121.19250259885337,38.69374104643851],[-121.19249897692019,38.69383490278424],[-121.19249705031709,38.69388478019521],[-121.19248955057449,38.69407913894862],[-121.1924838893631,38.69422580979904],[-121.19246135812962,38.69480954979178],[-121.19244748072458,38.69516912511105],[-121.19241595314585,38.69598594908415],[-121.19241299530088,38.6960625845645],[-121.19241002109199,38.69613964876564],[-121.19240773535427,38.69619888236449],[-121.19237897141922,38.69694405872147],[-121.19234403138066,38.69784927184273],[-121.19232898622742,38.69823902679095],[-121.19227938980487,38.69952388470868],[-121.19227779954525,38.69956506251761],[-121.19242169774441,38.69966233996732],[-121.19433613187705,38.699665361334],[-121.19426673086787,38.701138896562725],[-121.19426346029628,38.701220974105],[-121.19426078093738,38.701342654515145],[-121.19426041898011,38.70141315480318],[-121.19426093078579,38.701483654855366],[-121.1942618032088,38.70159402014048],[-121.19426145694787,38.701704386867725],[-121.19426118968084,38.70173095475696],[-121.19425872820699,38.70186670444451],[-121.1942544206339,38.70200242598911],[-121.1942482636959,38.702138102250544],[-121.19412971761528,38.70441062772895],[-121.19412190796132,38.70457526676474],[-121.19404816390042,38.70630208298544],[-121.19404366470745,38.70638437989424],[-121.1940379966818,38.70646663354439],[-121.19399705629787,38.70700515112702],[-121.19399338751283,38.707059989456454],[-121.19399070941498,38.707114864400694],[-121.1939875711437,38.70719383558074],[-121.19392985577257,38.7086457527945],[-121.19392016837494,38.70885907219829],[-121.19372467154645,38.71268398652062],[-121.19376896042903,38.71318994449352],[-121.19374849606898,38.713590341910724],[-121.19372289137854,38.71409127521515],[-121.19365280716369,38.714089922243126],[-121.19359845344061,38.71408887319063],[-121.19220837591887,38.714051739846774],[-121.18952083313529,38.71397990007211],[-121.18907288477348,38.71396791949578],[-121.18862571019018,38.71395595881769],[-121.18862583264273,38.71395268034895],[-121.18861905485431,38.71395916906438],[-121.18861191194291,38.71396752732362],[-121.18860592310683,38.71397642609555],[-121.18860186068123,38.71398418427297],[-121.18859867971736,38.71399218825948],[-121.18859605269763,38.7140020348855],[-121.1885948791232,38.7140103691352],[-121.18859466159411,38.714019568643415],[-121.18860574012658,38.71431446018516],[-121.18857175011489,38.71431095659647],[-121.1885002223558,38.7143056930616],[-121.18711937067462,38.71420408129395],[-121.18566360239562,38.71411607776667],[-121.18292462286752,38.71395045326382],[-121.18117147885062,38.71384440774967],[-121.17881241595119,38.71370166770401],[-121.1739601330037,38.71335401960468],[-121.14646687750592,38.71138033416528],[-121.14646627313606,38.711380680174614],[-121.14632504224984,38.71146751266408],[-121.14628267507011,38.71149328689258],[-121.14603956781757,38.711599965002776],[-121.14577206753806,38.71169479157081],[-121.14540637702466,38.71179438608856],[-121.14506600682209,38.71182826217415],[-121.14476444919069,38.711840455482566],[-121.14418930443365,38.71187053812936],[-121.14367723237426,38.711901770108405],[-121.14338162601474,38.712001876579336],[-121.14316674670955,38.71209228029883],[-121.14283682132117,38.71213171901468],[-121.14252845263104,38.71212738020131],[-121.14214418368708,38.71202293680594],[-121.14159846240935,38.711937892332834],[-121.14139251040437,38.71186909007117],[-121.14100837702276,38.71175365990001],[-121.14065274441799,38.711599994739345],[-121.14030815823597,38.711402475281076],[-121.14009018807447,38.71116813610176],[-121.13986170726278,38.71093371855274],[-121.1393974530173,38.710778556498724],[-121.13920282349217,38.71064324564838],[-121.13907629931826,38.710382808769246],[-121.13901297694945,38.71011254433442],[-121.13893908504164,38.70984700598625],[-121.13881936323146,38.70960378179198],[-121.13884101222617,38.70926275125432],[-121.13884797730448,38.70897653256464],[-121.13872899507554,38.708672216162036],[-121.1385526853091,38.70847182090847],[-121.13822617205092,38.708230492417904],[-121.13794374549633,38.70811100206474],[-121.13737069982295,38.70797012782675],[-121.13679657231937,38.70791848768357],[-121.13632096571263,38.70783462640169],[-121.13578693045982,38.70765627639038],[-121.13533409439924,38.70742910219169],[-121.13516467116429,38.70723973792394],[-121.1349618149665,38.70691762771274],[-121.1349639497721,38.706741899599415],[-121.13485079643623,38.706536477626045],[-121.13459304619627,38.706406179981954],[-121.13440200036436,38.70626608032235],[-121.13422187070613,38.706093110722506],[-121.13413708539804,38.705860440680624],[-121.13405479703117,38.70571085484282],[-121.13394839022084,38.705527451228164],[-121.13378194491044,38.70538204311461],[-121.13357878625465,38.70537365964473],[-121.1331582565733,38.7053732632185],[-121.13268672928469,38.70553175198004],[-121.13244275109308,38.70570979115254],[-121.13206286247281,38.70582502594228],[-121.13164254447685,38.70609442208893],[-121.13125941632454,38.706187662000126],[-121.13103395962371,38.70628345602788],[-121.13075244259015,38.706378143863326],[-121.13050663776636,38.706705135923734],[-121.13038758721525,38.706983649022135],[-121.1302055267102,38.707256198364334],[-121.1299872806085,38.70762184005122],[-121.12990373040738,38.70786286233859],[-121.1296086649135,38.7082052715755],[-121.12930834113303,38.708404163801994],[-121.12898030999636,38.708576070958635],[-121.12871246237023,38.708698316596276],[-121.12834238516294,38.70886922049576],[-121.12806206478214,38.708865053902876],[-121.12775337477926,38.708888134203335],[-121.12752150179769,38.708934444289966],[-121.12718416987191,38.709006734757786],[-121.126953645788,38.70922879982831],[-121.12662198348482,38.709695870120136],[-121.12632177986117,38.70988376979896],[-121.12601976500007,38.7099336684292],[-121.12568229310293,38.71001693752807],[-121.12531030570311,38.710056696712236],[-121.12497384354685,38.7100575903859],[-121.1246574635514,38.71013552363439],[-121.1243826698551,38.710251529332986],[-121.12403305156103,38.71046719570927],[-121.12368902060142,38.710798238097446],[-121.12345080341498,38.711074470846924],[-121.12317039486663,38.71136136817703],[-121.12304735414457,38.711676229219705],[-121.12278161495864,38.71219458911809],[-121.12254972178862,38.71252578795025],[-121.12233906499706,38.71283998450281],[-121.12204690297601,38.71322633465775],[-121.12183624303167,38.713540531193644],[-121.12163533889826,38.713915898907054],[-121.12148615732069,38.714076096782655],[-121.12134122510025,38.71417591548788],[-121.12115148719265,38.71421429505687],[-121.12085403754476,38.71417634196825],[-121.12056641740027,38.7141940710162],[-121.12031331694705,38.71425462331588],[-121.12004921029437,38.71435490862246],[-121.11981603927775,38.7145041705572],[-121.11964946752639,38.71465325102616],[-121.11950797559767,38.714757897281736],[-121.11939108334464,38.71485723902538],[-121.11926339789338,38.71497915323072],[-121.11919901690997,38.71508369900484],[-121.11921442431144,38.71525475564012],[-121.11913812385097,38.715756009313246],[-121.11910640074663,38.716053710702305],[-121.11919837689403,38.71626859835285],[-121.1192199798302,38.7165056052043],[-121.11919945754464,38.716747784183696],[-121.11917239624208,38.71695215685439],[-121.11908678010815,38.71707301823501],[-121.11905218277487,38.71786176660397]],[[-121.16562838016067,38.699786249522866],[-121.16560423115693,38.69946994062112],[-121.16542117959845,38.69895235776081],[-121.16535306909131,38.69788911771691],[-121.1652961954448,38.69734781342127],[-121.16534046472545,38.69624973285824],[-121.1655773313629,38.695199789547246],[-121.1658870845645,38.69417228485554],[-121.16602426641755,38.693419309782655],[-121.16603744879504,38.692293544390466],[-121.16597352950612,38.69175768879154],[-121.16606977286435,38.6907120266139],[-121.16623013068225,38.68959021320951],[-121.16625091701374,38.689022049056106],[-121.16636221162312,38.688498485978045],[-121.16649712494956,38.68741799353784],[-121.16676634182991,38.6868895362803],[-121.16676755301017,38.686883571905675],[-121.16686500470632,38.68646003855793],[-121.16776192850797,38.68573751042728],[-121.16952309279885,38.68492626113078],[-121.17036657991157,38.68448933354557],[-121.17001699457585,38.684074864848604],[-121.16964458278711,38.6836788310066],[-121.16849240546445,38.684146868376835],[-121.16748082524079,38.68468593500936],[-121.16703952512454,38.68500023953085],[-121.16666109947846,38.68540885094716],[-121.16627304315686,38.686034268732456],[-121.16302921953569,38.68241084840664],[-121.16277112994963,38.68255279388205],[-121.16279282420334,38.68256964454088],[-121.16281071909727,38.68258576864865],[-121.16282713635013,38.68260283165072],[-121.16284199417632,38.68262075097366],[-121.16285207125888,38.68263469966664],[-121.16285826603153,38.6826442211467],[-121.16286936381181,38.682663741274006],[-121.16287869876336,38.6826838207544],[-121.16288622375814,38.682704361949035],[-121.16289190203271,38.68272526549185],[-121.16289570722006,38.68274642758728],[-121.16289761867844,38.68276774628285],[-121.16289762843985,38.68278911701463],[-121.16289638756427,38.6828051173572],[-121.16289496728498,38.682815746936754],[-121.16289071129073,38.68283685623385],[-121.1628845874245,38.682857681768944],[-121.16287662562391,38.6828781210533],[-121.1628668638188,38.68289807616051],[-121.16285535029343,38.68291744833781],[-121.16284559763767,38.68293153853719],[-121.1628385798157,38.682940701545846],[-121.16282334095975,38.682958423367324],[-121.16280656301387,38.68297526919243],[-121.16278832626362,38.682991155814896],[-121.16277374401328,38.683002395766216],[-121.16276361539963,38.68300954978369],[-121.16274243143476,38.68302300516218],[-121.16272010287712,38.68303526936638],[-121.16269673732114,38.683046282811205],[-121.16267244803367,38.68305599225898],[-121.16264735281555,38.68306434991045],[-121.1626280777634,38.683069706293864],[-121.1626150402144,38.683072834710856],[-121.16258858700871,38.683078012213095],[-121.16256173716822,38.683081730961874],[-121.16253462194713,38.68308397208484],[-121.16169388896908,38.68307789615667],[-121.16142412472131,38.68290271327128],[-121.16160373900244,38.68281713859374],[-121.1616421880772,38.68254420888877],[-121.16145960093345,38.68246303381777],[-121.161247483971,38.682433718761985],[-121.16001610446794,38.68314101173598],[-121.15568469050076,38.68611648580846],[-121.15542153114109,38.68628044076107],[-121.15489660659658,38.68652502775221],[-121.15290799777726,38.68727614688108],[-121.15214964617279,38.687564335698475],[-121.14988088721118,38.688431745877764],[-121.14969197582269,38.68850676122059],[-121.14866455271927,38.68902440071076],[-121.14776740946634,38.68967399948882],[-121.1470278014407,38.690435825553585],[-121.14644766460741,38.69115595349673],[-121.14555426590587,38.692188482207456],[-121.14548406815089,38.69226837819794],[-121.14539619911271,38.69236506766259],[-121.14530618901777,38.69246054215774],[-121.1452140646779,38.6925547703439],[-121.14388897247719,38.69388587863119],[-121.1438860625758,38.693888776123615],[-121.14387967575603,38.69389497683992],[-121.14387315092166,38.69390108734595],[-121.14386648806199,38.69390710854254],[-121.14392702795202,38.6939487941547],[-121.1439035061314,38.693968629900596],[-121.14385578211557,38.69400818824469],[-121.14380984977477,38.69404902739113],[-121.1437875717607,38.69406991195784],[-121.14378143247296,38.69407598386342],[-121.14377114215418,38.69408616123485],[-121.14374442921883,38.69411257892113],[-121.1437235763376,38.69413434879127],[-121.1436833422514,38.694178727332805],[-121.1436451081238,38.69422417830895],[-121.14360892173532,38.694270648019575],[-121.1435916104462,38.694294247661595],[-121.14358197692111,38.69430821192374],[-121.14357903444241,38.694312477663445],[-121.14355857628468,38.69434213796245],[-121.14352769507671,38.69439090183058],[-121.14349900431293,38.69444048098487],[-121.14347253920711,38.694490815325494],[-121.14346015128605,38.694516245944854],[-121.1434416666428,38.694557393099274],[-121.14344036966182,38.69456028177396],[-121.14343708355689,38.69456759638324],[-121.14341631578739,38.69461954670139],[-121.14340680311152,38.694645726496915],[-121.14338953442908,38.69469845762824],[-121.14337462398201,38.69475162780814],[-121.14336805792915,38.69477835820752],[-121.14335897364236,38.69482138924321],[-121.14335833362672,38.69482442241271],[-121.14335671847121,38.694832067388184],[-121.14334777828336,38.694886054658],[-121.14334421075701,38.69491313153855],[-121.14333888822742,38.6949674113044],[-121.14333598536712,38.69502180354208],[-121.14333550643187,38.69507624161525],[-121.1433359372479,38.695093754151365],[-121.14333596642986,38.695094959796066],[-121.14333617574657,38.69510345790591],[-121.14333933362452,38.695157840862734],[-121.14334491052756,38.69521210475043],[-121.14335290150458,38.695266183764964],[-121.14335779879818,38.695293132184304],[-121.14336938940745,38.6953468089521],[-121.14337346612673,38.69536236549942],[-121.14337470814269,38.69536710629907],[-121.14338336390138,38.695400135754],[-121.14339970352391,38.69545304758443],[-121.14341839065736,38.69550548034693],[-121.14343940192569,38.69555737080338],[-121.14346270936531,38.69560865478079],[-121.14347075550654,38.695624990208564],[-121.14347131322997,38.69562612317917],[-121.14347521734841,38.695634049468936],[-121.1435019181487,38.69568430713052],[-121.14351610426485,38.69570915383759],[-121.14354612652456,38.69575824680826],[-121.14357831569353,38.695806489991774],[-121.1435952104653,38.69583027288832],[-121.14362453323969,38.6958693802959],[-121.14365893311572,38.69591504874049],[-121.143682038978,38.695947266844804],[-121.14370442262171,38.695979795833594],[-121.14372607956712,38.69601262576403],[-121.14374700187541,38.696045747568796],[-121.14376718277877,38.696079150387256],[-121.14378661664793,38.69611282426813],[-121.14380529786465,38.6961467583593],[-121.14382322079952,38.69618094270944],[-121.14384037982326,38.696215367367316],[-121.1438567693283,38.69625002057987],[-121.1438723848239,38.69628489330508],[-121.14388722184094,38.69631997469932],[-121.14390127477165,38.696355253009486],[-121.1439145391362,38.696390718292704],[-121.14392701276428,38.696426359722224],[-121.14393869117598,38.696462167355136],[-121.14394956878499,38.69649812763669],[-121.1439596456985,38.6965342315587],[-121.14396891629782,38.696570468268824],[-121.1439773772738,38.696606826031],[-121.14398502875537,38.69664329403529],[-121.1439918662731,38.69667986143785],[-121.1439978888171,38.69671651651945],[-121.1440030942278,38.69675324755232],[-121.1440074803132,38.696790045511285],[-121.14401104723447,38.696826896883756],[-121.14401379166097,38.69686379173519],[-121.14401571487078,38.696900719264036],[-121.14401681586476,38.69693766685016],[-121.14401709247252,38.69697462366649],[-121.14401654712167,38.69701157891999],[-121.14401517765278,38.697048520882745],[-121.14401298650425,38.69708543786084],[-121.14400997379401,38.697122319944924],[-121.1440061396615,38.6971591554241],[-121.14400148654524,38.69719593260436],[-121.14399601457393,38.697232640675516],[-121.14398972618612,38.69726926794353],[-121.14398262264919,38.69730580450749],[-121.14397470641258,38.697342237772574],[-121.14396597990404,38.69737855694541],[-121.14395644670086,38.69741475124133],[-121.14394610808141,38.69745080985845],[-121.14393496762301,38.697486722012044],[-121.14392303006335,38.69752247602485],[-121.14391029784115,38.69755806020278],[-121.14389677450139,38.697593466463374],[-121.1438824647927,38.69762868222866],[-121.14386737345289,38.69766369582134],[-121.14385150518738,38.697698498266746],[-121.14383486357374,38.697733078779855],[-121.14381745449941,38.69776742569192],[-121.14379928266985,38.69780153002819],[-121.14378035397264,38.697835380119784],[-121.14376067427365,38.69786896609962],[-121.14374025058848,38.697902278108955],[-121.14371491259169,38.69794454499323],[-121.14370295446828,38.69796593098468],[-121.14369067042277,38.69798956326066],[-121.14368701157014,38.697996602145864],[-121.14368047412525,38.69800917844117],[-121.14365993300453,38.6980530149997],[-121.14365039862732,38.69807513691615],[-121.14364135705992,38.69809738589692],[-121.14362476877496,38.69814223814557],[-121.14361018835591,38.698187516939726],[-121.14360240052841,38.69821582934827],[-121.1436012848797,38.69821988605319],[-121.14359763257153,38.69823316654693],[-121.14359211887296,38.69825611276172],[-121.1435826294625,38.698302214750925],[-121.14357865622402,38.69832535612906],[-121.1435722577036,38.69837178455375],[-121.1435698360446,38.69839505721255],[-121.14356654720468,38.69844168428186],[-121.14356637371769,38.69844836691447],[-121.14356630516842,38.69845100790106],[-121.14356533732729,38.69848837265168],[-121.14356551293191,38.69851172215068],[-121.14356742221503,38.69855839571773],[-121.14356915605703,38.69858170627324],[-121.14357418028968,38.69862823797669],[-121.14358127473584,38.698674603884086],[-121.14358258191524,38.698681197449666],[-121.14358310438364,38.69868383018814],[-121.14359042858644,38.69872074715728],[-121.14359577525994,38.698743718620236],[-121.1436079982147,38.69878942328696],[-121.14362225006464,38.69883476635128],[-121.14363013028681,38.698857284440884],[-121.14364739052127,38.69890198123635],[-121.14365033049627,38.69890893371212],[-121.14365074971501,38.6989099233135],[-121.14365676496004,38.69892414548617],[-121.14367698564028,38.69896807223095],[-121.14368782743595,38.698989822079966],[-121.14371095482056,38.69903285945355],[-121.14372323366455,38.69905413431521],[-121.14374920479335,38.69909616473076],[-121.1437664578864,38.69912176919186],[-121.14376894166664,38.69912545426878],[-121.14377703000501,38.69913745836472],[-121.14379162958932,38.699157814299554],[-121.14382217552779,38.69919791086939],[-121.14385448851189,38.699237147486606],[-121.14388852888301,38.69927547610833],[-121.14390618451374,38.69929428518948],[-121.14392885438434,38.69931715838873],[-121.14393210528323,38.6993204374052],[-121.14394273825238,38.699331165654115],[-121.1439616261553,38.699349225249904],[-121.1439809126875,38.69936702381603],[-121.14402066005835,38.699401816077014],[-121.1440619337425,38.69943549974818],[-121.14408312700861,38.699451913244175],[-121.14412659335484,38.69948385808639],[-121.1441330119296,38.69948825599243],[-121.14413555588025,38.699489998224415],[-121.144171456145,38.699514595176225],[-121.14419439324163,38.69952949896892],[-121.14424124808095,38.69955835339816],[-121.14426514982696,38.69957229580797],[-121.14431386659457,38.69959918913391],[-121.14433866675817,38.69961213273271],[-121.14437222415602,38.69962888245332],[-121.14700023780368,38.699631099265375],[-121.14764678884369,38.7005470533801],[-121.16199400389637,38.704154869381846],[-121.16273233442739,38.70422858974518],[-121.16403197198568,38.70293262482746],[-121.16485980624817,38.701675444235846],[-121.16539822890958,38.70061393460513],[-121.16562838016067,38.699786249522866]]]},"properties":{"ZIP5":"95630","PO_NAME":"FOLSOM","Shape_STAr":1605357121.51,"Shape_STLe":249018.442264}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.49369673663085,38.71265926165954],[-121.49179684058105,38.712650952912306],[-121.49120970426668,38.71264837891515],[-121.49110456172846,38.712647917657996],[-121.49110865150422,38.71427106512121],[-121.4877743518756,38.71426638766316],[-121.48760677015277,38.71449972444373],[-121.48695569391555,38.71441624821077],[-121.48583972690719,38.714414652740345],[-121.48585087322905,38.714497045480925],[-121.48585540020854,38.71449705293466],[-121.48587107470905,38.714579451329804],[-121.4886119502401,38.72898612593754],[-121.48899765360987,38.7289855948311],[-121.48937008921257,38.72938158888131],[-121.48960038662563,38.72956033544716],[-121.48977021896802,38.72965870572066],[-121.4898851435346,38.7297146293941],[-121.489927487411,38.72973018206411],[-121.4900290605692,38.72975688145009],[-121.49013002239454,38.729784962729525],[-121.49023034187239,38.729814421263136],[-121.49032999033311,38.72984524611597],[-121.49042893793747,38.729877429050674],[-121.4904410002525,38.72988146126509],[-121.49047551981123,38.72989512623608],[-121.49050973122657,38.72990926281123],[-121.4905436207561,38.7299238628225],[-121.49054972584322,38.72992655806978],[-121.49076455541682,38.730054658361546],[-121.49094772336849,38.73021003524477],[-121.4910936657981,38.73038796721821],[-121.49119794608158,38.73058304493559],[-121.49124298470072,38.73072085081407],[-121.49124791026505,38.73074167218025],[-121.49125237188044,38.73076255637588],[-121.49125636612192,38.73078349978244],[-121.49125989419701,38.73080449429726],[-121.4912629527067,38.73082553269838],[-121.49126549423318,38.73084616883694],[-121.49126762523387,38.73086727794472],[-121.49126928449003,38.730888413812394],[-121.49126946077551,38.73089110554624],[-121.49126043386839,38.73252316830761],[-121.49123364362968,38.73275161401214],[-121.49115661301667,38.73297294666402],[-121.49103168543391,38.73318043778319],[-121.49086265402816,38.73336778501496],[-121.49066904097597,38.73351981638542],[-121.48971898868719,38.73415294998672],[-121.48986935364012,38.73493132398741],[-121.48763277036869,38.73478481454576],[-121.46821235731794,38.73350026082326],[-121.46546353041411,38.733318174961234],[-121.45764771783148,38.73280223633545],[-121.44825634824883,38.73218159047649],[-121.44718864284773,38.73211221039786],[-121.43667700002487,38.73142862316341],[-121.42616555923777,38.730744082653096],[-121.42281739712925,38.73052583679228],[-121.41565431959009,38.73005859159108],[-121.40514328368661,38.72937214641296],[-121.39502159304855,38.728710217464574],[-121.3950197990335,38.72750700095894],[-121.39464246323048,38.72750734613888],[-121.39441466278151,38.72750755274254],[-121.39390991520199,38.72695819496492],[-121.3939131309728,38.72684335821439],[-121.39449637276431,38.72685058485964],[-121.39464767217473,38.726894799471246],[-121.39484472661344,38.726952385840086],[-121.39505501729369,38.72694951503758],[-121.3957561464612,38.726644962225706],[-121.39588465797819,38.72633744369943],[-121.39600788861898,38.72631754038948],[-121.39611452305124,38.72646840384376],[-121.39630297170427,38.72646019278797],[-121.39637865977005,38.72613023136364],[-121.39656606363212,38.72613337025338],[-121.3965146281691,38.7259476494834],[-121.39651570066627,38.7258211358131],[-121.39651624628212,38.725695589666834],[-121.3970938073144,38.72568075042713],[-121.3971985853789,38.725570888205674],[-121.39721361857146,38.72534301960412],[-121.39729770268394,38.72525046049873],[-121.39740564688587,38.72490475614761],[-121.39744754245015,38.72477057616903],[-121.39785273489183,38.724541269374235],[-121.39797967904141,38.724417572019824],[-121.39818026317373,38.724316964581234],[-121.39841580659434,38.72422356778996],[-121.39870434405766,38.72402014661883],[-121.39918198545838,38.7239539550127],[-121.3994571614848,38.72278213296156],[-121.40018793159405,38.72157004719253],[-121.40042554591986,38.72106563730376],[-121.40078782829347,38.720016694132234],[-121.40087800397554,38.71943086341227],[-121.40095202869998,38.71894995054262],[-121.40100333130681,38.71785760583299],[-121.40098255800406,38.71756742414065],[-121.40106215472613,38.71700492406854],[-121.40146371980249,38.716387397688436],[-121.40161615685183,38.71627085313655],[-121.40257709015533,38.715453409887694],[-121.40316318219583,38.714829304551934],[-121.40329703035634,38.71450347027046],[-121.40330365393638,38.71435676083115],[-121.40166137537075,38.71435581702895],[-121.40158274514381,38.71435563391371],[-121.40157763056916,38.71394259483009],[-121.40151212573484,38.70865288244856],[-121.40531583562891,38.708717382745405],[-121.40602008200413,38.70872931041015],[-121.40631443156215,38.70847505728943],[-121.40789905784555,38.70710624650867],[-121.40853271491633,38.70710384190614],[-121.41082844014666,38.70520027295091],[-121.41082810565247,38.704701401319966],[-121.41586222334942,38.70472306865309],[-121.41812332344846,38.70473272969992],[-121.4181156448968,38.70573656921571],[-121.4182146258156,38.70573679551157],[-121.41973669567523,38.70575555312959],[-121.41974656614681,38.706658698003885],[-121.42076547227458,38.70666828846289],[-121.4207613272229,38.70718082009935],[-121.42635562253055,38.7071591672921],[-121.42814191290113,38.707169566987396],[-121.42814965925135,38.70592294729654],[-121.42882949439434,38.705926899143584],[-121.42883068111954,38.70574841770016],[-121.42839256059646,38.70574587272892],[-121.42839602722059,38.70518797039079],[-121.42940994646764,38.70519377846599],[-121.42926755953367,38.704814583574816],[-121.43936941922759,38.704872786489005],[-121.43937267250814,38.70523602605916],[-121.43962520461419,38.70523776452496],[-121.44039925480831,38.70524705779184],[-121.44146379976057,38.705253583117155],[-121.44298295520885,38.70526456583803],[-121.44298461915179,38.7048934014783],[-121.44309951099032,38.70489405592854],[-121.44311703584151,38.70489423917706],[-121.4431211399211,38.705269625798486],[-121.44312113870788,38.705275808635065],[-121.44312100066858,38.70528199261642],[-121.44312072238944,38.70528817322171],[-121.44312030846915,38.705294350473025],[-121.44311975780023,38.705300518959675],[-121.44311914544473,38.70530604841556],[-121.44342427081651,38.70533587779317],[-121.4434245134729,38.70674579485845],[-121.44457660116501,38.706753300764056],[-121.44457701018325,38.7053024574745],[-121.44571494595105,38.70530785108924],[-121.44571733158213,38.70612703173675],[-121.4479653695441,38.70612456732296],[-121.44796933461377,38.70657131913331],[-121.45016157275272,38.70657484823614],[-121.45016068365615,38.70565648294538],[-121.45108261657545,38.705655136595176],[-121.45107838047124,38.70497762224649],[-121.45216190691697,38.704988927483015],[-121.45216502747637,38.70598822965673],[-121.45261507999393,38.70598993302864],[-121.45261387760306,38.70499364082977],[-121.4526619641413,38.70499414255077],[-121.45266061216618,38.7058236968684],[-121.45330504614465,38.70582483278359],[-121.45330461983903,38.70559282975443],[-121.45420089362806,38.70559397998928],[-121.45420054593943,38.70553524094427],[-121.45491129464295,38.705537426850675],[-121.45491226318333,38.70604413037339],[-121.4557610888116,38.70604673649159],[-121.45576132634146,38.70617030155186],[-121.45731958074133,38.70617506728305],[-121.45731832129732,38.70528322845723],[-121.45717927280701,38.70504114891283],[-121.4577784918858,38.70504736995263],[-121.45842921657189,38.706180220775025],[-121.46080330980892,38.70619628151735],[-121.46080061813748,38.707726060646024],[-121.46245720075635,38.707741929508245],[-121.4624590650309,38.70666795388415],[-121.4637999888685,38.706674161026775],[-121.46379993241109,38.70577576882867],[-121.46584507914302,38.705792029454955],[-121.46584895794192,38.70549197406569],[-121.46657114161734,38.705497479894426],[-121.46657075894419,38.705138312575045],[-121.46763927265152,38.70514931855573],[-121.46762182289969,38.70638517878043],[-121.46835984540571,38.7063919019787],[-121.46836029682163,38.7064481684471],[-121.46841438199746,38.70644859653514],[-121.46878431890849,38.70645152485584],[-121.46879777979903,38.70516124132622],[-121.4694887184726,38.70516834623447],[-121.4694992532879,38.70757894186597],[-121.46957661683935,38.707579590295005],[-121.46968078302858,38.7075804639313],[-121.47017435613839,38.707584596284214],[-121.47106818472173,38.70759207690165],[-121.47196664903525,38.707599588852275],[-121.47193406781837,38.705193460077815],[-121.4728224357884,38.70520256910192],[-121.47285819472474,38.70760703536984],[-121.4737402660182,38.707614396909264],[-121.4737614777702,38.70880069001075],[-121.47376187611219,38.708822867299475],[-121.47554500743541,38.70883310343875],[-121.47554491762607,38.70880876811349],[-121.47553918745253,38.70725470727495],[-121.4841246897355,38.707260124858706],[-121.48447764387774,38.70725300333045],[-121.4845196918588,38.7072521532945],[-121.48550937658803,38.7072565819929],[-121.48622720954931,38.707260677583406],[-121.48786568858715,38.70726372870567],[-121.48918534351655,38.70726616912869],[-121.49368914957992,38.70727438369013],[-121.49369477007494,38.71088770264079],[-121.49369673663085,38.71265926165954]]]},"properties":{"ZIP5":"95626","PO_NAME":"ELVERTA","Shape_STAr":237954876.056,"Shape_STLe":89428.6636146}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.52123976413486,38.367228348785865],[-121.51996874984076,38.367135472709535],[-121.5199230094269,38.367136318507896],[-121.5197528832077,38.367098614773006],[-121.51971334458672,38.36708705307546],[-121.5189216783494,38.366855554889916],[-121.51853644125379,38.366679976444594],[-121.51849848546428,38.36666860381263],[-121.51804495600732,38.36653271051824],[-121.518045695857,38.36642287680453],[-121.51678743390933,38.366176396884235],[-121.51513453022082,38.365790476260266],[-121.51348910080672,38.36533580457615],[-121.51158163575117,38.36482238877622],[-121.51157164591766,38.36509686472345],[-121.5096755681686,38.36489995907589],[-121.50891403519304,38.36495012382184],[-121.50868463624384,38.36240089846646],[-121.50797475180076,38.35804318090699],[-121.50740807439753,38.35801776211813],[-121.507088670011,38.35605678769409],[-121.50764208871134,38.35600089735425],[-121.50666619618698,38.350009027660114],[-121.50744013571648,38.350012333598094],[-121.5068265220744,38.345395231440996],[-121.50689490274931,38.34538832463821],[-121.50555993712263,38.33533518020213],[-121.50315001678378,38.320521570884175],[-121.50261874726874,38.320519797607716],[-121.49917225931523,38.299334516602336],[-121.49970077948981,38.29934422593985],[-121.49659251923244,38.280228070536566],[-121.49748973761581,38.28023840534323],[-121.49748450205738,38.27677600366237],[-121.4974844727806,38.27675704252982],[-121.50327611179694,38.27682065175011],[-121.51432242258458,38.27705703554596],[-121.51465330987948,38.27704567428009],[-121.51500954477646,38.276985783373895],[-121.51534717505808,38.27687803727771],[-121.51565593928056,38.27672571191805],[-121.5159264551051,38.27653343293084],[-121.51596340522033,38.27650215520407],[-121.52905506396918,38.27602131347131],[-121.53130137343139,38.27771599144248],[-121.53071673677674,38.27820170018568],[-121.53532282725952,38.28174052466725],[-121.53539609076923,38.28169045944027],[-121.5354780419231,38.28163257253509],[-121.53555869726765,38.28157356775691],[-121.53918951981072,38.27887035258318],[-121.53881699465207,38.27857017400328],[-121.54087456664784,38.27698126609123],[-121.54127168502357,38.27731999919488],[-121.54178903286345,38.27693477182882],[-121.54189045616835,38.276859249096205],[-121.54232622806761,38.276534759046804],[-121.54545146096729,38.27929006666691],[-121.54831005912853,38.28146135514775],[-121.55130250960751,38.28313593926521],[-121.55433542448208,38.285324899766884],[-121.55950807092324,38.289939177630345],[-121.5642703734332,38.29414023411528],[-121.56976057893063,38.30045243396572],[-121.57347538420046,38.30531778528655],[-121.5775349011162,38.303498394471916],[-121.57932530208096,38.30256205989338],[-121.57967718583092,38.3019461836458],[-121.5799461232017,38.300627131155046],[-121.58135035680878,38.29871219091549],[-121.58175494499636,38.2965193192024],[-121.58341530468309,38.29170807191664],[-121.58332872951765,38.2878848102009],[-121.58361552096116,38.28721725975921],[-121.58741637338852,38.284745150252384],[-121.58868756468065,38.2831725142698],[-121.58909272550822,38.28082533415393],[-121.58914548865731,38.279214056269836],[-121.5901544534407,38.27781190055473],[-121.5907258654872,38.276819623814845],[-121.59064510044884,38.275722167484304],[-121.58882410361002,38.27454994840378],[-121.58804604575076,38.27363857866579],[-121.58939153391223,38.27045473574692],[-121.58915938629725,38.269202453224445],[-121.58797255704472,38.26750103794993],[-121.58760226793596,38.263796776366966],[-121.58904652350873,38.262327615818656],[-121.59113472667175,38.26236932799095],[-121.59318126968735,38.2620851347365],[-121.5944714551927,38.260906800423854],[-121.59446202743237,38.258729579539654],[-121.5943807403574,38.25771784370336],[-121.59539143409516,38.255938501102364],[-121.59761872485294,38.25442055376928],[-121.59942690010134,38.25392969904979],[-121.60001467168996,38.25384602426534],[-121.60142694377073,38.253350818583094],[-121.6011680702965,38.25356443201818],[-121.60087625788769,38.25375220162059],[-121.60079318951314,38.25428634779004],[-121.60068386095728,38.25484613213746],[-121.60045213461184,38.2558105107744],[-121.60043497723805,38.255890498282014],[-121.60032699754048,38.256393909844],[-121.60023359687355,38.25690638162385],[-121.60020200464349,38.2572635944004],[-121.60022901072855,38.25772843076117],[-121.60025728134865,38.25796706445281],[-121.60028735914183,38.25819370555605],[-121.60036083501492,38.25844419305273],[-121.6004495172844,38.25877812700754],[-121.6005827412157,38.25924333150061],[-121.60073103943131,38.25981600749757],[-121.6008647327777,38.260197820422505],[-121.600939489536,38.26053170670708],[-121.60099729890892,38.26078211165705],[-121.60102645140574,38.261175563124844],[-121.601085604563,38.261497724386786],[-121.60111354660445,38.26179575017531],[-121.60122998178456,38.26246340530378],[-121.60134835904995,38.26309537138338],[-121.60143731630068,38.26338193810163],[-121.60158543241145,38.2639903370051],[-121.60171840828406,38.26450323579439],[-121.60192533771058,38.26518322976144],[-121.6020449171758,38.26560066223059],[-121.60220763434951,38.26608999337676],[-121.60238616081949,38.266555353192665],[-121.6024909967653,38.26680594760864],[-121.60264111258202,38.26705667190485],[-121.60277562010008,38.267295698308985],[-121.60292573794393,38.26754642134293],[-121.60332920744463,38.268274786980015],[-121.60355482998767,38.26872830641298],[-121.60371822456129,38.2690985212591],[-121.60385214852268,38.269444635079275],[-121.60395640199988,38.26980228982619],[-121.60399990207613,38.270124395954404],[-121.60401425889393,38.27036265046835],[-121.60399660861302,38.270720244025824],[-121.60396509127762,38.271065788385606],[-121.6039180340948,38.27138722667448],[-121.60383995845233,38.27164919195998],[-121.60373194246861,38.271970777433204],[-121.60358032589625,38.27230388202996],[-121.60345703309964,38.27255369271527],[-121.60330393557466,38.27283906758574],[-121.60313670348557,38.27316044875525],[-121.60298366675671,38.273434182216974],[-121.6027851542931,38.273743098652425],[-121.60258656928752,38.274064371025446],[-121.60228289373829,38.27449237037179],[-121.6020071447352,38.274908438565504],[-121.60182429649396,38.275217762433684],[-121.6016710520233,38.27552716399228],[-121.60145759905244,38.27601486550467],[-121.60125800652744,38.27651494588501],[-121.60110383098635,38.27699082501124],[-121.60095112738011,38.277514763987234],[-121.60081061329566,38.27803874409559],[-121.60076340332704,38.27838423439309],[-121.60073226507812,38.278658360078964],[-121.60071479718172,38.278979925902426],[-121.60072914300555,38.27921851159834],[-121.60074342600844,38.27946879595595],[-121.60080104990759,38.27975489818835],[-121.60090503643637,38.280160635213385],[-121.6010161930513,38.280530343593064],[-121.60110537024225,38.28078085825611],[-121.6012099569963,38.28107915047957],[-121.60137550850715,38.2813776525135],[-121.60151017233888,38.28159265633561],[-121.60173507715835,38.28186766523307],[-121.60193070633521,38.28208287824423],[-121.60215588034147,38.28231019265111],[-121.6023404875425,38.28247162920376],[-121.60252509671355,38.28263306636747],[-121.60279529412536,38.282908257255954],[-121.60308110761991,38.283195144295284],[-121.60335137815962,38.28345830912945],[-121.60357675924021,38.283649593313854],[-121.60389419240626,38.28388922036801],[-121.60425464916268,38.284224085233674],[-121.60450905429141,38.284522888613594],[-121.60474275524555,38.28478592382878],[-121.60513398150094,38.28522833804782],[-121.6054040022293,38.28553919180147],[-121.60550901225902,38.28576575950936],[-121.60553750583425,38.28596869553763],[-121.6055365229284,38.28614717622082],[-121.6054902503071,38.28632585780135],[-121.60542849498961,38.28646876272697],[-121.60530738467706,38.28663516130987],[-121.60494270564075,38.287062960236035],[-121.60466738624444,38.28739564370695],[-121.60445477321437,38.28772854166866],[-121.60423975517814,38.28818087653414],[-121.60411798085156,38.288466389245166],[-121.60402562050348,38.28878802921527],[-121.60393286569288,38.28918106104521],[-121.6038857953258,38.28950249883404],[-121.60385239745538,38.28987170703398],[-121.60388131354593,38.290312881159174],[-121.60393120035499,38.29074210051694],[-121.60406345255332,38.29139813730983],[-121.60413792670701,38.291791743480324],[-121.6042553616784,38.292292588802106],[-121.60443974794399,38.29297247396427],[-121.60460389158362,38.29353320151441],[-121.6047377329192,38.29390334104598],[-121.60494750563599,38.29440450037911],[-121.60508174486668,38.29470288993132],[-121.60515520880847,38.29496537459405],[-121.60523015247531,38.29527556251547],[-121.60525852024908,38.295501866350634],[-121.60527301693892,38.29571642561516],[-121.60527216187734,38.29587156673612],[-121.60523975493071,38.29606196497968],[-121.60516352884412,38.29630024115482],[-121.6050716249085,38.29653813386987],[-121.60491848057285,38.29682386901112],[-121.60473545488014,38.29715686915972],[-121.60452126929701,38.29745406551488],[-121.60436845072392,38.29768007871838],[-121.60403339074495,38.298095975326916],[-121.60375989913105,38.29840496734191],[-121.60347105377089,38.298654207890976],[-121.60318207524956,38.2989271171199],[-121.60287942076879,38.29915261271492],[-121.60245467800507,38.2994013565678],[-121.60208943026427,38.2996029644648],[-121.60144437024567,38.29999372999825],[-121.60100547889945,38.30027847218398],[-121.60068499038458,38.30057529372445],[-121.60036624145195,38.30087211951656],[-121.60010833827056,38.301192854130655],[-121.59995523022249,38.301466555278566],[-121.59986350066333,38.30166874793522],[-121.59981707158991,38.30187109682624],[-121.59978411116731,38.30215724414281],[-121.59978304649752,38.302347749755334],[-121.59981247593636,38.30269347922338],[-121.5998393623636,38.30318234423789],[-121.59988279899942,38.303516121611935],[-121.59988140086541,38.30376635208068],[-121.59985044767761,38.304004780213106],[-121.59981762067751,38.30426690053058],[-121.59978633740572,38.304564722884294],[-121.59972402345839,38.30480271424353],[-121.59963229012125,38.305004905863086],[-121.59947963965634,38.3051952167071],[-121.59931318293528,38.30536145097134],[-121.59905404779003,38.30558708794633],[-121.59885616058615,38.30576524091351],[-121.59844644534647,38.30612111263012],[-121.59814206938324,38.30633458936465],[-121.59780760405275,38.30663135355914],[-121.59754980070963,38.30692838523446],[-121.59745819171488,38.307106879621664],[-121.59742555521802,38.30733330331701],[-121.59745584545699,38.30752424905901],[-121.59756072412883,38.30777484867419],[-121.59774039753106,38.30804937895627],[-121.59817479899215,38.3085753618476],[-121.59835648257807,38.30880253140298],[-121.59849112278476,38.3090295378145],[-121.59862556461728,38.309291882423196],[-121.59866999735031,38.309447181275715],[-121.59866912967162,38.30960199186718],[-121.59865217793178,38.309828470511825],[-121.59856023615397,38.3100663564479],[-121.59836199821821,38.310304203740685],[-121.5981797796126,38.31048240931201],[-121.59786164585775,38.3106597858528],[-121.59742133809044,38.31087275977781],[-121.59696721764409,38.31106201389276],[-121.5964817323337,38.311251156504234],[-121.59605709565429,38.31146420890882],[-121.59552569425402,38.311760276824124],[-121.59502545165789,38.31209215022829],[-121.59301156051505,38.31353901808605],[-121.59266303046878,38.31384771786583],[-121.59244915080365,38.31407317038851],[-121.5922661602611,38.314382453782756],[-121.59197497003552,38.31502501096799],[-121.59172935299647,38.315620003419966],[-121.59161486102067,38.31583410817847],[-121.59143226960904,38.316072025304045],[-121.59123365342947,38.316369252877436],[-121.59103517397567,38.31664245486341],[-121.59083675856948,38.31690398395868],[-121.5906997430074,38.31709433895381],[-121.5904647997362,38.31734371187164],[-121.59023641475103,38.3176648587283],[-121.59014275984433,38.31789073320939],[-121.5901269755774,38.31821263507329],[-121.59012494099186,38.31978567681986],[-121.59013803154798,38.3202387981706],[-121.59015081277734,38.320441353005855],[-121.59025534527784,38.32075168344288],[-121.59029949591701,38.32095435058765],[-121.59034337617474,38.321204714205855],[-121.59038711912162,38.32147913099904],[-121.59043038508979,38.32183658262156],[-121.59039946354925,38.322063009823566],[-121.59038262017506,38.32226545945929],[-121.59032206795641,38.3224917823308],[-121.59015353492703,38.32270572177704],[-121.58994170499905,38.32287178260529],[-121.58971265093076,38.32300208595052],[-121.5894399578519,38.3231442324554],[-121.58906109082018,38.323262000523336],[-121.58871379781468,38.32334415705646],[-121.58821307004787,38.323437790888704],[-121.58781871989842,38.3235198028757],[-121.58754643543764,38.32359022317133],[-121.58733514380633,38.3236611916516],[-121.58713759011779,38.3237675750365],[-121.58686314606108,38.323909736245284],[-121.58665130493833,38.324075791043136],[-121.58651474823297,38.3241823919139],[-121.58634640511292,38.32436060277795],[-121.58616398170516,38.32456245982644],[-121.58598093819089,38.3248717595725],[-121.58579768442381,38.32521672981273],[-121.58555329160686,38.325585534735325],[-121.58543103344327,38.325930722633046],[-121.5854139683742,38.32616886940347],[-121.58538121750503,38.326406959801375],[-121.58537976633586,38.32665751835823],[-121.58539400285723,38.32690780447532],[-121.58542371876884,38.327193815051935],[-121.58551241652138,38.32752776295588],[-121.58564663685188,38.32782617574351],[-121.58576544746381,38.328077166193786],[-121.58585414791023,38.32841111295107],[-121.58588338486062,38.32878054207234],[-121.58586618047316,38.32904271601245],[-121.58577354865461,38.32938803772851],[-121.58564947364432,38.3297452480781],[-121.58552693573662,38.330137802038514],[-121.58541909740512,38.330399648494996],[-121.58529724380708,38.330673471327906],[-121.58516011953058,38.330875489749715],[-121.58500730585892,38.33107778130461],[-121.58485463143634,38.33125571586766],[-121.58464053613032,38.331505510037225],[-121.58441235652266,38.331778593280895],[-121.58418493702166,38.331920917692294],[-121.58388131083731,38.33197918968709],[-121.58365451249935,38.332014424988074],[-121.58336691793846,38.332013386791346],[-121.58303407683555,38.33200015751265],[-121.58262656425228,38.33193896057002],[-121.58206789859572,38.331794151095345],[-121.58165920267066,38.331637525319564],[-121.58135850085388,38.3314936474868],[-121.58111699421809,38.33136165390223],[-121.58076965562296,38.33114588192062],[-121.58049900855211,38.33093035894278],[-121.58022836294188,38.330714864160456],[-121.57994238299206,38.330439562433384],[-121.57965675613283,38.330104892780625],[-121.57941623509825,38.32980608543682],[-121.57920500017204,38.32956677813438],[-121.57888932714951,38.32930339232856],[-121.57861862419436,38.32909989246373],[-121.5783321635825,38.328908334191844],[-121.57792614782346,38.328596918902434],[-121.57756349873803,38.32832132982625],[-121.57702175496345,38.32797371749236],[-121.57658395294521,38.3277339032842],[-121.57521900870881,38.32718588180966],[-121.57511159229699,38.32737083579669],[-121.5747295639101,38.328012985475304],[-121.57437772638289,38.32855985571292],[-121.57395079401181,38.32913044456929],[-121.5735242832637,38.329629311054774],[-121.57350312366758,38.32965182980671],[-121.5718946896913,38.33136349764789],[-121.57140678922738,38.33192185304176],[-121.57095082480427,38.332384903104995],[-121.57038824676039,38.33289527991685],[-121.56968760072617,38.33346483562842],[-121.56868556287904,38.33429516351421],[-121.56739838711212,38.335577492537155],[-121.56570829611597,38.337180248501255],[-121.56388383435838,38.3387941433476],[-121.56219432047034,38.34027740381102],[-121.56152411123715,38.34097817040385],[-121.56099066902667,38.34154797964697],[-121.56047283041352,38.34213020160531],[-121.56000096838271,38.34260514845496],[-121.55939327371888,38.34305557694052],[-121.55890688513045,38.343339623128855],[-121.55831589422831,38.34362362370007],[-121.55749667664985,38.343882721374676],[-121.5564963017203,38.34411708771022],[-121.5552534527035,38.34437454054091],[-121.55389030625746,38.34463151321539],[-121.55270815737043,38.3449368961893],[-121.5513894220933,38.34533679987181],[-121.55038900476558,38.345571443897526],[-121.54929770306201,38.3458410923818],[-121.54784226148232,38.346073964224786],[-121.5466154907746,38.34625963500917],[-121.54549550960648,38.34637467644573],[-121.54449627514927,38.346418103490684],[-121.54331542449823,38.34650885676385],[-121.54214949775408,38.34671877559819],[-121.54102707324664,38.3469408555731],[-121.53992192316578,38.347186663529165],[-121.53901163601802,38.347492988393206],[-121.53821571371004,38.347837709328154],[-121.5380850360305,38.34789430639297],[-121.5372049588315,38.34837955578466],[-121.5365278749564,38.34874616397206],[-121.53570825376127,38.3493150366959],[-121.53509860369775,38.34976565827916],[-121.5343536186609,38.35038221802228],[-121.53296805682449,38.35164007173123],[-121.53141455662647,38.35324255421278],[-121.53081952171412,38.353848002189814],[-121.53002810545055,38.354619489076335],[-121.5290983836858,38.355473799209975],[-121.52826167835205,38.356233062496706],[-121.5272263520956,38.357230044426935],[-121.52661579553555,38.35779938089133],[-121.52614415771545,38.35819079906498],[-121.52573417428687,38.35848704716126],[-121.52518628070952,38.35880675423124],[-121.5245791780229,38.359114214969566],[-121.52325772275022,38.35985941691039],[-121.52231533460659,38.36049911043262],[-121.52188891118249,38.36090269753852],[-121.52162861489614,38.36123524993489],[-121.52138305207188,38.36171100649232],[-121.52122752217743,38.362282199979624],[-121.52110146227226,38.363139778531746],[-121.52103484478967,38.36397390660387],[-121.52100089354394,38.36461735497024],[-121.52101156008298,38.36536840999485],[-121.52108072165332,38.36623846787876],[-121.52123976413486,38.367228348785865]]]},"properties":{"ZIP5":"95615","PO_NAME":"COURTLAND","Shape_STAr":634866493.444,"Shape_STLe":148647.795331}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.68547215339828,38.122882558977246],[-121.68431399370276,38.12265862376108],[-121.6839536318852,38.123432902521394],[-121.68184287065951,38.12340816252385],[-121.68155455738798,38.12340478021158],[-121.68192160028858,38.123317189949056],[-121.68254325815997,38.12296645003901],[-121.6827547852712,38.12281038538026],[-121.6828550795785,38.12256589902859],[-121.68294138334429,38.12246105257864],[-121.68303773843019,38.12234399367965],[-121.68328835579726,38.12203952512447],[-121.68354453084764,38.12190024709321],[-121.68361576086484,38.12112229756366],[-121.68369332982314,38.12008910218296],[-121.68369737480053,38.119170985049024],[-121.6840299772721,38.11825377006561],[-121.68388685271825,38.117594630785],[-121.68400129902703,38.11647507543987],[-121.68425344593345,38.116093875272526],[-121.68436341281276,38.11598182372528],[-121.68426546809684,38.11456085911302],[-121.6834573111809,38.113787131687204],[-121.68346066435289,38.11302654148717],[-121.68335640342306,38.113026254519646],[-121.68335761433285,38.11275167388884],[-121.68325335380251,38.112751386827895],[-121.68325910740329,38.111447126260174],[-121.68386728393469,38.11144879942252],[-121.68399045301463,38.110645141282184],[-121.68425265225508,38.10912662799206],[-121.68484311325238,38.10766253748293],[-121.68503002545393,38.106658462131755],[-121.68539396457612,38.10571251195056],[-121.6863540620457,38.10198087076142],[-121.68672529382172,38.100549111475445],[-121.6867668016355,38.099400537664465],[-121.68673569254072,38.09816530577348],[-121.68655685874474,38.09732903630335],[-121.68656149474246,38.09626682205188],[-121.68645381918876,38.088686849447654],[-121.68544895078489,38.08618232353653],[-121.68107998530407,38.08416291538772],[-121.6812211730133,38.08330869263822],[-121.68111953861974,38.08076988636453],[-121.68072041252894,38.07912438149663],[-121.68005085294332,38.076977337659066],[-121.67961156080861,38.07422305971118],[-121.67897951431665,38.068750914842944],[-121.67901236985423,38.06829699605605],[-121.67922011875378,38.06542674515763],[-121.67963505942149,38.063890567648954],[-121.68040959021708,38.06231936398635],[-121.68154667931717,38.06082090960061],[-121.6836584595487,38.058788980893375],[-121.6860638899009,38.057079435244646],[-121.6895102891211,38.05472911832789],[-121.69130316947476,38.052874669919355],[-121.69294030848947,38.050877021043775],[-121.69484819684315,38.048879713049914],[-121.69648326072495,38.04691767838529],[-121.6986616160298,38.044957074194876],[-121.70201437874675,38.04317829029417],[-121.70554895796685,38.04147126568624],[-121.70962193997705,38.04008708546072],[-121.71453710362884,38.038596067686214],[-121.72094223458949,38.03645290435988],[-121.72351925403463,38.0352870302068],[-121.7271565779142,38.03279736550946],[-121.7308719833163,38.02978367729465],[-121.73548177442159,38.02748103819865],[-121.73751247193134,38.026529469064535],[-121.74059549429366,38.025888817287594],[-121.74430109434397,38.025373006151085],[-121.74840813080614,38.02508437864686],[-121.74941016901953,38.02501393649558],[-121.75268570673525,38.02486691203945],[-121.75615692927721,38.02484344192809],[-121.75939252535697,38.02469616944301],[-121.76177350439742,38.02423846325106],[-121.7638084162125,38.02353434151141],[-121.76717887588691,38.02236798185362],[-121.77104343964045,38.02086451433508],[-121.7752203144749,38.01933066581789],[-121.77779614617829,38.01862621675711],[-121.78177299759933,38.018294734662376],[-121.7844633335081,38.01814536122336],[-121.7880138698749,38.01818184222352],[-121.79015314280075,38.01838697162025],[-121.7915791429386,38.018523683762474],[-121.793696633877,38.019111788347864],[-121.79625922408755,38.019635886465274],[-121.79876872427879,38.02047692870037],[-121.79990461886356,38.02077288317789],[-121.80216372867694,38.0209442894013],[-121.80449506649207,38.02072485417859],[-121.80626380897193,38.02056004191699],[-121.8080258913772,38.02039582190652],[-121.81056833019014,38.02040004249565],[-121.81346378686547,38.02079570043259],[-121.81508543967134,38.0211892690709],[-121.81688501161238,38.021918415195486],[-121.81963615179343,38.023151843031606],[-121.82259802024227,38.024832435883475],[-121.82711070421789,38.027632482697136],[-121.83035373750923,38.03020703153071],[-121.83310036789824,38.03361859555826],[-121.83623231692934,38.03792476234531],[-121.83820329449587,38.04144699073302],[-121.83897351209693,38.04401779171046],[-121.84009794807469,38.04658910883552],[-121.84058492620704,38.050109226667345],[-121.84135385206713,38.0541322170411],[-121.84244196605006,38.05754159591526],[-121.84335586765019,38.05966571652536],[-121.84462377433542,38.0611196151065],[-121.84695271819508,38.062575275222514],[-121.85161145754456,38.06436926591927],[-121.85556707187047,38.065323669669105],[-121.8591694072098,38.06583095420723],[-121.86283455563662,38.066004620071595],[-121.86313881771184,38.066019031585434],[-121.86263758251624,38.06841382856801],[-121.86168531319429,38.06962839618479],[-121.86050807869188,38.07041365037841],[-121.85891110941064,38.07118051516295],[-121.85822711948315,38.071409866005745],[-121.8563441025092,38.071874431669706],[-121.85444364539053,38.072122266736834],[-121.85231747896096,38.072334058090526],[-121.85037184355653,38.07258176964799],[-121.84924011667748,38.07311641098173],[-121.84770144398253,38.07390106098908],[-121.84651472780965,38.07467525697973],[-121.84611530913618,38.07493582485378],[-121.84527876639217,38.0754708221868],[-121.84405648816183,38.0760770406166],[-121.84269752687902,38.076432833347674],[-121.84152155019379,38.07650260857622],[-121.8406621465104,38.07635863744483],[-121.83948712769335,38.07599936059231],[-121.83858329980694,38.075533366062615],[-121.83763679313456,38.07474535477608],[-121.83686886697197,38.074100703124586],[-121.83526564984604,38.072668203046774],[-121.82994323391279,38.067261816920784],[-121.82777618718644,38.06572129023908],[-121.8244960827722,38.06455543733635],[-121.81556921819634,38.06160421896481],[-121.81415255255712,38.06115950672638],[-121.8051838803776,38.05857286904715],[-121.8032574826349,38.058212274790506],[-121.80117731523804,38.05820869526386],[-121.79933763691305,38.05851544503069],[-121.79622815531474,38.05960657163283],[-121.79034119307158,38.06276603016361],[-121.7820244214454,38.06644505813307],[-121.7758935422988,38.07003235469478],[-121.75500953989953,38.08040570244311],[-121.74250525034756,38.08685526331292],[-121.74099263266676,38.08763528288509],[-121.73713325552383,38.08466857815226],[-121.73508833874592,38.083376777759646],[-121.7337791795932,38.08276590968845],[-121.73252117337479,38.082417344008064],[-121.73133060672734,38.08215234188752],[-121.73110493999785,38.08210381285958],[-121.72993001546949,38.08185113856531],[-121.72881384059427,38.081669702103966],[-121.72804629980892,38.08162016695604],[-121.72705094699953,38.08164183425787],[-121.72602565854254,38.081770509673945],[-121.72483302908326,38.08205358316924],[-121.72333802123588,38.08237194436194],[-121.720579010352,38.0825557522508],[-121.71817276999856,38.08269301895005],[-121.7165130399617,38.0829271399579],[-121.71530678758933,38.083126664149695],[-121.7144161336679,38.083458403857804],[-121.71355500144738,38.083789878735914],[-121.71202862132223,38.08454666263716],[-121.71100091545155,38.085259044149964],[-121.70995582357969,38.0864003812924],[-121.70962125441831,38.08709079993144],[-121.70931640095169,38.087733597547036],[-121.70904280970822,38.088376447406866],[-121.70879855198007,38.08906709236059],[-121.70861528341119,38.08971019796979],[-121.70846202407903,38.09023426377618],[-121.70836869161192,38.090972985838725],[-121.7082911865895,38.091664053673746],[-121.70828808901393,38.09242670008423],[-121.70812843002533,38.09452378601553],[-121.70809991062886,38.0976937813752],[-121.70797257228787,38.0995286929239],[-121.70787437728066,38.101459125337065],[-121.70759651112193,38.10989215421864],[-121.70690823810867,38.11086585629862],[-121.70144104909714,38.10835666909727],[-121.70151398237586,38.10890903365191],[-121.70147969907804,38.10962944840909],[-121.70122264323867,38.10999932478322],[-121.70103785157465,38.1105464273828],[-121.70037733613563,38.111376374839026],[-121.69957612738855,38.11217713165521],[-121.69891592534337,38.11292472817506],[-121.69840744216697,38.11355332269112],[-121.69727535587155,38.11489666107265],[-121.69672534978206,38.11547161504865],[-121.69629118130294,38.115783373584186],[-121.69615152654787,38.11612591938476],[-121.696032961145,38.116416734483266],[-121.69555620713258,38.116930119506335],[-121.69515728962787,38.11753428648856],[-121.69464438322086,38.117961111392354],[-121.69420409814151,38.11847870472117],[-121.69398806398651,38.1189968922842],[-121.6935839235662,38.119596923172736],[-121.69318002272554,38.120139312300566],[-121.69281297587925,38.12059945567505],[-121.69230401435568,38.12131448257681],[-121.69193596654472,38.122005181190794],[-121.69167733194541,38.12272087556885],[-121.69127834847994,38.12332502951552],[-121.69116186401322,38.123517097887074],[-121.69057469563893,38.123510256309736],[-121.69025483876395,38.12350652898541],[-121.68734061274874,38.12347252041371],[-121.68677526626873,38.122970404938954],[-121.68619859802004,38.122959039141726],[-121.68583437389701,38.1229266155976],[-121.68560724467892,38.12290639583517],[-121.68547215339828,38.122882558977246]]]},"properties":{"ZIP5":"94571","PO_NAME":"RIO VISTA","Shape_STAr":849006606.479,"Shape_STLe":164393.080532}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.47650700413921,38.657127630484936],[-121.47612998937048,38.655234185715265],[-121.47612940244382,38.65523463170812],[-121.47612636394935,38.65521942077118],[-121.47469728957192,38.65532993349633],[-121.4746968335012,38.65532774495614],[-121.47468030367388,38.65524847052083],[-121.47413520631397,38.65246787479754],[-121.47385406886401,38.6510336766902],[-121.47232488544299,38.64289178906919],[-121.47208150719388,38.64159578040439],[-121.4719962118108,38.64113374833403],[-121.47190569192608,38.64064338171927],[-121.4712767241703,38.637395137883765],[-121.47050148807546,38.63335612112324],[-121.46996585201505,38.630374675940224],[-121.46993851380768,38.63023707676641],[-121.46918119181004,38.626058350116104],[-121.47048200366102,38.62606703287847],[-121.47069468486869,38.626068451649694],[-121.4708480655496,38.62686646108737],[-121.4708587438445,38.626922014095626],[-121.47086932262982,38.626977050434476],[-121.4711718564918,38.626980284974096],[-121.4711383886806,38.62698222227596],[-121.47110585771658,38.626988688147456],[-121.47107525156338,38.626999488001935],[-121.47105232796062,38.62701130129929],[-121.47103171856357,38.62702155759889],[-121.47100915121072,38.62702885001391],[-121.47098531317573,38.627032957358345],[-121.47096092776725,38.62703375500714],[-121.47093673592013,38.62703121931679],[-121.47091347323345,38.62702542661948],[-121.47089184585309,38.62701655311299],[-121.47087500732647,38.6270066267053],[-121.47102104445366,38.62776636287817],[-121.47103680803006,38.62776656278135],[-121.47138169577495,38.627770946885256],[-121.47161705157235,38.627773937662916],[-121.47183949290195,38.62777676368158],[-121.47202864894201,38.62777916731682],[-121.4721080295381,38.62778017499613],[-121.47232737491314,38.62778296164645],[-121.4723665375405,38.62778345893328],[-121.47254776647385,38.627785759851704],[-121.47278411685161,38.62778876089427],[-121.47303784887167,38.62779198285997],[-121.47328470911343,38.62779511627113],[-121.47353539113455,38.627798297154094],[-121.47378301508122,38.62780143928004],[-121.47403391647757,38.62780462278329],[-121.47428665298568,38.627807828484805],[-121.47453490974527,38.627810977280326],[-121.47453475131144,38.62738826701345],[-121.47453459237815,38.62696126216567],[-121.47552934282567,38.62697186259882],[-121.47552892746346,38.62753284070117],[-121.48268739263048,38.62750453530565],[-121.48282625055663,38.627513507475996],[-121.48296101355334,38.62754125839532],[-121.48308551693154,38.6275860209416],[-121.48316369038052,38.62762076862185],[-121.48369431343326,38.627535457657345],[-121.48389819929596,38.6275223184583],[-121.48389820494138,38.62752264911219],[-121.48403132530879,38.62751956191327],[-121.48507802257652,38.62751426490778],[-121.48516203741369,38.62751395091526],[-121.48618947614997,38.62750924566591],[-121.48717491590759,38.627503658016614],[-121.49048846018087,38.62746267332226],[-121.49093831681309,38.62745709781494],[-121.49289518013012,38.62744748911181],[-121.49374408790307,38.6274433073245],[-121.49532987917226,38.62743581010604],[-121.49789937231854,38.627420202085474],[-121.49986842491634,38.627419108556055],[-121.50085729546267,38.62742303009077],[-121.50182517084315,38.62742582408209],[-121.50316714164269,38.6274329590497],[-121.50316714956956,38.62743083297223],[-121.50830511206468,38.62744935355512],[-121.50851513559255,38.62744909520855],[-121.51100990077414,38.62743398116142],[-121.51106414952125,38.62743365157109],[-121.51107967780024,38.627433663952864],[-121.51109520232427,38.62743388892773],[-121.51111072080283,38.627434325585156],[-121.51112622633923,38.62743497479697],[-121.51114171548842,38.627435836548585],[-121.51115718365678,38.627436910820606],[-121.5111726239662,38.627438195782304],[-121.5111880352622,38.6274396923297],[-121.5112032178727,38.62744137709794],[-121.51395053130298,38.62776512102061],[-121.51396671706155,38.627766915039416],[-121.51398293993955,38.62776848669079],[-121.51399919533682,38.62776983685641],[-121.5140154786718,38.62777096371514],[-121.51401973888075,38.62777122122407],[-121.51403604939799,38.62777206711498],[-121.51405237636828,38.627772689650925],[-121.51406871405541,38.62777308790681],[-121.51408505900775,38.62777326276919],[-121.51408977455601,38.6277732717368],[-121.51805929253547,38.62777279630736],[-121.51819930942655,38.62777326067575],[-121.518279732945,38.62777380411973],[-121.51841975034458,38.62777419344958],[-121.53248216914066,38.62775658566331],[-121.5326990381859,38.62774141482825],[-121.53290925433069,38.627696933233445],[-121.53295446770647,38.627683170592086],[-121.53409992085948,38.62731426526826],[-121.53421740194327,38.62728552350575],[-121.53433946010594,38.62727322150094],[-121.53436946540361,38.62727276733348],[-121.53925378738462,38.62728028041549],[-121.53939380488846,38.62728013990026],[-121.53957378503166,38.627279506701306],[-121.53957562501644,38.62729299677565],[-121.53974128376002,38.62741281161959],[-121.53974406847526,38.627689996762626],[-121.54011161717354,38.62768772398647],[-121.54018216954374,38.62768738692167],[-121.54025163210804,38.62768685810333],[-121.54047957353276,38.62769970648722],[-121.54063709105796,38.627698845596974],[-121.5406720952104,38.627698653759474],[-121.5408646168823,38.62769760071185],[-121.54105713969699,38.627696547348826],[-121.54124966135751,38.627695493661285],[-121.5414071788641,38.62769463172403],[-121.54144218301239,38.627694439653865],[-121.54163470465572,38.627693386227364],[-121.54175721916086,38.627692715046166],[-121.54182722629923,38.62769233158002],[-121.5420197490854,38.62769127661734],[-121.54210725829614,38.62769079640526],[-121.54221227071751,38.627690221330155],[-121.54247446641153,38.62768878325296],[-121.54264948595643,38.62768782388203],[-121.54289451377768,38.62768647923931],[-121.54299952618634,38.627685903450605],[-121.54310453745057,38.62768532666133],[-121.54331456111666,38.62768417370263],[-121.54333206318283,38.627684077831155],[-121.54352458592444,38.62768302036775],[-121.54366460131068,38.62768225126173],[-121.54373460957694,38.62768186664756],[-121.54394463322265,38.627680712546606],[-121.5439971394216,38.62768042373783],[-121.54415465686732,38.62767955716408],[-121.54432967636696,38.62767859525488],[-121.54436468049941,38.62767840230168],[-121.54457470412473,38.62767724705849],[-121.54466221444366,38.627676765821946],[-121.5448722380593,38.627675610039404],[-121.54499475250331,38.627674935434484],[-121.54535423216713,38.627672955773555],[-121.54535123649163,38.627353758702995],[-121.54535118486179,38.62725903145438],[-121.56005482903934,38.62720562111601],[-121.56005683569269,38.62708647228233],[-121.56005835411959,38.62703954879277],[-121.56236560094763,38.62711438512262],[-121.56247286642821,38.62864899166236],[-121.5626454579826,38.631328621059346],[-121.56281124317154,38.63255118179869],[-121.56319898558168,38.63497386121163],[-121.56359044659261,38.63707939964292],[-121.56454650815564,38.64104297301999],[-121.56514718475192,38.64215389513599],[-121.56565375633336,38.64327920350173],[-121.56568780965847,38.64335484652809],[-121.56642963551828,38.64457955971769],[-121.56724597760304,38.645645968797055],[-121.56830922089662,38.646419480008916],[-121.56863952233634,38.64662646534257],[-121.56954405762411,38.64719328645075],[-121.57157279567636,38.648128569640484],[-121.57217311234774,38.64834418321001],[-121.57387821250167,38.64877068955007],[-121.57500164932279,38.64886510141539],[-121.57630163968466,38.64871161580455],[-121.5767736181561,38.648588534741464],[-121.57679124044604,38.64983712403239],[-121.5767933066246,38.64998346678704],[-121.57669242184897,38.65001244932974],[-121.57668280242481,38.65001521325815],[-121.57659114418918,38.65004025558855],[-121.57658094991814,38.656329868541185],[-121.57261514427427,38.65632569846496],[-121.56954852054385,38.65632238085907],[-121.5622533686529,38.656324093255165],[-121.56030918817166,38.65633125252988],[-121.55963438868729,38.65633702646941],[-121.55928278470094,38.65628214463299],[-121.55856962239771,38.656083440827445],[-121.55819414185112,38.65592617938324],[-121.55782618085988,38.655685880556405],[-121.55760437848035,38.65559441889937],[-121.55741899269029,38.65555973039828],[-121.55711084825471,38.65554960020547],[-121.55201151140353,38.65560940858787],[-121.54889839570865,38.65563671576666],[-121.54361239524967,38.65568466860566],[-121.54344202650607,38.65568476334668],[-121.53992066685396,38.65571554473742],[-121.53989810072713,38.655715762357886],[-121.53989866097967,38.65574910208413],[-121.53985947842241,38.655716168477525],[-121.53761617303081,38.655767991907574],[-121.5353891438869,38.6557395208508],[-121.53466944943598,38.6557476180597],[-121.5336380624077,38.65575926054407],[-121.53350673108704,38.65576079234074],[-121.53324757134901,38.655763524553244],[-121.53289735444201,38.6557676072331],[-121.53215664517761,38.655775945580054],[-121.53107097134675,38.6557883766903],[-121.52983820752729,38.655802259560815],[-121.52850913318909,38.65581711231309],[-121.52547492827871,38.65585133924676],[-121.52198107547352,38.65589059718589],[-121.51846038154666,38.65593003378865],[-121.5159615839482,38.655957959420704],[-121.51205062501873,38.656001612150334],[-121.50867007730851,38.65603925578344],[-121.50726149389013,38.656037983800985],[-121.50726144638075,38.65603804215709],[-121.50722978992458,38.65603640307272],[-121.50713190124628,38.65603180398093],[-121.50703392403996,38.65602854405853],[-121.50693589159924,38.65602662614963],[-121.50683928029818,38.65602604842827],[-121.5068392508649,38.656029139268774],[-121.50683784527055,38.656025885566535],[-121.50275721246427,38.656152954198554],[-121.49733161134561,38.656197585767764],[-121.49510679150939,38.656215299439225],[-121.49153811617953,38.65624363280475],[-121.48777681809682,38.65627340782432],[-121.48406454624642,38.65630259346832],[-121.48425785330699,38.65693063605153],[-121.4841550867617,38.65694724705241],[-121.4834529141774,38.6570765863424],[-121.48336056662971,38.65656491512341],[-121.48326962939994,38.65629670972208],[-121.48294062977097,38.656274243448486],[-121.48213593164023,38.656170768396684],[-121.48219669839025,38.656483045028025],[-121.4799307221058,38.6565120294166],[-121.47874616259897,38.65652519784998],[-121.47882929822464,38.65694275370426],[-121.47783265114538,38.657061720070864],[-121.47774619024307,38.65707451059516],[-121.47772288232986,38.65695230274565],[-121.47763604910476,38.65695916181785],[-121.47660844619686,38.65710000863345],[-121.47650700413921,38.657127630484936]]]},"properties":{"ZIP5":"95834","PO_NAME":"SACRAMENTO","Shape_STAr":284244052.947,"Shape_STLe":82581.3484742}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.47102104445366,38.62776636287817],[-121.47087500732647,38.6270066267053],[-121.47089184585309,38.62701655311299],[-121.47091347323345,38.62702542661948],[-121.47093673592013,38.62703121931679],[-121.47096092776725,38.62703375500714],[-121.47098531317573,38.627032957358345],[-121.47100915121072,38.62702885001391],[-121.47103171856357,38.62702155759889],[-121.47105232796062,38.62701130129929],[-121.47107525156338,38.626999488001935],[-121.47110585771658,38.626988688147456],[-121.4711383886806,38.62698222227596],[-121.4711718564918,38.626980284974096],[-121.47086932262982,38.626977050434476],[-121.4708587438445,38.626922014095626],[-121.4708480655496,38.62686646108737],[-121.47069468486869,38.626068451649694],[-121.47048200366102,38.62606703287847],[-121.46918119181004,38.626058350116104],[-121.4690201634837,38.62520914408508],[-121.46863901584078,38.62319902740056],[-121.46828512781308,38.62320166575818],[-121.46784937954011,38.62090381667663],[-121.46777567514393,38.62051513655636],[-121.46741272340559,38.62068753699813],[-121.4674018292518,38.62063000428251],[-121.46731108485133,38.62015080716455],[-121.46729120032917,38.62004580087068],[-121.46765309335845,38.61986868786722],[-121.46758785298553,38.61952463099033],[-121.46671724800103,38.615106596541565],[-121.46651563179198,38.61398369625699],[-121.46650842232648,38.613943129887375],[-121.46646692380429,38.61369096682114],[-121.46643104098591,38.61343827465352],[-121.46640078357997,38.61318512911009],[-121.46637616357732,38.61293160772789],[-121.46635718607945,38.61267778801151],[-121.4663438573423,38.61242374656907],[-121.46633618131166,38.61216956179897],[-121.46633416079186,38.611915311192746],[-121.46633779630423,38.61166107042877],[-121.46634181873756,38.611143110002196],[-121.46669243997587,38.61114524747866],[-121.46669510811373,38.61110460407526],[-121.46669605495255,38.611090691375004],[-121.46671662727326,38.61083277724696],[-121.46674293342997,38.61057518320575],[-121.46677496472434,38.610317989387525],[-121.46679038656666,38.61020829236648],[-121.46679351083148,38.610186943773876],[-121.46683417049329,38.60993050136883],[-121.46688052726368,38.60967465544059],[-121.46693256673235,38.60941948249246],[-121.46699027446974,38.609165061729776],[-121.46699818732463,38.6091333117877],[-121.46707690906493,38.60883286084682],[-121.46716230060144,38.60853353332649],[-121.4672543370571,38.60823542098943],[-121.46735298897757,38.60793861377452],[-121.46745822690345,38.60764320252038],[-121.46757001908095,38.60734927805407],[-121.46768832918585,38.60705692847801],[-121.46792648108375,38.60643874515158],[-121.4680103736801,38.60622097466352],[-121.46811534112071,38.6059484993251],[-121.46824768641562,38.60560495259078],[-121.4686477446422,38.60538398152876],[-121.46883164638609,38.60526996432512],[-121.46915759981546,38.60514447284772],[-121.46968624034547,38.60491822808215],[-121.47041317911315,38.604650915060006],[-121.47116210620273,38.60442404007809],[-121.47251461301684,38.604127518457126],[-121.47285469764843,38.604103486854946],[-121.47310514592694,38.60408849419116],[-121.47335486651752,38.60408356430002],[-121.47372947666527,38.604088996008436],[-121.47410321227841,38.60410980444806],[-121.47447504878619,38.604145930923195],[-121.4750877897423,38.60423989583024],[-121.47544960122575,38.60431627535394],[-121.47555043050878,38.60436649843881],[-121.4756306506323,38.60430038360229],[-121.47544324515667,38.60338812008667],[-121.47729356729239,38.60396552680603],[-121.47818218138437,38.60178932522224],[-121.47877742819092,38.60221072637266],[-121.48024664555668,38.60054092664247],[-121.48356247361478,38.60219354481107],[-121.48469898045603,38.60253983085872],[-121.48675422335945,38.60284942172494],[-121.4887746623641,38.60288618150591],[-121.48945183557115,38.60287595985045],[-121.49041790655217,38.60303004815136],[-121.49252350069618,38.6031972227493],[-121.49398027782546,38.60317484950337],[-121.49462983509515,38.60311257899041],[-121.49673089917235,38.60305298740997],[-121.49721290292463,38.60313685891232],[-121.49730826564056,38.60312947563325],[-121.49757833163734,38.6031085639181],[-121.49796138131096,38.60314491675497],[-121.49830530089658,38.60304690140803],[-121.49879350670118,38.60305635038767],[-121.49910262391049,38.602926208371684],[-121.49946574232784,38.602866132761186],[-121.49987278927932,38.60268154917425],[-121.50035306966913,38.60254618795968],[-121.50076021822643,38.60238011691248],[-121.50076344035476,38.60238002089337],[-121.50078108950117,38.602379361843816],[-121.50080060703297,38.60237863246739],[-121.50080217339345,38.602378574354745],[-121.50081971857301,38.60237767881657],[-121.50083925404915,38.602376681945024],[-121.50084086765513,38.60237659881039],[-121.5008583088611,38.602375467684475],[-121.5008795128193,38.602374092414074],[-121.50088312916701,38.60237377016406],[-121.50089082092735,38.602373148362744],[-121.50090029088979,38.60237238287393],[-121.50090209781148,38.60237223660796],[-121.50090979457396,38.6023717202317],[-121.50091928544057,38.60237108456038],[-121.5009210979321,38.60237096264233],[-121.50092878131584,38.602370553413735],[-121.50093829998752,38.602370045787815],[-121.50094012378902,38.60236994824237],[-121.5009477903562,38.602369645245744],[-121.50095739997444,38.602369265937305],[-121.50095916847528,38.60236919608106],[-121.50096669536849,38.60236900148959],[-121.50097643267644,38.60236874975608],[-121.50097822741793,38.602368703435864],[-121.50098594417717,38.6023686105616],[-121.50099547158625,38.60236849485817],[-121.50099729485812,38.602368472984764],[-121.5010050705834,38.602368484867185],[-121.50101451441435,38.60236850033284],[-121.50101636392061,38.60236850289633],[-121.50102405968835,38.602368620738616],[-121.5010354300071,38.602368794051635],[-121.50110080521311,38.60236828831869],[-121.50110722891907,38.60236742320387],[-121.50114578837824,38.602362231681106],[-121.50117801147206,38.60235789212726],[-121.50118414500358,38.602356165403215],[-121.50125174497599,38.602337133243424],[-121.50125581194813,38.60233410032615],[-121.50126800221008,38.602326688905016],[-121.501282383084,38.60231794728458],[-121.50128460484001,38.60231659650008],[-121.50129824645367,38.60231096068445],[-121.50131434282166,38.60230431021857],[-121.50131683326765,38.602303281309254],[-121.50133153014887,38.60229958605808],[-121.50134883771067,38.60229523448258],[-121.50135151854822,38.602294560444214],[-121.50136679801115,38.6022929253423],[-121.50138760722069,38.60229069783404],[-121.5014050797657,38.60228770731265],[-121.50140821684202,38.60228713163302],[-121.50142016739947,38.602284937150436],[-121.50142883833651,38.60228334476005],[-121.50143202056952,38.60228271431957],[-121.50144372976169,38.602280394471876],[-121.5014437757519,38.60228038476003],[-121.5014524958495,38.60227865744518],[-121.50145567381122,38.60227798104004],[-121.5014674543412,38.60227547411079],[-121.50147604541002,38.602273646239375],[-121.50147910986178,38.602272948624346],[-121.50149109973786,38.60227022007266],[-121.50149947896269,38.60226831381062],[-121.50150252763133,38.60226757468584],[-121.50151426000009,38.602264730609626],[-121.50151431865008,38.60226471644778],[-121.50152279190249,38.602262661941],[-121.50152593405171,38.60226185294811],[-121.50154597504499,38.60225669059104],[-121.50154666015675,38.60225673047655],[-121.50156596627855,38.60225651177],[-121.50158563980543,38.6022562892361],[-121.50158598539821,38.60225628531808],[-121.50160507236414,38.602253420632806],[-121.50162427310246,38.60225053931698],[-121.5016246144368,38.60225048763307],[-121.50164268352921,38.60224509335134],[-121.50166105403682,38.60223960937335],[-121.50166137386084,38.60223951435378],[-121.50167779890876,38.6022318229159],[-121.50169514772044,38.602223698516205],[-121.50170750696607,38.602217067951585],[-121.50172306807823,38.60221061062042],[-121.50174519559533,38.60220142840192],[-121.50175182648057,38.60219867676691],[-121.50176858674058,38.602194436287064],[-121.50179240394516,38.602188410859405],[-121.50179954255194,38.60218660464336],[-121.50181698556378,38.60218471302538],[-121.50184920607786,38.60218121831414],[-121.50206125515365,38.60212751435846],[-121.50206646965749,38.60212537192714],[-121.50226899923628,38.60204215206662],[-121.50249375188224,38.601985493829645],[-121.50249990695062,38.60198412658593],[-121.5026654825718,38.60194611186822],[-121.50283986044984,38.601906075255485],[-121.5028795850678,38.601896398997184],[-121.5028840389121,38.60189467308125],[-121.50290707366577,38.60188574498506],[-121.50292572823933,38.601878515190435],[-121.50292972688695,38.601876211646825],[-121.50295045899531,38.60186426737081],[-121.50296721319775,38.601854615013515],[-121.50297064022119,38.601851801811094],[-121.5030027788966,38.60182542638851],[-121.5030671753002,38.60179660380901],[-121.50308498297956,38.60179112800174],[-121.50313712547923,38.60177509416626],[-121.50317166047985,38.60176447482764],[-121.50319041272661,38.60176150844653],[-121.50328166843359,38.60174707205279],[-121.50343215747598,38.60171766535418],[-121.50343687693267,38.60171604145628],[-121.50358356198818,38.601665577839654],[-121.50364094856101,38.6016495446354],[-121.5036533893727,38.60164435024103],[-121.50371949894361,38.60161674544629],[-121.50374014333748,38.601604672726694],[-121.50375381048991,38.60159861871713],[-121.5037786227855,38.60158762870865],[-121.50378984393646,38.6015826588019],[-121.50380465358346,38.6015785565165],[-121.50383150533264,38.6015711193573],[-121.50384366016631,38.60156775253487],[-121.50385914759939,38.60156573151194],[-121.50389995752522,38.60156040547368],[-121.50396485331089,38.601558236624264],[-121.50396742563902,38.601557805302534],[-121.50400171761257,38.60155205311476],[-121.50403348207595,38.60154672522485],[-121.50403592133112,38.601545949189706],[-121.50406842899545,38.60153560828792],[-121.50409852155497,38.60152603630985],[-121.50410074948992,38.601524941352345],[-121.5041304775802,38.601510327295976],[-121.50413051329383,38.60151030943099],[-121.50415799500793,38.601496799255635],[-121.50415994826844,38.601495415735336],[-121.50421009496597,38.60145990182282],[-121.50424385109558,38.60143593206705],[-121.50426434895353,38.60142477033335],[-121.50430342818983,38.60140349179857],[-121.5043221455604,38.60139329990504],[-121.5043448006367,38.60138510142614],[-121.50440868460163,38.60136198398386],[-121.50450596290204,38.60130778796371],[-121.50450975911076,38.6013063537646],[-121.50462100697756,38.60126433716162],[-121.50464878954935,38.60124351739204],[-121.50467020334354,38.60123104509846],[-121.50470689160524,38.60120967692302],[-121.50472234244717,38.601200677293505],[-121.50474618914409,38.60119131266885],[-121.5048042580861,38.60116851067984],[-121.50483136184646,38.601163431109526],[-121.5048563713838,38.60115622997945],[-121.50490745566063,38.60114152054728],[-121.50492175252172,38.60113601683702],[-121.5049493562181,38.601122422312336],[-121.50498364828988,38.60110553296779],[-121.50499040578691,38.601102205116455],[-121.50501458082636,38.60108505630316],[-121.5050505341668,38.601059552471604],[-121.50542694230427,38.60096060986543],[-121.50543185911876,38.60095931825892],[-121.50587799158131,38.60082549017433],[-121.50620305932095,38.600640204005316],[-121.50647318653517,38.60031124677259],[-121.50661019610433,38.60021457443511],[-121.50670396054234,38.600131991518765],[-121.5069473426224,38.599997327046296],[-121.50742173351634,38.5995351190439],[-121.50811209624278,38.59915311446073],[-121.50819111251586,38.59911465030812],[-121.5086550166515,38.59888882548982],[-121.50881362511177,38.59887010747378],[-121.50945829119962,38.59828204925426],[-121.5095541200715,38.59844161718482],[-121.5100093851934,38.599122357136544],[-121.51048128134028,38.599742190274014],[-121.51119561513454,38.60034936580696],[-121.51132665567735,38.60046074783786],[-121.5123853284135,38.60120419548393],[-121.51365620925317,38.60187715762894],[-121.51489866813846,38.60235911860381],[-121.51633901407845,38.60281789204564],[-121.51803657203482,38.603277691170504],[-121.51852406916832,38.60338923706889],[-121.51952324715177,38.60361785541837],[-121.52143350972027,38.60393536896073],[-121.52412046987024,38.604280400680274],[-121.5258500749771,38.604406614596606],[-121.52788650733645,38.60443860412558],[-121.52979902888256,38.60442271465559],[-121.53144097856229,38.604310249537086],[-121.53297729317568,38.60403019241063],[-121.53452774394665,38.603726830513374],[-121.5363550430696,38.603090597130794],[-121.5378175705643,38.602309735078826],[-121.53952433502393,38.601363009412715],[-121.54056293796891,38.600652150267976],[-121.5413268476748,38.5999398626966],[-121.54205909193037,38.59925183030256],[-121.54323501767388,38.598398372612436],[-121.54405744160786,38.59782941659459],[-121.5447584542656,38.597641331993835],[-121.54551788003388,38.59762064578793],[-121.54633588180012,38.59774294413972],[-121.54718651711396,38.59796081304249],[-121.54779207884711,38.59820171782189],[-121.5486104793609,38.598538541204114],[-121.5492450416392,38.598898340437216],[-121.55055976473976,38.599881000348475],[-121.55219065425048,38.60150810116554],[-121.55376082612234,38.60306355167496],[-121.55564653688442,38.60509693862167],[-121.55697454502753,38.60650829697567],[-121.55802922749812,38.607704059526235],[-121.55888723365304,38.60901815236719],[-121.55975823994604,38.61049946037135],[-121.5605088256239,38.61221851507341],[-121.5609555642071,38.61355508464786],[-121.5614326484473,38.61508225280703],[-121.5617274707668,38.616370520919745],[-121.56193378821669,38.61753933487646],[-121.5619286613443,38.61837374775843],[-121.56194889067301,38.619923212451084],[-121.5620294971593,38.62161569220841],[-121.56219730766763,38.6239283942409],[-121.56234210516814,38.6251446993153],[-121.56233288626086,38.626646327576076],[-121.56236560094763,38.62711438512262],[-121.56005835411959,38.62703954879277],[-121.56005683569269,38.62708647228233],[-121.56005482903934,38.62720562111601],[-121.54535118486179,38.62725903145438],[-121.54535123649163,38.627353758702995],[-121.54535423216713,38.627672955773555],[-121.54499475250331,38.627674935434484],[-121.5448722380593,38.627675610039404],[-121.54466221444366,38.627676765821946],[-121.54457470412473,38.62767724705849],[-121.54436468049941,38.62767840230168],[-121.54432967636696,38.62767859525488],[-121.54415465686732,38.62767955716408],[-121.5439971394216,38.62768042373783],[-121.54394463322265,38.627680712546606],[-121.54373460957694,38.62768186664756],[-121.54366460131068,38.62768225126173],[-121.54352458592444,38.62768302036775],[-121.54333206318283,38.627684077831155],[-121.54331456111666,38.62768417370263],[-121.54310453745057,38.62768532666133],[-121.54299952618634,38.627685903450605],[-121.54289451377768,38.62768647923931],[-121.54264948595643,38.62768782388203],[-121.54247446641153,38.62768878325296],[-121.54221227071751,38.627690221330155],[-121.54210725829614,38.62769079640526],[-121.5420197490854,38.62769127661734],[-121.54182722629923,38.62769233158002],[-121.54175721916086,38.627692715046166],[-121.54163470465572,38.627693386227364],[-121.54144218301239,38.627694439653865],[-121.5414071788641,38.62769463172403],[-121.54124966135751,38.627695493661285],[-121.54105713969699,38.627696547348826],[-121.5408646168823,38.62769760071185],[-121.5406720952104,38.627698653759474],[-121.54063709105796,38.627698845596974],[-121.54047957353276,38.62769970648722],[-121.54025163210804,38.62768685810333],[-121.54018216954374,38.62768738692167],[-121.54011161717354,38.62768772398647],[-121.53974406847526,38.627689996762626],[-121.53974128376002,38.62741281161959],[-121.53957562501644,38.62729299677565],[-121.53957378503166,38.627279506701306],[-121.53939380488846,38.62728013990026],[-121.53925378738462,38.62728028041549],[-121.53436946540361,38.62727276733348],[-121.53433946010594,38.62727322150094],[-121.53421740194327,38.62728552350575],[-121.53409992085948,38.62731426526826],[-121.53295446770647,38.627683170592086],[-121.53290925433069,38.627696933233445],[-121.5326990381859,38.62774141482825],[-121.53248216914066,38.62775658566331],[-121.51841975034458,38.62777419344958],[-121.518279732945,38.62777380411973],[-121.51819930942655,38.62777326067575],[-121.51805929253547,38.62777279630736],[-121.51408977455601,38.6277732717368],[-121.51408505900775,38.62777326276919],[-121.51406871405541,38.62777308790681],[-121.51405237636828,38.627772689650925],[-121.51403604939799,38.62777206711498],[-121.51401973888075,38.62777122122407],[-121.5140154786718,38.62777096371514],[-121.51399919533682,38.62776983685641],[-121.51398293993955,38.62776848669079],[-121.51396671706155,38.627766915039416],[-121.51395053130298,38.62776512102061],[-121.5112032178727,38.62744137709794],[-121.5111880352622,38.6274396923297],[-121.5111726239662,38.627438195782304],[-121.51115718365678,38.627436910820606],[-121.51114171548842,38.627435836548585],[-121.51112622633923,38.62743497479697],[-121.51111072080283,38.627434325585156],[-121.51109520232427,38.62743388892773],[-121.51107967780024,38.627433663952864],[-121.51106414952125,38.62743365157109],[-121.51100990077414,38.62743398116142],[-121.50851513559255,38.62744909520855],[-121.50830511206468,38.62744935355512],[-121.50316714956956,38.62743083297223],[-121.50316714164269,38.6274329590497],[-121.50182517084315,38.62742582408209],[-121.50085729546267,38.62742303009077],[-121.49986842491634,38.627419108556055],[-121.49789937231854,38.627420202085474],[-121.49532987917226,38.62743581010604],[-121.49374408790307,38.6274433073245],[-121.49289518013012,38.62744748911181],[-121.49093831681309,38.62745709781494],[-121.49048846018087,38.62746267332226],[-121.48717491590759,38.627503658016614],[-121.48618947614997,38.62750924566591],[-121.48516203741369,38.62751395091526],[-121.48507802257652,38.62751426490778],[-121.48403132530879,38.62751956191327],[-121.48389820494138,38.62752264911219],[-121.48389819929596,38.6275223184583],[-121.48369431343326,38.627535457657345],[-121.48316369038052,38.62762076862185],[-121.48308551693154,38.6275860209416],[-121.48296101355334,38.62754125839532],[-121.48282625055663,38.627513507475996],[-121.48268739263048,38.62750453530565],[-121.47552892746346,38.62753284070117],[-121.47552934282567,38.62697186259882],[-121.47453459237815,38.62696126216567],[-121.47453475131144,38.62738826701345],[-121.47453490974527,38.627810977280326],[-121.47428665298568,38.627807828484805],[-121.47403391647757,38.62780462278329],[-121.47378301508122,38.62780143928004],[-121.47353539113455,38.627798297154094],[-121.47328470911343,38.62779511627113],[-121.47303784887167,38.62779198285997],[-121.47278411685161,38.62778876089427],[-121.47254776647385,38.627785759851704],[-121.4723665375405,38.62778345893328],[-121.47232737491314,38.62778296164645],[-121.4721080295381,38.62778017499613],[-121.47202864894201,38.62777916731682],[-121.47183949290195,38.62777676368158],[-121.47161705157235,38.627773937662916],[-121.47138169577495,38.627770946885256],[-121.47103680803006,38.62776656278135],[-121.47102104445366,38.62776636287817]]]},"properties":{"ZIP5":"95833","PO_NAME":"SACRAMENTO","Shape_STAr":242448873.969,"Shape_STLe":74727.5760219}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.46880656242976,38.485515839525775],[-121.46880683120744,38.48547306972178],[-121.46881424593028,38.484295209241],[-121.46881855227421,38.48361115277492],[-121.46882089649398,38.483238573714964],[-121.46882203311408,38.48305813445467],[-121.46882305144169,38.482896376574956],[-121.46882408823865,38.48273167194275],[-121.46882475189494,38.48262624018604],[-121.46882522577934,38.48255079845486],[-121.46882575093257,38.482467537163885],[-121.46882634249702,38.482373495130766],[-121.46882686091529,38.48229113921158],[-121.4688273582193,38.48221208498697],[-121.46882785455824,38.482133314540846],[-121.46882834626719,38.48205516659416],[-121.46882905295331,38.481942867489884],[-121.46882966010936,38.4818464192302],[-121.46883015182107,38.48176827038284],[-121.46883178461017,38.481508921940915],[-121.4665543640098,38.481524344288516],[-121.46650219644114,38.48135993739727],[-121.46647025078518,38.481259263252795],[-121.46639062950098,38.48100833707843],[-121.46633944804879,38.480847037356085],[-121.4662894705202,38.48068953504868],[-121.46621906927295,38.48046766203929],[-121.46607990511039,38.480029076591535],[-121.46602545433988,38.47985747336928],[-121.46596943626555,38.47968092595848],[-121.46591311281051,38.47950341224686],[-121.46585613234593,38.47932383061263],[-121.46579540680746,38.47913244339108],[-121.46574456186457,38.47895899543786],[-121.46569263197972,38.47878185056632],[-121.46564037941711,38.47860359877702],[-121.46558995426632,38.47843158602287],[-121.46553883539426,38.4782572015774],[-121.4654939090417,38.47810394387514],[-121.46537759410536,38.477712320711674],[-121.46531588061156,38.47751088274461],[-121.46518872604538,38.47709583004054],[-121.46516458424686,38.47701703210052],[-121.46512343376584,38.47688270607635],[-121.46499809704727,38.47647358317038],[-121.46489162718818,38.47612604096844],[-121.4647998733818,38.475826529717224],[-121.46475024921382,38.47566454368642],[-121.4647016633832,38.475505947116275],[-121.46465190433172,38.475343515373574],[-121.46456681853935,38.47506576627755],[-121.46447244086183,38.474757684972474],[-121.46443030407022,38.47462013611573],[-121.46438925815477,38.47448614093566],[-121.4643046654515,38.47420999842477],[-121.46427180823372,38.474102740168284],[-121.4642176639418,38.47392598615018],[-121.46381401477355,38.472604277940114],[-121.46352749277182,38.47166606124075],[-121.46368668894593,38.47170266289666],[-121.46360159104908,38.471425618413555],[-121.4635276306933,38.47118482815132],[-121.46345219762418,38.4709392436312],[-121.4633949310531,38.4707527990752],[-121.46334545795186,38.47059173203887],[-121.46320885442692,38.47060408872855],[-121.46290893391706,38.46960446876698],[-121.46303761423485,38.46958945942708],[-121.46227463331992,38.46710524055899],[-121.46190146994506,38.46589018408251],[-121.46157549403891,38.464730001881605],[-121.46150227034337,38.4638771308051],[-121.46150503041505,38.46356366439496],[-121.46122607946378,38.46160847013833],[-121.46100711071846,38.460073618571954],[-121.46083397709153,38.460091832613216],[-121.46067125036338,38.4588185320689],[-121.46034806330707,38.456112487300615],[-121.460137868534,38.45435241715627],[-121.46032436475772,38.45434840351852],[-121.46011007863504,38.45252649641902],[-121.4641332618174,38.45261138604031],[-121.46410533157407,38.45612997034398],[-121.46410374534462,38.45632972090673],[-121.46844807745511,38.45634796084268],[-121.46844418943552,38.459730351996896],[-121.46845291223492,38.45973034526686],[-121.47024984177564,38.45972899004116],[-121.47291454805125,38.45972692883838],[-121.47461298876297,38.459725582711215],[-121.47741610759932,38.45859458738897],[-121.47776933948,38.45841537662355],[-121.47732564066534,38.45633955676295],[-121.48075202011827,38.45625580117203],[-121.48247353763949,38.456213681599074],[-121.48252775093015,38.456212354086226],[-121.4825847454573,38.452802340546874],[-121.48261985333819,38.4513045404554],[-121.48261661183456,38.450722443871534],[-121.48259014434385,38.445969321739256],[-121.48251906443095,38.44595821431308],[-121.48248135343717,38.4452299604875],[-121.48247216574973,38.44505253096718],[-121.4870556527106,38.44507009488654],[-121.4868907004665,38.43975774825628],[-121.48683026701781,38.43781130496123],[-121.48916550478884,38.43780320987616],[-121.49026236185396,38.437799391035185],[-121.49135984306656,38.43779556002546],[-121.49347064698584,38.437788161783],[-121.49381049443862,38.43759180898202],[-121.4960645168789,38.437126217634],[-121.49606684886062,38.43435313270438],[-121.49614205263005,38.43435615256834],[-121.49666975502255,38.43456322356621],[-121.4998184881996,38.4366383054966],[-121.4999062121526,38.43615647274424],[-121.5000961096298,38.43545211220171],[-121.50012491875465,38.434775774189575],[-121.50024843719532,38.43487165930982],[-121.50036995549479,38.434466544935844],[-121.50038566033912,38.434325016395455],[-121.50046279622433,38.433629884712566],[-121.50047105343867,38.4314706613263],[-121.50068843958873,38.431293794002194],[-121.50068149372724,38.43045734203317],[-121.50103935418831,38.43045646471997],[-121.50103674340693,38.42908351950543],[-121.50142072578107,38.429082576380395],[-121.50142025823902,38.42883761641352],[-121.50140978991205,38.423345702822395],[-121.50139932090315,38.417853790083065],[-121.50139835897636,38.417348550470834],[-121.50144950188682,38.41688055714855],[-121.50160316050115,38.416426661059454],[-121.5018546623337,38.416000652371345],[-121.50196456221765,38.415860462338784],[-121.50198656993199,38.41583422136475],[-121.50438545407462,38.41297353799593],[-121.50474414307413,38.4124519116565],[-121.50478429540749,38.41237648613657],[-121.50500515091271,38.41180943765177],[-121.50503461872503,38.41169033052339],[-121.50576487599498,38.40842957144586],[-121.50965968467803,38.40841245936171],[-121.50943591112078,38.40779576133382],[-121.51239069662823,38.40691698515512],[-121.51251811333782,38.406879088187196],[-121.51511327055657,38.4061071846085],[-121.5152770638903,38.406058462639024],[-121.51585625611668,38.40588617630438],[-121.51632253017853,38.40687379714379],[-121.51689780979092,38.407984545016106],[-121.51742220923181,38.40888053762246],[-121.5179468624665,38.40974083095608],[-121.51832132665803,38.41036228665422],[-121.51944740417397,38.4118326182523],[-121.52110016543902,38.41387764985548],[-121.5253308244637,38.42008064813906],[-121.52730626555307,38.42247221722038],[-121.52784841753386,38.42309432770392],[-121.52814149527745,38.42345798450154],[-121.52835908799014,38.423727976366045],[-121.52954627460699,38.42525818171423],[-121.53025144904565,38.42630999612339],[-121.53085143270386,38.42717053821838],[-121.53133154999472,38.4279471961178],[-121.531750823548,38.42868788046482],[-121.53206418910348,38.429344410694945],[-121.53224289788731,38.429774186834436],[-121.53237607407296,38.43022780433995],[-121.53246387182044,38.43068088040631],[-121.53247724124255,38.43103859203276],[-121.5324754475272,38.43131284836691],[-121.53233509668219,38.4319558437084],[-121.53208850510461,38.432562382835684],[-121.53181410820608,38.432883231749855],[-121.53150813539042,38.43322764820166],[-121.53099041042668,38.4336546002114],[-121.530427453642,38.434057338364106],[-121.52956093116106,38.434435496901905],[-121.52839235362362,38.43482372986799],[-121.52769313053768,38.43497601931988],[-121.5270119136446,38.43504462664419],[-121.52626824977277,38.43505360770647],[-121.52531528688219,38.43503766860153],[-121.52407280718195,38.43498486031223],[-121.52087593283733,38.43484052952674],[-121.51961925495672,38.434823641210116],[-121.51700442483975,38.434824409974034],[-121.51553431445184,38.43487797889856],[-121.51486729304222,38.4349108780321],[-121.51406363380005,38.43501492075914],[-121.51367198137756,38.43510982357109],[-121.51329082540992,38.435202181006005],[-121.51232302706296,38.43548450809559],[-121.5114385925144,38.43574250683719],[-121.51007073739504,38.43615409671951],[-121.50802796736393,38.43697949332162],[-121.50694976630999,38.437583601639346],[-121.5067189448337,38.43771292642995],[-121.50552460991419,38.438518201028],[-121.50477678002302,38.439122893626354],[-121.50457876669356,38.43931481567487],[-121.50409136638918,38.43978721565391],[-121.50405364511788,38.43983268771146],[-121.50337851334373,38.44068378733037],[-121.50292807187586,38.441391335430794],[-121.50278299463108,38.44165735740736],[-121.50218032932096,38.44299975912111],[-121.50184727760448,38.444175507012396],[-121.50178599733135,38.44461848168276],[-121.50172042548289,38.445092460165675],[-121.50168598194587,38.445314372515604],[-121.5015967483127,38.445889269040016],[-121.50146299115195,38.447301875836125],[-121.50145320858319,38.44725597443533],[-121.5014217961228,38.44773691904172],[-121.50137948955472,38.44852676172726],[-121.50137733962757,38.44972713572046],[-121.50137126869105,38.450597241537665],[-121.50137700163155,38.450804911046596],[-121.50140280178584,38.4516512770497],[-121.50152520166587,38.453717962829046],[-121.50156015965581,38.45405450361467],[-121.5016757278231,38.45475796112231],[-121.50171427216779,38.454906170630785],[-121.50185257551416,38.45543798639894],[-121.50215408845985,38.45630013305073],[-121.50240848509846,38.45708048281664],[-121.50250602115304,38.45738354966228],[-121.50293557889592,38.45888709580115],[-121.50323016386699,38.45998766250774],[-121.5034529713805,38.460820043221304],[-121.50367139596128,38.4617985308853],[-121.50374594493086,38.46213248606211],[-121.5039207799467,38.463103246486654],[-121.50400151818653,38.463551529223636],[-121.50424030796336,38.46512597463655],[-121.50442974998302,38.46659131490194],[-121.50452060330579,38.467294046433324],[-121.50459333401933,38.467856592891934],[-121.50477475887021,38.46914452713997],[-121.50494027434517,38.469596811999025],[-121.50331281391742,38.46978163223012],[-121.5032263769952,38.46979144812795],[-121.50326623511462,38.47002427760963],[-121.503311255403,38.47025652475682],[-121.50336142464721,38.47048811923669],[-121.5034167284937,38.47071898980977],[-121.5034771491381,38.47094906702305],[-121.50354266879394,38.47117827872025],[-121.5036132673445,38.471406558139755],[-121.50368132028748,38.471611705990185],[-121.50370194388296,38.4716740932966],[-121.50372117900386,38.471736753916026],[-121.50373902119443,38.47179966891131],[-121.50375546256737,38.47186281842951],[-121.50377049980648,38.47192618443911],[-121.5037841284558,38.471989748002684],[-121.50379634407818,38.4720534874802],[-121.50380714220506,38.47211738573598],[-121.50381282075283,38.47215496486135],[-121.5039036097246,38.47278327363452],[-121.50406164460288,38.473876940395776],[-121.5042278832739,38.47508135953744],[-121.50429969170986,38.475616434844184],[-121.50507354802762,38.48127066487355],[-121.50535089928327,38.483272066277735],[-121.50456806689044,38.48341834872604],[-121.50431757039462,38.48344067312061],[-121.50399650871029,38.483469285221666],[-121.5039728795797,38.48347508111488],[-121.50373669367436,38.48353301591042],[-121.50351918596176,38.48358636739571],[-121.50350797887513,38.48359148320664],[-121.50329491860244,38.48368873962574],[-121.5030844724041,38.48378480239174],[-121.50285092255278,38.483891409523586],[-121.50272751810388,38.48383924576177],[-121.50257334585285,38.483727097557484],[-121.50242768583428,38.48362113980142],[-121.50228898933788,38.48352024784697],[-121.50217041106954,38.48340166586826],[-121.5020521575947,38.48328340678521],[-121.50196683652088,38.48314987961509],[-121.50186823140986,38.482995561921406],[-121.50179420218615,38.482879703901354],[-121.50179189800728,38.48279727277735],[-121.50178960386474,38.48271521106405],[-121.50178482594225,38.48254426343218],[-121.50132349131826,38.48253798083533],[-121.50132169710744,38.482341371406825],[-121.50132261649438,38.482339702408005],[-121.50131230614573,38.48131473709765],[-121.5012087889736,38.481489072521],[-121.50121209146778,38.48181481391867],[-121.50059121533666,38.481826938068615],[-121.50024109002622,38.48203561775527],[-121.50024580486686,38.482351677067456],[-121.50003657556141,38.482354086867325],[-121.49982428467808,38.48235653169199],[-121.49961474701273,38.48235894389907],[-121.49940049729773,38.4823228003829],[-121.49928976075826,38.48230411824239],[-121.49928597888405,38.48216377734452],[-121.49928158280449,38.48200069426137],[-121.49927716578416,38.48183684082119],[-121.49927272818333,38.48167216567446],[-121.49926376897966,38.48133976548305],[-121.49669472188694,38.48137113599028],[-121.49670580515337,38.48198939833868],[-121.49581462051081,38.48199686578388],[-121.49536312465045,38.482000646387824],[-121.49519575061565,38.48200204722966],[-121.49504576890818,38.48200330307302],[-121.4947801294,38.48200552543557],[-121.49476876020195,38.481877456542634],[-121.49456268539782,38.481880622464935],[-121.49454129296296,38.481880951460944],[-121.494359113983,38.4818837494193],[-121.49433129338385,38.48188417728901],[-121.49415606867501,38.48188686840727],[-121.49411958243986,38.481887428580755],[-121.49395020358267,38.481890029651176],[-121.49394905775594,38.481889987699084],[-121.49390796963851,38.48188847181674],[-121.49372582250957,38.48188175544794],[-121.49369843616358,38.48188074543414],[-121.49345652060711,38.48187182365153],[-121.49324682715438,38.48186937410286],[-121.49302248944494,38.48186163025315],[-121.4929989355016,38.48186081705821],[-121.49278695231527,38.48185349989993],[-121.49256712130168,38.481845910972865],[-121.49235663123558,38.48183864462335],[-121.49234829294359,38.48183835666073],[-121.49213757948628,38.481831081724096],[-121.49192547157853,38.48182375883405],[-121.49173042393865,38.481830584366676],[-121.49167979395438,38.481832355457776],[-121.49150737637476,38.481838389122665],[-121.49144911587959,38.48184042745164],[-121.49129422219038,38.48184006493614],[-121.49121490146148,38.4818398798586],[-121.49109934436252,38.481839609103716],[-121.49099964590624,38.48183937562105],[-121.49089324273693,38.481839126942724],[-121.49077822316185,38.481838857332946],[-121.49069065507565,38.48183865178618],[-121.49054765336298,38.481838317233596],[-121.49048095125175,38.481838160228676],[-121.49020355622821,38.48183750946783],[-121.49001116740848,38.48183646367988],[-121.48970359454182,38.48183378581282],[-121.48949019851558,38.481831927518904],[-121.48928021544482,38.48183009832204],[-121.48907792249109,38.48183120631896],[-121.48907262834115,38.48183123517492],[-121.48886196491398,38.48183238868507],[-121.48885783068782,38.481832410947646],[-121.4886410547392,38.48183359739112],[-121.48863360693649,38.48183363832298],[-121.48842433724028,38.48183478278594],[-121.48841575243503,38.48183483038431],[-121.4882090925529,38.4818359607808],[-121.48820213416757,38.48183599844598],[-121.48799714654244,38.481837118749255],[-121.48778060667213,38.481838302823256],[-121.48757072489285,38.48183944933575],[-121.48756434646575,38.48183948412767],[-121.48738905719127,38.481840441288405],[-121.48733454811658,38.48176642333371],[-121.48733274717543,38.481420894312876],[-121.48685929848403,38.48142159120549],[-121.48686123094478,38.481755034392776],[-121.48686187982524,38.48179346143281],[-121.4868626577606,38.481815997221695],[-121.48645864379965,38.48182744654245],[-121.48632824869175,38.48189160843956],[-121.48622889449078,38.48187234182261],[-121.48618435748402,38.48186370519565],[-121.48601378060302,38.48183062730417],[-121.48581125772205,38.481841851043335],[-121.48560723276098,38.4818531569338],[-121.4856072052519,38.481793312918334],[-121.48560712267548,38.48161840337512],[-121.4851903478702,38.48162058431427],[-121.48510076459178,38.481424246556536],[-121.48501917867705,38.48162147964939],[-121.48466816152973,38.48162331465892],[-121.4846674111024,38.48153462609555],[-121.48446998318278,38.48153491257998],[-121.48445621962932,38.4826420754724],[-121.483755315572,38.48264844969169],[-121.48374954388841,38.48336094804912],[-121.48267102302317,38.48335666505027],[-121.4826569982007,38.482237419385335],[-121.48081952059005,38.48223777445597],[-121.48045788959357,38.48223784093226],[-121.48045758007282,38.48196144962007],[-121.48047504689436,38.48196162630814],[-121.48047658544674,38.48164717498075],[-121.48033555071669,38.48143070143414],[-121.48019294655745,38.48165461985642],[-121.480195645492,38.48202052517447],[-121.47961473562673,38.48202634343388],[-121.47961918697621,38.482300911070276],[-121.48018198544455,38.48229527351001],[-121.48019629034432,38.48259720333006],[-121.48019718823826,38.4834004087838],[-121.47958757664448,38.483393812374324],[-121.47946303330974,38.48339246342878],[-121.47916792322206,38.48338926862898],[-121.47896128543452,38.48338703127692],[-121.47876305743651,38.48338488462278],[-121.47855833015623,38.4833826668753],[-121.47834566414498,38.4833803624962],[-121.47811238170243,38.4833778349369],[-121.47790156889596,38.48337554981774],[-121.47763477116293,38.48337265823135],[-121.47733419913133,38.48336939893769],[-121.47733388009107,38.48334486245006],[-121.47733152550371,38.48316368400044],[-121.47732571123836,38.48271630620142],[-121.47732332710692,38.48242137938769],[-121.47732017486676,38.48203124765004],[-121.47713512274844,38.48203118477311],[-121.47657421170231,38.48203099263619],[-121.47657171746192,38.4821098612381],[-121.47629344606908,38.4821125893433],[-121.47629446238578,38.481975841287216],[-121.47629466714076,38.48194838195341],[-121.47534189159808,38.48194678559347],[-121.47533899738889,38.48234083322425],[-121.47526521308066,38.48239837023443],[-121.4752745346151,38.482718687984686],[-121.47524357371648,38.4827187231384],[-121.47503415180056,38.482718964310955],[-121.47482215562935,38.482719208726095],[-121.474592114505,38.48271947255117],[-121.47438448631122,38.482719709887675],[-121.4741766311749,38.48271994762097],[-121.47411548875013,38.48272001727351],[-121.47395705208675,38.48272019830444],[-121.47375130356613,38.482720433146405],[-121.47349238408395,38.482720727297156],[-121.47321266614608,38.48279865737137],[-121.47293291659997,38.482876593834774],[-121.4729314268847,38.48271594344328],[-121.47292981006636,38.48254160873512],[-121.47292814427796,38.482361951299474],[-121.47292646464012,38.48218091002194],[-121.47292488391605,38.48201038537615],[-121.47292321523653,38.48183050180284],[-121.47292007862922,38.48149214901304],[-121.4724101510342,38.48149304564978],[-121.47196147765844,38.48149364414463],[-121.47196229425438,38.48182800621821],[-121.47189935389167,38.48192223553945],[-121.47170687858076,38.481922631865245],[-121.47149346781751,38.481923070007824],[-121.4712832800091,38.4819235008739],[-121.47105367651922,38.48192397226016],[-121.47083987147393,38.48192441009511],[-121.47061780961286,38.481924863782055],[-121.47061833720694,38.48222901746289],[-121.47061853694247,38.48234434773313],[-121.47061891410326,38.48256178028679],[-121.47061918609401,38.482718706248995],[-121.47061902556663,38.4827335622226],[-121.47061722868023,38.48289947057498],[-121.47061546880144,38.48306208541401],[-121.47061369485867,38.48322582360872],[-121.47061196101971,38.48338600524214],[-121.47061016748322,38.48355161181012],[-121.47060833394393,38.483720913678866],[-121.47060651854503,38.483888539960645],[-121.47060450438974,38.484074631939876],[-121.47060272805984,38.48423868543971],[-121.47060091613761,38.48440599372139],[-121.47059912521829,38.484571394898474],[-121.47059733924931,38.48473628168571],[-121.47059480725066,38.484970122493266],[-121.4705929564504,38.48514097022647],[-121.47057116174437,38.485222638635136],[-121.47022030413873,38.48522644590192],[-121.47006660518822,38.48522811360125],[-121.47006072940512,38.485228176759705],[-121.46969732924059,38.48523211864369],[-121.46969456171037,38.48545035210887],[-121.46969386964017,38.48550497398769],[-121.4693716406639,38.485500046054945],[-121.46925175967836,38.48549949580896],[-121.46906595219333,38.48551702914829],[-121.46880656242976,38.485515839525775]]]},"properties":{"ZIP5":"95832","PO_NAME":"SACRAMENTO","Shape_STAr":215894106.767,"Shape_STLe":104699.515514}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.5241619522873,38.52071051636498],[-121.52350798930463,38.51942746040025],[-121.52258485742163,38.52055709662994],[-121.52236511563503,38.52060107572405],[-121.52223636258465,38.52056065508441],[-121.52227065414323,38.519863767697494],[-121.52229235380975,38.519422789777956],[-121.52231604142276,38.51894139238758],[-121.52233626606439,38.51883289729895],[-121.52248486363642,38.51803574100199],[-121.5219231305557,38.51775528640242],[-121.5219385237243,38.51712833317652],[-121.52195522126115,38.51679427992623],[-121.52198662451875,38.51616601719494],[-121.52198663108425,38.51616589289853],[-121.52066736369375,38.5161293912631],[-121.52061711684047,38.51612832177454],[-121.5206152650656,38.516128306892874],[-121.5205883139993,38.51612809068923],[-121.5205631631153,38.516127888247084],[-121.5205613214908,38.51612789863168],[-121.52050920901029,38.516128194328004],[-121.52023377027447,38.51581559284591],[-121.52007747822192,38.5156382122216],[-121.51994460651893,38.51548741130804],[-121.51930858133274,38.51560691509945],[-121.51940709477977,38.515947089071155],[-121.51924518274123,38.515977076408426],[-121.51920404627822,38.51598469456884],[-121.51896349593477,38.51602924551689],[-121.51875905776012,38.51606710751765],[-121.51903445131543,38.51644058675512],[-121.518729595512,38.51656192341127],[-121.51860831194114,38.516404852092904],[-121.5184290612296,38.51621699085808],[-121.51832354500749,38.51611763138216],[-121.51791302847585,38.5162565554641],[-121.51812474569225,38.51674333116144],[-121.51806930213783,38.51675493433855],[-121.5178681405476,38.51678503910363],[-121.51767681840442,38.51680581793731],[-121.5175776752767,38.51681376299795],[-121.51677511468814,38.51684537227211],[-121.51664967553481,38.51684232476317],[-121.51664490014174,38.516841566974804],[-121.51657863451618,38.516831057678786],[-121.51651716721503,38.51682130893708],[-121.51651263351278,38.51681991251758],[-121.51644971900825,38.51680052891849],[-121.51639131763821,38.51678253531718],[-121.51638715723223,38.5167805395561],[-121.51627594997474,38.51672718116761],[-121.51623669637772,38.51670456128164],[-121.51619223703582,38.516679548451386],[-121.51612791153912,38.51664336067464],[-121.51610811505451,38.51663222297017],[-121.51606304070133,38.51660778859471],[-121.5159979638221,38.51657251110975],[-121.51597794527314,38.516561659839326],[-121.51593240443984,38.51653788291625],[-121.51586650762687,38.516503478496944],[-121.5158462293261,38.516492890979706],[-121.51580004489152,38.51646968067629],[-121.51573356353862,38.51643627012443],[-121.51571300604108,38.516425939070906],[-121.51566626826461,38.51640334351055],[-121.51559908811328,38.516370865985444],[-121.51557831541028,38.51636082409502],[-121.51553118430033,38.51633892052214],[-121.51546312932655,38.51630729240167],[-121.51544219971846,38.51629756604375],[-121.51537724041562,38.516268703977765],[-121.51508622224094,38.51614414180255],[-121.51511480816748,38.516062510759085],[-121.51521258126263,38.51581156978369],[-121.51503546718774,38.515737443075636],[-121.51498880210752,38.51581767848112],[-121.51492846503454,38.51585675496956],[-121.51490829310643,38.51586414420543],[-121.51480157285485,38.51602898212864],[-121.51450569585255,38.515909995368254],[-121.51469491202974,38.515571949011445],[-121.51422109517405,38.51537790351881],[-121.51413559464375,38.51527593147488],[-121.51393267960474,38.51540092057675],[-121.51353123690788,38.51538009699413],[-121.51349391472368,38.51575799462788],[-121.51304804265466,38.515733963595274],[-121.51307736653239,38.51537176296735],[-121.51267674406563,38.515326750817565],[-121.512528757989,38.515320611957975],[-121.51212536217454,38.515297444643785],[-121.5117639579686,38.515276687397495],[-121.51161486195883,38.515282471445204],[-121.5112835063896,38.515261344074155],[-121.51114992577996,38.51513633254158],[-121.51101498814958,38.51523046525267],[-121.51094784426783,38.51561536123277],[-121.51090485338777,38.515610193899924],[-121.51071733922983,38.51557290736991],[-121.51048785499509,38.51552727540221],[-121.51058414920406,38.515156108354084],[-121.5101219389607,38.515078530517734],[-121.51017184554365,38.51487802585697],[-121.5099481438773,38.51484229111518],[-121.509919132957,38.51498103951168],[-121.50971218515511,38.51518972621548],[-121.50966869571836,38.51515518709953],[-121.50956951786493,38.515078906683826],[-121.50956244398859,38.51507342086441],[-121.50955071562335,38.51506412704131],[-121.50953212062485,38.51504939241842],[-121.50785399506017,38.51369713924892],[-121.50763328386164,38.513549858374795],[-121.50757231984153,38.51351759451268],[-121.50765137535186,38.51340037492352],[-121.50772110572835,38.51331915143669],[-121.50776345441211,38.51324925276355],[-121.50734935496524,38.51313391106278],[-121.50741844407128,38.51300271592379],[-121.50730848652599,38.512974119816825],[-121.50713042047686,38.5129278109714],[-121.50698567982113,38.51289016818264],[-121.50685256236939,38.51287397555695],[-121.5065094059729,38.51283223199762],[-121.50651472397357,38.51267346543511],[-121.50653091503872,38.51219005238149],[-121.50653319633768,38.51212192914086],[-121.50654470191468,38.511778414276364],[-121.50655342356434,38.51151800601433],[-121.50655992898652,38.51132376992942],[-121.50656280961631,38.51123776825885],[-121.50656634187521,38.51113230010168],[-121.5065715885487,38.510937526216914],[-121.5065766533685,38.510741355167255],[-121.50657807040282,38.5106864551964],[-121.50658317241543,38.51048887890742],[-121.50658814653723,38.51029620024515],[-121.5065932093912,38.510100134591895],[-121.50659877660195,38.50988450452705],[-121.50660388656074,38.50968659133679],[-121.50660937247498,38.5094740888365],[-121.5066150133067,38.50925558883058],[-121.50661937785044,38.50908655789318],[-121.5066239006796,38.50891137541131],[-121.50663025521293,38.508665237154794],[-121.50632471166918,38.50868760171436],[-121.5063275005771,38.50854739543935],[-121.50633270220304,38.508285901904685],[-121.50633807272322,38.50801589382065],[-121.5063424973351,38.50779347964624],[-121.50634670597816,38.50758190233075],[-121.50635086724293,38.50737269687269],[-121.50635470692379,38.50717965572244],[-121.50635839883776,38.50699405534377],[-121.50636221408827,38.50680222038938],[-121.50636617336237,38.50660314825021],[-121.50637015007014,38.50640320952345],[-121.50637406691962,38.506206287642506],[-121.50637793612196,38.506011777257235],[-121.50638182994136,38.505816024641334],[-121.50638585934453,38.505613425793584],[-121.50639017918573,38.505430838890526],[-121.50639493639221,38.50522975845659],[-121.50640004670669,38.505013748077246],[-121.50640547559219,38.50478432020976],[-121.5064107202587,38.50456263025394],[-121.50641494282281,38.504384146517914],[-121.50641831663033,38.504241540050636],[-121.50642411549813,38.503996385017054],[-121.5064324845844,38.503642600987945],[-121.50643815039827,38.50347789180726],[-121.50644816678289,38.50317603435313],[-121.50646125601043,38.5027815526662],[-121.5064671001928,38.50260544700967],[-121.50648153257637,38.50217052712502],[-121.50648365685218,38.50210650589959],[-121.50649461385436,38.50177631296997],[-121.5065021475943,38.50154929497393],[-121.50650807123624,38.501370786065486],[-121.5065141873105,38.50118649062155],[-121.50652165897537,38.50096130388232],[-121.50653153240928,38.50066377282169],[-121.50654173603301,38.50035627205183],[-121.50654904217748,38.50013610079581],[-121.50655473095235,38.49996467102759],[-121.50656026793388,38.499797784731605],[-121.50656588421695,38.49962854293068],[-121.50657780186339,38.49926937497488],[-121.50657855334968,38.49924672334712],[-121.5065823134028,38.49913341657109],[-121.50659360978521,38.498792962981824],[-121.50659945322771,38.498616869934445],[-121.50660533289955,38.49843967704753],[-121.50661129090703,38.49826010162468],[-121.50662703588304,38.497785601064756],[-121.50664341209949,38.49729204564227],[-121.50669319231459,38.49579170117993],[-121.50670176575676,38.49553330310315],[-121.50606640791186,38.49554707375285],[-121.50619410070549,38.49015249122325],[-121.5061962327702,38.490014544312956],[-121.50619613858612,38.48999019989734],[-121.5061957790617,38.48989696462869],[-121.50619551349115,38.489827941342945],[-121.50619487923423,38.48980362435052],[-121.5061924466771,38.489710312661565],[-121.50619065026761,38.48964137653131],[-121.50618947717543,38.48961707435467],[-121.50618497710889,38.48952388446575],[-121.50618164617194,38.48945490754776],[-121.50617993099078,38.48943059404695],[-121.5061685019967,38.48926859025018],[-121.50615962142246,38.489167388901585],[-121.50615516809411,38.48912497551467],[-121.50614539791441,38.48903192077204],[-121.5061400961529,38.48898141821862],[-121.50613470355366,38.48893908099887],[-121.50611644479582,38.48879574251906],[-121.50535089928327,38.483272066277735],[-121.50507354802762,38.48127066487355],[-121.50429969170986,38.475616434844184],[-121.5042278832739,38.47508135953744],[-121.50406164460288,38.473876940395776],[-121.5039036097246,38.47278327363452],[-121.50381282075283,38.47215496486135],[-121.50380714220506,38.47211738573598],[-121.50379634407818,38.4720534874802],[-121.5037841284558,38.471989748002684],[-121.50377049980648,38.47192618443911],[-121.50375546256737,38.47186281842951],[-121.50373902119443,38.47179966891131],[-121.50372117900386,38.471736753916026],[-121.50370194388296,38.4716740932966],[-121.50368132028748,38.471611705990185],[-121.5036132673445,38.471406558139755],[-121.50354266879394,38.47117827872025],[-121.5034771491381,38.47094906702305],[-121.5034167284937,38.47071898980977],[-121.50336142464721,38.47048811923669],[-121.503311255403,38.47025652475682],[-121.50326623511462,38.47002427760963],[-121.5032263769952,38.46979144812795],[-121.50331281391742,38.46978163223012],[-121.50494027434517,38.469596811999025],[-121.50494037344203,38.46958251070077],[-121.50543263434629,38.47047992370866],[-121.50627625892977,38.4712225429899],[-121.50651416196246,38.47140819204634],[-121.50704404952359,38.471821688446994],[-121.50787529832874,38.47233767777577],[-121.50903612572628,38.47279088419394],[-121.51015879529415,38.47322917855991],[-121.511429498305,38.47359221337323],[-121.51295710797405,38.47393229084645],[-121.51453261187555,38.47416545796869],[-121.51568438369732,38.47430140628694],[-121.51800271804578,38.474453884912265],[-121.51995851414257,38.474498049742635],[-121.52147508470453,38.47440891637728],[-121.52379510269837,38.47431107477711],[-121.52549518526048,38.4740851616476],[-121.52588227412362,38.47403372048898],[-121.52780757671128,38.47393417891496],[-121.52989370066904,38.47381189290364],[-121.5326726364193,38.47382316036273],[-121.53347042510768,38.473826382730365],[-121.5348725160865,38.473879399834544],[-121.53608560257996,38.47399172223979],[-121.53749337023777,38.47424757296848],[-121.53900622024581,38.474730391487114],[-121.53994667624164,38.47508614342482],[-121.54050283714784,38.47529652047689],[-121.54181274238216,38.47594445888398],[-121.54198443633601,38.47602938455367],[-121.5433890666812,38.47678559563901],[-121.54381391851584,38.477136215266846],[-121.54412920697662,38.47739641103318],[-121.54497278539016,38.47822214067322],[-121.54640940514949,38.480003715590506],[-121.54803458523492,38.48180968158099],[-121.54982644326876,38.48444897235555],[-121.54981474482983,38.484446176377176],[-121.54995722349531,38.48465602850022],[-121.55202606078872,38.487333793698795],[-121.55338710881279,38.48924574897537],[-121.55352783508127,38.489461158284904],[-121.55519708311263,38.49201617366637],[-121.55558861863955,38.492542152339276],[-121.5558549319708,38.49289493755385],[-121.55676165855681,38.49409604564646],[-121.55748263042382,38.49502830380016],[-121.55790345601986,38.495625779706025],[-121.5583255909618,38.496294981886614],[-121.55860777077146,38.496973508655536],[-121.55862340521732,38.49701110405583],[-121.5586250539955,38.49701550580799],[-121.55889152262618,38.49772708423625],[-121.55904057071209,38.498204428902945],[-121.559159628721,38.498729355049555],[-121.55918638490046,38.49920620623666],[-121.55918314764975,38.49973066611766],[-121.55914991849824,38.50030237884586],[-121.55902320264853,38.501017209610566],[-121.55883590837097,38.501922322911575],[-121.55858775269056,38.50277947791669],[-121.55827989174966,38.503683772467056],[-121.55800115746365,38.50439802145676],[-121.55769490659316,38.505040414703444],[-121.55717297560732,38.506087033186475],[-121.55698025531139,38.506455577692094],[-121.55612790949192,38.508085495456385],[-121.55559404766787,38.50907395627305],[-121.55502308032843,38.5101310866977],[-121.55447211106072,38.51105846271523],[-121.5542457272215,38.51143136315288],[-121.55398128249027,38.51186694922493],[-121.55336957498457,38.512722692739814],[-121.55291036701085,38.51322172096788],[-121.55245409845804,38.51352955937991],[-121.55166376472461,38.513884156190784],[-121.55023500805154,38.51433168869856],[-121.5499523083451,38.51440918037286],[-121.5483496977165,38.51484845820637],[-121.54532683712877,38.515623323801044],[-121.54359409688001,38.51604555152821],[-121.54337235455114,38.51610266873629],[-121.54186293157615,38.516491456741996],[-121.5403739714891,38.516771812617975],[-121.53894693364668,38.51693294841093],[-121.5373838932293,38.51704580059039],[-121.53556299283926,38.517038503748324],[-121.53258939216973,38.517193341177254],[-121.53132811363336,38.51728377757206],[-121.53006997646358,38.51737397515303],[-121.52870327890588,38.517654348873435],[-121.52834517682074,38.51775353905489],[-121.52751625338367,38.51798313751548],[-121.52711291761993,38.518121081213025],[-121.52648283935058,38.518336568913924],[-121.52581703296207,38.51866906995671],[-121.52563068627614,38.518762129638915],[-121.52554886147087,38.51882906839859],[-121.52505082308096,38.519236500338295],[-121.52468463402438,38.51964001978229],[-121.52447453989352,38.5198944609971],[-121.52440988433239,38.51995857766596],[-121.52437116782406,38.52007381054382],[-121.52425505018455,38.52037726805919],[-121.52418518924019,38.520627340401305],[-121.52416204760475,38.52069621504552],[-121.5241619522873,38.52071051636498]]]},"properties":{"ZIP5":"95831","PO_NAME":"SACRAMENTO","Shape_STAr":209274194.985,"Shape_STLe":62225.4275587}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.5241619522873,38.52071051636498],[-121.52418943685542,38.52104458947356],[-121.5243383027366,38.52152197886535],[-121.52448812285837,38.521856226038956],[-121.52487784700145,38.52238229973056],[-121.5252699590243,38.5228129617724],[-121.5258724351986,38.52341129999441],[-121.5263555993259,38.5238183045796],[-121.52689961809455,38.52427361065682],[-121.52771406585946,38.52480105497926],[-121.52874160253617,38.525615981498035],[-121.52967574930948,38.52654928142858],[-121.53030706503687,38.52729085940542],[-121.53069814015403,38.52788831368945],[-121.53090886331024,38.52827049638546],[-121.53099708682598,38.52867587928276],[-121.53105369316249,38.529105160819604],[-121.53092902079615,38.52972455033603],[-121.53068215741769,38.53031941634525],[-121.53040682852107,38.530723681095196],[-121.52984986298938,38.531133706408205],[-121.52982721635652,38.53115037822843],[-121.52909600462759,38.53150470556522],[-121.52794053796757,38.5320484976925],[-121.52760580999603,38.532171319834106],[-121.52678409766865,38.53247282469332],[-121.52547494505761,38.532991607033374],[-121.5246159581359,38.53328084916595],[-121.52337618960624,38.53369829538954],[-121.52297050675756,38.533857671989914],[-121.52103474274686,38.53461812568371],[-121.52035981234806,38.53493426376934],[-121.51926895170486,38.535445208966706],[-121.51842742946225,38.535981725098615],[-121.51808043700797,38.53620294746403],[-121.51703992612389,38.53692103341547],[-121.5158233347776,38.53786625494561],[-121.51489134216064,38.53862081704342],[-121.51422114482735,38.5392572961296],[-121.51379167775781,38.5396651493761],[-121.51311839198958,38.5404726982832],[-121.51249114880648,38.54144728051824],[-121.51193747279677,38.54239847347879],[-121.51147659929948,38.54332602788667],[-121.5113214075011,38.54377845110781],[-121.51122707745814,38.54427849941949],[-121.51120530511835,38.545160183542464],[-121.51132168576912,38.54578056976373],[-121.51146937303689,38.54642478519009],[-121.51176818270712,38.54721275801242],[-121.51200760544641,38.54773788472252],[-121.5103007734788,38.547367889126136],[-121.5102987486777,38.54741955504155],[-121.51029870768393,38.54742185125154],[-121.51029821345578,38.547449574229205],[-121.51029774719021,38.54747572976647],[-121.51029775702301,38.54747797484048],[-121.51029788087651,38.547506067999244],[-121.51029799379958,38.54753190887215],[-121.51029805297813,38.547534151452275],[-121.51029880021945,38.54756217607826],[-121.51029880195743,38.54756225716625],[-121.51029948976722,38.547588076147726],[-121.51029959940165,38.54759032164406],[-121.51030223291917,38.547644214466956],[-121.5103035460293,38.5476653397245],[-121.51030482244256,38.54768178197027],[-121.51030692739968,38.54770888351794],[-121.51030774423324,38.54771941033865],[-121.51030938669957,38.547735837917244],[-121.51031208867118,38.54776286991951],[-121.51031314284201,38.547773415762364],[-121.51031515568499,38.54778986743053],[-121.5103197419757,38.547827338879046],[-121.51031993554511,38.5478287207714],[-121.51032483796176,38.547864091767394],[-121.51032641742673,38.54787415334919],[-121.51033076785372,38.54790186259283],[-121.51033354431146,38.547919545412796],[-121.51033535206167,38.54792960796043],[-121.51034030455432,38.54795718101331],[-121.51034031228149,38.54795722518992],[-121.51034348247603,38.547974871838065],[-121.51034551520662,38.54798491551776],[-121.51035108189033,38.548012424502694],[-121.51035109296627,38.54801248220688],[-121.51035464914047,38.54803005301083],[-121.51035689460414,38.54804002371701],[-121.51036309998221,38.54806757594405],[-121.51036703983021,38.54808507269572],[-121.51036951361161,38.54809503986317],[-121.51038065122394,38.548139913761204],[-121.51014407915733,38.54812225141351],[-121.5101054342527,38.54798365616721],[-121.51006701219151,38.547711355394796],[-121.51000876813335,38.547298570564905],[-121.50905727111059,38.547072688537426],[-121.50886096004027,38.54703342330017],[-121.50786873907923,38.54683495937037],[-121.50759794042195,38.54727172032452],[-121.50077376467473,38.54580533110215],[-121.5004784546074,38.54653523320969],[-121.50044009486156,38.54662829327376],[-121.50042788283146,38.546656549420284],[-121.50037562975879,38.5467774493434],[-121.50011454841214,38.54736463328012],[-121.50000107904613,38.54757405912757],[-121.49997689339784,38.54760463284977],[-121.49980001442485,38.54782822316346],[-121.49974776772119,38.54788296731269],[-121.49959018274173,38.54782584662194],[-121.50079495520264,38.544059305193485],[-121.50081140317681,38.54400592506802],[-121.49158620346857,38.5421742132892],[-121.49282442515619,38.538150039232754],[-121.48455583031723,38.53957311642668],[-121.48355078279165,38.53631624314198],[-121.48322760655714,38.53556992018148],[-121.48320355834645,38.53551438235431],[-121.48266627810627,38.5337629690881],[-121.48261981955979,38.53358888723812],[-121.48257669770064,38.53342730853101],[-121.48252677473263,38.5332402427291],[-121.4824893714885,38.53310008768059],[-121.48238457347728,38.532707396952915],[-121.48224685765874,38.532278604901194],[-121.4820108399261,38.53154372331414],[-121.48179914128471,38.53088455527075],[-121.48163295760051,38.530367096534675],[-121.4815153440517,38.530001991594595],[-121.48138196988144,38.529587962008335],[-121.48124894496416,38.529175009498466],[-121.48120066206323,38.529025123280135],[-121.4811165900287,38.52876413369922],[-121.48109297353054,38.52858411132857],[-121.48097362097967,38.52821620973202],[-121.48093071943693,38.52808396368854],[-121.48087831819095,38.52792243637137],[-121.4808272015466,38.52776486793274],[-121.4807753459303,38.52760501958564],[-121.48077388659888,38.52760051935895],[-121.48072339856473,38.527444887920566],[-121.48069559267992,38.52735917243383],[-121.4806709141332,38.52728310067306],[-121.4806276177479,38.5271496347258],[-121.48058436415292,38.52701629958384],[-121.48054149768312,38.526884159852465],[-121.48049897012957,38.52675306306396],[-121.4804533087625,38.52661230537397],[-121.48042088674819,38.52647516567278],[-121.48024545075991,38.52590152836134],[-121.48018723372057,38.52571116928675],[-121.47996930792092,38.52499858165541],[-121.47991891310197,38.524833796247144],[-121.47960209077118,38.52483599307888],[-121.47941026491472,38.52423341956333],[-121.47923516247513,38.52368336765733],[-121.47920026247651,38.523573737063124],[-121.47901917665752,38.523004881368266],[-121.47884231679625,38.52244929031377],[-121.47880738775255,38.52233956216761],[-121.47873095385246,38.52209944925737],[-121.47870364717627,38.522013667953004],[-121.47859789642784,38.521681451089435],[-121.4785630152236,38.52157171317177],[-121.4784687528364,38.521240753370286],[-121.47837370084294,38.52090701876599],[-121.478339569903,38.52079734001646],[-121.4782391556319,38.520474923416245],[-121.478169452518,38.5202511133916],[-121.47809408154407,38.520009103040216],[-121.47801347529989,38.51975028258594],[-121.47797128449713,38.5196148079833],[-121.47787465158517,38.51930452338905],[-121.47782689956662,38.519151193061276],[-121.47779185773415,38.51903866229277],[-121.47774612841725,38.51889182302072],[-121.47768246729645,38.518687408367974],[-121.47760058902115,38.51842449539637],[-121.47750817532861,38.518127746605956],[-121.47737360966617,38.51769564560484],[-121.47733738701,38.5175793562169],[-121.47702995449866,38.516599888079135],[-121.47676887000361,38.51576806157809],[-121.47713326775569,38.51576585262108],[-121.47702232958382,38.51541709823713],[-121.47685193187905,38.51485794852869],[-121.47673668511872,38.514486033910245],[-121.47650238118356,38.513729890713094],[-121.47630637431536,38.51309732630803],[-121.4761275162012,38.51252009399506],[-121.47593381100289,38.51189493662691],[-121.4756881017782,38.51110192934169],[-121.47548182860059,38.51043618011193],[-121.47546654244915,38.51038684428779],[-121.47542560783123,38.510266265348676],[-121.47541055681592,38.51021692788052],[-121.47518215094782,38.50946816987582],[-121.47512766053738,38.50928953851807],[-121.47504331906444,38.509013045848306],[-121.47496010790309,38.50874025462954],[-121.47490376797826,38.508555554425385],[-121.47483139627248,38.508340123842046],[-121.47400612909209,38.50560240687885],[-121.47377382130684,38.50483171928629],[-121.47378258943995,38.50364184687049],[-121.47377634747363,38.503068758188974],[-121.47374838439752,38.50306886518144],[-121.47374809960992,38.50300887669519],[-121.47320641758033,38.50304065816661],[-121.47242764878479,38.500601061906785],[-121.47228017782587,38.50010265911042],[-121.47195390083203,38.498999926404785],[-121.47189485130015,38.49880035288734],[-121.47105790424045,38.495863113534114],[-121.47066304395254,38.49587055081756],[-121.47035051676859,38.49587643687047],[-121.47027055057578,38.49560986779733],[-121.47035729055229,38.49559634173998],[-121.47005859327375,38.494600615062865],[-121.46999281300722,38.49438132416782],[-121.46937500604702,38.49232171693401],[-121.46893667430048,38.492323048754756],[-121.46889263474237,38.490742087334766],[-121.46835741846463,38.489100919171236],[-121.46825175499461,38.48877690723883],[-121.46823252078036,38.48871506491402],[-121.46810467246827,38.488304025848514],[-121.46799536318048,38.487952582570145],[-121.46798455966326,38.48791785278538],[-121.4679197647534,38.487709526427494],[-121.46782704564359,38.48741141862693],[-121.46775043418471,38.48716510276168],[-121.46764433764872,38.48682397750113],[-121.46752821924383,38.48645063220914],[-121.46751791210289,38.486417491146845],[-121.46746259414972,38.48623963330189],[-121.46736236801193,38.485917373493564],[-121.46729252063011,38.48569279201269],[-121.46723599827416,38.48551105734667],[-121.46713138193323,38.48517467444069],[-121.46705299778344,38.48492264363718],[-121.46698173306737,38.48469349688361],[-121.46688215932384,38.484373323429175],[-121.46681535384579,38.48415851420534],[-121.46673402710447,38.48389701017639],[-121.46664201070155,38.483601132553524],[-121.46663194615175,38.48356876820187],[-121.46659956209425,38.483464637128996],[-121.46657567580148,38.48338949832065],[-121.46649451649786,38.48313420027673],[-121.46638148972733,38.482778658095114],[-121.46632995550208,38.48261654593459],[-121.46622701988225,38.482292738370475],[-121.46611867990045,38.48195193012999],[-121.46598398230688,38.48152819938614],[-121.4665543640098,38.481524344288516],[-121.46883178461017,38.481508921940915],[-121.46883015182107,38.48176827038284],[-121.46882966010936,38.4818464192302],[-121.46882905295331,38.481942867489884],[-121.46882834626719,38.48205516659416],[-121.46882785455824,38.482133314540846],[-121.4688273582193,38.48221208498697],[-121.46882686091529,38.48229113921158],[-121.46882634249702,38.482373495130766],[-121.46882575093257,38.482467537163885],[-121.46882522577934,38.48255079845486],[-121.46882475189494,38.48262624018604],[-121.46882408823865,38.48273167194275],[-121.46882305144169,38.482896376574956],[-121.46882203311408,38.48305813445467],[-121.46882089649398,38.483238573714964],[-121.46881855227421,38.48361115277492],[-121.46881424593028,38.484295209241],[-121.46880683120744,38.48547306972178],[-121.46880656242976,38.485515839525775],[-121.46906595219333,38.48551702914829],[-121.46925175967836,38.48549949580896],[-121.4693716406639,38.485500046054945],[-121.46969386964017,38.48550497398769],[-121.46969456171037,38.48545035210887],[-121.46969732924059,38.48523211864369],[-121.47006072940512,38.485228176759705],[-121.47006660518822,38.48522811360125],[-121.47022030413873,38.48522644590192],[-121.47057116174437,38.485222638635136],[-121.4705929564504,38.48514097022647],[-121.47059480725066,38.484970122493266],[-121.47059733924931,38.48473628168571],[-121.47059912521829,38.484571394898474],[-121.47060091613761,38.48440599372139],[-121.47060272805984,38.48423868543971],[-121.47060450438974,38.484074631939876],[-121.47060651854503,38.483888539960645],[-121.47060833394393,38.483720913678866],[-121.47061016748322,38.48355161181012],[-121.47061196101971,38.48338600524214],[-121.47061369485867,38.48322582360872],[-121.47061546880144,38.48306208541401],[-121.47061722868023,38.48289947057498],[-121.47061902556663,38.4827335622226],[-121.47061918609401,38.482718706248995],[-121.47061891410326,38.48256178028679],[-121.47061853694247,38.48234434773313],[-121.47061833720694,38.48222901746289],[-121.47061780961286,38.481924863782055],[-121.47083987147393,38.48192441009511],[-121.47105367651922,38.48192397226016],[-121.4712832800091,38.4819235008739],[-121.47149346781751,38.481923070007824],[-121.47170687858076,38.481922631865245],[-121.47189935389167,38.48192223553945],[-121.47196229425438,38.48182800621821],[-121.47196147765844,38.48149364414463],[-121.4724101510342,38.48149304564978],[-121.47292007862922,38.48149214901304],[-121.47292321523653,38.48183050180284],[-121.47292488391605,38.48201038537615],[-121.47292646464012,38.48218091002194],[-121.47292814427796,38.482361951299474],[-121.47292981006636,38.48254160873512],[-121.4729314268847,38.48271594344328],[-121.47293291659997,38.482876593834774],[-121.47321266614608,38.48279865737137],[-121.47349238408395,38.482720727297156],[-121.47375130356613,38.482720433146405],[-121.47395705208675,38.48272019830444],[-121.47411548875013,38.48272001727351],[-121.4741766311749,38.48271994762097],[-121.47438448631122,38.482719709887675],[-121.474592114505,38.48271947255117],[-121.47482215562935,38.482719208726095],[-121.47503415180056,38.482718964310955],[-121.47524357371648,38.4827187231384],[-121.4752745346151,38.482718687984686],[-121.47526521308066,38.48239837023443],[-121.47533899738889,38.48234083322425],[-121.47534189159808,38.48194678559347],[-121.47629466714076,38.48194838195341],[-121.47629446238578,38.481975841287216],[-121.47629344606908,38.4821125893433],[-121.47657171746192,38.4821098612381],[-121.47657421170231,38.48203099263619],[-121.47713512274844,38.48203118477311],[-121.47732017486676,38.48203124765004],[-121.47732332710692,38.48242137938769],[-121.47732571123836,38.48271630620142],[-121.47733152550371,38.48316368400044],[-121.47733388009107,38.48334486245006],[-121.47733419913133,38.48336939893769],[-121.47763477116293,38.48337265823135],[-121.47790156889596,38.48337554981774],[-121.47811238170243,38.4833778349369],[-121.47834566414498,38.4833803624962],[-121.47855833015623,38.4833826668753],[-121.47876305743651,38.48338488462278],[-121.47896128543452,38.48338703127692],[-121.47916792322206,38.48338926862898],[-121.47946303330974,38.48339246342878],[-121.47958757664448,38.483393812374324],[-121.48019718823826,38.4834004087838],[-121.48019629034432,38.48259720333006],[-121.48018198544455,38.48229527351001],[-121.47961918697621,38.482300911070276],[-121.47961473562673,38.48202634343388],[-121.480195645492,38.48202052517447],[-121.48019294655745,38.48165461985642],[-121.48033555071669,38.48143070143414],[-121.48047658544674,38.48164717498075],[-121.48047504689436,38.48196162630814],[-121.48045758007282,38.48196144962007],[-121.48045788959357,38.48223784093226],[-121.48081952059005,38.48223777445597],[-121.4826569982007,38.482237419385335],[-121.48267102302317,38.48335666505027],[-121.48374954388841,38.48336094804912],[-121.483755315572,38.48264844969169],[-121.48445621962932,38.4826420754724],[-121.48446998318278,38.48153491257998],[-121.4846674111024,38.48153462609555],[-121.48466816152973,38.48162331465892],[-121.48501917867705,38.48162147964939],[-121.48510076459178,38.481424246556536],[-121.4851903478702,38.48162058431427],[-121.48560712267548,38.48161840337512],[-121.4856072052519,38.481793312918334],[-121.48560723276098,38.4818531569338],[-121.48581125772205,38.481841851043335],[-121.48601378060302,38.48183062730417],[-121.48618435748402,38.48186370519565],[-121.48622889449078,38.48187234182261],[-121.48632824869175,38.48189160843956],[-121.48645864379965,38.48182744654245],[-121.4868626577606,38.481815997221695],[-121.48686187982524,38.48179346143281],[-121.48686123094478,38.481755034392776],[-121.48685929848403,38.48142159120549],[-121.48733274717543,38.481420894312876],[-121.48733454811658,38.48176642333371],[-121.48738905719127,38.481840441288405],[-121.48756434646575,38.48183948412767],[-121.48757072489285,38.48183944933575],[-121.48778060667213,38.481838302823256],[-121.48799714654244,38.481837118749255],[-121.48820213416757,38.48183599844598],[-121.4882090925529,38.4818359607808],[-121.48841575243503,38.48183483038431],[-121.48842433724028,38.48183478278594],[-121.48863360693649,38.48183363832298],[-121.4886410547392,38.48183359739112],[-121.48885783068782,38.481832410947646],[-121.48886196491398,38.48183238868507],[-121.48907262834115,38.48183123517492],[-121.48907792249109,38.48183120631896],[-121.48928021544482,38.48183009832204],[-121.48949019851558,38.481831927518904],[-121.48970359454182,38.48183378581282],[-121.49001116740848,38.48183646367988],[-121.49020355622821,38.48183750946783],[-121.49048095125175,38.481838160228676],[-121.49054765336298,38.481838317233596],[-121.49069065507565,38.48183865178618],[-121.49077822316185,38.481838857332946],[-121.49089324273693,38.481839126942724],[-121.49099964590624,38.48183937562105],[-121.49109934436252,38.481839609103716],[-121.49121490146148,38.4818398798586],[-121.49129422219038,38.48184006493614],[-121.49144911587959,38.48184042745164],[-121.49150737637476,38.481838389122665],[-121.49167979395438,38.481832355457776],[-121.49173042393865,38.481830584366676],[-121.49192547157853,38.48182375883405],[-121.49213757948628,38.481831081724096],[-121.49234829294359,38.48183835666073],[-121.49235663123558,38.48183864462335],[-121.49256712130168,38.481845910972865],[-121.49278695231527,38.48185349989993],[-121.4929989355016,38.48186081705821],[-121.49302248944494,38.48186163025315],[-121.49324682715438,38.48186937410286],[-121.49345652060711,38.48187182365153],[-121.49369843616358,38.48188074543414],[-121.49372582250957,38.48188175544794],[-121.49390796963851,38.48188847181674],[-121.49394905775594,38.481889987699084],[-121.49395020358267,38.481890029651176],[-121.49411958243986,38.481887428580755],[-121.49415606867501,38.48188686840727],[-121.49433129338385,38.48188417728901],[-121.494359113983,38.4818837494193],[-121.49454129296296,38.481880951460944],[-121.49456268539782,38.481880622464935],[-121.49476876020195,38.481877456542634],[-121.4947801294,38.48200552543557],[-121.49504576890818,38.48200330307302],[-121.49519575061565,38.48200204722966],[-121.49536312465045,38.482000646387824],[-121.49581462051081,38.48199686578388],[-121.49670580515337,38.48198939833868],[-121.49669472188694,38.48137113599028],[-121.49926376897966,38.48133976548305],[-121.49927272818333,38.48167216567446],[-121.49927716578416,38.48183684082119],[-121.49928158280449,38.48200069426137],[-121.49928597888405,38.48216377734452],[-121.49928976075826,38.48230411824239],[-121.49940049729773,38.4823228003829],[-121.49961474701273,38.48235894389907],[-121.49982428467808,38.48235653169199],[-121.50003657556141,38.482354086867325],[-121.50024580486686,38.482351677067456],[-121.50024109002622,38.48203561775527],[-121.50059121533666,38.481826938068615],[-121.50121209146778,38.48181481391867],[-121.5012087889736,38.481489072521],[-121.50131230614573,38.48131473709765],[-121.50132261649438,38.482339702408005],[-121.50132169710744,38.482341371406825],[-121.50132349131826,38.48253798083533],[-121.50178482594225,38.48254426343218],[-121.50178960386474,38.48271521106405],[-121.50179189800728,38.48279727277735],[-121.50179420218615,38.482879703901354],[-121.50186823140986,38.482995561921406],[-121.50196683652088,38.48314987961509],[-121.5020521575947,38.48328340678521],[-121.50217041106954,38.48340166586826],[-121.50228898933788,38.48352024784697],[-121.50242768583428,38.48362113980142],[-121.50257334585285,38.483727097557484],[-121.50272751810388,38.48383924576177],[-121.50285092255278,38.483891409523586],[-121.5030844724041,38.48378480239174],[-121.50329491860244,38.48368873962574],[-121.50350797887513,38.48359148320664],[-121.50351918596176,38.48358636739571],[-121.50373669367436,38.48353301591042],[-121.5039728795797,38.48347508111488],[-121.50399650871029,38.483469285221666],[-121.50431757039462,38.48344067312061],[-121.50456806689044,38.48341834872604],[-121.50535089928327,38.483272066277735],[-121.50611644479582,38.48879574251906],[-121.5061298137446,38.48889663781887],[-121.50613470355366,38.48893908099887],[-121.50614539791441,38.48903192077204],[-121.50615122311272,38.489082481416375],[-121.50615516809411,38.48912497551467],[-121.5061685019967,38.48926859025018],[-121.50617861788129,38.489406318299096],[-121.50617993099078,38.48943059404695],[-121.50618497710889,38.48952388446575],[-121.50618870195693,38.489592754057526],[-121.50618947717543,38.48961707435467],[-121.5061924466771,38.489710312661565],[-121.50619464507555,38.48977929915696],[-121.50619487923423,38.48980362435052],[-121.5061957790617,38.48989696462869],[-121.50619644415845,38.489965896828465],[-121.50619613858612,38.48999019989734],[-121.50619410070549,38.49015249122325],[-121.50606640791186,38.49554707375285],[-121.50670176575676,38.49553330310315],[-121.50669319231459,38.49579170117993],[-121.50664341209949,38.49729204564227],[-121.50662703588304,38.497785601064756],[-121.50661129090703,38.49826010162468],[-121.50660533289955,38.49843967704753],[-121.50659945322771,38.498616869934445],[-121.50659360978521,38.498792962981824],[-121.5065823134028,38.49913341657109],[-121.50657855334968,38.49924672334712],[-121.50657780186339,38.49926937497488],[-121.50656588421695,38.49962854293068],[-121.50656026793388,38.499797784731605],[-121.50655473095235,38.49996467102759],[-121.50654904217748,38.50013610079581],[-121.50654173603301,38.50035627205183],[-121.50653153240928,38.50066377282169],[-121.50652165897537,38.50096130388232],[-121.5065141873105,38.50118649062155],[-121.50650807123624,38.501370786065486],[-121.5065021475943,38.50154929497393],[-121.50649461385436,38.50177631296997],[-121.50648365685218,38.50210650589959],[-121.50648153257637,38.50217052712502],[-121.5064671001928,38.50260544700967],[-121.50646125601043,38.5027815526662],[-121.50644816678289,38.50317603435313],[-121.50643815039827,38.50347789180726],[-121.5064324845844,38.503642600987945],[-121.50642411549813,38.503996385017054],[-121.50641831663033,38.504241540050636],[-121.50641494282281,38.504384146517914],[-121.5064107202587,38.50456263025394],[-121.50640547559219,38.50478432020976],[-121.50640004670669,38.505013748077246],[-121.50639493639221,38.50522975845659],[-121.50639017918573,38.505430838890526],[-121.50638585934453,38.505613425793584],[-121.50638182994136,38.505816024641334],[-121.50637793612196,38.506011777257235],[-121.50637406691962,38.506206287642506],[-121.50637015007014,38.50640320952345],[-121.50636617336237,38.50660314825021],[-121.50636221408827,38.50680222038938],[-121.50635839883776,38.50699405534377],[-121.50635470692379,38.50717965572244],[-121.50635086724293,38.50737269687269],[-121.50634670597816,38.50758190233075],[-121.5063424973351,38.50779347964624],[-121.50633807272322,38.50801589382065],[-121.50633270220304,38.508285901904685],[-121.5063275005771,38.50854739543935],[-121.50632471166918,38.50868760171436],[-121.50663025521293,38.508665237154794],[-121.5066239006796,38.50891137541131],[-121.50661937785044,38.50908655789318],[-121.5066150133067,38.50925558883058],[-121.50660937247498,38.5094740888365],[-121.50660388656074,38.50968659133679],[-121.50659877660195,38.50988450452705],[-121.5065932093912,38.510100134591895],[-121.50658814653723,38.51029620024515],[-121.50658317241543,38.51048887890742],[-121.50657807040282,38.5106864551964],[-121.5065766533685,38.510741355167255],[-121.5065715885487,38.510937526216914],[-121.50656634187521,38.51113230010168],[-121.50656280961631,38.51123776825885],[-121.50655992898652,38.51132376992942],[-121.50655342356434,38.51151800601433],[-121.50654470191468,38.511778414276364],[-121.50653319633768,38.51212192914086],[-121.50653091503872,38.51219005238149],[-121.50651472397357,38.51267346543511],[-121.5065094059729,38.51283223199762],[-121.50685256236939,38.51287397555695],[-121.50698567982113,38.51289016818264],[-121.50713042047686,38.5129278109714],[-121.50730848652599,38.512974119816825],[-121.50741844407128,38.51300271592379],[-121.50734935496524,38.51313391106278],[-121.50776345441211,38.51324925276355],[-121.50772110572835,38.51331915143669],[-121.50765137535186,38.51340037492352],[-121.50757231984153,38.51351759451268],[-121.50763328386164,38.513549858374795],[-121.50785399506017,38.51369713924892],[-121.50953212062485,38.51504939241842],[-121.50953907114581,38.51505497411254],[-121.50955071562335,38.51506412704131],[-121.50956951786493,38.515078906683826],[-121.50966869571836,38.51515518709953],[-121.50971218515511,38.51518972621548],[-121.509919132957,38.51498103951168],[-121.5099481438773,38.51484229111518],[-121.51017184554365,38.51487802585697],[-121.5101219389607,38.515078530517734],[-121.51058414920406,38.515156108354084],[-121.51048785499509,38.51552727540221],[-121.51052905058849,38.51553822895511],[-121.51071733922983,38.51557290736991],[-121.51094784426783,38.51561536123277],[-121.51101498814958,38.51523046525267],[-121.51114992577996,38.51513633254158],[-121.5112835063896,38.515261344074155],[-121.51161486195883,38.515282471445204],[-121.5117639579686,38.515276687397495],[-121.51212536217454,38.515297444643785],[-121.512528757989,38.515320611957975],[-121.51267674406563,38.515326750817565],[-121.51307736653239,38.51537176296735],[-121.51304804265466,38.515733963595274],[-121.51349391472368,38.51575799462788],[-121.51353123690788,38.51538009699413],[-121.51393267960474,38.51540092057675],[-121.51413559464375,38.51527593147488],[-121.51422109517405,38.51537790351881],[-121.51469491202974,38.515571949011445],[-121.51450569585255,38.515909995368254],[-121.51480157285485,38.51602898212864],[-121.51490829310643,38.51586414420543],[-121.51492846503454,38.51585675496956],[-121.51498880210752,38.51581767848112],[-121.51503546718774,38.515737443075636],[-121.51521258126263,38.51581156978369],[-121.51511480816748,38.516062510759085],[-121.51508622224094,38.51614414180255],[-121.51537724041562,38.516268703977765],[-121.51546312932655,38.51630729240167],[-121.51548424707178,38.5163168384638],[-121.51553118430033,38.51633892052214],[-121.51559908811328,38.516370865985444],[-121.51561992893478,38.51638067122181],[-121.51566626826461,38.51640334351055],[-121.51573356353862,38.51643627012443],[-121.51575417202804,38.51644635364142],[-121.51580004489152,38.51646968067629],[-121.51586650762687,38.516503478496944],[-121.51588693635371,38.516513866641326],[-121.51593240443984,38.51653788291625],[-121.5159979638221,38.51657251110975],[-121.51601818077283,38.51658319023488],[-121.51606304070133,38.51660778859471],[-121.51612791153912,38.51664336067464],[-121.51614786531097,38.51665430173756],[-121.51619223703582,38.516679548451386],[-121.51627594997474,38.51672718116761],[-121.51638264448604,38.5167790972734],[-121.51638715723223,38.5167805395561],[-121.51644971900825,38.51680052891849],[-121.5165078653259,38.516819107006164],[-121.51651263351278,38.51681991251758],[-121.51657863451618,38.516831057678786],[-121.51664002769847,38.51684142499326],[-121.51664490014174,38.516841566974804],[-121.51677511468814,38.51684537227211],[-121.5175776752767,38.51681376299795],[-121.51767681840442,38.51680581793731],[-121.5178681405476,38.51678503910363],[-121.51806930213783,38.51675493433855],[-121.51812474569225,38.51674333116144],[-121.51791302847585,38.5162565554641],[-121.51832354500749,38.51611763138216],[-121.5184290612296,38.51621699085808],[-121.51860831194114,38.516404852092904],[-121.518729595512,38.51656192341127],[-121.51903445131543,38.51644058675512],[-121.51875905776012,38.51606710751765],[-121.51896349593477,38.51602924551689],[-121.51920404627822,38.51598469456884],[-121.51924518274123,38.515977076408426],[-121.51940709477977,38.515947089071155],[-121.51930858133274,38.51560691509945],[-121.51994460651893,38.51548741130804],[-121.52007747822192,38.5156382122216],[-121.52023377027447,38.51581559284591],[-121.52050920901029,38.516128194328004],[-121.52055947314379,38.51612788556509],[-121.5205613214908,38.51612789863168],[-121.5205883139993,38.51612809068923],[-121.52061342720768,38.51612826864553],[-121.5206152650656,38.516128306892874],[-121.52066736369375,38.5161293912631],[-121.52198663108425,38.51616589289853],[-121.52198662451875,38.51616601719494],[-121.52195522126115,38.51679427992623],[-121.5219385237243,38.51712833317652],[-121.5219231305557,38.51775528640242],[-121.52248486363642,38.51803574100199],[-121.52233626606439,38.51883289729895],[-121.52231604142276,38.51894139238758],[-121.52229235380975,38.519422789777956],[-121.52227065414323,38.519863767697494],[-121.52223636258465,38.52056065508441],[-121.52236511563503,38.52060107572405],[-121.52258485742163,38.52055709662994],[-121.52350798930463,38.51942746040025],[-121.5241619522873,38.52071051636498]],[[-121.52418518924019,38.520627340401305],[-121.5241619522873,38.52071051636498],[-121.52416204760475,38.52069621504552],[-121.52418518924019,38.520627340401305]]]},"properties":{"ZIP5":"95822","PO_NAME":"SACRAMENTO","Shape_STAr":240141858.19,"Shape_STLe":89861.0577942}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.50775592008809,38.571231347159184],[-121.50683526293236,38.57098563356234],[-121.50677786949927,38.57111555495872],[-121.50673334984654,38.57121633225286],[-121.50647154673587,38.57114538524155],[-121.50620495589833,38.57107850998243],[-121.50607524681531,38.571043989232265],[-121.50594613807317,38.57100962765422],[-121.50599093740111,38.57090821131501],[-121.50604974280046,38.57077508913888],[-121.50606054858662,38.570778008204194],[-121.50616258171077,38.570542294422125],[-121.50616769198214,38.570530488362174],[-121.50607438850959,38.570505108444515],[-121.50598350301675,38.57048038651457],[-121.50589261873446,38.57045566451815],[-121.5058017333676,38.57043094244546],[-121.50571084806998,38.570406219400574],[-121.50562460737042,38.570382760257296],[-121.50561765104611,38.570398644872924],[-121.50557284404186,38.57050097274322],[-121.50551595127375,38.57063090106692],[-121.50544862099355,38.57061271353338],[-121.50533550716241,38.57086411799655],[-121.50513077329353,38.57080392435172],[-121.5050466369444,38.570997976159],[-121.50486826365726,38.57106655259655],[-121.50478167364263,38.57092735774692],[-121.50486953901478,38.57072470861409],[-121.50474404987604,38.57069114044718],[-121.5046200877032,38.57065798047782],[-121.50466549730446,38.57055518347941],[-121.50472424431477,38.570422191445736],[-121.50418861353474,38.57027922088488],[-121.50412940711801,38.57041181158598],[-121.50406030720919,38.570566561550116],[-121.50394676932311,38.57082082500659],[-121.50090024653873,38.570008778242425],[-121.50104134023121,38.569683189144094],[-121.50078884206008,38.56961849182774],[-121.50065823804015,38.56958502688489],[-121.50070164779538,38.56948061108809],[-121.50075699763495,38.56934747215078],[-121.50035609232499,38.56924050151292],[-121.50030238547343,38.56936997980597],[-121.5001233207464,38.56980167375899],[-121.49956518054658,38.56965288636993],[-121.49970329348588,38.56933273821463],[-121.4994788702079,38.569271731419406],[-121.4993797076031,38.56924477391447],[-121.49931584105263,38.56922741219108],[-121.49936153464589,38.569121736503526],[-121.49941837121224,38.568990289301844],[-121.49902287608809,38.56888475633626],[-121.49896708248912,38.56901318895796],[-121.49892418069048,38.5691119477845],[-121.49879178657014,38.56907644506147],[-121.49874888449713,38.569175202922075],[-121.49841311239747,38.569229766186446],[-121.4982352213721,38.569298338106734],[-121.49823483308796,38.56929823462236],[-121.49814816222899,38.56915913258908],[-121.49775217140072,38.56905356249868],[-121.49786102803455,38.568799181117875],[-121.49772888170655,38.56876400797713],[-121.49780357513166,38.568588393318294],[-121.49767396454418,38.56855380678678],[-121.4975404518374,38.568518177951724],[-121.49749199147266,38.56863119763962],[-121.49744735767514,38.568735293426094],[-121.4974175978472,38.568804699899786],[-121.49738783796138,38.568874106365755],[-121.4973561588327,38.56894798554853],[-121.49708014077243,38.568874397847814],[-121.49690310591727,38.568942894866616],[-121.49690258953311,38.56894305748634],[-121.49690247385291,38.56894302635311],[-121.49690276546363,38.56894235555183],[-121.49681519324962,38.5688037602982],[-121.49676142638292,38.568660894853835],[-121.49680239457781,38.5685617148994],[-121.4966484105761,38.56852218705125],[-121.49674183974876,38.568305061053266],[-121.49660937940466,38.568269712290544],[-121.4964769203392,38.56823436338126],[-121.49634446140507,38.56819901432032],[-121.49621200145472,38.56816366510284],[-121.49607954278305,38.56812831573873],[-121.4959852169912,38.56834752107977],[-121.49584746492498,38.568311315974476],[-121.49575591119986,38.568521340458716],[-121.49557824057176,38.568590111060885],[-121.49549096629289,38.56845070077868],[-121.49558012369762,38.568246175039874],[-121.49544971744639,38.568212537493295],[-121.49531711325264,38.56817833346237],[-121.49542477829476,38.567924574364085],[-121.49422916691105,38.56760548503634],[-121.49416793910657,38.567746221305605],[-121.4938946816602,38.56767410739903],[-121.49376207104882,38.5676391114645],[-121.4938227664115,38.56749701993174],[-121.49329293646724,38.56735560970253],[-121.49323272792941,38.56749655985545],[-121.49318736801975,38.56760275083602],[-121.4930510985301,38.567566782213554],[-121.49279358123415,38.56749880848791],[-121.49265790271892,38.567811296171215],[-121.49238500347532,38.56773852621438],[-121.49251715177272,38.567425614361845],[-121.49239134539509,38.56739148181389],[-121.4924354022561,38.56728810973733],[-121.49249715610941,38.5671432127327],[-121.49196733027247,38.56700179643009],[-121.49190556964487,38.56714670483852],[-121.49186175250308,38.56724951290673],[-121.49172364827355,38.567212911240695],[-121.49159627135344,38.567179152909056],[-121.49132754862225,38.567117223060265],[-121.49118077738734,38.56707860248587],[-121.49105059200647,38.56704434652372],[-121.4910946983064,38.566937664371466],[-121.49115754726043,38.566785650395744],[-121.49075973442689,38.56667946448751],[-121.49052148636825,38.56724159093912],[-121.48998336843317,38.567098086711326],[-121.49022639253833,38.56653709949543],[-121.48888884964646,38.566180055931646],[-121.4887890652684,38.566410787200816],[-121.48852207598763,38.56634068553466],[-121.48839143569025,38.56630638401935],[-121.48843481324744,38.56620292755628],[-121.48848914010473,38.566073353816336],[-121.4879557534515,38.56593096370864],[-121.48790040123806,38.5660625876117],[-121.4878573859636,38.56616487341387],[-121.48772613705526,38.56613056304656],[-121.48746126420798,38.56606132143999],[-121.48732008967102,38.56638780288976],[-121.48704500466417,38.56631443403874],[-121.48728883672683,38.565752924044084],[-121.48662589513181,38.56557593958919],[-121.48652497482044,38.56580831163968],[-121.48639601982175,38.56577464236377],[-121.48627243648288,38.56574237605774],[-121.48617544227258,38.565966506711604],[-121.48599813705316,38.566034793077456],[-121.48599797367287,38.56603517253045],[-121.48599748922109,38.56603504335272],[-121.48599733691664,38.56603500033425],[-121.48591051634571,38.56589584420038],[-121.48603947599035,38.565597854225864],[-121.48611985834339,38.56541210922793],[-121.48558440743487,38.5652702494323],[-121.48567813644232,38.565056049760734],[-121.48570899510193,38.56498552682092],[-121.48577701584391,38.56487225654817],[-121.48585489243311,38.56476543629397],[-121.48593486745001,38.56465909827877],[-121.48577507103388,38.56461526974392],[-121.48524960695076,38.56583556217747],[-121.48506285492009,38.565785749755285],[-121.48549347736397,38.5647889572733],[-121.48524199428242,38.56472179889274],[-121.48485473810638,38.56561423616464],[-121.4848147335541,38.56571932433222],[-121.48467786129822,38.56568288728013],[-121.48458614955128,38.56565844751198],[-121.48472140964111,38.5653467465552],[-121.48388174604518,38.56512088852454],[-121.48381979067668,38.56515283463921],[-121.48379151425944,38.56521779294775],[-121.48374750618862,38.56531889084321],[-121.48350696061698,38.56525472521164],[-121.48332965610567,38.565322959749764],[-121.48332947289346,38.565323382353604],[-121.48332893118427,38.56532323849474],[-121.4833285452383,38.56532313497061],[-121.48283564086503,38.565191650495194],[-121.48302344054723,38.56476245608499],[-121.48283576097985,38.56471155483004],[-121.4828906787454,38.564584500718944],[-121.48262335220087,38.56451326676966],[-121.48256826212788,38.56464044701221],[-121.48252201536539,38.564747209192284],[-121.48238192283978,38.56507061749247],[-121.4819977797467,38.564968141761476],[-121.4820930922636,38.564746992601464],[-121.48169355153297,38.564638803733914],[-121.48176093581027,38.564484294373415],[-121.48183940745851,38.564304365344],[-121.48144112258352,38.56419823075489],[-121.48136153625796,38.56438031667734],[-121.48122743588635,38.56434404650321],[-121.481165504204,38.56448896021823],[-121.4810668495978,38.564719796306555],[-121.48066131967325,38.56461161035009],[-121.48075523522893,38.56439450553951],[-121.4803548573089,38.56428806052227],[-121.48042314785022,38.564132516361425],[-121.48050394609767,38.563948485169874],[-121.47996773870875,38.56380558869159],[-121.47990975659489,38.563938556474156],[-121.47986471693679,38.56404184466868],[-121.47981930139743,38.56414599331568],[-121.47972516974878,38.56436185857465],[-121.47892379061192,38.56414805540387],[-121.47901783715696,38.5639323534657],[-121.47906252100603,38.56382986669354],[-121.47910793758699,38.563725699424815],[-121.47916623627151,38.563591986618114],[-121.4786339783268,38.56345013503725],[-121.47857455712233,38.56358581278589],[-121.47852994381081,38.563687678971995],[-121.47839589205456,38.563651879595774],[-121.47824814382673,38.56361242194228],[-121.47798354728752,38.563541019275526],[-121.47786395306684,38.56350845203873],[-121.47773653985512,38.56347375481119],[-121.4777803029825,38.56337201662131],[-121.4778379579222,38.563237982650946],[-121.47730602591487,38.5630962101929],[-121.47725013603012,38.56322694918397],[-121.47720696407293,38.563327936696446],[-121.47706938151534,38.56329124325675],[-121.47680265803142,38.563220107548354],[-121.47666181331473,38.563544535361125],[-121.47626589002458,38.56343889358527],[-121.47636234870659,38.56321724975231],[-121.47640707007852,38.5631144875833],[-121.47645279035672,38.56300943082516],[-121.47650763142042,38.56288341357779],[-121.47596978639676,38.56274005776606],[-121.47591570321303,38.56286635026534],[-121.47587089877388,38.56297097312558],[-121.47573655365001,38.56293548464274],[-121.47550436938913,38.56311969062184],[-121.47532691345216,38.5631882131276],[-121.47532704650723,38.563187907425544],[-121.47532640714194,38.56318840902995],[-121.47523946574275,38.56304900459106],[-121.47533441586044,38.56282986736546],[-121.4751974163205,38.562794040097096],[-121.47506290090583,38.562758861767705],[-121.47510893058575,38.56265363035929],[-121.47516496169428,38.562525536259386],[-121.47463152982732,38.56238334916578],[-121.47457523867986,38.56251376344432],[-121.47453083899951,38.562616629079486],[-121.47448632364271,38.56271975993759],[-121.474215141984,38.56264760431319],[-121.47416534822246,38.562762382201534],[-121.47398779931514,38.56283085268461],[-121.47390044722917,38.56269169310586],[-121.47373608428914,38.562402217200926],[-121.47383578172747,38.56217123524526],[-121.47343565290777,38.56206457542896],[-121.47367417526185,38.56151589018494],[-121.47407015183745,38.561621683478606],[-121.47430470493192,38.561077017649],[-121.47414362328722,38.56103416083859],[-121.47448923578801,38.5608130097302],[-121.47459304705279,38.56074822269939],[-121.4749352574432,38.56057519969883],[-121.47533265064082,38.560374274606566],[-121.47538855025607,38.560346010977995],[-121.47576379952284,38.56022228015843],[-121.47626091207245,38.56005836555108],[-121.47626303864347,38.560057831932745],[-121.47627058002575,38.56005600390257],[-121.47627940416939,38.56005386456037],[-121.47628044325148,38.56005361250636],[-121.47628802863204,38.56005188647556],[-121.4762968644433,38.56004987691409],[-121.47629793904005,38.560049632227795],[-121.47630556496372,38.56004800998253],[-121.47631447565895,38.56004611517254],[-121.47631552140666,38.56004589287795],[-121.47632302241168,38.560044407002756],[-121.47633212978772,38.56004260317107],[-121.47633318346757,38.5600423944257],[-121.47634101801127,38.56004095600423],[-121.47634979352381,38.56003934526355],[-121.47635092062022,38.56003913865195],[-121.47636654328694,38.56003648952312],[-121.47636758290763,38.560036320353326],[-121.47636872712155,38.560036126431584],[-121.47637652554457,38.56003491937495],[-121.47638659947015,38.560033365856796],[-121.47639407783407,38.56003230690007],[-121.47640452863293,38.560030837066975],[-121.47667237740637,38.55999504770413],[-121.47667812557295,38.5599942935173],[-121.4766837102685,38.55999361336557],[-121.47669246341947,38.55999254664],[-121.47669527012543,38.559992204376506],[-121.47670087032846,38.559991599969486],[-121.47671245885277,38.55999034966626],[-121.47590157464046,38.558419322400724],[-121.47548701873446,38.558308749317106],[-121.47557379639873,38.55810955408383],[-121.4757227504959,38.55776763827062],[-121.47503914174844,38.55758431048843],[-121.47503313821258,38.55757316978352],[-121.47498740900589,38.55725297430427],[-121.4749552479703,38.55697760866703],[-121.47495329022581,38.556965032262724],[-121.4758283439985,38.557198165459546],[-121.47581820192553,38.556630527881595],[-121.47536339279506,38.556511155799804],[-121.47541520824619,38.55638505058369],[-121.47530976565987,38.55635840602901],[-121.47529056420038,38.55635355412869],[-121.47534760660025,38.55622623480658],[-121.47539412619714,38.55612240010767],[-121.47552092204639,38.55583938390747],[-121.47496649135323,38.55569198946312],[-121.47482725358202,38.55507124279083],[-121.47536162800289,38.55521517044492],[-121.4754241757115,38.55507046619671],[-121.47543912922048,38.5550358728371],[-121.47558305901515,38.5547028920703],[-121.47578471188304,38.554756180231],[-121.47578002493657,38.55449383651757],[-121.4757798210155,38.554481458160744],[-121.47577965413181,38.55443889359328],[-121.4757794378029,38.554384006323424],[-121.47577962660357,38.55435783700202],[-121.47565746483757,38.5543256134338],[-121.47565467081034,38.55432894400623],[-121.47565152632906,38.55433187839758],[-121.47564675994055,38.55433632525478],[-121.47564512069906,38.554337854759225],[-121.4756413727768,38.55434031614762],[-121.47563569266885,38.55434404715533],[-121.47563374434897,38.554345326611404],[-121.47562951631758,38.55434723717744],[-121.47562309657242,38.55435013780918],[-121.47562088989163,38.554351135014386],[-121.475616291124,38.5543524430014],[-121.4756093389356,38.55435442050239],[-121.47560694527513,38.55435510154592],[-121.47560213328256,38.554355761721645],[-121.47559233472961,38.55435710650672],[-121.47516829707236,38.55445189658337],[-121.47516608663044,38.55445215592765],[-121.47515981142988,38.55445287071057],[-121.47515759657114,38.554453106611305],[-121.47515130710545,38.554453733041086],[-121.47514908672905,38.55445393918703],[-121.47514278413225,38.55445447907063],[-121.47514056053937,38.55445465457127],[-121.4751342470994,38.55445510881998],[-121.4751320191427,38.55445525367012],[-121.47512569716737,38.55445562049257],[-121.4751234671414,38.554455734702636],[-121.47511713661743,38.554456015900556],[-121.47511490452227,38.55445609947058],[-121.47510856890472,38.55445629325788],[-121.47510633474032,38.554456346187834],[-121.4750999951765,38.55445645256961],[-121.47509776009015,38.55445647486469],[-121.4750914200218,38.55445649385668],[-121.47508918510772,38.554456492729045],[-121.47519920088541,38.55420473309656],[-121.47521322847123,38.5541726346576],[-121.47526693024534,38.55404974165687],[-121.47513632009087,38.554014784644],[-121.47523454237587,38.55378779843301],[-121.47525964578958,38.55372978813986],[-121.4753626839311,38.55349167054518],[-121.47508619177682,38.55341758101938],[-121.47521538573321,38.553121710318386],[-121.47578743548644,38.5532709285106],[-121.47578816536054,38.55316938353037],[-121.47525707630169,38.55302623213034],[-121.47531198790217,38.552900476138745],[-121.4757892056023,38.55302449416448],[-121.47579757529708,38.55185948126903],[-121.47510340628922,38.55167288505465],[-121.47509939123478,38.55141891728392],[-121.47509781098339,38.55131900596206],[-121.47513376903433,38.5513188366204],[-121.47516584240064,38.551318684785116],[-121.47516486924765,38.551206877160354],[-121.47516366691146,38.55106882714667],[-121.47533938974259,38.551067178005916],[-121.47533784104151,38.55092532373575],[-121.47533659080766,38.55081075270455],[-121.47533537047481,38.55069882504274],[-121.47533334416273,38.550513174165765],[-121.47541438042926,38.550512452347995],[-121.47541105220371,38.55031067400636],[-121.47540908556978,38.550191479023745],[-121.47533652607177,38.55019163386444],[-121.4753354333032,38.550112134594464],[-121.47533477049787,38.550063877704645],[-121.47533287218974,38.549925732645605],[-121.47557925161436,38.54992408725708],[-121.47558016367509,38.54978232972716],[-121.47546949827523,38.54978316421026],[-121.47535397757444,38.54978403693581],[-121.47522400115741,38.54978501786775],[-121.47522452110694,38.549659861203764],[-121.47526001650014,38.549659623062176],[-121.47539942129612,38.549658688435635],[-121.4753954191795,38.549420935991535],[-121.47541227369712,38.54925601207357],[-121.47541353132719,38.54901516005984],[-121.47528428867031,38.54901576870495],[-121.47528187412875,38.54875063255668],[-121.4751709734419,38.54875076297996],[-121.47517036033564,38.548166940610365],[-121.47533633206496,38.548165254489426],[-121.4753341566929,38.54793341390375],[-121.47533313141166,38.54782414206868],[-121.47533213146855,38.54771766583405],[-121.4751534709307,38.5477180655709],[-121.47515384307049,38.54757574072602],[-121.47526707052765,38.54757532268099],[-121.47526635989756,38.5474387172312],[-121.47526561799629,38.54729591166099],[-121.47526456195384,38.547092700371536],[-121.47539974923627,38.54709130880643],[-121.47539882970875,38.5469111431032],[-121.47539826390302,38.54680037245539],[-121.47539769944785,38.54668988649727],[-121.4753972740504,38.54660667765111],[-121.47539686359247,38.54652611841293],[-121.4753960095404,38.54635905205914],[-121.47581465179839,38.5463589248763],[-121.47581344270037,38.54612979767934],[-121.47532020482171,38.5461350262714],[-121.47532061491913,38.545942396366755],[-121.47532084380364,38.54583495903843],[-121.47532109348968,38.5457178263425],[-121.47532144731375,38.54555173122524],[-121.47518697142277,38.54554257729988],[-121.47518653019236,38.54543519188614],[-121.47518607383533,38.54532440371276],[-121.47518561978484,38.545214238070116],[-121.47518516830368,38.54510434721286],[-121.47534247893803,38.54510312183222],[-121.47534286959647,38.544992242906325],[-121.47534344351938,38.544829437964],[-121.47580656639975,38.544825532351254],[-121.47580572877419,38.544666566048505],[-121.47540470351244,38.54466891625747],[-121.47540552837079,38.544566215848135],[-121.47540635875072,38.544462919970314],[-121.47540718589694,38.5443600637159],[-121.4753069234301,38.54436100012121],[-121.47530940610912,38.544169347175725],[-121.47546325574787,38.54416988612089],[-121.47580311614729,38.5441710775626],[-121.47580159522714,38.54388258429034],[-121.47536825072204,38.54388666180663],[-121.47536378743635,38.5436723792477],[-121.47536091655024,38.5435345378784],[-121.47535810576102,38.54339960217669],[-121.47514750497376,38.54340178855998],[-121.47514525870247,38.543289351730735],[-121.47514304514333,38.543178551080075],[-121.4751872151775,38.5431781595297],[-121.47534560575248,38.54317675527892],[-121.47550513317465,38.54317534154998],[-121.47579785210083,38.54317274638012],[-121.47579076034881,38.54182745586003],[-121.47527444520976,38.54183643631624],[-121.47527723047973,38.54157319940011],[-121.47578935835028,38.54156151709676],[-121.47578672409523,38.5410619762617],[-121.47584732801266,38.54105691208587],[-121.47590788414288,38.54105101252969],[-121.47596829952745,38.54104428347845],[-121.4760285557919,38.541036727551955],[-121.47608863571539,38.54102834647421],[-121.47614851977649,38.54101914285988],[-121.47615949611415,38.54142221727365],[-121.47638452493409,38.54142203670151],[-121.47638133220639,38.54131389290254],[-121.47657633985163,38.541312701329964],[-121.47676846130986,38.54131152700831],[-121.4769564255606,38.54131037772004],[-121.47700368734556,38.541310088645986],[-121.47714439209945,38.54130922813678],[-121.477290389714,38.54130833461001],[-121.47733577135048,38.541308056726685],[-121.47752603557876,38.54130689257794],[-121.47752282042725,38.54115770111574],[-121.47751957273458,38.541007002304426],[-121.4779928120658,38.541000095907094],[-121.47799108042699,38.540908128065745],[-121.47846102205895,38.54090518684701],[-121.4784549982955,38.540622693153075],[-121.48010347586332,38.54033912631076],[-121.48010639782109,38.54053182430644],[-121.48016757734005,38.54053125233263],[-121.48016834097312,38.5405224756159],[-121.4801711881057,38.54051316772093],[-121.4801760490751,38.540504388690906],[-121.48018277739324,38.54049640723594],[-121.48019116827749,38.54048946387624],[-121.48020096668608,38.540483770077536],[-121.48021187541319,38.54047949927854],[-121.48022356201027,38.540476781516524],[-121.48064948185619,38.54040875462931],[-121.48065899135361,38.54040776308121],[-121.48067117609745,38.54040799254392],[-121.48068312625092,38.5404098795048],[-121.48069447630651,38.54041336826965],[-121.48070488292352,38.54041835189274],[-121.48071402946393,38.54042467940431],[-121.48072163859622,38.540432157668874],[-121.48072747796523,38.54044056041963],[-121.48073137164259,38.54044963101241],[-121.48089329336739,38.54039147399551],[-121.48129373505155,38.54031944306342],[-121.48126400539316,38.54022381014879],[-121.48123912014226,38.54014376104842],[-121.48455583031723,38.53957311642668],[-121.49282442515619,38.538150039232754],[-121.49158620346857,38.5421742132892],[-121.50081140317681,38.54400592506802],[-121.50079495520264,38.544059305193485],[-121.49959018274173,38.54782584662194],[-121.49974776772119,38.54788296731269],[-121.49980001442485,38.54782822316346],[-121.499958067664,38.547637454041094],[-121.49997689339784,38.54760463284977],[-121.50011454841214,38.54736463328012],[-121.50037562975879,38.5467774493434],[-121.50041605192811,38.5466849297329],[-121.50042788283146,38.546656549420284],[-121.5004784546074,38.54653523320969],[-121.50077376467473,38.54580533110215],[-121.50759794042195,38.54727172032452],[-121.50786873907923,38.54683495937037],[-121.50886096004027,38.54703342330017],[-121.50905727111059,38.547072688537426],[-121.51000876813335,38.547298570564905],[-121.51001617955335,38.547440329979956],[-121.51006701219151,38.547711355394796],[-121.51014407915733,38.54812225141351],[-121.51038065122394,38.548139913761204],[-121.51037184280922,38.54810501272512],[-121.51036951361161,38.54809503986317],[-121.51036309998221,38.54806757594405],[-121.51035900771949,38.54805005602492],[-121.51035689460414,38.54804002371701],[-121.51035109296627,38.54801248220688],[-121.51035108189033,38.548012424502694],[-121.51034739669932,38.54799493153066],[-121.51034551520662,38.54798491551776],[-121.51034031228149,38.54795722518992],[-121.51034030455432,38.54795718101331],[-121.51033701192279,38.54793965636885],[-121.51033535206167,38.54792960796043],[-121.51033076677457,38.54790185267838],[-121.51032785785831,38.54788424767577],[-121.51032641742673,38.54787415334919],[-121.51031993554511,38.5478287207714],[-121.5103197419757,38.547827338879046],[-121.51031702298951,38.5478062968613],[-121.51031515568499,38.54778986743053],[-121.51031208867118,38.54776286991951],[-121.5103108921431,38.547752339690305],[-121.51030938669957,38.547735837917244],[-121.51030692739968,38.54770888351794],[-121.51030596177733,38.54769830651832],[-121.51030482244256,38.54768178197027],[-121.51030223291917,38.547644214466956],[-121.5102996631751,38.547592563342754],[-121.51029959940165,38.54759032164406],[-121.51029880195743,38.54756225716625],[-121.51029880021945,38.54756217607826],[-121.51029806738718,38.54753639834746],[-121.51029805297813,38.547534151452275],[-121.51029788087651,38.547506067999244],[-121.51029772097631,38.547480218819466],[-121.51029775702301,38.54747797484048],[-121.51029821351761,38.54744956522052],[-121.51029862380967,38.54742404367707],[-121.51029870768393,38.54742185125154],[-121.5103007734788,38.547367889126136],[-121.51200760544641,38.54773788472252],[-121.51283837602632,38.54945644271315],[-121.51315690199753,38.55046018544272],[-121.5135130420587,38.55182023373747],[-121.51383905839,38.55272740653718],[-121.51413662355682,38.553705879232155],[-121.51452478813223,38.55473275794146],[-121.51467236713957,38.555207047962035],[-121.51494058299889,38.55606902582039],[-121.51517859994298,38.55680903581273],[-121.51550738043728,38.55757309720317],[-121.51607856522818,38.55843359064999],[-121.51649828435654,38.55919835725451],[-121.5169785958155,38.559796231162075],[-121.51755110759417,38.56046588154828],[-121.51812475194721,38.56096907444562],[-121.51900009314477,38.56185448920481],[-121.51981218340354,38.56278736067689],[-121.52041589828661,38.563505178946855],[-121.52078863099631,38.564507615384414],[-121.5210257865327,38.5651284920878],[-121.52105310393762,38.56574817048564],[-121.52089728451185,38.566296024791704],[-121.52065085202531,38.5667954508424],[-121.52034511620023,38.567270934410516],[-121.5196726075863,38.56793540720488],[-121.51918307967262,38.56843417794506],[-121.51847939338585,38.56905079035827],[-121.51762449121361,38.569786245218346],[-121.5166166157231,38.57064014448459],[-121.5152744962081,38.57177854318049],[-121.51292294540036,38.57372344892696],[-121.5126336612949,38.574001957613376],[-121.51196017792974,38.57328232643128],[-121.51181033439248,38.57312221359593],[-121.51177232306945,38.57308159677709],[-121.51173948287175,38.57304650532677],[-121.51170771474192,38.57301255982356],[-121.51160606832362,38.57290394609448],[-121.51030908026674,38.5725194484321],[-121.51004529672353,38.57244608405965],[-121.50969310634618,38.57235223668023],[-121.50814200247845,38.57192791935941],[-121.50810455181413,38.57191822785083],[-121.50792938376446,38.57188223764209],[-121.50752054450723,38.57177328524066],[-121.50775592008809,38.571231347159184]]]},"properties":{"ZIP5":"95818","PO_NAME":"SACRAMENTO","Shape_STAr":107496347.035,"Shape_STLe":61314.0293206}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.57334789580818,38.6961411262691],[-121.57428403127072,38.6910035570319],[-121.56986390927638,38.690987244732725],[-121.56981220257074,38.688302598450335],[-121.57325271299871,38.68828397826259],[-121.5732360474761,38.68724205966436],[-121.57321129738959,38.6856945008342],[-121.57654733576976,38.68570216956139],[-121.57653905471741,38.68375617614037],[-121.57569826421135,38.683753102248644],[-121.5756970121783,38.68334121033745],[-121.57446629869003,38.68333669987089],[-121.57445367211987,38.685450237249036],[-121.57275379809025,38.68544631105808],[-121.57277540270177,38.68184426945444],[-121.5695948200393,38.67994812537803],[-121.56756946306581,38.679634412401455],[-121.56757822380033,38.678191211031255],[-121.57449708348271,38.678183165770136],[-121.57453340333538,38.67210207327028],[-121.57454983032427,38.67183352434407],[-121.57648832797992,38.671832892087146],[-121.57648771676485,38.67168923582781],[-121.57648662013055,38.67161795795397],[-121.57648393748606,38.671546706717486],[-121.57647966755839,38.67147550373497],[-121.57647381367651,38.671404369738845],[-121.57647301135442,38.67139589844678],[-121.57646393598178,38.67128906934985],[-121.57645724004463,38.671182132730564],[-121.5764529256376,38.671075121029034],[-121.57645124489743,38.67099404835001],[-121.57643648783986,38.66979518619561],[-121.57637058837149,38.66444086375341],[-121.57639945573327,38.6641498530412],[-121.5764137860126,38.66400539368692],[-121.57645011048263,38.66386067957063],[-121.57651858556655,38.663469770641285],[-121.57648665069316,38.663467387322626],[-121.57256794165423,38.663468282798036],[-121.57261035212966,38.65639791327037],[-121.57261514427427,38.65632569846496],[-121.57658094991814,38.656329868541185],[-121.57659114418918,38.65004025558855],[-121.57669242184897,38.65001244932974],[-121.57670221889721,38.650009759922355],[-121.5767933066246,38.64998346678704],[-121.57679124044604,38.64983712403239],[-121.5767736181561,38.648588534741464],[-121.57707782351055,38.648424599528624],[-121.57757374207047,38.648241215007346],[-121.57932522858496,38.647229206511604],[-121.58132401940834,38.64583361146088],[-121.58390123358535,38.644304163122065],[-121.58565148120401,38.643473260111925],[-121.58595393890697,38.64335351746028],[-121.58706749994691,38.642912654961755],[-121.5880215244119,38.642621907477064],[-121.58900425834727,38.642512458102786],[-121.58934045321992,38.642513650055925],[-121.58978326948552,38.6425152185385],[-121.5909061074977,38.642700089504636],[-121.59123179432846,38.64279351521507],[-121.59194427795495,38.64299789329485],[-121.59277793223862,38.64337769971513],[-121.59329575444052,38.64361361091815],[-121.59431664485099,38.64418284824803],[-121.59492439846618,38.64464813344143],[-121.59612772756667,38.64556935453441],[-121.5973901836059,38.64677302610556],[-121.59955037458043,38.64992560123352],[-121.6013541338655,38.65235270283947],[-121.60320317092577,38.65453139620812],[-121.60440599109654,38.65611921484308],[-121.60572467572793,38.657662463274995],[-121.60710207714767,38.65904729223188],[-121.60810299280965,38.659990200428425],[-121.60845213498717,38.660319100232805],[-121.60997310333873,38.661727059321926],[-121.61109421958714,38.662613280765264],[-121.61227302665867,38.66352236589303],[-121.6137386829431,38.664499998685116],[-121.61511930551444,38.66534173689973],[-121.61704836700845,38.666456789426675],[-121.62058559747813,38.66879901342804],[-121.62383421375041,38.67111753767683],[-121.62567457557785,38.67250367144768],[-121.62716847659311,38.6738436842569],[-121.6284019511715,38.67509187149971],[-121.63000884905561,38.676952559814026],[-121.63066795109845,38.67785979415792],[-121.63138205907892,38.67931017752106],[-121.63195444057044,38.680398003184074],[-121.63262434501605,38.6819388791207],[-121.63327851881485,38.683818793085216],[-121.63364568322149,38.68531339826397],[-121.63397291420962,38.68640043852183],[-121.63418608729036,38.687450373525486],[-121.63422576975134,38.68764581806033],[-121.63450899587711,38.688778024256415],[-121.63453424620417,38.68966055606913],[-121.63449970852199,38.69058787702986],[-121.63436542993614,38.691492587446284],[-121.63398566244412,38.69244180158964],[-121.63363391295083,38.69339113092599],[-121.63319654802848,38.69429452518442],[-121.63281768251565,38.69506286563842],[-121.63232119842479,38.69587578348459],[-121.63165196211722,38.696891703973954],[-121.6308400989967,38.69770397004841],[-121.63023621440853,38.69823644441236],[-121.62910657608809,38.69905410894708],[-121.62759405464543,38.699978872363204],[-121.62578687639629,38.70113469969634],[-121.62432072607507,38.702072365496555],[-121.62308206246959,38.7029806727139],[-121.62121794482252,38.70434755228494],[-121.62072258738016,38.7047199776297],[-121.61855096053607,38.706352604047616],[-121.61550628272755,38.708831714681786],[-121.61315662224581,38.710747051815716],[-121.61134111079832,38.712366270888005],[-121.61100834864821,38.71266304324212],[-121.60929479555764,38.714535484325616],[-121.60833566197353,38.715595602277176],[-121.60740591489278,38.71672377191942],[-121.60624081430035,38.71857501076106],[-121.60577139999245,38.719795345495356],[-121.60550538697063,38.72099371470542],[-121.60544090649572,38.72219276977704],[-121.60540246215203,38.72375368552893],[-121.60536388391954,38.72565440746731],[-121.60514928157603,38.72769012157271],[-121.60449482471368,38.73128535614484],[-121.60449439579627,38.731287411403585],[-121.60410765873343,38.73313957983456],[-121.60381289257133,38.73445078665875],[-121.60331747851066,38.73593142005584],[-121.602253142329,38.73593196999188],[-121.60174345510084,38.73593223062824],[-121.60152457110911,38.735932341268665],[-121.59440488459569,38.7359357252622],[-121.59394477141699,38.73593592853149],[-121.59149096975197,38.73593698349671],[-121.5897901353266,38.73593768446198],[-121.5860892228389,38.735939123740835],[-121.58565118446653,38.73593928638304],[-121.57693927992088,38.73594217463158],[-121.5766588147088,38.73594225614899],[-121.57333010669484,38.73594317924781],[-121.56838012396403,38.7359443752858],[-121.5582869869788,38.735946158955365],[-121.54080906780382,38.73594717149633],[-121.54087440649761,38.731053092764334],[-121.54087711580515,38.72878386780547],[-121.57033668956603,38.72872668638211],[-121.57040430545473,38.714299816998505],[-121.5766690934356,38.714303152465426],[-121.57665465456051,38.71091286288875],[-121.57181993033389,38.70867989553049],[-121.57487521379265,38.70480369622477],[-121.57487498870344,38.704802690909595],[-121.57486289326856,38.70474616179719],[-121.57486268084229,38.70474515382573],[-121.57485184988197,38.70468846898908],[-121.5748516593161,38.704687458395085],[-121.57484209043656,38.70463063314079],[-121.5748419228807,38.70462961992846],[-121.57483362056472,38.70457267319201],[-121.57483347601872,38.70457165736137],[-121.57482644475436,38.70451460717723],[-121.57482632206325,38.70451358962491],[-121.57482056176131,38.704456450407214],[-121.5748204620747,38.70445543113745],[-121.57481597491316,38.70439822271389],[-121.57481589823088,38.70439720172669],[-121.57481268870852,38.704339940329966],[-121.57481263157085,38.70433891941442],[-121.57460340872089,38.6996769552397],[-121.57408113322268,38.697561617328816],[-121.57384777527434,38.696921758074886],[-121.57383732576605,38.69689310565629],[-121.57365971400698,38.69660709459522],[-121.57348088425796,38.69631911753842],[-121.57344961748842,38.696268768092054],[-121.57344909602087,38.69626792744676],[-121.57344703992663,38.69626535145079],[-121.57334798025359,38.69614123018198],[-121.57334789580818,38.6961411262691]],[[-121.5765642677071,38.66320898039883],[-121.57657009265672,38.663028114722756],[-121.5765228328872,38.66344552519766],[-121.5765642677071,38.66320898039883]]]},"properties":{"ZIP5":"95837","PO_NAME":"SACRAMENTO","Shape_STAr":428592481.099,"Shape_STLe":119306.814917}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.26247970885802,38.68305641125861],[-121.26245928030268,38.684097591336446],[-121.26244631971564,38.68577829468329],[-121.26244559997491,38.68587189001401],[-121.26244545046724,38.68588865947834],[-121.2624430108769,38.68601070087094],[-121.2624382223052,38.686132697590196],[-121.26243108269321,38.686254625298346],[-121.26242159808348,38.686376454303364],[-121.26240976759458,38.686498157571954],[-121.26239736422181,38.68660558319749],[-121.26238313235825,38.686712868359045],[-121.26236707678906,38.686819994167344],[-121.26235217975416,38.68692046602514],[-121.26233870467387,38.68702625237842],[-121.26233867469129,38.68702648372119],[-121.26232745181505,38.687132334852436],[-121.26232741740462,38.68713266076246],[-121.26231843982939,38.687238689241866],[-121.26231841506174,38.687238971969606],[-121.2623116837678,38.68734508410943],[-121.26231166571901,38.687345383997176],[-121.2623071835674,38.68745163747404],[-121.26230717426397,38.6874518698493],[-121.26230494101458,38.68755839979818],[-121.26230475187131,38.68763870108538],[-121.26231972819092,38.690301545141374],[-121.26231986099758,38.69046629782585],[-121.26231702727104,38.69117273168432],[-121.2623163489491,38.691341326981],[-121.26231342729206,38.69206767482864],[-121.2623172414533,38.692814483688174],[-121.26231911640552,38.69318172568905],[-121.26217894617459,38.693177896921014],[-121.26189412626387,38.693177754570016],[-121.26164333153775,38.693177628179306],[-121.2613998697186,38.693177504710754],[-121.26116702389317,38.69317738530927],[-121.2611326365994,38.693177368904976],[-121.26096515925431,38.6931772827177],[-121.26076165538092,38.69317717833345],[-121.2607570813667,38.69317717620065],[-121.26054833904985,38.69317706867678],[-121.26039359283236,38.69317698897491],[-121.26033014982478,38.6931769563733],[-121.26032599654394,38.69317695420462],[-121.26009883633738,38.693176835592354],[-121.25995272659856,38.69317675995908],[-121.25988050571982,38.69317672244156],[-121.25967858016291,38.69317661722143],[-121.259658531074,38.69317660633479],[-121.25946406946296,38.693176505151975],[-121.25938056242428,38.69317646101172],[-121.25925645139526,38.69317639617598],[-121.25914672339036,38.693176338417004],[-121.25904651126237,38.69317628550405],[-121.2589148167441,38.693176215088045],[-121.25864414192138,38.69317607137115],[-121.25846722686025,38.693175977993825],[-121.25844589718942,38.69317596591558],[-121.25844990898916,38.69335052731128],[-121.25845152833386,38.69342100133756],[-121.25845382771686,38.693521001588266],[-121.25845699694104,38.6936587969154],[-121.25845771090742,38.69368992246965],[-121.25846059449236,38.693815296042125],[-121.25842152220802,38.69386365830079],[-121.25827898674233,38.693862753869105],[-121.25808190040347,38.693861505653636],[-121.2579840033234,38.69385210619954],[-121.25798760934742,38.69359889645507],[-121.25757878606369,38.693601351779584],[-121.25757833038827,38.69366171605306],[-121.25758523080961,38.69400272445199],[-121.25740935676916,38.69400391182566],[-121.25741273785655,38.69439924951803],[-121.25742664980919,38.69439925662538],[-121.25742595134334,38.694648824582],[-121.25725970742596,38.69464818690488],[-121.25723322975247,38.69489362483809],[-121.25760953608746,38.69489344181064],[-121.25788425304755,38.69489330836168],[-121.25798235922991,38.694894580329844],[-121.25798175694695,38.69520406291304],[-121.25798097322186,38.695609187489765],[-121.25788286304798,38.6956103002063],[-121.25752505712401,38.69560944403299],[-121.25741584135258,38.69560918163183],[-121.25729730611522,38.69560889907883],[-121.25714861001381,38.69560854301654],[-121.25703222906738,38.69560826318221],[-121.25688134535348,38.69560790267091],[-121.25676762447166,38.69560762970774],[-121.2566188892923,38.6956072727157],[-121.25652299685815,38.69560704263134],[-121.2563530316944,38.69560663476714],[-121.25627294219152,38.695606442754595],[-121.25609152401394,38.69560600699743],[-121.25602450726892,38.69560584462234],[-121.25582785862913,38.695605372899166],[-121.25579351912138,38.69560529036033],[-121.25556199300823,38.695604732184584],[-121.25533752860125,38.69560419186762],[-121.25529612508377,38.6956040917465],[-121.25511525527057,38.69560365437994],[-121.25503461628193,38.695603460685135],[-121.2548798953842,38.695603087332806],[-121.25477329486368,38.69560282933736],[-121.25467505618529,38.69560259345742],[-121.25450942946941,38.69560219275768],[-121.25442008490265,38.69560197780383],[-121.25427405809764,38.69560162440699],[-121.2537606220776,38.69560038000619],[-121.25372961053768,38.69560030475898],[-121.25366638042888,38.69560015097556],[-121.25366586243956,38.695233386704246],[-121.25366558446436,38.69503711649037],[-121.25366534476017,38.694868787312],[-121.25366512784568,38.694714518765394],[-121.2536648918972,38.69454879323529],[-121.25366465808432,38.69438374159731],[-121.2536644550701,38.694239665119866],[-121.25366424227414,38.69409015970054],[-121.25366403452585,38.69394313451508],[-121.25366382938594,38.693797615665176],[-121.25366361303595,38.693644171445094],[-121.25366331671843,38.69343637937058],[-121.25366294211939,38.693171555642486],[-121.25296976121236,38.69316472261613],[-121.2525954533085,38.69316395745479],[-121.25240626946162,38.69316766227242],[-121.25216400576439,38.693167167674126],[-121.25193737670992,38.69316670316271],[-121.25192353533375,38.693166675129596],[-121.25170613921799,38.69316623009092],[-121.2517029504545,38.69316622302665],[-121.25147189688037,38.69316575067462],[-121.25143320977952,38.69316567120476],[-121.25123460028907,38.69316526277473],[-121.25114629643588,38.693165082629875],[-121.25099581275722,38.69316477286687],[-121.25093624347505,38.693164650236426],[-121.25076001514361,38.693164287371836],[-121.25071216980575,38.69316418992784],[-121.25052121612362,38.69316379641239],[-121.25050295369998,38.69316375855344],[-121.25028695426109,38.69316331447613],[-121.250279357084,38.69316329869014],[-121.25005086926204,38.69316282838367],[-121.24978180570561,38.693162271693915],[-121.24959263519852,38.69316720174973],[-121.24932588338338,38.69316773284661],[-121.24911907469789,38.693168145198946],[-121.24910164148605,38.693168179156245],[-121.24885637969548,38.69316866815219],[-121.24881714030067,38.69316874549465],[-121.24860410900406,38.69316916796929],[-121.2484940779766,38.69316938555649],[-121.24837286046102,38.693169627827395],[-121.24822642946604,38.69316991732192],[-121.24814161423294,38.69317008543756],[-121.24790032190873,38.69317056301381],[-121.24788934122303,38.69317058458559],[-121.24777473143725,38.69317081233257],[-121.24761013149885,38.69317113633752],[-121.24756408777995,38.69317122856553],[-121.24733236906309,38.69317168600052],[-121.24725794939525,38.69317183175655],[-121.24704705053125,38.69317224719547],[-121.24702847923119,38.693172284261905],[-121.246794240648,38.693172745880474],[-121.2466747279514,38.69317298123377],[-121.24657603969021,38.69317317699566],[-121.24636098513437,38.69317359841979],[-121.2463108006714,38.69317369747262],[-121.24616024153434,38.69317399446333],[-121.2460144255528,38.693174278856596],[-121.24593137949091,38.693174442444835],[-121.24570974705982,38.69317487844399],[-121.2456556586823,38.693174982449364],[-121.24546287125757,38.69317536057453],[-121.2453208258356,38.693175638900904],[-121.24521009240685,38.69317585420612],[-121.2450013673417,38.69317626295714],[-121.24495711005892,38.69317634956526],[-121.24478283760533,38.693176689458404],[-121.24446689792457,38.69317730613097],[-121.24432679433478,38.693173333687625],[-121.2443237139352,38.69400926061895],[-121.2443205692355,38.69494116371265],[-121.2443259252745,38.69603312461984],[-121.24432995648188,38.69685515709109],[-121.24433000547467,38.696864949397344],[-121.24433450830719,38.697782956101996],[-121.24433626247391,38.69814050341667],[-121.24433982132643,38.69886644350304],[-121.24434023318524,38.698976276970996],[-121.244344030499,38.700447263520466],[-121.24434407240264,38.700464333325314],[-121.24434072184391,38.70204088678643],[-121.24434004486345,38.7023597250182],[-121.2443399459104,38.702375117311085],[-121.24433862244062,38.702427788462344],[-121.24433577143434,38.702480420831044],[-121.24433249688731,38.70252811165455],[-121.24432820009595,38.702600952810165],[-121.24432531349676,38.70267383919059],[-121.24432383271557,38.70274675004645],[-121.244323628863,38.70277885262321],[-121.24432079452032,38.70412989633771],[-121.24431900931378,38.70498131693876],[-121.24431800132128,38.70546058507511],[-121.2443157742304,38.70652199835536],[-121.24431404602471,38.70734680185261],[-121.24431470911861,38.70740880313548],[-121.24431696029913,38.70747078143192],[-121.24432079639865,38.7075327105948],[-121.24432770088805,38.707608867987155],[-121.24433700090444,38.7076848680121],[-121.24434869808319,38.70776066563424],[-121.24436278031081,38.707836211223835],[-121.24437923998664,38.70791146328868],[-121.24439806727723,38.707986374015455],[-121.244419251209,38.70806089468233],[-121.24447198540453,38.708236187553155],[-121.24449115845479,38.708303560806655],[-121.24450824791836,38.70837127814502],[-121.24452324156314,38.70843929984961],[-121.24453613293433,38.70850758353651],[-121.24454690974233,38.708576094891825],[-121.24455557014996,38.708644789759695],[-121.24456198884982,38.70871214839184],[-121.2445663713275,38.70877960997783],[-121.244568715727,38.70884713216321],[-121.24456901894699,38.708914681594244],[-121.24456891178168,38.708923373767405],[-121.24454136506888,38.71082366903649],[-121.244538330578,38.71098840299086],[-121.24451427124694,38.7120650666422],[-121.24451100266506,38.712180220243646],[-121.24450634763508,38.71229534679538],[-121.24450030056387,38.71241043094538],[-121.24449251791025,38.712530431760804],[-121.24448479002847,38.71265469603243],[-121.24447928402877,38.712779033334705],[-121.24447600480858,38.71290341667248],[-121.24447388205571,38.713025659775745],[-121.24444715271386,38.714562365766405],[-121.24444532857153,38.714727110271205],[-121.24444462587456,38.71487578896692],[-121.24444199476154,38.71543157303904],[-121.24444178498226,38.7155963244475],[-121.24444412345571,38.71666293984751],[-121.244368390033,38.71669343326947],[-121.2442938714557,38.71672571295075],[-121.24422063931625,38.71675975053103],[-121.24414875951588,38.71679551220772],[-121.24407829907739,38.71683296688829],[-121.2440093193034,38.71687208074035],[-121.243941886154,38.71691281455648],[-121.24387606208262,38.716955134511984],[-121.2438119107697,38.7169989995829],[-121.24374948668772,38.71704436958625],[-121.24368884660946,38.71709120435415],[-121.24363005312446,38.71713945745025],[-121.2435731515079,38.717189088631635],[-121.24351820094867,38.71724004693536],[-121.24346524903234,38.71729229123273],[-121.243414345769,38.71734576869898],[-121.24336553766236,38.717400431892],[-121.24336381340282,38.71740242696838],[-121.24335889194161,38.717408136356745],[-121.24334882554426,38.717419807731424],[-121.24305174807202,38.71776432653825],[-121.2430174139649,38.71780588212213],[-121.24298519401067,38.71784846321374],[-121.24295513490561,38.717892004353374],[-121.24292729027435,38.71793643742351],[-121.242901694175,38.71798169598087],[-121.24287839339125,38.71802770645765],[-121.2428087737974,38.71821784916484],[-121.24270347141349,38.71821030762496],[-121.24094107369314,38.718089173811165],[-121.23977401952857,38.71800518526797],[-121.23973919139453,38.71800267860565],[-121.23321796579883,38.71753314921447],[-121.23302918054496,38.71751955054322],[-121.22736203223555,38.717111202669514],[-121.22714318127156,38.71709542744726],[-121.22614904767715,38.71702376454358],[-121.22596921493447,38.71701079968112],[-121.22571686710782,38.71700971460518],[-121.21642275868751,38.7163294211046],[-121.20717277378998,38.71566070686453],[-121.2024429344831,38.71531541338977],[-121.19787891876017,38.71503548522443],[-121.19357218314704,38.71471374224033],[-121.18986426165966,38.7144441975779],[-121.18860574012658,38.71431446018516],[-121.18859466159411,38.714019568643415],[-121.1885948791232,38.7140103691352],[-121.18859605269763,38.7140020348855],[-121.18859867971736,38.71399218825948],[-121.18860186068123,38.71398418427297],[-121.18860592310683,38.71397642609555],[-121.18861191194291,38.71396752732362],[-121.18861905485431,38.71395916906438],[-121.18862583264273,38.71395268034895],[-121.18862571019018,38.71395595881769],[-121.18907288477348,38.71396791949578],[-121.18952083313529,38.71397990007211],[-121.19220837591887,38.714051739846774],[-121.19359845344061,38.71408887319063],[-121.19365280716369,38.714089922243126],[-121.19372289137854,38.71409127521515],[-121.19374849606898,38.713590341910724],[-121.19376896042903,38.71318994449352],[-121.19372467154645,38.71268398652062],[-121.19392016837494,38.70885907219829],[-121.19392985577257,38.7086457527945],[-121.1939875711437,38.70719383558074],[-121.19399070941498,38.707114864400694],[-121.19399338751283,38.707059989456454],[-121.19399705629787,38.70700515112702],[-121.1940379966818,38.70646663354439],[-121.19404366470745,38.70638437989424],[-121.19404816390042,38.70630208298544],[-121.19412190796132,38.70457526676474],[-121.19412971761528,38.70441062772895],[-121.1942482636959,38.702138102250544],[-121.1942544206339,38.70200242598911],[-121.19425872820699,38.70186670444451],[-121.19426118968084,38.70173095475696],[-121.19426145694787,38.701704386867725],[-121.1942618032088,38.70159402014048],[-121.19426093078579,38.701483654855366],[-121.19426041898011,38.70141315480318],[-121.19426078093738,38.701342654515145],[-121.19426346029628,38.701220974105],[-121.19426673086787,38.701138896562725],[-121.19433613187705,38.699665361334],[-121.19242169774441,38.69966233996732],[-121.19227779954525,38.69956506251761],[-121.19227938980487,38.69952388470868],[-121.19232898622742,38.69823902679095],[-121.19234403138066,38.69784927184273],[-121.19237897141922,38.69694405872147],[-121.19240773535427,38.69619888236449],[-121.19241002109199,38.69613964876564],[-121.19241299530088,38.6960625845645],[-121.19241595314585,38.69598594908415],[-121.19244748072458,38.69516912511105],[-121.19246135812962,38.69480954979178],[-121.1924838893631,38.69422580979904],[-121.19248955057449,38.69407913894862],[-121.19249705031709,38.69388478019521],[-121.19249897692019,38.69383490278424],[-121.19250259885337,38.69374104643851],[-121.19250832024915,38.69359281201594],[-121.19251732933336,38.69335941093723],[-121.19252635062296,38.69312563786271],[-121.19252824937122,38.69307648999609],[-121.1925357720525,38.69288150885931],[-121.19254424981,38.69266190247396],[-121.19254646739358,38.69260440174726],[-121.19255317033533,38.6924307152132],[-121.19257289593415,38.69191961344055],[-121.19257917172374,38.691757027694024],[-121.19258004913928,38.69173428571745],[-121.1925828734484,38.691617988336965],[-121.1925886975733,38.691378224418855],[-121.19259489666726,38.69112282143395],[-121.19260029814414,38.69090045842999],[-121.19260496436839,38.69070827183558],[-121.1926059649459,38.69066705836725],[-121.19260752901924,38.69060270433261],[-121.19261116375527,38.690453035512895],[-121.19261642849355,38.69023613469371],[-121.19262247905881,38.68998702264533],[-121.19262356321727,38.689942388985514],[-121.19263054318827,38.68965488733389],[-121.1926425895073,38.689392177182256],[-121.19264424780701,38.68935601160968],[-121.19265378558985,38.68914798300599],[-121.19266662624013,38.68886791325124],[-121.19267940676949,38.68858918363383],[-121.1926920474336,38.68831345488483],[-121.19269810626587,38.68818131670204],[-121.19270338474416,38.688066202170255],[-121.19271956756734,38.687713221233956],[-121.19272054920974,38.687691822340426],[-121.19273369329701,38.687405115834636],[-121.19274246959696,38.68721372179556],[-121.19274786142921,38.687096098098415],[-121.19276194162146,38.686788946439016],[-121.19276425945078,38.68673839064026],[-121.19276476266984,38.68669398896755],[-121.19322972924711,38.68654437337269],[-121.19336516284561,38.68644142761598],[-121.19405831667507,38.68621837866276],[-121.19501132841526,38.68591170625209],[-121.1950269219934,38.685907708148086],[-121.19504309255163,38.685905543804864],[-121.19505949359919,38.68590525856508],[-121.19507576988828,38.68590685897152],[-121.1950915723862,38.68591031016829],[-121.19510656053295,38.68591553952],[-121.1951620766416,38.68593887029188],[-121.19518064456128,38.685920156557856],[-121.19520119528163,38.68590276200893],[-121.1952235801801,38.68588681894785],[-121.19524763010911,38.68587244512016],[-121.19527317148727,38.68585974382619],[-121.19530001124556,38.68584881372636],[-121.19531499706342,38.6858436681054],[-121.19641068113468,38.68549106465883],[-121.19641153716042,38.68540174043771],[-121.19641709041838,38.68524276935945],[-121.19642235397158,38.68509205315129],[-121.19643259616444,38.68479885491506],[-121.1964429048245,38.68450373098004],[-121.19651881201334,38.68450535435839],[-121.19669366193858,38.68450909390906],[-121.19683998689746,38.68451222568324],[-121.19693475369117,38.68451425241018],[-121.19715574370609,38.684518977518145],[-121.19719362607869,38.6845197866851],[-121.19747576959438,38.68452582110641],[-121.19748487497692,38.68426508478029],[-121.19748755376312,38.684196468973525],[-121.19780718590884,38.68427866499883],[-121.1978118990528,38.68420543706794],[-121.19806062041773,38.684170808498955],[-121.19806632004278,38.684170016378076],[-121.19809166372438,38.68345765683308],[-121.19807482503022,38.683457254775945],[-121.19751411432871,38.68344394617183],[-121.19751477865519,38.683424972110146],[-121.19752288714992,38.68319270766965],[-121.19752342597013,38.683177323783305],[-121.19753089077597,38.68296352362722],[-121.19753296297927,38.682904157808636],[-121.19753873697442,38.68273871873763],[-121.19754398203386,38.68258849875311],[-121.19754756108149,38.68248607515463],[-121.19755557081783,38.68225664069162],[-121.1975583229445,38.682177828836736],[-121.19757221756855,38.68177982538073],[-121.19757394391661,38.681730341095786],[-121.19757682199865,38.68164799672441],[-121.19837874499487,38.681663451568646],[-121.19986923275597,38.68169216591623],[-121.19987182322367,38.68160981411564],[-121.1998902256649,38.681024517193094],[-121.1998977151927,38.68078627257882],[-121.19990651103178,38.68050652285126],[-121.19992621795059,38.679879733383785],[-121.19992648291573,38.67987128733976],[-121.19992688620991,38.679858507051236],[-121.19992950934189,38.679775077073955],[-121.1999357795099,38.67957568766718],[-121.19994630322157,38.679240920202965],[-121.19995270806244,38.67903720643084],[-121.19997961937688,38.67818127043732],[-121.19998307071057,38.67807146649701],[-121.19975122683746,38.67806818615531],[-121.19964739037917,38.67806665402057],[-121.19964840264642,38.677956814328326],[-121.19965846115548,38.67742898851344],[-121.19985458892812,38.677431109923496],[-121.20000735903233,38.67743276064055],[-121.20000937205224,38.67735318866236],[-121.20003655446888,38.676277005231476],[-121.200036915816,38.67626273724153],[-121.20005986855593,38.67535405680695],[-121.19999698415207,38.675353048980725],[-121.19962184170268,38.67514549970595],[-121.1994644282475,38.67505840879059],[-121.19903544326498,38.67554721789918],[-121.1989529869042,38.675639198205644],[-121.1988682119923,38.6757298732233],[-121.19878115338548,38.675819208953186],[-121.19869184366257,38.6759071695789],[-121.1986003200097,38.675993718414844],[-121.19850661496642,38.67607882324779],[-121.19841077030678,38.676162448324774],[-121.19831282198857,38.67624456415904],[-121.19821280719034,38.6763251349658],[-121.19811076992565,38.67640413041307],[-121.19800674505575,38.676481516501966],[-121.19790077653447,38.67655726830567],[-121.19779290728891,38.67663135007931],[-121.19768317554862,38.676703735054716],[-121.19757163336436,38.676774393856725],[-121.19745831665836,38.67684330060225],[-121.19734327406562,38.676910423189895],[-121.19722654834378,38.67697574118958],[-121.1971081904172,38.67703922341688],[-121.19698824190576,38.67710084853306],[-121.19686675598268,38.67716058987423],[-121.19674377427903,38.67721842520097],[-121.19661935224728,38.67727432966722],[-121.1964935326384,38.677328283744565],[-121.1963663685871,38.67738026437288],[-121.1962379120493,38.677430251186905],[-121.19579621841572,38.67759785548938],[-121.19539150659782,38.67774923616672],[-121.19518299530212,38.67783054054171],[-121.1930537192576,38.67781573909307],[-121.193066311473,38.67789818657981],[-121.1894691480488,38.67784054816481],[-121.18847190461983,38.678321468628724],[-121.18851391234577,38.67700400736845],[-121.18808460031552,38.67649357889046],[-121.18971770468951,38.67574557212986],[-121.19050104879025,38.67522692106757],[-121.19080171436283,38.6747658434507],[-121.19088858919709,38.673961982971996],[-121.19011867133224,38.6719332516474],[-121.18937823090809,38.67005098539475],[-121.18922301893382,38.667295209812835],[-121.18926602623476,38.66488210784311],[-121.18948641690497,38.663274715366505],[-121.1903482526786,38.65994098082266],[-121.19149869756104,38.65719432106853],[-121.19225357062568,38.65505433820666],[-121.19257674587911,38.65472752436858],[-121.19412129157618,38.65476017252593],[-121.19565072002966,38.65479248255397],[-121.20366138574316,38.65496137607601],[-121.20015382667289,38.656295955681585],[-121.20377208128328,38.65622741571653],[-121.20387769601389,38.65622541149207],[-121.20394810503484,38.656224077986316],[-121.20384893204208,38.65717589705386],[-121.20378039278991,38.6578336489684],[-121.20376178263011,38.65801226350835],[-121.20371772040933,38.65821500715699],[-121.20368723634307,38.65829471515927],[-121.20330523622354,38.65917896753809],[-121.2034467669775,38.6591765898258],[-121.2042800863687,38.65916258578276],[-121.20493931023462,38.658858776310076],[-121.20494065744964,38.65886902084305],[-121.20494268331542,38.65887919885916],[-121.20494538820415,38.65888927702716],[-121.20494625788042,38.658891758706375],[-121.2049469839209,38.658893829484164],[-121.20495003177955,38.6589025180916],[-121.20495584480669,38.65891547077709],[-121.20496095078089,38.65892496000081],[-121.20496668428622,38.65893422739939],[-121.20497362728894,38.6589440454449],[-121.20501124502941,38.65899300332202],[-121.20501553143642,38.65899840397653],[-121.20505015371573,38.65904201328491],[-121.20505613614579,38.659050083268816],[-121.20506207783357,38.65905984849429],[-121.20506253258017,38.65906079847458],[-121.20506319275364,38.65906218230287],[-121.20506691237658,38.659069981807214],[-121.20507060157576,38.6590804054671],[-121.20507083861537,38.659081404405335],[-121.20507118204436,38.65908285723338],[-121.20507311870085,38.659091043613806],[-121.20507444399567,38.65910181322783],[-121.2050744556275,38.65910283044018],[-121.20507447143567,38.659104297237626],[-121.20507456574613,38.659112631344684],[-121.20507379724272,38.65912126674589],[-121.20507330651621,38.65912385080693],[-121.20507283800774,38.65912629718041],[-121.20507176132128,38.659131968260574],[-121.2050692796006,38.65914040271915],[-121.20506758020808,38.65914462716401],[-121.20506655796649,38.65914716884014],[-121.20506513033116,38.65915072216563],[-121.2050598506105,38.65916071763739],[-121.20505724450358,38.65916464666949],[-121.20505567500022,38.659167012517266],[-121.20505348263339,38.65917031464775],[-121.2050460697132,38.659179441420484],[-121.20504229504894,38.65918337234723],[-121.20504084194155,38.65918488312431],[-121.20503942833939,38.65918635453203],[-121.2050302860878,38.65919445861609],[-121.20502223862111,38.659201345865746],[-121.20501224343568,38.659211027905904],[-121.20500625815991,38.65921773290009],[-121.20500484910492,38.659219311547446],[-121.2050031352049,38.65922123135226],[-121.20499495468376,38.65923190783523],[-121.20498774726315,38.65924300541323],[-121.20498658348735,38.6592451533191],[-121.2049856132225,38.65924694939374],[-121.20498154224917,38.65925447203448],[-121.20497637361416,38.65926624937273],[-121.20497366904291,38.65927416247294],[-121.20497303830348,38.65927601042683],[-121.20497226269232,38.65927827901495],[-121.2049692365324,38.65929050529017],[-121.20496768199348,38.65929976774087],[-121.20496723683661,38.65930475485332],[-121.20496701874671,38.65930720654785],[-121.20496657590763,38.65931219187441],[-121.20496657940294,38.65932464794393],[-121.20496768975693,38.659337071064876],[-121.2049699018488,38.65934940534544],[-121.20497320720142,38.659361586762394],[-121.20497499963876,38.65936653066431],[-121.20497723794328,38.6593727055712],[-121.20518191949749,38.659874952150865],[-121.20521350994622,38.659952461849386],[-121.2055778074863,38.660600562876944],[-121.20558993432135,38.66062024449058],[-121.20560015979666,38.66063454271952],[-121.20561133005833,38.66064840327217],[-121.20562763006797,38.66066613597681],[-121.20564546871854,38.66068293326416],[-121.20565397531962,38.66069001239162],[-121.20565588677164,38.660691605695824],[-121.20565980767118,38.66069486594991],[-121.20568012334428,38.66070983423422],[-121.20569620553202,38.660720310371666],[-121.20570520569618,38.660725478434465],[-121.20570969952988,38.660728056116334],[-121.20571869969604,38.66073322417804],[-121.20573629248206,38.66074208541221],[-121.20576062486039,38.66075275321466],[-121.2057657680743,38.66075469659591],[-121.20576828991337,38.66075564902622],[-121.20577946199633,38.66075986708685],[-121.2057987513824,38.660766198457516],[-121.20582507469439,38.66077339244872],[-121.2058305730543,38.66077460581707],[-121.20583510288989,38.660775603536734],[-121.20584520326838,38.66077783313675],[-121.20586578546053,38.66078147151173],[-121.20587742492938,38.660783549489715],[-121.20589136338529,38.66078678107302],[-121.2058992281054,38.660789082739406],[-121.20590163779428,38.660789788448746],[-121.20590498090755,38.660790766323046],[-121.20591494218122,38.66079424002771],[-121.20592784003115,38.66079949694015],[-121.20593248302121,38.66080168283651],[-121.20593382378063,38.66080231545501],[-121.20593718774306,38.66080389708394],[-121.20594917030627,38.66081034774135],[-121.20596055053264,38.66081743932574],[-121.20596197543419,38.66081846081454],[-121.20596330114088,38.66081941315426],[-121.20597127255591,38.66082513271527],[-121.2059788496728,38.66083128111253],[-121.20598724600342,38.660838980189766],[-121.20598780671912,38.66083949665135],[-121.20598829466557,38.660839944144925],[-121.2059969459259,38.66084910084564],[-121.20600476368247,38.66085871130218],[-121.20600737791814,38.66086240584291],[-121.20600818897009,38.6608635546595],[-121.2060100532533,38.66086618548814],[-121.20601631690947,38.66087646999253],[-121.20602165091694,38.66088707155649],[-121.20603635546652,38.66091786554181],[-121.20605242173787,38.660948237315104],[-121.20606983061201,38.66097814980719],[-121.20608734469454,38.661005736856076],[-121.20609715640347,38.6610202655425],[-121.20611774383882,38.661048913293364],[-121.2061395959891,38.66107697690112],[-121.20616268101605,38.66110442641681],[-121.20618697630292,38.66113122925194],[-121.20619844137204,38.66114298542753],[-121.20620270614008,38.661147357043625],[-121.20621244664449,38.66115734822713],[-121.20623906592672,38.661182755234364],[-121.20625629624149,38.661198280672686],[-121.20628054178873,38.66121820826896],[-121.20629986143913,38.6612322560943],[-121.20631769317556,38.66124371801308],[-121.20632192921325,38.66124644075452],[-121.20632702543652,38.661249718943914],[-121.20635567840736,38.66126565141905],[-121.20638567753501,38.6612799804676],[-121.2063915318726,38.66128235302053],[-121.20639639902322,38.661284327816986],[-121.20641687771455,38.66129263212089],[-121.20644913023331,38.66130354680039],[-121.20647205364841,38.66130992996564],[-121.2064787822145,38.66131180398738],[-121.20650291842338,38.66131844680484],[-121.20653276588354,38.661328343178596],[-121.20655045272441,38.66133538418314],[-121.20655532830683,38.6613373247958],[-121.20656166128028,38.66133984746573],[-121.20658262140623,38.66134949739829],[-121.20660291142289,38.66135999320307],[-121.20661876752028,38.66136933521327],[-121.20662313736123,38.66137191020861],[-121.20662881884924,38.66137525725657],[-121.20665330451563,38.6613918998815],[-121.20667066503776,38.66140523782731],[-121.20667858461222,38.66141211555977],[-121.20668289319313,38.661415858619456],[-121.20669238213732,38.66142409756329],[-121.20671237103757,38.66144409773626],[-121.2067293643367,38.66146379451616],[-121.20673002228341,38.66146455758921],[-121.20673052708752,38.66146514303483],[-121.2067428930497,38.6614815522377],[-121.2067576453569,38.66150417335939],[-121.2067666563217,38.66152035959509],[-121.2067670123,38.661520998977814],[-121.20676736939716,38.661521641070955],[-121.20677849645354,38.66154550496562],[-121.2067854332517,38.66156376982878],[-121.20734901276056,38.66137375857176],[-121.2072179369246,38.66120486228431],[-121.20695623155575,38.66074413532603],[-121.20702567338805,38.66049847703177],[-121.20691367307693,38.66032250987692],[-121.2066278288517,38.660324286063826],[-121.20636555471357,38.65995662278275],[-121.20619013377714,38.65944422004962],[-121.20610620901515,38.659312651343356],[-121.20585322261518,38.65891604281497],[-121.20542834077018,38.65863339586298],[-121.20538009940569,38.65865562853156],[-121.20533119834693,38.657844292603514],[-121.20531625152626,38.65759629083899],[-121.20555631255395,38.65758508418205],[-121.20581790615793,38.65757287321199],[-121.20607169983163,38.657561024443545],[-121.20612575276206,38.657558501869765],[-121.20633410257754,38.657548772806685],[-121.2066060455473,38.65753607416612],[-121.20695226448743,38.65761778277339],[-121.2072563446514,38.65768954611743],[-121.20755755479894,38.6577606286656],[-121.2078805494603,38.65777193319236],[-121.20839509300345,38.65778993906275],[-121.20870152212919,38.65769031118265],[-121.20927168209225,38.657504913263296],[-121.20930927278017,38.65753310437486],[-121.20933263815574,38.65754979105128],[-121.2093563701893,38.65756615589509],[-121.20939210587223,38.657589743265305],[-121.20939754770795,38.65759354891167],[-121.20940279273178,38.65759790277295],[-121.20940753415152,38.657602599149754],[-121.2094117367614,38.65760760086454],[-121.20941536423673,38.65761286802934],[-121.20941839513827,38.657618365362254],[-121.20942226741276,38.65762870093871],[-121.20942402975625,38.657639384290086],[-121.2094240805076,38.657645373013644],[-121.20942346393407,38.65765134096868],[-121.20942218739853,38.657657245862474],[-121.20942025715496,38.657663041791054],[-121.20941519398686,38.65767305334871],[-121.20939442232977,38.657707785147124],[-121.2093804503512,38.65773319291766],[-121.20910140265298,38.657641066043176],[-121.20883728157119,38.65779619722971],[-121.20847436860414,38.65786580144779],[-121.20836985183553,38.65788584647469],[-121.20788921622837,38.6579780279509],[-121.20785929060038,38.657981473925005],[-121.20757393853425,38.65801433549135],[-121.20722229336245,38.6579943177992],[-121.20717488650979,38.65799161870322],[-121.20690480299153,38.657855071501984],[-121.20675204068402,38.65777783930756],[-121.2064760038118,38.65763828363612],[-121.2061241747448,38.65770014005906],[-121.2059690875272,38.65772740600127],[-121.2059425042736,38.65777601290339],[-121.20590301699026,38.65784821192624],[-121.20584319771679,38.6579575857001],[-121.20595748241914,38.658282160145454],[-121.2060176167095,38.65845294046924],[-121.20607816780971,38.65862490561366],[-121.20611277645779,38.65872320002156],[-121.20618443778275,38.65892671465626],[-121.20620076431764,38.6589730884388],[-121.20630558305113,38.65927076573541],[-121.20652242037909,38.65988656600975],[-121.20658096487216,38.65990225171272],[-121.20703005384203,38.66002258004773],[-121.20706321206174,38.660031464690206],[-121.20708990336804,38.660038617669095],[-121.20759153356866,38.65990471475981],[-121.20794364781594,38.659810724661526],[-121.20797233069885,38.659803065601025],[-121.2080003977863,38.65976356040901],[-121.20814729059639,38.6595567916244],[-121.20832689031022,38.65930398411955],[-121.20816935880693,38.659104301407666],[-121.20818593316909,38.65909612983401],[-121.20820565934531,38.6590856734495],[-121.20822491231526,38.65907468319044],[-121.20823663305792,38.659067463151345],[-121.20824493278154,38.65906235130429],[-121.20828757729674,38.65911142172194],[-121.20847062545852,38.65925014609434],[-121.20880739131431,38.65937917081314],[-121.20894918433704,38.659433495318716],[-121.20979509747549,38.65942982330303],[-121.20981022859286,38.659374818444384],[-121.20985956768067,38.65919548640062],[-121.21031565537969,38.65911641344514],[-121.21056649719628,38.659103331068884],[-121.21081707277591,38.65910960968481],[-121.21111426650582,38.65911705373935],[-121.21119262620213,38.65909721200138],[-121.21159548194932,38.65899520202038],[-121.21186350024539,38.65881033387774],[-121.21210881125967,38.658587181375864],[-121.21224449377837,38.658671013889226],[-121.21227156184214,38.65868773864551],[-121.21202920539773,38.658933615511465],[-121.21170194848543,38.65915012394952],[-121.21169672951292,38.659152843447636],[-121.21140749323486,38.659303546530936],[-121.2113642608868,38.65932607072006],[-121.21150006167214,38.659461356104856],[-121.2115172406548,38.65947847052134],[-121.21148268079689,38.659525510867894],[-121.21109073488611,38.65947436997247],[-121.2107336459591,38.659427773294574],[-121.21069982446164,38.659436949415145],[-121.21035651511804,38.65953008890714],[-121.21012069960288,38.659594064984965],[-121.20963677266057,38.659725351731105],[-121.20945119821643,38.65977569587184],[-121.20940114254849,38.65978927626538],[-121.20943914085696,38.659829204511624],[-121.20948523839803,38.65987764306658],[-121.20933677743226,38.659894774796314],[-121.20917570458471,38.65976574875179],[-121.20894052666533,38.659889904259416],[-121.20847867271765,38.660133723203316],[-121.20844082388292,38.66015370556029],[-121.20829145850551,38.66009631786075],[-121.2081133129866,38.660167944266725],[-121.20790513769296,38.660251647341696],[-121.20789453772764,38.66025590919817],[-121.20789423671546,38.660576526332655],[-121.20789418685483,38.66062938353579],[-121.20764964535982,38.660678491163075],[-121.20748421571702,38.66074655484069],[-121.20735154940975,38.6608953651775],[-121.20734138465062,38.66090676700402],[-121.20734046366697,38.660989554734336],[-121.20735209482517,38.66102616185107],[-121.20738007090075,38.661114214843494],[-121.20743185092579,38.66120656219902],[-121.20764114621959,38.66144277597739],[-121.20783427208366,38.661508491639175],[-121.20788343862579,38.66183600369363],[-121.2080740053852,38.66213208414861],[-121.2082186358812,38.66236972710101],[-121.20841451172397,38.6626915679412],[-121.20864419317742,38.66286643617973],[-121.20887852918861,38.663044847487086],[-121.20892616118999,38.663279790448264],[-121.2089576290115,38.66336108478175],[-121.20896529854886,38.663380897774644],[-121.20923320589382,38.66355600857271],[-121.20935112887813,38.66358587651681],[-121.20943603565554,38.663579808721835],[-121.20957962217445,38.66350236611801],[-121.20961945024727,38.66344672969122],[-121.20967724773439,38.66336599378832],[-121.20975610166438,38.66325584242977],[-121.2098075235141,38.66309856728331],[-121.20998202694723,38.66296501882319],[-121.21025722805031,38.662754403779154],[-121.21024914342381,38.66271375260613],[-121.21020019178401,38.66246761366717],[-121.21016408887243,38.66228607851814],[-121.21018521769456,38.66228379183194],[-121.21029364581263,38.66227205838821],[-121.21042469743671,38.662861324649995],[-121.21032632125178,38.66304446613749],[-121.21022742467909,38.6632285859939],[-121.21024392327612,38.66336985632113],[-121.21025009205196,38.66342267479632],[-121.21027487980402,38.663634886410115],[-121.21046335131027,38.663824909161285],[-121.21065242157496,38.66401553298118],[-121.21078244483022,38.66414662386596],[-121.21097708541112,38.66421863290643],[-121.2115631678541,38.66443545654184],[-121.21171351575768,38.66428897972489],[-121.21158664818982,38.66407627054983],[-121.21175848682219,38.66395386002026],[-121.21197063803903,38.6640531454188],[-121.21218940899676,38.66407995636094],[-121.21263254445739,38.66413426185628],[-121.2126933983789,38.66396478180351],[-121.21229553444464,38.66369384325764],[-121.21230748211373,38.663643573280524],[-121.21236277082804,38.66341095016524],[-121.21236909785469,38.66338431710146],[-121.21241902460196,38.66317425424337],[-121.21239312893003,38.66310598991652],[-121.21254556665183,38.663041685079115],[-121.2126196333013,38.663045293703455],[-121.21263880227501,38.66312876385392],[-121.21257429541814,38.663197759065724],[-121.212561894154,38.663306251146615],[-121.2125349377473,38.66354209031002],[-121.21305725590126,38.663848288873666],[-121.21352525714961,38.6637181823837],[-121.2135473912611,38.66333783886852],[-121.21355320243138,38.66322745960936],[-121.2135872682235,38.66325187217093],[-121.21361959140168,38.66327769724397],[-121.2136500808628,38.663304860337064],[-121.21367864556284,38.663333281553506],[-121.21370520026176,38.66336287563059],[-121.21372966779187,38.66339355465762],[-121.21374585381328,38.663416128739264],[-121.21376091195988,38.663439178057544],[-121.21377481503309,38.66346266819375],[-121.21385162243817,38.663599707323094],[-121.21386996495714,38.663630024050704],[-121.21389058930615,38.66365942560728],[-121.21391341503218,38.66368780964264],[-121.21393836974458,38.663715072059574],[-121.21396535800295,38.66374111491077],[-121.21399428317767,38.66376584384442],[-121.21402504394321,38.66378917348621],[-121.21405752862272,38.663811019292446],[-121.21409162085352,38.66383130479586],[-121.21412720082546,38.66384995350608],[-121.21416413826766,38.663866899672705],[-121.21420230280954,38.66388208655391],[-121.21424155837477,38.663895453765804],[-121.21428176296303,38.6639069571008],[-121.21432277223576,38.6639165559394],[-121.21436444065547,38.66392421415858],[-121.21455096703212,38.66395390933062],[-121.21454404410174,38.66398692774881],[-121.21453973235297,38.66402021521635],[-121.214538046918,38.664053650212686],[-121.21453901084683,38.6640873310937],[-121.21454264072489,38.66412090030898],[-121.2145489207311,38.66415422982131],[-121.21455782589214,38.6641871879276],[-121.21456932656899,38.664219649199424],[-121.2145833747484,38.66425148718274],[-121.21459991776112,38.66428258079727],[-121.21469354108552,38.66444422012162],[-121.21471396824474,38.66443589173185],[-121.21482223966937,38.66439324443136],[-121.21493175861112,38.66435260190463],[-121.21504246622034,38.66431398717323],[-121.21515429679333,38.66427741960903],[-121.21526719263017,38.664242922241755],[-121.21538109151489,38.66421051086353],[-121.21549592659608,38.66418020483901],[-121.21561163906584,38.6641520235875],[-121.21572816333166,38.66412597657253],[-121.21584543597056,38.66410208498437],[-121.21596339255952,38.664080356493265],[-121.21608196515943,38.66406080505212],[-121.21620109159626,38.664043442851344],[-121.21632070514985,38.664028277546265],[-121.21644073792147,38.6640153194873],[-121.21656112783675,38.66400457185713],[-121.21667758471702,38.66399630566531],[-121.21679424979162,38.66399010835976],[-121.21691106327341,38.66398598404042],[-121.21702796654432,38.66398393501352],[-121.218223435713,38.66397359599011],[-121.21864645015675,38.66396993385287],[-121.21864625945909,38.664101744285425],[-121.21864768941822,38.66420333639899],[-121.21865089122463,38.664430775513786],[-121.21865570928242,38.664548660958005],[-121.21865933813216,38.66463740915733],[-121.21867095504216,38.66492172378727],[-121.2186812717529,38.665174139121774],[-121.2186849623542,38.665264492260086],[-121.21868989657948,38.66538520734823],[-121.21854077841871,38.665427375666525],[-121.21840843497641,38.665464801886536],[-121.2183679814956,38.66559829219088],[-121.21808799295668,38.665716630656625],[-121.21800848635684,38.66575128306571],[-121.21804264311206,38.66580105471709],[-121.21807486074782,38.66585161599065],[-121.21811081687582,38.66590957554703],[-121.21814744813821,38.665967275678085],[-121.21816542943054,38.66599680367336],[-121.2181818245801,38.66602689034445],[-121.21819660421467,38.66605748954739],[-121.21824333464357,38.666041718920475],[-121.2182909393421,38.666027640680475],[-121.21833931456483,38.66601528475772],[-121.21871132390181,38.66592759611263],[-121.21871251792055,38.66598752749981],[-121.2187185965978,38.6662924798314],[-121.21871891798466,38.666308546180254],[-121.21872254215504,38.66649037218068],[-121.2187261087913,38.66666916802068],[-121.21872978311788,38.66685354934543],[-121.21873200768543,38.66696506134909],[-121.21873329734305,38.66702979254186],[-121.21873674435611,38.66720273523891],[-121.2187374438441,38.66723776655482],[-121.21874015103695,38.66737359385051],[-121.21874533126231,38.667633385438805],[-121.21872222060541,38.66777635503459],[-121.2187268488259,38.66801124075991],[-121.21873016888766,38.66817983478706],[-121.21873352590056,38.66835030025819],[-121.2187367544899,38.668514139547554],[-121.21873866147328,38.66861091947313],[-121.21874023340999,38.66869067709045],[-121.21874348105273,38.66885561111462],[-121.21874474037651,38.668919444787605],[-121.21874692236558,38.66903023666344],[-121.2187502707077,38.669200242602855],[-121.21875326055336,38.66935201164478],[-121.21875503439766,38.669441968955304],[-121.22104022377299,38.6694226176659],[-121.22103536170603,38.66896405008385],[-121.22102657177389,38.66813448629668],[-121.22155576439114,38.66813184128617],[-121.22170293602811,38.66813324666615],[-121.22199281599825,38.6681289051928],[-121.22229838775498,38.668124328631514],[-121.22229879662464,38.668154141677796],[-121.22230099163393,38.66831382878004],[-121.22230376250573,38.6685154031792],[-121.22254974504918,38.6685100306357],[-121.22261801738192,38.66850854074632],[-121.22283634275607,38.668507008289666],[-121.22291444035659,38.66850646248925],[-121.22293853412378,38.66850629427432],[-121.22310828691244,38.668510689816806],[-121.22324665607032,38.66851427480498],[-121.22334664643542,38.668516863742234],[-121.22355593763452,38.66851539552732],[-121.22356438454834,38.66851533498866],[-121.22376291655024,38.66851394388313],[-121.2237757489387,38.66851385413723],[-121.22397351095985,38.66851246652404],[-121.22399595098467,38.66851230863986],[-121.22418438808008,38.66851098617005],[-121.22421108257527,38.668510799060584],[-121.22442774955452,38.66850927683228],[-121.22448412080084,38.66850888280727],[-121.22463968624207,38.66850778922579],[-121.22475555354058,38.668506975894495],[-121.22485610723425,38.66850627085796],[-121.22504130575848,38.66850496858236],[-121.22503539567062,38.668252688874006],[-121.22503047279824,38.668042661354015],[-121.22526511020286,38.6680397243599],[-121.22548255296428,38.66803699903293],[-121.22553158663337,38.668036386101335],[-121.22567168710869,38.66803686891683],[-121.22567038297208,38.66765135794023],[-121.22567253560706,38.667548241260455],[-121.22579512038311,38.667549113236824],[-121.22581262642107,38.66754952475872],[-121.22613375185811,38.66755705114991],[-121.22615619680009,38.66755757577403],[-121.22641577883073,38.667563658958734],[-121.22644892178631,38.66756443510416],[-121.22670465986445,38.66757042532149],[-121.22676409177004,38.66757181910231],[-121.227014770387,38.66757769109977],[-121.22702954679089,38.66757803828845],[-121.22711146388201,38.66757995661],[-121.22727083825998,38.667583689473965],[-121.22742081510107,38.66758720362583],[-121.22752579754618,38.66758966097518],[-121.2277434780554,38.66759475922669],[-121.22805153696345,38.66760197342583],[-121.22805287200578,38.66760199673134],[-121.22836966211145,38.66760772406717],[-121.22869200495524,38.66761355054944],[-121.2287746162051,38.66761504347992],[-121.22900575745886,38.66761921989712],[-121.22905747337252,38.66762015396671],[-121.22932458013828,38.66762498156544],[-121.22935987237042,38.66762561981465],[-121.22965029403032,38.667630867434866],[-121.22971595544891,38.66763205244995],[-121.22986297752817,38.66763976097519],[-121.23036326499876,38.667649770380265],[-121.23036142337989,38.6677701470391],[-121.23081879691843,38.66777316403951],[-121.23089234993236,38.66777282866209],[-121.23089442067929,38.66734788037099],[-121.23129521269107,38.66735496516955],[-121.2312946548461,38.66741263245438],[-121.23129373202373,38.66779041299022],[-121.23160390778727,38.66779505246777],[-121.23162105244978,38.667795309363086],[-121.23193582403195,38.6678000198589],[-121.23214203803602,38.66780310411163],[-121.2321619068806,38.667803400594615],[-121.23216556326746,38.66824954019928],[-121.23216765055595,38.66850401660348],[-121.23216973543502,38.66875850470052],[-121.23217176648136,38.66900647343927],[-121.2321717892091,38.66900916281189],[-121.23217273005845,38.669123709182806],[-121.23249698088216,38.66922925420528],[-121.23287047640625,38.66935082260995],[-121.23291775616708,38.669366214054655],[-121.23310116786757,38.669366682581334],[-121.233556707596,38.669367851330435],[-121.23355963628384,38.669541589909834],[-121.23356037686254,38.669630843631516],[-121.23362164008819,38.669610761949585],[-121.23368378879158,38.669592435659936],[-121.2337467480633,38.66957588498689],[-121.23381042799787,38.669561135461294],[-121.23387474797019,38.66954820456726],[-121.23393962851391,38.66953710889592],[-121.23400497292674,38.669527864924575],[-121.23406455987009,38.66952109191286],[-121.23412439801746,38.66951585748574],[-121.23418442068706,38.669512164805866],[-121.23424456806269,38.66951001978422],[-121.23430477117414,38.66950942466768],[-121.23498437947987,38.66951144514189],[-121.23498684602909,38.670115207360176],[-121.23506390806614,38.67011610780778],[-121.23536152029043,38.670120489388445],[-121.23578004690201,38.67012664761564],[-121.23578088733746,38.67038629586859],[-121.23677177960198,38.67040163430035],[-121.23677197418412,38.67047872657616],[-121.23735719933465,38.67047933141824],[-121.23735714096017,38.670440770223486],[-121.23735238929325,38.67005020827069],[-121.23758838545577,38.670049493996736],[-121.23906941324476,38.670045014481445],[-121.23906869763934,38.66960589480232],[-121.23906989345755,38.66952352151948],[-121.2396487073159,38.66952522141979],[-121.23965329969569,38.66990690368016],[-121.23972336910178,38.66990820922334],[-121.24008583779032,38.66990761028131],[-121.24008981491382,38.670196039654584],[-121.2413863444627,38.67019389119677],[-121.24138794327924,38.67040744011217],[-121.24138897391751,38.670544733994795],[-121.24139491713646,38.671337787242976],[-121.24196737376099,38.67133675185369],[-121.24197190586793,38.671792996510796],[-121.24197422265685,38.67202639715421],[-121.24197657885713,38.6722635476441],[-121.24198126073773,38.6727349970328],[-121.24198130439747,38.67273953430582],[-121.24198536633256,38.67314860956638],[-121.24198999455751,38.67361441978222],[-121.24199074565544,38.67369007238028],[-121.24199439176432,38.67405723182543],[-121.24199520108445,38.67413886234622],[-121.2419984597798,38.67446704584582],[-121.24199944193808,38.67456580831518],[-121.24200344778863,38.67496926509177],[-121.2420034839607,38.67497299419824],[-121.24200811395107,38.67543920078394],[-121.24200815189477,38.67544297945203],[-121.24201178704882,38.67580880904894],[-121.24201274333312,38.67590525419985],[-121.24201640609655,38.676274002018744],[-121.24201888171805,38.676273993880635],[-121.24202028739906,38.67625421636781],[-121.24202132370435,38.6762490636274],[-121.24202327106217,38.6762448051418],[-121.24202613433293,38.676240876071596],[-121.24202982144598,38.67623739653687],[-121.24203422442403,38.67623446943623],[-121.2420392077956,38.6762321893805],[-121.2420446237835,38.676230619368006],[-121.24205030172268,38.67622981323841],[-121.2420560758804,38.67622979333185],[-121.24206176357352,38.67623055485025],[-121.24206719486543,38.676232083168955],[-121.24207221056487,38.67623432589527],[-121.2420766493258,38.67623721710885],[-121.24208038106035,38.67624066947184],[-121.24208329197063,38.676244576833746],[-121.24208529024668,38.676248818773246],[-121.2420863208813,38.676253272406946],[-121.24208644554133,38.67625646244609],[-121.2420862763377,38.67626026768796],[-121.24208619328526,38.6762640770967],[-121.2420861873206,38.676267230245436],[-121.24208718589016,38.67640119139604],[-121.2420873631266,38.676421044123735],[-121.24208654519457,38.67642565594407],[-121.24208471668976,38.67643008547991],[-121.24208193534113,38.67643419977381],[-121.24207828296282,38.67643787053042],[-121.24207387561492,38.6764409913],[-121.24206884191254,38.676443463823134],[-121.2420633378215,38.67644521164118],[-121.24205753166132,38.676446185403535],[-121.24205159615671,38.67644635380658],[-121.24204571292874,38.67644571353321],[-121.24204006226731,38.676444278374994],[-121.24203481604397,38.676442097203946],[-121.24203013098936,38.676439237712216],[-121.24202614990963,38.67643578011376],[-121.2420229968881,38.67643183603201],[-121.242022070871,38.67643029572635],[-121.24202808389694,38.67788653204227],[-121.24355170536737,38.67788761867778],[-121.24355150187884,38.67806544809113],[-121.24423445231321,38.67806592838381],[-121.24433954046206,38.678066525123256],[-121.24433687864529,38.67865591676061],[-121.24787997026253,38.6786664549996],[-121.24988946167525,38.67866176509353],[-121.25126032879633,38.678660783469034],[-121.2512619066809,38.678784355257385],[-121.25128079445827,38.680160834214455],[-121.25128913933077,38.68076907882825],[-121.25231436879582,38.68077203208945],[-121.25250002952014,38.68077256531843],[-121.25359002616058,38.680775694234995],[-121.25357749007985,38.680045210928796],[-121.25355559094058,38.678769261968995],[-121.25355579579806,38.678673154237316],[-121.25488226829741,38.678675789920845],[-121.25489573192517,38.67911887353283],[-121.25489742550096,38.679174631803065],[-121.25495434822062,38.67947249779904],[-121.25498861481009,38.67947298467625],[-121.2549864776248,38.68014195485864],[-121.25500338868432,38.68100706911891],[-121.25500509212065,38.68119816657638],[-121.25500704249663,38.68141697489224],[-121.25500894074234,38.68162988912076],[-121.25501090013736,38.68184948578549],[-121.25501266910332,38.68204805850155],[-121.25501427704422,38.68222807054509],[-121.25501597569728,38.6824188616505],[-121.25501760439539,38.68260139637037],[-121.25501923350667,38.68278411217396],[-121.25502076557146,38.682955996619064],[-121.25534319855475,38.68295535985481],[-121.25562667480042,38.68295479911467],[-121.25603322111931,38.68295399412515],[-121.2562681419598,38.682953527445136],[-121.25650330991606,38.68295306007198],[-121.2567323297038,38.682952605059995],[-121.25694522794939,38.682952182311475],[-121.25754650616867,38.68295098383352],[-121.25803856577264,38.68294999956387],[-121.25828234846207,38.682949513441564],[-121.25839262796529,38.682949292761464],[-121.25885226976747,38.682948370649285],[-121.25892294657811,38.68294822873214],[-121.25945519960176,38.68294716021847],[-121.25960234048249,38.68294686211308],[-121.26117025290016,38.68294369570497],[-121.2613227074336,38.68294338693496],[-121.26175685308719,38.68294250618123],[-121.26233333162374,38.68294133307565],[-121.26237536989305,38.682941247380384],[-121.26248047860341,38.68294321515961],[-121.26247970885802,38.68305641125861]]]},"properties":{"ZIP5":"95662","PO_NAME":"ORANGEVALE","Shape_STAr":302614310.979,"Shape_STLe":114902.575792}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.48937008921257,38.72938158888131],[-121.48899765360987,38.7289855948311],[-121.4886119502401,38.72898612593754],[-121.48587107470905,38.714579451329804],[-121.48585540020854,38.71449705293466],[-121.48585087322905,38.714497045480925],[-121.48583972690719,38.714414652740345],[-121.48695569391555,38.71441624821077],[-121.48760677015277,38.71449972444373],[-121.4877743518756,38.71426638766316],[-121.49110865150422,38.71427106512121],[-121.49110456172846,38.712647917657996],[-121.49120970426668,38.71264837891515],[-121.49179684058105,38.712650952912306],[-121.49369673663085,38.71265926165954],[-121.49369477007494,38.71088770264079],[-121.49368914957992,38.70727438369013],[-121.4936814492762,38.703617164343875],[-121.49367369901131,38.69993571362364],[-121.49582811270503,38.699928369431326],[-121.49581659932056,38.69691403646111],[-121.49581439576434,38.69633739089144],[-121.50300526786181,38.696386959363295],[-121.50724560609754,38.69639979027209],[-121.5072730792865,38.69988868393251],[-121.50765787728363,38.700154870434794],[-121.51051034140866,38.700187673969346],[-121.5118669096881,38.700203249466036],[-121.51186720401796,38.70024014490781],[-121.51228773682669,38.70024497095592],[-121.51226615268465,38.70020783192684],[-121.5121831728299,38.70006504658393],[-121.51214250791664,38.69999507626378],[-121.5118301378265,38.69985955508117],[-121.51228252685239,38.6995936298387],[-121.51222497908459,38.69303019045371],[-121.5122048811088,38.69073765628985],[-121.51220211769147,38.69066935526594],[-121.52193520949773,38.69063481645191],[-121.52187212431139,38.695548038331296],[-121.54008113975625,38.695531562993466],[-121.54003074066469,38.68898719979862],[-121.54061389724649,38.6881013021902],[-121.5406500745335,38.68804750019778],[-121.54068744623626,38.68799420111803],[-121.54072599615661,38.68794142110166],[-121.54076571729176,38.6878891763358],[-121.54077781972137,38.687873662287224],[-121.54076866769972,38.6955308842129],[-121.5428802091546,38.695528776777635],[-121.54318445977485,38.695549327746896],[-121.54347953233955,38.69561096921255],[-121.543756466995,38.695711829977256],[-121.54377261477886,38.695719204229924],[-121.55280077330248,38.69989238034647],[-121.55850826380377,38.699883685533976],[-121.55852186695355,38.69137139476523],[-121.56603450909982,38.691341831754464],[-121.5660706331215,38.69634086804319],[-121.57348088425796,38.69631911753842],[-121.57348759326237,38.6963190980708],[-121.57365971400698,38.69660709459522],[-121.57384777527434,38.696921758074886],[-121.57386389992922,38.69694873767699],[-121.57408113322268,38.697561617328816],[-121.57460340872089,38.6996769552397],[-121.57481263157085,38.70433891941442],[-121.57481268870852,38.704339940329966],[-121.57481589708122,38.704397201722486],[-121.57481597606282,38.70439822271811],[-121.57482046092504,38.70445543113322],[-121.57482056291103,38.704456450411435],[-121.57482632091356,38.7045135896207],[-121.57482644590401,38.70451460718144],[-121.57483347486908,38.70457165735717],[-121.57483362171436,38.70457267319621],[-121.57484192173101,38.70462961992426],[-121.57484209158626,38.70463063314501],[-121.57485165816642,38.70468745839088],[-121.57485185103167,38.70468846899329],[-121.57486267969263,38.70474515382153],[-121.57486289441822,38.70474616180139],[-121.57487498755378,38.70480269090537],[-121.57487521379265,38.70480369622477],[-121.57181993033389,38.70867989553049],[-121.57665465456051,38.71091286288875],[-121.5766690934356,38.714303152465426],[-121.57040430545473,38.714299816998505],[-121.57033668956603,38.72872668638211],[-121.54087711580515,38.72878386780547],[-121.54087440649761,38.731053092764334],[-121.54080906780382,38.73594717149633],[-121.5404997345422,38.73594716577148],[-121.53986892868834,38.73594715145452],[-121.53965857687193,38.73594714589032],[-121.53951834309646,38.73594714167175],[-121.52168358370616,38.735945262801906],[-121.5121119942546,38.73594312373724],[-121.51037840729869,38.73594265173067],[-121.50530289882514,38.73594112160952],[-121.50336451081998,38.73581440990931],[-121.49359618013885,38.73517535619473],[-121.49045887491756,38.734969933840524],[-121.48986935364012,38.73493132398741],[-121.48971898868719,38.73415294998672],[-121.49066904097597,38.73351981638542],[-121.49087471959983,38.73335649304446],[-121.49104106429851,38.73316767726921],[-121.4911630217875,38.732959103756954],[-121.4912368849384,38.73273711037185],[-121.49126043386839,38.73252316830761],[-121.49126946077551,38.73089110554624],[-121.49126786249369,38.730869967243244],[-121.49126579248009,38.73084885389843],[-121.49126549423318,38.73084616883694],[-121.49126289490638,38.730825091008434],[-121.49125982604589,38.730804052561965],[-121.49125628761347,38.73078305890262],[-121.49125228185828,38.7307621172473],[-121.49124781103576,38.73074123391218],[-121.49124298470072,38.73072085081407],[-121.49116857069447,38.730517553773524],[-121.49105021764295,38.730327466490486],[-121.49089152466198,38.73015636401859],[-121.49069731165403,38.73000944747369],[-121.49054972584322,38.72992655806978],[-121.49051589443414,38.72991187183001],[-121.49048174112005,38.72989765172899],[-121.49044727622535,38.729883901415285],[-121.4904410002525,38.72988146126509],[-121.49034214238003,38.72984911297096],[-121.49024257790785,38.72981812183283],[-121.4901423378317,38.72978849519217],[-121.49004145312142,38.72976024399409],[-121.48993995476589,38.72973337648126],[-121.489927487411,38.72973018206411],[-121.48980847134217,38.729679782721604],[-121.48977021896802,38.72965870572066],[-121.4895155318895,38.72950156545689],[-121.48937008921257,38.72938158888131]]]},"properties":{"ZIP5":"95836","PO_NAME":"SACRAMENTO","Shape_STAr":318930764.619,"Shape_STLe":97493.8664705}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.30515333306982,38.72257933460006],[-121.30248409860856,38.72239339893618],[-121.30202960929503,38.72236173365313],[-121.30196566634763,38.7223572786232],[-121.30175666122916,38.72234271623978],[-121.30153435736521,38.72232722655838],[-121.30153136674458,38.72198853629304],[-121.30175353449143,38.72198883502882],[-121.30186855421636,38.721988988554465],[-121.30195908259336,38.72198910991016],[-121.30217321535984,38.721989397330205],[-121.30221094308922,38.72198944769999],[-121.3023760241815,38.72198966850798],[-121.30256145780447,38.72198991595058],[-121.30258737512891,38.72198995104683],[-121.30279875713515,38.721990232486384],[-121.30301885606674,38.72199052537393],[-121.30320900579983,38.72199077849526],[-121.3032628782364,38.72199085072197],[-121.30343075496576,38.72199107330642],[-121.30361694299037,38.72199131998815],[-121.30363715061989,38.721991346700044],[-121.30385293823942,38.72199163284527],[-121.30396743586641,38.721991784760256],[-121.30406004573466,38.72199190705555],[-121.30426550990006,38.72199217824742],[-121.30426581293894,38.72208061005884],[-121.30450150127137,38.72208011434623],[-121.30472917964063,38.72207963501231],[-121.30503286120378,38.72207899436535],[-121.3051029647374,38.72207884675752],[-121.30510756039831,38.72249766559192],[-121.30510863959283,38.722546392917884],[-121.30513369064926,38.722543180804124],[-121.30514933573265,38.72253961594771],[-121.30515333306982,38.72257933460006]]]},"properties":{"ZIP5":"95678","PO_NAME":"ROSEVILLE","Shape_STAr":163566.019531,"Shape_STLe":2407.66520674}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.4036785454136,38.69056738179341],[-121.4013591427733,38.69054148630242],[-121.4013618654586,38.68962496328734],[-121.40020719376146,38.689613901579996],[-121.40020667171073,38.68870088690269],[-121.39905132850127,38.68868646059147],[-121.39905571901699,38.68819265127217],[-121.39803346301704,38.68880221553488],[-121.3976254730741,38.68883351463253],[-121.39755483826305,38.689337199561635],[-121.39695340428648,38.6886972782868],[-121.39674270769967,38.68870414892649],[-121.39675492169947,38.68645818168549],[-121.39679231883838,38.67958074481128],[-121.39670474373587,38.679580452189505],[-121.39446727825674,38.67955875770842],[-121.39446540779609,38.67902800832957],[-121.39413158333012,38.67902626425324],[-121.39413479105286,38.678649113192414],[-121.39449002651534,38.678650968197516],[-121.39449781343447,38.677734859977704],[-121.39216232929596,38.67771350871914],[-121.39217989485145,38.67230062990936],[-121.39207481540325,38.672300419438486],[-121.3875362340949,38.67223401403907],[-121.38754199268406,38.67042965953785],[-121.38745443186278,38.67042847706223],[-121.38522114357995,38.670398293140785],[-121.38521748067497,38.66864409820578],[-121.38522471606078,38.66864418252538],[-121.3852244605661,38.66856179382966],[-121.38463565782531,38.66855496056222],[-121.38292593714795,38.66853510225426],[-121.38291803269857,38.66441776951505],[-121.38291775752135,38.66427494285393],[-121.38285831097727,38.66375128140845],[-121.38284367086483,38.6636903872525],[-121.38283123102221,38.66360152553531],[-121.38283108680584,38.66358673558069],[-121.38287145848562,38.65892561930949],[-121.38288332271397,38.65755571752936],[-121.38337082738715,38.65733564018889],[-121.38343628007523,38.65729883525056],[-121.38380880984798,38.657120808340984],[-121.38391255679424,38.65708278780767],[-121.38473718487812,38.65679841885587],[-121.38491943888303,38.65673556912291],[-121.38532533042103,38.65656103514043],[-121.38568640191626,38.6563338856123],[-121.38587281180116,38.656178926695034],[-121.38772899959511,38.654468445207904],[-121.38767017247139,38.65443791369111],[-121.38872618714794,38.65346474441381],[-121.39465113549572,38.64800394319168],[-121.39532304546778,38.64738459735832],[-121.39756989640694,38.645313411613294],[-121.4005751747432,38.64254283880842],[-121.40224048001647,38.641007463346874],[-121.40231187815655,38.6409427866516],[-121.40233240257282,38.64092460964779],[-121.40289663630136,38.64042739371963],[-121.40294997151304,38.64037984786533],[-121.40317835753682,38.64038192534686],[-121.40382642190032,38.6403878182978],[-121.4043996093016,38.639863435800585],[-121.40576743552698,38.639864772191466],[-121.40576915262453,38.63978240179105],[-121.40589097845496,38.639784992265014],[-121.4067576065631,38.63980341811728],[-121.40689761361571,38.63980586908552],[-121.40913241885896,38.639836579553226],[-121.40927243090036,38.63983885920841],[-121.41065808813929,38.639864933247196],[-121.41071626866223,38.63987003004639],[-121.41072387612891,38.6398713020674],[-121.41071666780128,38.64259485738643],[-121.41071442994377,38.64344000341644],[-121.41071333000063,38.643549833707596],[-121.41068355016075,38.64526321858367],[-121.41068176436144,38.64537304537921],[-121.4106547403209,38.64715988998476],[-121.41068823751182,38.64715992880611],[-121.41069424057115,38.64808663809261],[-121.41070915436353,38.65038858592792],[-121.41071167959453,38.65040997170659],[-121.41071890222418,38.65043068857955],[-121.41073060344114,38.65045010660557],[-121.41074642623535,38.65046763658156],[-121.41076589020501,38.65048274543345],[-121.41078840403677,38.65049497519877],[-121.41081328496087,38.65050395213482],[-121.4108397746777,38.65050940571875],[-121.41086489334477,38.65051116584627],[-121.41522148400858,38.65054105484105],[-121.41524359515934,38.65360157640125],[-121.41527588299469,38.658070129513575],[-121.4152761903503,38.658179971353356],[-121.41527484243387,38.65900720768851],[-121.41527538680586,38.65909362735081],[-121.41528525192804,38.66065875630306],[-121.41529183845284,38.661703533848474],[-121.41529250754515,38.66186829357742],[-121.41530412121222,38.66458566155706],[-121.41530727484593,38.66532337465544],[-121.4153069271507,38.66541307176694],[-121.41528337246619,38.668894856213555],[-121.41528235054028,38.66897722830839],[-121.41760636448066,38.668994922475555],[-121.41759594694238,38.67440652746852],[-121.41528830497735,38.67437907515212],[-121.41529059516856,38.673772116455],[-121.41520302766025,38.67377191348432],[-121.41297496838762,38.67374652995308],[-121.41297452834912,38.6736131857587],[-121.41239475606226,38.67297469524624],[-121.41182558904198,38.672522667684994],[-121.41065688109721,38.67252070585448],[-121.41065961025656,38.671524397974466],[-121.41055492668296,38.67143648756629],[-121.41000243061279,38.67097250777009],[-121.40835689432872,38.670966956016116],[-121.40835830894954,38.67068466390203],[-121.4061279914218,38.67067338535735],[-121.40602291482944,38.670672852397786],[-121.40601863829612,38.67244945265766],[-121.40371116518284,38.67245144511621],[-121.40370291616031,38.675982641823026],[-121.40370199454397,38.67598263167715],[-121.40370165199006,38.676147398910416],[-121.40368360512606,38.68100213501737],[-121.40368303924261,38.68219691736194],[-121.40599514414825,38.682208812401186],[-121.4059847975038,38.686505835464594],[-121.40597933873109,38.688772797073575],[-121.40548241107366,38.68876661869262],[-121.40367964499336,38.688744184713585],[-121.40367870542913,38.6903010050338],[-121.4036785454136,38.69056738179341]]]},"properties":{"ZIP5":"95652","PO_NAME":"MCCLELLAN","Shape_STAr":100690182.271,"Shape_STLe":57590.0108611}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.52299971996105,38.68530478587589],[-121.52298282346014,38.68704620524741],[-121.52298154642881,38.68717767698249],[-121.52197952013026,38.68718348978259],[-121.52193520949773,38.69063481645191],[-121.51220211884092,38.690669355270764],[-121.5122048811088,38.69073765628985],[-121.51222497909077,38.69303018955286],[-121.51228252685854,38.69959362893784],[-121.5118301378265,38.69985955508117],[-121.51214250791664,38.69999507626378],[-121.5121831728299,38.70006504658393],[-121.51226615268465,38.70020783192684],[-121.51228773682669,38.70024497095592],[-121.51186720401796,38.70024014490781],[-121.5118669096881,38.700203249466036],[-121.51051034140866,38.700187673969346],[-121.50765787728363,38.700154870434794],[-121.5072730792865,38.69988868393251],[-121.50724560609754,38.69639979027209],[-121.50300526786181,38.696386959363295],[-121.49581439576434,38.69633739089144],[-121.49581659932056,38.69691403646111],[-121.49582811270503,38.699928369431326],[-121.49367369901131,38.69993571362364],[-121.4936814492762,38.703617164343875],[-121.49368914957992,38.70727438369013],[-121.48918534351655,38.70726616912869],[-121.48786568858715,38.70726372870567],[-121.48622720954931,38.707260677583406],[-121.48550937658803,38.7072565819929],[-121.4845196918588,38.7072521532945],[-121.48447764387774,38.70725300333045],[-121.4841246897355,38.707260124858706],[-121.47553918745253,38.70725470727495],[-121.47554491762607,38.70880876811349],[-121.47554500743541,38.70883310343875],[-121.47376187611219,38.708822867299475],[-121.4737614777702,38.70880069001075],[-121.4737402660182,38.707614396909264],[-121.47285819472474,38.70760703536984],[-121.4728224357884,38.70520256910192],[-121.47193406781837,38.705193460077815],[-121.47196664903525,38.707599588852275],[-121.47106818472173,38.70759207690165],[-121.47017435613839,38.707584596284214],[-121.46968078302858,38.7075804639313],[-121.46957661683935,38.707579590295005],[-121.4694992532879,38.70757894186597],[-121.4694887184726,38.70516834623447],[-121.46879777979903,38.70516124132622],[-121.46878431890849,38.70645152485584],[-121.46841438199746,38.70644859653514],[-121.46836029682163,38.7064481684471],[-121.46835984540571,38.7063919019787],[-121.46762182289969,38.70638517878043],[-121.46763927265152,38.70514931855573],[-121.46657075894419,38.705138312575045],[-121.46657114161734,38.705497479894426],[-121.46584895794192,38.70549197406569],[-121.46584507914302,38.705792029454955],[-121.46379993241109,38.70577576882867],[-121.4637999888685,38.706674161026775],[-121.4624590650309,38.70666795388415],[-121.46245720075635,38.707741929508245],[-121.46080061813748,38.707726060646024],[-121.46080330980892,38.70619628151735],[-121.45842921657189,38.706180220775025],[-121.4577784918858,38.70504736995263],[-121.45717927280701,38.70504114891283],[-121.45731832129732,38.70528322845723],[-121.45731958074133,38.70617506728305],[-121.45576132634146,38.70617030155186],[-121.4557610888116,38.70604673649159],[-121.45491226318333,38.70604413037339],[-121.45491129464295,38.705537426850675],[-121.45420054593943,38.70553524094427],[-121.45420089362806,38.70559397998928],[-121.45330461983903,38.70559282975443],[-121.45330504614465,38.70582483278359],[-121.45266061216618,38.7058236968684],[-121.4526619641413,38.70499414255077],[-121.45261387760306,38.70499364082977],[-121.45261507999393,38.70598993302864],[-121.45216502747637,38.70598822965673],[-121.45216190691697,38.704988927483015],[-121.45107838047124,38.70497762224649],[-121.45108261657545,38.705655136595176],[-121.45016068365615,38.70565648294538],[-121.45016157275272,38.70657484823614],[-121.44796933461377,38.70657131913331],[-121.4479653695441,38.70612456732296],[-121.44571733158213,38.70612703173675],[-121.44571494595105,38.70530785108924],[-121.44457701018325,38.7053024574745],[-121.44457660116501,38.706753300764056],[-121.4434245134729,38.70674579485845],[-121.44342427081651,38.70533587779317],[-121.44311914544473,38.70530604841556],[-121.44311975780023,38.705300518959675],[-121.44312030846915,38.705294350473025],[-121.44312072238944,38.70528817322171],[-121.44312100066858,38.70528199261642],[-121.44312113870788,38.705275808635065],[-121.4431211399211,38.705269625798486],[-121.44311703584151,38.70489423917706],[-121.44309951099032,38.70489405592854],[-121.44298461915179,38.7048934014783],[-121.44298295520885,38.70526456583803],[-121.44146379976057,38.705253583117155],[-121.44039925480831,38.70524705779184],[-121.43962520461419,38.70523776452496],[-121.43937267250814,38.70523602605916],[-121.43936941922759,38.704872786489005],[-121.42926755953367,38.704814583574816],[-121.42940994646764,38.70519377846599],[-121.42839602722059,38.70518797039079],[-121.42839256059646,38.70574587272892],[-121.42883068111954,38.70574841770016],[-121.42882949439434,38.705926899143584],[-121.42814965925135,38.70592294729654],[-121.42814191290113,38.707169566987396],[-121.42635562253055,38.7071591672921],[-121.4207613272229,38.70718082009935],[-121.42076547227458,38.70666828846289],[-121.41974656614681,38.706658698003885],[-121.41973669567523,38.70575555312959],[-121.4182146258156,38.70573679551157],[-121.4181156448968,38.70573656921571],[-121.41812332344846,38.70473272969992],[-121.41586222334942,38.70472306865309],[-121.41082810565247,38.704701401319966],[-121.40930607032868,38.70469480786727],[-121.40928449327235,38.70461418478993],[-121.40916740223912,38.70463074682343],[-121.4087994729547,38.7046489870799],[-121.40535035565924,38.70458383390756],[-121.40361712558935,38.70455105398299],[-121.40361846869736,38.7044137460888],[-121.4036298558896,38.70324899545335],[-121.40363259046185,38.702969416847736],[-121.40363085628444,38.699616358636035],[-121.40133225207067,38.69959078010135],[-121.40133856825047,38.69746571330973],[-121.40134028818939,38.69688666907372],[-121.40246913122128,38.69689846237216],[-121.40247742079838,38.69598745126283],[-121.40365497289878,38.695999569651484],[-121.40367546484644,38.692378946025656],[-121.40252861852548,38.69236466233592],[-121.40252730517132,38.69197995852298],[-121.40252146331807,38.69055446956073],[-121.4036785454136,38.69056738179341],[-121.4036787054216,38.69030100593465],[-121.40367964499336,38.688744184713585],[-121.40548241107366,38.68876661869262],[-121.40597933758164,38.68877279706769],[-121.4059847975038,38.686505835464594],[-121.40599514299896,38.682208812395295],[-121.40368303924261,38.68219691736194],[-121.40368360512606,38.68100213501737],[-121.40370165199006,38.676147398910416],[-121.40370199454397,38.67598263167715],[-121.40370291615278,38.67598264272386],[-121.40371116633196,38.67245144512212],[-121.40601863829612,38.67244945265766],[-121.40602291482944,38.670672852397786],[-121.40612799142932,38.67067338445649],[-121.40835830894206,38.67068466480288],[-121.4083568943362,38.67096695511523],[-121.41000243061279,38.67097250777009],[-121.41055492669041,38.67143648666544],[-121.4106596102491,38.67152439887534],[-121.41065688223888,38.67252070676122],[-121.41182558789286,38.67252266767916],[-121.41239475606969,38.672974694345385],[-121.41297452835656,38.67361318485785],[-121.41297496838018,38.673746530853926],[-121.41520302651847,38.673771912577635],[-121.41529059517596,38.67377211555415],[-121.4152883038282,38.67437907514632],[-121.4175959480916,38.67440652747431],[-121.41760636562972,38.66899492248134],[-121.41528235054028,38.66897722830839],[-121.41528337246619,38.668894856213555],[-121.4153069271507,38.66541307176694],[-121.4153071038912,38.665367310615565],[-121.42216898543495,38.66542262071325],[-121.42217847638658,38.666340821024164],[-121.42452116158071,38.66635297187462],[-121.42451767689985,38.666152882259816],[-121.42668575354934,38.666156032307775],[-121.42685377197961,38.666156275830055],[-121.42685387251335,38.66726567967867],[-121.429137511229,38.66728973154589],[-121.42914691405298,38.66900133008003],[-121.42914690480377,38.66901324080074],[-121.42914651997455,38.669034737023416],[-121.42914565486696,38.669056225475515],[-121.42914293617133,38.6691091254024],[-121.42923505889999,38.66911018173911],[-121.42988215219091,38.66911783818621],[-121.42988225498891,38.66877240666637],[-121.429882318892,38.66855619608484],[-121.42988236581887,38.668394522149576],[-121.42988241757668,38.66822405908068],[-121.42988246541007,38.6680668671126],[-121.42988251659503,38.667894177920545],[-121.43030071482798,38.667895923206316],[-121.43076936355507,38.66789787690427],[-121.43146153186521,38.66790075946271],[-121.43146072152189,38.66731988203986],[-121.43204421686785,38.667326138873776],[-121.43262295654405,38.667332342465315],[-121.43283597446988,38.667334624575425],[-121.43304488009966,38.66733686095527],[-121.43332287477234,38.66733983923887],[-121.43377973992132,38.66734473037162],[-121.43424596039462,38.66734972122041],[-121.43493908943948,38.66735713545741],[-121.43540068184538,38.667362072073345],[-121.43610157157698,38.667369562203355],[-121.43610249228824,38.668276658402235],[-121.43665152666193,38.6682815856233],[-121.43719355881602,38.668286449219245],[-121.43774798352379,38.66829141813832],[-121.43824056896064,38.66829583248348],[-121.4383806617377,38.66829708789432],[-121.4383731675458,38.66909456702889],[-121.43837312243157,38.66909781184117],[-121.4383728850969,38.669105907052234],[-121.43837246621916,38.669113999581946],[-121.43837186814632,38.66912208313536],[-121.43837108858,38.66913015770134],[-121.43837012983973,38.66913822058847],[-121.43836899309579,38.66914626909967],[-121.43836767607125,38.66915430052127],[-121.43835654948343,38.66921778777487],[-121.43886021868056,38.66922473152498],[-121.43885963923701,38.66914233268712],[-121.44163813155313,38.66918059272037],[-121.44163832815568,38.66926298427921],[-121.44298210519506,38.66928146451986],[-121.44349249246184,38.669288479879484],[-121.44712200111022,38.66933829897606],[-121.4471921521049,38.66932195344551],[-121.44726210808756,38.669340219382754],[-121.44761207257697,38.669342894801936],[-121.45001452888224,38.66936271019801],[-121.45228738976259,38.669381409482575],[-121.45313800768264,38.669388395761615],[-121.4534110847838,38.669403612471214],[-121.45675549166553,38.66942198265991],[-121.45686406782367,38.66943246976514],[-121.45689803540911,38.669432915399675],[-121.45689826237283,38.669350531341074],[-121.45712381295183,38.66935349686865],[-121.45713052374,38.66903983637035],[-121.4571935378226,38.66894255273156],[-121.45826499569492,38.668947338944506],[-121.45849306256886,38.66892584074008],[-121.45876228964939,38.668879602889135],[-121.45932410252291,38.66871759773444],[-121.4604765404471,38.66832213993755],[-121.4611078580585,38.668325076619254],[-121.46192819551958,38.66837835199467],[-121.46234919679328,38.66836381817253],[-121.46300255110343,38.66823493762102],[-121.46330880465118,38.668087959560715],[-121.46418187345128,38.66812497583769],[-121.46511776659918,38.66820349681587],[-121.4657902424755,38.668330261114725],[-121.46595803653796,38.6684052320212],[-121.46582985650302,38.6686602137089],[-121.46605086520502,38.66875943314167],[-121.46604798375459,38.66947050013662],[-121.46604646968629,38.66984378993351],[-121.46645584368608,38.669846114523764],[-121.47069255062888,38.66987008425328],[-121.4754270275648,38.66991008509741],[-121.4754523268191,38.66991029958108],[-121.47545229548618,38.669965436899304],[-121.4763950545329,38.669976333325934],[-121.47680073127745,38.669981020877266],[-121.47696837299846,38.670852567726854],[-121.47720501544316,38.67085388925822],[-121.47755834099392,38.6708496804272],[-121.47834189423997,38.67084688667222],[-121.47839061415709,38.670958179895],[-121.4785916089443,38.67128778810394],[-121.47886255836598,38.671585025105884],[-121.47919523529278,38.6718408616204],[-121.4795795286241,38.672047522051265],[-121.48412536667722,38.67405943118316],[-121.4841228872034,38.67403237801233],[-121.48412064562568,38.6740045304106],[-121.48411914849227,38.673979256372405],[-121.48452277455046,38.67417191794929],[-121.48487759389525,38.6744165950812],[-121.48517282561716,38.6747058539067],[-121.48539950121412,38.675030906488374],[-121.48555072933677,38.67538187587757],[-121.4856143903703,38.675675505639866],[-121.48562769739985,38.67625806015452],[-121.48567408665274,38.67808087601396],[-121.48801886706478,38.67808978803871],[-121.48802298999274,38.67867084031351],[-121.49295995285492,38.67868944997864],[-121.4930956062346,38.67863157970713],[-121.4933616515747,38.678632576881654],[-121.49340883530434,38.684942559814736],[-121.49329269708917,38.68494211538072],[-121.493293682404,38.68507941308782],[-121.4935038851251,38.68507982523331],[-121.49350486944326,38.68521715896725],[-121.49350480267049,38.685217497411344],[-121.5029227513003,38.68525116910725],[-121.50295720330277,38.68521739910145],[-121.50809313383809,38.685217335164126],[-121.51603012424816,38.68519856356904],[-121.52176841481035,38.685229925259776],[-121.52299934830316,38.68530433119848],[-121.52299971996105,38.68530478587589]]]},"properties":{"ZIP5":"95673","PO_NAME":"RIO LINDA","Shape_STAr":364119604.908,"Shape_STLe":121252.400462}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.48080467913354,38.58486759294934],[-121.48104307185804,38.5843181019749],[-121.48122016575748,38.58424932475384],[-121.48149374471895,38.584322263462006],[-121.48158555934833,38.58410876653914],[-121.48167190024498,38.583907994533405],[-121.48139935229314,38.58383520590184],[-121.48127792636691,38.583773741492244],[-121.4815163167799,38.58322356307029],[-121.48156033668175,38.58311947686722],[-121.48160988270482,38.58300577939708],[-121.48164758955156,38.5829192486017],[-121.48169331269537,38.582814322230774],[-121.481752968636,38.58267742141309],[-121.48180645918308,38.58255467038575],[-121.48185181536233,38.582450584649784],[-121.48194637088844,38.5822335916224],[-121.48198954718531,38.58212902130682],[-121.48216723430603,38.58206049666704],[-121.48222069784313,38.58207475734028],[-121.48230657440745,38.58188440076773],[-121.48238218269898,38.58190507387058],[-121.48251570835976,38.58194134448174],[-121.48256106557602,38.58183660262473],[-121.48261716047094,38.5817070638005],[-121.48235093665758,38.581635913734885],[-121.48222970693776,38.58157438632046],[-121.48237343644594,38.58158391276002],[-121.48263967612262,38.581655067350106],[-121.48267496872293,38.58157356775825],[-121.48271947101843,38.58147080039003],[-121.48257159337844,38.58142968931308],[-121.48245427437924,38.581397074077906],[-121.4825512041644,38.58117304166165],[-121.48246451710722,38.58103379984422],[-121.48264119736221,38.58096503755756],[-121.48272774420407,38.580765001735514],[-121.48285370413024,38.58079831114895],[-121.48298853736675,38.580833966346525],[-121.48303350924661,38.58073089104874],[-121.48308077202417,38.58062256202186],[-121.48281954678382,38.580552816409266],[-121.48269758367486,38.5804914880018],[-121.48293595944756,38.5799406192701],[-121.48311418520629,38.579871798312226],[-121.48338869060079,38.579945025939395],[-121.48351437472733,38.57965707357582],[-121.48364789989898,38.579693067222344],[-121.4837055684891,38.579560615093804],[-121.48357203527408,38.57952497012391],[-121.48329610440958,38.57945131133918],[-121.48317432675665,38.57939009326232],[-121.48331860167221,38.57939931017336],[-121.48359159076867,38.579472183714806],[-121.48363757214541,38.57936766584996],[-121.48368324535393,38.579263844787974],[-121.48355792692024,38.57923039047933],[-121.48364791472548,38.579022386485946],[-121.48349888319675,38.578982602049535],[-121.4834109140343,38.57884333449076],[-121.4836439387266,38.57830514039988],[-121.48388052510889,38.577757350960724],[-121.48411886773137,38.577208537347964],[-121.48419002660542,38.57704272542727],[-121.48435900046078,38.57665321323976],[-121.48445351591167,38.57643503965798],[-121.48458597397972,38.576469758133676],[-121.48499258755818,38.57657311051117],[-121.48511915622478,38.576276162220154],[-121.48471623639944,38.57616863935228],[-121.48459556577043,38.57610713848674],[-121.4847387315917,38.57611663790743],[-121.48501123095238,38.576189357327486],[-121.48519315858697,38.57576405308176],[-121.48492247334659,38.57569189080071],[-121.4848356861441,38.57555249713771],[-121.48507224796877,38.57500573403277],[-121.48532125897394,38.57442985025867],[-121.4855684947817,38.57385704904967],[-121.48580327156847,38.57331405311229],[-121.48598077592877,38.573245352542294],[-121.48607443924712,38.57302881621778],[-121.4863393247416,38.57310130416617],[-121.48642627767254,38.57290250707574],[-121.48615987567024,38.57283130087428],[-121.48603804990444,38.57277002699148],[-121.48618236875792,38.572779299145935],[-121.48631604837713,38.57281503009709],[-121.48638982188758,38.57264704017765],[-121.48625603530948,38.57260898992717],[-121.48636802705244,38.57235007814384],[-121.48627992881114,38.57221092838054],[-121.48645799913376,38.572142071946494],[-121.48651443259712,38.57201160035065],[-121.48679301483907,38.572077498512066],[-121.48690933934283,38.571800391992554],[-121.48663715053735,38.57172788465175],[-121.48651645118836,38.57166656580986],[-121.48665964292279,38.57167588373063],[-121.48692928882734,38.571747713085074],[-121.4871107443789,38.57132855872971],[-121.48702464149368,38.57130560703703],[-121.48700327632443,38.571353787815134],[-121.486818909174,38.57130766813127],[-121.48684097652006,38.571256649070776],[-121.48675300567916,38.57111739662478],[-121.48693094470255,38.57104864159618],[-121.48702308986798,38.570835603182694],[-121.48716171080984,38.57087312623292],[-121.48720531788709,38.57077205951199],[-121.48733978972552,38.57080712073691],[-121.48738323752791,38.570706938826305],[-121.48711022011304,38.57063415864184],[-121.48698952443064,38.570572690753075],[-121.48713271181532,38.570582156726985],[-121.48740522166351,38.570654801278955],[-121.48753947471302,38.570690589228285],[-121.48767204306604,38.57072592902659],[-121.48780401711525,38.570761109286806],[-121.48793543579669,38.57079614099398],[-121.48798191139274,38.57068920832297],[-121.4881209336363,38.57036933813712],[-121.48838760614801,38.57044037439015],[-121.48856494605316,38.57037165565692],[-121.48990726717528,38.570729058790114],[-121.48999394503251,38.57086825717251],[-121.48980840879669,38.57129539884887],[-121.49047647578195,38.571473468427946],[-121.49066201279834,38.57104620317912],[-121.49105948373631,38.57115207159174],[-121.49123737972505,38.57108330346605],[-121.4913244657841,38.571222649478266],[-121.4912675275956,38.571353772509134],[-121.49139286770173,38.571387734830886],[-121.49135361976346,38.571479344825754],[-121.49148738537086,38.57151558549588],[-121.49147604396907,38.571541831944735],[-121.49144168488206,38.57162134008012],[-121.49139929452178,38.57171943355118],[-121.49152928499004,38.57175408011431],[-121.49160716192246,38.57157184826188],[-121.49162941125219,38.571519782260935],[-121.49172877375774,38.5715462644002],[-121.49182151253629,38.571570982249455],[-121.49191425023804,38.57159569911843],[-121.49193902705,38.571598153799414],[-121.49203231459609,38.571601422639915],[-121.49211817778047,38.571624949724786],[-121.49220404102154,38.571648476745935],[-121.49218142897062,38.5717004475711],[-121.4922871065987,38.5717294037672],[-121.49238472680194,38.57150504197957],[-121.49256226860976,38.57143648017575],[-121.49264971147173,38.57157561683213],[-121.49256491686367,38.57177050457461],[-121.49282824645135,38.57184063752587],[-121.49291884982757,38.57185751904896],[-121.49300945209917,38.57187440049613],[-121.49309722884647,38.57189777757569],[-121.49327278250732,38.571944532436035],[-121.49389552863842,38.57211038478211],[-121.49397481334749,38.571928527785886],[-121.4941525165941,38.57185978677481],[-121.4941821794066,38.57186781725296],[-121.49548091564805,38.5722136389785],[-121.4955677926268,38.57235275742013],[-121.49548702071955,38.572538521601686],[-121.49554903607793,38.572555381867815],[-121.49555839323794,38.57253463716267],[-121.49570273108006,38.57257330098224],[-121.49568887233073,38.572604226036226],[-121.49577268045299,38.57262691892834],[-121.49578672132456,38.57259603790072],[-121.49592894501339,38.572634455292956],[-121.49598272364055,38.57264898127317],[-121.49612400258921,38.57268714296135],[-121.49626528856169,38.57272530630877],[-121.49625083327103,38.57275672072258],[-121.49633402994053,38.572778946584314],[-121.49634738532528,38.57274678863985],[-121.49649233584232,38.57278591719738],[-121.49647504389543,38.57282496160383],[-121.49655115997913,38.57284574300414],[-121.49664092634747,38.57263853082578],[-121.49681806447204,38.57256990759352],[-121.49815348730839,38.572925125298276],[-121.49824099097742,38.573064601177364],[-121.49851997655527,38.57313888807051],[-121.49847231883535,38.57324834950092],[-121.49842706846835,38.573352282633046],[-121.49838181796949,38.573456215747285],[-121.49833656619121,38.57356014883865],[-121.49846764249168,38.57359506165377],[-121.49860648279628,38.57363204307204],[-121.49874564970531,38.57366911042162],[-121.49877589573533,38.57359986246981],[-121.49880615336578,38.573530588434515],[-121.49883641094385,38.57346131349033],[-121.49888179136482,38.57335741499774],[-121.49897745823066,38.57338289652037],[-121.4990688766871,38.57340724607231],[-121.49916029635348,38.57343159555698],[-121.49925783623232,38.573457575938875],[-121.49930532612728,38.573348001753075],[-121.49948368288905,38.573279275213125],[-121.49957032334011,38.57341856075655],[-121.49952519008137,38.57352269932082],[-121.4997978064267,38.57359743936547],[-121.4997515189713,38.57370287752706],[-121.49970624017708,38.573806016438354],[-121.4996480907074,38.57393847161894],[-121.49978237220563,38.573974236427965],[-121.49984811611297,38.573991746524605],[-121.49991558626212,38.57400971719164],[-121.50004847857764,38.574045111727685],[-121.50017888994573,38.57407984495193],[-121.50042883568264,38.57414641448532],[-121.50112439106626,38.57433518688398],[-121.5013625954371,38.57377975582652],[-121.5021284011159,38.573983685951646],[-121.50221577448214,38.57412290327068],[-121.50211346357904,38.57436013045291],[-121.50245293455987,38.574447801211555],[-121.5024131267981,38.57455631690219],[-121.50313156701098,38.57473285941483],[-121.50327390747657,38.574404607224544],[-121.5034516524971,38.57433604402373],[-121.5047819018312,38.57469013305478],[-121.50610169100986,38.57504141528393],[-121.5074337074022,38.575396166847355],[-121.51047962270094,38.57620730530205],[-121.50998576808698,38.57688123625941],[-121.50982984758666,38.57715412229459],[-121.50940156101386,38.577903682001796],[-121.50853758960356,38.579926160414644],[-121.50804132934768,38.58137802512297],[-121.50757883596228,38.58249640092927],[-121.50713150164096,38.583857598370514],[-121.50664793305823,38.58532898862009],[-121.50639803581714,38.5863051465302],[-121.50304348151552,38.58536651042784],[-121.50242822585173,38.58521281932413],[-121.50231562223519,38.58518144454121],[-121.50153886722283,38.58501026168546],[-121.50124286591148,38.58494102608755],[-121.50026443913993,38.58471953987905],[-121.50015441769517,38.58469435247569],[-121.4990823598028,38.584448392660235],[-121.4988988421709,38.58440663209484],[-121.49868116234734,38.584382534036905],[-121.49851096016995,38.584383578023306],[-121.49832477311342,38.58439880197033],[-121.49815443305164,38.58441943752166],[-121.49803624629978,38.58444564305903],[-121.49793625082863,38.58446658324592],[-121.4974515811897,38.58465328492681],[-121.49702340101895,38.58487407126394],[-121.49690255457698,38.58495548001427],[-121.49675652049268,38.58506884025369],[-121.49661028482659,38.585210698380635],[-121.49649356179272,38.58535090360008],[-121.4963557475013,38.58558541825665],[-121.49609962208751,38.5861845582995],[-121.49608112816114,38.586232568544496],[-121.4958362380293,38.586846244224624],[-121.49574983811085,38.587005471630555],[-121.4956093654158,38.58720462267519],[-121.49544024942843,38.587372757009035],[-121.49533203347448,38.58746289931564],[-121.49505924030322,38.58763572978126],[-121.49480129152771,38.58774993189796],[-121.49450952605837,38.58782279684229],[-121.49436235922518,38.58785510453488],[-121.49369912723503,38.58795414721014],[-121.49331036603307,38.588014229174284],[-121.49246269017303,38.58814577083531],[-121.49224458269428,38.58818043782022],[-121.49141539239994,38.5883014808753],[-121.49121770786357,38.588336235634515],[-121.49023856047553,38.58848154716095],[-121.49011132547503,38.588502360695735],[-121.48950705960276,38.58858697607213],[-121.48914822498632,38.58862457884563],[-121.4890642214758,38.588629551409745],[-121.48861257415125,38.58863468273072],[-121.48819861208462,38.58860613579525],[-121.48800361625396,38.58858211887169],[-121.48798907871472,38.5885800627055],[-121.4878252059099,38.58855231375217],[-121.48755713459266,38.588499990963435],[-121.48723999128302,38.58842021524546],[-121.48691840112377,38.58832795054227],[-121.48623668384997,38.58815295912175],[-121.4859466974008,38.58806893369785],[-121.48583345050749,38.588038150827565],[-121.48523774039147,38.58788054252405],[-121.4847983428647,38.58776103110817],[-121.4838447715628,38.587507419551144],[-121.48335555792032,38.58737343107004],[-121.48283912908903,38.58723753788527],[-121.48197616022581,38.58700925324716],[-121.48178819830723,38.58695497635099],[-121.48077129050918,38.58667612086588],[-121.48009671398142,38.5864937990793],[-121.48009068381167,38.58649216930619],[-121.48056804324479,38.58541537691806],[-121.48080467913354,38.58486759294934]]]},"properties":{"ZIP5":"95814","PO_NAME":"SACRAMENTO","Shape_STAr":36153637.498,"Shape_STLe":30771.0974393}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.4349803493379,38.510509390234695],[-121.43498126430356,38.509886902346594],[-121.43457941528438,38.50989036645997],[-121.43374162934026,38.50989758307145],[-121.43373726238528,38.50954692767235],[-121.43373633913808,38.509472789864446],[-121.43445106386841,38.509470993252464],[-121.43445888061369,38.5094160549346],[-121.43387978648774,38.50811976591417],[-121.43413895376024,38.50803207390446],[-121.43449098126221,38.50792906424062],[-121.43440394232468,38.50773987658812],[-121.43439899072003,38.507740126246674],[-121.43380435714685,38.50777014554131],[-121.43176293142007,38.50848158468415],[-121.43156728577682,38.50855788631436],[-121.43139037792969,38.508660246393255],[-121.43139035094808,38.50865729941514],[-121.43138613803336,38.508197473507515],[-121.43177178823014,38.50811076081014],[-121.43177399010109,38.508110266222914],[-121.43181829325151,38.50811827486536],[-121.43234041769914,38.50821265307796],[-121.43234550222914,38.50821357172672],[-121.43234412864322,38.508030983098564],[-121.43234290977054,38.507869028552385],[-121.43234209289884,38.50776034892432],[-121.43234126810046,38.50765079178036],[-121.43234045444667,38.50754271757324],[-121.43335595047776,38.50724512457355],[-121.43311005188639,38.50670729913852],[-121.4327518768395,38.50592388483111],[-121.43274988732945,38.5059226246233],[-121.43298966530796,38.505866382444445],[-121.43277313920606,38.505384469598674],[-121.43269264918092,38.50520532444829],[-121.43255432796893,38.5048974622419],[-121.43305271341514,38.504872549768606],[-121.4330144777235,38.5047944317372],[-121.43298529475,38.50473480671487],[-121.43291167963035,38.504588102611216],[-121.4329068514348,38.50458857533236],[-121.43227567180469,38.504650417325095],[-121.43227569661624,38.504649892221984],[-121.43230560736372,38.50403006460493],[-121.43218968255847,38.50402607568446],[-121.43200057060723,38.50399847588197],[-121.43176412805349,38.503946876569096],[-121.43175198693643,38.50318959476964],[-121.43174691007653,38.503189631085185],[-121.4313635312264,38.50319240342406],[-121.43136350305352,38.503192342024285],[-121.43120821518315,38.50284885331268],[-121.43191067753347,38.502838576382175],[-121.43221850085803,38.50273665119101],[-121.43191712593908,38.50209527240539],[-121.4319121251925,38.50209540639895],[-121.42845018999724,38.50218827830891],[-121.42845037935668,38.50218811077635],[-121.42892230735949,38.5017720350993],[-121.42963152812143,38.501313488482566],[-121.42963476288217,38.50131139723008],[-121.43003181903902,38.50176771051559],[-121.43004385046869,38.50177998782577],[-121.43006569480696,38.50179666124168],[-121.43009089423555,38.501810102540155],[-121.43011868047992,38.50181989982513],[-121.43014820752748,38.50182575703413],[-121.43017737246727,38.50182742686752],[-121.43017858141984,38.50182749588742],[-121.43065319592417,38.501822072214686],[-121.43047837309764,38.50147228632024],[-121.43083904008505,38.501349362895894],[-121.43060685460091,38.50087345978285],[-121.43060265484345,38.500875231896664],[-121.43012444913757,38.501077042961214],[-121.43007540812373,38.50109800307985],[-121.429994881646,38.50113357375292],[-121.42999325690778,38.501132023402924],[-121.42943678691941,38.500601189357546],[-121.42912256745842,38.49989766410062],[-121.4289146139813,38.49943205100528],[-121.42966095301384,38.49940985322866],[-121.42960044842945,38.498823728901485],[-121.4303697814851,38.49880205531331],[-121.42998188580992,38.497976444284895],[-121.429977379033,38.49797763468189],[-121.4292890560848,38.49815941169782],[-121.42928846618615,38.49815820248065],[-121.42906277993757,38.497695878694906],[-121.42905892927166,38.497603670525876],[-121.42973577797873,38.49745261308286],[-121.42962614826949,38.49721926708602],[-121.42945001095889,38.496842770389556],[-121.42906577424672,38.496017978750764],[-121.42906070963208,38.49601798077211],[-121.42805153940989,38.49601829374091],[-121.42789774855989,38.496018340184335],[-121.42789774648375,38.49601831314703],[-121.42787050130633,38.49560672891419],[-121.42786542538765,38.495606714610915],[-121.42752202976801,38.49560613039253],[-121.42745376375245,38.494397512531954],[-121.42739217962607,38.49330713489537],[-121.42683210984028,38.49260350979776],[-121.42681353221288,38.49258016906612],[-121.4267206612275,38.4924634933754],[-121.42650356551472,38.492190746632744],[-121.4261676550427,38.49182055676423],[-121.42601854227846,38.49116529877039],[-121.42475147928396,38.49118701384247],[-121.42474839760432,38.49103194266971],[-121.42474523376286,38.49087269991741],[-121.42474206878204,38.4907134580604],[-121.42473890382259,38.4905542153027],[-121.42473574002345,38.49039497255076],[-121.42473257509221,38.49023572979327],[-121.4247294113213,38.4900764870416],[-121.4247262464183,38.48991724428436],[-121.42472308266835,38.48975800243384],[-121.42471977029975,38.489591312997824],[-121.42471922459549,38.48956385713247],[-121.42426688037601,38.48956909847187],[-121.42420626317909,38.489569801131886],[-121.42413431514146,38.48956469147306],[-121.42405462612038,38.48954512609483],[-121.4240015798245,38.489522389783254],[-121.4239498740297,38.489490069135066],[-121.42388854864177,38.489429790625366],[-121.42385315550887,38.48936788004081],[-121.42381436214218,38.48926866421454],[-121.42369071528485,38.48895243449029],[-121.42367808191288,38.48892012377473],[-121.42343870400408,38.488808675420564],[-121.42352738219769,38.488807907667926],[-121.42376223685804,38.48880587384096],[-121.42384550212047,38.488805152741826],[-121.42399803434493,38.488803761350965],[-121.42399495903652,38.48750178845805],[-121.4250974062274,38.48749838973549],[-121.42489713385864,38.48706837130024],[-121.42489207775648,38.487068391196225],[-121.42304856928956,38.48707552126044],[-121.42304856850726,38.48707547621149],[-121.42304584636774,38.486639538308445],[-121.42304076966458,38.48663955802053],[-121.42255472556121,38.48664143340934],[-121.42255472477915,38.486641388360376],[-121.42254419231334,38.4849535078063],[-121.42390940133004,38.48494747230625],[-121.42318526706576,38.483392492620276],[-121.42268555901677,38.482319399404666],[-121.4226805123097,38.48231943276269],[-121.42180407398574,38.48232516917787],[-121.42180404695353,38.4823251104841],[-121.42148317719594,38.48163602063064],[-121.4214781225943,38.481636043986526],[-121.41922707726783,38.48164634358679],[-121.41922703755063,38.48164629473863],[-121.41895119014558,38.481309841976646],[-121.42081157396507,38.48129961568098],[-121.42142428253234,38.48078259074022],[-121.42121410297477,38.4803311990518],[-121.42119008819066,38.48027962746999],[-121.42108894117504,38.48006239489316],[-121.42127913051785,38.48000767501776],[-121.42119123003543,38.47981889262407],[-121.42116721774671,38.47976731924757],[-121.42096435698348,38.479331640308104],[-121.42094034273026,38.47928006687326],[-121.42083906044651,38.47906254059913],[-121.4208345940549,38.479063825431325],[-121.42020057254264,38.479246234857015],[-121.42019995625336,38.47924492636067],[-121.42019934335836,38.47924362328679],[-121.4201948229942,38.479244777193045],[-121.42015279256027,38.47925550603532],[-121.42015223825835,38.47925432667846],[-121.42010069893581,38.479144742930394],[-121.42021740028036,38.47911254085684],[-121.42058729422268,38.47910651060237],[-121.42095613159834,38.47900473512903],[-121.42094412339753,38.47897894615359],[-121.42088889034481,38.47886031993647],[-121.42087688218533,38.47883453185493],[-121.42087239670585,38.47883576974607],[-121.41941078764091,38.47923907397286],[-121.41941021459354,38.47923780532906],[-121.41889634212505,38.47809959988437],[-121.41889186082383,38.47810088907091],[-121.41882957520667,38.478118806606524],[-121.41882896583571,38.47811749723658],[-121.4188094816317,38.47807564522397],[-121.4188050164113,38.478076929983494],[-121.41872637132165,38.478099555309406],[-121.41872576081406,38.47809824503232],[-121.41872183085303,38.47808980545096],[-121.41871736563014,38.478091090207116],[-121.41863925237375,38.478113562292165],[-121.4186386418749,38.47811225111378],[-121.41854043086204,38.477901301294445],[-121.41853596450174,38.477902586037814],[-121.41846379390472,38.47792334915367],[-121.41846318341074,38.477922037974345],[-121.41844213378342,38.47787682757292],[-121.41832487801196,38.47762496913926],[-121.41832041281107,38.47762625388006],[-121.41820007522466,38.47766087266814],[-121.41819946587646,38.47765956239404],[-121.41806413565801,38.477368878484505],[-121.41853023633281,38.477234786819615],[-121.41878886057657,38.477079866593414],[-121.41841095467176,38.47626814246162],[-121.41951545239945,38.47595038198444],[-121.4196958667341,38.47589847604214],[-121.4191916488992,38.47481545276285],[-121.41918718159754,38.47481673752557],[-121.41837815205288,38.47504949611698],[-121.41837754272369,38.47504818584385],[-121.41822360440104,38.4747175228929],[-121.41821913938003,38.474718807629756],[-121.41815311175085,38.47473780325155],[-121.41815250128244,38.47473649297149],[-121.41812383220575,38.47467491082126],[-121.4182682575116,38.47433516555122],[-121.41826316683539,38.47433517867251],[-121.41774600381481,38.47433648763413],[-121.41611540402269,38.47434060109039],[-121.41611540434667,38.47434056145237],[-121.41612113996787,38.473125860295816],[-121.41612257292999,38.47282208635644],[-121.41775845102391,38.47280923289107],[-121.41803349105032,38.472807069215875],[-121.41825584450986,38.47280531993758],[-121.418059239374,38.47238299696334],[-121.41784800317699,38.471929231490186],[-121.41783347010968,38.47189785559221],[-121.41782842749352,38.47189789866525],[-121.41776587379388,38.47189843857142],[-121.415211755341,38.47192042164627],[-121.41521175590879,38.471920352279746],[-121.41521214549265,38.471838037103396],[-121.41521735426234,38.47073785495307],[-121.41521227894508,38.470737842791166],[-121.41477195743597,38.47073786215896],[-121.41430748627128,38.4707378656005],[-121.41383827315875,38.47073786745482],[-121.41337861164634,38.47073785551669],[-121.41337591820037,38.47050721380997],[-121.41336661414331,38.46970991576739],[-121.4133579211946,38.4689650767134],[-121.41335284601098,38.46896506356901],[-121.41319592872814,38.46896482835139],[-121.41318611629872,38.467104064181825],[-121.41523179963086,38.46709733767098],[-121.41517838685934,38.46700541426371],[-121.41512005871769,38.46690938758008],[-121.41510048202278,38.46687779211512],[-121.41508719753107,38.46685626092258],[-121.41491482846082,38.46657009207751],[-121.41474884171272,38.4662816012302],[-121.41458928233536,38.46599087692496],[-121.41443620225694,38.46569800683927],[-121.41428964880473,38.465403080428224],[-121.41363020359144,38.46405147700907],[-121.4134210924605,38.46362330772025],[-121.41304288432462,38.462846172117466],[-121.41136155308102,38.45938736062123],[-121.4107549321178,38.45813872206007],[-121.40965017861105,38.45586463902704],[-121.40876381253985,38.454039979980585],[-121.4090965469598,38.45394003843629],[-121.40848993181618,38.45269122554337],[-121.40888984503157,38.452611262696124],[-121.4089430952254,38.452629699926504],[-121.409207017879,38.45314408481678],[-121.40931990169378,38.45314299156484],[-121.41045771329833,38.45313196002003],[-121.41066721334013,38.45312992854871],[-121.41105240086054,38.45312619125758],[-121.41135154288374,38.453123287410975],[-121.41167626856283,38.453120134654284],[-121.4120117105082,38.45311687694991],[-121.41235490921581,38.45311354330004],[-121.41249188368712,38.45311221268884],[-121.41270503057535,38.45311014110841],[-121.41305526991528,38.453106736653666],[-121.41339784981638,38.45310340577334],[-121.41348295407708,38.45347980535219],[-121.41352241887131,38.4534935164458],[-121.4135196349434,38.45347982844172],[-121.41562213926707,38.453481142096386],[-121.41552005936003,38.45252895287851],[-121.41583460806828,38.45252726761232],[-121.4168933990027,38.452521587714095],[-121.41792379108861,38.45251605057823],[-121.41801331677615,38.45251556812657],[-121.41802547474313,38.450415215318586],[-121.4180375282681,38.448332383694364],[-121.41803413242559,38.44833228100716],[-121.41800891232874,38.44803671262604],[-121.41795871846534,38.44767352117592],[-121.41788162176918,38.447221664478604],[-121.41784555755669,38.44697363511733],[-121.41782109996704,38.44676138673291],[-121.41780183279366,38.44655465638439],[-121.41778780414647,38.44634795422845],[-121.41777727269988,38.44614058140371],[-121.41777063324501,38.445666539975385],[-121.41777698058901,38.44489048659879],[-121.41778795227505,38.443543654019315],[-121.41779273211107,38.443385784461775],[-121.41780174356484,38.44313663445495],[-121.41779422786449,38.44192067720084],[-121.417808264819,38.441920660539104],[-121.41790187977799,38.44191364118916],[-121.41779343060767,38.441920676787376],[-121.4177870759719,38.441190790990746],[-121.4177901414068,38.441190774004085],[-121.41778793413869,38.44118865657686],[-121.41777640497882,38.43983534227127],[-121.41777527780901,38.4398353474024],[-121.41777174943854,38.439430135199665],[-121.41775930238174,38.438000168607886],[-121.417778677779,38.43800010498097],[-121.41787877025112,38.43800045615069],[-121.41804198661276,38.43800213870149],[-121.42022987526411,38.43802467200105],[-121.42120661332304,38.43802975812297],[-121.42126468090603,38.438041898529306],[-121.42171422189121,38.438008613318146],[-121.42242685557875,38.43800348231991],[-121.42248254940908,38.43800308142846],[-121.42444399942706,38.437988935362654],[-121.42472034171787,38.43847773184128],[-121.42511007733245,38.439160198911715],[-121.4252743844542,38.439444240353396],[-121.4254711954294,38.439786809791165],[-121.42552802524078,38.43987640127522],[-121.42560984268903,38.43997191694363],[-121.42570776587355,38.4400575495502],[-121.42587906536525,38.44016311873708],[-121.42595842067186,38.44019861477325],[-121.4260417804823,38.440228703624655],[-121.42627597601992,38.44027975044757],[-121.42659408378701,38.44031853127373],[-121.42663301533918,38.440338146068385],[-121.42677353429112,38.440348371184925],[-121.42711322281426,38.4403897666452],[-121.4275940005979,38.44044835380638],[-121.42778282150935,38.44045304039556],[-121.42857818798907,38.44056900700963],[-121.42916471912747,38.44064046099836],[-121.42971093578369,38.44070699952965],[-121.43020431156754,38.44076710014665],[-121.4307148959247,38.440829294246505],[-121.4307757528643,38.44076035000908],[-121.43088525787007,38.44063628867658],[-121.43099476362684,38.44051222904801],[-121.43110426785088,38.44038817021127],[-121.43121377055654,38.44026411036463],[-121.43132327517289,38.44014005042581],[-121.43143277827086,38.440015989477125],[-121.43154228212696,38.43989192933149],[-121.43156031137458,38.439871504544165],[-121.4315575337786,38.4396417650703],[-121.43139977817577,38.43949800257276],[-121.43144239009882,38.439443705126465],[-121.43148215060452,38.43937735311113],[-121.43151517991122,38.439296372489906],[-121.43153036188279,38.43923369411858],[-121.43152941143286,38.438428733812366],[-121.43154159023061,38.43838920009305],[-121.43153267496503,38.43832314190963],[-121.431485375771,38.43826810656537],[-121.43148986233834,38.43793790208078],[-121.43155875553654,38.43793740230036],[-121.43175131240157,38.43793600262601],[-121.43327846216708,38.43792489328571],[-121.43613875454741,38.43790403140724],[-121.43615674928463,38.44145390418961],[-121.43813950738658,38.44146712370451],[-121.43815714481022,38.44149387608481],[-121.43839988284203,38.44184588070921],[-121.43847901532854,38.44194181466414],[-121.43863257599111,38.44213942350799],[-121.43877455984003,38.44231677505239],[-121.43894787143932,38.44252491451529],[-121.43898015343234,38.442554589219434],[-121.4390485650444,38.44261118881561],[-121.43916017312647,38.44268871511775],[-121.43924004330735,38.442735112575626],[-121.4393453483151,38.442786764012055],[-121.43941113900863,38.442814220998685],[-121.43952455939372,38.442853843195614],[-121.43959456810589,38.442873830460314],[-121.43971389557844,38.442900653214835],[-121.4398399190268,38.442919675888405],[-121.43986457673547,38.442941942225005],[-121.43990744839665,38.44296108423673],[-121.43994504728552,38.44296634394565],[-121.43999368237037,38.442960002195626],[-121.44002654114385,38.44294582002312],[-121.44004068866745,38.44293873093856],[-121.44007169070981,38.44293037848333],[-121.44026012825275,38.44292935631416],[-121.4410157418401,38.44293027807381],[-121.44108454965973,38.44293075055409],[-121.44115491263094,38.44293450258029],[-121.4411899264557,38.44293782416006],[-121.44125940471619,38.44294734120208],[-121.44134478885445,38.4429645558092],[-121.44141151964575,38.442982503603794],[-121.441476494801,38.443004066289966],[-121.44155476658229,38.443035946333985],[-121.44164358679728,38.44308109889161],[-121.44172591656246,38.44313330649511],[-121.44181257200677,38.4432023655323],[-121.44188788010476,38.44327921292436],[-121.44193715737283,38.44334129764489],[-121.44204753653699,38.44348507813363],[-121.44216275040066,38.443638080935735],[-121.44250503349751,38.44407864815151],[-121.44284002780208,38.444517378296325],[-121.44296083151906,38.44466703337519],[-121.44320712317045,38.44504739438155],[-121.44353412972961,38.4454963641513],[-121.44360330739957,38.445581783571996],[-121.44369509333156,38.44566637305626],[-121.44374503285778,38.44572635117726],[-121.44379760328863,38.44578492212275],[-121.44385273989441,38.44584201350577],[-121.44391037676415,38.445897557437945],[-121.44397044455658,38.44595148511355],[-121.44403284539003,38.44600371497697],[-121.44431063275586,38.446226020047646],[-121.44432457221222,38.446237174443134],[-121.44449208042664,38.446272928392226],[-121.44449020097049,38.447034683520464],[-121.44450285569917,38.44752949647224],[-121.44453078434293,38.44832163988771],[-121.44454115602981,38.44861575129542],[-121.44454767776638,38.448800748927944],[-121.44460556880887,38.450442531016016],[-121.44460983608442,38.450546035998855],[-121.44461448388908,38.45063477797559],[-121.44463531836682,38.450916921674285],[-121.4446489012719,38.4510551641466],[-121.44466533321211,38.451198446424186],[-121.4447045319625,38.45147935313542],[-121.44475187980314,38.4517540908915],[-121.44475287783267,38.45175937675707],[-121.44481034027912,38.45203833334697],[-121.44482616753913,38.45210807050261],[-121.44486722126794,38.452150773936374],[-121.44487213617181,38.45218911098182],[-121.44487976868804,38.452248670047375],[-121.44488248969161,38.452269897489344],[-121.4448882529863,38.4523081584293],[-121.44489522620866,38.45238814401563],[-121.44728640798103,38.45239292747788],[-121.44865096374225,38.452395269948475],[-121.4493524465794,38.45239646764165],[-121.45435860824915,38.452404894448634],[-121.45982738745924,38.452520525896176],[-121.46011007863504,38.45252649641902],[-121.46032436475772,38.45434840351852],[-121.46013786968643,38.45435241626077],[-121.46034806445272,38.45611248730596],[-121.46067125036338,38.4588185320689],[-121.46083397709153,38.460091832613216],[-121.46100711071846,38.460073618571954],[-121.46122608060955,38.461608470143666],[-121.46150503041505,38.46356366439496],[-121.46150227034337,38.4638771308051],[-121.46157549403891,38.464730001881605],[-121.46190146995183,38.46589018318165],[-121.46227463331992,38.46710524055899],[-121.46303761423485,38.46958945942708],[-121.46290893391706,38.46960446876698],[-121.46320885442692,38.47060408872855],[-121.46334545795186,38.47059173203887],[-121.46339493219904,38.47075279908052],[-121.46345219763096,38.47093924273031],[-121.4635276306933,38.47118482815132],[-121.46360159104908,38.471425618413555],[-121.46368668894593,38.47170266289666],[-121.46352749277182,38.47166606124075],[-121.46381401591954,38.47260427794542],[-121.4642176639418,38.47392598615018],[-121.46427180824047,38.47410273926743],[-121.4643046666042,38.47420999752917],[-121.4643892581615,38.47448614003481],[-121.46443030407022,38.47462013611573],[-121.46447244086183,38.474757684972474],[-121.46456681853935,38.47506576627755],[-121.46465190433172,38.475343515373574],[-121.4647016633832,38.475505947116275],[-121.46475025035986,38.47566454369173],[-121.4647998733818,38.475826529717224],[-121.46489162718818,38.47612604096844],[-121.46499809819326,38.47647358317568],[-121.46512343376584,38.47688270607635],[-121.46516458425361,38.47701703119967],[-121.46518872604538,38.47709583004054],[-121.46531588175755,38.47751088274991],[-121.46537759410536,38.477712320711674],[-121.4654939090417,38.47810394387514],[-121.46553883539426,38.4782572015774],[-121.46558995427306,38.47843158512202],[-121.46564037941711,38.47860359877702],[-121.46569263312578,38.4787818505716],[-121.46574456186457,38.47895899543786],[-121.46579540796023,38.47913244249548],[-121.46585613234593,38.47932383061263],[-121.46591311281051,38.47950341224686],[-121.46596943626555,38.47968092595848],[-121.46602545433988,38.47985747336928],[-121.46607990625643,38.480029076596836],[-121.46621906927295,38.48046766203929],[-121.46628947166624,38.48068953505399],[-121.46633944804879,38.480847037356085],[-121.4663906295077,38.48100833617758],[-121.46647025078518,38.481259263252795],[-121.46650219644114,38.48135993739727],[-121.4665543640098,38.481524344288516],[-121.46598398345294,38.48152819939143],[-121.46611868104655,38.481951930135274],[-121.46622701988225,38.482292738370475],[-121.46632995550208,38.48261654593459],[-121.46638148972733,38.482778658095114],[-121.46649451649786,38.48313420027673],[-121.46657567580148,38.48338949832065],[-121.46659956209425,38.483464637128996],[-121.46663194615175,38.48356876820187],[-121.46664201070155,38.483601132553524],[-121.46673402710447,38.48389701017639],[-121.46681535384579,38.48415851420534],[-121.46688216047673,38.48437332253355],[-121.46698173306737,38.48469349688361],[-121.46705299778344,38.48492264363718],[-121.46713138193994,38.485174673539795],[-121.46723599827416,38.48551105734667],[-121.46729252063011,38.48569279201269],[-121.46736236801193,38.485917373493564],[-121.46746259414972,38.48623963330189],[-121.46751791210289,38.486417491146845],[-121.46752821924383,38.48645063220914],[-121.46764433764872,38.48682397750113],[-121.46775043418471,38.48716510276168],[-121.46782704564359,38.48741141862693],[-121.46791976476011,38.4877095255266],[-121.46798455966326,38.48791785278538],[-121.4679953631872,38.48795258166927],[-121.46810467246827,38.488304025848514],[-121.46823252078036,38.48871506491402],[-121.46825175499461,38.48877690723883],[-121.46835741846463,38.489100919171236],[-121.46889263474237,38.490742087334766],[-121.46893667544673,38.49232304876003],[-121.46937500604702,38.49232171693401],[-121.46999281300722,38.49438132416782],[-121.47005859442008,38.49460061506813],[-121.47035729055229,38.49559634173998],[-121.47027055058247,38.495609866896466],[-121.47035051676859,38.49587643687047],[-121.47066304395254,38.49587055081756],[-121.47155491843624,38.49895231302916],[-121.47182087915009,38.49987125578911],[-121.47188733434827,38.50010086667047],[-121.47203364370326,38.50060637906888],[-121.47284732338245,38.50303222010816],[-121.47284995954858,38.503040080747716],[-121.47341612800763,38.504865446029015],[-121.47341804851459,38.5048716475461],[-121.47364383274927,38.50560075946948],[-121.47374280783075,38.50592037009766],[-121.47377345283634,38.50601933173683],[-121.4737860085935,38.508388539674826],[-121.47378656160254,38.50849288689505],[-121.47145505369818,38.50848225557595],[-121.47145543986497,38.508430084530396],[-121.47125647634249,38.50842917511051],[-121.47124968527945,38.5093462898661],[-121.4709642091295,38.50934498441751],[-121.47096258162827,38.50956465197134],[-121.47039107038935,38.50956203640073],[-121.47039000569268,38.509705585142115],[-121.4698790853251,38.509703244479915],[-121.46929310606379,38.509700557174135],[-121.46928818196321,38.51036307405005],[-121.46926781207452,38.510363033733135],[-121.4669788688224,38.5103525077677],[-121.46690825436984,38.51035218231878],[-121.4666295251392,38.509828696948716],[-121.4660273111858,38.509825918232906],[-121.46602622881166,38.509625371448045],[-121.46535479017587,38.5096222696058],[-121.46535779430762,38.51018026846046],[-121.46535868297727,38.510345029777724],[-121.46458964501713,38.5103414723289],[-121.46458622461773,38.50970476720519],[-121.46371829672137,38.50970721275289],[-121.46372049310379,38.509414766945376],[-121.46458465317794,38.509412332784166],[-121.46457583064135,38.50777051164829],[-121.46222572967204,38.50777711615025],[-121.46223449817418,38.50941893746489],[-121.46151648604692,38.50942094450796],[-121.46151077404535,38.509409971094094],[-121.46150275237615,38.50939389234437],[-121.4614950880958,38.509377707150186],[-121.46148778577665,38.509361417334794],[-121.46148084535047,38.50934503190686],[-121.46147427024982,38.50932855178338],[-121.46141802807891,38.509218294672486],[-121.4613373844084,38.50911600945497],[-121.46123536260697,38.509026280422134],[-121.46111506076578,38.50895183455816],[-121.46098013421985,38.50889493388135],[-121.46083468371022,38.50885730646234],[-121.46068312620561,38.50884009717997],[-121.46053006794058,38.50884382929674],[-121.45999291561635,38.50889398100803],[-121.45993497320673,38.50889775279277],[-121.4597928028416,38.50889325641644],[-121.4596537884976,38.50886942870957],[-121.45952215100459,38.508826995712184],[-121.45940189135986,38.508767245516566],[-121.4592999048731,38.5086947392121],[-121.45921225141026,38.50860667554767],[-121.45897600590234,38.50870277945996],[-121.45858238791018,38.50810538392472],[-121.45857039567102,38.50808745575413],[-121.45855300245634,38.50806236807973],[-121.4585350547802,38.50803752285133],[-121.45851655602783,38.50801292729174],[-121.45849751645673,38.507988589556795],[-121.45847793831234,38.50796451596303],[-121.4584578284057,38.50794071555102],[-121.45843719242188,38.50791719465344],[-121.45818045046563,38.50763520091121],[-121.457917195332,38.5073564562352],[-121.45764779203289,38.5070813640933],[-121.45745291958826,38.507201334510846],[-121.45809777108173,38.508071536888416],[-121.45813159438634,38.50812756820769],[-121.45815896596662,38.50820099537808],[-121.45816969617889,38.50827704367428],[-121.45816345283296,38.508353398937466],[-121.45814043347293,38.508427743177016],[-121.45811397782965,38.508489247016946],[-121.45539397349377,38.50993705721298],[-121.4553957937941,38.50956685213659],[-121.45430702328683,38.509569311281936],[-121.45430070744844,38.510395742894346],[-121.4539488857414,38.51039653466805],[-121.45395694956834,38.50934205410129],[-121.45309324376129,38.50934399478735],[-121.45308883499021,38.509919608871165],[-121.45240086561999,38.50992114915596],[-121.45240485655097,38.50940074380116],[-121.4521716254694,38.509399639314196],[-121.45217118036986,38.509328682382886],[-121.4515282030461,38.50932563506419],[-121.4515302991317,38.509661326376516],[-121.45065312037727,38.50966327866156],[-121.45065147786089,38.509876774989465],[-121.44976875836943,38.50987873390271],[-121.44975967166373,38.508575481176145],[-121.44891919220976,38.50857939393523],[-121.4460682809299,38.50859261624616],[-121.44607032611928,38.5104139954695],[-121.44560264097046,38.5104150150021],[-121.44560632006622,38.509941158534744],[-121.44362077130995,38.5099449024639],[-121.4433083174703,38.50992047468855],[-121.443126727158,38.50990253116761],[-121.44276115083765,38.50986424434241],[-121.44208279876152,38.509420566510244],[-121.441550660563,38.509285584980624],[-121.44155280264818,38.509967845892305],[-121.4384238797799,38.51000144275536],[-121.43819517942251,38.51000453118677],[-121.43819380608399,38.510179080211486],[-121.4377149761676,38.51017675335023],[-121.43772048467628,38.50947722219157],[-121.43763338840164,38.509318740317234],[-121.43683076172466,38.50931483491445],[-121.43683104293127,38.50936800470821],[-121.43683643508076,38.51038610129384],[-121.43683701690911,38.51049594187405],[-121.43592441996272,38.51050675418376],[-121.43586302552485,38.51050738627746],[-121.43572702546673,38.51050809492372],[-121.4349803493379,38.510509390234695]]]},"properties":{"ZIP5":"95823","PO_NAME":"SACRAMENTO","Shape_STAr":303468677.745,"Shape_STLe":105355.547884}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.37566543159161,38.70402248243683],[-121.38033916873069,38.70407759275097],[-121.38033901959018,38.70407980185954],[-121.38280277164945,38.704109944122074],[-121.38280473895944,38.703507696444774],[-121.38357401915434,38.703519224798406],[-121.38357413994893,38.7034943795496],[-121.38397957551062,38.703495586068314],[-121.38398159814287,38.7030773040543],[-121.38433732680554,38.703078362411915],[-121.38463073227564,38.70307923224336],[-121.38463065587057,38.70310284169414],[-121.3850438201788,38.70310759000997],[-121.3850403122398,38.70419809949053],[-121.38511386089088,38.70419950297073],[-121.38511766809928,38.70301615115106],[-121.38743786877286,38.70304278710559],[-121.3874352976965,38.70384795168961],[-121.38802320610397,38.70385101582391],[-121.38801820570752,38.70305024913495],[-121.38860074623132,38.70305763158875],[-121.38860019434455,38.70370159458131],[-121.38917667891472,38.70370778092911],[-121.38917528246708,38.70306490679596],[-121.39143314422704,38.7030934758876],[-121.39143184900321,38.70390826860949],[-121.39164209702884,38.703910925727826],[-121.3916414423962,38.70432385895384],[-121.3920759088784,38.704332123637904],[-121.3920799040753,38.703102021974644],[-121.39484954794344,38.70314677274176],[-121.39659655195135,38.70317496458512],[-121.39677176027456,38.703175811186114],[-121.40132145290075,38.70322491556858],[-121.40131973609735,38.70380259295765],[-121.4020448035401,38.70381826689873],[-121.40204975589046,38.70323328011196],[-121.4036298570317,38.703248996360095],[-121.40361846754017,38.704413746983754],[-121.40361712557426,38.70455105578472],[-121.40535035450199,38.70458383480255],[-121.4087994729547,38.7046489870799],[-121.4089184555623,38.70464860976573],[-121.40928449327235,38.70461418478993],[-121.40930607034365,38.70469480606554],[-121.41082810564502,38.704701402220834],[-121.41082844013174,38.7052002747526],[-121.40853271491633,38.70710384190614],[-121.40789905783808,38.707106247409556],[-121.40631443156965,38.70847505638857],[-121.40602008200413,38.70872931041015],[-121.40531583447914,38.70871738273952],[-121.40151212687704,38.70865288335535],[-121.4015776294269,38.71394259392332],[-121.40158274514381,38.71435563391371],[-121.40166137422096,38.71435581702301],[-121.40330365393638,38.71435676083115],[-121.40329702920651,38.71450347026454],[-121.40316317989618,38.714829304540096],[-121.40257709130516,38.71545340989361],[-121.40161615571712,38.71627085132892],[-121.40146371866021,38.71638739678165],[-121.40106215471855,38.71700492496944],[-121.40098255915397,38.717567424146594],[-121.40100333130681,38.71785760583299],[-121.40095202754246,38.71894995143754],[-121.400878005133,38.71943086251737],[-121.40078783058574,38.720016695044954],[-121.40042554706976,38.72106563730971],[-121.40018793275158,38.72157004629765],[-121.39945716033483,38.722782132955615],[-121.39918198545838,38.7239539550127],[-121.39870434405006,38.72402014751968],[-121.3984158077367,38.724223568696814],[-121.39818026318137,38.724316963680394],[-121.39797968134135,38.724417572031776],[-121.39785273719183,38.72454126938618],[-121.39744754360014,38.72477057617501],[-121.39740564804352,38.72490475525268],[-121.39729770497634,38.725250461411555],[-121.39721361857146,38.72534301960412],[-121.39719858423655,38.72557088729881],[-121.39709380616442,38.72568075042114],[-121.39651624626683,38.725695591468565],[-121.39651569950861,38.72582113670795],[-121.39651462701912,38.725947649477426],[-121.39656606249736,38.72613336844566],[-121.39637865860477,38.72613023315935],[-121.39630297170427,38.72646019278797],[-121.3961145242013,38.72646840384974],[-121.39600788632657,38.72631753947667],[-121.39588465797819,38.72633744369943],[-121.39575614645355,38.7266449631266],[-121.39505501729369,38.72694951503758],[-121.3948447277635,38.72695238584608],[-121.39464766986704,38.726894800360135],[-121.39449637160665,38.726850585754484],[-121.3939131309728,38.72684335821439],[-121.39390991520199,38.72695819496492],[-121.39441466391627,38.72750755455028],[-121.39464246093809,38.72750734522597],[-121.39501979786817,38.727507002754635],[-121.39502159304855,38.728710217464574],[-121.3944163844188,38.72866886461848],[-121.38416010243085,38.72796759082079],[-121.37380002343,38.727258285059676],[-121.37346042972393,38.72723546421864],[-121.36475419077019,38.72665005396237],[-121.36304997371104,38.72653173060785],[-121.35413022172543,38.725936093784405],[-121.35257390658221,38.72580962796552],[-121.350695476867,38.72568298116137],[-121.34449127557966,38.72525433851623],[-121.34220859579831,38.725108530478586],[-121.34203846911312,38.72509702967415],[-121.33362650733888,38.72451356442875],[-121.33162037872526,38.72437015133702],[-121.33088152887132,38.72431732359981],[-121.33022488252493,38.72427036939228],[-121.32927312893433,38.72420230648828],[-121.32825870332101,38.72412975305643],[-121.32765227621292,38.72408637595444],[-121.32743512130251,38.72412902082459],[-121.3259826475992,38.724028134015214],[-121.31818720568268,38.72348636067864],[-121.31515281898356,38.7232753305226],[-121.31108519720578,38.72299231725894],[-121.31433288792101,38.719997371908185],[-121.31545962855732,38.71895823858098],[-121.31884800929548,38.715836585569996],[-121.3191606387699,38.715548545613395],[-121.31931356686557,38.71529830206849],[-121.31959723242903,38.71500288555558],[-121.31972562486912,38.71493377991713],[-121.31984064323916,38.71486931284236],[-121.31995420908623,38.71480328127936],[-121.32006628655608,38.714735706644014],[-121.32017684095311,38.71466660945794],[-121.32028583986464,38.71459601205825],[-121.32033722503958,38.71456152930797],[-121.32039324860479,38.71452393406586],[-121.32049903475324,38.71445039871874],[-121.32060316705714,38.71437542745991],[-121.32070561423836,38.71429904443506],[-121.3208063427454,38.71422127107385],[-121.32094452332895,38.71411001591972],[-121.32113549889738,38.71395244158562],[-121.32115683285063,38.71393479703967],[-121.32130895979743,38.71380646178045],[-121.32145970274831,38.713674764166655],[-121.3216531999278,38.71350271001749],[-121.32236017712611,38.71287406463737],[-121.3235098610241,38.71181024026282],[-121.32758386762154,38.708078829769924],[-121.32762020796572,38.70804554038887],[-121.32788524202468,38.7078027752144],[-121.3285597105045,38.70718496717467],[-121.32870166165482,38.70705493999279],[-121.32919754781018,38.70660069931361],[-121.32936592634425,38.70644646106898],[-121.33028289374053,38.70560647802257],[-121.3309103929521,38.70503164387344],[-121.33176217398893,38.70425133274445],[-121.33248685362594,38.70358744000231],[-121.33355461351064,38.70260921428567],[-121.33367659271468,38.70249746003896],[-121.33371857804836,38.70250975893837],[-121.33380291794687,38.70253544800335],[-121.3338381756342,38.7025447667659],[-121.3339073599622,38.70256706328656],[-121.33397603310807,38.70259030187662],[-121.3340488596143,38.702616176892775],[-121.33414611100206,38.70265290743372],[-121.33415763848407,38.702657260111636],[-121.33416740735224,38.702661199988356],[-121.33422046669406,38.702682597433686],[-121.33422059268159,38.70268264860751],[-121.33424980425313,38.702694428934656],[-121.33429616635698,38.70271327978655],[-121.33433907986847,38.70273072884122],[-121.3355969319503,38.70320141734335],[-121.33560961479647,38.7032061674864],[-121.33561031829518,38.70320642647195],[-121.33570899396007,38.7031146816753],[-121.33588226931272,38.70295505039732],[-121.33734413269438,38.70337027705592],[-121.33755302154842,38.70337291187117],[-121.33755222692474,38.703425950647095],[-121.33755561921897,38.703575173828064],[-121.3378569746488,38.70358153622989],[-121.34069214558824,38.703608148204026],[-121.34202589031099,38.70363068590163],[-121.34205563532197,38.70363107627676],[-121.34228089635167,38.70363401256996],[-121.34393265621577,38.70365554225251],[-121.34590222551262,38.703681183639205],[-121.34591193009062,38.70297937662945],[-121.34596492562741,38.70262583201704],[-121.3460369700627,38.702281390296456],[-121.34616690747134,38.70188329922101],[-121.34647251106978,38.70129124205973],[-121.34693620169233,38.70145282635591],[-121.34757658205483,38.70172631111302],[-121.34803081309082,38.70185181163343],[-121.34803450458253,38.70190670088767],[-121.3480190939367,38.703589915182185],[-121.34801393314858,38.70369511865459],[-121.34846172450395,38.70369806852655],[-121.35279289119246,38.703735746992514],[-121.35427375890491,38.70374859177172],[-121.3569197563867,38.70378750758149],[-121.36008381163795,38.70382476771568],[-121.36008409443554,38.703824771077876],[-121.36008487275696,38.70371218713457],[-121.36008924394832,38.70362851219152],[-121.36010543850736,38.7033185215012],[-121.36010119413875,38.70315650986212],[-121.36010806594192,38.70299874604103],[-121.36011557144347,38.70282636860349],[-121.36010252976607,38.70273740208523],[-121.36008502274377,38.702617984811596],[-121.36006306436293,38.702468228568584],[-121.3600606226991,38.70245156735386],[-121.36036583137442,38.7023134962059],[-121.36043726701841,38.7022707244326],[-121.36073531270459,38.702239477637484],[-121.36103035078105,38.702204362157154],[-121.36103534630442,38.70220357526681],[-121.36113218614523,38.70218832860721],[-121.36116707302196,38.70218283610539],[-121.3611839877746,38.70217891756949],[-121.36134251079861,38.7021421915834],[-121.36154984862422,38.70207639990772],[-121.36183382527179,38.702000023314454],[-121.36187126045338,38.7019899545364],[-121.36192114458018,38.701980755142046],[-121.36217487886132,38.70193395905164],[-121.36237132440668,38.70191066994947],[-121.36248354158091,38.70190133373497],[-121.36258022115814,38.70189633183031],[-121.3625974811808,38.70189543840855],[-121.36262446251285,38.70189496868274],[-121.36279199634204,38.70189204518154],[-121.36289887677523,38.70189194590403],[-121.36332288066306,38.701892558225495],[-121.3636522004928,38.701892685529224],[-121.36364802911656,38.70275691073381],[-121.36364251051705,38.70386657337276],[-121.36435361999065,38.70388296676559],[-121.36435296893104,38.703292716803276],[-121.37382089534898,38.70348999190043],[-121.37390055499189,38.70349164810417],[-121.37390050952902,38.70389093915068],[-121.3739001267023,38.70391839650183],[-121.37389898396863,38.704000768586084],[-121.37566543159161,38.70402248243683]]]},"properties":{"ZIP5":"95843","PO_NAME":"ANTELOPE","Shape_STAr":191117830.242,"Shape_STLe":76287.4772653}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.39143184900321,38.70390826860949],[-121.39143314422704,38.7030934758876],[-121.38917528246708,38.70306490679596],[-121.38917667891472,38.70370778092911],[-121.38860019434455,38.70370159458131],[-121.38860074623132,38.70305763158875],[-121.38801820570752,38.70305024913495],[-121.38802320610397,38.70385101582391],[-121.3874352976965,38.70384795168961],[-121.38743786877286,38.70304278710559],[-121.38511766809928,38.70301615115106],[-121.38511386089088,38.70419950297073],[-121.3850403122398,38.70419809949053],[-121.3850438201788,38.70310759000997],[-121.38463065587057,38.70310284169414],[-121.38463073227564,38.70307923224336],[-121.38433732680554,38.703078362411915],[-121.38398159814287,38.7030773040543],[-121.38397957551062,38.703495586068314],[-121.38357413994893,38.7034943795496],[-121.38357401915434,38.703519224798406],[-121.38280473895944,38.703507696444774],[-121.38280277164945,38.704109944122074],[-121.38033901959018,38.70407980185954],[-121.38033916873069,38.70407759275097],[-121.37566543159161,38.70402248243683],[-121.37389898396863,38.704000768586084],[-121.3739001267102,38.703918395601],[-121.37390050952902,38.70389093915068],[-121.37390055499189,38.70349164810417],[-121.37382089534898,38.70348999190043],[-121.36435296893104,38.703292716803276],[-121.36435238146615,38.702760773434264],[-121.36434972713566,38.70035864784383],[-121.36435235729722,38.70020488847609],[-121.36434649022421,38.697708704437154],[-121.36435079860378,38.6975549578503],[-121.36434836031381,38.69728164550235],[-121.36434135761164,38.697281571081035],[-121.36434137376568,38.697268813517226],[-121.36434433477372,38.694637264894496],[-121.36433542565801,38.6943379485694],[-121.36434702911937,38.691776943299395],[-121.36435753445032,38.69084649737834],[-121.36435939559675,38.69068174903423],[-121.36437875228282,38.68896719302398],[-121.36424688179648,38.68898937185767],[-121.36413724580933,38.68899720941266],[-121.36389373555872,38.68901461790952],[-121.36374587003357,38.689015045359895],[-121.36374202154306,38.689812713467575],[-121.36358436175517,38.68981226085068],[-121.36343028825156,38.68981181869901],[-121.35762245598849,38.689795022698775],[-121.35762931134903,38.68903491974276],[-121.35706415838445,38.68903463783984],[-121.35706847830588,38.68871473547838],[-121.35762575258632,38.68871782417787],[-121.35762773908475,38.688562818880406],[-121.35707056831374,38.68855973075767],[-121.3570843589169,38.68753825342596],[-121.35523696443735,38.687531145597454],[-121.35523716975104,38.68744053135091],[-121.3552396274038,38.68635979907048],[-121.35537325508864,38.68624040053597],[-121.3555265597261,38.68610342021755],[-121.35566964097434,38.685975573884605],[-121.3554016620087,38.685796997722456],[-121.35534355456272,38.685681033114555],[-121.35499727401412,38.68545027282201],[-121.36007414092012,38.68076962932129],[-121.3624508503471,38.678578119363344],[-121.36288741696306,38.67818776052317],[-121.3635395402605,38.677585773605514],[-121.36600437444623,38.67531030509461],[-121.37191757720862,38.66985058879005],[-121.37346167999316,38.66842471835047],[-121.37261743153142,38.66841483312974],[-121.37362642201032,38.667482735388376],[-121.37362853140934,38.66663227079302],[-121.37061943078724,38.6665903189746],[-121.37062203469222,38.66732007679958],[-121.37015980703764,38.66731281028185],[-121.37015835593205,38.668025760489975],[-121.36899598356547,38.668024017173714],[-121.36899502779907,38.66837235274665],[-121.36796130703918,38.66836021014651],[-121.36799821225986,38.66811373100237],[-121.36784189057167,38.668106720031595],[-121.36785573319474,38.66655072670741],[-121.36438527687919,38.66650136632056],[-121.36438613727314,38.666152462542065],[-121.36482395264014,38.66615958051866],[-121.36484160690055,38.664698828777894],[-121.36438973861448,38.664694232860384],[-121.36439064086134,38.66432826710075],[-121.36438219763525,38.66432825233235],[-121.36438273727876,38.66431760843195],[-121.3643831932126,38.66430720281152],[-121.36438357382953,38.66429442019864],[-121.36438410415552,38.664276577139354],[-121.3643842590797,38.66427131852311],[-121.36438435323079,38.6642585748799],[-121.36438452414129,38.66423542353698],[-121.36438374543343,38.66402658928405],[-121.36489962231235,38.6640327747271],[-121.36489872273594,38.663792212757095],[-121.36492514536201,38.66379247194626],[-121.36492597371065,38.66334682460124],[-121.36668452029681,38.663364099681296],[-121.36669413874836,38.66290416795593],[-121.36900387585092,38.662933837161304],[-121.36900518696704,38.661339086035944],[-121.36900543432857,38.66117997731633],[-121.36883023594694,38.66117630176672],[-121.36462654348112,38.66105987077608],[-121.364396557319,38.6610543593388],[-121.36439673616016,38.66058051913684],[-121.36451230600909,38.6605815177162],[-121.36531778043691,38.66058848079507],[-121.36531744749092,38.6601765694261],[-121.36669939635229,38.66018850257785],[-121.36669934167566,38.6592822200879],[-121.3643972390984,38.65926233086846],[-121.36439740588197,38.65882577890601],[-121.36439765252454,38.65817508201488],[-121.36439770113134,38.658051515433016],[-121.36439807314842,38.657068218706534],[-121.3684527078273,38.65335603774985],[-121.37403182234266,38.64824727235937],[-121.37408479359165,38.64819917374186],[-121.37411338552397,38.64817388219524],[-121.37416858365683,38.64812506043124],[-121.37419552334275,38.648101231114495],[-121.37422460172658,38.64807639622228],[-121.37430841519556,38.648004818076195],[-121.37432464416442,38.64799123181119],[-121.37437429357512,38.64795049081164],[-121.37443996351813,38.647896602025],[-121.37448145372565,38.64786335297931],[-121.37451956975063,38.64783351994486],[-121.37457861472467,38.64778731064595],[-121.37459959809023,38.64777088873782],[-121.37463822306576,38.647741695349126],[-121.37469843118376,38.64769619046569],[-121.37471977844696,38.64768005518466],[-121.37475922230026,38.647651267976784],[-121.37482020386626,38.64760675819594],[-121.37484196238643,38.64759088006654],[-121.37488207245558,38.64756261533087],[-121.37494398703292,38.64751898349251],[-121.37496611174831,38.647503392000246],[-121.37500681753374,38.64747569800313],[-121.37506977147137,38.64743286900204],[-121.3750921884046,38.64741761599913],[-121.37513340786474,38.64739054725121],[-121.37522015536082,38.647333578884464],[-121.3751559245098,38.647339940681206],[-121.37513328381725,38.64734193571854],[-121.37507847158678,38.64734676267229],[-121.37504622531628,38.64734960138846],[-121.37502349657692,38.647351286920205],[-121.37496848752303,38.64735536951645],[-121.37493633251492,38.647357756441565],[-121.37491358121613,38.647359131919785],[-121.37482627251767,38.64736440778421],[-121.37884811697195,38.64371317995119],[-121.37913377362042,38.643898770482274],[-121.3792925655439,38.64404668167261],[-121.37933835578426,38.64404968190135],[-121.37943301858299,38.6440617240421],[-121.37954070148041,38.644085482678946],[-121.37968635474142,38.6441368499139],[-121.37979329348055,38.64419175841211],[-121.37991157796296,38.64427591043279],[-121.38000943308933,38.64437489177891],[-121.38008388446134,38.64448569559641],[-121.38012083397551,38.64456850143716],[-121.38015072386021,38.64469153440032],[-121.38015847724526,38.64472067139327],[-121.38019388883187,38.6447701851717],[-121.38025400874552,38.64480598873443],[-121.38032433324558,38.644819446818744],[-121.38136084132621,38.64469599037213],[-121.38201694418288,38.64461615336259],[-121.38302051391653,38.64449402805677],[-121.38302604716802,38.64441682864201],[-121.3830337747468,38.64416271377404],[-121.38308666468211,38.64414259355005],[-121.38309155700631,38.64387347348279],[-121.38303985010472,38.64382848014602],[-121.38323561472961,38.64362574017857],[-121.38338166037121,38.643324710036175],[-121.38354482238017,38.64331142320338],[-121.38362203392019,38.64342939977735],[-121.38364660317842,38.64347493589845],[-121.38366646835904,38.64349032445316],[-121.38369242070826,38.643498403033504],[-121.38374225034651,38.64350079778155],[-121.38383253041783,38.64350702833193],[-121.38392227080689,38.64351695594463],[-121.38404066082055,38.64353589524776],[-121.38412819001046,38.64355432536584],[-121.38421436967629,38.643576323022735],[-121.38493498198778,38.64379837647025],[-121.3852036413174,38.64388149231252],[-121.38529508426639,38.64390906123301],[-121.38548632672558,38.64396215128],[-121.38568915100325,38.644011915922256],[-121.38584701289552,38.644044596862194],[-121.38606047684385,38.64407801092916],[-121.38627639258432,38.644099664609875],[-121.38638494188937,38.644106046681586],[-121.38677283616428,38.644104567652015],[-121.38711297738736,38.64408664286563],[-121.3877267895662,38.644054292256754],[-121.3879566002217,38.64404217927619],[-121.38837139825138,38.644013445998475],[-121.38897005218314,38.64392849978129],[-121.38926539868365,38.643884499130756],[-121.39014493177943,38.64372833770754],[-121.39158379631186,38.643388564540075],[-121.39186672479339,38.64330886504931],[-121.39277295524965,38.64302796710255],[-121.3932381936254,38.64286998257109],[-121.39384090242616,38.642630048735356],[-121.39425411266875,38.642440458243826],[-121.39460333302387,38.64226424639684],[-121.39498573091882,38.64205298602624],[-121.39523260055397,38.64190354865266],[-121.39557185077929,38.64166774584965],[-121.39615404127504,38.64121026515905],[-121.39670489901266,38.640729513042864],[-121.3969574626401,38.64049113323163],[-121.39712908320267,38.640326739849414],[-121.39726668737325,38.64019492782493],[-121.39738592465358,38.64019356692807],[-121.39751201013746,38.6402089442147],[-121.3976327765997,38.64024125767114],[-121.39774455317051,38.64028952877464],[-121.39832932285883,38.640596995437534],[-121.39902900720924,38.64096487587706],[-121.39962832672241,38.64060307927065],[-121.40331459122525,38.63854410392275],[-121.40371869753376,38.638312359176766],[-121.40432663204561,38.638063885428544],[-121.40498033878183,38.63790197954731],[-121.40528652506178,38.63785182363288],[-121.405494199389,38.63782146868598],[-121.40570251831952,38.63779395901401],[-121.40577920789885,38.63778490820362],[-121.40565979530896,38.637894449702834],[-121.40298869442782,38.64034463029452],[-121.40297772895465,38.64035466297788],[-121.40289663401167,38.640427392806956],[-121.40233240372149,38.64092460965371],[-121.40231187815655,38.6409427866516],[-121.40224048000891,38.64100746424776],[-121.40057517359449,38.642542838802484],[-121.39756989639932,38.64531341251415],[-121.39532304317032,38.647384597346324],[-121.39465113664447,38.64800394319768],[-121.38872618830449,38.65346474351902],[-121.38767017131481,38.65443791458592],[-121.38772899958738,38.65446844610875],[-121.38587281066,38.6561789257881],[-121.38568640191626,38.6563338856123],[-121.38532533041327,38.656561036041275],[-121.38491943888303,38.65673556912291],[-121.38473718487812,38.65679841885587],[-121.3839125579431,38.65708278781378],[-121.38380880984798,38.657120808340984],[-121.38343627893411,38.657298834343536],[-121.38337082853602,38.65733564019501],[-121.38288332386291,38.65755571753549],[-121.38287145964237,38.65892561841474],[-121.38283108794707,38.663586736487645],[-121.38283123100662,38.66360152733704],[-121.38284367085703,38.66369038815335],[-121.38285831097727,38.66375128140845],[-121.38291775752135,38.66427494285393],[-121.38291803155738,38.66441776860807],[-121.38292593828922,38.668535103161226],[-121.38463565782531,38.66855496056222],[-121.38522446285646,38.6685617947427],[-121.38522471491949,38.66864418161839],[-121.38521747952589,38.668644098199685],[-121.3852211424308,38.6703982931347],[-121.38745443187051,38.67042847616134],[-121.38754199269184,38.67042965863701],[-121.38753623411039,38.67223401223734],[-121.39207481424644,38.672300420333315],[-121.39217989485913,38.672300629008475],[-121.39216233044519,38.67771350872516],[-121.39449781228525,38.6777348599717],[-121.39449002537378,38.67865096729065],[-121.39413478990359,38.67864911318642],[-121.39413158218082,38.67902626424723],[-121.39446540894534,38.67902800833557],[-121.39446727825674,38.67955875770842],[-121.39670474259425,38.67958045128267],[-121.39679231883838,38.67958074481128],[-121.39675492170711,38.68645818078463],[-121.39674270539321,38.68870414981539],[-121.39695340428648,38.6886972782868],[-121.39755483942008,38.68933719866672],[-121.3976254730741,38.68883351463253],[-121.39803346301704,38.68880221553488],[-121.39905571901699,38.68819265127217],[-121.39905132735947,38.68868645968467],[-121.40020667056129,38.68870088689674],[-121.40020719375389,38.689613902480836],[-121.4013618654586,38.68962496328734],[-121.40135914392273,38.690541486308355],[-121.40252243684753,38.6905544799825],[-121.40252730517888,38.69197995762213],[-121.40252861738352,38.69236466142916],[-121.40367546484644,38.692378946025656],[-121.40365497289878,38.695999569651484],[-121.40247742079082,38.69598745216367],[-121.402469132386,38.69689846057634],[-121.40134028934649,38.696886668178756],[-121.40133856940759,38.69746571241477],[-121.40133225092868,38.69959077919461],[-121.40363085514241,38.69961635772924],[-121.40363259161904,38.70296941595277],[-121.4036298570317,38.703248996360095],[-121.40204975589046,38.70323328011196],[-121.4020448035401,38.70381826689873],[-121.40131973609735,38.70380259295765],[-121.40132145290075,38.70322491556858],[-121.39677176027456,38.703175811186114],[-121.39659655195135,38.70317496458512],[-121.39484954794344,38.70314677274176],[-121.3920799040753,38.703102021974644],[-121.3920759088784,38.704332123637904],[-121.3916414423962,38.70432385895384],[-121.39164209702884,38.703910925727826],[-121.39143184900321,38.70390826860949]]]},"properties":{"ZIP5":"95660","PO_NAME":"NORTH HIGHLANDS","Shape_STAr":173502299.112,"Shape_STLe":96015.8037422}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.32260526746565,38.67399091225557],[-121.32254364693434,38.67388130577531],[-121.32219176311592,38.67388599303784],[-121.32200962831388,38.67388437931269],[-121.32162414120367,38.67389291067769],[-121.32153839785835,38.673892135915914],[-121.32140203772171,38.673890903541704],[-121.32101036091325,38.67388735964552],[-121.32082638093976,38.67388569541583],[-121.32064718481061,38.67388407244231],[-121.32046373689926,38.673882412556836],[-121.32027448247524,38.67388069761392],[-121.31982256965868,38.67387660460298],[-121.31982201252812,38.67353834761932],[-121.31982748869397,38.673365726749374],[-121.31983195446864,38.67322490459231],[-121.3198366609759,38.67307656039058],[-121.31984114664502,38.67293509510213],[-121.31984199892362,38.67290829818406],[-121.3193378711708,38.67289564458656],[-121.31899275435242,38.672795690209824],[-121.31867170171056,38.67264286879286],[-121.31838884483972,38.672559292100814],[-121.31806587304867,38.67246386066873],[-121.31776566340814,38.67244245272104],[-121.31741201458567,38.6724172311273],[-121.31715888342411,38.6724663396722],[-121.31676897688705,38.672623300677344],[-121.316560956021,38.672647801598785],[-121.31616734724471,38.672519164457775],[-121.31575379970744,38.67252050439165],[-121.31540006668762,38.672521651962185],[-121.3153999763261,38.672486328738415],[-121.31539966632123,38.67236479660069],[-121.31539868682606,38.671978561950205],[-121.31539840367061,38.671867271458524],[-121.31539783999156,38.67164501481484],[-121.31539728645916,38.67142696455525],[-121.31539672854193,38.67120793588442],[-121.31539622876556,38.67101036261302],[-121.3153957271914,38.67081297671743],[-121.31534369796842,38.67081311627945],[-121.31363696821292,38.670817694550905],[-121.31337231943894,38.67081840295208],[-121.31315289774676,38.67081898864399],[-121.31313928422985,38.67081902509852],[-121.3131389717716,38.67059778520026],[-121.3130451817259,38.67063963324424],[-121.31294160977221,38.670618684181214],[-121.31281726066892,38.670525311493286],[-121.31271298070773,38.670512379689626],[-121.31258012287834,38.670495902631885],[-121.31253048854444,38.670556441924944],[-121.3122951014323,38.67053674561507],[-121.31209978991517,38.67041001853694],[-121.31183680849361,38.67031119136505],[-121.31184850234423,38.670171290696125],[-121.31195097119938,38.670030064891954],[-121.3118997441392,38.6699790947902],[-121.31169511321822,38.66998804572837],[-121.31162048348921,38.66995350419206],[-121.31154861900625,38.669920241198994],[-121.31126487606585,38.66988356991045],[-121.31113771343277,38.669867134037304],[-121.3110689951046,38.669843198498995],[-121.31102393422717,38.669827503575355],[-121.31092791603169,38.669888090818155],[-121.31069835530849,38.66987791602409],[-121.31062307488173,38.669874579145954],[-121.3105457521346,38.66987115079198],[-121.31045256048779,38.669867021681114],[-121.31034384803603,38.669862202855064],[-121.31027429209497,38.66975863351091],[-121.31026117392118,38.66973909949687],[-121.31018416534292,38.66962443344062],[-121.31013379987574,38.66949936007398],[-121.31009839541719,38.66941143268153],[-121.31009135577519,38.66939030058141],[-121.31007258654516,38.66933394172416],[-121.30995983554426,38.668995380493314],[-121.30995565906969,38.668778543657055],[-121.30995041878234,38.66850650919741],[-121.30994311884187,38.66812750333665],[-121.30988817391223,38.66812787803733],[-121.30988738420918,38.66839340720213],[-121.30988730323185,38.668420867228505],[-121.30879811608298,38.668423962325726],[-121.30865801582725,38.66842472954327],[-121.30865132006593,38.66805392090102],[-121.30862450632812,38.66697026488215],[-121.30876367432462,38.66693157213232],[-121.30941339890255,38.66692972770533],[-121.30940272893778,38.666339387007014],[-121.30956729239895,38.666338918685874],[-121.30973185468271,38.66633845282683],[-121.3097260139225,38.66694131504632],[-121.31040349697335,38.667141375605354],[-121.31043913198322,38.66706720341362],[-121.3104408179792,38.66706456658226],[-121.31044317069852,38.66706226164684],[-121.31044607998733,38.66706039065524],[-121.31044884114196,38.667059221488884],[-121.31045243261262,38.66705834104714],[-121.31045555165693,38.667058068609045],[-121.31045868493601,38.6670582250867],[-121.31046232387597,38.667058970161015],[-121.31049613313365,38.6670689533119],[-121.31049904351815,38.667070056215486],[-121.31050205198022,38.66707182997625],[-121.31050415558056,38.66707365601252],[-121.31050609725023,38.66707618469289],[-121.3105073251024,38.66707897309267],[-121.31050776462298,38.667081409053516],[-121.31050757178315,38.667084355670106],[-121.31050660305588,38.66708720758092],[-121.3105028667834,38.66709485746986],[-121.31050189808197,38.667097706678064],[-121.3105017052331,38.66710065419554],[-121.31050214592013,38.66710308836156],[-121.31050337262357,38.6671058767545],[-121.31050531429409,38.66710840543491],[-121.31050788584247,38.66711056128339],[-121.31051097096346,38.66711225081474],[-121.31051407825639,38.66711331164571],[-121.31053009887412,38.667117389843554],[-121.31064643918954,38.666815955835354],[-121.31072726308552,38.66680088954651],[-121.31076750707305,38.666683675961686],[-121.31082007189764,38.66653056425374],[-121.31082080194312,38.666353284753356],[-121.31082151364421,38.6661802772377],[-121.31086699853502,38.66618016658382],[-121.31086483010789,38.66600553382717],[-121.31086138162856,38.665727777583385],[-121.31086018241791,38.66563114560413],[-121.31059858828546,38.66563178103453],[-121.3104899399669,38.66563204469743],[-121.31032360802323,38.665632448840995],[-121.31011517570367,38.66563295443425],[-121.31006190931083,38.665633083338925],[-121.30981815411612,38.665633675440375],[-121.30968854925446,38.665633989243794],[-121.30955383768928,38.66563431572706],[-121.30955703194515,38.665280740898375],[-121.30955902885584,38.665198350532975],[-121.3085807687781,38.66520226976179],[-121.30856136635504,38.66441806849924],[-121.30909128974638,38.66441750860861],[-121.30908999988173,38.66434611673362],[-121.3090843665555,38.66403429220377],[-121.30923665643037,38.66403497375162],[-121.30923623647247,38.664002080973134],[-121.30923264267965,38.66371935525517],[-121.30922059357046,38.66335964987724],[-121.30922057023201,38.66333219012283],[-121.30921339366586,38.66292740270864],[-121.30920783728466,38.66261399753635],[-121.30924094825247,38.66261351828898],[-121.30922791540048,38.66228999372429],[-121.30907125064151,38.66233276018678],[-121.30900242573402,38.66229219831282],[-121.30876858053463,38.66236211968998],[-121.3086554848427,38.66236153345446],[-121.30846092847564,38.66236052237532],[-121.3084599957743,38.662276077583336],[-121.30845177812796,38.66204021817863],[-121.30844440169959,38.66176196894893],[-121.30863049930234,38.661763124205564],[-121.30912806504865,38.66176014510947],[-121.30912150317374,38.661554872382105],[-121.30936856403771,38.66155166637559],[-121.30952986204986,38.66154957330122],[-121.30952467629355,38.661217590954855],[-121.30952287304414,38.66110226513542],[-121.30951700201892,38.66072658385307],[-121.30951602144076,38.660663908280625],[-121.30951107176821,38.66034706074747],[-121.30951081432623,38.66033058614557],[-121.30951080475789,38.660275727212685],[-121.30840406158967,38.660281141217524],[-121.30839803074234,38.66008282568648],[-121.30839189163147,38.659882764451865],[-121.30857279808933,38.65988056721284],[-121.30879949448922,38.65987778601375],[-121.30907911676807,38.659874354115516],[-121.3090804503305,38.659470920066624],[-121.3089954906688,38.65947074780547],[-121.30897518933762,38.65865736973171],[-121.30875884166862,38.65865796250896],[-121.30848826861109,38.6586587043387],[-121.30847965216398,38.65865872770416],[-121.30833748417304,38.65866130912078],[-121.30833024637315,38.65850474607612],[-121.30831879654812,38.65824140770596],[-121.30847261258971,38.65826978609127],[-121.30880236032868,38.65826982875934],[-121.30880263211779,38.6582011822253],[-121.3088121603113,38.65580461299863],[-121.30830198609567,38.65580228998421],[-121.30830226757328,38.6553868386859],[-121.30844233993578,38.65538689711464],[-121.30999668541642,38.65539522558948],[-121.31000588649171,38.65302279586602],[-121.31000903126144,38.65221152318294],[-121.30845849694013,38.652210553282366],[-121.30830442490094,38.65221048875678],[-121.30830478489449,38.651676867758866],[-121.30830661166692,38.64898243826628],[-121.30824902785004,38.648873083040854],[-121.308237643468,38.64829098164343],[-121.30762332111303,38.64831169227466],[-121.30762628665654,38.64848156694161],[-121.30730371763426,38.64851610883595],[-121.30712459757517,38.649003367287285],[-121.30445873348569,38.64905460144137],[-121.30411248193684,38.649059593035595],[-121.30076469508127,38.64909177130899],[-121.29767943646077,38.64912133970632],[-121.29765956917267,38.64773900564196],[-121.29765592985547,38.64745666620669],[-121.2976556809553,38.647437276268086],[-121.29765180180479,38.64732195461632],[-121.29762636491417,38.64567247840768],[-121.29762349817837,38.64548661551451],[-121.29475828946293,38.64548445925521],[-121.29471896456144,38.64378316182134],[-121.29511420767733,38.643779047831174],[-121.29526019178066,38.643694184668334],[-121.29575998735761,38.64368260964772],[-121.29575279511381,38.643383253744105],[-121.29616581111527,38.643373011716655],[-121.29631269095961,38.643327521447155],[-121.29687463743666,38.64332978671781],[-121.29689793509786,38.64339859076395],[-121.29732362634476,38.64330024518278],[-121.29732601139071,38.64305833530774],[-121.29784200715223,38.64306146139476],[-121.29784599108375,38.641965874631794],[-121.2978463772393,38.641859632930824],[-121.29262988923176,38.641899271542776],[-121.29263367002592,38.64151485822963],[-121.29197085194599,38.64151982090752],[-121.29182380870597,38.64152092053166],[-121.29181865793008,38.64116403663142],[-121.29181048680513,38.64103667935947],[-121.29181171261934,38.64091331198336],[-121.29181223796954,38.640860439993155],[-121.29244732270554,38.64085871524668],[-121.2928385772528,38.64086644701712],[-121.29283594549135,38.64061453254904],[-121.29263279369371,38.64061253035967],[-121.2926314519482,38.64044587128502],[-121.2924223976993,38.64028174580334],[-121.29241381100077,38.63991892108134],[-121.29241218641494,38.63985022772479],[-121.29254475949935,38.63985250482035],[-121.29254055756674,38.639783769603554],[-121.29251532737601,38.63937105007058],[-121.2932379513569,38.63938292321763],[-121.29330880933566,38.636446344397825],[-121.29331374550385,38.636241812487846],[-121.29292969740348,38.63623524777508],[-121.29285969332385,38.63623410252288],[-121.29284878195782,38.63623393142271],[-121.29284670255971,38.636443524942],[-121.29284055242611,38.637063422172254],[-121.29179396930964,38.63706237582158],[-121.29180687951657,38.63652057821044],[-121.2918070462189,38.63650726830913],[-121.2918069188637,38.63649395931314],[-121.29180649744221,38.636480652123424],[-121.2918057761222,38.63646735571332],[-121.29180476067359,38.63645406741537],[-121.29180345098898,38.63644079803987],[-121.29180303926651,38.63643715044826],[-121.29180135143018,38.63642390668948],[-121.29179937158385,38.63641068907397],[-121.29179709628195,38.63639749758065],[-121.29179452773229,38.63638434123204],[-121.29179166706567,38.6363712218369],[-121.29178851424652,38.636358142998574],[-121.2917850726758,38.636345109242434],[-121.29178134229996,38.63633212597352],[-121.29177837573354,38.6363224978513],[-121.29177307640848,38.636305114865586],[-121.29176918216173,38.63629139995791],[-121.29174080562554,38.63611428720396],[-121.2917400776648,38.63609356906982],[-121.29165484380026,38.632274245079536],[-121.29160123101329,38.63211143934128],[-121.29162961877736,38.63149795280133],[-121.29175082657589,38.63115261074029],[-121.2925852830442,38.63111671130815],[-121.29283366228951,38.6311247610373],[-121.29346621210865,38.63109377588095],[-121.29346972014166,38.63095537811134],[-121.29347960894845,38.63056568564007],[-121.29472186319516,38.63019345696906],[-121.29515805451192,38.62998601702207],[-121.29632722118312,38.62916572744843],[-121.29673475137787,38.628879539335124],[-121.29786661295036,38.628272997949985],[-121.2988628613341,38.627736787669],[-121.30039810438599,38.62691235164712],[-121.3007984048531,38.62732480036244],[-121.30080944742745,38.627320589498005],[-121.30084404371087,38.627308693694935],[-121.30087942659931,38.62729680713315],[-121.30091484027258,38.627281780181406],[-121.30094944089232,38.62726943842386],[-121.30097899431598,38.62724405799281],[-121.30115358554957,38.6271585611059],[-121.30118896605036,38.627146670832204],[-121.30122365901381,38.627125365517024],[-121.30125909868185,38.6271072016565],[-121.30129071240802,38.62708005157781],[-121.30132539748413,38.62705919303521],[-121.30136093160607,38.62703161973081],[-121.30139564854416,38.627007622596565],[-121.30143111675767,38.62698676964612],[-121.30146665310826,38.62695919542224],[-121.3015012777253,38.626944613088085],[-121.30153666244873,38.626932274983346],[-121.30157129143373,38.62691724400266],[-121.30160670245814,38.62690221862714],[-121.30164208389577,38.62689032912272],[-121.30166115913396,38.626863101557184],[-121.30168072379999,38.626848164420984],[-121.30150619818279,38.62663654127459],[-121.30243218323194,38.62604323773103],[-121.30257159683379,38.62622025684731],[-121.30258614234192,38.6261949910664],[-121.30259816360198,38.62616772178427],[-121.30263291037053,38.62614058930402],[-121.30266452316245,38.62611343704785],[-121.3026999949305,38.62609213688439],[-121.30273459259902,38.626080240530115],[-121.30276997227452,38.62606835247572],[-121.30280468708561,38.626044358514974],[-121.30284009973973,38.62602933007328],[-121.30285603802145,38.62600208523816],[-121.30287589575069,38.62597486308581],[-121.30289891695918,38.62594452120348],[-121.30293052954522,38.62591737067629],[-121.30296600230227,38.625896068636436],[-121.30300059864766,38.62588417579917],[-121.30303604069103,38.625866011415056],[-121.30307461665501,38.62584786677459],[-121.3031101156217,38.62582387563901],[-121.3031378086414,38.62579670057637],[-121.30316080130706,38.625769496332886],[-121.30318457600535,38.625742296788836],[-121.30320443676462,38.62571462684819],[-121.30323526478594,38.62568747151994],[-121.30326295771383,38.62566029552639],[-121.30328673462465,38.62563309687596],[-121.30331442751178,38.625605920870086],[-121.3033491144879,38.62558461579055],[-121.30338458371874,38.625563762254885],[-121.30341149219689,38.62553658150923],[-121.30342460343189,38.62552371520334],[-121.30343918499017,38.62550940637432],[-121.30346296387889,38.62548175814722],[-121.30347400348613,38.62546487574583],[-121.30350721686537,38.6254299373316],[-121.30360374021424,38.6252894705932],[-121.30563750052713,38.62141045293221],[-121.30613216374438,38.620048020197714],[-121.30620823051473,38.6198385075614],[-121.30622277986105,38.61917014550132],[-121.30623363966924,38.61846776197247],[-121.30592819008727,38.61808645357933],[-121.30511828638609,38.61705904671923],[-121.30475243040836,38.61668282503535],[-121.30359312663923,38.61550989399294],[-121.30341183023911,38.61518023186577],[-121.30307181982239,38.61453770219078],[-121.30303002652846,38.614458726665234],[-121.30456535236077,38.61162251627271],[-121.30543268229599,38.61073977766292],[-121.30668946848927,38.609067466545376],[-121.30672828558711,38.60901581291125],[-121.30942311650954,38.60739941693719],[-121.30976075373869,38.60727985666371],[-121.31081216060551,38.60724726367432],[-121.31167481790888,38.60713832363983],[-121.31185536853636,38.60711664323254],[-121.3127245562576,38.60652243782125],[-121.31307310089429,38.6062855300059],[-121.31326316757169,38.60615005437407],[-121.31376039445242,38.60573533644707],[-121.31412273925442,38.60543133111491],[-121.31419246467033,38.60537345080659],[-121.31437502783258,38.60517761138339],[-121.31498170573265,38.604538230954184],[-121.31541453029523,38.60408858969494],[-121.31584613812151,38.60362997562862],[-121.31592864076825,38.603542313701084],[-121.31819310628113,38.60271005057314],[-121.32056571613386,38.6036577604325],[-121.32112320202422,38.60388043121187],[-121.32136604558434,38.60394340535423],[-121.32206281166877,38.60411460532092],[-121.32220193639195,38.60415072528582],[-121.32273046547073,38.60428794345783],[-121.32403952942384,38.60367808835416],[-121.32441184099291,38.603504634481176],[-121.32515134693816,38.60315850146845],[-121.32577267938115,38.6027533565493],[-121.3268174698387,38.602085832902446],[-121.32744261519194,38.60136971013414],[-121.32804778456507,38.60106090313558],[-121.32828215966602,38.6008792824033],[-121.3290976294365,38.60025951648256],[-121.32917157256591,38.600186757897674],[-121.32987505092798,38.599529532154655],[-121.33047554746517,38.598734340242885],[-121.33082970468413,38.5982255859713],[-121.33086106502662,38.598180534475844],[-121.33119151867008,38.59771155861269],[-121.33130338403122,38.597553885652566],[-121.33146531904794,38.597112542269734],[-121.33207799027133,38.59572302962107],[-121.33216882580226,38.5952056467734],[-121.33229203001096,38.59453584146851],[-121.33211799096101,38.59430807153747],[-121.33200992909596,38.59417302666888],[-121.33173142899284,38.59381091302848],[-121.33152731617606,38.59354705038119],[-121.33135687391315,38.593336169510835],[-121.33101792394459,38.59317084139168],[-121.33088240490473,38.59310325254895],[-121.33051389889134,38.59292414845728],[-121.33025074865685,38.59280063673856],[-121.32925192291162,38.592988510500156],[-121.32756568532882,38.593308953354196],[-121.3267363545546,38.59346714170589],[-121.3261173100577,38.59358388837872],[-121.32584386139146,38.59270472868911],[-121.32499603962826,38.58997875400661],[-121.32488957851862,38.58963644091726],[-121.32499075288321,38.58961436305579],[-121.32772356054481,38.589018011374826],[-121.32712712061416,38.58722025380938],[-121.32699145574647,38.586811324755445],[-121.32691667281836,38.586237681699245],[-121.32703692885664,38.58526471113302],[-121.32745934950194,38.5835333080701],[-121.32815068723993,38.582015559488546],[-121.32821727604485,38.581734644004726],[-121.3284194475787,38.58088174364857],[-121.32885518043054,38.58022396152336],[-121.3303958160463,38.57918765219753],[-121.33214881175455,38.5787766924231],[-121.3329374925582,38.57878448090358],[-121.33340802080454,38.57878912625023],[-121.33570731029083,38.57902736814283],[-121.33764878817969,38.57985172573704],[-121.33883668139887,38.580549720719866],[-121.34014985383448,38.58128450505644],[-121.34073371610428,38.58138149306563],[-121.34111317829183,38.58150570709227],[-121.34190127613084,38.581452856800475],[-121.34304726366973,38.581033657512364],[-121.34341313293685,38.580836681492464],[-121.34367680688757,38.58069472352657],[-121.34370247010315,38.58018686532937],[-121.34386344482029,38.57980059636184],[-121.34408842070196,38.579661834389945],[-121.34530365395608,38.580936870202585],[-121.34716759335143,38.58006094603017],[-121.34732968169615,38.57998477303299],[-121.34929592339154,38.57906071022632],[-121.34930116167112,38.57906660276123],[-121.35044703294224,38.5804115468645],[-121.3502235076792,38.580536688667706],[-121.35031554140082,38.58092377734948],[-121.35031565180668,38.58092375274371],[-121.35031974202015,38.58092290181831],[-121.35034328868313,38.580977227912044],[-121.35041005394308,38.58109611663797],[-121.35045992315008,38.58115960305224],[-121.35058399511088,38.581301177247546],[-121.35102940907849,38.58107792690793],[-121.35119293692883,38.58126512633266],[-121.35171712377216,38.58186861605909],[-121.35235394745541,38.582601772844185],[-121.35251204099401,38.58278628949909],[-121.35377925266259,38.584235360835386],[-121.35364150217598,38.584328302243875],[-121.35321645829389,38.58463259217222],[-121.35386774484391,38.58527582615291],[-121.35404686677145,38.58545273093456],[-121.35386490664719,38.58558914417851],[-121.35252919860662,38.58659048978056],[-121.35340686204474,38.58736999436874],[-121.35349996490243,38.587452681300846],[-121.35359728101623,38.58753911331713],[-121.35384609257599,38.58737244639693],[-121.35384876832632,38.587370655014844],[-121.35464236345355,38.586839060642205],[-121.35506090148934,38.587379219455514],[-121.35516348109448,38.587511606694235],[-121.355352373666,38.5873808426365],[-121.35551497999498,38.587268276186194],[-121.35564052719161,38.58718136374947],[-121.35595469529868,38.58696387472837],[-121.35627486357711,38.587385975059206],[-121.35829954201772,38.59005511775575],[-121.35648493914576,38.59002834155917],[-121.35647385448635,38.59048350621976],[-121.35531221309044,38.59046300821952],[-121.35531276385814,38.59121077038923],[-121.35585076978211,38.591283280202745],[-121.35585676232054,38.59138807885358],[-121.35612998815948,38.591396537248656],[-121.356131551993,38.59240152679757],[-121.35531363434716,38.592392785749034],[-121.35531398112806,38.59286480953057],[-121.35572196016204,38.592870562252074],[-121.35571822477941,38.59328406575279],[-121.35590554879246,38.593285097066016],[-121.3559019000634,38.59391880828273],[-121.35531476095046,38.593920722000725],[-121.35531525977562,38.59459969073699],[-121.35570636674936,38.59459645308921],[-121.35598439632999,38.59491459744571],[-121.35583045605624,38.59503762729621],[-121.35531558495086,38.59504273947639],[-121.35531586469013,38.59542236516696],[-121.35541238647743,38.59542348538105],[-121.35541285409168,38.59562945732337],[-121.35541902549164,38.5983601481707],[-121.35482781474566,38.598355693689584],[-121.35482778958945,38.5983617737552],[-121.35482653803935,38.598655440088706],[-121.35485958429972,38.59865434220748],[-121.35489264942733,38.59865369667607],[-121.35492572306684,38.598653506139485],[-121.3549311794618,38.598653517614956],[-121.35542402440218,38.59865515109542],[-121.3554148667359,38.60068000127442],[-121.35530967409507,38.60067894724693],[-121.35530719033879,38.60099318606212],[-121.35570248327257,38.60097513093485],[-121.35583440596035,38.60114882768411],[-121.35581156227543,38.60291525099275],[-121.35529205062845,38.60290899247985],[-121.355288698774,38.6033332025658],[-121.35572556080822,38.60333662472551],[-121.35599684969925,38.60345847825988],[-121.35594533813197,38.60379168502313],[-121.35594504221726,38.60380207621165],[-121.3552850492382,38.60379477870836],[-121.35528456472419,38.60385624292571],[-121.35527896709328,38.60456452272194],[-121.35576847553821,38.6045560737326],[-121.35583042004083,38.60469262243969],[-121.35576607057,38.60482227762836],[-121.35527692593038,38.60482292140442],[-121.35527171182822,38.60548254276372],[-121.3557434968163,38.605477831229756],[-121.3558270292979,38.60560558737192],[-121.35574124674899,38.60572687645371],[-121.35526980139612,38.60572431777733],[-121.35525568585945,38.60751025077658],[-121.35568680314712,38.607512624738895],[-121.35592370115285,38.607680865574714],[-121.35590383273762,38.60794584169608],[-121.35628878379983,38.60795141251964],[-121.35628636826519,38.60935373959489],[-121.35628587314551,38.60964082532223],[-121.3559704012196,38.60963907875544],[-121.35596878749055,38.60980910016164],[-121.35523748421737,38.60981287826646],[-121.35523579064747,38.61002708948807],[-121.35523580274455,38.61003032290126],[-121.35523588489426,38.6100335549026],[-121.35523603939288,38.61003678550492],[-121.35523626510047,38.610040013800905],[-121.35523656318144,38.61004323799528],[-121.35523693133953,38.610046458075246],[-121.3552373730436,38.610049671357366],[-121.35523788598107,38.61005287963064],[-121.35523815574732,38.61005440996714],[-121.35526675045533,38.6102116102938],[-121.35526729673208,38.61021481424797],[-121.35526777175093,38.61021802591361],[-121.3552681755281,38.610221243489015],[-121.35526850807173,38.61022446607332],[-121.35526876825003,38.61022769185839],[-121.3552689572029,38.610230921751494],[-121.35526907265856,38.61023415303728],[-121.35526911806137,38.61023738573497],[-121.35526911442496,38.610238930765725],[-121.35526566923289,38.610674806962194],[-121.35591931859581,38.6106784527141],[-121.35591754495664,38.610877855319636],[-121.35591355637825,38.611312672624095],[-121.35526065654268,38.611309047260654],[-121.35525850319921,38.611581474154804],[-121.35591162489033,38.61159005121932],[-121.35589586944529,38.612329394314735],[-121.35589739914573,38.61276013776888],[-121.35524927721315,38.612748688504595],[-121.35524410455726,38.61340287209555],[-121.355873061481,38.61340946791375],[-121.35585359469353,38.61385183427383],[-121.35524060968909,38.61384522367723],[-121.35523788199397,38.61419028996983],[-121.35607931753327,38.61462794806554],[-121.35591810903637,38.614843616518115],[-121.3558507851037,38.61493368481155],[-121.35588633936767,38.615164607702454],[-121.35595796377959,38.615610097693136],[-121.35596176211402,38.61610106204406],[-121.35577753320287,38.61642948650876],[-121.35522020612729,38.61642627286633],[-121.35521195728765,38.617469556906016],[-121.35526577196389,38.61747018438234],[-121.35526477410556,38.61818395890489],[-121.35756877399048,38.61820880692754],[-121.35755907346675,38.61986925881563],[-121.3575586876232,38.619869258477564],[-121.35527420014398,38.619873442684074],[-121.35526241101856,38.61987345724827],[-121.35526197822593,38.62018290099051],[-121.35576879376248,38.62018134235317],[-121.35593397045142,38.62033562716817],[-121.35608681852595,38.62047839722639],[-121.35576787933807,38.62077612855108],[-121.35526115078405,38.620773315604474],[-121.35526025957458,38.621410779568464],[-121.35575615651629,38.62140953133936],[-121.35607023800958,38.621598703552415],[-121.35576983490914,38.621773110479985],[-121.35525976165141,38.62176640687999],[-121.35525893249742,38.62235865749785],[-121.35575076938419,38.62236136955462],[-121.35602736623903,38.622562937026636],[-121.3557640000413,38.622742360668596],[-121.35525841756964,38.62272784601272],[-121.35525758261615,38.62332352902474],[-121.35574647518963,38.6233148822943],[-121.35601337452003,38.62350024083074],[-121.35610480296683,38.6235013895987],[-121.35609716844156,38.62434754822731],[-121.35587449896718,38.624343626550846],[-121.35587087762653,38.62469116705128],[-121.35573836642122,38.624689716663774],[-121.35572575534331,38.625595651388714],[-121.35625091961155,38.625601273576834],[-121.35625058865458,38.62561782945036],[-121.3562349668355,38.62561968318737],[-121.35621999214166,38.6256236378227],[-121.3562061216128,38.62562957067093],[-121.35619377258362,38.62563730477184],[-121.35618332388917,38.625646602590834],[-121.35617509389924,38.62565718211308],[-121.35616932898537,38.625668722184685],[-121.35616620687675,38.625680872441244],[-121.35616582164138,38.625693263134245],[-121.356168184712,38.62570551865032],[-121.35617322710976,38.625717265631735],[-121.35617656653199,38.62572263555984],[-121.35625015013039,38.625829306994206],[-121.35629399139108,38.62589285982543],[-121.3559775329424,38.62612062157361],[-121.35597923912991,38.62663717601497],[-121.35572012946294,38.62663482177515],[-121.35573646591916,38.626862844015655],[-121.3557367161205,38.62715450403148],[-121.35597608349991,38.6271572034314],[-121.35595538826053,38.62735548903418],[-121.3559863637982,38.62790212608529],[-121.35525118627243,38.62789457202055],[-121.3552506148542,38.62830301253727],[-121.3552496321271,38.62871845258432],[-121.35602601906032,38.62872565009785],[-121.3560252774241,38.62926339455698],[-121.35643790097915,38.62926258740609],[-121.3564125076939,38.63121423448089],[-121.35641153359832,38.63132212400083],[-121.35641121856177,38.63135701695411],[-121.35640534445233,38.6320076178746],[-121.35524513749748,38.6319904129486],[-121.35524455449875,38.632293716974885],[-121.35524418568906,38.63248534345803],[-121.3552439248871,38.63262109378775],[-121.35524380953089,38.63268159153525],[-121.35524344943184,38.63286869913116],[-121.3552430704755,38.63306500214532],[-121.35524301677474,38.633093160493694],[-121.35524227127632,38.633481218824784],[-121.35554812300713,38.63348292138418],[-121.35564725015813,38.63348347272181],[-121.35572544585148,38.63366293155749],[-121.35584218162306,38.63382901268429],[-121.3558937778644,38.63388534115034],[-121.35596504819625,38.63395946820051],[-121.35603466175529,38.634034558973276],[-121.35609955229826,38.63410712795183],[-121.35612167308861,38.63413278609975],[-121.35614322034348,38.63415874375975],[-121.35616418496394,38.634184990971654],[-121.35618456470128,38.63421152231781],[-121.35620434929977,38.63423832873256],[-121.35622353539473,38.63426540118844],[-121.35624211616776,38.63429273153971],[-121.35624266460259,38.63429355981473],[-121.35661695260123,38.63412792034264],[-121.3568981851278,38.63420127561442],[-121.35716071671497,38.63484993714587],[-121.35708092832945,38.635048606723245],[-121.35721171271001,38.63537882072088],[-121.35655030785706,38.63553484633117],[-121.35650715303744,38.63554470579011],[-121.35646378533342,38.63555397125603],[-121.35642021967728,38.635562642811685],[-121.35637646529081,38.63557071690447],[-121.3563493836789,38.635575398908706],[-121.35621065542983,38.63515632870304],[-121.35594291059016,38.635318851073606],[-121.35523894688939,38.63520995613965],[-121.35523833384963,38.63552851136284],[-121.35523801662123,38.63569335334495],[-121.35523587405169,38.6368075069664],[-121.35523083714166,38.639426307432544],[-121.35488032755524,38.639307435382335],[-121.35450882545851,38.63923810402685],[-121.35421968179696,38.63921990274403],[-121.3540681131301,38.639218257894534],[-121.35406700814956,38.63985351760945],[-121.35337302877113,38.63984760540098],[-121.35292732101425,38.6398438054997],[-121.3529249389014,38.64010606507703],[-121.35169794235851,38.640099263207894],[-121.35169757875417,38.63930234511981],[-121.35169862603476,38.63919251008695],[-121.3508860170107,38.63918367048113],[-121.35088629162509,38.63929351832451],[-121.35089536547328,38.63994062891999],[-121.35061513694555,38.6399391992812],[-121.35061489769414,38.640426640067425],[-121.34987170060761,38.640420758101364],[-121.34986837469877,38.64006153104355],[-121.3489128883595,38.640054012846534],[-121.34892115263631,38.639162267955314],[-121.3460624504564,38.63913107199403],[-121.3459512974369,38.63912971938989],[-121.34594869242949,38.6400106853745],[-121.34612723683388,38.64001473902168],[-121.34678679942412,38.64002971414905],[-121.34682420775441,38.64004871608864],[-121.34709927869179,38.640054960984095],[-121.34711083073465,38.64088524611636],[-121.34654817197948,38.64087690230802],[-121.34653767460907,38.64138538905322],[-121.34724373305032,38.641244110553714],[-121.34732833607795,38.64152469170217],[-121.34727131908231,38.641574234667495],[-121.34747688911673,38.64225599212911],[-121.34749123408729,38.642303564963825],[-121.34708699459766,38.642460648817575],[-121.34734456997832,38.64286563009275],[-121.34759155577575,38.643107605555265],[-121.3476545167019,38.64320333331995],[-121.34772569895371,38.64331440828036],[-121.34808864823394,38.64378365144043],[-121.346075408592,38.644520530933264],[-121.34593520470736,38.64457184703201],[-121.3459325295273,38.64547631252255],[-121.34546059387996,38.64538918621633],[-121.34541629319297,38.645384151275216],[-121.34540628209488,38.645383858686685],[-121.34537732195088,38.64538345905195],[-121.3451846691639,38.645393992220974],[-121.34499727809742,38.64543060174987],[-121.3448208382966,38.645492173883994],[-121.3447281467422,38.6455372616422],[-121.34438702759282,38.64572202383694],[-121.34459429641437,38.64578840015225],[-121.34351148738968,38.64635543143044],[-121.34338110084698,38.64642960917406],[-121.34328780158737,38.646836251302226],[-121.3433237563448,38.64703461252138],[-121.34293649082326,38.64772225763704],[-121.34286997866955,38.64784035748971],[-121.34279542577563,38.64788296728993],[-121.34246794703401,38.64807013190717],[-121.34192095331075,38.64849100234032],[-121.34179952136351,38.64905955529546],[-121.34129452586211,38.64906462199836],[-121.34120548995095,38.64929747798631],[-121.34115036142636,38.64974665720375],[-121.34118073055826,38.64988314206487],[-121.34119222394096,38.649934794979266],[-121.34114495831555,38.6499815282394],[-121.34146645092879,38.65040060123568],[-121.34162175546227,38.6506030429344],[-121.34183333602527,38.65077167779601],[-121.34183881364599,38.650776043154764],[-121.34199095404851,38.65101267460344],[-121.34211078132496,38.65119904655906],[-121.34226077159772,38.6514323293855],[-121.34215947691723,38.65168540846926],[-121.34206779884485,38.65191445729371],[-121.34206028951247,38.65196712745707],[-121.34203785371503,38.65212447720393],[-121.34200491177508,38.65218099577447],[-121.34192608860864,38.65231622976154],[-121.34206616284794,38.652293491663066],[-121.34203541502329,38.652362224542685],[-121.34199522490263,38.65245206603845],[-121.34177730143273,38.65281669283683],[-121.34159126443924,38.65303482961327],[-121.34155063995448,38.65308615754562],[-121.3414559620533,38.65320577675905],[-121.34143543060179,38.6532317169364],[-121.3413336705446,38.653360284125874],[-121.34127394228017,38.65348141624144],[-121.34126547744019,38.65349071320483],[-121.34095550230016,38.653746069798906],[-121.34094092814742,38.65375530046539],[-121.34078752303851,38.65384166702237],[-121.34057221083872,38.653957373140855],[-121.34029234202656,38.654081275394034],[-121.34015387540214,38.654138280103936],[-121.3400284004502,38.654185975717105],[-121.33998504555656,38.65419611714323],[-121.33997079591164,38.65417450618409],[-121.33988874997733,38.654212475965],[-121.33958894230203,38.654344767495346],[-121.3393343454992,38.654457107813656],[-121.33933799632955,38.65447053588094],[-121.33917329659052,38.654543355703346],[-121.33893613712854,38.654648213471525],[-121.33865916909768,38.65477067159309],[-121.33864886292162,38.654759572200646],[-121.33825928429351,38.654931467968666],[-121.33820712213993,38.65495448371743],[-121.33796064966276,38.65507361610559],[-121.33793641195336,38.65501908735688],[-121.3376378113637,38.65509034631112],[-121.33768423317319,38.65520868682299],[-121.33737064360515,38.65530801359308],[-121.33712588715277,38.65560069071284],[-121.33710376411148,38.65562654445306],[-121.33686256784776,38.655908407114076],[-121.33664906048386,38.65615791142789],[-121.3361750462663,38.65554330856307],[-121.33594248315161,38.65524176519889],[-121.33587605198407,38.65515563015794],[-121.33560968132024,38.65523950917582],[-121.33502923693,38.655422286343494],[-121.3349879302419,38.655221536836784],[-121.33498731802655,38.655218564843786],[-121.33490914248931,38.6549459476065],[-121.33482339116988,38.65464691375186],[-121.33479439995553,38.65454581271954],[-121.33477221065513,38.65446843550051],[-121.33475546247594,38.654410029224266],[-121.33471932713104,38.6540955809099],[-121.33470955562149,38.65401055240631],[-121.3347014268957,38.65393981717274],[-121.33470017462304,38.653681390034016],[-121.33415578076641,38.65377646757118],[-121.33400740613268,38.653802379984015],[-121.33360962706234,38.653871849558286],[-121.33355600797559,38.65375745518154],[-121.33358277673624,38.65355776505334],[-121.33361612702802,38.653509472841385],[-121.3333893523353,38.65343991792601],[-121.33335626742394,38.65348832151045],[-121.33295799981835,38.65336621947274],[-121.33279572262764,38.653359388014174],[-121.33269188738767,38.65335501628538],[-121.33253547319963,38.65330155856657],[-121.33225800097995,38.65327599159778],[-121.3322402636809,38.65326797224765],[-121.33214587419246,38.653225295733634],[-121.33193631699635,38.65313378393298],[-121.33172958215529,38.653031965458176],[-121.3313183618071,38.6527599716065],[-121.33128175918188,38.65273576120386],[-121.33110417336432,38.652618299814854],[-121.3310194563657,38.652605764817515],[-121.33098218656106,38.65271309247972],[-121.33088089295755,38.6530775813397],[-121.33087974076496,38.65308172605664],[-121.3308188967812,38.65314484439112],[-121.33080925673188,38.653154844626506],[-121.33070978920657,38.65323495976915],[-121.33056338364922,38.653339628136536],[-121.33051464416134,38.653374472866695],[-121.33044714582054,38.65342272907953],[-121.33032592942385,38.65350938854209],[-121.33025386127461,38.6535497398245],[-121.33023912377753,38.65355799162818],[-121.33015558116381,38.65355254210256],[-121.3300712592946,38.653567168280084],[-121.32771435257507,38.65397597771107],[-121.32757381490994,38.6539966895027],[-121.3275323589235,38.655922976593835],[-121.32753033952903,38.655984777766236],[-121.32752694747963,38.65604654394669],[-121.32752595403679,38.656060990499306],[-121.3275218315548,38.65612954256166],[-121.32751923210327,38.65619814310083],[-121.32751902325616,38.65620639417818],[-121.3274999016303,38.65700134352485],[-121.32770998260187,38.65700421639642],[-121.32973378758184,38.65703187254232],[-121.32967751736511,38.658630173682674],[-121.329670008331,38.658843469885774],[-121.32968392882884,38.659587596741154],[-121.32743911387878,38.659545146102175],[-121.32743180775522,38.65988741239512],[-121.32793987291909,38.65988143335802],[-121.327957410359,38.66006329077967],[-121.32770468483665,38.660060847636444],[-121.32735562541583,38.660057464724304],[-121.3273478346473,38.660551678398015],[-121.32741760887977,38.66055235358669],[-121.32740263361968,38.66125374626501],[-121.32837118385413,38.66125935012109],[-121.32836783148258,38.66161499974937],[-121.32739504004243,38.661609385695996],[-121.32734303856701,38.66404460676473],[-121.32797286575465,38.66404701688475],[-121.3279714358051,38.664115659325745],[-121.32796377567308,38.664483496596766],[-121.32796000767087,38.66466442593804],[-121.32795217622487,38.6650404235011],[-121.32794879511245,38.6652027450958],[-121.32794565850176,38.66535327526645],[-121.32786415820472,38.66539396232516],[-121.32755951861937,38.66538944765248],[-121.32731439818738,38.66538581184663],[-121.32730858259701,38.665687649599626],[-121.32729973193341,38.66606704031995],[-121.32742769099987,38.66606766394219],[-121.32899351665672,38.666087706538214],[-121.3291406077772,38.666086430905246],[-121.32967371506012,38.666093700708814],[-121.32966137871529,38.66664985583628],[-121.32965882180379,38.6667651649159],[-121.32964491258717,38.66739234633613],[-121.32785502964163,38.667366381251114],[-121.32785157000218,38.66752213117545],[-121.32726895564997,38.667513674746715],[-121.3272613164891,38.66791160497281],[-121.3272616218152,38.66839855552553],[-121.32739472458984,38.66840009189829],[-121.32803611152717,38.66840749827475],[-121.32802845930296,38.66879629236373],[-121.3294536064136,38.66881273530688],[-121.32944852903931,38.669351833183235],[-121.32944607160806,38.66961268480638],[-121.32944493871021,38.66973305167419],[-121.32943656796301,38.670621672307114],[-121.32799702636662,38.670610524318455],[-121.32888753145393,38.671377345553225],[-121.32826680844649,38.67136522593211],[-121.32822915415498,38.67198861636199],[-121.32815679509216,38.67197094199857],[-121.3280625800287,38.67228974486059],[-121.3279677089243,38.67261075646378],[-121.32771554324407,38.67260674387039],[-121.32759378332231,38.67268398391011],[-121.32746626257004,38.67275789309205],[-121.32735529274669,38.672833598179025],[-121.32735522911837,38.67283364285504],[-121.32722915985627,38.6729173503277],[-121.32689767035382,38.67291317827723],[-121.32676691148048,38.67291153157139],[-121.32502520043734,38.67339834049442],[-121.32504556047293,38.67343698441548],[-121.3249488820514,38.67365884397026],[-121.32468468080442,38.673728863117994],[-121.32469753236322,38.67377046967778],[-121.32425841543721,38.67379995691659],[-121.32425945574167,38.67374504564625],[-121.32374220533318,38.673817504457226],[-121.3231127273325,38.673905678763475],[-121.32296658657556,38.67392700832934],[-121.32260526746565,38.67399091225557]]]},"properties":{"ZIP5":"95608","PO_NAME":"CARMICHAEL","Shape_STAr":369323278.147,"Shape_STLe":135318.225081}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-121.34178622842444,38.35462056307901],[-121.33551645779946,38.34334707919818],[-121.33539953483415,38.34313183240258],[-121.33528470938658,38.342909931790174],[-121.33487508492686,38.34200756676682],[-121.33393165743672,38.339675435186045],[-121.33388657647603,38.33956558823235],[-121.33378926555561,38.33933855568235],[-121.33368694043003,38.33911289409659],[-121.33340281095796,38.33850313911215],[-121.33218224703471,38.33588363431986],[-121.31602276817902,38.33596752488404],[-121.31608120389365,38.34029151577387],[-121.31596621550142,38.34029231163185],[-121.31597596520855,38.34101375217778],[-121.30672783379518,38.341077369684335],[-121.30664035544493,38.336342630326556],[-121.29954865051364,38.33639315789072],[-121.29955440069206,38.335805556710916],[-121.29759845248515,38.335813152368615],[-121.29760032161798,38.33636247812544],[-121.29008147924664,38.33630209873031],[-121.29005596364499,38.34332159616167],[-121.26229216033269,38.343337811451235],[-121.26213526223351,38.34333788485074],[-121.26191164896352,38.34333798807399],[-121.26090222284164,38.3433384485565],[-121.2608766503951,38.34428185761664],[-121.2608733013727,38.344405431810266],[-121.26078483807629,38.347668795000345],[-121.26078148733242,38.347792394429526],[-121.26073043690803,38.34967547755394],[-121.26064420035934,38.349675681840026],[-121.26062462583971,38.350397663694736],[-121.2602870004777,38.35039846221939],[-121.24657018046143,38.35058258156973],[-121.24660783477752,38.343944541579816],[-121.24446341387026,38.34396867682211],[-121.24446841952356,38.34309063780282],[-121.24660224948458,38.34308513367261],[-121.24661050439144,38.34162978608559],[-121.2444767178195,38.34163529036838],[-121.2444706906015,38.34269247665512],[-121.2420300482105,38.34269872271915],[-121.24202776469869,38.343096883826334],[-121.24116307480381,38.343099084443296],[-121.2411702411868,38.34185242877698],[-121.23973376605822,38.341856070455805],[-121.23977070270071,38.335451482374616],[-121.2367639140367,38.335495639021794],[-121.23286771491574,38.33549521213909],[-121.23285561088164,38.337559456322495],[-121.22816991232153,38.33757093239588],[-121.22814781840302,38.341297167002125],[-121.2236292296986,38.34130805191007],[-121.22361823745108,38.34314233744762],[-121.2221385798331,38.343145863408154],[-121.22216110812582,38.34107299592844],[-121.21987739493885,38.34107247311888],[-121.21989714786271,38.33926019473835],[-121.21754724923522,38.339259609458004],[-121.21753904184058,38.340010365695846],[-121.2137983907704,38.33998493832919],[-121.2137794816393,38.343069318934916],[-121.2137789647021,38.34315375973568],[-121.20539602748639,38.3431244902647],[-121.20543685751784,38.35044720022819],[-121.20509381848585,38.35044499006066],[-121.2037981000114,38.35044042430667],[-121.1989948359152,38.35043742899209],[-121.19844431301564,38.35043775696416],[-121.18927272167787,38.35045424411797],[-121.18913570219027,38.35045448505129],[-121.18913539505041,38.35034629472476],[-121.18913444977697,38.350332386965796],[-121.1891338123805,38.350318467856425],[-121.18913348395375,38.350304541908905],[-121.18913344368825,38.35030001813224],[-121.18911904588225,38.34759302372732],[-121.18943078525415,38.344061374290625],[-121.18946070296718,38.3438047003666],[-121.18952717367573,38.343599960546356],[-121.18961007724818,38.343398296508724],[-121.1896878113523,38.34319730243174],[-121.18969462379688,38.343126647400936],[-121.18977069278246,38.34287595344413],[-121.18980237463397,38.34280029367602],[-121.18988359630275,38.34259820593489],[-121.189921666501,38.342497398716795],[-121.1906191955541,38.340129900528964],[-121.19028532798228,38.33904158967534],[-121.18878766978162,38.33652797398025],[-121.18913357636247,38.335975845937355],[-121.18903117230882,38.33580396871437],[-121.18904526967258,38.33578146656689],[-121.1881832139844,38.33436724005668],[-121.1881377008002,38.33429257185441],[-121.18805338318835,38.334363138113126],[-121.18795890472622,38.334442207698984],[-121.18754773170754,38.33369556414075],[-121.1874703051796,38.333554962753574],[-121.18690100559178,38.33320874690867],[-121.18521813418663,38.330413564419594],[-121.1851566897548,38.3303309733786],[-121.18515225711089,38.33032611226933],[-121.1844091567358,38.32933063036641],[-121.18489633359542,38.32906053967909],[-121.19893152514412,38.3212776669785],[-121.21710474041721,38.32099343996046],[-121.21687004400499,38.31132535443898],[-121.21712728813195,38.31118259476606],[-121.22523524944742,38.306682429239686],[-121.22537122642487,38.30668102908668],[-121.22622099548688,38.30667227751872],[-121.22622099880745,38.30667175861715],[-121.22622592698016,38.305950647920255],[-121.22622813558904,38.30562753987171],[-121.23803085703378,38.299104548257105],[-121.2442530384932,38.29903598284409],[-121.24427531034519,38.295652519734475],[-121.25147768084162,38.291670109256614],[-121.25146153629066,38.289884407059326],[-121.2503117162688,38.28987554673413],[-121.25026250115279,38.284421599606965],[-121.247963035946,38.28440384177689],[-121.24792935934308,38.280658029917156],[-121.25049638630841,38.28067483794291],[-121.25053251591206,38.27722164169776],[-121.24401404679635,38.27717903885817],[-121.24399862920714,38.27545349988082],[-121.24012109638026,38.27542800610991],[-121.24011501779194,38.2765563594085],[-121.24011114966703,38.277274514014586],[-121.23570158726437,38.27738434884354],[-121.23556470537126,38.277387755716816],[-121.23556866452321,38.27666137988398],[-121.23557554976867,38.275397954240425],[-121.22637651262319,38.27533658840118],[-121.22636151145653,38.2776291092221],[-121.21946973349021,38.27766603167661],[-121.21945718740972,38.27947722286602],[-121.21715797100349,38.27949064159134],[-121.21709481243366,38.28856510178296],[-121.20791007855738,38.288614663930254],[-121.20789169490183,38.291680465087424],[-121.20788776451968,38.29233578805199],[-121.20788773803645,38.29234086990427],[-121.20788061359005,38.29238525925691],[-121.19869709909027,38.29243288582147],[-121.19870140304357,38.29173023312273],[-121.19871520516196,38.28511685879041],[-121.18051267816439,38.2852889527452],[-121.18048161021851,38.27805768508066],[-121.17125305195864,38.27814300852718],[-121.17125909262175,38.27709510696676],[-121.17137495039428,38.25622530179342],[-121.17157883780317,38.256028306755326],[-121.17167298019231,38.25586765729778],[-121.17171230463518,38.25577973804404],[-121.17175760512256,38.2556266186577],[-121.17176876154086,38.25556527022301],[-121.17196538036595,38.25512526645444],[-121.17201001744165,38.255029478886435],[-121.1721386218858,38.25489996889646],[-121.17218267971354,38.25485429026954],[-121.17255025331023,38.254688052426005],[-121.17270435496285,38.25461227051292],[-121.17295773358786,38.25453376840879],[-121.173041791427,38.25449213870781],[-121.17313420292976,38.254481131377126],[-121.1734791089779,38.25446817377775],[-121.17356281019657,38.2544574324681],[-121.17364151482037,38.25442710460832],[-121.173723474585,38.254416379524834],[-121.17404673744548,38.25446845404572],[-121.17422249655041,38.25447726498114],[-121.17430950164918,38.25448200642922],[-121.17442588583897,38.25450585126976],[-121.17453209227423,38.25450661203512],[-121.174629590026,38.254507310333295],[-121.17506254029657,38.25456016750143],[-121.17514593290387,38.25457622402136],[-121.1752187501593,38.25460351843158],[-121.17531397883187,38.25465019589766],[-121.17536246390328,38.25467352686726],[-121.17547719572265,38.25468980738649],[-121.17553665636865,38.25466722172021],[-121.17557518072344,38.254648275486154],[-121.17563794557938,38.25464117302912],[-121.17575969014817,38.25465338446631],[-121.17590062387978,38.25466227259556],[-121.17610602602349,38.25466753131799],[-121.17626450567344,38.25466487404139],[-121.17635704692236,38.25464255232339],[-121.1765314206656,38.254620456712686],[-121.17667266428226,38.25460257465826],[-121.17694091956399,38.25459281947753],[-121.17717435711,38.2545828159915],[-121.17739203090419,38.2545806077066],[-121.17779595543901,38.25458349012966],[-121.17788300814473,38.25458411115609],[-121.17827397362116,38.2545024616453],[-121.1783944577561,38.25447275817342],[-121.17870319527164,38.25442520061123],[-121.17882703010773,38.254406861225505],[-121.17916322983955,38.254393796661184],[-121.17926421186716,38.25439451585587],[-121.17934247149012,38.25440262458944],[-121.17940153355667,38.25441471553869],[-121.17947439534447,38.254438245365684],[-121.1796393108842,38.25448162614201],[-121.17978177300262,38.25450941338959],[-121.17998159608558,38.254545515904766],[-121.18011195519281,38.254565665196594],[-121.18023892501026,38.254577882043534],[-121.18032071007393,38.25458225388795],[-121.18035021901346,38.25459034402343],[-121.1803849104058,38.2546019314037],[-121.18040388551384,38.25461749893919],[-121.18042263934022,38.254652314643394],[-121.18050628422496,38.254798775801895],[-121.180588453818,38.2549219126587],[-121.1806309719415,38.25501041585384],[-121.18064410656743,38.25507984597796],[-121.18066615942261,38.25528320483291],[-121.18068921587378,38.25539869965292],[-121.18071293542764,38.25545620399577],[-121.18078562228811,38.25549516433156],[-121.18087215038194,38.25554177532782],[-121.18095018913456,38.2555694320402],[-121.18109945791103,38.25561099678637],[-121.18132539046074,38.25564829959408],[-121.18158071892323,38.255703660442066],[-121.18176271850477,38.25577634715588],[-121.18189799012482,38.25582398902498],[-121.1820503485992,38.255900254996114],[-121.18218554115937,38.25595476089829],[-121.18231708953795,38.25602365714739],[-121.18241600678537,38.25605283487758],[-121.18250662670283,38.25604628393845],[-121.18264283778211,38.25601155148233],[-121.18276686222956,38.25597673425311],[-121.18286639015923,38.255952369442625],[-121.1830318338277,38.25595010897774],[-121.18313095441185,38.255961465734096],[-121.18324056097873,38.255969438125554],[-121.18333429520969,38.25599517289423],[-121.18347147770415,38.25602805332715],[-121.18363331568266,38.25603642151293],[-121.18380232394259,38.256026964397975],[-121.18403417523851,38.25600356265037],[-121.18427485197121,38.25596956784322],[-121.18452079599126,38.25593182147993],[-121.18467591278686,38.25591885935348],[-121.18475786885449,38.25590845612813],[-121.1849536008449,38.255845638989044],[-121.18514395020644,38.255796870087636],[-121.1854789690387,38.25573506562223],[-121.18560105177225,38.25571772279539],[-121.18578755046023,38.25570119080506],[-121.1858869518927,38.25568783342072],[-121.18595513888877,38.2556632445579],[-121.18623476809319,38.255572213942294],[-121.18632210672887,38.25554776009174],[-121.18643544168121,38.25553414294833],[-121.18659906121377,38.255539087085566],[-121.18668437293496,38.25553968916777],[-121.18678033480832,38.255522518417855],[-121.18702987983967,38.255474164101436],[-121.18725666771441,38.25543627769393],[-121.18739793508898,38.2554159916555],[-121.18761395012852,38.255406887422666],[-121.18779834596302,38.255422246677206],[-121.18802108300487,38.25543447033704],[-121.18818462090637,38.25544660721261],[-121.18832904766735,38.25545481823446],[-121.18887036435987,38.25547271687074],[-121.18916610418653,38.255496408952965],[-121.18941815677115,38.25553387873311],[-121.18955023811775,38.25555608891129],[-121.18969944543134,38.25560381958696],[-121.18988837218421,38.25568033314255],[-121.19003762051405,38.25572427534224],[-121.19029267273943,38.25580468269984],[-121.19047330363135,38.255845083517066],[-121.19067320301903,38.25587531926757],[-121.1909217778219,38.255912762223964],[-121.19118982313753,38.25592183832148],[-121.19138474878129,38.255930071060206],[-121.1916303610914,38.25592116694956],[-121.19187095394217,38.255894351280304],[-121.19212049683287,38.25584598594025],[-121.19246271691723,38.2557625727591],[-121.19261301484983,38.25571351271775],[-121.19278250430509,38.25566115353932],[-121.19291891181965,38.25560856244678],[-121.19335805717954,38.255422164057045],[-121.19349375913959,38.25536751868599],[-121.19357669865646,38.25533412038457],[-121.19377274686289,38.25524245785951],[-121.1939916277678,38.255133134714335],[-121.1941824476678,38.25504179259683],[-121.19440157060659,38.254910829644295],[-121.19449979299965,38.254847315627465],[-121.19460193851903,38.254744370039575],[-121.1947114539812,38.25460544671696],[-121.19484854194808,38.254492090024456],[-121.19507328607627,38.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment